From aa1c3e0d3544990153bc5891d0fb6c63b78f09b6 Mon Sep 17 00:00:00 2001 From: Halmaris Date: Wed, 2 Jun 2021 12:24:48 +0200 Subject: [PATCH] Lab 5 --- 05.ipynb | 805 + data/usaUFOsightings.csv | 63562 +++++++++++++++++++++++++++++++++++++ figs/ex5_1.png | Bin 0 -> 9511 bytes figs/ex5_2.png | Bin 0 -> 13097 bytes figs/ex5_5.png | Bin 0 -> 3876 bytes figs/ex5_6.png | Bin 0 -> 31561 bytes figs/ex5_7.png | Bin 0 -> 25155 bytes figs/shiny2.png | Bin 0 -> 50711 bytes figs/shinyLogo.png | Bin 0 -> 298924 bytes 9 files changed, 64367 insertions(+) create mode 100644 05.ipynb create mode 100644 data/usaUFOsightings.csv create mode 100644 figs/ex5_1.png create mode 100644 figs/ex5_2.png create mode 100644 figs/ex5_5.png create mode 100644 figs/ex5_6.png create mode 100644 figs/ex5_7.png create mode 100644 figs/shiny2.png create mode 100644 figs/shinyLogo.png diff --git a/05.ipynb b/05.ipynb new file mode 100644 index 0000000..5fe09eb --- /dev/null +++ b/05.ipynb @@ -0,0 +1,805 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Wizualizacja danych (Lab 5)" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "library(repr) # To resize plots in Jupyter\n", + "options(repr.plot.width = 16, repr.plot.height = 9)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Warning message:\n", + "“package ‘ggplot2’ was built under R version 3.6.2”\n", + "Warning message:\n", + "“package ‘dplyr’ was built under R version 3.6.2”\n", + "\n", + "Attaching package: ‘dplyr’\n", + "\n", + "\n", + "The following objects are masked from ‘package:stats’:\n", + "\n", + " filter, lag\n", + "\n", + "\n", + "The following objects are masked from ‘package:base’:\n", + "\n", + " intersect, setdiff, setequal, union\n", + "\n", + "\n" + ] + } + ], + "source": [ + "library(shiny) # Main library\n", + "library(ggplot2) # Plots\n", + "library(dplyr) # Data manipulate\n", + "library(babynames) # Data set" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# shiny" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "[*shiny*](https://shiny.rstudio.com/) to pakiet R, który ułatwia tworzenie wysoce interaktywnych aplikacji internetowych bezpośrednio w R. Korzystając z *shiny*, analitycy danych mogą tworzyć interaktywne aplikacje internetowe, które umożliwiają zespołowi zanurzenie się i eksplorowanie danych w postaci pulpitów nawigacyjnych (dashboard) lub wizualizacji.\n", + "\n", + "" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Podstawowa budowa aplikacji *shiny*\n", + "\n", + "library(shiny) # Load shiny library\n", + "\n", + "ui <- fluidPage() # Create the UI with a HTML\n", + "\n", + "server <- function(input, output, session) {} # Define a custom function to create the server\n", + "\n", + "shinyApp(ui = ui, server = server) # Run the app\n", + "\n", + "- Add inputs (UI)\n", + "- Add outputs (UI/Server) \n", + "- Update layout (UI)\n", + "- Update outputs (Server)\n", + "\n", + "\n", + "*shiny* zapewnia szeroką gamę danych wejściowych, które pozwalają użytkownikom zapewnić następujące dane:\n", + "\n", + "- tekst (*textInput, selectInput*), \n", + "- liczby (*numericInput, sliderInput*), \n", + "- wartośći logiczne (*checkBoxInput, radioInput*), \n", + "- daty (*dateInput, dateRangeInput*).\n", + "\n", + "\n", + "Wyjście:\n", + "\n", + "- *textOutput, renderText*, \n", + "- *tableOutput, renderTable*,\n", + "- *imageOutput, renderImage*,\n", + "- *plotOutput, renderPlot*,\n", + "- *DT::DTOutput(), DT::renderDT()* - interaktywne tabele." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ui <- fluidPage(\n", + " textInput('name', 'What is your name?'), # Input \n", + " textOutput('greeting') # Output\n", + ")\n", + "\n", + "server <- function(input, output) {\n", + " output$greeting <- renderText({ \n", + " paste('Hello', input$name)\n", + " })\n", + "}\n", + "\n", + "shinyApp(ui = ui, server = server)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "\n", + "\n", + "\t\n", + "\t\n", + "\n", + "\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\t\n", + "\n", + "
A tibble: 6 × 5
yearsexnamenprop
<dbl><chr><chr><int><dbl>
1880FMary 70650.07238
1880FAnna 26040.02668
1880FEmma 20030.02052
1880FElizabeth19390.01987
1880FMinnie 17460.01789
1880FMargaret 15780.01617
\n" + ], + "text/latex": [ + "A tibble: 6 × 5\n", + "\\begin{tabular}{lllll}\n", + " year & sex & name & n & prop\\\\\n", + " & & & & \\\\\n", + "\\hline\n", + "\t 1880 & F & Mary & 7065 & 0.07238\\\\\n", + "\t 1880 & F & Anna & 2604 & 0.02668\\\\\n", + "\t 1880 & F & Emma & 2003 & 0.02052\\\\\n", + "\t 1880 & F & Elizabeth & 1939 & 0.01987\\\\\n", + "\t 1880 & F & Minnie & 1746 & 0.01789\\\\\n", + "\t 1880 & F & Margaret & 1578 & 0.01617\\\\\n", + "\\end{tabular}\n" + ], + "text/markdown": [ + "\n", + "A tibble: 6 × 5\n", + "\n", + "| year <dbl> | sex <chr> | name <chr> | n <int> | prop <dbl> |\n", + "|---|---|---|---|---|\n", + "| 1880 | F | Mary | 7065 | 0.07238 |\n", + "| 1880 | F | Anna | 2604 | 0.02668 |\n", + "| 1880 | F | Emma | 2003 | 0.02052 |\n", + "| 1880 | F | Elizabeth | 1939 | 0.01987 |\n", + "| 1880 | F | Minnie | 1746 | 0.01789 |\n", + "| 1880 | F | Margaret | 1578 | 0.01617 |\n", + "\n" + ], + "text/plain": [ + " year sex name n prop \n", + "1 1880 F Mary 7065 0.07238\n", + "2 1880 F Anna 2604 0.02668\n", + "3 1880 F Emma 2003 0.02052\n", + "4 1880 F Elizabeth 1939 0.01987\n", + "5 1880 F Minnie 1746 0.01789\n", + "6 1880 F Margaret 1578 0.01617" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "head(babynames)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ui <- fluidPage(\n", + " titlePanel('Baby Name Explorer'),\n", + " textInput('name', 'Enter Name', 'Tomas'),\n", + " plotOutput('trend')\n", + ")\n", + "\n", + "server <- function(input, output, session) {\n", + " output$trend <- renderPlot({\n", + " babynames %>%\n", + " filter(name == input$name) %>%\n", + " ggplot(aes(x = year, y = prop, color = sex)) + \n", + " geom_line()\n", + " })\n", + "}\n", + "\n", + "shinyApp(ui = ui, server = server)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ui <- fluidPage(\n", + " titlePanel(\"What's in a Name?\"),\n", + " selectInput('sex', \n", + " 'Select sex', \n", + " selected = 'F',\n", + " choices = c('F', 'M')),\n", + " sliderInput('year', \n", + " 'Select year',\n", + " value = 1900, \n", + " min = 1880, \n", + " max = 2017),\n", + " plotOutput('PlotTopNames')\n", + ")\n", + "\n", + "server <- function(input, output, session){\n", + " output$PlotTopNames <- renderPlot({\n", + " babynames %>% \n", + " filter(sex == input$sex, year == input$year) %>% \n", + " top_n(10, prop) %>% \n", + " ggplot(aes(x = name, y = prop)) +\n", + " geom_col(fill = 'navy')\n", + " })\n", + "}\n", + "\n", + "shinyApp(ui = ui, server = server)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ui <- fluidPage(\n", + " titlePanel(\"What's in a Name?\"),\n", + " selectInput('sex', \n", + " 'Select sex', \n", + " selected = 'F',\n", + " choices = c('M', 'F')),\n", + " sliderInput('year', \n", + " 'Select year', \n", + " min = 1880, \n", + " max = 2017, \n", + " value = 1900),\n", + " DT::dataTableOutput('tableNames')\n", + ")\n", + "\n", + "server <- function(input, output, session){\n", + " output$tableNames <- DT::renderDataTable({\n", + " babynames %>% \n", + " filter(sex == input$sex) %>% \n", + " filter(year == input$year) %>% \n", + " DT::datatable()\n", + " })\n", + "}\n", + "\n", + "shinyApp(ui = ui, server = server)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Layputy i szablony\n", + "\n", + "1. **Layout**. Layout functions allow inputs and outputs to be visually arranged in the UI. A well-chosen layout makes a *shiny* app aesthetically more appealing, and also improves the user experience.\n", + "\n", + "2. **Theme**. *shiny* makes it easy to customize the theme of an app. The UI functions in *shiny* make use of [**Twitter Bootstrap**](https://getbootstrap.com/), a popular framework for building web applications. There are a lot of built-in themes in *shinythemes* library, and if none of them suit your fancy, you can learn how to further customize your app with custom CSS.\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Layout\n", + "\n", + "ui <- fluidPage(\n", + " titlePanel(\"What's in a Name?\"),\n", + " sidebarLayout(\n", + " sidebarPanel(\n", + " selectInput('sex', \n", + " 'Select sex', \n", + " selected = 'F',\n", + " choices = c('M', 'F')),\n", + " sliderInput('year', \n", + " 'Select year', \n", + " min = 1880, \n", + " max = 2017, \n", + " value = 1900)\n", + " ),\n", + " mainPanel(\n", + " tabsetPanel(tabPanel('Table',\n", + " DT::dataTableOutput('tableNames')), \n", + " tabPanel('Plot',\n", + " plotOutput('PlotTopNames'))\n", + " )\n", + " )\n", + " )\n", + ")\n", + "\n", + "server <- function(input, output, session){\n", + " output$tableNames <- DT::renderDataTable({\n", + " babynames %>% \n", + " filter(sex == input$sex) %>% \n", + " filter(year == input$year) %>% \n", + " DT::datatable()\n", + " })\n", + " \n", + " output$PlotTopNames <- renderPlot({\n", + " babynames %>% \n", + " filter(sex == input$sex, year == input$year) %>% \n", + " top_n(10, prop) %>% \n", + " ggplot(aes(x = name, y = prop)) +\n", + " geom_col(fill = 'navy')\n", + " })\n", + "}\n", + "\n", + "shinyApp(ui = ui, server = server)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Themes\n", + "\n", + "ui <- fluidPage(\n", + " shinythemes::themeSelector(),\n", + " theme = shinythemes::shinytheme('flatly'),\n", + " titlePanel(\"What's in a Name?\"),\n", + " selectInput('sex', \n", + " 'Select sex', \n", + " selected = 'F',\n", + " choices = c('M', 'F')),\n", + " sliderInput('year', \n", + " 'Select year', \n", + " min = 1880, \n", + " max = 2017, \n", + " value = 1900),\n", + " DT::dataTableOutput('tableNames')\n", + ")\n", + "\n", + "server <- function(input, output, session){\n", + " output$tableNames <- DT::renderDataTable({\n", + " babynames %>% \n", + " filter(sex == input$sex) %>% \n", + " filter(year == input$year) %>% \n", + " DT::datatable()\n", + " })\n", + "}\n", + "\n", + "shinyApp(ui = ui, server = server)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Reactive\n", + "The magic behind Shiny is driven by *reactivity*. There are three types of reactive components in a Shiny app. \n", + "1. Reactive source: User input that comes through a browser interface, typically.\n", + "2. Reactive conductor: Reactive component between a source and an endpoint, typically used to encapsulate slow computations.\n", + "3. Reactive endpoint: Something that appears in the user's browser window, such as a plot or a table of values.\n", + "\n", + "Reactive expressions are *lazy* (evaluated only when it is called) and *cached* (evaluated only when the value of one of its underlying dependencies changes).\t\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ui <- fluidPage(\n", + " titlePanel('BMI Calculator'),\n", + " sidebarLayout(\n", + " sidebarPanel(\n", + " numericInput('height', 'Enter your height in meters', 1.7, 1, 2.2),\n", + " numericInput('weight', 'Enter your weight in Kilograms', 70, 35, 200)\n", + " ),\n", + " mainPanel(\n", + " textOutput('bmi'),\n", + " textOutput('bmiRange')\n", + " )\n", + " )\n", + ")\n", + "\n", + "server <- function(input, output, session) {\n", + " rvalBMI <- reactive({\n", + " input$weight / (input$height^2)\n", + " })\n", + " \n", + " output$bmi <- renderText({\n", + " bmi <- rvalBMI() # First call\n", + " paste('Your BMI is', round(bmi, 1))\n", + " })\n", + " \n", + " output$bmiRange <- renderText({\n", + " bmi <- rvalBMI() # Second call (we used cached data)\n", + " bmiStatus <- cut(bmi, \n", + " breaks = c(0, 18.5, 24.9, 29.9, 100),\n", + " labels = c('underweight', 'healthy', 'overweight', 'obese')\n", + " )\n", + " paste('You are', bmiStatus)\n", + " })\n", + "}\n", + "\n", + "shinyApp(ui = ui, server = server)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Observers\n", + "An *observer* is used for side effects, like displaying a plot, table, or text in the browser. By default an observer triggers an action, whenever one of its underlying dependencies change. As we are triggering an action using an observer, we do not need to use a *render***()* function or assign the results to an output." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ui <- fluidPage(\n", + " textInput('name', 'Enter your name')\n", + ")\n", + "\n", + "server <- function(input, output, session) {\n", + " observe({\n", + " showNotification(\n", + " paste('You entered the name', input$name)\n", + " ) \n", + " })\n", + "}\n", + "\n", + "shinyApp(ui = ui, server = server)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Observers vs. reactives\n", + "\n", + "1. Role\n", + " - *reactive()* is for calculating values, without side effects.\n", + " - *observe()* is for performing actions, with side effects.\t\n", + "2. Differences\n", + " - Reactive expressions return values, but observers don't.\n", + " - Observers eagerly respond to changes in their dependencies, while reactive expressions are lazy.\n", + " - Observers are primarily useful for their side effects, whereas, reactive expressions must not have side effects." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Stop, delay, trigger\n", + "#### Stop\n", + "The *isolate()* function allows an expression to read a reactive value without triggering re-execution when its value changes.\t\n", + "#### Delay\n", + "The function *eventReactive()* is used to compute a reactive value that only updates in response to a specific event.\n", + "#### Trigger\n", + "There are times when you want to perform an action in response to an event. The *observeEvent()* function allows you to achieve this.\t" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Isolate\n", + "ui <- fluidPage(\n", + " titlePanel('BMI Calculator'),\n", + " sidebarLayout(\n", + " sidebarPanel(\n", + " textInput('name', 'Enter your name'),\n", + " numericInput('height', 'Enter your height in meters', 1.7, 1, 2.2),\n", + " numericInput('weight', 'Enter your weight in Kilograms', 70, 35, 200)\n", + " ),\n", + " mainPanel(\n", + " textOutput('bmi')\n", + " )\n", + " )\n", + ")\n", + "\n", + "server <- function(input, output, session) {\n", + " rvalBMI <- reactive({\n", + " input$weight / (input$height^2)\n", + " })\n", + " \n", + " output$bmi <- renderText({\n", + " bmi <- rvalBMI()\n", + " paste('Hi', isolate({input$name}), '. Your BMI is', round(bmi, 1))\n", + " })\n", + "}\n", + "\n", + "shinyApp(ui = ui, server = server)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# eventReactive\n", + "ui <- fluidPage(\n", + " titlePanel('BMI Calculator'),\n", + " sidebarLayout(\n", + " sidebarPanel(\n", + " textInput('name', 'Enter your name'),\n", + " numericInput('height', 'Enter your height in meters', 1.7, 1, 2.2),\n", + " numericInput('weight', 'Enter your weight in Kilograms', 70, 35, 200),\n", + " actionButton('showBMI', 'Show BMI')\n", + " ),\n", + " mainPanel(\n", + " textOutput('bmi')\n", + " )\n", + " )\n", + ")\n", + "\n", + "server <- function(input, output, session) {\n", + " # Delay the calculation until the user clicks on the showBMI button (Show BMI)\n", + " rvalBMI <- eventReactive(input$showBMI, {\n", + " input$weight/(input$height^2)\n", + " })\n", + " \n", + " output$bmi <- renderText({\n", + " bmi <- rvalBMI()\n", + " paste(\"Hi\", input$name, \". Your BMI is\", round(bmi, 1))\n", + " })\n", + "}\n", + "\n", + "shinyApp(ui = ui, server = server)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# observeEvent\n", + "bmiHelpText <- \"Body Mass Index is a simple calculation using a person's height and weight. The formula is BMI = kg/m2 where kg is a person's weight in kilograms and m2 is their height in metres squared. A BMI of 25.0 or more is overweight, while the healthy range is 18.5 to 24.9.\"\n", + "\n", + "ui <- fluidPage(\n", + " titlePanel('BMI Calculator'),\n", + " sidebarLayout(\n", + " sidebarPanel(\n", + " textInput('name', 'Enter your name'),\n", + " numericInput('height', 'Enter your height in meters', 1.7, 1, 2.2),\n", + " numericInput('weight', 'Enter your weight in Kilograms', 70, 35, 200),\n", + " actionButton('showBMI', 'Show BMI'),\n", + " actionButton('showHelp', 'Help')\n", + " ),\n", + " mainPanel(\n", + " textOutput('bmi')\n", + " )\n", + " )\n", + ")\n", + "\n", + "server <- function(input, output, session) {\n", + " # The help text is displayed when a user clicks on the Help button.\n", + " observeEvent(input$showHelp, {\n", + " showModal(modalDialog(bmiHelpText))\n", + " })\n", + " \n", + " rvalBMI <- eventReactive(input$showBMI, {\n", + " input$weight / (input$height^2)\n", + " })\n", + " \n", + " output$bmi <- renderText({\n", + " bmi <- rvalBMI()\n", + " paste('Hi', input$name, '. Your BMI is', round(bmi, 1))\n", + " })\n", + "}\n", + "\n", + "shinyApp(ui = ui, server = server)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## [Karta pomocy](https://shiny.rstudio.com/images/shiny-cheatsheet.pdf)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Zadania" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "1. Zaprojektowano aplikację, która pozwala użytkownikowi wybrać liczbę pomiędzy 1 a 50 i wyświetlić wynik iloczynu tej liczby i 5." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ui <- fluidPage(\n", + " sliderInput(\"x\", label = \"If x is\", min = 1, max = 50, value = 30),\n", + " \"then x times 5 is\",\n", + " textOutput(\"product\")\n", + ")\n", + "\n", + "server <- function(input, output, session) {\n", + " output$product <- renderText({ \n", + " x * 5\n", + " })\n", + "}\n", + "\n", + "shinyApp(ui, server)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Niestety nie działa:\n", + "\n", + "\n", + "\n", + "Popraw aplikację tak aby działała." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "2. Rozbuduj aplikację z poprzedniego ćwiczenia tak, aby pozwala użytkownikowi ustawić wartość mnożnika.\n", + "\n", + "" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "3. Kolejna aplikacja dodaje kolejne funkcjonalności. Popraw ją tak (zredukuj ilość zduplikowanego kodu), aby wykorzystać funkcje reaktywne." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ui <- fluidPage(\n", + " sliderInput(\"x\", \"If x is\", min = 1, max = 50, value = 30),\n", + " sliderInput(\"y\", \"and y is\", min = 1, max = 50, value = 5),\n", + " \"then, (x * y) is\", textOutput(\"product\"),\n", + " \"and, (x * y) + 5 is\", textOutput(\"product_plus5\"),\n", + " \"and (x * y) + 10 is\", textOutput(\"product_plus10\")\n", + ")\n", + "\n", + "server <- function(input, output, session) {\n", + " output$product <- renderText({ \n", + " product <- input$x * input$y\n", + " product\n", + " })\n", + " output$product_plus5 <- renderText({ \n", + " product <- input$x * input$y\n", + " product + 5\n", + " })\n", + " output$product_plus10 <- renderText({ \n", + " product <- input$x * input$y\n", + " product + 10\n", + " })\n", + "}\n", + "\n", + "shinyApp(ui, server)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "4. Poniższa aplikacja pozwala wybrać zbiór danych z pakietu *ggplot2*, a następnie wyświetla podsumowanie danych i rysuje wykresy. Są w niej jednak trzy błędy. Wskaż je i popraw." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "datasets <- c(\"economics\", \"faithfuld\", \"seals\")\n", + "ui <- fluidPage(\n", + " selectInput(\"dataset\", \"Dataset\", choices = datasets),\n", + " verbatimTextOutput(\"summary\"),\n", + " tableOutput(\"plot\")\n", + ")\n", + "\n", + "server <- function(input, output, session) {\n", + " dataset <- reactive({\n", + " get(input$dataset, \"package:ggplot2\")\n", + " })\n", + " output$summmry <- renderPrint({\n", + " summary(dataset())\n", + " })\n", + " output$plot <- renderPlot({\n", + " plot(dataset)\n", + " }, res = 96)\n", + "}\n", + "\n", + "shinyApp(ui, server)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "5. Zbuduj aplikację *shiny*, która pozwala wpisać swoje imię i nazwisko oraz wybrać powitanie (Hello/Bonjour) i zwraca „Hello, Tomasz”, gdy użytkownikiem jest Tomasz. Twoja ostateczna aplikacja powinna wizualnie przypominać zrzut ekranu poniżej.\n", + "\n", + "" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "6. Dla zbioru danych *gapminder* z biblioteki *gapminder* zbuduj aplikację *shiny*, która wizualnie powinna przypominać zrzut ekranu poniżej. Powinna istnieć możliwość wyboru kontynentu i roku. Dla wybranych wartości należy przygotować wykres i tabelę na osobnych zakładkach.\n", + "\n", + "" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "7. Narodowe Centrum Raportowania UFO (NUFORC) zbierało dane o zdarzeniach UFO w ciągu ostatniego stulecia (zbiór danych: usaUFOsightings.csv). Zbuduj aplikację, która pozwoli użytkownikom wybrać stan USA i okres, w którym miały miejsce zdarzenia. Wykres powinien pokazywać liczbę zdarzeń dla wybranego stanu i okresu. Tabela powinna pokazywać, dla wybranego stanu i okresu czasu, liczbę zaobserwowanych obserwacji oraz średnią, medianę, minimalny i maksymalny czas trwania (w sekundach) wydarzenia. Twoja ostateczna aplikacja powinna wizualnie przypominać zrzut ekranu poniżej.\n", + "\n", + "" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "R", + "language": "R", + "name": "ir" + }, + "language_info": { + "codemirror_mode": "r", + "file_extension": ".r", + "mimetype": "text/x-r-source", + "name": "R", + "pygments_lexer": "r", + "version": "3.6.1" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/data/usaUFOsightings.csv b/data/usaUFOsightings.csv new file mode 100644 index 0000000..c5eb7f4 --- /dev/null +++ b/data/usaUFOsightings.csv @@ -0,0 +1,63562 @@ +date_sighted,latitude,longitude,city,state,shape,duration_sec,comments +1949-10-10,29.8830556,-97.9411111,San Marcos,TX,cylinder,2700,This event took place in early fall around 1949-50. It occurred after a Boy Scout meeting in the Baptist Church. The Baptist Church sit +1956-10-10,28.9783333,-96.6458333,Edna,TX,circle,20,My older brother and twin sister were leaving the only Edna theater at about 9 PM,...we had our bikes and I took a different route home +1960-10-10,21.4180556,-157.8036111,Kaneohe,HI,light,900,AS a Marine 1st Lt. flying an FJ4B fighter/attack aircraft on a solo night exercise, I was at 50ꯠ' in a "clean" aircraft (no ordinan +1961-10-10,36.595,-82.1888889,Bristol,TN,sphere,300,My father is now 89 my brother 52 the girl with us now 51 myself 49 and the other fellow which worked with my father if he's still livi +1965-10-10,41.1175,-73.4083333,Norwalk,CT,disk,1200,A bright orange color changing to reddish color disk/saucer was observed hovering above power transmission lines. +1966-10-10,33.5861111,-86.2861111,Pell City,AL,disk,180,Strobe Lighted disk shape object observed close, at low speeds, and low altitude in Oct 1966 in Pell City Alabama +1966-10-10,30.2947222,-82.9841667,Live Oak,FL,disk,120,Saucer zaps energy from powerline as my pregnant mother receives mental signals not to pass info +1968-10-10,33.9163889,-118.3516667,Hawthorne,CA,circle,300,ROUND , ORANGE , WITH WHAT I WOULD SAY WAS POLISHED METAL OF SOME KIND AROUND THE EDGES . +1968-10-10,35.2333333,-82.7344444,Brevard,NC,fireball,180,silent red /orange mass of energy floated by three of us in western North Carolina in the 60s +1970-10-10,40.6686111,-73.5275,Bellmore,NY,disk,1800,silver disc seen by family and neighbors +1970-10-10,37.1536111,-83.7619444,Manchester,KY,unknown,180,Slow moving, silent craft accelerated at an unbelievable angle and speed. +1971-10-10,35.8238889,-80.2536111,Lexington,NC,oval,30,green oval shaped light over my local church,power lines down.. +1972-10-10,36.8430556,-83.3219444,Harlan County,KY,circle,1200,On october 10, 1972 myself,my 5yrs.daughterƺ neices and 2 nephews were playing tag in the back yard .When we looked over on the ridge +1972-10-10,42.5377778,-83.2330556,West Bloomfield,MI,disk,120,The UFO was so close, my battery in the car went to zero amps, stalling the engine, turning off my lights and radio. +1973-10-10,41.3252778,-72.1936111,Niantic,CT,disk,1800,Oh, what a night ! Two (2) saucer-shaped, glowing green objects and one (1) brilliantly glowing sphere gliding over the lake. +1974-10-10,42.3916667,-71.5666667,Hudson,MA,other,2700,Not sure of the eact month or year of this sighting but it was in the fall of 74 or 75. Was walking home around dusk and saw a bright l +1974-10-10,38.1055556,-98.6597222,Hudson,KS,light,1200,The light chased us. +1975-10-10,32.8544444,-79.975,North Charleston,SC,light,360,Several Flashing UFO lights over Charleston Naval Base in S.C. +1976-10-10,45.5827778,-122.3522222,Washougal,WA,oval,60,Three extremely large lights hanging above nearby trees. +1977-10-10,29.4238889,-98.4933333,San Antonio,TX,other,30,i was about six or seven and my family and me were sitting next to a window at home eating when a type of dark ball hit the screen wind +1977-10-10,38.2541667,-85.7594444,Louisville,KY,light,30,HBCCUFO CANADIAN REPORT: Pilot Sighting Of Unusual Light. +1978-10-10,40.7008333,-73.7133333,Elmont,NY,rectangle,300,A memory I will never forget that happened meny years ago. +1979-10-10,41.7002778,-73.9213889,Poughkeepsie,NY,chevron,900,1/4 moon-like, its 'chord' or flat side parallel to horizon, bright orange-red glow, completely silent, no features. +1979-10-10,32.7152778,-117.1563889,San Diego,CA,oval,180,My 2nd UFO sighting, October 1979 +1979-10-10,38.7583333,-104.7425,Security,CO,unknown,1800,very low clouds all different colors,search lights were seen shining down out of the clouds on the houses and streets. this event was s +1980-10-10,29.7630556,-95.3630556,Houston,TX,sphere,180,Sphere, No lights, moving through neighborhoods above tree tops, over busy streets in Houston in 1980. +1980-10-10,32.7833333,-96.8,Dallas,TX,unknown,300,Strange shape shifting craft of pure light energy. +1980-10-10,42.9955556,-71.4552778,Manchester,NH,light,300,A red glowing sphere stopped and watched me. +1984-10-10,29.7630556,-95.3630556,Houston,TX,circle,60,2 experience with unkown +1984-10-10,44.7630556,-85.6205556,Traverse City,MI,other,120,translucent football seen over city airport +1984-10-10,41.0338889,-73.7633333,White Plains,NY,formation,20,Saw a hugh object in sky with lights intermittently placed not making any noise traveling north in the night sky.It had no real identif +1988-10-10,43.0388889,-87.9063889,Milwaukee,WI,triangle,600,A silent black triangular object with no lights moved over us as we walked our dog across a school playground. +1988-10-10,43.9627778,-70.2830556,New Gloucester,ME,unknown,120,I'm still afraid to look at the sky at night. +1988-10-10,40.015,-105.27,Boulder,CO,light,60,Three Stars Begin to Move Randomly, Stop, Change Direction, Move Again, And Then Vanish +1988-10-10,47.6063889,-122.3308333,Seattle (Ballard Area),WA,unknown,2,Two adult witnesses are stunned by the sound of an object that streaks above the home they are in. +1989-10-10,34.1577778,-118.6375,Calabasas,CA,disk,300,Unidentified object on Mulholland Highway. +1989-10-10,46.7163889,-122.9530556,Centralia,WA,triangle,60,A huge triangularly shaped silent object that blotted out 25 degrees of the sky, lighted by four glowing points. +1990-10-10,31.7058333,-83.6533333,Ashburn,GA,triangle,120,Translucent Craft that makes No Sound While Moving +1991-10-10,35.235,-75.6288889,Frisco,NC,unknown,1800,A friend and myself were standing on the shore of the Pamlico sound as we observed 4 objects moving in up and down motions for about 30 +1991-10-10,40.2736111,-76.8847222,Harrisburg,PA,triangle,600,We observed 3 triangular shaped high speed objects! +1992-10-10,30.1586111,-85.6602778,Panama City,FL,formation,3600,During a road trip to Panama City a friend and I witnessed a pair of luminous light formations appear and dissappear over the Gulf. +1992-10-10,29.6158333,-95.5575,Stafford,TX,unknown,10,A man emerges from a beam of light that shines on a grassy field at night and he runs towards the Texas Instruments parking lot. +1992-10-10,35.8905556,-83.7247222,Seymour,TN,cigar,60,Stationary Elongated UFO 200ft above vacant field with city lights on bottom +1992-10-10,32.7591667,-97.7969444,Weatherford,TX,unknown,30,Black or dark grey. Too big, too low, too slow, too quiet, for a normal aircraft. +1993-10-10,40.6936111,-89.5888889,Peoria,IL,light,8,Light over Peoria, IL that moves slowly, stops in mid-air, hovers, changes colors, shoots in opposite direction and disappears. +1993-10-10,36.2522222,-85.9516667,Carthage,TN,other,60,1 object with green and red lights +1994-10-10,42.9097222,-73.8955556,Burnt Hills,NY,rectangle,120,Giant rectangular craft (resembling an upside-down aircraft carrier) over highway near Saratoga, NY. +1994-10-10,34.1027778,-91.9922222,Pinebergen,AR,light,5,Round, bright, low flying object silently speeds West of Arkansas town at 11:30pm, 10/10/94. +1996-10-10,39.0725,-93.7169444,Higginsville,MO,triangle,3,illuminated triangular craft, flying at high speed from South to North +1996-10-10,32.7763889,-79.9311111,Charleston,SC,light,300,Flashing object above Charleston, SC +1996-10-10,39.4402778,-84.3622222,Monroe County,OH,cylinder,60,Looked like it went through the hillside +1997-10-10,39.6411111,-85.1411111,Connersville,IN,delta,14400,3 differants types , cluster ,delta , and one in a 3 pointed star design . followed it for six miles . +1997-10-10,33.4222222,-111.8219444,Mesa,AZ,sphere,30,A small dark purple quad-thruster craft hovering 200-300 feet in the sky. 500 Lights On Object0: Yes +1997-10-10,32.5436111,-83.5961111,Bonaire,GA,triangle,300,Triangular Object Sighted at Very Close Range +1997-10-10,43.6666667,-92.9744444,Austin,MN,other,3600,i was traveling northbound on state highway 105 approximately 8 miles south of Austin MN when an object came down directly above my car +1998-10-10,34.0983333,-118.3258333,Hollywood,CA,changing,300,I was standing outside on Sunset Blvd. at Vine and looked straight up which I normally do not do. I saw three bright white lights in a +1998-10-10,33.4483333,-112.0733333,Phoenix (North Part),AZ,fireball,15,bright green moving north to north east. it was bright green and kinda clear. quite fast too. +1998-10-10,42.0372222,-88.2811111,Elgin,IL,cylinder,1800,While looking up at sky I noticed a bright light hovering above the sky. then I noticed a jet airliner traveling in the same area and I +1998-10-10,36.175,-115.1363889,Las Vegas,NV,cigar,600,White, vertical cigar shape floating around in the eastern sky. +1998-10-10,36.175,-115.1363889,Las Vegas,NV,circle,2700,Ufo sighting in las vegas near Area51 +1998-10-10,47.6588889,-117.425,Spokane (About 30 Miles Sw Of,i-90, Maybe Mm 254),WA,triangle,600,Dark boomerange object seen for ten minutes hovering over the freeway with a bright light out the front that lit up the fields. No jet +1998-10-10,35.5847222,-80.8102778,Mooresville,NC,light,2,Star gazing in back yard with telescope and binos. Saw shooting star and an oblong shape of light. +1998-10-10,35.265,-84.5533333,Delano,TN,fireball,15,I came home from work one night and I seen a bright fire like ball go across the top ofthe mountain and it was going fast then it stopp +1999-10-10,38.0194444,-122.1330556,Martinez,CA,changing,3600,Bright objects, red and green flashing lights (and a diffuse white light off to one side of the larger of the two objects), about 30 de +1999-10-10,39.1141667,-94.6272222,Kansas City,KS,unknown,600,Orange object over city. +1999-10-10,32.7833333,-96.8,Dallas,TX,other,10,group of twinkling lights at high altitude +1999-10-10,32.7152778,-117.1563889,San Diego,CA,fireball,3600,At 10:45 in the morning, my father and I noticed a small stationary object in the sky. +1999-10-10,46.2113889,-119.1361111,Kennewick,WA,sphere,45,Standing outside saying goodby to family members and pointing to Chem-Trails +1999-10-10,37.6688889,-122.0797222,Hayward,CA,circle,90,Many different colored glowing objects +1999-10-10,37.6447222,-115.7427778,Rachel,NV,light,10800,Bright lights with incredible agility seen from mailbox at Area 51 on UFO highway in Nevada for several hourse. +1999-10-10,41.6916667,-97.4841667,Humphrey,NE,sphere,300,Object moving erratically in sky stopped by spot light +1999-10-10,45.565,-117.9163889,Elgin,OR,chevron,240,Object silently traveled north -northwest. It was V shaped with five orange lights on the perimeter and one white ligh in the center of +1999-10-10,44.8838889,-84.3055556,Lewiston,MI,oval,2700,Oval shaped with lights all around it in a haze with several smaller lights flying all around it. +2000-10-10,37.7241667,-89.8611111,Perryville,MO,oval,180,The craft was big, orange, and oval shaped. +2000-10-10,26.525,-80.0666667,Boynton Beach,FL,other,10,Unusual light formation moving extremely fast across the sky. +2000-10-10,38.1266667,-92.0844444,Brinktown,MO,light,1800,3 bright golden lights moving independently above the tree line flaring and fading intermittently for approx. 15 min. +2000-10-10,38.9988889,-84.6266667,Florence,KY,light,5,Two objects traveling side by side pass over, as one begins to zig, zag it's path. +2000-10-10,47.6063889,-122.3308333,Seattle (West),WA,unknown,10,Dark object in the shape of a (4) after dusk in West Seattle +2000-10-10,47.5405556,-122.635,Port Orchard,WA,diamond,60,One night my window started to flash +2001-10-10,42.3952778,-94.6336111,Rockwell City,IA,triangle,240,Large,silent,slow,low to the ground dull-black Triangle UFO with round red lights at it's corners that were off .I drew it. +2001-10-10,37.6688889,-122.0797222,Hayward,CA,circle,120,FALLING STAR STOPS 'SHOTS OUT DOZENS OF RED POINTS OF LIGHT +2001-10-10,41.0041667,-92.3736111,Ottumwa,IA,rectangle,300,We saw a square object at night, which had 2 blue & 2 red lights at corners, hovering in sky above us. +2001-10-10,36.7477778,-119.7713889,Fresno,CA,changing,900,Objects were sighted driving north on Highway 5 in California's central valley after night fall, not far past "Kettleman/Fresno" exit s +2001-10-10,33.4483333,-112.0733333,Phoenix,AZ,triangle,60,Triangle shaped craft spotted flying west to east over mid town Phoenix on 10/10/01 at 22:00 hours 4 light dim making no sounellow +2001-10-10,36.8527778,-75.9783333,Virginia Beach,VA,triangle,30,shaped like a stealth bomber (boomerang like, but more triangluar) flat-black in color, made a deep humming sound either really low to +2002-10-10,46.0130556,-91.4844444,Hayward,WI,flash,43,we saw pure a light that occasionaly split into 3 to 4 different lights. +2002-10-10,44.5402778,-123.3663889,Philomath,OR,unknown,5,i watched on the portland news that the space shuttle would be visiable and went to philomath oregon to what was known to be the apple +2002-10-10,47.6063889,-122.3308333,Seattle,WA,sphere,90,Light falls from sky +2002-10-10,39.1619444,-84.4569444,Cincinnati,OH,other,1800,Large octagon blue lights on rim red center light hovers over downtown Cincinnati thursday October 10. +2002-10-10,45.5236111,-122.675,Portland,OR,circle,120,The LIGHT is the TRUTH! +2003-10-10,34.0952778,-118.1261111,Alhambra,CA,oval,300,3 Black ovals in the sky and a floating movie camera +2003-10-10,39.7683333,-86.1580556,Indianapolis,IN,sphere,1800,Sphere shape object with flashing bright white lights +2003-10-10,38.8402778,-77.4291667,Centreville,VA,other,600,Aliens check out local high school football game. +2003-10-10,42.9897222,-116.0925,Grand View,ID,light,15,Bright light above Mt. Home AFB +2003-10-10,41.7791667,-83.5688889,Temperance,MI,oval,18000,pulsating green white and red object in the northwest sky at 45degrees +2003-10-10,33.8075,-78.7011111,Crescent Beach,SC,formation,37800,For two consecutive nights, we watched a pattern of lights before we were stunned by a discovery on the beach. +2003-10-10,35.0844444,-106.6505556,Albuquerque,NM,light,180,Three bright lights that were huddled together than began to seperate and disappeared. +2003-10-10,45.3088889,-89.4963889,Gleason,WI,sphere,1800,UFO Contact, Amazing close sighting +2004-10-10,41.0886111,-74.1441667,Mahwah,NJ,triangle,180,Triangle shaped flying, hovering U.F.O. witnessed over Sheraton Hotel in Mahwah, NJ. on 10/10/04. +2004-10-10,39.4666667,-87.4138889,Terre Haute,IN,sphere,5,silently, it came over my head from behind; as I was laying on my back. About the size of a thumbnail at arms length, was a lite white +2004-10-10,39.7683333,-86.1580556,Indianapolis,IN,oval,15,((NUFORC Note: Possible sighting of a contrail?? PD)) +2004-10-10,39.6294444,-79.9561111,Morgantown,WV,circle,10,Solid round silver ball passing over at about 3000MSL. +2004-10-10,37.8716667,-122.2716667,Berkeley,CA,unknown,180,While driving my car in the mid afternoon of a day in the fall of 2004 on HYW 580 East-bound I had just crossed the San Rafael / Richmo +2004-10-10,41.5094444,-90.5786111,Rock Island,IL,sphere,3600,The sky was clear and the objects at times appeared to rotate slowly. +2004-10-10,42.2669444,-79.7108333,Ripley,NY,circle,900,7 red/orange stationary objects appeared over Lake Erie on 10/10/04 for 15 minutes and then all disappeared at once. +2004-10-10,44.295,-93.2686111,Faribault,MN,flash,900,Metor or craft descending then sudden flash of light +2004-10-10,40.7583333,-82.5155556,Mansfield,OH,light,7200,Several UFO's, one bigger one flew right over the car. +2004-10-10,38.9516667,-92.3338889,Columbia,MO,light,60,A light moved across the sky in a zig zag way then straightened out and went straight out into space in a matter of seconds. +2004-10-10,45.3088889,-89.4963889,Gleason,WI,sphere,3000,It was about 9:30PM my friend and I were going to go out deer shining with my step dads truck and my friends spotlight. We left his hou +2005-10-10,47.6063889,-122.3308333,Seattle,WA,other,60,round symetrical with roundish flat bottom shiny white colored low flying bigger than a plane. +2005-10-10,33.415,-111.5488889,Apache Junction,AZ,other,30,half-moon shaped objects that just winked out +2005-10-10,25.9327778,-80.1627778,North Miami Beach,FL,oval,1800,i sent you an e-mail 2 days ago and really want to be contacted, PLEASE contact me asap, I'm not crazy and nether is my wife, please c +2005-10-10,34.0522222,-118.2427778,Los Angeles,CA,egg,10,Egg UFO over Hollywood Hills and LAX in LOS ANGELES, CA. +2005-10-10,40.5030556,-78.6305556,Loretto,PA,triangle,300,Dull red flash, Triangular ship, Vocal Noises +2005-10-10,35.4491667,-86.7888889,Lewisburg,TN,unknown,240,Like a grouping of balloons with a slight glow to them +2005-10-10,25.9327778,-80.1627778,North Miami Beach,FL,other,3600,a manta ray shaped object with orange and yellow lights flashing in +2005-10-10,47.4158333,-120.2919444,East Wenatchee,WA,light,1200,Strange light over East Wenatchee Washington +2005-10-10,35.3186111,-82.4611111,Hendersonville,NC,light,600,Last night, October 10, at about 11:00PM for about ten minutes I observed a peculiar point source light in the Eastern sky. It was at a +2005-10-10,46.3580556,-94.2005556,Brainerd,MN,disk,300,A big lighted up silver saucer. +2006-10-10,31.1911111,-95.2352778,Pennington,TX,diamond,3600,IN form of diamond with multi colored lights that acted like disco light except one. theone light was like a brite star and would resp +2006-10-10,37.775,-122.4183333,San Francisco,CA,triangle,600,black triangles were seen flying across the surface of the full moon +2006-10-10,34.8761111,-83.9583333,Blairsville,GA,unknown,10,Intermittant streak by moon, not seen on photo taken 10 seconds earlier. +2006-10-10,35.2247222,-88.2491667,Savannah,TN,light,600,weird light that moved in the sky +2006-10-10,38.0683333,-78.8897222,Waynesboro,VA,triangle,600,Large...beautiful...and brighter than anything I've ever seen....How small I have felt since.... +2006-10-10,34.6377778,-97.8172222,Bray,OK,other,360,Glowing V Shaped Object flying Low making no sound. +2006-10-10,31.2133333,-82.3541667,Waycross,GA,light,120,Redish orange light viewed from Waycross ,Ga. Moving Northwest and suddenly just goes out. +2006-10-10,33.5058333,-102.0086111,Wolfforth,TX,disk,300,Huge aircraft with diagnally aligned white lights moving slowly and loudly through the night. +2006-10-10,41.52,-81.4888889,Lyndhurst,OH,unknown,300,This is a follow up to my Feb. 16th, 1995 report. This past Tuesday, my wife and I AGAIN heard the same loud, rumbling roar that we he +2007-10-10,44.5366667,-122.9058333,Lebanon,OR,light,14400,Small Orange-White "star" that moves around in circles, up, down, and sideways fast in the night sky +2007-10-10,33.5441667,-84.2338889,Stockbridge,GA,changing,3600,i was abducted +2007-10-10,39.7391667,-104.9841667,Denver,CO,changing,2700,Huge lighted cluster in the eastern sky. ((NUFORC Note: Sighting of Venus. PD)) +2007-10-10,30.3319444,-81.6558333,Jacksonville,FL,sphere,30,half mile from de saint Jhons River, low flying sphere, at slow speed without noise +2007-10-10,33.7205556,-116.2147222,Indio,CA,oval,600,Observed 2 white clouds of identical shape in clear blue shy with object becoming visible beneath one cloud. +2007-10-10,42.1033333,-76.2625,Owego,NY,triangle,10800,triangle with 3 llights blinking. 500 Lights On Object0: Yes +2007-10-10,40.0063889,-75.7036111,Downingtown,PA,circle,120,Star-like (but MUCH BRIGHTER AND LARGER) light west of D-town, PA. Seen against sunset. ((NUFORC Note: Contrail?? PD)) +2007-10-10,30.2669444,-97.7427778,Austin,TX,flash,3,pulsing flash recurring at 2 second intervals 3 times along the same trajectory along 90 degrees of sky +2007-10-10,33.5394444,-83.8194444,Starrsville (Covington),GA,sphere,60,MUFON GEORGIA FOLLOW-UP REPORT: Joint NUFORC-MUFON of Georgia Investigation-Fiery Sphere Shaped Object +2007-10-10,33.6675,-84.0177778,Conyers,GA,unknown,3600,Craft seen falling and dissapears into thin air. ((NUFORC Note: Missile launch?? We have no explanation for the aircraft. PD)) +2007-10-10,27.6383333,-80.3975,Vero Beach,FL,unknown,30,Shooting star without red globe burn-out or descent maintains steady Southerly trajectory. ((NUFORC Note: Missile launch?? PD)) +2007-10-10,27.2541667,-80.23,Jensen Beach,FL,oval,120,A oval shaped object hovered and shot through the sky with very bright lights and then vanished. 500 Lights On Object0: Yes +2007-10-10,29.7630556,-95.3630556,Houston,TX,formation,35,Large Boomerang formation of lights over Houston, Beltway 8 & Westheimer moving north to south 10/10/07, 9:43 PM. +2007-10-10,46.7833333,-92.1063889,Duluth,MN,light,600,Bright pulsating light over lake superior. +2007-10-10,40.68,-102.8388889,Fleming,CO,circle,600,UFO SPOTTED, FLEMING COLORADO +2007-10-10,41.1577778,-80.0888889,Grove City,PA,unknown,3600,Light pattern moving silently through rapid maneuvers over Grove City +2007-10-10,33.4213889,-96.5769444,Van Alstyne,TX,other,4,large mass of tiny lights all clustered together in the shape of a large boomerang over eastern sky in north Texas. +2007-10-10,39.885555600000004,-104.9866667,Northglenn,CO,triangle,15,Hovering triangular shape seen with flashing lights seen in Colorado +2008-10-10,45.5113889,-92.98,North Branch,MN,light,300,Lights at night, shining into car and garage and around blinds +2008-10-10,42.6291667,-73.865,Slingerlands,NY,circle,240,Huge, moon size, orange, bright, almost complete circle +2008-10-10,40.7138889,-116.1030556,Carlin,NV,disk,600,Ufo sighting in Carlin, NV, at the pilot truck stop. 500 Lights On Object0: Yes +2008-10-10,37.9747222,-87.5558333,Evansville,IN,formation,600,I saw a huge V-shaped object moving slowly and silently over the roof tops in my neighborhood. +2008-10-10,42.6525,-73.7566667,Albany,NY,oval,45,I live Colonie, New York, a suburb of Albany. I live within 4 miles of the Albany International Airport. Many takeoff’s and landings +2008-10-10,37.5483333,-121.9875,Fremont,CA,triangle,60,I saw a brightly lightes v shaped ufo while driving through fremont,ca. +2008-10-10,32.7252778,-114.6236111,Yuma,AZ,triangle,900,Carousel in the sky on fire / pixalated triangle over Yuma, AZ +2008-10-10,41.6833333,-86.25,South Bend,IN,light,600,Glowing succession of flying objects on the horizon. +2008-10-10,43.8280556,-91.3038889,La Crescent,MN,formation,10,six strange lights in the sky over La Crescent MN +2008-10-10,39.9522222,-75.1641667,Philadelphia,PA,oval,60,Silent, oval, bright white craft in yard. +2008-10-10,47.6063889,-122.3308333,Seattle,WA,light,180,Around 8:00 pm? I Went out side and looked up at the stars and I saw a light which I thought was a small faded star until it started t +2008-10-10,38.2544444,-104.6086111,Pueblo,CO,light,300,In the northwest sky, there were about seven lights moving slowly and flashing in and out if an extremely strange fashion. +2008-10-10,39.1619444,-84.4569444,Cincinnati,OH,oval,900,12 ovel objects flying east to west orange and red at a slow speed then vanished +2008-10-10,32.7152778,-117.1563889,San Diego,CA,disk,30,low flying saucer in suburban area. ((NUFORC Note: Student report. PD)) +2008-10-10,43.073055600000004,-89.4011111,Madison,WI,circle,20,Tanslucent orange/yellow UFO in Madison WI +2008-10-10,40.4797222,-84.6283333,Coldwater,OH,sphere,60,spherical in shape, orange flames coming from the bottom, completely silent, moved fast and also hovered. +2009-10-10,38.8697222,-106.9872222,Crested Butte,CO,egg,60,metallic egg shaped craft above crested butte, CO. Also have seen great amount of activity READ ME! +2009-10-10,36.1538889,-95.9925,Tulsa,OK,unknown,6,In't see nothing in the park +2009-10-10,34.1111111,-109.2908333,Eagar,AZ,unknown,180,Second sighting was only 150 feet away. Observations between two sightings. +2009-10-10,36.7280556,-76.5838889,Suffolk,VA,unknown,900,It looked sort of lime green. It appeared to have an odd texture. It had a dimples on its surface. It was not smooth at all. It jus +2009-10-10,33.8352778,-117.9136111,Anaheim,CA,light,300,UFO over Disneyland. +2009-10-10,34.2255556,-77.945,Wilmington,NC,light,600,Two lights seen with a lighting of something strobe like near the ground. +2009-10-10,39.1155556,-77.5638889,Leesburg,VA,disk,300,Two large glowing amber/dark orangish colored circular disks-not a sound- +2009-10-10,41.7075,-86.895,Michigan City,IN,changing,900,black object that seemed to impode into a sphere and vanish, only to reappear in the same shape and move location +2009-10-10,37.323055600000004,-122.0311111,Cupertino,CA,light,180,Bright red light object made random moves horizontally and floated for a while and then went up vertically. +2010-10-10,42.7675,-78.7441667,Orchard Park,NY,light,7200,Xmas colored rotating lights. ((NUFORC Note: Twinkling stars?? PD)) +2010-10-10,40.2736111,-76.8847222,Harrisburg,PA,circle,240,possible UFO sighting +2010-10-10,41.5930556,-81.5269444,Euclid,OH,circle,180,2 objects blinking red and white, disappeared into the sky, after hovering around sky for 3 minutes.( over lake erie +2010-10-10,34.3769444,-82.6958333,Starr,SC,formation,600,Strange orange lights in the night sky +2010-10-10,41.0263889,-73.6288889,Greenwich,CT,light,240,"Star" like objects during clear day light in formation. +2010-10-10,32.8544444,-79.975,North Charleston,SC,light,180,Object(s) visible 3 times at same place in the sky at during day in Chas, SC +2010-10-10,38.7891667,-77.1875,Springfield,VA,cigar,15,Metalic cigar shaped object sighted during lull in a storm in Springfield, VA +2010-10-10,41.1669444,-73.2052778,Bridgeport,CT,light,600,Saw a light in the sky fading in and out over Bridgeport, CT. +2010-10-10,45.4077778,-122.5691667,Clackamas,OR,triangle,120,triangular ufo sighting in oregon 10-10-10 +2010-10-10,31.4636111,-100.4366667,San Angelo,TX,oval,60,I was coming back from the grocery store around 8:30 pm when I noticed a large orange glowing object in the sky above my neighbors hous +2010-10-10,41.8525,-72.6441667,Windsor,CT,fireball,5,Bus sized fireball object over 91 about 3-400 ft up going about 150 mph at a downward 20 degree angle. +2010-10-10,41.7886111,-89.6961111,Sterling,IL,cylinder,600,It had rows of white lights with red lights pulsating in between them +2010-10-10,47.9791667,-122.2008333,Everett,WA,other,30,crown shaped object with two orange lights over everett wa +2010-10-10,35.8752778,-110.6197222,Kykotsmovi,AZ,disk,7200,We saw what seem to be a space craft in the eastern sky of northern AZ, on 10-10-10. +2010-10-10,42.6525,-73.7566667,Albany,NY,circle,10,Circle of light SUNY Albany. +2010-10-10,33.7738889,-117.9405556,Garden Grove,CA,egg,7200,Blue Light in Garden Grove +2010-10-10,25.7738889,-80.1938889,Miami,FL,changing,1200,Bright lights hovering and going in and out of orchestrated formations +2011-10-10,42.7283333,-73.6922222,Troy,NY,triangle,7200,Red, green & orange blinking triangle formation. ((NUFORC Note: Probable sighting of a twinkling star, possibly Sirius. PD)) +2011-10-10,36.7280556,-108.2180556,Farmington,NM,circle,300,Single reddish circle in the sky that wasn't jet nor satelitte +2011-10-10,34.61,-112.315,Prescott Valley,AZ,other,300,Craft boomerang shape.2:00am duration hours. ((NUFORC Note: Probable sighting of a twinkling star, possibly Sirius. PD)) +2011-10-10,42.0963889,-79.3758333,Ashville,NY,circle,60,Amber object in night sky during full moon, or the day before full moon +2011-10-10,41.55,-71.4666667,North Kingstown,RI,oval,40,Bright oval object in sky +2011-10-10,41.35,-72.0788889,Groton,CT,disk,5,Small shiny object seen in sky while driving on clear day, looked back for a 3rd time and it was gone. +2011-10-10,37.6086111,-77.3736111,Mechanicsville,VA,light,300,Three orange lights flying in unison +2011-10-10,41.5622222,-72.6511111,Middletown,CT,fireball,1200,Fireball Spinning Orange UFO +2011-10-10,41.4819444,-81.7983333,Lakewood,OH,fireball,60,Orange light flies overhead and turns black as it passed silently. +2011-10-10,39.9625,-76.7280556,York,PA,circle,15,BRIGHT LIT ORB SPEEDS ACROSS S.CENTRAL PA. SKY, MAKING NO SOUND, THEN DISAPPEARS +2011-10-10,41.1238889,-100.765,North Platte,NE,circle,3,Object over North Platte Nebraska +2011-10-10,39.5297222,-84.0866667,Waynesville,OH,triangle,90,Flying triangle by Waynesville, Ohio +2012-10-10,41.1669444,-73.2052778,Bridgeport,CT,circle,630,A Bright light that is a UFO +2012-10-10,32.7152778,-117.1563889,San Diego,CA,sphere,240,Single white light or craft passed over and very close to a commercial jet. ((NUFORC Note: Possibly the ISS? PD)) +2012-10-10,42.5802778,-83.0302778,Sterling Heights,MI,oval,120,A black unknown craft is seen in the sky over Sterling Hts. Michigan +2012-10-10,43.0480556,-76.1477778,Syracuse,NY,light,900,Went to move my car to the other side of the road in the city of syracuse. saw low flying lights moving east towards dowtown. +2012-10-10,43.0480556,-76.1477778,Syracuse,NY,circle,240,Bright orange circles going thru the sky in the same direction. Some were closer to each other. +2012-10-10,38.8338889,-104.8208333,Colorado Springs,CO,light,20,Bright zig zagging light in the sky above norad. +2012-10-10,32.9975,-87.63,Moundville,AL,changing,240,Orange fiery lighting objects changing locations. +2012-10-10,40.7141667,-74.0063889,New York City (Bronx),NY,disk,1800,A cloaked disk hovered three hundred feet above two apartment buildings in the Bronx, for aproximately thirty minutes. +2012-10-10,32.3122222,-106.7777778,Las Cruces,NM,fireball,120,4 fireballs in sky side by side +2012-10-10,37.7305556,-88.9330556,Marion,IL,light,240,I was leaving my friend's house to go home. My friend and her 3 1/2 year old daughter walked me to her front door when she noticed all +2012-10-10,37.3394444,-121.8938889,San Jose,CA,other,6,POSSIBLE ALIEN/HUMANOID SEEN RUNNING INTO HILLS +2012-10-10,33.4483333,-112.0733333,Phoenix,AZ,sphere,300,18 glowing UFOs seen over Phoenix AZ tonight, 10/12/12 8:45PM +2012-10-10,46.6022222,-120.5047222,Yakima,WA,light,240,Noticed light in the N.E. section of the sky about 30 deg. up that did not move. About the size of Venus. ((NUFORC Note: Capella? PD +2012-10-10,30.2669444,-97.7427778,Austin,TX,changing,1200,Spheres of light seen over the west campus area of austin which then broke apart and sped off in different directions. +2012-10-10,36.3436111,-83.2841667,Bean Station,TN,cigar,180,Large cigar shaped flying about 800 feet high. Huge square engines on back. +2012-10-10,46.8219444,-123.095,Rochester,WA,light,600,Fleet of red UFO's emerging from Mt. Rainier. +2012-10-10,41.1147222,-74.15,Suffern,NY,cylinder,20,UFO over Suffern NY +2012-10-10,33.7397222,-116.4119444,Rancho Mirage,CA,rectangle,5,Flying red object over Rancho Mirage, ca +2013-10-10,28.0777778,-82.7638889,Palm Harbor,FL,chevron,5,Tracking north to south at apx 2500 ft. A very fast, semi-transparent Chevron shape craft, slightly larger than a commercial plane. +2013-10-10,38.6272222,-90.1977778,St. Louis County,MO,light,10800,Hovering bright object moving slowly around St. Louis. +2013-10-10,40.9780556,-81.7822222,Rittman,OH,light,60,Fast moving white light. +2013-10-10,44.4905556,-73.1113889,Essex Junction,VT,light,120,Noiseless, low flying, white, bright constant light. +2013-10-10,29.9938889,-90.2416667,Kenner,LA,circle,600,2 circle lights moving erratically over Kenner, La. +2013-10-10,39.7463889,-84.2866667,Drexel,OH,circle,300,Yellow/orange, sphere/circle that flew across night sky ,slow speeds then simply vanished , had no blinking lights, was not an airplane +2013-10-10,42.7647222,-71.4402778,Hudson,NH,light,5,White, orb above the clouds moving very fast, no flashing lights, zoomed across the sky and disappeared out of sight. +2013-10-10,42.9275,-83.63,Grand Blanc,MI,light,1200,3 bright lights holding a vertical position over central Michigan, USA. +2013-10-10,44.7791667,-93.3361111,Savage,MN,circle,60,I saw a sphere shaped object flying east to west moving faster than any conventional aircraft was white to orange in color as it reache +2013-10-10,42.4775,-83.0277778,Warren,MI,sphere,45,Three glowing reddish-orange spheres changing to white lights +2013-10-10,42.3086111,-83.4822222,Canton,MI,triangle,180,Black triangle aircraft with white lights on each point, completely silent, seen flying low SW to NE. +2013-10-10,39.1611111,-80.3522222,Lost Creek,WV,triangle,45,Small triangle with 3 lights floating low over a field then slowly flying away. +2013-10-10,42.7647222,-71.4402778,Hudson,NH,light,1,Very white bright light moving fast inside clouds. +1973-10-11,26.9338889,-80.0944444,Jupiter,FL,egg,14400,EGG-SHAPED OBJECT EMITS LIGHT RAY AND PEOPLE LOSE 4 HOURS +1978-10-11,42.5294444,-83.7802778,Brighton,MI,circle,300,round revolving lights reflecting on the fog +1987-10-11,44.9133333,-93.5030556,Minnetonka,MN,light,30,White light moves west to east, suddenly stops, then moves south at a high rate of speed. +1987-10-11,38.3708333,-90.5002778,Otto,MO,fireball,60,bright blue ball of light. +1989-10-11,41.2455556,-89.9247222,Kewanee,IL,sphere,180,HBCCUFO CANADIAN REPORT: Large glowing sphere was positioned almost directly overhead. +1989-10-11,41.2455556,-89.9247222,Kewanee,IL,sphere,300,Reddish-orange sphere seen outside Kewanee, IL +1992-10-11,35.0844444,-106.6505556,Albuquerque,NM,sphere,900,Six Spheres of light move into my vision over the 92 Albuquerque Balloon Fiesta,then vanish straight up. +1994-10-11,39.7763889,-74.8627778,Jackson,NJ,triangle,300,triangle UFO in jackson NJ Countyline 526 over the old fire station next to the trailer park +1994-10-11,33.9533333,-117.3952778,Riverside,CA,chevron,4,Double white lights in chevron shape flying north to south about the size of the constellation of the Pleades, covered half the sky in +1996-10-11,36.6336111,-81.7838889,Damascus,VA,light,60,1996 SIGHTING IN DAMASCUS, VA. WHILE CAMPING IN THE CHEROKEE NATIONAL FOREST. +1998-10-11,37.5422222,-122.515,Montara,CA,other,3600,Boomerang shaped lit up at the neds and center of the boomerang. +1998-10-11,18.4463889,-66.3880556,Vega Baja (Puerto Rico),PR,cigar,120,I went out and saw this cigar shaped object, high above, about where the sun would be at 12 o'clock. I stared at it trying to identify +1998-10-11,36.5452778,-82.6611111,Mount Carmel,TN,light,10,Bright shiny object splits in two and disappears above horizon. +1998-10-11,39.7944444,-87.3958333,Highland,IN,sphere,14400,Spherical. Red, yellow, and green lights. Below clouds, yet very high up. +1998-10-11,44.3875,-68.2044444,Bar Harbor (Bar Island Crossover),ME,sphere,30,My friend Steven and I were crossing over to Bar Island at low tide when we witnesses a green spherical object crossing the sky at a gr +1998-10-11,38.4088889,-121.3705556,Elk Grove,CA,fireball,4,Greenish blue fireball streaking across horizon +1999-10-11,32.3666667,-86.3,Montgomery,AL,light,180,Bright light coming from back yard and a surreal sensation of forboding. +1999-10-11,34.0522222,-118.2427778,Los Angeles,CA,light,300,It was a large bright light sitting stationary in the sky. Within our atmosphere. Not a star. It did not move or change shape and was t +1999-10-11,41.9438889,-85.6325,Three Rivers,MI,oval,600,While dirving to work this monday morning the 11th of October I spotted two jets flying toward the horizion. Becouse of the rising sun +1999-10-11,45.2630556,-122.6913889,Canby,OR,light,10,i saw bright light come out of clouds, 2 aircraft came from behind and appeared to shot at the light, light went back into the clouds +1999-10-11,42.0386111,-78.3411111,Portville,NY,oval,30,The object was just below the tree line. The object was light up by a yellowish light with blue lights.You could see the windows in it +1999-10-11,42.0386111,-78.3411111,Portville,NY,oval,30,Was oval shaped had different colored lights all the way around the center of the object. The top was yellowish with windows with light +1999-10-11,42.0386111,-78.3411111,Portville,NY,oval,60,it was a beautiful oval shaped object that had huge windows lite with every color you can imagine. we saw this object to the left of t +1999-10-11,42.0386111,-78.3411111,Portville,NY,oval,60,oval shaped with colorful lights all around with huge windows lite up very colorful most beautiful thing in the sky. in valley area it +1999-10-11,36.6230556,-93.1638889,Kirbyville (Due South Of),MO,other,5400,About 2030 cst I noticed what apeared to be a "tumbler" a flashing satellite. After observing for approx.10 min. I realized that the ob +1999-10-11,40.9730556,-117.7347222,Winnemucca,NV,cigar,2,oblong, extremely large and bright object in sky, going behind mountains. Object much larger than a meteorite. +1999-10-11,42.1947222,-122.7083333,Ashland,OR,triangle,45,I was looking into the sky towards the high east watching what appeared to be a passenger jet cross the sky when my periphial vision ca +1999-10-11,37.6866667,-96.9763889,Augusta,KS,light,600,Object was at 45 degrees above southern horizon. Being stationary for 5 mins. and then executed some right angle maneuvers. Focal dista +1999-10-11,30.3880556,-95.6961111,Montgomery,TX,light,3600,Pinpoint of light travelled from east to west breifly then hovered for about an hour then disappeared. +1999-10-11,36.4011111,-93.7377778,Eureka Springs,AR,light,900,Bright light due south, traveling east extremely slowly. Bright flash given off from object every 10 seconds, with a dim flash every 3 +1999-10-11,41.9316667,-87.9888889,Addison (I-355 And Us 20 (Lake St.),IL,disk,600,Saucer shaped object,with rows of red lights on bottom side; one white lighttop and bottom +2000-10-11,43.9747222,-75.9111111,Watertown,NY,light,30,Was looking at the near full moon with binoculars when a very bright round light appeared to the left of the moon. at arms lenght it wa +2000-10-11,38.7138889,-121.4616667,Elverta,CA,light,30,White starlike lights in sky that blink red and blue and move erratically over Sacramento region. +2000-10-11,33.9791667,-118.0319444,Whittier,CA,light,1500,UFO ENCOUNTER LESS THAN 300 FEET +2001-10-11,45.1244444,-92.6733333,Somerset,WI,light,10800,My brother and I went outside to have a smoke and then noticed a moving, multicolored light in the sky.... +2001-10-11,64.8377778,-147.7163889,Fairbanks,AK,other,1800,It looked like a star but it would move and after a few seconds a red aura would appear around it and emit objects. +2001-10-11,39.7391667,-104.9841667,Denver,CO,light,900,Odd Lights in Colorado Sky +2001-10-11,31.2516667,-89.8375,Columbia,MS,teardrop,300,short vapotr looking teardropped object, always beside the sun!!!noticed from 10/11-10/26/01 +2001-10-11,39.2191667,-121.06,Grass Valley,CA,triangle,60,Three bright white lights in a row, in the sky. +2001-10-11,40.7425,-84.1052778,Lima,OH,teardrop,300,We saw three teardroped shaped crafts with slowy flashing lights moving very slow then taking off very rapidly. +2002-10-11,37.2152778,-93.2980556,Springfield,MO,fireball,6,bright green triangular object throwing sparks traveling extremely fast +2002-10-11,39.5297222,-119.8127778,Reno,NV,sphere,600,A small white sphere which stopped, hovered for 5 minutes, then took off and disapeared. +2002-10-11,42.1625,-71.0416667,Randolph,MA,cylinder,300,Daylight sighting of High Altitude Light +2002-10-11,32.7833333,-96.8,Dallas,TX,fireball,3,Meteor lights up the skies over Dallas, crashes somehere to the south. +2003-10-11,43.6666667,-92.9744444,Austin,MN,circle,5,THE TWO WHITE ROUND OBJECTS FLEW SYNCHONIZED SIDE BY SIDE AND EVENTUALLY VEERED OFF MADE HALF A CIRCLE AND MERGED, AND RE-ENTERED SPACE +2003-10-11,40.7141667,-74.0063889,New York City (Manhattan),NY,egg,120,object discharged another, flew at first low then went higher hovered around empire state building +2003-10-11,39.3280556,-120.1822222,Truckee,CA,sphere,3,Round very light blue object goes behind a small mountain +2003-10-11,43.4197222,-85.8,Newaygo,MI,circle,40,Two fuzzy disks chaseing each other. +2003-10-11,38.7297222,-120.7975,Placerville,CA,light,600,Unverified pair of bold star lights diminishing in perfect unison. +2003-10-11,40.0991667,-104.9366667,Frederick,CO,unknown,10,Large flash outside the house rattling the windows with a low hum. +2003-10-11,39.1652778,-86.5263889,Bloomington,IN,disk,180,Saucer shaped craft with kaleidoscope lights. +2003-10-11,39.0911111,-94.4152778,Independence,MO,chevron,600,UFO with black exhaust sighted in Independence, MO Oct. 11, 2003 +2004-10-11,21.3069444,-157.8583333,Honolulu,HI,triangle,3,3 trangular UFOs were spotted in a triangle formation for 3 seconds. +2004-10-11,34.0522222,-118.2427778,Los Angeles,CA,rectangle,20,Large, rectangular, pale green-blue object spotted at approx. 2:37 am, 10/11/04, moving east over the San Fernando Valley. +2004-10-11,44.9194444,-123.3158333,Dallas,OR,light,20,Very intense light, shone through covered windows, absolutely no sound, felt presence before observing. +2004-10-11,39.7327778,-75.1319444,Pitman,NJ,other,7200,star-like light that bobbled side to side and up and down ((NUFORC Note: We suspect Venus. PD)) +2004-10-11,37.3394444,-121.8938889,San Jose,CA,light,15,Light traveling at very high rate of speed across the morning sky. +2004-10-11,36.6777778,-121.6544444,Salinas,CA,formation,2700,Large formation of UFO's seen over south Salinas, CA on Oct. 11, 2004, in broad daylight. +2004-10-11,35.1186111,-120.5897222,Arroyo Grande,CA,circle,60,observed Angel Hair type UFO +2004-10-11,36.7477778,-119.7713889,Fresno,CA,rectangle,120,Rectangle over Fresno, California. +2004-10-11,27.5061111,-99.5072222,Laredo,TX,fireball,1351,Large flaming tail and eratic movement - sudden change of direction +2004-10-11,26.6155556,-80.0572222,Lake Worth,FL,formation,7200,Multiple formations viewed by three witnesses. +2004-10-11,42.9638889,-78.7380556,Williamsville,NY,light,540,Hovering light seen over Williamsville, NY +2005-10-11,28.1875,-82.7397222,Holiday,FL,light,180,light dancing over holliday florda +2005-10-11,44.8041667,-93.1666667,Eagan,MN,circle,7200,((NUFORC Note: Possible star. PD)) Bright colorfull glowing ball. +2005-10-11,40.6808333,-112.2622222,Lake Point,UT,light,720,Lights near Lake Point/Grantsville, UT +2005-10-11,33.5805556,-112.2366667,Peoria,AZ,light,5400,Formation of amber lights over Tolleson, AZ that flickered off and on for about 90 minutes. +2005-10-11,33.3702778,-112.5830556,Buckeye,AZ,formation,1800,two different multi-light configurations that changed position and appeared low in the sky south of Buckeye, Arizona +2005-10-11,32.8794444,-111.7566667,Casa Grande,AZ,light,1800,amber lights over I-10 near Casa Grande Az. +2005-10-11,33.4147222,-111.9086111,Tempe,AZ,triangle,3,3 light triangle stayed perfectly still and then shot off fter 3 seconds of stillness. +2005-10-11,30.6941667,-88.0430556,Mobile,AL,light,1800,((NUFORC Note: Possible sighting of Mars. PD)) Massive brilliant white light that just hung in the Southern sky. +2005-10-11,40.8527778,-74.0425,Little Ferry,NJ,oval,300,oval sahped the whole thing was lit up with a very bright white light, huvered over the trees,disappeared +2005-10-11,42.2711111,-95.0927778,Wall Lake,IA,light,10,strange shit in the sky in sac county iowa. +2006-10-11,36.1658333,-86.7844444,Nashville,TN,disk,13,Circle shaped solid white object flying through clouds. +2006-10-11,47.8211111,-122.3138889,Lynnwood,WA,unknown,120,I noticed a very white tail behind an object traveling north in the southern sky. It appeared to be very high and far away. The object +2006-10-11,34.0625,-118.1219444,Monterey Park,CA,fireball,120,huge ball of fire hanging in the sky +2006-10-11,47.0227778,-91.6705556,Two Harbors,MN,light,600,Northern Lights ?? Right! +2006-10-11,30.4211111,-87.2169444,Pensacola,FL,diamond,3600,Six orange glowing diamond shaped objects in two separate clusters due east of Pensacola +2006-10-11,30.6322222,-87.0397222,Milton,FL,light,900,THE LIGHTS KEPT FLASHING AND MOVING AT VERY HIGH SPEEDS SHOWING UP THEN WOULD BE GONE IN AN INSTANT THEN FLYING SIDE WAYS UNLIKE ANY PL +2006-10-11,34.2241667,-118.2391667,La Crescenta,CA,circle,3,White light imploded +2006-10-11,36.3955556,-97.8780556,Enid,OK,light,60,Fast moving ball of light speeds across the sky. +2006-10-11,35.5361111,-100.9594444,Pampa,TX,triangle,60,Two triangular objects, lit up by three main lights and other lights in between, moving simotaniously to the East over Pampa Tx. +2006-10-12,43.2127778,-75.4561111,Rome,NY,oval,120,I was walking from the garage to the house,I happen to look up at a plane I hurd over head, a small private plane. There's a small air +2007-10-11,39.0297222,-84.3663889,Melbourne,KY,oval,360,flashing lights spotted near Ohio River +2007-10-11,45.2944444,-123.1752778,Carlton,OR,cylinder,900,it was not anything thath we have +2007-10-11,45.4077778,-122.5691667,Clackamas,OR,circle,900,Silver circular or sphere-like object flying parallel to I-205 in the Gladstone/Clackamas area. +2007-10-11,47.6063889,-122.3308333,Seattle,WA,triangle,10,I saw two orange colored lights, close together but moving independently across the sky, at high rate of speed. Then they disappeared. +2007-10-11,35.0241667,-81.0280556,Tega Cay,SC,light,1800,Bright white light and then 2 blinking red lights in Western Sky +2007-10-11,30.2458333,-87.7008333,Gulf Shores,AL,disk,1800,Brightly lighted Object appeared total of 6-8 times in different locations in night sky over ocean for few seconds and disappeared +2008-10-11,25.9013889,-97.4972222,Brownsville,TX,disk,3,I saw a ufo for 3 seconds by my house. +2008-10-11,37.9780556,-122.03,Concord,CA,light,180,Very small lights, very high. moved at great speed and cganged direction. Not aircraft. +2008-10-11,35.6708333,-80.4744444,Salisbury,NC,sphere,20,7 UNKOWN AIRBORN OBJECT'S SEEN OVER SALISBURY NC..SEARCH GRID WITNESSED!!.. +2008-10-11,41.1669444,-73.2052778,Bridgeport,CT,circle,7200,I saw 6 glowing orbs lining up in different formations witin a 2 hour period over Long Island Sound. +2008-10-11,39.5122222,-76.7697222,Dover,MD,sphere,7200,freinds and familes see UFO +2008-10-11,33.9533333,-117.3952778,Riverside,CA,light,60,Bright light moving from NW to SE +2008-10-11,26.1416667,-81.795,Naples,FL,triangle,30,A dark flying V. +2008-10-11,31.2577778,-95.9780556,Centerville,TX,light,900,MYSTERIOUS LIGHTS IN THE TEXAS SKY. +2008-10-11,35.0844444,-106.6505556,Albuquerque,NM,fireball,120,Vehicle out of southern sky thought to be shooting star hovers over city. +2008-10-11,34.0522222,-118.2427778,Los Angeles,CA,triangle,30,Large Triangle sighted over L.A +2009-10-11,40.7616667,-73.3297222,Deer Park,NY,other,10800,2 Bright Orange lights in the sky moving up, down, and circular motion with shooting streaking trail -looked like shooting star +2009-10-11,37.9833333,-75.8541667,Crisfield,MD,light,600,A bright light moving across the sky getting closer stopped on a dime got brighter and took off with no sounds at all +2009-10-11,42.3713889,-83.4702778,Plymouth,MI,triangle,20,I was standing on a sidewalk near salem high school where i saw a triangular shaped craft slowly gliding right over my head. my mom jus +2009-10-11,33.5386111,-112.1852778,Glendale,AZ,egg,1200,2 eggshaped objects over Glendale Az. near stadium. +2009-10-11,38.2541667,-85.7594444,Louisville,KY,disk,120,strange object photographed over Louisville, Kentucky October 11, 2009 +2009-10-11,26.7052778,-80.0366667,West Palm Beach,FL,oval,3,At around 6pm (18:00 hours) I was outside in the backyard of my home with my Canon EOS Rebel XT digital camera taking photographs of na +2009-10-11,41.9666667,-71.55,North Smithfield,RI,circle,15,I was watching the sky like I always do on a clear night because you can always see what appear to be stars riding along the night sky. +2009-10-11,39.5741667,-86.8652778,Putnamville,IN,flash,540,Two Hovering Aircraft Spotted Around a Strange Haze +2009-10-11,43.073055600000004,-89.4011111,Madison,WI,light,180,Amber orange light moving very slowly, dimming out, shooting away. +2010-10-11,33.8491667,-118.3875,Redondo Beach,CA,other,1200,three lights that changed colors rapidly suspended over the ocean that increased and decreased in intensity often +2010-10-11,42.6525,-73.7566667,Albany,NY,oval,120,Oval metallic object +2010-10-11,26.7052778,-80.0366667,West Palm Beach,FL,sphere,2400,Electrical Sphere shape morning sky over Palm Beach Florida +2010-10-11,38.6786111,-121.2247222,Orangevale,CA,changing,2700,slowmoveing fire ball in sky +2010-10-11,44.8277778,-92.9436111,Cottage Grove,MN,light,240,Craft with two white lights in Minneapolis Approach Pattern that moved down and not forward then disappered behind the tree line. +2010-10-11,34.1361111,-117.8644444,Glendora,CA,circle,60,I was north on a mountain facing south with my friend. We were star gazing and I looked up in the sky at about a 45 degree angle and sa +2010-10-11,33.0416667,-116.8672222,Ramona,CA,triangle,5,We believed this object to be an airplane on fire +2010-10-11,37.5958333,-122.0180556,Union City,CA,other,15,Opposing lights of amber that sliently crossed low in the sky. +2011-10-11,37.8902778,-88.3030556,Omaha,IL,chevron,120,I noticed the craft as it had just passed over Rt 1. i brought my semi to a stop and shut down the engine. the craft was very large,as +2011-10-11,36.0397222,-114.9811111,Henderson,NV,other,180,UFO Report: Date: October 11th, 2011 Location: Las Vegas, NV (near Henderson, NV) Time: 8:40 A.M. Near Las Vegas Nevada, I was out +2011-10-11,37.6775,-113.0611111,Cedar City,UT,light,8,Bright, white, star-like UFO over Cedar City at 1500 on sunny day. +2011-10-11,41.6005556,-93.6088889,Des Moines,IA,light,90,An unexplained, unidentified flying object. +2011-10-11,41.6361111,-70.9347222,New Bedford,MA,circle,1800,At least 25 orange and red fireballs fly over New Bedford, MA, USA +2011-10-11,33.9133333,-78.3041667,Holden Beach,NC,circle,30,6 orange balls of light over the Atlantic ocean. +2011-10-11,37.7622222,-84.8433333,Harrodsburg,KY,unknown,480,Unknown lights. +2012-10-11,42.2625,-71.8027778,Worcester,MA,unknown,4,Big extremely bright white light hovering in sky +2012-10-11,40.6377778,-74.4513889,Watchung (Was My Perspective),NJ,sphere,3600,Orange sphere moving in unbeliveable ways,,,another green spehere near by with rays emerging form it. Bizarre +2012-10-11,42.6105556,-71.2347222,Tewksbury,MA,light,2,Huge white streaking object moving high rate of speeds in night sky +2012-10-11,41.6347222,-84.9994444,Angola,IN,cigar,7200,4 objects metalic reflecting from rising sun in the east, then witnessed what looked to be 7 more objects in a straight line. Then hear +2012-10-11,39.2544444,-76.7002778,Arbutus,MD,light,300,Moving star and strange man +2012-10-11,41.2788889,-75.8786111,Forty Fort,PA,fireball,720,Slow moving bright light +2012-10-11,43.0830556,-73.785,Saratoga Springs,NY,circle,300,Brightly lit object, twice the size of a planet, traversed the night sky, dimmed, and disappeared from view.((NUFORC Note: ISS? PD)) +2012-10-11,41.2052778,-76.0052778,Nanticoke,PA,diamond,60,UFO sighted over Nanticoke PA +2012-10-11,32.3122222,-106.7777778,Las Cruces,NM,fireball,120,4 fireballs side by side +2012-10-11,47.3525,-121.9825,Ravensdale,WA,triangle,10,Driving on kent kangley road I observed a triangle arrangement of lights hovering about 100 feet off the ground. The lights were multi +2012-10-11,40.155,-74.8291667,Levittown,PA,diamond,60,About 9:00 pm, Oct. 11, 2012, driving home I first heard strange high-pitched siren-like sound, and rolled down my window to hear what +2012-10-11,33.4483333,-112.0733333,Phoenix,AZ,sphere,30,10/11/12 Phoenix, AZ Sphere 30 sec Yellowish-orange flashing sphere seen by myself 10/12/12 +2012-10-11,41.6572222,-87.68,Blue Island,IL,circle,45,Red circular object surrounded by yellow glow flying w/no sound quickly coming out of east turning southbound +2013-10-11,43.4194444,-83.9508333,Saginaw,MI,chevron,4,10 or so dimly lit white lights in a large arrow shape formation moving at high rate of speed. +2013-10-11,41.7297222,-93.6055556,Ankeny,IA,circle,120,Two slow moving star-like objects suddenly accelerated to light speed heading towards Jupiter +2013-10-11,26.8230556,-80.1388889,Palm Beach Gardens,FL,light,15,Five orange flying objects in the nights sky and no sound. +2013-10-11,42.2916667,-85.5872222,Kalamazoo,MI,fireball,600,Massive caravan of a hundred red/orange fireballs moving from west to east at a steady rate in formation for at least ten minutes. +2013-10-11,38.9716667,-95.235,Lawrence,KS,unknown,240,Silent blue and white lights of craft object change color, approach myself and boyfriend, before changing into buzzing, everyday plane +2013-10-11,44.4905556,-73.1113889,Essex Junction,VT,light,60,4 or 5 Orange Lights in Vermont Sky +2013-10-11,39.1619444,-84.4569444,Cincinnati,OH,circle,300,Glowing Orange Fireball/Lights Seen at Turpin HS Football Game. +2013-10-11,39.1619444,-84.4569444,Cincinnati,OH,fireball,240,Cincinnati fire ball in the sky? +2013-10-11,26.1416667,-81.795,Naples,FL,light,7200,Circle of Different color flashing light over gulf in naples +2013-10-11,39.1619444,-84.4569444,Cincinnati,OH,fireball,60,3 fireball type objects close to downtown Cincinnati. +2013-10-11,38.9458333,-84.6805556,Union,KY,fireball,300,amber fireball descending,splits into 3 objects,stops,they hover above ground with erratic movements +2013-10-11,42.4736111,-72.0066667,Hubbardston,MA,fireball,60,4 orange orbs zig zgging across the sky. Quick movements forward and aft and side to side. +2013-10-11,33.5966667,-83.8602778,Covington,GA,light,300,Saw a bunch of low-altitude lights drifting overhead. +2013-10-11,39.7463889,-84.2866667,Drexel,OH,sphere,180,Blue white streak in sky, 2 orange orbs splitting. seems like it landed. +2013-10-11,43.0297222,-76.0047222,Fayetteville,NY,chevron,90,Brilliant slow moving light in fayetteville ny. +2013-10-11,26.9338889,-80.0944444,Jupiter,FL,light,900,Groups of glowing orange objects moving randomly from east to west over Jupiter Inlet area at approximately 10:00 pm Oct 11, 2013. +2013-10-11,28.0833333,-80.6083333,Melbourne,FL,sphere,300,At or around 22:00 hours my Mother called me outside to look at something My Father and I walked out the front door and observed a larg +2013-10-11,45.3561111,-92.6333333,Dresser,WI,sphere,60,Large Orange Sphere over Polk county Wisconsin. +2013-10-11,41.88,-88.0077778,Lombard,IL,formation,60,5-8 orange lights over suburban Chicago +2013-10-11,40.8758333,-81.4025,North Canton,OH,fireball,10,Fireball over the Strip. +2013-10-11,42.4566667,-83.9463889,Pinckney,MI,fireball,2,Large orange fireball observed over Hell, Michigan, traveling from due south to due north directly overhead. +1950-10-01,37.4791667,-82.5188889,Pikeville,KY,disk,600,SEVENTY SOME FLYING DISK OBSERVED IN 1950 +1952-10-01,39.0997222,-94.5783333,Kansas City,MO,disk,90,1952 daylight sighting of multiple discs in formation +1954-10-01,38.7230556,-80.65,Flatwoods,WV,circle,60,I saw the craft go across the horizon. It appeared to be on fire, I first thought it was a plane going down. It landed near a farm. +1956-10-01,43.3652778,-72.1738889,Newport,NH,rectangle,300,Disk with glass center section, and flames behind the glass +1957-10-01,61.9919444,-146.7686111,Nelchina (Near),AK,unknown,180,This incident occurred about October of 1956 or ‘57. At the time, I was Assistant station manager for a major airline in Anchorage as +1957-10-01,40.9166667,-74.1722222,Paterson,NJ,disk,10,Formation of approximately 8 light gray metallic disks silently crossing the night sky around October 1957 in northern NJ +1959-10-01,39.7338889,-90.2288889,Jacksonville,IL,unknown,60,Late 1959, bright lights from a hovering object of unknown shape making a zed-zid zed-zid electrical sound. +1961-10-01,41.6638889,-83.5552778,Toledo,OH,sphere,180,Observed dull silver metallic sphere hovering outside of bedroom window as a child. Had direct communication with sphere. +1961-10-01,36.1538889,-95.9925,Tulsa,OK,disk,120,October, 1961, Tulsa Oklahoma: low altitude, slow, disk object(s); high speed turns, v. high accelleration. +1961-10-01,36.1658333,-86.7844444,Nashville,TN,disk,1800,In October 1961, a silvery flattened disk hovered motionless over a local school fair for more than 30 minutes. +1961-10-01,36.0688889,-79.4008333,Graham,NC,triangle,30,3 flat, large white lights in delta pattern, no sound, flying at tree-top level at 35-40 mph +1965-10-01,30.3958333,-88.8852778,Biloxi,MS,other,900,Cloud, hovering then moving at right angles with pulsating light coming from within +1965-10-01,37.2438889,-77.4105556,Colonial Heights,VA,sphere,120,Saw sphere ping-ponging up and down and side to side in blue sky. +1965-10-01,41.5241667,-76.4011111,Dushore,PA,disk,300,It could move very slowly or very quickly but either way it moved without making any noise. +1966-10-01,42.8863889,-78.8786111,Buffalo,NY,light,240,One of the bright stars moved north, curved upward, flew in a wide arc, then accelerated up into the cosmos. +1966-10-01,48.5127778,-122.6113889,Anacortes,WA,light,1200,20 miles driving toward Anacortes,a friend and I were listening to a radio station in Anacortes. The DJ said he had recieved calls abou +1966-10-01,42.1083333,-91.285,Anamosa,IA,unknown,60,large quiet craft, covered with blackness, and "stars" to not be noticed, moving slowly southwest to north north east. +1966-10-01,44.5647222,-123.2608333,Corvallis,OR,disk,120,Saucer with no sound flew 100 feet above ground, changed direction then left atmosphere in a split second. +1967-10-01,42.5680556,-78.4791667,Chaffee,NY,sphere,600,34 years ago and still " seeking the truth" +1967-10-01,38.8922222,-89.4130556,Greenville,IL,circle,30,My son and I went to a ballpark close by to play- we were the only ones there, I happened to look up and right over us, were 3 round uf +1967-10-01,44.98,-93.2636111,Minneapolis,MN,disk,10,In October 1967, 2 Disks sited heading north over Minneapolis MN. +1968-10-01,42.3583333,-71.0602778,Boston,MA,cigar,1200,as i woke up in the early morning a bright redish orange light bathed the living room,at first i thought it was a fire but the light wa +1968-10-01,43.3616667,-70.4772222,Kennebunkport,ME,circle,600,While at the boathouse at St.Athonys one night we noticed what at first we thought was a bright star getting larger.It seemed to dart a +1969-10-01,37.775,-122.4183333,San Francisco,CA,oval,600,It was in the afternoon just before sunset at 20 Steiner St SF CA I saw above me and there was one other person who was with me on the +1970-10-01,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,180,Hoovering disk like object by Father and Son, Brookyln, NY 1970 +1970-10-01,36.3727778,-94.2086111,Bentonville,AR,other,14400,Hoseshoe shaped +1970-10-01,27.9472222,-82.4586111,Tampa,FL,other,900,36 year old reports an object he saw with his mother 31 years ago. +1970-10-01,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,300,Saucer/disklike craft, with multi-colored lights sighted in Bayridge Brooklyn in 1970 with many eyewitnesses. +1971-10-01,34.1477778,-118.1436111,Pasadena,CA,disk,180,Powerless over UFO sighting. +1972-10-01,37.9388889,-97.0194444,Potwin,KS,unknown,10800,Iwas abducted around age 7 or 8. They came will I WAS Asleep. they look into my room from the hall. They took me to a room. I think the +1972-10-01,33.2147222,-97.1327778,Denton,TX,unknown,600,Slow moving object splits and one part sped away while the bigger part slowly moved in the opposite direction. +1972-10-01,31.6261111,-97.5997222,Mosheim,TX,disk,1800,Classic saucer shape seen in the early seventies. +1972-10-01,47.8555556,-121.9697222,Monroe,WA,rectangle,900,STOP AND GO THE SIZE OF A LARG CAR WITH NO WINDOWS +1973-10-01,39.7927778,-87.3708333,Montezuma,IN,sphere,900,We saw a large glowing sphere that looked like the moon, but was obviously not since it was very close to us and could manuver. +1973-10-01,36.8527778,-75.9783333,Virginia Beach,VA,disk,1800,Group of friends an I follow a UFO on bicycles, I have a sighting alone about a week later. +1973-10-01,39.1652778,-86.5263889,Bloomington,IN,light,1200,Three large bright white craft interacting & manuevering rapidly accross a quadrant of night sky. +1973-10-01,43.2166667,-123.3405556,Roseburg,OR,cylinder,7200,We were on the outskirts of town, just passing the sewage treatment plant, when this object with blinding white light enveloped the car +1973-10-01,36.9086111,-116.7583333,Beatty,NV,disk,7200,Lights in the sky and lost time. +1973-10-01,35.1405556,-85.2327778,Hixson,TN,oval,37800,Oval, brilliant lights, red glow, windows, metallic, no sound; After we lost sight of it and went to find it, it showed itself to us. +1973-10-01,41.2377778,-81.9316667,Valley City,OH,disk,300,It was a star shaped object travelling south that stopped, changed colors, and sped off dissapearing in the night sky. +1974-10-01,33.2147222,-97.1327778,Denton,TX,unknown,600,I was walking home from the Library at North Texas State University after the Library closed. From a distance, I saw a large red glowi +1974-10-01,40.4188889,-80.5897222,Weirton,WV,sphere,240,Upon coming home one evening in the early spring, I saw in the eastern horizon three circular objects that looked like three full mooon +1974-10-01,46.4736111,-93.8986111,Deerwood,MN,unknown,2,Sighting 3 An incidence occurred in mid-October, 1974. I picked my son up from wrestling practice in the evening after school. We live +1974-10-01,40.7841667,-74.6972222,Chester,NJ,light,600,Three bright star like objects moving across the night sky at the speed of light and stopping on a dime. +1975-10-01,33.0580556,-112.0469444,Maricopa,AZ,changing,1200,Group of 4 Orange Objects land near hills just west of small town of Maricopa Arizona... Oct, 1975 +1976-10-01,40.9636111,-81.3313889,Hartville,OH,disk,120,A disk shaped flying object followed the path of our car just above the telephone lines. +1976-10-01,43.0986111,-77.4422222,Fairport,NY,disk,600,Disk shaped UFO with continous changing color band in the middle. Hoovered for a few minutes about 3 stories off the ground above a cr +1976-10-01,28.0611111,-82.3025,Thonotosassa,FL,disk,900,Mid-1970's Thonotosassa, Florida sighting at Stacey and Knights Griffin +1977-10-01,33.7091667,-117.9527778,Fountain Valley,CA,other,360,My brother, his friend and I saw an orange pyramid-shaped object in the sky about 25 yards away from us and about 25 yards up. We were +1977-10-01,40.5763889,-124.2627778,Ferndale,CA,other,60,Silhouette, or dark object of craft appeared on moonless, starlit-night, backlit by glow straight overhead, appeared to be approaching +1978-10-01,35.9983333,-76.9463889,Windsor,NC,cone,300,saw while parking with girl friend. rising full moonin back ground. 25 ft up. f 50 yrs away over field. hovering. completly silent. one +1978-10-01,31.0944444,-92.4002778,Lecompte,LA,disk,300,I believe this object was either a test vehicle of some sort or it was not of this world. +1978-10-01,40.9852778,-86.8794444,Francesville,IN,cylinder,900,Object hovered for apprx. 5 min. then proceeded west - it was apprx. 300' long 50-75' wide 50-75' high w/lights. +1979-10-01,33.7922222,-118.3141667,Lomita,CA,disk,1200,Silent disk in afternoon daylight with over twenty witnesses +1979-10-01,39.2402778,-76.8397222,Columbia,MD,rectangle,120,Large, low-flying, slow moving, silent black rectangle with no lights +1979-10-01,42.8863889,-78.8786111,Buffalo,NY,light,10,Two bright fast-moving star-like objects with one traveling in a zig-zag motion. +1979-10-01,47.0380556,-122.8994444,Olympia,WA,disk,7200,Dancing lights over Olympia +1979-10-01,40.4405556,-79.9961111,Pittsburgh,PA,disk,300,Disk appeared over stadium at end of game... spun like a coin on a table...game ended ... never heard a thing about it. +1979-10-01,40.3161111,-74.5141667,Cranbury,NJ,light,240,8 UFOs in a circle suddenly take off radially away from each other. +1980-10-01,37.5483333,-121.9875,Fremont,CA,other,30,A heavy rain night off work and was amazed how heavy it was raining, awake and looking out thru my skylight. Suddenly bright overwhelmi +1980-10-01,34.1469444,-86.1305556,Mountainboro,AL,fireball,20,Ball of Fire that changed into a cone shape. +1980-10-01,40.2977778,-77.8744444,Shirleysburg,PA,formation,600,Sometime during the late 1970-s and early 1980’s, I can’t remember the time of the year. I was in my home in rural Shirleysburg, PA. +1980-10-01,40.7280556,-74.0780556,Jersey City,NJ,cigar,180,Blimp shaped object with extremely bright lights hovered then rapidly dashed into the night's sky. +1981-10-01,43.5688889,-86.0394444,Hesperia,MI,oval,2400,Two people in car see green oval object and lost time +1982-10-01,42.9572222,-83.8305556,Swartz Creek,MI,fireball,240,blazing sphere across the southern sky from 1982 +1983-10-01,42.5611111,-71.5902778,Ayer,MA,unknown,20,Zero to top Speed Instantaneously +1983-10-01,35.8966667,-77.5361111,Tarboro,NC,disk,180,it was as large as our house...and silent enough no one inside heard a thing...nor did i +1984-10-01,44.426944399999996,-124.0675,Waldport,OR,light,600,Bright light of a fast moving craft frightened me in the night on the Oregon Coast. +1984-10-01,34.2572222,-118.6002778,Chatsworth,CA,light,45,Light approaches at high rate of speed and makes a ninety degree turn. +1984-10-01,43.5341667,-70.9102778,Acton,ME,triangle,180,Silent, very large, one white headlight, red lights around edges +1985-10-01,27.9375,-82.2861111,Brandon,FL,triangle,900,triangle SHIP 60 to 80 feet high,SPEED 3 TO 5 MPH,I SAW IT ALL,.................... +1985-10-01,43.4133333,-86.0794444,Holton,MI,light,240,Unknown light makes 90 degree turn and disappears. +1985-10-01,34.9852778,-80.5497222,Monroe,NC,sphere,300,Years ago, my husband's aunt and I witnessed something very strange on the way to work early one morning. It was about 5:30am and we we +1985-10-01,41.7386111,-80.77,Jefferson,OH,triangle,3600,Three lights,possibly single or part of object hovered over treeline changing color,and shape. +1985-10-01,38.9716667,-95.235,Lawrence,KS,sphere,300,Red Light seen in Lawrence, Kansas, during Johnny Carson's Monologue +1986-10-01,42.225,-121.7805556,Klamath Falls,OR,circle,2700,BRIGHT OBJECT DROPPING "FIRECRACKERS" FROM IT - IT SEEMED TO KNOW I COULD SEE IT - VANISHED IN A TYPE OF EXPLOSION +1986-10-01,40.0638889,-80.7211111,Wheeling,WV,light,10,Missing time after seeing something that looked like the Northern lights. +1987-10-01,43.2166667,-123.3405556,Roseburg (7 Miles Northwest Of),OR,oval,1800,Two small glowing oval orange objects and one larger triangle craft in rural Oregon. +1987-10-01,43.1488889,-72.3611111,Alstead,NH,fireball,1800,sitting in a car in a open field, keeping in mind this is in a town where we are in the hills. the field during the day has +1987-10-01,36.0988889,-78.3013889,Louisburg,NC,triangle,180,Large black triangular object with lights on each side and at the points making no discernible noise. +1989-10-01,43.9147222,-113.6125,Mackay,ID,disk,180,LARGE SAUCER +1989-10-01,37.99,-84.1797222,Winchester (Near),KY,oval,300,3 starlike objects land on 1 large orange oval object in full daylight in sight of dozens of witnesses. +1989-10-01,39.7338889,-90.2288889,Jacksonville,IL,circle,300,Three gold circle UFOs fly in formation, warp drive away and disappear. +1989-10-01,41.5619444,-73.6030556,Pawling,NY,oval,300,Large oval craft with lights above house on north side of Route 55 between Pawling and Freedom Plains, NY, late 1980's. +1989-10-01,38.6172222,-121.3272222,Carmichael,CA,rectangle,10,Black rectangular craft over carmichael. +1989-10-01,44.8830556,-68.6725,Orono,ME,disk,20,Silent Lo-flying Craft with Dome and Bright White Lights +1990-10-01,48.0511111,-119.9022222,Pateros,WA,oval,300,One Gray metal oval disc, aporx. 10'x50', clear sky, 1 qaurter mile away +1990-10-01,33.7358333,-118.2913889,San Pedro,CA,light,120,a small light in the sky, making the shape of a equiangular triangle then shooting away at a high rate of speed. +1990-10-01,42.0969444,-79.2355556,Jamestown,NY,light,1200,A row of porthole shaped lights hovering at an altitude of approx. 500 feet spanning a distance of about 1 mile. +1991-10-01,34.8297222,-82.6016667,Easley,SC,other,900,Hockey-puck-shaped-thing. +1991-10-01,33.78,-118.2616667,Wilmington,CA,circle,900,Patterned disks over southern california sky. +1991-10-01,35.7563889,-83.9705556,Maryville,TN,cigar,300,Silver, cigar shaped object north of downtown Maryville, TN in or around 1991 +1991-10-01,34.7463889,-92.2894444,Little Rock,AR,triangle,300,Triangular arrangements of lights appearing to begin to land on freeway, miltary-ish cars mobilze around it +1991-10-01,36.1325,-88.5186111,Mckenzie,TN,disk,900,I saw a saucer shaped obiect with blue, red, green flashing lights on the way home from college. +1991-10-01,36.175,-115.1363889,Las Vegas,NV,cigar,5,For seven years I have kept this fairly quiet. I was walking my dog on a clear dark night where I live on the north west side of Las Ve +1991-10-01,34.7047222,-85.2819444,Lafayette,GA,other,900,A small globe descended from beneath the larger craft. +1992-10-01,32.5402778,-82.9038889,Dublin (Near Warner Robins),GA,triangle,1200,While driving home from out-of-town, I watched a dot in the sky that later hoovered over my car. +1992-10-01,37.2152778,-93.2980556,Springfield,MO,egg,90,MISSOURI INVESTIGATORS GROUP Report: We saw a large football shaped object hovering above an apartment complex . +1992-10-01,32.5005556,-94.7402778,Longview,TX,unknown,20,I observed one nite several objects flying in a kind of oval formation and change to a vee formation. There wasn't any sound. +1993-10-01,33.4147222,-111.9086111,Tempe,AZ,triangle,900,My friend and I saw a triangle made of smaller triangles fly over us at a low altitude. +1993-10-01,40.2986111,-83.0680556,Delaware,OH,light,7200,Lights in localized semi-rural area, beams emitted, possible sound, possible contact, video tape +1993-10-01,45.4297222,-108.5325,Pryor,MT,light,1800,Floating Light, Like a Spotlight +1994-10-01,36.3377778,-96.8036111,Pawnee,OK,triangle,1200,It was triangle shape with white lights at each corner of it and a large red one in the middle. +1994-10-01,40.7141667,-74.0063889,New York City,NY,disk,15,a flying colorful disc above my car, near Erie. ((NUFORC Note: Possible hoax?? PD)) +1994-10-01,42.1486111,-72.6083333,Chicopee,MA,changing,300,Chicopee State Park, Craft seemed to be shooting balls of light or breaking up +1994-10-01,34.4208333,-119.6972222,Santa Barbara,CA,triangle,3,Black triangle +1994-10-01,38.2430556,-93.3816667,Warsaw,MO,cigar,600,Triangle shaped object hovering above the water. +1994-10-01,36.175,-115.1363889,Las Vegas,NV,circle,5,Bright green object in flight allmost colided with my aircraft. +1994-10-01,40.4436111,-76.4286111,Fredericksburg,PA,disk,300,I was driving by on the road and seen this saucer , it was ON the ground near a house. I stopped down the road and got out to get a clo +1995-10-01,38.4783333,-82.6380556,Ashland,KY,disk,300,Disintegrating object. +1995-10-01,40.4619444,-78.2,Williamsburg,PA,rectangle,600,Low flying rectangular object with very bright lights on all sides. +1995-10-01,41.5733333,-87.7844444,Tinley Park,IL,other,20,Sheild shaped craft spotted at outdoor concert with orange glow, moivng at high speed. +1995-10-01,40.6836111,-73.5105556,Wantagh,NY,triangle,60,Triangle with three large, dim, amber lights flew rapidly overhead and rotated once. +1995-10-01,43.1977778,-70.8741667,Dover,NH,triangle,600,six light triangle in dover +1996-10-01,29.7630556,-95.3630556,West Houston (Greenridge @ Westiemer Rd.; Near Galleria),TX,formation,30,Three bright orange-white lights moving in a V formation from northeast to Southwest The center light would change position front to re +1996-10-01,39.2275,-83.2705556,Bainbridge,OH,triangle,180,Low-flying triangular object +1996-10-01,40.7141667,-74.0063889,New York City (Manhattan),NY,oval,300,Possible UFO Sighting, Manhattan, New York 1996 +1996-10-01,37.323055600000004,-122.0311111,Cupertino,CA,sphere,600,Metalic ball floating motionless in high winds over San Jose, CA. +1996-10-01,32.8338889,-109.7069444,Safford,AZ,sphere,30,Antigravity flying sphere +1996-10-01,30.1577778,-95.4891667,The Woodlands,TX,fireball,180,2 orange fireballs moving across sky ~ crazy acrobatics +1997-10-01,47.4736111,-94.88,Bemidji,MN,triangle,600,In october 1997 my dad and I seen 3 lights in the shape of a triangle tumbling over each other in Bemidji Minnesota. +1997-10-01,32.9125,-96.6386111,Garland,TX,rectangle,40,I had just got off of work at 1:15 a.m. I was driving down to the Hypermart USA because it was the only store open 24 hrs. I notice thi +1997-10-01,42.4811111,-74.6108333,Jefferson,NY,other,300,Rural mountain area. Tree covered hill. 1860' MSL. I awoke to see a bright white light approx 1귔' so east of my camper. The circular +1997-10-01,35.2269444,-80.8433333,Charlotte,NC,cigar,120,Cigar shaped, silvery-white object @ 500-1ᄰ' up, in a clear blue, cloudless sky. Object was silent, immobile, and when I glanced dow +1997-10-01,44.5191667,-88.0197222,Green Bay,WI,light,1200,Three red lights +1997-10-01,34.6422222,-82.4561111,Pelzer,SC,triangle,180,Large, black, triangular, object flew low and silent over South Carolina state prison yard. +1997-10-01,41.6527778,-70.2833333,Hyannis,MA,triangle,60,WIFE AND I DROVE ONTO START OF OUR STREET, NOTICED TWO LIGHTS NOT USUALLY THERE. STOPPED CAR, GOT OUT, SAW TWO CRAFTS. NO NOISE AND H +1997-10-01,41.1416667,-87.875,Bourbonnais,IL,triangle,60,I was traveling home from visiting my dad in Carle Hospital on 113 heading towards Custer Park, IL. It was dark out I was in farm count +1997-10-01,43.4222222,-123.2972222,Oakland,OR,light,60,High altitude light turned, dropped several Thousand feet, turned and disappeared! +1997-10-01,36.6913889,-79.8727778,Martinsville,VA,other,300,Yellow/Orange lighted object moving from NE to SW. Very bright toy top shape with no sound. About the size of a penny held at arm reach +1997-10-01,33.0183333,-80.1758333,Summerville,SC,triangle,1200,Triangular shape with lights in a V, no sound, very slow moving. +1997-10-01,28.0391667,-81.95,Lakeland,FL,light,60,3 oval shaped reddish-orange lights flew over my house, heading directly south. The lights formed a perfect triangle, but flying severe +1998-10-01,41.7355556,-111.8336111,Logan,UT,triangle,120,We saw 5 triangular objects moving at high altitude to the south, circling each other like small birds. +1998-10-01,45.5236111,-122.675,Portland,OR,light,5,GETTING OUT OF MY CAR TO WORK,I SAW A WIDE GREEN STREAK OF LIGHT IN THE SOUTHWEST SKY,FROM SKY TO GROUND........... +1998-10-01,45.2113889,-122.9755556,St. Paul,OR,fireball,5,We own a farm here in St. Paul. We (my mother and I) had pulled off to the side of the road to check on some farm equipment we had in a +1998-10-01,47.0566667,-122.7,Nisqually,WA,disk,180,burnt out disk gets ride from trucker to air force base +1998-10-01,35.2333333,-106.6638889,Rio Rancho,NM,fireball,120,Sighted during the major meteor shower last year. +1998-10-01,37.2255556,-107.5975,Bayfield,CO,light,1800,Large light object in sky with lightning storm and huge beam of light from below in southern Colorado +1998-10-01,37.775,-122.4183333,San Francisco,CA,sphere,420,Soccer Balls over SF +1998-10-01,42.0372222,-88.2811111,Elgin,IL,disk,1200,I can only say that I know what I saw, I even took a digital picture of it. 1:30 in the afternoon, clear blue sky, an airplane head +1998-10-01,32.9594444,-117.2644444,Del Mar,CA,fireball,4,Fireball streaked across the sky and fizzled out 5 miles inland +1998-10-01,32.8472222,-117.2733333,La Jolla (Over),CA,fireball,7,At dusk, an orange,white,pink,and voilet color fireball traveled totally horizontal west to east,not as fast as a shooting star,and the +1998-10-01,42.9955556,-71.4552778,Manchester,NH,oval,120,hovering above city landfill. beam of light from craft to ground. +1998-10-01,40.7419444,-95.0380556,Clarinda,IA,triangle,60,silent and large UFO just above tree tops. +1998-10-01,40.3513889,-90.3244444,Ipava,IL,triangle,900,An object which resmbled car headlights in the sky was spotted to SW. A discernable craft flew directly overhead and proceeded to disa +1998-10-01,44.7930556,-89.7030556,Mosinee,WI,other,300,I was driving south on U.S. Hwy 51 and I saw a craft that didn't move for 5 or more minutes. The craft also made no noise. +1999-10-01,29.4238889,-98.4933333,San Antonio,TX,fireball,30,Observed amber bright light decending for apx. 20 seconds. +1999-10-01,41.8327778,-87.9288889,Oak Brook,IL,light,60,a green-blue light comes out and down out of a cloud, and goes back into the cloud +1999-10-01,45.5236111,-122.675,Portland,OR,light,25,looking west the object appeared approx near the top of our atmosphere. It was huge! It at first just seemed to appear out of thin air. +1999-10-01,41.3683333,-82.1077778,Elyria,OH,triangle,300,The front was shaped like a triangle, with two lights on the wing tips. Blueish-gray in color...Low rumbling sound, Moving very slow. +1999-10-01,40.7141667,-74.0063889,New York City (Manhattan),NY,unknown,5,I witnessed a being in the middle of the day in Manhattan about six and a half feet, its face definately not human? +1999-10-01,35.2225,-97.4391667,Norman,OK,cigar,120,Soundless cigar shaped object(s) transited South to North. Weather- clear, unlimited visibility, near 70 degrees F. +1999-10-01,36.175,-115.1363889,Las Vegas,NV,light,15,A moving object which possibly changed speed and direction in an unorthodox manner +1999-10-01,25.7738889,-80.1938889,Miami,FL,unknown,25,Red and Green light in the sky. +1999-10-01,39.0911111,-94.4152778,Independence,MO,chevron,15,Looked up an saw tiny points of light creating the shape of a Chevron. +2000-10-01,47.3444444,-122.7619444,Vaughn,WA,formation,540,The lights changed colors and there was a strange noise. +2000-10-01,41.7991667,-85.4191667,Sturgis,MI,disk,600,THE OBJECT WAS UP TO HIGH FOR DETAIL BUT WAS CIRCLE IN SHAPE AND WAS BRIGHT WHITE LIGHT +2000-10-01,36.9613889,-120.0597222,Madera,CA,light,120,A bright oval shaped light flying faster than anything I had ever seen before. +2000-10-01,37.9577778,-121.2897222,Stockton,CA,sphere,180,Two strange bright objects at dusk in the central valley. +2000-10-01,33.3061111,-111.8405556,Chandler,AZ,cigar,20,tHIS IS A CORRECTION TO A REPORT THAT I MADE LAST WEEK. WHEN WE SAW THE LIGHT MY WIFE AND NEIGHBOR WERE BEHIND ME AND THEY WSAW THE O +2000-10-01,37.5202778,-122.2747222,Belmont,CA,unknown,15,Faint starlike object moving in space at high speed stopped and lined up with other 3 faint stars. +2000-10-01,44.3,-120.8333333,Prineville,OR,unknown,3600,bright white light the size of a distant star that made eratic movements, and complete stops +2000-10-01,39.0397222,-77.0555556,Wheaton,MD,triangle,300,UFO sighted in Wheaton, MD +2000-10-01,30.1658333,-81.7066667,Orange Park,FL,other,10,Two points of light darted across the sky side by side, crossed paths and continued out over the Florida Panhandle +2000-10-01,38.8338889,-104.8208333,Colorado Springs,CO,light,300,saw 4 lights going in what i thought was a clover formation +2000-10-01,40.3461111,-94.8722222,Maryville,MO,light,30,white disappearing lights +2000-10-01,35.614444399999996,-88.8138889,Jackson,TN,triangle,120,Three glowing spheres under dark triangular shape, no sound +2000-10-01,42.9047222,-76.3944444,Jones Beach,NY,diamond,900,2 objects over jones beach NY, sent Red beam then blue beam on our car. +2001-10-01,39.0997222,-94.5783333,Kansas City,MO,light,900,3 bright lights at high altitude west of Kansas City at 2100 hours on 10/1/01 in a general westward movement. +2001-10-01,44.3147222,-84.7647222,Houghton Lake,MI,triangle,300,Spotted Triangular object while exiting highway, almost crashed into cop, was not even pulled over. +2001-10-01,44.1897222,-70.1408333,Greene,ME,oval,10,Incandescent light-greenish Orb with Red Halo spotted in sky over Northern woods.................. +2001-10-01,42.8922222,-76.1055556,Lafayette,NY,changing,180,Low flying object changed from bright blue square to red diamond shape...loud ..then silence and it was gone. +2001-10-01,48.9466667,-122.4508333,Lynden,WA,light,30,Outline: 1) Clear dark night.2) directly above me 3) appeared to be an orbitting satellite but was bluish and smaller than most. +2001-10-01,42.6525,-73.7566667,Albany,NY,flash,2,Bright flash witnessed near Albany, New York +2002-10-01,36.7161111,-77.0683333,Courtland,VA,circle,1,Look I can't recall the date exactly, but it was in that area of time especially the hour of night. It could be in a range of two wee +2002-10-01,37.8044444,-122.2697222,Oakland,CA,oval,420,lights moving in the sky 7 landing in Oakland over coliseum & airport +2002-10-01,48.9202778,-122.3413889,Everson,WA,other,5,Among the Northern lights a bright green fireball from West to East +2002-10-01,48.1172222,-122.7591667,Port Townsend,WA,fireball,10,Giant Blue-Green fireball falls from the sky at 0530 in washington state +2002-10-01,47.9130556,-122.0969444,Snohomish,WA,sphere,3,A large metor going through the atmosphere, white tail turning blue and then red/orange and disapear. +2002-10-01,47.2033333,-122.2391667,Sumner,WA,circle,330,While traveling north on hwy 167. A green light traveling from the west, and heading east flew across the sky. The round light appearin +2002-10-01,38.2544444,-104.6086111,Pueblo,CO,triangle,15,Silent large flying v of 5 orange glowing patches gives fright. +2002-10-01,47.6063889,-122.3308333,Seattle,WA,unknown,1,On the morning of 10/01/02 I was driving to work on HI5 in Seattle Wa. and I was south bound by the old Rainier Brewery and saw a brigh +2002-10-01,47.6063889,-122.3308333,Seattle,WA,teardrop,3,Initially a comet in appearance, but speed was too slow. +2002-10-01,47.6063889,-122.3308333,Seattle,WA,other,2,I saw a green object above Seattle, at about 5:45 AM on 10/1, occuring at the time of a northern lights display. +2002-10-01,47.3811111,-122.2336111,Kent,WA,unknown,10,STREK OF LIGHT ACROSS THE SKY +2002-10-01,47.8211111,-122.3138889,Lynnwood,WA,fireball,5,Large fireball sighting +2002-10-01,46.8883333,-122.6872222,Rainier,WA,light,240,I was taking my Boyfriend to work in yelm and as we entered onto koeppen rd and traveling north towards yelm We noticed to our left abo +2002-10-01,42.6011111,-89.6383333,Monroe,WI,light,1200,Very intense orange-yellow light moves from south to north in early A.M. and late P.M. +2002-10-01,41.926944399999996,-73.9977778,Kingston,NY,cigar,600,nys thruway heading nrth between exit 19 and 20 cigar shaped ,reflective or silver in color , incredable fast no sound . +2002-10-01,39.1730556,-77.2719444,Germantown,MD,cigar,180,me and boyfriend out on the back deck drinking coffee and we see a cigar shaped craft flying overhead....it struck me as odd because it +2002-10-01,35.0241667,-110.6966667,Winslow,AZ,other,1800,Silent average-looking airplane hovers over Leupp exit butte on I-40 for 15-30 mins, hundreds of witnesses. +2002-10-01,47.948055600000004,-116.7069444,Athol,ID,teardrop,300,high polished chrome-teardrop shaped object hovering over a busy North Idaho Hi-way in mid afternoon +2002-10-01,35.1472222,-107.8508333,Grants,NM,fireball,10,In October 2002, I was driving east on Interestate 40 (close to mile marker 100), when I saw a greenish "comet-like" shape movng very +2002-10-01,48.0319444,-122.7569444,Port Hadlock,WA,fireball,5,big shooting star +2002-10-01,28.5380556,-81.3794444,Orlando,FL,other,4,unusual shaped and transparent color crafts appear and one follow the other in new direction +2002-10-01,40.7141667,-74.0063889,New York City (Staten Island),NY,egg,300,Egg Shaped Object Circling +2002-10-01,40.7141667,-74.0063889,New York City (Staten Island),NY,light,900,Patrolling fighter jet followed by bright green light ! +2002-10-01,37.6941667,-122.0852778,Castro Valley,CA,other,1200,I was driving from San Leandro to San Ramon took 580 to Crow Canyon Rd. I was stunned by a hovering shape in the sky.It was hard to mak +2002-10-01,47.8108333,-122.3761111,Edmonds,WA,unknown,60,three objects in perfect triangle fomation flying at extremely high altitudes +2002-10-01,40.5219444,-111.9383333,Riverton,UT,unknown,120,Red and blue flashing lights, low to the ground, behind my car on a deserted road in Riverton, Utah. +2002-10-01,40.7141667,-74.0063889,New York City,NY,changing,180,3 flying objects that changed shapes show up in midtown manhattan +2003-10-01,43.5008333,-70.4433333,Saco,ME,circle,120,My wife and I watched a stationary bright white star much larger than a planet hover above the Ocean for about 2 minutes, and then it d +2003-10-01,47.6741667,-122.1202778,Redmond,WA,light,2,Blue-White orb shoots across sky rapidly, then disappears, on an unusally clear, calm night. +2003-10-01,33.7669444,-118.1883333,Long Beach (Sports Arena),CA,other,600,UFO watching the harbor of long beach. +2003-10-01,42.6566667,-83.7530556,Hartland,MI,unknown,120,saucer positioned between line of sight and sun. +2003-10-01,32.7152778,-117.1563889,San Diego,CA,unknown,240,us and the object +2003-10-01,47.6105556,-122.1994444,Bellevue,WA,light,10,Star seen in Seattle moves east then quickly fades away, no meteor trail. +2003-10-01,37.9236111,-104.9297222,Rye,CO,sphere,2,Orange balls in the sky +2003-10-01,36.4469444,-95.7080556,Oologah,OK,other,600,UFO that was silent and very large in Northeastern Oklahoma +2003-10-01,42.0666667,-72.8619444,Granville,MA,circle,5,Clear light zig zags through night sky on clear evening +2003-10-01,39.6005556,-82.9461111,Circleville,OH,light,600,Bright orange lights go on, and off in Circlville, OH. +2004-10-01,40.8022222,-124.1625,Eureka,CA,unknown,720,Orange light cruises Humboldt Bay +2004-10-01,36.175,-115.1363889,Las Vegas,NV,cylinder,2,((HOAX??)) Short encounter with space craft on my way into my parking lot area. +2004-10-01,35.0844444,-106.6505556,Albuquerque,NM,oval,3600,lights +2004-10-01,37.5536111,-77.4605556,Richmond,VA,triangle,300,Two triangular shaped craft with white and red lights going Northeast. +2004-10-01,32.2216667,-110.9258333,Tucson,AZ,unknown,1,Tucson Mysterious Streaks of Light +2004-10-01,43.25,-85.1330556,Sidney,MI,sphere,14400,stars that fly +2005-10-01,39.1269,-92.4399,Harrisburg,MO,light,2400,The waves of lights seemed to materialize high in the sky and move in an "ocean tidal manner" that is one wave after another, +2005-10-01,41.6027778,-87.7438889,Oak Forest,IL,circle,3600,At approximitly 0:00 I spotted three red circular lights in the western skies over Oak Forest, IL. The three large red light seemed mo +2005-10-01,41.6027778,-87.7438889,Oak Forest,IL,light,3600,I saw the three red lights in the sky over Oak Forest Illinois. They flashed like beacons. This happened around 12:30am +2005-10-01,41.6302778,-87.8538889,Orland Park,IL,diamond,2700,3 red lights hovering in the northeast sky +2005-10-01,41.5733333,-87.7844444,Tinley Park,IL,circle,1200,3 red lights over Tinley Park +2005-10-01,41.6302778,-87.8538889,Orland Park,IL,light,420,Red lights in sky over Orland Park, Illinois +2005-10-01,41.6302778,-87.8538889,Orland Park,IL,light,6,Red lights over Orland Park +2005-10-01,41.6252778,-87.7175,Midlothian,IL,light,1500,Red lights, southland Chicago +2005-10-01,41.6027778,-87.7438889,Oak Forest,IL,changing,600,3 red lights altered formations and each indiviadual light disappeared at different times +2005-10-01,41.6027778,-87.7438889,Oak Forest,IL,light,600,That night after closing my garage door I glanced as I normally do towards the North Star..to my amazement just west of the North star +2005-10-01,41.5733333,-87.7844444,Tinley Park,IL,circle,600,Three red blinking dots in the sky that hoovered unlike an airplane that I know of. +2005-10-01,41.5733333,-87.7844444,Tinley Park,IL,circle,600,3 red lights in Tinley Park sky +2005-10-01,41.5733333,-87.7844444,Tinley Park,IL,formation,1200,Three Red Lights Over Tinley Park +2005-10-01,41.5733333,-87.7844444,Tinley Park,IL,triangle,1800,I saw 3 red flashing/blinking lights in sky 1:00am 10-1-05 over Tinley Park IL +2005-10-01,41.5733333,-87.7844444,Tinley Park,IL,triangle,900,saw three red glowing lights in the sky above, in Tinley park Il. +2005-10-01,41.6027778,-87.7438889,Oak Forest,IL,light,1200,red dots seen in sky formed triangle +2005-10-01,41.7205556,-87.7016667,Evergreen Park,IL,light,480,Two red lights sitting in the sky, but I couldn't not make out an object. +2005-10-01,41.6688889,-87.7386111,Alsip,IL,light,480,RED LIGHTS SEEN IN ALSIP ILLINOIS +2005-10-01,41.6611111,-87.7525,Crestwood,IL,light,300,3 small lights formed a triangle then straight line, took a digital picture, zoomed in a saw 3 lights inside each individual +2005-10-01,41.1338889,-81.4847222,Cuyahoga Falls,OH,other,7,V-shaped object seen in sky of Cuyahoga Falls, Ohio +2005-10-01,41.8777778,-87.9027778,Hillside,IL,changing,7,Initially observed a white dot in the northwestern sky which prompted me to obtain my binoculars to obtain a closer look. I then observ +2005-10-01,41.4225,-87.9858333,Manhattan,IL,triangle,10,Tinley Park Lights Are Back!!! +2005-10-01,41.6027778,-87.7438889,Oak Forest,IL,cylinder,7200,There were 3 red lights, sometimes they were in a trianlge and than in straight line. they went away one by on. After 1:00 am +2005-10-01,41.6027778,-87.7438889,Oak Forest,IL,light,1800,3 red lights over chicagoland area +2005-10-01,41.6027778,-87.7438889,Oak Forest,IL,unknown,60,it lasted for about one minute +2005-10-01,41.6316667,-87.6813889,Posen,IL,light,1200,3 Red lights in triangle formation moving slowly and silently +2005-10-01,38.573055600000004,-82.8302778,Greenup,KY,circle,30,This has happened more than once! We saw a orange circle of light moving slowly through the sky, shooting about two inches to the human +2005-10-01,25.4683333,-80.4777778,Homestead,FL,light,300,its the same spot where my brother said he saw sumtin up in tha sky a few years earlier.... +2005-10-01,35.0844444,-106.6505556,Albuquerque,NM,disk,600,Two blue pinpoints of light merge onto one silver disk. +2005-10-01,26.6155556,-80.0572222,Lake Worth,FL,sphere,180,LARGE SPHERE SHAPPED OBJECT SIGHTED HOVERING WEST OF LAKE WORTH +2005-10-01,33.4483333,-112.0733333,Phoenix,AZ,oval,180,A huge, metallic-silver colored, oval object was observed over the Estrella Mountains during the day. +2005-10-01,34.0522222,-118.2427778,Los Angeles,CA,formation,1500,4 UFOs in a big arrowlike formation at high altitude over downtown part of Los Angeles +2005-10-01,26.7052778,-80.0366667,West Palm Beach,FL,teardrop,60,I've seen the black teardrop/sphere/baloon too.... +2005-10-01,45.1888889,-93.5527778,Rogers,MN,triangle,1020,Triangular UFO hovered with Stench +2005-10-01,30.6647222,-97.9222222,Liberty Hill,TX,light,900,seven objects sighted with one apparantly landing +2005-10-01,37.3394444,-121.8938889,San Jose,CA,chevron,600,One star shaped object, another V shaped object blending in with the nighttime clouds +2005-10-01,38.2972222,-122.2844444,Napa,CA,unknown,1200,Dim Flapping Object in Napa Sky October 1st +2005-10-01,39.4733333,-82.7394444,Laurelville,OH,unknown,300,Very slow moving object that made no sound. +2005-10-01,35.4675,-97.5161111,Oklahoma City,OK,light,2700,I WAS LEAVING EL RENO,OKLAHOMA,APPROXIMATELY 40 MILES WEST OF OKC ABOUT 9PM. TRAVELING NORTH ON HWY 81 I NOTICED A VERY BRIGHT STAR-LIK +2005-10-01,45.07,-85.2644444,Central Lake,MI,unknown,1500,Lights over Traverse Bay 35min moving than fixed position +2005-10-01,41.5733333,-87.7844444,Tinley Park,IL,light,120,Seen over the Tinley Park, IL. area. Three red lights hovering in the sky. Changed from red to green and back again. +2006-10-01,41.9025,-85.7994444,Jones,MI,oval,5,small Smooth moving orange glowing oval +2006-10-01,35.2333333,-106.6638889,Rio Rancho,NM,oval,3,From inside my home I witnessed an oval shaped green light travel low and slow from my window. It was completely silent. +2006-10-01,32.8138889,-96.9486111,Irving,TX,circle,2,As we was driving down Shady Grove heading west we saw a bright blue light steaking across the sky, dipping in and out of the clouds be +2006-10-01,34.0094444,-118.1044444,Montebello,CA,other,300,A sighting that was out of the ordinary, but not extraordinary. +2006-10-01,40.7141667,-74.0063889,New York City (Bronx),NY,rectangle,120,matte black glider type craft, no lights, no sound +2006-10-01,32.7938889,-79.8627778,Mt. Pleasant,SC,circle,240,A ball of white light hovered in the afternoon sky, vanishing and reappearing 3 times, before finally vanishing for good. +2006-10-01,41.6269444,-88.2038889,Plainfield,IL,oval,300,My dad wanted me to tell you that in October of 2006 he was putting up christmas lights and my brother was with him and my dad looked u +2006-10-01,39.1886111,-91.9827778,Thompson,MO,cigar,3600,MISSOURI INVESTIGATORS GROUP Report: I saw glowing green lights in the sky at night and 5 objects in the sky during sunset.. +2006-10-01,43.07,-94.2327778,Algona,IA,unknown,3600,6 people saw 2 objects in the sky that had lights and were flying in zig-zag patterns in the sky while staying in the same area. +2006-10-01,48.7838889,-117.8105556,Onion Creek,WA,chevron,60,i would not be entering this, but reading a report from obrien, ore. on oct 1, changed my mind... this summer has been full of surprise +2006-10-01,39.5786111,-76.6158333,Monkton,MD,oval,480,7-10 objects, Multicolored Lights, No Noise, Oval Shaped +2006-10-01,36.175,-115.1363889,Las Vegas,NV,fireball,600,Three Fireballs in the Las Vegas sky flying in formation then becoming one fireball. ((NUFORC Note: Possible advertising lights? PD)) +2006-10-01,47.5675,-121.8875,Fall City,WA,fireball,2,yellow/orange fireball leaving debris trail +2006-10-01,45.6666667,-122.5597222,Orchards,WA,fireball,1,Sun 10/01/2006 8:19 pm PST Metiorite descending slowly and decellerating. Left a trail of green and yellow sparks. At N80°E from Orchar +2006-10-01,46.7313889,-117.1786111,Pullman,WA,circle,1,Bright blue explosion followed by blue shooting object over Pullman, WA +2006-10-01,47.6063889,-122.3308333,Seattle,WA,teardrop,12,Very large yellow teardrop-shaped disk or meteor dropping several or many miles East of Seattle, Washington - watched for 12-14 seconds +2006-10-01,42.7675,-78.7441667,Orchard Park,NY,unknown,37800,Spotted again as before........ +2006-10-01,47.6063889,-122.3308333,Seattle,WA,light,20,A VERY bright and transluscent light that seemed to glow more than create a shape hovered above Lake Washington (so it seemed) in the W +2006-10-01,38.7522222,-121.2869444,Roseville,CA,sphere,600,15-20 round balls of light moving in formation +2006-10-01,35.6869444,-105.9372222,Santa Fe,NM,fireball,20,Several bright lights headed slowly towards horizon +2006-10-01,35.0241667,-110.6966667,Winslow,AZ,fireball,15,dividing fireball multi-colored +2006-10-01,35.5830556,-105.7694444,Glorieta,NM,changing,2,Large, meteor-type light seen near Santa Fe, NM. +2006-10-01,32.77,-108.2797222,Silver City,NM,light,180,UFO over Silver City, New Mexico at very low altitude. +2006-10-01,35.4194444,-109.4958333,Wide Ruins,AZ,cylinder,120,This event happened on the Navajo Reservation. The object flew close to the ground. It changed colors (blue, green, and yellow)while +2006-10-01,40.015,-105.27,Boulder,CO,oval,30,October 1, 2006 meteor reported across skies of Arizona, New Mexico, and Colorado +2006-10-01,38.4,-105.2166667,Canon City,CO,light,240,Large bright light with aura, "fireworks" features, then several distinct white lights +2006-10-01,39.7391667,-104.9841667,Denver,CO,circle,30,Large bright white light with evenly spaced smaller lights in trail east of Denver moving northeast, as seen by airline pilot at FL380 +2006-10-01,39.2247222,-106.0013889,Fairplay,CO,unknown,30,Six orange lights observed in the sky by three people, moving at constant speed and altitude from south to north. +2006-10-01,39.0216667,-105.7952778,Hartsel,CO,fireball,60,Several glowing objects gracefully and silently following each other moving south to north in eastern sky 500 to 1000ft high +2006-10-01,39.9161111,-106.725,Mccoy,CO,light,75,Four silent lights flew over our home. +2006-10-01,38.35,-104.7222222,Pueblo West,CO,sphere,10,Strange Lights in the Sky Over Colorado October 1, 2006 +2006-10-01,35.6869444,-105.9372222,Santa Fe,NM,light,45,about 23:15 sunday, 10/1/06--a slow-moving horizontal strip of white light that shown into my room and then truned blue and moved off +2006-10-01,36.4072222,-105.5725,Taos,NM,formation,150,segmented flashing formation w/ "v" formation of glowing lights leading S. to N.E., Taos NM (Northern NM) +2006-10-01,38.8966667,-104.9716667,Cascade,CO,circle,15,I was standing on my deck facing east when I saw orange objects fly from north to south. They appeared to maybe be comets but I cannot +2006-10-01,40.015,-105.27,Boulder (Foothills Of),CO,sphere,6,4 very large bright spherical objects -- one green, the others red or orange -- moving at high speeds upward in linear series +2006-10-01,38.7466667,-105.1777778,Cripple Creek,CO,fireball,15,Fireball object in Western Sky +2006-10-01,36.9033333,-104.4386111,Raton,NM,formation,30,7 bright lights over northeast new mexico +2006-10-01,36.9033333,-104.4386111,Raton,NM,formation,60,Seven Bright Lights in New Mexico Skies +2006-10-01,39.4369444,-104.9591667,Sedalia,CO,formation,30,5 bright, totally silent, fast moving lights viewed in night sky near Deckers, CO on 10/01. +2006-10-01,39.6375,-106.0613889,Silverthorne,CO,light,10,I saw about six lights coming toward our house in a straight line, and one at a time from the furthest away, they went out. +2006-10-01,39.0916667,-104.8722222,Monument,CO,other,10,Four bright star-like objects, observed from Monument, CO, 2317 hrs, 10/1/06, traveling SW-NE at high rate of speed, no sound, <10 sec. +2006-10-01,38.35,-104.7222222,Pueblo West,CO,light,300,4-5 bright whitish-orange lights in Pueblo West, Colorado on 10/1/06 at 11:30 p.m. +2006-10-01,36.7280556,-108.2180556,Farmington,NM,light,14,a bright lights traveling very fast with a green tail that exploded into four lights! +2006-10-01,33.9177778,-106.8652778,San Antonio,NM,circle,20,ON SUNDAY 10 01 06 MY WIFE AND I WERE DRIVING HOME FROM WHITE RUIDOSO NEW MEXICO. APPROXIMATLEY AT 11:20 PM I NOTICED OFF TO MY LEFT BO +2007-10-01,33.1191667,-117.0855556,Escondido,CA,diamond,120,Thought it was a satellite moving across the sky until it went straight out of the sky till we could not see it anymore. +2007-10-01,34.0522222,-118.2427778,Los Angeles,CA,flash,900,Me and my friend were facing north-west a few minutes after midnight and saw two or maybe four objects flashing bright red and white. T +2007-10-01,39.7588889,-84.1916667,Dayton,OH,oval,5,UFO seen in Dayton, Ohio near Huber Heights +2007-10-01,35.2269444,-80.8433333,Charlotte,NC,light,1200,4 DOTS OF LIGHT AROUND MOON MID MORNING TODAY +2007-10-01,39.1752778,-89.6541667,Litchfield,IL,oval,2,Seen shiny aluminum colored craft @ Yeager Lake in Litchfield +2007-10-01,40.0680556,-82.5197222,Granville,OH,sphere,120,Hovering bright white light turns horizontally mid-air and becomes silvery dome-shaped object +2007-10-01,34.9236111,-77.7741667,Beulaville,NC,triangle,5,Green Glowing Triangular Craft +2007-10-01,21.3155556,-158.0072222,Ewa Beach,HI,light,600,Lights flickering in the sky. +2007-10-01,35.2080556,-82.2386111,Tryon,NC,light,10,Strange lights in NC sky. +2007-10-01,31.7380556,-99.9469444,Ballinger,TX,unknown,300,Loud Roar, Bright Orange Lights +2007-10-01,40.7616667,-73.3297222,Deer Park,NY,other,240,Moving star over eastern New York +2007-10-01,28.8002778,-81.2733333,Sanford,FL,triangle,120,Black Triangle shaped craft with 3lights on the bottom. (fast,smooth flying craft) +2007-10-01,37.7022222,-121.9347222,Dublin,CA,flash,2,Ball of light moving fast across the the sky +2008-10-01,35.0886111,-92.4419444,Conway,AR,triangle,600,Massive/low/silent black triangle cruises back and forth over downtown Conway +2008-10-01,41.4747222,-84.5525,Bryan,OH,cylinder,120,It was cylinder shaped and had lights all around it. 500 Lights On Object0: Yes +2008-10-01,40.6627778,-73.5519444,Merrick,NY,disk,5,Large metalic object hovering 30-50ft off the ground,short beam coming down to ground. +2008-10-01,38.4191667,-82.4452778,Huntington,WV,cylinder,600,cylinder shaped object with no lights or sound with plane following behind it +2008-10-01,37.4136111,-79.1425,Lynchburg,VA,light,30,I was walking my dog this morning when I saw a very bright orange light approaching from the south. +2008-10-01,36.6080556,-94.4475,Lanagan,MO,light,900,I reported this same object last week ,so far three times i have seen this blinking object which moves horizontially and does tight cir +2008-10-01,32.7833333,-96.8,Dallas,TX,oval,300,UFO I THINK +2008-10-01,33.5861111,-86.2861111,Pell City,AL,cigar,300,Very high, cigar shaped UFO moving at incredible speeds. +2008-10-01,41.7,-71.4166667,Warwick,RI,circle,600,Myself and two of my friends were driving down the road to pick up my girlfriend when my friend in the passenger seat noticed two unide +2008-10-01,33.5772222,-96.1780556,Bonham,TX,egg,300,Silver egg shape over six houses. ((NUFORC Note: Possible hoax?? PD)) +2008-10-01,33.9175,-116.7863889,Cabazon,CA,light,1200,hi, last night on oct 1, 2008 i saw 2 star sized objects that went extremely fast in the night sky in so.calif.(cabazon) at about 8:00p +2008-10-01,42.8613889,-105.8716667,Glenrock,WY,unknown,1200,Stationary object just above NE horizon with flashing red, green and white lights. +2008-10-01,48.051944399999996,-122.1758333,Marysville,WA,circle,1800,2 unidentified objects above highway 2 in marysville washington +2008-10-01,29.3836111,-94.9025,Texas City,TX,other,2,very strange, unexplainable sound +2008-10-01,35.7211111,-77.9158333,Wilson,NC,circle,600,Star shaped light blinking and rotating - then two of same lights after cloud went over and began to move +2008-10-01,43.4666667,-112.0333333,Idaho Falls,ID,light,15,Stationary lights in the path of the ISS +2008-10-01,47.5963889,-120.6602778,Leavenworth,WA,light,120,Big Light in the West Sky over Leavenworth Washington +2008-10-01,47.4830556,-122.2158333,Renton,WA,light,600,lights seen at night +2008-10-01,33.8225,-85.8927778,Wellington,AL,light,120,a light over the mountain +2008-10-01,47.0344444,-122.8219444,Lacey,WA,unknown,4,Like a hot ember emitting sparks while leaving a long trail like a shooting star. +2008-10-01,41.3494444,-85.1355556,Garrett,IN,triangle,4,Triangular shape with an array of lights and unusual amount of silent aircraft in the sky. +2008-10-01,32.7355556,-97.1077778,Arlington,TX,sphere,600,Large, very well lit sphere shaped object flying very low over my neighborhood then disappeared +2008-10-01,37.3688889,-122.0352778,Sunnyvale,CA,other,20,flashing object with erratic motion +2008-10-01,36.5483333,-82.5619444,Kingsport,TN,triangle,3,East Tennessee, 3 orb mass in the sky +2009-10-01,33.1730556,-84.915,Hogansville,GA,disk,10,Close viewing of disk-shaped ufo with colored lights +2009-10-01,41.8786111,-71.3830556,Pawtucket,RI,cylinder,600,Hovered over Pawtucket, RI and had red flashing lights at the bottom +2009-10-01,42.3086111,-83.4822222,Canton,MI,triangle,3600,Triangular shaped UFO with lights at corners hovering at cloud height over home +2009-10-01,35.2525,-95.2372222,Whitefield,OK,light,2,Looked like a light that appeared to be moving upwards. +2009-10-01,35.1494444,-90.0488889,Memphis,TN,oval,300,Day and Night - Saw object twice c.2009. 3-witnesses. Very similar to that object in the Tulsa OK sighting c.1965. +2009-10-01,41.8238889,-71.4133333,Providence,RI,disk,300,saucer with red and blue lights over providence, RI +2009-10-01,39.0305556,-82.8244444,Beaver,OH,light,10800,a white light moving in a circle. +2009-10-01,34.5097222,-88.2091667,Belmont,MS,triangle,120,Triangular object with 3 lights, one in middle blinking. +2009-10-01,29.055,-82.0625,Belleview,FL,circle,600,Flashing Blue Orb over southern Marion county FL. +2009-10-01,41.1411111,-73.2641667,Fairfield,CT,light,20,2 seperate observations. Fairfield, CT +2010-10-01,26.4611111,-80.0730556,Delray Beach,FL,other,180,Bright white light, shimmering green then red +2010-10-01,28.4319444,-82.6644444,Aripeka,FL,light,8,White light (star) traveling very fast in sky. +2010-10-01,43.0972222,-89.5041667,Middleton,WI,other,180,Glowing orange barrel-shaped objects in sky over town of Middleton, WI +2010-10-01,38.2008333,-77.5894444,Spotsylvania,VA,circle,1800,blue, red, green, and bright white light hovering over field near Thornburg Va food lion. +2010-10-01,32.3863889,-96.8480556,Waxahachie,TX,disk,1,Disk Shaped Object photographed near Waxahachie Texas +2010-10-01,32.7833333,-96.8,Dallas,TX,other,15,Soundless hovering airplane +2010-10-01,38.9886111,-78.3588889,Strasburg,VA,cigar,300,2 cigar shaped white objects viewed in Shenandoah Valley, VA +2010-10-01,35.0525,-78.8786111,Fayetteville,NC,light,300,FAST RED LIGHT WITH SLOWER BUT LARGER WHITE LIGHTS FALLING +2010-10-01,41.2380556,-81.8419444,Brunswick,OH,triangle,600,Triangle craft with bright light changes colors and moves like helicopter. +2010-10-01,48.1988889,-122.1238889,Arlington,WA,oval,300,Blue and red jelly bean shaped craft, hovering over Arlington Airport, Washington State. +2010-10-01,33.8752778,-117.5655556,Corona,CA,unknown,30,Star igniting accelerating and leaving a light beam behind. +2010-10-01,34.8241667,-85.2427778,Rock Spring,GA,light,300,Fast flying glowing light. +2011-10-01,26.1322222,-97.6308333,San Benito,TX,triangle,10,south texas 1 oct. v shaped silent object traveling south east dim white lights +2011-10-01,31.7091667,-98.9908333,Brownwood,TX,unknown,1500,Orange lights with blinking white lights swarming around. +2011-10-01,32.3413889,-90.3216667,Clinton,MS,circle,300,Jet and object flying side by side +2011-10-01,36.3511111,-119.4191667,Goshen,CA,oval,60,Bright round light in sky moving slowly +2011-10-01,38.4858333,-91.8502778,Linn (Outside Of),MO,unknown,5,Huge green flashing light low to the ground in missouri +2011-10-01,34.2255556,-77.945,Wilmington,NC,triangle,300,Triangle... very dim lights, no noise, around all outer edges, moving slowly, very low... went out of sight over UNCW campus +2011-10-01,39.1619444,-84.4569444,Cincinnati,OH,sphere,900,2 Glowing spheres over Cincinnati +2011-10-01,42.1102778,-88.0341667,Palatine,IL,light,90,Orange and Red light +2011-10-01,41.7830556,-123.0591667,Hamburg,CA,light,300,Extremely bright twin lights in night sky - moved off in unison. +2011-10-01,33.1580556,-117.3497222,Carlsbad,CA,fireball,10,I was driving south on the 5 Freeway this evening. I was passing Canon Road in Carlsbad, San Diego County, California. I saw 3 bright +2011-10-01,39.0997222,-94.5783333,Kansas City,MO,fireball,45,Unusual fireball-like orb moving in the sky, and suddenly disappears +2011-10-01,39.0997222,-94.5783333,Kansas City,MO,fireball,60,Orange fireball crosses the sky in Kansas City. +2011-10-01,46.8569444,-122.8516667,Tenino,WA,light,180,Orange ball of light hovers and then ascends and suddenly disappears +2011-10-01,31.2436111,-90.4530556,Mccomb,MS,rectangle,10,On a clear night while laying on a table witnessed a silent rectangle fully visible craft cross the sky aprrox.500" over trees +2011-10-01,33.6675,-84.0177778,Conyers,GA,light,3600,I see this almost every night when i go outside at the same time. it is this light that changes from hreen to blue to red. ((Starr??)) +2011-10-01,25.4683333,-80.4777778,Homestead,FL,formation,35,I am familiar with several types of planes, I worked at a NY airport for a number of years and I am a fan of military planes, this sig +2012-10-01,29.5819444,-95.7605556,Richmond,TX,unknown,300,Driving around when me and my friend saw a bright BRIGHT white light from about 2/12 miles away. Started driving towards it it as it ju +2012-10-01,38.8338889,-104.8208333,Colorado Springs,CO,light,9,Falling bright light +2012-10-01,33.6305556,-112.3325,Surprise,AZ,light,9,Flickering color changing lights in SE Phoenix sky. ((NUFORC Note: Probably a sighting of a "twinkling" star. PD)) +2012-10-01,27.3361111,-82.5308333,Sarasota,FL,formation,10,Dim lights +2012-10-01,34.1477778,-119.1941667,Port Hueneme,CA,light,1800,Light, Shape and near two bases +2012-10-01,41.8008333,-87.9369444,Hinsdale,IL,fireball,180,Orange fireball quickly ascending in sky in West suburbs of Chicago +2012-10-01,44.0522222,-123.0855556,Eugene,OR,light,180,Star looking lights with flashing red, green, and purple lights that just hover around ! NOT GOING ANYWHERE! ((Star?)) +2012-10-01,34.0922222,-117.4341667,Fontana,CA,fireball,900,Fireballs in Fontana, CA. +2012-10-01,42.7261111,-87.7827778,Racine,WI,other,900,Odd lights in formation appering and disappering. +2012-10-01,42.7622222,-84.9925,Sunfield,MI,unknown,300,Flying object coming out of field. Hovering for 5 mins. Then leaving. +2012-10-01,36.9752778,-121.9522222,Capitola,CA,light,60,Bright red torch-like object seen ascending rapidly, making a right angle turn, and disappearing from view in Capitola, CA +2012-10-01,45.7375,-94.9522222,Sauk Centre,MN,triangle,2700,2 weird objects fly over our house and make no noise and about 2 miles away just appear to stop for about 45 min. +2012-10-01,40.8830556,-85.4975,Huntington,IN,fireball,180,Very bright it hoverd and then sped off silently and was pulsating in rythem did not varie. +2012-10-02,42.4805556,-83.4755556,Novi,MI,triangle,300,V shaped and 8 big and very brite lights,moving very slow +2013-10-01,38.8338889,-104.8208333,Colorado Springs,CO,triangle,5400,Red, blue, white and green high in sky; didn't move. +2013-10-01,39.5358333,-76.3486111,Bel Air,MD,flash,4,Flashing ball that goes out and continues as a black dot at slower speed then a meteor. +2013-10-01,35.3733333,-119.0177778,Bakersfield,CA,circle,30,There was a metal looking star hovering several miles s/w of Bakersfield, Ca. my friend, girlfriend, and i were driving to the park an +2013-10-01,40.1933333,-85.3863889,Muncie,IN,triangle,7200,Bright Triangular Light Orb in the sky different flashing lights and appears closer each day. +2013-10-01,40.4405556,-79.9961111,Pittsburgh,PA,unknown,60,Driving across the Glenfied Bridge, northbound, saw an odd shape as i was looking southeast down the Ohio. It wasn't a plane. It wa +2013-10-01,40.4405556,-79.9961111,Pittsburgh,PA,unknown,60,I'm conflicted. I had another sighting, and I was challenged by you of filing a false report. ((NUFORC Note: See comment below. PD) +2013-10-01,40.015,-105.27,Boulder,CO,light,240,Three long white crescent shaped moving lights moving in a half circle. +2013-10-01,29.7955556,-90.8227778,Thibodaux,LA,unknown,300,Very bright white lights 4 all together moving from southeast to west flying low no noise. +2013-10-01,43.2122222,-77.4302778,Webster,NY,sphere,1800,Yellow/Orangish Balls streaking across the sky, no sound from them at all, and no tail. +2013-10-01,26.0583333,-80.3375,Southwest Ranches,FL,light,300,Brilliant white light in SW Sky stationary over 7 minutes then vanishes. Not an airplane! +2013-10-01,27.9472222,-82.4586111,Tampa,FL,light,3600,Intensely bright light sphere high up in the sky over the Gulf of Mexico. +2013-10-01,34.2072222,-84.1402778,Cumming,GA,fireball,1200,3 very slow-moving sparking, flaming meteor looking objects starting on 1 side of the horizon and ended in the same spot on the other. +2013-10-01,36.5297222,-83.2175,Sneedville,TN,circle,90,Large round bright white light moved away and upward for 1-1.5 min before completely disappearing. +2013-10-01,42.6916667,-83.5541667,White Lake,MI,unknown,900,Two seperate objects far off, with a white light that turned off an on every four or five minutes then disappeared. +2013-10-01,42.4927778,-92.3427778,Waterloo,IA,triangle,60,My girlfriend and I witnessed a bright orange triangular light in the sky. +2013-10-01,40.8841667,-72.9377778,Middle Island (Long Island),NY,fireball,1200,Orange Glowing Lights over East Long Island. +2013-10-01,43.3380556,-89.3802778,Arlington,WI,unknown,600,Strange Green/Purple and Orange Dancing Lights Above Farm Field. +1965-10-12,40.4405556,-79.9961111,Pittsburgh,PA,circle,120,Saucer observed about 500 feet up moving into clear blue sky and flying square corners. +1965-10-12,40.4405556,-79.9961111,Pittsburgh,PA,disk,60,Low UFO sliding out of a cloud into clear blue sky. +1971-10-12,42.6919444,-73.725,Menands (Albany),NY,chevron,180,Large, black, "boomerang" shaped object gliding silently overhead. +1973-10-12,33.5205556,-86.8025,Birmingham (Just South Of),AL,disk,900,Glowing Green UFO seen by myself (mom) and my 4 children very low over our car on a Friday night in Alabama in 1973. +1976-10-12,38.4038889,-96.1813889,Emporia,KS,disk,300,Disc hoovers over train and seems to x-ray it. +1978-10-12,36.0344444,-89.3855556,Dyersburg,TN,triangle,7200,NW TN TRIANGLE. +1978-10-12,33.8480556,-109.1425,Alpine,AZ,circle,7200,DURING A HUNTING TRIP IN THE MOUNTAINS,WE MADE CAMP AND LATE THAT NIGHT I SAW THE FOLLOWING. A BRIGHT LIGHT THAT CAME FROM THE SOUTHEAS +1979-10-12,39.7530556,-74.2233333,Barnegat,NJ,rectangle,900,Iwitnessed one object moving east to west across Rt.539 4 mile north of Rt.72 near the Fire Tower. There were no cloud and the sky was +1982-10-12,30.2463889,-89.6111111,Pearlington,MS,light,20,While fishing on the east pearl river which seperates la./ms. north of i10 near stennis we saw a white round light just above the trees +1982-10-12,30.2463889,-89.6111111,Pearlington,MS,light,29,Round light which was observed going into space with moves and silence that we have never seen before. +1985-10-12,34.6875,-77.1194444,Swansboro,NC,disk,300,My sister and I observed a disk for about 5 minutes hovering approximately 120 feet away. +1994-10-12,42.8141667,-73.94,Schenectady,NY,other,120,I had just picked up my Daugther (2yrs old) from my Mother-in-Laws and was on my way home it was a clear cold crisp day with the leaves +1994-10-12,36.8297222,-84.8491667,Monticello,KY,chevron,120,Triangular/chevron small object with fixed lights at corner--very fast moving. +1994-10-12,27.2436111,-80.83,Okeechobee,FL,disk,120,close encounter of the fifth kind - detailed information was given via ELF wave and four books written with schematics/drawnings. +1995-10-12,38.2544444,-104.6086111,Pueblo,CO,triangle,10,3 Triangular craft passed directly overhead. They were flying in a "V" formation at low altitude. There was no sound. These objects we +1997-10-12,33.6602778,-117.9983333,Huntington Beach,CA,sphere,20,Sphere chased by Huntington Beach Helocopter +1997-10-12,29.9938889,-90.2416667,Kenner (34th St.),LA,disk,1260,two disk like objects passed over me and my mother objevts seemed to be a couple of thousand feet overhead +1997-10-12,41.85,-87.65,Chicago,IL,light,300,Me and my friend were driving back from a Cubs game and we saw a red light in the sky it was moving very fast, then stopped, went back +1997-10-12,43.4441667,-71.6477778,Franklin,NH,other,15,Round green ball-shaped object +1998-10-12,40.8,-96.6666667,Lincoln,NE,egg,11,3 Lights not as egg shaped but close, thumb nail. Flying in tryangle formation flew over for 7 seconds not to close but not far away. f +1998-10-12,40.6669444,-111.8872222,Murray,UT,light,300,It was a red light in the north west sky. it rose very slowly for about three minetes and then droped down flashing red and white.To sl +1998-10-12,35.6008333,-82.5541667,Asheville,NC,fireball,1800,A MOVING RED BALL OF LIGHT. +1998-10-12,35.6008333,-82.5541667,Asheville,NC,light,2400,Red light moved slowly over Asheville, dogs acted is if they were in pain. +1999-10-12,46.8722222,-113.9930556,Missoula,MT,triangle,60,Some of my friend and I were outside, smoking when something flew over us. It looked like an airplane at first, but it was to big, and +1999-10-12,44.6366667,-123.1047222,Albany,OR,fireball,120,Two fireballs in northwest sky +1999-10-12,36.8744444,-94.8772222,Miami,OK,oval,120,Flock of Silver Ovalish Shaped Disk flying quickly through the daytime sky. +1999-10-12,39.9991667,-78.2388889,Breezewood,PA,fireball,3600,3 balls of light were in the sky. They were in a triangle formation, I heard that it might have been one ship with three lights. +1999-10-12,33.5091667,-111.8983333,Scottsdale,AZ,cigar,600,I witnessed a extremely white bright cigar shaped light in the west/soutwestern sky, low on the horizon. It moved slowly from south to +1999-10-12,31.3797222,-110.1177778,Palominas (Near Ft. Huachuca),AZ,triangle,600,V shaped light pattern but craft was pyrymid shape and demention. Huge size of shopping mall made no sound, escorted by 1/2 hours worth +1999-10-12,48.1172222,-122.7591667,Port Townsend,WA,triangle,300,3 satellites forming a perfect isosceles triangle shape, moving in complete unison from the NW to the SE and turning to the South. +1999-10-12,33.4483333,-112.0733333,Phoenix,AZ,fireball,600,Phoenix police dept. helicopters (2) and crew observe orange fireball that circles their craft. Report at first denied by PPD then ackn +1999-10-12,36.1538889,-95.9925,Tulsa,OK,other,30,It was maybe 500ft above me, no lights, traveling VERY slow, and completely silent. +1999-10-12,45.9763889,-94.3622222,Little Falls (North Of),MN,formation,3600,Two bright amber lights. About 300 to 500 feet up. One slightly lower. +2000-10-12,32.7555556,-98.9019444,Breckenridge,TX,other,300,It was slow moving ,no lights and totally silent and BIG. +2000-10-12,36.4744444,-81.805,Mountain City,TN,disk,30,Broad Daylight Flying Saucer +2000-10-12,38.9863889,-81.9736111,New Haven,WV,disk,6,Disk shaped object sited over Mason County W.V. traveling at high rate of speed. +2000-10-12,43.4155556,-72.8227778,Belmont,VT,cigar,600,The cigar shaped craft was hovering in the southwestern sky fairly close to the ground. There were lights on it. There was a bright " +2000-10-12,33.3527778,-111.7883333,Gilbert,AZ,oval,1080,Bubba's Back! +2000-10-12,33.3527778,-111.7883333,Gilbert,AZ,unknown,900,Bright red ball of light moving an easterly direction over Gilbert, AZ +2000-10-12,36.1538889,-95.9925,Tulsa,OK,fireball,60,Witnessed a pink fireball making small circles in the sky around 71st ST & HWY 169. At first glance it appeared to be fireworks but the +2000-10-12,33.3702778,-112.5830556,Buckeye,AZ,light,300,i saw "bubba " in buckeye az very red and very bright +2001-10-12,25.7738889,-80.1938889,Miami (Kendall),FL,circle,1200,On Oct.12񫺑 at 1:30am, I witnessed a dark disk over my neighborhood in Miami,Fl. +2001-10-12,25.7738889,-80.1938889,Miami,FL,disk,1200,Craft hovered high in the atmosphere, changed colors or flashed lights. Red, White, Green Moving so slightly +2001-10-12,39.7391667,-104.9841667,Denver,CO,disk,120,As I was driving in my car on the way home from work, I stopped at the red light turning west on Colfax Avenue. I was on the intersect +2001-10-12,33.4483333,-112.0733333,Phoenix,AZ,formation,120,Cluster UFO over Phoenix AZ +2001-10-12,61.3213889,-149.5677778,Eagle River,AK,other,10,The stealth-shaped object was traveling at low altitude at a high speed with no sound and lights that flashed intermittently. +2002-10-12,37.725,-122.155,San Leandro,CA,disk,600,Bright white disk, stationery for ten minutes, and then in an instant disappeared completely. +2002-10-12,33.1672222,-95.1116667,Winfield,TX,circle,600,I seen a circular obect, silver in color with no wings moving north to west at a rather fast speed. +2002-10-12,37.775,-122.4183333,San Francisco,CA,unknown,180,Air show to the northwest, small metallic objects forming circle formations to the southeast 4th appeared out of nowhere. +2002-10-12,40.3041667,-74.1008333,Tinton Falls,NJ,light,900,I was looking at what was, only an hour earlier, CLEAR BLUE SKIES, being filled up by what might be referred to as chemtrails. As I was +2002-10-12,34.54,-112.4677778,Prescott,AZ,formation,600,Large cluster of black baloons tehered together at 1500 ft heading SW +2002-10-12,47.4830556,-122.2158333,Renton,WA,disk,3,Fast-moving saucer-shaped white light +2002-10-12,47.5388889,-116.4708333,Rose Lake,ID,light,600,Strange sphere above north Idaho. +2002-10-12,33.6608333,-95.5552778,Paris,TX,triangle,300,Triangle UFO with Blue/White lights +2002-10-12,26.3583333,-80.0833333,Boca Raton,FL,light,300,White Specks moving moving back and forth, sometimes stopping. +2002-10-12,33.6608333,-95.5552778,Paris,TX,triangle,300,Close encounter in Paris, TX +2003-10-12,42.6525,-73.7566667,Albany,NY,unknown,30,object emmited bright light then sped off in a flash. +2003-10-12,38.005,-121.8047222,Antioch,CA,circle,1500,Peculiar lights over the Antioch, CA sky +2003-10-12,40.5983333,-76.0936111,Auburn,PA,fireball,600,bright red light +2003-10-12,34.8641667,-118.1625,Rosamond,CA,other,480,Two Brilliant Star objects in twilight sky +2003-10-12,41.6833333,-86.25,South Bend,IN,other,600,Orange Ball Joined By Second That Formed a Debris Field - Filmed +2003-10-12,33.2055556,-80.6480556,Reevesville,SC,other,900,october 12th sunday 2003 6:35pm. /distorted airway/sky perhaps portle 15/20feet high same width on our land facing westnorthwest +2003-10-12,32.7833333,-96.8,Dallas,TX,sphere,300,Luminous translucent red sphere +2004-10-12,40.2502778,-103.7994444,Fort Morgan,CO,sphere,1500,It was a sphere shaped object with lights on it....it had left jet stream marks in the sky,then landed. +2004-10-12,47.2530556,-122.4430556,Tacoma,WA,formation,4,Three orange circles without depth, quickly, randomly and fluidly dancing in tight formation, moving silently +2004-10-12,37.7416667,-121.1233333,Ripon,CA,other,5,Looking up in Nother sky at 12:06am 10-12-04 I by myself seen a boomerang shaped object heading west. It passed over 90 dgrees in 4-5 s +2004-10-12,39.0838889,-77.1530556,Rockville,MD,light,10,it was not a satilite +2004-10-12,43.1008333,-75.2330556,Utica,NY,light,45,Two white lights, two blue-green lights (1/2 the size of the former), all looked like stars visible in the daytime. +2004-10-12,37.6688889,-122.0797222,Hayward,CA,sphere,2700,More UFO's in Hayward +2004-10-12,25.7738889,-80.1938889,Miami,FL,light,60,Glanced at aerial object tonight... thought to could have been a commercial jet, but it was heading south from north, from overhead to +2004-10-12,27.0438889,-82.2361111,North Port,FL,light,75,An orange/yellow star-like cylinder with a hazy, glow transited Florida from SSE to NNW at 30 elevation on 10/12/04 @2327 EDT +2004-10-12,47.4508333,-122.8261111,Belfair,WA,fireball,60,Small Fireball moved from east to west over southern Hood Canal +2004-10-12,38.7908333,-121.2347222,Rocklin,CA,triangle,3600,I first saw the object at about 10:30 last night. It remained in one place. ((NUFORC Note: Possibly a twinkling star?? PD)) +2005-10-12,35.3733333,-119.0177778,Bakersfield,CA,fireball,7200,((NUFORC Note: Possible sighting of Mars. PD)) Bright Star changes direction at high speeds. +2005-10-12,32.5158333,-93.7319444,Bossier City,LA,oval,30,Very loud, noisy craft, intense orange-red color, goes over my house in early a.m. +2005-10-12,28.7027778,-81.3386111,Longwood,FL,formation,20,Two glowing discs slowly glide accross Longwood FL night sky. +2005-10-12,40.1877778,-85.1275,Farmland,IN,light,600,Bright, pulsating light in night sky +2005-10-12,40.0455556,-86.0086111,Noblesville,IN,light,10,yellow light moving in wierd patterns and disappeared over noblesville, indiana. +2005-10-12,33.4483333,-112.0733333,Phoenix,AZ,light,300,Yellow Lights seen over South Mountain +2005-10-12,33.4222222,-111.8219444,Mesa,AZ,sphere,180,Phoenix Lights are Back! +2005-10-12,33.5805556,-112.2366667,Peoria,AZ,triangle,240,Many sightings of 12 orange lights, bouncing + pattern formation, high rate of acceleration 8:34 PM on 10/12/05 +2005-10-12,30.6325,-97.6769444,Georgetown,TX,changing,7200,((NUFORC Note: Possible twinkling stars? PD)) Four objects with red/orange & green flashing lights sighted near Florence/Killeen,TX.. +2005-10-12,37.3394444,-121.8938889,San Jose,CA,unknown,300,Possible Chinese Spacecraft Launch?? +2006-10-12,41.8083333,-71.3375,Seekonk,MA,formation,300,Ufo, massachusetts, circular, discs, formation, triangle +2006-10-12,28.6608333,-81.3658333,Altamonte Springs,FL,sphere,30,Sphere shaped UFO Seen in Altamonte Springs, FL by a young girl 10/12/06 +2006-10-12,42.6388889,-83.2911111,Pontiac,MI,light,120,massive intense lights over Detroit Michigan Thursday night, 2 objects. +2006-10-12,40.015,-105.27,Boulder,CO,triangle,10,Object appeared for about 10 seconds triangle shape +2007-10-12,41.2230556,-111.9730556,Ogden,UT,triangle,10,Large Triangle space craft seen from Northern Utah Traveling South out of the North sky 10-12-07 at 12:20am +2007-10-12,38.7044444,-93.2280556,Sedalia,MO,formation,15,2 Golden Round Lights Simply Vanish before our eyes +2007-10-12,40.7141667,-74.0063889,New York City,NY,light,1800,bright light of oval shaped object hovers in sky over Manhattan in early morning --lasted about half hour ((NUFORC Note: Venus. PD)) +2007-10-12,27.2155556,-81.8586111,Arcadia,FL,formation,65,It was real and I have NEVER seen anthing like it, I reported it to the police who came to my house and took an affidavit +2007-10-12,40.1416667,-75.2094444,Fort Washington,PA,sphere,300,Highly reflective object gliding across sky +2007-10-12,34.0522222,-118.2427778,West Los Angeles,CA,unknown,600,un-steady flight as if it was shaking almost moving left to right flying forward single slow flashing red light not like cesna or multi +2007-10-12,44.2619444,-88.4152778,Appleton,WI,circle,300,Blue circluar ufo +2007-10-12,33.6694444,-117.8222222,Irvine,CA,circle,600,Bright white circles of light on one side, red light on trailing edge of other side. Amazing flight patterns. +2007-10-12,39.9625,-76.7280556,York,PA,oval,3300,Another sighting in York PA!!! +2007-10-12,36.3319444,-94.1183333,Rogers,AR,unknown,172800,((HOAX??)) abduction. 500 Lights On Object0: Yes +2007-10-12,41.22,-74.8716667,Dingmans Ferry,PA,triangle,3,While stargazing this strange object appeared +2008-10-12,40.7297222,-73.2108333,Islip (Central),NY,light,35,a white tiny light moving thru the sky +2008-10-12,40.6113889,-79.8372222,Russellton,PA,cigar,50,Cigar shaped, low flying, and decent size craft blicking red light. +2008-10-12,40.3355556,-75.9272222,Reading,PA,diamond,300,Sightings Over Reading Pa Area +2008-10-12,35.2333333,-106.6638889,Rio Rancho,NM,disk,90,The UFO was a sacer shaped, silver object. +2008-10-12,41.245,-75.9311111,Larksville,PA,other,600,We saw craft at close range with all detail on a clear sunny day at 12:00 noon. +2008-10-12,37.8805556,-84.5730556,Nicholasville,KY,circle,900,White balls of light moving across the sky. +2008-10-12,47.2530556,-122.4430556,Tacoma,WA,light,420,Orange, slow-moving light, appeared to backfire and shoot out flames/sparks.Stopped at some points. +2008-10-12,33.1975,-96.615,Mckinney,TX,light,300,Two White Separated Lights in Southern Sky +2008-10-12,35.4816667,-86.0886111,Manchester,TN,changing,120,Shape changing plasma type thing along a large jet stream in night sky +2008-10-12,38.7955556,-77.6141667,Gainesville,VA,light,300,Bright Blue Fluorescent Light Seen in Virginia Outside Washington DC +2008-10-12,36.175,-115.1363889,Las Vegas,NV,changing,900,About 23:00 I opened the drapes and I looked towards the sky. +2008-10-12,42.2813889,-83.3863889,Wayne,MI,circle,45,2 orange colored objects flying and stopping over WAYNE, MICHIGAN +2009-10-12,43.1977778,-70.8741667,Dover,NH,unknown,5,I saw a shiny object that shot across the northeast sky at a high rate of speed. +2009-10-12,33.4472222,-84.1469444,Mcdonough,GA,formation,900,We were outside filming a highschool project when someone saw a flash over head. we looked up and saw 3 or even 4 crafts with no distin +2009-10-12,46.6022222,-120.5047222,Yakima,WA,light,300,3 very bright lights stationary in the sky, but separated by approximately 10 degrees +2009-10-12,26.1888889,-98.155,San Juan,TX,unknown,900,8:30ct   Oct. 12, 2009 Myself, my husband and my daughter saw a large bright object that looked like a star at first.... It was moving +2010-10-12,31.0747222,-96.1425,Cross Roads,TX,triangle,180,BLACK TRIANGLE SEEN OVER NORTH TEXAS ON 10.12.10 +2010-10-12,30.0969444,-95.6158333,Tomball,TX,cigar,20,A ufo sits for ten seconds, and disappears completely +2010-10-12,43.55,-96.7,Sioux Falls,SD,light,600,Hovering flashing lights moving up +2010-10-12,37.4283333,-121.9055556,Milpitas,CA,other,300,Similar white dots seen in NYC seen in Milpitas CA +2010-10-12,37.4283333,-121.9055556,Milpitas,CA,other,300,Sorry about this, but I just filed a report about the white dots over Milpitas and I believe I got the day wrong. I reported Wednesday +2010-10-12,31.5491667,-97.1463889,Waco,TX,oval,300,Oval shaped aluminum colored object spotted in broad day light and dissapeared +2010-10-12,41.92,-84.6305556,Hillsdale,MI,circle,120,Hovering/moving white or metallic ball in the sky +2010-10-12,38.8902778,-77.0844444,Arlington,VA,sphere,45,Moving object resembeling a star headed Southeast +2010-10-12,32.7833333,-96.8,Dallas,TX,cigar,300,Bright white light cigar shaped object seen flying slowly to the north in slight decent. +2010-10-12,30.6033333,-87.9036111,Daphne,AL,chevron,45,Chevron shape lights moving slowly, Daphne AL +2010-10-12,38.7669444,-90.4113889,Bridgeton,MO,rectangle,120,Dark rectangular object ascended into the sky near St. Louis International airport +2010-10-12,42.3583333,-71.0602778,Boston,MA,disk,300,Bright UFO above Boston, Ma +2010-10-12,31.3380556,-94.7288889,Lufkin,TX,chevron,30,My wife and I observed chevron shaped lights moving across the sky +2010-10-12,27.8425,-82.6997222,Pinellas Park,FL,circle,1800,A BRIGHT blue, red, green, white globe that would go out and randomly change colors. ((NUFORC Note: Twinkling star? PD)) +2010-10-12,42.4927778,-92.3427778,Waterloo,IA,light,180,Orange orb came close. +2010-10-12,35.9605556,-83.9208333,Knoxville,TN,light,240,A string of about 12 amber lights sighted in clear late evening sky moving NNE from the Smoky Mnts. +2011-10-12,31.5491667,-97.1463889,Waco,TX,changing,900,No noise precision flying unreal altitude gains somewhat creepy and appeared as many and left as one +2011-10-12,36.2716667,-83.14,Whitesburg,TN,circle,30,Blue (same as sky) colored circle with red, white and blue lights on it seen around dusk. +2011-10-12,33.8941667,-78.4269444,Ocean Isle Beach,NC,light,1200,I am a 55 year old business owner from Raleigh, NC and have been an FAA licensed pilot for 37 years. I have an interest in astronomy +2011-10-12,37.1041667,-113.5833333,St. George,UT,disk,7,I saw a hovering metallic grey saucer shaped disk hovering over the South Gate Golf course +2011-10-12,32.7763889,-79.9311111,Charleston,SC,unknown,30,Blue object, translucent, no sound +2011-10-12,29.4238889,-98.4933333,San Antonio,TX,triangle,900,2 spacecraft and huge blue light in the sky +2011-10-12,47.9177778,-108.5255556,Zortman,MT,light,1800,Small bright yellow white light forming into three. making a loud roaring noise. +2012-10-12,28.6119444,-80.8077778,Titusville,FL,fireball,30,WE SAW 3 SEPARATE SIGHTINGS WITHIN 15 MINS TIME EACH TIME 3 ORANGE FLAME BALLS FLEW IN UNISON THROUGH THE NEIGHBORS TREES AT A FAST PAC +2012-10-12,41.85,-87.65,Chicago,IL,unknown,7200,UFO’s spotted in Chicago in the early morning on 10/12/12. +2012-10-12,40.4405556,-79.9961111,Pittsburgh,PA,rectangle,3,Craft zoomed past my windshield. +2012-10-12,40.9747222,-80.4938889,Bessemer,PA,circle,300,Bright orange circles +2012-10-12,36.5805556,-87.76,Big Rock,TN,sphere,1200,Large white/silver spherical object with smaller black object in close proximity over Fort Campbell, KY. +2012-10-12,36.5297222,-87.3594444,Clarksville,TN,circle,120,Very huge mass with black figured markings no outer rim +2012-10-12,42.1947222,-122.7083333,Ashland,OR,cylinder,40,Airliner and UFOs. +2012-10-12,39.8963889,-80.1794444,Waynesburg (North Of),PA,light,60,Bright light surrounded by jets. +2012-10-12,44.9430556,-123.0338889,Salem,OR,oval,600,An oval shaped craft emited an intense silver light. The bottom of it had a red/blue streak. Then it very fast left blinking red. +2012-10-12,33.4483333,-112.0733333,Phoenix,AZ,other,300,Huge fireball in Phoenix turns into two orbs that float and tumble to the ground +2012-10-12,33.3702778,-112.5830556,Buckeye,AZ,light,3600,I saw a strange orange orb in the southern sky. +2012-10-12,26.6155556,-80.0572222,Lake Worth,FL,chevron,60,Chevron Shape Bright Object in the Northern Sky +2012-10-12,26.6155556,-80.0572222,Lake Worth,FL,cylinder,60,Self illuminating rod-chevron shape near West Palm Beach +2012-10-12,43.5405556,-70.8486111,Shapleigh,ME,changing,300,UFO Chasing commercial flight in southern maine!! +2012-10-12,41.4202778,-72.4069444,Hadlyme,CT,light,300,Bright ascending light, vanished in a flash +2012-10-12,32.2216667,-110.9258333,Tucson,AZ,chevron,6,Stange Craft seen in the night sky over Tucson Az. +2012-10-12,39.6527778,-78.7627778,Cumberland,MD,light,10,Stunned to what I seen. Bright. Semi stationary light. Very bright. Seen no form. Just the light. +2012-10-12,43.0116667,-88.2313889,Waukesha,WI,circle,900,25 orange lights in the sky +2012-10-12,35.4675,-97.5161111,Oklahoma City,OK,sphere,300,Multiple silent red orbs under power over Oklahoma City, approx. 5 min. duration. +2012-10-12,26.6583333,-80.2416667,Wellington,FL,fireball,600,2 circular balls of red light floating over neighborhood in wellington, fl +2012-10-12,44.6613889,-84.7147222,Grayling,MI,light,600,Intense bright white light, turns bright orange and vanishes near Grayling Michigan +2012-10-12,61.2180556,-149.9002778,Anchorage,AK,fireball,10,Short rocket-like fireball near air force base. +2012-10-12,38.1958333,-81.4777778,Cabin Creek,WV,unknown,40,Three big white lights with a set of twinkling lights. Craft was hovering then moved at slow pace. Then it disappeared at of then air. +2012-10-12,39.8911111,-74.9222222,Marlton,NJ,circle,1800,20 cirlces of orange lite in the Kings grant area marlton New Jersey +2012-10-12,39.8811111,-75.3241667,Ridley Park,PA,light,15,Blue light object falls from sky 10/12/12 PA +2012-10-12,41.6022222,-72.9872222,Wolcott,CT,circle,300,5 amber orbs floating at a high rate of speed +2013-10-12,30.2669444,-97.7427778,Austin,TX,unknown,17,Gold hazy "being" hovering (like standing on edge of craft) while over apt building in NW Austin - amber lights on edges. +2013-10-12,43.0280556,-73.3816667,Cambridge,NY,light,7200,Flickering light moved in almost a hummingbird type fashion +2013-10-12,41.3144444,-81.8358333,Strongsville,OH,triangle,300,Three bright lights in triangle formation over Strongsville/Brunswick area. Moved together almost as if one craft. +2013-10-12,38.2205556,-90.3958333,Festus,MO,fireball,60,2 large orange lights hovering near each other. Moving up and down, side to side. Zoomed & disappeared, seemingly realizing us noticing +2013-10-12,42.1033333,-76.2625,Owego,NY,disk,120,2 Flying discs over Owego, New York, USA. +2013-10-12,57.79,-152.4072222,Kodiak,AK,other,300,Huge and change of vector into sky. +2013-10-12,38.6272222,-90.1977778,St. Louis,MO,formation,900,Cluster of silver orbs fading in and out of view. +2013-10-12,42.7358333,-83.4188889,Clarkston,MI,triangle,1800,Triangular object with 2 small round objects in clouds in daylightƹ of the objects took off at increadable speed. +2013-10-12,39.9611111,-82.9988889,Columbus,OH,changing,180,Shape shifting Light Orbs. +2013-10-12,40.2522222,-80.0030556,Finleyville,PA,other,120,Four orange globes +2013-10-12,40.7425,-84.1052778,Lima,OH,formation,600,Husband and I witnessed 4 translucent lights moving clockwise then coming together in center and then spreading back out. I have seen t +2013-10-12,41.215,-86.7758333,North Judson,IN,light,30,3 to 4 bright glowing oarnge balls in a straight line, then made fast movements in a straight line +2013-10-12,36.7280556,-76.5838889,Suffolk,VA,triangle,900,9 sets of 3 triangular aircraft. +2013-10-12,35.7452778,-81.685,Morganton,NC,light,300,Red/orange lights. +2013-10-12,39.3994444,-84.5613889,Hamilton,OH,formation,1200,Bright light splits into 4 and forms shapes, disappears one at a time, above Hamilton Ohio +2013-10-12,30.2669444,-97.7427778,Austin,TX,triangle,60,UFO lights over Austin, Texas ACL Fest During the Cure Concert. +2013-10-12,39.5588889,-84.3041667,Franklin,OH,light,600,Bright white lights one then three then four appeared then all diappeared then reappeared. +2013-10-12,39.3994444,-84.5613889,Hamilton,OH,fireball,120,Large orange fireball splits into four fireballs. +2013-10-12,39.5522222,-84.2333333,Springboro,OH,unknown,60,Glowing orbs flickering and changing configuration. +2013-10-12,39.0875,-81.9227778,West Chester,OH,light,60,One yellow light that split into four the reunited over Butler County Ohio. +2013-10-12,39.6427778,-84.2866667,Miamisburg,OH,fireball,600,Started as a fireball that separated into three hovering objects +2013-10-12,40.6936111,-89.5888889,Peoria,IL,formation,180,Several stationary orange lights in sky west of Peoria, in a descending arc which dissappeared in twos after a short period of time. +2013-10-12,39.5522222,-84.2333333,Springboro,OH,unknown,30,High altitude orb of ligh breaks into four, which move around laterally, join back together and disappear. +2013-10-12,39.1911111,-106.8169444,Aspen (~2 Hrs. W Of; Driving),CO,formation,30,3 orbs in sky remote Colorado oct 12 2013 moving in up and down to side to side plus sign formations . +2013-10-12,39.0638889,-108.55,Grand Junction (East Of; On I-70),CO,light,15,Oct 12, 2013, I saw 3 orbs in sky east of grand junction on I/70 moving in fasted up and down side to side formations. . +2013-10-12,40.0333333,-83.1583333,Hilliard,OH,diamond,180,Diamond\Top UFO with all red panels. +2013-10-12,34.9491667,-83.7575,Hiawassee,GA,circle,900,We just witnessed an amazing event. About ten different hovering light facing 20' north east of Hiawassee. They were orange like and +2013-10-12,41.88,-88.0077778,Lombard,IL,other,120,Two thin, pinkish glowing rings drifting through the air. +2013-10-12,34.5033333,-82.6502778,Anderson,SC,circle,20,3 orange balls of light, that jet off one at a time in different directions! +2013-10-12,38.6786111,-121.2247222,Orangevale,CA,fireball,600,8 Orange Fireballs In sky +2013-10-13,39.1619444,-84.4569444,Cincinnati,OH,fireball,300,A bright orange light split into four, did a strange but precise set of movements, then joined back together and faded. +2013-10-13,38.6786111,-121.2247222,Orangevale (Sacramento),CA,sphere,60,swarm of 8 orange orbs stop and dispers in many directions... +1966-10-13,26.2155556,-98.325,Mission,TX,disk,5,I was driving to the hospital after work to visit my dad. Suddenly, about 3 blocks ahead of me a disc lite object appeared. It arriv +1969-10-13,35.3413889,-89.8972222,Millington,TN,formation,259200,Star-like, 8-point inverted V-shape, changed to V-shape, executed 1-second shift from directly South to directly West. +1969-10-13,35.1494444,-90.0488889,Memphis,TN,formation,3600,One object joining 9 others to complete a triangular formation. +1971-10-13,41.6716667,-72.9497222,Bristol,CT,disk,600,i was just a baby up at fallmount,past central high school,wolcott st..i was told by my family dad,mom and 4 brother that when i was ju +1973-10-13,36.426944399999996,-77.5958333,Weldon,NC,oval,300,Me and my brother was coming home from a friends house and we saw a red flashing light what liked to be over a friends house. After a f +1990-10-13,39.6977778,-76.0630556,Rising Sun,MD,sphere,600,These were four brightly luminous objects observed in the broad daylight. They were lined up in a row-vertically. They were all spher +1994-10-13,37.7808333,-90.4216667,Farmington,MO,cylinder,120,I spotted what I thought was a bright landing light of a larger than usual aircraft for our airport. +1995-10-13,40.7141667,-74.0063889,New York City,NY,light,60,Late one evening, on my way home from work, I ran into a few old friends. We started talking about the good old days and hours passed w +1996-10-13,39.5297222,-119.8127778,Reno,NV,triangle,2400,At 3:19 am, bright light seen outside window and then one small tugboat triangular shaped aircraft seen over the house and then both oc +1996-10-13,29.6513889,-82.325,Gainesville,FL,circle,2400,ALIEN CONTACT THROUGH DREAMS +1996-10-13,46.1880556,-123.83,Astoria (Outside Of),OR,circle,30,large metallic object crashed in woods in astoria oregon. +1996-10-13,31.8455556,-102.3672222,Odessa,TX,diamond,600,We saw a huge diamond shaped object hovering over us. +1996-10-13,34.1591667,-118.5002778,Encino,CA,triangle,3,very large V shaped craft flys from horizon to horizon in 3 seconds, very low and silent (Los Angeles) +1997-10-13,39.5297222,-119.8127778,Reno,NV,other,3600,We saw several objects performing naneuvers that not possible for present day aircraft to accomplish. This sighting is indescribable th +1997-10-13,36.8525,-121.4005556,Hollister,CA,light,120,I was walking on a county road looking at the stars as I often do When I noticed a star becoming brighter, Then to my amazement it move +1999-10-13,35.6869444,-105.9372222,Santa Fe,NM,disk,25,while driving east something unusuall grabed my sight to the sky, there was 3 objects (plus 2 fighters afar)i kept looking at them and +1999-10-13,38.9988889,-84.6266667,Florence,KY,triangle,600,I 75 going south. Triangle shape. White light on each corner. Not moving... no sound. +1999-10-13,40.4405556,-79.9961111,Pittsburgh,PA,other,300,Stange Craft chased away by fighters. +1999-10-13,43.1344444,-90.7052778,Boscobel,WI,light,300,A red light making smoke and stopped making smoke going east. +1999-10-13,42.7325,-84.5555556,Lansing,MI,circle,600,Seen something that was not a helicopter or a plane , too low, too silent, no sound, the damn thing hovered. Planes don't do that. +2000-10-13,40.7161111,-73.8505556,Forest Hills,NY,circle,60,Illuminated green ball of light hovers in the sky +2000-10-13,36.1538889,-95.9925,Tulsa,OK,fireball,60,Fireball sighting early morning 10/13/00 +2000-10-13,38.0466667,-97.3447222,Newton,KS,fireball,90,These objects appeared to be meteorites of a very large magnitude. +2000-10-13,37.6922222,-97.3372222,Wichita,KS,other,90,Did not see a craft, just a bursting brilliant meteor shower, several chunks of debris came from it. This was a natural phenomenon. L +2000-10-13,35.9605556,-83.9208333,Knoxville,TN,cylinder,120,Two metalllic cylinders and an unusual "plane" sighted flying from SW to ENE and ENE to SW in Knoxville. +2000-10-13,38.2541667,-85.7594444,Louisville,KY,triangle,600,My encounter with a UFO was very horrifying at the time, but now it I realize how truly amazing the experience was. +2000-10-13,32.4058333,-99.4933333,Clyde,TX,cylinder,60,The Book of Yahweh +2000-10-13,36.0227778,-95.9680556,Jenks,OK,fireball,30,A fireball with a bright glowing tail. +2000-10-13,41.0780556,-76.4147222,Orangeville,PA,unknown,600,Brilliant shimmering gold object sighted 1 hr after sunset +2000-10-13,35.2219444,-101.8308333,Amarillo,TX,light,120,it blew up and shattered into several different parts had jet stream behind it and was bright blue and white and traveled as far as i c +2000-10-13,32.3938889,-99.3938889,Baird,TX,fireball,60,I am a 34 year old attorney with two children. My wife and I were traveling from Dallas to Abilene, heading West on Interstate 20. It +2000-10-13,35.4119444,-99.4038889,Elk City,OK,fireball,600,Fireball's over Elk City +2000-10-13,44.0522222,-123.0855556,Eugene (West Of),OR,light,300,Lights over the Oregon Coastal Mountains. +2000-10-13,25.7738889,-80.1938889,Miami,FL,chevron,8,Hazy, chevron or crescent shaped object moving rapidly and silently North to South. +2000-10-13,40.6547222,-76.1011111,Orwigsburg,PA,fireball,5,while at a Blue Mt. footbal game i witnessed 2 yellowish orange lights moving upward very quickly, one that zigzagged upwards/high spee +2000-10-13,45.5236111,-122.675,Portland,OR,light,3,4 white lights initially stationary suddenly merged into one light and then when out. +2001-10-13,41.7002778,-73.9213889,Poughkeepsie,NY,triangle,2700,Triangel in the sky +2001-10-13,33.4355556,-112.3488889,Avondale,AZ,triangle,120,triangle craft flew low overhead it made no sound 3 orange lights +2001-10-13,44.98,-93.2636111,Minneapolis,MN,light,10,Very bright star disappearing quickly (10sec) +2001-10-13,37.9577778,-121.2897222,Stockton,CA,triangle,120,triangle stealth like object. +2002-10-13,38.9277778,-86.3755556,Heltonville,IN,light,1800,Pillars of light seen in heltonville Indiana +2002-10-13,30.4097222,-86.6630556,Mary Esther,FL,triangle,1200,A Flying triangle with lights that looked like a planet from far away. +2002-10-13,41.85,-87.65,Chicago,IL,fireball,10,fireball in Chgo. western skies +2002-10-13,37.7652778,-122.2405556,Alameda,CA,cylinder,240,At time stated my friend was leaving the apartment and noticed a strange scene in the sky, An object, very small moving across the sky +2002-10-13,35.5083333,-78.3397222,Smithfield,NC,disk,2100,I SAW 2 DISK SHAPED OBJECTS OUTSIDE MY WINDOW. +2002-10-13,32.1975,-83.1777778,Eastman,GA,light,600,An object seen by my entire family that was so unusual that it would be hard to even assume it was a case of mistaken identity. +2002-10-13,48.1183333,-123.4294444,Port Angeles,WA,changing,180,what caught my attention of the evening of 13 oct 2002, at approx. 9:00pm was am occurrance that I have recorded. The object was trave +2002-10-13,39.6427778,-74.1808333,Ship Bottom,NJ,triangle,60,Small, black triangle shaped object flying silently and slowly overhead olong NJ beach. +2003-10-13,26.3180556,-80.1,Deerfield Beach,FL,cigar,900,Flashing red,blue & white lights, hovering over deerfield beach in florida +2003-10-13,37.9747222,-87.5558333,Evansville,IN,light,600,confirm coast to coast caller Sullivan Indiana +2003-10-13,40.5152778,-107.5458333,Craig,CO,triangle,1020,it was sitting in the sky like it diddent care that i was watching +2003-10-13,42.8713889,-112.4447222,Pocatello,ID,oval,10,disc shape or deffinitly oval shape. +2003-10-13,38.4119444,-121.2711111,Wilton,CA,disk,1800,In a clear sky at approximatley 6:30 pm on 10/13, I and my daughters observed a white shaped dics object in front of the setting sun mo +2003-10-13,33.4483333,-112.0733333,Phoenix,AZ,sphere,10,Please tell me that its no big deal because my nine year old son is scared stiff after seeing this! +2003-10-13,42.0986111,-75.9183333,Binghamton,NY,sphere,30,Sphere heads north, turns, and then goes up! +2003-10-13,40.2338889,-111.6577778,Provo,UT,light,900,Large Orange light gave us chills +2003-10-13,39.7391667,-104.9841667,Denver,CO,chevron,45,V formation of white lights move with no sound +2003-10-13,39.4808333,-84.4577778,Trenton,OH,other,180,Strange "Passenger Jets" +2003-10-13,41.2380556,-85.8530556,Warsaw,IN,other,180,Occurred : 10/13/2003 21:30 (Entered as : 10/13/2003 21:30) Reported: 10/14/2003 12:43:11 AM 00:43 Posted: 10/15/2003 Location: Trenton +2003-10-13,41.5580556,-73.0519444,Waterbury,CT,disk,10,We saw something I can't explain..... +2003-10-13,29.7630556,-95.3630556,Houston,TX,light,600,Objects that zip in and out +2003-10-13,39.9402778,-82.0133333,Zanesville,OH,rectangle,180,Very large object w/ white and blue flashing lights.. +2004-10-13,24.6652778,-81.4425,Summerland Key,FL,cigar,20,Gree Cigar moving ir odd direction +2004-10-13,29.3011111,-94.7975,Galveston,TX,light,1800,Starting on October 10, 2004, I have seen an obj. in the sky twice. ((NUFORC Note: We suspect Venus may be one of the objects. PD)) +2004-10-13,41.3080556,-72.9286111,New Haven,CT,unknown,540,strange light in the AM sky New Haven, CT +2004-10-13,41.6269444,-79.6738889,Titusville,PA,oval,600,It was silver, it had no windows, it made no noise and glided accross the sky above me before.... +2004-10-13,45.4611111,-123.9666667,Oceanside,OR,disk,120,It look's like many pictures I have seen of so called flying saucer's Like bright metal in the sun. the sun was below the horizon. +2004-10-13,34.5861111,-94.2394444,Mena,AR,light,60,More sightings of Pop/Traveling Stars in Mena, Akansas's night skies +2004-10-13,42.5630556,-114.46,Twin Falls,ID,light,60,two orange lights moving in a straight line with each other disapeard +2004-10-13,39.2666667,-81.5616667,Parkersburg,WV,circle,10,the object gave off a light that illuminated the entire sky then disapated completely. +2004-10-13,32.7630556,-80.2502778,Ravenel,SC,chevron,10,Two pale grey luminescent chevrons moving silently and at high speed, making several sharp zig-zags. +2004-10-13,40.9113889,-73.7827778,New Rochelle,NY,rectangle,300,Very loud humming noise that seemed to move slow, rectagular shape with rounded corners. 10/13/04 - 11:50pm +2004-10-14,34.2738889,-92.0908333,White Hall,AR,triangle,300,ufo spoted near chemical weapons disposal base . +2005-10-13,36.1880556,-94.5402778,Siloam Springs,AR,circle,180,Saw 3 round lights appearing to be surround in fog, 2 following each other, one to the east..heading north, one wen NNE. +2005-10-13,26.9338889,-80.0944444,Jupiter,FL,light,10,Single small white light +2005-10-13,43.6136111,-116.2025,Boise,ID,chevron,4,Fast and middle-low flying Boomerang with 3 lights and no sound ! +2005-10-13,42.5630556,-114.46,Twin Falls,ID,disk,120,Glowing craft in the day time. +2005-10-13,36.1880556,-96.49,Terlton,OK,cylinder,120,Barrel shaped white craft with orange stripes on either end..silent, with no windows, doors, lights, or wings +2005-10-13,36.1880556,-96.49,Terlton,OK,cylinder,120,This object looked like a barrel and made no sound but moved in a straight line at an incredible speed. +2005-10-13,33.4222222,-111.8219444,Mesa,AZ,light,90,The Lights over Mesa Return - See Video Footage. ((NUFORC Note: Possible flares near Gila Bend Firing Range. PD)) +2005-10-13,25.7738889,-80.1938889,Miami,FL,other,120,A boomerang shaped craft moving north to south, stopped, circled, and continued south movement. +2005-10-13,32.4797222,-86.3619444,Millbrook,AL,changing,7200,((NUFORC Note: Probable twinkling star? PD)) Sky was clear with stars. +2005-10-13,37.6819444,-121.7669444,Livermore,CA,light,120,Strange light in the sky over Livermore CA. +2005-10-13,44.4583333,-93.1613889,Northfield,MN,chevron,1800,Chevron shaped, low flying, one side shorter than the other, scilent, seen at 21:00, circling. +2005-10-13,37.6688889,-122.0797222,Hayward,CA,rectangle,15,low altitude flourescent light +2005-10-13,33.1136111,-94.1641667,Atlanta,TX,other,15,"Boomerang" shape over Atlanta, Tx -October 2005 +2006-10-13,26.2125,-80.25,Tamarac,FL,cylinder,35,I was in north university st is amayor st in fl , i couldn't believe my eyes as i was waiting for the red ligth to turn green, notice +2006-10-13,44.7966667,-68.7619444,Brewer,ME,light,240,fast moving aircraft aproaching a strange light. +2006-10-13,34.7083333,-120.4666667,Vandenberg Village,CA,disk,60,Platinum color saucer weaving through fog/mist in hills by ocean object vanished into small white spark as soon as I pointed it out +2006-10-13,45.9975,-121.5269444,Trout Lake,WA,unknown,300,Craft landing on Mt. Adams +2006-10-13,32.7677778,-117.0222222,La Mesa,CA,light,600,Streaking lights over San Diego. ((NUFORC Note: Possibly a laser-based advertising light??? PD)) +2006-10-13,39.9522222,-75.1641667,Philadelphia,PA,oval,1800,brilliant red oval object viewed from Port richmond Philadelphia +2006-10-13,41.7911111,-107.2380556,Rawlins,WY,triangle,30,I was sitting in my hot tub looking at the sky when I noticed this triangular shaped object in the sky. It was so weird. I watched it c +2006-10-13,30.0858333,-94.1016667,Beaumont,TX,triangle,20,"Black Triangle" UFO with 3 White Lights on Each Point Seen in Beaumont, TX +2006-10-13,41.2586111,-95.9375,Omaha,NE,light,25,Group of very dim lites-moving North to South NO shape was defined!!! +2006-10-13,38.9791667,-94.9683333,De Soto,KS,triangle,10,Iridescent/transparant /triangle shaped UFO witnesses by 8 people on Thursday, 10/13/06 at 22:00 hours. +2007-10-13,30.5402778,-88.6875,Vancleave,MS,unknown,10800,Brilliant object that changed colors, Green, Red, Blue and Yellow. 10/13/2007 +2007-10-13,29.7855556,-95.8241667,Katy,TX,triangle,5,Black triangle flying low and slow +2007-10-13,36.0397222,-114.9811111,Henderson,NV,changing,90,UFOs over henderson, nv +2007-10-13,38.8461111,-77.3066667,Fairfax,VA,sphere,600,Spherical object traveling eastward then northward from Dulles Airport, paralleling Route 50 in Fairfax VA. +2007-10-13,42.1947222,-122.7083333,Ashland,OR,light,600,very bright greenish blue light the size of a large star moving slowly NW to SE and back again gaining altitude for 1/2 hour at 3:30 +2007-10-13,34.0522222,-118.2427778,Los Angeles,CA,cigar,15,cigar shaped object hovers next to Los Angeles Fwy, vanishes in plain daylight +2007-10-13,48.051944399999996,-122.1758333,Marysville,WA,cigar,900,Still really cannot pin point exactly what the objects were. It gave me an real weird feeling the way the moved. +2007-10-13,35.5847222,-80.8102778,Mooresville,NC,light,300,Three large, round, bright orange lights coming together in the form of a rotating triangle +2007-10-13,46.2113889,-119.1361111,Kennewick,WA,cylinder,300,cylinder objects, glowing moon size lights, hundreds of tiny lights bouncing around house +2007-10-13,47.6063889,-122.3308333,Seattle,WA,unknown,7200,Distant dancing light in the sky southeast of Seattle for prolonged time +2007-10-14,44.9747222,-92.7566667,Hudson,WI,sphere,180,6 Balls of Light Swooping Behind Chem-Clouds 9:30 p.m. CST +2008-10-13,38.4405556,-122.7133333,Santa Rosa,CA,light,10,I was standing outside early in the morning looking at the stars and i noticed what appeared to me as one of the stars started to mve i +2008-10-13,42.8125,-70.8777778,Newburyport,MA,light,300,WS OUT FOR RUN AT 6 SAW SMALL BRIGHT LIGHTS HIGH UP OVER CONSTRUCTION SITE THOUGHT THEY MUST HAVE BEEN ON TOP OF CRANE. NO CRANE THERE +2008-10-13,36.8252778,-119.7019444,Clovis,CA,other,3000,Thousands of transparent, faintly illuminated objects flying over Clovis, CA 10/13/08 9:20 pm +2008-10-13,37.775,-122.4183333,San Francisco,CA,circle,900,What caught my attention was how close they were together. I thought it was vapor trials from two planes that was going to land at sfo +2008-10-13,46.6022222,-120.5047222,Yakima,WA,unknown,120,strange looking metalic objects above yakima wa, spinning, then split up into different directions. big lower foating object vanished +2009-10-13,39.7763889,-74.8627778,Jackson,NJ,light,10,soccer ball sized light moving throughout the trees and then headed at us before turning and disappearing +2009-10-13,44.0583333,-121.3141667,Bend,OR,light,180,viewed for 3 minutes a pulsating circular object which moved very slowly above some trees +2009-10-13,33.8730556,-78.6144444,Little River,SC,light,9000,our siting relates to many of the other summarys +2009-10-13,37.9577778,-121.2897222,Stockton,CA,light,10,UFO DANCING IN THE SKY +2009-10-13,40.6905556,-76.2625,Minersville,PA,sphere,300,2 large, bright Orange/Amber lights in the sky +2009-10-13,47.7741667,-96.6077778,Crookston,MN,triangle,180,Saw it over high-tension lines for a few min then flew off to the west. +2010-10-13,38.2544444,-104.6086111,Pueblo,CO,flash,5,Red flash of light in the sky +2010-10-13,29.5375,-95.1180556,Webster,TX,cross,120,Blinking white light and red. +2010-10-13,43.1547222,-77.6158333,Rochester,NY,light,3600,Orange light seen hovering and moving over Rochester +2010-10-13,36.175,-115.1363889,Las Vegas,NV,circle,600,Sighting of 3 UFO's in the Las Vegas region in triangle formation that moved to a straight line. +2010-10-13,41.7858333,-88.1472222,Naperville,IL,cylinder,900,Vertical cigar shaped object in western horizon sited, then disappears... +2010-10-13,37.9358333,-122.3466667,Richmond,CA,sphere,600,Bright yellow and white glowing sphere motionless for 7-10 minutes, changes shape, disapears +2010-10-13,38.6688889,-88.4855556,Flora,IL,cross,90,Strange gray object spotted in my small town +2010-10-13,38.8858333,-94.5327778,Grandview,MO,chevron,10,V-shaped UFO with 5 glowing lights underneath was seen flying low and slow, without much sound. +2010-10-13,38.8858333,-94.5327778,Grandview,MO,chevron,10,Black V-shaped UFO with 5 orange lights. +2010-10-13,39.1619444,-84.4569444,Cincinnati,OH,unknown,300,On 10/13/10, while driving, I saw an unusual nonblinking, stationary light over Cincinnati. +2010-10-13,38.8916667,-121.2919444,Lincoln,CA,flash,3600,Flashing light circles over Lincoln CA for at least an hour. +2010-10-13,33.3527778,-111.7883333,Gilbert,AZ,circle,60,An alternating red and blue lighted object, bobbling rapidly and erratically in the sky and then descending in a controlled fashion. +2010-10-13,38.0194444,-122.1330556,Martinez,CA,other,8,Faintly glowing wedge-shaped craft flies swiftly and silently over San Francisco East Bay town. +2010-10-13,37.5944444,-121.8875,Sunol,CA,other,12,Star that stops, slows, stops,slows,then drops out of sight. +2010-10-13,38.8858333,-94.5327778,Grandview,MO,chevron,60,V-Shaped aircraft moving slow and low. 5 glowing lights underneath. No cockpit, or fusilage +2010-10-13,32.7763889,-79.9311111,Charleston,SC,triangle,300,I saw three fire orange oval shaped lights flying in triangle shape formation. +2010-10-13,35.2269444,-80.8433333,Charlotte,NC,light,600,5 pulsating lights above Charlotte, NC +2010-10-13,37.775,-122.4183333,San Francisco,CA,light,240,Multiple lights over Ocean Beach +2010-10-13,37.775,-122.4183333,San Francisco,CA,sphere,1200,coming down 24th st looking northwest across the goldengate.orbs in slightly curved line on the westside of the goldengate at approxima +2010-10-13,33.1030556,-96.6702778,Allen,TX,unknown,10,Shadow object...Black then (glow) speeding across night sky. +2010-10-13,38.6911111,-121.4475,Rio Linda,CA,cylinder,2,I saw the cylinder shaped looked like a spaceship hovring above the east side of the Air Force base. Saw it for about 30 seconds and ra +2010-10-13,41.4569444,-122.8936111,Etna,CA,flash,1500,UFO Rotating Red Green Yellow Lights +2010-10-13,36.175,-115.1363889,Las Vegas,NV,changing,15,Shapeshifting object seen over Las Vegas drive-in movie theater. ((NUFORC Note: Possibly migratory birds?? PD)) +2011-10-13,35.2225,-97.4391667,Norman,OK,oval,120,Yellowish center middle orange with a outter red glow sphere +2011-10-13,40.7355556,-74.1727778,Newark,NJ,light,10,Sighting of colorful lights in the morning sky +2011-10-13,39.4452778,-83.8286111,Wilmington,OH,unknown,4,Long black flying shape for 3 to 4 seconds! +2011-10-13,39.0236111,-94.6933333,Merriam,KS,triangle,15,Triangular, almost hovering but very slow movement, 5 bright lights, no sound +2011-10-13,35.0463889,-81.9819444,Boiling Springs,SC,triangle,300,Triangle formed lights in sky. +2011-10-13,35.0463889,-81.9819444,Boiling Springs,SC,formation,300,Two vertical lines of 3 lights apiece, hovering. +2011-10-13,33.8158333,-78.6802778,North Myrtle Beach,SC,unknown,60,Three yellow orange spheres of light in triangle formation see over the ocean in the night sky at North Myrtle Beach. +2011-10-13,35.3519444,-75.5108333,Avon,NC,fireball,900,31 orange balls of light coming out of ocean,silent +2011-10-13,34.7016667,-86.3758333,Gurley,AL,diamond,480,Super bright star shaped light, desending straight down in slow desent as seen from Gurley, Al +2011-10-13,33.6058333,-78.9733333,Surfside Beach,SC,light,1800,Amber lights over South Carolina coast +2011-10-13,33.6888889,-78.8869444,Myrtle Beach,SC,circle,15,4 orange circle lights appear and disappear +2011-10-13,25.4683333,-80.4777778,Homestead,FL,sphere,1800,Bright white sphere coming out of unusual single storm cloud. +2012-10-13,39.5358333,-76.3486111,Bel Air,MD,light,8,Bright white orb traveling fast over Bel Air +2012-10-13,35.7913889,-78.7813889,Cary,NC,fireball,4,Prior to this event, there was about 25-60 seconds of a very low vibrating hum that was almost piercing because it hit so many decibels +2012-10-13,40.7608333,-111.8902778,Salt Lake City,UT,other,120,It was a blue light in the sky, i was driving home after i drop a friend off in rose park, than i realize that there was a blue light +2012-10-13,40.2430556,-79.2377778,Ligonier,PA,other,1200,Puslating Lights, Yellow, Red, Yellow-Object was completely silent +2012-10-13,34.22,-85.6077778,Cedar Bluff,AL,circle,240,Bright star like ufo. +2012-10-13,39.2402778,-76.8397222,Columbia,MD,triangle,600,Driving down Broken Land Parkway heading south, my fiancée, his cousin who was visiting from out of town and I noticed a formation of a +2012-10-13,39.7391667,-104.9841667,Denver,CO,other,900,Unidentified box looking object flying across Denver Metropolitan area under intelligent control. +2012-10-13,44.489444399999996,-68.8575,Stockton Springs,ME,sphere,3,Bright glowing sphere moving across sky at extreme speed. +2012-10-13,38.2544444,-104.6086111,Pueblo,CO,oval,5,Greenish bluish object sphere that flashed in the dusk sky and then descended to the Arkansas River Bottom +2012-10-13,36.4072222,-105.5725,Taos,NM,rectangle,10,Parallelogram shaped bright, white light low on the horizon, flashed twice. +2012-10-13,40.5675,-89.6405556,Pekin,IL,triangle,120,EIGHT ORANGE AND RED LIGHTS OVER PEKIN, IL. +2012-10-13,41.2222222,-73.0569444,Milford,CT,oval,900,Cluster of red/orange objects ascending into sky +2012-10-13,42.2041667,-72.6166667,Holyoke,MA,oval,1500,There was a faint dull silver green luminous oval object flying in a clockwise rotation,spanning over the river and neighboring houses. +2012-10-13,41.6736111,-88.0016667,Lemont,IL,oval,2400,MULTIPAL YELLOW-ORANGE LIGHTS RISING IN NORTHERN SKY THEN DRIFTING EAST +2012-10-13,41.2222222,-73.0569444,Milford,CT,circle,540,9 Orange Circles (Fireballs) seen traveling one group of 5 then 4 moving one at a time in same path +2012-10-13,41.2222222,-73.0569444,Milford,CT,light,900,Approx 30 lights in formation over Milford ct multiple parachutters at approx 8:30p. +2012-10-13,41.7205556,-87.7016667,Evergreen Park,IL,oval,300,Several bright copper-colored lights moving across the sky. +2012-10-13,41.595,-72.6458333,Cromwell,CT,cylinder,360,Nine objects, fireball when viewed by the eye, cylinderical when viewed through a camera, flew in a straight line +2012-10-13,41.5580556,-73.0519444,Waterbury,CT,fireball,300,Orange lights +2012-10-13,40.0088889,-77.1158333,York Springs,PA,oval,300,Saw 4 oval shape objects with orange/red lights. +2012-10-13,30.4505556,-91.1544444,Baton Rouge,LA,triangle,60,There were two triangles, each formed by three balls of fire/light. The balls appeared, dissapeared, reappeared and so on as the two tr +2012-10-13,39.9338889,-74.8913889,Mount Laurel,NJ,fireball,60,At approximately 9:45pm EDT tonight, I was driving home from work and spotted two orange light in the sky over Cemetary Road, Mt. Laure +2012-10-13,32.7866667,-79.795,Isle Of Palms,SC,circle,180,12 Redish flying objects over Isle of Palms +2012-10-13,45.3575,-122.6055556,Oregon City,OR,unknown,900,I was out taking my dog to go "potty" when I looked up at an object emitting a solid orange-ish light-travelling south to nor +2012-10-13,36.3352778,-92.385,Mountain Home,AR,light,900,Very bright red, green, white lights traveling south in an erratic manner directly over Hicks Creek +2012-10-13,35.1083333,-77.0444444,New Bern,NC,circle,120,2 red, silent, flying orbs +2012-10-14,41.2616667,-75.8972222,Kingston,PA,light,300,There were orange lights in the sky. The ones in the front formed a triangle v formation and there were several bright orange lights/ +2013-10-13,44.8408333,-93.2980556,Bloomington,MN,sphere,120,Several blue and white orbs hovering just south of the airport. +2013-10-13,40.7608333,-111.8902778,Salt Lake City,UT,unknown,5,Bright flash in the sky followed by a distant explosion about 3 seconds later. It was not lightning. It was not a stormy night and ther +2013-10-13,33.0011111,-97.4841667,Newark,TX,circle,10800,Craft was low above trees circling lookin for something to pick up spraying white powder. +2013-10-13,41.2619444,-95.8608333,Council Bluffs,IA,formation,480,3 bright white amber lights forming a perfect triangle and moving into an arch without a vapor trail. +2013-10-13,41.2619444,-95.8608333,Council Bluffs,IA,light,480,Three white orange lights in the Western sky that formed a triangle then moved into a line before disappearing. +2013-10-13,43.2133333,-77.58,Irondequoit,NY,fireball,600,Fireball like objects floating in the sky.....same path. +2013-10-13,40.7705556,-74.2330556,Orange,NJ,light,1800,Bright white light (occasionally diming and becoming fully bright again) displaying odd movements over the SW skies of Orange, NJ +2013-10-13,41.6827778,-88.3513889,Oswego,IL,circle,600,4 bright orbs in loose triangle over Oswego, IL, planets or hovering craft? +2013-10-13,40.2141667,-77.0088889,Mechanicsburg,PA,fireball,180,Ball of flames moving slowly across the night sky and witnessed by 4 people. +2013-10-13,39.1072222,-76.5713889,Pasadena,MD,circle,60,Orange object with white streaks observed near BWI airport. +2013-10-13,28.5555556,-82.4505556,Spring Hill,FL,diamond,300,Five reddish objects in the sky moved from north to southest before going out of sight. +2013-10-13,47.6588889,-117.425,Spokane,WA,flash,900,I was on the phone in my front yard when I looked up in the sky and saw strobe lights on a craft for approx 10 sec and stopped then the +2013-10-13,26.7052778,-80.0366667,West Palm Beach,FL,light,25,Flashing stationery light streaks off. +2013-10-13,28.8002778,-81.2733333,Sanford,FL,unknown,900,5 orange glowing objects in sky moving faster than commercial jets +2013-10-13,28.6647222,-82.1130556,Bushnell,FL,sphere,2700,Sphere shaped object, 5x brighter than a planet, stationery for 45 min and then it was gone. ((NUFORC Note: Venus?? PD)) +2013-10-13,40.3347222,-83.4658333,Raymond,OH,unknown,600,UFO, all sorts of colored lights +2013-10-13,39.7683333,-86.1580556,Indianapolis,IN,circle,1200,Multiple round shapes moving slowly accross the sky, west of Raceway road we watched as multiple abjects cross the sky with no distint +2013-10-13,42.3608333,-85.8794444,Gobles,MI,unknown,180,Bright light that stayed put then streaked away suddenly +2013-10-13,47.6447222,-122.6936111,Silverdale,WA,light,2640,Orange orbs, lights in the night sky +2013-10-13,42.3683333,-83.3527778,Livonia,MI,triangle,55,On 10/13/2013 at approximately 9:15 pm I saw a black V-Shaped flying object with four rectangle white lights on each side. The size of +2013-10-13,40.2430556,-79.2377778,Ligonier,PA,light,180,Orange light disappeared after being flashed by laser +2013-10-13,34.9577778,-90.1516667,Walls,MS,light,240,While camping out on the 13th of oct anround 9:00 to 11:00 pm saw a light travling North to South. the object stayed in view for a peri +2013-10-13,39.9555556,-86.0138889,Fishers,IN,changing,60,One light appeared in the NW traveling and changed into one object as it traveled SE +2013-10-13,40.7141667,-74.0063889,New York City (Brooklyn),NY,sphere,420,Glowing lights above Brooklyn. +2013-10-13,42.4775,-83.0277778,Warren,MI,sphere,3,Very fast moving bright star-like light moving from @ 25-30 degrees to the western horizon then abruptly disappearing. Not meteor. +2013-10-13,43.1811111,-95.8558333,Sheldon,IA,circle,300,Ashton, Iowa sighting. +1974-10-14,38.8466667,-91.9477778,Fulton,MO,diamond,60,I saw a golden orange diamond shaped object traveling south in the sky in mid october 1974 near Fulton MO +1978-10-14,33.7488889,-84.3880556,Atlanta,GA,disk,900,A saucer shaped ship was seen from about 50 yards away. It hovered. +1986-10-14,37.3394444,-121.8938889,San Jose,CA,light,120,Red, green and gold light amazes multiple witnesses over Santa Clara Valley +1990-10-14,32.0866667,-82.1180556,Reidsville,GA,oval,240,The craft was oval shaped, with lights rotating in the middle of it and a green alien with bulging black eyes. +1994-10-14,36.323055600000004,-86.7133333,Goodlettsville,TN,changing,120,I saw what looked like a large orange fireball hovering, it then shrunk to the size and color of a star. +1994-10-14,29.4116667,-82.11,Citra,FL,sphere,120,We saw a perfect Spherical ball of light in the sky that wasn't the moon. +1994-10-14,35.3613889,-86.8397222,Cornersville,TN,circle,1200,Bright, round, white light flies over Coleman RD at night. 4 people saw that I know of. It was moving slow. +1995-10-14,43.0755556,-85.6091667,Belmont,MI,triangle,1800,One large triangle craft, 20 small red, clear, and green lighted craft +1996-10-14,29.6513889,-82.325,Gainesville,FL,circle,1800,My sister and I both had a dream that a ufo was coming to Gainesville. They showed us around the ship,and the greys told us that they +1997-10-14,43.0480556,-76.1477778,Syracuse (North),NY,unknown,30,4 Military planes fly past flying rod, and information blackout still ocurring. +1998-10-14,45.0244444,-123.9452778,Otis,OR,other,3,From WSW to ENE, crescent shaped object,blue,white in color. Slower than normal meteor speed. +1998-10-14,36.5433333,-114.4461111,Overton,NV,fireball,10,Approx. 7:55PM on 10/14/98 while travelling North-bound from Overton, NV. I witnessed what appeared to be a "falling star" directly Nor +1998-10-14,32.2216667,-110.9258333,Tucson,AZ,oval,120,At approx. 10:00 Pm, we were sitting on the porch off an upstairs bedroom facing the eastern sky. I was standing looking at the stars +1999-10-14,34.54,-112.4677778,Prescott,AZ,light,2700,Orange lights +1999-10-14,40.9311111,-73.8991667,Yonkers,NY,light,300,I was watching a star like object moving very slowly +1999-10-14,31.7586111,-106.4863889,El Paso,TX,triangle,1200,I WENT TO THE BACK YARD WITH THE DOG AND LOOKED AT THE MOON AS I WAS COMING BACK TOWARD THE HOUSE. THE MOON WAS IN THE SSW OF THE SKY A +1999-10-14,47.7675,-117.3538889,Mead (Near Spokane),WA,light,3,I just let my dog out and look up and saw a blue light. I assume it was a shooting star however: It seemed to low and slow. I was looki +1999-10-14,36.4605556,-81.5191667,Warrensville,NC,circle,1350,husband saw a colored flash of light that stoped in the sky.we looked out and saw 1 just latter it returned with 2 others which changed +1999-10-14,36.1658333,-86.7844444,Nashville,TN,light,660,I saw a light flash like a plane out in my back yard but it didn't flash again so it caught my attention. Then it flashed again (white) +1999-10-14,43.0361111,-71.1838889,Raymond,NH,triangle,900,ITMOVED VERY SLOW,FLASHED BRIGHT PINK LIGHT,AND NO NOISE. +2000-10-14,36.6777778,-121.6544444,Salinas,CA,unknown,120,Object with huge light and middle of the light pink smoke +2000-10-14,33.1191667,-117.0855556,Escondido,CA,unknown,2700,Object over North San Diego County with flashing colored lights for ove an hour. +2000-10-14,39.9991667,-78.2388889,Breezewood,PA,cigar,120,Chemtrails produce UFO +2000-10-14,37.6086111,-77.3736111,Mechanicsville,VA,circle,15,While lying on my back waiting for the oil to drain out of my car I spotted a small white/silver circular object traveling at a high ra +2000-10-14,27.3361111,-82.5308333,Sarasota,FL,unknown,180,Small black object following airliner within its contrail +2000-10-14,30.2383333,-90.92,Gonzales,LA,rectangle,30,Gigantic ufo near Gonzales, LA +2000-10-14,39.7391667,-104.9841667,Denver,CO,unknown,360,object behind clouds that looked like full moon but was not. moved to always be behind clouds for six minutes +2001-10-14,41.85,-87.65,Chicago (Downtown, On L. Michigan),IL,other,900,Brightly lit, digital-moving flying fish-shaped object with a crest of white-yellow fire emitting from its tail. +2001-10-14,29.3927778,-98.2369444,Adkins,TX,diamond,120,Erratically moving bright object with red and blue aura +2001-10-14,42.0833333,-71.3972222,Franklin,MA,other,180,Flashing light object jets straight into air and continues climb. +2001-10-14,44.9958333,-92.8791667,Lake Elmo,MN,chevron,300,Six lights as bright as staium lights on chevron shaped object hovering over grove of trees.6 +2001-10-14,41.6005556,-93.6088889,Des Moines,IA,light,5,Red ball of light plummits towards ground and dissapears. +2001-10-14,42.0944444,-90.1566667,Savanna,IL,light,300,We were outside. saw a light. joined by another light +2002-10-14,44.7791667,-93.3361111,Savage,MN,triangle,10,Silent delta-shaped object seen in Savage, MN against clear October night sky. +2002-10-14,38.6263889,-112.2163889,Joseph,UT,triangle,2,glowing green triangle passed over my truck, while driving on Interstate 70 in a Utah canyon pass at night. +2002-10-14,39.2475,-114.8877778,Ely,NV,light,1500,A bright white light trailing a luminous con-trail coming from the south, changing color before blinking out, lasting 25 min. +2002-10-14,39.6133333,-105.0161111,Littleton,CO,disk,600,Whatever this was, it was at a high altitude. It did not move or change form while I was watching anyway. It was not a plane. +2002-10-14,45.6175,-121.1783333,Dallesport,WA,light,60,Bright Light With doubble V shaped vapor trail seen over The Dalles Dam. ((Vandenberg rocket launch. PD)) +2002-10-14,34.0522222,-118.2427778,Los Angeles,CA,circle,1200,What I saw was orange and white light radiating from one and only one cloud in the sky and it was not the sun or moon. +2002-10-14,37.7975,-121.215,Manteca,CA,light,300,bright light with white and blue trail ((Vandenberg rocket launch. PD)) +2002-10-14,33.8005556,-118.3891667,Palos Verdes Estates,CA,unknown,180,Powerful light with odd-shaped trails pierced the clouds ((Vandenberg rocket launch. PD)) +2002-10-14,33.4936111,-117.1475,Temecula,CA,circle,2,Bright circular light that left a glowing tail with the object moving straight up and then hanging for moments before disappearing. +2002-10-14,37.9063889,-122.0638889,Walnut Creek,CA,light,300,Bright "searchlight" as the sun set ((Vandenberg rocket launch. PD)) +2002-10-14,34.1458333,-118.8047222,Westlake Village,CA,fireball,1200,Bright white fireball north of Los Angeles with four white streaks, surrounded by huge white vapour cloud part of which was turquoise +2002-10-14,43.9180556,-123.0233333,Creswell,OR,fireball,30,SLOW MOVING COMET LOOKING OBJECT SPOTTED NEAR CRESWELL, OREGON. ((Vandenberg rocket launch. PD)) +2002-10-14,36.0652778,-119.0158333,Porterville,CA,fireball,60,Fireball above Porterville, California. ((Vandenberg rocket launch. PD)) +2002-10-14,39.2655556,-123.2033333,Redwood Valley,CA,fireball,60,High altitude brightly lit fireball with a brightly lit trail which ended in a huge explosion/disintegration, seen in the southern sky. +2002-10-14,39.2191667,-121.06,Grass Valley,CA,fireball,10,Test minuteman or intersepeter rocket ? ((Vandenberg rocket launch. PD)) +2002-10-14,37.1686111,-113.6786111,Ivins,UT,fireball,5,Three fireballs appeared which emitted orange/yellow beams, faded in, then out. +2002-10-14,44.6336111,-121.1283333,Madras,OR,chevron,30,Saw a 2 tailed chevron shaped object, head like a snowball flying over Cascades, possible Vandenberg missile? +2002-10-14,42.3266667,-122.8744444,Medford,OR,light,300,The hovering spotlight simply went out and disappeared completely +2002-10-14,38.1375,-120.4586111,Murphys,CA,changing,60,Meteor like object moving slowly eventually breaking apart leaving a blue streak. ((Vandenberg rocket launch. PD)) +2002-10-14,41.0047222,-121.4372222,Fall River Mills,CA,fireball,120,Comet like light in sky over Northern Calif mountains. ((Vandenberg rocket launch. PD)) +2002-10-14,40.4483333,-122.2966667,Anderson,CA,light,300,almost rocket like, but like nothing I ever saw ((Vandenberg rocket launch. PD)) +2002-10-14,45.8208333,-120.8205556,Goldendale,WA,disk,300,Oct 15 - 7:30 p.m. a disk shaped object with bright triangular shaped jet blast rose from Centerville Valley then disappeared. +2002-10-14,36.175,-115.1363889,Las Vegas,NV,sphere,60,Las Vegas, UFO sighting? ((Vandenberg rocket launch. PD)) +2002-10-14,37.3394444,-121.8938889,San Jose,CA,other,120,I NCOULD HEAR A FAINT HUM OF WHAT SOUNDED LIKE A JET THEN A HELICOPTER FLEW BYEI WENT OUT AND COULD SEE THE VAPOR TRAIL OF THE ROCKET. +2002-10-14,37.3394444,-121.8938889,San Jose,CA,unknown,16,I have video of UFO seen over silicon valley on 10/14/02 ((Vandenberg rocket launchZ PD)) +2002-10-14,39.3897222,-110.8144444,Elmo,UT,circle,600,Large very bright circular light spanding much of the countryside. ((Vandenberg rocket launch. PD)) +2002-10-14,43.7783333,-72.6994444,Gaysville,VT,cone,37800,Multicolor flashing cone object in Vermont +2002-10-14,41.4886111,-75.7088889,Clarks Summit,PA,circle,10,I was driving on Interstate 81 when my 10 y.o. son said"mom what kind of plane is that? I look up and saw an object that looked like a +2003-10-14,46.9422222,-122.6047222,Yelm,WA,oval,900,Oval obj: FLASHING RED N WHITE KEOPPEN RD YELM WA +2003-10-14,41.2752778,-75.8505556,Plains,PA,triangle,60,The object was low and stationary. It appeared to be triangular in shape.It produced a white beam of light. There were red, white , and +2003-10-14,37.725,-122.155,San Leandro,CA,light,10,parrallel lights coming towards me, no sound and then just disappeared +2003-10-14,34.0522222,-118.2427778,Los Angeles,CA,triangle,30,Triangle Formation Over Los Angeles +2003-10-14,28.5380556,-81.3794444,Orlando,FL,formation,15,Three small lights in formation seen at low altitude. no body visible. +2003-10-14,39.7683333,-86.1580556,Indianapolis,IN,oval,1,I was outside and a large brite perfect ball of lite with a mist trail behind zoomed from the sky very fast to ground just one or two b +2003-10-14,39.7683333,-86.1580556,Indianapolis,IN,oval,1,large brite white ball with mist trail falls just half mile east of downtown +2003-10-14,45.8997222,-91.8208333,Trego,WI,unknown,60,Oct 14th񫺓 - about midnight, huge ufo in eastern sky in Trego, Wisconsin +2004-10-14,29.3991667,-95.8375,Needville,TX,light,60,Two big bright lights followed by several smaller lights ((NUFORC Note: We suspect celestial bodies. PD)) +2004-10-14,39.5297222,-119.8127778,Reno,NV,changing,7200,White snake -like plume with objects on either end +2004-10-14,34.54,-112.4677778,Prescott (Southwest Of),AZ,light,7200,Bright orange hued lights that pulsed, faded, disappeared, reappeared. ((NUFORC Note: Possible celestial bodies?? PD)) +2005-10-14,39.9611111,-82.9988889,Columbus,OH,sphere,600,flashing red sphere +2005-10-14,35.2219444,-101.8308333,Amarillo,TX,sphere,420,at 06:40 this morning a saw what i thought was a shooting star. but it then stopped and it lite up bright blue for about a minute. afte +2005-10-14,29.4238889,-98.4933333,San Antonio,TX,other,300,Didn't really look like a craft. Maybe something biomorphic? +2005-10-14,39.6133333,-105.0161111,Littleton,CO,circle,1800,10-14-05 Littleton, Co. 30 minutes 2 objects, one stationary, the second moving high rate of speed to the North-West +2005-10-14,38.9536111,-94.7333333,Lenexa,KS,sphere,300,Watched three spheres with light reflecting off of them creating a silver glint. One was above the other by perhaps 100 feet. The third +2005-10-14,39.0597222,-94.8833333,Bonner Springs,KS,light,300,Two lights of unknown orgin seen 15 miles Southwest of Bonner Springs Kansas. +2005-10-14,46.955,-112.6808333,Lincoln (East Of),MT,egg,1800,egg/circle shaped, red/yellow/white lights - west of Lincoln tonight +2005-10-14,34.955,-107.1841667,Correo,NM,light,900,Bright light emits smaller light +2005-10-14,39.7391667,-104.9841667,Denver,CO,light,300,Strange light in the sky shoot off through the sky after several minutes of hovering. +2005-10-14,34.1647222,-114.3002778,Earp,CA,unknown,120,Four lights over Parker Strip CA/AZ +2005-10-14,46.9222222,-95.0583333,Park Rapids,MN,triangle,1200,((NUFORC Note: Probable sighting of Mars? PD)) floating, moving object in Park Rapids,MN. +2006-10-14,42.8138889,-72.0236111,Jaffrey,NH,fireball,10,Brilliant white and blue fireball over Jaffrey , NH at 1:25am +2006-10-14,41.5580556,-73.0519444,Waterbury,CT,fireball,5,2nd Witness: Large bluegreen fireball fell acrosss the sky in Fairfield Connecticut +2006-10-14,36.615,-82.6125,Yuma,VA,formation,300,((HOAX??)) two aliens appeared from a bright light to peacefully investigate the surroundings in the woods +2006-10-14,41.1411111,-73.2641667,Fairfield,CT,fireball,4,October 14.2006 2:24 Large bluegreen fireball fell acrosss the sky in Fairfield Connecticut +2006-10-14,40.7141667,-74.0063889,New York City (Yonkers),NY,teardrop,120,Radiant White object viewed in sky from Bronx River Parkway in Yonkers +2006-10-14,42.0583333,-70.1791667,Provincetown,MA,circle,180,Bright oval light in western sky at sunset +2006-10-14,32.7152778,-117.1563889,San Diego,CA,fireball,30,I was facing south at approx. 8:15 PM sitting at a stop sign in my car, it was dark.I saw a streak of light and a contrail moving f +2006-10-14,43.2488889,-70.5997222,Ogunquit,ME,light,300,Two bright lights faded over five minutes. +2006-10-14,33.8025,-85.1886111,Buchanan,GA,light,300,Peculiar flashing lights over Buchanan, Georgia! +2006-10-14,28.9166667,-82.4583333,Beverly Hills,FL,changing,600,Went outside for a late cigarette and a lighted object in the sky caught my attention and so I got my camera and took some pictures. +2007-10-14,43.7575,-122.4952778,Westfir,OR,unknown,6,I saw a streak of light in the sky. +2007-10-14,36.175,-115.1363889,Las Vegas,NV,light,600,Star-like light in the daytime sky over Las Vegas. +2007-10-14,21.3069444,-157.8583333,Honolulu,HI,light,10,My family and I were driving home from the North Shore of Oahu where we spent the day on the beach, I had gotten a new digital camera 7 +2007-10-14,33.8491667,-118.3875,Redondo Beach,CA,circle,180,Ufo sigting in redondo beach on a sunday afternoon +2007-10-14,36.8663889,-83.8888889,Barbourville,KY,oval,18000,Very slow moving fromwest to east red,blue,white and green lights. ((NUFORC Note: Possibly Sirius. PD)) +2007-10-14,34.7463889,-92.2894444,Little Rock,AR,changing,15,Green lights above West Little Rock. 500 Lights On Object0: Yes +2007-10-14,33.6305556,-112.3325,Surprise,AZ,other,1.5,Streak in sky changes direction +2007-10-14,40.9827778,-74.9608333,Blairstown,NJ,triangle,300,While on my way to go to bed, I looked out my window and saw a triangle shaped craft. Now it had lights on its 3 ends, which showed the +2008-10-14,34.8986111,-117.0219444,Barstow,CA,other,10,Blue Beam project known seen from the high desert in CA. +2008-10-14,30.2669444,-97.7427778,Austin,TX,sphere,1,black sphere with glowing ring around it. ((NUFORC Note: Student report. PD)) +2008-10-14,41.4730556,-87.0611111,Valparaiso,IN,formation,5,Three brownish-orange craft +2008-10-14,33.7475,-116.9711111,Hemet,CA,formation,600,Three poeple seen 25 to 50 star-like flying objects +2008-10-14,38.8822222,-77.1713889,Falls Church,VA,egg,600,huge changing light in the sky, not there any day afterward +2008-10-14,38.1041667,-122.2555556,Vallejo,CA,sphere,12,Sunning in backyard, small round object, gray and transluscent, incredible speed, 10 to 12 seconds. +2008-10-14,40.0083333,-75.2608333,Narberth,PA,light,20,Meteor like object followed by two black helicopters 15 minutes later on October 14th 2008. +2008-10-14,43.4836111,-75.3369444,Boonville,NY,formation,180,5-6 red globes hovering, then just disappeared +2008-10-14,34.5033333,-82.6502778,Anderson,SC,chevron,75,Chevron shaped UFO seen over I-85 in Anderson, SC. +2008-10-14,38.2541667,-85.7594444,Louisville,KY,disk,120,Fast moving object with flashing red light near Louisville, Kentucky. +2008-10-14,37.7975,-121.215,Manteca,CA,circle,300,~10:35 PM, Central Valley California. 10/14/08 Looking North +2009-10-14,36.7477778,-119.7713889,Fresno,CA,other,60,Fresno sighting +2009-10-14,21.3069444,-157.8583333,Honolulu,HI,circle,300,Unusually bright, very colorful; pulsating light in the sky, +2009-10-14,37.9780556,-122.03,Concord,CA,changing,600,amorphous black object stationary in the sky... 9 witnesses. Daytime sighting... +2009-10-14,43.0619444,-82.6911111,Avoca,MI,formation,240,Seen a 3 light formation blinking in the sky until it slowly moved off and vanished +2009-10-14,43.0480556,-76.1477778,Syracuse,NY,cross,180,UFO over Carousel Center in Syracuse, NY 10/14/2009 +2009-10-14,39.5297222,-119.8127778,Reno,NV,light,20,Brite light seen over reno,nv. This is the 2nd time I have seen this light and it's not a shooting star. +2009-10-14,40.7141667,-74.0063889,New York City,NY,oval,1080,Unknown object Over The Empire State Building +2009-10-14,43.9180556,-123.0233333,Creswell,OR,fireball,45,Light blue colored light moves and zig zags in the sky then disapears in Creswell Oregon. +2010-10-14,33.0888889,-96.8861111,The Colony,TX,light,3,High altitude fast bright light +2010-10-14,38.3697222,-90.3783333,Imperial,MO,formation,1200,cluster of lights in wheel shape with center hub light largest. +2010-10-14,30.4063889,-87.6836111,Foley,AL,cylinder,30,Triangular/Cyinder object with 2 headlights like a car in the sky sitting completely still and had no sound +2010-10-14,43.7094444,-98.0294444,Mitchell,SD,light,120,Dark object with lights around- went west and turned 90 degrees and shot north. +2010-10-14,37.7416667,-121.1233333,Ripon,CA,triangle,480,Object observed over orchard North of Ripon, CA. +2010-10-14,37.6819444,-121.7669444,Livermore,CA,light,90,I observed a bright object in the sky traveling erratically. 90 seconds +2011-10-14,37.8722222,-93.7916667,Blackjack (North St. Louis Co.),MO,light,60,i saw orbs of light in daylight sky and they were moving in a fluid circular motion and appearing and disappearing +2011-10-14,34.9158333,-85.1091667,Ringgold,GA,unknown,1200,Fast moving white light with a smaller red light in the rear very high in the sky. +2011-10-14,28.0338889,-82.6652778,Oldsmar,FL,triangle,1500,Strange aircraft appearing, flying and hoovering in the sky,then zipping away in a flash at great speeds.. +2011-10-14,37.1491667,-94.4427778,Carterville,MO,other,1800,Follow up to a report I just submitted +2011-10-14,37.1491667,-94.4427778,Carterville,MO,other,1800,Strange object seen moving slowly between Carterville and Carthage Missouri +2011-10-14,36.1052778,-77.7130556,Whitakers,NC,triangle,240,triange ufo with red lights +2011-10-14,33.5091667,-111.8983333,Scottsdale,AZ,triangle,240,Objects in the skies of Scottsdale. +2011-10-14,39.595,-75.1705556,Elmer,NJ,triangle,1200,It was hovering for about 10 minutes, then it lifted straight up. Then started flying with green and red flashing lights, in a weird fo +2011-10-14,21.3069444,-157.8583333,Honolulu,HI,triangle,120,Two silver triangular craft performing extreme nautical maneuvers in unison high in the air in a blue cloudless sky. +2011-10-14,26.2708333,-80.2708333,Coral Springs,FL,other,120,"stingray" kind of UFO over Coral Springs, FL. +2011-10-14,34.1083333,-117.2888889,San Bernardino,CA,sphere,60,Sphere moving westward through the San Bernardino Valley at a high rate of speed, then it slowed drastically and hovered. +2011-10-14,31.5544444,-110.3030556,Sierra Vista,AZ,other,600,Daytime transparent U.F.O. with one light on end of craft. +2011-10-14,29.1869444,-82.1402778,Ocala,FL,cylinder,240,Metallic Cylinder seen over North Florida +2011-10-14,31.7586111,-106.4863889,El Paso,TX,circle,37800,Silver orb floating over far westside of El Paso for over an hour +2011-10-14,34.4077778,-111.4927778,Strawberry,AZ,flash,1.5,White flash appears in Geosynchronous orbit lasting for 1.5 seconds. +2011-10-14,31.6038889,-89.1955556,Ellisville,MS,unknown,900,On Oct 14th 2011 at 7:30 PM me and my wife noticed an unusual orange pulsating light in the sky. +2011-10-14,35.2233333,-114.2222222,Golden Valley,AZ,oval,3,I saw a cluster of lights glowing together with a trail, moving south to north, high rate of speed +2011-10-14,35.2233333,-114.2222222,Golden Valley,AZ,oval,4,A cluster of bright lights shot across the sky at high rate of speed +2011-10-14,40.7372222,-114.0366667,Wendover (East Of, On I-80),UT,changing,1020,Black object in sky over lakeside military area in Utah. +2011-10-14,31.8911111,-85.1455556,Eufaula,AL,light,25,A large extremely bright silent white light moved on straight track from due south horizon to north and changed to a red dot then disap +2011-10-14,34.9022222,-110.1575,Holbrook,AZ,other,0.1,This fast moving craft was low flying and not a sound and no lights detail drawings of the underside are avaliable +2011-10-14,33.4147222,-111.9086111,Tempe,AZ,sphere,300,DARK YELLOW ORANGISH BALL +2011-10-14,39.9625,-76.7280556,York,PA,triangle,2,Triangle shape, large round lights entire bottom of craft with a light green haze.It just appeared, and then dropped behind trees. +2011-10-15,34.0447222,-110.4847222,Cibecue (West Of),AZ,light,300,Bright yellow light moving slowly thru skies of eastern arizona +2012-10-14,37.6391667,-120.9958333,Modesto,CA,diamond,120,Bright red Diamond shaped object and fog ball object +2012-10-14,32.7252778,-97.3205556,Fort Worth,TX,circle,60,Me and some friends were in northside in fort worth TX, going home when we seen what look liked 2 fireballs coming down fast, we all +2012-10-14,46.7163889,-122.9530556,Centralia,WA,egg,900,Photo of an orange, egg shaped light, moving in a constant deliberate manner on a south to north course near Centralia, Washington. +2012-10-14,34.1616667,-118.0519444,Sierra Madre,CA,formation,180,Cluster sighting of UFO north of Sierra Madre, CA over the San Gabriel mountains. +2012-10-14,35.7719444,-78.6388889,Raleigh,NC,cylinder,60,A black cylindrical object seen fairly close to an airplane during daytime +2012-10-14,34.4208333,-119.6972222,Santa Barbara,CA,light,900,My girlfriend and I were at the East Beach in Santa Barbara adjacent to Cabrillo Beach House and Grill. We were both lying face-up and +2012-10-14,40.3977778,-105.0744444,Loveland,CO,triangle,30,Classic five lighted triangle shaped UFO sighting +2012-10-14,40.6883333,-75.2211111,Easton,PA,fireball,1800,Fireballs 20-30 minutes reddish orange eastern Pa northampton county two witnesses. +2012-10-14,32.7919444,-115.5622222,El Centro,CA,circle,1800,Strange lights over El Centro, CA that do not move +2012-10-14,37.9444444,-87.4052778,Newburgh,IN,unknown,300,Large orange light Newburgh, IN 10/14/12 +2012-10-14,34.6227778,-97.3961111,Elmore City,OK,unknown,600,Several multi-colored lights seen hovering over Elmore City/Pauls Valley area. Sometimes a white one shows up as well. +2012-10-14,33.685,-117.2722222,Canyon Lake,CA,unknown,600,3 Unknown objects W NW of Canyon Lake, CA +2012-10-14,40.0977778,-74.2180556,Lakewood,NJ,light,180,Bright white light moving fast toward trees +2012-10-14,39.9536111,-74.1983333,Toms River,NJ,circle,10,Bright light coming down at 45 degree angle northeast of Toms River NJ 10/14 @ 9:45 PM +2012-10-14,27.9011111,-81.5861111,Lake Wales,FL,changing,2100,Red whie and blue flashing lights +2012-10-14,27.9011111,-81.5861111,Lake Wales,FL,changing,2100,Discovered what I thought was a UFO was actually the star Sierius. It refracts colors thru our atmosphere while low in the sky then bec +2012-10-14,41.0886111,-74.0138889,Nanuet,NY,light,1.5,I never saw anything like it in my life. It was no shooting star. +2012-10-14,32.7763889,-79.9311111,Charleston,SC,triangle,20,Black triangle, white lights, three, night, clear, many stars, slow, afraid +2013-10-14,39.8397222,-74.1905556,Forked River,NJ,circle,60,Red/gold fireball haze around it stayed same size moving same speed much bigger then any star no meteor for sure. +2013-10-14,35.0844444,-106.6505556,Albuquerque,NM,flash,2700,3 flashing green lights in formatiom of a triangle to big to.be stars +2013-10-14,42.9375,-70.8394444,Hampton,NH,cylinder,60,White cylinder with red light at back. Didn't have wings. Moving silently very fast towards the southwest then disappeared! +2013-10-14,40.3236111,-75.0602778,Buckingham,PA,rectangle,600,Rectangular floating object, 4X the size of a hot air balloon, but at about the same height as hot air balloon travels. Grayish. +2013-10-14,35.2269444,-80.8433333,Charlotte,NC,sphere,240,White object slowed to a stop. Remained motionless about a minute and disappeared. +2013-10-14,42.2194444,-87.9794444,Vernon Hills,IL,cigar,240,Silent tube-like crafts-objects like nothing I have ever seen anywhere! +2013-10-14,45.9933333,-123.9213889,Seaside,OR,light,900,Bright white light in the dusk sky over ocean. +2013-10-14,37.8044444,-122.2697222,Oakland,CA,light,300,Intense, stationary bright light in SF Bay Area sky. +2013-10-14,44.5191667,-88.0197222,Green Bay,WI,light,180,Silent light UFO spotted and rose into the clouds. +2013-10-14,32.5230556,-92.6377778,Ruston,LA,sphere,900,Reddish/orange balls of light over Ruston. +2013-10-14,45.0230556,-85.7597222,Leland,MI,disk,120,9 sphere shaped objects ; orange red in color +2013-10-14,39.54,-74.2572222,Holgate,NJ,circle,300,My self,daughter and son were on the beach fishing.it was cloudy some moonlight some cloud cover,mind you I am not a believer before th +2013-10-14,42.2916667,-85.5872222,Kalamazoo,MI,circle,300,Red circle over Kalamazoo. +2013-10-14,38.9088889,-123.6919444,Point Arena,CA,triangle,900,2 very different incidences a week apart, triangler (tonight), and very bright far away organish glow.(10/9/2013) +2013-10-14,41.2375,-80.8186111,Warren,OH,circle,45,I seen an bright orange round star ship 10 times the size of a bright star for aprox 45 sec and then it blinked out . +1936-10-15,61.4580556,-149.3622222,Eklutna,AK,cigar,180,Two men approached by a cigar-shaped object in the night sky. +1943-10-15,37.7741667,-87.1133333,Owensboro,KY,rectangle,1800,Low-flying silver object seen on a clear day near mid-day. +1949-10-15,39.2902778,-76.6125,Baltimore,MD,cigar,180,It was around 8:PM and I was walking home,it was a full moon but something made me lookup, there was no noise, but an object came in fr +1952-10-15,46.2858333,-119.2833333,Richland,WA,circle,5,Night sighting of seven large luminous UFOs flying in "V" formation +1953-10-15,30.2033333,-93.8661111,Mauriceville,TX,disk,300,My father was a WWW1 Vet. and loved hunting. The year was round 1953.We lived in a town of 300 people in southeast tex. Dad would take +1954-10-15,30.0977778,-98.4211111,Blanco,TX,other,300,We saw a silver football, motionless in the sky; stopped , looked about 3-5 mins. and resumed the trip. +1954-10-15,44.2444444,-86.3241667,Manistee,MI,circle,8,Saucer shaped, moved north to south directly above the street, no sound, moon was to the east +1955-10-15,41.9266667,-73.9130556,Rhinebeck,NY,light,2400,This very distant star-like point of light came very slowly up over the treeline from the Southwest, stopped. +1957-10-15,29.7630556,-95.3630556,Houston (Ellington Afb),TX,light,3,5 to 6" diameter light, extremely fast, silent, made an impossible inside 45 degree turn, and sped away horizontally. +1957-10-15,39.8083333,-104.9333333,Commerce City (N. Of Denver),CO,fireball,600,A lot of methane gas in area +1959-10-15,48.051944399999996,-122.1758333,Marysville,WA,other,75,UFO Over Golf Course +1961-10-15,28.0891667,-80.5658333,Indialantic,FL,oval,120,Unbelievably Close to the Ground Surface. +1962-10-15,41.85,-87.65,Chicago,IL,other,10,SITTING IN AVALON PARK ON A FALL NIGHT AT APP.1030 PM I SAW A METALIC OBJECT TRAVELING FROM E TO W I DIDNT GIVE IT MUCH THOUGHT BUT IT +1964-10-15,39.9611111,-82.9988889,Columbus,OH,cigar,600,Child remembers seeing object over 40 years +1965-10-15,40.9113889,-73.7827778,New Rochelle,NY,sphere,2,knew they came and went all stoped talked to my brain or? ((NUFORC Note: Report from retiree. PD)) +1965-10-15,40.8983333,-95.6711111,Tabor,IA,oval,2700,Craft hovers noiselessly over witnesses in 1965, in Southwest Iowa, is photographed by 2 photographers, photos stolen later. +1966-10-15,26.3583333,-80.0833333,Boca Raton (Military Trail),FL,circle,21600,SAW BRIGHT LITE.DROVE CLOSER,STOPPED WHEN NEXT TO IT.500 YARDS.GOT OUT OF CAR WALKED TOWARD LIGHT.NEXT THING 5 HOURS LATTER +1966-10-15,39.4277778,-86.4283333,Martinsville,IN,disk,60,Craft hovered about 20 feet above barn. Lights in horizontal orientation for about 30 seconds and then darted away. Others saw. +1966-10-15,34.2077778,-117.1083333,Running Springs,CA,disk,1200,Around 7 pm on a tues in oct 1966 on my way home from work while driving up the rim of the world high way or highway 18 from skyfores +1966-10-15,45.1341667,-118.9313889,Ukiah,OR,oval,1200,Orange oval 40 ft in diameter, twenty ft off the ground, appoxumate 100 ft from me. +1966-10-15,43.1008333,-75.2330556,Utica,NY,triangle,180,i and a friend were coming home one cold fall evening outside of Hugh R. Jones Elem. School . There was a triangle of a red, green, whi +1967-10-15,33.5205556,-86.8025,Birmingham,AL,oval,300,description of a spaceship spotted over Birmingham Alabama in 1967. +1967-10-15,34.3675,-77.7108333,Hampstead,NC,disk,300,Hampstead North Carolina disk 1967 +1967-10-15,34.1722222,-118.3780556,North Hollywood,CA,fireball,900,A fireball over the San Fernando Valley in 1967 +1967-10-15,34.4113889,-118.5391667,Saugus,CA,light,180,oct. 1967 late night, I was a high school student living in the boring town of Saugus, California, the nearest town was Newhaul, and th +1968-10-15,44.7433333,-92.8522222,Hastings,MN,triangle,120,Perfect semi circle vapor trail left as soundless UFO makes a turn-around overhead. +1968-10-15,42.2411111,-88.3161111,Crystal Lake,IL,cigar,1800,Cigar shaped vehicle hovering over farm field. +1968-10-15,44.3097222,-89.5136111,Bancroft (Rural Area Near),WI,light,120,Two, non-blinking white lights perform a high speed, 75-degree ascent. +1969-10-15,41.8791667,-73.4772222,Sharon,CT,oval,120,NO NOISE, NO AIR MOVEMENT, NO HEAT,LIGHTS UNDERSIDE, HOVERED, +1969-10-15,32.2744444,-90.1319444,Pearl,MS,cigar,1200,Long overdue report of UFO witnessed at a close range--years ago +1969-10-15,39.7458333,-75.5469444,Wilmington,DE,circle,60,Moon sized object "grew" to fill entire sky, then disappeared +1969-10-15,32.8233333,-97.1702778,Hurst,TX,disk,60,the light that came as i called it +1969-10-15,25.7738889,-80.1938889,Miami,FL,changing,120,OCTOBER 1969 UFO SIGHTING BY ENTIRE FAMILY +1969-10-15,42.9813889,-70.9483333,Exeter (Near),NH,cigar,1800,I was returning from the first Vietnam Moratorium (that is how I fix the date accurately) in Boston with some friends in an old VW bus. +1969-10-15,33.8480556,-109.1425,Alpine,AZ,disk,300,Fall, clear, full visual disc sighting unbelievable air manuevers ,speed , brightness. +1970-10-15,42.3241667,-83.4002778,Westland,MI,unknown,20,Early 1970's, object going around the sun. +1971-10-15,47.5675,-122.6313889,Bremerton,WA,disk,600,I was walking into my home one day at dusk and as i looked up saw these strange objects in the sky. I ran in and got my camera and took +1971-10-15,41.7472222,-73.1891667,Litchfield,CT,circle,360,Mothership over Litchfield CT +1971-10-15,41.5733333,-87.7844444,Tinley Park,IL,disk,900,Saw a disc shaped craft with 3 lights +1971-10-16,30.46,-97.9880556,Lago Vista (Near Austin),TX,formation,1800,went outside & in night sky looking east{est.} saw 15 to 25 objects looked like stars appeared same distance as stars, but brighter tha +1973-10-15,47.6588889,-117.425,Spokane,WA,circle,900,We don't have craft that can fly this fast and make right turns at several thousand miles per hour +1973-10-15,35.0419444,-89.6644444,Collierville,TN,disk,300,Group of about 20 sees UFO on clear day for about 5 minutes in 1973 in SW TENN. +1973-10-15,44.8897222,-73.4363889,Chazy,NY,light,300,Exact location: 44 deg 52' 33.74" North, 73 deg 28' 52.99", thanks to GPS and Google Earth (didn't have either back then). Macadam Road +1973-10-15,35.4244444,-84.4875,Englewood,TN,disk,120,They talked to me as a child. +1973-10-15,29.7630556,-95.3630556,Houston,TX,circle,2700,UFO hovers over Houston TX, fall 1973. +1973-10-15,35.3413889,-89.8972222,Millington,TN,disk,1800,3 Saucer shaped UFO's over Naval Air Station. F-4 Phantom Scrambled. +1974-10-15,35.1494444,-90.0488889,Memphis,TN,cigar,1200,Cigar in Memphis 1974. +1974-10-15,41.1888889,-81.6363889,Bath,OH,oval,2700,Strange animal sounds and what appeared to be a plane crashing before seeing huge craft hovering over tree across from our home. It +1974-10-15,37.775,-122.4183333,San Francisco (South Of),CA,light,180,A pulsing light that ascended at 90 degrees +1974-10-15,37.985,-103.5433333,La Junta,CO,other,20,we saw a glowing green pencil shaped object going from south to north. it moved out from behind one hill only to disappear behind anot +1975-10-15,39.0838889,-77.1530556,Rockville,MD,disk,7200,Floating abduction out of bed into a silver saucer; US military human beings on board, some kind of head surgery performed. +1975-10-15,39.0838889,-77.1530556,Rockville,MD,disk,7200,Abduction middle of night encounter human atired in US Military Uniforms (Airforce) experience some type of Brain Surgery! +1975-10-15,31.1169444,-97.7275,Killeen,TX,changing,240,Odd occurance over Ft. Hood, Texas +1975-10-15,34.3113889,-89.9441667,Batesville,MS,sphere,600,Shiny Silver Sphere seen for about 10 minutes in rural North Mississippi circa 1975 +1975-10-15,30.7741667,-85.2269444,Marianna,FL,disk,300,Flying Disk seen in Fl Panhandle +1975-10-15,38.3483333,-97.0169444,Marion,KS,light,2,We saw a green object zoom across the sky going at least several thousand mile per hour. +1975-10-15,40.8519444,-73.1544444,Nesconset,NY,disk,180,Large quiet craft, moving at a very low altitude, heading east over Suffolk County, New York. +1975-10-15,48.1333333,-103.6333333,Williston,ND,disk,300,Missing Time +1975-10-15,41.3305556,-74.1872222,Monroe,NY,disk,60,Flying saucer lifts off from field without a sound or trace. +1975-10-15,35.5977778,-82.4,Swannanoa,NC,other,900,Mother and children witness dome-shaped object with lights ascending from the ground and hovering overhead +1975-10-15,46.2972222,-109.2580556,Ryegate (South Of),MT,circle,3600,10/15/75. Round shape, extremely bright white light, took off (up) when I told it to "come get me". +1975-10-15,34.2638889,-85.8605556,Collinsville,AL,triangle,900,It was like something out of star wars +1976-10-15,36.4508333,-118.5938889,Mineral King,CA,disk,28800,Two people view UFO in Mineral King National Park , California . Investigation by air traffic controller . +1976-10-15,43.1547222,-77.6158333,Rochester,NY,unknown,10,Flashing red light appeared a foot above my car then sped away at incredible speed. +1976-10-15,47.4625,-92.5397222,Eveleth,MN,light,900,Lights above Eveleth Mn in mid 70's +1976-10-15,45.4169444,-92.0327778,Almena,WI,unknown,14400,Electrical failure of my reliable vehicle and some missing time. +1977-10-15,30.3958333,-88.8852778,Biloxi,MS,triangle,60,Silent black triangular object flying at low level near Kessler AFB. +1977-10-15,28.5380556,-81.3794444,Orlando,FL,disk,60,we were camping in a friends yard fairly dark night as I recall . we saw 5 disk shapes flying in a v formation the had a greenish w +1977-10-15,46.2113889,-119.1361111,Kennewick,WA,light,300,Huge circular orbs of flaming red light flew above the river right in front of me one night while I was camping. +1978-10-15,42.0333333,-87.8833333,Des Plaines,IL,disk,30,Sighting in Illinois +1978-10-15,47.6777778,-116.7794444,Coeur D'alene,ID,oval,10,Object raised vertically from lake and zips off horizontally like a lightning bolt. +1978-10-15,35.4741667,-83.315,Cherokee,NC,light,120,Unknown white orb followed by approxmately 4 known objects +1978-10-15,43.0777778,-71.2772222,Candia,NH,oval,1200,Very large object seen in mid October 1978 +1978-10-16,41.0263889,-73.6288889,Greenwich,CT,circle,900,((HOAX??)) had no control on tv. ash tray killd itself. the obkect was one big light. +1979-10-15,40.8616667,-80.2866667,Ellwood City,PA,unknown,900,What ever it was it knew I was their +1979-10-15,47.4736111,-94.88,Bemidji,MN,unknown,1500,UFO drone watching a football game. +1979-10-15,47.3294444,-122.5788889,Gig Harbor,WA,circle,600,Gig Harbor visitors and subsequent regression +1980-10-15,39.9611111,-82.9988889,Columbus,OH,fireball,900,12-15 white fireballs traveling north to south ashing off as they flew by, the episode lasted 10-15 minutes over rural Columbus, OH. +1980-10-15,34.3580556,-86.2947222,Guntersville,AL,triangle,10,The date and time is not exact. I was the shift supervisor at a chemical plant located on the banks of the Tennessee River. Mountains +1980-10-15,41.8097222,-72.8311111,Avon,CT,disk,60,A huge lit-up craft various colors of lights at tree top level traveling at a very slow speed (10 mph) over our heads . +1980-10-15,30.4866667,-90.9561111,Denham Springs,LA,rectangle,360,Flying object observed +1980-10-15,39.0091667,-123.365,Boonville,CA,sphere,300,digital rendering of sighting linked to 10/1980 "Boonville, Ca. 10/1980: just after dark, two orange glowing spheres, 200 feet from gro +1980-10-15,44.5327778,-67.5988889,Jonesport,ME,oval,300,green gas sorta cloud very slow south to movement started from horison not much to say about it but it was witness at the same time by +1980-10-16,39.0091667,-123.365,Boonville,CA,sphere,300,Boonville, Ca. 10/1980: just after dark, two orange glowing spheres, 200 feet from ground, 15 ft diam., 40 ft apart, 10 mph +1981-10-15,45.4872222,-122.8025,Beaverton,OR,cigar,10,DAYTIME SIGHTING long, black, no features, like a pencil, no sound. no lights. +1981-10-15,37.3394444,-121.8938889,San Jose,CA,disk,420,Town and Country Shopping Center, dic shaped craft at about 20feet above the ground...around 4:30PM on a Sunday. +1982-10-15,34.1866667,-118.4480556,Van Nuys,CA,disk,1200,The space craft was flying at a 45 degree angle, approximatly a mile high, running parallel to Van Nuy Blvd on a clear day. +1982-10-15,30.1894444,-82.6394444,Lake City,FL,unknown,900,Light beamed over top and front of car +1982-10-15,41.9219444,-71.55,Smithfield,RI,circle,60,lights were flashing and I thought to myself "there are no towers here". +1982-10-15,44.7480556,-72.1766667,Barton,VT,rectangle,1200,Observed very large lighted object moving and then hovering above a hay field. +1982-10-15,43.9525,-73.7288889,North Hudson,NY,disk,120,Full View of structure +1982-10-15,37.0297222,-76.3455556,Hampton,VA,chevron,9000,BLACK BOOMERANG SHAPED, LARG E,NO SOUND,NOLIGHTS,TREE TOP LEVEL +1982-10-15,41.2586111,-95.9375,Omaha,NE,disk,120,The saucer was flying high, with no sound and several lights. It passed overhead. +1983-10-16,35.32,-120.0058333,California Valley,CA,disk,600,Sighting, Hynek class CE_II California valley, Oct ྏ +1984-10-15,39.6619444,-75.5666667,New Castle,DE,other,300,Oct 1984 at 8:15 am small translucent half dome shaped object +1984-10-15,39.9369444,-120.9461111,Quincy,CA,unknown,60,Object that was observered in daylight appeared silver color and had no wings and in a few seconds disapeared. +1984-10-15,44.765,-69.7197222,Skowhegan,ME,disk,600,I was working at a church cleaning the parking lot in the evening approx 7 pm. I looked up towards the sky and I could see and object c +1984-10-15,35.0844444,-106.6505556,Albuquerque,NM,disk,2700,Disc close enough to almost touch no sound or air, no feet or legs cloaked until about 6' from it +1984-10-15,37.2683333,-93.1169444,Strafford,MO,circle,600,I was only about 8 or 9 years old. I had spent the weekend w/ my father & step mom when they were getting ready to take me to my moms +1984-10-15,29.2094444,-99.7858333,Uvalde,TX,circle,900,I cant remember very well now but i think it happened on a thursday night...i needed school paper for the folowing day and i told my pa +1984-10-15,33.4597222,-94.4152778,New Boston,TX,egg,3600,Controled flight. Extremely low altitude. Extremely slow speed. NO SOUND! Observed at close distances. +1985-10-15,37.78,-121.9769444,San Ramon,CA,disk,300,In 1985 I saw a silver saucer directly over my house in California. +1985-10-15,41.4994444,-81.6955556,Cleveland (Massilon Rd., Montrose Area),OH,diamond,15,Driving on rural road AM. Cant rember month but there was no leaves on trees. I saw a "kite shaped object" about the size of a two sto +1985-10-15,35.1405556,-85.2327778,Hixson,TN,other,900,My friend and I saw three orange-red circles in a linear fashion in the sky one evening which was not moving nor making any sound. +1985-10-15,40.4511111,-85.37,Hartford City,IN,triangle,600,Triangle crafts over Blackford Co. +1985-10-15,34.2463889,-80.6072222,Camden,SC,disk,600,Saucer shaped the length of a football field +1986-10-15,33.4916667,-80.8558333,Orangeburg,SC,cylinder,10800,Orangeburg, S.C. to Augusta, GA. - fall 1986 - lights following car - multiple witnessess. Radio request for sighters +1986-10-15,44.9430556,-123.0338889,Salem,OR,cigar,1500,Very Close Encounter. +1986-10-15,33.6888889,-86.6833333,Pinson,AL,circle,10,Redish orange , traveling slowly and quietly! +1986-10-15,47.6105556,-122.1994444,Bellevue (Yarrow Point),WA,disk,10,The saucer hovered over us, it was huge, orange and silent. +1986-10-15,35.9605556,-83.9208333,Knoxville,TN,disk,1500,Object traveld along side my car for a mile a close range. +1986-10-15,38.2325,-122.6355556,Petaluma,CA,disk,1800,Saw darting object in the night sky, move fast, stop, move fast stop. Then it flew low over my house and I heard the UFO. +1986-10-15,35.6225,-117.67,Ridgecrest,CA,disk,1200,Saucer shaped UFO, lights, no sound, 20 minute observation +1986-10-15,35.6902778,-118.2197222,Onyx,CA,fireball,4,friend and i were walking home on a dark night. there was a storm building, the cloud were very low. they were touching the mountain to +1987-10-15,35.7719444,-78.6388889,Raleigh,NC,triangle,120,Huge triangle passes over oblivious, sleeping capital +1987-10-15,30.7580556,-98.2280556,Burnet,TX,disk,20,Silver saucer object hovering on hill +1987-10-15,41.6986111,-88.0683333,Bolingbrook,IL,triangle,300,Thin black triangle, moving slowly over field in suburban Chicago. +1987-10-15,33.495,-90.3197222,Itta Bena,MS,circle,300,I saw a UFO one fall night in the shape of a golden circle. +1987-10-15,38.4972222,-94.9502778,Osawatomie,KS,other,7200,Many colorful balls of light over Osawatomie to Canada +1987-10-15,40.9311111,-73.8991667,Yonkers,NY,rectangle,1800,Silent rectangular football field sized object fling at about 1000 feet with 6 groups of lights on bottom and across stern +1987-10-15,40.8883333,-73.8286111,Eastchester,NY,triangle,180,huge dark dimly lit Triangle slowly passes over Platform Tennis Courts in Eastchester NY +1987-10-15,46.3669444,-104.2841667,Baker,MT,light,600,bright light came out from behind a cloud and split off into 6 smaller lights leaving at a high speed +1988-10-15,35.5769444,-92.1772222,Greers Ferry (Greers Ferry Lake),AR,circle,180,Three moon sized objects appeared in the form of lights and lite the intire lake up and I could see a mountain about 10 miles from me,j +1988-10-15,47.5675,-122.6313889,Bremerton,WA,circle,1800,Circular craft approximately 500 feet in diameter clearly seen at approximately 1500 feet altitude. +1988-10-15,47.2530556,-122.4430556,Tacoma,WA,circle,120,Disc follows fighter jets to air base +1988-10-15,37.6211111,-90.6402778,Pilot Knob,MO,cigar,900,I did not actually see this myself, but my mother did. I was 10 years old in 1988 and I remember my mom running in the house saying she +1988-10-15,38.2858333,-91.7202778,Belle,MO,unknown,600,Lights on a huge craft slowly going overhead. (Official explanations unacceptable) +1988-10-15,40.3977778,-105.0744444,Loveland,CO,chevron,300,Boomerang craft, silent, no lights, walking speed +1988-10-15,31.8455556,-102.3672222,Odessa,TX,circle,120,Driving at night on loop saw circular blinking lights. +1988-10-15,32.2502778,-101.4783333,Big Spring,TX,other,300,Looking out at the night sky I caught out of my peripheral vision a streaking pastel green shooting star. +1989-10-15,37.0297222,-76.3455556,Hampton,VA,cigar,300,thrilling & terrifying. +1989-10-15,39.6294444,-79.9561111,Morgantown,WV,triangle,900,I was working as a DJ at WCLG in Morgantown WV. I am sorry I dont know the date and am sorry that I am now reporting a 9 year old sigh +1989-10-15,35.7697222,-91.6408333,Batesville,AR,disk,480,It didn't seem harmful, it was like it was observing. +1989-10-15,41.0019444,-74.3269444,Bloomingdale,NJ,sphere,35,Tennis Ball size blue sphere objects. +1989-10-15,35.1794444,-80.6475,Mint Hill,NC,triangle,180,Triangular UFO with 3 lights on each corner. No Sound. Low Flight Pattern. +1989-10-15,62.1091667,-145.5463889,Glennallen,AK,unknown,3600,10/15/89 Bright fast moving light over valley west of Glennallen, Alaska +1990-10-15,42.1127778,-76.0213889,Endwell,NY,formation,1200,Triangle-shaped formation of 5-6 bright white circular objects that flew slowly from North to South with steady light and no noise +1990-10-15,43.8341667,-70.4388889,North Windham,ME,fireball,420,It was a firball that made a perpendicular manuver in North Windham, Maine in 10/90 +1990-10-15,36.175,-115.1363889,Las Vegas (North Of),NV,light,3600,strange lights north of Las Vegas +1990-10-15,44.3,-120.8333333,Prineville (30 Miles East Of),OR,light,6,Fast moving ball of light that can move at right angles. +1990-10-15,41.2586111,-95.9375,Omaha (Lavista/Ralston),NE,cigar,300,Cigar shaped object flying level at about 750ft. Has fiery tail, triangular windows, fighter escort ...was called space junk by +1990-10-15,47.3075,-122.2272222,Auburn,WA,sphere,5,Bright green ball of light on highway 167 +1990-10-15,30.2669444,-97.7427778,Austin,TX,other,240,UFO seen over Austin's Robert Muller Airport +1991-10-15,32.7177778,-100.9172222,Snyder,TX,disk,300,Round disk with lights +1992-10-15,45.3,-122.7725,Wilsonville,OR,light,15,Woman repts. seeing "round, flashing lights" moving S to N while in hospital. +1992-10-15,38.9413889,-119.7486111,Gardnerville,NV,light,15,Observed object bluish/white in color streaking toward the surface of earth; then change directions instantly heading back into the s. +1992-10-15,33.5777778,-101.8547222,Lubbock,TX,cigar,1800,The object was hidden in a cloud. +1992-10-15,39.1619444,-84.4569444,Cincinnati,OH,light,2,Spectrum colored lights move across the sky and from them emerges a white light. +1993-10-15,46.0038889,-112.5338889,Butte,MT,sphere,30,A hovering object in the vicinity of "The Lady of the Mountains". +1993-10-15,30.2363889,-93.3772222,Sulphur,LA,oval,600,Two large black objects fly over town ... 0nly 4 people observed them ..... +1993-10-15,33.7738889,-117.9405556,Garden Grove,CA,rectangle,900,A HUGE black retangular object. At least twice as big as a blimp even with it being about twice as high in the air. No lights. Seen jus +1993-10-15,43.0716667,-70.7630556,Portsmouth,NH,light,60,Strage lights over the river in NH +1993-10-15,37.7741667,-87.1133333,Owensboro,KY,sphere,3600,It moved back and forth up and down covering more miles in a split sec than anything man-made i have ever seen. +1993-10-15,30.3025,-93.1905556,Moss Bluff,LA,disk,120,F-16s chase Disc object over Calcasieu River between Lake Charles and Moss Bluff +1994-10-15,41.8530556,-74.1394444,Stone Ridge,NY,oval,30,Sitting on bench at UCCC. Looked up to the West and saw an oval UFO. Closed my eyes because my mind could not believe what it was witne +1994-10-15,39.6005556,-82.9461111,Circleville,OH,disk,60,Silver disc saucer hovers above town, then disappears +1994-10-15,42.4405556,-76.4969444,Ithaca,NY,light,10800,A bright object was seen from a far distance. It gave off a bright white light, sometimes turning gold, the it would turn red and green +1994-10-15,48.3683333,-124.6236111,Neah Bay,WA,sphere,1800,Metallic sphere floats in the sky... +1994-10-15,35.8422222,-92.4569444,Oxley,AR,fireball,2,On the way to my grandfathers house myself and my father witnessed a red fireball hovering in the middle of the old gravel road we were +1994-10-15,41.6347222,-84.9994444,Angola,IN,disk,180,Designed like a spare tire, dark back lit port blueish, had been hiding in a forest . +1994-10-15,40.4405556,-79.9961111,Pittsburgh,PA,light,30,It was a clear night in October, about 1994. I saw a bright white “star like” thing in the sky. It was NOT moving. I was facing down t +1994-10-15,45.1475,-122.5758333,Molalla (Near),OR,other,180,black object in sky traveling above river, circle of light appearing to come from it lighting up river in just that area of light +1994-10-15,32.5447222,-94.3672222,Marshall,TX,disk,5,Orange fiery disk flying at tree level +1995-10-15,32.8383333,-116.9730556,Santee,CA,light,8,A bright flourescent green light hovered between 2 houses then swiftly moved to left and then moved directly over us while we sat in ca +1995-10-15,41.1569444,-83.4169444,Fostoria,OH,diamond,1200,it was amazing the way they stood perfectly still and took off . +1995-10-15,37.9,-86.755,Hawesville,KY,cigar,120,Sightings of multiple craft disappearing and reappearing in sky, possible abduction. +1995-10-15,34.6086111,-98.39,Lawton,OK,sphere,180,Silvery orb hiding behind cloud! +1995-10-15,34.6647222,-83.0966667,Westminster,SC,unknown,180,The low-hanging cloud looked too dense +1995-10-15,36.6858333,-77.5427778,Emporia,VA,light,600,The light moved to me and then disapeared +1995-10-15,37.9747222,-87.5558333,Evansville,IN,unknown,240,Bright Bold Primary Colored Lights in the Sky BUT no shape of a craft. +1995-10-15,34.2572222,-118.6002778,Chatsworth,CA,fireball,5,Moon size fireball flies over the San Fernando Valley Oct. 1995 +1996-10-15,37.5630556,-122.3244444,San Mateo,CA,light,600,Silent Close Range White Light seen on Highway 280 south of Highway 92. Witnessed by 3. +1996-10-15,30.2669444,-97.7427778,Austin,TX,triangle,300,It was floating right above the tree tops over the houses about 75 feet from the tops os the houses. +1996-10-15,38.5333333,-123.0841667,Cazadero,CA,unknown,120,You won't believe what happened to ME!!!! +1996-10-15,35.265,-84.5533333,Delano,TN,other,30,If you don't believe in ufo's you better keep your mind open and be prepared for the unexpected. +1996-10-15,37.2708333,-79.9416667,Roanoke,VA,triangle,3600,I saw a triangular craft with only red light from front to back on it. Craft stopped over my back yard and shone light down. +1997-10-15,36.301944399999996,-88.3266667,Paris,TN,light,600,blue ball of light subdues me and my girlfriend. +1997-10-15,34.5022222,-97.9575,Duncan,OK,unknown,315,This is what I can remember about my abduction. +1997-10-15,33.7488889,-84.3880556,Atlanta (North Of),GA,light,300,A blue grayish kind of light. +1997-10-15,41.5102778,-112.0147222,Brigham City (West Of),UT,other,180,VERY LARGE GLOWING OBJECT HOVERED TO THE WEST OF THE SALT LAKE DISAPERING AFTER ABOUT 3 MIN +1997-10-15,34.1477778,-118.1436111,Pasadena,CA,oval,30,it was a plasma craft . It looked just like the pics taken in mex of a plasma craft. +1997-10-15,32.7833333,-96.8,Dallas,TX,light,300,My friend and I were driving home from a date, I opened the sunroof to view the moon lite sky. As I was starring at the stars somethi +1997-10-15,40.7141667,-74.0063889,New York City (Staten Island),NY,cylinder,120,Metallic Cylinder Moving thru New York Harbor +1997-10-15,34.8633333,-116.8872222,Daggett,CA,rectangle,8,One very fast, very low flying rectangular object changes direction, stops, then seperates into three equally fast smaller objects. +1997-10-15,36.7097222,-81.9775,Abingdon,VA,light,600,Bristol Herald Courier run on Thursday (10-16-97) the following day "Unusual lights in sky over Mountain Empire generate speculation". +1997-10-15,40.015,-105.27,Boulder,CO,triangle,300,Saw 3 lights moving slowly over the foothills +1997-10-15,40.1938889,-74.0491667,Shark River Hills,NJ,triangle,300,I was walking my dog on a dark, clear evening. I sensed a weird feeling and looked up to the sky. Above the tree tops, I couldn't mak +1997-10-15,40.3222222,-98.5944444,Bladen,NE,sphere,120,ufos on the moon???? +1997-10-15,46.3311111,-123.6372222,Rosburg,WA,triangle,240,Triangular shaped object. +1997-10-15,37.7622222,-84.8433333,Harrodsburg,KY,unknown,45,Iron-gridwork, lightless, silent UFO seen over central Kentucky. +1997-10-15,32.2205556,-98.2019444,Stephenville,TX,circle,600,Central Texas Sighting in Fall of 1997. Pulsing, single craft at EXTREME SPEEDS. +1997-10-15,38.6244444,-76.9394444,Waldorf,MD,light,420,Three circular lights fuse into one and become an intensly bright beacon +1997-10-15,32.4063889,-97.2113889,Alvarado,TX,chevron,30,"V" Shaped craft over Night Sky in Alvarado TX. Oct. 1997 +1997-10-15,42.2966667,-89.6211111,Freeport,IL,flash,15,Two different reports of blinking light seen by same witness within a years time. +1997-10-15,38.6272222,-90.1977778,St. Louis,MO,unknown,60,inside the house, but could tell it was above us +1997-10-16,19.0638889,-155.5858333,Naalehu,HI,sphere,300,It looked like a natural object (for a meteor) but it didn't follow the laws of gravity +1998-10-15,33.9319444,-81.2386111,Red Bank,SC,flash,7200,colorful gaseous objects make unusual sounds and harass individual +1998-10-15,30.5080556,-97.6786111,Round Rock,TX,egg,15,On approx. 10/15/1998 @ 0130 .I went to my back patio for a cigarette. I was outside for at least 3 min. i know this because i was almo +1998-10-15,29.7630556,-95.3630556,Houston,TX,fireball,4,A small, single fireball in the sky at an indeterminate altitude. +1998-10-15,35.9605556,-83.9208333,Knoxville,TN,cylinder,300,metallic cylinder hovering above city. +1998-10-15,38.2855556,-85.8241667,New Albany,IN,changing,3600,Objects Changed From Oval To FootBall Shape For An Hour +1998-10-15,36.0997222,-80.2444444,Winston-Salem,NC,sphere,12,silver-white sphere crossed sky in 12 sec. +1998-10-15,34.3266667,-93.5505556,Glenwood,AR,disk,2,I am a college student and a mother of a 5 and 2 year old. I had come home from a long day at school and discovered I had to run into t +1998-10-15,41.7,-71.4166667,Warwick,RI,other,300,Bright flat object moved upwards and disapeared behind cloads. +1998-10-15,35.6008333,-82.5541667,Asheville,NC,light,1800,red drifting light about 50 degrees in the western sky slowly drifting up and to the north would get very bright then fade but not puls +1998-10-15,31.315,-85.8552778,Enterprise,AL,triangle,900,Large black triangular ship seen near Enterprise, Alabama. +1998-10-15,33.5225,-117.7066667,Laguna Niguel,CA,unknown,60,Bouncing orange lights in night sky. +1998-10-15,41.4552778,-81.9180556,Westlake,OH,light,60,Witnessed flyby by a craft composed of six perfectly round, bright lights. +1998-10-15,37.6738889,-80.8894444,Hinton,WV,light,900,Single light travelling at high rate of speed, radically changed course numerous times. Stayed in same area for entire time, orbiting +1998-10-15,39.8122222,-85.2088889,Dublin (South Of),IN,diamond,60,One diamond shaped aircraft in the sky west of Richmond,Indiana flying from the SE to the NW in October, 1998. +1998-10-15,43.3872222,-87.8755556,Port Washington,WI,triangle,120,Craft a cross between Triangle/Chevron/Arrowhead/Diamond; clear, starry night; witnessed what I believe to be: quiet, low humming craft +1998-10-15,32.7833333,-96.8,Dallas,TX,disk,10,An UFO staying on the skjy with half red and half orange. +1999-10-15,42.4472222,-71.225,Lexington,MA,fireball,7200,A 2 hour sighting of fireball with orbiting mini fireballs and an array of white dots in the sky with unusual movements +1999-10-15,38.9516667,-92.3338889,Columbia (East Of, Near Little Dixie Conservation Area),MO,triangle,60,My friend and I were out looking for shooting stars on a country road when this large unknown object flew over us. It was a large tria +1999-10-15,35.0094444,-105.6686111,Clines Corners (I-40 Eastbound),NM,light,1200,Was traveling eastbound on I-40 in New Mexico around 3:00am. Noticed to the southwest and southeast numerous flashing bright blue light +1999-10-15,48.5575,-119.7486111,Conconully (Conconully Lake),WA,light,1800,A very bright light shined through the window of cabin and with spotting scope and binoculars a father and son saw a bright light with +1999-10-15,38.8986111,-92.1233333,Millersburg,MO,triangle,180,i've already submitted a report, i had the wrong date! +1999-10-15,42.3516667,-71.8638889,Holden,MA,oval,3600,Very bright oval object that appeared to resemble a star approx. 5 am in the morning. It has been visible in the morning for 3 days no +1999-10-15,40.0861111,-91.8130556,Lewistown,MO,light,180,Colour shift= green->blue->yellow->metalic white. Slow movement to west, then east, then high velocity NNW. +1999-10-15,44.5883333,-69.5991667,Fairfield,ME,light,1800,spotted light moving through the sky at high rate of speed. Thought to be a plane or helicopter but too fast for helicopter and han on +1999-10-15,40.7886111,-73.6,Old Westbury,NY,disk,240,I was home in my room and looked out my window to see this very large, white object gliding across the sky going west to south-east. It +1999-10-15,41.7308333,-84.9327778,Fremont,IN,diamond,180,A huge diamond shaped mirrored surfaced, revolving object moving across the sky in mid afternoon. +1999-10-15,31.5544444,-110.3030556,Sierra Vista,AZ,circle,120,a bright white light turned into a floating disk for 2min.than turned back into white light and zipped away. +1999-10-15,42.2408333,-83.2697222,Taylor,MI,sphere,20,I was walking towards what used to be Marshall's at the back entrance of the Southland Mall in Taylor, Mi. As I walked toward the buil +1999-10-15,39.0997222,-94.5783333,Kansas City,MO,other,300,MISSOURI INVESTIGATORS GROUP Report: I was looking to my left when I spotted a white light about 9 o'clock high +1999-10-15,36.1127778,-89.2616667,Newbern,TN,light,120,amber colored light,moves slowly, occasionally disappears in plain view +1999-10-15,32.7555556,-98.9019444,Breckenridge,TX,other,180,Craft came over on a dark but clear night.It was moving south east to north west.The craft was a vee shape but not the sahpe of the +1999-10-15,47.6063889,-122.3308333,Seattle,WA,chevron,60,4 lights in chevron-shape, crossed north t south on clear night sky. Lost sight of, then shape came back south to north, very fast. +1999-10-15,38.9380556,-99.5602778,Ellis,KS,light,600,first seen as possible meteor, then fireball, then satellite like moving south. i witnessed it turn a 180% turn, stop, then move in sev +1999-10-15,38.9380556,-99.5602778,Ellis,KS,oval,480,UFO shased off by fighter jets +1999-10-15,38.9858333,-119.1619444,Yerington,NV,chevron,10,Chevron or V-shaped object with five large circular lights on the bottom, very fast. +1999-10-15,33.4483333,-112.0733333,Phoenix,AZ,sphere,7200,Three Bright Orange Orbs large in size +1999-10-15,42.8863889,-78.8786111,Buffalo,NY,triangle,30,Black triangle with the orange lights at each corner +1999-10-15,33.0794444,-96.4152778,Copeville,TX,triangle,30,Triangular shaped, green lights, seen when investigating why dog was whining. Missing time later. +1999-10-15,33.5441667,-84.2338889,Stockbridge,GA,triangle,60,green lights in triangle pattern hovering above trees and strange dreams for 2 months after. +1999-10-15,38.7077778,-122.9013889,Geyserville,CA,unknown,300,Some sort of stealth helicopter like object with hardly any sound flew right over my friend and I. +2000-10-15,42.2138889,-83.1938889,Southgate,MI,fireball,8,Green-blue fireball appears over Detroit Metro Area +2000-10-15,33.0780556,-96.495,Clear Lake,TX,egg,3,1 1/2 times the size of a full moon, green and moved alot faster than normal at 4 am +2000-10-15,41.2041667,-73.7275,Mt. Kisco,NY,light,60,Only yards away from a tribe of UFO's for one full minute or so in Mt. Kisco, New York +2000-10-15,29.5444444,-95.0908333,Nassau Bay,TX,oval,4,Bright Green Oval Highspeed bigger than a full moon +2000-10-15,33.7669444,-118.1883333,Long Beach,CA,diamond,300,2 dark circular balls staying stationary for 5 minutes in a contrail that was 3 minutes old. 1 disappeared, another into a cloud. +2000-10-15,34.4077778,-111.4927778,Strawberry,AZ,disk,900,Disk shape on Ground and viewed at length with Scope from a Deer rifle. +2000-10-15,41.0036111,-80.3472222,New Castle,PA,egg,600,UFO dropped a large white ball of light that fell to the ground. +2000-10-15,45.5236111,-122.675,Portland,OR,circle,180,Many, many,many. WOW! +2000-10-15,40.8663889,-86.4033333,Lucerne (East Of),IN,triangle,600,MASSIVE CRAFT WITH COLORFUL LIGHTS APPEAR INSTANTLY ON HIGHWAY 16 WEST OF U.S.31 IN INDIANA +2000-10-15,38.7525,-122.6138889,Middletown,CA,cigar,60,I am an engineer and was startled since I have never seen anything like this before. While driving home from shopping, I saw an bright +2000-10-15,29.7630556,-95.3630556,Houston,TX,triangle,300,UFO in outer space. A flying "V" formation of 15 to 20 of what looked like stars in the clear sky +2000-10-15,36.0725,-79.7922222,Greensboro,NC,oval,2,REAL...OVALW/DOME ON TOP AIRCRAFT...FLYING IN FROM OUTERSPACE TO APPROX.4000FT.ABOVE THE GROUND...IN 3 SECONDS.. +2000-10-15,35.1677778,-78.9730556,Spring Lake,NC,other,10800,usaf traing, seen lights and bright circle +2001-10-15,41.7566667,-104.8211111,Chugwater,WY,light,30,F.E. Warren AFB Wyoming sightings +2001-10-15,36.3433333,-88.8502778,Martin,TN,triangle,120,Letter "A" Shaped Glowing White sharp edged object seen near slivered-moon +2001-10-15,36.3727778,-94.2086111,Bentonville,AR,formation,300,five gold colored reflective or metalic orbs in formation. +2001-10-15,41.0602778,-111.9702778,Layton,UT,sphere,60,pefect pace ;straight line;stopped dead in mid air hovered momentarily went straight up in clouds +2001-10-15,34.7863889,-76.8594444,Newport,NC,circle,3600,Completely black huge circle covered at least a mile +2001-10-15,36.9741667,-122.0297222,Santa Cruz,CA,disk,1800,A large, metalic disc over the silcon valley region of California. +2001-10-15,33.7488889,-84.3880556,Atlanta,GA,sphere,600,UFO fleet of 40 plus objects some connected by tethers float across Atlanta clear daylight skyline. +2001-10-15,40.7141667,-74.0063889,New York City (Queens),NY,triangle,165,It looked kinda like a triangle, but it had flat edges around the edge's.It was a Chrome like color, as big as at least a 1 story b +2001-10-15,39.7286111,-121.8363889,Chico,CA,other,30,Unidentified flying man +2001-10-15,40.7141667,-74.0063889,New York City,NY,changing,300,Black, elongated shape-shifter, floating/hovering in manhatten NYC +2001-10-15,35.7405556,-81.5633333,Valdese,NC,triangle,120,Metallic Triangular object hovers over Valdese +2001-10-15,38.4494444,-78.8691667,Harrisonburg,VA,sphere,3,Circular object offwhite in color, emiting no sound traveling at supersonic speed. +2001-10-15,39.7294444,-104.8313889,Aurora,CO,formation,300,6 crescent shapes in the sky southeast of denver +2001-10-15,44.0805556,-103.2305556,Rapid City,SD,triangle,30,I have never seen anything like this before. It kind of scared me. +2001-10-15,48.8466667,-122.5897222,Ferndale,WA,circle,3,Quick white round ball heading in a east to west downward trend +2001-10-15,47.3811111,-122.2336111,Kent,WA,circle,1,Green ball of light +2001-10-15,47.5405556,-122.635,Port Orchard,WA,circle,0.05,Large blue circular object observed falling at a 45 degree angle in Kitsap County. +2001-10-15,47.4830556,-122.2158333,Renton,WA,cylinder,5,Blue/Green cylinder shaped object falling from the sky +2001-10-15,47.6063889,-122.3308333,Seattle,WA,circle,5,i saw a large flaming blue sphere west of seattle +2001-10-15,47.1302778,-119.2769444,Moses Lake,WA,fireball,20,A round green flare dropped slowly from the sky and landed on the ground +2001-10-15,47.4958333,-121.7855556,North Bend,WA,fireball,3,Falling Fire Ball seen in North Bend area of Washinton State. +2001-10-15,38.8541667,-120.8583333,Garden Valley,CA,fireball,2,Witnessed bright green "fireball" object moving over a hilltop while driving. +2001-10-15,44.3013889,-116.0886111,Smiths Ferry,ID,fireball,5,fireball was blue green in color moving approximately nnw to ssw seemingly horizontal and either flamed out or went behing tree line +2001-10-15,47.6063889,-122.3308333,Seattle,WA,fireball,5,green fireball ocross nite sky +2001-10-15,38.7508333,-77.4755556,Manassas,VA,light,30,strange lights in the sky +2001-10-15,41.2222222,-73.0569444,Milford,CT,unknown,2400,Working at sikorky airport in stratford. mid overcast evening w/ rain about 5500 foot ceiling. Facing South/Southwest about 5 miles awa +2001-10-15,29.4238889,-98.4933333,San Antonio,TX,light,30,No shadows but me> +2001-10-15,38.2377778,-81.2336111,Mt. Olive,WV,unknown,60,Flying object over Mt.Olive West Virginia +2002-10-15,38.3016667,-91.6327778,Bland,MO,triangle,300,UFO? spoted chasing cattle +2002-10-15,47.5675,-122.6313889,Bremerton,WA,sphere,1200,miniature lightning bolts shooting out of this thing, coming out in all directions. +2002-10-15,41.0786111,-73.4697222,Darien,CT,other,600,first noticed while looking up at the constelation plaedes. it was three points of light traveling from horizon to horizon at a slow ra +2002-10-15,44.2519444,-85.4011111,Cadillac,MI,fireball,120,softball size fire ball in sky +2002-10-15,47.6063889,-122.3308333,Seattle,WA,rectangle,120,Dark rectangle, almost a cube; no lights, no sound, no wings, no reflective surface, seen in daylight +2002-10-15,32.7152778,-117.1563889,San Diego,CA,cigar,30,U.F.O. WAS CIGAR SHAPE. COLOR WAS A BRIGHT SILVER. I SAW IT WHILE DRIVING SOUTH ON MY WAT TO SANDIEGO. THE SPEED OF THIS CRAFT WAS SL +2002-10-15,41.5761111,-105.6947222,Bosler,WY,unknown,120,Women pass through Bosler, Wyoming twice without turning around. +2002-10-15,47.7569444,-122.2797222,Lake Forest Park,WA,sphere,240,Lake Forest Park, WA: On the evening of Tuesday 10/15/02 at approximately 7:45 PM PST, a friend and I were in his backyard changing the +2002-10-15,48.8994444,-115.1711111,Rexford,MT,chevron,30,Twelve chevron shaped crafts spotte over Lake Koocanusa, Montana. +2002-10-15,35.1391667,-97.3944444,Noble,OK,light,5,Light that streaked across sky stopped and then stopped. +2002-10-15,41.0144444,-75.6013889,Albrightsville,PA,light,180,Aurora borealis looking lights on the horizon shoot overhead to form a pulsating circle consisting of eight curved rectangles. +2002-10-15,33.7947222,-83.7133333,Monroe,GA,light,3600,Color dance in the sky in Walton county Georgia +2002-10-15,33.426944399999996,-117.6111111,San Clemente,CA,triangle,900,Triangular object cruzes north slowely along the 5 freeway in San Clemente CA( 10/15/02) +2002-10-16,34.0522222,-118.2427778,Los Angeles,CA,triangle,30,Laurel canyon TRIANGLE craft ༾ +2003-10-15,38.2875,-86.0663889,Crandall,IN,light,7200,Light over Southern Indiana town of Crandall ((NUFORC Note: Suspected sighting of a "twinkling" star. PD)) +2003-10-15,35.198055600000004,-111.6505556,Flagstaff,AZ,oval,900,i was traveling at this time in my life and called a VW van home...camping out was what i did to save money on rent, flagstaff, arizon +2003-10-15,37.3394444,-121.8938889,San Jose,CA,triangle,240,transluscent pink tree like object -2 ft tall hovered and then floated horizontally +2003-10-15,32.7591667,-97.7969444,Weatherford,TX,changing,240,Myself and a friend were standing outside on the west side of our place of employment when he said to me what in the what hell is that. +2003-10-15,28.0183333,-82.1130556,Plant City,FL,disk,120,On my way out to the shed in our back yard to put a tool up, I wittnessed over the Oak tree tops behind our shed a saucer hovering. The +2003-10-15,34.7463889,-92.2894444,Little Rock,AR,circle,60,Circular white object seen over the Arkansas River +2003-10-15,34.2647222,-118.5222222,Granada Hills,CA,disk,900,i submited a earlier case but this is the full long story . me and my friend were out side in my front yard on a clear cool day on +2003-10-15,46.4547222,-90.1708333,Ironwood,MI,disk,300,UFO hovers above Lake Superior. +2003-10-15,29.4747222,-82.86,Chiefland,FL,cigar,180,Two cigar shaped UFOs meet near a small plane in the afternoon Florida sky. +2003-10-15,39.8288889,-84.8902778,Richmond,IN,circle,180,Object paces commercial jetliner then leaves at great speed +2003-10-15,39.7683333,-86.1580556,Indianapolis,IN,unknown,180,Strange Looking UFO and others +2003-10-15,40.1261111,-82.9291667,Westerville,OH,unknown,2400,UFO over Westerville, Ohio? +2003-10-15,34.3069444,-92.4011111,Sheridan,AR,cigar,600,It was a slim cigar shaped silver metal object (like a plane with no wings). It had a orange glow-possible reflection from the sun. +2003-10-15,40.2691667,-79.89,Elizabeth,PA,disk,300,saucer shape seen from bottom with triangular lights with point in center, grey in shape.300' up. +2003-10-15,39.5152778,-84.6094444,Collinsville,OH,light,600,Several UFOs reported in southwest Ohio over several days and this may be another sighting. +2003-10-15,34.7694444,-92.2669444,North Little Rock,AR,changing,300,Huge object spotted over Batesville Pike road in North Little Rock Arkansas +2003-10-15,46.9755556,-123.8144444,Aberdeen,WA,disk,15,Dark colored semi-disked shaped craft flew over Aberdeen Wa. +2003-10-15,35.9605556,-83.9208333,Knoxville,TN,light,1800,Bright light attracts 8 planes +2003-10-15,35.7069444,-118.4552778,Wofford Heights,CA,circle,1200,Bright light broke into 6 objects two turn toward us the others vanished metal sparks fell from sky to ground +2003-10-15,39.3994444,-84.5613889,Hamilton,OH,diamond,600,Detailed sighting in Southwest Ohio a little over an hour after the Collinsville sighting. +2003-10-15,33.4222222,-111.8219444,Mesa,AZ,circle,600,Coming Home +2003-10-15,43.1963889,-75.7308333,Sylvan Beach,NY,fireball,45,Large fireball falling to earth +2003-10-15,41.76,-70.0833333,Brewster,MA,cigar,600,soldiers observe large unidentified craft as fighters give chase +2003-10-15,40.3461111,-94.8722222,Maryville,MO,light,10,Amber Lights in formation, and then changing alignment +2003-10-15,37.9608333,-120.2363889,Tuolumne,CA,light,60,single,round white light object approached&tailgated airliner@nite, made U turn, then L turn & crossed in front of me,call FAA. +2003-10-15,40.2986111,-83.0680556,Delaware,OH,light,3,Flashing Large lights like intense headlights on the bedroom wall over my bed at night! +2004-10-15,29.6513889,-82.325,Gainesville,FL,unknown,900,A ball of light comming twords me in a haze of fog. +2004-10-15,34.8697222,-111.7602778,Sedona,AZ,light,120,BALL OF LIGHT MOVED AROUND IN THE SKY, THEN DISAPPEARED BEHIND MOUNTAINS. +2004-10-15,41.8358333,-96.4666667,Oakland,NE,cone,720,A coworker and I saw a cone shaped object hoover for awhile and with a glow to it then alittle explosion happened and it was gone. +2004-10-15,32.6788889,-115.4980556,Calexico,CA,triangle,180,several sightings in imperial county october 2004. +2004-10-15,29.9480556,-93.9169444,Groves,TX,light,120,Dancing balls of light over the Texas night sky. +2004-10-15,42.3316667,-71.1216667,Brookline,MA,triangle,25,Triangle shaped craft sighting over Brookline MA. +2004-10-15,26.9294444,-82.0455556,Punta Gorda (Near) (I-75; Near Kings Highway Exit),FL,cigar,600,Large, "plane-like" object seen in the morning sky. +2004-10-15,34.4113889,-118.5391667,Saugus,CA,flash,180,UFO was seen +2004-10-15,41.6469444,-73.5686111,Wingdale,NY,other,4,It was a cloudy morning, the object just streaked across the sky, it was a blue object'moving at a speed that it just caught my eyes. +2004-10-15,47.5002778,-111.3,Great Falls,MT,unknown,2,5 or 6 elliptical lights appear in front of truck and then suddenly move over it and disappear +2004-10-15,44.1752778,-122.1627778,Mckenzie Bridge,OR,flash,300,a bright flashing light changed colors and danced above us for 5 minutes +2004-10-15,40.2169444,-74.7433333,Trenton,NJ,changing,900,It was an overcast day. I and 3 other members of my family were on the front porch. I noticed a long white object in the sky at 2:00. +2004-10-15,38.9716667,-95.235,Lawrence,KS,other,15,Object with crescent-shaped 'nose' flew in direction of the opened side (i.e. with pointed ends of crescent leading) +2004-10-15,33.8905556,-78.5686111,Calabash,NC,rectangle,3,ufo over sunset beach n.c. +2004-10-15,33.5091667,-111.8983333,Scottsdale,AZ,formation,900,8 light formation traveling straight up South of Phoenix +2004-10-15,39.2902778,-76.6125,Baltimore,MD,chevron,15,Chevron sighted off I-95 north of Baltimore MD. +2004-10-15,40.7391667,-89.0163889,El Paso (Rural),IL,light,10,Large Orange Sphere's Over Rural Illinois +2004-10-15,34.9247222,-81.0252778,Rock Hill,SC,light,900,We watched a faint light, high in the sky, blink every ten seconds and made several changes in direction before gmoving out of sight. +2004-10-15,44.98,-93.2636111,Minneapolis,MN,disk,120,Look to the clouds +2004-10-15,44.9444444,-93.0930556,Saint Paul,MN,sphere,600,11 balls of solid light formed a circle around the horizon, sat still for a while then quickly darted around and disappeared. +2004-10-15,33.4483333,-112.0733333,Phoenix,AZ,light,240,Bright Red Light +2005-10-15,30.155,-95.2111111,New Caney,TX,formation,480,I NEVER THOUGHT IT WOULD HAPPEN TO ME. +2005-10-15,43.8013889,-91.2394444,La Crosse,WI,formation,5,5 lights in V formation, racing across night sky before abruptly disappearing +2005-10-15,32.7355556,-97.1077778,Arlington,TX,light,120,At approximately 3 am a bright light appeared NNE in the sky about 3 miles away at about 50 degrees above the horizon. The object was +2005-10-15,43.4697222,-111.9658333,Ammon,ID,triangle,1500,((NUFORC Note: Possibly not a serious report. PD)) Black Triangle UFO spotted and had a encounter.… +2005-10-15,29.7630556,-95.3630556,Houston,TX,circle,300,UFO SIGHTED HOVERING AT REAR OF HOUSTON RESIDENCE. Richard & June H. /HUSBAND & WIFE WITNESS +2005-10-15,39.5069444,-84.7452778,Oxford,OH,oval,60,Oval silver flashing Object flying SE over Oxford, OH on a clear morning +2005-10-15,39.0997222,-94.5783333,Kansas City,MO,light,2,Bright blue light very fast, defied physics. +2005-10-15,38.7838889,-90.4811111,St. Charles,MO,sphere,2,Bright Blue Ball of light +2005-10-15,41.525,-88.0816667,Joliet,IL,flash,1,A large flash in the sky, only for a short time. +2005-10-15,42.2755556,-122.8169444,Phoenix,OR,cigar,300,A jet black colored cigar-shaped object, with 2 tapered sharply shaped points at its ends, seen moving forward in a specific direction. +2005-10-15,35.7913889,-78.7813889,Cary,NC,unknown,300,My friends and I where jokeing around outside and i got shoved and fell then I saw the craft it was moveing about 100-200 mph at proubl +2005-10-15,32.6630556,-95.4880556,Mineola,TX,egg,40,Saw a metalic football shaped object traveling 200 to 250 mph at about 1000 to 1500 ft. No sound,no windows,no wings ,no trail . +2005-10-15,39.8911111,-74.9222222,Marlton,NJ,formation,420,After retrieving a few items from the trunk of my car, I noticed three objects following each other in a line, flying north, then north +2005-10-15,36.9686111,-80.7138889,Hiwassee,VA,changing,600,Hello, I saw a light above a wooded area near my house white light no noise I watched it turn from one light into two then back to on +2005-10-15,36.7472222,-95.9805556,Bartlesville,OK,other,30,((NUFORC Note: Student report. PD)) I sighted a prismic diamond-shaped object that glowed yellow green hovering over the trees. +2005-10-15,30.2669444,-97.7427778,Austin,TX,other,30,Two red & green lights over SE Austin +2005-10-15,42.9786111,-71.0733333,Brentwood,NH,light,1200,There were red dot in the distance and the would blink and they had nonoise and my father told me that they might of been stelth bomber +2005-10-15,45.3088889,-89.4963889,Gleason,WI,sphere,1200,orange glowing sphere, very low to the ground +2005-10-15,47.6063889,-122.3308333,Seattle,WA,cylinder,90,Cylindrical object hovering past my car at close range +2005-10-15,37.2152778,-93.2980556,Springfield,MO,light,15,Descending lights were observed by two groups of people within a single hour and 100 miles apart. +2005-10-15,45.3088889,-89.4963889,Gleason,WI,sphere,5,orange spherical-shaped ufo flies over lake; amazing speed +2005-10-15,32.0722222,-84.2327778,Americus,GA,light,1800,There was one light, but if you used binoculors you could see for lights. +2005-10-15,40.5775,-85.8733333,Converse,IN,other,15,We were sitting around a fire when three lights lit up in a horizontal fashion in the western sky. +2005-10-15,45.3088889,-89.4963889,Gleason,WI,sphere,2,One sphere craft (viewed by two different groups) similar characteristics of the craft. +2005-10-15,40.6305556,-76.1713889,Schuylkill Haven,PA,light,900,Amber colored lights in sky. +2005-10-16,47.1041667,-122.4333333,Spanaway,WA,oval,1800,cloud inhaler +2006-10-15,38.5733333,-109.5491667,Moab,UT,fireball,60,Object entering the atmosphere, 3 red, green and blue lights spinning and slowing down as if landing. +2006-10-15,41.5894444,-88.0577778,Lockport,IL,circle,300,It was a dark circle with several exrememly bright, shiny, silver lines/beams emitting from the entire circle. It moved quickly from ea +2006-10-15,36.175,-115.1363889,Las Vegas,NV,circle,1200,White Balls and Bright Light in the Vegas moring sky. +2006-10-15,34.1447222,-84.9330556,Euharlee,GA,circle,1200,Invisable Object appears on Inhansed Pictures taken over Euharlee GA +2006-10-15,48.1958333,-114.3119444,Kalispell,MT,teardrop,1200,Mettalic, teardrop shaped object hover in the sky above house +2006-10-15,40.4197222,-80.0022222,Beltzhoover,PA,oval,1800,Very LOW hovering AirCraft, Extreme Detail! +2006-10-15,32.3122222,-106.7777778,Las Cruces,NM,light,2,Made me think of UFO. Unsure what this was. No camera available. Solitary witness. +2006-10-15,34.9958333,-79.2263889,Silver City,NC,circle,1800,Black Circle seen hovering in Carolina sky. +2006-10-15,30.0372222,-84.3877778,Panacea,FL,oval,5,Large orange orbs over Oclocknee River +2006-10-15,35.2269444,-80.8433333,Charlotte,NC,light,10,BRIGHT LIGHT TRAVELING IN STRAIGHT LINE FROM HORIZON TO HORIZON +2006-10-15,40.8,-96.6666667,Lincoln,NE,triangle,300,triangle craft +2007-10-15,34.4313889,-110.5933333,Heber,AZ,fireball,10,Redish/Orange ball of lite traveling at a high rate of speed arcoss the sky of Heber Arizona. +2007-10-15,36.8527778,-75.9783333,Virginia Beach,VA,sphere,3600,A bright light that came closer to photographer with each camera flash; green, orange and violet haze around the orb. +2007-10-15,42.7022222,-83.4027778,Waterford,MI,unknown,8,I will first state that I am a Christian man, and I attempt to live by the word of God through his words in the bible. I have another s +2007-10-15,38.5816667,-121.4933333,Sacramento,CA,sphere,600,Silver sphere in sky during news report about fire. +2007-10-15,42.2625,-71.8027778,Worcester,MA,circle,15,a stationery, very bright silver circular object about 500 feet in air, 60 to 70 feet across then vanished. +2007-10-15,39.7294444,-104.8313889,Aurora,CO,sphere,1320,Spherical metallic object seen in broad daylight above University Hospital. +2007-10-15,40.7141667,-74.0063889,New York City,NY,teardrop,600,It was mat black and moved very slow West towards the Hudson River +2007-10-15,38.9516667,-92.3338889,Columbia,MO,disk,180,It was a dull matte grey color and looked like two inverted contact lenses with a little turret on top, +2007-10-15,47.5675,-122.6313889,Bremerton,WA,light,420,Red Ball moving slowly across Bremerton... +2007-10-15,48.0905556,-105.64,Wolf Point,MT,fireball,30,Bright large orb with bright light shining to ground, lasted only 30 seconds. +2007-10-15,43.3058333,-100.6577778,Mission,SD,light,600,The night sky was clear and the stars were shining bright, when we saw this bright orange light. +2007-10-15,33.6888889,-78.8869444,Myrtle Beach,SC,light,1800,Observed red lights over the ocean that appeared and then faded out. +2007-10-15,37.6922222,-97.3372222,Wichita,KS,formation,600,2 formations of 5 lights and 3 lights E and S of Wichita, KS same night within 10 min. +2007-10-15,44.8505556,-124.0455556,Lincoln Beach,OR,other,30,Large Invisible flying V shaped aircraft. +2008-10-15,35.4661111,-82.5166667,Arden,NC,triangle,4,Black Triangle crossing the face of the moon viewed from a 8" Dobsonian Telescope with star tracking software +2008-10-15,41.8011111,-74.7469444,Liberty,NY,light,2,just wondering if anyone knows what it was..........i was going to roscoe n.y. opening day of bow season for deer, i was traveling on +2008-10-15,44.2580556,-71.4416667,Bretton Woods,NH,diamond,2700,Bright orange diamond shape object moving from ground to sky +2008-10-15,33.6694444,-117.8222222,Irvine,CA,disk,10,Disc hovering at a southernmost tilt west of NB I-405 at Irvine Medows CA +2008-10-15,40.4475,-118.2886111,Rye Patch,NV,disk,1800,object observed while Riding ATV's in Rye Patch Nevada +2008-10-15,37.6775,-113.0611111,Cedar City,UT,other,30,Pure white, floating 747 or 737. +2008-10-15,32.7152778,-117.1563889,San Diego,CA,other,5,"Cloud" shape moving south, no lights,sound or exhaust at about 16:00 +2008-10-15,42.9116667,-73.8686111,Ballston Lake,NY,other,30,3 white lights in a row at night moving slowly and low. +2008-10-15,35.0777778,-87.4397222,Loretto,TN,oval,15,Craft seen coming through clouds at 45-dgree angle and then jetting off at another 45-degree angle. +2008-10-15,39.7558333,-77.5780556,Waynesboro,PA,teardrop,300,Three sons and friends saw multiple flying objects just before Dusk in Waynesboro, PA +2008-10-15,44.23,-69.7758333,Gardiner (Near),ME,formation,120,Hovering object with odd light formation- UFO or blimp +2008-10-15,35.1858333,-86.1122222,Winchester,TN,triangle,10,Triangal/ Lights seen flying above house +2008-10-15,35.1858333,-86.1122222,Winchester,TN,triangle,5,Triangular craft - Winchester TN +2008-10-15,37.1041667,-113.5833333,St. George (Over),UT,unknown,1200,Very large bright lights, equal brightness and distance moved at high speed across desert sky. NOT A PLANE. +2008-10-15,35.2225,-97.4391667,Norman,OK,unknown,180,I saw a light blue UFO with a low sound emitted that seemed to abduct a dog, and then vanish. 500 Lights On Object0: Yes +2008-10-15,41.39,-95.3622222,Hancock County,IA,chevron,60,About 7 lights in a V pattern moving across sky heading north, no sound, lots of other aircraft in the area after the lights left +2008-10-15,46.8722222,-113.9930556,Missoula,MT,unknown,3,It was mid-October, 2008, at 9 p.m. and full dark. We live in a drainage just west of Missoula, MT. When we took our little dog out for +2009-10-15,38.8813889,-94.8188889,Olathe,KS,other,120,Two Dark Heagon shape crafts slowly decend out of clouds from west and turn north 500 Lights On Object0: Yes +2009-10-15,35.1858333,-86.1122222,Winchester,TN,changing,300,Morphing UFO with two smaller orbs seen in broad daylight - Orbs w/fantastic speed /maneuvers +2009-10-15,31.4588889,-85.6405556,Ozark,AL,other,30,A large "chef's hat" shaped object in sky over US231 South. +2009-10-15,35.1716667,-103.7244444,Tucumcari,NM,teardrop,3600,Object was not a weather balloon, or any known aircraft. +2009-10-15,29.7630556,-95.3630556,Houston,TX,light,120,In North Houston 3 family members and I witnessed 4 bright objects in a line formation heading southeast. About 30 sec later all object +2009-10-15,30.5869444,-84.5833333,Quincy,FL,triangle,360,Triangular craft hovering over Quincy, Fl +2009-10-15,39.1286111,-79.465,Davis,WV,light,600,Large Flickering Light +2009-10-15,41.6508333,-73.7633333,Lagrangeville,NY,cylinder,3,Thought a commercial airliner was about to crash... +2009-10-15,47.6063889,-122.3308333,Seattle,WA,light,300,A flying light in Seattle to the west of the aurora bridge +2009-10-15,34.7202778,-80.7711111,Lancaster,SC,flash,3,Bright blue orb. +2009-10-15,31.2230556,-85.3905556,Dothan,AL,flash,1200,blinking lights +2010-10-15,41.14,-104.8197222,Cheyenne,WY,light,900,U.F.O in Cheyenne, Wyoming +2010-10-15,40.2794444,-75.3875,Harleysville,PA,circle,7200,UFO above my house. Possibly abducted. +2010-10-15,42.8863889,-78.8786111,Buffalo,NY,sphere,5400,Bright white object with blue, red, green and white lights close to Buffalo International airport... 1.5 hrs +2010-10-15,38.9822222,-94.6705556,Overland Park,KS,sphere,180,Silent black metal sphere ,with brite front lite, dim side lite , slowly follows the hyway grassy area. +2010-10-15,35.2269444,-80.8433333,Charlotte,NC,cigar,10,Silver to turquise in color size of a car near charlotte motor speed way. +2010-10-15,30.2669444,-97.7427778,Austin,TX,other,3600,Over a dozen drone-like UFOs witness over Austin, Texas +2010-10-15,40.4233333,-104.7086111,Greeley,CO,disk,1380,One saucer shaped metal object over Greeley, Colorado. +2010-10-15,40.015,-105.27,Boulder,CO,light,7200,Bright lights seen pulsating over east Colorado. +2010-10-15,39.9808333,-75.3088889,Havertown,PA,light,240,This happened a few years ago and I've wondered about it every since. I am an ameteur astronomer and I don't necessarily believe in UFO +2010-10-15,42.4775,-83.0277778,Warren,MI,unknown,3,i was under my car port at the front of my house . a clear nightǀ:00pm. i looked up due west i saw four very bright green lights the s +2010-10-15,39.8680556,-104.9713889,Thornton,CO,teardrop,5,Large Cone-Tailed Ball of White Light crosses Denver Sky +2010-10-15,39.7441667,-83.8086111,Cedarville,OH,unknown,180,Large stationary aerial object hovering in the night sky +2010-10-15,42.8863889,-78.8786111,Buffalo,NY,fireball,120,Balls of fire floating (not dropping) across the sky in Buffalo, NY 10-15-10. +2010-10-15,42.4927778,-92.3427778,Waterloo,IA,light,600,Bright orange orb quickly passing close by without sound. +2011-10-15,38.8975,-76.8305556,Largo,MD,circle,7200,This was some time ago but one night back in October I was in bed and had my window up and I was lay down and look to my right out my +2011-10-15,40.3272222,-76.3030556,Reistville,PA,sphere,5,Orange ball of light follows car, disappears behind us +2011-10-15,41.3127778,-96.3458333,Valley,NE,light,900,hanging star comes back every few nights +2011-10-15,38.6402778,-92.1222222,Holts Summit,MO,disk,180,5th incident same craft. +2011-10-15,42.8741667,-77.2883333,Canandaigua,NY,circle,120,Round brite silverish light +2011-10-15,44.0522222,-123.0855556,Eugene,OR,light,180,Orange-yellow flickering light +2011-10-15,34.0005556,-81.035,Columbia,SC,light,180,Mulitiple sightings of the same UFO. +2011-10-15,34.8980556,-86.7336111,Toney,AL,circle,1800,Several orb like thing 5 white 1 red +2011-10-15,40.0377778,-76.3058333,Lancaster,PA,circle,300,Bright circle, red/orange object in sky. +2011-10-15,36.7477778,-119.7713889,Fresno,CA,oval,180,Four oval objects 15"x20" emitting beams with bright orange read glow suspended 100 ft. overhead for 15secs. took off N-east +2011-10-15,39.0638889,-108.55,Grand Junction,CO,rectangle,300,SEEN CLEARLY FOR 2 MINUTES GLIDING WITHOUT SOUND FLASHING LIGHTS +2011-10-15,41.4244444,-91.0430556,Muscatine,IA,triangle,120,Three bright lights in the sky in the shape of a triangle +2011-10-15,31.5086111,-82.85,Douglas,GA,chevron,40,30-40 individual amber lights in changing chevron formation. +2011-10-15,39.4283333,-74.4961111,Absecon,NJ,triangle,10,White triangle shape no lites or sound moving NNE in night sky. +2011-10-15,32.7563889,-99.8958333,Anson,TX,changing,10,Object, or objects seen over Jones County, TX, 10-15-11. +2011-10-15,33.3702778,-112.5830556,Buckeye,AZ,other,7,Sitting in the back yard seen fire ball go south to north. After about two minutes as I was facing west a v shaped craft with about fo +2011-10-15,34.1361111,-117.8644444,Glendora,CA,light,120,2nd sighting of Glendora UFO +2011-10-15,34.1361111,-117.8644444,Glendora,CA,light,120,UFO (slow moving yellowish light) report for Saturday, October 15th, 2011@ approximately 21:30 PST in zip code 91740 +2011-10-15,41.7613889,-88.4436111,Sugar Grove,IL,light,600,White lights in the clouds over US Rt 30, three separate witnesses, no alternate explanation to be found. +2011-10-15,40.7608333,-111.8902778,Salt Lake City,UT,light,10,Orange orb light over Sugarhouse park. +2011-10-15,38.6272222,-90.1977778,St. Louis,MO,fireball,240,8-10 lights following each other +2012-10-15,39.4013889,-76.6022222,Towson,MD,circle,1800,Orange fixated circle hung above us (in the dist) as we stargazed then.. disappeared +2012-10-15,43.105,-88.3419444,Hartland,WI,changing,600,UFO sightings every day in Hartland WI +2012-10-15,43.6136111,-116.2025,Boise,ID,light,300,2 orbs of light over eighth street foot hills. +2012-10-15,47.1772222,-122.1852778,Bonney Lake,WA,unknown,5400,Repetative movements of light for 90 minutes +2012-10-15,39.6416667,-77.7202778,Hagerstown,MD,circle,300,Bright orange light with no sound. +2012-10-15,35.4519444,-86.26,Normandy,TN,rectangle,7200,rectangular, reflective object over Southern Middle TN +2012-10-15,35.8455556,-86.3902778,Murfreesboro,TN,unknown,2700,Bright object over MTSU campus in Murfreesboro on Oct. 15, 2012. +2012-10-15,40.5308333,-112.2975,Tooele,UT,cigar,300,Tooele, object over mouantains disapears. +2012-10-15,38.6272222,-90.1977778,St. Louis,MO,cylinder,60,A cluster of 10-12 metal orb-like objects hovering above the street. +2012-10-15,43.1788889,-88.1172222,Menomonee Falls,WI,formation,300,Three orange, oddly moving lights in the shape of a giant triangle seen over Waukesha Co. +2012-10-15,44.8408333,-93.2980556,Bloomington,MN,disk,7200,Circle of lights in SW sky. +2012-10-15,32.2530556,-93.1655556,Castor,LA,other,4,Rounded in the front, had steady speed, looked flat in shape. Had blue haze around it. Made no noise, but not going fast enough or flyi +2012-10-15,33.1191667,-117.0855556,Escondido,CA,light,3300,Intermittent pulsing blue light at high altitude with random movement +2012-10-15,45.5608333,-94.1622222,St. Cloud,MN,formation,30,One becomes three three becomes six. +2013-10-15,37.5483333,-121.9875,Fremont,CA,other,120,Star-like shaped with a glowing red center,slow moving...at a helicopters height in the air. +2013-10-15,41.2058333,-76.0663889,Hunlock Creek,PA,triangle,600,I went outside for a cigarette, I was about a quarter of my cigarette gone and I notice a light from the left of me. I have a lake in t +2013-10-15,44.01,-69.8988889,Bowdoinham,ME,unknown,1800,One brightly blue, red white condensed light moving silently and too slowly to be a plane moving north then west. +2013-10-15,38.9805556,-77.1005556,Bethesda,MD,disk,7,Saucer flying low and fast over Betheda/Rockville area in broad daylight. +2013-10-15,34.4838889,-114.3216667,Lake Havasu City,AZ,fireball,10,UFO's sighted flying in the Lake Havasu City, AZ night sky. +2013-10-15,45.6797222,-111.0377778,Bozeman,MT,light,120,Light to the west. +2013-10-15,42.2711111,-89.0938889,Rockford,IL,changing,1500,Bright red, white, and orange lights hovering in the western sky. +2013-10-15,39.41,-74.365,Brigantine,NJ,unknown,90,Orange light craft not defined moved slowly almost hovering at time then disappeared quickly. +2013-10-15,43.6136111,-116.2025,Boise,ID,chevron,30,V-shaped UFO over Boise's Northend. +2013-10-15,36.1344444,-80.6597222,Yadkinville,NC,other,480,A bright light shifting from a circular light to a saucerlike line of light. +2013-10-15,33.8941667,-78.4269444,Ocean Isle Beach,NC,light,3,A string of five orange lights. +2013-10-15,34.2011111,-118.5355556,Reseda,CA,sphere,0.5,Green laser ball spontaneously appears at elevation of low-flying airplane, then almost zips away into black sky. +2013-10-15,48.9938889,-122.7458333,Blaine,WA,disk,300,Bright yellow object that cast light on cloud cover above it and was a disk or saucer shape. +2013-10-15,35.0844444,-106.6505556,Albuquerque,NM,flash,60,While getting off freeway on Eubank exit a bright flash of light went in front of car had to brake apparently vehicle next to us disapp +2013-10-15,38.5816667,-121.4933333,Sacramento,CA,light,240,Orange orb drops flashing orbs over sky in Sacramento then disappears. +2013-10-15,36.1888889,-95.7455556,Catoosa,OK,other,60,I looked to the south at night and saw a very Large V shape ship it did not have lights and was very slow in flight and no sound. +2013-10-15,39.510555600000004,-79.7986111,Reedsville,WV,triangle,60,Dark-colored, silent, hovering triangle with red and white lights. +1959-10-16,39.4797222,-80.31,Four States,WV,sphere,600,MYSTERIOUS RED LIGHTS IN NORTHERN WEST VIRGINIA +1965-10-16,42.5583333,-70.8805556,Beverly,MA,cylinder,60,Possible ufo sighting 1965-1966 Beverly, MA. +1977-10-16,41.2761111,-72.8688889,East Haven,CT,disk,60,Weather or NOT a Balloon!!! +1988-10-16,39.9522222,-75.1641667,Philadelphia,PA,oval,3600,Oval shaped moon colored object that darts in and out of the clouds above my house, +1989-10-16,32.2216667,-110.9258333,Tucson,AZ,sphere,3,giant ball of fire seen over tucson hour after dark around 1989 +1992-10-16,40.4405556,-79.9961111,Pittsburgh,PA,disk,120,Bright light on small disc craft January & October 1992 Bates & McKee Pittsburgh, PA +1997-10-16,30.3319444,-81.6558333,Jacksonville,FL,sphere,600,Metallic Sphere Scans My Entire Body +1997-10-16,35.7330556,-81.3413889,Hickory,NC,fireball,180,I was outside when I saw a red "fireball" moving in an oval pattern. +1997-10-16,36.8525,-121.4005556,Hollister,CA,light,40,Very dim light, extreme altatude, traveling from Pacific easterly aprox. over San Jose or S.F., dramatic turn to south/east toward Araz +1998-10-16,38.5816667,-121.4933333,Sacramento,CA,triangle,300,observed v shaped object with lights and no noise in the sky traveling slowly at night +1998-10-16,32.7555556,-98.9019444,Breckenridge,TX,other,120,On about this time my wife and I saw a V shaped object fly over our house. It was NOT the shape of the Stelth bomber. It was a 90 degre +1998-10-16,41.5622222,-72.6511111,Middletown,CT,unknown,900,The object was traveling at a very high altitude, at first glance I thought it might be a sattelite, but it made a few stops, then a dr +1998-10-16,44.9430556,-123.0338889,Salem,OR,light,10,My husband and I were traveling south on I-5 north of Salem when a huge bright light appeared ahead of us mid-sky. It seemed to be ove +1998-10-16,37.7272222,-89.2166667,Carbondale,IL,sphere,5,I saw a spherical object at a distance. It had a slight green glow. It just appeared, then took off in a northeast direction very qui +1999-10-16,35.0886111,-92.4419444,Conway (At Salltillo Heights Community),AR,sphere,60,we saw a hot blue orb looking object big as a house fall from the sky. +1999-10-16,37.5319444,-122.2469444,Redwood Shores,CA,other,1800,I believe that this is the same object as seen in this sighting on the data base Occurred : 10/16/1999 19:00 (Entered as : 10/16/99 19: +1999-10-16,37.5630556,-122.3244444,San Mateo,CA,disk,90,The object was in the northern sky for approximately 1.5 hours on the evening of 10/16/99. It was saucer-like shape with a very bright +1999-10-16,35.0455556,-85.3097222,Chattanooga,TN,triangle,180,I witnessed 3 low-flying, triangular-shaped, black crafts traveling to the north, northwest on Saturday 16, 1999. +1999-10-16,37.6455556,-84.7722222,Danville,KY,light,7200,Blue lights, white lights, and red lights. Moving sporadically and toward each other. Then they would hover. One actually flew over +1999-10-16,33.0888889,-96.8861111,The Colony,TX,triangle,15,Streaking light seen overhead. Went from a standstill(hover?) position and then streaked off in a flash. +1999-10-16,29.7630556,-95.3630556,Houston,TX,oval,20,Flying object similar to blimp shaped like rounded football, illuminated from within. +1999-10-16,34.7658333,-84.77,Chatsworth (Fort Mountain),GA,sphere,5,MUFON/GEORGIA FOLLOW-UP REPORT: Glowing orange sphere changes size during hover. +2000-10-16,41.9483333,-71.9744444,Woodstock,CT,fireball,600,((NUFORC Note: Witness reports fireball.)) +2000-10-16,42.5847222,-87.8211111,Kenosha,WI,light,20,Bright object seen moving across the sky shortly before sunset. +2000-10-16,38.5766667,-92.1733333,Jefferson City,MO,triangle,180,Silent triangle object, very low, moving north then east. +2000-10-16,40.7241667,-73.7155556,Bellerose,NY,disk,120,a gigantic illuminated saucer, silver in color with yellow lights around it, flying extemely close to the ground +2001-10-16,43.7486111,-87.9769444,Plymouth,WI,triangle,300,A large quiet moving object that has dim star like lights that formed a triangle like shape. +2001-10-16,43.7486111,-87.9769444,Plymouth,WI,triangle,300,A very large, quiet, moving, object with dim lit star like lights that formed a triangle like shape. +2001-10-16,36.1658333,-86.7844444,Nashville,TN,chevron,60,Very clear view of something that was NOT an airplane gliding in the night sky ; a "v" like shape with lights +2001-10-16,33.8463889,-94.6525,Haworth,OK,changing,120,multiple crafts as they were orchestraiting something +2002-10-16,47.4830556,-122.2158333,Renton,WA,cigar,180,Large cigar shaped object reflecting the sun in the morning sky. Very slow moving if at all. +2002-10-16,42.3316667,-71.1216667,Brookline,MA,oval,7200,Ovoid , brightly lit unidentified flying object seen near Massachusetts city. +2002-10-16,39.7683333,-86.1580556,Indianapolis,IN,flash,300,Unsual Flashes During Space Shuttle International Space Station Passing. +2002-10-16,41.2230556,-111.9730556,Ogden,UT,formation,120,While sitting on my front porch I saw 2 orbs of light going across the night sky; They had no clearence lights of an airplane. +2002-10-16,32.0833333,-81.1,Savannah,GA,unknown,90,At about 8:15 p.m. I noticed two bright stars in the northwestern sky. What caught my attention was that these were the two brightest +2002-10-16,40.7336111,-82.79,Galion,OH,triangle,600,Triangle Hovers over town for 6-8 minutes +2002-10-16,31.5491667,-97.1463889,Waco,TX,light,900,Dim light at high altitude moving quite fast seen to reverse course. +2002-10-16,45.5236111,-122.675,Portland,OR,light,15,Observed what appeared to be a dim satellite make a U-turn, then accelerate to an unbelievable speed. +2002-10-16,29.1869444,-82.1402778,Ocala,FL,light,120,Observed ten to fourteen or so lights appearing similar to stars all traveling in the same direction. +2002-10-16,36.175,-115.1363889,Las Vegas,NV,egg,1200,I was looking up in the night sky, when I noticed some objects moveing of to the left of rio casino.I focused on them thinking they +2002-10-16,30.2669444,-97.7427778,Austin,TX,other,1.5,Looked like a bright green shooting star, much larger, longer tail and brighter than a SS, headed in dowward direction. +2003-10-16,40.9466667,-124.0994444,Mckinleyville,CA,light,1320,Small Light Like the size of a star that moved fast and in radicul turnsa Red, Yellow, And Orng color lght +2003-10-16,38.9805556,-76.3147222,Stevensville,MD,light,600,We see these lights very often at night looking towards the bay just to the right and above the Baltimore area. These whitish orange li +2003-10-16,40.4041667,-110.7644444,Hanna,UT,other,2,UTAH UFO HUNTERS REPORT: Flaming piece of Meteroite falls. +2003-10-16,37.6688889,-122.0797222,Hayward,CA,unknown,600,A black object that was stationary for at least 10 minutes in the clear sky. Flat and circular base with a strangely shaped top. +2003-10-16,39.9611111,-82.9988889,Columbus,OH,light,900,Bright, slow moving light. +2003-10-16,39.9336111,-82.4725,Buckeye Lake,OH,light,120,Weird lights in the early evening sky around Buckeye Lake and thornville area +2003-10-16,40.6883333,-75.2211111,Easton,PA,unknown,120,An object was seen hovering above a suburban neighborhood. +2003-10-16,32.8633333,-108.2208333,Pinos Altos,NM,unknown,1.2,Very unusual atmospheric entry of unknown Craft. +2003-10-16,47.2033333,-122.2391667,Sumner,WA,changing,6300,Odd lights and shapes in Sumner, Washington +2004-10-16,34.5027778,-81.6116667,Whitmire,SC,unknown,60,I was camping alone in my treehouse for deer hunting when I heard a VERY weird sound of a low and slow flying object. +2004-10-16,32.0833333,-81.1,Savannah,GA,light,30,Red blinking light appears three times, changing speed and direction many times before fading away. +2004-10-16,42.1391667,-87.9288889,Wheeling,IL,unknown,45,I saw an object with bright lights in the sky , at first i thought it was a airplane.But, it looked wird like it was a flying car, with +2004-10-16,32.7152778,-117.1563889,San Diego,CA,changing,300,white lights w/ sm. blinking red light, changing and waving like a firecracker, changing erratically, expanding and contracting. +2004-10-16,41.1305556,-85.1288889,Fort Wayne,IN,flash,60,Bright white flashes by the Radio and TV towers in Fort Wayne, Indiana +2004-10-16,33.3061111,-111.8405556,Chandler,AZ,fireball,600,A fireball shooting across the sky +2004-10-16,36.7619444,-83.695,Pineville,KY,unknown,60,It was around 11:30 pm and I saw rising up behind the trees a multi colored object. One light was flashing, it happened so fast. +2005-10-16,41.85,-87.65,Chicago,IL,light,1800,Multicolored strange object over Chicago. ((NUFORC Note: Possible twinkling star. PD)) +2005-10-16,37.6391667,-120.9958333,Modesto,CA,oval,5,Strange Bright Green Light moving through sky near Modesto CA at 2:25 am... visible from I-5 on the left horizon. Very nearby +2005-10-16,29.2105556,-81.0230556,Daytona Beach,FL,light,1200,We were picnicking on a pier over the beach as the tide was high and the water engulfed the entire beach. We had layed down on the bla +2005-10-16,30.9175,-96.1080556,North Zulch,TX,circle,900,((NUFORC Note: Probable sighting of Mars. PD)) I was outside last night packing our truck at our ranch in Texas… +2005-10-16,36.0652778,-119.0158333,Porterville,CA,circle,1200,big red ball like object with littler star like objects zooming around +2005-10-16,36.8527778,-75.9783333,Virginia Beach,VA,unknown,60,Sighting in Virginia Beach near Pungo +2005-10-16,38.8338889,-104.8208333,Colorado Springs,CO,triangle,120,Black triangle spotted in Pikes Peak region and slowly fades from sight. +2005-10-16,34.5033333,-82.6502778,Anderson,SC,triangle,120,Dark, soundless object low in the sky over Anderson, SC; looked like huge black helium balloon? +2005-10-16,34.9530556,-120.4347222,Santa Maria,CA,oval,60,Dark oval like shape moving both fast and slow at night. +2005-10-16,40.015,-105.27,Boulder,CO,light,600,It was around 9pm and I was at just going out side for a cigg. break. And i looked up in the sky and seen a bright red and yellow light +2005-10-16,42.3241667,-83.4002778,Westland,MI,formation,120,there were intersecting lights with nothing holding them together and no sound +2005-10-17,34.2783333,-119.2922222,Ventura,CA,oval,2400,It was Saturday evening October 16, 2005. I myself have never in the past seen anything like this or any other UFO's. I still don't kno +2006-10-16,47.5963889,-120.6602778,Leavenworth,WA,circle,7200,On Nov. 16, 2006 as I saw this large object with a circumference of approximately ten feet. ((NUFORC Note: Possible star?? PD)) +2006-10-16,42.1097222,-86.48,St. Joseph,MI,light,30,Two bright gold light tails moving west toward Lake Michigan in early morning hours. Moved in formation, very quickly and low in sky. +2006-10-16,47.1855556,-122.2916667,Puyallup,WA,light,60,extreme bright light +2006-10-16,34.1847222,-101.7063889,Plainview,TX,other,5,UFO more than a glow 10-19-2006 From the Plainview Daily Herald 10/19/2006 By KEVIN LEWIS Herald Editor Mark Harmon promises he’s not +2006-10-16,28.5577778,-81.8513889,Groveland,FL,oval,1860,We were traveling west on FL State Road 50 at about 60mph through Lake County Florida on Sunday, October 15th 2006. We had just passed +2006-10-16,32.77,-108.2797222,Silver City,NM,flash,900,Very faint flashing strobe. +2006-10-16,42.6158333,-70.6625,Gloucester,MA,cone,600,Orange light hovering over ocean +2006-10-16,41.2833333,-70.1,Nantucket,MA,circle,30,Brilliant white light +2007-10-16,39.0397222,-77.0555556,Wheaton,MD,light,60,Moving point of light in vicinity of Wheaton/Glenmont Metro +2007-10-16,41.2813889,-73.4986111,Ridgefield,CT,sphere,15,spherical shiny metallic object over Ridgefield skies +2007-10-16,41.926944399999996,-73.9977778,Kingston,NY,light,3,Ball of light moves slowly behind a tree & disappears. +2007-10-16,42.075,-72.0338889,Southbridge,MA,disk,120,crazey dident expect it stil dont no wat to say seen it above a few trees nothing else around andd then it wasent there +2007-10-16,43.1008333,-75.2330556,Utica,NY,triangle,10,Triangular object seen near Interstate 90, in Utica, NY +2007-10-16,48.051944399999996,-122.1758333,Marysville,WA,light,480,multiple lights moving across the sky north to south/southeast +2008-10-16,38.3136111,-86.095,New Salisbury,IN,other,30,Square UFO spotted aprox. thirty miles from Fort Knox. +2008-10-16,38.6786111,-121.7722222,Woodland,CA,light,150,Strange Pulsating Red Light Vanishes Without A Trace, +2008-10-16,32.5155556,-95.4091667,Lindale,TX,chevron,50,Saw a mirror-colored craft that I have never seen the likes of. +2008-10-16,41.4516667,-82.0355556,Avon,OH,oval,300,Oblong UFO with red/white lights (Elyria, OH) +2008-10-16,43.6983333,-86.3638889,Hart,MI,light,900,VERY bright red-orangish light seen over silver lake---Lake Michigan Area +2008-10-16,34.8788889,-76.9016667,Havelock,NC,fireball,1,Bright, white, extremely large meteor-like object seen in night sky. +2008-10-16,37.1041667,-113.5833333,St. George,UT,unknown,120,Bright balls of light over St. George and near the radio tower +2008-10-16,33.5508333,-79.0416667,Murrells Inlet,SC,fireball,420,Orange lights in the sky hover over the SC coast near Myrtle Beach. +2009-10-16,28.2916667,-81.4077778,Kissimmee,FL,triangle,1800,Silver, Triangular Craft with White Lights Seen over Kissimmee, Florida October 16, 2009 +2009-10-16,34.0522222,-118.2427778,Los Angeles,CA,light,3600,Los Angeles 1:00 am red blue green and white light standing still for hour and a half. ((NUFORC Note: Twinkling star?? PD)) +2009-10-16,26.2708333,-80.2708333,Coral Springs,FL,unknown,120,black light odd shape of an owl looking thing +2009-10-16,36.1538889,-95.9925,Tulsa,OK,light,50,Two bright, motionless lights in Tulsa's northern sky. +2009-10-16,34.0552778,-117.7513889,Pomona,CA,unknown,2,Object moving at what looked like warp speed with trailing white tail +2009-10-16,33.7738889,-117.9405556,Garden Grove,CA,triangle,120,Triangle shape, broken into three discoid or round objects, shinny like polished stainless +2009-10-16,37.3394444,-121.8938889,San Jose,CA,light,120,BRIGHT LIGHTS IN SKY OVER SAN JOSE CALIF. +2009-10-16,41.6105556,-86.7225,Laporte,IN,light,300,balls of light discharged from another ball of light in the night sky +2009-10-16,32.9027778,-96.5636111,Rowlett,TX,circle,1500,I live in Rowlett, TX and on October 16, 2009 I saw a circular bright object that pulsated with multiple colors within it. +2009-10-16,32.8794444,-111.7566667,Casa Grande (Near),AZ,triangle,10800,upt of 4 ambers lights at once that seemd to join up at one point glowed bright at times then dimmer +2009-10-16,29.6194444,-95.6347222,Sugar Land,TX,triangle,10,Shifting triangular shape object, very high rate of speed, high altitude, traveling due north to south. +2010-10-16,34.1397222,-118.0344444,Arcadia,CA,light,45,I saw a white bright light ball flying in Arcadia, CA which was also seen by my fiance and friend. +2010-10-16,46.6022222,-120.5047222,Yakima,WA,other,7200,orb's in yakima do not dissapoint +2010-10-16,33.2333333,-82.5955556,Gibson,GA,other,3600,Red and blue flickering lights with a white light that gets blocked occasionally by the object hovering in the same spot directly above +2010-10-16,34.1747222,-86.8436111,Cullman,AL,sphere,600,Silver spheres that were above us, then disappeared and several minutes later a military jet was flying over the same space. +2010-10-16,37.4180556,-79.875,Troutville,VA,sphere,60,Unknown Reflective Sphere in Troutville Virginia Stalking Aircraft +2010-10-16,40.4233333,-104.7086111,Greeley,CO,sphere,600,round metal ball haning north west of Greeley +2010-10-16,44.9430556,-123.0338889,Salem,OR,sphere,480,Single round black sphere hovering with white clouds in the background. +2010-10-16,37.4180556,-79.875,Troutville,VA,sphere,60,Shiney sphere gets brighter then fades out. +2010-10-16,27.2936111,-80.3505556,Port Saint Lucie,FL,changing,180,red ball over port saint lucie florida +2010-10-16,39.9611111,-82.9988889,Columbus,OH,unknown,300,A line of 5-6 red lights moving slowly, not making any noise passed over us. Could not tell if the lights were connected to anything. +2010-10-16,43.6575,-71.5008333,Meredith,NH,light,3600,red/white twinkling light in eastern NH sky. ((NUFORC Note: Sighting of a celestial body? PD)) +2010-10-16,40.4405556,-79.9961111,Pittsburgh,PA,formation,60,A large fast moving V formation of lights. Appeared to be one craft, no sound. Was only visible from my vantage point for about a min +2010-10-16,44.0216667,-92.4697222,Rochester,MN,circle,10,Very bright circle that suddenly disappeared +2011-10-16,28.5380556,-81.3794444,Orlando,FL,cylinder,1200,I saw a dark rectangular object with three bright lights hovering in the sky for about 5-10 minutes before it transformed and flew off +2011-10-16,33.6058333,-78.9733333,Surfside Beach,SC,oval,1800,Color changing oval moving very slowly, (sometimes even stopping for minutes at a time,) through the sky +2011-10-16,34.2977778,-83.8241667,Gainesville,GA,disk,1800,Disk or saucer shaped craft with amazing bright lights on it which lit up the sky and the side of my home in Georgia. +2011-10-16,34.8641667,-118.1625,Rosamond,CA,sphere,120.1,Early evening glowing object seen in flight over valley +2011-10-16,42.4647222,-71.0105556,Saugus,MA,diamond,300,4 Sightings in 2 weeks +2011-10-16,41.2586111,-95.9375,Omaha,NE,unknown,180,reddish orange lights traveling in same path from Northwest to South in Omaha, NE +2011-10-16,41.5038889,-87.7130556,Matteson,IL,circle,900,A bright blue light all around it and a red light under it., it was not moving for about 10mins after that started moving very slow +2011-10-16,41.1305556,-85.1288889,Fort Wayne,IN,circle,60,My 3-year-old child, a friend and myself were sitting outside on my porch at our new home together one evening. It was a pretty chilly +2011-10-16,30.275,-89.7811111,Slidell,LA,oval,60,Red lighted solid object. +2011-10-16,37.6775,-113.0611111,Cedar City,UT,unknown,1200,Bright light over Cedar City Utah nightly around 8pm. ((NUFORC Note: Possible sighting of a star, we suspect. PD)) +2011-10-16,33.9608333,-83.3780556,Athens,GA,light,600,Close bright light with hovering trajectory in Athens, GA. +2011-10-16,39.1222222,-104.9166667,Palmer Lake,CO,chevron,13,Triangle shape moves across sky north of the US Airforce Academy +2011-10-16,32.3413889,-90.3216667,Clinton,MS,circle,120,morphing white blinking light that turn into circle of colored lights +2011-10-16,36.0725,-79.7922222,Greensboro,NC,unknown,60,2 speeding orange-red lights, zigzagging, with one seemingly bouncing off the other a few times. +2011-10-16,36.1866667,-94.1286111,Springdale,AR,oval,60,Big gray mass fly very fast across entire sky. +2012-10-16,43.1547222,-77.6158333,Rochester,NY,teardrop,5,White teardrop light came out of nowhere and disappeared right over LAKE AVE. +2012-10-16,42.0083333,-91.6438889,Cedar Rapids,IA,triangle,1800,An object in the sky moved gradually, hovering at times, flashing red, blue and white lights for 30 + minutes, 2 nights in a row. +2012-10-16,26.9616667,-82.3527778,Englewood,FL,light,900,Slowly flashing white light in space or possibly low earth orbit. +2012-10-16,38.5458333,-106.9247222,Gunnison,CO,flash,120,Strange lights observed at Castle Mountain area of Gunnison +2012-10-16,36.4194444,-82.3041667,Piney Flats,TN,cylinder,3600,Rotating cylinder climbing vertically in sky +2012-10-16,36.3133333,-82.3536111,Johnson City,TN,cylinder,3600,Observed tube extend from cylinder shaped object on 10/16/2012 on clear day +2012-10-16,36.3133333,-82.3536111,Johnson City,TN,cylinder,420,Silver, slowly rotating, pole shaped object - broad daylight +2012-10-16,36.3133333,-82.3536111,Johnson City,TN,cylinder,1200,Metallic cylindrical object seen hovering over Johnson City, TN. +2012-10-16,36.9052778,-82.3111111,St. Paul,VA,sphere,600,Sphere observed in Frying Pan section of Russell Co, VA +2012-10-16,37.6741667,-82.2775,Williamson,WV,cylinder,7200,An object was spotted hovering near Williamson, W.Va. during the daytime witnessed by many. +2012-10-16,40.8075,-91.1127778,Burlington,IA,triangle,360,10-23-2012 Burlington Iowa multiple traingular and saucer shape ufos seen over Mississippi river on 10-16-2012 at 15:30 +2012-10-16,37.6202778,-82.2691667,Belfry,KY,cylinder,3600,Very large mirrored object seen in the sky for over an hour +2012-10-16,41.8713889,-72.3691667,Tolland,CT,circle,60,Strange object in the sky following a plane. +2012-10-16,42.3583333,-71.0602778,Boston,MA,light,300,I was outside in the parking lot in jamaicaplain neibourhood.It was 7:05pm and it was dark.Accidentally i saw in the sky and the sky wa +2012-10-16,40.3744444,-76.3030556,Myerstown,PA,light,30,Yellow orangish lights. +2012-10-16,33.9611111,-116.5008333,Desert Hot Springs,CA,other,10800,Multiple UFO's and 3 different type of craft observed simultaneously over Joshua Tree National Park and the Coachella Valley, CA. +2012-10-16,28.5380556,-81.3794444,Orlando,FL,sphere,40,Orange glowing sphere seen by 4 adults in East Orlando. +2012-10-16,34.2083333,-77.7966667,Wrightsville Beach,NC,triangle,20,Triangular Shaped Craft over Wrightville Beach, North Carolina +2012-10-16,44.5336111,-72.0036111,Lyndonville,VT,fireball,60,2 Orange fireballs floating quickly down rte 5 +2012-10-16,40.805,-81.9352778,Wooster,OH,rectangle,30,Huge, quiet object over central Ohio +2012-10-16,33.7488889,-84.3880556,Atlanta,GA,light,15,Verified oddity +2012-10-16,47.0380556,-122.8994444,Olympia,WA,light,2,Big, bright, white, oval light with a blue flash falling fast in the sky over Olympia, WA +2013-10-16,40.7255556,-75.3944444,Bath,PA,light,60,Bright, stationary, flickering orange light slowly dimming until no longer visible. +2013-10-16,39.2866667,-86.7625,Spencer,IN,formation,600,Pulsating red lights in formation. +2013-10-16,40.2013889,-77.1891667,Carlisle,PA,cigar,420,Straight pink light traveling across sky. +2013-10-16,44.9630556,-92.9647222,Oakdale,MN,formation,600,White in nature - one varied to red. +2013-10-16,41.6361111,-70.9347222,New Bedford,MA,light,600,Multiple orange lights traveling in formation quietly at low speed & seemed to all disappear at the same spot. +2013-10-16,33.2486111,-111.6336111,Queen Creek,AZ,unknown,600,Flashing lights that turned into a steady burning ball and then vanished. +2013-10-16,39.0283333,-84.2177778,Amelia,OH,circle,2,Flash of light than a fast red light across the sky heading southwest. No tail like a shooting star or comet. Appeared to low and WAY +2013-10-16,38.5816667,-121.4933333,Sacramento,CA,circle,60,2 orb-like craft witnessed over Carmichael area of Sacramento. +2013-10-16,32.7252778,-97.3205556,Fort Worth,TX,cylinder,180,Me and a friend of mine were driving down Alemeda St between Westpoint Blvd and Academy Blvd when we saw an orange orb in the sky. Once +2013-10-16,33.3941667,-110.7858333,Globe,AZ,other,1500,Six objects each consisting of an arc shaped pattern of 7 lights spotted near Globe, AZ. +2013-10-16,39.7683333,-86.1580556,Indianapolis,IN,circle,300,I was driving West on McGregor Road. I seen two orange balls on light. When the one on the left got close to the one on the right it go +2013-10-16,41.1325,-111.9294444,South Weber,UT,egg,3,Bright egg shaped green light fly across the sky in 2-3 seconds. +2013-10-16,44.0783333,-116.9327778,Payette,ID,other,180,My wife and i took two pictures of seven orbs moving slowly across the sky. +2013-10-16,43.6122222,-116.3905556,Meridian,ID,formation,300,W Shape Formation, Meridian, ID. +1965-10-17,32.8472222,-117.2733333,La Jolla,CA,disk,5,(Quoting from a report made separatly by each of us less than 1 hour from the happening) "My wife and I saw 4 UFO's flying in half wing +1965-10-17,32.8472222,-117.2733333,La Jolla,CA,disk,6,Four UFO's fly in open daylight, close by, and with no sound whatever. They did not seem the least bit concerned at being plainly seen +1967-10-17,36.2977778,-91.5158333,Cherokee Village,AR,circle,2100,Bright light - 12ft Sphere +1973-10-17,32.3666667,-86.3,Montgomery,AL,light,900,Lights appear out of the woods and chase vehicle. +1975-10-17,41.0263889,-73.6288889,Greenwich,CT,circle,600,i made me feel it was a living thing. that it was alive +1986-10-17,36.7472222,-95.9805556,Bartlesville,OK,other,600,On a fall evening, after returning from a scout meeting I witnessed a object perform some extreemly unusual aerial feats, at at least p +1988-10-17,42.5636111,-84.8358333,Charlotte,MI,triangle,600,It was green, floated in the air and landed about a houndred yards away from me. I tried to duck down. I sat there staring at it for ab +1989-10-17,37.3394444,-121.8938889,San Jose,CA,triangle,10,Post earthquake flying Triangle gave us a quick visit. +1989-10-17,37.3394444,-121.8938889,San Jose,CA,flash,5,A bright flash illuminated a third of the sky originating from a point like a star. +1990-10-17,29.4747222,-81.1272222,Flagler Beach,FL,triangle,600,A silent triangle close enough to hit with a thrown object +1993-10-17,21.9811111,-159.3711111,Lihue,HI,disk,5400,Hello Mr. Davenport, I'm about to share something with you that happened quite a while ago but yet I have never reported this story wi +1994-10-17,35.4872222,-80.6219444,Kannapolis,NC,light,20,brilliant light coming and going +1994-10-17,42.3041667,-76.1869444,Berkshire,NY,triangle,600,V shaped light formation traveling in a south-west to north-east between Binghamton and Ithaca, NY +1995-10-17,28.555,-82.3880556,Brooksville,FL,fireball,5,flying fireball streaked past my grandmothers house in the woods 20 feet off the ground moving near 65 mph. +1995-10-17,30.2394444,-81.3858333,Ponte Vedra Beach,FL,other,180,noticed light out of place on way home approached the object was elliptical in shape almost lika football i was apprxmtly 15 yards from +1997-10-17,37.115,-107.6325,Ignacio,CO,triangle,3600,Three triangular shapes with extended "legs" floating southwest over SW Colorado NW New Mexico mountains. +1998-10-17,48.0152778,-122.0625,Lake Stevens,WA,light,120,Craft with unusual sound flies over dark and fog shrouded Lake Stevens while being pursued by fast moving car. +1998-10-17,43.5516667,-97.5072222,Bridgewater,SD,other,300,Broad daylight , clear sky, very strangely moving object-like a child skipping rope +1998-10-17,34.5008333,-117.185,Apple Valley,CA,sphere,8,Canyon Balls in Apple Valley California. +1998-10-17,30.3333333,-87.1375,Pensacola Beach,FL,fireball,120,Perfectly round flame colored object growing larger and then vanishing within an instant. +1998-10-17,34.0027778,-84.1447222,Duluth (Around, Lawrenceville Exit Area),GA,other,1800,I was driving home on the interstate. I saw a very large bright light in the sky. I thought it might have been Venus or a plane. As +1999-10-17,35.1225,-85.3438889,Signal Mountain,TN,cigar,3600,saw bright orange light making qiuck movements,followed us for approximitly five miles, intersepted car causing electrical failure in c +1999-10-17,38.5733333,-109.5491667,Moab,UT,fireball,5,I saw it through the ceiling of my tent. It was brighter than anything in the sky. It was probably a large meteor or fireball as it i +1999-10-17,35.2269444,-80.8433333,Charlotte,NC,cigar,600,Cigar shaped craft seen over my home town being chased by a formation of fighter pilots. +1999-10-17,30.3319444,-81.6558333,Jacksonville,FL,chevron,1080,Gray Chevron maneuvers and hovers above NFL game +1999-10-17,47.3483333,-122.1136111,Covington,WA,changing,1800,While viewing 'double dotted line" contrail we sighted metallic craft, followed later by more which sometimes appeared like spheres and +2000-10-17,29.9402778,-91.0247222,Napoleonville,LA,other,5,31 y/o insurance agent sees a red light shoot into the sky . +2000-10-17,40.1525,-106.9080556,Yampa,CO,light,3600,Two extremely bright star-like lights that flashed vivid red and green. +2000-10-17,26.1719444,-80.1322222,Oakland Park,FL,diamond,1,Broward County UFO +2000-10-17,40.8022222,-124.1625,Eureka,CA,light,600,Two bright solid orange lights , slow moving, bright flickering light before vanishing. +2000-10-17,32.2216667,-110.9258333,Tucson,AZ,diamond,600,Bright white with flashing red and blue lights ... no sound ... not moving. +2001-10-17,40.1536111,-82.6852778,Johnstown,OH,fireball,30,I was actually staying up all night trying not to go to sleep 2 fireball shaped ufos they were zig zaging all over then lights started +2001-10-17,39.7391667,-104.9841667,Denver,CO,sphere,1200,Bright sphere in sky, completely stationary, then disappeared +2001-10-17,36.175,-115.1363889,Las Vegas,NV,formation,300,High altitude trangular grouping - high speed takeoff +2001-10-17,26.3394444,-81.7788889,Bonita Springs,FL,circle,300,Large white stobe light over Gulf of Mexico at about 5 miles away- flashed bright green strobe and jumped about 5 miles to the south in +2001-10-17,45.7811111,-122.5322222,Battle Ground,WA,light,300,Observed two hovering UFO's, one following the other. It was dark, partly cloudy with few stars visible. The area I was in was rural +2001-10-17,30.3319444,-81.6558333,Jacksonville,FL,triangle,5,A nighttime triangle type craft. +2002-10-17,42.35,-71.1569444,Brighton,MA,light,360,Looked like falling star or ball of light, but as it turned another light seemed to be bright white with hues of red +2002-10-17,47.4830556,-122.2158333,Renton,WA,light,2,Very fast, bright , non blinking red light, traveling north, no sound +2002-10-17,47.6063889,-122.3308333,Seattle,WA,unknown,3,Peculiar, shapeless object with several distinct lights seen streaking over Greenlake Park in Seattle. +2002-10-17,39.9611111,-82.9988889,Columbus,OH,circle,120,behind the clouds and high speeds involved. +2003-10-17,32.7833333,-96.8,Dallas,TX,unknown,300,I noticed a "plane" headed directly for my building at some distance thought nothing of it until it got closer and I kept an eye on it +2003-10-17,34.7463889,-92.2894444,Little Rock,AR,other,15,about 2:45 am saturday morning, my boss and I were standing outside and talking. we saw a blue flash in the eastern sky that was simila +2003-10-17,33.9525,-84.55,Marietta,GA,light,10,2 luminous objects seen traversing sky(space?) @high speed, VERY high altitude +2003-10-17,34.2308333,-111.3244444,Payson,AZ,oval,600,Am not sure of the day. We were traveling by car from Tonto Basin. Wesaw a brilliant golden star NE of Payson. There was no other s +2003-10-17,40.5,-111.95,West Jordan,UT,unknown,6,IT WAS JUST A SERIES OF LIGHTS THAT WERE REVOLVING IN A SORT OF CIRCULAR PATTERN. THE LIGHTS WERE CLEAR WHITE AND I SAW THEM FOR ABOUT +2003-10-17,32.948055600000004,-96.7294444,Richardson,TX,circle,1200,It has been several years since I saw a hovering large ball outside, barely moving, for several days. Last night, while reading in my l +2003-10-17,27.0994444,-82.4544444,Venice,FL,triangle,120,Triangular craft spotted over Venice, FL +2003-10-17,31.2825,-86.2555556,Opp,AL,triangle,900,Triangle Shaped craft between Opp and Andalusia +2003-10-17,46.8722222,-113.9930556,Missoula,MT,circle,1200,there was a haze around object +2003-10-17,37.7597222,-78.8711111,Lovingston,VA,unknown,7,There was a bright light in the distance a few miles away with the intensity of a radio tower beacon. The light was bright white and a +2003-10-17,40.7933333,-77.8602778,State College,PA,other,5,Object observed on infrared camera. +2003-10-17,41.1238889,-100.765,North Platte,NE,circle,180,BRIGHT LIGHT CHASED BY AIRCRAFT. +2003-10-17,36.175,-115.1363889,Las Vegas,NV,triangle,120,Classic "V" shaped formation +2004-10-17,41.3280556,-73.6861111,Somers,NY,unknown,3600,There were four hovering starlike objects that formed a diamond shape in the sky. ((NUFORC Note: Possible celestial bodies?? PD)) +2004-10-17,37.9872222,-122.5877778,Fairfax,CA,changing,900,I had reported this last year already, but wasnt clear. I had seen 4 or 5 black stationary dots. to the west ,at a low altitude. Sudden +2004-10-17,35.7719444,-78.6388889,Raleigh,NC,formation,300,Looked like rectangle parachutes but nobody was under the canopies, objects never desended. +2004-10-17,40.5775,-85.8733333,Converse (Near),IN,light,300,TWO SIGHTINGS OF UNEXPLAINABLE LIGHTS OF DIFFERENT ORGIN +2004-10-17,29.4238889,-98.4933333,San Antonio,TX,circle,600,Sunset , multiple objects, mostly round, some triangular, 5 - 10 minute display +2004-10-17,41.7886111,-89.6961111,Sterling,IL,formation,12,Soft glow not visible by unaided eyes, and absoultely no sounds, movment straight but swift lead objects changed. +2004-10-17,28.2916667,-81.4077778,Kissimmee,FL,light,2,Strange light in the sky. ((NUFORC Note: Possible meteor?? PD)) +2004-10-17,37.7272222,-89.2166667,Carbondale,IL,formation,1396,there were 3 lignst forming a horizomtal line +2005-10-17,28.5380556,-81.3794444,Orlando,FL,light,8,Odd movement and speed of star-sized object in early morning sky +2005-10-17,40.66,-111.9955556,Kearns,UT,cross,180,((NUFORC Note: Student report. Possible hoax. PD)) Two, colorful, cross shaped objects in the sky. +2005-10-17,40.66,-111.9955556,Kearns,UT,diamond,5,((NUFORC Note: Student report. We cannot certify that it is a serious report. PD)) Two diamond shaped ufo's, and a red dot. +2005-10-17,39.8113889,-74.9833333,Clementon,NJ,other,30,Pink object chased by jet fighters over New Jersey. +2005-10-17,35.5066667,-97.7622222,Yukon,OK,changing,2700,45 mintues stalled aircraft that were being followed by us airplanes changed shapes +2005-10-17,43.0388889,-87.9063889,Milwaukee,WI,circle,1,Glowing object on Milwaukee's lakefront +2005-10-17,39.9375,-77.6613889,Chambersburg,PA,light,300,Object left no visible exhaust chased by jets leaving white exhaust trails +2005-10-17,39.8494444,-75.3561111,West Chester,PA,oval,60,Strange black image passed quickly across the sky on a clear autumn night. +2005-10-17,39.8494444,-75.3561111,West Chester,PA,disk,5,saucer object cutting through full moon, south to north +2005-10-17,42.5247222,-83.5363889,Wixom,MI,egg,180,((NUFORC Note: Witness is anonymous. Possible hoax? PD)) Poval-shaped object seemed to float above several farm buildings, +2005-10-17,35.8455556,-86.3902778,Murfreesboro,TN,light,3000,An optical illusion, not a UFO +2005-10-17,33.5386111,-112.1852778,Glendale,AZ,light,1800,light hovering somewhere east of glendale AZ +2006-10-17,33.4483333,-112.0733333,Phoenix,AZ,light,180,Two bright lights moving single file, slower then satelite speed. +2006-10-17,34.9341667,-88.5222222,Corinth,MS,sphere,60,Bright orb with odd flight pattren appears, slows down, changes color, and dissolves in the night sky. +2006-10-17,41.8088889,-88.0111111,Downers Grove,IL,chevron,180,A vertical chevron shaped object with lights on the top and bottom floating from West to East. +2006-10-17,37.3394444,-121.8938889,San Jose,CA,light,60,fast moving orange lights +2006-10-17,42.2458333,-122.7875,Talent,OR,light,5,Green and White Falling Object, Near Ashland, Or +2006-10-17,30.4711111,-86.3433333,Choctaw Beach,FL,fireball,600,A series of 15-18 orange fireballs. +2006-10-17,37.775,-122.4183333,San Francisco,CA,other,5,At roughly 10:10pm, on Tuesday, October 17, 2006, I went outside to have a cigarette. The observations that follow took place while I +2007-10-17,34.1866667,-118.4480556,Van Nuys,CA,circle,20,2 Circular-shaped UFOs seen over the San Fernando Valley during daylight +2007-10-17,41.85,-87.65,Chicago,IL,cross,5,Oversized jet fastest thing i ever seen no noise at all +2007-10-17,40.6366667,-74.9102778,Clinton,NJ,triangle,7,The craft passed by my house about 200 ft high, 30 mph, silent, with 5 dim white lights. ((NUFORC Note: Possible hoax?? PD)) +2007-10-17,30.2669444,-97.7427778,Austin,TX,light,300,UFO hovers over Lake Travis for 5 minutes, then speeds off. +2007-10-17,37.6819444,-121.7669444,Livermore,CA,triangle,3,out of these world +2008-10-17,32.7666667,-96.5988889,Mesquite,TX,unknown,60,2 lights above some houses that moved away from each other and they were low to the ground. +2008-10-17,39.1155556,-77.5638889,Leesburg,VA,circle,30,Large Green light over leesburg, VA +2008-10-17,33.9488889,-118.4447222,Playa Del Rey,CA,sphere,900,Two white spherical objects rotating about each other at low altitude rise until out of sight. +2008-10-17,33.7455556,-117.8669444,Santa Ana,CA,disk,900,2 UFOs sighted flying together over Santa Ana, California and photographed. +2008-10-17,41.9761111,-72.5922222,Enfield,CT,sphere,300,Small ufo fleet over Enfield CT. +2008-10-17,44.87,-104.1547222,Colony (1 Mile Nw Of),WY,unknown,300,Uknown object over northeast Wyoming. +2008-10-17,37.7975,-121.215,Manteca,CA,changing,120,Yellow haze light with no sound flying low to ground then disappeared into the night in Manteca, Ca +2008-10-17,40.2397222,-76.9202778,Camp Hill,PA,other,15,3 lights flying side by side-rapidly moving away from me & joined 4 additional lights-2 on each side and bolted away... +2008-10-17,40.2397222,-76.9202778,Camp Hill,PA,light,15,3 lights swiflty flew overhead & 2 sets of lights coming from opposite directions aligned the 3 lights side by side & bolted away.. +2008-10-17,33.6408333,-117.6022222,Rancho Santa Margarita,CA,light,3600,Moving bright lights moving in all directions in Southern California. +2008-10-17,33.0275,-96.4338889,Lavon,TX,light,900,Large still bright light hanging low over Lake Lavon, TX +2008-10-17,45.4222222,-116.3144444,Riggins,ID,oval,1800,Was out hunting and looked up and saw what seemed like a star blinking. Then we put a spotting scope to it and the object remained stat +2008-10-17,41.0255556,-81.73,Wadsworth,OH,light,300,I winessed a light traveling from east to west in the lower southern sky of N. E. Ohio +2009-10-17,34.0522222,-118.2427778,Los Angeles,CA,other,420,Estimated-Time: 01:45am, Estimated-Date: October 17, 2009, Length: 7-10ft, width: 2-3ft, Color: Faded Bluish Florescent, Altitude: 40- +2009-10-17,41.2333333,-80.4488889,Hermitage,PA,formation,60,10/17/09 Hermitage Pa 4 asterisk lights 1-2 minutes stationary in staggered grid posted 10/ 19/09 +2009-10-17,34.5211111,-117.9827778,Littlerock,CA,triangle,120,a see through triangle that dissapeared into thin air. +2009-10-17,41.7002778,-73.9213889,Poughkeepsie,NY,light,120,four lights expanding and then converging moving with me while I was driving...still visible outside +2009-10-17,45.5608333,-94.1622222,St. Cloud,MN,light,600,10/17/09 st.cloud mn light 5-10mins and orange light over down town st.cloud +2009-10-17,42.8863889,-78.8786111,Buffalo,NY,cigar,15,While traveling north on I-190, a friend and I saw a shiny object in the sky close to the horizon line. It appeared as if it was a brig +2009-10-17,35.2219444,-101.8308333,Amarillo,TX,sphere,5,An unknown light in the southwestern sky. Slowly got smaller before disappearing completely. +2009-10-17,32.8572222,-116.9213889,Lakeside,CA,light,1800,unusal lights appearing in San Diego east county northwest sky +2009-10-17,33.5777778,-101.8547222,Lubbock,TX,circle,120,Large circular steady intense light and smaller less intense mobile companion light. +2009-10-17,33.5777778,-101.8547222,Lubbock,TX,light,600,I was comming out of the hospital after an emergency visit for my son. Upon leaving the hospital I noticed a ball of light in the sky. +2009-10-17,38.5969444,-90.5091667,Manchester,MO,chevron,10,Bright white chevron shaped object traveling at very fast speed over St. Louis area. +2009-10-17,41.7847222,-73.9336111,Hyde Park,NY,sphere,180,illuminated white sphere circleing +2009-10-17,45.2291667,-94.0016667,Maple Lake,MN,fireball,0.5,Green fireball north of Maple Lake, Minnesota +2009-10-17,40.015,-105.27,Boulder,CO,triangle,10,Dim triangle of lights, high speed, low altitude but no noise over Boulder, CO 10/17/2009 10pm +2009-10-17,26.7052778,-80.0366667,West Palm Beach,FL,triangle,8,On the night of October 17 of 2009 at about 9:50 pm. A friend and myself were sitting in her back yard and I was starring off into the +2009-10-17,26.8794444,-80.0536111,Juno Beach,FL,light,1800,Saw two starlike objects over Juno Beach darting about, high in the sky for about 30 minutes. +2009-10-17,43.2805556,-71.8172222,Warner,NH,light,60,Two red/orange round balls of star-like light hovering over us then disappearing. +2010-10-17,36.135,-81.6777778,Blowing Rock,NC,unknown,60,Star like object that pulsed a bright red then disappeared. +2010-10-17,40.1213889,-75.3402778,Norristown,PA,disk,3600,Pulsating ufo slowly descended and stayed hovering for about an hour, +2010-10-17,33.7455556,-117.8669444,Santa Ana,CA,light,120,Green and Blue lights in the sky followed by total darkness +2010-10-17,33.4483333,-112.0733333,Phoenix,AZ,light,4,Soundless bright light moves quickly in front of me +2010-10-17,40.7402778,-75.31,Nazareth,PA,light,120,Hovering / Pulsing Blue light observed by 2 buses of students and adults +2010-10-17,41.2586111,-95.9375,Omaha,NE,fireball,1,Omaha NE I'm can't be the only one who saw this!!! +2011-10-17,41.7758333,-72.5219444,Manchester,CT,circle,60,Bigger than a plane or any aircraft..and as bright or brighter than the north star...or even the space station… +2011-10-17,28.3197222,-80.6077778,Cocoa Beach,FL,sphere,1200,Dimed size sphere object seen offshore near Cocoa Beach +2011-10-17,47.4811111,-118.2533333,Harrington,WA,light,20,Bizarre, star-like light seen streaking across the clear and cloudless evening sky, covering 120 deg. of arc in 15-20 sec. (est.). +2011-10-17,30.3319444,-81.6558333,Jacksonville,FL,light,120,My wife, daughter, and I witness a bright object moving North-North-East in the sky. It was a bluish-white colored light and stayed vis +2011-10-17,37.0058333,-121.5672222,Gilroy,CA,light,120,The light was falling straight down out of eastern sky. The light was extra bright like a planet in summer. This thing moved really +2011-10-17,38.4405556,-122.7133333,Santa Rosa,CA,light,60,Bright light moving fast in night sky no blinking no sound faster than an airplane slower than a satellite +2011-10-17,44.0522222,-123.0855556,Eugene,OR,light,20,Brightest object in the sky, briefly stopped before continuing +2011-10-17,38.6858333,-121.0811111,El Dorado Hills,CA,changing,900,Amazing craft bright blue & red 2 nights in a row. +2011-10-17,41.5119444,-87.9655556,New Lenox,IL,disk,180,Two witnesses watch 30ft disc fall from high altitude in seconds, change axis, stop 30ft over highway, pass slowly and silently between +2011-10-17,35.235,-75.6288889,Frisco,NC,oval,1800,Orange oval shaped light that split into four different lights over the ocean. This happened three different times over 30 minutes. +2011-10-17,34.2561111,-78.045,Leland,NC,formation,300,Three glowing lights moving slowly across the sky. +2011-10-17,28.5380556,-81.3794444,Orlando,FL,oval,10,Amber/orange color light moved like sine wave over Orlando, FL +2011-10-17,42.7244444,-83.0361111,Washington,MI,triangle,2,Saw three lights in triangle shape on Van Dyke Expressway that shot straight down in a fast time. +2011-10-17,40.8002778,-72.7902778,Center Moriches,NY,triangle,300,Large black triangle with pulsating, flashing white and red lights over north Center Moriches +2011-10-17,31.0980556,-97.3425,Temple,TX,triangle,5,I saw a triangular shaped "object" +2011-10-17,39.7558333,-77.5780556,Waynesboro,PA,light,8,Bright, big yellow light low in the sky above rural Waynesboro, Pa. +2011-10-17,35.8533333,-79.5719444,Liberty,NC,light,15,large orange bright light with a red aura around it hoovered above the tree line and then took off. +2011-10-17,43.1391667,-77.2725,West Walworth,NY,unknown,15,Very large aircraft with lights as bright as the sun hovered near West Walworth New York +2012-10-17,40.1744444,-74.9230556,Langhorne,PA,circle,10,Green and amber fireball in sky +2012-10-17,43.2122222,-77.4302778,Webster,NY,other,3,From northern sky over lake Ontario a green light appeared and fell very fast to the horizon. Shaped like a circle.Orb It seemed t +2012-10-17,43.1466667,-88.3066667,Merton,WI,changing,240,UFO sightings almost every night now days +2012-10-17,33.5205556,-86.8025,Birmingham,AL,light,900,Blue and red light, other object(s) +2012-10-17,30.4013889,-86.8636111,Navarre,FL,disk,5,Huge bright saucer +2012-10-17,39.6416667,-77.7202778,Hagerstown,MD,disk,4,Dark sauser shape object with dome coasting along 40 degree angle up from horizen moving west to east. . +2012-10-17,40.7,-73.9061111,Ridgewood,NY,oval,180,White/silver oval shape flying and then disappeared over Brooklyn. +2012-10-17,44.715,-67.4619444,Machias,ME,light,240,Observed solid light heading toward the south west. Steady, non blinking, traveling in a straight line. Observed a very quick flash f +2012-10-17,35.2225,-97.4391667,Norman,OK,sphere,300,A bright soundless orb of light hovering about 200 feet in the air which went east into norman. 500 Lights On Object0: Yes +2012-10-17,37.9736111,-122.53,San Rafael,CA,flash,10,Scanning striped light passes over my car accompanied by three flashes and two beams across the sky. +2012-10-17,37.5958333,-122.0180556,Union City,CA,unknown,3,Very large meteor or something on fire over San Francisco Bay. +2012-10-17,33.86,-118.1847222,North Long Beach,CA,light,2.5,Overly birght light diving towards ground, no impact, +2012-10-17,35.3805556,-106.4786111,Algodones,NM,circle,2.5,Seen objects that appear to flash red, green, violet. All spectrums of light. This event has been happening on clear nights. ((Stars??) +2012-10-17,40.6083333,-75.4905556,Allentown,PA,circle,1500,We saw what looked like an orange fire ball just hovering for some time before moving southward followed by a fast moving aircraft +2012-10-17,35.0536111,-94.6233333,Poteau,OK,unknown,1260,Lights going to fast to be a plane +2012-10-17,39.6005556,-77.8208333,Williamsport,MD,cigar,7200,Hovering cigar shape craft with lights. +2013-10-17,32.8572222,-116.9213889,Lakeside,CA,circle,600,Bright lights in early morning sky in eastern San Diego County. +2013-10-17,37.3394444,-121.8938889,San Jose,CA,other,5,Object, large in nature, with a bright white light tail entering the atmosphere in California. +2013-10-17,28.0777778,-82.7638889,Palm Harbor,FL,unknown,2700,Strange starlike object seen in southwestern florida sky, with dim object directly beneath. +2013-10-17,36.6222222,-81.1511111,Independence,VA,disk,300,Disk shaped object tracking airplane. +2013-10-17,48.5466667,-117.9044444,Colville,WA,light,300,Small white light passing quickly across the sky, dropping, and disappearing after ~4 mins. ((NUFORC Note: ISS over-flight? PD)) +2013-10-17,26.0625,-80.2333333,Davie,FL,light,7200,SOLID, BRIGHT, WHITE STATIONARY CIRCULAR LIGHT HIGH IN SKY FOR 2 HRS WEST DAVIE, FL. ((NUFORC Note: Venus?? PD)) +2013-10-17,39.54,-74.2572222,Holgate (Lbi),NJ,circle,60,Long Orange Cigar Shape with two smaller circular Orb shapes that appeared and disappeared fast over the water. +2013-10-17,43.6136111,-116.2025,Boise,ID,fireball,5,White ball of light traveling at high rate of speed vanishes over southern Boise, Idaho. +2013-10-17,47.6447222,-122.6936111,Silverdale,WA,light,900,Orange orbs, lights in the night sky again. +2013-10-17,34.035,-77.8938889,Carolina Beach,NC,circle,2,Bright orange circles over Atlantic Ocean 3 in a row. It was only seconds in the sky then they disappeared. +2013-10-17,27.2436111,-80.83,Okeechobee,FL,light,900,Bright Red and White pulsing light. +2013-10-17,38.0291667,-78.4769444,Charlottesville,VA,light,300,Yellowish, single, steady and silent ball of light with a contrail. ((NUFORC Note: Could not have been the ISS. PD)) +2013-10-17,33.2,-117.2416667,Vista,CA,oval,1200,I saw unidentified lights in the night sky. +1973-10-18,35.2269444,-80.8433333,Charlotte,NC,oval,1800,A large nocturnal bluish-green oval seen by tens of thousands. +1974-10-18,36.8655556,-87.4886111,Hopkinsville,KY,circle,1200,Three saucer shaped craft with sequentially flashing multicolored lights followed young couple who experienced lost time +1978-10-18,33.5205556,-86.8025,Birmingham,AL,oval,3600,Is there a 4 way stop sign in space for UFO. +1981-10-18,40.015,-105.27,Boulder,CO,disk,15,3 slow moving disks over south Boulder. +1984-10-18,42.9722222,-85.9536111,Allendale,MI,light,1200,Appeared to be a bright star with multicolored lights surrounding it, that moved in rapid 45 degree angle directions. +1989-10-18,41.4569444,-72.8236111,Wallingford,CT,oval,1200,The craft was pure white. It made no noise. The sea gulls did not sense it. It was going about 200 mph. It was at about 1000 ft. It tra +1989-10-18,35.3338889,-81.8652778,Forest City,NC,disk,7200,3 Silver shiny looking Saucers/U.F.O.'s! +1989-10-18,40.6805556,-122.3697222,Shasta Lake,CA,diamond,15,A close sighting with missing time prior to ྕ earthquake in San Fransisco. +1990-10-18,35.3338889,-81.8652778,Forest City,NC,disk,14400,1000's of neon colored U.F.O.'s/Saucers in Sky at once. +1995-10-18,38.0672222,-117.2291667,Tonopah (10 East Bound M.m. 89),NV,chevron,60,chevron shaped dark object with flourescent lites +1996-10-18,35.1494444,-90.0488889,Memphis,TN,unknown,300,I was spending the night at a friends house when we went outside to check on his dog and my we saw something in the sky.They were a +1997-10-18,37.9747222,-87.5558333,Evansville,IN,unknown,60,Daughter & I were fishing and when we heard & saw a plane I said "look honey, see the plane!" At that time somethuing appeared just beh +1998-10-18,45.5947222,-121.1775,The Dalles,OR,sphere,10,Green comet-like object w/ tail. (I judge it was a shooting star?!) Slow straight fall northeast of city, in the direction of Spokane, +1998-10-18,41.5244444,-90.5155556,Bettendorf,IA,sphere,420,SOFT BALL SIZE FLOATING BALL OF LIGHT. APPEARED TO BE UNDER SOME TYPE OF CONTROL. +1998-10-18,39.7338889,-90.2288889,Jacksonville,IL,light,37800,First one appeared in the eastern sky and moved slowly south, about 10 minutes later another light appeared in the same spot the first +1998-10-18,35.0866667,-89.81,Germantown,TN,light,7,I saw a white light move from left to right, back to the left then it dissapered. +1998-10-18,45.5236111,-122.675,Portland,OR,fireball,7,I was driving over the burnside bridge into downtown Portland, A metallic green fireball very slow in nature. slower than the dozens of +1999-10-18,34.0522222,-118.2427778,Los Angeles,CA,chevron,600,Witnessed an very dull gray object flying around in circles and figure 8's. Too fast and too silent for any aircraft. +1999-10-18,34.2783333,-119.2922222,Ventura,CA,unknown,300,About three weeks ago I woke from an strange but curiously happy dream. I heard my husband calling the cat to let it out the door near +1999-10-18,47.6105556,-122.1994444,Bellevue,WA,light,900,Vied a light that I thought was an aircraft with landing lights on at first. then I noticed no falshing green or red lights, and the li +1999-10-18,36.9086111,-111.4727778,Page (Lake Powell),AZ,circle,30,we were driving on the highway towards Lake Powell from Bryce National Park when we heard an extremely loud engine like sound above. we +1999-10-18,33.7488889,-84.3880556,Atlanta (South Side Of, Forest Park),GA,other,5,I'm a truck driver, was backing into American can, window down, looked up and saw a crescent shaped object, color of moon, 1/3 size spe +2000-10-18,26.525,-80.0666667,Boynton Beach,FL,other,10,45 degree angled straight line of 3 dim lights with hazy aura between with no sound observed flying from north to south at 1000 ft . +2000-10-18,26.7080556,-80.2308333,Royal Palm Beach,FL,fireball,600,it glowed like fire as it followed us +2000-10-18,47.6063889,-122.3308333,Seattle,WA,circle,15,If there are a such of things as green meteors, then there must be little green leprechauns driving them. +2000-10-18,33.1975,-96.615,Mckinney,TX,light,900,As we were both watching this thing, it went due South over the horizon in a fraction of a second +2001-10-18,29.4238889,-98.4933333,San Antonio,TX,light,5,Last Friday nite my wife and I traveled back to San Antonio from Victoria,Texas after a High school game. My daughters are on the danc +2001-10-18,29.7630556,-95.3630556,Houston,TX,light,120,UFO was slow but left very quickly. +2001-10-18,27.3361111,-82.5308333,Sarasota,FL,other,120,My friend and I saw 2 caucers and 1 triangler prism being chased by 2 U.S. jets. +2001-10-18,36.3863889,-80.4697222,Pilot Mountain (Near),NC,sphere,180,A lit pulsating,moving spiroghraph design. +2001-10-18,38.8611111,-86.4872222,Bedford,IN,rectangle,900,Craft searching a field +2002-10-18,66.8983333,-162.5966667,Kotzebue,AK,disk,10,Saucer shaped aircraft taking off. Unbelievable acceleration. A bluish neon round light (glow) underneath the aircraft. +2002-10-18,38.4833333,-85.7616667,Memphis,IN,unknown,5,Bright shooting object passes above clouds, several people get sick the nest day +2003-10-18,36.1819444,-81.2844444,Purlear,NC,unknown,7200,for 2 hours observed object moving slightly colored lights blinking randomly +2003-10-18,44.9430556,-123.0338889,Salem,OR,other,10,saw red light appear move rapidly through the sky in salem, or and then dissapear. +2003-10-18,35.2144444,-90.1963889,Marion,AR,light,60,White lights race through the sky in clear daylight, fighters in persuit +2003-10-18,47.9791667,-122.2008333,Everett,WA,sphere,30,Red, blue, and green lights, in one sphere shaped object. +2003-10-18,36.5330556,-82.3269444,Blountville,TN,changing,240,It was an object that changed shapes while seeming to be swooping down. It looked like a taradactal. +2003-10-18,36.5483333,-82.5619444,Kingsport,TN,changing,120,It stayed in the clouds darting back and forth changing shapes, it reminded me of a Dragon! +2003-10-18,38.6447222,-121.2711111,Fair Oaks,CA,disk,240,I saw a disk shaped black and white very sleek and shiny, at least a 1/4 mile in front of me able to travel very slow or very rapid +2003-10-18,32.8438889,-97.1427778,Bedford,TX,rectangle,60,on the drive home from work at the airline i work for i started seeing movement in my forward vision. Iwas driving and looking almost d +2003-10-18,40.2627778,-85.6758333,Alexandria,IN,circle,120,Please take this serious. +2003-10-18,46.2677778,-89.1777778,Watersmeet,MI,cigar,120,Daylight Cigar Shaped Craft +2003-10-18,37.6391667,-120.9958333,Modesto,CA,sphere,480,Two luminescent spherical ufo's in flight pattern over Modesto, CA. +2003-10-18,35.9605556,-83.9208333,Knoxville,TN,circle,120,Large seemingly round object burning up with tail that dissipated towards end of sight, too big to miss,orange tail +2003-10-18,47.4958333,-121.7855556,North Bend,WA,disk,300,What appeared to be a disk zigzagged over a small town +2003-10-18,38.9516667,-92.3338889,Columbia,MO,circle,300,3 silver circles floating in the air in a triangle pattern.Traveling east to west with the point of the triangle to the south. Insatntl +2003-10-18,30.0577778,-94.7952778,Liberty,TX,light,2,Lit object spotted near aircraft. +2003-10-18,40.8255556,-73.6986111,Port Washington,NY,unknown,180,2 giant craft flying very low at high speeds, with changing color lights! +2003-10-18,38.9583333,-122.6252778,Clearlake,CA,unknown,30,Strong bass sound that cycled up and down from the sky . No crafts in sight . +2003-10-18,42.7652778,-71.4680556,Nashua,NH,circle,60,8 to 12 Very bright round objects seen over Nashua, NH +2003-10-18,37.8716667,-122.2716667,Berkeley,CA,unknown,300,Flickering orange light (on fire?) moving across the sky; possible debris stream +2003-10-18,39.2013889,-85.9213889,Columbus,IN,light,300,Steady, non-flashing, rotating red light moves off to west. +2003-10-18,34.0522222,-118.2427778,Los Angeles,CA,sphere,180,a fast moving object over Los Angeles. +2003-10-18,42.8141667,-73.94,Schenectady,NY,light,3600,Cloud dwelling lights in the sky +2003-10-18,39.0875,-81.9227778,West Chester,OH,chevron,60,Several strange aircraft, directed light my direction and retreated when spied upon with telescope.. +2003-10-18,42.8666667,-88.3333333,Mukwonago,WI,fireball,1200,Fireball flew over our heads on a clear night. +2003-10-18,42.8666667,-88.3333333,Mukwonago,WI,fireball,900,Orange Ball in the West Sky. +2003-10-18,37.8044444,-122.2697222,Oakland,CA,sphere,15,Distant bright sphere, cruising... +2003-10-18,39.0997222,-94.5783333,Kansas City,MO,fireball,20,Shooting stars that changed direction. +2003-10-18,35.9086111,-90.8025,Bono,AR,light,5,stationary blue/green orb quickly shot off to the South-Southwest +2004-10-18,35.2505556,-91.7361111,Searcy,AR,light,600,strange lights were "dancing" in the northe west corner of the sky. +2004-10-18,37.9872222,-122.5877778,Fairfax,CA,egg,300,5 black orbs ,in formation, gather into one egg shape form and fly off at 20 miles an hour ,at 3 thousand feet. +2004-10-18,37.9872222,-122.5877778,Fairfax,CA,formation,600,black object +2004-10-18,40.8688889,-72.5180556,Hampton Bays,NY,light,300,"Star takes off" +2004-10-18,34.7744444,-96.6780556,Ada,OK,triangle,180,Traingular Craft hovered over the tree line in the Ada, OK Area +2004-10-18,43.6613889,-70.2558333,Portland,ME,other,900,fireball figure in the sky.moved from one end to another.has been seen in korea and china before. +2004-10-18,39.7391667,-104.9841667,Denver,CO,fireball,4,Bright Golden orb with tail - remained in sight approximately 4 seconds moving from South to North +2004-10-18,39.7391667,-104.9841667,Denver,CO,circle,1800,Then it dissapeared again. +2004-10-18,41.6005556,-93.6088889,Des Moines (East Of),IA,light,60,Seen from 29ꯠ ft-- two "stars" stared moving, parallel to one another, and abruptly stopped 15 sec. later. Faded out. +2005-10-18,61.2180556,-149.9002778,Anchorage,AK,other,7200,These Structures were gyrating, twirling, twisting and dancing like a lariat in a ribbon like manner at extremely high speed. +2005-10-18,41.7255556,-87.825,Hickory Hills,IL,formation,15,one object with three strobe lights pulsating - been over 10min in one position then moved very fast thru other position . +2005-10-18,39.5236111,-87.125,Brazil,IN,circle,600,((NUFORC Note: Student report. Possible hoax. PD)) Red object formed out of a yellow one, then they joined again +2005-10-18,41.6027778,-87.7438889,Oak Forest,IL,light,1200,((NUFORC Note: Possible sighting of Mars? PD)) A BRIGHT WHITE LIGHT HANGING IN THE SOUTHWEST SKY. +2005-10-18,38.2541667,-85.7594444,Louisville,KY,changing,720,On October 18, 2005, 7:23 PM (EST) looking from Blankenbaker Lane in Louisville, KY towards the West a vertical light (like an exclamat +2005-10-18,38.2933333,-83.6588889,Hillsboro,KY,sphere,3600,Two orbs seen hovering in sky. +2005-10-18,40.0063889,-75.7036111,Downingtown,PA,cylinder,60,cylinder object in night sky +2005-10-18,28.5380556,-81.3794444,Orlando,FL,other,10,I was standing out side and saw, what I thought was going to be a shooting star, but it went way to far. Horizon to horizon, There was +2006-10-18,35.0844444,-106.6505556,Albuquerque,NM,other,4,A wedge formation of seven garden spade shaped craft. +2006-10-18,34.2255556,-77.945,Wilmington,NC,cigar,300,Bright Silver - went left to right fast. went away, came back did same thing then disappeared. +2006-10-18,35.1494444,-90.0488889,Memphis,TN,light,60,I work armed security in down town memphis and on 10/18/06 the store that i was watching had another thirty minutes to close,so i went +2006-10-18,34.9530556,-120.4347222,Santa Maria,CA,teardrop,600,3 large orange teardrop shaped lights over Samta Maria +2006-10-18,33.5805556,-112.2366667,Peoria,AZ,light,10,V-shaped array of soft-white lights, between 7 to 11 of them, flying silently in a straight line with no discernible relative motion. +2006-10-18,34.2694444,-118.7805556,Simi Valley,CA,light,6,Satalite does a 180 deg in night sky. +2006-10-18,37.7272222,-89.2166667,Carbondale,IL,triangle,15,Apparent fixed wing aircraft flying at a few thousand feet making no noise. +2006-10-18,42.7022222,-83.4027778,Waterford,MI,triangle,180,Waterford MI sighting of triangle shaped craft +2007-10-18,34.0522222,-118.2427778,Los Angeles,CA,circle,600,White 'dots' moving in formation and changing course at hard angles, LA, CA, Oct 2007. +2007-10-18,33.6888889,-78.8869444,Myrtle Beach,SC,other,300,Strange Red lights over Myrtle Beach +2007-10-18,33.6888889,-78.8869444,Myrtle Beach,SC,light,420,Bright lights over the ocean in Myrtle Beach, SC... 3 of them forming a diagonal line. +2007-10-18,32.9344444,-97.2513889,Keller,TX,light,1200,Three lights over Keller, Texas area. +2008-10-18,33.66,-86.8127778,Gardendale,AL,sphere,1200,The object was sphere shaped and changed colors. ((NUFORC Note: Possible "twinkling" star. PD)) +2008-10-18,32.9263889,-96.8958333,Farmers Branch,TX,light,60,Long green curved-at-the-edges line. Horizontal +2008-10-18,31.0727778,-96.9783333,Rosebud,TX,oval,300,Oval silver unidentified flying object seen about a mile from Rosebud, Texas off of Farm Rd 413. +2008-10-18,38.8113889,-90.8527778,Wentzville,MO,unknown,600,Possible UFO fleet? +2008-10-18,41.12,-87.8611111,Kankakee (Approx. 5 Mi. S Of),IL,flash,1,I was traveling north on I-57 just south of Kankakee, IL. I saw a single bright white light that either moved straight down or straight +2008-10-18,32.7833333,-96.8,Dallas,TX,light,7,Orange Lights in Dallas +2008-10-18,39.7683333,-86.1580556,Indianapolis,IN,light,1,Strange yellow lights streaked across the Indiana night sky +2008-10-18,32.2216667,-110.9258333,Tucson,AZ,changing,1800,Bright multi-colored cigar shaped object that moved too quickly and erratically to be a jet. ((NUFORC Note: Possible star. PD)) +2008-10-18,35.6008333,-82.5541667,Asheville,NC,diamond,5,SILVER OBJECT IN ASHEVILLE N.C. +2008-10-18,38.4730556,-77.9969444,Culpeper,VA,formation,1800,The Virginia Lights. Large Formation of Lights Seen in Virginia +2009-10-18,35.7719444,-78.6388889,Raleigh,NC,unknown,120,Bright light/hovering craft seen in raleigh near state fair around midnight. +2009-10-18,43.0388889,-87.9063889,Milwaukee,WI,unknown,30,yellow circle that materialized with a small circular craft and then vanished afterwards +2009-10-18,44.9444444,-93.0930556,St. Paul (694e And Also 96),MN,light,120,Possible UFO crash near St. Paul MN +2010-10-18,36.5461111,-98.2697222,Helena,OK,triangle,3,Suspicious Object In The Sky +2010-10-18,41.7208333,-73.9605556,Highland,NY,triangle,60,low flying triangle slow moving blueish white light in front smaller white lights under no sound no strobes +2010-10-18,33.0963889,-79.8036111,Huger,SC,light,15,High red lights moving accross sky +2010-10-18,38.0194444,-122.1330556,Martinez,CA,unknown,30,just a object that moved across the sky at a steady speed +2010-10-18,40.4405556,-79.9961111,Pittsburgh,PA,changing,300,Weird object (shaped like plastic bag) moving across sky. +2010-10-18,32.0866667,-82.1180556,Reidsville,GA,triangle,300,Arrowhead shaped craft with three obvious lights flew overhead, pursued by military aircraft. +2011-10-18,29.7855556,-95.8241667,Katy,TX,disk,10800,Nightly sightings of bright light and two saucers over Katy Texas +2011-10-18,45.5236111,-122.675,Portland,OR,formation,600,Orange orbs seemingly attached to triangular object witnessed in Portland Oregon 10/18/2011 +2011-10-18,39.7283333,-90.9080556,Baylis,IL,other,300,Strange lights and crasing object near Bayliss IL. +2011-10-18,33.2486111,-111.6336111,Queen Creek,AZ,cylinder,900,Cylinder flashing object stationary for 15 minutes. Red and Blue lights close to object flashing. Video Taped +2011-10-18,41.7816667,-99.1327778,Burwell,NE,sphere,900,Something is out there. +2011-10-18,36.8188889,-76.2752778,Chesapeake,VA,light,900,Bright light travelling across the night sky that dimmed, then became bright again several times as I watched. +2011-10-18,39.1072222,-76.5713889,Pasadena,MD,light,2,On the morning of 10/18 /11 between 600 & 630 hrs I saw a bright object shoot across the sky. +2011-10-18,35.4833333,-86.4602778,Shelbyville,TN,oval,120,photos made after thunderstorm, object in two photos +2011-10-18,41.5680556,-87.7202778,Country Club Hills,IL,disk,600,A saucer seen by 3 peole hat wen very slow,. +2011-10-18,35.9605556,-83.9208333,Knoxville,TN,oval,300,Oval Shaped Bright Blue (like LED bright) moving above populated area +2011-10-18,41.3572222,-88.4211111,Morris,IL,other,720,Strange object observed in sky near Dresden Nuclear Station, Illinois +2011-10-18,47.0969444,-122.63,Dupont,WA,formation,300,Large linear lights flying low in DuPont. +2011-10-18,33.5386111,-112.1852778,Glendale,AZ,triangle,15,whoosh sound doppler the sound of plane propeller, prompted turn to north, object uncloaked, traveled east cloaked to dissapear +2011-10-18,44.1372222,-123.0652778,Coburg,OR,triangle,1800,Hello we were watching the sky at some wierd flashing object around 9:30, it was flshing red and green then turning to solid colors th +2011-10-18,47.7625,-122.2041667,Bothell,WA,disk,480,I saw what appeared to be a flying saucer that glided over and past my car on my my way home from work at night. +2011-10-18,37.775,-122.4183333,San Francisco,CA,fireball,120,drifting flame colored/shaped light hovering and drifting beneath the overcast sky of SF. disappeared, then reappeared, visible 2 mins. +2012-10-18,32.7152778,-117.1563889,San Diego,CA,circle,900,Small circle flying low over house in Encinitas, CA with flashing lights +2012-10-18,33.9813889,-81.2363889,Lexington,SC,sphere,20,Largest starlike object floats through sky and disappears into.space. ((NUFORC Note: Satellites?? PD)) +2012-10-18,41.6688889,-87.7386111,Alsip,IL,rectangle,180,Elongated rectangular object flying slower than an airplane, but faster than a blimp. +2012-10-18,41.5894444,-88.0577778,Lockport,IL,oval,180,5 red/orange ovals traveling SW to NE in a straight line , spaced equally apart. +2012-10-18,42.0833333,-71.0188889,Brockton,MA,triangle,300,Fiery orange triangle with blinking lights on rear, moved from east to west and pitched from side to side. +2012-10-18,39.5741667,-77.5508333,Wolfsville,MD,triangle,5,At around 8:15PM eastern time I was outside and all the sudden I heard a really loud noise that sounded almost like a freight train. I +2012-10-18,41.4847222,-81.9222222,Bay Village,OH,sphere,600,While taking an evening walk, I noticed a pair of two orange objects flying NNW in the sky below the cloud cover. +2012-10-18,34.2788889,-94.0505556,Umpire,AR,oval,300,Very low to the ground, and one craft with three large orange lights. +2012-10-18,64.8377778,-147.7163889,Fairbanks,AK,light,600,Changing light from bright to dim, to off to blue/red +2012-10-18,41.8452778,-71.3525,Rumford,RI,light,1800,On 10/18/12 at 10:30 p.m. Two bright lights were seen in the eastern sky. At first they were stationary, but then they started moving b +2012-10-18,44.4669444,-73.1713889,South Burlington,VT,oval,120,Oval object with many lights that shifted diagonally in the sky +2012-10-18,27.9472222,-82.4586111,Tampa,FL,diamond,180,The pinkish orange lights dimmed out as the diamond shaped object moved overhead toward the east. +2012-10-18,42.1013889,-72.5902778,Springfield,MA,oval,30,I was on my way to bed n I sleep next to the window n when I lay down I can see the roof of the neighbor so I was trying to get sleep n +2013-10-18,44.9902778,-123.025,Keizer,OR,fireball,30,Went out to smoke, heard segulls, looked up, saw random orange ball move quickly like a shooting star and make a big angled curve. +2013-10-18,42.8441667,-71.4802778,Litchfield,NH,circle,180,Bright object moving in sky. +2013-10-18,26.3583333,-80.0833333,Boca Raton,FL,fireball,600,Orange fire balls flying in the sky +2013-10-18,46.7313889,-117.1786111,Pullman,WA,light,600,Red planetary looking object sighted near full moon in eastern sky above Pullman, WA +2013-10-18,38.7083333,-121.3288889,Antelope,CA,cylinder,600,On 10/18/13 at 19:00 we (adult and 2 teenagers) noticed a red/orange glowing cylinder object due west from our upstairs bedroom window. +2013-10-18,44.6397222,-73.1108333,Milton,VT,light,900,Cluster of red lights over Lake Arrowhead in Milton, VT. +2013-10-18,46.7833333,-92.1063889,Duluth,MN,light,30,White light moving over Duluth, MN then vanished. ((NUFORC Note: Sighting of ISS. PD)) +2013-10-18,36.5297222,-87.3594444,Clarksville,TN,unknown,45,Blue and Red color changing light Strange movements inconsistent with Conventional A/C +2013-10-18,32.7833333,-96.8,Dallas,TX,circle,7200,Orb of light in far North Dallas. ((NUFORC Note: 2 hours. We suspect an advertising light. PD)) +2013-10-18,40.1738889,-80.2463889,Washington,PA,formation,30,3 red lights in a triangle formation heading North then disappeared, no clouds. +2013-10-18,38.3980556,-85.755,Sellersburg,IN,fireball,90,Glowing orb traveling fast from horizon at southwest traveling overhead across sky before disappearing in the northwest. +2013-10-18,40.1738889,-80.2463889,Washington,PA,triangle,300,My Parents arrived home from at trip to the grocery store, and my mother noticed and bright light moving through the sky. As I exited m +2013-10-18,42.9463889,-71.5163889,Bedford,NH,fireball,600,UFO Sighting, Bedford, NH +2013-10-18,33.6188889,-83.8675,Oxford,GA,sphere,60,6 to 10 blinking lights moving at different speeds +2013-10-18,27.3361111,-82.5308333,Sarasota,FL,fireball,180,Bright red solid lights in sky - two +2013-10-18,33.9561111,-83.9880556,Lawrenceville,GA,other,180,We saw reddish-orange orb-like round lights about the size of softballs in the sky moving at a low altitude in two distinct groups of 5 +2013-10-18,27.3361111,-82.5308333,Sarasota,FL,light,900,Viewed 5 orange colored lights in sky slightly larger than stars, they were gone 15 minutes later. +2013-10-18,39.1619444,-84.4569444,Cincinnati,OH,fireball,300,the object was a orange firey ball , no sounds +2013-10-18,39.1555556,-84.4597222,Norwood,OH,fireball,900,fireballs in sky making different formations. +2013-10-18,39.1555556,-84.4597222,Norwood,OH,fireball,900,Fireballs in sky making different formations. +2013-10-18,41.7055556,-70.2291667,West Yarmouth,MA,circle,45,Orange flickering light (like flame) moved across sky for about forty five seconds over Cape Cod, then vanished. +2013-10-18,40.0455556,-86.0086111,Noblesville,IN,formation,900,I watched a line of strange lights (15-20) fly from the north horizon, pass almost directly over me, and move south out of sight. +1980-10-19,35.3097222,-91.5677778,Bald Knob,AR,triangle,600,ORANGE TRIANGULAR CRAFT,NO NOISE +1992-10-19,40.7141667,-74.0063889,New York City (Jamaica) (Queens),NY,disk,8,Octagan craft with lights over a hundred feet wide seen upclose +1994-10-19,41.1383333,-81.8638889,Medina,OH,sphere,1200,a huge bright orange sphere appeared and dissapeared +1995-10-19,38.8338889,-104.8208333,Colorado Springs,CO,other,10,Multiple, star-shaped, dim yellow lights in straight line +1997-10-19,41.9444444,-71.2861111,Attleboro,MA,light,600,A small globe of white light hovering over the grass paced my car for several minutes. +1997-10-19,39.0016667,-76.6877778,Crofton,MD,other,7200,I heard a strange noise in kitchen.I thought that my cat knocked over the trash bin again.So I whipped my silk rob on, and walked down +1998-10-19,40.4555556,-109.5280556,Vernal,UT,unknown,7200,We were Elk hunting when we saw what appeared to be a plane crashing. So we got in our truck and proceeded over the ridge to investigat +1998-10-19,36.175,-115.1363889,Las Vegas,NV,sphere,2,Bright green comet streak. +1998-10-19,45.6388889,-122.6602778,Vancouver,WA,light,5,I saw a green phosphorous light in the sky west from Vancouver Washington, and a bit to the south, appearing to drop with a very slight +1998-10-19,47.7980556,-114.2938889,Big Arm,MT,disk,600,Facing East, clear sky, characterized by bright light blinking at very cadence from one to five. Movement pattern was up, down, then t +1998-10-19,36.8527778,-75.9783333,Virginia Beach,VA,fireball,600,2 fireballs flying north to southwest about the speed of jetliner. +1998-10-19,41.2844444,-84.3558333,Defiance,OH,triangle,60,I was pulling out of a drive when I noticed a triangular craft with a light at each corner two white one blue I pulled over to get a be +1998-10-19,41.7105556,-112.0894444,Deweyville,UT,sphere,15,My son and I,were driving home going northbound along HWY39 we noticed a very bright large green sphericial object traveling east to no +1998-10-19,27.9472222,-82.4586111,Tampa,FL,circle,1800,A LITTLE LARGER THAN A FULL MOON (WHITE IN COLOR). TWO FAST MOVING CIRCLES MOVING IN LARGE CIRCLES. ANOTHER DRIFTING SLOWLY. NO SOUND +1998-10-19,41.1813889,-84.7405556,Antwerp,OH,triangle,600,Large Triangular UFO over Antwerp +1999-10-19,34.1866667,-118.4480556,Van Nuys,CA,triangle,5,extremely fast, silent, large medium gray(matte finish) triangle with shaded areas at each bottom corner flying from NW to SE. +1999-10-19,33.4222222,-111.8219444,Mesa,AZ,light,300,Saw Falling star fall then stop and move away from us +1999-10-19,48.9202778,-122.3413889,Everson,WA,other,1500,looked like jet trail coming straight down like plane crashing. Stopped and two more appeared in other same vacinity different angles. +1999-10-19,45.6797222,-111.0377778,Bozeman,MT,unknown,900,THREE SMALL FLYING OBJECTS CAME TOGETHER FROM DIFFERNT AREAS TO FORM A STACKED FORMATION, THEN ROTATED CLOCK WISE TO ABOUT 2 OCLOCK FO +1999-10-19,39.7683333,-86.1580556,Indianapolis (Southeast),IN,light,5,while going on our nightly walk, my wife and i saw a bright object (as bright as moon ) streak accross the southeastern sky. it seemed +1999-10-19,39.9527778,-105.1680556,Superior,CO,light,720,Triangular formation of lights observed shortly after sunset, rotated every few seconds. Other aircraft lights observed in area but did +1999-10-19,33.415,-111.5488889,Apache Junction (East Of),AZ,other,28800,A group of three encounter a formation of 10-12 ships that interacted with the group, and made close visual inspection possible. +1999-10-19,30.5080556,-97.6786111,Round Rock,TX,sphere,300,800 ft away, I now know the truth +1999-10-19,35.0886111,-92.4419444,Conway,AR,triangle,900,Many blue lights. About 60 meters long (base to point). 30 meters high. +2000-10-19,40.7608333,-111.8902778,Salt Lake City,UT,sphere,180,Round and metallic about 1/4 to 1/3 third the size of the planes they were were follwoing. +2000-10-19,42.3708333,-72.5986111,Hatfield,MA,light,4,it was a ball of light coming down on us. +2001-10-19,38.5991667,-83.3188889,Vanceburg,KY,fireball,300,flashing light making sharp irregular turns +2001-10-19,47.1633333,-122.0255556,Buckley,WA,triangle,25,Triangular objects with blue, white, and red lights, very bright strobes in unison along with bigger white lights at 3 points +2001-10-19,33.4483333,-112.0733333,Phoenix,AZ,triangle,15,On Oct.19 2001, Phoenix Az.I was sitting out side of the shop I work at and was having a cig. It was about 8:45pm, I was waiting to +2001-10-19,47.7625,-122.2041667,Bothell,WA,unknown,180,flshing lights, darting around very quickly. +2001-10-19,42.7758333,-114.7033333,Wendell,ID,light,480,Brite lite in sky over southern Idaho. +2002-10-19,42.1872222,-93.5955556,Story City,IA,triangle,5,Green triangle craft dropped out the sky and dissappeared. +2002-10-19,33.7669444,-118.1883333,Long Beach,CA,disk,240,8 crystal clear crafts at Queen Mary +2002-10-19,29.9544444,-90.075,New Orleans,LA,unknown,120,south to north movement, possiblt light reflected from the sun, it appeared to be rotating like on an axis. +2003-10-19,37.6391667,-120.9958333,Modesto,CA,changing,7200,UFO 's video taped over Modesto, California on Oct. 19th 2003 , showing bright starlike objects +2003-10-19,44.8277778,-92.9436111,Cottage Grove,MN,triangle,600,A large black trianle shaped aircraft with three lights quietly and slowly hovering very low. +2003-10-19,27.5061111,-99.5072222,Laredo,TX,sphere,1500,Metallic sphere seen by many over Laredo Texas. +2003-10-19,26.6402778,-81.8725,Fort Myers,FL,oval,8,10/19/2003 Very high very fast silver diamond/oval shape, observed with naked eye and through binoculars 6-8 sec before it disapeared +2003-10-19,31.7952778,-94.1788889,Center,TX,oval,10,Odd Object in the Sky Over Northeast Texas in Broad Daylight +2003-10-19,42.6041667,-72.5569444,Turners Falls,MA,light,300,In the clear afternoon sky I saw two bright lights moving in a random motion. +2003-10-19,39.7683333,-86.1580556,Indianapolis,IN,unknown,3,Sky Boom possible Sonic Boom +2003-10-19,34.0922222,-117.4341667,Fontana,CA,other,3,neon green glowing blob +2003-10-19,33.8675,-117.9972222,Buena Park,CA,other,15,Bright star like object overhead that went dim, then disappeared from the sky. +2003-10-19,45.2869444,-69.5016667,Monson,ME,triangle,900,First of all I'm 17/M and I am a Junior at HS. I was sitting at home after the 2nd World Series game, when I was about ready to go to b +2004-10-19,40.925,-98.3416667,Grand Island,NE,light,3600,NA +2005-10-19,39.3330556,-82.9825,Chillicothe,OH,fireball,10,Fireball. +2005-10-19,40.6638889,-74.2111111,Elizabeth,NJ,light,60,light in the sky of elizabeth +2005-10-19,32.7561111,-91.8722222,Bastrop,LA,triangle,2700,UFO followed us for more than 30 minutes in Bastrop, La +2005-10-19,42.7166667,-70.9736111,Marlboro,MA,circle,1200,looking over cornfield round bright object lookin through binoculars many separate bright lights moved foward back north then soth in +2005-10-19,40.4136111,-76.4786111,Jonestown,PA,light,60,Bright circular lights light up the sky in Pennsylvania +2005-10-19,37.1183333,-82.8269444,Whitesburg,KY,triangle,300,Black triangle with red lights on corners and two brighter "escorts" silently fly overhead in night sky. +2005-10-19,43.0388889,-87.9063889,Milwaukee,WI,triangle,300,Tilted Strobing Lights in the Sky... Circular or Triangular Object +2006-10-19,33.1758333,-84.9886111,Harrisonville,GA,other,10,Red rectangular lights moving slowly over trees in southwest georgia. +2006-10-19,34.9616667,-89.8294444,Olive Branch,MS,other,2,An oddly shaped, black craft with no lights flying at very low altitude was observed at daybreak. +2006-10-19,36.175,-115.1363889,Las Vegas,NV,chevron,900,very brght white-bat wing shape-stationary 10-15 mins. then gone +2006-10-19,40.015,-105.27,Boulder,CO,triangle,60,Three people see a illuminated V shaped object fly over them at night, fast, low, silent, making 2 passes. +2006-10-19,39.6363889,-74.8027778,Hammonton,NJ,unknown,600,Continual blinking rows of lights on opposite sides of sky. +2006-10-19,42.6605556,-84.0730556,Fowlerville,MI,unknown,4200,The objects were doing some fancy manuvering as if to show off. This included very quick 90 Deg. turns. +2007-10-19,46.5530556,-91.5763889,Brule,WI,circle,3600,3 objects 1 white 1 red and 1 blue. red and blue pictures show it best zoom in and go hmm whats that! +2007-10-19,45.6188889,-123.1130556,Banks,OR,sphere,8,SR-71's over Washington County? I dont think so! +2007-10-19,33.4483333,-112.0733333,Phoenix,AZ,light,1200,Object observed moving slowly over central Phoenix and alternating red and white +2007-10-19,26.3583333,-80.0833333,Boca Raton,FL,oval,300,UFO's over Boca Raton, Florida. +2007-10-19,32.8341667,-97.2286111,North Richland Hills,TX,teardrop,300,I saw a whie light desend and then 6-7 oranges lights rise in a straight line. +2007-10-19,32.9344444,-97.2513889,Keller,TX,fireball,300,Goldent Knights make night time dive into Keller, TX homecoming game +2007-10-19,32.9411111,-97.1338889,Southlake,TX,fireball,300,We live near DFW and are familiar with aircraft lights at night... these were not commercial or private planes. +2007-10-19,32.9344444,-97.2513889,Keller,TX,fireball,7,Falling object in the Western sky +2007-10-19,33.0038889,-97.2255556,Roanoke,TX,unknown,40,UFO sighting South of Dallas/Ft Worth at 19:35 on 19 Oct 2007 +2007-10-19,32.9344444,-97.2513889,Keller,TX,light,180,7 UFO light activity in Keller, TX. +2007-10-19,32.9344444,-97.2513889,Keller,TX,fireball,120,fiery slow moving streak across sky splits into 4 slow streaks then stops and hovers. +2007-10-19,32.8138889,-96.9486111,Irving,TX,light,60,Green Tail; Red Flash +2007-10-19,37.8216667,-121.9988889,Danville,CA,chevron,300,Hovbering object with red and white , very bright lights followed by 2 possible airplanes . +2008-10-19,48.2325,-101.2958333,Minot,ND,triangle,7200,Obj. with 6 lights,triangular in shape with a tail, moved from the S area in the sky to the N and then just hovered. +2008-10-19,35.0844444,-106.6505556,Albuquerque,NM,other,5,Unknown shape ( known sound ) +2008-10-19,37.1297222,-80.4091667,Christiansburg,VA,rectangle,180,I was driving on I-81 heading south. I could see stars. Clear and cold. I first Spotted the craft at about 1 o'clock and it seemed to l +2008-10-19,25.7738889,-80.1938889,Miami,FL,cylinder,4,Cylinder hsape UFO from south to north Miami Florida +2008-10-19,38.05,-85.5458333,Mount Washington,KY,other,10,Taking pictures of the moon in the morning, noticed something else in the sky. +2008-10-19,38.7955556,-77.6141667,Gainesville,VA,cigar,180,Matellic Object Seen In Gainsville Virginia +2008-10-19,35.198055600000004,-111.6505556,Flagstaff,AZ,circle,7,Bright white, circular orb flew out from behind a contrail (chemtrail), then flew back behind it. +2008-10-19,19.7297222,-155.09,Hilo,HI,sphere,600,Object over Hawaii skys +2008-10-19,38.2680556,-77.1847222,King George,VA,circle,600,Metallic colored ball in the sky +2008-10-19,42.2119444,-88.2380556,Cary,IL,disk,35,at 4:00pm i saw a silver football shaped object in the skies above Cary Ill. +2008-10-19,32.7561111,-91.8722222,Bastrop,LA,unknown,60,UFO flipping very close to a jet +2008-10-19,32.2216667,-110.9258333,Tucson,AZ,unknown,600,Moving dull star with irregular strobe pattern +2008-10-19,29.7027778,-96.7802778,Weimar,TX,oval,2,Noiseless glowing oval shaped white light traveling in straight line at unreal speed just over treetops +2008-10-19,34.1347222,-79.94,Timmonsville,SC,unknown,900,Cluster of flashing white and yellow objects over Timmonsville +2008-10-19,42.7008333,-73.1091667,North Adams,MA,unknown,3600,Star like object flashing colors and hovering for over an hour in one stop. ((NUFORC Note: Possible star?? PD)) +2008-10-19,37.5536111,-77.4605556,Richmond,VA,sphere,45,Orange 3/4 moon-like sphere hovering above tree line, disappearing without a trace, no sound +2008-10-19,31.6938889,-89.1305556,Laurel,MS,light,432000,Lights captured on wild game camera. +2009-10-19,39.9338889,-74.8913889,Mount Laurel,NJ,circle,1500,saw a light in the sky that would vanish for a few seconds then come back, every 10 minutes or so and after 25 minutes it vanished +2009-10-19,39.7588889,-84.1916667,Dayton,OH,light,600,A bright white light over Dayton that danced around the sky at incredible speeds +2009-10-19,41.9994444,-88.145,Hanover Park,IL,oval,2,Floating Disc with three colors +2009-10-19,42.3313889,-83.0458333,Detroit,MI,other,900,1 craft sighted in braod daylight, I have pics I don't see where to upload. +2009-10-19,41.7352778,-70.1944444,West Dennis,MA,sphere,4,orange shere passed by in an interval of 4-5 seconds +2009-10-19,31.9491667,-98.7369444,Sidney,TX,light,120,Phoenix-like event, 40 miles from Stephenville, TX--brief lights, 6-9: 6 hovering formation, 3 individual seperate, military jets. +2009-10-19,41.5922222,-119.8594444,Vya (Ghost Town),NV,light,900,Lengthy witnessing of an unkn light making incredible maneuvers in the northern Nevada Sky near Vya. +2010-10-19,40.9311111,-73.8991667,Yonkers,NY,sphere,900,silvery circular object suspended high in the sky +2010-10-19,47.6063889,-122.3308333,Seattle,WA,light,5,A moment later I looked up again and saw two lights (only slightly smaller and less bright than the planet) below Jupiter. +2010-10-19,47.6816667,-122.2075,Kirkland,WA,light,600,2 light formations circling venus +2010-10-19,47.2530556,-122.4430556,Tacoma,WA,light,10,Two of three lights in what appears to be a constellation drift off and disappear in Tacoma, WA +2010-10-19,41.176944399999996,-112.0030556,Riverdale,UT,light,20,Two bright lights appear, one after another +2010-10-19,35.7719444,-78.6388889,Raleigh,NC,light,15,2 objects that looked like bright stars moving in parallel about 45 degrees above the horizon +2010-10-19,42.0527778,-124.2827778,Brookings,OR,circle,1800,Bright red lights seen in Curry County. +2010-10-19,29.2855556,-81.0561111,Ormond Beach,FL,light,600,red lights that moved over ocean. they appeared and disappeared at regular intevals and appear to "jump" down beach +2010-10-19,35.9172222,-82.3011111,Burnsville,NC,unknown,120,3 sets of 3 lights hovering silently in night sky +2010-10-19,38.4202778,-81.7908333,Cross Lanes,WV,light,4,Orangish Objects Zig Zag across the sky as fast as a shooting star. +2011-10-19,39.7391667,-104.9841667,Denver,CO,formation,5,Silent V formation over Denver, CO. ((NUFORC Note: Report from law enforcement officer. PD)) +2011-10-19,43.6455556,-96.7280556,Renner,SD,flash,2,Woman sitting on her porch is illuminated from overhead by a very bright light, which streaks off. +2011-10-19,42.4386111,-73.1258333,Hinsdale,MA,fireball,120,I saw in the distance at 6:40am driving to work on a regular route an object on the ridge about 2-3 miles away that I thought was from +2011-10-19,28.5380556,-81.3794444,Orlando,FL,changing,1200,Low flying lights Around Disney. +2011-10-19,36.175,-115.1363889,Las Vegas,NV,disk,900,Numerous small disks flying towards north towards Sheep Range, seen from the desert just north of Decatur. Event lasted 12 minutes. +2011-10-19,37.775,-122.4183333,San Francisco,CA,light,9000,point of light in sky stopped moving and remained stationary for ~2hr +2011-10-19,33.0580556,-112.0469444,Maricopa,AZ,other,10,Boomerang aircraft 15-20 white lights on leading edge Maricopa Arizona +2011-10-19,43.2122222,-82.9897222,Brown City,MI,sphere,2700,Orange Orbs Nightly In MI +2011-10-19,39.9777778,-105.1313889,Louisville,CO,light,3,green glowing craft moving very fast across entire sky. +2011-10-19,40.3977778,-105.0744444,Loveland,CO,cigar,10,commit like objest shapped like a missle with a bright gold jet trail heading west. +2011-10-19,32.8933333,-97.4441667,Eagle Mountain,TX,other,120,What look like a fallen star descended toward earth stopped in mid air and shot of into space at a speed unknown to man +2011-10-19,46.2397222,-119.0994444,Pasco,WA,formation,300,Strange man in alley followed by humming balls of light in the sky. +2012-10-19,44.6111111,-69.335,Unity,ME,circle,900,Circular mass moving through night sky with lights around periphery 02:00 Hours In sky over Unity, Maine. +2012-10-19,47.9791667,-122.2008333,Everett,WA,circle,180,Non-blinking white spherical-shaped object traveled northwest to southeast - appeared to be a very large meteor falling thru atmosphere +2012-10-19,47.2530556,-122.4430556,Tacoma,WA,oval,60,Bight Glowing orange orb that dimmed and would go bright again.It stopped for 30 seconds then accelarated and disappeared.Heading East +2012-10-19,39.1369444,-76.6986111,Severn,MD,other,300,Three random chunks of car-sized "brown mold" motionless in a clear blue sky near BWI. ((NUFORC Note: USAF Acad. Grad. PD)) +2012-10-19,27.0438889,-82.2361111,North Port,FL,other,300,Silver object without wings or noise +2012-10-19,39.5352778,-76.7283333,Butler,MD,light,180,3 redish lights spotted in Butler MD at 7:15 pm on 10/19/12 +2012-10-19,34.4208333,-119.6972222,Santa Barbara,CA,fireball,60,Meteor-like object broke up into three pieces then a bright light appeared where it ended it's travel. +2012-10-19,41.5894444,-88.0577778,Lockport,IL,oval,60,Five UFO's went past the three of us +2012-10-19,36.0533333,-87.3125,Burns,TN,fireball,300,Orange “Fireball” Observed, Dickson County, Middle Tennessee +2012-10-19,29.7855556,-95.8241667,Katy,TX,triangle,20,Black, triangular shaped craft with dim, orange lights over Katy, Tx +2012-10-19,36.1658333,-86.7844444,Nashville,TN,fireball,2700,Round lights circling for hours-no noise and quite fast-not spot lights! +2012-10-19,39.9266667,-74.0775,Seaside Park,NJ,circle,300,Red light swooping left and right over seaside park 11:30PM 10/19/12 +2012-10-19,33.5091667,-111.8983333,Scottsdale,AZ,light,600,2nd Sighting, Orange UFO East of Scottsdale Arizona 10/19/2012 +2012-10-19,36.1658333,-86.7844444,Nashville,TN,unknown,1200,Two lights flying in random patterns over Nashville. +2012-10-19,34.1425,-118.2541667,Glendale,CA,circle,7200,Starlike colorful, red, blue, green, purple UFO that emerged from the other side of the hill.((NUFORC Note: Sighting of Capella? PD)) +2012-10-19,35.1161111,-78.1363889,Faison,NC,oval,2,Faison NC, a bright oval object flashed above 3 friends and I, lit he whole area up. +2013-10-19,44.8113889,-91.4983333,Eau Claire,WI,oval,180,Four oval orange lights seen near Eau Claire Wi +2013-10-19,38.8902778,-77.0844444,Arlington,VA,circle,240,Green flashing orb floating above the Douglas Park neighborhood of Arlington, VA +2013-10-19,36.8527778,-75.9783333,Virginia Beach,VA,unknown,5,2 fast helicopters chasing themselves or something. +2013-10-19,34.54,-112.4677778,Prescott,AZ,oval,300,Portal to alien planet or Alien base uncovered. +2013-10-19,37.7644444,-89.335,Murphysboro,IL,other,600,Orange globes in Southwest sky traveling Northeast toward Benton, Illinois. +2013-10-19,25.9869444,-80.2325,Miramar,FL,light,600,10 red orbs moving ne then changing to nw while gaining altitude. +2013-10-19,42.4083333,-71.0125,Revere,MA,oval,6,grey object flew back in forth for 3 seconds then left +2013-10-19,34.0522222,-118.2427778,Los Angeles,CA,disk,1560,Disk shape object with lights in the sky over LA +2013-10-19,31.5544444,-110.3030556,Sierra Vista,AZ,circle,20,Noticed a bright white circle (reflected sunlight) appearing from the NE on a SE trajectory. Alt. lower than the ISS when it appear. +2013-10-19,44.3936111,-122.9836111,Brownsville,OR,disk,360,19-Oct-13 Brownsville Oregon on Kirk Ave. in a large clearcut. +2013-10-19,40.4166667,-86.8752778,Lafayette,IN,light,300,A long string of nearly white (towards yellow) lights moving along a line from south to north. +2013-10-19,42.6333333,-71.3166667,Lowell,MA,light,120,single bright light in west sky above Lowell looped, dived , soared amd hovered, fading thwn shining +2013-10-19,35.0241667,-110.6966667,Winslow,AZ,fireball,10,Fireball traveled 10 seconds high above the horizon then abruptly disappeared. +2013-10-19,38.105,-85.7588889,Fairdale,KY,light,30,very bright white light heading from north to south +2013-10-19,38.5338889,-89.9888889,Swansea,IL,unknown,420,Lights in the clear night sky over Swansea Illinois. +2013-10-19,33.3061111,-111.8405556,Chandler,AZ,fireball,180,Object looked like it was on fire +2013-10-19,44.0247222,-88.5425,Oshkosh,WI,circle,600,2 objects over Oshkosh. +2013-10-19,33.4352778,-112.3575,Goodyear,AZ,fireball,180,A constant orange firey light traveling a few hundred miles per hour toward Phoenix and then diverted. +2013-10-19,28.5380556,-81.3794444,Orlando,FL,other,900,4 groups of 2 orange/red boxes of what appeared to be firelike light seen in central Florida. +2013-10-19,43.7730556,-88.4469444,Fond Du Lac,WI,light,300,3 seperate orange spheres flew from the southwest to the northeast, flickered and then disappeared into the sky. +2013-10-19,38.2205556,-90.3958333,Festus,MO,sphere,15,Strange lights North of Festus, Missouri +2013-10-19,40.9644444,-76.8847222,Lewisburg,PA,other,30,Orange shape hovered, rose into clouds. +2013-10-19,39.1458333,-77.4172222,Poolesville,MD,sphere,3600,2 large spheres of light moving quickly, followed by 4 silent orange lights in L formation an hour later. +2013-10-19,33.7222222,-116.3736111,Palm Desert,CA,light,300,2 flickering orange lights seen in sky that disappeared in 5 minutes. +2013-10-19,38.6272222,-90.1977778,Saint Louis,MO,triangle,120,I have been noticing a very bright light just S of Clayton in early evenings. The obj. usually appears to the south and west of S. +2013-10-19,34.1761111,-85.1613889,Silver Creek,GA,triangle,1800,Triangle UFO, very large craft. I have photographs of lights that were symmetrical to each other, can see the layout of the lights! +2013-10-19,44.9444444,-93.0930556,St. Paul,MN,sphere,5,3 spheres flying over St. Paul. +2013-10-19,35.2269444,-80.8433333,Charlotte,NC,sphere,420,Three orange orbs seen by me and a witness at Food Lion parking lot. +2013-10-19,41.3461111,-73.0794444,Ansonia,CT,triangle,180,3 lights, triangular, orange & white, hovering/turning/flipping. +2013-10-19,43.6136111,-116.2025,Boise,ID,sphere,600,Between 5 and 7 orange glowing lights. +2013-10-19,41.3197222,-81.6269444,Brecksville,OH,sphere,300,I am a local school teacher. This evening I witnessed about 20 large red spherical shapes moving around in the sky . They were spread +2013-10-19,43.0125,-83.6875,Flint,MI,sphere,420,Multiple orange lights making no sound heading east over Flint Mi. +2013-10-19,30.2669444,-97.7427778,Austin,TX,flash,10,Bright Flash of Light Exploding In Austin Sky. +2013-10-19,26.9338889,-80.0944444,Jupiter,FL,light,300,2 orange/yellow round lights traveling slowly one after the other from east to west until disappearing into the clouds. +2013-10-19,35.0844444,-106.6505556,Albuquerque,NM,light,900,A flickering clump of lights, alternating green, red, white, and occasionally blue.. Due east, high above Sandia Mtns. Stationary. +1958-10-20,44.9444444,-93.0930556,St. Paul,MN,other,2,A dull-orange craft sped southbound at low altitude and high speed toward the general direction of the airport. +1964-10-20,30.0033333,-91.8186111,New Iberia,LA,circle,300,On a clear, cloudless day at 12:00 noon my buddy and I saw this craft at a maximum altitude of 100 to 200 feet. +1964-10-20,42.3313889,-83.0458333,Detroit,MI,circle,2700,Amature Astronomer has sighting with telescope of a large circular object with writting on it in 1964. +1966-10-20,35.0844444,-106.6505556,Albuquerque,NM,diamond,180,Former wife and I saw a saucer shaped craft, rotating counter clockwise, as seen from under-full moon night, or near- 1/4 to 1/2 mile a +1967-10-20,41.0227778,-73.5652778,Old Greenwich,CT,disk,30,Very OLD sighting of glowing blue object hovering over RR tracks/wires in SW Connecticut. 1967! +1968-10-20,41.865,-80.79,Ashtabula (Saybrook Twnshp.),OH,disk,900,In Oct.of 1968,a saucer shaped craft was hovering over a home at 1:00 am in the morn..It was a still and desserted state routethat nigh +1968-10-20,42.2813889,-83.3863889,Wayne,MI,oval,3600,A grey oval craft hovering over a hambuger standfor an hour about 200 feet above the light poles with no sound. +1973-10-20,39.7383333,-85.5719444,Carthage,IN,fireball,1200,Fireball above tree line +1974-10-20,37.3394444,-121.8938889,San Jose,CA,fireball,300,The Santa Clara Valley is bordered on the east by the Hamilton mountain range, and on the west by Santa Cruz mountain range. At the so +1974-10-20,29.7630556,-95.3630556,Houston,TX,circle,2700,We watched a UFO at night through binoculars. +1974-10-20,37.7741667,-87.1133333,Owensboro,KY,light,5,it was roughly 13 lights in a triangle shaped formation flying in a zig-zag pattern from north to south. speed was unknown, except they +1975-10-20,31.315,-85.8552778,Enterprise,AL,other,120,Very low, very slow flying, silent, black trapezoid viewed by 4 family members for about two minutes +1976-10-20,41.5052778,-82.0283333,Avon Lake,OH,circle,900,The object emitted a brilliant white light, two smaller objects separated from the main object, we ran into the house, the object must +1976-10-20,60.4877778,-151.0583333,Soldotna,AK,sphere,7200,Strange Site and Time Red Orb Encounter +1980-10-20,27.8002778,-97.3961111,Corpus Christi (Maliki Beach),TX,disk,300,METALIC RED PORTHOLES HOVERED OFFSHORE AT DUSK SLOWLY DRIFTED SOUTH INTO CLOUDS +1980-10-20,32.7833333,-96.8,Dallas,TX,triangle,2700,We were in a boat fishing at Lake Ray Hubbard, heading toward north end of lake. We noticed an object hovering just above a water tower +1981-10-20,45.3566667,-122.8388889,Sherwood,OR,other,15,Two flying wings (?) over Sherwood, OR night sky. +1984-10-20,39.9611111,-82.9988889,Columbus,OH,light,14400,Driving in a thick pea soup fog. Car headlights went out suddenly. I had seen "Close Encounters of the 3rd Kind" a few years ago. ( th +1985-10-20,41.4513889,-75.6122222,Throop,PA,oval,14400,5 nights of peculiar light with mini lights going to and fro. +1985-10-20,39.9669444,-74.9430556,Moorestown,NJ,oval,600,It was a very large oval shaped object/saucer shaped object making no noise and multiple lights, some on and some off. +1988-10-20,47.6588889,-117.425,Spokane,WA,changing,1200,A huge, sharp 'V' formation of apprximately 25 to 30 round white disks flies slowly over a suburban area +1989-10-20,41.3072222,-75.3202778,Newfoundland,PA,other,2700,Ball of white bright light about size of two car garage. So bright, could not decern if there was a definate shape.Moved at very slow r +1989-10-20,34.0286111,-117.8094444,Diamond Bar (On The 57),CA,changing,300,Very intense light moving and changing course rapidly causing cars to pull off highway and stop. All lights shot into sky getting small +1989-10-21,26.7052778,-80.0366667,West Palm Beach,FL,cylinder,180,After reading the 1966 acount of Jack brown in cal, talked about a butane shaped craft. I thought I would tell you about the one I saw +1990-10-20,42.9205556,-83.045,Almont,MI,oval,1800,UFO, Almont Michigan, Tree Top Lelel, Humming Sound +1990-10-20,36.2286111,-96.9252778,Glencoe,OK,other,300,It wasn't helicoptor and it dang sure wasn't swamp gas! +1994-10-20,28.0183333,-82.1130556,Plant City,FL,disk,300,I was following it in my car for a short period of time and watched it disappear before my eyes, it was a clear morning. It amazed me. +1994-10-20,41.8530556,-74.1394444,Stone Ridge,NY,triangle,600,While riding home at night, my wife, daughter, and I saw an object in the sky to our left over a cornfield. From the center of the obj +1994-10-20,41.8530556,-74.1394444,Stone Ridge,NY,light,240,strange lights in field sound similar to another area sighting +1994-10-20,41.9,-71.0902778,Taunton,MA,circle,10,I observed the Craft at a close enough distance to know it was not anything man made based upon my training and experience. 500 Lig +1995-10-20,34.8780556,-83.4011111,Clayton,GA,oval,1200,bright oval white light/moves at an incrediable speed zigzaging between trees(forest like)/followed us about 15 to 20 minutes. +1995-10-20,42.3266667,-122.8744444,Medford,OR,fireball,25,We saw a bright light in the sky that lit up the entire mountain side as bright as daylight as it passed overhead. +1995-10-20,34.2694444,-118.7805556,Simi Valley,CA,light,25,5 MILE High Laser Beam, guarded by AMSEC/SAIC, International Security Corp. +1996-10-20,40.2822222,-86.0411111,Tipton,IN,sphere,900,Sphere shaped craft hovering above field +1996-10-20,31.8455556,-102.3672222,Odessa,TX,diamond,300,Driving down busy street at night, quarter of mile or so, thought we saw several helicopters in sky. Drove right up to it and under it +1997-10-20,47.3294444,-122.5788889,Gig Harbor,WA,light,60,I saw my first UFO when I was on my way to school as a child. +1997-10-20,30.5080556,-97.6786111,Round Rock,TX,diamond,3600,Major UFO event, Round Rock Texas +1998-10-20,36.9902778,-86.4436111,Bowling Green,KY,unknown,1200,NO SOUND THREE RECTANGULAR LIGHTS FUSSY COLORS OF 3 COLORS IT WENT RIGHT OVER ME AT ABOUT 3 TIMES TREE LEVEL IT WENT OU +1998-10-20,44.1002778,-70.2152778,Lewiston,ME,formation,1200,While gazing up at the stars, you had to look carefully but I noticed a formation yet more a bunch of single lighted objects. They were +1998-10-20,42.9819444,-84.1177778,Corunna,MI,changing,60,large, flat black with grid lines and port holes soundless craft +1998-10-20,47.6588889,-117.425,Spokane,WA,sphere,3,An object about the size of a large grapefruit,spherical,dull silver,no lights or appendages,came into view from the west at roughly a +1998-10-20,34.2855556,-118.8811111,Moorpark,CA,oval,600,Oval shaped metallic rotating object with blinking lights. At first sighting it was rotating above a house then zoomed in closer to me. +1998-10-20,35.3519444,-75.5108333,Avon,NC,chevron,180,THIS OBJECT DIDNT HAVE ANY SOUND. +1998-10-20,34.7302778,-86.5861111,Huntsville,AL,triangle,600,Unknown Triangular craft near Huntsville +1999-10-20,47.6063889,-122.3308333,Seattle,WA,sphere,300,11/20/99 1:30am purple glowing sphere moves in a straight line across a clear starry quarter moon night. +1999-10-20,43.6136111,-116.2025,Boise,ID,light,180,Bright gold color light that flew west to east. +1999-10-20,46.51,-114.0922222,Stevensville,MT,other,60,looked to east saw sparkling dot with white plume coming out of top.to left of object saw fast moving aircraft leaving vapor trails. As +1999-10-20,46.51,-114.0922222,Stevensville,MT,other,90,Saw sparkler type light with white plume out of top in Eastern sky about 60 degrees above horizon. +1999-10-20,31.0980556,-97.3425,Temple,TX,cylinder,600,Just after sunset saw bright glowing object in western sky at 30 deg. above horizon. Smaller bright lights appeared and disappeared ne +1999-10-20,47.1041667,-122.4333333,Spanaway,WA,unknown,10,driving north on hwy 7 approximately 22:30hrs on oct 20, 1999, out of the corner i saw a streak of light, traveling from the nw to the +1999-10-20,47.7558333,-122.3402778,Shoreline,WA,fireball,2.5,A bright, orange and yellowish light that shot from East to West across the sky keeping the same heighth and precision. Very close to +1999-10-20,45.1158333,-123.2061111,Amity,OR,circle,5,Appear to be an orange fireball moving west and quite low in the sky. Could not est. size. +1999-10-20,43.0388889,-87.9063889,Milwaukee,WI,sphere,8,Bluish Orb Seen Above Milwaukee, WI on Wednesday 10/20/99 +1999-10-20,46.9813889,-123.6013889,Montesano,WA,fireball,10,streaking fireball appeared and then disappeared and then reppeared. low angle of trajectory and very bright. +1999-10-20,47.0075,-122.9080556,Tumwater,WA,fireball,4,Green fireball going east to west across the sky. +1999-10-20,45.5236111,-122.675,Portland (40 Mi. West Of),OR,circle,3,Driving north I saw an object the size of a 3/4 full moon with a tail traveling east to west, 45 degrees up in the sky, and approx. 1/2 +1999-10-20,47.7988889,-122.4969444,Kingston,WA,light,3,One object consisting of 1 large and 2 small bright white lights flew over road at very low altitude. +1999-10-20,40.3930556,-90.1547222,Lewistown,IL,other,40,saw 4 or 5 little lights in the north sky. they reappeared and disappeared and they went along in a line, and one light got bigger, and +2000-10-20,42.5291667,-85.8552778,Allegan,MI,triangle,180,While driving, we saw an unsual craft fly past us, with unusually flashing lights. +2000-10-20,38.2541667,-85.7594444,Louisville,KY,light,1800,SEEN NUMEROUS BALLS OF LIGHT HOVERING IN A LARGE AREA +2000-10-20,42.7325,-84.5555556,Lansing,MI,unknown,300,Something burning up in the morning sky? +2000-10-20,34.8297222,-82.6016667,Easley,SC,disk,60,The craft floated over our car and on top of a house !!! +2000-10-20,41.2813889,-73.4986111,Ridgefield,CT,triangle,120,triangular ufo flew overhead +2000-10-20,40.7555556,-73.5880556,Westbury,NY,disk,60,We saw a unique glowing disc moving in an erratic pattern that appeared to be a true UFO in the skies of Long Island. +2000-10-20,42.5847222,-87.8211111,Kenosha,WI,light,18000,Stars that move erradically and make trails like meteors. +2000-10-20,35.6125,-77.3666667,Greenville,NC,changing,3000,On that night my mother-in-law so it first,then her husband.Then she came over and got my self and my wife.We went out side and looked +2001-10-20,28.3197222,-80.6077778,Cocoa Beach,FL,triangle,30,The triangle shaped object seemed just a few yards above us, it made no sound, no wind and no lights. +2001-10-20,32.7358333,-96.275,Terrell,TX,circle,180,UFO Outflys Gov Bomber in Terrell Texas +2001-10-20,42.3180556,-84.0205556,Chelsea,MI,diamond,600,Diamond like, greenish craft flew overhead into distance. +2002-10-20,42.6525,-73.7566667,Albany,NY,cigar,5,Cigar shaped object caught on tape over albany international airport moving at an incredible rate of speed local news fox23 +2002-10-20,48.885555600000004,-118.5983333,Curlew,WA,sphere,60,This object was in a cloud on a perfecly cloudless afternoon, seen lights red and white going around object also heard NO sound at all. +2002-10-20,39.3280556,-120.1822222,Truckee,CA,chevron,25,Quick flying "v" shaped object, red and white lights outside Truckee/Tahoe CA +2002-10-20,40.5186111,-78.395,Altoona,PA,light,300,Stange Object over Ice Mountain +2002-10-20,33.4936111,-117.1475,Temecula,CA,circle,180,Huge submarine shaped craft in the sky in Temecula 300 yards wide. +2002-10-21,42.6525,-73.7566667,Albany (Maybe New York),NY,cigar,2,I am passing this on from my friend, as I did not see the news report. He said that on the local news, a CBS station here in Jacksonvi +2003-10-20,33.7488889,-84.3880556,Atlanta,GA,fireball,2,Green streak of light sighted in Atlanta, Ga. around 9:30 p.m. on Monday, October 20 +2003-10-20,30.2669444,-97.7427778,Austin,TX,teardrop,300,Teardrop/triangle silver and shiny object moving at slow steady speed in perfect weather during broad daylight in Austin, TX. +2003-10-20,35.1494444,-90.0488889,Memphis,TN,circle,900,Round circular object, small cross section +2003-10-20,41.85,-87.65,Chicago,IL,disk,60,Standing on my backporch I saw a disklike object gliding slowly through the air +2003-10-20,38.4022222,-122.8227778,Sebastopol,CA,sphere,5400,Plasma balls emanating from vortex in glowing cloud formation, seen several times with USAF recon next day. +2003-10-20,35.5977778,-82.4,Swannanoa,NC,fireball,4,On Mon. Oct. 20, 2003 at approximately 8:45 PM I saw a fireball like object streak across sky in a east to west direction. +2003-10-20,30.3319444,-81.6558333,Jacksonville,FL,fireball,4,It appeared to be a very bright and large shooting star falling downwards with a trail +2003-10-20,37.7780556,-81.1883333,Beckley,WV,circle,10,I saw an amazing bright flouescent green fireball fall to the earth from the south on a clear night that took only seconds. +2003-10-20,37.7780556,-81.1883333,Beckley,WV,rectangle,5,I was driving down S. Kanawha St about 8:45. My friend and I suddenly saw a huge glowing flourescent green flash shooting down from the +2003-10-20,35.6505556,-78.4566667,Clayton,NC,fireball,15,witness to the too close meteor in durham, nc. : meteor or ufo? +2003-10-20,29.8641667,-82.1311111,Hampton,FL,sphere,15,A green and yellow object traveling at a high rate of speed +2003-10-20,30.3319444,-81.6558333,Jacksonville,FL,fireball,5,Green object with tail headed from the sky straight down +2003-10-20,32.8405556,-83.6325,Macon,GA,fireball,20,saw same light in sky +2003-10-20,33.5172222,-82.0758333,Martinez,GA,fireball,4,I saw an object with a greenish tail trail across the sky in an easterly direction in Augusta,Ga area 10/20/03. +2003-10-20,40.0505556,-77.5205556,Shippensburg,PA,circle,420,Glowing orange object in the sky moving slowly. Could not be a star clouds behind it +2003-10-20,35.3083333,-77.1544444,Vanceboro,NC,fireball,15,large yellow fireball with long green tail +2003-10-20,36.0725,-79.7922222,Greensboro,NC,fireball,15,Big brilliant white fireball, size of full moon with long white tail falling from overhead to the South of Greensboro, NC +2003-10-20,35.0766667,-80.6694444,Indian Trail,NC,unknown,2,I saw a bright light flash that lit up the sky, and I caught a glimpse of a orange/red tail die. +2003-10-20,41.6713889,-89.9361111,Prophetstown,IL,other,900,we saw a star and it raised above the clouds, a few nights later saw the same thing and it then dissappeared +2003-10-20,38.7613889,-120.5855556,Pollock Pines,CA,light,40,bright white light get bigger then smaller and then travel away from or into space. +2003-10-20,35.3136111,-83.1766667,Cullowhee,NC,fireball,3,My wife and I saw a huge glowing blue ball enter the atmophere. +2003-10-20,35.4872222,-80.6219444,Kannapolis,NC,light,60,A long light, like a star that moved fast and kinda sparkled. Moved in full view, low in the sky in less than 60 seconds +2004-10-20,37.7622222,-84.8433333,Harrodsburg,KY,light,1800,Star-like lights moving in incredible and unorthodox ways +2004-10-20,43.1186111,-83.695,Mount Morris,MI,oval,2,strange change of direction +2004-10-20,43.0125,-83.6875,Flint,MI,sphere,30,white sphere in planes contrail. +2004-10-20,38.9011111,-77.2655556,Vienna,VA,sphere,600,Spherical metallic objects closely follow passenger jets westward in late afternoon. +2004-10-20,40.9113889,-73.7827778,New Rochelle,NY,disk,35,UFO Disc covers their identity behind dark clouds but was later seen from a sharp eye before taking off. +2004-10-20,33.5983333,-79.8516667,Salters,SC,light,40,Bright orange light seen hovering in sky, disappears and then reappears +2004-10-20,35.4366667,-94.3480556,Van Buren,AR,disk,120,Large object with three huge orange shaped lights +2004-10-20,39.7391667,-104.9841667,Denver,CO,triangle,10,Triangle with lights, no sound, heading south-west. +2004-10-20,33.4483333,-112.0733333,Phoenix,AZ,light,4500,Amber lights over Northwest Phoenix +2005-10-20,42.4566667,-83.9463889,Pinckney,MI,light,300,Seen from a distance, Traveling Northwest. Pulsating white lights, left to right pattern. Approximate speed of 90-100mph. Thought it wa +2005-10-20,44.2169444,-85.9577778,Wellston,MI,circle,2,Glowning green ball in Michigan +2005-10-20,39.0741667,-81.5533333,Rockport,WV,fireball,30,Fireball falling from sky but slow landed on ground and glowed for about 30 seconds then went out. +2005-10-20,30.2669444,-97.7427778,Austin,TX,triangle,30,3 lights forming a triangle in Austin, TX +2005-10-20,42.2527778,-71.0027778,Quincy,MA,fireball,10,3 UFOs seen in broad daylight +2005-10-20,39.7391667,-104.9841667,Denver,CO,cigar,60,Silver Cigar Shaped object flying over I-25 downtown Denver at 2pm on a clear day +2005-10-20,34.698055600000004,-118.1358333,Lancaster,CA,sphere,3600,SPHERE SHAPE CRAFT +2005-10-20,37.0433333,-93.2941667,Nixa,MO,disk,180,it was confirmed to be machine like, metallic in nature, traditional saucer format with port holes and multicolored lights +2005-10-20,33.6305556,-112.3325,Surprise,AZ,light,7200,followed 6 lights in a circle shape +2005-10-20,41.6072222,-81.0505556,Montville,OH,cone,2400,Six coned like objects,with bright white lights floating in the Montville sky. +2005-10-20,37.2152778,-93.2980556,Springfield,MO,unknown,5,Green light seen hovering over south Springfield, then moving southwest at a rapid speed. +2005-10-20,29.6513889,-82.325,Gainesville,FL,triangle,60,Slow moving low flying black triangle with dim star-like lights +2005-10-20,33.8158333,-78.6802778,North Myrtle Beach,SC,disk,15,Saw lights of rotating, saucer-like object off of coast. Was completely silent, close, and very large +2005-10-20,27.9375,-82.2861111,Brandon,FL,light,4,10/20/05 21:10 Brandon, Fl. Light 4-5 seconds Fast moving and turning at a steadily increasing speed until it went out of sight +2005-10-20,38.2544444,-104.6086111,Pueblo,CO,unknown,2700,A bright white light hovered over Pueblo Blvd. bridge over the Arkansas River, about 30 ft. above traffic, but no traffic seemed to see +2005-10-20,41.5066667,-90.515,Moline,IL,triangle,120,A huge giant black isoceles triangular craft flew over in total silence and then took off at Mach 10 +2005-10-20,41.8875,-88.3052778,Geneva,IL,other,900,Circular cloud formation surrounding the moon. ((NUFORC Note: Probable "Moon dog," caused by high-altitude ice crystals. PD)) +2006-10-20,44.4366667,-73.9708333,Franklin Falls,NY,other,5,FAST GREEN LIGHT IN THE SKY BY WHITFACE MT +2006-10-20,37.5586111,-122.27,Foster City,CA,light,30,Four people witnessed a plasma ball hover right in front of them as it changed colors and then it moved off. +2006-10-20,41.8238889,-71.4133333,Providence,RI,egg,60,eggs shape bottom glowing craft +2006-10-20,33.5205556,-86.8025,Birmingham,AL,sphere,120,((HOAX??)) metallic sphere tailing fighter jet +2006-10-20,42.7511111,-122.4877778,Prospect,OR,cigar,2,Object near jet in Prospect, Oregon. +2006-10-20,40.7669444,-72.9966667,East Patchogue,NY,sphere,180,Small white sphere +2006-10-20,42.0411111,-87.69,Evanston,IL,cigar,30,Object emerged from clouds and disappeared again +2006-10-20,47.6105556,-122.1994444,Bellevue,WA,chevron,120,Chevron-shaped object over Seattle/Bellevue +2006-10-20,39.1927778,-76.7244444,Hanover,MD,light,240,Bright white light moving west to east over central Maryland +2006-10-20,40.7669444,-72.9966667,East Patchogue,NY,sphere,360,Bluish White Sphere slightly sporadic in movement +2006-10-20,34.1138889,-83.4316667,Nicholson,GA,unknown,300,Bright stationary flash 21:40 10/21/2006. 5 second flash intervals. Duration 5 min. No sound. Clear night. Air traffic vis. +2006-10-20,37.2397222,-96.9952778,Winfield,KS,unknown,900,Four lights hovering over Winfield and Arkansas City seen by a number of police officers +2007-10-20,40.6936111,-89.5888889,Peoria,IL,chevron,10,Dark object moving papidly to the east +2007-10-20,33.5683333,-83.3625,Buckhead,GA,light,600,Bright blinking light that just disappeared into thin air +2007-10-20,38.5816667,-121.4933333,Sacramento,CA,cigar,15,a sigar-shaped ,all shimmering object moving slowly over the street at noon +2007-10-20,29.7630556,-95.3630556,Houston (Near; In Flight Sighting),TX,other,50,((HOAX??)) ufo plus 4 oval metalic objects fling next to plane continental huston-tampa., nobody else semms to noticed. +2007-10-20,37.6688889,-122.0797222,Hayward,CA,light,180,SF was dark, bright light split into two lights, both travel off in opposite directions, both disapear at different times. +2007-10-20,44.7186111,-91.6897222,Rock Falls,WI,light,900,Arcing green lights viewed at night in rural Wisconsin. ((NUFORC Note: Report is suggestive to us of advertising lights. PD)) +2007-10-20,38.2,-81.4138889,Crown Hill,WV,triangle,420,One huge Black triange with white lights followed by a second smaller triangle with blue lights +2007-10-20,39.1619444,-84.4569444,Cincinnati,OH,disk,300,UFO sighted on Oct 20, 2007 8:30 pm near downtown Cincinnati +2007-10-20,38.3555556,-98.5805556,Ellinwood,KS,disk,600,A creepy encounter in Ellinwood, Kansas. +2007-10-20,44.7691667,-94.1513889,Glencoe,MN,light,2,green ball of light falling straight to the ground. ((NUFORC Note: Meteor?? PD)) +2007-10-20,42.9633333,-85.6680556,Grand Rapids,MI,circle,60,We saw what looked like a bright star with 6 beams of light coming from it , then changed red and was gone +2007-10-20,39.6077778,-90.805,Pittsfield,IL,triangle,120,Triangle shaped craft spotted about 75ft. off the ground made no noise as it hovered. Had white, red, and green lights. +2007-10-20,38.9516667,-92.3338889,Columbia,MO,triangle,120,MISSOURI INVESTIGATORS GROUP Report: The shape of the UFO was triangular with white lights on each of the corners and a big red light. +2007-10-20,42.7469444,-84.4011111,Haslett,MI,light,1200,Objects traveling the magnetic north at extreme speed silently with ability to stop suddenly and change direction instantly +2007-10-20,36.175,-115.1363889,Las Vegas,NV,sphere,10,orange sphere 20 to 30 feet in diameter sharp edged flying south low altitutde. bright flash over large area +2008-10-20,32.5091667,-92.1191667,Monroe,LA,formation,3600,5 lights seen by 45 ppl in a feild in monroe. +2008-10-20,41.5933333,-87.3463889,Gary,IN,unknown,15,I observed an object that was extremely bright and appeared to be close to the ground, as if it were an airplane heading to the nearby +2008-10-20,40.2736111,-76.8847222,Harrisburg,PA,formation,600,Cluster of 5 lights surrounding a center light with two red lights darting between the others +2008-10-20,32.5091667,-92.1191667,West Monroe,LA,light,120,The first time i saw this object was 3 years ago. i was standing outside and looked up and saw what i thought was a star. then it start +2008-10-20,34.7538889,-77.4305556,Jacksonville,NC,unknown,300,Bright white light seen over jacksonville, moving in odd directions and fading until unseen. +2008-10-20,39.3519444,-83.3827778,Greenfield,OH,unknown,900,Boomerang ,points upright, in Greenfield, Ohio +2008-10-20,34.1591667,-118.5002778,Encino,CA,other,600,2 Large Boomerang Shapes seen in night sky in Encino, CA. +2008-10-20,34.0522222,-118.2427778,Los Angeles,CA,formation,60,3 flashing objects over LAX +2008-10-20,37.8419444,-76.2761111,Reedville,VA,circle,600,Round, yellowish white light, with flashing red light, that hovered in the western sky. +2008-10-20,27.9472222,-82.4586111,Tampa,FL,oval,15,White oval shaped light moving too swiftly and erraticly to be notmal aircraft. +2008-10-20,36.8527778,-75.9783333,Virginia Beach,VA,triangle,15,Triangular craft, solid white lights with red center over Oceana Air Force Base Virginia Beach, VA +2008-10-20,37.6688889,-122.0797222,Hayward,CA,sphere,1,I was being driven to work by my girlfriend, it was about 2130, about a week and a half ago. For some reason, I don't know why there ap +2009-10-20,37.8402778,-85.9491667,Radcliff,KY,other,900,4 unidentified flying objects seen by a couple. +2009-10-20,35.9172222,-82.3011111,Burnsville,NC,changing,147,Star-like, color changing triangle shape object +2009-10-20,39.1619444,-84.4569444,Cincinnati,OH,circle,5,Grey Disk accelerates at incredible speed +2009-10-20,34.0027778,-84.1447222,Duluth,GA,sphere,1200,a white circular light pulsing...just staying i one spot +2009-10-20,41.9558333,-73.3636111,Falls Village,CT,cigar,60,ALIENS AT MY HIGH SCHOOL +2009-10-20,41.9558333,-73.3636111,Falls Village,CT,triangle,10800,Triangular UFO with flashing lights and light beam. +2009-10-20,38.6272222,-90.1977778,St. Louis,MO,light,8,brilliant pink light observed then emitted sparks then vanished +2009-10-20,39.1619444,-84.4569444,Cincinnati,OH,light,10,One star-shaped object. I thought it was Venus, being the brightest of the night stars. ((NUFORC Note: ISS?? PD)) +2009-10-20,33.4486111,-84.455,Fayetteville,GA,light,10,Huge Blue/Green Orb over Fayetteville GA, decended straight down +2009-10-20,42.0527778,-124.2827778,Brookings,OR,formation,300,Very solid dark object in the sky. I was photgraphing another object at the time. I think it was chasing the dark one. +2009-10-20,41.0041667,-92.3736111,Ottumwa,IA,light,300,flashing light +2010-10-20,43.2166667,-123.3405556,Roseburg,OR,rectangle,180,5 round white lights hovering over I-5. ((NUFORC Note: Report from law enforcement officer. PD)) +2010-10-20,29.5633333,-95.2858333,Pearland,TX,sphere,7200,Round object in the sky with blue,green, and red colors hovering in the southeastern sky +2010-10-20,42.4733333,-83.2219444,Southfield,MI,light,780,Two ufos in the sky initially, then they separated and one appeared out of nothing next to one of them. +2010-10-20,35.2233333,-114.2222222,Golden Valley,AZ,unknown,45,sighting 10/20/2010 Arizona 05:45am. +2010-10-20,37.2494444,-83.1933333,Hazard,KY,light,5,Bright ball of light visible for 5 seconds, slowly faded away +2010-10-20,33.4222222,-111.8219444,Mesa,AZ,other,2,Not observed - Captured object in two of 3 images - Have original image in DNG format +2010-10-20,43.6136111,-116.2025,Boise,ID,fireball,300,Fireball changes directions a stops in the sky. +2010-10-20,47.6588889,-117.425,Spokane,WA,oval,120,The four (5)of us watched as two glowing objects flew slowly in the sky from the east. They were flying one directly behind the other +2010-10-20,41.2402778,-75.945,Plymouth,PA,light,20,i saw 2 objects in the sky to the right of jupiter that i cannot understand +2010-10-20,41.2411111,-77.0013889,Williamsport,PA,light,5,2 craft in formation +2010-10-20,36.0752778,-79.1,Hillsborough,NC,other,60,Orange UFO exploded by something. +2010-10-20,39.7458333,-75.5469444,Wilmington,DE,disk,30,Circular solid, semi-transparent glowing off-white circular shape zipped through the sky, stopped suddenly without slowing, went up +2010-10-20,45.7833333,-108.5,Billings,MT,light,900,Light moving slowly in a circle outside Billings +2010-10-20,38.1688889,-86.99,Dale,IN,triangle,600,UFO HOVERING OVER I-64 EASTBOUND REST STOP NEAR DALE INDIANA +2010-10-20,32.2730556,-89.9858333,Brandon,MS,triangle,90,Triangle lights over Brandon, MS +2011-10-20,29.7855556,-95.8241667,Katy,TX,disk,900,bright light and 2 flying saucers over Katy Texas +2011-10-20,29.5686111,-97.9644444,Seguin,TX,other,1,White with yellow tint, flash red then gone +2011-10-20,42.3583333,-71.0602778,Boston,MA,light,1200,The chasing red lights over Boston. +2011-10-20,40.6913889,-73.8061111,Jamaica,NY,flash,10,Bright Round Circle by the moon +2011-10-20,40.6083333,-75.4905556,Allentown,PA,rectangle,1200,4 rectangular light blues shapes over Allentown, Pennsylvania. +2011-10-20,26.0519444,-80.1441667,Dania Beach,FL,oval,60,Faded white oval light Breaking through the clouds +2011-10-20,39.4522222,-74.7280556,Mays Landing,NJ,other,20,House shaking and pictures moving along with audible rumbling. According to the news, USGS reports no seismic activity. +2011-10-20,42.0333333,-71.2194444,Mansfield,MA,flash,1,driving 95 north taking ramp to 495 south in the evening, saw bright green light fall to the ground +2011-10-20,31.6033333,-94.6552778,Nacogdoches,TX,light,120,Ufo flying low across the sky +2011-10-20,29.8944444,-81.3147222,St. Augustine,FL,circle,300,Three orbs going in different directions +2011-10-20,39.1961111,-121.19,Penn Valley,CA,triangle,9000,Up to five triangle shape craft with flashing lights seen flying in a circular pattern +2011-10-20,28.5491667,-81.7730556,Clermont,FL,light,3600,2 Hovering stationary drones with green/red anticollision @2000ft lasted over an hour +2011-10-20,42.0583333,-71.25,Foxboro,MA,light,7,Saw bright green light headed downward for approximately 7 seconds and then it vanished. +2011-10-20,41.4244444,-91.0430556,Muscatine,IA,light,180,five bright yellow lights leading huge craft +2011-10-20,30.2941667,-87.5736111,Orange Beach,AL,circle,240,Set of three lights floating over the Gulf of Mexico +2011-10-20,26.1336111,-80.1133333,Sunrise,FL,disk,3600,INCREDIBLE SAUCER-LIKE CRAFT UFO SIGHTING WITH VIDEO EVIDENCE OVER SOUTH FLORIDA! +2011-10-20,35.1872222,-77.3211111,Cove City,NC,oval,30,green oval light spotted over US-70 +2011-10-20,41.2427778,-73.2011111,Trumbull,CT,fireball,3,Green Fireball Sighted +2011-10-20,33.0197222,-96.6986111,Plano,TX,triangle,30,V shaped objects, no lights, no sounds +2012-10-20,34.5008333,-117.185,Apple Valley,CA,circle,7200,CIRCULAR CRAFT TURNING AROUND AND MOVING UP & DOWN SIDE TO SIDE W/ FLASHING LITGHS. ((NUFORC Note: Capella? PD)) +2012-10-20,45.8405556,-119.2883333,Hermiston,OR,cylinder,600,Call me if you want in depth description and pics and video some in raw format of 4 separate sightings. +2012-10-20,45.8405556,-119.2883333,Hermiston,OR,fireball,600,2 fireballs and a cylinder shaped craft spotted in Eastern Oregon. +2012-10-20,45.57,-93.5813889,Princeton,MN,circle,1860,White quick moving light in eastern Mn sky before sunrise. +2012-10-20,41.3197222,-81.6269444,Brecksville (Near),OH,light,120,As I was heading north on interstate 71 my daughter noticed a amber colored light in the sky... at first it was heading straight in our +2012-10-20,40.7141667,-74.0063889,New York City (Brooklyn),NY,sphere,10,Reflective Silver/Orange sphere over Brooklyn +2012-10-20,42.9375,-70.8394444,Hampton,NH,fireball,180,20 plus orange orbs seen in Hampton sky +2012-10-20,43.3238889,-88.1666667,Jackson,WI,light,300,Strange bright yellow lights moving across the sky. +2012-10-20,39.1369444,-76.6986111,Severn,MD,circle,300,12 red lights flying +2012-10-20,42.2780556,-74.9163889,Delhi,NY,light,600,I witinessed orange objects flying in unusual patterns coming from the horizon as well a silent and gliding black craft. +2012-10-20,31.7586111,-106.4863889,El Paso,TX,fireball,120,Fiery balls falling from the sky over El Paso. +2012-10-20,35.9608333,-78.2538889,Bunn,NC,fireball,300,2 fireballs traveling across the sky +2012-10-20,44.8113889,-91.4983333,Eau Claire,WI,fireball,300,Three groups , each between 5 and 10 objects moved across the sky and disappeared low in sky-Another group appearing shortly after. +2012-10-20,36.5483333,-82.5619444,Kingsport,TN,light,300,3 red lights in a triangular pattern rising in altitude together followed by 2 more. +2012-10-20,31.5544444,-110.3030556,Sierra Vista,AZ,triangle,10,Triangle-shaped, illuminated object flies fast and silent from north to south across sky +2012-10-20,33.3527778,-111.7883333,Gilbert,AZ,light,600,6-8 Orange lights in formation over Gilbert +2012-10-20,43.3238889,-88.1666667,Jackson,WI,fireball,600,Two Unidentified Objects observed over Washington County (Wisconsin) +2012-10-20,33.3527778,-111.7883333,Gilbert,AZ,light,240,12 red lights over gateway airport. 1 light merged with anouther light and became 1 light. +2012-10-20,38.5394444,-75.0555556,Bethany Beach,DE,sphere,900,Four hovering orange/red fireballs sighted above Bethany Beach, DE, around 10:15pm on Saturday, October 20, 2012. +2012-10-20,40.5622222,-111.9288889,South Jordan,UT,circle,120,Unexplaned huge red/orange ball over Sandy, Ut traveling horizontally and suddenly dropping out of sight. +2012-10-20,39.6527778,-78.7627778,Cumberland,MD,light,1800,Hovering flashing object with sudden movement +2012-10-20,33.5386111,-112.1852778,Glendale,AZ,light,300,12 - 20 lights flying in formation in phoenix sky video's linked in full description +2012-10-20,33.5091667,-111.8983333,Scottsdale,AZ,unknown,600,13 orange lighted craft in line formation moving to the North in Northwest Scottsdale Az +2012-10-20,33.9813889,-81.2363889,Lexington,SC,light,300,Silent orange balls of light in a straight line formation moving slowly for 5 minutes then dissapeared +2012-10-20,61.2180556,-149.9002778,Anchorage,AK,light,1200,3 bright lights (same hew as the stars) darting around the area of the Big Dipper, 2 seemed to be "attacking" the 1 +2012-10-20,47.9130556,-122.0969444,Snohomish,WA,unknown,300,Bright orange thing with beams coming out of it changing colors flying across the sky +2013-10-20,41.6638889,-83.5552778,Toledo,OH,light,600,Objects in sky move at incredible speed +2013-10-20,42.7883333,-71.2013889,Salem,NH,cigar,10,Metallic object reflecting the Sun, then vanishes. +2013-10-20,38.8597222,-104.9166667,Manitou Springs,CO,circle,60,3ft round silver ball hovering down street and moving in seemingly precise path. +2013-10-20,26.1416667,-81.795,Naples,FL,unknown,2700,Object moving different directions flashing a powerful bright light then joined by another identical object +2013-10-20,40.155,-74.8291667,Levittown,PA,light,720,Burnt orange objects in clear sky no navigation lights appeared out of nowhere travel across sky then disappeared. Levittown Pa. +2013-10-20,47.6588889,-117.425,Spokane,WA,flash,30,Two small, intense, blinking lights circled above Spokane Valley, WA. ((NUFORC Note: Advertising lights?? PD)) +2013-10-20,42.1344444,-73.8922222,Germantown,NY,light,900,Very large, bright stationary light seen over Hudson River near Saugerties/Kingston, NY smaller lights flying toward it after a time. +2013-10-20,39.9522222,-75.1641667,Philadelphia,PA,sphere,3600,Blue white illuminated sphere with smaller spheres orbiting object +2013-10-20,42.0027778,-71.5152778,Woonsocket,RI,triangle,300,A flashing triangular object hovering in sky with white beaming lights and body changing color. +2013-10-20,40.155,-74.8291667,Levittown,PA,light,480,As I was parking in the supermarket parking lot I noticed a orange light that appeared out of nowhere in the sky above the store. +2013-10-20,38.7508333,-77.4755556,Manassas,VA,triangle,3600,Huge up close triangular craft. +2013-10-20,37.9577778,-121.2897222,Stockton,CA,light,960,10/20/13 UFO sighting in Stockton. .? +1966-10-21,35.6869444,-105.9372222,Santa Fe,NM,disk,300,My sighting in Santa Fe,New Mexico +1973-10-21,38.6941667,-75.7725,Federalsburg,MD,disk,300,Saucer spotted in Federalsburg MD +1973-10-21,39.2902778,-76.6125,Baltimore,MD,disk,900,Oct 1973 Baltimore, Md Discw/dome/portholewindows/interiorLight. Noiseless, hovering, close by, huge +1973-10-21,39.2902778,-76.6125,Baltimore,MD,disk,480,"Jupiter Two"-like spacecraft, flew noiselessly, slowly just over the field in our backyard. +1975-10-21,27.875,-82.8513889,Indian Rocks Beach,FL,light,10,Shooting star stops, reverced direction, loops back and then shoots off into night. +1976-10-21,37.1041667,-113.5833333,St. George (Ut) To Las Vegas (Nv),UT,light,1800,A Bright red light in the southwestern sky approx. 45 degrees above the horizon. +1982-10-21,40.2969444,-111.6938889,Orem,UT,triangle,120,while noticing the stars over my head disappear in the shape of a triangle three lights became visable and a center docking entrance,as +1995-10-21,36.1016667,-78.4583333,Franklinton,NC,circle,10,I saw a four foot wide, moving, circular patch of road which was devoid of rain in a driving storm. +1995-10-21,43.1547222,-77.6158333,Rochester,NY,disk,600,UFO followed me +1995-10-21,43.1008333,-75.2330556,Utica,NY,disk,2100,My private plane was followed by a ufo for over 50 miles. +1997-10-21,40.1213889,-75.3402778,Norristown,PA,circle,1200,I viewed three UFO's in the sky, moving at high speeds and amazing shapes in the sky not possible by human planes. +1997-10-21,37.2844444,-109.5511111,Bluff,UT,light,60,following a green fireball, a red light appeared on Comb Ridge. +1998-10-21,37.2872222,-121.9488889,Campbell,CA,other,600,American stealth and flying sub dissapear into a portal above a house in Campbell ca 95008 +1998-10-21,35.615,-87.0352778,Columbia,TN,formation,6,U-shaped formation of orange gold lights travelling south at high speed. +1999-10-21,44.6497222,-93.2425,Lakeville (South Of Twin Cities About 15 Miles),MN,light,73800,Light with green flashing light on bottom, east of me about 10 o'clock position over next county, noticed while trying to view northern +1999-10-21,39.0997222,-94.5783333,Kansas City,MO,cylinder,1200,I and four other people watched a very large cylinder slowly move across the noon sky and enter a long, narrow cloud through one end, n +1999-10-21,35.1322222,-118.4480556,Tehachapi,CA,chevron,900,observed a white object against a blue sky which did not move or behave like an airplane +1999-10-21,40.0377778,-76.3058333,Lancaster,PA,light,900,I saw a bright light following me in the sky as I walked my dog. +1999-10-21,47.3075,-122.2272222,Auburn,WA,light,2,I was sitting in the family room of my home with windows facing North toward backyard when my attention was suddenly drawn to a very br +1999-10-21,45.4313889,-122.7702778,Tigard (12 Mi So Of Portland, Exit 290 I 5),OR,light,7200,Object moved north to south approx 40 deg.in 15 sec. and stopped. Remained in that position till 0130am 11/22/99. at that time i went +2000-10-21,44.32,-91.9147222,Alma,WI,oval,15,white/silver, oval, high altitude high rate of speed +2000-10-21,38.6880556,-83.6094444,West Manchester,OH,cylinder,5,While watching jets passing overhead leaving trails in every direction in the sky, we observed an object completely disappear from the +2000-10-21,41.6647222,-72.6397222,Rocky Hill,CT,chevron,600,5 objects sited in Eastern sky +2000-10-21,43.4194444,-83.9508333,Saginaw,MI,cone,7,Bright white cone-shaped object seen over Saginaw, Michigan +2000-10-21,36.0625,-94.1572222,Fayetteville,AR,cross,2,silent dark object in the shape of a cross seen in Fayetteville, AR moving south. +2000-10-21,37.6391667,-120.9958333,Modesto,CA,formation,45,These aircraft were not running any FAA required flight gear! +2001-10-21,35.8455556,-86.3902778,Murfreesboro,TN,oval,1800,An oval shaped object with brillant multi colored lights in the north sky not moving.Was very hard to distinguish with my eyes but it w +2001-10-21,35.9938889,-78.8988889,Durham,NC,fireball,120,aprox. 8:40 EST, white flame shape heading fast for ground, turned 90 degree then looked like short white line +2001-10-21,44.9366667,-93.6658333,Mound,MN,other,60,large boeing 747 followed by two smaller craft. +2001-10-21,40.4405556,-79.9961111,Pittsburgh,PA,diamond,60,UFO at a Steelers game. +2001-10-21,33.94,-118.1316667,Downey,CA,oval,360,Bigger than anny ballon +2001-10-21,42.9119444,-77.7458333,Avon,NY,fireball,2,Neon Green Glow +2001-10-21,40.3044444,-82.6963889,Centerburg,OH,light,180,Me and my friend saw a pulsating red light that deployed a smaller red light that fell towards the ground. +2002-10-21,34.1808333,-118.3080556,Burbank,CA,oval,1200,Sudden appearance of a circling group of 7 or 8 red-orange "orbs" +2002-10-21,39.7294444,-104.8313889,Aurora,CO,flash,5,As i was walking facing west, i began to notice a star like flash. It happened very suddenly,then i was walking to my door to the house +2002-10-21,42.6525,-73.7566667,Albany,NY,other,8,I saw the object reported by FOX-23 from my place of employment +2002-10-21,44.8486111,-74.2952778,Malone,NY,light,900,An erratic light being "chased" by a jet, then two floating objects quite some distance away, +2003-10-21,38.3566667,-121.9866667,Vacaville,CA,rectangle,120,2:25 am while satelite watching noticed an object moving sw to ne,with binacs,saw 3 objects or triangle formation now going w-east +2003-10-21,30.2669444,-97.7427778,Austin,TX,oval,300,An oval, saucer-shaped object moving slowly with brilliante colors of light flashing. +2003-10-21,33.8816667,-118.1161111,Bellflower,CA,fireball,600,BURNING ORB FLOATING OVERHEAD +2003-10-21,42.7925,-73.6816667,Waterford,NY,triangle,30,A very large slow moving triangle with bright strobes and no sound +2003-10-21,36.7477778,-119.7713889,Fresno,CA,other,30,Three Red lights observed hovering over Fresno, California +2003-10-21,42.9275,-83.63,Grand Blanc,MI,triangle,180,I was driving south on Saginaw St. in Grand Blanc at about 8:30pm and I noticed a triangular thing hoovering just above the trees above +2003-10-21,45.2536111,-92.8055556,Scandia,MN,light,900,Bright pulsating multi-colored light turning into disk shape with circle of red lights. +2003-10-21,38.8813889,-94.8188889,Olathe,KS,light,300,5-10 small objects that look liek little stars shooting around the sky, follow by to large possible planes. +2003-10-21,42.7261111,-87.7827778,Racine,WI,sphere,1800,Circular craft over Lake Michigan +2003-10-21,39.3330556,-82.9825,Chillicothe,OH,fireball,3,Bright green light streaks twice in Ohio sky between Waverly and Chillicothe on clear night. +2003-10-21,40.6686111,-73.5275,Bellmore,NY,oval,3,white light and becon spotted over bellmore "New York +2003-10-21,33.0202778,-117.2019444,Rancho Santa Fe,CA,light,3,Short-lived white "shooting star" +2003-10-21,28.3858333,-80.7422222,Cocoa,FL,fireball,4,A green ball of light in the north west sky moving in an arc shape as if it was falling, then it dissapeared. +2004-10-21,45.5236111,-122.675,Portland,OR,light,120,Two stationary bright spots, fading simultaniously for no apparent reason becoming very diim spots of light. +2004-10-21,45.5236111,-122.675,Portland,OR,light,60,Two objects, both red, one appeared to slowly fade, the other moved out of view behind trees in a quick stop/start motion. +2004-10-21,21.3069444,-157.8583333,Honolulu,HI,other,120,saw bright flame across sky twice, followed by tiny red lights, one moving in a sprial pattern and others stationary in the sky. +2004-10-21,29.4238889,-98.4933333,San Antonio,TX,triangle,30,I had step outside for last smoke of the day kind of raining humiday day. I was just about to light up when i heard a low humming noise +2005-10-21,39.1141667,-94.6272222,Kansas City,KS,rectangle,60,((NUFORC Note: May not be an authentic report. PD)) Scary stuff. +2005-10-21,41.8558333,-75.2241667,Equinunk,PA,other,600,6 Streaks of light in the southwest sky at sunset travelling left to right. +2005-10-21,33.6488889,-85.5875,Heflin,AL,sphere,1800,Huge ball of light seen on the ground in Talladega National Forest / Sweetwater Lake +2006-10-21,41.55,-71.4666667,North Kingstown,RI,circle,4,Flew 50 feet in air, one after another, came back towards us, and then went back into the opposite direction. +2006-10-21,22.1452778,-159.3155556,Anahola,HI,disk,10800,8 year old Daughter and friend experience sighting and interaction with UFO in Hawaii. +2006-10-21,47.6063889,-122.3308333,Seattle,WA,triangle,30,Gigantic triangle flys over Seatac and makes hard left turn. +2006-10-21,46.2469444,-114.1594444,Hamilton,MT,diamond,4,Small cloud becomes trapezoid shape and disappears +2006-10-21,39.5297222,-119.8127778,Reno,NV,unknown,6,Reno, NV Green Spherical Luminous Object over Reno +2006-10-21,42.0527778,-124.2827778,Brookings,OR,unknown,120,I saw a steady white light traveling west to east over Brookings, OR. It was bright and traveling fast. +2006-10-21,45.4944444,-122.8658333,Aloha,OR,light,60,Bright light over Aloha, OR, travelling fast +2006-10-21,32.2216667,-110.9258333,Tucson,AZ,unknown,240,Large object with multi color running light observed flying above Tucson Arizona +2007-10-21,45.1077778,-93.2377778,Spring Lake Park,MN,chevron,7,Something that looked to be a flock of birds in formation of a chevron moving way too fast to be birds. +2007-10-21,38.6411111,-83.7444444,Maysville,KY,light,2631600,strange lights over maysville ky +2007-10-21,35.5847222,-80.8102778,Mooresville,NC,unknown,8,4 bright lights traveling at a very high rate of speed. +2007-10-21,42.6583333,-83.15,Rochester Hills,MI,light,10800,Bright star like object right outside my door picks up other objects. ((NUFORC Note: Sighting of Venus, we suspect. PD)) +2007-10-21,30.5041667,-90.6691667,Holden,LA,diamond,1800,Diamond shape with multiple colored lights spinning around it with no sound, strobe light reflections from the ground. +2007-10-21,44.8113889,-91.4983333,Eau Claire,WI,formation,10,Arrow shape flying fast +2007-10-21,38.4088889,-121.3705556,Elk Grove,CA,sphere,480,Chrome sphere(s) over farmland outside Sacramento California spotted from twin prop passenger aircraft +2007-10-21,34.4211111,-84.1191667,Dawsonville,GA,other,900,Metallic balloon shaped object hovering in a beautiful blue sky. +2007-10-21,40.4777778,-74.2911111,South Amboy,NJ,sphere,360,Four brilliant SPHERES fly overhead in daylight sky +2007-10-21,36.5483333,-82.5619444,Kingsport,TN,circle,240,A bright silver circle shaped object that made a u-turn in the shape of a J ,went out of sight to the south of my home +2007-10-21,42.6288889,-78.0547222,Castile,NY,teardrop,300,sighting of aerial object @ letchworth state park NY +2007-10-21,44.5736111,-68.7961111,Bucksport,ME,sphere,20,Moving sphere in the sky +2007-10-21,41.85,-87.65,Chicago,IL,light,10,On October 21, 2007 I observed 2 UFO's in Chicago's northern suburbs at 8p.m.. +2007-10-21,39.6416667,-77.7202778,Hagerstown (Near),MD,flash,5,large white flash of light speeding across sky and disappeared within 3-5 seconds +2007-10-21,34.875,-84.2555556,Morganton,GA,oval,3600,Hovering object with counterclockwise rotating and changing lights +2008-10-21,43.0202778,-123.2919444,Myrtle Creek,OR,light,30,Bright light hovering in the fog. +2008-10-21,42.0527778,-124.2827778,Brookings,OR,sphere,900,Multi-Colored Ligth +2008-10-21,35.0525,-78.8786111,Fayetteville,NC,disk,6,Anomalous aircraft seen over Fayetteville N.C. citizen. +2008-10-21,39.3761111,-77.155,Mt. Airy,MD,light,2,faint light move in a zig zag in the sky and at the end it flashed really bright and disappeared Left a trail in the sky very clear out +2008-10-21,31.7244444,-96.165,Fairfield,TX,formation,1500,Fairfield, Freestone County, Texas 3 cylinder long gun barrel shiny objects at dusk on Western horizon, there for over 20 minutes +2008-10-21,39.0175,-122.0566667,Arbuckle,CA,light,5,light like venus desapear in 5 seconds +2008-10-21,32.4486111,-99.7327778,Abilene,TX,changing,180,Lights over Abilene,TX +2008-10-21,33.8491667,-118.3875,Redondo Beach,CA,formation,5,Three white crafts in formation- very fast- 12-20k feet - West > East Redondo Beach Approx. 9:45PM- no sound or lights +2008-10-21,29.9438889,-82.11,Starke,FL,sphere,45,VERY BRIGHT SPHERE ABOVE TREE LINES +2009-10-21,32.2216667,-110.9258333,Tucson,AZ,light,900,Fake Stars and Fake Airplanes in Arizona +2009-10-21,36.1627778,-85.5016667,Cookeville,TN,changing,900,Sited at least 3 or more objects with flashing lights in the sky. +2009-10-21,26.9616667,-82.3527778,Englewood,FL,cigar,60,it was very shiney and very fast on a very clear sky +2009-10-21,34.4233333,-118.4711111,Canyon Country,CA,light,1800,hoover brite star that started moving very fast and then slow, changing to red,green,blue in color +2009-10-21,36.0397222,-114.9811111,Henderson,NV,unknown,10,bright white light in S.W. sky over Henderson, Nv. oval in shape +2010-10-21,33.4705556,-82.5047222,Thomson,GA,disk,10,i was amazed +2010-10-21,26.5625,-81.9497222,Cape Coral,FL,light,120,went outside to check out metor shower that was supposed to be tonight 10/21/10. when i looked up at the moon i saw a real bright star +2010-10-21,37.2316667,-79.8108333,Hardy,VA,light,2700,Bright light at Smith Mountain Lake Virginia +2010-10-21,26.6402778,-81.8725,Fort Myers,FL,light,30,two bright lights which faded slowly to disappear +2010-10-21,42.3583333,-71.0602778,Boston,MA,light,60,The light just vanished and come back then vanished again. +2010-10-21,45.0244444,-123.9452778,Otis,OR,light,1800,"Satellites" that sped away and a vanishing "Constellation" +2010-10-21,32.7763889,-79.9311111,Charleston,SC,triangle,60,Hwy 61, triangular shape craft w/ multi colored lights on one side and red lights at points. +2010-10-21,37.3394444,-121.8938889,San Jose,CA,disk,180,UAO over 680 southbound freeway +2011-10-21,34.2283333,-118.5358333,Northridge,CA,triangle,10,V shape dim orange "lights" moving fast and silent then faded into night sky +2011-10-21,47.6063889,-122.3308333,Seattle,WA,unknown,120,Stationary object, Very brightlights, swooped to the NW into a fog bank. +2011-10-21,41.6688889,-87.7386111,Alsip,IL,circle,900,They were round in shap moving very fast up and down lights were flashing fast i seen at least four they were poping in and out for abo +2011-10-21,44.5888889,-90.4611111,Granton,WI,light,180,Two different lights pass over Granton, WI, meeting and passing very close with jet following? +2011-10-21,35.9172222,-82.3011111,Burnsville,NC,light,900,Changin Lights in the Sky! +2011-10-21,35.9172222,-82.3011111,Burnsville,NC,light,900,UPDATE Burnsville, NC SITING +2011-10-21,38.2541667,-85.7594444,Louisville,KY,changing,7,Redish Orange shift changing object in the sky that shot up to the stars and vanished +2011-10-21,34.1741667,-97.1433333,Ardmore,OK,oval,480,two machines one silver and one red/oranges oval ufo there no clouds like the sky opened and they went in. +2011-10-21,37.8313889,-122.2841667,Emeryville,CA,formation,60,In the sunset sky. +2011-10-21,33.2855556,-86.81,Pelham (Valleydale Exit Getting Onto I-65 N),AL,circle,720,Objects of light, with a tail falling from the sky, then stopping mid-fall and moving independently around the area unlike an aircraft. +2011-10-21,36.2166667,-81.6747222,Boone,NC,other,10,Large red/orange object spotted over Boone, NC. +2011-10-21,34.9919444,-86.8469444,Ardmore,AL,light,900,Saw a light that appeared to be a star, but was moving very erraticaly before shooting off directly north. +2011-10-21,44.6827778,-104.6011111,Hulett (Near),WY,light,12,Bright silver object with silver trail traveling at high rate of speed. +2011-10-21,29.7352778,-94.9772222,Baytown,TX,light,2,Single light moving very fast, zig-sagged, stopped, vanished in 2-3 seconds +2011-10-21,36.2166667,-81.6747222,Boone,NC,light,30,Large red objected spotted in Boone, NC. +2011-10-21,40.7672222,-74.2052778,East Orange,NJ,formation,7200,4 lights in the sky that swirled around our heads making a square/ diamond shape and that followed us about 9 blocks home +2011-10-21,45.1719444,-93.8744444,Buffalo,MN,oval,7200,Large Oval object hovering with bright, "blinking" rotating colors of Red/blue/green/yellow/white. ((NUFORC Note: Star?? PD)) +2011-10-21,61.2180556,-149.9002778,Anchorage,AK,circle,300,Orange circles "climbing" then fading away +2011-10-21,36.6002778,-121.8936111,Monterey,CA,chevron,15,Reverse wing craft moving very fast down the coast with no lights, noise, or contrail. +2011-10-21,36.6116667,-77.5469444,Skippers,VA,light,2100,appeared low blurry white lights hovering , when it moved they golwed a blurry red .no sound +2011-10-21,33.0580556,-112.0469444,Maricopa,AZ,triangle,5,Triangle formation of lights followed by single light +2011-10-21,37.8402778,-85.9491667,Radcliff,KY,circle,1200,circular shaped object with lights around it +2011-10-21,47.4830556,-122.2158333,Renton,WA,diamond,20,Gray translucent elongated diamond in shape with a tail +2011-10-21,28.0202778,-97.0541667,Rockport (Aransas Pass),TX,changing,10800,Possible ufo sighting. +2011-10-21,39.3958333,-101.0519444,Colby,KS,sphere,1800,White sphere being followed. +2011-10-21,38.9988889,-84.6266667,Florence,KY,teardrop,300,I came into contact with these aliens, and they took off as soon as they noticed me. +2011-10-22,37.8044444,-122.2697222,Oakland,CA,sphere,2,well i was just outside looking at regular aircraft (live near airport) then i see 5-7 shiny flying spheres about 4000 ft in the air , +2012-10-21,41.3572222,-88.4211111,Morris,IL,formation,300,Unexplained "formation" of red lights that slowly disappeared. +2012-10-21,42.6055556,-83.15,Troy,MI,unknown,3600,Two Objects Flashing Lights and Not Moving for Over an Hour +2012-10-21,33.5311111,-111.9419444,Paradise Valley,AZ,triangle,15,At approximately 1:30 am while smoking a cigarette in my back yard, movement high up in the atmosphere caught my eye. +2012-10-21,36.1988889,-115.1166667,North Las Vegas,NV,light,3300,Flashing lights, moving objects and odd movements +2012-10-21,35.1083333,-77.0444444,New Bern,NC,triangle,10800,I realized that at about 3:00 am as I was going outback to see the Orionid meteor shower that there was a strange jumble of lights on t +2012-10-21,30.2238889,-92.0197222,Lafayette,LA,formation,420,I am looking for an explanation to why would something so big not built by human intelligence visit...me. +2012-10-21,27.3361111,-82.5308333,Sarasota,FL,cylinder,10,This object was extremely clear and easy to see, silent and the dim lights were fascinating to watch. +2012-10-21,40.6936111,-75.1113889,Stewartsville,NJ,egg,8,What the heck was that? +2012-10-21,44.2563889,-70.2566667,Turner,ME,sphere,15,Greyish sphere seen by 2 people in Maine. +2012-10-21,42.9133333,-85.7052778,Wyoming,MI,triangle,180,Changing colored object seen by manyhovering over suburban neighborhood +2012-10-21,28.9886111,-80.9025,Edgewater,FL,teardrop,2,I saw a neon green white hot and glowing comet or teardrop shaped object falling out of the sky. +2012-10-21,33.9561111,-83.9880556,Lawrenceville,GA,changing,1200,Reflective object over Lawrenceville Ga. 10/21/12 +2012-10-21,39.7294444,-104.8313889,Aurora,CO,unknown,600,4 objects moving and dancing at very high altitude. shiney, reflective orbs +2012-10-21,43.2925,-85.0813889,Stanton,MI,cigar,180,The wife and I had a beautiful daytime siting of a cigar shaped craft flying alongside an airliner. The siting lasted about 3 minutes. +2012-10-21,61.2180556,-149.9002778,Anchorage,AK,cylinder,30,Cylindrical lights, Anchorage +2012-10-21,41.2222222,-73.0569444,Milford,CT,circle,420,Overflight of two firey orbs. +2012-10-21,28.0341667,-80.5888889,Palm Bay,FL,circle,900,No common aircraft sounds were heard. +2012-10-21,40.7933333,-77.8602778,State College,PA,circle,300,Orange/ red orb hovering over state college moving slightly in all directions +2012-10-21,33.7488889,-84.3880556,Atlanta,GA,oval,2700,They all had blinking lights and were round in shape via the orientation of the bright orange lights when I took photos. +2012-10-21,29.5686111,-97.9644444,Seguin (Near),TX,flash,2700,Lite in same area goes out then comes back really bright cant see shape. it doesnt apear like plane activity or a lite pole. +2012-10-21,33.6305556,-112.3325,Surprise,AZ,triangle,300,Two craft with bright orange lights and no sound. +2012-10-21,41.4994444,-81.6955556,Cleveland,OH,disk,120,As I was driving my friend home we both saw what appeared to be an airplane on I-90 East towards Cleveland. +2013-10-21,34.7391667,-112.0091667,Cottonwood,AZ,light,420,Red, white blue flashing lights +2013-10-21,29.6194444,-95.6347222,Sugar Land,TX,fireball,30,Sugar Land, TX white streak with green burst. +2013-10-21,43.0388889,-87.9063889,Milwaukee,WI,unknown,10,I was pulling into work at 6:36am and a bright blue light lit up the sky. There were many clouds and this light was behind them. It f +2013-10-21,42.2791667,-71.4166667,Framingham,MA,other,300,Two objects seen north of Mass Pike (Framingham-Southboro-Westboro. +2013-10-21,29.4238889,-98.4933333,San Antonio,TX,triangle,60,Triangle shape. +2013-10-21,29.7630556,-95.3630556,Houston,TX,sphere,5,Bright blue orb shot fast across the sky. No fade, no trail, no sound. +2013-10-21,38.4313889,-92.8408333,Versailles,MO,fireball,1800,Yellow/Orange colored "orb" seen for approximately 30 minutes. +2013-10-21,29.7855556,-95.8241667,Katy,TX,light,20,Third UFO sighting. +2013-10-21,44.1538889,-87.5691667,Two Rivers,WI,oval,900,Unexplained lights over Lake Michigan and lake shore. +2013-10-21,42.3708333,-71.1833333,Watertown,MA,fireball,600,Fast-moving, illuminated object similar to fireball silently crosses evening sky and in an instant plunges about 100 feet +2013-10-21,34.1619444,-97.4255556,Wilson,OK,light,240,Strange bright star moving oddly, while military jets fly by it. +2013-10-21,39.7530556,-74.2233333,Barnegat,NJ,fireball,60,Object appearing to be a burning object flew low at constant speed and altitude. +2013-10-21,39.7852778,-75.9791667,Oxford,PA,oval,30,Red/orange oval object fell diagonally from the sky and disappeared. Left behind a trail of smoke. +2013-10-21,36.31,-96.4638889,Cleveland,OK,teardrop,900,Bright lights hovering in the sky low to the ground disappeared out of sight within a few minutes. +2013-10-21,38.3697222,-90.3783333,Imperial,MO,diamond,300,We were sitting on back deck talking and looking at the moon and ski she we saw a glowing diamond like shape in ski. +2013-10-21,42.5311111,-88.2480556,Twin Lakes,WI,light,900,UFO glowing circle of light perfectly still then vanishes. +1965-10-02,40.4405556,-79.9961111,Pittsburgh,PA,disk,300,Like something I had never seen at the time or have ever seen again! +1980-10-02,33.6694444,-117.8222222,Irvine,CA,sphere,900,Dot of light making imposable turn +1988-10-02,41.5355556,-73.8994444,Fishkill,NY,formation,600,Lights over Fishkill N.Y. +1994-10-03,45.715,-121.4633333,Bingen,WA,fireball,900,I was car camping with some friends at Bingen Marina. I was awakened by what I thought was a car pulling into the parking lot. (no car +1997-10-02,34.9158333,-85.1091667,Ringgold,GA,circle,120,My mother and I were driving down Alabama Hwy When a round silver shiny object appeared in My driver side window. It stayed right Besid +1997-10-02,34.0522222,-118.2427778,Los Angeles (Malibu Beach),CA,sphere,3,oval, spheric object moving fast and straight +1998-10-02,34.8697222,-111.7602778,Sedona,AZ,fireball,300,Object like a white fireball, with a short tail, hovering +1998-10-02,34.0686111,-118.0266667,El Monte,CA,circle,600,I noticed three craft flying in a straght line with a fourth craft flying between the second two, making a right trangle, off to the ri +1998-10-02,41.5244444,-90.5155556,Bettendorf,IA,light,60,Heavy Blue Light beamed down and chased family in house, simular to 50 foot wide search light. +1999-10-02,34.0952778,-118.1261111,Alhambra,CA,light,3,Luminous green object seen in slow descent before winking out. +1999-10-02,36.1538889,-95.9925,Tulsa,OK,chevron,5,Looked up the light was just north of my house I realised then that it was a formation of 5 lights but the body of the craft was visibl +1999-10-02,43.1725,-79.0361111,Lewiston,NY,other,15,We were fishing in the lower Niagara River, near the water intakes for the power plant just upstream from the Riverside Inn. +1999-10-02,44.4633333,-118.7088889,Prairie City,OR,cigar,30,Appeared to be jet with short vapor trail then vapor changed to something like a fireman spraying with a fog or fan spray that spread W +1999-10-02,37.7397222,-121.4241667,Tracy,CA,other,20,Ablation Cone with trailing smoke contrail Moving South to North. Extingushed at near overhead. Cone angle 20 approx. Deg. +1999-10-02,44.6369444,-124.0522222,Newport,OR,changing,7200,Original sighting was that of a Pyramid of lights, however, the shape of those lights changed in what I believe to be the rotating of a +1999-10-02,32.3525,-90.8777778,Vicksburg,MS,circle,120,large object seemed to be hovering over the trees. +1999-10-02,48.1958333,-114.3119444,Kalispell,MT,chevron,5,Group of 5 (perhaps 7) faint, diffuse, eliptical white lights, traveling quite quickly north to south. Relatively low altitude; discer +2000-10-02,35.9488889,-85.0269444,Crossville,TN,circle,8,more pulsing red lights in the night sky +2000-10-03,29.4238889,-98.4933333,San Antonio,TX,light,900,three bright large lights in sky--loose formation? +2001-10-02,38.9058333,-81.6608333,Sandyville,WV,egg,300,Red Glowing Blimp-Like Object Hovering over a field +2001-10-02,40.6883333,-75.2211111,Easton (Forks Twsp.),PA,triangle,420,Craftt in the treetops +2001-10-02,40.3211111,-79.3797222,Latrobe,PA,fireball,2,Fireball Reported From Various Locations of Pennsylvania +2001-10-02,42.6072222,-83.9294444,Howell,MI,fireball,3,At 7:39 pm Tuesday, October 2, I was driving east on Clyde Rd., which is a dirt road 4 miles north of Howell, MI. I was 1 mile west of +2001-10-02,47.4066667,-122.0375,Maple Valley,WA,other,2,The object sighted was the same size, shape, and color of a medium sized star traveling diagnally but seemed strange. +2002-10-02,41.3936111,-72.7916667,Northford,CT,egg,23,A Glow in the Sky...... +2003-10-02,30.0472222,-99.14,Kerrville,TX,circle,15,first i saw 8 white lights in a V formation of wich i thought to be one single craft with the 8 lights on it .then they moved west towa +2003-10-02,35.2269444,-80.8433333,Charlotte,NC,oval,120,small orange oblong craft seen over Charlotte, NC at 19:14 on October 02, 2003 +2003-10-02,30.6941667,-88.0430556,Mobile,AL,chevron,15,fast moving Chevron/ V formation of lights +2003-10-02,37.2255556,-107.5975,Bayfield,CO,triangle,300,Flying triangle in Bayfield, CO +2003-10-02,32.9808333,-80.0327778,Goose Creek,SC,diamond,60,Object moved the full view of night sky in less than 60 seconds +2003-10-02,43.3269444,-83.0802778,Marlette,MI,light,3,strange light seen by 2 private pilots from light aircraft at night at appx 3500 feet agl to the NE over thumb of Michigan +2003-10-02,38.35,-104.7222222,Pueblo West,CO,other,15,Intense red light, spinning rapidly, droning sound. +2004-10-02,43.1086111,-77.4877778,East Rochester,NY,unknown,600,Early morning silent runner +2004-10-02,36.595,-82.1888889,Bristol,TN,triangle,600,Large Triangle shaped object witnessed with possible injuries +2004-10-02,43.0125,-83.6875,Flint,MI,sphere,30,white sphere flies out of contrail. +2004-10-02,38.6272222,-90.1977778,St. Louis,MO,unknown,600,Sat. Oct 2nd. 3:23 - 3:30 pm. St. Louis, MO. Object hoovering in the sky with flashing light. +2004-10-02,44.7677778,-93.2775,Burnsville,MN,diamond,120,I saw a diamond-shaped silver object hovering with little to no motion in the southward sky. +2004-10-02,34.09,-117.8894444,West Covina,CA,unknown,600,white, caterpillar contrails over Los Angeles County +2004-10-02,38.2541667,-85.7594444,Louisville,KY,oval,300,My 2 children and I saw 2 oval objects in the sky above the sunset over a busy interstate, I took pictures. +2004-10-02,30.2941667,-87.5736111,Orange Beach,AL,light,900,Observed light at high altitude chane directions in an impossible way. +2004-10-02,33.6602778,-117.9983333,Huntington Beach,CA,light,240,Orange light traveling parallel to the Pacific coast emitting streaks of orange light. +2004-10-02,41.9083333,-71.3625,South Attleboro,MA,triangle,60,Large triangular object, close to ground. +2005-10-02,33.6488889,-85.5875,Heflin,AL,circle,300,Object with bright red light hovered above my car siletly, and followed me for about five minutes then disappeared. +2005-10-02,44.8897222,-93.3497222,Edina,MN,formation,5,Triangle Formation +2005-10-02,42.125,-72.75,Westfield,MA,light,5400,Three bright lights appeard at different times. Moving in zig-zag patterns in the sky over a long period of time. +2005-10-02,41.85,-87.65,Chicago,IL,light,240,I saw a red lite moving accross the sky very slowly and totally silent. +2005-10-02,39.2702778,-75.1013889,Dividing Creek,NJ,circle,600,Round, red object flew liesurely then soared at tree level-it's color intensified and it quickly zig-zagged (3x) then traveled away. +2005-10-02,29.8830556,-97.9411111,San Marcos,TX,diamond,5400,Very bright light was seen over South direction +2005-10-02,41.8238889,-71.4133333,Providence,RI,changing,300,White tear drop shaped object that was visible to the naked eye that I noticed after an aircraft flew overhead. +2005-10-02,40.7141667,-74.0063889,New York City (Manhattan),NY,other,180,Did anyone see a very strange object flying above New York City on October 2, 2005? I have pictures +2005-10-02,39.7383333,-104.3227778,Strasburg,CO,oval,900,Metallic oval or cylinder , daytime, visable for 15 min, splits into 3 objects,Strasburg Colorado +2005-10-02,40.4775,-74.6272222,Hillsborough,NJ,triangle,300,Very large, bright orange triangle shaped object moving slowly through the sky. +2006-10-02,39.0283333,-84.2177778,Amelia,OH,unknown,2,Frisby-like sound outside of window around midnight. +2006-10-02,45.5236111,-122.675,Portland,OR,circle,5400,I was sitting outside on my porch after midnight. As I sat there I looked out above my neighbors house to see two stars about an inch a +2006-10-02,33.1975,-96.615,Mckinney,TX,fireball,2,While driving along intersate 380 toward the west in McKinney, Texas, on my left out of my peripheral vision, I could see what appeared +2006-10-02,38.0694444,-78.7008333,Crozet,VA,other,1.5,squiggle of light right over the car in the fog +2006-10-02,39.7391667,-104.9841667,Denver,CO,chevron,30,My sister and I grew up in a model aviation building/flying family and we both have a keen knowledge of the state of aviation art in fl +2006-10-02,40.7141667,-74.0063889,New York City (Brooklyn),NY,changing,600,Photos of a UFO above Manhattan. +2006-10-02,33.9686111,-112.7288889,Wickenburg,AZ,formation,240,4 yellow lights, aligned in a crescent shape appeared, then disappeared. +2006-10-02,37.0841667,-94.5130556,Joplin,MO,light,420,Two bright lights turn into 20 to 30 planes! +2006-10-02,33.6602778,-117.9983333,Huntington Beach,CA,light,600,Large craft with two red lights hovering in sky tracked by a police helicopter for several minutes. +2006-10-02,33.6602778,-117.9983333,Huntington Beach,CA,changing,420,UFO over hUntington beach CA with helicopter circling it +2006-10-02,40.7141667,-74.0063889,New York City (Manhattan),NY,unknown,60,"U" shaped formation of 15-20 yellow lights flew from southward above new york city at approximately 11pm on Monday October 2, 2006 +2007-10-02,29.9838889,-90.1527778,Metairie,LA,unknown,30,Object over New Orleans streaked out of sight in a flash followed with a sonic boom. +2007-10-02,47.9791667,-122.2008333,Everett,WA,light,1200,A bright yellowish light over the I-5 freeway in Western Washington. +2007-10-02,34.0966667,-117.7188889,Claremont,CA,circle,7200,woke up at around 3am to use the bathroom when I noticed a bright light coming in my bedroom window. ((NUFORC Note: Venus. PD)) +2007-10-02,40.4283333,-79.6977778,Murrysville,PA,light,3600,sitting in the sky bright light and just still seen it 3 times now on different nights. ((NUFORC Note: Venus. PD)) +2007-10-02,29.7630556,-95.3630556,Houston,TX,light,600,Strobbing Orb ((NUFORC Note: Venus?? PD)) +2007-10-02,34.7391667,-112.0091667,Cottonwood,AZ,triangle,120,Triangle or three-light formation seen in daylight +2007-10-02,44.8605556,-66.9847222,Lubec,ME,circle,15,Low flying bright object appeared to zigzag and hover. +2007-10-02,38.8338889,-104.8208333,Colorado Springs,CO,triangle,1200,the second object appreared suddenly, then flickered out as the first object returned the way it had come. +2007-10-02,27.5955556,-81.5063889,Avon Park,FL,unknown,900,Lights in the Sky near Avon Park Bombing range +2008-10-02,35.3819444,-78.5488889,Benson,NC,other,30,unknown looking craft +2008-10-02,33.1580556,-117.3497222,Carlsbad,CA,light,300,10/02/08 just before sunrise, dark skies. Hovering white light which turned to blinking blue & red. Lasted 5 mins long. +2008-10-02,32.7355556,-97.1077778,Arlington,TX,light,300,About 7 pm Nov, 2, 2008 I was leaving a restraunt near the Parks Mall and I looked up and notice a very bright white light. It appeare +2008-10-02,39.7875,-75.6969444,Hockessin,DE,cylinder,120,UFOs Sighted in Hockessin, Delaware. +2008-10-02,41.4458333,-74.4233333,Middletown,NY,light,3600,Large bright light with aircraft below it shows to me that it is not an aircraft. +2008-10-02,42.0494444,-92.9077778,Marshalltown,IA,triangle,5,October 2, 2008 just after 8 p.m. Marshalltown, Iowa, saw a black triangular shaped object, with round green lights in V pattern +2008-10-02,39.9522222,-75.1641667,Philadelphia,PA,egg,30,Did this sighting have anything to do with my husbands illness? +2008-10-02,32.7252778,-97.3205556,Fort Worth,TX,triangle,120,Triangular craft with white glowing lights +2008-10-02,37.8044444,-122.2697222,Oakland,CA,light,2,White light over San Francisco Bay observed from Downtown Oakland +2008-10-02,41.3305556,-74.1872222,Monroe,NY,triangle,120,Triangular with red lights hovering and disappears +2009-10-02,30.3319444,-81.6558333,Jacksonville,FL,light,120,Object moving above cloud line in Jacksonville, FL Oct 2, 2009 at 10:30 am +2009-10-02,39.7391667,-104.9841667,Denver,CO,light,7200,three semi-stationary lights in sky seen from Denver area but over Kansas. Able to move very fast. +2009-10-02,38.8338889,-104.8208333,Colorado Springs,CO,light,60,Two white lights floating in the sky near the moutains of Colorado Springs, Colorado. +2009-10-02,36.0152778,-83.415,Dandridge,TN,disk,300,fleet of triangle lights moving sw over dandridge, tn +2009-10-02,39.405,-114.7777778,Mcgill,NV,light,1200,Strange lights in the sky +2009-10-02,37.6391667,-120.9958333,Modesto,CA,cylinder,3600,2 blue cylinders and 1 white light over Modesto +2009-10-02,36.3302778,-119.2911111,Visalia,CA,cigar,5,cigar object/ kind of pill capsule shaped , with two steaks of light near the front, flew down way to fast and too much at an angle!!! +2010-10-02,43.6136111,-116.2025,Boise,ID,light,3600,Im sitting here looking south west at a bright light that is the only thing in the sky, not a single star can be seen from the lights o +2010-10-02,41.6005556,-93.6088889,Des Moines,IA,diamond,1500,Single light multiplied then came together as a diamond then became one and disappeared. +2010-10-02,42.4166667,-90.4288889,Galena,IL,triangle,20,10/02/10 - Galena, Illinois a triangular shaped object flying low, straight, silent with constant lights on each corner. Lasting 20 SEC +2010-10-02,33.7877778,-117.8522222,Orange,CA,unknown,120,Mysterious Rays Light Up Night Sky in Orange, California +2010-10-02,33.5966667,-83.8602778,Covington,GA,other,120,((HOAX??)) SITTING STILL IN SKY +2010-10-02,37.6625,-121.8736111,Pleasanton,CA,oval,1800,Two crafts, shaped like sheres/ovals, appeared thirty seconds apart from each other and the second one circled around the first twice +2010-10-02,48.9391667,-119.4344444,Oroville,WA,sphere,10800,Bright round saucer, stationary, red lights on right, over Oroville, WA +2010-10-02,40.6083333,-75.4905556,Allentown,PA,light,10,Two bright white lights. +2010-10-02,33.7125,-115.4013889,Desert Center,CA,fireball,60,2 crafts. 1 of which was a fireball shape. +2010-10-02,30.2669444,-97.7427778,Austin,TX,unknown,180,4 orbs of glowing light +2010-10-02,38.6272222,-90.1977778,St. Louis (Clayton),MO,chevron,15,Saw what appeared to be a commercial jet headed for airport but no lights or sound +2010-10-02,42.5311111,-88.2480556,Twin Lakes,WI,cigar,15,Navy blue lighted wide object appeared over Twin Lakes Wisconsin and disappeared behind trees. +2011-10-02,31.4636111,-100.4366667,San Angelo,TX,flash,2,Odd flash that shifted briefly +2011-10-02,37.4536111,-90.7947222,Lake Springs,MO,oval,60,I saw these three craft flying around the same vicinity. +2011-10-02,37.4536111,-90.7947222,Lake Springs,MO,oval,60,Three opaque oval craft sighted over mid missouri. with witnesses +2011-10-02,42.3211111,-85.1797222,Battle Creek,MI,circle,300,Bright white circular craft flying fast above the clouds until it disappeared. +2011-10-02,46.5180556,-95.3758333,New York Mills,MN,light,60,One satellite chasing another +2011-10-02,34.2694444,-118.7805556,Simi Valley,CA,other,180,Wife and I saw lg, round neon green disk moving in SE direction and returned. It hovered, dropped, rose high, and darted to the NE. +2012-10-02,38.545,-121.7394444,Davis,CA,triangle,31,Red triangular Lights, With Multicolored Lights Randomly Between them (31sec. Video) +2012-10-02,46.9422222,-122.6047222,Yelm,WA,light,3600,2-Light's seen one stopped over head for about 1-hour till cloud's rolled-in tried to act like a star. +2012-10-02,40.5580556,-90.035,Canton,IL,oval,5,This is my second sighting near this area since 2001. +2012-10-02,35.4797222,-79.1805556,Sanford,NC,triangle,180,Light formation +2012-10-02,42.0083333,-91.6438889,Cedar Rapids,IA,circle,600,I was watching a hawk fly around and a round shinny object caught my eye. it was thousands of feet up. It was traveling north to south +2012-10-02,33.8752778,-117.5655556,Corona,CA,oval,600,10 oval objects flying over Corona, California in broad daylight. +2012-10-02,40.6677778,-111.9380556,Taylorsville,UT,circle,600,Silver orb moving over the Salt Lake valley from north to south and then from south to east. +2012-10-02,43.7980556,-73.0880556,Brandon,VT,other,480,What we saw was what to be a plane but it looked like one from way back just like an old bomber. It flew over our apt tree level. +2012-10-02,33.6602778,-117.9983333,Huntington Beach,CA,oval,60,Ufo flying circles then speeding off with three smaller objects behind it, it was not producing light just reflections from moonlight +2012-10-02,34.1141667,-116.4313889,Yucca Valley,CA,sphere,10,Large, bright white orb due east of Yucca Valley +2012-10-02,47.4066667,-122.0375,Maple Valley,WA,chevron,120,Two chevron-shaped objects flying in formation spotted over Maple Valley, WA. +2012-10-02,32.64,-117.0833333,Chula Vista,CA,circle,1,I glowing light unlike anything I have ever seen moved across the sky a d behind a cloud faster than anything I have ever seen. Not a b +2012-10-02,46.5377778,-111.9319444,Montana City,MT,light,10,Bright red light leading a helicopter at night. +2012-10-02,35.7063889,-81.2188889,Conover,NC,circle,900,Sighted 3 red and white crafts moving back and forth quickly in the sky without sound in Hickory, and friends in Salisbury saw too. +2012-10-02,41.8444444,-90.1886111,Clinton,IA,circle,600,Non flashing orange lights going westward across Clinton Iowa making no sound +2012-10-02,61.2180556,-149.9002778,Anchorage,AK,formation,420,25 to 35 light orange orbs in sky...not flares +2012-10-02,35.9605556,-83.9208333,Knoxville,TN,light,8,Like a shooting star, but it was overcast Slow to fast and disappeared Knoxville TN +2012-10-02,42.6058333,-114.21,Eden,ID,light,3600,Red, white, and blue flickering object in the sky, like a cop car. +2012-10-02,37.9883333,-85.7158333,Shepherdsville,KY,fireball,30,Large star-like orange/red fireball seen hovering, un-moving in Shepherdsville Ky until it faded away +2013-10-02,34.9883333,-80.3672222,Marshville,NC,other,10,Strange glowing line moving across the sky. +2013-10-02,38.8158333,-76.75,Upper Marlboro,MD,circle,2,I was painting my house and was on a step ladder about 6 ft high and saw an orange light that looked like it was rotating vertically. +2013-10-02,37.775,-122.4183333,San Francisco,CA,sphere,900,Whitish/metallic sphere high in the sky over San Francisco CA. +2013-10-02,36.175,-115.1363889,Las Vegas,NV,cigar,600,High flying object, trails in front and back, elongated, bright shape in the middle. +2013-10-02,42.6827778,-89.0186111,Janesville,WI,cigar,3600,Noticed Odd Shape Stationary Bright Light In Sky. +2013-10-02,33.9319444,-117.9452778,La Habra,CA,circle,10,Circled shape object vanishes near La Habra, CA. +2013-10-02,41.5380556,-72.8075,Meriden,CT,disk,15,Bright blue disk with two bright red lights, hovering and moving back and forth in the sky until it disappeared. +2013-10-02,39.515,-84.3983333,Middletown,OH,fireball,30,I listen to Coast to Coast Radio......I have heard you talk many times about the Orange Balls......I saw one tonight.....and watche +2013-10-02,39.4561111,-77.9641667,Martinsburg,WV,light,2,Very green light appeared and fell straight down. +2013-10-02,38.8008333,-77.3258333,Fairfax Station,VA,circle,20,Orangish yellow ball falls from sky. +2013-10-02,40.7988889,-81.3786111,Canton,OH,fireball,180,1 Yellow/Orange Flying Fireball over Canton, OH, USA. +2013-10-02,42.5369444,-85.6416667,Martin,MI,disk,15,Saucer shaped disk with lights made no noise and simply vanished after a minute or two. +2013-10-02,44.7311111,-68.8269444,Orrington,ME,changing,600,Lights seen over Orrington. +2013-10-02,42.9730556,-77.8530556,Caledonia,NY,triangle,5,Large triangle craft passed overhead, rotated, turned 90 degrees to the right, and vanished. +2013-10-02,39.9522222,-75.1641667,Philadelphia,PA,light,300,22:00- black sky, medium cloud cover. I was about to cross the street, but i looked up and noticed a soft white light heading northeast +2013-10-02,39.7913889,-74.1955556,Waretown,NJ,rectangle,900,Three lights moving very slowly then turned north revealing 2 add'l red lights. Hovered for several minutes. +2013-10-02,39.6416667,-77.7202778,Hagerstown,MD,oval,300,Orange/gold ovular object seen hovering, then shut off lights the second another eye witness came within view. +1968-10-22,28.0391667,-81.95,Lakeland,FL,disk,900,We saw a flying Saucer over Lakeland Florida, and also it was reported the next day in the Lakeland Ledger newspaper +1974-10-22,33.948055600000004,-86.4727778,Oneonta,AL,circle,10,Big, round , with lights, but no sound, moving slow, +1985-10-22,40.7141667,-74.0063889,New York City,NY,sphere,120,I was very young at the time but i remember the account clearly, so dose my brother. It happend one night that my parents had a getogth +1986-10-22,35.5363889,-78.2847222,Selma,NC,light,420,Six aircraft moving at high rates of speed in an acrobatic formation then dissapearing in a star burst +1987-10-22,43.0716667,-70.7630556,Portsmouth,NH,cigar,1200,Large silent black cigar shaped craft sighted over Pease AFB +1988-10-22,40.7141667,-74.0063889,New York City (Queens),NY,sphere,60,Sphere coming out from the Moon +1988-10-22,38.9952778,-110.1611111,Green River,UT,cone,660,Top shaped object /light sitting in the night sky right in front of me +1989-10-23,35.0525,-78.8786111,Fayetteville,NC,fireball,600,these objects were seen the morning of hurricane hugo they were flying in a formation side by side when i first noticed them i thought +1992-10-22,40.275,-106.9577778,Oak Creek,CO,unknown,900,At 9:30 in the evening on a clear night,we saw five or six objects over the top of the mountain behind our house.The objects zipped +1994-10-22,37.8716667,-122.2716667,Berkeley,CA,light,120,Points of light in the night sky in Berkeley followed years later by technological assault in San Jose. +1997-10-22,40.1713889,-120.3713889,Milford,CA,disk,5,Silver saucer shaped craft seen clearly over Sierra Nevada mountains for a short time. +1998-10-22,42.6191667,-113.6763889,Rupert,ID,sphere,120,I was on my way to milk cows at my dairy, like any morning. A bright purple sphere was to the north of my house when I walkes out the d +1998-10-22,39.9866667,-75.4013889,Newtown Square,PA,oval,180,Shape was rounded but slightly elongated with slight fin-like sides. Moving very slowly: not stationary like a star but too slowly to +1999-10-22,35.7452778,-89.5297222,Ripley,TN,rectangle,1800,Saw large rectangular object apparently cloaking itself in Tn. in 1990 +1999-10-22,42.225,-121.7805556,Klamath Falls,OR,sphere,3,Object was seen just as it decended over the horizon, behind local 7ꯠ foot mountains, to a heading of approximately 355 degrees, alm +1999-10-22,39.3994444,-84.5613889,Hamilton,OH,cigar,120,Metallic cylindrical object with rounded ends,Daylight sighting +1999-10-22,33.6694444,-117.8222222,Irvine,CA,diamond,300,Large black diamond shaped object hovering and than disapeared to the north +1999-10-22,29.2105556,-81.0230556,Daytona Beach,FL,changing,180,METICAL OBJECT IN SKY WHICH KEPT CHANGING SHAPES +1999-10-22,36.8766667,-89.5877778,Sikeston,MO,light,6,Fast falling light in the south southeast sky turning from white to green. +2000-10-22,37.3394444,-121.8938889,San Jose,CA,other,120,A square shaped off kiltered, yellowish orange object, fluttering up and down, hovering approaching from the southeast region of the sk +2000-10-22,37.4947222,-120.8455556,Turlock,CA,triangle,2,Two bright white triangular objects seen which streaked off to the east ,appeared and dissapeared in 2 seconds. +2000-10-22,40.3408333,-76.4116667,Lebanon,PA,light,45,white light travelling weat to east,suddenly changed direction and accelerated out of sight +2000-10-22,26.0569444,-80.2719444,Cooper City,FL,other,15,Small cube shaped object with several blue lights visible. Object faded out of sight. +2000-10-22,36.1538889,-95.9925,Tulsa,OK,triangle,600,Five Black Triangles In Formation Directly Overhead +2000-10-22,47.1855556,-122.2916667,Puyallup,WA,diamond,120,Saw a cluster of five red lights (oval) which emitted several smaller white lights. +2001-10-22,42.9908333,-89.5330556,Verona,WI,triangle,7,Transparent object of unknown origin, exhibiting previously unknown capabilities, appears overhead. +2001-10-22,39.7391667,-104.9841667,Denver,CO,sphere,6,Silver ball moving in Denver sky +2001-10-22,44.8341667,-87.3769444,Sturgeon Bay,WI,light,1800,strange light +2002-10-22,37.775,-122.4183333,San Francisco,CA,cigar,21600,Cigar shape,sliver color,hovering,in a group of trees,and it had two lights. +2002-10-22,40.0805556,-80.9002778,St. Clairsville,OH,disk,900,This object had what seemed to be headlights flashing different colors at the center ofwhat appeared to be a disk-shaped object. On ei +2002-10-22,28.3197222,-80.6077778,Cocoa Beach,FL,fireball,3600,Orange glow along the horizon +2003-10-22,42.2711111,-89.0938889,Rockford,IL,light,120,Spectral kind of light 20 degrees above the horizon than vanished. +2003-10-22,61.2180556,-149.9002778,Anchorage,AK,other,30,Me and my freinds saw a red light and it whent straight up fast (no plain can move up that fast)then disapered after about 30 sec +2003-10-22,33.9158333,-112.1352778,New River,AZ,other,60,I looked out of the bus window and saw a horseshoe-shaped thing flying away like it had just taken off. +2003-10-22,33.5508333,-79.0416667,Murrells Inlet,SC,disk,1800,A Huge Silver Disk was Hovering 300 ft. over our Pontoon 15 minutes while fishing near the jetties in the Atlantic Ocean! +2003-10-22,33.5508333,-79.0416667,Murrells Inlet,SC,disk,600,I SAW LARGE SHINY DISC SHAPED (UFO) FLYING OVER MURRELLS INLET, S.C. WHILE FISHING! +2003-10-22,36.3597222,-94.285,Centerton,AR,sphere,10,Saw an object flying higher and faster than anything I've seen before, travelling in a straight line +2003-10-22,35.2380556,-81.77,Cliffside,NC,sphere,30,south of post office in cliffside. moveing east to west almost as fast as you could turn your head +2003-10-22,35.4013889,-93.1141667,Dover,AR,unknown,18000,To whom this may concern and please take seriously, We could not contact or find a no. to call.While looking at the northen star on 10/ +2003-10-22,34.7033333,-113.6105556,Wikieup,AZ,formation,4,UFO ENCOUNTER IN ARIZONA +2003-10-22,36.7097222,-81.9775,Abingdon,VA,fireball,1800,Fireball reported by numerous persons in rural VA +2003-10-22,33.9325,-114.005,Bouse,AZ,light,180,Multiple rows of bright yellowish lights seen against night sky +2003-10-22,39.4277778,-86.4283333,Martinsville,IN,diamond,20,they had flashing lights and left a green and red formation in the sky it 4 red lines and a green one +2003-10-22,36.8255556,-79.3983333,Chatham,VA,flash,2,Big Flash. +2003-10-22,34.1722222,-118.3780556,North Hollywood,CA,disk,1800,An absolutely undeniable half hour view of a ship with a dramatic and identifying departure +2004-10-22,47.1719444,-122.5172222,Lakewood,WA,disk,1800,A disk appeared and performed several impossible turns/twists. +2004-10-22,42.7283333,-73.6922222,Troy,NY,light,900,lcraft was nt moving was hovering above the tree line +2004-10-22,35.9555556,-80.0055556,High Point (Rural),NC,unknown,45,Very fast and turned. Not a meteor. +2004-10-22,40.7855556,-74.9163889,Port Murray,NJ,sphere,10,4 spheres appeared and houvered, lines up and moved quicker then lightening. +2004-10-22,30.5252778,-89.6794444,Picayune,MS,disk,78,Two disk shaped objects at first thought to be mylar balloons or kites in the distance +2004-10-22,42.9638889,-78.7380556,Williamsville,NY,light,600,Four UFO's sighted over WIlliamsville, NY +2005-10-22,43.1063889,-76.2180556,Liverpool,NY,unknown,1800,Slow moving humming noise over house. +2005-10-22,32.7252778,-114.6236111,Yuma (Outside Of),AZ,disk,300,Large object on the ground..then it vanished before our eyes! +2005-10-22,34.0858333,-81.1833333,Irmo,SC,circle,5400,Multiple Star Like Objects Move Towards Same Direction After Meteor Shower +2005-10-22,45.0791667,-93.1469444,Shoreview,MN,light,3600,Slow moving bright light moving across early morning sky! +2005-10-22,34.9347222,-117.1983333,Hinkley,CA,other,120,Dark brown potato-shaped object seen over desert mountains. +2005-10-22,32.77,-108.2797222,Silver City,NM,light,1200,Daytime sighting of white "star-like" objects that moved in formations and also had the ability to suspend themselves motionless. +2005-10-22,33.7938889,-84.6605556,Lithia Springs,GA,sphere,2700,Sphere and dics craft. +2005-10-22,33.4483333,-112.0733333,Phoenix,AZ,light,300,Pulsing object in Phoenix +2005-10-22,40.925,-98.3416667,Grand Island,NE,rectangle,3,Blue rectangle stationary to gone in 3 sec. near total darkness in evening. +2005-10-22,39.4586111,-82.2319444,Nelsonville,OH,triangle,20,Bright light sailing in sky. +2005-10-22,41.5733333,-87.7844444,Tinley Park,IL,light,600,Red light moving over Chicago's South Suburbs during White Sox World Series. +2005-10-22,41.5733333,-87.7844444,Tinley Park,IL,unknown,900,Strange glowing redish orange light hovering over 88th Avenue in Tinley Park, IL +2005-10-22,35.6527778,-97.4777778,Edmond,OK,oval,2,Very bright light passing what looked as if it was going westward going toward the ground. Brighter than a shooting star and looked to +2006-10-22,47.8211111,-122.3138889,Lynnwood,WA,oval,5,dullish orange orbs with an almost translucent center. Traveling very fast and silent. +2006-10-22,42.5619444,-73.1633333,Cheshire,MA,disk,3600,7 light object hovers and moves in a radical fashion. +2006-10-22,38.1302778,-121.2713889,Lodi,CA,other,120,3 distinct colored lights hovering over the city in the daytime +2006-10-22,30.4752778,-98.1561111,Spicewood,TX,disk,60,Sighting of a color changing UFO in Texas. ((NUFORC Note: Report from student. PD)) +2006-10-22,34.0522222,-118.2427778,Los Angeles,CA,sphere,7,Silver sphere seen near LAX airport out passenger window of commercial aircraft +2006-10-22,42.9294444,-89.5236111,Paoli,WI,sphere,30,Metalic aerial object seen from vehicle to the west of Paoli, WI. +2006-10-22,30.3880556,-95.6961111,Montgomery,TX,fireball,3,bright white light +2006-10-22,30.6325,-97.6769444,Georgetown,TX,oval,10,Two very bright oval objects at apparent high rate of speed, suddenly disappear +2007-10-22,34.1205556,-84.0044444,Buford,GA,flash,14400,strobing lights appear near mall of georgia, go on for hours. ((NUFORC Note: Student report. Possible hoax. PD)) +2007-10-22,29.1869444,-82.1402778,Ocala,FL,oval,3,extremely bright and fast shot across east to west lasted 2-3 seconds which tells how fast it really was. no sound. +2007-10-22,33.1975,-96.615,Mckinney,TX,other,7200,Five 'star like' intellegece operated craft observed by 2 people in North Texas. +2007-10-22,37.7808333,-90.4216667,Farmington,MO,triangle,300,UFO Sighting - Outside Farmington Missouri. +2007-10-22,47.4891667,-92.8836111,Chisholm,MN,triangle,5,Silent, black, triangular object with no lights +2007-10-22,43.2830556,-97.0888889,Hurley (West Of),SD,other,1800,multiple bright lights and objects that would alternate and fade in and out in a row +2007-10-22,44.2480556,-99.4527778,Stephan,SD,light,7200,Bright orange lights dropping , what looked like flares? +2007-10-22,36.6002778,-121.8936111,Monterey,CA,light,120,3 very bright white light larger than planets 2 nearby one another 3 a different location i 2 minutes still then completely fading away +2007-10-22,38.6688889,-120.9861111,Cameron Park,CA,light,300,3 bright stationary lights above hill, low in the sky. Disappeared after about 3 minutes. +2007-10-22,40.4775,-74.6272222,Hillsborough,NJ,triangle,300,Silent triangle-shaped craft with bright white lights beneath that flashed on and flashed off. No sound until slow-moving craft passed +2008-10-22,39.9611111,-82.9988889,Columbus,OH,changing,300,White-blue lights over Columbus, Ohio +2008-10-22,48.5127778,-122.6113889,Anacortes,WA,light,10,Green Orb does vertical drop, speeds off into oblivion faster than any object I've ever seen. +2008-10-22,47.8108333,-122.3761111,Edmonds,WA,flash,2,Giant flash in sky moving forward and down then disappeared over trees. Not lightening as skies were clear and stars were visible.T +2008-10-22,36.1658333,-86.7844444,Nashville,TN,teardrop,5,Nothing like I have ever seen before. +2008-10-22,36.8527778,-75.9783333,Virginia Beach,VA,chevron,300,Bright light seen in Virginia Beach +2008-10-22,39.0275,-82.0338889,Pomeroy,OH,circle,5,The object was green with bright contrail, it moved at incredible rate of speed north to south at aproximateley a 45 degree angle. +2008-10-22,35.9605556,-83.9208333,Knoxville,TN,unknown,120,Four short and closely grouped contrails observed in clear skies +2008-10-22,38.5816667,-121.4933333,Sacramento,CA,light,30,Two stationary bright lights in southern sky observed 30 secs then dimmed and disappeared +2008-10-22,32.4419444,-97.7938889,Granbury,TX,circle,300,10/22/08 my husband and myself see a circler object with lights spinning over a lake +2008-10-22,35.2269444,-80.8433333,Charlotte,NC,other,300,Strange lights over the highway not a plane or helicopter. +2008-10-22,34.2163889,-119.0366667,Camarillo,CA,other,300,Noiseless object flies overhead at roughly 1000-1500 feet. +2008-10-22,39.9611111,-82.9988889,Columbus,OH,sphere,5,Bright White Sphere at I-270 and 23 on the south end travelling at an incredible rate of speed +2009-10-22,44.3977778,-122.735,Sweet Home,OR,other,40,I dont know what it was, it was like a darker fog surrounded by the lighter fog, then it... blew away. There was no wind that night. +2009-10-22,29.7958333,-91.5013889,Franklin,LA,oval,180,clear orb with white lights encircling it, the lights were stationary and were not flashing +2009-10-22,40.5394444,-75.4972222,Emmaus,PA,unknown,120,A bright light, pulsating, changing color and moving slowing, while coming to a complete stop and then starting to move again. +2009-10-22,29.7630556,-95.3630556,Houston,TX,other,600,3 witnesses--object looked like the moon but no moon tonight. I can see it glowing through the trees in neighbors backyard. To high in +2009-10-22,34.0005556,-81.035,West Columbia,SC,flash,300,Soundless mysterious flashes of light in the southern sky +2010-10-22,44.7677778,-93.2775,Burnsville,MN,triangle,600,Triangle object object seen over burnsville 5:25 am +2010-10-22,32.2216667,-110.9258333,Tucson,AZ,fireball,120,Object in sky with ball of fire dangling from it, dripping sparklets of fire +2010-10-22,39.2236111,-84.4422222,Reading,OH,unknown,600,Four Objects in a diamond shape doing some type of flying formation and hover. +2010-10-22,37.585,-79.0516667,Amherst,VA,unknown,300,Mother and daughter again are “visited” by strange ufo on farm road in Amherst, Va. We saw the “thing” in August +2010-10-22,34.0005556,-81.035,Columbia,SC,teardrop,1200,Nearly stationary teardrop shaped with short contrail over Richland County +2010-10-22,35.7111111,-78.6144444,Garner,NC,oval,60,UFO SIGHTING RALEIGH NORTH CAROLINA +2010-10-22,41.5569444,-83.6272222,Perrysburg,OH,light,30,UFO spotted following planes. +2010-10-22,38.8047222,-77.0472222,Alexandria,VA,light,300,Most unusual fireworks display +2010-10-22,42.9955556,-71.4552778,Manchester,NH,triangle,2,At around 7:50pm EST this evening, Friday October 22nd 2010, I was driving North on 93, just North of Manchester, NH. Above the toll ga +2010-10-22,37.8044444,-122.2697222,Oakland,CA,circle,1200,Orange orb hovering over Bay Area. ANother appears and approaches, and hovers then dissapears. .Moves upand down , dims in/out +2010-10-22,32.6394444,-96.5380556,Seagoville,TX,chevron,24,It was a large boombrang or chevron looking ufo with two big yellowish-reddish lights that made no sound. +2010-10-22,35.7072222,-81.0758333,Catawba,NC,other,600,3 lights to the south. +2010-10-22,40.4405556,-79.9961111,Pittsburgh,PA,sphere,120,Red/Orange globe with flame tail moving across sky, stopping then reversing direction. +2010-10-22,33.4483333,-112.0733333,Phoenix,AZ,circle,600,possible phoenix lights encounter +2011-10-22,35.5652778,-90.9336111,Waldenburg,AR,triangle,300,October 22nd, 2011, 1:50am Waldenburg, AR, on AR-14. Triangular UFO. +2011-10-22,44.9591667,-89.63,Wausau,WI,oval,2700,3 "headlights" and 1 red light on the "back". It was a metallic chrome with hardly any sound, very slow and low to the ground +2011-10-22,38.3452778,-90.9808333,St. Clair,MO,unknown,300,MISSOURI INVESTIGATOR GROUP REPORT: Driving E on I-44 approx. near mile MM 243 when I saw a very bright star light obj. in the sky. +2011-10-22,39.0930556,-78.0597222,Boyce,VA,oval,10,Oval shaped dull gray object traveling at low altitude during daylight +2011-10-22,34.0522222,-118.2427778,Los Angeles,CA,sphere,600,Six Craft shiny metal 9:20 am took photo but don't have developed +2011-10-22,34.0522222,-118.2427778,Los Angeles,CA,sphere,600,Sighted 6 craft silver shiny stationary objects +2011-10-22,25.7738889,-80.1938889,Miami,FL,circle,180,12 ufos spotted and then vanish. Seen by a family of 3 in Miami, Florida. +2011-10-22,34.448055600000004,-119.2419444,Ojai,CA,unknown,300,Caught (something) on video!! +2011-10-22,34.2783333,-119.2922222,Ventura County,CA,fireball,600,10-30 Red/Blue Lights Covering Half the Sky: VIDEO (caught on video) http://www.youtube.com/watch?v=oMz0U0OVzlY +2011-10-22,47.6063889,-122.3308333,Seattle,WA,other,180,Unfathomable beauty in the sky in the form of something which I cannot explain +2011-10-22,30.3319444,-81.6558333,Jacksonville,FL,circle,300,Orange Lights in the Jacksonville Sky +2011-10-22,37.4308333,-79.1233333,Madison Heights,VA,oval,300,Pink glows in Madison Heights, VA +2011-10-22,37.4308333,-79.1233333,Madison Heights,VA,sphere,300,Pink spheres hovering and moving near our home in Amherst County, VA +2011-10-22,37.8044444,-122.2697222,Oakland,CA,triangle,10,BLACK TRIANGLE CRAFT WITH LIGHT THAT WERE SQUARE +2011-10-22,32.3525,-90.8777778,Vicksburg,MS,circle,1800,The Hills +2011-10-22,40.3977778,-105.0744444,Loveland,CO,triangle,5,Large triangle over loveland. +2011-10-22,41.7205556,-87.7016667,Evergreen Park,IL,light,240,Light-filled balloon-like objects [15-25]in the eastern sky drifted northward for about 3min.,stopped for 1min, then disappeared. +2011-10-22,40.8852778,-73.3766667,Centerport,NY,sphere,20,Two bright orange balls of light moved silently overhead. +2011-10-22,21.3069444,-157.8583333,Honolulu,HI,light,240,Orange lights above kaimuki hawaii. +2011-10-22,41.4169444,-87.3652778,Crown Point,IN,circle,300,Red glowing circular object moving laterally South to North with no sound (about the size of an aircraft) +2011-10-22,42.05,-71.8805556,Webster,MA,sphere,300,Orange colored sphere stationary, very low over lake, accelerates fast, high and away as approached +2011-10-22,40.4405556,-79.9961111,Pittsburgh,PA,unknown,600,Orange Glowing Objects Over Pittsburgh +2011-10-22,40.2397222,-78.8352778,Windber,PA,fireball,300,Very strange orange balls of light rising into the atmosphere. +2011-10-22,34.0005556,-81.035,West Columbia,SC,formation,180,50-100 "stars" flying in a line across the sky, almost like a close up constellation. +2011-10-22,35.2219444,-101.8308333,Amarillo,TX,unknown,40,My mother told me to go help my dad with the groceries last night and I went out a little earlier because he wasn't home yet and i saw +2011-10-22,40.82,-74.3652778,East Hanover,NJ,light,10800,Four lights dancing in a circular formation constantly moving, lasted a long time. +2011-10-22,39.0061111,-77.4288889,Sterling,VA,chevron,1200,Strange Orange Flying Litghts in Sterling, VA +2011-10-22,42.8441667,-71.4802778,Litchfield,NH,triangle,5,strange traingle flying objects seen in sky above field in letchfield nh +2012-10-22,39.1619444,-84.4569444,Cincinnati,OH,circle,120,Large colorful rapidly flashing ball of light in eastern Cincinnati, OH. +2012-10-22,37.475,-77.7791667,Moseley,VA,other,120,Lights that stayed still but thought it was small planes +2012-10-22,41.7411111,-70.5994444,Bourne,MA,circle,7200,Star like object. ((NUFORC Note: Probable sighting of a planet, we suspect. PD)) +2012-10-22,33.7455556,-117.8669444,Santa Ana,CA,fireball,300,Fire ball/object slow moving west to east. ((NUFORC Note: Sighting of the ISS?? PD)) +2012-10-22,33.7747222,-84.2963889,Decatur,GA,circle,60,Gray stationary object seen over Tucker area. +2012-10-22,36.175,-115.1363889,Las Vegas,NV,light,240,Light flashing +2012-10-22,30.2944444,-81.3933333,Jacksonville Beach,FL,changing,420,Object appeared and morphed into a craft. See photos. +2012-10-22,47.6588889,-117.425,Spokane,WA,light,1500,Saw three amber lights under the half moon about 7 other lights danced around them they all blinked out total lights 20. +2012-10-22,39.0769444,-84.1769444,Batavia,OH,sphere,60,Orange/Red Spheres seen by four people in Southwest Ohio +2012-10-22,42.4791667,-71.1527778,Woburn,MA,disk,120,2 black flying objects that moved quick and than disappeared +2012-10-22,42.1219444,-77.9483333,Wellsville,NY,fireball,60,Bright fireball with a tail in daylight over Wellsville, NY. +2012-10-22,38.0291667,-78.4769444,Charlottesville,VA,circle,900,3 amber orbs forming a triangle then a straight line then disappearing. +2012-10-22,38.9125,-75.4283333,Milford,DE,formation,420,5 differeny colored lights flashing and blinking and solid orange burst heading over delaware bay +2012-10-22,33.8158333,-78.6802778,North Myrtle Beach,SC,light,900,TWO SEPERATE OCCASIONS WITNESSED ORANGE-REDDISH BALLS OF LIGHT APPEARING AND DISAPPERING ABOVE THE OCEAN. ALSO TWO ACCELERATING FAST +2012-10-22,33.8158333,-78.6802778,North Myrtle Beach,SC,unknown,4,Orange/red light over the ocean +2012-10-22,38.8047222,-77.0472222,Alexandria,VA,light,240,Eventually, the truth will reveal itself +2012-10-22,35.6708333,-80.4744444,Salisbury,NC,changing,3600,Up to 3 objects spotted now for 2 years. would love to have answers!! +2013-10-22,38.8113889,-90.8527778,Wentzville,MO,triangle,1800,I was outside smoking a cigarette after work, facing North West. I noticed this object, which I thought was a plane at first. +2013-10-22,40.1672222,-105.1013889,Longmont,CO,circle,60,Little red circle moving in an out of air streak. +2013-10-22,42.6525,-73.7566667,Albany,NY,disk,30,Large disk shaped flying object with lights spotted in Albany NY before dawn +2013-10-22,47.4236111,-120.3091667,Wenatchee,WA,oval,480,A large, yellow, fiery object hovered over the Wenatchee Valley. +2013-10-22,31.4716667,-83.6469444,Ty Ty,GA,circle,1200,Starts out yellow and the turns amber color it has happend several times in past two months it moves up doen side to side very slow +2013-10-22,34.61,-112.315,Prescott Valley,AZ,other,73800,3 then up to 6 white flashing lights move erratically all over-N. Prescott Valley, AZ 10/22&10/23/13 PM +2013-10-22,44.6397222,-73.1108333,Milton,VT,light,40,Steady red light that crossed sky then diminished in size at a steady rate before vanishing +2013-10-22,40.3477778,-79.8644444,Mckeesport,PA,circle,300,Five glowing reddish-yellow circular objects drifted slowly over my house, heading east, on the evening of 10/22/13. +2013-10-22,25.7738889,-80.1938889,Miami,FL,diamond,300,No one is talking about it on the net or TV. Two witnesses from the Redlands, FL. ((NUFORC Note: Sighting of Arcturus? PD)) +2013-10-22,42.8508333,-72.5583333,Brattleboro,VT,rectangle,1800,Bright lights hovering low in west brattleboro/marlboro. ((NUFORC Note: Possible sighting of Venus? PD)) +2013-10-22,34.54,-112.4677778,Prescott,AZ,flash,240,Standing on my balcony, me and my fiancé noticed a bunch of faint lights flickering in a group, they moved slowly shining 5 lights then +2013-10-22,42.926944399999996,-70.9444444,Kensington,NH,unknown,5,The craft moved quickly then hovered, then went out of sight in seconds. +2013-10-22,43.6852778,-71.1172222,Ossipee,NH,circle,5,Bright circle flashed across the sky in Ossipee only lasted about 3-5 seconds. +2013-10-22,41.7355556,-111.8336111,Logan,UT,chevron,10,Chevron shaped dark image highlight by subtle orange glowing lights surrounding exterior in extreme quiet flight. +2013-10-22,36.0152778,-83.415,Dandridge,TN,sphere,12,Large ball of yellow light making erratic movements, disappears. +2013-10-22,44.2511111,-116.9683333,Weiser,ID,light,1800,Pendulum, white light turning red as it got lower. +2013-10-22,37.6775,-113.0611111,Cedar City,UT,unknown,7,Noiseless, extremely fast pair of lights. +2013-10-22,38.8966667,-121.0758333,Auburn,CA,unknown,60,Lighted object flying fast and low overhead with no sound. +2013-10-22,47.8411111,-120.0152778,Chelan,WA,oval,240,Orb move quickly across the the sky before circling and disappearing into blackhole +2013-10-22,37.9736111,-122.53,San Rafael,CA,formation,2100,Strange horizontal formation of four to five lights with the remarkably bright gold colored orb the furthest to the right. +2013-10-22,32.7355556,-97.1077778,Arlington,TX,sphere,180,6 bright orange objects in formation over Arlington TX. 10/22/13. +2013-10-22,21.4180556,-157.8036111,Kaneohe,HI,oval,480,Oval bright red object with yellow flickering light in the middle, moving slowly then stayed still. +2013-10-22,40.4211111,-79.7883333,Monroeville,PA,oval,300,5 Red/Yellow Ovals seen by 3 witnesses. +2013-10-22,47.6541667,-118.1488889,Davenport,WA,circle,600,Orange Glowing Object over Davenport, WA. +1968-10-23,46.0647222,-118.3419444,Walla Walla,WA,other,1500,black objects oveer walla walla +1992-10-23,30.1658333,-81.7066667,Orange Park,FL,circle,300,Military hiding UFO at training camp. +1992-10-23,39.8819444,-84.0097222,Medway,OH,disk,600,USAFB by Medway, Ohio, noticed a real Spaceship . it was zooming all over the sky. No plane or helli possible. +1997-10-23,45.7833333,-108.5,Billings,MT,cylinder,180,Dark gray, cylindrical, object about 100m wide and 40m tall. Hovered in circle, about 20 miles away. +1997-10-23,28.5380556,-81.3794444,Orlando,FL,other,600,Rounded rectangle of a cluster of frosted raspberry lights slowly moving north, then, swiftly gone... +1997-10-23,40.7694444,-74.0208333,Weehawken,NJ,other,4,Green orb without streaking, incoming over Hudson River between NYC & NJ. A high-speed descent that looked like it was destined to cras +1998-10-23,33.8333333,-111.95,Cave Creek ( N. Scottsdale Border),AZ,light,1200,At least four bright objects hovered for several minutes, then randomly moved slowly up and down while becoming very intense when desce +1998-10-23,42.9763889,-88.1083333,New Berlin,WI,disk,420,Three disc shaped objects with 2 C Shaped formations extending from each side. Objects were hovering motionless & in an instant vanishe +1998-10-23,48.051944399999996,-122.1758333,Marysville,WA,fireball,1,While driving northwest on Totem Beach Road, north of 64th NW, my housemate saw an electric blue triangular shapes fireball light with +1998-10-23,47.6063889,-122.3308333,Seattle (I-5 At About Ne 65th),WA,fireball,1,While driving north on I-5 at approximately NE 65th and looking to the northwest towards Greenlake, I saw an electric blue fireball tha +1998-10-23,45.6388889,-122.6602778,Vancouver,WA,other,120,i was out in the smoking area at the local hospital. several hospital employees noticed object in the sky. +1998-10-23,40.8588889,-93.4972222,Humeston,IA,circle,90,hovering objects sighted in iowa. +1998-10-23,31.3111111,-92.445,Alexandria,LA,fireball,60,greenish white fireball ascending across clear night sky fromeast to west following an irregular flight path and chg's in speed.when ob +1999-10-23,38.7908333,-121.2347222,Rocklin (Outside Of Sacramento),CA,unknown,15,Heard loud whishing sound (10-15 sec) It circled the house and left. Was loud enough to wake 3 people up. Daughter went outside to inve +1999-10-23,40.0502778,-105.0494444,Erie,CO,cylinder,300,Someone pointed out an object in the western sky facing the Rocky mtns that appeared to be not moving. Couldn't tell what it was. +1999-10-23,37.6688889,-122.0797222,Hayward,CA,cylinder,30,Rectangular gray object glided silently across the night sky and disappeared behind a cloud +1999-10-23,37.6688889,-122.0797222,Hayward,CA,disk,60,Vertical column w/3 lights in linear design moved silently across sky. It disappeared behind thin fog/cloud and never reappeared. +1999-10-23,39.8916667,-75.3,Norwood,PA,triangle,900,Three dots forming a triangle, Bright gold and glowing white. Moved up and down and sideways,slowly.Stopped and hovered then disappeare +2000-10-23,45.0847222,-93.0097222,White Bear Lake,MN,triangle,600,During a latenight party a group of twenty witnessed a peculiar gathering of a fleet of pyramid shaped craft at midnight. +2000-10-23,41.4813889,-73.2136111,Southbury,CT,light,180,A very clear object that was covered with lights, hovering in the air to create a triangle with two planets, its lower lights blinked. +2000-10-23,38.5816667,-121.4933333,Sacramento,CA,cylinder,360,I saw a cylindrical object hanging in mid air while waiting for a bus at Sacramento Airport out side of B terminal. While standing ther +2000-10-23,40.7280556,-74.0780556,Jersey City,NJ,sphere,10,Silver spheres that appeared then quickly disappeared... +2000-10-23,35.9522222,-86.6694444,Nolensville,TN,unknown,60,Military helicopter gives chase at unknown aircraft +2000-10-23,46.2272222,-116.0283333,Kamiah,ID,cigar,600,(This report will include 3 seperate sightings on the same night from different locations. All witnesses are members of the same family +2000-10-23,36.3352778,-92.385,Mountain Home,AR,light,240,Saw intense bright light suspended motionless in mid-air that dimmed to darkness and moved slowly off to the east and out of sight. +2000-10-23,47.6063889,-122.3308333,Seattle,WA,light,3,Very clear night. I saw what I thought was a largish shooting star falling south to north , as it decended from a little under the airp +2000-10-23,47.6063889,-122.3308333,Seattle,WA,sphere,2,blue ball streaks across seattle skyline heading west in under 2 seconds +2000-10-23,47.6063889,-122.3308333,Seattle (Ballard Neighborhood),WA,egg,3,Anybody else see another green light in Seattle? +2002-10-23,42.6525,-73.7566667,Albany,NY,triangle,900,Aircraft made no noise, it was black with, 2 red, 1 blue, and 1 white light, it flew a speed faster then anything have seen before. +2003-10-23,28.3644444,-82.1961111,Dade City,FL,unknown,120,a bright yellow object floating from the heavens. +2003-10-23,35.2827778,-120.6586111,San Luis Obispo,CA,changing,8,fireball flying in a straight path across the horizon +2003-10-23,40.7608333,-111.8902778,Salt Lake City,UT,unknown,6,UTAH UFO HUNTERS REPORT: I had a strange feeling the object was following me. +2003-10-23,29.7630556,-95.3630556,Houston,TX,light,120,Mundane Satellite? +2003-10-23,38.2544444,-104.6086111,Pueblo,CO,light,20,Suspended orange lights in Northwest sky +2003-10-23,47.6063889,-122.3308333,Seattle,WA,unknown,3,"W" shaped meteor burns up above Seattle +2003-10-23,47.6063889,-122.3308333,Seattle,WA,cone,12,It was a red and green coneshaped object that flashed briefly across the night sky. +2003-10-23,45.6388889,-122.6602778,Vancouver,WA,circle,2,Irredescent green circular ball of light flying easterly at 10 to 15 degrees off horizontal horizon. +2003-10-23,47.6063889,-122.3308333,West Seattle,WA,fireball,5,10/23/03 9:30pm I saw a glowing blue object with a long blue tail hurtling towards the ground and disapearing after 5 seconds. +2003-10-23,47.6063889,-122.3308333,Seattle,WA,circle,10,A bright white circular object moving quickly from north to south. +2003-10-23,30.4211111,-87.2169444,Pensacola,FL,triangle,300,Replicating triangle light patterns over I-10 in Florida +2003-10-23,34.5036111,-93.055,Hot Springs,AR,unknown,300,Glowing clearlike color hovering over Lake Hamilton +2003-10-23,47.4830556,-122.2158333,Renton,WA,unknown,3600,My wife & I saw 100+ UFO's last night! +2004-10-23,32.9341667,-97.0777778,Grapevine,TX,light,600,Bright White and Blue light in the sky. 10mins of observation. +2004-10-23,39.1836111,-96.5713889,Manhattan,KS,light,120,Many sightings over years +2004-10-23,34.6458333,-94.6486111,Big Cedar,OK,light,30,What appears to be a star moves across the sky above Ouachita National Forest. +2004-10-23,34.8525,-82.3941667,Greenville,SC,light,7200,on October 23, 04 my girlfriend and I were driving home from Charlotte NC. Not long after crossing the Greenville county line I noticed +2004-10-23,33.2,-117.2416667,Vista,CA,sphere,600,Strange orb over Vista California +2004-10-23,42.9405556,-87.9958333,Greendale,WI,circle,5,"UFO Files" Observation +2004-10-23,28.6802778,-81.5097222,Apopka,FL,light,1200,~ Last night at around 9:30 big bang at the front door. Sounded like someone ran into the door? Or if someone threw a basket ball at it +2004-10-23,33.9172222,-118.0111111,La Mirada,CA,other,300,Single orange glow, very bright orange light traveling accross the sky +2005-10-23,32.7252778,-97.3205556,Fort Worth,TX,light,120,Three lights, two red, one white, on erratic flight paths +2005-10-23,37.7588889,-98.5527778,Preston,KS,fireball,300,Explosion with a fire ball +2005-10-23,33.4483333,-112.0733333,Phoenix,AZ,formation,300,It was 11:00 Am. On 10/23/2005 The sky was clear. there where three of them round in shape and white. The where in a formantion of a tr +2005-10-23,35.9911111,-106.08,Espanola,NM,fireball,10800,AMAZING DIFERENT FORMING UFO UNLIKE ANY OTHER IN ESPANOLA NEW MEXICO! ((Possibly Sirius?? PD)) +2005-10-23,34.7538889,-77.4305556,Jacksonville,NC,triangle,120,1 FLYING TRIANGLE VERY SLOW AND LOW THEM COMES BACK OR THERE WERE 2 OF THEM? +2005-10-23,34.0336111,-117.0422222,Yucaipa,CA,light,420,Amber/orange light sighting +2005-10-23,34.0336111,-117.0422222,Yucaipa,CA,light,420,Light in Eastern Sky, emitting other lights, turning from single to three light pattern +2005-10-23,41.8175,-113.3283333,Park Valley (Near),UT,rectangle,5,10/23/05; Park Valley, Utah; rectangular; 4-5 seconds, looked like a flying box car; posted 10/28/05. +2006-10-23,46.2113889,-119.1361111,Kennewick,WA,unknown,3600,White lights moving sharply over the Kennewick sky. ((NUFORC Note: Possible star?? PD)) +2006-10-23,29.9688889,-95.6969444,Cypress,TX,cylinder,60,There were two white, cylinder shaped objects that would be in alignment & then would change to be perpendicular. +2006-10-23,33.7488889,-84.3880556,Atlanta,GA,circle,300,Two separate dots in the sky merge into one and continue in straight line. +2006-10-23,28.3641667,-82.6936111,Hudson,FL,triangle,180,STRANGE HUM WITH STATIC FROM THREE TRIANGULAR SHAPES +2006-10-23,61.2180556,-149.9002778,Anchorage,AK,circle,7200,Multiple craft sighted above a Anchorage, Ak +2006-10-23,61.2180556,-149.9002778,Anchorage,AK,changing,600,INTENSE AMBER-ORANGE HONEYCOMB SHAPED DUAL HORIZONTAL LIGHT;, SILENT DECENT.... +2006-10-23,29.8944444,-81.3147222,St. Augustine,FL,circle,10,circle forming over fort +2006-10-23,47.0227778,-91.6705556,Two Harbors,MN,unknown,7200,This really happened and I would like an explanation! Read it and believe it. +2006-10-23,39.1502778,-123.2066667,Ukiah,CA,triangle,10,White triangular formation flying south at very high speed. +2007-10-23,37.2652778,-97.3713889,Wellington,KS,light,300,Car lights in the sky passing over the highway from Wellington, Ks. +2007-10-23,38.9822222,-94.6705556,Overland Park,KS,triangle,20,triangular shaped craft with several dim orange lights silent and briskly moving south +2007-10-23,28.5380556,-81.3794444,Orlando,FL,light,30,Strange light and illumination pattern in early morning S and SSE sky +2007-10-23,32.6208333,-83.6,Warner Robins,GA,sphere,600,Ufo follow up in Warner robins 500 Lights On Object0: Yes +2007-10-23,47.9791667,-122.2008333,Everett,WA,teardrop,1200,Seattle Sighting of Comet or Meteor like formation. +2007-10-23,45.6797222,-111.0377778,Bozeman,MT,sphere,900,object starlike flew then stopped and stayed there all night. +2007-10-23,42.9638889,-78.7380556,Williamsville,NY,triangle,20,It hovered right above my house for 20 seconds, it looked like it was searching for something. +2007-10-23,28.5388889,-80.6722222,Merritt Island,FL,light,20,Some thing go from West to East durning the shuttle launch. +2007-10-23,33.7475,-116.9711111,Hemet,CA,unknown,2400,Was it a jet contrail, a meteor or what? +2007-10-23,36.3275,-119.6447222,Hanford,CA,cylinder,240,Object appeared and disappeared (blinked in and out), no noise, no colored lights, no wings. +2007-10-23,39.1141667,-94.6272222,Kansas City,KS,circle,300,small white circular white object like a period on apiece of paper but white in the sky. +2007-10-23,42.3266667,-122.8744444,Medford,OR,unknown,300,Changing color, rotating lights with a hazy, "v-shaped" short light beam beneath. +2007-10-23,30.4505556,-91.1544444,Baton Rouge,LA,oval,300,Bright white oval of light moving slowly towards ground +2007-10-23,42.865,-71.3744444,Londonderry,NH,light,120,While walking my dog, I saw 4 beams of light moving in and out and circling in the sky. ((NUFORC Note: Advertising lights?? PD)) +2008-10-23,38.4497222,-123.1144444,Jenner,CA,circle,600,Witnessed what I thought was a planet with a reflection, that ended up moving and then disappearing. +2008-10-23,42.0833333,-71.3972222,Franklin,MA,sphere,25,Spherical object hovered then moved away at an extremely high rate of speed. +2008-10-23,33.1030556,-96.6702778,Allen,TX,other,2700,a boomerang in the sky, what was it? +2008-10-23,37.7477778,-84.2947222,Richmond,KY,unknown,3600,two very bright bluish lights moving very slowly and oddly. ((NUFORC Note: Possible star? Or hoax. PD)) +2008-10-23,31.7586111,-106.4863889,El Paso,TX,light,3,2 lights in south east sky over El Paso, TX. ((NUFORC Note: Possible landing lights on approaching airliners?? PD)) +2008-10-23,32.4486111,-99.7327778,Abilene,TX,formation,3,My husband and I saw reddish, orangish, goldish lights in a line...going back and forth from right to left repeatly then disappear, thi +2008-10-23,31.4761111,-98.1516667,Evant,TX,circle,30,Bright Orange Lights on Huge Disk-like Object Seen From South of Stephenville, TX on 10/23/08 +2008-10-23,44.7502778,-75.1313889,Madrid,NY,light,180,Bright flash turns into three smaller objects. +2008-10-23,32.3880556,-98.9788889,Cisco,TX,formation,60,Series of amber lights, seemed to be rotating and very large. +2008-10-23,33.8158333,-78.6802778,North Myrtle Beach,SC,light,60,Random lights over the ocean +2008-10-23,43.7977778,-123.0583333,Cottage Grove,OR,sphere,1200,Three unknown objects, hovering over Southern Oregon at about 9:05pm, 10-23-08, were witnessed by four women. +2008-10-23,40.9477778,-90.3711111,Galesburg,IL,fireball,7,Fireball accross sky, didnt seem like meteor. +2008-10-23,21.3069444,-157.8583333,Honolulu,HI,light,60,Army Blackhawk chases UFO over honolulu 10/23/08 9:15 pm +2008-10-23,31.9180556,-98.1716667,Carlton,TX,light,1800,Series of lights puts on a show near Stephenville Texas on Oct. 23, 2008. +2008-10-23,39.9080556,-85.9227778,Mccordsville,IN,circle,10,UFO spotted flying from northwest to southeast in Indianapolis area skies at 22:00 on 10/23/08. +2008-10-23,38.1838889,-83.4327778,Morehead,KY,circle,5,Student sees UFO fly by 11th floor window in dorm. +2008-10-23,41.7002778,-73.9213889,Poughkeepsie,NY,chevron,20,Very faint, reddish, V shaped object observed 20 seconds. +2009-10-23,37.5686111,-84.2963889,Berea,KY,light,90,Bright, white vanishing light spotted in rural Berea, Kentucky. +2009-10-23,37.8286111,-92.2005556,Waynesville,MO,unknown,90,One object with two white lights, one red and one blue light hovering without sound about 300 - 400 feet in the air. +2009-10-23,37.4283333,-121.9055556,Milpitas,CA,circle,5,We saw a orange/yellow circle shaped object traveling through the sky as fast as a shooting star +2010-10-23,41.7208333,-73.9605556,Highland,NY,other,10,quick long flashing hovering object +2010-10-23,40.8022222,-124.1625,Eureka,CA,light,300,A big circular object with a bunch of little blinking lights was hovering in the sky +2010-10-23,39.7875,-75.6969444,Hockessin,DE,sphere,900,Large number of unidentified aircraft flying together. +2010-10-23,33.5386111,-112.1852778,Glendale,AZ,light,360,Two lights moving in multiple directions with a sparkling trail behind them that disappeared when they'd stop and then reappear. +2010-10-23,33.4483333,-112.0733333,Phoenix,AZ,teardrop,120,Two objects in a bright orange teardrop shape that appeared to be on fire were seen in the northwestern sky. +2010-10-23,33.4483333,-112.0733333,Phoenix,AZ,fireball,120,2 strange craft spotted over Phoenix, Arizona +2010-10-23,33.9908333,-118.4591667,Venice,CA,chevron,3,I was coming out of my house, Walking to the garage, to lock it up for the night. I was looking up, North East. Five Light in V Shape i +2010-10-23,33.9908333,-118.4591667,Venice,CA,other,10,dimmed lights, slow and quiet. +2010-10-23,43.6613889,-70.2558333,Portland,ME,triangle,120,A Metallic triangular object with dome on underside was seen in Portland, Maine. +2010-10-23,40.3336111,-75.6377778,Boyertown,PA,circle,600,red orange ball of fire +2010-10-23,33.4483333,-112.0733333,Phoenix,AZ,light,900,Two falling balls of light---North Phoenix on 10-23-10 +2010-10-23,41.7411111,-70.5994444,Bourne,MA,triangle,180,3 Lights moving together at night over Cape Cod at low altitude without making any sound at all. +2010-10-23,34.1063889,-84.0336111,Sugar Hill (?),GA,circle,120,Circular object floated across sky was not balloon, plane, kite and was silent, changed shape, and color. +2011-10-23,38.2494444,-122.0388889,Fairfield,CA,chevron,3,not sure what this is +2011-10-23,40.3294444,-74.0619444,Shrewsbury,NJ,circle,20,Green circle moving downward in the sky fell for a bit and disappeared +2011-10-23,42.05,-71.8805556,Webster,MA,light,180,4 glowing orange UFOs seen in Webster, MA +2011-10-23,35.7847222,-89.1172222,Alamo,TN,triangle,604800,Over the past week me and 7-10 of my friends have witnessed many strange things happening in our lil county in Tennessee. We have been +2011-10-23,41.5833333,-87.5,Hammond,IN,egg,300,I was sitting outside on the side of my house smoking and looked up and seen what i thought too be a balloon but it was moving too fast +2011-10-23,38.6275,-92.5663889,California,MO,circle,600,Round bright light that both hovered then zipped across entire sky +2011-10-23,41.6977778,-72.7241667,Newington,CT,circle,240,Two large, bright , white lights traveling extremely fast in the same circular motion, opposite each other - loud whooshing sound 500 +2011-10-23,35.2619444,-81.1875,Gastonia,NC,unknown,240,We have our photos and thats all you need t prove our strange sightings. +2011-10-23,31.435,-97.7436111,Gatesville,TX,flash,1,strange flash of light +2011-10-23,39.7908333,-77.1097222,Whitehall,PA,light,8,Fluorescent Green light shooting thought the sky towards allentown. +2011-10-23,37.775,-122.4183333,San Francisco,CA,other,900,White balls and drifting mechanism seen in Pacific Heights San Francisco +2011-10-23,40.0447222,-75.4391667,Berwyn,PA,circle,300,It was round and had 2 flashing red lights appeared in in a distance then came very close and dissapearred. +2011-10-23,31.7586111,-106.4863889,El Paso,TX,light,1200,Objects in the El Paso Sky +2011-10-23,38.6608333,-90.4225,Creve Coeur,MO,disk,180,Shiny saucer shaped object hovering near Creve Coeur Lake. +2011-10-23,34.69,-77.98,Willard,NC,cigar,120,Cigar shaped object seen in Willard NC sky. +2011-10-23,21.3069444,-157.8583333,Honolulu,HI,cylinder,120,Cylinder hovering over honolulu zoo/waikiki +2011-10-23,29.9544444,-90.075,New Orleans,LA,cylinder,1,I think these two almost matching UFO photos add much more credibility to both. +2011-10-23,41.5758333,-87.1761111,Portage,IN,diamond,1200,Red, yellowish fiery orbs flew quickly through the sky. +2011-10-23,39.7763889,-74.8627778,Jackson,NJ,sphere,900,Our group at approximately 7:30 PM witnessed approximately 60 to 70 bright gold spheres. +2011-10-23,40.3658333,-74.9433333,Lambertville,NJ,disk,120,Unknown flying craft seen over West Amwell Twp, Hunterdon Co, NJ Oct 23񫺛 7:30pm. +2011-10-23,38.8338889,-104.8208333,Colorado Springs,CO,triangle,5,Triangle with Orange Lights Swooped Down Quickly then Disappeared. +2011-10-23,39.7391667,-104.9841667,Denver,CO,triangle,20,Huge flying-V appeared to be high in the atmosphere. +2011-10-23,40.1316667,-75.46,Oaks,PA,circle,60,Circular shape object at low altitute near valley forge park. +2011-10-23,61.5813889,-149.4394444,Wasilla,AK,sphere,1800,Fake Star above Wasilla 10-23-11 Only visible light in the sky Period. +2011-10-23,61.5813889,-149.4394444,Wasilla,AK,sphere,1800,Fake Star above Wasilla 10-23-11 Only visible light in the sky Period. ((NUFORC Note: Star or planet? Possibly Jupiter? PD)) +2011-10-23,27.4122222,-82.6591667,Longboat Key,FL,light,600,A staggered line of at least 40 lights was seen traveling along the Gulf Coast from north to south over Longboat Key, FL. 10/23/11 10pm +2011-10-23,37.6447222,-115.7427778,Rachel,NV,formation,300,While driving at night on 375, coming up to Rachel. My girlfriend and I noticed these 3 bright lights flying in a formation and stoppi +2011-10-23,42.8666667,-88.3333333,Mukwonago,WI,triangle,120,My 13 year-old son spotted three bright orange lights in the sky while I was driving in a distance. We were trying to make sense of wh +2011-10-23,39.4561111,-77.9641667,Martinsburg,WV,circle,600,It was the wildest thing I've ever seen and it was for sure a UFO. +2012-10-23,27.8394444,-82.7913889,Seminole,FL,oval,3600,Mid Pinellas County-moving lights in horizontal fashion, right to left, left to right: brilliant green, blue, purple, pink, red. +2012-10-23,36.8527778,-75.9783333,Virginia Beach,VA,circle,1800,Multi-colored spot of bright light near oceanfront/Dam Neck Naval Station +2012-10-23,33.6888889,-78.8869444,Myrtle Beach,SC,formation,3600,Bright orangelike lights blinkin in different formations hovered about the ocean in Myrtle Beach, SC +2012-10-23,39.9555556,-86.0138889,Fishers,IN,light,2700,Oval foggy orbs 2-4, going around in circle above houses, following me down the street. ((NUFORC Note: Advertising. lights? PD)) +2012-10-23,36.175,-115.1363889,Las Vegas,NV,other,300,As I was driving along, I noticed a UFO in the sky. Now, I hardly see a UFO. It is rare occasion. The object that I saw was very notice +2012-10-23,33.6888889,-78.8869444,Myrtle Beach,SC,light,600,1, then 3, then 6 red/orange lights over the ocean +2012-10-23,35.6869444,-105.9372222,Santa Fe,NM,light,4,At 6:45 pm while walking on the bike path near Frency's Park, a low flying bright white and a little bit blue light in a small oval or +2012-10-23,41.9666667,-71.1875,Norton,MA,light,6,Bright light Moving south to north. It was to the west of Norton and Mansfield Massachusetts +2012-10-23,33.6058333,-78.9733333,Surfside Beach,SC,sphere,1200,We saw several odd shaped orange shapes in sky at three different intervals, about fifteen minutes apart. Last time they were circular. +2012-10-23,33.5508333,-79.0416667,Murrells Inlet,SC,fireball,120,6 to 7 glowing orange/yellow balls in sky +2012-10-23,42.2972222,-71.075,Dorchester,MA,circle,30,El objeto venia hacia el varrio de franklin hill dorchester MA, en una velocidad moderada pero cuando se acerco acia el playground paro +2012-10-23,39.2463889,-82.4786111,Mcarthur,OH,sphere,120,Saw two orange/yellow lights (orbs?) in the sky dimmed came back disappeared shortly +2012-10-23,40.8908333,-77.4769444,Millheim,PA,light,120,Two lights in the sky that were not planes or any other craft that flies at normal flying altitudes. +2012-10-23,33.6888889,-78.8869444,Myrtle Beach,SC,changing,3600,Two kinds of unidentified objects seen in the sky off fishing pier in myrtle beach. +2012-10-23,33.8158333,-78.6802778,North Myrtle Beach,SC,sphere,5,Orange-yellow lights staggered one behind the other, very bright and very long about 1/4 mile in the air hovering over the ocean. +2012-10-23,32.7763889,-79.9311111,Charleston,SC,sphere,300,Orange lights seen over the ocean from Charlseton Harbor +2012-10-23,41.5833333,-87.5,Hammond,IN,light,60,Red light moving in odd manner over Hammond, IN +2012-10-23,35.5272222,-86.3336111,Wartrace,TN,circle,10800,Floating object with red,yellow,green lights. ((NUFORC Note: Sighting of Capella?? PD)) +2012-10-23,44.7311111,-68.8269444,Orrington,ME,sphere,3600,Large white bright sphere fading away and turning blue in hue, Moving in circular patterns. Repeating. +2013-10-23,40.3152778,-74.2466667,Marlboro,NJ,triangle,90,Large low flying aircraft with flashing red lights flying just over the tree line. Seemed very peculiar and quite dangerous. +2013-10-23,42.8352778,-71.6494444,Milford,NH,triangle,300,Bright light in the distance, got closer large hovering craft with no noise above rt. 101. +2013-10-23,39.9522222,-75.1641667,Philadelphia,PA,light,30,Blue ball over Philadelphia. +2013-10-23,42.6986111,-71.1355556,North Andover,MA,chevron,300,Largest object in the sky i have ever seen +2013-10-23,27.0994444,-82.4544444,Venice,FL,sphere,8,Orange solid light sphere @ dusk, high rate of speed from east to west then disappearing. +2013-10-23,61.2180556,-149.9002778,Anchorage,AK,light,180,Driving on Fort Richardson saw 1 orange bright light above Arctic valley that appeared droped disapered then reappeared . +2013-10-23,41.6027778,-87.7438889,Oak Forest,IL,other,12,Loud aircraft with bright colored lights buzzes my neighborhood. +2013-10-23,48.7597222,-122.4869444,Bellingham,WA,light,3600,While waiting for a bus in downtown Bellingham,I spotted a large light moving very slowly above Bellingham Bay.The light was 1/3rd the +2013-10-23,43.0238889,-70.9141667,Stratham,NH,fireball,240,Bright yellow/orange fireball hovered with no noise at low altitude, shining right at my house. +2013-10-23,38.8338889,-104.8208333,Colorado Springs,CO,other,5,Big Brown Bird in night sky like a huge V no wing movement. +2013-10-23,35.4975,-97.2686111,Choctaw,OK,disk,2.5,Bluish white disk with trail behind it. +2013-10-23,35.4975,-97.2686111,Choctaw,OK,disk,3,Bluish white disk with contrail moving west to east. +2013-10-23,37.2438889,-77.4105556,Colonial Heights,VA,circle,2700,Strange light in Virginia +2013-10-23,38.7691667,-94.6561111,Stilwell,KS,sphere,1800,Contact with intelligent UFO. ((NUFORC Note: Possible sighting of Venus?? PD)) +2013-10-23,41.5291667,-120.1722222,Cedarville,CA,light,1200,Bright glowing,spherical, balls of light that dart around the sky with silence an super speed an gracefulness. +2013-10-23,61.2180556,-149.9002778,Anchorage,AK,circle,900,Approx. 12 orange orbs moving across the sky from the NW to the SE , moving towards outer space. +2013-10-23,46.325,-122.7352778,Toutle,WA,light,7200,Wednesday night I was walking up my driveway having a smoke when a bright colored object caught my eye. First thought was WOW that's a +2013-10-23,42.2833333,-71.35,Natick,MA,triangle,60,Orange triangular pattern aircraft? +2013-10-23,47.6447222,-122.6936111,Silverdale,WA,light,3600,Lights in the sky. +2013-10-23,42.9730556,-120.7763889,Summer Lake,OR,light,1200,10-23 and 24th of oct 13 summer lake OR. 9:00 p.m. orange balls of light 7 at one time in diagnal and in twos +2013-10-23,42.5522222,-106.7158333,Alcova,WY,light,7,A mysterious shooting star heads straight for our car but dissapears before it hits us. +2013-10-23,34.7391667,-112.0091667,Cottonwood,AZ,formation,1200,Formation of 4 lights seen over Cottonwood. +2013-10-23,35.5463889,-77.0525,Washington,NC,unknown,600,Loud vibrating low hum. +2013-10-23,38.8047222,-77.0472222,Alexandria,VA,light,45,Three (3) orbs of light rapidly moving through the night sky maneuvering around each other before racing off at an incredible speed. +2013-10-23,36.1961111,-86.6225,Hermitage,TN,light,240,Red pulsating light "bouncing" while ascending over Nashville area. +2013-10-23,33.5091667,-111.8983333,Scottsdale,AZ,other,180,Irregular hexagon with 3 big bright lights emitting beams +1973-10-24,30.2944444,-81.3933333,Jacksonville Beach,FL,changing,180,You may be surprised that I am reporting this after 30 years. I remember the date clearly as I told myself I would never forget. I have +1973-10-24,39.6283333,-84.1594444,Centerville,OH,other,2700,soft-white glowball +1973-10-24,39.6283333,-84.1594444,Centerville,OH,circle,120,A white circular-shaped glowball at night appeared in front of me at my bedroom window. I felt a butterfly sensation in my chest and th +1975-10-24,29.7352778,-94.9772222,Baytown,TX,light,900,THE OBJECT KEPT PACE WITH OUR CAR ALL THE WAY HOME. +1979-10-24,32.5488889,-92.92,Arcadia,LA,disk,45,object moved from one point to another so fast that it looked liked there were two of them +1994-10-24,35.2269444,-80.8433333,Charlotte,NC,disk,900,We were under brilliant illumination that was much brighter than the 2:30 pm afternoon clear day sunlight. +1994-10-25,38.9686111,-77.3413889,Reston,VA,triangle,40,As I stood there the golf course was getting brighter by the second. About thirty seconds later an extremely large object appeared movi +1996-10-24,39.9241667,-83.8088889,Springfield,OH,triangle,61,It Looked Like A star and then I seen three lights that formed a triangle and i told my brother, and cousion and they seen it to ,we st +1997-10-24,36.8466667,-76.2855556,Norfolk,VA,circle,10,Green, luminous round object that had a dark vertical line (or absense of light)appeared suddenly descended and disappeared. +1997-10-24,36.5330556,-82.3269444,Blountville,TN,circle,180,Brightly lit circular object (circular light pattern) hovering 1 1/2 minutes and suddenly darting away faster than conventional aircraf +1997-10-24,29.7630556,-95.3630556,Houston,TX,triangle,6,Witnessed black, metallic UFO pass by airplane window at 28ꯠ feet. Witnessed by several people in daylight. +1997-10-24,38.2494444,-122.0388889,Fairfield,CA,sphere,2,Round blue-green object seen hurling to earth. It disappeared before reaching the ground. It was only visible in the night sky for ap +1997-10-24,38.4405556,-122.7133333,Santa Rosa,CA,circle,5,Circular object; leading edge visable and dull white;shape of crecent moon; heading nw to se; twice size of moon; no details other than +1998-10-24,34.2255556,-77.945,Wilmington,NC,light,2700,Same as previous description of the other witness. +1998-10-24,34.2255556,-77.945,Wilmington,NC,sphere,1800,Approx 1 hour before dusk, 7 chrome-colored spheres appeared in the north/northwest sky. The objects didn't appear to be balloons and w +1998-10-24,43.0388889,-87.9063889,Milwaukee,WI,light,120,observation of an orange object in the night sky +1998-10-24,47.2530556,-122.4430556,Tacoma,WA,light,900,2 white glowing round object'sƹ made a 45 degree turn,the other a 90 degree turn. +1998-10-24,26.4611111,-80.0730556,Delray Beach,FL,triangle,300,My 11 year old son and myself driving north on Military Trial saw bright light in sky. +1999-10-24,33.4222222,-111.8219444,Mesa,AZ,light,5,looked up to see light appear out of nowhere: as if it saw me, it sped up; shot into NOTHING! It was head WSW, but it disappeared too +1999-10-24,41.6611111,-91.53,Iowa City,IA,sphere,180,round white ball beyond treetops straight north moving ENE fluctuating +1999-10-24,44.9666667,-92.3741667,Baldwin,WI,light,7200,I am a former pilot and current skydiving student. I was near a small private airport in Baldwin WI watching several loads of jumpers +1999-10-24,41.8088889,-88.0111111,Downers Grove,IL,oval,300,Bizzare shaped object that looked like the planet Saturn appeared out of nowhere, and dissapeared +1999-10-24,33.8883333,-118.3080556,Gardena (Los Angeles County),CA,chevron,420,observing night sky, noticed two large(very large)V shaped objects flying@40ꯠ-60ꯠft. flying W to SE. Both objects were illuminati +2000-10-24,47.3811111,-122.2336111,Kent,WA,other,2,Seattle - Blue-Gren object in NNW Horizon. +2000-10-24,41.1383333,-81.8638889,Medina,OH,diamond,2400,I saw a metallic cone shaped humming object with very bright lights. +2000-10-24,39.6688889,-76.3797222,Street,MD,oval,30,I was standing on my back beck while my dog did his after supper thing, My home is in the flight path of many planes approaching/ exiti +2000-10-24,32.9477778,-112.7161111,Gila Bend,AZ,triangle,600,black squat triangle - no lights - emiting smoke like dark mist +2001-10-24,37.6688889,-122.0797222,Hayward,CA,cross,300,I walked outside with my dogs early wed morning and noticed how bright and pretty the stars were. I noticed a bright bright light up in +2001-10-24,25.7738889,-80.1938889,Miami,FL,changing,300,A BLACK HORIZANTAL ROPELIKE OBJECT +2001-10-24,42.9955556,-71.4552778,Manchester,NH,light,30,Bright light sundenly vanished when telescope is trained on it. +2001-10-24,41.2683333,-110.9625,Evanston,WY,oval,18000,observed a oblong green glassy object starting at 2300 hrs on 10-24-01 while driving through wyoming untill 0400 10-25-01 seemed to mis +2002-10-24,41.7758333,-72.5219444,Manchester,CT,triangle,60,White triangular craft flying low and slow over Manchester CT. +2002-10-24,33.7488889,-84.3880556,Atlanta,GA,diamond,420,Not a ufo but some type of army ship (my opinion). Moving very slow very very big. There was no sound at all. It was right over us. +2003-10-24,35.6508333,-88.3933333,Lexington,TN,light,7200,I witnessed it on my back porch a; an object hovering around with a bright white light with a red light behind it. +2003-10-24,32.8233333,-97.1702778,Hurst,TX,triangle,7200,Triangular shape light in Hurst texas that stayed making small movements for over 2 hours ((NUFORC Note: Twinkling star?? PD)) +2003-10-24,29.7630556,-95.3630556,Houston,TX,rectangle,10,Strange Happenings in Houston 2003 +2003-10-24,35.3858333,-94.3983333,Fort Smith,AR,teardrop,3600,quivering flashing object high and distant in the Northeast sky ((NUFORC Note: We suspect a "twinkling" star. PD)) +2003-10-24,26.0108333,-80.1497222,Hollywood,FL,disk,60,Devins clouds an uncexpected sighting +2003-10-24,27.7519444,-98.0694444,Alice,TX,light,300,Tiny fast moving ball of light, also an airplane flying nearby but had NO landing lights visible +2003-10-24,37.8044444,-122.2697222,Oakland,CA,light,300,Clear night in Oakland and my family saw five UFOs over the house +2003-10-24,30.6941667,-88.0430556,Mobile,AL,triangle,60,First sighting of triangular bright white object moving over Mobile, AL. at night from the south +2004-10-24,41.5733333,-87.7844444,Tinley Park,IL,triangle,120,Triangular craft over tinley park illinois +2004-10-24,21.3069444,-157.8583333,Honolulu,HI,disk,35,the object has no sound,no lights,no windows,silver like color, moving fast. +2004-10-24,44.7444444,-68.8375,Hampden,ME,light,45,bright spot of light +2004-10-24,47.6063889,-122.3308333,Seattle,WA,cylinder,300,A bending black rod hovering over First Hill! +2004-10-24,40.6258333,-75.3708333,Bethlehem,PA,other,3600,Blue orbs appeared near lunar eclipse +2004-10-24,47.1855556,-122.2916667,Puyallup,WA,triangle,1200,Oct 24, 2004 - slow moving triangle over Puyallup Washington. +2004-10-24,39.8275,-75.4147222,Trainer,PA,unknown,780,Fast circular movement behind clouds for about 10-15 minutes in total ((NUFORC Note: Possible meteor. PD)) +2004-10-24,41.1930556,-87.0555556,Wheatfield,IN,flash,6,Gradual bright white light at night illuminating the eastern sky and ground. ((NUFORC Note: Possible meteor. PD)) +2004-10-24,40.0697222,-80.7402778,Bridgeport,OH,flash,2,Unknown flash of light.Lit up the sky like a fire works display in the distance. ((NUFORC Note: Possible meteor. PD)) +2004-10-24,41.6638889,-83.5552778,Toledo,OH,circle,5,Incredible hot white globe appeared to have shot upwards(?) at very high velocity-viewed while driving down a country road in farming c +2004-10-24,42.7875,-86.1088889,Holland,MI,flash,2,Bright white flash and strange whirring sound on clear night. +2004-10-24,35.6969444,-82.5608333,Weaverville,NC,circle,5,I saw a ball of white light plummet at a 45 degree angle, with the white tail displaying bands of color (spectrum) just before impact. +2004-10-24,38.1447222,-83.7641667,Owingsville,KY,fireball,3,At first I thought it to be metiorite but as it entered atmosphire it left a very bright bluegreen glow. ((Meteor??)) +2004-10-24,40.0638889,-80.7211111,Wheeling,WV,unknown,300,The sky lit up blue lighting the entire surface around us. ((NUFORC Note: Possible meteor. PD)) +2004-10-24,39.0275,-82.0338889,Pomeroy,OH,flash,60,Flash in the sky ((NUFORC Note: Possible meteor. PD)) +2005-10-24,29.4238889,-98.4933333,San Antonio,TX,circle,480,3 white lights moving East with a helicopter watching them at a distance +2005-10-24,29.6183333,-95.5375,Missouri City,TX,flash,900,Slow traveling Extremely bright and fast flashing white strobe light .... +2005-10-24,26.14,-80.2136111,Lauderhill,FL,oval,60,Stonebridge Gardens, Lauderhill, FL spacecraft sighting in wake of Hurricane Wilma 10/24/2005 +2005-10-24,39.7391667,-104.9841667,Denver,CO,changing,1500,The objects were reflective and the movement was not wind driven and appeared in the field at once. +2005-10-24,33.6305556,-112.3325,Surprise,AZ,other,120,West Valley Lights again!! +2005-10-24,39.2475,-114.8877778,Ely (7 Mi. South Of),NV,sphere,600,2 bright red lights south of ely +2005-10-24,25.8897222,-80.1869444,North Miami,FL,light,600,MOVING STARS +2005-10-24,33.2486111,-111.6336111,Queen Creek,AZ,triangle,300,UFO Sighting Over Southeast Phoenix In 2005. +2005-10-24,25.7738889,-80.1938889,Miami,FL,triangle,600,Triangular Object spotted over Miami after powerful Hurricane, +2006-10-24,37.3394444,-121.8938889,San Jose,CA,circle,14,At approximately 4:50am a lighted circlular object was spotted streaking across the sky traveling from West to Nortwest and entered my +2006-10-24,40.0505556,-77.5205556,Shippensburg,PA,circle,300,Metallic circlur object floating across the sky +2006-10-24,27.3361111,-82.5308333,Sarasota,FL,light,15,Bright White Light appearing over Sarasota +2006-10-24,35.0455556,-85.3097222,Chattanooga,TN,light,2,Several flashes of light from a stationary point very high in the night sky, followed by a moving fuzzy red light +2006-10-24,42.4975,-94.1677778,Fort Dodge,IA,triangle,30,Iowa UFO invasion! +2006-10-24,47.5708333,-122.2208333,Mercer Island,WA,oval,15,2 white ovals, 1 chasing the other above cloud level, odd flight patterns +2007-10-24,28.6775,-81.3280556,Casselberry,FL,light,1200,Hovering lights over Casselberry's former Greyhound track +2007-10-24,42.5847222,-87.8211111,Kenosha,WI,unknown,5,they did not burn up as normal and were a much more greenish color of light then a meteor +2007-10-24,30.4977778,-94.9963889,Shepherd,TX,triangle,6,Triangular craft moving very slowly, approx .350 ft above me. no discernable sound,bright colored lights. +2007-10-24,40.7141667,-74.0063889,New York City,NY,formation,1800,3 to 13 UFOs over Citibank building in Queens NYC in formation for about 20minutes. ((NUFORC Note: Possible hoax. PD)) +2007-10-24,34.4838889,-114.3216667,Lake Havasu City,AZ,circle,900,Bright, large object in early morning desert sky Thursday morning. +2007-10-24,32.6208333,-83.6,Warner Robins,GA,light,600,red light moveing fast 500 Lights On Object0: Yes +2007-10-24,41.4297222,-97.3680556,Columbus,NE,sphere,600,4 to 5 shinny object with no sound flew over the house heading due west. +2007-10-24,37.9716667,-100.8722222,Garden City,KS,egg,600,Egg Shaped Objects Over Garden City Kansas +2007-10-24,43.2436111,-97.2791667,Turkey Ridge,SD,rectangle,180,5 bright orange square lights over Southeast SD +2007-10-24,33.9525,-84.55,Marietta,GA,circle,3600,Bright circling ship +2007-10-24,28.7088889,-100.4991667,Eagle Pass,TX,oval,20,V-Shaped Object formed by small Oval Shaped objects. +2007-10-24,40.6575,-96.6577778,Roca,NE,rectangle,1800,((HOAX??)) This made me an alcoholic. ((NUFORC Note: Because of the profanity in the original version, we suspect a hoax here. PD)) +2008-10-24,38.5816667,-121.4933333,Sacramento,CA,light,45,Light in sky slowly fades after being hit with violet laser +2008-10-24,38.1394444,-90.555,De Soto,MO,light,360,small yellow-white light seen in De Soto , MO +2008-10-24,34.5958333,-120.1366667,Solvang,CA,fireball,120,Bright light flare in the Solvang, Santa Ynez sky Friday Night October 24 2008 +2008-10-24,35.1427778,-120.6402778,Pismo Beach,CA,changing,240,Orange ascending light on California Coast, stopping, moving, disappearing 10-24-08 +2008-10-24,47.4705556,-122.3455556,Burien,WA,cigar,300,My wife and I were driving back from Trader Joe's when she spotted some lights not moving,just hovering in mid air.I thought she was de +2008-10-24,35.18,-120.7308333,Avila Beach,CA,changing,600,Heading south on the 101 from San Luis Obispo as I neared the Avila Beach exit I noticed what I thought was a bright yellowish star in +2008-10-24,32.7152778,-117.1563889,San Diego,CA,fireball,60,A comet/firework like ball that separates and reconnects before apparently just disappearing into thin air. +2008-10-24,36.8188889,-76.2752778,Chesapeake,VA,triangle,60,Triangle formation of lights, one green over Dismal Swamp areaChesapeake, Va +2008-10-24,31.8972222,-98.6033333,Comanche,TX,formation,900,strange lights above comanche texas 10/24/08 +2008-10-24,39.7683333,-86.1580556,Indianapolis,IN,light,180,on 10/24/08 I observed 10-15 orange colored lighted objects floating or flying on the northeast side of Indianapolis. +2008-10-24,33.18,-96.4977778,Princeton,TX,flash,1800,The three objects seen in the sky from my back yard in rural Texas. +2008-10-24,37.1147222,-81.5197222,Tazewell,VA,fireball,120,Male and female allegedly illuminated by flash of light. ((NUFORC Note: Possibly not a serious report, we think. PD)) +2009-10-24,36.1538889,-95.9925,Tulsa,OK,circle,3600,3:30am Tulsa sky has 4 objects flashing blue lights +2009-10-24,34.0922222,-117.4341667,Fontana,CA,circle,25,silver round object +2009-10-24,34.2419444,-117.2847222,Crestline,CA,oval,300,Silver disk seen above San Bernardino Valley (5 minutes). +2009-10-24,38.7130556,-90.4297222,Maryland Heights,MO,other,180,shiny oval like object over maryland heights area +2009-10-24,26.7052778,-80.0366667,West Palm Beach,FL,sphere,114,White spherical object standing still in the sky. +2009-10-24,37.9513889,-86.7677778,Tell City,IN,teardrop,300,8 bright red tear shaped objects at low altitude seen at close range a little bigger than a small plane +2009-10-24,41.6833333,-86.25,South Bend,IN,triangle,7,triangle craft over South Bend +2009-10-24,26.7080556,-80.2308333,Royal Palm Beach,FL,other,3600,Something unbelievable in the SE FL sky while walking in my neighborhood Saturday night +2009-10-24,42.2411111,-88.3161111,Crystal Lake,IL,cylinder,120,Several Hundred Foot Long Orange/Gold Cylindrical Object +2009-10-24,38.8338889,-104.8208333,Colorado Springs,CO,changing,300,speeding stars over colorado springs +2009-10-24,38.4405556,-122.7133333,Santa Rosa,CA,light,1200,10 UFOs over Santa Rosa, California (six in a big dipper formation, four in a half circle) +2010-10-24,29.7855556,-95.8241667,Katy,TX,light,300,Bluish white light observed in 90 degree turn and flight to east over Ft Bend county Texas +2010-10-24,35.4105556,-80.8430556,Huntersville,NC,circle,3600,white lights high in the skies over huntersviile, nc moving very fast at all different directs. sit outside wherever you are and look +2011-10-24,45.6388889,-122.6602778,Vancouver,WA,unknown,1800,7 flashing moving objects that drop off an object +2011-10-24,39.9808333,-75.3088889,Havertown,PA,fireball,60,Very Bright ball of light off rt 3 traveling toward Philadelphia rapidly. +2011-10-24,47.4236111,-120.3091667,Wenatchee,WA,light,5,streaking brilliant light +2011-10-24,40.8163889,-79.5222222,Kittanning,PA,unknown,10800,Motionless flashing lights in the western sky for hours, at very high altitude. ((NUFORC Note: Possibly stars? PD)) +2011-10-24,33.6188889,-83.8675,Oxford,GA,circle,20,Large white light falling at a fast rate that produced orange and red flames that just disappeared. +2011-10-24,35.2269444,-80.8433333,Charlotte,NC,cigar,60,Yellow/orange cigar shaped object over Charlotte, NC +2011-10-24,34.0636111,-83.1255556,Comer,GA,circle,10,Bright flying light disappears from Northeast Georgia Sky +2011-10-24,33.475,-80.4866667,Santee,SC,fireball,180,Only lasted about 3 minutes and was a fireball traveling hortizontally and was very bright +2011-10-24,39.5069444,-84.7452778,Oxford,OH,light,7200,Slowly moving object in night sky seperates, comes together and changes colors in Ohio +2011-10-24,33.3702778,-112.5830556,Buckeye,AZ,light,60,Orange-Red light over Buckeye, fades away. +2011-10-24,42.7325,-84.5555556,Lansing,MI,formation,90,Seven or eight red orange lights moving slowly making no sound. ((NUFORC Note: Other reports of this event are pending. PD)) +2011-10-24,48.1183333,-123.4294444,Port Angeles,WA,light,300,tow car like lights on ufo huvering over Port Angeles +2011-10-24,42.4405556,-76.4969444,Ithaca,NY,fireball,4,Meteorite lands close to ithaca +2011-10-24,42.4405556,-76.4969444,Ithaca,NY,fireball,4,I saw a fireball over ithaca +2012-10-24,33.9813889,-81.2363889,Lexington,SC,changing,4,Bright light moving slowly, then stopping in mid air. Bright green through binoculars. Returns to same location. +2012-10-24,28.0680556,-80.5605556,Melbourne Beach,FL,flash,900,I saw three flashing lights in the sky over Melbourne Beach. They moved erratically and kept flashing the whole time that I saw them. +2012-10-24,42.0883333,-87.9805556,Arlington Heights,IL,fireball,60,Around 12:30 am Wednesday morning, me and my friend witnessed an orange orb-like object hover across the sky. We had been sitting in a +2012-10-24,39.2638889,-103.6916667,Limon (Near),CO,light,120,Two bright orbs following car on Colorado's eastern plain. +2012-10-24,41.6572222,-87.68,Blue Island,IL,fireball,4,As I entered my place of business I suddenly looked up west and noticed a blue flame in the sky streaking across at a 45 degree angle m +2012-10-24,33.8730556,-78.6144444,Little River,SC,changing,60,Lights from a craft changing shape & formation +2012-10-24,32.2216667,-110.9258333,Tucson,AZ,changing,35,Brownish shaped changing object. +2012-10-24,32.5836111,-117.0961111,South San Diego,CA,other,1800,I saw a UFO with two parallel white lights. It was stationary for 30 min. When a white cloud passed over it, it took on a dark color. +2012-10-24,37.5536111,-77.4605556,Richmond,VA,circle,5400,Huge circular something crosses I 295 on 10/24/12 at 16:14. +2012-10-24,48.4213889,-122.3327778,Mt. Vernon,WA,other,240,UFOs landed in mt. vernon, wa. +2012-10-24,39.2775,-74.575,Ocean City,NJ,light,120,A bright white orb appeared to hover above the ground for two minutes before disappearing. +2012-10-24,33.9813889,-81.2363889,Lexington,SC,disk,5,Disk +2012-10-24,40.4405556,-79.9961111,Pittsburgh,PA,fireball,1200,Second sighting of orange orbs with green/blue lights since June 2012. +2012-10-24,33.6888889,-78.8869444,Myrtle Beach,SC,circle,1500,Orange lights were seen hovering over the ocean. These lights created lines of upto 4 lights then quickly dissipating. +2012-10-24,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,240,Fiery ball of light slowly growing bigger then fading away all in sequence in triangular formation with other lights. +2012-10-24,33.8941667,-78.4269444,Ocean Isle Beach,NC,circle,3600,Red/Orange lights over Ocean Isle Beach, NC. +2012-10-24,33.8805556,-78.5125,Sunset Beach,NC,other,2700,Strange noises +2012-10-24,33.8272222,-78.6430556,Cherry Grove Beach,SC,oval,1200,Orange balls of light appeared in sky above the ocean and darted from left to right. +2012-10-24,33.6888889,-78.8869444,Myrtle Beach,SC,light,30,Bright orange lights appeared above the horizon, only to disappear, then reappear in formation. Lasted about 30 seconds. +2012-10-24,33.6888889,-78.8869444,Myrtle Beach,SC,unknown,120,Observation, numerous times, orange lights to the East of Myrtle Beach, SC. +2012-10-24,33.6888889,-78.8869444,Myrtle Beach,SC,circle,900,Lights over Atlantic Ocean during evening, easily seen, quickly disappearred, several locations +2012-10-24,31.0636111,-98.1813889,Lampasas,TX,light,15,Sequential lights in straight, horizontal lines in the sky over Texas. +2012-10-24,39.0633333,-84.5930556,Villa Hills,KY,flash,3600,West of Cincinnati UFO sighting. +2012-10-24,31.7091667,-98.9908333,Brownwood,TX,light,1800,Orange glowing lights above walmart +2012-10-24,39.0638889,-108.55,Grand Junction,CO,unknown,300,No lights, quiet, hovering & stationary. +2012-10-24,35.0469444,-82.0902778,Inman,SC,disk,10800,A saucer shape UFO was seen outside of my friends house, flying in all different directions that no plane can fly, and lasted 3 hrs. +2012-10-24,33.8730556,-78.6144444,Little River,SC,light,120,A pair of bright lights changed into bright organic lights like fire lights that went miles in seconds, no sound. +2012-10-24,36.0227778,-95.9680556,Jenks,OK,circle,600,Two blinking circular crafts hover over northern sky and then vanish. +2012-10-24,39.8880556,-82.3172222,Glenford,OH,unknown,180,Light in the sky +2013-10-24,34.1477778,-118.1436111,Pasadena,CA,fireball,3600,Mass UFO sighting: Pasadena, CA: 4:35pm on December 24, 2013. +2013-10-24,39.7733333,-75.0066667,Erial,NJ,sphere,3,Shiny spherically shaped object traveled very quickly southeastward then disappeared after a few seconds.. +2013-10-24,39.2402778,-76.8397222,Columbia,MD,diamond,20,A low diamond shaped flash of light that started blue and turned white like a bright shooting star over Sewells Orchard Pond. +2013-10-24,37.5536111,-77.4605556,Richmond,VA,circle,2,Blue and green circle took off in two seconds and then was gone. +2013-10-24,40.7966667,-74.4819444,Morristown,NJ,light,3,Bright fast quick light streak. +2013-10-24,32.7833333,-96.8,Dallas,TX,circle,2,Shiny circular object in sky, no lights, Extremely shiny. Disappeared a few seconds after I saw it. +2013-10-24,38.6580556,-77.25,Woodbridge,VA,cigar,300,silver cigar shaped craft NO WINGS +2013-10-24,33.1730556,-84.915,Hogansville,GA,circle,120,Early afternoon sighting, made 90 degree turns +2013-10-24,48.7597222,-122.4869444,Bellingham,WA,light,18000,Large star like light hangs in the sky for over 5 hours & disappears. +2013-10-24,38.3311111,-77.0513889,Dahlgren,VA,light,60,Lightes orb seen failing during the day. +2013-10-24,39.0319444,-76.5030556,Arnold,MD,fireball,5,Extremely bright ball/circle of yellow-white light surrounded by a red outline streaked across evening sky +2013-10-24,41.5291667,-120.1722222,Cedarville,CA,light,3600,Small red light followed by orange orbs that appeared, multiplied, and disappeared. +2013-10-24,38.6272222,-90.1977778,St. Louis,MO,triangle,60,Delta shaped object hovering over flatbed truck in St. Louis. +2013-10-24,35.2305556,-89.7402778,Lakeland,TN,light,30,Light seen makes a turn and disappears. +2013-10-24,43.8138889,-120.6022222,Brothers,OR,light,2700,I saw two groups of lights that appeared to be separate craft. +2013-10-24,38.9569444,-76.5502778,Edgewater,MD,light,60,Saw two stationary lights in the southeastern sky for about 1.5 minutes very brilliant light and then faded away. +2013-10-24,32.9125,-96.6386111,Garland,TX,circle,600,6-8 orange/yellow circles hovering in a zigzag formation. +2013-10-24,40.7763889,-73.4677778,Plainview,NY,triangle,3600,4 lights in the shape of a triangle were seen in the night sky. +2013-10-24,44.0522222,-123.0855556,Eugene,OR,other,300,Bright orange light, flying low, moving slowly & was silent +2013-10-24,43.7094444,-98.0294444,Mitchell,SD,light,15,Orange light that fades out and reappears. +2013-10-24,38.8105556,-90.6997222,O'fallon,MO,triangle,120,silent slow obtuse triangle, all black with perimeter white lights +2013-10-24,41.2458333,-75.8816667,Wilkes-Barre,PA,other,360,Flashing lights Red/Orange and White/grey "bouncing" gaining and losing altitude instantly. +2013-10-24,36.0525,-95.7905556,Broken Arrow,OK,oval,900,2 Orangish/Red/Yellow Oval Objects hovering over a Broken Arrow, OK residential district. +2013-10-24,33.3061111,-111.8405556,Chandler,AZ,disk,20,Craft moved from West to East across South Chandler sky. +2013-10-24,34.8641667,-118.1625,Rosamond,CA,formation,9,Witnessed two red steady lights moving west to east in a straight line across night sky. Faster than a plane, but not as quick as a sho +2013-10-24,41.0036111,-80.3472222,New Castle,PA,fireball,300,((NUFORC Note: Witness provides no information about sighting. PD)) +2013-10-24,32.8138889,-96.9486111,Irving,TX,cylinder,240,Triangular object with faint yellow-orange lights on irregular flight path hovered, then descended rapidly and observed as cylindrical +2013-10-24,45.8322222,-93.4261111,Ogilvie,MN,light,900,Orange light above trees. +2013-10-24,42.4927778,-92.3427778,Waterloo,IA,triangle,60,Triangular aircraft with yellow and red lights. +2013-10-24,32.5630556,-97.1413889,Mansfield,TX,triangle,5,white 500 foot wide V shape craft flys over Mansfield, Texas at night +2013-10-24,41.6638889,-83.5552778,Toledo,OH,triangle,900,Black triangle slowly flew over us, almost silent, and directly changed course, descended into wooded area +2013-10-24,32.2730556,-89.9858333,Brandon,MS,circle,10,Bluish green object, the size of a dime held at arms length traversing approximately a 10 degree path toward the southwest horizon. +1958-10-25,44.3530556,-121.1766667,Terrebonne,OR,unknown,120,Piercing, shrill tone. +1968-10-25,42.1013889,-72.5902778,Springfield,MA,disk,300,Unexpected siting of a disk shaped object fully illuminated by bright, circling lights around this object +1969-10-25,42.1291667,-80.0852778,Erie,PA,circle,1200,bright circular object along Lake Erie +1972-10-25,42.1219444,-77.9483333,Wellsville,NY,disk,600,Object seen hovering nearby. Very bright lights through ports. +1975-10-25,41.4244444,-91.0430556,Muscatine (Area Approx. 7mi South),IA,circle,12,A formation of approx. 16 round fire orange guided craft entered the western sky at "10 o'clock" attitude. As I was watching the clear +1977-10-25,43.2363889,-120.6358333,Christmas Valley,OR,formation,300,Strange incident in 1977 +1978-10-25,45.2938889,-111.9452778,Virginia City,MT,other,600,While elk hunting South of town I sighted a huge object which was shiny like mylar or a mirror but seemed metalic. It was shaped like a +1978-10-25,34.9852778,-80.5497222,Monroe,NC,disk,300,Coming home from grocery store on a brisk fall evening I noticed something in the sky to the NW of our location. Stopped car to take pi +1983-10-25,35.32,-120.0058333,California Valley (Cattle Country, Not Too Distant Airbase),CA,disk,300,Played with our car for over 5 min. deserted freeway, took off like slingshot returned and put bright light on car, only time made nois +1983-10-25,42.5902778,-72.3102778,Orange,MA,diamond,60,Flying object from north orange down east rd. +1985-10-25,33.9163889,-118.3516667,Hawthorne,CA,triangle,1200,In 1985 during a meteor shower asked object to come my way if not a plane, and it did. +1985-10-25,34.1722222,-118.3780556,North Hollywood,CA,sphere,18000,4 luminous white balls rotating above our house. +1988-10-25,25.7738889,-80.1938889,Miami,FL,light,60,They disappeared behind the only cloud in the sky. +1994-10-25,29.4238889,-98.4933333,San Antonio,TX,other,20,amorphous, floating ink-spot in the night sky +1995-10-25,40.5291667,-75.3936111,Center Valley,PA,triangle,600,Grey Triangular object about 25-30' wide with three very bright white lights, one in center and one on each wing tip, moving at no more +1995-10-25,47.1855556,-122.2916667,Puyallup,WA,light,180,Blue and yellow lights hitting the window, but not shining inside. +1996-10-25,30.2263889,-93.2172222,Lake Charles,LA,changing,600,WITNESSED THREE STRANGE OBJECTS PUTTING OUT A VERY WHITE LIGHT THEY WERE ABOUT 45-60 FEET OFF THE GROUND WHEN FIRST SPOTTED ALSO PUT OU +1997-10-25,44.98,-93.2636111,Minneapolis,MN,triangle,60,A small V of lights moving very quickly from west to east +1998-10-25,39.7391667,-104.9841667,Denver,CO,light,180,3rd sighting of UFO's in DIA area +1998-10-25,40.7933333,-77.8602778,State College,PA,disk,900,saw large craft with 2 small craft at sunset.thought were jets but were not...barely make out faint outline of mothercraft.....ufo's fl +1998-10-25,38.1041667,-122.2555556,Vallejo,CA,triangle,45,triangle with four circular lights within moved in unorthodox patterns across the sky 4-5ꯠ feet above our heads +1998-10-25,25.6047222,-80.3538889,Perrine,FL,formation,6,My son and I were looking at constellations when suddenly 4 illuminated units flying in a triangle formation came across the sky, from +1998-10-25,42.8713889,-112.4447222,Pocatello,ID,light,600,I was looking out my kitchen door when I saw at a distance a bright flickering white light that appeared to have a diamond shape with r +1998-10-26,33.5861111,-86.2861111,Pell City (33.56' 52&Quot;N - 86.15' 00&Quot; W),AL,sphere,3,Commmercial pilot driving East on I-20, notice object out left window, object is small, bright pulsing white, headed toward ground at a +1999-10-25,32.1533333,-90.1311111,Florence,MS,changing,60,saw a shiney object moving from west to east and i was looking north.it had no sound. +1999-10-25,41.5511111,-112.1094444,Corinne,UT,disk,15,A bright white disk-shaped object flew in veiw. +1999-10-25,32.7355556,-97.1077778,Arlington,TX,sphere,120,coming on to I-20 going toward dallas, i saw what looked like a black ball suspended over the shopping mall complex to my left. +1999-10-25,33.6602778,-117.9983333,Huntington Beach,CA,egg,30,The sky was clear. I was on my porch smoking and I noticed three egg shaped lights in the formation of a triangle flying very fast... +1999-10-25,33.9561111,-83.9880556,Lawrenceville,GA,triangle,120,A football field size triangular object with a fire-burner on the very back floated, with no sound, over my counsin and my head. +1999-10-25,36.1344444,-80.6597222,Yadkinville,NC,fireball,3,Huge fireball with long tail of fire, streaming across the road in front of me. +1999-10-25,35.1477778,-114.5675,Bullhead City,AZ,light,1200,I was out with my dogs and watched a red light object moving slowly from so. to so. west and stopping and moving very slow. It remain +2000-10-25,40.3922222,-79.9002778,Munhall,PA,light,120,A friend of mine and i were standing in our friends front yard having a cigarette. I looked up and seen a orange colored ball moving f +2000-10-25,42.325,-72.6416667,Northampton,MA,fireball,5,Fireball seen in sky emitting sparks behind it. +2000-10-25,33.5805556,-112.2366667,Peoria,AZ,fireball,900,it was like a fire in the sky +2000-10-25,47.7361111,-122.6452778,Poulsbo,WA,other,900,A vertical string of 3 orange globes suspended from one another moving at a slow rate. changing course and ascending out of sight. +2000-10-25,47.6063889,-122.3308333,Seattle,WA,triangle,2700,Sparkling contrails in triangle pattern. +2000-10-25,33.3794444,-108.9027778,Alma,NM,light,10,Light goes into cloud and what comes out on the other end as three MEGA Size lights 2x the size of our 28 ft. trailer. +2001-10-25,29.7630556,-95.3630556,Houston,TX,oval,60,A dark gray object traveling across the night sky. +2001-10-25,42.225,-121.7805556,Klamath Falls,OR,light,300,Bright blue fireball, no train, then odd , slow movement in opposite direction of multi-lit object +2001-10-25,33.4483333,-112.0733333,Phoenix,AZ,triangle,4,thursday oct 25 10:20 pm myself and and 1 other individual wittnessed a triangular shaped craft flying aprox 1000 feet coming from nort +2001-10-25,33.4483333,-112.0733333,Phoenix,AZ,triangle,4,witnessed a triangular shaped craft flying approx. 1000' going north to south at a high rate of speed. +2001-10-25,38.9716667,-95.235,Lawrence,KS,other,4,fast moving v shaped dull white object over Lawrence Kansas +2001-10-25,37.585,-79.0516667,Amherst,VA,unknown,7200,Mother and daughter- and now father- see ufo on farm road in Amherst, Va. +2002-10-25,40.7919444,-74.0041667,Guttenberg,NJ,disk,180,I was walking on Friday, October 25th. It was already dark out. As as I walking, I turned around and happened to look up at the sky a +2003-10-25,46.8397222,-119.0511111,Bruce,WA,oval,30,the object did not emit any light onto the land +2003-10-25,39.8016667,-89.6436111,Springfield,IL,disk,120,In the sky over my head 2 bright white disk shaped objects that seemed to be chasing each other just playing around. Then they just too +2003-10-25,40.4538889,-75.8183333,Fleetwood,PA,oval,15,An oval shaped craft flew directly behind and to the left of a low flying 747 passenger jet. The craft rflected sunlight and it was obv +2003-10-25,32.7152778,-117.1563889,San Diego,CA,triangle,300,((name deleted)) see's a Ufo land on her property +2003-10-25,45.7544444,-122.8763889,Scappoose,OR,triangle,5,Swift hard-to-see triangular object moving in a straight line across night sky with 3 luminous tips, one at front, two at rear. +2003-10-25,39.8366667,-105.0366667,Westminster,CO,triangle,15,Silent, Black Triangle with lights on the corners and amber, glowing lights at rear of craft. +2003-10-25,31.1169444,-97.7275,Killeen,TX,sphere,3,Spherical object that emitted a blinding white light. +2003-10-25,37.6811111,-122.1233333,San Lorenzo,CA,changing,900,Tubular shaped thing,that changed shape and seemed to navigate its directions was flying over my home. several witnesses +2003-10-25,39.7972222,-84.3113889,Trotwood,OH,other,120,I saw a object hoovering approx 6 - 8 feet above some trees as I was approaching a 4 way stop. +2003-10-25,39.7972222,-84.3113889,Trotwood,OH,other,120,MUFON/OHIO FOLLOW-UP INVESTIGATION REPORT: I spoke with the witness from Trotwood, Ohio (suburb of Dayton). +2004-10-25,45.2102778,-123.1975,Mcminnville,OR,cigar,30,Blue cigar shaped craft spotted over McMinnville oregon- +2004-10-25,33.6116667,-111.7166667,Fountain Hills,AZ,triangle,1200,I was out and about walking my dog when all the sudden this triangle in the sky was up really high and id never seen any airplane shape +2004-10-25,48.0961111,-119.7794444,Brewster,WA,flash,2,Very Large Red Flash Object lasting 2 seconds +2004-10-25,41.3197222,-81.6269444,Brecksville,OH,other,600,BLIMP TO RECTANGLE TO SQUARE OVER I-77 IN BRECKSVILLE, OHIO +2004-10-25,42.5047222,-71.1961111,Burlington,MA,disk,10,a Saucer like object,- VERY bright white lights.... flying slowly overhead, before being lost in the trees. +2004-10-25,38.8611111,-86.4872222,Bedford,IN,circle,2,Interesting moon view with telescope, unknown objects. +2004-10-25,32.6069444,-84.9372222,Fortson,GA,cone,180,Lunar landing as observed through a telescope +2005-10-25,37.1305556,-121.6533333,Morgan Hill,CA,flash,1200,Trying to locate Mars in the early morning hours I was searching the sky towards the East South-East with binoculars when i came across +2005-10-25,38.6272222,-90.1977778,St. Louis,MO,other,300,Two shining objects spotted in the day time sky high above St. Louis. +2005-10-25,33.6305556,-112.3325,Surprise,AZ,light,37800,More lights west of Phoenix. +2005-10-25,38.4,-105.2166667,Canon City,CO,light,300,10/25/05 8:30pm several lights floating in sky and disappeared one by one +2005-10-25,25.7902778,-80.1302778,Miami Beach,FL,chevron,60,Tuesday 10/25/05, during the Hurricane Wilma blackout, I saw a large boomerang shape, fly from North to South over Miami Beach. +2005-10-25,43.0388889,-87.9063889,Milwaukee,WI,triangle,120,I have never seen anything like this before in my life. +2005-10-26,34.1477778,-118.1436111,Pasadena,CA,circle,720,Amazing glowing air craft in Pasadena, California +2006-10-25,27.4986111,-82.575,Bradenton,FL,fireball,180,object moved slowly parrelel with sky. then faded and reappeard going in another direction,and vanished. +2006-10-25,40.1163889,-88.2433333,Champaign,IL,changing,600,Object or objects sighted over field +2006-10-25,40.7472222,-88.5147222,Fairbury,IL,oval,10,2 OVAL SHAPED OBJECTS PURSUING EACH OTHER +2006-10-25,46.8266667,-100.8891667,Mandan,ND,circle,300,10-25-06 Circle North Dakota 5 minutes Shiny object paused 10-15 seconds then began to zig-zag +2006-10-25,26.0569444,-80.2719444,Cooper City,FL,changing,120,object with plume of light changed altitude and direction +2006-10-25,29.8944444,-81.3147222,St. Augustine,FL,fireball,120,Sparking fireball in sky heading north to south +2006-10-25,27.4463889,-80.3258333,Fort Pierce,FL,unknown,60,bright yellow light with a trail +2006-10-25,28.5380556,-81.3794444,Orlando,FL,fireball,300,Fire ball that came towards us, dimmed, then shot in opposite direction before dissapearing. +2006-10-25,32.5838889,-117.1122222,Imperial Beach,CA,unknown,10,Saw 5 lights in the shape of what I first thought was a plane. It appeared to be no more than 300 to 400 yards off the ground. It was f +2006-10-25,38.4736111,-122.8891667,Forestville,CA,formation,3600,Flashing Formation - Sonoma County, California +2006-10-25,38.4736111,-122.8891667,Forestville,CA,formation,3600,Flashing Formation - Sonoma County, California ((NUFORC Note: Possible view of stars, possibly the Orion constellation. PD)) +2006-10-25,41.7,-71.4166667,Warwick,RI,triangle,10,3 arrow shaped objects brown in color flying in a triangular formation moving very quickly. +2007-10-25,41.2844444,-84.3558333,Defiance,OH,triangle,30,Triangular craft silently moving through the air above me and past me. +2007-10-25,44.0522222,-123.0855556,Eugene,OR,cylinder,18,Very black missile type craft, no windows, large, and agile as it crossed the sky and it turned and flew away +2007-10-25,39.9522222,-75.1641667,Philadelphia,PA,oval,60,10/26/07..Philadelphia.Pa..Oval..Silvery..about 200' long, in the Eastern Sky.. +2007-10-25,32.7355556,-97.1077778,Arlington,TX,light,15,The fastest falling metour without a tail that was no common airplane! +2007-10-25,39.7391667,-104.9841667,Denver,CO,changing,180,Viewed a silent, grey, shape shifting ufo fly over the nearby Denver Pepsi Center at 9:36pm. +2007-10-25,42.6386111,-100.2377778,Wood Lake,NE,light,2,There where Three lights. Two where side by side and the other was away from the other two. I only seen them for 2 or 3 seconds. The +2007-10-25,42.3211111,-85.1797222,Battle Creek,MI,triangle,420,Triangle UFO spotted with multiple helicpoters and balls of light, all at night! +2007-10-25,36.6002778,-121.8936111,Monterey,CA,cylinder,300,Cigar shaped UFO over Monterey, CA October 24, 2007 +2007-10-25,42.0341667,-91.5975,Marion,IA,light,900, I was outside smoking a cigarette. I looked over to the field across the street. I saw the first object and thought maybe it's jus +2008-10-25,43.9627778,-70.2830556,New Gloucester,ME,light,1800,Bright flash from the woods, followed by intense heat. +2008-10-25,43.9627778,-70.2830556,New Gloucester,ME,other,1500,Bright light; large upright being. ((NUFORC Note: Student report. Possible hoax. PD)) +2008-10-25,47.6063889,-122.3308333,Seattle,WA,light,60,Star like light moving in a zig zag pattern +2008-10-25,38.545,-121.7394444,Davis,CA,changing,300,light with tail doing serpentine manuever over I-80 in Davis +2008-10-25,38.545,-121.7394444,Davis,CA,other,120,Driving on I-80 in Davis ,Ca. when we saw bright sphere of light with a tail flying low and serpentine towards us! +2008-10-25,41.6027778,-87.7438889,Oak Forest,IL,triangle,2,Are The Tinley Park Lights coming back for Halloween 2008? +2008-10-25,37.2152778,-93.2980556,Springfield,MO,light,30,Two bright objects next to each other going in an upward motion. +2008-10-25,38.5472222,-122.8152778,Windsor,CA,light,60,Two white lights flying in formation, got bright, then dissapeared. +2008-10-25,41.5875,-109.2022222,Rock Springs,WY,other,120,10 bird like shapes in straight line. glowed orange, like lights from town on underneath. +2008-10-25,39.7683333,-86.1580556,Indianapolis,IN,fireball,900,8 UFOs appear as silent orange fireballs in northeast Indianapolis IN +2008-10-25,30.4055556,-86.6188889,Fort Walton Beach,FL,light,3,2 lights speeding past okaloosa island beach at fort walton beach FL +2008-10-25,40.5886111,-83.1286111,Marion,OH,triangle,60,A triangular craft sighted in Marion, Ohio was flying west leaving a deep bass coming from the sky. +2008-10-25,42.0083333,-91.6438889,Cedar Rapids,IA,light,120,Red light dimming in and out across the clear night sky. +2008-10-25,41.5733333,-87.7844444,Tinley Park,IL,oval,10,UFO Sighting on October 25, 2008 in Tinley Park, Illinois West on I-80 +2008-10-25,33.3527778,-111.7883333,Gilbert,AZ,unknown,240,a white glowing covering my entire street in gilbert arizona +2009-10-25,42.3369444,-77.3180556,Bath,NY,unknown,8,Bath, NY UFO Sighting +2009-10-25,32.7947222,-116.9616667,El Cajon,CA,circle,900,while working on electrical junction box electrican noticed a silvery circle in the western sky . it was at a very high in the and didn +2009-10-25,38.9413889,-119.7486111,Gardnerville,NV,circle,60,Watched shiny objected prolly 30000ft in the air fly west at an unreasonably fast speed then dissapear. +2009-10-25,38.3227778,-82.4469444,Lavalette,WV,circle,180,Satellite looking object made erratic movement in daylight in clear skys near Huntington WV. +2009-10-25,44.8341667,-87.3769444,Sturgeon Bay,WI,oval,360,Low Flying oval craft with flashing colored lights moving slowly across the sky. +2009-10-25,30.1577778,-95.4891667,The Woodlands,TX,unknown,45,Pulsating light emitting no sound moving slowly above my neighborhood +2009-10-25,33.7475,-116.9711111,Hemet,CA,rectangle,5,Rectangular craft observed in Hemet California +2009-10-25,33.7475,-116.9711111,Hemet,CA,triangle,60,Two triangular UFO's seen over Hemet, CA in the night sky with distortion field +2010-10-25,39.1405556,-121.6158333,Yuba City,CA,cigar,120,Cigar/Cylinder shaped object seen over Yuba City, California +2010-10-25,41.6269444,-88.2038889,Plainfield,IL,triangle,60,I went outside for a cigarette on my front porch. I heard a crazy sound and immediately got sort of frightended. I looked up and saw a +2010-10-25,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,2400,3 lights form hovering triangle and disappear behind NYC skyline +2010-10-25,37.585,-79.0516667,Amherst,VA,unknown,7200,Our last encounters with ufo on amherst, va farm road +2010-10-25,48.4213889,-122.3327778,Mt. Vernon,WA,oval,60,I saw two red continuous lights in the night sky moving from East to West toward the lights of Mt Vernon, Washington . +2011-10-25,40.8041667,-74.0125,North Bergen,NJ,circle,6,While viewing the stars I saw a U.F.O fly near by,in the from north to south,in New Jersey. +2011-10-25,40.7186111,-74.5697222,Bernardsville,NJ,fireball,5,fireball appears over rt 287 then decends fast and diagonally behind tree line +2011-10-25,38.6675,-77.0286111,Accokeek (On Hwy 210),MD,light,15,ball of light flew over vehicle at treetop level and vanished +2011-10-25,35.3583333,-79.8947222,Troy,NC,rectangle,120,I was driving home about 9:00 and in the sky above right above the tree was the bright +2011-10-25,35.3583333,-79.8947222,Troy,NC,rectangle,120,I was driving home about 9:00 and in the sky was a bright rectangle light just sitting above the tree's right in front of me. I did not +2011-10-25,46.2113889,-119.1361111,Kennewick,WA,light,8,White Fluorescent object movig extremely fast in multiple 90 deg turns due East of Kennewick WA. +2011-10-25,35.0844444,-106.6505556,Albuquerque,NM,cylinder,15,ROCKET WITH LONG THIN WINGS +2011-10-25,45.6388889,-122.6602778,Vancouver,WA,cigar,60,single white, cigar shaped object over west Vanouver, WA +2011-10-25,41.1844444,-73.1336111,Stratford,CT,teardrop,300,STREAKING WHITE COMET LIKE OBJECTS ONE GOING DOWN TO EARTH OTHER HEADING ACROSS SKY NORTH AND LEVEL. +2011-10-25,40.9866667,-75.195,Stroudsburg,PA,light,720,Flashing light that changed colors then disappeared +2011-10-25,34.1169444,-83.5725,Jefferson,GA,circle,30,to fast to have been a plane +2011-10-25,35.6869444,-105.9372222,Santa Fe,NM,cone,900,Green Lights land in my yard! +2011-10-25,41.5038889,-87.7130556,Matteson,IL,formation,1200,Triangle formation of 3 Bright White Lights in Sky over matteson IL +2011-10-25,41.5038889,-87.7130556,Matteson,IL,triangle,1200,Triangle Formation of Bright lights in SKY +2011-10-25,46.6022222,-120.5047222,Yakima,WA,triangle,60,While stopped at a traffic light my kids and I saw 3 strips of reddish orange lights in the sky not moving for about 30 seconds +2011-10-25,38.7522222,-121.2869444,Roseville,CA,light,60,Witnessed two very bright lights to the south east of us, that just appeared out of nowhere. +2011-10-25,43.7022222,-72.29,Hanover,NH,fireball,3,Green fireball lasting a few seconds only, must be other witnesses out there. +2011-10-25,38.3566667,-121.9866667,Vacaville,CA,diamond,120,huge, dark, diamond shape craft with lights that formed a triangle +2011-10-25,38.3566667,-121.9866667,Vacaville,CA,triangle,120,((HOAX??)) Triangular craft with two lights on each side. +2011-10-25,37.2608333,-85.4988889,Greensburg,KY,cigar,1800,Strange elliptical lights over ky sky's +2011-10-25,47.6063889,-122.3308333,Seattle,WA,light,60,Star-like light with humanly incapable flight pattern +2012-10-25,34.2072222,-84.1402778,Cumming,GA,cigar,60,Low flying, sparkling, cigar shaped, wingless, silver object silently moving through northern GA sky. +2012-10-25,33.9533333,-117.3952778,Riverside,CA,formation,30,3 reflective spheres southbound over Riverside CA toward Lake Matthews in formation w/ one breaking off, then loss of contact. +2012-10-25,38.6272222,-90.1977778,St. Louis (West),MO,disk,60,Two black circular objects flying through storm clouds in rotating flight pattern. +2012-10-25,33.5016667,-81.9652778,North Augusta,SC,circle,240,10-12 orange circle objects over north augusta, ga...no sound +2012-10-25,40.8861111,-73.2577778,Kings Park,NY,triangle,120,Seen triangle dark gray or black craft moving north, no lights on. could not identify sound as natural or man made +2012-10-25,46.6022222,-120.5047222,Yakima,WA,light,240,A BRIGHT LIGHT THE SIZE OF VENUS APPEARED JUST BELOW THE MOON AND NOT MOVING FOR SEVERAL MINUTES BEFORE GOING OUT. +2012-10-25,64.7511111,-147.3494444,North Pole,AK,light,15,It was late at night and me and my mother were taking our dog out. It was late at night so the sky was almost pitch black with but a fe +2012-10-25,38.5816667,-121.4933333,Sacramento,CA,disk,2,Planes flew by and as I was watching them pass I saw a saucer with another smaller saucer on top. At first I thought it was clouds and +2013-10-25,40.8611111,-79.8955556,Butler,PA,light,120,Faint Blue Light Moving and Disappearing. +2013-10-25,34.0736111,-118.3994444,Beverly Hills,CA,circle,60,Slow moving bright orange fireball appearing somewhat close. Direction unclear, then suddenly disappears. +2013-10-25,40.7608333,-111.8902778,Salt Lake City (Cottonwood Heights),UT,sphere,180,Bright green basketball sized orb dashed next to me, then up to the sky. +2013-10-25,40.7038889,-105.0080556,Wellington,CO,unknown,2700,Red, white and blue flashing lights in the Northern sky above Wellington, Colorado. +2013-10-25,39.6066667,-75.8336111,Elkton,MD,other,1800,Object in Elkton sky with flashing orange lights, just floating/hovering. Looked like a planets or star but def not. +2013-10-25,43.0388889,-87.9063889,Milwaukee,WI,circle,120,Reddish orange lights floating in the sky from west to east +2013-10-25,43.0630556,-83.8511111,Flushing,MI,oval,600,3 small white circling very fast in oval formation for 10 minutes. +2013-10-25,39.2902778,-76.6125,Baltimore,MD,formation,600,Baltimore MD BWI a formation of more than 20 orange lights strung across the eastern horizon at a elevation of 35 degrees +2013-10-25,41.6005556,-93.6088889,Des Moines,IA,triangle,10,Large low-flying craft with orb like lights in a cross shape. +2013-10-25,41.3572222,-88.4211111,Morris,IL,unknown,2400,ufos over i80 between morris and bolingbrook illinois. +2013-10-25,29.7855556,-95.8241667,Katy,TX,fireball,180,Fireball seen moving across the sky of Katie, Texas. . +2013-10-25,40.4405556,-79.9961111,Pittsburgh,PA,disk,420,Saw 2 disc shaped white-ish blue objects floating in the clouds at night moving Around in very eratic movements. Circular zig zaging et +2013-10-25,39.2672222,-76.7986111,Ellicott City,MD,circle,120,((NUFORC Note: Witness provides no information; remains totally anonymous. PD)) +2013-10-25,35.4277778,-82.205,Lake Lure,NC,light,900,Bright orb that disappeared as I was watching it. +2013-10-25,43.5408333,-116.5625,Nampa,ID,disk,27,Oct 25 2013 approximately 20:30 hrs. Bright star appearing light low on the horizon (not seen in the past) observed on and off for .45 +2013-10-25,43.6122222,-116.3905556,Meridian,ID,disk,900,I saw military planes go after it! +2013-10-25,27.3361111,-82.5308333,Sarasota,FL,rectangle,60,5 good sized orange to white rectangular to oblong moving objects +2013-10-25,39.6283333,-84.1594444,Centerville,OH,fireball,600,75+ red dots in the sky over Dayton, Ohio +2013-10-25,33.9488889,-118.4447222,Playa Del Rey,CA,flash,120,Huge unexplained flashing lights on the sky in Los Angeles near Playa Del Rey +2013-10-25,33.8388889,-83.9008333,Loganville,GA,triangle,1800,Roughly 25 triangular foreign objects with red cores; all came from the south and dissappeared to the north. +2013-10-25,41.6116667,-93.885,Waukee,IA,circle,420,Multiple bright yellow-red circular lights sighted travelling SW to NE over Waukee towards Des Moines. +2013-10-25,39.9266667,-74.0775,Seaside Park,NJ,cross,30,Additional Info for the Friday Oct. 25th 10:30PM Sighting of 2 UFOs in Seaside Park NJ off the Ocean front. +2013-10-25,39.1752778,-84.2944444,Milford,OH,circle,600,6 orange lights moving at high rate of speed +1987-10-26,43.3238889,-88.1666667,Jackson,WI,formation,60,3 reddish orange objects spotted in formation. +1996-10-26,33.6188889,-117.9280556,Newport Beach,CA,changing,150,Object defies physics in Newport Beach, CA. +1996-10-26,31.1277778,-92.0661111,Marksville (Spring Bayou, 1st Landing),LA,triangle,300,Triangluar object moved very slowly over the trees appr. 100 yards from me without a sound, stopped, tipped up and lowered itself into +1997-10-26,35.2269444,-80.8433333,Charlotte,NC,triangle,2,I spotted two triangular craft over the treetops........ +1998-10-26,32.5888889,-96.3086111,Kaufman (Outside Of),TX,light,35,Large oval light, with smaller red light on top that was not blinking, in northern skies. +1998-10-26,43.0805556,-88.2611111,Pewaukee,WI,fireball,30,three blue green firebals falling. +1998-10-26,32.3475,-97.3863889,Cleburne,TX,light,7,Silvery-blue light streaking across sky, South to North, 1:00 o'clock high to 2 o'clock. Turned to yellow-orange color at 2:00 o'clock +1998-10-26,40.5866667,-122.3905556,Redding (A Couple Miles South Of),CA,circle,1,was watching my kit of birmingham rollers fly, then out the corner of my left eye I noticed something shinney, like a dule chrome, just +1998-10-26,40.5866667,-122.3905556,Redding,CA,oval,1,was watching kit of pigeons fly, saw out the corner of eye, noticed it and it was gone within a couple of seconds +1998-10-26,42.96,-78.4058333,Corfu (Darien/Pembroke/Alexander),NY,triangle,1800,A strange light was seen heading east. I followed it. I thought that I had lost it. I looked over to the left side of the road, and +1998-10-26,47.6063889,-122.3308333,Seattle,WA,fireball,3,FIREBALL CAME STRAIGHT DOWN FROM THE SKY, IT HAD A TAIL GOING STRAIGHT UP LASTED 2 TO 3 SECONDS AND DISAPPEARED. +1998-10-26,47.0075,-122.9080556,Tumwater (Driving N On I-5),WA,fireball,3,Large Blue Fireball with a tail flying in a northern direction. This object was not a typical falling star. The object than disappeare +1998-10-26,38.7522222,-121.2869444,Roseville,CA,fireball,15,small red fireball with long white tail, moving West at a very high speed parallel to the ground +1998-10-26,33.5091667,-111.8983333,Scottsdale,AZ,other,10,I heard a very loud noise like a jet engine on the next block. I looked in that direction (E-NE) and heard a second noise exactly the +1998-10-27,43.1413889,-95.1441667,Spencer,IA,fireball,4,Traveling north on US Highway 71 at approx. 2am on the north edge of Spencer. Saw blueish green fireball traveling west to east. Had r +1998-10-27,45.6388889,-122.6602778,Vancouver (Watching From Field At Barn),WA,fireball,15,Saw a large ball of light while at my barn in the evening. The sky was clear no rain, clouds. It sailed over my head due north. +1999-10-26,34.2011111,-118.5355556,Reseda,CA,sphere,7200,What looked like a star, appeared to be flashing multi-colors and oscillating. +1999-10-26,33.6411111,-117.9177778,Costa Mesa,CA,light,3600,Object was fairly still, however would make unusually sharp moves on occasions. +1999-10-26,32.7833333,-96.8,Dallas,TX,triangle,78,triangular object flying east with bright lights +1999-10-26,32.1572222,-94.3372222,Carthage,TX,triangle,7200,I was traveling west on Hwy 79 and there was a super-bright star in the sky with a light going up the back and two red lights on the si +1999-10-26,40.0488889,-74.5627778,Cookstown,NJ,cylinder,1800,the object was moving very slow flashing red and green lights other aircraft were moving going on there normal route i looked at +1999-10-26,35.4086111,-80.5797222,Concord (Near),NC,other,120,Objects travelling westward, bright lights revovling. +1999-10-26,34.4725,-81.8808333,Clinton,SC,triangle,240,The triangle was headed east and traveling at a steady speed until it got to some clouds and then it seemed to slow down and ease behin +1999-10-26,44.0247222,-88.5425,Oshkosh,WI,cylinder,7,On my way to work I was traveling south on highway 41 between Oshkosh and Fond Du Lac, Wi. I was watching a plane high in the air spray +1999-10-26,35.2269444,-80.8433333,Charlotte,NC,light,600,Approx. 6-8 jets in sky. @ bright shining objects like small stars standing still. As one jet moved toward them, one moved away at a mu +1999-10-26,42.7125,-76.4219444,Moravia,NY,flash,5400,Approximately 20 lights that sometimes flashed red and white were moving through the sky. They did not appear to be flying toward a c +1999-10-26,47.2530556,-122.4430556,Tacoma,WA,triangle,15,I saw a huge triangular object traveling at a high rate of speed while I was on my way to my evening shift at work +1999-10-26,28.0680556,-80.5605556,Melbourne Beach,FL,triangle,7200,watched multiple craft, turning, stopping, hovering and flying in formation and two craft landing in the ocean then disappearing. We ha +1999-10-26,34.1486111,-118.3955556,Studio City,CA,triangle,10,TRIANGLE CRAFT PASSED OVER HEAD GOING EAST TO WEST. TOTALLY SILENT. APPEARED TO BE A CIRCLE LIGHT IN EACH OF THE 3 CORNERS. NO FLASHING +1999-10-26,41.7958333,-87.9755556,Westmont,IL,oval,180,oval shaped huge object with orange running lights circling ship . moving very slow +1999-10-26,41.85,-87.65,Chicago (Southwest Suburbs Of),IL,unknown,180,In a suburb of Chicago-Driving north on Harlem Ave I saw a huge object. There were very bright lights around the bottom and a large bri +1999-10-26,31.3463889,-89.26,Petal,MS,triangle,180,Object was seen heading north just east of Petal, Ms at appox 1500ft It was the size of a DC-10...It hovered , and moved slowly to the +1999-10-26,31.6938889,-89.1305556,Laurel,MS,oval,180,bright object moving slowly across sky .Too bright to be airplane and no red or green wing lights +2000-10-26,33.5091667,-111.8983333,Scottsdale,AZ,changing,300,I always suspected people who saw things are totally crazy. I'm an author and thank God sain and not on drugs. I couldn't sleep last ni +2000-10-26,30.1763889,-85.8055556,Panama City Beach,FL,other,45,Unusual Military Movements Off of Western Shore of Shell Island Panama City Beach +2000-10-26,39.6447222,-94.7397222,Agency,MO,other,60,Reflective object see on ground by pilot. +2000-10-26,33.3702778,-112.5830556,Buckeye,AZ,light,2400,THERE WERE 3 CRAFT....ONE SEEMED TO BE IN THE LEAD WITH THE OTHER TWO SLIGHTLY BEHIND IT HORIZONTAL TO EACH OTHER...WE COULD NOT MAKE O +2000-10-26,30.605,-93.2316667,Longville,LA,changing,300,AS WE WATCHED THE RED LIGHT MOVING IT SUDDENLY TURNED TO A FIREBALL, THEN SEPERATED INTO TWO RED LIGHTS THAT FLEW IN 2 DIFFERENT DIRECT +2000-10-26,39.7294444,-104.8313889,Aurora,CO,triangle,600,Triangular craft (two footbal fields in size) +2000-10-26,40.4233333,-104.7086111,Greeley,CO,triangle,10,It was large, moved slowly and was silent. +2000-10-26,61.2180556,-149.9002778,Anchorage,AK,light,28800,Missing time ........ Why is it 7:45 am , when I just looked at the clock and it was 1:15 am a second ago? +2001-10-26,38.6580556,-77.25,Woodbridge,VA,rectangle,28800,Two red lights, flying in a circular pattern with several repetitions over a period of at least a half hour. +2001-10-26,30.3713889,-94.3122222,Kountze,TX,light,2400,UFO seen by 3 over Texas +2001-10-26,39.0180556,-77.2088889,Potomac,MD,light,60,STEADY RED LIGHT GOING EAST TO WEST +2001-10-26,35.4713889,-93.4663889,Clarksville,AR,cylinder,60,Two of us observed a shiny, silent, cylindrical craft at 5000 feet or less on October 26. +2001-10-26,36.5822222,-87.0655556,Adams,TN,disk,120,Silver disc the width of the jet stream of a jet appeared between two jets heading for each other. +2001-10-26,36.1538889,-95.9925,Tulsa,OK,light,180,2 bright lights with sparkling trails moving in figure 8 pattern +2001-10-26,34.1808333,-118.3080556,Burbank,CA,other,5,Fireball over San Fernando Valley, CA +2001-10-26,34.0194444,-118.4902778,Santa Monica,CA,light,60,something with lights giving off sparks and then disappeared into the night +2002-10-26,34.1205556,-84.0044444,Buford,GA,flash,20,Sky fire burning contrail. +2002-10-26,37.2708333,-79.9416667,Roanoke,VA,other,600,Jackrock shaped object seen in broad daylight +2002-10-26,33.4483333,-112.0733333,Phoenix,AZ,cigar,2,Photo of UFO in Phoenix Arizona, +2002-10-26,34.1161111,-118.1494444,South Pasadena,CA,other,60,It was blue, crescent-shaped, and wobbling from side to side. +2002-10-26,41.3838889,-73.9461111,Garrison,NY,light,600,Possible UFO sighting in Garrison New York +2003-10-26,40.0213889,-122.0991667,Los Molinos,CA,triangle,10,A large "V" shaped object passed overhead, it flipped or banked, then disappeared. +2003-10-26,35.1302778,-96.7755556,Maud,OK,unknown,180,object moved from south to north but had an unusual vertical bobbing action to it. +2003-10-26,33.1030556,-96.6702778,Allen,TX,unknown,120,this afternoon while sitting outside on my patio, I saw it again, last week I saw it and now again!! it is like the shape of a boomeran +2003-10-26,44.5236111,-89.5744444,Stevens Point,WI,circle,300,I observed a circular yellow-orange-red flashing light go above the tree line straight east of Wal-mart at Hwy 10 and Brilowski Road +2003-10-26,39.9625,-76.7280556,York,PA,triangle,60,out side with sons, 3 large trangle shape, each with 3 red trangle shapes under body. made no sounds, moved slow going east to west. +2003-10-26,40.8825,-74.3819444,Lake Hiawatha,NJ,light,5,A flying yellow silent explosion-esque shape, faster than any plane I've seen. +2003-10-26,38.5922222,-89.9111111,O'fallon,IL,other,180,I am now a believer in UFO's because of my experience with a Green object last night. +2003-10-26,38.1494444,-79.0719444,Staunton,VA,cigar,5400,Cigar w/ two lights (--). Staunton, VA +2004-10-26,44.1002778,-70.2152778,Lewiston,ME,light,7200,A light in the sky similiar to Haley's comet during sunset 10/26/04 Tuesday evening around 18:00 hours ((NUFORC Note: Star?? PD)) +2004-10-26,42.9336111,-72.2786111,Keene,NH,flash,5,Looked like plane or scud missle shot down. +2004-10-26,42.7325,-84.5555556,Lansing,MI,other,15,____________ \__________ it looked like this formation with about 9 lights... it went very fast was pretty close down to the earth. My +2004-10-26,41.5922222,-119.8594444,Vya,NV,fireball,600,Multiple Fireballs in the sky +2005-10-26,37.7397222,-121.4241667,Tracy,CA,oval,900,it was an oval shape brighty lit no sound blinking lights underneath +2005-10-26,37.6922222,-97.3372222,Wichita,KS,light,15,Light near Witchita, KS +2005-10-26,28.5380556,-81.3794444,Orlando,FL,cigar,300,Cigar shaped bright aluminum craft appeared in the north west sky at an elevation of about 35 degrees. +2005-10-26,38.6630556,-90.5769444,Chesterfield,MO,light,10,Bright-light object ascended rapidly through clouds which were about 5ꯠ ft up +2005-10-26,32.9477778,-112.7161111,Gila Bend,AZ,light,180,6 Luces ambar en el desierto de Arizona entre Ajo y Gila Bend por aproximadamente 3 minutos +2005-10-26,33.5966667,-83.8602778,Covington,GA,triangle,900,bright spot light and a triangular object +2005-10-26,38.2933333,-83.6588889,Hillsboro,KY,changing,1800,Extremely bright white object floating in sky with light rays radiating in all directions and changing shape several times. +2005-10-26,37.3394444,-121.8938889,San Jose,CA,other,300,multiple reddish lights moving quickly through apartment complex in san jose +2005-10-26,32.7558333,-111.5541667,Eloy,AZ,formation,120,Formation Lights southwest of phoenix area +2005-10-26,37.775,-122.4183333,San Francisco,CA,light,15,VERY BRIGHT, warm white light and pretty large, low on the Western horizon as if it was a prominent planet about to set. +2005-10-26,33.2558333,-116.3741667,Borrego Springs,CA,triangle,240,four orange/yellow balls forming two sides of a triangle +2006-10-26,35.4675,-97.5161111,Oklahoma City,OK,light,5,A bright stationary light similiar to Venus that lasted about 5 seconds, then disapeared as if behind clouds. +2006-10-26,40.0066667,-75.2858333,Ardmore,PA,light,2,Bright light speeds by +2006-10-26,28.6608333,-81.3658333,Altamonte Springs,FL,cigar,300,firey orange, vertical cigar shaped craft +2006-10-26,28.5380556,-81.3794444,Orlando,FL,changing,20,fast moving bright object +2006-10-26,38.1983333,-120.0083333,Strawberry,CA,triangle,60,Black Traingler UFO floating in mountain sky, later very odd flickering like morris code close by. +2006-10-26,40.0377778,-76.3058333,Lancaster (Southwest),PA,triangle,300,3 Evenly spaced lights dropped in front of car as if to crash/land, on roadway, then craft turned and disappeared +2006-10-26,42.3508333,-73.8033333,Coxsackie,NY,light,1800,uknown hovering lit up object observed in sky over Coxsackie ,New york +2006-10-26,40.6416667,-74.8363889,Lebanon,NJ,disk,10,UFO over traffic on I-78 in New Jersey +2007-10-26,46.7833333,-92.1063889,Duluth,MN,oval,1800,An oval that had a green glow and blinking light. +2007-10-26,44.7122222,-68.4533333,Otis,ME,oval,2700,Very bright oval shaped object silently moving up and down. +2007-10-26,45.7811111,-122.5322222,Battle Ground,WA,fireball,4,Fireball observed over Battle Ground, WA +2007-10-26,47.6063889,-122.3308333,Seattle,WA,formation,5,Bright object falling from sky towards Seattle airport 10/26/07 +2007-10-26,43.0116667,-88.2313889,Waukesha,WI,light,30,Dancing, circulating lights observed in Waukesha neighborhood. +2007-10-26,36.1658333,-86.7844444,Nashville,TN,formation,30,formation of 5-6 Ufos fly directly over Nashville. +2007-10-26,28.1458333,-82.7569444,Tarpon Springs,FL,light,5,Small, white, fast moving light in sky for 5 seconds. +2007-10-26,29.4238889,-98.4933333,San Antonio,TX,fireball,60,blue fire ball shoots down from sky and stops in mid air +2007-10-26,35.0844444,-106.6505556,Albuquerque,NM,light,180,Witnessed 6-7 jet aircraft following small orange light which became extremely bright and shot off +2007-10-26,40.0333333,-83.1583333,Hilliard,OH,chevron,1200,The object was flying about 300 feet above my home around 11:45 PM on the night of Friday October twenty-six, 2007. The object was +2008-10-26,32.7833333,-96.8,Dallas,TX,formation,360,Midnight 10/27/08 Dallas,TX. Two formations - semicircular & v-shaped. 1st moved from north to south. 2nd moved from east to west. +2008-10-26,34.6086111,-98.39,Lawton,OK,unknown,10,Two sightings - 4 UFO's - 10 minutes apart - It was amazing!!! +2008-10-26,40.5852778,-105.0838889,Fort Collins,CO,unknown,20,Object sited near Fort Collins, CO +2008-10-26,44.1916667,-88.6238889,Larsen,WI,light,240,Vast moving bright light traveling west to east at approximately 4 + mach with no sound. +2008-10-26,47.7544444,-122.1622222,Woodinville,WA,light,60,Possible pair of satelites, but I wanted to list it here in case somebody saw more. I walked outside and looked to the south and obser +2008-10-26,45.4983333,-122.4302778,Gresham,OR,formation,4,I stepped onto my back balcony and a formation appeared in my view straight ahead basically looking north,,they were almost the size as +2008-10-26,33.4483333,-112.0733333,Phoenix,AZ,triangle,1800,two craft objects seen, one horizontal in shape, the other triangular. And some flashing red orb shaped lights in the background +2008-10-26,39.6088889,-84.0077778,Spring Valley,OH,diamond,240,very bright diamond shape light hovered 100 feet in front of me near Spring Valley Ohio +2008-10-26,38.2008333,-77.5894444,Spotsylvania,VA,fireball,3600,strange lights moving(communicating?) rapidly +2008-10-26,44.2727778,-121.1727778,Redmond,OR,triangle,10,Looked like three stars traveling together in unison, until it was directly overhead. +2008-10-26,32.7919444,-115.5622222,El Centro,CA,cylinder,300,Dark illuminated object landed on my neighbors roof!!! +2008-10-26,33.8302778,-116.5444444,Palm Springs,CA,disk,30,4 round disc flying over palm springs on the night of oct. 26, 2008 +2008-10-26,38.6272222,-90.1977778,St. Louis,MO,triangle,37800,Metallic object, square/triangular shape, with blinking lights. +2009-10-26,47.6063889,-122.3308333,Seattle,WA,unknown,2400,Two craft hovering in the sky above north seattle +2009-10-26,43.0966667,-71.4655556,Hooksett,NH,triangle,1200,Black Triangle gliding over RT 93 +2009-10-26,36.175,-115.1363889,Las Vegas,NV,oval,720,On October 26, 2009 I was out on my front porch area watching an inordinate number of aircraft departing McCarran International Airport +2009-10-26,41.2391667,-81.3461111,Streetsboro,OH,triangle,120,On 10/26/2009 saw flat, triangular silver colored aircraft making loud motor noise flying low over my house very near Ohio Turnpike +2009-10-26,35.7719444,-78.6388889,Raleigh,NC,light,300,20 flickering red lights in imperfect succession, floating up and vanishing into the clouds. +2009-10-26,40.3063889,-121.2308333,Chester,CA,light,120,Yellow orb, no noise, disappered after 2 minutes. +2009-10-26,39.9116667,-75.2775,Collingdale,PA,light,2,Bright white fast flashing light turned to solid white light then arched off fast toward Philadelphia +2009-10-26,40.6955556,-73.3261111,Babylon,NY,fireball,5,The object that I witnessed reminded me of when I saw Halley's Comet, but at a very low point of the night sky. +2010-10-26,47.6588889,-117.425,Spokane,WA,unknown,180,craft seen hovering below tree line no noise and had bright white light and many small red lights on top +2010-10-26,32.2216667,-110.9258333,Tucson,AZ,circle,1200,TUCSON, ARIZONA +2010-10-26,41.6986111,-88.0683333,Bolingbrook,IL,rectangle,1200,Bright light. +2010-10-26,37.5058333,-77.6494444,Midlothian,VA,light,900,Very large yellow light, becoming three small lights, moving back and forth across the sky, then meeting with more. +2010-10-26,29.6991667,-91.2066667,Morgan City,LA,fireball,120,Orange object in sky over Patterson or Morgan City area +2010-10-26,33.9202778,-80.3416667,Sumter,SC,triangle,120,Triangular shaped object illuminating constant bright light over sumter, sc +2010-10-26,38.6272222,-90.1977778,St. Louis,MO,chevron,15,V-shaped perfect formation of lights traveling over St Louis, heading eastward, soundlessly. +2011-10-26,39.9611111,-82.9988889,Columbus,OH,other,600,Dark colored object moving fast. +2011-10-26,27.9472222,-82.4586111,Tampa,FL,triangle,120,Bright hovering white light and triangle craft seen over Tampa Bay. +2011-10-26,34.1422222,-87.9886111,Hamilton,AL,diamond,300,Orange Diamond shaped object +2011-10-26,34.1422222,-87.9886111,Hamilton,AL,light,180,Single bright orange light, slow moving, solid flight path, no loss of altitude noticeable, no sound +2011-10-26,41.7758333,-72.5219444,Manchester,CT,flash,3,A blue flash in the sky that created a power outage. +2011-10-26,35.5363889,-82.6930556,Candler,NC,oval,120,Multiple/Re-occurring U.F.O. Sightings in Candler, NC +2011-10-26,44.0805556,-103.2305556,Rapid City,SD,triangle,5,flying triangle Rapid City South Dakota about 15 minutes after Report +2012-10-26,33.9191667,-118.4155556,El Segundo,CA,light,2700,3 UFOs flying over LAX airport. +2012-10-26,38.2972222,-122.2844444,Napa,CA,circle,30,Two craft side by side, from north to south pulsing red then green circular light, 4 pulses total. +2012-10-26,41.4988889,-72.9011111,Cheshire,CT,other,19,Small UFO over garden, daylight, 120 feet away, 19 second vid, Cheshire, CT, Oct 2012 +2012-10-26,41.9413889,-79.1352778,Russell,PA,disk,180,((NUFORC Note: No information included in report form. Hoax?? PD)) +2012-10-26,36.175,-115.1363889,Las Vegas,NV,sphere,6,Saw a white translucent sphere shooting across to sky heading south east. +2012-10-26,41.3541667,-71.9669444,Mystic,CT,triangle,600,Triangular orange lights hovering over Mystic, CT. +2012-10-26,44.1719444,-72.6513889,Northfield Falls,VT,sphere,120,Bright orange sphere flew over a small village in Central Vermont, witnessed by three citizens. +2012-10-26,43.105,-88.3419444,Hartland,WI,oval,3600,UFO Sighting In Hartland Wisconsin October 26, 2012. +2012-10-26,43.9186111,-69.8016667,Woolwich,ME,circle,120,Bright light going across the sky then just disappeared +2012-10-26,61.3213889,-149.5677778,Eagle River,AK,light,120,Bright, orange stationary object flickering in night sky; pieces came off object and fell towards ground. +2013-10-26,34.0522222,-118.2427778,Los Angeles,CA,rectangle,15,White rectangular rolling object that seemed to billow or create clouds as it flew by. Clouds did not dissipate. +2013-10-26,30.3863889,-84.7980556,Hosford,FL,light,30,Lights. +2013-10-26,21.3069444,-157.8583333,Honolulu,HI,flash,3600,Lightning without thunder and flickering that lightens the black sky to blue. +2013-10-26,42.7261111,-71.1913889,Methuen,MA,light,180,Orange light in Methuen Ma gone like it was fake and it was a vision. This mess peoples head. postreros tiempos end times people. +2013-10-26,39.9852778,-104.82,Brighton,CO,formation,240,3 lights in triangle formation move north +2013-10-26,40.1672222,-105.1013889,Longmont,CO,triangle,150,we were relaxing in our hot tub and whitnesed a boomarang shaped object that seemed to be camo. looked like a cloud fly by after about +2013-10-26,47.6588889,-117.425,Spokane,WA,rectangle,60,Box with wings flying low and fast. +2013-10-26,33.5386111,-112.1852778,Glendale,AZ,fireball,600,Fireball-like objects above ASU West. +2013-10-26,34.1577778,-118.6375,Calabasas,CA,other,300,Aircraft movements and lights were unlike any known conventionally powered aircraft +2013-10-26,33.9608333,-83.3780556,Athens,GA,light,300,Bright at first and then dim. Turned to fast to be a airplane. +2013-10-26,39.3141667,-77.6280556,Brunswick,MD,triangle,180,Saw weirrd 3 lighted triangle craft aprox 7:00 pm over Brunswick Maryland last night.. Was driving! Looked like it was compied by civil +2013-10-26,34.1658333,-81.35,Chapin,SC,fireball,180,Orange ball in sky. +2013-10-26,42.5847222,-87.8211111,Kenosha,WI,light,600,two glowing white lights moving back and forth in sky +2013-10-26,28.0183333,-82.1130556,Plant City,FL,circle,60,Bright orange circular object with red lights around it +2013-10-26,38.2322222,-90.5627778,Hillsboro,MO,light,180,Bright light moving across the sky and disappearing (not a shooting star). +2013-10-26,42.8352778,-89.0675,Edgerton,WI,rectangle,300,Twin vertical, bluish light that pulsed to red then glowed to yellow. +2013-10-26,36.323055600000004,-86.7133333,Goodlettsville,TN,flash,180,As many as forty bright red and yellow lights hover in the sky moving slowly and independently before fading away. +2013-10-26,44.7791667,-93.3361111,Savage,MN,triangle,120,Triangular object, able to zig-zag in-flight without changing object orientation; emitted a beam and disappeared. +2013-10-26,36.4736111,-93.7672222,Beaver,AR,circle,30,Orange lights moving slow.start out in straight vertical line.they scatter then disappear in the clouds. They were low and visible and +2013-10-26,26.5625,-81.9497222,Cape Coral,FL,fireball,120,Glowing orange orb over Southwest Florida +2013-10-26,30.4380556,-84.2808333,Tallahassee,FL,fireball,600,20-30 orange lights floating silently over I-10 in Tallahassee Florida heading west +2013-10-26,26.6155556,-80.0572222,Lake Worth (Southern Blvd.; Haverhill Exit),FL,disk,15,Dark saucer with bright blue lights landing next to souther blvd in florida +2013-10-26,28.0338889,-82.6652778,Oldsmar,FL,formation,120,Five orange lights in Oldsmar, fl. Countryway area. 10/26/13 10:10pm +2013-10-26,25.7902778,-80.1302778,Miami Beach,FL,triangle,600,Dim star like object freely flying and joining with others +2013-10-26,35.3841667,-97.7241667,Mustang,OK,fireball,600,Fireballs over Mustang, OK. +1974-10-27,37.8036111,-109.1333333,Eastland,UT,sphere,3600,At the time this was happening, I told myself that no one will ever convince me that this did not happen, ever! +1975-10-28,46.9086111,-67.8263889,Limestone,ME,light,1200,Loring AFB 1975 Sighting +1990-10-27,41.1116667,-114.9636111,Wells (30 Miles North Of),NV,cylinder,15,Cylinder Shaped w/5 Amber Lights crosses Nevada skyline (E-W) in 20 seconds silently around 9pm. +1993-10-27,42.7461111,-78.9033333,Wanakah,NY,triangle,7,A Sighting that left us running +1998-10-27,35.9669444,-83.1877778,Newport,TN,circle,1,While traveling East on I40, between Newport, Tn. and Ashville, Nc. I saw an object streak across the sky. The weather was clear. The s +1999-10-27,39.0997222,-94.5783333,Kansas City (Over The Metro Area),MO,circle,900,I saw what appeared to be a moving star, but stopped andchanged speeds noticeably, and finally direction. +1999-10-27,30.2669444,-97.7427778,Austin,TX,oval,300,A man and his two kids see a clear UFO less than a mile away during an autumn evening in Austin, Texas. Dazed deer present. +1999-10-27,32.2216667,-110.9258333,Tucson,AZ,fireball,10,blue gree ball spotted over house from first witness, second witness saw only a foreball slowly descending +1999-10-27,35.9605556,-83.9208333,Knoxville,TN,unknown,40,Unusual lights in sky moving and fading out. +2000-10-27,29.4238889,-98.4933333,San Antonio,TX,light,3600,Could someone please tell us what is going on over San Antonio Texas ??? Several times during the month of september and october we hav +2000-10-27,33.4483333,-112.0733333,Phoenix,AZ,fireball,30,STRANGE RED BALLS IN THE SKY OVER PHOENIX +2000-10-27,47.6063889,-122.3308333,Seattle,WA,oval,30,Shiny gold/black large balloon like object travelling up Puget Sound WA w/ consistent altitude +2001-10-27,46.5083333,-99.7708333,Napoleon,ND,light,600,Bright star like light doing loops, circles, then darting off. +2001-10-27,46.5083333,-99.7708333,Napoleon,ND,light,600,Looked like a satelite, but made turns and loops +2001-10-27,40.8086111,-82.1069444,Reedsburg,OH,triangle,600,Saw a big triangle hovering silently over busy state rte. and then after It "watched" traffic for a bit, it sped off to the southwest F +2001-10-27,38.4022222,-122.8227778,Sebastopol,CA,disk,600,Corroborating my friend's UFO siting - it really happened. +2001-10-27,38.4022222,-122.8227778,Sebastopol,CA,disk,600,Our car began to stall and the craft showed up and was hovering over our car all the way home. then hovered over our house at a ang +2001-10-27,29.7630556,-95.3630556,Houston,TX,light,10,Light at great speed ,no sound. +2002-10-27,38.9805556,-76.3147222,Stevensville,MD,light,3600,Bright stationary lights +2002-10-27,34.4208333,-119.6972222,Santa Barbara,CA,disk,600,Single saucer shaped object in sky, just before sunset. Strange energy field emitted, making it difficult to see clearly. +2003-10-27,38.3397222,-122.7,Rohnert Park,CA,other,120,Horseshoe flat disklike craft with oval shaped white strobing head lamps with pale yellow lights each outer edge. +2003-10-27,34.6719444,-92.9986111,Hot Springs Village,AR,triangle,1800,On October 27, 2003 was heading home from seeing friends in Hot Springs Village which is 8 miles Northeast of Hot Springs, AR. The eve +2004-10-27,38.4405556,-122.7133333,Santa Rosa,CA,light,900,Star-like light in the Eastern sky that came & went - Santa Rosa, California +2004-10-27,32.8794444,-111.7566667,Casa Grande,AZ,cigar,180,Saw a UFO at 10ꯠ feet 2 Miles south of I-8 & I-10 near Casa Grande, Arizona. +2004-10-27,44.4758333,-73.2125,Burlington,VT,changing,5,three sightings, one time very close, second time boomerang shape very high up, third time triangle shape two witnesses, burlington vt +2004-10-27,40.5983333,-124.1561111,Fortuna,CA,fireball,180,My wife and I saw a bright red-orange apparently burning object ejecting material as it transited110 degrees of sky. +2004-10-27,39.1458333,-121.5902778,Marysville,CA,circle,180,Strange round lights changing colors in the dark sky on the same day of the Lunar Eclipse. +2004-10-27,37.775,-122.4183333,San Francisco,CA,sphere,0.5,UFO over San Francisco during eclipse 10/26/04 +2004-10-27,40.7583333,-82.5155556,Mansfield,OH,light,1800,Many lights of different brightness combine, get brighter and disperse. +2004-10-27,25.9794444,-80.2027778,Miami Gardens,FL,chevron,10,Boomerrang-shaped gray gliding metal looking object moving as fast as a small jet had no sound or lights. +2004-10-27,40.7141667,-74.0063889,New York City (Brooklyn),NY,triangle,15,The object had no lights, made no sound and was huge. +2004-10-27,40.7141667,-74.0063889,New York City,NY,chevron,120,Night of the lunar eclipse, we saw in the sky two gray v-shaped objects flying side-by-side, no lights, no sound. +2004-10-27,27.9091667,-82.7875,Largo,FL,triangle,60,V shaped light formation traveling in a south-west direction +2004-10-27,42.4405556,-76.4969444,Ithaca,NY,chevron,10,Two differnet objects, one orb, one V shape, night of lunar eclipse. +2004-10-27,27.9472222,-82.4586111,Tampa,FL,triangle,4,Triangular lights observed during total lunar eclipse. +2004-10-27,40.7452778,-73.9058333,Woodside (Queens),NY,chevron,3,2 Chevrons flying in perfect formation during lunar eclipse. +2004-10-27,42.4405556,-76.4969444,Ithaca,NY,triangle,60,The object was white and in the shape of a V-- it was very large, and moved fast across the sky +2004-10-27,43.1547222,-77.6158333,Rochester,NY,chevron,60,Huge low flying black chevron shaped craft sighted on the night of the lunar eclipse. +2004-10-27,42.9469444,-76.4294444,Skaneateles,NY,triangle,4,Triangular object with white lights and 3 smaller chasing lights +2004-10-27,37.0297222,-76.3455556,Hampton,VA,light,6,While observing the lunar eclipse from the Courtyard Marriott parking lot (off of Coliseum Dr.) moments ago, I had my first UFO sightin +2004-10-27,43.1547222,-77.6158333,Rochester,NY,circle,6,Round silent object zooms across horizon +2004-10-27,42.7958333,-77.8172222,Geneseo,NY,light,15,dull red lights in 3 half circles over Geneseo, NY during lunar eclipse of 2004 (red moon) +2005-10-27,42.0569444,-94.7286111,Glidden,IA,triangle,18000,((NUFORC Note: PSmall blinking color changing moving lights. +2005-10-27,37.4852778,-122.2352778,Redwood City,CA,light,300,8:14 a,m, My family apparently saw a scene of two bright white objects destroyed by a green object. +2005-10-27,38.8113889,-89.9530556,Edwardsville,IL,changing,3600,Bright white balls over Edwardsville, Iillinois. ((NUFORC Note: Possible advertising lights. PD)) +2005-10-27,37.8783333,-100.6763889,Pierceville,KS,unknown,30,I SAW A LARGE FALLING STAR TYPE OBJECT WITH A RAINBOW COLORED TAIL SOUTHEAST OF GARDEN CITY KANSAS. +2005-10-27,34.7538889,-77.4305556,Jacksonville,NC,disk,1800,Observed bright disc shaped object with three red pulsating lights on the bottom for about 30 minutes. +2006-10-27,43.0733333,-75.2880556,New Hartford,NY,unknown,60,Odd and fast, unlike any aircraft I have seen in this area. +2006-10-27,29.4238889,-98.4933333,San Antonio,TX,light,120,red plasma ball of light with a helicopter in the vicinity. ((NUFORC Note: Possible contrail, illuminated by setting Sun?? PD)) +2006-10-27,44.7825,-69.3838889,Pittsfield,ME,light,30,Was walking dog with my fiance and an airliner was passing overhead. We were looking at it and its flashing lights, which is a common s +2006-10-27,38.0608333,-97.9294444,Hutchinson,KS,triangle,6,V-Shaped craft moving south over Home in Hutchinson Kansas. +2006-10-27,38.0608333,-97.9294444,Hutchinson,KS,triangle,7,Big, silent V-shaped craft with about 8 circle shaped very dark dimmed lights or windows fly over home. +2006-10-27,26.3097222,-80.2375,Parkland,FL,flash,180,Flashing yellowish light, low in the sky over northern Broward County Florida +2006-10-27,33.4483333,-112.0733333,Phoenix,AZ,triangle,2,Incredibly fast and distant large object. 3 Lights in a row on the bottom. +2007-10-27,29.5072222,-95.0947222,League City,TX,oval,420,((HOAX??)) Riding down the road and weird object flying around road and then creature jumps out on road. +2007-10-27,32.9344444,-97.2513889,Keller,TX,oval,300,high altitude disk shaped craft moved North to South and hovered a few times for several seconds. +2007-10-27,32.7152778,-117.1563889,San Diego,CA,light,5,4 white lights in a v-shape flying above the clouds across the sky in about 5 seconds. +2007-10-27,27.9472222,-82.4586111,Tampa,FL,disk,600,Flashing disk shaped object at St. Petersberg Tampa +2007-10-27,35.6869444,-105.9372222,Santa Fe,NM,flash,300,Many flashing lights in the eastern night sky above Santa Fe +2008-10-27,39.6136111,-86.1066667,Greenwood,IN,light,30,a red light floated across the sky that looked like a bright red star, but flew like an airplane +2008-10-27,47.9791667,-122.2008333,Everett,WA,oval,10,Bright white oval craft +2008-10-27,47.5302778,-122.0313889,Issaquah,WA,fireball,2,Fire Ball seen over lake sammamish +2008-10-27,34.5361111,-117.2902778,Victorville,CA,light,15,Fast moving pinpoint of light moving and maneuvering unlike any aircraft known +2008-10-27,29.2947222,-95.2786111,Liverpool,TX,circle,3600,Three large round objects lined up along Hwy 35 and an identical object followed me home. +2008-10-27,33.6613889,-95.3855556,Blossom,TX,sphere,1200,Sphere object flashing three colors and moving slow from side to side in a bright white. 500 Lights On Object0: Yes +2008-10-27,28.0833333,-80.6083333,Melbourne,FL,flash,60,A flash of blue object falling diagonally from east to west downward approximately 500 yards from me. +2008-10-27,28.5380556,-81.3794444,Orlando,FL,light,3,Single bright white light moving at very high rate of speed at relatively low altitude. +2008-10-27,26.0027778,-80.2241667,Pembroke Pines,FL,light,1800,Thanksgiving, two UFO'S over West Broward, Weston, Pembroke Pines skies Nov. 27, 2008. +2008-10-27,44.0838889,-93.2258333,Owatonna,MN,light,120,2 Star Like Objects slowly start to move across the sky then vanish +2008-10-27,32.4419444,-97.7938889,Granbury,TX,disk,4,One saucer in the sky, late at night. +2008-10-27,32.4486111,-99.7327778,Abilene,TX,light,120,I saw a bright white light(not blinking), not any type of aircraft I know of...hence, previous experience working on flight lines.. +2009-10-27,44.5438889,-73.1483333,Colchester,VT,circle,300,It was about 1:04 in the morning. I was getting home from the late shift, and near the northern sky, I thought I saw a plane with v +2009-10-27,36.0397222,-114.9811111,Henderson,NV,circle,600,flying object in the sky +2009-10-27,33.2147222,-97.1327778,Denton,TX,unknown,20,Green light hovering of I35W denton texas hovered moved right to left very fast then went south suddenly +2009-10-27,33.4483333,-112.0733333,Phoenix,AZ,light,2700,Werid blue light in the sky, for 45 mins disappearing, reappearing, werid moves,very fast,only could be seen at corner of eye +2009-10-27,26.2030556,-98.2297222,Mcallen,TX,other,240,They looked like planes without wings, emitting a high concentration of light and moving extremely slowly. +2009-10-27,26.9338889,-80.0944444,Jupiter,FL,light,180,The object came from the north. It looked like a bright light high in the sky. Then it stopped hovered breifly. +2009-10-27,40.2169444,-74.7433333,Trenton,NJ,formation,7,Made no sound and flew right above our heads in a straight line on a clear night when the only things visible were the moon and stars. +2010-10-27,33.2147222,-97.1327778,Denton,TX,circle,120,I initially heard a whhoosh sound for quite awhile without witnessing anything. +2010-10-27,40.2794444,-75.3875,Harleysville,PA,light,10,I saw a red light flying through the sky at a very high speed. My first thought was it can't be a plane because it was not blinking, an +2010-10-27,37.5175,-76.9791667,New Kent County,VA,disk,180,Ojects over the trees on interstate 64 +2010-10-27,42.7325,-84.5555556,Lansing,MI,fireball,3,white/green fireball falling from the sky in northern michigan +2010-10-27,38.8002778,-90.6263889,St. Peters,MO,light,300,I saw a very low light, definitely not a plane as there was only a bright white light like a star, no flashing red lights and no noise. +2010-10-27,35.6008333,-82.5541667,Asheville,NC,light,1800,Two gaslike lights moving in circular manner in southern sky +2010-10-27,40.7977778,-85.8205556,Wabash,IN,light,240,Fast moving light..no sound.. disappeared right before our eyes. +2010-10-27,43.2136111,-77.9394444,Brockport,NY,triangle,1800,triangular ufo with 30 or more lights disappering and reappering in differant spots +2010-10-27,28.4055556,-80.605,Cape Canaveral,FL,fireball,180,Large reddish orange fireball very visible in Cape Canaveral sky around 9pm on 10-27-10 +2010-10-27,36.3358333,-94.4605556,Decatur,AR,light,1200,object was just a spherical very bright white light with no other blinking lights +2010-10-27,34.2255556,-77.945,Wilmington,NC,rectangle,120,Large Black Rectangle - 2 white lights - 1 red slow pulsing light +2010-10-27,35.0463889,-81.9819444,Boiling Springs,SC,oval,30,the object was flying low but no noise was coming from it with lights in a circular pattern. +2010-10-27,39.6955556,-78.88,Mt. Savage,MD,oval,3600,changing shades of green and blue. kind o moving in a circular motion. ((NUFORC Note: Twinkling stars?? PD)) +2011-10-27,32.3861111,-94.8755556,Kilgore,TX,light,120,It appeared as a light in the sky such as a star but then it took off very fast. +2011-10-27,45.5236111,-122.675,Portland,OR,unknown,300,Was up late Wednesday night, early Thursday morning, and went out to the alley behind my apartment in Northwest Portland (Around NW 23r +2011-10-27,36.7591667,-79.9905556,Bassett,VA,light,1200,Very Bright Gold/Bronze disc shaped object moving over VA +2011-10-27,33.2097222,-87.5691667,Tuscaloosa,AL,circle,60,block dot +2011-10-27,39.1961111,-121.19,Penn Valley,CA,circle,10800,2-5 small white light ships fly around in a circular pattern every night for hours and hours also forming triangles. +2011-10-27,41.0530556,-82.7263889,Willard,OH,triangle,1200,Triangle shaped craft flying in circles, then landed in woods and lit up an area appx 200 yards +2011-10-27,35.0844444,-106.6505556,Albuquerque,NM,triangle,2,Fast, quiet and flying low over Albuquerque, NM +2011-10-27,44.6688889,-90.1716667,Marshfield,WI,triangle,60,Wisconsin, Triangular, 3 red lights, no sound +2011-10-27,38.6272222,-90.1977778,St. Louis,MO,unknown,3,World Series Game 6 in St Louis on 10/27 @10:18pm CST Light 'Flying' rear of blimp - unknown +2011-10-27,43.073055600000004,-89.4011111,Madison,WI,triangle,7,Triangular craft over Madison, WI +2012-10-27,61.2180556,-149.9002778,Anchorage,AK,triangle,1800,Flashing lights, triangular. Star sized, clear night, 2 witnesses. +2012-10-27,40.2736111,-76.8847222,Harrisburg,PA,fireball,120,Several (15-25), bright, fiery looking objects moving in straight line across the sky. +2012-10-27,41.4730556,-87.0611111,Valparaiso,IN,chevron,240,Black chevron shaped aircraft. +2012-10-27,27.4986111,-82.575,Bradenton,FL,fireball,7,3-6 a.m., was a red-orange-sunlike round sphere go by, then up, then into field. I was scared to go in field? +2012-10-27,41.85,-87.65,Chicago (1/2 Hour Out Of),IL,light,120,Bright Light @ Great Speed +2012-10-27,41.8661111,-88.1069444,Wheaton,IL,sphere,300,Orange fly object over Wheaton, IL. +2012-10-27,39.395,-107.0897222,El Jebel,CO,fireball,300,Three fireballs in a inverted trianglar formation sited over Crown Mtn Pk, in El Jebel , CO at 20;15 10/27/12. +2012-10-27,40.9502778,-72.8430556,Wading River,NY,fireball,60,I saw a fireball go across the night sky from east to west; very fast, no noise, no trail. +2012-10-27,38.4405556,-122.7133333,Santa Rosa,CA,chevron,1800,Chevron Craft Seen over Sonoma County 10/27/12 @ 9pm +2012-10-27,39.9241667,-83.8088889,Springfield,OH,light,3600,12 to 15 Orange, red lights over Spfld.Ohio confuse onlookers Sat. 27 2012 +2012-10-27,38.3566667,-121.9866667,Vacaville,CA,other,8,No sound from greenish/white light shooting very close above tree line over neighbors house in vacaville ca. +2012-10-27,44.7908333,-67.1761111,Whiting,ME,circle,600,Four red circular lights traveling silently. +2012-10-27,39.5588889,-84.3041667,Franklin,OH,circle,180,Two large red lights over franklin ohio moving then vanished. +2012-10-27,41.6638889,-83.5552778,Toledo,OH,sphere,2700,Orbs in a circle and star like objects +2012-10-27,39.9241667,-83.8088889,Springfield,OH,circle,2700,10-27-12 Springfield Ohio 5 witnesses saw 12/15 red/orange objects moving thru sky with no noise in same path. +2012-10-27,40.7141667,-74.0063889,New York City (Bronx),NY,fireball,240,Two bright, orange glowing orbs flying in formation at a steady speed to the Northeast, followed by a third glowing orb. +2012-10-27,36.1658333,-86.7844444,Nashville,TN,other,60,White light on small lunar lander shaped object. +2012-10-27,39.8775,-84.3022222,Englewood,OH,circle,60,Orange glowing ball in sky Englewood, Ohio. +2012-10-27,42.1013889,-72.5902778,Springfield,MA,flash,120,UFO flashing lights +2012-10-27,32.7355556,-97.1077778,Arlington,TX,triangle,120,Low rumble revealed sparkling lights, resolved into dark Triangular craft with lighting at two leading edges. +2013-10-27,32.9125,-96.6386111,Garland,TX,light,480,Glowing orange lights in sky. +2013-10-27,41.6561111,-70.4166667,Marstons Mills,MA,formation,1320,At 7:05 my 28 yr old son and I were walking our dog. We have been keeping our eyes to the sky ever since our last sighting this past su +2013-10-27,46.8738889,-96.7672222,Moorhead,MN,light,900,Multiple circular rotating lights. +2013-10-27,41.4527778,-82.1825,Lorain,OH,diamond,120,8 crafts or whatever, proceeding W to E along Lake Erie shore line, red, silent, with varying speeds, but generally in formation. +2013-10-27,44.9444444,-93.0930556,St. Paul,MN,sphere,60,Four objects fly in seeming formation and make unusual turns. Almost hugging each other for a moment. +2013-10-27,36.0625,-94.1572222,Fayetteville,AR,flash,1500,Blue flash over mount sequoyah with hum. +2013-10-27,39.1619444,-84.4569444,Cincinnati,OH,teardrop,90,Bright light, ship cloaked out on me right in front of my eyes. +2013-10-27,36.0997222,-80.2444444,Winston-Salem,NC,cross,1200,Stationary bright white light +2013-10-27,37.9886111,-84.4777778,Lexington,KY,triangle,60,Amber-colored lights in triangle formation. +2013-10-27,34.1477778,-118.1436111,Pasadena,CA,light,240,6 balls of orange-red lights hovering over Mt. Wilson near San Gabriel Valley. +2013-10-27,26.7052778,-80.0366667,West Palm Beach,FL,fireball,420,Six orange-red glowing balls in night sky over West Palm Beach +2013-10-27,40.4405556,-79.9961111,Pittsburgh,PA,fireball,120,Saw "Fireballs" in the sky last night. Same as many other UFO video and sightings. Have pictures. +1987-10-28,32.3122222,-106.7777778,Las Cruces,NM,changing,1800,Las Cruces lights. +1988-10-28,25.7738889,-80.1938889,Miami,FL,unknown,60,we decided to report this after watching some ufo tv program with a person having the same experience. +1991-10-28,34.0522222,-118.2427778,Los Angeles,CA,circle,900,It was a clear, sunny day. My friend and I went for a neighborhood walk. It was early afternoon. My friend first noticed 3 round whit +1995-10-28,38.7083333,-121.3288889,Antelope,CA,unknown,120,broken trangular patterned lights +1996-10-28,42.9955556,-71.4552778,Manchester,NH,diamond,120,not moving at all +1997-10-28,38.5816667,-121.4933333,Sacramento,CA,light,300,I was driving when i saw lights flashing on and off. The lights were very fast, faster than a plain. When the object flew over my head +1997-10-28,36.9922222,-91.9697222,Willow Springs,MO,triangle,180,triangle shaped with 5 red lights along the edge and 1 white light in the middle traveling east and low to the ground. +1997-10-28,40.4394444,-84.0402778,Jackson Center,OH,light,10800,three orange lights appear in back of our factory while on a smoke break all moving back and forth!!! +1998-10-28,47.6588889,-117.425,Spokane (I-90 From Mile 238 Eastbound, Over),WA,fireball,4,from south to north very fast went over horizon not sure of color 1/10 size of full moon +1998-10-28,42.3313889,-83.0458333,Detroit,MI,circle,60,white bright circle hung in the sky for approx. 3 seconds before gliding silently in a arc away(northernly) from it's position +1998-10-28,38.2541667,-85.7594444,Louisville,KY,formation,3600,IT WAS ON RADIO BROACAST ON OCTOBER 29 1998 THAT THERE WAS A MASS SITING OF 3 OBJECTS HOOVERING OVER SHELBYVILLE ROAD IN LOUISVILLE KEN +1998-10-28,43.698055600000004,-85.4836111,Big Rapids,MI,fireball,10,greenish fire ball coming down from sky with long tail on it. +1998-10-28,35.2219444,-101.8308333,Amarillo,TX,chevron,5,Chevron, translucent, with 3 or 4 small dim white lights. Rapid, straight line movement across wind. +1998-10-28,34.815,-92.2241667,Sherwood,AR,other,1800,It was about 100-120 feet away. It was about the size of a mini-van. It was an oblong light. It was not shining, but rather glowing. +1998-10-28,41.85,-87.65,Chicago (Sw Sky Over Lake Michigan),IL,oval,2700,Lying in bed I noticed a bright ball in the sky that rapidly changed colors from red to blue to white. After realizing that it hadn't +1999-10-28,37.6866667,-96.9763889,Augusta,KS,light,1.5,Best described as a reverse shooting star. A point of light streaking upward quite a distance to the east of me. +1999-10-28,42.0083333,-91.6438889,Cedar Rapids,IA,teardrop,40,I was driving home after work when I was a teardrop silvery and shiny object, (and it was obvious that it was chrome colored) passed ac +1999-10-28,34.7463889,-92.2894444,Little Rock,AR,unknown,240,I saw an object in the sky above Little Rock. It first appeared to be an airplane without any discernable features or a shiny balloon. +1999-10-28,33.4483333,-112.0733333,Phoenix,AZ,changing,1200,The night before I saw The Ship My Freind called me out to see a fast moving object orangr in color Move ocroos the sky faster than eve +2000-10-28,43.6613889,-70.2558333,Portland,ME,sphere,30,Metallic Sphere flies within 30 feet of apartment. +2000-10-28,40.5569444,-75.18,Kintnersville,PA,other,180,it flew across the western sky and was shaped like a symmetrical top +2000-10-28,48.7597222,-122.4869444,Bellingham,WA,flash,10,At 6:15 PM on October 28th 2000, I was coming out of a gas station in North Bellingham and saw a flash in the clouds above me slightly +2000-10-28,37.1041667,-113.5833333,St. George,UT,changing,600,Large object with sevsral satilites flying around it. +2000-10-28,44.725,-84.0511111,Fairview,MI,changing,300,Sighting in Northern Michigan 10/28/00 +2000-10-28,41.4088889,-75.6627778,Scranton,PA,other,180,It appeared to be a plane hovering in one spot with inverted wings and strange bubble-shaped objects underneath its wings. +2000-10-28,41.7002778,-73.9213889,Poughkeepsie,NY,triangle,2700,Observer Background: Male age 30. Highly educated, M.A. Columbia University. Works with learning disabled population. Observer has +2000-10-28,43.7508333,-87.7144444,Sheboygan,WI,circle,10800,circular object over lake michigan for about 3 hours +2000-10-28,39.0991667,-76.8486111,Laurel,MD,circle,360,PLEASE IF ANYONE SAW THIS PLEASE CONTACT MR DAVENPORT!!!! The time was 9:30 PM in Laurel Md. There is a lot of air traffic here, so y +2000-10-28,40.7280556,-74.0780556,Jersey City,NJ,light,8,Unknown out of atmosphere object observed while star gazing. +2000-10-29,26.6155556,-80.0572222,Lake Worth,FL,light,600,A large, bright yellow object that appeared and reappeared in a different part of the sky and disappeared. +2000-10-29,37.2152778,-93.2980556,Springfield,MO,cigar,540,grey, dull, metallic looking Cigar craft +2001-10-28,37.7475,-81.1425,Beaver,WV,disk,900,Silver disk. lights in middle, windows, gaseous haze around disk +2001-10-28,37.7475,-81.1425,Beaver,WV,disk,900,silver, gray, twice car size, round discus, silent, gas ring around craft, white lights around middle, windows?, green/blue light +2001-10-28,37.9513889,-91.7711111,Rolla,MO,light,600,Pink anomali and the red pulsing light +2001-10-28,41.5008333,-93.4908333,Carlisle,IA,chevron,5,Green Chevron Shaped Craft Drops from Sky and Disappears +2001-10-28,43.3788889,-84.6597222,Alma,MI,sphere,3600,Floating illuminated nighttime sphere west of Alma, Michigan +2001-10-28,41.2613889,-114.1933333,Montello,NV,unknown,60,Three trucks, seven people, heading out hunting. 18 miles north of Montello, Nevada. Stars shining brightly. No evidence of dawn ye +2001-10-28,35.1494444,-90.0488889,Memphis,TN,light,60,Star-like object moves slowly and hovers at high altitude over Memphis at mid-day. +2001-10-28,35.5691667,-80.5819444,China Grove,NC,unknown,8,I was driving on Mt. Hope Church Road near my home,and I glanced toward the right and saw a jet with a very long jet stream,and then I +2001-10-28,34.7463889,-92.2894444,Little Rock,AR,cigar,60,My wife an observed a cylindrical metal body craft that was flying a course from South to North or slightly Southwest to Northeast. The +2001-10-28,47.9791667,-122.2008333,Everett,WA,unknown,600,In the early evening at around 8pm, we noticed a white light in the sky. It seemed too bright to be a star and appeared to be slowly m +2001-10-28,41.3113889,-105.5905556,Laramie,WY,fireball,35,I saw a bright very bright light apear in the sky it held possition for about 20 sec. than bolted off and disapeared the same thing hap +2001-10-28,40.9444444,-74.0758333,Paramus,NJ,light,90,4 bright white dot that was followed by a traail of light that moved around in oval shaped orbits and crossed paths. +2002-10-28,37.3394444,-121.8938889,San Jose,CA,other,10,bright white sphere flyes over head +2002-10-28,40.7719444,-80.7683333,Lisbon,OH,disk,30,slow moving unexplaned craft +2002-10-28,41.4277778,-85.7525,Syracuse,IN,light,30,something wierd happened +2002-10-28,33.7763889,-112.5277778,Wittmann,AZ,flash,60,Bright light falls from sky +2002-10-28,41.4277778,-85.7525,Syracuse,IN,oval,7200,oval dull lights - first there were two, one was flying right behind the other and flying in a circle then the back one caught up to th +2003-10-28,39.1072222,-76.5713889,Pasadena,MD,unknown,7200,I was starting to doze off durring the david letterman show. i was awaken by a repetitive sound kinda resembling a phone of the hook bu +2003-10-28,40.7141667,-74.0063889,New York City (Manhattan),NY,sphere,300,I looked up and saw a sphere very high up over the Helmsley Palace Hotel... +2003-10-28,47.1041667,-122.4333333,Spanaway,WA,disk,60,The object traveled at a steady pace towards Mount Rainier. +2004-10-28,40.7141667,-74.0063889,New York City (Queens),NY,light,30,ball of light went faster than speed of light +2004-10-28,44.7972222,-106.9555556,Sheridan,WY,light,90,Object flying over the tree line at the Big Horn Mountains south of Sheridan Wyoming +2004-10-28,41.3316667,-74.3572222,Florida,NY,triangle,900,triangular shaped bright white object with flashing lights and one red light. +2004-10-28,29.7630556,-95.3630556,Houston,TX,other,240,A strange glowing cloud the dissapeared and reappeared. +2004-10-28,35.3519444,-75.5108333,Avon,NC,light,4,Red light dividing into 4 +2004-10-28,32.7152778,-117.1563889,San Diego,CA,chevron,10,Walking my fiance out to her car at about 8:45 pm and i looked up into the sky and noticed that the clouds had cleared up so i took a l +2004-10-28,40.4166667,-86.8752778,Lafayette,IN,formation,10,4-6 fire-orange objects in formation turning into many more objects flying erratically +2004-10-28,40.4166667,-86.8752778,Lafayette,IN,formation,10,Multiple orange lights in line then flying erratically. +2004-10-28,44.8830556,-68.6725,Orono,ME,disk,15,The object was about the size of a full moon, had red and white lights, then vanished. +2004-10-28,39.7722222,-101.7994444,St. Francis,KS,light,30,Very Bright Lights +2004-10-28,30.6277778,-96.3341667,College Station (Near),TX,light,30,Several bright lights that appear and travel across the sky and then vanish. ((NUFORC Note: Twinkling stars. PD)) +2004-10-28,42.2958333,-71.7133333,Shrewsbury,MA,light,5,Green streak shooting across sky +2004-10-28,32.7152778,-117.1563889,San Diego (Mission Bay Area),CA,fireball,1200,Fireball over Mission Bay +2005-10-28,36.8658333,-83.1905556,Evarts,KY,teardrop,1200,The craft that i seen was shaped like a teardrop. and had 2 lights on it.it was going about 60 mph from fromeast towards west. +2005-10-28,30.2669444,-97.7427778,Austin,TX,triangle,600,Object over highway in Austin, TX +2005-10-28,35.1494444,-90.0488889,Memphis,TN,unknown,3600,Hovering craft over Memphis, TN. ((NUFORC Note: Probable sighting of a celestial body, we suspect. PD)) +2005-10-28,41.6580556,-90.5844444,Eldridge,IA,disk,30,MISSOURI INVESTIGATORS GROUP Report: I saw a bright circular metal object in the sky which seemed to hover. +2005-10-28,40.7141667,-74.0063889,New York City (Bronx),NY,changing,900,New York Sightings in the Night Sky as reports of unexplained smells come in to the NYC 911/311 exchange. +2005-10-28,41.4413889,-85.265,Kendallville,IN,sphere,15,On friday Oct. 28, 2005, a co-worker and I (of 7 years) were sitting outside our plant near the loading dock around 2:00pm. Our company +2005-10-28,28.3858333,-80.7422222,Cocoa,FL,oval,10,"Here 1 min. gone the next"" +2005-10-28,38.6272222,-90.1977778,St. Louis,MO,fireball,3600,Fireballs in St. Louis +2005-10-28,37.8805556,-84.5730556,Nicholasville,KY,diamond,7200,Diamond-faceted. ((NUFORC Note: Object was present on two sequential nights. Possible sighting of Sirius, we suspect. PD)) +2005-10-28,32.7666667,-96.5988889,Mesquite,TX,circle,240,Small dim circle of light close to Moon began moving in a wide circle & moved away but was chased by a light from area of Moon +2005-10-28,38.5130556,-90.4358333,Fenton,MO,triangle,1200,Black triangle with single light over Fenton, MO (Murphy area). ((NUFORC Note: Possible celestial body. PD)) +2005-10-28,33.1580556,-117.3497222,Carlsbad,CA,formation,300,2 Flashing red lights pass directly overhead in perfect formation at very high altitude with no sound. ((NUFORC Note: Aircraft. PD)) +2006-10-28,39.2461111,-94.4188889,Liberty,MO,light,4,Orange lights (7) over Liberty, MO flying in V shape +2006-10-28,38.9822222,-94.6705556,Overland Park,KS,triangle,6,Man sees cloaked triangle shaped object slicing through clouds above his head. +2006-10-28,38.9822222,-94.6705556,Overland Park,KS,triangle,6,Triangle shaped craft traveling in 'stealth' mode. +2006-10-28,34.0522222,-118.2427778,Los Angeles,CA,changing,60,Two shape-changing orange craft alternating positions over Los Angeles 10-28-06 at 1:55 a.m. +2006-10-28,35.4633333,-89.91,Drummonds,TN,light,240,I saw a yellow light and then turned white in the sky at 3:00 AM and then it staid in mid-air for at least 30 minutes! +2006-10-28,43.8844444,-91.235,Onalaska,WI,triangle,30,Unusual object flying to the east with no noise. +2006-10-28,33.8675,-117.9972222,Buena Park,CA,formation,10,formation of four circles flying at 1000 feet above amusement park in Buena Park, CA +2006-10-28,29.4238889,-98.4933333,San Antonio,TX,circle,21600,My cousin, brother and I were playing outside when we saw a circle disc object in the sky. +2006-10-28,37.3386111,-92.9069444,Marshfield,MO,light,1500,Bright lights, jets, mystery. +2006-10-28,32.3663889,-96.1005556,Mabank,TX,other,600,strange cresent moon shapes over mabank,Tx +2006-10-28,39.0091667,-123.365,Boonville,CA,formation,600,We saw 7 UFO just after sunset that were blinking colored lights. ((NUFORC Note: Possible sightng of Sirius, we suspect. PD)) +2006-10-28,34.8697222,-111.7602778,Sedona,AZ,other,1800,At approximately 20:00 on the night of 10/28/06 my girl friend and I observed an object in the sky from our home in Sedona Arizona. The +2006-10-28,34.1975,-119.1761111,Oxnard,CA,circle,600,north oxnard , ca three craft going from west to east +2006-10-28,37.5058333,-77.6494444,Midlothian,VA,chevron,6,My female friend and I were walking around her condo.A night we could clearly see a series of lights in a chevron pattern.If yo +2007-10-28,38.9822222,-94.6705556,Overland Park,KS,triangle,20,(Same as other 10/23/07 overland park kansas sighting of triangular craft) triangular craft with several dim orange lights arranged spo +2007-10-28,36.175,-115.1363889,Las Vegas,NV,unknown,240,large transparent like blur 1400 to 1600 sq. ft. overhead for 2 to 3 min. +2007-10-28,41.7075,-86.895,Michigan City,IN,other,30,Blacked-out, silent wing-shaped object flying at approximately 1500 feet/300 knots over Lake Michigan +2007-10-28,48.2555556,-121.6002778,Darrington,WA,light,900,Unusual lights all the time… ((NUFORC Note: Sighting of Venus?? PD)) +2007-10-28,40.7141667,-74.0063889,New York City,NY,light,7200,Bright light appears over NYC ((NUFORC Note: Sighting of Venus or "twinkling star??" PD)) +2007-10-28,47.6105556,-122.1994444,Bellevue,WA,oval,240,Carsh landed in Longwood,was on radio 570mHz AM at 6:30am. ((NUFORC Note: No other reports. Possible hoax?? PD)) +2007-10-28,36.3047222,-86.62,Hendersonville,TN,oval,1200,Objects over Hendersonville, TN +2007-10-28,41.6986111,-88.0683333,Bolingbrook,IL,light,900,Numerous lights with jets following +2007-10-28,39.9202778,-80.7433333,Moundsville,WV,disk,120,UFO sighting Moundsville WV +2007-10-28,47.2530556,-122.4430556,Tacoma,WA,light,1200,Looked to be a star that changed size and brightness until it faded out and would come back. +2007-10-28,40.6013889,-79.76,Tarentum,PA,light,180,UFO outside over New Kensington PA and Tarentum. +2007-10-28,31.6033333,-94.6552778,Nacogdoches,TX,chevron,15,Grey "V" shaped object flying with a low hum - Shorted out stoplights and lights +2007-10-28,42.1486111,-74.6486111,Margaretville,NY,circle,3,Green glowing spear (meteorite I think) fell from the sky. +2008-10-28,32.895,-97.5455556,Azle,TX,other,120,Intresting, strange, and something not from the planet earth. +2008-10-28,33.1191667,-117.0855556,Escondido,CA,oval,5,Spherical craft with flashing lights around it. +2008-10-28,31.7091667,-98.9908333,Brownwood,TX,light,300,3 circular orange lights in Brownwood, Texas! +2008-10-28,35.614444399999996,-88.8138889,Jackson,TN,circle,120,Very shiny, stationary object over Jackson, TN +2008-10-28,42.2355556,-75.8486111,Chenango Forks,NY,circle,300,Winged, circular pewter colored craft, w/ 4 lighted dangling appendages (like legs), dark horizontal port (viewing?) on upper portion +2008-10-28,41.6611111,-91.53,Iowa City,IA,unknown,150,Late-Afternoon Object Not Depositing a Vapor Trail Unlike Several In-Vicinity Airliner Jets +2008-10-28,39.1836111,-96.5713889,Manhattan,KS,changing,900,Six bright yellow lights in kite, backward "L" and diamond formations +2008-10-28,37.3394444,-121.8938889,San Jose,CA,formation,5,Two diagonal lights flying away in southeastern sky +2008-10-28,36.5244444,-76.1786111,Moyock,NC,triangle,180,it seemed to be going extremely slow with bright lights +2008-10-28,35.0844444,-106.6505556,Albuquerque,NM,fireball,10,Large bright breen object north of Albuquerque that appeared to be breaking up. +2008-10-28,39.7561111,-99.3236111,Phillipsburg,KS,sphere,130,Formation of Orbs +2008-10-28,36.1755556,-106.1827778,Medanales,NM,fireball,120,I saw a chartreuse green fireball with a trail of orange sparks as I was driving on the night of Oct. 28, 2008. +2008-10-28,31.7091667,-98.9908333,Brownwood,TX,light,480,Lights over Comanche +2008-10-28,31.9491667,-98.7369444,Sidney,TX,light,240,One of many to see the ufo's on 10/28/08 in Comanche, Texas +2008-10-28,31.5491667,-97.1463889,Waco,TX,rectangle,60,Possible planes on fire +2008-10-28,34.3077778,-118.4483333,Sylmar,CA,disk,30,UFO sighted at 7:47PM Tuesday night in the san fernando valley area of California! +2008-10-28,32.4486111,-99.7327778,Abilene,TX,light,180,I saw two huge lights in the southeastern sky at an angle, like a pair of head lights but angled ( \ )with on light dimishing first slo +2008-10-28,32.085,-98.3416667,Dublin,TX,sphere,180,Series of small yellow-orange lights, alone and in sequences across the western sky. +2008-10-28,40.7038889,-105.0080556,Wellington,CO,oval,4,Lime green glowing oval shaped bright light seen over Wellington, CO +2008-10-28,31.7244444,-96.165,Fairfield,TX,oval,780,Red glowing oval object with whitish blue halo effect Southwest of Fairfield, Freestone County observed for 20 minutes +2008-10-28,35.6838889,-82.0094444,Marion,NC,flash,3600,More than ten ufo lights flying around in sky. +2008-10-28,44.2619444,-88.4152778,Appleton,WI,light,5,small blue and white bright circular figure +2008-10-28,32.7833333,-96.8,Dallas,TX,triangle,30,3 square orange lights in a large triangle formation moving silently SSE over downtown Dallas. +2008-10-28,35.2269444,-80.8433333,Charlotte,NC,cross,1200,Stars moved as group, not airplane. +2009-10-28,37.8044444,-122.2697222,Oakland,CA,circle,60,Huge bright blue circles above Oakland for a few seconds, reappeared 1 mi south 2 sec. later then vanished. Definately not a plane. +2009-10-28,34.3916667,-118.5416667,Santa Clarita County (126 Freeway),CA,unknown,1200,I witness the teleportation of an alien spacecraft, as well as the soarce of this technology in action. +2009-10-28,35.9938889,-78.8988889,Durham,NC,light,240,3 bright lights over Durham +2009-10-28,28.5388889,-80.6722222,Merritt Island,FL,circle,300,On 10/28/09 a UFO hovering over state road 3 in merritt island florida emitting no sound or vibration except a bright amber fire light. +2009-10-28,34.2419444,-117.2847222,Crestline,CA,unknown,10800,unexplained lights in southern california +2009-10-28,34.3916667,-118.5416667,Santa Clarita,CA,triangle,60,Triangle ufo over Santa Clarita. Possible man made! +2009-10-28,34.426944399999996,-77.5463889,Surf City,NC,flash,3600,Craft appeared to bounce close to ground before shooting straight up into the sky and has been stationary for an hour+. +2010-10-28,35.0716667,-81.65,Gaffney,SC,fireball,1200,1 ball shape flaming red, like a fire burning had red flashing lights, moved very, very slow, looked to be huge in size. +2010-10-28,37.7397222,-121.4241667,Tracy,CA,circle,900,6 unidentified crafts seen by 5 people +2010-10-28,36.1733333,-79.9891667,Oak Ridge,NC,unknown,420,Star-like Object witnessed above FL600 at a high rate of speed traveling SSE to NNW +2010-10-28,41.9502778,-97.2236111,Stanton,NE,light,45,I saw an amzingly bright light in the night sky and then it disappeared. +2010-10-28,48.6011111,-93.4108333,International Falls,MN,circle,5,round ball that looked like fire with flashing bottom falling out of the sky. +2010-10-28,34.2283333,-118.5358333,Northridge,CA,oval,300,I witness a series of lights about 15 to 20 moving south of Roscoe Blvd. As I tried to get closer it suddently went the other way in +2010-10-29,41.6661111,-81.3397222,Mentor,OH,cigar,30,7 cigar shapes over lake Erie +2011-10-28,39.0991667,-76.8486111,Laurel,MD,circle,600,round object above the trees +2011-10-28,38.2097222,-84.5588889,Georgetown,KY,triangle,600,UFO sighting in Kentucky 10/28/11. +2011-10-28,37.4852778,-122.2352778,Redwood City (Between San Fran And San Jose),CA,other,15,Followed three pairs of white lights for ~15 seconds moving across the sky in formation, at a stellar distance. +2011-10-28,36.2702778,-121.8063889,Big Sur,CA,sphere,900,Report Re. UFO off coast near Big Sur, CA @2:35-2:55 AM Oct 28, 2011 A large red star-like orb, many times brighter than any bright st +2011-10-28,38.6275,-92.5663889,California,MO,circle,600,Round bright light that both hovered then zipped across entire sky +2011-10-28,33.9022222,-118.0808333,Norwalk,CA,chevron,180,While on Security patrols at my workplace,I observed a brilliant light that kept increasing in illumination streaking high across the s +2011-10-28,39.2902778,-76.6125,Baltimore,MD,light,7200,On video +2011-10-28,36.323055600000004,-86.7133333,Goodlettsville,TN,diamond,180,Large bright light moving slowly to the southwest west +2011-10-28,44.4372222,-90.9111111,Alma Center,WI,light,10,Two Bright Lights in three weeks sighted +2011-10-28,34.5033333,-82.6502778,Anderson,SC,light,60,Odd light effect in clouds +2011-10-28,26.4611111,-80.0730556,Delray Beach,FL,triangle,3600,Very large, slow moving triangle +2011-10-28,35.8455556,-86.3902778,Murfreesboro,TN,formation,10,weird falling flickering cloud +2011-10-28,37.6138889,-122.4858333,Pacifica,CA,rectangle,180,Observed a large rectangular object in the night sky with many colored lights which stayed in one place for three minutes. +2011-10-28,33.5091667,-111.8983333,Scottsdale,AZ,unknown,300,Three to Five comet-like objects seen descending in the sky east of Scottsdale AZ, directional changes and reigniting flames. +2011-10-28,34.0522222,-118.2427778,Los Angeles (Over Lax),CA,oval,30,620PM LA,LAX CA OVAL SILVER, 30 SECONDS, 1 DISC @ FIRST THEN SPLIT INTO 5 DISC ON VIEDO +2011-10-28,29.7352778,-94.9772222,Baytown,TX,light,10,Red Orange that glowed moving and stopping with my movements. +2011-10-28,41.6361111,-70.9347222,New Bedford,MA,sphere,2400,Noticeable UFO's +2011-10-28,44.8755556,-91.9191667,Menomonie,WI,sphere,30,2 Bright lights following each other heading North over Menomonie +2011-10-28,39.83,-75.4419444,Boothwyn,PA,circle,60,Bright red and orange circle in sky that looked like a fireball +2011-10-28,38.9716667,-95.235,Lawrence,KS,light,900,Bright beacon style light sweeping over Lawrence. (Not the airport beacon) +2011-10-28,42.3472222,-89.0388889,Machesney Park,IL,formation,30,Bright orange lights over Machesney Park Illinois +2011-10-28,34.0522222,-118.2427778,Los Angeles,CA,light,10,Three large lights in the water of Santa Monica bay with very blinding lights and then they dissipated into complete darkness +2011-10-28,41.5308333,-75.5458333,Jermyn,PA,other,240,Jet tailing a completely blacked out silent object +2011-10-28,36.1538889,-95.9925,Tulsa,OK,circle,480,My 2 Sons and myself were driving home around 8:30 P.M. We were about 3 blocks from our house. We were heading North on Rockford ave +2011-10-28,40.3727778,-75.4813889,Red Hill,PA,unknown,240,3 Red/Orange Lights Traveling in a line then disappearing over Red Hill, Pa +2012-10-28,34.0736111,-118.3994444,Beverly Hills,CA,light,1800,At least 20 round w/ sparkle of lights on them. +2012-10-28,36.6061111,-118.0619444,Lone Pine,CA,other,2,Unusual object that appeared suddenly. ((NUFORC Note: We strongly suspect that the object is a bird, possibly a hummingbird. PD)) +2012-10-28,41.1416667,-87.875,Bourbonnais,IL,circle,120,Metallic blue round object over bourbonnais, IL dashes out of sight in 3 seconds +2012-10-28,29.7630556,-95.3630556,Houston,TX,fireball,3,Day Light UFO Over Katy, TX, 16:40 Central Time, Fire Ball lighter than sun materialized then disappeared. +2012-10-28,32.3122222,-106.7777778,Las Cruces,NM,fireball,360,3 fireballs over mnts, triangle formation, random blinking on & off for 6 min. +2012-10-28,33.3061111,-111.8405556,Chandler,AZ,fireball,300,Three fireballs flying close to the ground +2012-10-28,33.9525,-84.55,Marietta,GA,unknown,10,Sky changed color in several bright flashes. +2013-10-28,36.1155556,-97.0580556,Stillwater,OK,sphere,600,3 Fire Orange Glowing Spheres Move Through the Skies Over Stillwater Oklahoma +2013-10-28,42.2675,-94.7336111,Lake City,IA,light,3600,odd moving light in the sky +2013-10-28,36.1752778,-80.1533333,Walkertown,NC,disk,3,Object had green and white lights gone in 3 seconds really bright and fast. +2013-10-28,47.0530556,-122.2930556,Graham,WA,disk,1500,Flashing bright white light with no noise in the lower sky for twenty five minutes. it hoovered. +2013-10-28,47.7988889,-122.4969444,Kingston,WA,flash,1,Unexplained Bright Stationary Flash of Light Kingston WA. ((NUFORC Note: Sighting of Venus, we suspect. PD)) +2013-10-28,25.9013889,-97.4972222,Brownsville,TX,circle,90,2 orange fiery, round objects flew over brownsville, tx near east price road. +2013-10-28,42.3802778,-72.5236111,Amherst,MA,diamond,600,Huge silent flying object moving North East in the sky. +2013-10-28,42.05,-72.5833333,Longmeadow,MA,triangle,420,triangle shaped craft hovering in Massachusetts. +2013-10-28,26.0625,-80.2333333,Davie,FL,unknown,300,Fireball in the sky that dissipated after a few minutes. +2013-10-28,40.3933333,-82.4858333,Mt. Vernon,OH,triangle,120,Orbs forming a triangle that came from the Stratosphere, went strait over dropped thousands of ft. and went strait all in one motion +2013-10-28,26.6583333,-80.2416667,Wellington,FL,circle,180,2 bright lights. +1969-10-29,43.3227778,-76.4175,Fulton,NY,cigar,1200,Orange cigar shaped object drops material. +1970-10-29,40.6866667,-73.3738889,Lindenhurst,NY,sphere,10,Object raced across sky, stopped, zig zagged back and then took off out of sight. We seemed frozen, watched stopped, arm hairs stood up +1971-10-29,41.6716667,-72.9497222,Bristol,CT,triangle,300,very large object seen over the west end +1971-10-29,42.2,-71.425,Holliston,MA,unknown,60,Fast moving bright light that hovered and bolted in non typical directions and speed; Holliston, Ashland, Framingham; fall 1971 or 1972 +1972-10-29,31.5277778,-87.3247222,Monroeville,AL,cylinder,15,Fighter jet chasing object in the sky over south Alabama +1980-10-29,42.3313889,-83.0458333,Detroit,MI,rectangle,30,Triangle shape object with flashings lights +1987-10-29,32.1330556,-96.2275,Kerens,TX,circle,1,while facing E/NE saw a red ball just at the horizon. the object then streaked across the sky leaving a green laser looking tail that w +1990-10-29,36.0583333,-90.4972222,Paragould,AR,disk,180,My freind and I seen a circular craft land. It was there for at least a minute. When it took off again, it made a loud howling noise. +1992-10-29,35.1494444,-90.0488889,Memphis (Frayser),TN,fireball,600,A beach ball white orb at tree tops level traveling south at 5mph. +1997-10-29,35.7288889,-81.7794444,Glen Alpine,NC,light,60,I herd a humming sound and a bright lite. From - Thu Oct 30 14:34:07 1997 Return-Path: nobody@colorado.nwlink.com Received: from colora +1997-10-29,34.4263889,-100.2036111,Childress (North Of),TX,sphere,10,I submitted this report last week, but haven't seen it posted, so I thought it may have been lost in the shuffle. Incidentally, as a c +1998-10-29,21.9811111,-159.3711111,Lihue (Kauai),HI,other,600,I saw what at first was one glowing greenish light and then a total of three that moved in unison in a square pattern down/up and then +1998-10-29,42.9633333,-85.6680556,Grand Rapids (North Of),MI,fireball,60,A green fireball with a long "tail" moving rapidly and turning the landscape green +1998-10-29,37.7022222,-121.9347222,Dublin (On U.s. Interstate 680 North),CA,circle,5,In early a.m., already a bit light, at about 45 degrees, a fireball steaked in front of me for about 5 seconds. I was driving about 65 +1998-10-29,39.1405556,-121.6158333,Yuba City,CA,fireball,1,Large blue/silver sphere with green halo travelled across sky approx 20 deg. arc leaving a white trail. Event lasted 1.0 sec. +1998-10-29,35.8880556,-106.3063889,Los Alamos (Viewed From),NM,unknown,1200,Went outside at approximately 18:40, and witnessed a very large non-random group of white lights located to the east to slightly southe +1998-10-29,36.1658333,-86.7844444,Nashville,TN,other,300,8 rocket pay load for emissary sen. J. glenn sts-95 ((NUFORC Note: Nature of report is unclear to us. PD)) +1998-10-29,20.8783333,-156.6825,Lahaina,HI,sphere,5,My freind and I saw a bright sphere like object move across from West to East very rapidly. Towards the end of its flight path, a orang +1998-10-29,43.6630556,-116.6863889,Caldwell (Approx 40 Miles Nw),ID,light,50,at first looked to be a very bright star,it began to get brighter and brighter and coming closer and larger.Then turned at high speed t +1999-10-29,37.6447222,-115.7427778,Rachel,NV,light,300,Strange light seen outside of area 51 +1999-10-29,33.2097222,-87.5691667,Tuscaloosa,AL,circle,900,We saw a strange contrail and craft. +1999-10-29,38.3363889,-75.0852778,Ocean City,MD,light,300,my wife and i saw 3 lighted objects in the sky. the objects initially were a continuous bright light, and then a pulsating soft light. +1999-10-29,45.6797222,-111.0377778,Bozeman,MT,light,1800,me and my friends were standing out int the field behind the middle school and we saw a light come up from the ground out by the airpor +2000-10-29,43.0125,-83.6875,Flint,MI,triangle,10,3 triangle shaped lights observed flying in union forming a triangle. +2000-10-29,41.2425,-82.6158333,Norwalk,OH,light,1200,WE SEEN NUMEROUS ROUND, OVAL, AND DISK SHAPED OBJECTS FLYING NEAR THE SUN. AFTER WATCHING THIS FOR SOME TIME WE ALSO SEEN A LARGE, BLAC +2000-10-29,47.0380556,-122.8994444,Olympia,WA,other,15,Fiery obj obs in daylight descent near I-5 in Olympia, Washington +2000-10-29,47.0530556,-122.2930556,Graham,WA,fireball,5,I was heading west on 224th street and had stopped at a signal light, admiring the sliver moon to my left when movement directly in fro +2000-10-29,46.9755556,-123.8144444,Aberdeen,WA,fireball,15,Descending, burning green object seen over the ocean from Aberdeen, WA +2000-10-29,33.3527778,-111.7883333,Gilbert,AZ,light,900,ive seen a bright white light west of gilbert on the 25th 27th 29th at 645pm looks simular in brightness to the red light seen in july +2000-10-29,41.1444444,-81.44,Munroe Falls,OH,light,300,We stood for sometime just watching this very large bright light in the sky. +2000-10-29,40.2452778,-75.65,Pottstown,PA,light,3600,Huge, intense bright white light that changed in size and direction, accompanied by 5 others. +2000-10-29,44.725,-84.0511111,Fairview,MI,disk,300,Pulsating object changed colors from yellow to white to red, burst with a ring of red then reappeared +2000-10-29,48.4213889,-122.3327778,Mt Vernon,WA,flash,90,Bright, white, erraticly strobeing light jumping across night sky possibly followed by a second object. +2000-10-29,38.3483333,-97.0169444,Marion,KS,light,1080,Multiple balls of orange/red lights appearing and disappearing in the night sky. +2000-10-29,40.6833333,-96.2694444,Unadilla (Rural Area (Farm) Near),NE,triangle,180,Powerful-sounding mystery craft hovers over farmhouse, with its vibrations knocking over objects inside. +2001-10-29,33.5172222,-82.0758333,Martinez,GA,light,10,Light spotted over Martinez, GA in middle of day. +2001-10-29,33.9813889,-81.2363889,Lexington,SC,circle,1800,Three aircraft hovering in different locations for long period of time. Alternating green, white, red lights. +2001-10-29,46.9755556,-123.8144444,Aberdeen,WA,fireball,120,well this the first time to this site but after seeing the reports of the same sighting i need to report this. at about 10pm i was doi +2001-10-29,43.1933333,-78.065,Clarendon,NY,sphere,300,glowing sphere and small sphere seen, thought it was another plane crashing after September 11th. +2001-10-29,34.1063889,-117.5922222,Rancho Cucamonga,CA,fireball,540,Pulsing orange light, hovering, sparking, and dimming until fading completely. +2001-10-29,41.52,-88.2016667,Shorewood,IL,disk,30,Very large disk with a blue light on the bottom and 2 or more red lights on the sides. Made no noise whatsoever. +2002-10-29,40.8830556,-85.4975,Huntington,IN,unknown,30,It sounded like a slow moving propeller, with humming noises and a louder static-electricity zapping sound. +2002-10-29,30.7436111,-98.0552778,Bertram,TX,egg,1800,Egg shapped craft, leaving trail of spider web like material +2002-10-29,30.2669444,-97.7427778,Austin,TX,fireball,3,"Comet Like" Blue/Green streak before dusk....... +2002-10-29,33.3061111,-111.8405556,Chandler,AZ,diamond,15,The object appeared to be a dimmly illuminated flying wing approximately diamond shaped with squared off wing tips. +2002-10-29,43.2122222,-82.9897222,Brown City,MI,circle,300,It was a lighted flying object that flew at a high rate of speed and was able to manuever unlike anything I have ever seen! +2003-10-29,33.4705556,-82.5047222,Thomson,GA,flash,5,I've seen a bright flash of light three times in the same area. +2003-10-29,30.4380556,-84.2808333,Tallahassee,FL,sphere,30,flash of light, great speed, rounded turn/change of course, abrupt full stop +2003-10-29,34.0752778,-84.2941667,Alpharetta,GA,sphere,30,Tarnished bronze sphere hovering in close proximity to a radio tower +2003-10-29,35.2783333,-93.1336111,Russellville,AR,triangle,60,Three Lights Form Triangle in Sky Near Russellville, AR on Evening of 10/29/03 +2003-10-29,30.2347222,-92.2683333,Rayne,LA,light,180,THERES SOMETHING WEILD GOING ON UP THERE ! +2003-10-29,33.8594444,-84.6838889,Powder Springs,GA,light,900,Very Bright Blue Star +2003-10-29,25.7738889,-80.1938889,Miami,FL,other,5,An irridescent boomerang shaped object in the western sky, and five minutes later it came back moving the same direction +2003-10-29,42.1102778,-88.0341667,Palatine,IL,unknown,2,Booms associated with Bartlet sightings 10/29/03. +2003-10-29,41.995,-88.1855556,Bartlett,IL,light,2700,Mysterious white orbs in night sky - moving in a repetitive sequence - within the same circular area - which stayed in the same spot . +2003-10-29,30.0033333,-91.8186111,New Iberia,LA,cigar,5,Very bright object along busy highway +2003-10-29,42.7836111,-76.5594444,Scipio Center,NY,other,180,A flying pea pod with four lighted peas on top. +2004-10-29,33.4936111,-117.1475,Temecula,CA,light,10,Bright ball of light that dissapears soon after being noticed. Appears almost three times a week. +2004-10-29,40.1672222,-105.1013889,Longmont,CO,disk,10,White disc in Colorado sighted making sudden abrupt changes in direction and speed... +2004-10-29,39.2461111,-94.4188889,Liberty,MO,triangle,300,Multi-colored lights in a wide V-formation, hovering, hose or shaft of light lowering with light on end +2004-10-29,33.0786111,-97.565,Boyd,TX,disk,180,Object in the night sky. +2004-10-29,39.7683333,-86.1580556,Indianapolis,IN,cigar,240,Odd lights/large slow craft north of indy? +2004-10-30,33.6602778,-117.9983333,Huntington Beach,CA,sphere,20,Police helicopter chasing sphere. ((NUFORC Note: No date indicated by witness. PD)) +2005-10-29,43.3316667,-83.7380556,Frankenmuth,MI,rectangle,420,4 lighted rectangular/oval objects... +2005-10-29,32.7833333,-96.8,Dallas,TX,disk,600,Three UFO' seen over Dallas, TX during daylight hours +2005-10-29,41.6619444,-86.1586111,Mishawaka,IN,formation,60,Several contrails that appeared to be in formation, VERY high in altitude. ((NUFORC Note: Probably not UFO related. Aircraft. PD)) +2005-10-29,33.6305556,-112.3325,Surprise,AZ,fireball,420,ON 10/29/04 AT APROX 18:30 PM MYSELF AND 2 OTHER EYEWITNESSES WERE DRIVING BACK HOME FROM A LOCAL GROCERY STORE AS I LOOKED UP AT THE N +2005-10-29,47.6063889,-122.3308333,Seattle (Boeing Field),WA,other,5,Twin-engine jet fighter seen to STREAK west to east over Boeing Field in IFR conditions. +2005-10-29,33.6305556,-112.3325,Surprise,AZ,light,60,Immense Light Near Phoenix Northwest Valley +2005-10-29,38.2933333,-83.6588889,Hillsboro,KY,other,3600,Unusually large & bright white light returns for a fourth visit. +2005-10-29,34.698055600000004,-118.1358333,Lancaster,CA,light,180,I first noticed what appeared to be a jetliner (approx the same altitude & speed as a jetliner) flying due east outside commercial air- +2005-10-29,30.5019444,-90.7477778,Livingston,LA,sphere,3,Very bright ball of light seen above the tree line on I-12 in Louisiana +2005-10-29,40.0811111,-75.1897222,Wyndmoor,PA,fireball,3,I was standing outside and counting the number of planes I could see.I was looking in one direction over the tree lines, and a Fire +2006-10-29,33.9236111,-84.8408333,Dallas,GA,light,3600,Flashing disc followed us, blinked back at our flashlights, lights died, and fiance was zapped to the ground. +2006-10-29,34.0211111,-118.3955556,Culver City,CA,circle,180,dull orange/red spinning circle of Los Angeles area +2006-10-29,41.5547222,-88.0986111,Crest Hill,IL,disk,240,I witnessed 2 (UFO's?) approximately 6:45 p.m. Sunday evening, 10/29/06 travelling west to east, and the same height and speed as a com +2006-10-29,38.6688889,-120.9861111,Cameron Park,CA,disk,5,Flying Saucer with Big Bright Lights Hovering Silent then Flies +2006-10-29,47.6063889,-122.3308333,Seattle,WA,sphere,5,Blue-ish sphere with white trail seen traveling north to south Sunday 8PM October 29, 2006. +2006-10-29,40.4405556,-79.9961111,Pittsburgh,PA,other,10,Transucent/transparent, crescent, uni-wing shaped object viewed through binoculars filling field of view +2006-10-29,44.4908333,-103.8588889,Spearfish,SD,chevron,5,The object first appeared in the north sky. My attention was drawn to what initially appeared to be a shooting star. The first thing +2007-10-29,39.6836111,-75.75,Newark,DE,unknown,3600,Very brilliant white light over northern Delaware, hovering for an hour and then shot upward into space. ((NUFORC Note: Venus. PD)) +2007-10-29,39.6133333,-105.0161111,Littleton,CO,flash,60,Bright Orange streak in Littleton Colorado sky Oct 2007. ((NUFORC Note: Possible high-altitude contrail, perhaps. PD)) +2007-10-29,36.175,-115.1363889,Las Vegas,NV,light,10,traveling bright white light spotted over las vegas +2007-10-29,42.5802778,-83.0302778,Sterling Heights,MI,triangle,300,Triangle shape with red and green lights and a very bright red slowly pulsating light and no sound. +2007-10-29,43.55,-96.7,Sioux Falls,SD,oval,120,Black, oval, reflective object seen gliding through the daytime sky. +2007-10-29,37.8313889,-122.2841667,Emeryville,CA,circle,8,I saw a very shiny orb come out of the clouds then made square moves in the sky then another one came out and did the same thing then d +2007-10-29,34.0808333,-118.6861111,Monte Nido,CA,cigar,7,Sited 5 exhaust trails, then a cigar shaped UFO appeared in front of them, after a bright flash it disappeared and the trails just stop +2007-10-29,33.8358333,-118.3397222,Torrance,CA,cylinder,600,Black Cylindrical UFO seen over Del Amo Mall, Torrance Oct. 29, 2007 +2007-10-29,29.6483333,-81.6377778,Palatka (Southeast Of),FL,rectangle,20,Strange object/lights of unknown origin spotted. +2007-10-29,35.8066667,-121.0894444,Bryson,CA,light,30,Bright light forms in the night sky . +2007-10-29,41.2041667,-73.6441667,Bedford,NY,triangle,5,Triangular object with three lights over Westchester county NY +2007-10-29,38.2008333,-84.8733333,Frankfort,KY,circle,1800,Franklin/Scott County Kentucky Round Object With Red, Blue, and White Lights ((NUFORC Note: Sighting of Sirius?? PD)) +2007-10-29,35.9605556,-83.9208333,Knoxville,TN,light,5,Ball of Light over Knoxville,TN Fell from the Sky! +2008-10-29,41.0988889,-81.0230556,Diamond,OH,sphere,10800,A color changing point of light in the sky turns out to be a whole lot more. ((NUFORC Note: Venus. PD)) +2008-10-29,42.5833333,-71.8027778,Fitchburg,MA,triangle,7200,Last night around 3am i was smoking a cig. i look up to the sky and see this really bright star but it starting moving and flickering. +2008-10-29,40.2986111,-83.0680556,Delaware,OH,light,60,Small red light object seen above Ohio Wesleyan University in Delaware, OH. +2008-10-29,33.4222222,-111.8219444,Mesa,AZ,triangle,1800,Triangle light pattern with 4th light in the center observed by 2 neighbors +2008-10-29,32.8472222,-117.2733333,La Jolla,CA,triangle,10,A massive semi-transparent liquid blackish triangular shape +2008-10-29,32.4486111,-99.7327778,Abilene,TX,light,900,Lights over Abilene +2008-10-29,41.3747222,-83.6513889,Bowling Green,OH,triangle,300,There were three objects in the sky, quiet close together- all silent, two moving and one that stayed still until it disappeared. +2008-10-29,41.5308333,-75.5458333,Jermyn,PA,light,300,Two aircraft circling light, light disappears, streaks between them later. +2008-10-29,36.0683333,-90.9558333,Walnut Ridge,AR,triangle,300,((HOAX??)) Six trangle shaped crafts with no noise, bright white lights, a few red lights, flying and hovering over NE Ark. +2008-10-29,40.2463889,-80.2116667,Houston,PA,fireball,5,Fireball plummets to Earth? +2008-10-29,41.2938889,-82.2175,Oberlin,OH,unknown,30,Bright green light shot across sky, changed to white, then back to green, then disappeared. +2008-10-29,39.4886111,-83.6369444,Sabina,OH,chevron,3,Green/White UFO appeared and disappeared. +2008-10-29,39.9947222,-84.4080556,Laura,OH,light,10,Bright Blue Craft Over Laura, Ohio's Night Sky +2008-10-29,43.38,-71.7175,Salisbury,NH,triangle,180,Second sighting in the same area. +2008-10-30,33.4416667,-94.0375,Texarkana,AR,oval,60,I have been employed with the US Army and have never saw anything like this before. +2009-10-29,37.775,-122.4183333,San Francisco,CA,light,2,San Francisco October 29th at 4:15am Bright moving white light ball moving left to right then disappeared in 2 seconds. +2009-10-29,36.0647222,-86.9394444,Bellevue,TN,other,60,polygo shape, no vapor, no noise, approx 300-400 mph +2009-10-29,33.5386111,-112.1852778,Glendale,AZ,formation,600,7 lights about, flashing on and off, in a straight line, horizontally, white +2009-10-29,39.6283333,-84.1594444,Centerville,OH,rectangle,120,Very large silent craft with 4 lights moving slowly across the sky +2009-10-29,39.0769444,-84.1769444,Batavia,OH,formation,60,Possible 7-8 flares seen in sky +2009-10-29,39.3236111,-83.6911111,New Vienna,OH,unknown,10,8 Lights Near New Vienna +2009-10-29,39.3994444,-84.5613889,Hamilton,OH,light,45,Red-Lighted UFO +2009-10-29,39.3236111,-83.6911111,New Vienna,OH,cigar,30,UFO New Vienna Ohio, 5-8 lights appear goldish one after another +2010-10-29,29.9425,-89.9633333,Chalmette,LA,circle,15,ROUND BLACK DISC HOVERING OVER CHALMETTE, LA +2010-10-29,34.5036111,-93.055,Hot Springs,AR,unknown,600,Red/Blue/Green lights flashing very quickly +2010-10-29,30.2669444,-97.7427778,Austin,TX,formation,15,Saw a string of about 10 to 12 lights in a loose V-formation very high up moving quickly across the sky in Austin, TX. +2010-10-29,43.0255556,-74.9863889,Herkimer,NY,fireball,20,orange fireball passed stars +2010-10-29,34.8088889,-79.5480556,Laurel Hill,NC,changing,300,Large, exploding fireball +2010-10-29,38.8941667,-77.4313889,Chantilly,VA,disk,4,Disk-like glowing craft in Chantilly flying low in stormy clouds in a horizontal pattern +2010-10-29,37.6455556,-84.7722222,Danville,KY,rectangle,180,Rectangular craft seen on October 29, 2010 in Danville, Kentucky +2010-10-29,41.1844444,-73.1336111,Stratford,CT,diamond,900,At aprox. 10:40 I looked up in the sky noticing the amount of stars visible when I spotted a series of stars (UFO) starting to move Sou +2010-10-29,33.4016667,-86.9544444,Bessemer,AL,teardrop,1200,Four guys see five teardrop/candle light objects spreading a mist, turn into cones, becomes long slivers, and split in the sky. +2010-10-29,36.2125,-79.7138889,Browns Summit,NC,circle,300,Very bright silver circle seen in the sky. +2010-10-29,47.8108333,-122.3761111,Edmonds,WA,other,60,STAR LIKE OBJECT TRAVELING ACROSS THE SKY. STOPPED AND SUDDENLY WINKED OUT. +2010-10-29,29.7855556,-95.8241667,Katy,TX,light,120,Katy Texas Ufo sighting involving fighter jets +2010-10-29,32.3525,-90.8777778,Vicksburg,MS,other,15,Blinking lights in triangle formation over Vicksburg, leaving behind two large clouds of smoke then disappearing +2010-10-29,32.3525,-90.8777778,Vicksburg,MS,other,15,Blinking lights flying in a triangle formation over Vicksburg, sprayed two large dark clouds of smoke and then the object disappeared +2010-10-29,39.0997222,-94.5783333,Kansas City,MO,light,600,linear formation of 6 to 7 bluish orbs moving from north to south in the approximate location of Blue Springs, MO +2010-10-29,47.8108333,-122.3761111,Edmonds,WA,sphere,600,5 reddish spheres with flashing lights "floating" noiselessly not far offshore of Edmonds at maybe 1000 feet. +2010-10-29,35.245,-81.3413889,Kings Mountain,NC,other,1200,Up in the hills of Kings Mountain. UFO sighting on hwy 161 between 7pm and 7:30 pm EST. Bright orange oblong shaped aircraft. +2010-10-29,35.4661111,-82.5166667,Arden,NC,circle,240,Burning sphere moving through the sky at dusk. +2010-10-29,42.2711111,-89.0938889,Rockford,IL,triangle,5,Black "shadow"(dim light outlined) triangular craft spotted gliding silently in night sky over Rockford, IL. +2010-10-29,46.9422222,-122.6047222,Yelm,WA,triangle,15,Shape, speed, level movement, No sound. and disapeared. +2010-10-29,35.7963889,-81.4308333,Granite Falls,NC,formation,600,Object is composed of three, solid, bright, white lights in a straight line and flew silently. +2010-10-30,46.7833333,-92.1063889,Duluth,MN,triangle,1.5,Fast moving triangular shaped object. +2011-10-29,35.3858333,-94.3983333,Fort Smith,AR,oval,1800,Two oval-like craft seen over Fort Smith, AR by 2 teens. ((NUFORC Note: Student report. PD)) +2011-10-29,43.6575,-71.5008333,Meredith,NH,light,1200,redish orange lites spinning and dancing low in sky. +2011-10-29,34.3608333,-117.6325,Wrightwood,CA,disk,1200,My mother and father called my boyfriend ans I up to the deck when we arrived we saw a bright spot over the mountains as we watched fla +2011-10-29,37.7477778,-84.2947222,Richmond,KY,circle,45,black circle object going through the clouds very large +2011-10-29,45.8919444,-123.9602778,Cannon Beach,OR,unknown,1500,While coming out of Mo’s Restaurant off of Hwy 101 at Cannon Beach, my wife and I decided to walk on the beach near haystack rock as +2011-10-29,41.2411111,-77.0013889,Williamsport,PA,formation,300,Formation of orange lights near Williamsport, PA. ((NUFORC Note: Report from law enforcement officer. PD)) +2011-10-29,41.2305556,-85.3194444,Churubusco,IN,fireball,180,Cluster of red lights in the Churubusco sky +2011-10-29,39.12,-88.5433333,Effingham,IL,triangle,10,My husband and I were sitting in our hot tub and as I looked up I thought, “Wow, that is a large bird flying over us!” I didn’t know w +2011-10-29,43.073055600000004,-89.4011111,Madison,WI,other,180,Large L-shaped object with 9 red lights, not blinking, moving slowly and silent from North to South very low in sky +2011-10-29,41.7675,-93.2833333,Mingo,IA,circle,120,Saw a UFO landing on 10/29/2011 +2011-10-29,39.3994444,-84.5613889,Hamilton,OH,light,300,Orange lights traveling across the night sky in Hamilton, Ohio +2011-10-29,33.0369444,-117.2911111,Encinitas,CA,light,30,Two orange orbs 200 ft away, disappear into thin air. +2011-10-29,42.2711111,-89.0938889,Rockford,IL,light,120,3 red lights in rockford NOT planes!!! +2011-10-29,41.5580556,-73.0519444,Waterbury,CT,unknown,120,Bright blue and green lights while large shadow hovers over neighborhood. +2011-10-29,42.0652778,-71.2483333,Foxborough,MA,flash,2,Unidentified Green flashing Light During Blizzard +2011-10-29,37.725,-122.155,San Leandro,CA,other,3,lights werent in a specific order though seemed to be one craft. 7 lights all together almost like bent blade. lights were orangish red +2012-10-29,30.6277778,-96.3341667,College Station,TX,triangle,5,Pitch black triangle shaped object travelling across the night sky +2012-10-29,38.7838889,-90.4811111,St. Charles,MO,light,15,A large green orb light hovered for a moment near the clouds then zoomed away over the horizon. +2012-10-29,43.1280556,-121.045,Silver Lake,OR,other,60,Unknown plane/craft in Oregon +2012-10-29,33.9908333,-118.4591667,Venice,CA,triangle,4,At my friend house the three of us in the back yard just talking. I'm looking west toward Santa Monica Beach. This small triangle flyi +2012-10-29,41.2586111,-95.9375,Omaha,NE,rectangle,180,A hovering large, rectangle-shaped object with lights over the 150th St. area just south of Dodge Exprsswy +2012-10-29,36.2961111,-119.1411111,Exeter,CA,formation,360,2 Fighter Jets in Persuit of Fast moving formation of three blinking white lights +2012-10-29,38.7522222,-121.2869444,Roseville,CA,other,300,Orange Orb was silent and not moving until the glow went out, then the object moved straight up into the sky before disappearing. +2012-10-29,32.7252778,-114.6236111,Yuma,AZ,rectangle,30,4 rectangle solid red lights in a right banking turn. then each blinked once and went out. 4-3-2-1. +2012-10-29,43.0125,-83.6875,Flint,MI,light,600,Giant bright light flying at amazing speed doing maneuvers +2012-10-29,41.2586111,-95.9375,Omaha,NE,other,60,3 v-shaped objects. +2012-10-29,35.0455556,-85.3097222,Chattanooga,TN,teardrop,2,I saw a blue teardrop object fall from the sky. +2013-10-29,38.9713889,-76.4786111,Eastport,MD,circle,5400,4 weeks, observed round object in sky with mostly bright white but has flashing red and green lights. ((NUFORC Note: Sirius?? PD)) +2013-10-29,26.1219444,-80.1436111,Fort Lauderdale,FL,unknown,120,Very slow object. +2013-10-29,36.9741667,-122.0297222,Santa Cruz,CA,circle,10800,I feel this is probably a new satellite of some sort, but would like to have it on record as a sighting. ((NUFORC Note: Venus. PD)) +2013-10-29,36.9786111,-76.4283333,Newport News,VA,oval,3600,Ball of light with a spike in southwest sky that arcs westerly to the horizon. +2013-10-29,38.5816667,-121.4933333,Sacramento,CA,light,30,3 red/orange lights over Sacramento. +2013-10-29,44.2444444,-86.3241667,Manistee,MI,unknown,600,Large, low flying object spotted in Onekama, Manistee and Ludington by many residents on Tuesday 10-29-2013 at 8pm. +2013-10-29,44.7130556,-69.7911111,Norridgewock,ME,other,600,Ball of intense white light with rays of light shooting out from the orb. the only description that came to mind was the christmas st +2013-10-29,34.5636111,-111.8536111,Camp Verde (South Of),AZ,unknown,120,Brilliant white sputtering oval nodding side to side around 800' above highway. +1958-10-30,41.835,-87.8227778,Riverside,IL,light,600,Chicago suburbs, strange lights and figures; close contact with figures. 500 Lights On Object0: Yes +1968-10-30,25.7738889,-80.1938889,Miami,FL,fireball,600,Miami UFO Sighting +1969-10-30,43.3227778,-76.4175,Fulton,NY,cigar,240,orange cigar shaped object drops something that bursts into flames. +1969-10-30,43.3227778,-76.4175,Fulton,NY,cigar,600,orange cigar shaped object moved slowly from the ne. it stopped and a piece of the same color fell from it and burst into flames. the +1970-10-30,27.8002778,-97.3961111,Corpus Christi,TX,oval,600,Strange lights outside of bedroom window, little aliens. +1973-10-30,38.9952778,-110.1611111,Green River (20 Miles West Of On I-70),UT,disk,15,Mothership coming in for a landing! +1973-10-30,38.9952778,-110.1611111,Green River,UT,disk,15,mothership... coming in for a landing made the valley glow red... caused me to stop on I-70 to let it pass... +1975-10-30,41.7247222,-73.4775,Kent,CT,circle,10,Very low flying object with spinning multicolors. Craft did not seem to spin and had fire coming from rear. Low muffled fire sound. +1976-10-30,32.7833333,-96.8,Dallas,TX,disk,1000,Somethings out there +1976-10-30,38.2541667,-85.7594444,Louisville,KY,disk,120,Sighted at the intersection of Preston Hwy. and Gilmore Lane on the saturday before Halloween around 10:30 to 11:00pm. Large dome-shape +1986-10-30,40.7419444,-93.8336111,Decatur City,IA,triangle,120,static electric shocks felt on the short hairs of my body +1987-10-30,37.948055600000004,-122.0597222,Pleasant Hill,CA,sphere,180,Close Encounter With Low-Flying Glowing Orange Orb +1989-10-30,38.1394444,-90.555,De Soto,MO,oval,300,A black, silent, blimp shaped object floated over us +1993-10-30,42.6522222,-78.8972222,Eden,NY,circle,120,Saw center white light surrounded by red and blue lights and small outer white lights on perimeter. +1994-10-30,28.5555556,-82.4505556,Spring Hill,FL,circle,1200,WHITE DOTS OVER SPRINGHILL, FLA +1996-10-30,40.4405556,-79.9961111,Pittsburgh,PA,disk,240,Saw a disc shaped object from a distance to close. +1996-10-30,32.9808333,-80.0327778,Goose Creek,SC,cigar,60,blue lighted cigar slanted sighted over subdivison. was stationary then turned angle and shot up disappearing fast. 2 nights before s +1996-10-30,40.4333333,-80.7719444,Richmond,OH,triangle,120,orange triangle metallic looking object sighted from windowI was sitting on couch and saw a plane? coming in the distance. No surpr +1997-10-30,40.4405556,-79.9961111,Pittsburgh,PA,disk,180,observed stationary disk object hovering in clear daylight about 100 feet driving nearly beneath it. +1998-10-30,41.6288889,-81.3616667,Kirtland,OH,chevron,180,semi-vee to boomerang shaped object forward edge,lit by a dozen dim white lights.two lights on rear.no sound very low altitude. +1999-10-30,34.3988889,-119.5175,Carpinteria (Near),CA,light,1200,What was thought an aircraft, suddenly stopped, did a series of acrobatic tricks, tremendous speed from standstill, no noise. Suddenly +1999-10-30,32.8472222,-117.2733333,La Jolla,CA,triangle,3600,Have viewed(and photographed some)numbers of craft since 09/11/99, at various ranges from approximately 100 yds to several miles. +1999-10-30,38.6580556,-77.25,Woodbridge,VA,oval,600,3 ooval objects came from about 75 degrees at high speed and turned West at steady speed.Object were engulphed in red and orange like f +1999-10-30,32.7152778,-117.1563889,San Diego,CA,chevron,10,Boomerang shaped object flew over my house. Dim lights were in a chevron shape. Flew from the ocean (west) to east. Very fast. Lights c +1999-10-30,37.7397222,-121.4241667,Tracy (15 Miles South Of),CA,disk,90,On or around October 30, 1999, two craft where observed approximately 500 feet in the air 15 miles south of Tracy California. +1999-10-30,45.3247222,-118.0866667,La Grande (10 Miles East Of),OR,rectangle,60,A very slow moving brightly lit object crossed I-84 north to south about 150-200 feet above road and disappeared into mountains south o +1999-10-30,30.0083333,-97.1591667,Smithville,TX,circle,25,i was taking dog for walk and was noticing how pretty sky was when i noticed an red-orange glow in the sky. +2000-10-30,32.7152778,-117.1563889,San Diego,CA,other,60,Faint starlike objects traveling at a very high rate of speed +2000-10-30,45.2102778,-123.1975,Mcminnville,OR,cigar,300,Long white cigar shaped object seen over McMinnville Oregon heading south +2000-10-30,33.1383333,-95.6008333,Sulphur Springs,TX,circle,43200,had a circle of lights with Y in center of it. +2000-10-30,32.2744444,-90.1319444,Pearl,MS,triangle,240,3 of us saw a craft fly, hover, and then take off very quickly - all this with no sound +2000-10-30,38.6786111,-121.7722222,Woodland,CA,sphere,360,Witnessed a round orange burning object silently flying, CA +2000-10-30,38.6786111,-121.7722222,Woodland,CA,sphere,480,It was approximately 9:12 PM in Woodland, near Sacramento, CA on October 30th. I was standing outside and noticed something flying slo +2001-10-30,30.2669444,-97.7427778,Austin,TX,fireball,3,Firework like flash looking like one lighted point hitting another and creating short spark shower, then dissapears. +2001-10-30,39.7047222,-105.0808333,Lakewood,CO,fireball,180,orange-yellow glow balls, This sight doesn't give you the information. None of the below options really apply. +2001-10-30,35.2269444,-80.8433333,Charlotte,NC,sphere,600,White dots in a clear blue sky. +2001-10-30,43.0480556,-76.1477778,Syracuse,NY,unknown,300,thin black line moving accross moon 10-30-01 +2002-10-30,38.5816667,-121.4933333,Sacramento,CA,circle,120,Four, extremely bright orange circles in the sky catch my attention +2002-10-30,38.8966667,-121.0758333,Auburn,CA,chevron,180,The craft began as a white triangular shaped craft with luminescent orbs around the periphery.It then changed it’s shape to that of +2002-10-30,40.9022222,-81.7341667,Marshallville,OH,other,15,At a 4 way stop, looking to my left I saw a image, that I first thought was a blimp coming at me at an angle. Realizing it was extremel +2002-10-30,46.8816667,-113.5786111,Potomac,MT,cigar,120,Silver slow-moving, noiseless, low altitude, almost missile shaped object. +2002-10-30,41.5833333,-87.5,Hammond,IN,disk,45,A floating, rolling silvery-black disk flies over the treetops in Hammond, Indiana. +2002-10-30,30.2669444,-97.7427778,Austin,TX,fireball,5,There was no smoke or trailing from the fireball so it wasn't a rocket or metor. +2002-10-30,34.4208333,-119.6972222,Santa Barbara,CA,triangle,4,I observed three pale white lights spaced equalaterally rapidly moving in the the sky from east to west above Santa Barbara California +2002-10-30,48.1172222,-122.7591667,Port Townsend,WA,chevron,300,chevron shaped formation, bright spotlight +2002-10-30,40.7372222,-114.0366667,Wendover,UT,cross,180,I was stand by a building on the old Wendover Airfeild. Southeast I noticed something moving in the sky. As I watch it moved from south +2002-10-30,40.7608333,-111.8902778,Salt Lake City,UT,unknown,22,2 people saw a slow moving very large "darkness" with faint light reflecting off its leading edge. +2002-10-30,38.7744444,-92.2569444,Ashland,MO,chevron,240,What appeared to be a stealth bomber allowed stars to shine through. +2002-10-30,26.525,-80.0666667,Boynton Beach,FL,other,8,Flying wing like UFO siting in on 10/30/02 at 11:37pm in Boynton Bch FLA +2003-10-30,41.3897222,-81.4413889,Solon,OH,other,10,Cream (light tan) colored half circle near Richmond Rd. Aurora Rd Intersection north of Hillcrest Memorial Park Cemetary. +2003-10-30,33.9791667,-118.0319444,Whittier,CA,light,5,light that was not a plane +2003-10-30,39.0483333,-95.6777778,Topeka,KS,disk,300,I was driving north and saw a silver disc in the northern sky. +2003-10-30,41.3116667,-81.5683333,Sagamore Hills,OH,light,900,At about 7:10 PM on the 30th of October, halloween(halloween was changed to the 30th in this area because of a major football playoff g +2003-10-30,41.7075,-86.895,Michigan City,IN,oval,300,Bright orange light that appeared after the solar flare, disapeared within 5 or 6 minutes. +2003-10-30,33.8958333,-118.2191667,Compton,CA,light,600,Red Star like light in LA night sky +2003-10-30,41.0441667,-83.65,Findlay,OH,unknown,900,Strange Jet +2003-10-30,38.9794444,-90.9805556,Troy,MO,triangle,30,Unknown triangular (Kite-like) seen in sky over home +2003-10-30,45.7544444,-122.8763889,Scappoose,OR,triangle,5,2 more fast, noiseless, triangular objects seen above Scappoose, OR within 1 week of first sighting +2003-10-30,28.0833333,-80.6083333,Melbourne,FL,sphere,5,While driving a white sphere crossed road in front of us at high speed then turned straight down and disappeared. +2004-10-30,46.8722222,-113.9930556,Missoula,MT,other,180,Missile shape left mountaintop without sound or lights disappearing into a black cloud . +2004-10-30,47.6063889,-122.3308333,Seattle,WA,formation,30,Flying v-formation of glowing orb-like craft. +2004-10-30,31.4108333,-96.5719444,Thornton,TX,sphere,1.2,While siting in the front yard conversing with a friend and skywatching for meteors a bright blue violet light appeared rising over the +2004-10-30,40.8,-96.6666667,Lincoln,NE,other,960,Two red lights. It was like they were on each end of a bar and just moving slowly from the east sky to the south sky and faded as they +2004-10-30,39.8027778,-83.1519444,Orient,OH,disk,180,I saw a strange object with unusual lights that emitted no sound and was faster than any aircraft known to us. +2004-10-30,33.5386111,-112.1852778,Glendale,AZ,circle,480,Red cirlular object over the sky in Glendale,Arizona, October 30, 2004. +2004-10-30,42.135,-87.7580556,Glencoe,IL,formation,900,3 horizontal equally spaced lights in the sky way too big to be an aircraft +2005-10-30,38.7125,-75.9102778,Preston,MD,diamond,900,Diamond shaped silent , low flying craft sighted near preston. Anyone else see it? +2005-10-30,33.4502778,-88.8183333,Starkville,MS,flash,2,Flash of bright green light streaked across the sky for about 2 seconds. +2005-10-30,35.198055600000004,-111.6505556,Flagstaff,AZ,triangle,60,triangular shape object with lights on all three points moving slowly north bound quik flash and disapeares +2005-10-30,31.6669444,-83.1161111,Osierfield,GA,light,900,A point of light made a circle, an x, a z,then it rose up and 6 fainter lights combined with it (3 from each side) then it disappeared +2005-10-30,33.7825,-117.2277778,Perris,CA,other,240,7 SPHERIC OBJECT HOVERING +2005-10-30,39.7683333,-86.1580556,Indianapolis,IN,cylinder,180,Object was a silver cylinder with a bright flourescent blue round top. It reminded me of a wand or staff. +2005-10-30,36.0652778,-119.0158333,Porterville,CA,sphere,30,bright light going and coming in the sky in Porterville Calif. +2005-10-30,33.6,-117.6711111,Mission Viejo,CA,other,2.5,Huge, white meteroid with red flames and brown tail-burns out right over houses! +2005-10-30,38.2919444,-122.4569444,Sonoma,CA,fireball,2,Fireball over the Sonoma Valley +2005-10-30,38.9780556,-122.8383333,Kelseyville,CA,fireball,15,Fast moving fire ball with massive flash in the sky. +2005-10-30,36.0652778,-119.0158333,Porterville,CA,unknown,30,Light over Porterville, Ca. +2005-10-30,37.6447222,-115.7427778,Rachel,NV,other,2700,AFTER ENJOYING A BURGER AT THE LITTLE ALI-INN… +2005-10-30,41.7472222,-73.1891667,Litchfield,CT,light,7200,strange lights in sky +2005-10-30,38.9905556,-77.0263889,Silver Spring,MD,triangle,1500,solid triangle with white lights and no sound hovered and glided +2005-10-30,41.7472222,-73.1891667,Litchfield,CT,light,3600,Orange lights form triangular patterns and move and rotate in unicen +2005-10-30,37.2683333,-93.1169444,Strafford,MO,sphere,3,Cyan Orb that moves left to right while movie in one direction +2005-10-31,37.6016667,-85.9055556,Glendale,KY,other,2,On October 30th, 2005 at 7:50 pm Near Glendale, Ky., My fiance and I were traveling south bound on interstate 65 around mile marker 84 +2006-10-30,38.9011111,-77.2655556,Vienna,VA,sphere,60,White sphere not moving in sky. +2006-10-30,41.3158333,-72.3294444,Old Lyme,CT,flash,60,white (looked like a planet) with red and green flashing around it, like police lights. CT. ((NUFORC Note: Possible star?? PD)) +2006-10-30,42.3266667,-122.8744444,Medford,OR,chevron,60,An extremely fast object of hazy chevron shape from one horizon to the other in a minute's time. ((NUFORC Note: Satellite?? PD)) +2006-10-30,41.6555556,-74.6897222,Monticello,NY,cross,1500,multiple lights seen in sullivan county +2006-10-30,28.5380556,-81.3794444,Orlando,FL,unknown,120,Twin steady white Lights, No Sound, Moving ENE to SSW. +2006-10-30,38.6411111,-75.6113889,Seaford,DE,circle,15,two cicular objects observes for about 15 seconds on a clear night, dimmed slightly once, then again and dissapered +2006-10-30,39.5297222,-119.8127778,Reno,NV,formation,1200,Cluster of nine satellites flying together, two veering around others. +2006-10-30,44.0805556,-103.2305556,Rapid City,SD,triangle,10,Triangular Dark Silent Craft Over Downtown Rapid City, South Dakota +2007-10-30,43.5363889,-73.6680556,Bolton,NY,fireball,120,2 red balls of light moving threw the air way too fast to be a jet +2007-10-30,34.8833333,-82.7075,Pickens,SC,cigar,300,Cigar shaped craft were sighted over the South Carolina mountains in daylight on Oct. 28 and 30, 2007. +2007-10-30,34.8833333,-82.7075,Pickens,SC,cylinder,900,Two large, cylindrical aircraft flew overhead in a steady line, despite having no wings or tail. +2007-10-30,40.0016667,-76.8505556,Dover,PA,triangle,600,black tetrahedron craft spotted in pinchot state park dover pa +2007-10-30,40.7141667,-74.0063889,New York City (Brooklyn),NY,oval,480,It was like a giant black whole in the sky moving slowly from left to right +2007-10-30,33.6694444,-117.8222222,Irvine,CA,changing,45,Sighting near Irvine Spectrum. +2007-10-30,36.175,-115.1363889,Las Vegas,NV,disk,180,Disc over my apt complex with a military plane and helicopter (air force i assume) +2007-10-30,30.6694444,-81.4627778,Fernandina Beach,FL,light,10,Light in the sky, not moving that got extememly bright then went dim and out. +2007-10-30,35.0802778,-96.3988889,Holdenville,OK,light,180,free falling light in central Oklahoma +2007-10-30,33.6638889,-114.2291667,Quartzsite,AZ,triangle,1200,See entry above. +2007-10-30,33.9513889,-98.6683333,Iowa Park,TX,triangle,120,Blindingly bright pink light in night sky. +2008-10-30,37.1236111,-82.6013889,Pound,VA,triangle,6,Triangular craft w/multiple lights seen in Western Virginia on a southerly path. Low and fast. Silent. BBD? +2008-10-30,34.1394444,-117.9763889,Duarte,CA,light,20,Light far beyond mountains flew across very fast and then takes off in a vertical direction +2008-10-30,32.3666667,-86.3,Montgomery,AL,unknown,240,Lights move from NE to SW above Montgomery AL +2008-10-30,40.2961111,-75.0825,Furlong,PA,cigar,240,1 chrome cigar shaped object +2008-10-30,40.7875,-73.8463889,College Point,NY,triangle,60,triangular object with lights at each of its corners. Very Bright, was not moving so fast, then I lost track of it. +2008-10-30,40.9488889,-78.2255556,Morrisdale,PA,oval,120,Shinny bright silver ball floats over sky +2008-10-30,40.0444444,-94.8205556,Rosendale,MO,cylinder,180,At precisely 18:23 30 October I witnessed a flying cylinder.Whilst driving through the small community of Rea, I noticed a small me +2008-10-30,33.4222222,-111.8219444,Mesa,AZ,formation,2400,4 Orbs over Mesa, Arizona seen by at least three witnesses. +2008-10-30,38.6858333,-121.0811111,El Dorado Hills,CA,triangle,300,Large Black Floating Buidling (Box) +2008-10-30,35.7788889,-115.3230556,Jean,NV,disk,4,fluorescent white disk shaped object rapidly moving from northeast to southwest over Jean, Nevada +2008-10-30,33.6188889,-117.9280556,Newport Beach,CA,sphere,2,Ball of light at high speed. ((NUFORC Note: Possible meteor. PD)) +2008-10-30,42.7652778,-71.4680556,Nashua,NH,other,180,3 red lights on semi-circular craft moving VERY FAST on 10/30/08 at ~8:30pm in the SE sky over Nashua, NH. +2008-10-30,32.3880556,-98.9788889,Cisco,TX,formation,30,4-6 orange/amber lights fading in and out +2008-10-30,34.8088889,-79.5480556,Laurel Hill,NC,triangle,300,Three red light in triangular shape being followed by two helicopters. +2008-10-30,27.2541667,-80.23,Jensen Beach,FL,sphere,10,Two round, soundless lights flying from the ocean to the west. +2008-10-30,37.1236111,-82.6013889,Pound,VA,triangle,7,A "Flying Triangle" spotted along the VA/KY border. Large, bright, silent object seen going SSW +2008-10-30,32.4486111,-99.7327778,Abilene,TX,light,180,Lights over Abilene, TX +2008-10-30,40.8963889,-78.2208333,Philipsburg,PA,light,120,Lights appearing abnormally in the night sky +2009-10-30,30.0463889,-94.885,Dayton,TX,triangle,300,Driving down Highway 146 Friday night around 9:30PM my husband and I noticed a very bright object in the sky. My husband asked if that +2009-10-30,33.8352778,-117.9136111,Anaheim,CA,diamond,720,Large fiery orange object seemed to come apart then turned and climbed in altitude and speed. +2009-10-30,33.9533333,-117.3952778,Riverside,CA,light,180,Blue and Orange lights floating stationary. +2010-10-30,42.5277778,-92.4452778,Cedar Falls,IA,light,300,Diagonal line of bending light seen above university from the moon on Hallow's Eve. +2010-10-30,32.5230556,-92.6377778,Ruston,LA,teardrop,5400,Possible solid object surrounded by teardrop-shaped streak seen in morning sky. +2010-10-30,42.1705556,-88.0477778,Kildeer,IL,cylinder,20,Slow and silent +2010-10-30,37.7477778,-84.2947222,Richmond,KY,light,1200,Green falling object from the sky over Richmond Ky 2010 +2010-10-30,39.0516667,-84.5341667,Fort Wright,KY,fireball,300,Orange orb over Covington +2010-10-30,35.3394444,-97.4863889,Moore,OK,oval,180,Bright Yellow/Orange light that seemed to come out of nowhere. A second object appeared hovering, got bright and both dissppeared. +2010-10-30,27.9472222,-82.4586111,Tampa,FL,triangle,60,triangular airplane that sorta looked like it but different hovering over building. +2010-10-30,40.7744444,-97.0502778,Milford,NE,changing,300,cloked ship that the space around it bent as it moved +2010-10-30,35.2908333,-97.8119444,Tuttle,OK,diamond,2100,cloaked UFO at high school track. +2010-10-30,35.2908333,-97.8119444,Tuttle,OK,triangle,1200,Three yellow-orange lights flying over-head numerous times. +2010-10-30,39.6291667,-75.6586111,Bear,DE,light,45,group of reddish lights flying over a residential neighborhood. +2010-10-30,36.0525,-95.7905556,Broken Arrow,OK,changing,30,Seven unexplained lights over Broken Arrow OK...2 witnes Army Vet. +2011-10-30,41.3661111,-81.8544444,Berea,OH,circle,120,Orange light in the sky, that vanished suddenly. +2011-10-30,39.7683333,-86.1580556,Indianapolis,IN,light,300,Parade of mysterious Lights traveling across Indianapolis sky for approx 5 min +2011-10-30,34.7694444,-92.2669444,North Little Rock,AR,sphere,300,Glowing spheres over North Little Rock, Arkansas. +2011-10-30,46.2397222,-119.0994444,Pasco,WA,unknown,3,Accelerating light +2011-10-30,39.7391667,-104.9841667,Denver,CO,triangle,10,5 Orange balls of light in triagle formation followed by dim white light. +2011-10-30,39.0991667,-76.8486111,Laurel,MD,light,3,white light traveling fast +2011-10-30,40.8858333,-74.0438889,Hackensack,NJ,changing,4800,To whom it may concern, I am reporting my sighting from last night October 30th 2011 appx. 5:00pm eastern. I am a resident of Nort +2011-10-30,40.7402778,-75.31,Nazareth,PA,teardrop,3600,Tear Drop UFO observed for almost one hour, rapid movement with pictures and video link. Cant explain +2011-10-30,36.6913889,-79.8727778,Martinsville,VA,sphere,1800,14 yellowish/orange spears with protruding glowing rod coming out the back +2011-10-30,37.7416667,-121.1233333,Ripon,CA,chevron,10,large V shaped craft. +2011-10-30,29.875,-98.2622222,Canyon Lake,TX,oval,45,Bright white oval jumps southwest then disappears into thin air. +2011-10-30,40.8152778,-73.1127778,Ronkonkoma,NY,light,45,10/30/2011 21:00 Ronkonkoma NY bright reddish orange round lights triangular formation UFO's 10/30/11 +2011-10-30,40.8152778,-73.1127778,Ronkonkoma,NY,light,45,10/30/2011 21:00 Ronkonkoma NY bright reddish orange round lights triangular formation UFO's 10/30/11 +2011-10-30,44.2563889,-70.2566667,Turner,ME,fireball,90,Red orb comes down our driveway +2011-10-30,32.3475,-97.3863889,Cleburne,TX,triangle,5,Traveling southwest, triangular dim lit silent craft. Translucent with approximately twenty lights. Wife was outside with the dog and s +2011-10-30,39.9611111,-82.9988889,Columbus,OH,cigar,300,Possible UFO's over Columbus Ohio October 29th +2012-10-30,40.8075,-91.1127778,Burlington,IA,circle,1200,Saw big bright flickering amber light/object flying upwards that disappeared and reappeared with several planes sweeping the sky. +2012-10-30,36.1658333,-86.7844444,Nashville,TN,circle,5,WE SAW A GREEN BALL SHAPE FALLING OUT OF THE SKY AT 6:10 AM ON TUESDAY OCTOBER 30TH 2012...IT WAS VERY LARGE BUT WAS GONE IN 5 OR 10 SE +2012-10-30,36.1658333,-86.7844444,Nashville,TN,fireball,300,Huge bright object the size of a house slowly traveling across sky +2012-10-30,41.2380556,-81.8419444,Brunswick,OH,light,1800,Teal Green & Red Lights over the clouds in Brunswick Ohio +2012-10-30,36.1658333,-86.7844444,Nashville,TN,unknown,120,4 objects not visible to the naked eye, flying around odd vertical "rainbow." +2012-10-30,35.925,-86.8688889,Franklin,TN,circle,180,Driving home I saw a very bright slow moving object going from east to west - not a plane, I thought it was like a shooting start but i +2012-10-30,41.3275,-73.82,Shrub Oak,NY,egg,120,The night of hurricane Sandy a tree was ripped from its trunk by a huge gust of wind. It pulled the utility lines and the utility pole +2012-10-30,32.7677778,-117.0222222,La Mesa,CA,light,180,Large star-like object moved up and away in the south-east sky +2012-10-30,34.6591667,-93.6908333,Sims,AR,unknown,600,Flashing white lights on a craft appearing in the east and heading west, appearing to be of a circular shape, silent, slow, diagonal. +2012-10-30,32.4366667,-111.2247222,Marana,AZ,changing,3600,Orange lights appearing and disappearing around Marana +2012-10-30,39.8438889,-84.1247222,Huber Heights,OH,light,600,Orange lights over Huber Heights, Ohio. +2012-10-30,39.8066667,-101.0416667,Atwood,KS,light,90,At about 2245, an object that appeared to be a star or planet caught my eye. I looked away, then glanced back up, and noticed that the +2012-10-30,33.6888889,-78.8869444,Myrtle Beach,SC,light,1,A bright light moving across the sky, then it changed direction. +2012-10-30,32.4822222,-96.9941667,Midlothian,TX,triangle,180,Two identical triangular shaped objects flying high, orange color orbs underneath. +2013-10-30,32.7152778,-117.1563889,San Diego,CA,fireball,180,Two round orange lights hovering over south San Diego. +2013-10-30,43.4666667,-112.0333333,Idaho Falls,ID,diamond,5400,Beauty in the sky. ((NUFORC Note: Possibly a sighting of Sirius. PD)) +2013-10-30,46.1469444,-122.9072222,Kelso,WA,light,6,Bright orb with long tail shooting from east to the northwest horizontal and upward. ((NUFORC Note: Meteor? PD)) +2013-10-30,46.2858333,-119.2833333,Richland,WA,light,10,White orb speeding across the sky in eastern Washington. ((NUFORC Note: Many reports to news. Meteor? PD)) +2013-10-30,48.2766667,-116.5522222,Sandpoint,ID,teardrop,20,20 SEC SHOOTING STAR. ((NUFORC Note: Many reports to news media. Possible meteor, we suspect. PD)) +2013-10-30,47.7180556,-116.9505556,Post Falls,ID,light,8,White light particle beam with small ball-like head moving silently over Post Falls Idaho. +2013-10-30,46.0647222,-118.3419444,Walla Walla,WA,light,20,Low-flying lighted object over Walla Walla, WA. +2013-10-30,43.4919444,-116.4191667,Kuna,ID,fireball,4,Greenish-white fireball tracking east-west, spotted early a.m. 10-30-13, at high rate of speed; SW Ada County, ID. +2013-10-30,41.0816667,-74.5927778,Ogdensburg,NJ,light,10800,Consistent, bright lights in sky. +2013-10-30,41.4088889,-75.6627778,Scranton,PA,light,3600,Extremely bright ball of light over West Scranton. ((NUFORC Note: Possible sighting of Venus? PD)) +2013-10-30,35.8422222,-90.7041667,Jonesboro,AR,light,900,4 white lights spinning fast in a big circle. +2013-10-30,30.3672222,-89.0927778,Gulfport,MS,sphere,540,Bright White light. +2013-10-30,37.6086111,-77.3736111,Mechanicsville,VA,unknown,60,Very loud craft with two vertical neon green circles. +2013-10-30,35.9216667,-81.1766667,Taylorsville,NC,triangle,25,UFO seen in Taylorsville, NC 28681. +2013-10-30,28.5491667,-81.7730556,Clermont,FL,light,1260,Spotted 3 red lights triangular in Clermont, Florida. +2013-10-30,37.4419444,-122.1419444,Palo Alto,CA,disk,120,Disk-shaped object with red/blue/green lights flowing left to right that appeared to stop and become a horizontal bar of light. +2013-10-30,37.6391667,-120.9958333,Modesto,CA,flash,60,Stationary blinking white light. +2013-10-30,40.5697222,-79.765,New Kensington,PA,formation,900,6 bright orange lights in the sky moving south to north on 10/30/13 at 10 PM in New Kensington, PA. +2013-10-30,33.1283333,-107.2522222,Truth Or Consequences,NM,light,3600,Green Red, White and occasionally Blue spinning lights that appear stationary. +1953-10-31,29.9544444,-90.075,New Orleans,LA,oval,2,20+ ovals flying over New Orleans +1967-10-31,31.9972222,-102.0775,Midland,TX,light,5,I remember this event very distinctly. However I am unsure of the date. It’s approximate. However I am very sure it was during a Hal +1967-10-31,34.7744444,-96.6780556,Ada,OK,circle,12,Extreemly fast moving multi colored circle of light. +1969-10-31,43.3227778,-76.4175,Fulton,NY,circle,1200,Large bright orange cigar shaped craft. +1973-10-31,34.1619444,-97.4255556,Wilson,OK,cigar,600,Metallic Cigar shaped Object +1974-10-31,42.2711111,-89.0938889,Rockford,IL,light,5,Bright white light, very fast, no sound or sonic boom, impossible maneuvers, too fast for aircraft +1976-10-31,34.0522222,-118.2427778,Los Angeles,CA,oval,480,Ufo over downtown Los Angeles witnessed by a husband and wife +1976-10-31,32.9125,-96.6386111,Garland,TX,other,120,Halloween-walking inside with parents, saw several missile shaped, copper crafts flying in a line formation at a low altitude, very slo +1981-10-31,41.4227778,-122.385,Weed,CA,disk,600,10/31/1981 Saucer Shaped UFO hovering between the moutain Mt. Shasta and the city of Mt. Shasta California +1982-10-31,46.8766667,-96.7030556,Dilworth,MN,other,60,Older sister and I witnessed 3 orange, glowing, bell shaped shaped objects in northern sky. No sound. +1983-10-31,43.3044444,-70.9761111,Rochester,NH,diamond,1800,Elongated diamond shaped, platinum silver disc with various colored lights aligning the perimeter of the disc... +1985-10-31,40.7141667,-74.0063889,New York City,NY,disk,15,Disk Shaped object streaked across Central Park +1986-10-31,33.5725,-84.4133333,Riverdale,GA,other,180,Many witnesses to ufo sighting +1987-10-31,36.4522222,-93.1883333,Omaha (Near),AR,triangle,900,Silent huge triangular ship flies right over highway 65 North. +1988-10-31,47.2530556,-122.4430556,Tacoma,WA,disk,45,TWO CIRCULAR OBJECTS, CIRCLING AROUND EACH OTHER, SOMTIMES GOING SO HIGH, AND SOMETIMES TOO CLOSE, IN SOUNDLESS UNUSUAL SPEED.COMPARING +1988-10-31,35.8697222,-96.9636111,Tryon (North Of),OK,triangle,420,Large, silent, triangular object with huge beam of orange light coming from the underside of the craft viewed by several witnesses. +1989-10-31,39.395,-107.0897222,El Jebel,CO,unknown,5,Briefly observed black, silent, slow-moving object low enough to reflect ground lights from bottom, convex surface. +1990-10-31,38.7366667,-76.5897222,Friendship,MD,disk,60,I saw a saucer shaped, somewhat transparent object moving through the air very slowly about 200 feet from my house for about 1 minute. +1991-10-31,40.015,-105.27,Boulder (10 Miles West),CO,circle,45,Two glowing translucent spheres chasing and playing "tag" in the trees, one landed, one flew away. +1991-10-31,40.1438889,-75.1161111,Willow Grove,PA,other,5,Huge "V" shape craft as seen before over mountains in California/Las Vegas. +1992-10-31,41.6283333,-70.3875,Osterville,MA,rectangle,10,A seemingly close object with a rectangular pattern of lights moved silently +1992-10-31,42.2458333,-84.4013889,Jackson,MI,fireball,15,Saw what appeared to be a meteor at first, but discovered differenty. +1993-10-31,26.5625,-81.9497222,Cape Coral,FL,triangle,120,I never reported this, but since I found this website, thought I would in case anyone else may have reported something around the same +1994-10-31,32.7447222,-116.9980556,Spring Valley,CA,light,2700,red light over Tijuana Mexico viewed from Spring Valley +1994-10-31,36.1075,-83.2869444,White Pine,TN,sphere,900,Yellowish/orange sphere seen by 4 police officers in East Tn +1995-10-31,47.2530556,-122.4430556,Tacoma,WA,light,120,Woman sees extremely bright, "fuschia-pink" ball of light settle into neighbor's field! Light reflected off truck; dog stared at it. +1995-10-31,33.7869444,-84.435,Rockdale County,GA,circle,300,I think I was purposely visited becuase of events in my life . My arabic grandmother had just passed. +1996-10-31,43.12,-85.56,Rockford,MI,flash,5,It was on a Halloween night and I saw a flash in the sky and zoomed off in the air with a bunch of colors following it. +1996-10-31,37.6922222,-97.3372222,Wichita,KS,light,300,Another report of the 3 flashing lights in the sky Halloween ྜ +1997-10-31,33.7866667,-97.7255556,Nocona,TX,sphere,12,A very dim, round ball of light that moved at a very high speed across the sky--much faster than a jet, but slower than a meteorite. +1997-10-31,31.7586111,-106.4863889,El Paso,TX,other,120,I saw what appeared papers swirling high in the atmosphere. They changed into two huge white kite like objects which then turned into +1997-10-31,33.7455556,-117.8669444,Santa Ana,CA,light,120,Saw an orange, round object in the northern sky under clear conditions. Object was flickering in brightness and was moving very slowly +1998-10-31,61.2180556,-149.9002778,Anchorage,AK,circle,10,It was gray and did not move or have any light to it. +1998-10-31,46.8722222,-113.9930556,Missoula,MT,changing,20,I noticed a very dim pin point of what looked like a star go from a pin point to half the size of the moon while its light intensified +1999-10-31,29.7630556,-95.3630556,Houston,TX,cylinder,60,Object with bright lights(white) on both ends, with a red in blue light just behind the white lights on both ends. Moving slowly north +1999-10-31,32.7152778,-117.1563889,San Diego (Spring Valley) (20 Mi. E Of Sd Airport),CA,fireball,45,Wife driving in car sited orange fireball size of thumb at arms length. moving from west to east movig 1/3 of sky in 45 sec.length of t +1999-10-31,39.7391667,-104.9841667,Denver,CO,sphere,300,While visiting relatives in Denver Colorado on the outskirts of the city my daughter and her boy friend pointed to the sky just above t +1999-10-31,41.9238889,-89.0686111,Rochelle,IL,fireball,4,While driving into Rochelle...saw a glowing ball of light falling over a cornfield and disappearing into a V-Shaped opening in the sky. +1999-10-31,47.0530556,-122.2930556,Graham,WA,other,60,Object in sky appeared to be on fire moved at slow steady pace straight toward the Earth. +1999-10-31,42.5158333,-73.6105556,Nassau,NY,triangle,600,Triangular object seen hovering over my car making no sound at alll, viewed by myself and my daughter +1999-10-31,47.9786111,-122.3544444,Clinton (Southern End Of Whidbey Island),WA,unknown,1800,Object viewed (at night) multi-colored lights(very bright, strobe-like) +1999-10-31,32.5838889,-117.1122222,Imperial Beach,CA,fireball,300,A ROUND CIRCULAR SHAPE OBJECT LARGER THAN A AIRPLANE HOVERED OVER A RESIDENTIAL AREA FOR ABOUT 5MINUTES.BRIGHT RED LIGHT ILLUMINATED TH +1999-10-31,34.0136111,-83.8277778,Auburn,GA,rectangle,300,We noticed a bright lime green colored object coming across the sky right above the tree tops. It went slowly across the sky from nort +1999-10-31,34.0136111,-83.8277778,Auburn,GA,circle,300,We all noticed a green light coming across the sky that was practically touching the trees. This object had no sound, was completely g +1999-10-31,44.8433333,-122.9516667,Turner,OR,circle,300,Glowing red circle, abotu 15 ft. above the ground. Shot quickly across the sky than disapeared in about 5 minuets. +2000-10-31,43.6136111,-116.2025,Boise,ID,circle,240,Halloween UFO +2000-10-31,38.7522222,-121.2869444,Roseville,CA,circle,60,Around Halloween my two daughters and I were driving home from work on Atlantic Street in Roseville, CA. As we approached I-80 heading +2000-10-31,46.1416667,-88.0938889,Channing,MI,disk,60,saucer shaped flew across sky in Channing, MI on 10/31/00 at 17:30. +2000-10-31,41.1569444,-83.4169444,Fostoria,OH,changing,30,Between 1800 and 1900 on Tuesday, October 31, 2000, my mother and I both witnessed in the clear night sky what first appeared to be a f +2000-10-31,42.7325,-84.5555556,Lansing,MI,light,60,Several witnesses observed a bright white light moving very fast across the South Lansing sky. +2000-10-31,40.0455556,-86.0086111,Noblesville,IN,light,10,A vary fast moving Jupiter size light, looking north in central Indiana going east to west for about 6-10 seconds. +2000-10-31,42.5802778,-83.0302778,Sterling Heights,MI,other,60,The object was moving from ESE to WNW and it had many lights +2000-10-31,42.6583333,-83.15,Rochester Hills,MI,fireball,11,Object burning up in atmosphere traveling east to west at high rate of speed +2000-10-31,43.4194444,-83.9508333,Saginaw,MI,fireball,2,Large, bright 'shooting star' going from Northeast to Northwest - 18:30 - 19:15 on Halloween +2000-10-31,42.4605556,-83.6516667,South Lyon,MI,light,10,shooting light over michigan +2000-10-31,41.3683333,-82.1077778,Elyria,OH,unknown,20,Shooting star flies by -- 1/2 hour later we have what appears to be 8 search aircraft looking in the area. +2000-10-31,42.7533333,-84.7463889,Grand Ledge,MI,light,30,light traveling at high speed North to South-West +2000-10-31,42.8263889,-84.2194444,Perry,MI,fireball,15,Bright Meteor object Halloween night +2000-10-31,41.24,-83.6433333,Cygnet,OH,egg,2700,Saw a craft streak across the sky in ohio. +2000-10-31,41.24,-83.6433333,Cygnet,OH,egg,2700,The ship crossed the sky, stopped shot up about a half mile, hovered for a while and changed a multitude of colors and departed with us +2000-10-31,39.0991667,-76.5361111,Riverdale,MD,diamond,20,Halloween UFO! +2000-10-31,33.8247222,-87.0861111,Sipsey,AL,disk,60,Round, flat UFO with lights all around, over Hwy 78 Walker Co Alabama. +2000-10-31,42.4394444,-83.7438889,Whitmore Lake,MI,circle,120,Bright Light High in the sky, moving faster than any satellite +2001-10-31,34.1063889,-117.5922222,Rancho Cucamonga,CA,fireball,360,fireball /2 nights in a row / no thanks! +2001-10-31,35.8680556,-83.5619444,Sevierville,TN,circle,35,Brillant round craft that hoovered in the morning sky in Tennessee... +2001-10-31,36.6002778,-121.8936111,Monterey,CA,changing,20,As I was panning my Iphone from the sun to the shore line I captured what appeared to be a RED glowing object with a WHITE center resem +2001-10-31,42.2188889,-70.7861111,North Scituate,MA,disk,60,North scituate, halloween, 3 friends saw flying saucer, it was gone in seconds. +2001-10-31,29.4238889,-98.4933333,San Antonio,TX,formation,240,Very large UFO sighted while masked/hiding in rolling cloud bank at sunset. +2001-10-31,34.1397222,-118.0344444,Arcadia,CA,disk,300,A large flying saucer with white lights all around it, in the greater L. A. area, +2001-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,900,Three Red Lights in Illinois +2001-10-31,39.0911111,-94.4152778,Independence,MO,light,3,orange and blue streak of light going from east to west very low. if it was a meteorite it was very low and very bright. and 8:30 pm wa +2001-10-31,41.4036111,-95.0136111,Atlantic,IA,sphere,1.5,A glowing blue ball quickly passed in and out of low hazy clouds right above me. +2001-10-31,37.8391667,-94.3544444,Nevada,MO,other,3,The object was bright neon green and shot through the sky for just a few seconds, then disappeared. +2001-10-31,37.2152778,-93.2980556,Springfield,MO,light,10,MISSOURI INVESTIGATORS GROUP Report: White ball of light over Springfield, MO moving south to north very quickly and low at 9:15pm. +2001-10-31,39.7391667,-104.9841667,Denver,CO,triangle,10,taking pictures of blue moon. of 5 pictures it was it was there long enough for only 1. the 3rd pic. i took +2001-10-31,32.3413889,-90.3216667,Clinton,MS,fireball,5,Green fireball seen shooting up from the ground +2002-10-31,28.5380556,-81.3794444,Orlando,FL,triangle,300,Triangular shape in sky with bright lights. +2002-10-31,46.9422222,-122.6047222,Yelm,WA,other,600,orange balls that stretched out for about 10 minutes. +2002-10-31,47.6063889,-122.3308333,Seattle,WA,light,300,Small bright light around north face of Mt. Rainier +2002-10-31,47.8108333,-122.3761111,Edmonds,WA,fireball,600,A 747 in halloween costume?not with those moves +2002-10-31,29.7630556,-95.3630556,Houston,TX,triangle,30,v shape ufo +2002-10-31,29.1869444,-82.1402778,Ocala,FL,light,900,A strange circling glow. +2002-10-31,39.43,-77.8044444,Shepherdstown,WV,triangle,300,UFO over Shepherdstown, WV on 10/31/02 +2003-10-31,38.5816667,-121.4933333,Sacramento,CA,sphere,2,SPEAR SHAPE OBJECT BLUE IN COLOR +2003-10-31,29.7352778,-94.9772222,Baytown,TX,other,900,off "v" shaped, non-reflective, huge in size, did not make any sounds +2003-10-31,33.3941667,-104.5225,Roswell,NM,flash,5,Green flash traveling at high velocity +2003-10-31,47.6063889,-122.3308333,Seattle,WA,unknown,1200,Strange hovering and engineless jet noises too near for comfort. +2003-10-31,47.6063889,-122.3308333,Seattle,WA,light,15,a steaking light in the bright morning sky +2003-10-31,30.6322222,-87.0397222,Milton,FL,changing,600,Black cloud vortex appears, and I lose tens minutes of time that I cannot account for. +2003-10-31,48.2413889,-122.3694444,Stanwood,WA,triangle,5,triangular shape with lights on bottom hovered, then vanished in night +2003-10-31,30.6925,-94.1775,Spurger,TX,disk,2700,45 minutes left to right and circular motion seen several times since +2003-10-31,42.9855556,-95.8733333,Granville,IA,cigar,240,5 strange lights hoevering above ground +2003-10-31,44.9727778,-74.7313889,Rooseveltown,NY,circle,600,had bright lites then flashing colored lights ,silent, slow moving and low +2003-10-31,41.4372222,-71.5019444,Wakefield,RI,triangle,120,Large triangular object flying fairly low over Route 1 in wakefield Rhode Island on Halloween. 4 large white lights. +2003-10-31,44.1486111,-73.3408333,Panton,VT,triangle,180,Oddly lit, semi-triangular aircraft captured on video +2003-10-31,40.7691667,-80.0630556,Evans City,PA,triangle,300,strange lights in the sky +2003-10-31,32.2216667,-110.9258333,Tucson,AZ,triangle,28800,Visible by the naked eye, appear to be several bright, triangular objects in the East and West sky. +2004-10-31,47.6063889,-122.3308333,Seattle,WA,fireball,10,3 of us were standing out on my deck halloween nite. we were talking about telescopes. I started to point at a star in the clear nite s +2004-10-31,43.1836111,-89.2136111,Sun Prairie,WI,triangle,600,((NUFORC Note: Student report. PD)) We witnessed a soft glowing light off to the NE of our point of reference. +2004-10-31,47.6063889,-122.3308333,Seattle,WA,light,10,103104 Bright Light +2004-10-31,33.8080556,-84.1702778,Stone Mountain,GA,circle,300,Two dots very high in the sky then moved and dissapeard in 5 minuts +2004-10-31,40.7886111,-73.6,Old Westbury,NY,disk,300,A space ship was descending to the ground +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,1200,3 BRIGHT RED LIGHTS IN TRAINGLE FORMATION SITTING STATIONARY IN THE NIGHT SKY +2004-10-31,37.9886111,-84.4777778,Lexington,KY,circle,900,Dark orange, circular, stationary object +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,formation,900,3 bright red lights going into formation in the eastern sky. First in triangle formation, then one seemed to disappear. Then they slo +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,2400,Three red lights return to Tinley Park,Il +2004-10-31,41.6266667,-93.7119444,Urbandale,IA,triangle,15,I witnessed a large, golden, triangular-shaped object hovering in the sky. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,cigar,1500,3 Red Lights over Tinley Park, IL +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,1200,I think this may have been man made because of the slow speed involved, like drifting in the breeze. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,1200,3 red lights moving slowy started in triangle and rotaed the form a spaced apart line +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,2100,Three Red Lights Over Tinley Park, 10/31/04 +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,triangle,2700,3 red lights, in triangular shape, moving very slowly +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,formation,900,3 red lights in the sky on Halloween night in Tinley Park--Eastern Sky +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,1800,Three red lights in a triangle formation moving toward the west and then moving toward the east and disappearing one by one. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,circle,1500,Thee red lighted objects moving without any noticable sound toward the East, suddenly disappeared. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,circle,1500,Three lights form a triange in the easter sky. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,900,I reported this on august 21 about the ufo's over Tinley Pk. and again, they have come back. Tonight 10/31/2004 at 7:45pm 3 more red li +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,triangle,900,There were three red dot in triangle shape, that seemed to be much higher than planes passing through. +2004-10-31,41.4958333,-87.8486111,Frankfort,IL,light,1500,3 red lights in formation traveling southeast slowly and faded out one by one. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,1800,Three red lights seen flying over Tinley Park, IL on Halloween, at least 12 witnesses. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,900,3 small bright red lights evenly spaced but at a far distance moving in unison then coming together +2004-10-31,41.6027778,-87.7438889,Oak Forest,IL,light,1200,3 red lights move slow across the sky and fade out one by one +2004-10-31,41.5852778,-87.8430556,Orland Hills,IL,formation,1800,3 bright red lights(triangular formation)seen from Orland Hills +2004-10-31,41.5852778,-87.8430556,Orland Hills,IL,light,1500,3 red lights that stayed in a triangle formation, moving very slowly then seem to be hovering +2004-10-31,41.6302778,-87.8538889,Orland Park,IL,light,900,Three red lights the hovered in a form of a triangle. +2004-10-31,47.6063889,-122.3308333,Seattle,WA,light,15,single light going away +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,circle,900,Three red lights moving slowly in the sky. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,formation,1800,Red Lights again in Tinley Park, second sighting in two months +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,formation,1800,Slow moving red lights. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,1800,3red lights sitting still for 20 minutes then moved very slowly and vanished one after another +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,1800,3red lights sitting still for 20 minutes then moved very slowly and vanished one after another My fiend that I called video taped it. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,1800,3 red lights movin E/SE +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,1800,Three red lights in the sky in tinley park. They all moved in unision. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,1800,Red Lights (UFOS) above Tinley Park, IL on October 31, 2004. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,600,The triangular formation of red lights witnessed on Aug.21st in Tinley Park, IL reappeared on Oct. 31st. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,900,Tinley Pk Red lights - have video +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,900,At about 8pm central time, October 31, 2004, 3 bright red lights were seen in the Eastern Sky. They started out in a gradual "L" forma +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,900,three lights in tinley park +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,other,1800,3 Bright Red Objects in South Eastern Sky that took different formations then disappeared. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,other,1800,3 orange lights in the sky over Tinley Park. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,unknown,1200,3 laser red lights forming a triangle and at times a straight line traveled west to east slowly. after 20 minutes one disappeared. Ano +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,unknown,600,3 red lights +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,unknown,600,Three red lights in overhead sky. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,triangle,240,Three lights appeared to form a traingle +2004-10-31,41.4225,-87.9858333,Manhattan,IL,light,60,Red Lights seen from 2 different locations at same time while on phone with family member. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,circle,900,3 red lights moving in pattern of straight line and triangle (not first sighting) +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,triangle,1200,Red lgihts....moving really weird...fast than slow +2004-10-31,41.5733333,-87.7844444,Tinley Park (Viewed From),IL,changing,900,Was notified by a neighbor of 3 bright non blinking red crisp lights in the eastern sky. Went outside to observe 3 bright non blinking +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,sphere,600,Three red sphere shaped lights moved slowly across the sky and then one of them just disappered, the others followed. +2004-10-31,41.5261111,-87.8891667,Mokena,IL,light,900,3 red blinking lights in triangle formation and barely moving.moving into a single file line and than disapearing one by one.in +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,circle,600,3 red lights in southeast sky hovering slowly +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,600,We saw 3 red lights in the Eastern sky traveling slowly in a straight line to the southeast. They then shifted into an L shape and held +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,sphere,600,3 motionless red spheres of light +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,triangle,600,A friend of mine called me and told me to look to the east and I saw three red lights in a triangle formation. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,unknown,900,3 U.F.O.'s spotted in Chicago, IL. +2004-10-31,41.5852778,-87.8430556,Orland Hills,IL,fireball,300,Fire balls in the sky, form triangle, lasted 5 minutes. Second Sighting 45 minutes later lasted 5 minutes. +2004-10-31,41.6302778,-87.8538889,Orland Park,IL,formation,3600,Red lights appeared as in case 2. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,1200,Three balls of red over Tinley Park, IL +2004-10-31,31.1430556,-89.4097222,Purvis,MS,formation,2,Very dimly lit six object formation traveling north to south at extreme speeds +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,1800,3 red lights, flying in a single file line +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,600,Three red lights in a triangle formation float across the sky and disappear. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,900,Red lights slowly move from East to West and back again +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,triangle,1500,Three Solid red Lights over Tinley Park Illinois. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,unknown,1200,Red Lights in Tinley Park Again +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,600,2nd time tonight-now a single red light in the Eastern sky of Tinley Park, IL +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,900,A orangeish red light in the sky above Tinley Park Illinois around 171st street and 88th Ave. 10/31/04 about 9:30pm. +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,unknown,1800,Red Lights Seen Over Tinley Park +2004-10-31,35.4661111,-82.5166667,Arden,NC,circle,10,A bright object appeared suddenly, moved south, disappeared and was chased by jets. +2004-10-31,44.5191667,-88.0197222,Green Bay,WI,light,10,2 orange quick moving lights +2004-10-31,44.5191667,-88.0197222,Green Bay,WI,light,10,Two orangish balls of light +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,circle,1200,Creepy, Peculiar, Red Dots +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,circle,600,3 red lights for about 10:00 min then they went away +2004-10-31,41.5733333,-87.7844444,Tinley Park,IL,light,900,Three intense red lights floated across the sky, at times in a triangle, at times in a straight line. There was no noise, and nearby he +2004-10-31,38.6580556,-77.25,Woodbridge,VA,light,1200,Looking south from my back deck, a bright "star" caught my eye last night. What drew my attention at first was how it sparkled, changi +2004-10-31,41.6027778,-87.7438889,Oak Forest,IL,light,1200,Three triangle red lights, then moved into one horizontal line, all three disappeared at one time +2004-10-31,41.6302778,-87.8538889,Orland Park,IL,unknown,1800,Three red dots in triangular shape +2005-10-31,35.8263889,-82.5494444,Mars Hill,NC,cigar,4,I witnessed a cigar shaped object with a bright light center and an emerald green glow around it.. +2005-10-31,41.6105556,-86.7225,Laporte,IN,formation,300,Whoosh +2005-10-31,38.0291667,-78.4769444,Charlottesville,VA,other,120,Craft with bright light focused on something, and then gone. +2005-10-31,40.9311111,-73.8991667,Yonkers,NY,other,420,Orange ball of light when noticed, became dark, had white and red strobe lights and pursued me +2005-10-31,35.6838889,-82.0094444,Marion,NC,sphere,4,Bright green orb falling from sky in the same fashion as a shooting star. +2005-10-31,36.175,-115.1363889,Las Vegas,NV,other,60,Light like a star that got brighter and brighter before a sudden fading and disappearance. +2005-10-31,40.5186111,-74.4125,Edison,NJ,other,2,IN REPLY TO: 10/31/05 18:30 Linwood NJ Light 5 seconds VERY bright apparent meteor over Southern New Jersey on 10/31 and 11/1 2005 +2005-10-31,38.1041667,-122.2555556,Vallejo,CA,unknown,900,flapping flying object with big red light on bottom +2005-10-31,30.4455556,-86.5791667,Shalimar,FL,flash,3,There were lights on the object ,There were aircraft in the vicinity, or aircraft chasing the object . +2005-10-31,39.2902778,-76.6125,Baltimore,MD,cylinder,10,bright shiny silver cylinder shaped object 2 pm, irratic flying +2005-10-31,41.5769444,-73.4088889,New Milford,CT,cigar,120,rocket shape traveling south to north, no noise. +2005-10-31,41.7002778,-73.9213889,Poughkeepsie,NY,light,37800,Several bright lights moving erratically for extended periods of time, including growing in size and brightness, and disappearing. +2005-10-31,39.3397222,-74.5755556,Linwood,NJ,light,5,VERY bright apparent meteor over Southern New Jersey on 10/31 and 11/1 2005 +2005-10-31,39.2063889,-76.9433333,Clarksville,MD,other,5,White ball shaped bright object whizzing across the holloween sky +2005-10-31,39.6836111,-75.75,Newark,DE,light,45,Very fast, brillant bluish/white light travelling horizontally without dimming or falling +2005-10-31,33.5091667,-111.8983333,Scottsdale,AZ,triangle,600,Gilbert +2005-10-31,39.9375,-77.6613889,Chambersburg,PA,fireball,20,Fireball +2005-10-31,33.5091667,-111.8983333,Scottsdale,AZ,triangle,120,On Halloween Night 2005, 3 Lights in shape of a triangle moving over Scottsdale, AZ. +2005-10-31,36.595,-82.1888889,Bristol,TN,changing,90,TENNESSEE MUFON REPORT: Slowly falling, plasma-like object. +2005-10-31,38.2494444,-122.0388889,Fairfield,CA,triangle,20,Triangular craft hovering over highway +2005-10-31,38.9736111,-75.8052778,Greensboro,MD,fireball,60,At about 8:30 EST on 10/31/05 Something lit up the sky and fell towards Earth as a fireball with a long firery trail behind it +2005-10-31,38.1019444,-79.3183333,Augusta Springs,VA,unknown,60,We saw an unusual bright blue flash in the sky and then noticed a trail in the sky that quickly faded away. +2005-10-31,36.0725,-79.7922222,Greensboro,NC,flash,15,Driving north on rt. 220 towards Va. Approx. 9 p.m. the sky entirely lit up in a blue/turquiose color and deminished as fast as it app +2005-10-31,40.3266667,-78.9222222,Johnstown,PA,egg,180,lights in SW sky 10/31/05 9pm +2005-10-31,40.1488889,-79.5413889,Mt. Pleasant,PA,flash,15,Bright green stream of light that was moving south along 119 South. +2005-10-31,38.0291667,-78.4769444,Charlottesville,VA,fireball,10,Bright fiery contrail in eastern night sky +2005-10-31,35.9172222,-82.3011111,Burnsville,NC,fireball,120,Fireball in the sky while viewing Mars 10/31/05 +2005-10-31,40.0377778,-76.3058333,Lancaster,PA,light,3,light across the sky +2005-10-31,36.595,-82.1888889,Bristol,TN,unknown,90,MUFON TENNESSEE REPORT: Tennessee confirmation of sighting. +2005-10-31,34.2283333,-118.5358333,Northridge,CA,unknown,2,We're not sure what we saw - if it was a meteor or a craft. It went very quickly, at an arc downward, and vanished. It was a huge brigh +2005-10-31,40.7608333,-111.8902778,Salt Lake City,UT,disk,2,saucer shaped craft, emitting a glow of grey/white light moving up words from the valley floor +2005-11-01,41.6302778,-87.8538889,Orland Park,IL,formation,2,strange lights over Orland Park, Ill +2006-10-31,34.4436111,-118.6086111,Valencia,CA,triangle,10,Sliver shaped white and silver object seen on I-5 +2006-10-31,47.6063889,-122.3308333,Seattle,WA,unknown,1800,Strange objects in the morning sky over Seattle - on Halloween. ((NUFORC Note: A contrail, we believe. PD)) +2006-10-31,48.88,-115.0525,Eureka,MT,fireball,300,falling fireball super slow 100 feet from ground +2006-10-31,43.5391667,-89.4625,Portage,WI,light,10,2 Rows of 4 orange lights over Portage +2006-10-31,45.3841667,-122.7627778,Tualatin,OR,fireball,30,Fireball sighting on Halloween night +2006-10-31,47.5391667,-122.1544444,Newcastle,WA,light,10,A green light flew up into the sky, moved left, and descended. +2006-10-31,41.5733333,-87.7844444,Tinley Park,IL,triangle,2700,Triangle shaped object with lights hovering in the sky +2006-10-31,45.7544444,-122.8763889,Scappoose,OR,oval,3600,oval shaped ufo shoots in to air with many colors +2006-11-01,29.5686111,-97.9644444,Seguin,TX,triangle,14400,((HOAX??)) Right Place -Wrong Time Goverment talking Triangle Craft down over local TX Hospital +2007-10-31,44.9444444,-93.0930556,Saint Paul,MN,light,45,Orange points of light racing South from Perseus at great speed and altitude slowing, speeding, passing each other. +2007-10-31,41.7208333,-73.9605556,Highland,NY,fireball,5,I witnessed a lowflying thick bright green fire trail that appeared out of nowehere. ((NUFORC Note: Possible meteor?? PD)) +2007-10-31,40.8841667,-72.9377778,Middle Island,NY,fireball,2,Incredibly huge fireball with ion trail and slight alteration of trajectory. ((NUFORC Note: Possible meteor?? PD)) +2007-10-31,38.8338889,-104.8208333,Colorado Springs,CO,disk,120,A saucer, flying only about 50 feet in the air, right above the middle of Colorado Springs. ((NUFORC Note: Student report. PD)) +2007-10-31,41.88,-88.0077778,Lombard,IL,unknown,10,Small circle or triangle with 3 dim white lights moving very quickly. +2008-10-31,39.3916667,-81.2052778,Saint Marys,WV,unknown,10,A V-shape formation made up of approximately 8-10 lights. +2008-10-31,36.7108333,-82.3016667,Mendota,VA,sphere,18000,Sighting of an anomalous object for 5 hours. ((NUFORC Note: Probably a sighting of Sirius, I suspect. PD)) +2008-10-31,25.8572222,-80.2783333,Hialeah,FL,changing,30,((HOAX??)) An air plain flying on top of the ufo. +2008-10-31,38.2775,-85.7372222,Jeffersonville,IN,disk,3600,Bright, flashing object see overhead in Jeffersonville. +2008-10-31,38.4222222,-83.7338889,Flemingsburg,KY,triangle,60,triangular, flat, with orb shaped compartment in the back of the craft +2008-10-31,41.3175,-81.3455556,Aurora,OH,oval,1140,On October 31, 2008, we think we have found a possible oval ufo. ((NUFORC Note: Sirius?? PD)) +2008-10-31,35.925,-86.8688889,Franklin,TN,triangle,120,Black triangular, round or rectangular object in broad daylight or sunset. +2008-10-31,43.0058333,-84.3716667,Ovid,MI,sphere,15,Sphere shaped object flying at an incredible speed during the day +2008-10-31,42.375,-71.1061111,Cambridge,MA,light,60,Maybe nothing, maybe something? +2008-10-31,47.6588889,-117.425,Spokane,WA,changing,360,After 10 minutes there was no sign of the object in any direction from where we first observed it. +2008-10-31,41.5066667,-90.515,Moline,IL,circle,240,Two seperate orbs pass slowly over my house. +2008-10-31,40.5530556,-79.7575,Lower Burrell,PA,fireball,60,circular flaming craft, vanished after 1 minute +2008-10-31,41.4372222,-71.5019444,Wakefield,RI,flash,1,Bright, white flash +2008-10-31,35.1894444,-114.0522222,Kingman,AZ,light,1200,Three small green lights moving across Kingman, AZ. +2008-10-31,44.0463889,-123.0208333,Springfield,OR,fireball,600,Orange Glowing Ball Over Springfield Oregon Moving NW to SE Across The City +2008-10-31,27.9455556,-82.2580556,Valrico,FL,light,120,Strange Light In The Sky +2008-10-31,41.3197222,-81.6269444,Brecksville,OH,triangle,120,Triangle craft in clearing at Cuyahoga Valley National Forest +2008-10-31,38.8105556,-90.6997222,O'fallon,MO,light,180,2 orange lights travelling in a loose formation West to East about 20 degrees above the horizon +2008-10-31,34.0230556,-84.3616667,Roswell,GA,sphere,300,Pulsating/Oscillating Sphere or Orb spotted in Metro Atlanta. ((NUFORC Note: Possible sighting of Venus?? PD)) +2008-10-31,33.7877778,-117.8522222,Orange,CA,unknown,600,Lights over Orange, Ca +2008-10-31,47.4272222,-92.9375,Hibbing,MN,egg,1.5,object seen in hibbing, mn traveling west faster than any plane or comet and much lower than a shooting star and brighter than an airp +2008-10-31,38.5130556,-90.4358333,Fenton,MO,sphere,1800,Saw three streaks in sky to right. Looked up saw three orange spheres heading toward St. Louis (but could see outer edges of round tria +2008-10-31,34.0522222,-118.2427778,Los Angeles,CA,fireball,8,Green fireball moving very low across the sky, throwing off sparks like fireworks. +2008-10-31,33.8622222,-118.3986111,Hermosa Beach,CA,triangle,600,Two lighted objects dancing in the sky above Los Angeles on Oct. 31, 2008 +2008-10-31,33.9547222,-118.2111111,South Gate,CA,fireball,2,Driving north on 710 before Atlantic Blvd, fireball (shooting Star?)straked across sky Northwest, streaks of blue,green,yellow high rat +2008-10-31,42.1291667,-80.0852778,Erie,PA,oval,5,I saw something I'm not sure what it was when getting in my van, as I was getting ready to take my wife to work. +2008-10-31,40.1052778,-85.6802778,Anderson,IN,fireball,900,Nine glowing objects seen over my house in Anderson Indiana +2008-10-31,35.8844444,-84.1536111,Farragut,TN,light,10800,Bouncing Lights in the sky +2009-10-31,34.6627778,-106.7758333,Belen,NM,formation,900,Observed 4 light formation blinking red/green at a frequency of 1 per second approx 20 miles ESE of belen nm altitude approx 10000 ft. +2009-10-31,41.6105556,-87.0641667,Chesterton,IN,circle,60,Bright orange ball moving slowly +2009-10-31,39.7683333,-86.1580556,Indianapolis,IN,fireball,60,Orange "flaming" light rising, then abruptly changing directions and slowly disappearing in the horizon. +2009-10-31,41.85,-87.65,Chicago,IL,fireball,600,Bright orange colored UFO in Chicago +2009-10-31,45.5872222,-122.3983333,Camas,WA,circle,600,Bright orange circular object moving across sky +2009-10-31,41.2586111,-95.9375,Omaha,NE,sphere,180,Strange orange orb on 10/31 +2009-10-31,36.1302778,-118.8172222,Springville,CA,triangle,600,Three bright lights over springville +2009-10-31,44.7433333,-92.8522222,Hastings,MN,oval,10,Small fast moving Cloud like looking UFOs > Moving in same direction at same fast speed. +2009-10-31,34.0194444,-118.4902778,Santa Monica,CA,triangle,300,V shaped formation with orange lights hovers over area and then seemingly vanishes +2009-10-31,27.8002778,-97.3961111,Corpus Christi,TX,oval,120,Three circular outlines made of red lights; two drifted away in different directions, one lingered and then left. +2010-10-31,42.3241667,-83.4002778,Westland,MI,triangle,5,Possible Metro Detroit U.F.O. +2010-10-31,30.6277778,-96.3341667,College Station,TX,disk,7200,Orange glowing crafts seen over College Station, Tx +2010-10-31,36.175,-115.1363889,Las Vegas,NV,rectangle,3600,Noticed a bright white light moving across the sky in the north/northwest sky of Las Vegas, Nevada. It appeared high in the sky. It w +2010-10-31,26.9338889,-80.0944444,Jupiter,FL,oval,180,On October 31st @ 7:30 pm I locked my truck in my driveway and turned to go back in the front door. I gazed up at the sky and noticed w +2010-10-31,40.8963889,-78.2208333,Philipsburg,PA,circle,4,Night observation of bright, white circular light descending soundlessly in straight path from sky toward the ground. +2010-10-31,41.7108333,-87.7580556,Oak Lawn,IL,light,360,((HOAX??)) I bet it was that Chupacabra from the 80's that I saw flying this want to be Dish UFO +2010-10-31,40.4405556,-79.9961111,Pittsburgh,PA,fireball,60,glowing fireball seen in the sky over Pittsburgh, PA +2010-10-31,39.1619444,-84.4569444,Cincinnati,OH,fireball,240,Four reddish-orange lights traveling slowly across the sky in Cincinnati, OH +2010-10-31,26.9338889,-80.0944444,Jupiter,FL,oval,180,We saw a questionable object in the sky? +2010-10-31,34.2283333,-118.5358333,Northridge,CA,triangle,15,rounded “boomerang” shape of about seven or nine dark circles moved slow and absolutely quiet +2010-10-31,38.8105556,-90.6997222,O'fallon,MO,changing,540,Bright white light seen from a distance over O'fallon, Mo. gradually changed shapes. After slow hesitation...disappeared quickly! +2010-10-31,41.3325,-73.2077778,Monroe,CT,fireball,6,Green fireball with tail seen traveling Southeast. After about 6 seconds it was gone +2010-10-31,35.5847222,-80.8102778,Mooresville,NC,light,600,Two slow moving bright orange orb shaped lights +2010-10-31,28.1875,-82.7397222,Holiday,FL,unknown,120,Glowing red light in the sky that moved rapidly upwards at very highspeeds and disappeared over the Gulf of Mexico in Holiday, Florida. +2010-10-31,44.8008333,-122.7933333,Stayton,OR,changing,900,A cylindrical, than triangulat object floating in the sky with many different colors of light flickering!!! +2010-10-31,41.2083333,-122.2708333,Dunsmuir,CA,circle,30,Big, bright light that left tracers behind it, which abruptly stopped in the sky until it later blinked out of sight. +2010-10-31,40.0311111,-81.5886111,Cambridge,OH,formation,300,line of strange blinking lights over eastern Ohio sky +2010-10-31,37.8091667,-85.4669444,Bardstown,KY,chevron,900,Chevron shaped craft +2011-10-31,37.4575,-83.2511111,Hardshell,KY,light,60,Orange lights. +2011-10-31,38.8338889,-104.8208333,Colorado Springs,CO,formation,3600,Firework type of formation hovering south of Pike's Peak +2011-10-31,33.8358333,-118.3397222,Torrance,CA,rectangle,300,Early morning Sighting in Torrance CA from 110 Fwy Pulsing Stationary object +2011-10-31,41.9163889,-83.3977778,Monroe,MI,fireball,240,Me and my fiancee were out side taking down are holloween decorations and she was throwing something away in the garabage at curb.She y +2011-10-31,43.1977778,-70.8741667,Dover,NH,triangle,10,Bright triangular object quickly disappeared. 10 second view. +2011-10-31,41.4047222,-81.7230556,Parma,OH,light,60,Halloween lights over Parma Ohio +2011-10-31,37.6922222,-97.3372222,Wichita,KS,triangle,1800,Saw a bright tear-like triangular shape in the sky that did not move for more than 30 minutes. ((NUFORC Note: Jupiter? PD)) +2011-10-31,36.8252778,-119.7019444,Clovis,CA,sphere,60,Two glowing spheres observed hovering then moving in the night sky Halloween night. +2011-10-31,47.6063889,-122.3308333,Seattle,WA,fireball,120,Glowing orange orb flying North to South across Lake Washington 10/31/2011 +2011-10-31,37.6941667,-122.0852778,Castro Valley,CA,formation,300,5 to 7 orange lights seen floating low in the sky slowy fade out. +2011-10-31,39.9355556,-91.4097222,Quincy,IL,oval,40,Passing from west to east, at approximately 3000 feet altitude, at 19:30 hours on Halloween night, a brilliant, white, oversized, star- +2011-10-31,34.1705556,-118.8366667,Thousand Oaks,CA,other,1800,green dot floating sudden acceleration +2011-10-31,27.3361111,-82.5308333,Sarasota,FL,other,6,bright light fading then reappear in same spot in sky +2011-10-31,41.5875,-109.2022222,Rock Springs,WY,sphere,120,One white star like light over Rock Springs Wyoming +2011-10-31,40.0377778,-76.3058333,Lancaster,PA,triangle,300,Bright Object Near Lancaster. +2011-10-31,39.3175,-74.595,Somers Point,NJ,fireball,300,2 bright orange lights observed by 7 people over south jersey. +2011-10-31,43.6613889,-70.2558333,Portland,ME,light,30,Five points of light, bit brighter than stars, all moving erratically in one direction +2011-10-31,40.2858333,-76.6505556,Hershey,PA,circle,900,((HOAX??) I was walking on the walk path on the left side of the hershey med cntr when i sall a bright light in the shape of a star. +2011-10-31,41.9163889,-83.3977778,Monroe,MI,fireball,120,Orange Fireball hovering close to Fermi Nuclear Power Plant +2011-10-31,42.3533333,-88.0933333,Round Lake,IL,sphere,240,2 orange balls of light hovering over a city I HAVE VIDEO ! +2011-10-31,32.8572222,-116.9213889,Lakeside,CA,fireball,480,Glowing orange orb that pulsated like fire and flew silently overhead. +2012-10-31,47.2572222,-122.7572222,Lakebay,WA,cigar,600,Three red lights on either end of cigar-shaped craft, large; moved forward, sideways, then back without turning. +2012-10-31,30.0969444,-95.6158333,Tomball,TX,light,180,Bright Light becomes two Lights over Tomball, Texas +2012-10-31,38.9783333,-76.4925,Annapolis,MD,triangle,120,Three blue slow blinking lights surrounding what appeared to be a very large wing appeared around 7:20pm in Annapolis, MD, the sky was +2012-10-31,30.1577778,-95.4891667,The Woodlands,TX,light,60,2 dots of light resembling stars, moving very slowly and disappeared. ((NUFORC Note: Possible satellites?? PD)) +2012-10-31,39.8083333,-104.9333333,Commerce City,CO,fireball,30,Slow moving orange ball of fire. +2012-10-31,34.7463889,-92.2894444,Little Rock,AR,triangle,300,3 white blinking lights in triangle formation the size of multipe football fields. +2012-10-31,42.1211111,-88.2577778,Carpentersville,IL,circle,120,Illinois Sky bright orange round object of light. Drone or UFO? +2012-10-31,30.1708333,-95.6822222,Pinehurst,TX,light,120,Second Light near Pinehurst, Texas +2012-10-31,61.2180556,-149.9002778,Anchorage,AK,light,60,White stationary light over the mountains changed to purple then back to white and then back to purple then it fell like a shooting sta +2012-10-31,36.175,-115.1363889,Las Vegas,NV,formation,900,YELLOW/ORANGE STATIONARY ORBS IN TRIANGULAR FORMATION IN NORTHWEST LAS VEGAS SKY. SPOTTED AT APPROX. 8:40PM +2012-10-31,36.0725,-79.7922222,Greensboro,NC,egg,15,Blue egg shaped light shot across my apartment in greensboro then disappear. +2012-10-31,35.7825,-80.8875,Statesville,NC,circle,4,Bright, fast, silent +2012-10-31,39.1855556,-78.1636111,Winchester,VA,oval,30,Bright green orb descending from east to west over south side of Winchester. +2012-10-31,38.5816667,-121.4933333,Sacramento,CA,sphere,10,Soundless gray sphere near Sacramento International airport +2013-10-31,36.8527778,-75.9783333,Virginia Beach,VA,light,15,3 white lights flying over the East Coast just above the cloud ceiling moving like birds in formation +2013-10-31,32.7152778,-117.1563889,San Diego,CA,light,5,Green/White light flying towards the ground in San Diego. +2013-10-31,26.3583333,-80.0833333,Boca Raton,FL,flash,3,Massive red glow in the eastern sky occurring twice within two or three minutes, each lasting 3 seconds. +2013-10-31,29.1869444,-82.1402778,Ocala,FL,circle,1800,Orange orbs that seperate into three moving extremly fast. +2013-10-31,34.6227778,-97.3961111,Elmore City,OK,fireball,180,Fireball parked 40 ft above highway. +2013-10-31,33.8358333,-118.3397222,Torrance,CA,diamond,10,I was staring up at the sky, clear as a bell I could see planes helicopters and stars the then- this pbect shot right over my house ,al +2013-10-31,33.2486111,-111.6336111,Queen Creek,AZ,other,3,Long slim line of dimmish lights of different hues of green yellow and orange, descending and then disappeared. +2013-10-31,36.9741667,-122.0297222,Santa Cruz,CA,cigar,8,Out of nowhere bright object appears in the sky and arcs downward at lightening speed into the Pacific Ocean +2013-10-31,34.0522222,-118.2427778,Los Angeles,CA,light,240,Have a lot a pics in 2 mins then in one to dots come out. +2013-10-31,64.8377778,-147.7163889,Fairbanks,AK,diamond,180,UFO seen over civilian side of Birch Hill. +2013-10-31,33.9241667,-84.3786111,Sandy Springs,GA,other,30,Blue lights splitting into 3. +2013-10-31,35.4419444,-97.4405556,Del City,OK,chevron,10,A dark chevron shaped craft moving quickly while phasing in and out. +2013-10-31,28.9886111,-80.9025,Edgewater,FL,formation,10,6 Blue lights in a single row. All of them equally distanced from eachother.Everyone in the neighborhood watched them for hours. They n +2013-10-31,39.99,-84.5533333,Arcanum,OH,unknown,15,Loud stationary noise and lights. +2013-10-31,37.7525,-83.0688889,Salyersville,KY,light,5400,Strange unexplained tiny pulsating cluster of lights converged on ground in treeline. +2013-10-31,47.4158333,-120.2919444,East Wenatchee,WA,light,240,Deep red light flying south due northeast with a paused flight pattern. +1963-10-03,40.7141667,-74.0063889,New York City (Richmond Hills) (Queens),NY,circle,2,This thing zoomed in a zig zag motion and suddenly zoomed lightning fast up into the space of darkness. +1978-10-03,43.2366667,-83.9063889,Burt,MI,circle,180,A silent circular craft with lights on the side and three on the bottom as in a triangle. +1980-10-03,32.948055600000004,-96.7294444,Richardson,TX,diamond,600,My date, Sam, and me were lying on a blanket discussing outer space and how we would get to other planets. We were doing some serious +1984-10-03,33.4708333,-81.975,Augusta,GA,fireball,300,We saw three round objects, hovering in a triangle formation that appeared to be on fire. +1986-10-03,40.4597222,-78.5919444,Cresson,PA,disk,120,A UFO followed our car! +1996-10-03,35.6869444,-105.9372222,Santa Fe,NM,rectangle,5,Thought it was a plane coming FROM the SE (moving NNW), it moved at a very regular plane-like speed. Felt it might have been a militar +1996-10-03,37.9963889,-105.6991667,Crestone,CO,light,30,Four balls of light travelling in sky, also see possible related New Mexico report for 10/3/96. +1996-10-03,41.3205556,-73.0894444,Derby,CT,light,2400,Two large lights were seen high in the sky. The objects swung around, changing position with one another, then the top object vanished. +1997-10-03,28.9669444,-98.4783333,Pleasanton,TX,unknown,420,Object moved with uncertainty and vanished. +1997-10-03,40.8758333,-75.7327778,Jim Thorpe,PA,oval,60,The turn was that of a very sharp L +1997-10-03,31.5491667,-97.1463889,Waco,TX,light,60,Lights flying around the moon. +1998-10-03,24.5552778,-81.7827778,Key West,FL,changing,1200,I WAS SITTING ON MY FRONT PORCH ON THE SOUTH SIDE OF TRUMAN AVENUE A FEW NIGHTS AFTER THE STORM, IT WAS AFTER MIDNIGHT. I STARTED TO H +1998-10-03,37.7272222,-89.2166667,Carbondale,IL,changing,1200,a Black object not moving. It was about 1500-2000 feet in altitude, and about the size of a gumball held at arms length. +1999-10-03,44.7983333,-69.8897222,Anson,ME,sphere,7,Illuminated sphere moving very fast overhead in a straight line of travel from horizon to horizon. Object seemed close and possibly hal +1999-10-03,32.6516667,-96.9080556,Duncanville,TX,triangle,1800,Between approx. 8:20 and 8:55 pm I saw four (4) things in the sky. 1)an object that was large and triangle shape move fast and silent. +1999-10-03,45.4077778,-122.5691667,Clackamas,OR,fireball,2,From S to N SW of here at approx 20 degrees (above some old growth firs) two quick strobe like flashes followed by a linear green strea +1999-10-03,47.2530556,-122.4430556,Tacoma,WA,circle,0.5,observed a circular shaped bright, almost floresent, light green, with some white colored light shoot across part of sky. +1999-10-03,45.4872222,-122.8025,Beaverton (Northwest Area),OR,fireball,1,green/turquoise fireball traveling east to west with "sparklers" around perimeter. Object approx. 5" diam. to my sight. +1999-10-03,44.9430556,-123.0338889,Salem,OR,flash,2,saw something out of the corner of my eye turend in time to see 2 flashes +1999-10-03,47.6063889,-122.3308333,Seattle,WA,teardrop,10,An eliptical-teardrop shaped object travelling approx.15-20 degrees above the horizon, from SE to NW in a horizontal position along Se +1999-10-03,45.3,-122.7725,Wilsonville (Exit, I-5, 1 Mile N Of),OR,fireball,3,Bright green glowing ball-shaped with a long glowing tail, traveling across and downward from East to West at treetop level; looked abo +1999-10-03,42.6486111,-122.8094444,Trail,OR,fireball,2,Bluish fireball lighting entire area, falling at treetop level. +1999-10-03,42.6486111,-122.8094444,Trail,OR,fireball,2,White luminous basketball-sized falling fireball. +1999-10-03,47.2530556,-122.4430556,Tacoma,WA,fireball,2,Huge Greenish Fireball fell west of I-5 hwy while I was driving So. +1999-10-03,34.0233333,-84.6155556,Kennesaw,GA,cigar,10,Large Cigar-shaped UFO sighted near Atlanta. +2000-10-03,27.7705556,-82.6794444,St. Petersburg,FL,disk,900,saucer shaped craft that hovered before shooting up into space. +2000-10-03,34.0522222,-118.2427778,Los Angeles,CA,unknown,60,Starlight changing direction and speed in the sky +2000-10-03,47.1633333,-122.0255556,Buckley,WA,triangle,540,11 triangle shaped space crafts seen flying over buckley wa on oct. 3񫺐 +2000-10-03,37.6688889,-122.0797222,Hayward,CA,changing,7,oct 1 around 7;15. i was looking at the moon through a pair of binoculars 20x50 when i spotted cube shaped object higher than the moon +2001-10-03,30.7916667,-85.6797222,Bonifay,FL,rectangle,5,Silent, at tremendously high speed object seen flying north to south toward Panama City, FL +2001-10-03,47.6105556,-122.1994444,Bellevue,WA,other,2,Fixed object passed overhead, silently and with no running lights, in clear night sky. +2001-10-03,42.5463889,-71.1741667,Wilmington,MA,circle,120,Circle +2001-10-03,38.3605556,-81.7375,Dunbar,WV,light,300,2 singular lights traveling south to north with a third appearing to go straight up till fading out. +2001-10-03,38.9516667,-92.3338889,Columbia,MO,triangle,300,the object changed colors changed direction and speed +2002-10-03,35.8233333,-78.8258333,Morrisville,NC,oval,300,noticed 5 round object at about 5000 ft above raleigh air port, watched for 5 minutes +2002-10-03,33.4708333,-81.975,Augusta,GA,light,30,High altitude bright strobing light moving at a very high rate of speed. +2002-10-03,34.9616667,-89.8294444,Olive Branch,MS,disk,600,We saw two disk like objects crash. +2002-10-03,34.5794444,-118.1155556,Palmdale,CA,disk,60,UFO'S IN THE SKYS OF PALMDALE CALIF +2003-10-03,39.2902778,-76.6125,Baltimore,MD,disk,30,i dont know what it was but i saw something it wasnt any form of aircraft that ive ever sen +2003-10-03,36.175,-115.1363889,Las Vegas,NV,unknown,60,blinking light vanishes into atmosphere +2003-10-03,41.7711111,-81.05,Madison,OH,light,5,Bright white light abruptly disappears in identical fashion as other examined tapes of UFO's +2003-10-03,41.7,-71.6833333,Coventry,RI,formation,60,a triangle formation of crafts +2003-10-03,47.4705556,-122.3455556,Burien,WA,disk,2,Random Photo taken at traffic light reveals UFO? +2003-10-03,41.6361111,-70.9347222,New Bedford,MA,formation,480,Five lights fly over New Bedford Harbor in strange formation +2003-10-03,44.8994444,-109.1502778,Clark,WY,light,300,Clark, WY. object or Light heading S.W. at 20:51 hours +2003-10-03,40.7786111,-97.2819444,Beaver Crossing (Approx. 15 Miles From I-80 Loop; Near ),NE,other,90,Black flying object beside our van... +2003-10-03,40.6788889,-73.6744444,Malverne,NY,light,5,I'VE SEEN MANY METEORS OVER THE YEARS BUT THIS WAS DIFFERENT.I LOOKED STRAIT UP OVER HEAD,THE SKY WAS CLEAR,AND I SAW A WHITE LIGHT SPE +2004-10-03,33.89,-84.1430556,Lilburn,GA,circle,5,soft-white glowball +2004-10-03,40.9791667,-74.1169444,Ridgewood,NJ,circle,120,Red object with a fading red tail flies slowly through sky +2004-10-03,45.6388889,-122.6602778,Vancouver,WA,unknown,900,Large, Flame like object at daybreak in Columbia River Gorge ((NUFORC Note: It looks like a distant contrail to us. PD)) +2004-10-03,37.6438889,-98.7372222,Pratt,KS,cigar,600,Silver Craft east of Pratt, KS +2004-10-03,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,3600,Prospect Park Brooklyn V shaped formation of lights in broad daylight! +2004-10-03,40.7141667,-74.0063889,New York City (Brooklyn),NY,sphere,3600,Formation of 6 spheres over Prospect Parc. +2004-10-03,41.7758333,-72.5219444,Manchester,CT,cigar,900,two of the objests moved away a centeral object the moved together, and as they moved the two objects spread further apart. they came t +2004-10-03,40.3719444,-75.2930556,Perkasie,PA,cigar,3,Clear night sky 2 pale orange cigar shape went from south to north at high speed . +2004-10-03,35.3619444,-86.2094444,Tullahoma,TN,changing,3600,UFO sighted in the Tullahoma TN vicinity... +2004-10-03,41.4994444,-81.6955556,Cleveland,OH,circle,30,Many fighter jets flying towards UFO +2004-10-03,34.27515,-118.5498,Porter Ranch,CA,light,60,Extremely bright yellow-orange light zipping across the San Fernando Valley. +2004-10-03,39.4561111,-77.9641667,Martinsburg,WV,light,7200,Five objects that moved too slowly to be any aircraft that made zero sound with red, green, blue and white lights that went in pattern +2005-10-03,37.3394444,-121.8938889,San Jose,CA,formation,180,It was 11:00 am, my daughter 4 1/2 was our front feeding our dog, I was inside. Then I hear her yell "Momma, Momma, come look at the s +2005-10-03,43.7575,-122.4952778,Westfir,OR,other,1200,clear real photo graph of extraterestrel +2005-10-03,44.3730556,-71.6105556,Whitefield,NH,light,14400,((NUFORC Note: Probably a twinkling star. PD)) Satellite pulsing with color? +2005-10-03,40.015,-105.27,Boulder,CO,chevron,45,Low flying, silent, muted white lights on a chevron shaped glider +2005-10-03,39.3722222,-104.8555556,Castle Rock,CO,oval,3600,On Monday october 3, 2005, I spotted two spaceships in the sky. The first spotted ship was what seemed to be a bright star, when it st +2005-10-03,44.4758333,-73.2125,Burlington,VT,disk,900,2 low flying brightly lit and quiet objects in sequence, taking the same flight patter. +2005-10-03,41.2230556,-111.9730556,Ogden,UT,circle,300,October 3rd 11:40pm 05 above the eastern bench in ogden UT, An orb slowly brightend up then moved arround in a circular motion, +2005-10-03,39.9347222,-75.0311111,Cherry Hill,NJ,circle,120,Three white objects in triangle formation hovered, then objects flew away from eachother at high speed. +2006-10-03,37.9444444,-87.4052778,Newburgh,IN,sphere,120,Large orange ball of light hovering 200-300 feet from our home. +2006-10-03,42.2222222,-71,Braintree,MA,light,2700,We witnessed blinking lights that moved rapidly in all directs and that, once "still", emitted sparks. +2006-10-03,43.0388889,-87.9063889,Milwaukee,WI,sphere,3600,Reaccuring semi-stationary, color alternation spheres +2006-10-03,43.1008333,-75.2330556,Utica,NY,cigar,600,I was looking at the stars,as I stopped on a rest area. At one point i seen these 2 stars moving, at first i thought it was a cloud pas +2006-10-03,33.1958333,-117.3786111,Oceanside,CA,unknown,120,Silver metallic object seen hovering high above suburban intersection in late afternoon sky, might be two objects. +2006-10-03,39.4055556,-105.4727778,Bailey,CO,sphere,900,Colorado 10/03/06 +2006-10-03,32.525,-93.75,Shreveport,LA,unknown,480,2 different objects seen in Louisiana +2006-10-03,46.4083333,-105.84,Miles City,MT,oval,600,was sitting at my porch watching the evening sky,as i was watching i saw what i first thought was a plane comeing from the south ,we ge +2006-10-03,36.4483333,-93.9738889,Garfield,AR,unknown,45,2 LIIGHTS OVER BEAVER LAKE. +2006-10-03,34.2366667,-84.4908333,Canton,GA,unknown,2,Black spec passing in front of the moon several times. +2006-10-03,45.4533333,-121.1294444,Dufur,OR,disk,120,3 flashing lights at exact distances crossed entire sky over a field and ducked behind a hill in less than 2 minutes. +2006-10-03,41.1575,-81.2422222,Ravenna,OH,other,30,Shooting Object Across Ravenna Sky +2006-10-03,33.8536111,-118.1330556,Lakewood,CA,fireball,240,Dripping ball of light +2006-10-03,35.6869444,-105.9372222,Santa Fe,NM,cone,60,Fiery object moving south to north which separated into approx 5 small objects which trailed it in a straight line +2006-10-03,33.7877778,-117.8522222,Orange,CA,other,600,Oddly shaped object hovering above Orange County, California, then flying off under power. +2006-10-03,45.5236111,-122.675,Portland,OR,circle,2700,Two nights after my first encounter I spotted another last night! I was out on my porch watching the stars when one of them moved. The +2007-10-03,35.9555556,-80.0055556,High Point,NC,triangle,900,bright lights spinning in the sky +2007-10-03,29.8266667,-82.5969444,High Springs,FL,triangle,300,Object aproxamitly 200ft high and moving slowly over me and a friend in High Springs Florida. +2007-10-03,36.3119444,-87.7733333,Tennessee Ridge,TN,unknown,7200,star like object blinking red, green, and white, mostly stationary then moving away ((NUFORC Note: Venus, or twinkling star?? PD)) +2007-10-03,45.8769444,-93.2936111,Mora,MN,fireball,15,Flaming object seen over Minnesota Sky +2007-10-03,41.0113889,-95.8819444,Plattsmouth,NE,fireball,3,While I was driving north towards Plattsmouth, NE, between 2:30 and 3:30PM, I looked up to about 1:00 in the sky and saw a big, bright +2007-10-03,32.7355556,-97.1077778,Arlington,TX,light,180,Bright object in the sky changing shapes before taking off at a vary high speed. (Like 0 4ꯠmph in .090 seconds) +2007-10-03,44.7677778,-93.2775,Burnsville,MN,light,180,UFO lights over Minnesota River in Burnsville that resemble the Phoenix lights. +2007-10-03,39.6761111,-89.7044444,Chatham,IL,oval,10,I have recently become aware of how many ufos that actually exist, as I have seen similar (traveling stars) on many occasions, that can +2007-10-03,38.9516667,-92.3338889,Columbia,MO,circle,180,John from Columbia, MO While on my way home from a little league baseball game on 10-3-07, my fiancée and I witnessed a UFO. While tr +2007-10-03,41.85,-87.65,Chicago,IL,unknown,900,Flash of light in a fan shape gradient across the southern sky of chicago. +2007-10-03,40.7425,-84.1052778,Lima,OH,circle,1200,Lima, Ohio circle Black Metal red white and blue object above us in country rd. +2007-10-03,35.9488889,-85.0269444,Crossville,TN,circle,420,Large green circular orb with coinciding power outage. +2008-10-03,42.8141667,-73.94,Schenectady,NY,light,60,Circle of Light Seen In Morning Sky +2008-10-03,35.4736111,-81.2547222,Lincolnton,NC,cigar,300,cigar shaped ufo in daylight, clear sky!!!!! +2008-10-03,42.7369444,-84.4838889,East Lansing,MI,cylinder,300,Cylinder cigar shaped object over East Lansing, MI. +2008-10-03,35.5311111,-81.03,Denver,NC,light,5,I saw 2 rapid moving dimly glowing lights moving jaggedly vertically across the sky. +2008-10-03,38.1494444,-79.0719444,Staunton,VA,disk,300,Saucer seen over Staunton, Virginia +2008-10-03,37.0833333,-88.6,Paducah,KY,sphere,45,At about 7pm I saw a light shaped like a sphere move across the soutghern sky briefly then disappear. +2008-10-03,39.0355556,-104.2966667,Calhan,CO,circle,120,REPORT FROM CHUCK ZUKOWSKI, INVESTIGATOR: Friday night around 7:30pm, I saw a large white circular light heading West to East in +2008-10-03,57.79,-152.4072222,Kodiak,AK,light,600,didn't behave like a toy helicopter, hikers or hunters +2009-10-03,35.7719444,-78.6388889,Raleigh,NC,circle,3600,I saw 4 large white lights circling then meeting together and going back out again +2009-10-03,39.0347222,-87.1658333,Linton,IN,circle,3600,Craft watches meteor shower in the nothern skies +2009-10-03,44.7444444,-68.8375,Hampden,ME,light,120,A bright light in the treeline +2009-10-03,38.9716667,-95.235,Lawrence,KS,sphere,300,Object appeared as I would imagine a flying Chinese lantern would look like (I've never seen one!). +2009-10-03,47.1719444,-122.5172222,Lakewood,WA,triangle,300,2 trianglar crafts flying over FT. Lewis +2009-10-03,35.0669444,-77.3530556,Trenton,NC,formation,18,I saw a odd formation over hwy 41 +2009-10-03,36.2080556,-86.2911111,Lebanon,TN,sphere,720,Red/orange colored objects flying in formation (constellation pattern) over Lebanon, TN. +2009-10-03,37.9061111,-122.5438889,Mill Valley,CA,other,20,Possbile UFO Sighting In Marin County California +2009-10-03,47.4741667,-122.2597222,Tukwila,WA,circle,900,Possible Siting in the Tukwila Wa area +2009-10-03,30.2669444,-97.7427778,Austin,TX,sphere,600,Orange glowing orbs floating gracefully and stopping in triangular and linear shapes. +2009-10-03,37.2708333,-79.9416667,Roanoke,VA,light,60,Moving lights with no sound. +2010-10-03,35.1894444,-114.0522222,Kingman,AZ,unknown,900,After my sighting last night, I am convinced there is an Intelligence way ahead of our time! +2010-10-03,40.7141667,-74.0063889,New York City (Staten Island),NY,oval,900,POSSIBLE UFO STATEN ISLAND NY +2010-10-03,39.0283333,-84.2177778,Amelia,OH,changing,8,Bright white object streaking across the front yard then disappearing. +2010-10-03,33.7319444,-84.9191667,Villa Rica,GA,fireball,900,14 "Fire balls" at a very high altitude with very little movement red and yellow in color Seen from West Ga USA +2010-10-03,41.3405556,-87.6213889,Beecher,IL,light,5400,5 orange lights change intensity and move around in western sky near horizon. ((NUFORC Note: Possible stars?? PD)) +2010-10-03,40.4841667,-88.9936111,Bloomington,IL,light,30,Light traveling at high altitude flaring into a bright "star" then fading again +2010-10-03,42.5005556,-90.6644444,Dubuque,IA,other,7200,northeast sky colors flickering +2010-10-03,47.7988889,-122.4969444,Kingston,WA,fireball,45,Bright Blue fireball +2010-10-03,40.1416667,-93.8722222,Gilman City,MO,light,3600,MISSOURI INVESTIGATORS REPORT: Both lights came in higher then lowered to treetop level view although still many miles away. +2010-10-03,40.7141667,-74.0063889,New York City,NY,light,300,about 7 flying objects above New York Sky +2010-10-03,47.6063889,-122.3308333,Seattle,WA,fireball,60,Fireball above Puget Sound +2010-10-03,42.5005556,-90.6644444,Dubuque,IA,unknown,3600,ok i didnt see it but i heard about it and was hoping you could find out more a friend told me that lastnight her friend seen a craft a +2010-10-03,34.0583333,-106.8908333,Socorro,NM,cross,600,Red lights in line fly over me and dad and leave a line for a mile in the ground going straight . +2011-10-03,46.4083333,-105.84,Miles City,MT,formation,420,3 red objects bright moving then 3 white disperse from within +2011-10-03,33.8702778,-117.9244444,Fullerton,CA,flash,2,Two, quick bright flashes of light. +2011-10-03,36.7477778,-119.7713889,Fresno,CA,circle,240,Circle of bright lights hovering slowly and than disappearing. +2011-10-03,27.7519444,-98.0694444,Alice,TX,triangle,120,A triangle shaped object with three bright lights +2011-10-03,29.9116667,-95.0619444,Crosby,TX,circle,1800,We saw two lights when we turned onto the road and they seemed to be right over each other. After we pulled over and took a picture thr +2011-10-03,42.3683333,-83.3527778,Livonia,MI,rectangle,120,Red/Orange Light rotating over Livonia/Plymouth, MI. +2011-10-03,38.3030556,-77.4608333,Fredericksburg,VA,triangle,300,Monday, October 03, 2011 Time: Approximately 10:30 pm EST.Place: Fredericksburg, VA Sighting Report: This evening at approximat +2012-10-03,33.6680556,-117.3263889,Lake Elsinore,CA,other,20,Giant black plane +2012-10-03,43.0797222,-98.2927778,Wagner,SD,fireball,7200,Numerous orange lights seen outside of town. +2012-10-03,37.775,-122.4183333,San Francisco,CA,circle,120,3 Bright Orange Circle UFOs in the SF night sky & two men in military clothing +2012-10-03,46.8722222,-113.9930556,Missoula,MT,flash,3,Green object flew across the night sky with green trail behind it +2012-10-03,44.0747222,-89.2877778,Wautoma,WI,sphere,120,Glowing silvery orb/sphere over Wautoma, Wisconsin; numerous days and times +2012-10-03,45.6388889,-122.6602778,Vancouver,WA,other,1200,Bright orb and strange craft flying over Vancouver, Wa +2012-10-03,40.7052778,-80.3013889,Bridgewater,PA,sphere,300,Strange formation of lights seen over Bridgewater, PA. +2012-10-03,40.7022222,-80.2866667,Rochester,PA,fireball,420,They looked like orange stars, moving incredibly fast at high altitude, then went straight up. +2012-10-03,37.3394444,-121.8938889,San Jose,CA,circle,300,Bright object over mt umunhum, vertically rises, saucer shaped object over san jose. +2012-10-03,44.6497222,-93.2425,Lakeville,MN,formation,1200,10/3/2012 Lakeville, MN; Formation sighting identified +2012-10-03,44.6497222,-93.2425,Lakeville,MN,formation,1200,9 white lights in a circular shape over the Lakeville/Burnsville area +2012-10-03,38.2325,-122.6355556,Petaluma,CA,fireball,120,Two sightings in Petaluma +2012-10-03,39.9611111,-82.9988889,Columbus,OH,sphere,15,2 spheres flying in formation +2012-10-03,39.9388889,-74.1933333,Beachwood,NJ,fireball,60,red fire looking orb that was very fast and had control over where it moved +2012-10-03,26.2030556,-98.2297222,Mcallen,TX,light,10,Green ball of light falling from the sky(completely vertically down) +2013-10-03,33.9608333,-83.3780556,Athens,GA,triangle,300,Triangle-shaped object the size of a go-kart with blue/white lights. +2013-10-03,39.2902778,-76.6125,Baltimore (City Line),MD,light,25,On the evening of September 3rd, I was smoking a cigarette on my deck looking up at the westerly sky. This is a nightly routine for me +2013-10-03,44.3377778,-72.7566667,Waterbury,VT,light,25,Two bright glowing objects that were parallel to each other lasting several hours and then disappeared. +2013-10-03,40.2291667,-74.9372222,Newtown,PA,flash,10,3 flashes with projectile trail leaving each....probable ASAT test..but whose...? +2013-10-03,33.5919444,-84.27,Rex,GA,circle,900,Hovering craft near Rex Georgia. +2013-10-03,26.1416667,-81.795,Naples,FL,rectangle,120,octƻ񫺝, 3:30 pm, cresent shaped craft. +2013-10-03,45.5236111,-122.675,Portland,OR,other,1800,Saw Oct 3 2013 total of 15 craft with 5 lower than the others going in counterclock with 4 vertical rows of lights semi circ nose. +2013-10-03,44.1969444,-72.5025,Barre,VT,triangle,120,Object with triangle pattern lights, two white, one red moving slowly. +2013-10-03,40.0083333,-79.0783333,Somerset,PA,fireball,300,4 fireballs in formation beam across Somerset, PA sky before vanishing into the night. +2013-10-03,37.7933333,-79.9941667,Covington,VA,circle,30,Blue/green light flashing on a round object over town. +2013-10-03,36.0988889,-78.3013889,Louisburg,NC,circle,3,UFO sighted near Louisburg, NC moving north to south at a very high speed. +2013-10-03,41.4755556,-81.8394444,Rocky River,OH,fireball,15,Fireball seen across Cleveland sky. +2013-10-03,47.4811111,-118.2533333,Harrington,WA,light,4,Adult male witnesses two peculiar lights moving "in train," both of which flare up; not Iridium satellites. +2013-10-03,39.4452778,-83.8286111,Wilmington,OH,fireball,30,Looked like a falling star at first then started changing colors from yellow to red to orange to a bright green with a long trail of sm +2013-10-03,35.4713889,-93.4663889,Clarksville,AR,circle,2,Solid orange circle/orb streaked through the night sky; no noise, tail, or glow +2013-10-03,38.6947222,-120.8138889,Diamond Springs,CA,circle,600,Orange balls are everywhere. +2013-10-03,39.9522222,-75.1641667,Philadelphia,PA,fireball,120,2 fireball objects over philly. +1963-10-04,37.2202778,-77.2883333,Prince George,VA,disk,7200,Two glowing saucers came down and floated above me and a friend; event lasted at least two hours. 500 Lights On Object0: Yes +1963-10-05,40.6772222,-74.5180556,Millington,NJ,disk,420,a pie shaped disc with 2red and 2 white lights closely hovering over neighbors home. +1978-10-04,39.9522222,-75.1641667,Philadelphia,PA,sphere,1200,eight foot flurescant globe puts out lights then floats through antenna farm missing a dozen towers and a hundred cables +1981-10-04,39.9611111,-82.9988889,Columbus,OH,disk,120,A disc shaped craft, approximately thirty feet in diameter, hovered silently roof level. +1997-10-04,38.0316667,-85.3425,Taylorsville,KY,light,300,I observed approx. 5 small blinking lights clustered together, after about 5 min. they turned off or fazed out. These could not be see +1997-10-04,38.7133333,-77.7955556,Warrenton,VA,light,5,Bright star like oject going from south to north at extreme high rate of speed +1998-10-04,47.7313889,-122.5511111,Suquamish,WA,flash,6,very intense lighting up of the sky +1998-10-04,46.0647222,-118.3419444,Walla Walla (West Of),WA,fireball,2,I bright green flash, followed by an object decending at a 35 degree angle in the sky. +1998-10-04,46.9755556,-123.8144444,Aberdeen,WA,fireball,10,Descending fiery object exploded and lit up whole sky momentarily like transformer explosion at high altitude +1998-10-04,45.3416667,-123.1861111,Yamhill,OR,fireball,4,A blue/green ball of light. +1998-10-04,32.7763889,-79.9311111,Charleston,SC,fireball,10,The sky lit light heat lightening then the a ball of light was shooting across the sky. My thought was it looked like a Roman candle b +1998-10-04,32.7763889,-79.9311111,Charleston,SC,fireball,2,Saw a large reddish orange fireball with a long green tail.. +1998-10-04,32.7763889,-79.9311111,Charleston,SC,fireball,4,streaking blue/green fireball lit up sky. fireball going east to west and appeared to disintergrate after 3-4 seconds +1998-10-04,32.0833333,-81.1,Savannah (Central),GA,fireball,5,I was sitting on the deck of the Best Western Hotel at Savannah and I saw a streak across the sky with flames trailing. +1998-10-04,32.7763889,-79.9311111,Charleston,SC,flash,2,Observed very bright sky illumination over Charleston, SC. 1-2 seconds duration. +1998-10-04,42.2230556,-78.0347222,Belmont,NY,circle,7,A pencil lead streak across the sky dropped hundreds of miles, the object slowly move toward the west. +1999-10-04,39.9205556,-105.0861111,Broomfield,CO,unknown,3,Sensation like sonic boom shook house, with no noise -just a pressure wave +1999-10-04,44.0216667,-92.4697222,Rochester (Mn)/To Lacrosse (Wi) (Driving),MN,light,7200,Bright lights in the sky witnessed from highway +1999-10-04,48.4213889,-122.3327778,Mount Vernon,WA,fireball,600,Bright Comet-like object seen in Washington state +1999-10-04,44.2911111,-105.5016667,Gillette,WY,other,15,At 5:20 P.M. my wife and I were taken our 10 year old to football practice. We were going east on 14-16 when I saw this craft flying fr +1999-10-04,29.7630556,-95.3630556,Houston,TX,egg,1194,Saw what at first appeared to be 2 stars in the horizon. +2000-10-04,46.8772222,-96.7894444,Fargo,ND,triangle,180,triangle shaped with no noise +2000-10-04,35.2269444,-80.8433333,Charlotte,NC,oval,15,I don't know what it was but it was silver going over some trees as I was leaving school. It was heading south at about 20 m.p.h, and +2000-10-04,41.8297222,-86.2541667,Niles,MI,triangle,2,Cursor shaped objects over SW Michgan +2000-10-04,39.1369444,-76.6986111,Severn,MD,disk,120,An orange and white disc stopped and hoverd about 3 or 4 minutes near my backyard. +2000-10-04,43.6630556,-116.6863889,Caldwell,ID,light,900,Saw a large light change colors and eventually dim to nothing on El Paso Rd. +2000-10-04,46.0086111,-122.8433333,Kalama,WA,unknown,600,an orb, irratic, quick movements, dashing & snaking about, changing directions. Light green color. +2000-10-04,32.3475,-97.3863889,Cleburne,TX,other,45,The object was shaped like a boomarang with 7 black spheres one in the center of the nose and three on each wing. It was dark in color +2000-10-04,29.0558333,-95.4097222,Richwood,TX,fireball,20,It looked like a fireball chasing after something. +2001-10-04,38.5413889,-89.2636111,Hoffman,IL,triangle,600,A triangular shaped craft,three bright blue-white circular lights on underside,pulsating red light in the middle. +2001-10-04,34.6380556,-99.3336111,Altus (Sw Of),OK,light,20,two lights one revolved around the other, and emitted a blue flairlike object. +2001-10-04,37.67,-106.6391667,South Fork,CO,cigar,120,Shinny Cigar shape in sky on clear day. +2001-10-04,34.8986111,-117.0219444,Barstow,CA,circle,3600,I was traveling on Interstate 40 at 7:00 when I saw a beautiful sunset of the desert, on vacation on the colorado river, in Needles. I +2002-10-04,39.3602778,-104.5963889,Elizabeth,CO,flash,10800,3 extremely bright metallic strobe- like flashing objects with a spot light effect on the ground and objects below and a "grounded" so +2002-10-04,29.7630556,-95.3630556,Houston,TX,diamond,10,diamond-shaped with lights, it split into 7 pieces and fused back together. +2002-10-04,39.3391667,-94.2258333,Excelsior Springs,MO,oval,60,A large, white, wingless object sped across the sky +2002-10-04,33.8313889,-118.2811111,Carson,CA,circle,12,Ball flying under jet. +2002-10-04,31.7586111,-106.4863889,El Paso,TX,formation,10,V-shaped UFO Appears Across the Skies at El Paso, Texas Racing from North to South +2002-10-04,34.0952778,-118.1261111,Alhambra,CA,triangle,120,UFO Sighting near Los Angeles +2002-10-04,38.35,-104.7222222,Pueblo West,CO,other,4,A red laser-like light came out of a cloud... +2002-10-04,38.35,-104.7222222,Pueblo West,CO,rectangle,10,RED LASER COMING OUT OF A RECTANGULAR CRAFT! +2003-10-04,35.2822222,-91.3652778,Augusta,AR,triangle,60,00:15 10/04/03 Augusta, Arkansas Observed 3 stationary bright lights in the shape of a triangle. +2003-10-04,37.9780556,-122.03,Concord,CA,fireball,10,Oval Shaped Firey Object Near Concord Naval Weapons Station +2003-10-04,30.2238889,-92.0197222,Lafayette,LA,light,900,2 very bright balls of light dancing. The brightest light I have ever seen. +2003-10-04,39.9852778,-104.82,Brighton,CO,teardrop,60,My husband and I saw a bright white light with a short tail glidding fast accross the sky from east to west. +2003-10-04,33.9561111,-83.9880556,Lawrenceville,GA,formation,180,9 or 10 lights in perfect (silent) formation in a trapazoid pattern moving around 30 mph in front of us at approx 500 feet above us. +2003-10-04,36.6102778,-88.3147222,Murray,KY,changing,5400,Hoovering object w/flashing red, blue, and green lights. There were three cited at the same time, but differnt sections of the sky. +2003-10-04,41.5316667,-89.2797222,La Moille,IL,changing,2700,My wife used to be a skeptic, now she doesnt know what to say but that it was the most amazing thing she`s ever seen +2003-10-04,37.6688889,-122.0797222,Hayward,CA,light,120,Bright light drops other bright light. +2003-10-04,39.1141667,-94.6272222,Kansas City,KS,changing,1200,Flashing, skipping lights from a disc shaped object moving extremely fast in Kansas City. +2004-10-04,32.3666667,-86.3,Montgomery,AL,light,300,Bright moving light spotted east of Montgomery, AL in early a.m. ~2 hours before sunrise +2004-10-04,35.2783333,-93.1336111,Russellville,AR,light,600,This is in response to a similar report from Pottsville, AR that occurred on 12/2/04. On two occasions, I've sighted a similar object i +2004-10-04,45.7186111,-123.9338889,Manzanita,OR,triangle,120,Wedge, 70' off the ground, Moving NE at approx. 15 MPH towards Washington state. Very large with Red flashing lights and no sound. +2005-10-04,38.7072222,-121.28,Citrus Heights,CA,other,90,Sighted several bright green, rectangular lights both descending and ascending; sighting lasted about 2 minutes. +2005-10-04,47.6063889,-122.3308333,Seattle,WA,other,2,6 dimly lit orbs travelint at a high speed +2005-10-04,36.8416667,-82.2252778,Dickensonville,VA,circle,900,Appeared to be flattened round shape. White, red, and green colored lights flashed around the perimeter. +2005-10-04,33.5091667,-111.8983333,Scottsdale,AZ,triangle,37800,((Apparent report of helicopter. PD)Loud hovering object with red and green lights over McDowell Mt. Ranch Subdivision in N Scottsdale. +2005-10-04,37.6791667,-95.4569444,Chanute,KS,light,120,Bright solid light moving rapidly east +2005-10-04,34.9247222,-81.0252778,Rock Hill,SC,other,2,daylight ufo seen from my front window,amazing to see. +2005-10-04,40.9730556,-117.7347222,Winnemucca,NV,circle,5,i am an oil painter so I take pictures of sunsets and clouds etc. The night of October 4th the sky was beautiful to the northeast of Wi +2005-10-04,40.7141667,-74.0063889,New York City (Manhattan),NY,light,1200,Six bright "stationary" objects over Manhattan / NYC. I took a picture. +2005-10-04,37.9230556,-90.5552778,Bonne Terre,MO,triangle,1800,15- 20 mins 10/04/2005 a triangle shaped object in the western sky with a blue, orange and red light Bonne Terre Mo. +2005-10-04,33.5805556,-112.2366667,Peoria,AZ,light,600,Amber lights near Tolleson, AZ +2005-10-04,32.6097222,-85.4808333,Auburn,AL,oval,3600,Blue Star object seen hovering above auburn then dissapears. +2005-10-04,34.7302778,-86.5861111,Huntsville,AL,circle,300,Up close flying low tonight and 2 others within a month! +2005-10-04,37.6391667,-120.9958333,Modesto,CA,circle,20,From very Bright to dim. +2005-10-04,33.6305556,-112.3325,Surprise,AZ,changing,300,The first night of 3 possible nights. The fist nignt we saw 3 bright lights above what would look like Interstate 10 in Arizona. The li +2005-10-04,42.7022222,-83.4027778,Waterford,MI,sphere,1200,Unidentifiable light(lights) moving uncharacteristically....... +2005-10-04,41.7611111,-93.8241667,Granger,IA,formation,15,six orange lights in formation over Granger, IA +2005-10-04,38.6580556,-77.25,Woodbridge,VA,other,5,object was greenishyellow color +2005-10-04,42.9633333,-85.6680556,Grand Rapids,MI,oval,10,I watched it in clear view and it suddenly dissapeared. +2006-10-04,38.6877778,-77.2980556,Lake Ridge,VA,changing,120,A double tiered object seen in the sky from Lake Ridge, Virginia. +2006-10-04,45.1230556,-92.5363889,New Richmond,WI,fireball,25,I saw a strange site tonight so I went to my computer to google to see if there was a "star shower" or something going on tonight. I c +2006-10-04,34.698055600000004,-118.1358333,Lancaster,CA,disk,300,While taking pictures of clouds, observed dics shaped object hovering in front of the clouds. +2006-10-04,37.4027778,-82.8063889,Raven,KY,oval,60,Saw a dark object with greenish glow fly across the hills of kentucky. ((NUFORC Note: Student report. PD)) +2006-10-04,32.7152778,-117.1563889,San Diego,CA,sphere,30,more ufos in san diego california +2006-10-04,34.1513889,-89.6313889,Water Valley,MS,fireball,6,Fireball observed in N. Mississippi +2006-10-04,38.6055556,-86.1011111,Salem,IN,light,1200,stationary -bright- sparkling/twinkling object in mid northwestern sky. 9:05 - 9:25pm est +2006-10-04,45.010555600000004,-93.4552778,Plymouth,MN,flash,3,Very bright, streaking object blueish green in color traveling west over the western suburbs of Minneapolis. +2006-10-04,44.98,-93.2636111,Minneapolis,MN,other,5,Glowing green object crosses Twin Cities at low altitude +2007-10-04,36.4072222,-105.5725,Taos,NM,light,180,Two bright objects traveling from south to the north disappeared +2007-10-04,42.3313889,-83.0458333,Detroit,MI,disk,30,US Air Force commercial clearly shows UFO, how many times have you watched this on TV and never seen the UFO.... WOW!!! +2007-10-04,45.0244444,-123.9452778,Otis,OR,unknown,1,You need to take a look at this +2007-10-04,42.2708333,-83.7263889,Ann Arbor,MI,circle,15,UFO siting in Ann Arbor MI, +2007-10-04,37.1875,-78.2016667,Burkeville,VA,light,300,Red lights flashing and moving erratically through the sky +2007-10-04,41.6638889,-83.5552778,Toledo,OH,light,600,Unknown Lights above The Maumee River +2007-10-04,37.1972222,-87.0363889,Browder,KY,light,3600,Objects hovering then darting in the east sky from center of Browder, KY. ((NUFORC Note: Sighting of Sirius, which is in E sky?? PD)) +2007-10-04,45.1680556,-84.9161111,Boyne Falls,MI,triangle,8,Triangle; no lights or sound +2007-10-04,44.0805556,-103.2305556,Rapid City,SD,cigar,15,Silver cigar shape craft over north rapid +2008-10-04,37.8391667,-94.3544444,Nevada,MO,circle,2700,The light was so bright it appears to be daytime. ((NUFORC Note: Probable star. PD)) +2008-10-04,38.6786111,-121.7722222,Woodland,CA,light,60,two white lights speeding at a supersonic speed in a straight line away from each other +2008-10-04,33.9533333,-117.3952778,Riverside,CA,light,300,My wife pointed out 4 lights high up in the sky. +2008-10-04,42.9105556,-87.8605556,South Milwaukee,WI,circle,90,star like orb in northern sky +2008-10-04,47.6063889,-122.3308333,Seattle,WA,light,1,Boeing Airfield +2008-10-04,36.175,-115.1363889,Las Vegas,NV,circle,3600,Friend in N. Las Vegas Nevada has just called me 9:26pm PDT on 04OC08 PDT). ((NUFORC Note: Advertising lights. PD)) +2008-10-04,41.8238889,-71.4133333,Providence,RI,oval,60,3 illuminated oval objects spotted flying closely together. +2009-10-04,41.2333333,-80.4488889,Hermitage,PA,formation,120,A loud, sideways triangle, with many lights. +2009-10-04,40.7141667,-74.0063889,New York City (Brooklyn),NY,other,360,UFO near JFK Airport NY on a bright sunny day +2009-10-04,21.3155556,-158.0072222,Ewa Beach,HI,circle,1200,ball of ligh that changes its color from blue green red and white then it moves very suspiciously up down left right then it gets big. +2009-10-04,41.6580556,-90.5844444,Eldridge,IA,light,300,Bright orange object seen flying E/SE out of atmosphere. +2009-10-04,28.5380556,-81.3794444,Orlando,FL,sphere,120,Very bright sphere flying at a high velocity through the sky. +2009-10-04,43.1008333,-75.2330556,Utica,NY,light,600,A swarm of lights moving and making different shapes. +2010-10-04,33.5205556,-86.8025,Birmingham,AL,triangle,240,Black triangle materialized overhead and proceeded southbound +2010-10-04,39.885555600000004,-104.9866667,Northglenn,CO,circle,1200,circular craft that strobed different collors +2010-10-04,47.8211111,-122.3138889,Lynnwood,WA,circle,900,Bright white light over Lynnwood WA hovers for about 10 minutes before slowly moving East +2010-10-04,36.7758333,-121.6686111,Prunedale,CA,light,60,An extremely bright white light was observed travelling at an extraordinary speed, with no noise. +2010-10-04,39.4805556,-86.055,Franklin,IN,triangle,300,I saw along both sides of the interstate 3 triangle shaped objects with 2 bright lights in the middle on the bottom of them. +2010-10-04,32.7833333,-96.8,Dallas,TX,other,2100,Squid shape UFO in Dallas. +2010-10-04,37.485,-119.9652778,Mariposa,CA,circle,1800,UNRECOGNIZED ORB taveling lights!! PLEASE TAKE A LOOK! +2011-10-04,38.3030556,-77.4608333,Fredericksburg,VA,fireball,4,Entering highway 95 headed toward DC, I saw a extra large ball of fire streak across the sky and it was so fast... I have seen shootin +2011-10-04,40.8694444,-84.5841667,Van Wert,OH,fireball,5,Fireball with tails in Ohio +2011-10-04,39.0911111,-94.4152778,Independence,MO,triangle,300,Hovering triangular craft with many lights seen in the night sky. +2011-10-04,42.5377778,-83.2330556,West Bloomfield,MI,other,4,I saw 2 connected glowing white lights (globes) moving upwards and then they just disappeared. +2011-10-04,39.9522222,-75.1641667,Philadelphia,PA,circle,120,Two Circle Ufo's Flying At Extream Speeds +2012-10-04,35.3733333,-119.0177778,Bakersfield,CA,cylinder,1200,White ufo looked like a humungous pcp pipe (747 size) no protrusions heading from Los Angeles, to the north. Silent too. No vapor. +2012-10-04,41.5563889,-73.3091667,Roxbury,CT,oval,600,It circled our house at hte cloud line. +2012-10-04,37.775,-122.4183333,San Francisco,CA,disk,60,Recorded a dark disk shaped object fly in between 2 blue angles. +2012-10-04,37.2708333,-79.9416667,Roanoke,VA,cylinder,30,Wingless cylinder shaped craft flying south over Roanoke, VA. +2012-10-04,41.5563889,-73.3091667,Roxbury,CT,oval,600,It was a green light circling above the cloudline above my house. +2012-10-04,47.4019444,-122.3230556,Des Moines,WA,triangle,300,V shaped object passed over my house with no sound. 2 red lights on end of v tips and white blinking lights on the bottom. Red lights b +2012-10-04,39.7588889,-84.1916667,Dayton,OH,light,3600,Multiple high speed, high altitude lights over Dayton, Ohio. +2012-10-04,41.2269444,-80.24,Mercer,PA,formation,60,Four or five solid red lights slanted almost as a plane on its side following one single orange light/orb. +2012-10-04,37.3394444,-121.8938889,San Jose,CA,circle,1200,Yellow-green-white lighted objects flying over mt umunhum mountain range. +2012-10-04,41.7658333,-83.6280556,Lambertville,MI,circle,900,Orbs spotted in the Lambertville Michigan area +2012-10-04,41.7830556,-123.0591667,Hamburg,CA,light,300,Reviewing stars used for surveying when two extremely bright lights suddenly appeared very hight directly above us. They were not movi +2012-10-04,40.7141667,-74.0063889,New York City (Middle Village) (Queens),NY,fireball,120,Red/Orange fireball in sky over South shore of Long Island New York +2012-10-04,48.1202778,-114.4558333,Kila,MT,circle,3,It was bright green, in the west. Traveled downward very fast. Looked like a shooting star but larger and brighter. I am mature, rea +2012-10-04,47.4602778,-114.8819444,Plains,MT,flash,3,Very large falling star style flash. +2013-10-04,47.6063889,-122.3308333,Seattle,WA,teardrop,3,Stingray shaped object with red lights. +2013-10-04,30.3405556,-97.5566667,Manor,TX,light,300,A glaring bright light which moved slowy towards us (E) for approx. 1:00 then it began to turn and move away for 4:00. The light w +2013-10-04,33.9813889,-81.2363889,Lexington,SC,triangle,420,Weird Unexplained events. +2013-10-04,33.6305556,-112.3325,Surprise,AZ,fireball,420,Saw what I thought was a meteor with full fire in back then it went to a bright light when I looked close it was moving. +2013-10-04,40.7608333,-111.8902778,Salt Lake City,UT,circle,1500,Starlike object that hovers and then slowly moves. +2013-10-04,36.6305556,-119.6775,Fowler,CA,rectangle,600,Hovered solid black square/rectangle shaped object had no sound and no lights. +2013-10-04,39.6472222,-75.9688889,Westminister,MD,unknown,480,I did take a picture with my phone, could have been a meteor. +2013-10-04,32.7833333,-96.8,Dallas,TX,diamond,360,DIAMOND SHAPED OBJECTS MANEUVERING IN DALLAS NIGHT SKIES. +2013-10-04,44.6366667,-123.1047222,Albany,OR,fireball,600,Woman and adult daughter witness cluster of orange lights near the Albany Hospital. +2013-10-04,35.0844444,-106.6505556,Albuquerque,NM,circle,600,Numerous blue white shimmering spheres moving rapidly from northwest to southeast over Albuquerque. +2013-10-04,64.8377778,-147.7163889,Fairbanks,AK,circle,600,Strange orange lights moving unnaturally across the sky. +2013-10-04,38.7508333,-77.4755556,Manassas,VA,light,10800,Walked outside before 8 pm and 1st one I saw was white/yellow slowly blinking lights in the sky. Very Bright, Very close. I am not exag +2013-10-04,38.4177778,-82.5863889,South Point,OH,circle,1200,Dark spinning object seen after seeing 5 orange globes. +2013-10-04,40.4677778,-84.1805556,Botkins,OH,cylinder,240,Four orange lights that moved from East to the North. +2013-10-04,36.145,-82.4169444,Erwin,TN,light,3600,Crescent shaped formation of bright flickering white lights. +2013-10-04,47.9786111,-122.3544444,Clinton,WA,sphere,240,Me, my husband, and brother saw three round, orange flameing lights in the sky, they were silent, had no trails and weren't blinking. +2013-10-04,44.9430556,-123.0338889,Salem,OR,triangle,900,Brilliant star-like object hovers above trees and shines bright lights before changing into golden triangle. +2013-10-04,44.9430556,-123.0338889,Salem,OR,triangle,900,Low flying star-like object transforms into shining golden triangle in Salem, OR. +2013-10-04,64.8377778,-147.7163889,Fairbanks,AK,fireball,180,I saw 5 red glowing orbs +2013-10-04,34.6991667,-86.7483333,Madison,AL,circle,300,Attached video. Yes Not quality but it shows what was seen. Don't laugh. +2013-10-04,34.6991667,-86.7483333,Madison,AL,cylinder,300,UFO sighting, Madison, AL Friday 4 October 2013 +2013-10-04,40.8813889,-82.6619444,Shelby,OH,fireball,38,Massive Large Fireball Shoots from SouthWest to NorthEast in North Eastern Ohio 10/04/2013 10:48pm +2013-10-04,26.1272222,-80.2333333,Plantation,FL,sphere,300,Bright red sphere moving north to south then west very fast and disappeared. +2013-10-04,47.6063889,-122.3308333,Seattle,WA,oval,600,Sighting of two orange reddish objects, north of Puget Sound in Seattle +2013-10-04,35.7563889,-83.9705556,Maryville,TN,circle,60,Huge circular bright light. +2013-10-04,25.4683333,-80.4777778,Homestead,FL,formation,10,An object/formation of object(s) in half moon shape formed by 7 lights too fast for an aircraft and too slow for a meteor. +2013-10-04,45.4983333,-122.4302778,Gresham,OR,fireball,1200,My wife and I witnessed 16 - 20 orange orb-shaped objects that passed over us either solo or sets of two! +2013-10-04,40.7141667,-74.0063889,New York City (Bronx),NY,teardrop,120,Flew from left to right then stood still moved slightly left them flew to the right at of view . An electric blue bottom and pinkish re +1957-10-05,44.9444444,-93.0930556,St. Paul,MN,light,45,A bright light was apparently chased by several military jets. +1964-10-05,44.3530556,-121.1766667,Terrebonne,OR,cigar,600,Shimmering silver metallic shape.....no sound(s), moving slowly to the South. +1967-10-05,43.0480556,-76.1477778,Syracuse,NY,disk,120,silent luminescent disc shining in the pre-dawn sky +1968-10-05,40.7105556,-90.2661111,London Mills,IL,disk,1800,I was working at the Mecco mine near London Mills, IL on 10/05/68. Fall was dry so need for pumps in the strip mine after a rain was +1968-10-05,44.1622222,-97.0186111,Nunda,SD,disk,900,My uncle had a close encounter in 1968 +1977-10-05,41.0813889,-81.5191667,Akron,OH,cylinder,1800,I think I saw either an alien transport or God doing something wonderful. +1978-10-05,42.7647222,-71.4402778,Hudson,NH,circle,3600,((HOAX??)) THREE OF US SAW LIGHTS IN THE SKY AND LOST AT LEAST ONE HOUR . 500 Lights On Object0: Yes +1980-10-05,40.1944444,-105.525,Allenspark,CO,light,5,Bright white light moves in U-pattern then fades out. +1990-10-05,36.7477778,-119.7713889,Fresno,CA,changing,7200,Three objects in the sky. +1994-10-05,39.6005556,-82.9461111,Circleville,OH,circle,2700,Large object with flashing seen from 3 directions over Circleville. +1995-10-05,30.275,-89.7811111,Slidell,LA,formation,600,Appeared to be a formation of sorts at first; 1500-2500' feet off the surface; 1/2-3/4 mile in length E-W, 1/4 mile wide N-S; over Lake +1997-10-05,41.14,-104.8197222,Cheyenne,WY,other,90,Seen a object in clear sky.looked like commet coming from south to north.lost tail half way across sky +1997-10-05,43.1008333,-75.2330556,Utica,NY,light,120,I looked up at the sky, and two or three bright red dots were in the sky, and moving at right angles very fast. +1998-10-05,33.4669444,-117.6972222,Dana Point,CA,fireball,10,Similar to a Shooting Star, but not! Brillient Bright Green in color with sparkling long tail. +1998-10-05,29.7630556,-95.3630556,Houston,TX,formation,480,4 oblects moving in A tetrahedral pattern, with A fourth object directly behind +1998-10-05,34.2572222,-118.4661111,Mission Hills,CA,sphere,900,UFO and US military play follow me if you can. +1998-10-05,34.3847222,-118.53,Newhall,CA,sphere,4,Luminous, green, round sphere of light moved across sky fron S to WSW +1999-10-05,27.9472222,-82.4586111,Tampa,FL,circle,240,Traveling across Gandy bridge, saw silver saucer shape trailing right behind a jet approaching Tampa In'tl. airpt. I noticed because th +1999-10-05,44.739444399999996,-93.1255556,Rosemount,MN,triangle,5,I observed 2 rather small, dimly-lit long, triangular shaped objects flying in formation heading north at a rater low altitude at somew +1999-10-05,36.8188889,-76.2752778,Chesapeake,VA,other,30,I was doing some observations for my astronomy class tonight and I saw something very strange. I was looking west about forty five deg +1999-10-05,29.7630556,-95.3630556,Houston,TX,chevron,120,I saw an object chevron shaped in the evening sky, moving southwest. I live southwest of Bush Intercontinental airport and was watching +1999-10-05,32.2216667,-110.9258333,Tucson,AZ,triangle,5,Dark unlit object streaking across Tucson sky at unbelievable speed. +2000-10-05,47.9130556,-122.0969444,Snohomish,WA,other,1200,There was a bright flourescent green light in the northeastern sky with no definite shape that had streaks through the haze. +2000-10-05,38.8338889,-104.8208333,Colorado Springs,CO,triangle,300,THE TRIANGLAR CRAFT WAS OBSERVED NEAR PIKE'S PEAK. I SAW IT FIRST. IT WAS SCANNING THE PEAK WITH ONE OF THREE SEARCHLIGHTS THAT WERE ON +2000-10-05,34.7488889,-112.1130556,Jerome,AZ,changing,14400,Diamond shaped craft shifts to Cylinder over Arizona +2000-10-05,46.2113889,-119.1361111,Kennewick,WA,unknown,10,Not too much to tell, we just saw a very bright light come overhead from the south. Then it dimmed as it went up and north at a great +2000-10-05,30.6033333,-87.9036111,Daphne,AL,circle,120,Daphne, AL ( 50 mi. west of Gulf Breeze.) I play bass in a classic rock band, and had just left our studio when I saw what I thought wa +2000-10-05,42.6375,-70.95,Topsfield,MA,fireball,30,Neon Green fireball looking thing.. hit tree then shot up into the sky... +2001-10-05,47.3225,-122.3113889,Federal Way,WA,fireball,600,A ball of fire with a tail movng from north to south in the western ski +2001-10-05,40.2338889,-111.6577778,Provo,UT,circle,900,White Floating object in Utah County +2001-10-05,24.5552778,-81.7827778,Key West,FL,rectangle,600,U.F.O HOVERS OVER CRUISE SHIP KEY WEST FLORDIA 2001 .. +2001-10-05,36.9086111,-111.4727778,Page,AZ,circle,900,Red fluxuating light that changed from sphere to doughnut in appearance. +2001-10-05,37.8361111,-87.59,Henderson,KY,oval,20,Green meteor? That altered heading?? +2001-10-05,33.6888889,-78.8869444,Myrtle Beach,SC,circle,15,My brother, husband and I were on vacation in the Myrtle Beach area during Oct. of 2001. I was on the balcony looking at the ocean and +2002-10-05,39.1611111,-89.4936111,Hillsboro,IL,light,300,MISSOURI INVESTIGATORS GROUP Report: Bright flashing lights in a circ. pattern, 34-50 yards in dia. hovering about 4 stories up. +2002-10-05,34.0522222,-118.2427778,Los Angeles (San Fernando Valley),CA,light,10,Light moving radiply accross the sky much faster than any airplane +2002-10-05,32.9125,-96.6386111,Garland,TX,light,20,Shooting star changes directions multiple times lasting 20 seconds +2002-10-05,45.6388889,-122.6602778,Vancouver,WA,fireball,6,Fuse like Fireball splits the sky +2002-10-05,46.7833333,-92.1063889,Duluth,MN,cross,2,red lights in cross formation traveling east. +2002-10-05,42.0333333,-87.8833333,Des Plaines,IL,triangle,900,10 shapes were flying about a mile outside of Ohare field. +2002-10-05,33.4936111,-117.1475,Temecula,CA,fireball,600,Fireball seen in Southern California +2002-10-05,38.3527778,-120.9316667,Ione,CA,formation,12,Very fast,silent, "v"formation, 5-6 points of light, north to south, fairly low, not blinking, reddish hue. Fast. +2002-10-05,37.7652778,-122.2405556,Alameda,CA,light,7,stationary star moves +2003-10-05,40.7608333,-111.8902778,Salt Lake City,UT,cigar,600,UTAH UFO HUNTERS REPORT: I noticed they were flying in unison. +2003-10-05,40.4163889,-120.6519444,Susanville,CA,light,2,I was on a boat in Eagle lake, I looked up and seen a light streak across the sky from NE to SW at dawn. It was moving faster than any +2003-10-05,42.1211111,-88.2577778,Carpentersville,IL,triangle,10,We witnessed a Pyramid shaped object just above the tree line about 500 feet up moving west southwest at a rapid rate around 8:00ish Ce +2003-10-05,26.3794444,-98.82,Rio Grande City,TX,cigar,5,Large cigar object floats and disappears over texas brushland, all in five seconds +2003-10-05,33.4483333,-112.0733333,Phoenix,AZ,formation,1200,There was a constellation of "stars" in the sky, except it was broad daylight and no clouds, some moved, then they faded away. +2003-10-05,40.5677778,-84.1936111,Wapakoneta,OH,light,1200,Strobing Red-White-Blue lights splitting in the sky. +2003-10-05,46.6461111,-94.3344444,Jenkins,MN,chevron,10,A chervon object floating in the sky suddenly drops towards the earth and disappears. +2003-10-05,35.1894444,-114.0522222,Kingman,AZ,disk,1200,Kingman Gold saucer Sighting +2004-10-05,40.3972222,-91.3847222,Keokuk,IA,chevron,30,A V shaped formation of dim white lights moving west to east directly overhead quite high moving very fast. +2004-10-05,37.6688889,-122.0797222,Hayward,CA,light,600,Lights above Hayward, CA +2004-10-05,27.8625,-82.8486111,Indian Shores,FL,light,4,Horizontal traveling red light. +2004-10-05,40.6219444,-73.7472222,Inwood,NY,other,15,It was a v shape with what looked like white lights every couple of Feet. +2004-10-05,40.6547222,-73.6722222,Lynbrook,NY,formation,20,3 light tight formation, @10X speed of satalites,with changing formation. +2004-10-05,28.1458333,-82.7569444,Tarpon Springs,FL,unknown,12,A totally mysterious solid "puff" of dim light traveled across the sky. +2004-10-05,39.9830556,-75.8241667,Coatesville,PA,other,15,White light with two rows of red lights following behind. +2004-10-05,34.5861111,-94.2394444,Mena,AR,light,2,Bright stars-like objects suddenly appear and them dim...bright star-like objects moving fast and then disappear +2004-10-05,33.5988889,-117.2791667,Wildomar,CA,cross,20,Silent fixed wing craft without lights. +2005-10-05,27.1972222,-80.2530556,Stuart,FL,unknown,7200,not sure what i saw +2005-10-05,34.1261111,-78.9758333,Green Sea,SC,triangle,10800,2-3 hour observation of Triangle craft while hunting top of trees 150 to 160 yards away +2005-10-05,34.0211111,-118.3955556,Culver City,CA,unknown,7200,SILVERY OBJECT SEEN HOVERING HIGH-ALTITUDE OVER CULVER CITY, CALIFORNIA +2005-10-05,44.1669444,-74.5383333,Tupper Lake,NY,light,7200,Flashing lights +2005-10-05,41.6638889,-83.5552778,Toledo,OH,light,2880,Point source of light observed for 48 min in rapid acceleration and deceleration and apparent stationary flight +2005-10-05,47.5002778,-111.3,Great Falls,MT,other,10800,Three day sighting spectacular! +2005-10-05,43.12,-85.56,Rockford,MI,fireball,15,Fireball falling from the sky +2005-10-05,44.9430556,-123.0338889,Salem,OR,chevron,0.4,There was a lone craft in the sky,that seemed pretty high. I am not familar with the exact hieght/Locations of things> According to the +2005-10-05,41.6005556,-93.6088889,West Des Moines,IA,cigar,300,Object Hovering between 2-5ꯠ feet in the air. 4-5 Strobe lights in a row flashing in sequence. Object hovered without making a sou +2005-10-05,27.9655556,-82.8002778,Clearwater,FL,chevron,6,While sitting outside at night, a dark boomerang flew silently above me. It was sharp edged with appx 4 blurry whiteish lights on each +2005-10-06,42.8666667,-106.3125,Casper,WY,sphere,30,Glowing object crosses road right to left - vanishes into ravine..than crosses again left to right..then away. +2005-10-06,31.5602778,-91.4030556,Natchez,MS,light,2,((NUFORC Note: May not be serious report. PD)) Large bright light. +2006-10-05,42.1155556,-75.9591667,Johnson City,NY,cylinder,120,Silver flying cylinder. +2006-10-05,21.3069444,-157.8583333,Honolulu,HI,sphere,60,One minute sighting of massive football sized sphere about 2000 ft up +2006-10-05,33.5975,-112.2711111,Sun City (West Of Phoenix),AZ,light,1800,Circles of light meet and separate in a distinct pattern +2006-10-05,41.9141667,-88.3086111,St. Charles,IL,formation,1200,Strange deep red light very slowly tracing over rural St charles, IL +2007-10-05,30.2669444,-97.7427778,Austin,TX,triangle,300,Two far and near objects over Austin, TX. during the early morning of 10/05/2007 +2007-10-05,29.7630556,-95.3630556,Houston,TX,sphere,7200,small sphere above downtown Houston +2007-10-05,46.6541667,-120.5288889,Selah,WA,oval,120,I saw a brilliant illuminated object come straight down, hovered, moved two times and went straight up out of site. +2007-10-05,36.0213889,-80.3822222,Clemmons,NC,light,5400,A very slow moving cluster of bright, brilliant lights +2007-10-05,36.0213889,-80.3822222,Clemmons,NC,diamond,1800,Sparkling light, looks like a star, but flashes rainbow colors. Stays stationary. In Northwest sky. ((NUFORC Note: Star?? PD)) +2007-10-05,44.9430556,-123.0338889,Salem,OR,other,180,I saw a flying craft that was unlike anything I've ever seen. +2007-10-05,33.3061111,-111.8405556,Chandler,AZ,sphere,10800,Colorful, flashing spheres in the Chandler, AZ night skies on 10/05/07. ((NUFORC Note: Sighting of Sirius?? PD)) +2007-10-05,45.9327778,-118.3866667,Milton-Freewater,OR,light,3600,Dancing balls of light, each the size of a full moon, viewed for over an hour from Milton-Freewater, Oregon, Friday, October 5th, 2007. +2007-10-05,39.9369444,-120.9461111,Quincy,CA,triangle,240,trianglar craft, blink, and amber lights +2007-10-05,37.9513889,-91.7711111,Rolla,MO,unknown,360,Crafts flying over my house it seems like every night. +2007-10-05,41.2586111,-95.9375,Omaha,NE,light,35,Bright light over west Omaha at 11:45pm Oct. 5th. +2007-10-05,33.4213889,-96.5769444,Van Alstyne,TX,rectangle,4,4 slanted shimmering/plusing rectangles in eastern sky. Very symmetrical and evenly spaced. +2008-10-05,33.4483333,-112.0733333,Phoenix,AZ,other,50,Three lights no structure completely black....... +2008-10-05,37.6941667,-122.0852778,Castro Valley,CA,circle,300,Perfect circular bright light over S.F. East Bay evening of Sunday October 5th +2008-10-05,36.175,-115.1363889,Las Vegas,NV,changing,1800,The Vegas Lights Are Not From a Casino! +2008-10-05,35.0844444,-106.6505556,Albuquerque,NM,unknown,3,Two "Exhaust Port" white lights streaking across the sky in Albuquerque that instantly vanished. +2009-10-05,26.7052778,-80.0366667,West Palm Beach,FL,sphere,15,Possible UFO sighting. Need clarification. +2009-10-05,43.073055600000004,-89.4011111,Madison,WI,fireball,20,Rolling ball of light/fire/gas fell to earth and then took off. +2009-10-05,39.2688889,-84.2638889,Loveland,OH,light,600,Bright white lights. Unusually low on horizon. Maneuvered like a jet/airplane cannot, hovered in air very close to my location. +2009-10-05,34.2997222,-79.8763889,Darlington,SC,light,7,3 orange-red lights appeared in the sky to form a triangle. +2009-10-05,43.6955556,-116.3530556,Eagle,ID,fireball,240,A bright fire ball light hovering in the lower sky over Boise Eagle area. +2009-10-05,37.7944444,-93.5777778,Humansville,MO,sphere,60,10/05/09 23:00 Humansville Mo. Solid red ball of light travelling directly overhead for approximately 1 minute, 4 witnessess +2009-10-05,36.0958333,-79.2672222,Mebane,NC,other,45,I was smoking a cigarette on my porch, in the farm house I just moved into when what I thought was a jet coming over my house. I just m +2010-10-05,30.4211111,-87.2169444,Pensacola,FL,triangle,180,Black triangle craft flying low wilts trees. +2010-10-05,38.5816667,-121.4933333,Sacramento,CA,other,1800,Boomerang shaped wing, flying silent and low over the I-5 outside of Sacramento. +2010-10-05,28.9408333,-99.8494444,La Pryor,TX,fireball,15,I saw something flying in the sky in daylight, and have no idea what it was!!! +2010-10-05,35.4833333,-86.4602778,Shelbyville,TN,oval,90,fast moving ovals at night with unison in the sky +2010-10-05,39.7155556,-82.9530556,Ashville,OH,disk,20,((HOAX??)) lights in the field. Five craft, of all different size. Lifted from the field, and took off. +2010-10-05,41.5316667,-94.0094444,De Soto,IA,light,3600,5 amazingly bright light objects in bright redish/orange October sunset. in IOWA. +2010-10-05,42.8863889,-78.8786111,Buffalo,NY,changing,240,Kite shaped object bright white, above deleware park +2010-10-05,38.7647222,-95.0077778,Edgerton,KS,disk,6000,Unidentified Object with flashing lights near Edgerton KS. ((NUFORC Note: Possible sighting of the star, Vega, we suspect. PD)) +2010-10-05,31.8272222,-99.4261111,Coleman,TX,unknown,60,Syncronised lights over Coleman, Texas +2010-10-05,30.7108333,-94.9327778,Livingston,TX,light,60,Twinkling multi-colored object stationary in night sky over east Texas +2010-10-05,47.8555556,-121.9697222,Monroe,WA,light,15,Single white light turned into 5 flashing lights in a row. +2011-10-05,33.8169444,-118.0363889,Cypress,CA,triangle,5,I saw a triangle shape thing I live 20 minutes away from lax this thing was higher than a plane landing and super super huge triangle t +2011-10-05,43.4666667,-112.0333333,Idaho Falls,ID,disk,600,Bright neon flashes seen across city along with power outages, and a molten-gold colored disk with smaller disks coming off of it. +2011-10-05,36.3955556,-97.8780556,Enid,OK,circle,30,Object tracked from north to south high in sky, became bright, stopped in mid flight and disappeared. +2011-10-05,38.5291667,-76.9755556,La Plata,MD,unknown,300,red firey appearence on bottom dark on top moving slowly over rt 301 then hovers still in sky. +2011-10-05,43.6136111,-116.2025,Boise,ID,unknown,60,Bright Flashes +2011-10-05,33.3941667,-110.7858333,Globe,AZ,light,60,Bright light moves across the sky and disappeared. +2011-10-05,25.7738889,-80.1938889,Miami,FL,sphere,20,Sphere shaped object which drifted slowly and seemed to disappear and reappear numerous times. +2011-10-05,42.3255556,-83.3311111,Garden City,MI,fireball,240,Large bright orange/red "fireball" that faded and exposed a black flat object +2011-10-05,38.8047222,-77.0472222,Alexandria,VA,other,5,Sitting out on deck. Sky pretty dark for urban area. Looking with 12x60 binoculars in the "summer triangle" for asterism called the "co +2011-10-05,41.1175,-73.4083333,Norwalk,CT,changing,10800,Multiple morphing UFO's in the skies from Trumbull to Norwalk 10/5/11-10/7/11 +2011-10-05,42.4525,-89.0722222,Rockton,IL,cone,360,It looked like a planet like Jupiter. +2011-10-05,39.0911111,-94.4152778,Independence,MO,circle,40,Glowing, pulsating, orange orb, silent, low to the ground, shot away at amazing speed +2011-10-05,33.6680556,-117.3263889,Lake Elsinore,CA,circle,120,Red lighted UFO flying over Ortega Mountains, Lake Elsinore side +2011-10-05,35.7113889,-109.5413889,Ganado,AZ,other,240,Boomerage shaped object flying low and quiet. +2011-10-05,42.9316667,-76.5663889,Auburn,NY,triangle,120,Unbelievable star that turns into a UFO. +2011-10-05,36.7477778,-119.7713889,Fresno,CA,formation,1200,UFOs seen near the intersection of Hwy. 41 and Avenue 12 north of Fresno, CA +2012-10-05,41.5580556,-73.0519444,Waterbury,CT,unknown,420,Orange sets of lights over waterbury +2012-10-05,43.4666667,-112.0333333,Idaho Falls,ID,sphere,600,In the sky West of Idaho Falls flying objects moving East slowly then rapidly to the South. Red orange in color, hundreds of objects. +2012-10-05,42.0177778,-71.5416667,Blackstone,MA,other,45,Football shaped object moving steadily across daytime sky. +2012-10-05,39.0997222,-94.5783333,Kansas City,MO,disk,180,Photo picks up 2 pink ufos +2012-10-05,33.4955556,-88.4272222,Columbus,MS,sphere,900,Bright Sphere like object or fireball spotted above Columbus, Ms with Military aircrafts appearing to investigate. +2012-10-05,42.4472222,-71.225,Lexington,MA,unknown,30,Strange flying lights in the nights sky +2012-10-05,36.3352778,-92.385,Mountain Home,AR,other,300,Three brilliant bright lights in a spaced line formation attached to an incredibly large aircraft in a diagonal position. +2012-10-05,42.5833333,-71.8027778,Fitchburg,MA,fireball,900,Orange like fireball orb floating then sped off and dissapeared +2012-10-05,43.7286111,-72.6194444,Barnard,VT,sphere,180,Bright orange, glowing orb over Barnard, VT +2012-10-05,33.5805556,-112.2366667,Peoria,AZ,fireball,300,My wife and I were sitting on our back porch facing north in our home in Peoria, when we observed a fireball that looked like a comet o +2012-10-05,41.8488889,-72.5722222,South Windsor,CT,oval,420,Observered several bright orange oval shaped lights over South Windsor CT around 10 mins +2012-10-05,36.1538889,-95.9925,Tulsa,OK,formation,120,Armada of Star-like Objects Moving Across Oklahoma Night Sky +2012-10-05,33.8158333,-78.6802778,North Myrtle Beach,SC,light,480,More Reddish-Orange light activity in North Myrtle Beach, SC. +2012-10-05,41.2222222,-73.0569444,Milford (Gulf Beach),CT,fireball,900,Sequence of five orange lights in identical transit +2012-10-05,34.1363889,-118.7736111,Agoura Hills,CA,fireball,180,Intense bright white round light with purple blinking within it; darted up, down, sideways, circling around & repeated the motions. +2012-10-05,40.2202778,-74.0125,Asbury Park,NJ,fireball,180,I was standing near the beach taking my two dogs out for a walk at 21:30. I saw numerous orange colored lights in the sky moving from +2012-10-05,30.3855556,-88.6116667,Gautier,MS,light,600,4 Red lights seen over the gulf and appeared to drop red lights or flares. +2012-10-05,44.9033333,-93.5661111,Excelsior,MN,triangle,180,Speed and height of aircraft was not sustainable by anything but a helicopter for the two minute duration of observation +2012-10-05,39.0838889,-77.1530556,Rockville,MD,other,1800,blue falling object, followed by 2 white lights and aircrafts searching Rockville,MD +2012-10-05,37.6688889,-122.0797222,Hayward,CA,chevron,8,Stealth bomber looking craft, maybe drone, silent, low-flying, 25 ft wing tip to wing tip, probably US military +2012-10-05,32.9125,-96.6386111,Garland,TX,chevron,10,I saw a dark v cloud fly over my head at 2000 mph +2013-10-05,42.7005556,-74.0341667,Altamont,NY,light,420,Three bright lights in the sky were dancing and pivoting around each other, flying off into the distance and then flying back toward us +2013-10-05,61.2180556,-149.9002778,Anchorage,AK,unknown,30,Weird occurrence over Anchorage +2013-10-05,35.7883333,-77.6380556,Pinetops,NC,unknown,900,Really strange noises heard. +2013-10-05,40.1672222,-105.1013889,Longmont,CO,circle,3,White object traveling very fast NW to SE. +2013-10-05,44.6652778,-73.0091667,Fairfax,VT,light,1200,Bright stationary light. +2013-10-05,44.8994444,-109.1502778,Clark,WY,unknown,120,6 Invisible objects con trails only. ((NUFORC Note: They look like normal contrails to us. Can see trace of plane, we believe. PD)) +2013-10-05,31.4627778,-90.85,Bude,MS,cylinder,300,White rotating cylinder shaped object flies over house. +2013-10-05,43.2505556,-89.5013889,Dane County,WI,fireball,14400,Fire balls arrive in Dane county, WI. +2013-10-05,38.7594444,-87.4155556,Bruceville,IN,triangle,2,Triangle shaped object, hovering at tree level. Bright green center light. +2013-10-05,33.3061111,-111.8405556,Chandler,AZ,sphere,300,6 or 7 orange flickering orbs in a line formation over Chandler and Gilbert AZ on 10/5/13. +2013-10-05,20.9316667,-156.6972222,Kaanapali,HI,fireball,300,Three orange fire like balls moving across the night sky. +2013-10-05,36.1658333,-86.7844444,Nashville,TN,circle,30,Two bright star-ish lights moving parallel over Nashville sky. +2013-10-05,44.5438889,-73.1483333,Colchester,VT,light,60,Stargazing clear night. Very bright light dimmed back 90 percent Proceeded at a slow silent pace south east,. +2013-10-05,37.1463889,-92.7686111,Seymour,MO,light,60,Low flying, slow moving 5 lights, perfectly spaced at all times, Dissipated one by one. +2013-10-05,45.9933333,-123.9213889,Seaside,OR,light,900,White lights over Pacific Ocean. +2013-10-05,47.6588889,-117.425,Spokane,WA,sphere,900,Orange Spherical Orbs doing a Brilliant Show over the City sky. Over 10 witnesses on the scene. +2013-10-05,42.5194444,-70.8972222,Salem,MA,light,780,Three orbiting lights visualized in western sky over Salem, MA. +2013-10-05,26.3583333,-80.0833333,Boca Raton,FL,formation,300,5 Red circles hovering, looked light lining of a structure....until I realized there is no structure. +2013-10-05,36.1658333,-86.7844444,Nashville,TN,fireball,1800,Three bright orange lights seen flying low over east Nashville. +2013-10-05,47.6588889,-117.425,Spokane,WA,sphere,300,Multiple orange orbs over downtown Spokane. +2013-10-05,30.6033333,-87.9036111,Daphne,AL,light,23,Formation of 10-15 bright white lights moving east to northwest over Daphne, Alabama. +2013-10-05,43.8261111,-111.7888889,Rexburg,ID,formation,3,My daughter and I saw 5-7 white lights in a shifting formation travel quickly across the Idaho night sky in a southwesterly direction. +2013-10-05,33.0369444,-117.2911111,Encinitas,CA,circle,120,Glowing/pulsating orange light, moving quickly & erratically in San Diego, CA. +2013-10-05,36.9772222,-121.8983333,Aptos,CA,disk,120,Disc shaped object with multi-colored light array on bottom observed in Santa Cruz County, CA. +2013-10-05,28.6697222,-81.2083333,Oviedo,FL,circle,30,A grid formation of 30 or 36 lights, no noise. +2013-10-05,33.0461111,-96.9938889,Lewisville,TX,light,300,Bright Red light moving very fast across sky then disappeared. +2013-10-05,44.0522222,-123.0855556,Eugene,OR,fireball,300,10 orange orbs moving slow from east to west. Last one hovered before it vanished. No sound. +2013-10-05,45.6136111,-123.9416667,Rockaway Beach,OR,light,240,Unexplainable light moving in a ways not achievable by known aircraft. +1967-10-06,40.8244444,-74.4175,Whippany,NJ,disk,1800,noticed lights in the sky just above tree tops +1973-10-06,32.7919444,-115.5622222,El Centro (A Few Miles West Of),CA,light,1800,orange nocturnal light +1974-10-06,41.85,-87.65,Chicago,IL,oval,180,I SAW A UFO WITH OVER 500 WITNESSES AND IT WAS REAL AND IT WAS LARGE AND ROUND. +1996-10-06,39.1141667,-94.6272222,Kansas City,KS,unknown,35,Very Bright blue strobbing/pulsing light in center of some type of craft that flew over house illuminating ground... +1996-10-06,37.775,-122.4183333,San Francisco,CA,triangle,1800,Boomerang Shaped Objects w/ dark & light color scheme +1996-10-06,40.7141667,-74.0063889,New York City (Manhattan),NY,triangle,1200,Boomerang-shape, "dividing"? objects. +1996-10-06,40.6475,-73.1463889,Fire Island (Long Island),NY,other,2700,Fire Island up close encounter with a UFO. +1998-10-06,35.2561111,-79.2825,Vass (Town Of, On Hwy #1),NC,circle,3,I saw a green irredesent ball in the sky +1998-10-06,39.7391667,-104.9841667,Denver,CO,fireball,2,Red fireball with red tail traveling east to west +1998-10-06,40.135,-74.5244444,Cream Ridge,NJ,triangle,16,Three small white lights in triangle formation flew over head at night then disappeared suddenly. +1999-10-06,37.6922222,-97.3372222,Wichita,KS,light,15,I cannot call this a report of a flying object...it is more a report of a light in the sky. I was standing in my front yard, facing Sou +1999-10-06,27.7705556,-82.6794444,St. Petersburg (50 Se Of),FL,unknown,900,Sighting was reported by an aircraft who was southeastbound from St. Petersburg Fl to Ft. Lauderdale Fl along the west coast of FL. Pi +1999-10-06,29.1691667,-95.4316667,Angleton (5 Miles North),TX,cross,300,Vertical, symmetrical key-shaped or awl-shaped, terrestrial (?) craft, as outlined by 8-to-10 red lights. +1999-10-06,38.5969444,-90.5091667,Manchester (St.louis),MO,disk,10,The unidentifiable object went by my 9 year old daughters bedroom window,around 9:30 in the evening, very close,quiet,over the neighbor +1999-10-06,39.9405556,-76.3466667,Conestoga,PA,light,600,I was looking out my back window, waiting for my husband to come to bed. I saw lights in the distance (red and yellow flashing) which w +2000-10-06,47.6063889,-122.3308333,Seattle,WA,sphere,5,Observed a round, metallic object proceeding west or SW at apparent high rate of speed--object appeared to dissappear after 3-5 seconds +2000-10-06,37.2152778,-93.2980556,Springfield,MO,triangle,180,Triangle shapes exhibit unusual movements. +2000-10-06,38.3397222,-122.7,Rohnert Park,CA,cone,300,Two Steel Colored, Almost Rod Shaped Craft that play cat and mouse. Sonoma County/Marin County Sighting. Day Time Sightings both times. +2000-10-06,36.175,-115.1363889,Las Vegas,NV,other,240,Observed horseshoe shaped object at night front glowing yellow sides red over Las Vegas Nv. +2000-10-06,33.4222222,-111.8219444,Mesa,AZ,disk,14400,white object appearing to be round with 5 cylinders protruding from bottom +2001-10-06,41.4913889,-87.6744444,Park Forest,IL,triangle,15,THE AIRCRAFT WAS SHAPE LIKE A TRIANGLE WITH CIRCLE LIGHTS IN EACH CORNER TER WITH A LIGHT IN THE MIDDLE A REDDISH ORANGE LIGHT WAS BLIN +2002-10-06,40.7325,-73.4458333,Farmingdale,NY,light,1800,Long Island bright hovering white light eye level on a clear night sky. +2002-10-06,40.6219444,-73.7472222,Inwood,NY,light,5,BIG DIPPER HAS LOOSE STAR +2002-10-06,40.6975,-74.2636111,Union,NJ,cross,120,At 1:55 p.m. on October 6, I looked toward the east over Union, N.J., and saw what appeared to be two extremely small, white aircraft t +2002-10-06,36.4072222,-105.5725,Taos,NM,disk,3600,About 3:30 p.m. in Taos, New Mexico, my mother called me into the living room to look through the window. There was a Bright "star". Th +2002-10-06,40.015,-105.27,Boulder,CO,cigar,10,The object tiped its wings because the sun shone in my eyes twice and then dissapeared. +2002-10-06,36.1988889,-115.1166667,North Las Vegas,NV,teardrop,4,shiny object went behind cloud, but nevr came out the other side. +2002-10-06,38.2775,-90.35,Harrisonville,IL,oval,20,I am a 34 year man, professional engineer. Christian. Drug and alcohol free. Married with 1 child and 1 on the way. I am open minded to +2002-10-06,40.2338889,-111.6577778,Provo,UT,fireball,3,Fireball falling from the sky +2002-10-06,42.8330556,-108.73,Lander,WY,circle,1,a green circular light appeared and then darted behind the mountains +2002-10-06,45.0952778,-93.5472222,Corcoran,MN,light,120,disapearing light +2002-10-06,28.5555556,-82.4505556,Spring Hill,FL,light,120,Unidentified object in Florida. +2003-10-06,42.7875,-86.1088889,Holland,MI,cone,420,To sum it up,hmmm....what was it? +2003-10-06,36.6322222,-93.6341667,Shell Knob,MO,sphere,900,UFO SEEN HOVERING OVER FIELD ON ROUTE 13 ABout a 1/4 mile from Washington Street. THis was no plane! Had no sound nothing! Beam of ligh +2003-10-06,29.1458333,-82.4994444,Rainbow Lakes Estates,FL,other,45,Ghost airplane, so large dissapears with no sound in day time. +2003-10-06,39.055,-78.3683333,Lebanon Church,VA,cigar,900,Unexplained Objects in a Very Clear Sky , Cigar Shaped w/ a possible split tail configuration, both Shiny/Bright +2003-10-06,38.9783333,-76.4925,Annapolis,MD,triangle,120,A black triangle near the Naval Academy moved silently and would hover. +2003-10-06,39.5186111,-104.7608333,Parker,CO,chevron,60,Boomerang-shaped object travels over suburban neightborhood toward Rocky Mountains in Denver, Colorado. +2003-10-06,39.0997222,-94.5783333,Kansas City,MO,teardrop,5,the object,while lit, flew faster than any plane I've ever seen. +2003-10-07,41.1838889,-96.0308333,La Vista,NE,other,5400,The motionless objects sparkled like jewels,then came together and back to formstion in a split second. +2004-10-06,36.2080556,-86.2911111,Lebanon,TN,triangle,300,triangular object hovering over power lines. +2004-10-06,39.0044444,-76.8758333,Greenbelt,MD,changing,240,Daylight spherical object projects vertical electrical blue column to four times its diameter downward while over NASA Goddard SFC.. +2004-10-06,41.7108333,-87.7580556,Oak Lawn,IL,disk,10,1950's type style u.f.o ready and waxed +2004-10-06,38.7297222,-120.7975,Placerville,CA,disk,300,8 objects flying in a figure 8 pattern..at a very high altitude.. +2004-10-06,40.5141667,-88.9905556,Normal,IL,other,1200,Three of us saw 3 seemingly tumbling shiny objects move leisurely across the sky, holding in pattern briefly, then vanish to the east +2004-10-06,39.6288889,-75.1597222,Monroeville,NJ,triangle,180,Bright orange lights silently andl slowly move high among the stars and then desend quickly and hoovered over my car... +2004-10-06,37.7652778,-122.2405556,Alameda,CA,light,180,Single object met up with two other objects and all 3 flew in formation. Unique strobe sequence. +2004-10-06,42.2866667,-85.5133333,Comstock,MI,disk,60,A saucer shaped object, traveling very fast, and with amazing ability to make sharp, smooth turns. +2004-10-06,37.8044444,-122.2697222,Oakland,CA,other,240,While on field trip with astronomy class, sighted noiseless craft flying at a very high rate of speed while performing erratic flight +2004-10-06,40.0569444,-76.5525,Marietta,PA,triangle,60,Slow and low flying triangular craft with lights some blinking with a slight engine sound +2004-10-06,43.5408333,-116.5625,Nampa,ID,formation,3600,Bright orange rectangles that turned into a blinking, hovering light, followed by a line of blue and red planes with triangles. +2004-10-06,42.9633333,-85.6680556,Grand Rapids,MI,sphere,60,Spherical craft the size of a car with a bright red light hovered over the apartment building across from the Holiday Inn +2004-10-06,38.7297222,-120.7975,Placerville,CA,disk,3600,I saw 5 saucers above Placerville CA. ((NUFORC Note: Possible sighting of twinkling stars?? PD)) +2005-10-06,31.6277778,-110.3333333,Huachuca City,AZ,cigar,900,A cigar shaped object leaning to left moved thru storm clouds, moved to lean right and then to a dot and moved toward another storm. +2005-10-06,43.1536111,-93.2008333,Mason City,IA,light,300,strange flying object +2005-10-06,41.4913889,-87.6744444,Park Forest,IL,oval,300,I saw 3 round strange looking objects in the sky +2005-10-06,42.5277778,-92.4452778,Cedar Falls,IA,light,600,RED LIGHT +2005-10-06,30.0972222,-96.0780556,Hempstead,TX,cigar,600,Bright object over HWY 290 Hempstead, TX +2005-10-06,40.6502778,-89.6519444,Bartonville,IL,triangle,12,Pekin IL, +2005-10-06,37.4136111,-79.1425,Lynchburg,VA,triangle,45,Black Triangle, Three White Lights, What was that? +2005-10-07,29.7855556,-95.8241667,Katy,TX,unknown,5,pulled into driveway after work and looked into the sky to notice the stars with it being a clear sky and all of a sudden an aircraft o +2006-10-06,38.9516667,-92.3338889,Columbia,MO,flash,3,Stephen's Park Columbia, MO. Football shaped light in the sky takes odd turn. +2006-10-06,42.7675,-78.7441667,Orchard Park,NY,light,1800,update and correction +2006-10-06,40.7841667,-74.6972222,Chester,NJ,disk,10,I saw a disc shaped object flying across the sky. +2006-10-06,33.4483333,-112.0733333,Phoenix,AZ,other,5400,Amorphous black object hovering over Phoenix for 1.5 hours +2006-10-06,42.9633333,-85.6680556,Grand Rapids,MI,cigar,300,Standing in the front yard, 4 of us watched a silver cigar shaped craft move slowly across the sky and suddenly pick up speed andvanish +2006-10-06,33.425,-94.0475,Texarkana,TX,triangle,300,Hugh triangle, larger than 2 747's put together. I observed it through 8 power binoclars. It was a very bright white color appx. 15ꯠ +2006-10-06,39.6283333,-84.1594444,Centerville,OH,changing,7200,Dayton,Oh. Very bright round objects in a group of 10, then 2 very different shapes,and 1 stationary object, +2006-10-06,40.7719444,-80.7683333,Lisbon,OH,light,10,Dot of light moves across the sky twice. +2006-10-06,36.0155556,-82.1588889,Bakersville (Roan Mountain),NC,disk,10,I don't have a calandar handy, it was on the first Friday in October 06. I observed a round object for about 8 or 10 seconds. It had a +2006-10-06,39.9852778,-104.82,Brighton,CO,other,15,Craft with lights hovering over houses at night +2007-10-06,39.0483333,-95.6777778,Topeka,KS,triangle,3,Not a real believer, but what were those lights. +2007-10-06,40.7141667,-74.0063889,New York City (Upstate),NY,cigar,60,Driving in upstate NY, I noticed what looked to be a plane without wings stoped in the sky lower than what planes fly it was stoped on +2007-10-06,42.5716667,-100.0577778,Johnstown,NE,rectangle,180,My Report to the UFO Website October 6, 2007 5:45 a.m. Central Approximately Three Miles West of Johnstown, Nebraska On October 6, 20 +2007-10-06,34.4,-119.2991667,Oak View,CA,egg,60,Egg-shaped rust-colored craft in Oak View, CA rapidly traveling north to south, on Sat., Oct. 6. +2007-10-06,42.2880556,-100.6252778,Brownlee (Southwest Of),NE,oval,120,I sighted a UFO on Oct. 6, 2007 and reported it on this site. Approximately a month later, I believe it was Nov. 7, 2007, I saw someth +2007-10-06,30.8469444,-90.1530556,Franklinton,LA,unknown,18,Observed red,green and white lights hovering WNW of Franklinton La. with 3 flickering lights to the North. +2007-10-06,42.0883333,-87.9805556,Arlington Heights,IL,teardrop,60,teardrop shaped object over arlington heights +2007-10-06,38.0491667,-87.2741667,Boonville,IN,light,1800,Strage object flying over Ohio River, very large and moving slow. +2007-10-06,33.6602778,-117.9983333,Huntington Beach,CA,rectangle,900,UFO sighting over Hungtington Beach CA, Cluster of lights in diamond shape, several witnesses +2007-10-06,37.3861111,-122.0827778,Mountain View,CA,light,25,Three strange groups of erratically moving orange points of light move north over the califonia sky. +2007-10-06,39.4369444,-104.9591667,Sedalia,CO,light,300,Two orange pulsing lights, seemingly connected, and hovering in sky +2007-10-06,42.3147222,-88.4486111,Woodstock,IL,triangle,10800,I saw several triangle-shaped objects flying/hovering between Woodstock and Crystal Lake. +2007-10-06,38.8755556,-84.6102778,Walton,KY,circle,3600,Busy night in the sky above northern KY +2007-10-06,61.7472222,-150.0375,Willow,AK,circle,2,One glow in the dark green orb flying in a northward direction above the treeline, visible for only seconds. +2007-10-06,34.0522222,-118.2427778,Los Angeles,CA,formation,10,I live in Los Angeles. At approximately 10:10PM tonight I walked out my back door to throw some trash away in the city container. As I +2008-10-06,36.6080556,-94.4475,Lanagan,MO,light,600,red,white,blue light seen in nw sky 4 times in last two weeks ,moves horizontially,and remains stationary. ((NUFORC Note: Star? PD)) +2008-10-06,40.0791667,-75.3019444,Conshohocken,PA,cigar,600,A silver cigar shaped object remained stationary very high over head,well above the horizon close to zenith in the western sky for abou +2008-10-06,42.3416667,-72.5888889,Hadley,MA,oval,12,Flat circular cloud formation falling from the sky as if heavy then hovering +2008-10-06,43.8441667,-88.96,Green Lake,WI,light,300,Bright orange lights falling straight down from white lights +2008-10-06,41.4361111,-81.3866667,Chagrin Falls,OH,triangle,600,It was to long and going much to slow to be a plane. It was huge, I couldn't believe what i has seen. +2008-10-06,36.0397222,-114.9811111,Henderson,NV,other,60,Bright blob over henderson NV +2008-10-06,41.1669444,-73.2052778,Bridgeport,CT,triangle,900,three brightly lit arrow shaped objects observed in night sky +2008-10-06,35.0844444,-106.6505556,Albuquerque,NM,light,300,In the ssw, about degrees above the horizon, seemingly under some low clouds, my wife and I saw an upright cylinder shaped light that w +2008-10-06,42.9825,-77.4091667,Victor,NY,sphere,120,A small, white, ping-pong-like ball approached my car. +2008-10-06,33.5777778,-101.8547222,Lubbock,TX,sphere,3.8,Green spherical object with no trails of light behind it suggesting that it could have been a shooting star. +2009-10-06,40.7355556,-74.1727778,Newark,NJ,circle,1800,Strange flickering lights over Newark, NJ +2009-10-06,39.0436111,-77.4877778,Ashburn,VA,disk,300,Object moving unilaterally +2009-10-06,37.2752778,-107.8794444,Durango,CO,light,180,Two moving lights over north-central New Mexico 7:36 pm Tue Oct 6 2009 +2009-10-06,32.9477778,-112.7161111,Gila Bend (Near),AZ,light,3600,Strange lights near Gila Bend, AZ. +2009-10-06,41.5933333,-87.3463889,Gary,IN,light,2700,A group of lights with strange and independent movement were hovering over the southern shores of Lake Michigan +2010-10-06,38.4494444,-78.8691667,Harrisonburg,VA,triangle,300,Triangles "dancing" in the sky +2010-10-06,43.073055600000004,-89.4011111,Madison,WI,oval,3,3 high altitude redish purple lights that moved oddly across the nights sky. +2010-10-06,44.2619444,-88.4152778,Appleton,WI,light,120,I was walking with my friend as we were taking the dog out. As I go to catch up with him, he spots this bright bulb of light that seeme +2010-10-06,44.7894444,-93.6019444,Chaska,MN,teardrop,5,Silver tear drop shape object moving at a high rate of speed from north to south. +2010-10-06,42.0038889,-87.9702778,Elk Grove Village,IL,circle,1200,Traveling towards O'Hare/Chicago, Huge Low Flying 3 Tiered Inverted Triangle Flying Objects +2010-10-06,25.7738889,-80.1938889,Miami,FL,circle,45,The early afternoon of october 6, 2010 which was 6:45pm i was sitting in my living room and sense i have a sliding door that anyone cou +2010-10-06,38.7647222,-95.0077778,Edgerton,KS,disk,5400,UFO sighting night 2. ((NUFORC Note: Twinkling stars, we suspect. PD)) +2010-10-06,37.9886111,-84.4777778,Lexington,KY,other,30,Semi-length lights +2010-10-06,32.3527778,-94.6508333,Chalk Hill,TX,rectangle,120,Hovering lights above tree line in remote wooded area. +2010-10-06,32.5475,-99.1655556,Moran,TX,flash,900,burnt orange balls in the sky in Shackelford County Texas +2010-10-06,28.5555556,-82.4505556,Spring Hill,FL,other,25,V shaped object appears almost cloaked in the night sky headed south along U.S. 19 +2010-10-06,37.2705556,-76.7077778,Williamsburg,VA,oval,60,Helicopter Chasing an Oval Shaped Craft Outer part Black and the Middle was Glowing Green . +2010-10-06,28.5555556,-82.4505556,Spring Hill,FL,formation,3,3 or 4 faint light formation traveling south to south east in perfect formation across sky. +2011-10-06,33.1958333,-80.0133333,Moncks Corner,SC,fireball,30,Brilliant White falling object over Coastal South Carolina. +2011-10-06,42.4391667,-123.3272222,Grants Pass (Just Outside Merlin),OR,circle,120,Black object move across cloudy night sky +2011-10-06,36.1155556,-97.0580556,Stillwater,OK,disk,420,((HOAX??)) I came from the Northwest and flew over our building. +2011-10-06,39.1619444,-84.4569444,Cincinnati,OH,light,300,I was outside smoking a cigarette when I looked down to the end of my street and saw a pulsing light. I wasn't sure if I should walk do +2011-10-06,37.9444444,-87.4052778,Newburgh,IN,light,1,Stationary white light faded in and out +2011-10-06,29.4238889,-98.4933333,San Antonio,TX,light,1,A white light traveling randomly at a very high rate of speed +2011-10-06,37.6459,-93.0942,Buffalo,MO,other,30,Unusual aircraft +2011-10-06,39.4141667,-77.4108333,Frederick,MD,sphere,1500,I saw a Golden Sphere hovering a couple miles out, possibly over Camp David. ((NUFORC Note: Weather balloon?? PD)) +2011-10-06,27.9472222,-82.4586111,Tampa,FL,sphere,2,Chilling, giant, bright, green ball of fire between Lakewood (Providence) and hwy 41. +2011-10-06,32.8405556,-83.6325,Macon,GA,fireball,15,Fireball object that looked like exploded above ground about power line height continued going down road. +2011-10-06,27.9472222,-82.4586111,Tampa,FL,sphere,60,It was a large green sphere streaking from the East toward the West (toward Tampa Bay & Gulf). It had a tail, like a comet tail extend +2011-10-06,33.3869444,-84.2830556,Hampton,GA,oval,3,Green object flew in and out of my LOS in 3 sec. +2011-10-06,34.185,-83.9252778,Flowery Branch,GA,circle,120,A quiet red ball flying overhead at moderate speed over North East Georgia +2011-10-06,34.185,-83.9252778,Flowery Branch,GA,oval,90,Large red oval object flying over Hall County GA +2011-10-06,31.7169444,-99.1322222,Bangs,TX,unknown,1800,On 10-6-11 in Bangs Texas, there were about one hundred lights in the sky, that seemed to light up at random and then after about 10 mi +2011-10-06,31.7169444,-99.1322222,Bangs,TX,unknown,1800,On 10-6-11 in Bangs Texas there were about one hundred lights in the sky. ((NUFORC Note: Possible stars?? PD)) +2011-10-06,26.0625,-80.2333333,Davie,FL,light,2,Two circular lights that dissapeared in the night sky. +2011-10-06,42.3291667,-73.6161111,Ghent,NY,light,5400,Multiple colored lights with erratic movements. ((NUFORC Note: We suspect a "twinkling" star. PD)) +2011-10-06,32.7152778,-117.1563889,San Diego,CA,light,2,Fast moving orange light over San Diego. +2011-10-06,27.7705556,-82.6794444,Saint Petersburg,FL,circle,2700,It was circular and moved without restriction in the air and just watched things. ((NUFORC Note: We suspect a "twinkling" star. PD)) +2012-10-06,40.7141667,-74.0063889,New York City (Bronx),NY,light,5,A moving solid light +2012-10-06,47.5561111,-122.5436111,Manchester,WA,fireball,900,Flaming Object seen in sky over West Seattle, WA, October 6, 2012 - 7:15 AM +2012-10-06,32.7444444,-117.2611111,Ocean Beach,CA,disk,120,Orange UFO +2012-10-06,39.9808333,-75.3088889,Havertown,PA,circle,600,5 orange dots flying in formation. with multiple formations. +2012-10-06,34.0005556,-81.035,Columbia,SC,changing,3600,Bright light with red changing shapes and moving very slowy side to side up and down +2012-10-06,39.9547222,-82.8122222,Reynoldsburg,OH,oval,240,UFO over Reynoldsburg OH 10/6/12 +2012-10-06,40.1766667,-75.5480556,Spring City,PA,other,600,Daytime Pennant Shaped Object near Philadelphia +2012-10-06,36.8188889,-76.2752778,Chesapeake,VA,sphere,600,Many red round spheres of light. All traveling together then ascended into the sky. +2012-10-06,43.8569444,-70.1036111,Freeport,ME,light,120,7 solid orange lights over Freeport +2012-10-06,26.0108333,-80.1497222,Hollywood,FL,fireball,120,On October 6, 2012 I observed a torchlike like drifting over Hollywood, FL for about 2 minutes which then rose into the cloud cover +2012-10-06,47.1772222,-122.1852778,Bonney Lake,WA,other,1800,Orange like flare objects that turn red then back to bright orange then disappearing in the bright blue sky +2012-10-06,39.8433333,-86.3977778,Brownsburg,IN,fireball,180,Orange Orbs South East of Brownsbrug, IN +2012-10-06,40.0063889,-75.7036111,Downingtown,PA,light,120,Silent red light flies and disappears over neighborhood +2012-10-06,41.8005556,-73.1216667,Torrington,CT,changing,300,Two orange illuminated objects, total silence from them which made 3 passes in front of my house about 10 min of activity. +2012-10-06,45.1,-87.6305556,Marinette,WI,fireball,120,We watched this orange light cross the sky, stopping over our home for a few seconds, then continued on. +2012-10-06,40.8486111,-111.9061111,North Salt Lake,UT,light,10,A bright light appeared and shot towards the horizon at an incredible speed but went out before reaching the horizon. +2012-10-06,36.3302778,-119.2911111,Visalia,CA,other,5,It was moving very fast, steady, moving silently and it was brown but very dim, in a crescent shape +2012-10-06,42.7883333,-71.2013889,Salem,NH,circle,120,Driving on 93 No. towards Manchester. A bright circular light came down from the horizon getting brighter by the second, hovered motion +2012-10-06,34.0005556,-81.035,West Columbia,SC,cylinder,600,ORANGE GLOWING OBJECT SEEN IN NIGHT SKY +2012-10-06,41.9141667,-88.3086111,St. Charles,IL,light,1200,14-15 Red lights over Kane County near St. Charles, Illinos. +2012-10-06,42.6555556,-70.6208333,Rockport,MA,circle,300,Glowing low flying lights in formation over Rockport, MA. +2012-10-06,40.4405556,-79.9961111,Pittsburgh,PA,light,600,Circling yellow light over Pittsburgh +2012-10-06,38.6272222,-90.1977778,St. Louis,MO,light,1200,4-6 white lights circling in the southeast and east sky over St. Louis, above the clouds. +2013-10-06,48.6969444,-122.9041667,Eastsound,WA,formation,120,2 unidentified high-wing large model aircraft flying low over water proceeding south along west side of East Sound. +2013-10-06,36.1630556,-82.8311111,Greeneville,TN,cylinder,300,Silver metallic craft. +2013-10-06,40.8,-96.6666667,Lincoln,NE,triangle,10800,First seen in broad daylight. +2013-10-06,33.8358333,-118.3397222,Torrance,CA,sphere,600,I was driving in Carson Street, Torrance, California around 5PM, sky was bright and clear. I noticed up ahead a bright two spheres fly +2013-10-06,34.0522222,-118.2427778,Los Angeles,CA,oval,1500,2nd time witnessing two unidentified flying objects in Los Angeles +2013-10-06,44.9111111,-116.0977778,Mccall,ID,cigar,1500,Hovering cigar shaped object that resembled a comet trail but there was no movement. +2013-10-06,41.8730556,-72.1219444,Ashford,CT,fireball,900,Ten fireballs traveling in a straight line across the horizon +2013-10-06,29.7855556,-95.8241667,Katy,TX,oval,180,Blue/Grey colored oval shape. The next day, fast moving pulsing object. Texas. +2013-10-06,40.1672222,-105.1013889,Longmont,CO,light,3,Streak of light. +2013-10-06,47.885,-120.1572222,Manson,WA,light,600,Big bright light hovering over mountain in manson. +2013-10-06,27.2927778,-81.3630556,Lake Placid,FL,unknown,1,Damn I wish I had been reording the sky. +2013-10-06,40.485,-106.8311111,Steamboat Springs,CO,rectangle,180,Green and red craft that dropped a smaller white light. +2013-10-06,47.5675,-122.6313889,Bremerton,WA,other,300,2 crescent shapes hovering over Bremerton, WA. +2013-10-06,42.9275,-123.28,Canyonville,OR,unknown,3600,3 lighted spacecrafts that formed Triangular shape & ascended straight up into the sky, moving at unbelievable speed. +2013-10-06,28.5997222,-81.3394444,Winter Park,FL,triangle,300,Boyfriend and I saw triangular craft with bright yellow lights and a low humming sound pass bedroom window twice. +2013-10-06,32.6452778,-85.3783333,Opelika,AL,flash,2,A large bright flash, then moments later a 'V' shaped light int he sky +1965-10-07,34.2011111,-118.5355556,Reseda,CA,disk,180,Formation of disks decending behind trees w/multiple witnesses +1967-10-07,26.5863889,-80.0522222,Lantana,FL,other,180,UFO report and theory of motion. +1974-10-07,46.6022222,-120.5047222,Yakima,WA,cone,2400,Huge search light beam from 4 miles high in the sky illuminating a one mile diameter circle on the ground. +1982-10-07,41.3080556,-72.9286111,New Haven,CT,triangle,600,I, and another individual, observed a triangular-shaped, multi-colored, silent object slowly traverse the night sky of New Haven, Conn. +1989-10-07,40.9688889,-73.7130556,Harrison,NY,other,300,Huge web shaped object rises into the sky +1995-10-07,30.3319444,-81.6558333,Jacksonville (In Mandarin),FL,triangle,180,Triangualar shaped object hovering in place.VERY close to the road,and this was a busy highway with people in front and behind.At night +1997-10-07,44.2722222,-71.5394444,Twin Mountain,NH,light,10,FLASHING BLUE AND GREEN LIGHTS ACROSS THE SKY AND THEN IT DISAPPEARED IN A BRIGHT WHITE LIGHT. +1998-10-07,25.7738889,-80.1938889,Miami,FL,light,3600,Object was not moving,but flashing different colors(blue,red,white and maybe yellowƹ object was seen.It lasted for aprox one hour unti +1998-10-07,30.2383333,-90.92,Gonzales,LA,triangle,120,Silent triangle shaped ufo up close and personal +1999-10-07,30.2669444,-97.7427778,Austin,TX,other,180,It appeared from my vantage point to be like a large metorite but it was traveling too slow and the angle was all wrong. My best descri +1999-10-07,32.9808333,-80.0327778,Goose Creek,SC,disk,1200,I took my dog outside to go to the bathroom and I noticed lights up in the sky - a row of them. They were blue-white lights - very bri +1999-10-07,39.6066667,-75.8336111,Elkton,MD,unknown,2700,up to 9 aircraftƻ apearing out of no where and up to 6 flying by the other 3 +1999-10-07,42.1013889,-72.5902778,Springfield,MA,formation,10,We saw a v-shaped formation of orangy-yellow round flying objects fly right above us and disappear on the other side of horizon +2000-10-07,38.1041667,-122.2555556,Vallejo,CA,teardrop,30,Dull Orange Tear shaped object hovering over powerplant near Vellejo Ca, +2000-10-07,33.7222222,-116.3736111,Palm Desert,CA,triangle,30,large dark triangle . small white lights at each corner. +2000-10-07,27.9655556,-82.8002778,Clearwater,FL,light,6,I was traveling southbound across the Bayside bridge. I noticed a bright, white light, which at first, I thought was a meteor. the li +2000-10-07,29.7855556,-95.8241667,Katy,TX,disk,900,disk shaped object with cluster of lights +2000-10-07,41.7108333,-87.7580556,Oak Lawn,IL,circle,600,object in sky sped up and slowed down and was very bright +2001-10-07,36.2361111,-90.0555556,Kennett,MO,triangle,3,3 lights shaped a pyramid without sound low to the ground +2001-10-07,37.7477778,-84.2947222,Richmond,KY,other,300,I have a picture. +2001-10-07,40.4897222,-81.4458333,New Philadelphia,OH,cylinder,60,missle shaped craft, without jetstream, without wings, flying on a clear day In NE Ohio, flying SE. +2001-10-07,33.6680556,-117.3263889,Lake Elsinore,CA,light,600,UFO sighting from the Ortega Mountains, dim red turned to bright light moving towards us. +2002-10-07,39.8402778,-88.9547222,Decatur (Near),IL,fireball,25,7 Shooting stars in sky near Decatur +2002-10-07,39.3722222,-104.8555556,Castle Rock,CO,fireball,6,Green and orange fire ball shooting south across the sky at high velocity. +2002-10-07,33.5844444,-92.8341667,Camden,AR,diamond,30,purple and green lights flew over +2002-10-07,40.7280556,-74.0780556,Jersey City,NJ,sphere,30,Copper sphere sighted over Jersey City . Sphere maintains consistent altitude. +2002-10-07,43.2127778,-75.4561111,Rome,NY,light,600,Bright lights - erratic movement over Rome NY +2002-10-07,40.1022222,-75.2747222,Plymouth Meeting,PA,triangle,1200,10 Triangle craft's light's seen near philadelphia +2002-10-07,47.5405556,-122.635,Port Orchard,WA,unknown,10,bright light changes to small reddish lights +2002-10-07,44.0522222,-123.0855556,Eugene,OR,triangle,10,Triangular boomerang shape, dark gray/shadowy color, low altitude, silent, +2002-10-07,28.085,-80.6666667,Melbourne Village,FL,disk,20,approx 20 min. after a large military transport passed over, six disk shaped,bright white objects in a wide v formation.they were at ab +2002-10-07,34.1083333,-117.2888889,San Bernardino,CA,sphere,1200,Orange ball of light moving in all directions and going through the atmosphere (burning). ON VIDEO! +2003-10-07,27.9472222,-82.4586111,Tampa,FL,oval,240,Two unidentified crafts noted over the Gulf of Mexico. +2003-10-07,32.3122222,-106.7777778,Las Cruces,NM,triangle,900,Along I-10 about 15 miles south of Las Cruces, large triangular craft outlined with very bright, white, lights. There was a lighted dom +2003-10-07,38.791,-94.2673,Pleasant Hill,MO,oval,1200,I saw 6 very bright lights perfectly spaced apart and they werent moving, when we cam back to were they were 5 min later they were gone +2003-10-07,37.9063889,-122.0638889,Walnut Creek,CA,oval,900,It was oval/disk shaped object, brilliant white aura, moved slow, stopped, appeared and disappeared, got 4 photos +2003-10-07,37.7272222,-89.2166667,Carbondale,IL,triangle,45,I saw a metalic triangle with semi-cirles at the points traveling above the tree line N to NW at 3:35 PM. It picked up speed and left. +2003-10-07,41.5380556,-72.8075,Meriden,CT,disk,60,Bright reflection off an object but not like an airplane it moved from the left of the sky to the right and then to the left again +2003-10-07,41.0086111,-91.9625,Fairfield,IA,formation,20,Just after nightfall I observed a cluster of white blinking lights high overhead, moving steadily in a westerly direction. +2003-10-07,41.0086111,-91.9625,Fairfield,IA,formation,25,MUFON/IOWA FOLLOW-UP REPORT: This Fairfield report of group of 5-6 lights is one of 3 reports at same time on same night in Iowa +2003-10-07,41.6266667,-93.7119444,Urbandale,IA,formation,360,MUFON/IOWA REPORT: VERY IMPORTANT - THIS IS ONE OF 3 SIGHTINGS ON THE SAME NIGHT AT ABOUT THE SAME TIME in Iowa. +2003-10-07,41.6266667,-93.7119444,Urbandale,IA,formation,120,Formation of white lights moving in a random pattern in a northwesterly direction +2003-10-07,32.7152778,-117.1563889,San Diego,CA,light,120,Orange light dripping flames. +2003-10-07,41.85,-87.65,Chicago,IL,oval,120,HUGE UFO INSIDE GREY CLOUD,WITH LONG COLUNMS OF LIGHTS,SIGHTED IN DWNTWN CHICAGO, OCT ༿. +2003-10-07,42.4927778,-92.3427778,Waterloo,IA,teardrop,120,They had flashy lights +2004-10-07,39.12,-88.5433333,Effingham,IL,rectangle,1,it flew across the sky and was gone in one second +2004-10-07,44.9180556,-73.1247222,Swanton,VT,unknown,300,Teardrop contrail seen in west southwest sky in Vermont ((NUFORC Note: We suspect the object was a contrail. PD)) +2004-10-07,33.3061111,-111.8405556,Chandler,AZ,light,600,High altitude red star like light stationary of 5-10 minutes vanished without moving away. +2004-10-07,40.7452778,-86.7647222,Monticello,IN,light,420,Three fireballs repeated approx. every 30 sec. apart just south of Monticello +2004-10-07,39.7475,-75.3108333,Swedesboro,NJ,other,600,v - shaped, orange lights, same as the nite before, hovered approx 50 feet above car - no noise +2005-10-07,33.7669444,-118.1883333,Long Beach,CA,unknown,1200,Star-like object/body very high the sky; but moving about extremely fast is very unnatural trajectory, constantly changed position, and +2005-10-07,43.7508333,-87.7144444,Sheboygan,WI,cigar,30,Witnessed a cigar shaped craft fly silently over Lake Michigan +2005-10-07,32.7866667,-79.795,Isle Of Palms,SC,sphere,600,Me and some family were visiting some of my other family on 41st Avenue. At around 8 PM 3 of us ,myself included, decided to go out on +2005-10-07,45.2536111,-92.8055556,Scandia,MN,changing,600,((NUFORC Note: Possible twinkling stars, we suspect. PD))We saw an object in the sky that didn't appear to be moving. +2005-10-07,39.4352778,-84.2030556,Lebanon,OH,oval,60,glowing object moving like nothing I know of man made. +2006-10-07,33.6305556,-112.3325,Surprise,AZ,light,2400,I couldn't sleep so I went outside to smoke. Noticing that the clouds appeared to be much brighter than usual,I walked into the yard to +2006-10-07,37.2294444,-80.4141667,Blacksburg,VA,light,300,Ball of light at ROTC training +2006-10-07,39.7391667,-104.9841667,Denver,CO,other,1200,Triangle like object appears, lands then dissapears near littleton hospital +2006-10-07,32.7355556,-97.1077778,Arlington,TX,cylinder,5760,Around 16:00 on 10.7.06, I spotted a cylinder like object NNW of Arlington, TX. I observed the object for around 10 min, it didn't appe +2006-10-07,40.7616667,-73.3297222,Deer Park,NY,unknown,600,a white flashing light east of deer park, with scatter colors (maybe blue/green/red) stays stationary for over 10 minutes now.((Star??) +2006-10-07,40.4625,-82.8288889,Fulton,OH,oval,180,Bright white light, oval shape, moving quickly +2007-10-07,40.1022222,-75.1525,Glenside,PA,unknown,60,Can you please do something about the three month lag in your updates? Is it really necessary? +2007-10-07,40.0333333,-83.1583333,Hilliard,OH,light,300,Four orange/yellow lights appear, disappear in night sky. +2007-10-07,39.9625,-76.7280556,York,PA,circle,5400,2 unidentified objects in the sky!!! +2007-10-07,37.7975,-121.215,Manteca (Above; In Flight),CA,other,900,Odd, distinctively shaped craft seen at 21ꯠ feet east of Manteca by two commercial pilots +2007-10-07,33.8536111,-118.1330556,Lakewood,CA,sphere,600,Bright dots looked like balloons. Moving slowly and forming a triangle in the sky. +2007-10-07,33.9533333,-117.3952778,Riverside,CA,oval,1800,Oval object, flashing red & white, remains motionless in sky during gusty winds +2007-10-07,33.6125,-117.7119444,Laguna Hills,CA,disk,600,Something high above the planes in Orange County? +2007-10-07,33.7669444,-118.1883333,Long Beach,CA,sphere,3600,Sliver and Red Spheres Over Long Beach California +2007-10-07,40.3355556,-75.9272222,Reading,PA,light,120,Brillant Orange glow lasting for minutes +2007-10-07,39.9369444,-120.9461111,Quincy,CA,light,1800,6 objects in 50 minute duration: 4 lights and 2 dark objects +2007-10-07,33.6694444,-117.8222222,Irvine,CA,oval,300,Circular object seen in Irvine, CA +2008-10-07,36.7433333,-84.1597222,Williamsburg,KY,circle,10,well defined outline of object on my yard.I heard a loud oscillating noise. +2008-10-07,40.2030556,-79.9263889,Monongahela,PA,triangle,1200,Twilight Fly-by Of Triangular Craft. ((NUFORC Note: Satellites?? PD)) +2008-10-07,34.0752778,-84.2941667,Alpharetta,GA,circle,600,red circle up in the sky left trail. +2008-10-07,36.3930556,-105.2844444,Angel Fire,NM,other,5,Noticed object in photo while downloading from camera to computer. ((NUFORC Note: We believe obj. is flower petal, or butterfly. PD)) +2008-10-07,40.8152778,-73.1127778,Ronkonkoma,NY,egg,5400,Same object flashing red yellow green white for 90 min in NW sky daily since 9-23-08 ((NUFORC Note: Twinkling star?? PD)) +2008-10-07,37.775,-122.4183333,San Francisco,CA,unknown,1800,bright white light in sky off Ocean Beach, San Francisco, CA changed color to red and moved slowly North +2008-10-07,41.3275,-110.2922222,Lyman,WY,flash,600,Red/Silver flashing light going across the sky toward the south west. +2008-10-07,39.2902778,-76.6125,Baltimore,MD,changing,14400,At about 8:30 on Tuesday, October 10, I looked out the third story window of my dorm room and saw a really bright white light that had +2008-10-07,40.8,-96.6666667,Lincoln,NE,sphere,120,Two glowing orange balls of light traveling in a southern direction dropping "flares" and continuing south. +2008-10-07,36.3125,-95.6158333,Claremore,OK,light,5,Bright greenish white streak in silent sky, looked very close. +2008-10-07,41.6005556,-93.6088889,Des Moines,IA,triangle,600,WHILE I WAS DRIVING ON THE INTERSTATE I SAW 3 TRIANGLER UFOS OVER MY CAR. +2008-10-07,42.8141667,-73.94,Schenectady,NY,triangle,2,very high speed object +2009-10-07,43.3030556,-77.9213889,Hamlin,NY,light,900,Numerous lights traveling at high altitude in the same direction and at the same speed. +2009-10-07,32.5480556,-82.8719444,East Dublin,GA,light,120,I just seen something that was magical +2009-10-07,21.0933333,-157.0238889,Kaunakakai,HI,other,1800,sighting of unknown blue shaft of light, no object seen +2009-10-07,34.2255556,-77.945,Wilmington,NC,triangle,120,i've been looking to the sky nightly until now +2009-10-07,47.6063889,-122.3308333,Seattle,WA,other,10,brief sighting of object with faint amber lights traveling over Seattle +2010-10-07,47.9786111,-122.3544444,Clinton,WA,cone,60,My home is on the south end of Whidbey Island in Washington. About 30 miles north of Seattle. The view from my bedroom is to the east +2010-10-07,41.760555600000004,-88.32,Aurora,IL,other,10,Crystal clear morning (either 10/7 or 10/8). I went out to get my newspaper in the driveway and looked up at the sky to enjoy the stars +2010-10-07,38.7083333,-121.3288889,Antelope,CA,other,120,Crescent Moon shaped object in Sacramento County California +2010-10-07,32.7252778,-97.3205556,Fort Worth,TX,circle,30,Very bright twin planet-like lights appearing to E/SE of Fort worth, TX that faded out very fast. +2010-10-07,31.5083333,-99.9197222,Paint Rock,TX,light,7200,Lights over Paint Rock +2010-10-07,36.5297222,-87.3594444,Clarksville,TN,sphere,2400,Pulsating sphere hovering over Ft. Campbell area for two nights in a row, moving erratically and shining brightly. +2010-10-07,32.4486111,-99.7327778,Abilene,TX,light,300,2 red lights appear and disappear in the southeast skys over Abilene. +2010-10-07,38.3697222,-90.3783333,Imperial,MO,light,7200,3 cluster balls of light - UFO +2011-10-07,33.3513889,-93.2955556,Waldo,AR,unknown,30,Zigzagging light with 2 additional bursts of light. +2011-10-07,40.6669444,-74.8961111,High Bridge,NJ,light,1200,My 12 year-old son noticed what appeared to be a star hovering and then moving around. It looks like it may have been over Round Valle +2011-10-07,30.3319444,-81.6558333,Jacksonville,FL,fireball,1,FIVE ORANGE, PURPLE, AND COBALT AND WHITE BALLS OF LIGHT FLASHED ACROSS NIGHT SKY. +2011-10-07,39.7458333,-75.5469444,Wilmington,DE,flash,240,UFO object in the southwest sky as I was at Silverside rd and Concord POike at 13:00 on Friday October 7, 2011 +2011-10-07,29.7027778,-98.1241667,New Braunfels,TX,circle,180,Amazing blue silvery saucer type object -amazingly beautiful +2011-10-07,42.2638889,-88.8441667,Belvidere,IL,chevron,300,Weird shaped unidentified flying object in Belvidere Illinois +2011-10-07,38.2430556,-93.3816667,Warsaw,MO,unknown,30,Floating lights on game camera +2011-10-07,41.7636111,-72.6855556,West Hartford,CT,chevron,120,bomerrand - plusing and glowing red - transparent and quick 90 degree turns +2011-10-07,34.365,-77.6308333,Topsail Beach,NC,circle,180,Glowing orange ball about 5' diameter observed at Topsail beach at roof top level..changed shape .elevated, then left +2011-10-07,42.5916667,-88.4333333,Lake Geneva,WI,sphere,60,Orange ball of light making no sound crosses sky in a south-to-north transit +2011-10-07,36.6102778,-88.3147222,Murray,KY,other,30,A toy top shaped craft hovered and eventually disappeared over Murray, Kentucky. +2011-10-07,41.4994444,-81.6955556,Cleveland,OH,fireball,300,Glowing fireball object traveling in Cleveland sky NW towards the Lake? +2011-10-07,42.7977778,-83.705,Fenton,MI,cigar,10,6 cigar-shapes dash across the sky +2012-10-07,40.2308333,-75.5225,Limerick,PA,light,30,Was driving home when I saw a thick green streak of light falling out of the sky. Once it got to about tree line it simply disappeared. +2012-10-07,41.1305556,-85.1288889,Fort Wayne,IN,disk,120,4 white disk shape objects circling at the night sky. ((NUFORC Note: We suspect the lights might have been advertising lights. PD)) +2012-10-07,33.5386111,-112.1852778,Glendale,AZ,sphere,1200,This object was awesome yet very creepy and spooky. It shined like the shiniest chrome ever. It was completely quiet. +2012-10-07,36.3133333,-82.3536111,Johnson City,TN,circle,5,I was walking out of my car to my cousins apartment complex when above her roof I saw a large green ball of light go across the sky at +2012-10-07,33.9525,-84.55,Marietta,GA,light,300,Approximately 20 white and red balls of light flew from the west heading east above our neighborhood. +2012-10-07,33.2,-117.2416667,Vista,CA,triangle,4,I was out on my porch that faces south. Wind 1-2 mph from east, scattered puffball clouds. Night sky Illuminated by city lights. I saw +2012-10-07,29.2855556,-81.0561111,Ormond Beach,FL,fireball,30,Fire ball over ormond beach fl +2012-10-07,39.9611111,-82.9988889,Columbus,OH,formation,120,Four orange/red lights in changing formation viewed from the Short North +2012-10-07,35.3519444,-75.5108333,Avon,NC,fireball,6,Huge orange fireball over ocean in Avon, NC. +2012-10-07,35.9605556,-83.9208333,Knoxville,TN,flash,10,Green flashes/strobing in the western sky +2013-10-07,47.9130556,-122.0969444,Snohomish,WA,light,900,Multiple Bright Orange High Altitude Lights Seen Moving in Incredible Ways in Early Morning Night Sky. +2013-10-07,42.6055556,-83.15,Troy,MI,disk,45,5 invisible crafts. +2013-10-07,30.6741667,-96.3697222,Bryan,TX,cigar,1680,Witnessed 5 cigar shaped lights, non blinking against sunset horizon moving north northwest. +2013-10-07,40.3980556,-77.0233333,Duncannon,PA,light,300,Viewed a bright light in the sky, fading in and out until it disappeared. +2013-10-07,29.2094444,-99.7858333,Uvalde,TX,unknown,30,One minute after watching the space station I witnessed two different UFOs. +2013-10-07,39.7391667,-104.9841667,Denver,CO,circle,2,Blue/sphere of light. +2013-10-07,30.2669444,-97.7427778,Austin,TX,unknown,240,UFO over north austin west to east no sound 300 mph 5000 ft and turned off light over east o pflugerville. +2013-10-07,33.9561111,-83.9880556,Lawrenceville,GA,fireball,5,Bright circular ball of light flying downward. +2013-10-07,40.6752778,-121.4297222,Old Station,CA,triangle,300,Triangle shaped low flying quiet slow with lights with red center lights. +2013-10-07,36.175,-115.1363889,Las Vegas,NV,other,15,"Y" shaped UFO sighted from voodoo lounge at Rio hotel roof traveling fast with no illumination in a SE direction. +2013-10-07,41.1366667,-95.8905556,Bellevue,NE,diamond,10800,Diamond shape 4 strobe colored Object moving north to south. +1973-10-08,34.2575,-88.7033333,Tupelo,MS,disk,4,Father and Daughter sees disc over Tupelo, Ms. +1987-10-08,36.9483333,-81.085,Wytheville,VA,light,720,A bright white object was sitting still in the sky while a half dozen smaller red lighted craft buzzed about. +1992-10-08,39.0875,-81.9227778,West Chester,OH,oval,300,My mother was driving me to my house after we were at the library. We were turning right on west chester road, and then suddenly I saw +1998-10-08,39.8647222,-75.0555556,Barrington,NJ,diamond,180,I was driving across an overpass on Clements Bridge road, overtop of highway 295, when I saw a round, bright white light through the pa +1998-10-08,30.2669444,-97.7427778,Austin,TX,triangle,10,Triangular shaped object moving from north to south. Object was barely discernable from the night sky. Leading edges faint orange. No +1998-10-08,37.9841667,-120.3811111,Sonora,CA,light,45,It was a red light (not flashing, brighter than Mars) about ten degrees above the horizon, in the East heading towards the South with a +1999-10-08,47.6105556,-122.1994444,Bellevue,WA,circle,7,Bright white light going north to south +1999-10-08,34.9455556,-111.6394444,Munds Park,AZ,cone,2400,cone shaped mist with single white light at top. off i 17 at munds park at approx 9pm 10/8/99 +1999-10-08,39.5358333,-76.3486111,Bel Air,MD,triangle,600,At a high school football game, Large triangle shaped object performed maneuvers at extremly slow speeds low to the ground, over the Be +1999-10-08,32.8572222,-116.9213889,Lakeside,CA,diamond,600,Object moved from southwest to northwest sky, irradicke in flight, but maintained general direction, reddish blinking lights, similar t +1999-10-08,32.3511111,-95.3008333,Tyler,TX,flash,960,Stationary object flashed white light about once every nine seconds from southern sky at a inclination of about 75 degrees. We perceiv +1999-10-08,46.8172222,-95.845,Detroit Lakes (18 Miles East Of),MN,triangle,120,Triangular Formation of 3 lights moving at the speed and appearance of satelites.The center blocked out stars as it moved from West/NW +2000-10-08,36.7472222,-95.9805556,Bartlesville,OK,unknown,30,I saw a series of dim lights in a circle spaced apart evenly and caught movement of object moving. +2000-10-08,35.1427778,-120.6402778,Pismo Beach,CA,triangle,5,Triangle shaped craft flew over the ocean. +2000-10-08,37.6688889,-122.0797222,Hayward,CA,circle,3600,objects moved strangely and had very bright colors +2000-10-08,41.7,-71.4166667,West Warwick,RI,formation,900,12 White Circles stationary in different formations for 10 to 15 min. +2000-10-08,47.2530556,-122.4430556,Tacoma,WA,other,900,black, worm-shaped object drifting northwest just below cloud level at 16:45 on October 8. +2000-10-08,40.7719444,-80.7683333,Lisbon,OH,light,60,A BALL OF LIGHT MOVING A GREAT SPEED IN THE SKY +2000-10-08,42.0083333,-76.6241667,Chemung,NY,other,300,contact information +2000-10-08,42.0083333,-76.6241667,Chemung,NY,other,360,multiple sighting by 4 people 6 to 8 objects came out of sky darting in every direction faster then ive seen! +2000-10-08,35.7452778,-81.685,Morganton,NC,disk,1800,The object appeared to be a circular disk or cluster of lights that hovered in the sky for a minimum of 30 minutes. +2000-10-08,33.5386111,-112.1852778,Glendale,AZ,circle,1200,I saw a UFO +2001-10-08,38.8713889,-89.2116667,Pittsburg,IL,triangle,120,It was there then it was gone like a bolt of lightning. +2001-10-08,36.8466667,-76.2855556,Norfolk,VA,formation,10,i was haveng a late coffee brake in my backyard when i look up at the sky and saw an object that seemed circular, because these 2 dim y +2001-10-08,25.7738889,-80.1938889,Miami,FL,other,600,I could certainly not call it a "craft," but rather a bright object in the ski that looked like a star.My wife had been walking the +2002-10-08,37.5483333,-121.9875,Fremont,CA,light,600,bright lights, green, red, white, hovering high in the sky for a very long period of time. +2002-10-08,40.0083333,-75.2608333,Narberth,PA,fireball,2,Fireball and moving star +2003-10-08,42.6333333,-71.3166667,Lowell,MA,rectangle,30,Quickly, I tugged the shade hold down. Previous experience had taught me not to get mesmerized!! +2003-10-08,36.6080556,-79.2955556,Ringgold,VA,triangle,600,object was huge triangle that moved silently and could see it's 3d shape. +2003-10-08,31.815,-85.8430556,Banks (Outside Of),AL,disk,2,Large disk shape moving across the sky,then dissappers +2003-10-08,39.6977778,-76.0630556,Rising Sun,MD,other,600,A cluster of lights, then suddenly a head light moving slowly and lower. No landing gear rounded shape. No sound. +2003-10-08,41.5716667,-101.6911111,Arthur,NE,light,25,Very bright light 4x size of Mars. +2003-10-08,39.3052778,-75.9952778,Kennedyville,MD,changing,3600,seemed to be practicing formations +2003-10-08,39.3052778,-75.9952778,Kennedyville,MD,light,3600,Mr. Davenport, I reported a sighting that occurred on 10/8/03.You commented on the ufocenter website that you think that I may have +2003-10-08,40.1758333,-86.0216667,Arcadia,IN,light,10,Bright white light, appeared to be moving away at an extremely fast rate -- +2003-10-08,39.5358333,-76.3486111,Bel Air,MD,light,7,Great speed of lights +2003-10-08,34.3077778,-118.4483333,Sylmar,CA,light,10,saw a light suddenly shoot down from a flying object towards the groud. +2003-10-08,43.0202778,-78.8805556,Tonawanda,NY,other,1,A fluorescent light blue object leaving a trail behind it, traveling at a very fast speed in the clear night sky +2004-10-08,38.5758333,-122.4488889,Angwin,CA,disk,258,2 large disk shaped saucers hovering over a part of the valley for 4 minutes, then dissappearing into the sky. +2004-10-08,37.8716667,-122.2716667,Berkeley,CA,unknown,180,i have 20/20 vision. it was a clear day in berkeley. i was lying in a lawn of the university watching planes from oakland airport fly +2004-10-08,42.9386111,-74.1886111,Amsterdam,NY,circle,60,i saw a small light in the sky that moved werey fast +2004-10-08,32.7152778,-117.1563889,San Diego,CA,light,5,White light in San Diego skies +2004-10-08,46.5927778,-112.0352778,Helena,MT,light,1800,Shimmering light of many colors, moving in a random pattern, lying low on the W horizon. ((NUFORC Note: Twinkling star? PD)) +2004-10-08,43.6883333,-70.7941667,Limerick,ME,sphere,2,This object was a glowing pale greenish blue sphere streaking low and silent across the night sky. +2005-10-08,35.2505556,-91.7361111,Searcy,AR,oval,240,A ovular/circular object flew by me towards the south, almost stopped, slowly traveled for a few minutes, shot away, and then came back +2005-10-08,28.5380556,-81.3794444,Orlando,FL,light,60,As I was looking I noticed this light, almost like a star or a plane, moving slowly. +2005-10-08,35.6808333,-94.175,Chester,AR,oval,300,Shiny Silver Oval Object Over Chester, Arkansas +2005-10-08,37.775,-122.4183333,San Francisco,CA,formation,1800,I was at the Ferry Building in SF watching the Blue Angels perform. A very bright star-like light caught my eye and I stared at it for +2005-10-08,37.775,-122.4183333,San Francisco,CA,oval,900,3 white spheres/ovals in a triangular formation, fixed in position. Very high in the sky but not as high as stars would look. Over San +2005-10-08,33.8675,-117.9972222,Buena Park,CA,oval,300,flying object resembled a metalic baloon only sideways, like a flying saucer, metalic in color. underneath the artifact it had red ligh +2005-10-08,48.0633333,-114.0716667,Bigfork,MT,light,120,3 different colored objects moving down towards me. +2005-10-08,37.6819444,-121.7669444,Livermore,CA,light,20,White light flying high over Livermore Valley near Sandia/Lawrence Livermore Lab +2006-10-08,33.9133333,-78.3041667,Holden Beach,NC,triangle,5400,3 lighted triangular aircraft. +2006-10-08,43.4261111,-73.7127778,Lake George,NY,rectangle,300,Hovering object over Lake George defies logic +2006-10-08,61.2180556,-149.9002778,Anchorage,AK,disk,60,black disc-shaped object rose from behind a mountain then stopped and moved quickly to the south against a heavy wind +2006-10-08,43.5780556,-70.3222222,Scarborough,ME,light,900,Very fast moving lights "chasing" each other and moving very eratically +2006-10-08,44.0522222,-123.0855556,Eugene,OR,formation,180,formation of lights 4 white 1 red with amazing sign-wave pattern over entire craft. +2006-10-08,38.4022222,-122.8227778,Sebastopol,CA,light,12,Extremely bright white light speeding SE, high over the Northern California coast. ((NUFORC Note: Possible Iridium satellite. PD)) +2006-10-08,42.4436111,-82.9069444,Grosse Pointe Woods,MI,light,5400,3 lights seen over Lake St. Claire in Michigan. +2006-10-08,40.6805556,-73.4747222,Massapequa,NY,unknown,14400,flashing ball of colorful lights. ((NUFORC Note: Possible twinkling star. PD)) +2007-10-08,35.4675,-97.5161111,Oklahoma City,OK,unknown,14400,Spider webs fall from sky +2007-10-08,39.8005556,-76.9833333,Hanover,PA,cigar,20,Two craft seen flying low. +2007-10-08,38.3802778,-78.2577778,Madison,VA,circle,900,star-like shape in sky moved in triangular patterns for about 15 minutes before stopping-2 witnesses +2007-10-08,34.7863889,-76.8594444,Newport,NC,changing,3600,Bright blinking rows of lights with a red light that changed position, hovering in the northern and northwest sky. +2008-10-08,36.175,-115.1363889,Las Vegas,NV,disk,14400,Multi colored, lighted spinning craft with greyish brown cloud surrounding it and bright white light over Henderson, NV. ((Star??)) +2008-10-08,37.78,-121.9769444,San Ramon,CA,cylinder,7080,3 Bright Lights that were in perfect formation in the early hours of morning rapidly moving caught my eye!! +2008-10-08,48.4758333,-122.3241667,Burlington,WA,other,5,UFO makes low pass over western Washington observer. +2008-10-08,38.8105556,-90.6997222,O'fallon,MO,sphere,2700,Very fast white spheroid objects followed by stealths. +2008-10-08,41.4372222,-71.5019444,Wakefield,RI,formation,180,2 sets of 5 or 6 red tumbling lights move steadily across southern sky. +2008-10-08,30.6741667,-96.3697222,Bryan,TX,chevron,2,A dark brown/black colored craft passed over Bryan, Texas heading north and disappeared into the sky around 8:30 p.m. +2008-10-08,38.97,-109.32,Cisco,UT,sphere,300,bright light serpitenes across eastern utah night sky. did you also see it?? +2008-10-08,35.1494444,-90.0488889,Memphis,TN,light,120,real bright light moving very fast +2008-10-08,36.1538889,-95.9925,Tulsa,OK,light,60,Round white light/object moving through sky and suddenly disappearing +2008-10-08,39.2019444,-96.3047222,Wamego,KS,flash,35,Blue light shoots down from the sky over Wamego kansas. +2008-10-08,38.5161111,-90.2102778,Dupo,IL,chevron,3,Large falling green ball of light +2008-10-08,41.9541667,-72.3027778,Stafford Springs,CT,cigar,180,a string of four white lights, third one blinking white, appeared about 30 feet above me about 20 feet away from me in front of me +2008-10-08,30.4505556,-91.1544444,Baton Rouge,LA,formation,60,Solid lighted aircraft flying in a V formation. +2008-10-08,39.1502778,-123.2066667,Ukiah,CA,light,1209600,"Bright-Star or Something Else"! ((NUFORC Note: Probable star. PD)) +2008-10-08,33.7447222,-117.9883333,Midway City,CA,triangle,2160,crazy lights moving in a triangluar pattern acrost the sky, one of them split into 2 and streaked acrost the sky. +2008-10-08,47.6588889,-117.425,Spokane,WA,unknown,15,Triangle shaped 3 lights with one big red light on bottom of craft. +2009-10-08,40.9252778,-73.0477778,Port Jefferson Station,NY,light,30,WOW! They darted across the sky and came together and then disipated (sp?) +2009-10-08,27.4986111,-82.575,Bradenton,FL,unknown,5,flying object with static orangish lights moving from right to left at great speed without a trail or sound. +2009-10-08,33.2775,-85.0980556,Franklin,GA,light,600,sudden light appearing in the southern sky +2009-10-08,36.2941667,-82.4736111,Jonesborough,TN,disk,300,Its motion was unnatural and it was silent. +2009-10-08,35.5069444,-78.7394444,Angier,NC,oval,60,An oval shaped craft was seen for a minute then gone. +2009-10-08,33.4330556,-79.1216667,Pawleys Island,SC,light,60,Orange glowing lights appearing & then fading away/White blinking objects moving across the sky freely +2009-10-08,33.6888889,-78.8869444,Myrtle Beach,SC,sphere,2700,Orange lights appearing in half-circle formation over the shoreline of Myrtle Beach. +2009-10-08,33.9730556,-78.3861111,Shallotte,NC,circle,1263,unusual round orange lights +2009-10-08,32.9477778,-112.7161111,Gila Bend,AZ,formation,600,It started with 4 square lights line up and it condensed into 1 light, then the light disappeared. This sequence continued for about 1 +2009-10-08,33.6888889,-78.8869444,Myrtle Beach,SC,light,60,Multiple unexplained lights +2010-10-08,34.0625,-118.0894444,South San Gabriel,CA,oval,2,Dull red or octagonal object flying west to east and observed with 10X50 binoculars. +2010-10-08,41.7108333,-87.7580556,Oak Lawn,IL,light,120,Medium size Star Moving Very Slowing than disappear and more same thing again later on. ((NUFORC Note: Possible satellites. PD)) +2010-10-08,61.2180556,-149.9002778,Anchorage,AK,triangle,900,Silent Objects over Anchorage Alaska while northern lights were out. +2010-10-08,28.9002778,-81.2638889,Deltona,FL,light,50,Was no way a plane +2010-10-08,43.4194444,-83.9508333,Saginaw,MI,light,300,I woke up and saw a bright orange light hovering outside my window. +2010-10-08,39.7391667,-104.9841667,Denver,CO,light,180,A Ufo Came twards me and another waiter in denver co at my night Job it was scary we saw it clearly and it flew back into space +2010-10-08,41.5386111,-75.9469444,Tunkhannock,PA,unknown,600,3 star looking objects running in straight line formation north -north west then the leader turned left +2010-10-08,42.8741667,-77.2883333,Canandaigua,NY,flash,180,Intense bright obj moving at an extremely high rate of speed and disappearing out of atmosphere. ((NUFORC Note: Satellite? PD)) +2010-10-08,42.2875,-73.3208333,Stockbridge,MA,circle,30,small orb of light in the sky. +2010-10-08,33.0461111,-96.9938889,Lewisville,TX,unknown,30,Denton Texas light show. 10/08/10 +2010-10-08,40.9488889,-78.2255556,Morrisdale,PA,disk,300,2 silent silver disks one flying east one west pass closely by eachother and continue flying in exact opposite flight paths +2010-10-08,36.175,-115.1363889,Las Vegas,NV,light,300,Lights, orbs or UFO's were seen and filmed over Las Vegas the north mountains 10/08/10 +2010-10-08,35.4833333,-86.4602778,Shelbyville,TN,oval,1140,strange moving oval craft running from other aircraft with a very erratic behavior at night.......... +2010-10-08,33.5805556,-112.2366667,Peoria,AZ,oval,300,October 8, 2010 8:05 PM We were at a back yard barbeque. We looked up to the west sky approximately at 45-50 degrees from the horizon +2010-10-08,35.9127778,-79.7177778,Climax,NC,light,1270,Floating Multicolored object spotted in N-NW Sky. ((NUFORC Note: Possible twinkling star, we wonder. PD)) +2010-10-08,39.1652778,-86.5263889,Bloomington,IN,triangle,20,Triangle shaped object seen at a low angle and moving slowly. 3 lights gave the shape of the triangle, object's noise was "strange". Mo +2010-10-08,41.52,-81.5563889,Cleveland Heights,OH,circle,30,Friend and I were standing outside in cleveland heights. Saw a round orange-like orb moving from South to north; difficult to estimate +2010-10-08,41.1888889,-81.6363889,Bath,OH,disk,180,I am a pilot and have never seen anything like this in the air or while on the ground. +2010-10-08,26.3180556,-80.1,Deerfield Beach,FL,sphere,3,Green glowing ball descends from space over city +2011-10-08,41.2586111,-95.9375,Omaha,NE,teardrop,2,A translucent helicopter shaped craft flew under the cloud covered skies for a moment and then was gone. +2011-10-08,47.9447222,-122.3033333,Mukilteo,WA,flash,4,Bright/white round flash in Mukilteo +2011-10-08,38.6272222,-90.1977778,St. Louis,MO,diamond,120,UFO hovers and vanished outside of baby's window. +2011-10-08,35.9605556,-83.9208333,Knoxville,TN,other,600,4 UFOS +2011-10-08,32.7938889,-79.8627778,Mount Pleasant,SC,light,300,Extremely fast moving craft with erratic stopping and side to side motion. +2011-10-08,46.2113889,-119.1361111,Kennewick,WA,changing,1500,At 7pm I witnessed an very bright orange glowing ball comming thru the sky south east. It was traveling towards the moon. As it got clo +2011-10-08,46.2113889,-119.1361111,Kennewick,WA,disk,1500,At 7pm tonight I saw an orange and very bright ball of light appear in the south east sky. It was followed about 30 seconds apart form +2011-10-08,46.2113889,-119.1361111,Kennewick,WA,disk,1200,I looked up to the sky at about 7:07 pm tonight. I saw 2 very bright orange glowing lights in the sky south east. Left of the moon. I s +2011-10-08,42.0986111,-75.9183333,Binghamton,NY,light,600,Multiple red lights over Binghamton,NY +2011-10-08,42.0986111,-75.9183333,Binghamton,NY,unknown,900,Oct.08񫺛 Red Orb's sightings in Binghamton,NY +2011-10-08,40.3691667,-80.2930556,Midway,PA,sphere,180,Bright, reddish-orange sphere or fireball was traveling west in a straight line. +2011-10-08,45.3575,-84.2238889,Onaway,MI,light,6,The fastest object we have ever seen other than a meteor! +2011-10-08,39.7683333,-86.1580556,Indianapolis,IN,triangle,240,It was one craft with white lights going very slow, then stopped, then the craft went back the way it came 3x it's original speed. +2011-10-08,39.1433333,-77.2016667,Gaithersburg,MD,sphere,3600,Shimmering object in northern sky of Montgomery County Maryland +2011-10-08,45.5236111,-122.675,Portland,OR,unknown,20,I was looking up at the moon facing South from my Southeast Portland front porch, when I saw some red and green lit object almost float +2011-10-08,40.7722222,-79.53,Ford City,PA,unknown,120,Eight orange hovering orbs. +2011-10-08,40.0333333,-83.1583333,Hilliard,OH,sphere,30,Brilliant reddish-orange sphere with white flame near Columbus, Ohio. +2011-10-08,35.0886111,-92.4419444,Conway,AR,teardrop,1,Huge teardrop light followed by a distant boom (gun shot sounding, but bigger and too far away). +2011-10-08,39.2130556,-106.9372222,Snowmass Village,CO,circle,180,Reddish, round object in Southeast sky in Snowmass Village, CO +2011-10-08,38.7133333,-77.7955556,Warrenton,VA,chevron,60,Weird lights in sky over Virginia farm. +2011-10-08,38.7133333,-77.7955556,Warrenton,VA,formation,180,Strange lights above Warrenton,Virginia. +2011-10-08,43.6275,-89.7708333,Wisconsin Dells,WI,sphere,120,reddish, orange, orb.heading south to north,at low altitude..1000 to 1500 ft.,no sound ,noticed white starlike orb traveling at a much +2011-10-08,42.3905556,-84.2505556,Munith,MI,light,3600,Orange light and a blue light. +2011-10-08,40.1983333,-83.0102778,Lewis Center,OH,triangle,600,Reddish orange lights hovering over a golf course craft shaped into a triangle. +2011-10-08,33.8491667,-118.3875,Redondo Beach,CA,circle,420,7 spherical orange lights/UFO's w/ rectangular aura sighted in night sky at Redondo Beach, Ca. 10-8-11 at 23:58 +2012-10-08,40.1672222,-105.1013889,Longmont,CO,formation,10,Two sets of faint orange lights appering to each be silently flying in v formations +2012-10-08,40.4163889,-120.6519444,Susanville,CA,flash,2,Stars which becomes extemely bright, and then disappear +2012-10-08,41.5580556,-73.0519444,Waterbury,CT,cross,180,I was driving down chase ave going toward lakewood rd and i looked in the sky and seen what i frist thought was airplane fling low and +2012-10-08,37.2152778,-93.2980556,Springfield,MO,changing,600,Orange and yellow objects that turned to flat black cylindrical shapes +2012-10-08,31.1169444,-97.7275,Killeen,TX,light,480,Bright aura surrounding and moving with UFO. Killeen, TX. +2012-10-08,41.3683333,-82.1077778,Elyria,OH,oval,300,Big red/orange lights in the sky of Elyria +2012-10-08,36.9613889,-120.0597222,Madera,CA,sphere,1800,White spherical object w/possible point at the bottom and blinking red and green lights. +2012-10-08,34.4208333,-119.6972222,Santa Barbara,CA,oval,300,There were 5 aircraft in the sky tonight, 3 went into the formation of a triangle, then drifted apart. 2 lingered around and disapeared +2012-10-08,44.3105556,-69.78,Augusta,ME,fireball,60,Moving ball of flame deploys small white light in atmosphere then disipates +2012-10-08,33.7669444,-118.1883333,Long Beach,CA,light,120,Aircraft with white flashing headlights, no other lights, no discernible sound +2012-10-08,30.4866667,-90.9561111,Denham Springs,LA,formation,8,We were in hot tub as usuallywhen tiny lights formation but it appeared transparent overhead several circular on each wing. quiet s +2013-10-08,40.015,-105.27,Boulder,CO,triangle,5,V shaped flying wing with lights in the whole shape of the wing like apartment lights or living area lights +2013-10-08,44.4758333,-73.2125,Burlington,VT,light,30,Red orbs. +2013-10-08,31.5602778,-91.4030556,Natchez,MS,circle,30,Very bright fast moving orb(s). +2013-10-08,40.215,-75.0111111,Richboro,PA,oval,30,Yellowish/Orange lights in a formation of a &quot;Q&quot; Oval shaped then gone in seconds. +2013-10-08,33.8491667,-118.3875,Redondo Beach,CA,oval,180,Possible UFO over Redondo Beach trench? +2013-10-08,33.3583333,-93.5775,Lewisville,AR,other,600,It was above jet high, when they do their maneuvers, didn’t seem to be going fast at all. It had what looked like two burners at the ba +2013-10-08,39.7136111,-82.5994444,Lancaster,OH,cigar,300,Daytime sighting of cigar shaped object, Lancaster, Ohio. +2013-10-08,40.7608333,-111.8902778,Salt Lake City,UT,sphere,180,Close up glowing hovering white orb photographed green in two subsequent locations in Wasatch Mountains +2013-10-08,30.6941667,-88.0430556,Mobile,AL,oval,2700,Persistant, stationary white roundish object. Remained in sky for approx 45 min before graying out and disappeared. +2013-10-08,26.6402778,-81.8725,Fort Myers,FL,changing,3600,Recurring sighting in WSW sky, NOT Venus. +2013-10-08,34.2072222,-84.1402778,Cumming,GA,egg,600,Was not a believer in UFO, am very skeptical and suspicious but after seeing the speed of the object made me a believer. +2013-10-08,39.7683333,-86.1580556,Indianapolis,IN,light,480,Spherical orange lights seen in western sky by family of 3 in Indianapolis. +2013-10-08,41.7305556,-88.3458333,Montgomery,IL,unknown,180,Strange orbital object changes direction multiple times. +2013-10-08,40.7844444,-75.7138889,Ashfield,PA,light,180,A light appear in the sky out of nowhere and changed direction at a slow moving pace until it vanished. +2013-10-08,38.3963889,-82.5588889,Ceredo,WV,chevron,60,My son, age six, and my self walked outside on my patio to view the sky because we was told there was going to be a meteor shower tonig +2013-10-08,45.010555600000004,-93.4552778,Plymouth,MN,other,1500,For 25 minutes we heard deep rhythmic BOOMING noises. +2013-10-08,45.5608333,-94.1622222,St. Cloud,MN,circle,3600,Orange colored circle low in sky. +2013-10-08,27.3361111,-82.5308333,Sarasota,FL,light,3600,Object was also seen 10/8/13 for about an hour both times the Light was bright like a bright star almost Object didnt move and left aft +2013-10-08,47.9791667,-122.2008333,Everett,WA,chevron,10,Dark object silently flying overhead in the night sky. +2013-10-08,41.2008333,-73.3811111,Weston,CT,light,1800,A single orange light hovers 20 ft above treeline before exiting view to the South. +2013-10-08,47.7166667,-104.1558333,Sidney,MT,diamond,5,4 glowing lights in diamond formation speed across sky and dissappear. +1963-10-09,31.6938889,-89.1305556,Laurel,MS,oval,420,1963 sighting of beautiful objects in southeast Mississippi , worth reading +1980-10-09,42.8294444,-88.1586111,Wind Lake,WI,disk,1800,Disk hovering over field +1992-10-09,32.7188889,-102.6444444,Seminole,TX,rectangle,30,I saw a UFO very clearly and can describe it to a tee. +1994-10-09,25.8572222,-80.2783333,Hialeah,FL,sphere,240,sunlike sphere +1996-10-09,32.2686111,-107.7580556,Deming (Near),NM,other,30,Silent, jet-shaped, beige hovering object viewed. Magnetic interference with watches. +1997-10-09,34.2163889,-119.0366667,Camarillo,CA,circle,120,all three of us were friends. My friend,(deleted), saw it first. He said "What's that shiny thing in the sky?" I said, "Where? I d +1997-10-09,42.3313889,-83.0458333,Detroit,MI,triangle,300,A wedge shaped object flew over head of us as we stood on our deck in our backyard. Ther was a bright light in the middle of the ship a +1998-10-09,40.0455556,-86.0086111,Noblesville,IN,changing,35,translucent craft changing shape and silent +1998-10-09,35.4969444,-77.9822222,Pikeville (Farmingdale Drive),NC,disk,60,I walked outside wearing my red lesned sunglasses and I saw it. It went SW then NE and had a reflective covering and was moving faster +1998-10-09,37.7477778,-84.2947222,Richmond,KY,disk,120,Two of my children and a friend were out on the trampoline, and saw a disc like structure flying very fast and stoped and dropped what +1999-10-09,34.0522222,-118.2427778,Los Angeles (Metropolitan Area - Koreatown),CA,triangle,29,Triangular shaped object in atmosphere 4.5-5.0 degrees in size traversing from northwest to southeast. +1999-10-09,38.2494444,-122.0388889,Fairfield (Shiloh Rd.),CA,fireball,5400,It appeared to be a very bright star that was hovering over Travis Air Force Base, however it not only went from very bright to very di +1999-10-09,29.1380556,-80.9958333,Port Orange,FL,disk,30,A shiny metalic saucer shape was seen flying from a northeastern position in the sky to a southwestern position, elapsed time aprox. 30 +1999-10-09,28.8105556,-81.8780556,Leesburg,FL,other,60,Craft appears faintly at first then drifted downward, brightened, and hovered at tree top level, red in color, then vanished. +2000-10-09,33.7733333,-86.8138889,Kimberly,AL,unknown,300,EGG SHAPED WITH A T IN FRONT AND UNUSAL LIGHTS +2000-10-09,44.9133333,-93.5030556,Minnetonka,MN,changing,40,I have a mini web site attached with my signature that is 3 pages, containing 30 images of UFO"s videtaped by myself, with a sony 8m/m +2001-10-09,38.5816667,-121.4933333,Sacramento,CA,disk,30,Being clear sunny early morning that made it so unbelevaible that i just can't deny what i saw. for the second time. +2001-10-09,36.9902778,-86.4436111,Bowling Green,KY,oval,420,Oval light changes to 5 lights forming a triangle between Hwy 68-80 and Hwy 31-W. +2001-10-09,42.4647222,-71.0105556,Saugus,MA,sphere,180,Shooting star stops moving. +2002-10-09,36.6061111,-118.0619444,Lone Pine,CA,circle,4,got up at 1;30 am could not sleep was looking east from mt. whitney seen this ball of light from owens dry lake mo +2002-10-09,41.8794444,-87.8136111,Forest Park,IL,chevron,180,Throbbing chevron pulsating lights craft +2002-10-09,39.7555556,-105.2205556,Golden,CO,chevron,15,Several hazy images, seemingly attached solidly in space, in a "V"/Chevron shape. +2003-10-09,38.8338889,-104.8208333,Colorado Springs,CO,light,300,Falling star? +2003-10-09,42.3683333,-83.3527778,Livonia,MI,light,2400,"star" darting from one place to another and stoping abruptly, chnged colors and went in loops +2003-10-09,32.7866667,-79.795,Isle Of Palms,SC,disk,60,photographed white disk with red light on top/center +2003-10-09,42.4605556,-83.1347222,Ferndale,MI,rectangle,600,Rectangular object hovering over I-696 in Ferndale, Michigan +2003-10-09,43.1008333,-75.2330556,Utica,NY,circle,60,Large bright white circle. Moved upward irregularly, stoped for a good 15 seconds, then began moving southerly, went to get camcorder a +2003-10-09,47.9791667,-122.2008333,Everett,WA,cylinder,120,Polished metallic cylinder stationary in daytime sky slowly rotates then disappears instantly +2003-10-09,42.0986111,-75.9183333,Binghamton,NY,oval,10,round bright circular object,wentsoutheast then turned 90 degrees northwest and went out of sight below tree line +2003-10-09,37.3394444,-121.8938889,San Jose,CA,light,60,HBCCUFO CANADIAN REPORT: Red and it looked like it shot straight out - towards space. +2003-10-09,29.1380556,-80.9958333,Port Orange,FL,disk,5,Three red disks flying from west to east in a staggered formation, spanning the sky in five seconds at a high altitude. +2003-10-09,44.5647222,-123.2608333,Corvallis,OR,other,7200,A LARGE UFO, LARGER THAN THE BRIDGE THAT DISAPPEARED IN FRONT OF ME.. ((NUFORC Note: Possibly not UFO related?? PD)) +2004-10-09,30.2669444,-97.7427778,Austin,TX,changing,180,one light that stretched into 3 white lights, with a red light on the left, very suddenly +2004-10-09,40.9327778,-74.6597222,Hopatcong,NJ,unknown,45,silet oject with red light northern NJ +2004-10-09,41.8977778,-87.8138889,River Forest,IL,circle,120,anyone else see possible ufo in chicago area on saturday 10-09-04 +2004-10-09,34.7202778,-80.7711111,Lancaster,SC,rectangle,1800,Comet shaped or rectangle shaped slow moving object. +2004-10-09,41.2586111,-95.9375,Omaha,NE,triangle,180,Three white lights in a triangle formation moving west over Omaha +2004-10-09,38.8902778,-77.0844444,Arlington,VA,circle,900,I saw in the southern sky four lights racing in a circle. ((NUFORC Note: We suspect advertising lights. PD)) +2004-10-09,33.3527778,-111.7883333,Gilbert,AZ,triangle,7200,Strange fast moving strobe lights across the Phoenix and East Valley skies. +2005-10-09,33.2147222,-97.1327778,Denton,TX,disk,180,Driving from Denton, TX to Corinth, TX shiny saucer appeared next to airplanes +2005-10-09,36.1538889,-95.9925,Tulsa (Near),OK,cigar,2700,Cigar shaped object emerged from the moon in broad daylight +2005-10-09,34.2163889,-119.0366667,Camarillo,CA,unknown,900,Three white objects in a loose triangle formation moving ESE +2005-10-09,43.6222222,-116.2372222,Garden City,ID,other,60,apple or urn shaped objects flying with birds following a commercial aircraft +2005-10-09,45.6388889,-122.6602778,Vancouver,WA,light,0.08,Yellowish, orange object travelling much faster than any aircraft, but slower than meteorite - Vancouver WA/Portalnd OR area +2005-10-09,36.8252778,-119.7019444,Clovis,CA,light,7,3 dimly lit objects traveling VERY fast passed directly overhead, with no sound +2006-10-09,40.1777778,-74.5838889,Allentown,NJ,sphere,7200,Multicolored fiberoptic looking sphere. ((NUFORC Note: Possible twinkling star. PD)) +2006-10-09,32.2216667,-110.9258333,Tucson,AZ,oval,35,A fleet of white light round in shape over Mt. leamon travling at a high rate of speed speed set the apart from a nomal air craft. I wa +2006-10-09,27.9472222,-82.4586111,Tampa,FL,light,3,3 sets of two lights move fast over tampa +2006-10-09,40.7616667,-73.3297222,Deer Park,NY,rectangle,2,lighted rectangular object seen over Deer Park Avenue +2006-10-09,37.2708333,-79.9416667,Roanoke,VA,light,2,Brilliant greenish/white object drops from sky. ((NUFORC Note: Possible meteor?? PD)) +2006-10-09,39.0175,-122.0566667,Arbuckle,CA,fireball,5,I was traveling North bound on I-5, with a terrific view of the horizon, flat land. I-5 runs North/South through california. When all o +2006-10-09,33.7797222,-116.4644444,Cathedral City,CA,light,600,object comes from behind the moon +2006-10-09,39.7683333,-86.1580556,Indianapolis,IN,light,60,I was casually observing stars in the clear night sky, when a somewhat brilliant white light high up in the northwestern sky caught my +2007-10-09,42.2788889,-87.8341667,Lake Bluff,IL,unknown,9000,Red/Blue lights moving around object with bright white light in tight formation +2007-10-09,34.0966667,-117.7188889,Claremont,CA,circle,18000,this is not venus +2007-10-09,40.3977778,-105.0744444,Loveland,CO,diamond,1800,Stationary white starburst light sighted over the Colorado eastern skies at 0515 until 0540. +2007-10-09,33.6,-117.6711111,Mission Viejo,CA,light,1200,2 stars dancing around each other and changing colors +2007-10-09,33.0197222,-96.6986111,Plano,TX,other,10,Boomerang-shaped UFO over Plano, TX +2007-10-09,38.135555600000004,-96.1355556,Madison,KS,circle,60,Orange lights appearing one at a time in a circular motion at a stand still. +2007-10-09,41.6638889,-83.5552778,Toledo,OH,sphere,5,very bright light in sky fades out. +2007-10-09,38.8466667,-91.9477778,Fulton,MO,other,5,I have seen many UFO's in the past, I know the difference betwwen a UFO and other phenomina, I consider this a legit sigting. +2007-10-09,41.2586111,-95.9375,Omaha,NE,triangle,45,"V" shaped pattern of 10-12 white lights, moving south in omaha NE +2007-10-09,35.8455556,-86.3902778,Murfreesboro,TN,light,5,A zig-zagging light in the sky last night made my sister cry. +2007-10-09,37.9513889,-91.7711111,Rolla,MO,sphere,120,reddish orange glow descending straight down in sky low humming noise +2008-10-09,28.8355556,-82.3305556,Inverness,FL,oval,10,Twirling oval black "thing" dissapeared beneath the tree tops +2008-10-09,34.9530556,-120.4347222,Santa Maria,CA,other,15,An od shaped object with lights along the bottom outline, that glided at high speed, yet disappeaered instantlly, +2008-10-09,35.7327778,-84.3338889,Loudon,TN,unknown,20,Unknown Craft Seen Over Lake +2008-10-09,32.7666667,-96.5988889,Mesquite,TX,cylinder,180,3 mysterious lights in southern sky moving quickly westward +2008-10-09,40.6958333,-75.0105556,Asbury,NJ,cigar,10,a white cigar-shaped object very high in the sky +2008-10-09,32.6097222,-85.4808333,Auburn,AL,circle,12,two circuler crafts hovered for about 10 seconds then dissapeared. +2008-10-09,32.7358333,-96.275,Terrell (Close To),TX,oval,10,White oval object moving with incredible speed to the west. +2008-10-09,38.6272222,-90.1977778,St. Louis,MO,sphere,45,slow moving object changed colors from violet to white to transparent except for a spot in the center that was constant +2008-10-09,33.1975,-96.615,Mckinney,TX,light,40,Moving "star" sighted over McKinney Texas at 20:30 moving from the northwest to the southwest. +2008-10-09,33.0197222,-96.6986111,Plano,TX,cylinder,600,Cylindrical craft with 3 lights seen over Dallas, 10.09.08 +2008-10-09,41.88,-88.0077778,Lombard,IL,circle,5,quick, very bright stoplight green, pulsing, progressively vanishing light +2008-10-09,41.7013889,-87.7791667,Chicago Ridge,IL,teardrop,10,'star bright white' teardrop object streaks acroos sky +2008-10-09,41.85,-87.65,Chicago,IL,flash,2,A UFO only in that the phenomena is currently unidentified. +2008-10-09,43.0388889,-87.9063889,Milwaukee,WI,light,3,light moved faster than any jet i've seen and turned 90 degrees in a millisecond toward chicago +2008-10-09,41.85,-87.65,Chicago,IL,fireball,10,Fireball over Chicago +2008-10-09,42.2586111,-87.8405556,Lake Forest,IL,fireball,2,I observed a fireball with long tail that what I would normally consider to be a shooting star, except for color(distinctly green),size +2008-10-09,33.6694444,-117.8222222,Irvine,CA,disk,45,Extended Duration of UFO Sighting ((NUFORC Note: Sighting caused by model airplane. PD)) +2008-10-09,38.0194444,-122.1330556,Martinez,CA,light,300,3 lighted circular air craft dropped straight down out of my view into the hills. +2008-10-09,34.7463889,-92.2894444,Little Rock,AR,triangle,120,Large/Slow Moving/Quiet /Low AltitudeTriangular Aircraft - Little Rock +2008-10-10,35.6808333,-94.175,Chester,AR,oval,120,Long Shiny Object that bobbed and dipped just above the tree top level, no sounds. +2009-10-09,40.7683333,-74.1458333,Kearny,NJ,cylinder,900,Cylindrical shaped object seen at 1am hovering with lights coming from bottom. Oject moved slowly to the north still in an upright pos +2009-10-09,37.6922222,-97.3372222,Wichita,KS,other,20,Boomarang shaped faint and big and fast no sound. +2009-10-09,34.2694444,-118.7805556,Simi Valley,CA,cigar,90,roun red light and in center cigar shaped white +2009-10-09,35.3822222,-85.1088889,Sale Creek,TN,disk,60,Silver saucer shaped object spotted in western sky in N. Hamilton County, TN on Oct 9, 2009. +2009-10-09,33.1191667,-117.0855556,Escondido,CA,triangle,1800,Triangular Shaped Object with Flashing Lights Flying over Escondido Friday Night Oct9 2009. +2009-10-09,40.7141667,-74.0063889,New York City,NY,unknown,15,Flying in a southwest flight at 30ꯠ feet I look down at NYC and see a strange translucent cloud that distorted the lights below it. +2009-10-09,27.8258333,-82.8291667,Redington Shores,FL,light,20,bright star-like form in sky to the west of another bright star or Venus, disappeared after 20 seconds +2009-10-09,33.1333333,-100.2269444,Aspermont,TX,light,900,Unexplained lights over West Texas +2009-10-09,34.2255556,-77.945,Wilmington,NC,oval,5,I came home last night, I live in apartments, and I was pulling into my parking area only to notice 3 red lights in the sky. I remembe +2009-10-09,47.9252778,-97.0325,Grand Forks,ND,triangle,600,I spotted a large trinagular shaped craft travelling slowly over the southside of Grand Forks while stargazing in fall of 2009. +2009-10-09,40.4463889,-74.1786111,Union Beach,NJ,chevron,5,2 or 3 low lit red lights, traveling fast above us, 3 to 5 sec, altitude unknown +2010-10-09,31.4636111,-100.4366667,San Angelo,TX,fireball,5,Incredibly bright green fireball sighted south of San Angelo, Texas. ((NUFORC Note: Possible meteor?? PD)) +2010-10-09,46.0038889,-112.5338889,Butte,MT,formation,1800,Six points of light seen in sky over Butte, MT. +2010-10-09,29.8944444,-81.3147222,St. Augustine,FL,unknown,4,I live in a rural area of Saint Johns County Florida . The Ort cloud and many meteorites are always visible. The typical meteor streak +2010-10-09,39.4561111,-77.9641667,Martinsburg,WV,unknown,6,huge blue light 50-80 feet wide in sky that lasted 3-6 seconds. +2010-10-09,37.9577778,-121.2897222,Stockton,CA,circle,1,A white/blueish circle flying toward East then fades out. +2010-10-09,40.7027778,-74.3791667,Woodland Park,NJ,circle,300,Two yellowish orange round lights in the sky above the trees, one massive light disappearing and reappearing! +2010-10-09,28.0194444,-82.7719444,Dunedin,FL,triangle,21600,UFO's over Dunedin, FL nightly. ((NUFORC Note: We do not know what the witness is observing. PD)) +2010-10-09,39.4808333,-84.4577778,Trenton,OH,light,300,Two small lights moving towards each other in the sky. +2010-10-09,36.9880556,-121.9555556,Soquel,CA,cylinder,300,Cylindrical object over Soquel, CA. +2010-10-09,33.3527778,-111.7883333,Gilbert,AZ,disk,480,My father and I witnessed 4 stationary disc shaped objects in the sky for around 6 minutes until they vanished. +2010-10-09,41.7108333,-87.7580556,Oak Lawn,IL,rectangle,1200,Bright lights +2010-10-09,41.0891667,-90.4752778,North Henderson,IL,triangle,3600,Unusual Aircraft Manuevers +2010-10-09,32.4608333,-84.9877778,Columbus,GA,light,300,Orange lights each in different brightness in a formation that resembled an inverted little dipper in the dark night sky +2010-10-09,32.4458333,-95.7036111,Ben Wheeler,TX,triangle,30,Elongated orange object moving rapidly from west to south then coming to a near stop before slowly continuing +2010-10-09,43.9561111,-89.8180556,Adams County,WI,circle,120,Silent orange UFO spotted traveling in the sky, then changing direction. +2010-10-09,41.5119444,-82.9377778,Port Clinton,OH,fireball,240,Glowing ball sighted over the Catawba Point waters of Lake Erie +2010-10-09,40.1783333,-74.0222222,Belmar,NJ,light,120,Orange ball crossing over Belmar, NJ +2010-10-09,39.9625,-76.7280556,York,PA,other,1200,three non-moving, orange, pulsating objects form triangle over night sky then disappear one at a time. +2010-10-09,29.4238889,-98.4933333,San Antonio,TX,fireball,5,Large, bright, orange, fireball-like sphere seen in San Antonio TX night sky +2010-10-09,42.3583333,-71.0602778,Boston,MA,triangle,60,Orange lights in the sky +2010-10-09,41.6413889,-80.1516667,Meadville,PA,triangle,1200,strange lights over meadville +2010-10-09,37.4791667,-82.5188889,Pikeville,KY,diamond,2700,Light in sky +2011-10-09,47.6541667,-118.1488889,Davenport,WA,light,600,Still light that flew upward fast and over our house at 2:00 am +2011-10-09,34.1511111,-118.4483333,Sherman Oaks,CA,chevron,10,Oct, 09, 2011, first v shape lights after few second the object changed in onother shape +2011-10-09,39.3419444,-78.7569444,Romney,WV,other,7200,Object never moved but just stay n one place blinkiing red and blue lights, in Romney ' ((NUFORC Note: Possible star?? PD)) +2011-10-09,44.3,-120.8333333,Prineville,OR,cigar,60,Bright red glowing object in Prineville, Or. +2011-10-09,43.0116667,-88.2313889,Waukesha,WI,disk,60,Half-moon disc with orange light +2011-10-09,42.7883333,-71.2013889,Salem,NH,unknown,20,Bright star-like object/ light fades into sky rapidly. +2011-10-09,41.6361111,-70.9347222,New Bedford,MA,fireball,1680,On Sunday night, October 9, 2011 we saw many fireballs fly over New Bedford, MA. +2011-10-09,35.1494444,-90.0488889,Memphis,TN,other,600,3 UFO sightings over Memphis. Weird jelly fish like spacecrafts +2011-10-09,42.4738889,-73.7927778,Coeymans,NY,light,1,Rapidly descending bright light over river +2011-10-09,43.3391667,-71.26,Center Barnstead,NH,sphere,720,Two sightings within 10 min.- yellow/gold orbs w/ragged redish perimiter, hover & chngd:3 bright dots triangle, back to orb, vanished +2011-10-09,35.8455556,-86.3902778,Murfreesboro,TN,disk,240,30 bright lights seen moving in formation in Murfreesboro, TN. +2011-10-09,41.6361111,-70.9347222,New Bedford,MA,circle,1680,We saw many orange fireballs fly over New Bedford, MA. +2011-10-09,41.5622222,-72.6511111,Middletown,CT,fireball,900,Orange Fireball Discs +2011-10-09,41.6361111,-70.9347222,New Bedford,MA,fireball,600,Nine orange glowing fireballs Court St west end New Bedford Ma heading southeast about 8 PM. +2011-10-09,43.6852778,-71.1172222,West Ossipee,NH,light,600,Orange Lights Moving Very Slowly In The Night Sky +2011-10-09,46.1383333,-122.9369444,Longview,WA,light,1200,Crazy story gotta read +2011-10-09,42.2711111,-89.0938889,Rockford,IL,fireball,30,Ball of (green) light. +2011-10-09,44.8613889,-92.6236111,River Falls,WI,fireball,120,2 yellowish/orange objects passing from south the northwest in western wisconsin +2011-10-09,26.1272222,-80.2333333,Plantation,FL,other,1200,One very bright and large object with thin tail and bright dots attached on both sides of tail. ((NUFORC Note: Possible star?? PD)) +2012-10-09,43.105,-88.3419444,Hartland,WI,disk,600,U.F.O.'s becoming more Frequent in Lake Country Area +2012-10-09,39.7391667,-104.9841667,Denver,CO,unknown,60,Dark, silent object moving slowly over Denver. +2012-10-09,45.0563889,-92.8058333,Stillwater,MN,light,300,Very distant light blinking on and off at eight second intervals. Appeared to be as far away as the stars. +2012-10-09,38.005,-121.8047222,Antioch,CA,light,180,2 lights being chase by 2 fighters at night. +2012-10-09,32.8083333,-98.1125,Mineral Wells,TX,rectangle,180,On the horizon a oblong shape with srobing lights. It hovered a hands width above the rest for 2 minutes and quickly dipped below the +2012-10-09,42.9980556,-78.1877778,Batavia,NY,circle,1800,I saw a flash of light when i was driving and started to take pictures and found 4 great pictures on phone +2012-10-09,45.4208333,-122.6694444,Lake Oswego,OR,sphere,1200,White orb seen floting in the sky. Standing in my back yard I saw a object in the sky that looked like a star. +2012-10-09,32.7152778,-117.1563889,San Diego,CA,sphere,720,3 white lights with no collision lights heading north from San Diego within a 12 minute period +2012-10-09,34.4302778,-103.6319444,Melrose,NM,teardrop,60,Bright Object in Eastern New Mexico Sky +2012-10-09,39.9180556,-75.0716667,Collingswood,NJ,fireball,120,Orange sphere over philadelphia. +2012-10-09,29.4238889,-98.4933333,San Antonio,TX,diamond,240,Bright white diamond shaped light +2012-10-09,31.2480556,-92.2097222,Center Point,LA,triangle,60,I found it odd that there were no anti-collision lights nor position lights, and made no sound at all. +2012-10-09,26.6155556,-80.0572222,Lake Worth,FL,light,180,2 white dots . +2012-10-09,41.7597222,-74.5944444,Woodbourne,NY,other,0.05,A basket -shaped object, intense orange at the base white "flames" at the top standing still in an empty field +2012-10-09,34.1808333,-118.3080556,Burbank,CA,fireball,300,Red/orange fireball seen in the night sky over Burbank, CA +2012-10-10,42.5005556,-90.6644444,Dubuque,IA,diamond,300,Driving hwy 61 close to dubuque airport saw 2 diamond shaped very bright blinking lights that moved and then disappeared +2013-10-09,33.4147222,-111.9086111,Tempe,AZ,unknown,600,Ascending lights seen over east valley. +2013-10-09,33.4483333,-112.0733333,Phoenix,AZ,light,900,Flashing stationary floating UFO over central Phoenix 4 AM. +2013-10-09,35.925,-86.8688889,Franklin,TN,fireball,60,Pulsating red light in the western sky about 30 degrees above horizon, moving slowly, then disappears. +2013-10-09,36.1658333,-86.7844444,Nashville,TN,cigar,1800,Cigar shaped bright fluorescent light over nashville +2013-10-09,39.6133333,-105.0161111,Littleton,CO,oval,900,Silver object in Littleton, CO sky moving southeast to northwest. SIgnificantly above airline paths. +2013-10-09,41.1688889,-82.2180556,Wellington,OH,egg,300,Shiny object only 500 yards off the ground the size of a small plane with no wings moving very slowly for 5 min south to north. +2013-10-09,39.785,-85.7694444,Greenfield,IN,light,600,Light object in sky during day time on 10/9/13 in Greenfield, IN, +2013-10-09,40.6027778,-86.8672222,Brookston,IN,rectangle,480,Rectangle lights 18 to 25. Looked like fire in balloons. Have pics. Standing on deck by river. +2013-10-09,27.9655556,-82.8002778,Clearwater,FL,unknown,120,Went outside in backyard looked up saw a beautiful color green and red object flying in the sky about 5 miles out it flew erratically. +2013-10-09,40.7141667,-74.0063889,New York City (Bronx),NY,light,600,Red/Orange group of lights in the sky lasted at least 10mins, and disappeared in the Bronx, Ny +2013-10-09,42.0027778,-71.5152778,Woonsocket,RI,light,120,Bright light. +2013-10-09,32.7458333,-96.9975,Grand Prairie,TX,oval,300,Orange Orbs silently traveling in a group across the sky. +2013-10-09,44.0394444,-88.7441667,Omro,WI,flash,2700,Multi-colored group of flashing lights zig-zagged across sky. +2013-10-09,38.8105556,-90.6997222,O'fallon,MO,triangle,15,Dark boomerang craft, no lights, gliding across O'Fallon, Mo., skies +2013-10-09,26.6583333,-80.2416667,Wellington,FL,other,12,Flying from west to east. +2013-10-09,41.5736111,-84.0052778,Delta,OH,other,3600,Two dozen or more drone type flying objects size of small private aircraft. +2013-10-09,45.5608333,-94.1622222,St. Cloud,MN,circle,15,I believe in aliens is just not them coming to earth. I swear this was an ufo. +2013-10-09,42.9602778,-90.13,Dodgeville,WI,light,300,Orange light moving across the sky from south to north, eventually flickering and dissapearing. +2013-10-09,40.29,-76.9341667,Enola,PA,diamond,900,Sting ray shape, ambient colorless orbs on bottom. +2013-10-09,32.7938889,-79.8627778,Mt. Pleasant,SC,light,1200,2 mysterious red and orange lights. +2013-10-09,47.3811111,-122.2336111,Kent,WA,triangle,600,Five triangle shapped aircarft with blue lights. +2013-10-09,41.0186111,-86.4133333,Kewanna,IN,light,1200,2 red lights over bruss lake. +1947-01-10,30.3116667,-95.4558333,Conroe,TX,other,4,The date was early 1947 before Arnold's "flying saucers". I was ten years old, ridding in the front seat of our car next to the passan +1959-01-10,37.6547222,-122.4066667,South San Francisco,CA,disk,120,Its was approximately 6:30pm, I was sitting in frontroom watching TV, when screen showed sometype of interference. I looked out the wi +1964-01-10,37.9158333,-122.3105556,El Cerrito (Over Old Berkeley Dump),CA,fireball,120,bal of fire in the sky no reported air crashes that night(unexplained) +1980-01-10,42.9813889,-70.9483333,Exeter,NH,disk,7800,saw what appeared as very bright star, somewhat orange, yellow which changed in intensity to very bright, from bright. was standing on +1981-01-10,34.1361111,-117.8644444,Glendora,CA,unknown,60,On a very foggy night in 1981 I was illuminated by a silent unseen object in Glendora, California +1983-01-10,29.9116667,-95.0619444,Crosby,TX,cylinder,300,Several unexplained incidents reported by family and friends in Crosby Texas during the early 80's. +1987-01-10,32.7919444,-115.5622222,El Centro (Approaching From West),CA,sphere,300,Two large, apparently sperical objects, glowing brightly in the deep red, approached from behind, passed overhead, and into distance. +1988-01-10,40.9225,-90.0144444,Williamsfield,IL,unknown,1620,A dull yellow light, low off the ground and no noise in January 1988 +1989-01-10,39.7763889,-74.8627778,Jackson,NJ,fireball,600,I wonder now why we both didn't make a big deal about it +1989-01-10,32.7152778,-117.1563889,San Diego,CA,light,15,Intentional formation of lights +1991-01-10,32.6125,-90.0366667,Canton,MS,light,2700,fast light in the sky +1993-01-10,42.4405556,-76.4969444,Ithaca,NY,other,10,A extremly huge object flew across the sky with great speed and no sound. +1995-01-10,41.52,-81.5563889,Cleveland Heights,OH,sphere,20,Glowing orb changes color and heads straight into Lake Erie. +1997-01-10,39.9611111,-82.9988889,Columbus,OH,triangle,15,Very large triangular craft moved silently and darkly (no lights) very fast through dark Columbus OH night. +1998-01-10,44.5197222,-67.6155556,Beals,ME,circle,16,On my porch my friend and I saw a round ,white light in the sky it moved acrossed the sky faster then the average plane. After about +1998-01-10,47.5675,-122.6313889,Bremerton (Over),WA,light,300,10-year old sites ufo above Bremerton. She explains it as a fire in the sky. The object moved extremyly slow. +1998-01-10,43.4194444,-83.9508333,Saginaw,MI,light,300,A round light in the sky hovered then moved in a perfect line from one point to another and disappeared +1999-01-10,18.1913889,-65.9613889,San Lorenzo (Puerto Rico),PR,formation,60,I was with my parent inside our car when suddenly we saw a 7 lights in formation on top of a mountain and then a we heard a big explosi +1999-01-10,39.7597222,-121.6208333,Paradise (Just East Of; Yankee Hill),CA,unknown,120,Humming sound outside--unlike any other I've heard around here. +1999-01-10,34.0522222,-118.2427778,Los Angeles,CA,fireball,180,I saw 2 glowing balls move slowly across the sky at high altitude. +1999-01-10,32.7833333,-96.8,Dallas (North Of Dfw),TX,light,900,Saw long tail reflecting the setting sun begin to zigzag explosively moving from NW to SE then a bright light appeared in front of the +1999-01-10,41.8186111,-73.3713889,Cornwall Bridge,CT,disk,60,Clear night. Wife and I saw circle of lights, green, bluish on stationary object about 200-500 feet. Suddening object moved right and +1999-01-10,39.6836111,-75.75,Newark,DE,fireball,1.5,Quickly moving bluish/green light w/ tail. Meteor? +1999-01-10,27.8002778,-97.3961111,Corpus Christi,TX,fireball,3,It was going straight toward the ground, it appeared to be glittery like tin foil and appeared to be about the size of a basketball,nor +2000-01-10,36.0330556,-86.7827778,Brentwood,TN,disk,240,Saucer shaped craft,that faded in out of view 3 times. +2000-01-10,36.1333333,-96.3541667,Mannford,OK,oval,8,Two bright objects perpendicular to one another and appeared to be heading on a fast collision course, when one passed over the other, +2000-01-10,35.8680556,-83.5619444,Sevierville,TN,oval,900,i walked outside to get something from the car.an oval shape custer of lights flying really low was flying west,north-west very slowly. +2000-01-10,30.3116667,-95.4558333,Conroe,TX,light,1800,three lights in triangl form moved in " L " shape patern.....seemed to be one object.... +2000-01-10,32.7152778,-117.1563889,San Diego,CA,light,10,Green ball of light flying up from bushes. +2000-01-10,42.1291667,-80.0852778,Erie (Area),PA,unknown,60,dark object with strobe/beacon.stationary over Interstate 90 near Erie,PA +2001-01-10,35.4661111,-82.5166667,Arden,NC,cigar,30,High SPeed Cigar Shaped Object - Sky Turning Brighter Than Noon for 1000 Miles For Over 20 Secs +2001-01-10,41.7002778,-86.5094444,New Carlisle,IN,light,600,I saw two stationery lights hovering over an open field early in the morning sky. +2001-01-10,36.0688889,-79.4008333,Graham,NC,egg,900,1/09/01 I had contact with Peter Davenport as to a questionable sighting of circular or egg shaped objects in southern sky shortly afte +2001-01-10,42.3811111,-71.6375,Berlin,MA,disk,1200,I can prove beyond a reasonable doubt that what I saw was not manufactured by a human being. +2001-01-10,44.0952778,-69.3761111,Waldoboro,ME,cigar,900,red cigar shaped object in sky over Waldoboro, Maine +2001-01-10,48.7597222,-122.4869444,Bellingham,WA,triangle,180,Black triangular object moving erratically in sky. +2001-01-10,34.1388889,-118.2130556,Eagle Rock,CA,cigar,240,1/10/01 6:20 PM. Saw a large elongated tube cigar like object. Dark outside. Several long stream blinking lights. I was bewildered +2001-01-10,43.9705556,-89.8166667,Friendship,WI,formation,900,From Friendship, Wisconsin, bright orange lights seen in eastern sky below full moon on 1/10/01. +2001-01-10,42.2711111,-89.0938889,Rockford,IL,light,600,CREATING SYMBOLS OF GREETING OR COMMUNICATION +2002-01-10,33.6116667,-111.7166667,Fountain Hills,AZ,rectangle,15,Triangular UFO seen in Fountain Hills, AZ +2002-01-10,39.9283333,-75.2741667,Upper Darby,PA,circle,10,Bright white round light decending in the sky at rush hour in Suburban Phila. Near Auto Accident. +2002-01-10,33.3061111,-111.8405556,Chandler,AZ,cylinder,2,Driving south on the 101 in between Ray and Chandler Blvd. A defining GREEN cylinder shaped object started at about 12:00 from looking +2003-01-10,43.1705556,-78.6905556,Lockport,NY,flash,420,Lockport, NY Sighting. Hovering object pulsating and emitting different colors. +2003-01-10,38.2027778,-75.6927778,Princess Anne,MD,other,420,PULSATING LIGHTS OVER PR. ANNE..MD +2003-01-10,38.7725,-112.0833333,Richfield,UT,fireball,300,bright blue light that turned night into day +2003-01-10,37.7272222,-89.2166667,Carbondale,IL,circle,60,the lights were really bright like meteors burning in the sky, but they hovered and went different directions northeast and northwest. +2003-01-10,41.5444444,-73.2094444,Woodbury,CT,oval,1800,Oval orange glowing object hovers over Three Rivers Park, shoots laser-beam to ground. Not a balloon! +2003-01-10,44.9341667,-68.6458333,Old Town,ME,other,240,we saw a bommerang shaped ship hover thain take off without making a sound. +2003-01-10,33.5602778,-81.7197222,Aiken,SC,unknown,1800,Unknown Slow Pulsing Light object moving accross I-20 +2003-01-10,36.0861111,-93.7411111,Huntsville,AR,oval,5,It was an overcast night but the stars were just barely shining through. My girlfriend and I were outside burning brush. We were look +2003-01-10,47.0380556,-122.8994444,Olympia,WA,disk,240,Bright Glowing Orange-Red Ball in night sky, dropping exploding balls of white light. +2003-01-10,34.1808333,-118.3080556,Burbank,CA,oval,900,Third sighting of yellowish/orange lights over Burbank / N. Hollywood Area. +2003-01-10,34.1747222,-86.8436111,Cullman,AL,diamond,600,orange fireball in cull. al. +2003-01-10,38.8822222,-77.1713889,Falls Church,VA,cigar,6,this object in the sky affected the working of my car as long as it was in the sky +2004-01-10,40.9275,-73.9977778,Bergenfield,NJ,other,45,Three "stars" in a perfect "v" formation, one drops slowly out of the sky. +2004-01-10,25.8897222,-80.1869444,North Miami,FL,light,60,Moving bright light amongst the stars around 6:15 am in Miami...duration 1 min. +2004-01-10,41.1305556,-85.1288889,Fort Wayne,IN,fireball,3,Saw a large bright yellow/orange fireball that streaked almost straight down very fast and appeared to hit the ground while I was drivi +2004-01-10,39.7391667,-75.5983333,Elsmere,DE,circle,600,Lights outside Elsmere Pt. 2 +2004-01-10,32.2986111,-90.1847222,Jackson,MS,light,900,Three lights in a triangular white ligt formation without red flashing lights moving east to west making no sound. +2004-01-10,32.2986111,-90.1847222,Jackson,MS,unknown,900,I am sending this in order to correct some errors in my previous entry of 3/4/2004. Three lights in a triangular white light format +2004-01-10,41.4858333,-73.0511111,Naugatuck,CT,light,900,Erratic-moving amber light in sky +2004-01-10,34.5966667,-87.9166667,Rock Creek,AL,diamond,3600,Coming home from the store my husband and I noticed two bright lights in the sky. We went into the house, got our binoculars (our two d +2004-01-10,35.4427778,-84.5930556,Athens,TN,oval,300,Larger oval extreme-bright object moving downward then dissappeared into sky +2005-01-10,35.8455556,-86.3902778,Murfreesboro,TN,disk,20,At first we thought it was lighting, when 4 rapid bursts of light went off, but they illuminated a LARGE saucer style craft- very shine +2005-01-10,32.0833333,-81.1,Savannah,GA,sphere,15,This white dot was moving across the sky from the NW to SE in Savannah GA about 10:15 am on 1/10/05. No noise. It went into the clouds +2005-01-10,44.9583333,-124.0166667,Lincoln City,OR,light,180,Bright light over ocean that was later joined by another. Both meandered around each other before disappearing. +2005-01-10,47.6105556,-122.1994444,Bellevue,WA,changing,900,Multi colored object, split into 3 lights, then split into 2 white lights northwesterly of Mercer Island, WA +2005-01-10,39.2375,-75.1719444,Fortescue (Over The Delaware Bay),NJ,circle,30,Light with erratic flight pattern +2005-01-10,43.7525,-85.1469444,Barryton,MI,circle,0.5,1 white light with a red 1 following it. it lasted a half a second. they left a haze & trail that disapeared quickly. +2005-01-10,29.7630556,-95.3630556,Houston,TX,oval,60,An oval object with lights very close to the Fwy +2005-01-10,24.7133333,-81.0905556,Marathon,FL,light,5,Set of four frosty lights that revolved very fast within a shape of plus sign, zoomed across sky at warp speed. +2005-01-10,32.8472222,-117.2733333,La Jolla,CA,light,4,UFO Sighting in Southern California I live thirty minutes from the border of Mexico.At about 2005 as I was walking my dog late at +2005-01-10,33.5091667,-111.8983333,Scottsdale,AZ,changing,2100,Pulsating twinkling light in the sky over the mountains in SW Phoenix. +2006-01-10,43.8013889,-91.2394444,La Crosse,WI,other,300,I was skiing on my birthday, and while I was going up the ski lift I saw what looked like a burning boomerang.It was falling out of the +2006-01-10,45.010555600000004,-93.4552778,Plymouth,MN,unknown,900,Possible sighting in Plymouth, MN +2006-01-10,42.0897222,-76.8080556,Elmira,NY,light,7200,My wife noticed it first at 12:30 AM on the porch. She called me out and I saw it too. We decided to walk down near the Chemung river +2006-01-10,39.2038889,-94.5544444,Gladstone,MO,light,10,brilliant blue-green light traveling at high rate of speed +2007-01-10,35.3394444,-97.4863889,Moore,OK,teardrop,60,Large Teardrop Shaped craft and two Escorts +2007-01-10,29.7855556,-95.8241667,Katy,TX,light,120,Circular light seen possible close by and then further away during morning. +2007-01-10,40.6547222,-76.1011111,Orwigsburg,PA,sphere,3,I saw a ball of light outside my window one day. O.o +2007-01-10,33.0369444,-117.2911111,Encinitas,CA,disk,10,7-photo sequence of flying object, Encinitas CA Jan 10 2007 +2007-01-10,28.2916667,-81.4077778,Kissimmee,FL,cylinder,2400,Large bright object traveling high over Florida appearing to be burning into the atmosphere +2007-01-10,43.9552778,-86.4525,Ludington,MI,circle,180,UFO in Ludington MI - Large white Light went straight up +2007-01-10,40.7141667,-74.0063889,New York City (Staten Island),NY,other,600,red, white and blue lights over Staten Island green belt. +2007-01-10,36.2613889,-90.9711111,Pocahontas,AR,light,10,Light/Orb observed in N.E. Arkansas, south east skies. +2007-01-10,41.8775,-88.0669444,Glen Ellyn,IL,formation,600,Please I do not want to enter my personal home info yet please look at this and se were it goes could be nothing lets keep it email:) +2007-01-10,33.5161111,-90.1794444,Greenwood,MS,circle,10,Spinning circular yellow disc with neon light fell rapidly towards earth. +2007-01-10,35.0461111,-83.8180556,Hayesville,NC,circle,900,Flashing differant colors and expanding and contracting of craft +2007-01-10,30.3319444,-81.6558333,Jacksonville,FL,light,2,Bright light streaks across the sky +2007-01-10,42.1180556,-88.0961111,Inverness,IL,triangle,60,Triangular shaped object see over Rt.14 - Rt. 68 in Inverness Illinois. +2007-01-10,41.2619444,-95.8608333,Council Bluffs,IA,chevron,3420,the object darted around until it went over the horizon +2007-01-10,38.7208333,-82.9583333,South Shore,KY,disk,600,UFO's Appear in Clear Night Sky Near City of South Shore in Greenup County Kentucky +2007-01-10,41.2619444,-95.8608333,Council Bluffs,IA,chevron,7200,I was driving near the industrial estate when a bright light appeared on the horizon. It began to climb into the sky and grow larger. T +2007-01-10,39.9536111,-74.1983333,Toms River,NJ,fireball,10,yellow fireball shot off +2008-01-10,27.9769444,-82.8280556,Clearwater Beach,FL,other,10,UFO Near Scientology building/church in Clearwater FL +2008-01-10,35.2244444,-96.6702778,Seminole,OK,circle,1200,A btight, white, flashing light followed my car and then got dircectly above my car for 2 blocks until it flew away very fast. +2008-01-10,38.2541667,-85.7594444,Louisville,KY,light,120,Bright white light, dissapearing and reappearing in different locations in the night sky, eventually dissapearing, fading away. +2008-01-10,40.6866667,-73.3738889,Lindenhurst,NY,circle,300,Three round objects in a vee formation east to west five minutes +2008-01-10,26.0625,-80.2333333,Davie,FL,teardrop,900,((HOAX??)) green,yellow,red,moving really slow,one +2008-01-10,27.3361111,-82.5308333,Sarasota,FL,fireball,60,left home in sarasota florida about 7pm 1/10/08 saw in northwestern sky a object with long tail(orange, fiery) going northeast very qui +2008-01-10,36.175,-115.1363889,Las Vegas,NV,unknown,300,Strange lights above the highway on a stormy night. +2008-01-10,41.7002778,-73.9213889,Poughkeepsie,NY,other,180,1/10/08 Poughkeepsie,NY 20:05 Circular/Sphere with 4 pods 200 feet above ground +2008-01-10,33.5225,-117.7066667,Laguna Niguel,CA,light,3,Large bright green ball of light appeared to fall rapidly from the sky, then disappear. +2008-01-10,39.0991667,-76.8486111,Laurel,MD,light,60,two lights followed by flashes on highway +2009-01-10,28.6986111,-81.3083333,Winter Springs,FL,other,30,Looked like plane was going to crash behind one of the buildings in my community. +2009-01-10,39.515,-84.3983333,Middletown,OH,triangle,1200,3-4 triangular "humming" objects at treetop level in Middletown, Ohio +2009-01-10,34.1063889,-117.5922222,Rancho Cucamonga,CA,light,600,Fourth sighting of bright star like light moving in clear morning skies of Rancho Cucamonga, CA. +2009-01-10,28.3858333,-80.7422222,Cocoa,FL,oval,900,9 bright/white, colorful, oval objects in 3 different formations all travelling NE over Cocoa,Fl.1/10/2009 +2009-01-10,28.3858333,-80.7422222,Cocoa,FL,oval,900,9 oval shaped, bright multicolored objects moving toward Kennedy Space Center. Viewed from Cocoa, FL +2009-01-10,29.4238889,-98.4933333,San Antonio,TX,disk,20,Large gray disk, appears to be at least 15 to 20 time bigger than airplane in the vicinity. +2009-01-10,30.63,-90.1872222,Folsom,LA,light,5,Bluish white light over Folsom LA. +2009-01-10,40.8894444,-111.88,Bountiful,UT,light,120,Falling star like light object making erratic maneuvers +2009-01-10,48.051944399999996,-122.1758333,Marysville,WA,light,20,witnessed single white light direct trajectory from East to west low altitude at a high rate of speed.no flashing lights or standar +2009-01-10,31.0744444,-83.1994444,Ray City,GA,light,1,Strange unknow light in photograph. +2009-01-10,44.4375,-73.0686111,Williston (Seen From; To Ne),VT,circle,30,2 bright orange lights above horizon with possible smoke trail above them appeared stationary +2009-01-10,25.7738889,-80.1938889,Miami,FL,formation,120,These objects were not known man made aircraft. +2010-01-10,42.0772222,-71.63,Uxbridge,MA,sphere,300,Unidentified object, roughly spherical, hovering/moving very slowly, many lights, multiple colors. +2010-01-10,30.5080556,-97.6786111,Round Rock,TX,light,2,3 Fast-moving lights over Round Rock Texas +2010-01-10,33.7838889,-116.9577778,San Jacinto,CA,unknown,5,A bright light hitting us while leaving at high speed +2010-01-10,41.9666667,-71.1875,Norton,MA,triangle,60,strange craft with amazing speed. +2010-01-10,39.6988889,-78.18,Hancock,MD,sphere,120,Photo taken of silver colored sphere in Western Maryland. +2010-01-10,35.7913889,-78.7813889,Cary,NC,changing,900,Object appears and hovers, strange maneuvering. +2010-01-10,33.0738889,-106.0180556,Tularosa,NM,other,300,green figure 8 followed by military aircraft +2010-01-10,30.4941667,-92.4175,Eunice,LA,oval,900,Two objects meet then leave each other one to the east and one to the west +2010-01-10,38.2538,-94.3356,Butler,MO,chevron,120,((HOAX??)) I was heading driving to the store when I seen a red and yellow lighted craft in the air flying 1000 ft or less strobing. +2010-01-10,34.6391667,-120.4569444,Lompoc,CA,fireball,6,huge bright orange sphere appeared and dissapeared +2010-01-10,37.6438889,-98.7372222,Pratt,KS,circle,6,4 rings of light accompanied by a single ring of light +2010-01-11,41.9,-71.0902778,Taunton,MA,unknown,10,((HOAX??)) saw a strange object in the night sky +2011-01-10,37.1283333,-119.6933333,O'neals,CA,light,180,Solid white light spotted at dusk, flying across the sky. It took 3 miraculous 90 degree turns before the light disappeared altogether +2011-01-10,41.1897222,-88.5694444,Kinsman,IL,rectangle,2,Black square/rectangular 3 dimensional object with cone shape or antenna coming from top flying west with no wings or propellers +2011-01-10,32.9155556,-117.1430556,Mira Mesa,CA,cylinder,900,Cylindrical object in sky over Mira Mesa +2011-01-10,42.1291667,-80.0852778,Erie,PA,cigar,10,An unusally loud, low flying , fast aircraft, with no lights, heading north of Erie County, PA dissappears. +2011-01-10,43.073055600000004,-89.4011111,Madison,WI,oval,15,hovering object with bright lights in sky- suddenly disappears +2011-01-10,34.551944399999996,-77.9263889,Burgaw,NC,cylinder,360,Long uniformly shaped cylinder overhead at low altitude, minimal sound and changed direction easily +2012-01-10,37.9747222,-87.5558333,Evansville,IN,light,90,Two lights over Evansville, IN early in the morning +2012-01-10,40.4405556,-79.9961111,Pittsburgh,PA,other,900,Mock helicopter seen above city of Pittsburgh. +2012-01-10,41.5619444,-73.6030556,Pawling,NY,triangle,7200,It was the bigest craft i have evet seen. +2012-01-10,44.6522222,-84.1297222,Mio,MI,circle,420,Huge, round, bright lights in the Northern Lower Michigan sky +2012-01-10,39.1377778,-76.8241667,Savage,MD,oval,15,Very large circular object moving VERY slowly with orange lights covering the whole of the ship +2012-01-10,38.5816667,-121.4933333,Sacramento,CA,changing,600,Ufo seen over Sacramento Ca, at 6:30 pm on 1-10-12 +2012-01-10,47.6777778,-116.7794444,Coeur D'alene,ID,sphere,120,Object that appeared to be satellite, changed speed and course, then stopped and hovered. Object split in two and departed +2012-01-10,42.3811111,-88.1397222,Ingleside,IL,sphere,6,Jupiter-like Object Shrinks Down and Disappears. ((NUFORC Note: Possible sighting of ISS?? PD)) +2012-01-10,32.1108333,-98.5355556,De Leon,TX,formation,6,Saw two bright redish/orange lights +2012-01-10,38.7430556,-94.0697222,Kingsville,MO,light,2700,Four stationary lights with changing colors observed near Kingsville. ((NUFORC Note: Possible sighting of twinkling stars. PD)) +2012-01-10,37.5247222,-77.5580556,Bon Air,VA,changing,30,I first saw the objects from within my car while driving to turn in my driveway. They were at the end of the road and hovering over a l +2012-01-10,48.051944399999996,-122.1758333,Marysville,WA,triangle,180,Witnessed red/orange light over cascade foothills in different formations +2012-01-10,39.8494444,-75.3561111,West Chester,PA,light,180,I looked at the sky outside on 1-10-2012 and to the west and south saw two sightings amongst a tremendous star filled sky. The sighting +2012-01-10,42.5619444,-73.1633333,Cheshire,MA,chevron,3,Red lights over Berkshire County +2012-01-10,39.9608333,-89.7238889,Athens,IL,triangle,120,Triangular UFO turns into 2. +2012-01-10,45.0430556,-122.6672222,Scotts Mills,OR,fireball,3,Fireball? +2012-01-10,42.0347222,-93.6197222,Ames (North Of),IA,flash,3,Bright blue/white flash north/northwest of Huxley, IA +2013-01-10,30.3880556,-95.6961111,Montgomery,TX,sphere,8,Small metallic sphere that changes into a larger sphere of light. +2013-01-10,46.6066667,-93.3136111,Mcgregor,MN,triangle,120,We seen an Explosion over Ft. Riply, MN, at 13:00 on Jan 10 2012 along with lots of UFO Activity. +2013-01-10,42.1397222,-71.5166667,Milford,MA,triangle,60,Black triangle glider, forty feet off ground, red, blue, green lights on bottom, moved slowly and quietly. +2013-01-10,42.4858333,-83.1052778,Madison Heights,MI,circle,10,Yellow/white orb hovering above I-696. Slowly pulsating, not flashing. No sound. +2013-01-10,38.8941667,-77.4313889,Chantilly,VA,formation,120,Approximately 20 orange lights in formation moving with no sound. +2013-01-10,39.9241667,-83.8088889,Springfield,OH,fireball,1800,Fireballs over Springfield Ohio. +2014-01-10,33.8722222,-117.8694444,Placentia,CA,rectangle,60,EXTRATERRESTRIAL MULTICOLOR SPACECRAFT OVER GOLF COURSE +2014-01-10,31.7586111,-106.4863889,El Paso,TX,circle,120,Single round, reddish yellowish, greenish light in the sky which moved very rapidly and stood still, then moved again then stood still +2014-01-10,38.3611111,-105.1477778,Coal Creek,CO,sphere,1200,Large, yellowish white reflective sphere with no lights, no sound, no exhaust trail. +2014-01-10,41.7636111,-72.6855556,Hartford,CT,flash,120,((HOAX??)) While i was watching a movie a white flash came from the sky after 1min another flash blinded me it ended and left +2014-01-10,35.9605556,-83.9208333,Knoxville,TN,light,1,Yellow Orange Light Shot Across Sky. +2014-01-10,32.7252778,-114.6236111,Yuma,AZ,unknown,120,Glowing streak of blue cloud passes quickly over the area in Yuma, AZ. +2014-01-10,43.6575,-71.5008333,Meredith,NH,fireball,300,Orange glowing orb slowly moving upward then disappeared. +2014-01-10,33.6188889,-117.9280556,Newport Beach,CA,fireball,600,Hovering Red Orbs over the Newport Beach, CA peninsula. +2014-01-10,42.9336111,-85.3419444,Lowell,MI,flash,1,Around 9:15pm last night, in the sky NW of Lowell we witnessed two large flashes of red light that lit up a large, lower portion of the +2014-01-10,21.4180556,-157.8036111,Kaneohe,HI,fireball,90,A silent red ball of light traveled off the pacific ocean from the east to the south below the clouds for about 90 seconds. +2014-01-10,38.2972222,-122.2844444,Napa,CA,circle,240,Bright orange circular object seen flying SE to NW for minutes before suddenly disappearing. +1957-11-10,40.8975,-74.0163889,Teaneck,NJ,cylinder,120,Cylinder UFO followed by disc seen in fall of 1957 over northern New Jersey +1957-11-10,27.8002778,-97.3961111,Corpus Christi,TX,light,600,UFO over Corpus Christi near naval yard on November 10, 1957 +1968-11-10,32.7152778,-117.1563889,San Diego (Allied Gardens),CA,unknown,180,I AWAYS HAD THE FEELING I WAS " NOT" TO TALK ABOUT THIS, " TO ANYONE- +1973-11-10,36.2166667,-81.6747222,Boone,NC,disk,1800,Landing lights,lights around the object top and bottom, no noise,very fast and hovered. +1979-11-10,40.9761111,-74.0266667,Emerson,NJ,rectangle,120,In the fall or winter of 1979, my parents had a UFO encounter in Bergen County, New Jersey. These are blue-collar, relatively unima +1979-11-10,42.2411111,-83.6130556,Ypsilanti,MI,other,259200,object in orbit, drops smaller objects, late 1979, SE Michigan +1980-11-10,42.7325,-84.5555556,Lansing,MI,rectangle,15,object had sections like a large tootsie roll only more squared, no lights or noise,lit by city lights moved smoothly in straight line +1981-11-10,37.775,-122.4183333,San Francisco,CA,other,60,I was standing in a parking lot,approx 20 feet from the wall of a two stoty building , facing eastward. It was approching dusk but ther +1986-11-10,39.2191667,-121.06,Grass Valley (Outside Of),CA,disk,180,50-ft saucer with 6 bright white lights shining down outside Grass Valley California +1989-11-10,33.4483333,-112.0733333,Phoenix,AZ,light,10,Very High star-like dot of light, high speed, crossing sky, then abruptly 'shot' into space, faded out. +1991-11-10,37.6455556,-91.5358333,Salem,MO,triangle,300,Triangular-shaped object hovers 30 to40 feet above car for five minutes. +1994-11-10,29.4238889,-98.4933333,San Antonio,TX,circle,30,It was in the morning and this grey ball was floating in the sky. +1994-11-10,30.1313889,-94.0152778,Vidor,TX,unknown,7200,i believe i was abducted almost directly in front of my home. 500 Lights On Object0: Yes +1995-11-10,47.6591667,-92.1977778,Embarrass,MN,disk,180,craft sighted hovering over trees in rural minnesota +1995-11-10,25.9013889,-97.4972222,Brownsville,TX,circle,600,A late night experience of a rotating ball with changing colors, and a aura +1997-11-10,40.3336111,-75.6377778,Boyertown,PA,light,7200,Southern portion of the sky, bright light seeming to change from bright to light to bright again. Reported at 6:53 P.M. sighting has si +1997-11-10,40.2969444,-111.6938889,Orem,UT,triangle,60,Black object moving slowly from North to South. +1997-11-10,38.4325,-82.0202778,Hurricane,WV,circle,2,I was riding in the car and looked out the window. I then saw a circle about as big as a full moon flash across the sky and the disappe +1997-11-10,32.8383333,-116.9730556,Santee,CA,light,5,We were parked in my car talking when my friend pointed out three green balls of light in the distance. As soon as I looked they shot s +1998-11-10,35.2225,-97.4391667,Norman,OK,sphere,180,A luminous whilte sphere flying slowly, Winked out of sight abruptly and did not reappear. +1998-11-10,34.1063889,-117.5922222,Rancho Cucamonga,CA,disk,900,Saw an anomoly at 11:38hundred hrs. Its shape was disk-like and hung around approximately 20 minutes. My friend had been looking at i +1998-11-10,47.3225,-122.3113889,Federal Way,WA,egg,5,I was driving southbound on I-5,just past the Federal Way truck scales, when I noticed an unusual light that appeared to hover over the +1998-11-10,36.7477778,-119.7713889,Fresno (Northeast Of),CA,light,20,Two white lights beneath clouds-one fell at a 90 degree angle straight down, blinking continouslyand then stopped over the San Joaquin +1998-11-11,41.85,-87.65,Chicago,IL,sphere,3600,In a one hour period during a blackout, I witnessed 6 bright green spheres, flying across the sky from South-East to North-West. +1999-11-10,34.0522222,-118.2427778,Los Angeles,CA,other,30,Shooting star that changes course and accelerates? +1999-11-10,41.85,-87.65,Chicago,IL,unknown,420,I witnessed an object closely hovering in the sky with 3 different brightly colored lights. When it moved, it was slow and steady, stop +1999-11-10,37.8361111,-87.59,Henderson,KY,light,2700,One lighted object that was tracked by aircraft at two different times, th aircraft altered their prior flight pattern. +1999-11-10,38.4088889,-90.57,House Springs,MO,light,60,Bright light hovering in the sky which then quickly moved in a horizontal direction. +1999-11-10,35.198055600000004,-111.6505556,Flagstaff,AZ,other,120,Line formation of 7 flashing lights, all moving in unison towards east. +1999-11-10,42.4133333,-73.6736111,Valatie,NY,triangle,300,If there was nothing there, why were the Jet fighters chasing it? +1999-11-10,34.1952778,-79.7627778,Florence,SC,fireball,1,I heard your report on Art Bell radio show of the east coast sighting. I just wanted you all to know that I witnessed it myself here i +2000-11-10,35.6266667,-120.69,Paso Robles,CA,rectangle,600,Huge and motionless no lights and a silver or grey color rectangular in shape +2000-11-10,41.5569444,-83.6272222,Perrysburg,OH,rectangle,60,large,flat square object that didnt seem to move much +2000-11-10,43.0480556,-76.1477778,Syracuse,NY,triangle,45,Triangular object with three stationary different colored lights moved at a swift and silent pace. +2001-11-10,36.595,-82.1888889,Bristol,TN,oval,600,spherical metallic object witt tail on leading edge +2001-11-10,39.8027778,-105.0869444,Arvada,CO,oval,30,Daylight disc , Jeffco Colorado , 2001 +2001-11-10,34.5077778,-96.9680556,Sulphur,OK,circle,120,Small, round, white light floated in all directions, increased speed toward NW, now appeared to have lights on it like an airplane +2001-11-10,27.8161111,-80.4708333,Sebastian,FL,fireball,30,I saw a quarter-sized, reddish-orange ball moving upward in the sky. +2002-11-10,34.1808333,-118.3080556,Burbank,CA,changing,60,Circular object with 8 white lights morphed then flew away. +2002-11-10,42.4733333,-83.2219444,Southfield,MI,other,5,I HAVE NEVER HEARD A SOUND LIKE THIS COMING FROM THE SKY +2002-11-10,39.8772222,-75.065,Haddon Heights,NJ,rectangle,5,Rectangular Object Twice Size of 747 Seen by Two +2002-11-10,34.4208333,-119.6972222,Santa Barbara,CA,circle,120,We saw approx 10-15 (maybe more) little orbs above a light plane. At first they were in a V- formation then stretched out to an ungulat +2002-11-10,32.7833333,-96.8,Dallas,TX,light,1800,Erratic moving light beneath a Delta Flight out of Dallas. +2002-11-10,39.9433333,-88.4552778,Ivesdale,IL,light,30,While standing on my front porch looking west I noticed a white light about 4 inches in sizes. The white light was not moving and at f +2003-11-10,36.175,-115.1363889,Las Vegas,NV,light,60,7-8 objects with green lights in las vegas +2003-11-10,32.2216667,-110.9258333,Tucson,AZ,light,600,3 starlike lights moving together in unison very bright and low, then disappearing together. +2003-11-10,46.8633333,-95.9813889,Audubon,MN,light,20,moving light in sky, changed direction and disappeared +2003-11-10,34.1477778,-118.1436111,Pasadena,CA,disk,900,Driving East on 210 Fwy, looked to right, and my Daughter and I saw a saucer, fluorcent lights, just kept on hovering, did have a red l +2003-11-10,34.09,-117.8894444,West Covina,CA,disk,300,Cloud-like saucer shape with top and bottom domes having flashing lights moving slowly at low altitude. +2003-11-10,34.0122222,-117.6880556,Chino,CA,circle,60,Watched as hovering green circular craft stopped and then flew off. +2003-11-10,36.9102778,-121.7558333,Watsonville,CA,disk,300,Disk shaped object flew low, had 4 light and an antenna, once i began to run after it, it lowered as if it were goin to land. +2003-11-10,43.0716667,-70.7630556,Portsmouth,NH,triangle,900,Saw Triangle UFO, low right above trees, with white light at each point. Did a 180° turn directly over road without slowing down. +2003-11-10,30.4211111,-87.2169444,Pensacola,FL,sphere,8,Orange Sphere over Northwest Florida +2003-11-10,33.2097222,-87.5691667,Tuscaloosa,AL,cone,900,Bulky Conical object abducts human +2004-11-10,39.2236111,-84.4422222,Reading,OH,unknown,3600,UFO's moving at unknown speeds across the skies with lights of different colors. +2004-11-10,42.9119444,-77.7458333,Avon,NY,unknown,120,Green laser finds object flying overhead +2004-11-10,37.6236111,-96.3652778,Piedmont,KS,light,900,MISSOURI INVESTIGATORS GROUP Report: I noticed a very bright light aprox. 10 degrees on the southern horizon. +2004-11-10,36.4336111,-99.39,Woodward,OK,unknown,600,possible ufo sighting +2004-11-10,25.7211111,-80.2686111,Coral Gables,FL,other,10,Fast moving white fuzzy circular object flying across the sky +2004-11-10,30.5402778,-88.6875,Vancleave,MS,other,30,Line of lights follow my car at night +2005-11-10,26.0730556,-97.2083333,Port Isabel,TX,disk,360,Large disc shaped object with red lights on south side of highway 100 +2005-11-10,45.4208333,-122.6694444,Lake Oswego,OR,cylinder,2,Brilliant blue oblong object zooms horizontally across southern sky at 2 in the morning. +2005-11-10,42.1155556,-75.9591667,Johnson City,NY,cylinder,60,A twitchy light object +2005-11-10,47.5405556,-122.635,Port Orchard,WA,triangle,120,I went out to feed my chickens and looked up to see a triangle in the sky with 3 orange blinking lights, one at each angle. It went rig +2005-11-10,34.1577778,-118.6375,Calabasas,CA,light,10,Strange moving orangish-white light seen midway up in the western sky zigzagging quickly before it disappears +2005-11-10,33.6638889,-114.2291667,Quartzsite,AZ,light,5400,Red/Orange lights Quartzsite to Phoenix +2005-11-10,47.93,-97.0241667,East Grand Forks,MN,unknown,900,This all started when I was going to wash my dishes since they were soaking in the sink. But, I looked outside and I seen this bright l +2005-11-10,42.9572222,-83.8305556,Swartz Creek,MI,triangle,600,Two triangular craft, red light on front, 2 square white lights on rear, northward at slow speed. +2005-11-10,32.7502778,-81.6369444,Sylvania,GA,light,300,Bright orange light in the sky. +2005-11-10,39.8680556,-104.9713889,Thornton,CO,light,2,Green light fell from sky +2005-11-10,33.0580556,-112.0469444,Maricopa,AZ,other,10,Maricopa Lights +2005-11-10,44.1002778,-70.2152778,Lewiston,ME,formation,600,A pair of red objects moving in parallel following 5 min later by a group of 3 red objects in parallel +2005-11-10,33.7488889,-84.3880556,Atlanta,GA,unknown,1800,I didn't see this, but its been reported on the news and you guys might want to check it out. The weather team at WSB TV (www.wsbtv.com +2005-11-10,42.4683333,-82.9555556,Eastpointe,MI,teardrop,30,Two golden/orange globe like objects moving very fast across the sky +2006-11-10,34.7302778,-86.5861111,Huntsville,AL,unknown,45,Two bright lights which appeared to be stars. They slowly faded out of sight. +2006-11-10,39.9536111,-74.1983333,Toms River,NJ,fireball,3,driving home in the corner of our eye we both seen a bright flourescent green looking ball of light falling from the sky like a shootin +2006-11-10,32.2094444,-99.7963889,Tuscola,TX,light,60,Made a report on this yesterday, same thing happened today just this time only the light appeared ..right around the same exact time to +2006-11-10,35.823055600000004,-79.8611111,Sophia,NC,triangle,180,Very bright white triangular object gliding across the sky. +2006-11-10,33.8675,-117.9972222,Buena Park,CA,changing,60,Metallic, triangular object spotted above Knott's Berry Farm 11/10/06 at 9:45pm. +2006-11-10,26.1219444,-80.1436111,Fort Lauderdale (Near),FL,triangle,10,On a cruise saw three whirling lights formed in a triangular figuration. +2006-11-10,64.7511111,-147.3494444,North Pole,AK,other,20,A tall line of green light from the ground up into the sky, 3" wide, bright glowing for 20 sec. then narrowing until it was gone. +2007-11-10,38.2547222,-121.2988889,Galt,CA,fireball,5,I saw a big ball of light fall straight down, hang for a moment then zip straight back up the way it came. +2007-11-10,37.2708333,-79.9416667,Roanoke,VA,unknown,1800,Observed bright twinkling object much larger than any in the sky except the moon many times Sept-Nov. ((NUFORC Note: Sirius?? PD)) +2007-11-10,34.1477778,-118.1436111,Pasadena,CA,other,350,Moving planes, or stars -- STOP and just hang there, for over 20 minutes +2007-11-10,29.875,-98.2622222,Canyon Lake,TX,triangle,30,Rendlesham Forest look alikes. 2 were spotted by Canyon Lake Tx. from about 60 yards away. +2007-11-10,38.7891667,-77.1875,Springfield,VA,light,5,A light kept getting bigger then dissapeared without a trace. +2007-11-10,34.7369444,-82.2544444,Simpsonville,SC,other,300,Dim, low orbit, high detail, backyard satellite shaped object, hazed by distance. +2007-11-10,30.3319444,-81.6558333,Jacksonville,FL,fireball,300,Object entering southeastern Florida atmosphere at high velocity- NOT SPACE SHUTTLE +2007-11-10,30.3319444,-81.6558333,Jacksonville,FL,oval,180,conformation by another +2007-11-10,27.1972222,-80.2530556,Stuart,FL,unknown,120,brightly lit object leaving flame trail with directional and speed change before vanishing +2007-11-10,32.7152778,-117.1563889,San Diego,CA,circle,240,A very orange object stood still in the sky. Through a telescope, the object had a ring around it. Came over the area twice within one +2007-11-10,27.8161111,-80.4708333,Sebastian,FL,light,420,Orange ball over Sebastian, FL +2007-11-10,48.3888889,-122.495,La Conner,WA,cigar,3600,This looks like a hovering, flying saucer of very large proportion. +2007-11-10,26.8230556,-80.1388889,Palm Beach Gardens,FL,light,600,Bright light with sudden burst of speed +2007-11-10,41.8458333,-70.95,Lakeville,MA,disk,3600,NEVER SEEN ANYTHING LIKE IT OR EVER REPORTED SOMETHING LIKE THIS. ((NUFORC Note: Sirius?? PD)) +2007-11-10,42.5388889,-71.0486111,Lynnfield,MA,oval,60,Possible oval blinking UFO shown, with shooting star directly next to it. +2007-11-10,36.175,-115.1363889,Las Vegas,NV,triangle,60,My girlfriend and I were taking our dog for a walk down the street headed southeast at around 11:40 pm. We came to a corner and we sto +2008-11-10,40.975,-81.4083333,Uniontown,OH,changing,180,11/10/08 0:30/ Uniontown Ohio/Shape Round/Duration 3 min/Object was 25 ft in diam.,round and viewed from Uniontown Ohio 11/15/08 +2008-11-10,33.8302778,-116.5444444,Palm Springs,CA,triangle,4,Bright scooting light just disappears +2008-11-10,31.7586111,-106.4863889,El Paso,TX,disk,6,green disc with red tail trail traveling at downward angel for 6 sec. +2008-11-10,37.2694444,-107.0091667,Pagosa Springs,CO,light,600,Bright light hovering over city. +2008-11-10,35.8455556,-86.3902778,Murfreesboro,TN,flash,2,When I was on my way to church I suddenly saw a green flash. +2008-11-10,35.2288889,-89.515,Oakland,TN,fireball,15,Fireball outside my den window 2 witnesses +2008-11-10,39.7763889,-74.8627778,Jackson,NJ,light,60,one object with three bright red lights +2008-11-10,46.2,-119.0119444,Burbank (Outside Of; Near Pasco),WA,changing,240,Bright, large, slow, white ball of light. When nearly overhead, shape became arrowhead. White lights on inside, blue & red on outside. +2008-11-10,33.6,-117.6711111,Mission Viejo,CA,oval,300,ring/orb of light pulses while dipping and dancing in sky. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2008-11-10,33.6,-117.6711111,Mission Viejo,CA,other,120,THREE craft entered atmosphere, one hovered over small ballpark stadium, one darted in an out, and one flew near Orion's Belt. +2008-11-10,36.1658333,-86.7844444,Nashville,TN,fireball,1,Object fell from sky vertically leaving trail of sparks behind it -- changed from green to yellow-white as it entered atmosphere. +2008-11-10,35.8455556,-86.3902778,Murfreesboro,TN,fireball,2,Remarkably large, green fireball heading N +2009-11-10,33.5205556,-86.8025,Birmingham,AL,triangle,120,I saw a triangular shaped air craft that had three bright white lights and a dime one in the center of it. +2009-11-10,42.3583333,-71.0602778,Boston,MA,oval,120,Smooth moving orb with four rotating lights ! +2009-11-10,33.7488889,-84.3880556,Atlanta,GA,circle,120,We were on our way home from work in the middle of a mostly cloud free day loaded with great blue skies... we were on on Hwy. 285 going +2009-11-10,38.9516667,-92.3338889,Columbia,MO,sphere,120,spherical white flying object flying low +2010-11-10,42.6288889,-78.7377778,Boston,NY,flash,3600,seeing flashing ,red,white and green round object. that moves in a cicular motion very fast. ((NUFORC Note: Twinkling star?? PD)) +2010-11-10,42.3583333,-71.0602778,Boston,MA,changing,600,bright light changing shape and moving quickly away +2010-11-10,20.8947222,-156.47,Kahului,HI,oval,10,3 reddish ovals in early morning over maui. +2010-11-10,30.3341667,-81.3988889,Atlantic Beach,FL,disk,30,I saw a bizzare disk or wheel type craft in broad daylight in Atlantic beach, FL. +2010-11-10,38.9180556,-78.1947222,Front Royal,VA,disk,1800,silver disk hovers above in VA country section of RT 66 then dispears +2010-11-10,31.5241667,-96.5336111,Groesbeck,TX,cigar,480,it seem 2 fly slow the it shot off at way 2 high g forces. +2010-11-10,40.6855556,-76.1958333,Pottsville,PA,oval,120,Metallic Object with con trails dissapears. +2010-11-10,43.1380556,-75.5711111,Verona,NY,diamond,60,UFO sighting Verona NY November 10, 2010 +2010-11-10,41.4444444,-87.6313889,Crete,IL,formation,900,4 orange lights in formation +2010-11-10,35.9152778,-82.0647222,Spruce Pine,NC,triangle,3600,Red and Yellow Prisms in the Sky over Appalachia +2010-11-10,35.2219444,-101.8308333,Amarillo,TX,triangle,90,11/10/2010 Unidentified Craft South Amarillo, TX +2010-11-10,44.6388889,-70.0161111,New Sharon,ME,oval,240,Two UFO's sighted in New Sharon, Maine. +2011-11-10,27.3361111,-82.5308333,Sarasota,FL,triangle,300,Triangular U.F.O. hovers near a main road, then over a neighborhood. +2011-11-10,34.005,-118.8091667,Malibu,CA,unknown,90,A huge craft flew over my building at close range so that I could view underbelly. +2011-11-10,33.685,-117.2722222,Canyon Lake,CA,fireball,10,California Fireball Western Sky November 10, 2011 +2011-11-10,47.3294444,-122.5788889,Gig Harbor,WA,circle,90,Circular glowing craft.White yellowish color.Flying fairly low +2011-11-10,44.98,-93.2636111,Minneapolis,MN,sphere,60,Two orbs emitting no light moving together until one starts to circle the other then attach themseleves. +2011-11-10,34.0561111,-79.2466667,Galivants Ferry,SC,light,6,Clutster of lights desend into the woods where there is no landing strips. +2011-11-10,33.5441667,-84.2338889,Stockbridge,GA,formation,600,Three lights in triangular formation hovering then darting with one return. +2011-11-10,33.1505556,-96.8233333,Frisco,TX,light,2,White light speeds out of existence +2012-11-10,46.9811111,-123.8880556,Hoquiam,WA,flash,900,Three huge brillant flashes of light way out past the horizon on the Pacific Ocean +2012-11-10,29.9116667,-95.0619444,Crosby,TX,unknown,180,Pulsing light looks like a flashing stay but moved away from earth Into distance. +2012-11-10,36.0152778,-83.415,Dandridge,TN,teardrop,30,Blimp shaped, shiny silver object during TN Earthquake. +2012-11-10,38.2811111,-80.8527778,Summersville,WV,cylinder,30,Shiny, silver cylinder type UFO near Veteran's Day Parade. +2012-11-10,41.6580556,-90.5844444,Eldridge,IA,circle,60,Bright orange/yellow with red trim circular fast moving quiet light. +2012-11-10,48.88,-115.0525,Eureka,MT,light,600,Orange light over eureka montana. +2012-11-10,40.5530556,-79.7575,Lower Burrell,PA,unknown,60,6 orange glowing lights. +2012-11-10,40.0444444,-111.7313889,Payson,UT,fireball,720,ORANGE BALL OF FIRE. +2012-11-10,45.6388889,-122.6602778,Vancouver,WA,rectangle,120,7 or 8 bright reddish-orange lighted, squarish or cubic shaped objects, hovering above the tree tops in a random pattern. +2012-11-10,46.2752778,-122.9063889,Castle Rock,WA,triangle,60,Three glowing reddish orange spheres hovering then maneuvering at fairly close range. +2012-11-10,42.0983333,-76.0497222,Endicott,NY,circle,600,2 lights joined by 2 more moving slowing southeast to northwest. +2012-11-10,28.5380556,-81.3794444,Orlando,FL,circle,1200,I observed about 9 or 10 balls of light going to one central destination. +2012-11-10,28.5380556,-81.3794444,Orlando,FL,circle,900,Observed up to 9 reddish orange objects flying in commercial airspace near Orland International Airport. +2012-11-10,39.9091667,-74.1552778,Bayville,NJ,fireball,180,Two red fireballs, so close then shot up and disappeared. +2012-11-10,33.8816667,-118.1161111,Bellflower,CA,sphere,600,Several orange spheres seen in Lakewood and bellflower. +2012-11-10,35.0455556,-85.3097222,Chattanooga,TN,other,900,400 foot long craft with half circle lights. +2012-11-10,40.6013889,-79.76,Tarentum,PA,circle,600,Multiple lights over Allegheny River near tarentum, pa +2012-11-10,33.8722222,-117.8694444,Placentia,CA,circle,180,Clusters of orange "lights," cylindrical in shape, traversing the night sky in the area above our heads. +2012-11-10,34.0522222,-118.2427778,Los Angeles,CA,circle,480,3 Red/Orange Circles blacking out in the night. +2012-11-10,28.0391667,-81.95,Lakeland,FL,unknown,15,My family and I seen a fast moving,silent object with bright lights almost like a fireball over our skies +2012-11-10,32.2175,-82.4136111,Vidalia,GA,triangle,900,Orangish lights floating over a field then disappearing and reappearing later over another field. +2012-11-10,28.0391667,-81.95,Lakeland,FL,chevron,600,Chevron of orange lights trailing sparks. +2012-11-10,44.26,-72.5758333,Montpelier,VT,triangle,600,Saw a ufo in montpelier. +2012-11-10,33.5508333,-79.0416667,Murrells Inlet,SC,light,300,15-20 orange/reddish orbs, moving in a similar pattern, heading south, then disappearing. +2012-11-10,29.5425,-90.3380556,Cut Off,LA,changing,240,Low-flying, shape-changing aircraft seen in a small Southern Louisiana town. +2012-11-10,30.19,-98.0863889,Dripping Springs,TX,fireball,300,34 lit up round objects seen floating across night sky by 4 people +2012-11-10,40.8163889,-79.5222222,Kittanning,PA,teardrop,2,I was waiting to cross rte 66 from the east to go west and had noticed what i thought to be something on top of a flag pole,but i could +2012-11-10,40.5866667,-122.3905556,Redding,CA,unknown,0.5,I think I have seen sky wars over northern Calif. +2012-11-10,34.1241667,-81.2375,Ballentine,SC,egg,120,Yellow-orangish in color like object (eggplant like shape) appeared to not have lights on the outside, but radiate light from inside. +2012-11-10,37.9747222,-122.5605556,San Anselmo,CA,light,600,Red/orange noiseless lights in formation at low altitude. +2012-11-10,26.5625,-81.9497222,Cape Coral,FL,sphere,300,Several red spheres over Cape Coral moving south to north then turning toward Gulf of Mexico. +2012-11-10,47.8211111,-122.3138889,Lynnwood,WA,other,4,Bluish glowing 3 foot pillar shaped object at tree level beeps and flies away at extremely fast speed. +2012-11-10,42.085,-76.0541667,Vestal,NY,triangle,2,Triangle-like lights seen flashing/blinking, moving circular then south west, then disappearing. Seen from highway 17C near Vestal, NY. +2012-11-10,36.1880556,-94.5402778,Siloam Springs,AR,other,120,A bright fireball came from the southwest and shot towards the east in a very swift motion. +2012-11-10,38.7522222,-121.2869444,Roseville,CA,triangle,20,A v-shape triangle UFO glided across the night sky in Roseville, CA. It only happened minutes ago, and while I have seen what I thought +2012-11-10,39.3994444,-84.5613889,Hamilton,OH,triangle,240,Navy triangle over my house +2012-11-10,43.9180556,-123.0233333,Creswell,OR,circle,240,Very bright lights like an airplane, but went dark and saw a round, gray object at a high altitude. +2013-11-10,39.0061111,-77.4288889,Sterling,VA,unknown,240,Large flashing lights in sky that seemed cohesive but stationary- red, blue, white flashes. ((NUFORC Note: Sirius?? PD)) +2013-11-10,41.2905556,-95.9177778,Carter Lake,IA,triangle,4,Transparent triangle object heading southeast. +2013-11-10,41.2905556,-95.9177778,Carter Lake,IA,triangle,4,Transparent triangle object heading southeast. +2013-11-10,29.5847222,-81.2080556,Palm Coast,FL,triangle,10800,Triangular lighted objects suspended in sky above Palm Coast, Fl. +2013-11-10,44.8041667,-93.1666667,Eagan,MN,flash,900,Blue flashes in the sky followed by an unusual aircraft. +2013-11-10,41.3966667,-73.0763889,Seymour,CT,light,600,I started at this round bright light travel in the air above at least 3 houses. When it came to the house across the street I waited f +2013-11-10,40.7705556,-74.2330556,West Orange,NJ,rectangle,180,Rectangular waving figure. +2013-11-10,28.5380556,-81.3794444,Orlando,FL,cigar,15,Bright Silver Disc with perfect circle of Distortion (Haze) around it +2013-11-10,39.0955556,-121.5511111,Olivehurst,CA,fireball,300,5 pix of a red ball in the sky. +2013-11-10,39.0638889,-108.55,Grand Junction,CO,circle,2100,I stepped out to have some Colorado tobacco and faceing east towards the grandmesa I looked up and saw the orange glow of the sunset re +2013-11-10,29.9838889,-90.1527778,Metairie,LA,circle,900,Single object hovering over Lake Ponchartrain Louisiana. +2013-11-10,41.9141667,-88.3086111,St. Charles,IL,other,90,Horizontal twinkling lights transforming into triangle follwed by all lights going in opposite directions. +2013-11-10,47.0530556,-122.2930556,Graham,WA,fireball,60,I witnessed a large, orange, silent fireball just under the cloud cover that moved slowly and disappeared up into the clouds. +2013-11-10,42.6113889,-83.3286111,Sylvan Lake,MI,triangle,600,((NUFORC Note: No information provided by witness. PD)) +2013-11-10,40.3933333,-82.4858333,Mt. Vernon,OH,other,10,Round V shaped craft going west to east looked like refracted light in color. +2013-11-10,61.5997222,-149.1127778,Palmer,AK,fireball,1200,It's snowing hard our first real snow of the season... I went in the kitchen and happened to glance out the window and I saw these fire +2013-11-10,26.9294444,-82.0455556,Punta Gorda,FL,fireball,20,Orange fireball over Punta Gorda, Fl. 11/10/2013 approximately 19;30 hours. +2013-11-10,32.8138889,-96.9486111,Irving,TX,fireball,40,Spotted three orbs creating a triangle rotating in scnychronized manner. +2013-11-10,32.8138889,-96.9486111,Irving,TX,fireball,40,Spotted three orbs creating a triangle rotating in scnychronized manner. +2013-11-10,35.8422222,-90.7041667,Jonesboro,AR,rectangle,120,Flying Box with No Marker Lights +2013-11-10,36.1538889,-95.9925,Tulsa,OK,triangle,1200,Video of giant triangular craft and helicopters that come shortly after and hover beneath it. +2013-11-10,30.6236111,-84.4147222,Havana,FL,sphere,5,Orange ball of light. +2013-11-10,36.8527778,-75.9783333,Virginia Beach,VA,changing,10,Lights in triangle shape then a line. +2013-11-10,41.8238889,-71.4133333,Providence,RI,rectangle,60,Was coming home from a friends house and before my exit i saw an unidentified flying object. it started out right out front my windshie +2013-11-10,40.7536111,-86.0688889,Peru,IN,fireball,5,I WAS TRAVELING EAST ON HIGHWAY 24, COMING BACK FROM PERU INDIANA, WHEN I SAW A FIREBALL OVERHEAD TO THE EAST. IT LASTED ABOUT 10 SECO +2013-11-10,36.175,-115.1363889,Las Vegas,NV,oval,30,Two silent blue lights followed by a hellicopter. +1959-11-11,29.9438889,-82.11,Starke,FL,sphere,1800,UFO OVER JACKSONVILLE +1960-11-11,47.2033333,-122.2391667,Sumner (Lake Tapps Area),WA,sphere,30,Sphere with Spikes over Lake Tapps traveling West to East in 1960 +1961-11-11,35.3733333,-119.0177778,Bakersfield,CA,circle,600,Round red glowing object in the night sky...changed colors......and did not seem to be very high...... +1966-11-11,47.6063889,-122.3308333,Seattle,WA,disk,120,Driving around after swingshift to relax. Drove by familiar watertower; a red, flashing light caught my eye--to bright for the tower li +1966-11-11,40.7061111,-73.6191667,Hempstead,NY,unknown,60,Other, moving starlike cluster +1973-11-11,39.8494444,-75.3561111,West Chester,PA,disk,180,I lived near a general aviation airport so I thought that I was witnessing another aircraft. At dusk, it came towards me with a constan +1976-11-11,34.3738889,-80.0736111,Hartsville,SC,light,900,A bright light object appearing to be the size of a house moving across the sky, making an abrupt triangle shape in the sky and leaving +1977-11-11,32.2986111,-90.1847222,Jackson,MS,triangle,300,large black triangular craft with searchlight moving slowly +1978-11-11,30.1686111,-93.3758333,Carlyss,LA,light,300,okay, im am sending this regarding the sighting in Carlyss, La. appr. 1978. the report said they were 16 years old and scared and you w +1979-11-11,33.9686111,-112.7288889,Wickenburg (Near),AZ,light,3600,Orange ball bouncing up and down, side to side. Changed to green and a few other colors. +1984-11-11,41.3888889,-70.5138889,Edgartown,MA,triangle,600,My fiance and I, both artist, were getting married August 12, 1984 and spending our honeymoon on Martha's Vineyard. About 11:00 the ni +1993-11-11,35.0844444,-106.6505556,Albuquerque,NM,triangle,10,Triangle. +1994-11-11,41.3436111,-86.3097222,Plymouth,IN,triangle,300,1994 in Indiana- Black Triangle with white & red lights hovering then flying away quickly +1994-11-11,41.3436111,-86.3097222,Plymouth,IN,diamond,90,My friend and I were walking to my house when we stopped to look at the moon. We started looking at stars and we saw a little ship com +1995-11-11,47.3772222,-120.1427778,Rock Island,WA,light,20,Man on Hwy 28 sees extremely bright obj. "shoot across windshield," blow up into many fragments when it entered cloud of fog. +1997-11-11,38.8105556,-90.6997222,O'fallon,MO,triangle,120,ON THIS PARTICULAR NIGHT I HAD JUST GOTTING OFF WORK AND STOPPED AT A STORE FOR A SOFT DRINK AND SOMETHING TO MUN CH ON. WHEN I PULLED +1997-11-11,39.9611111,-82.9988889,Columbus,OH,cylinder,1200,huge cylindrical lights, thousands of feet long, blink off and then clusters of much smaller light blue and light orange-pink ship ligh +1998-11-11,41.0813889,-81.5191667,Akron,OH,fireball,90,Looking at sky before entering work building. Observed orange fireball. Object was observed while standing in parking lot. Clear sky, n +1998-11-11,36.9902778,-86.4436111,Bowling Green,KY,circle,15,I work for the airport here. A man (who sounded legit)called to report a u shape formation of 4 craft flying low & silently, tan in col +1998-11-11,34.3663889,-89.5191667,Oxford,MS,triangle,135,Slow fliying, triangular shaped object, that moved from the horizon, overhead, until it vanished from sighton the opposite horizon +1999-11-11,32.7919444,-115.5622222,El Centro (50 Miles West Of, On Hwy 8),CA,cigar,120,We saw a metallic silver cigar shaped object flying slowly from N to S, it turned away, turned transparent and then dissappeared. +1999-11-11,33.3763889,-117.2502778,Fallbrook,CA,sphere,600,I saw what I at first thought was a Vandenburg launch to the west. Instead a vapor trail, orange in color, rose in the sky and leveled +1999-11-11,30.4391667,-97.6197222,Pflugerville,TX,light,30,A white light, thought it was a satellite, passed overhead from west to east. When straight overhead, the single light turned into two +1999-11-11,40.1044444,-74.9516667,Bensalem,PA,light,4,At about 10:20 PM I saw a bright cluster of orange and red lights moving rapidly across the sky from north to south. +1999-11-11,43.0494444,-88.0075,Wauwatosa,WI,cigar,60,It was very either very large or extremely close to the ground. It was not moving. It appeared to have 3 flashing lights spaced equal +2000-11-11,41.3908333,-74.4769444,Slate Hill,NY,circle,120,Shaking light that flew into the sky from an empty field +2000-11-11,40.0213889,-122.0991667,Los Molinos,CA,oval,10,I observed a light gray oval object moving rapidly back and forth in Northern California 11/11/00. +2000-11-11,28.1458333,-82.7569444,Tarpon Springs,FL,cylinder,600,Stationary cylinder-shaped UFO seen in clear daylight. +2000-11-11,44.0583333,-121.3141667,Bend,OR,light,1500,Red pulsating orb over the center of Bend, Oregon. Multiple witness reports to 911. +2000-11-11,44.0583333,-121.3141667,Bend,OR,circle,180,Round silvery object above city, possibly car size mylar balloon,seen from a few miles away slowly ascended till out of sight. +2000-11-11,42.3811111,-71.6375,Berlin,MA,disk,300,It slowly hovered over 4 lanes of traffic about 30 feet from the ground and it didn't seem to care that it was daylight. +2000-11-11,38.7613889,-120.5855556,Pollock Pines,CA,light,15,I saw an orb of white light traveling extremely fast at treetop level that appeared to be the size of my fist if I were to raise it +2000-11-11,39.7683333,-86.1580556,Indianapolis,IN,other,120,Huge star like objects swooped toward earth at a fast pace. +2000-11-11,39.4961111,-88.1761111,Charleston,IL,light,45,pin point of light hovering, then speeding off and just disapearing. +2001-11-11,40.7141667,-74.0063889,New York City,NY,light,10,An erraticly moving dot in the sky +2001-11-11,40.4775,-104.9008333,Windsor,CO,other,6,It was boomerang shaped with no lights and it had an irredescent appearance to it. +2001-11-11,37.2386111,-76.51,Yorktown,VA,disk,900,AGAINST A CLEAR SKY A DISC CAN BE SEEN ---- I HAVE A PICTURE +2001-11-11,36.2730556,-76.0855556,Shiloh,NC,triangle,240,Large triangular shaped object with large blue lights suddenly makes quick u-turn and then hovers miles away. +2001-11-11,41.43,-73.6805556,Carmel,NY,triangle,120,2 Triangular shaped craft in Putnam County +2001-11-11,39.1652778,-86.5263889,Bloomington,IN,light,14400,White/red/blue light over Bloomington, IN between 11pm and 3am on November 11 and 13. +2001-11-11,41.1327778,-73.7930556,Pleasantville,NY,cigar,5,cigar shaped object, very large and traveling very fast +2002-11-11,35.0455556,-85.3097222,Chattanooga,TN,other,30,canard wing craft +2002-11-11,41.6777778,-79.88,Townville,PA,disk,30,Driving down the road I noticed a airplane in the sky to the right but to the left I noticed a stationary object. It was bright and no +2002-11-11,48.6108333,-118.0547222,Kettle Falls,WA,fireball,5,N.E. WA. 3 witnessed rocket shaped UFO emmitting orange sparks. +2002-11-11,37.3394444,-121.8938889,San Jose,CA,light,60,Orange star like object observed in nighttime San Jose sky +2002-11-11,42.8858333,-87.8630556,Oak Creek,WI,triangle,180,On two occasions I saw a craft that everyone tells me doesn't exist. +2003-11-11,42.4605556,-83.6516667,South Lyon,MI,light,180,3 bright lights flying in formation around each other. then, vanished into the sky +2003-11-11,34.1013889,-84.5194444,Woodstock,GA,teardrop,1800,Great design for travel and being seen clearly. +2003-11-11,37.3394444,-121.8938889,San Jose,CA,unknown,30,stationary Object apeared at first to be star than faded and became two or three objects then faded out ocmpletely. +2003-11-11,33.4511111,-86.9966667,Hueytown,AL,other,120,Y shaped +2003-11-11,27.9375,-82.2861111,Brandon,FL,disk,900,Glowing saucer-shaped light hovering, then lowering. +2003-11-11,42.3444444,-88.0416667,Grayslake,IL,diamond,60,Dimond shaped craft with pulsating multicolor lights -- very fast -- not a plane. +2003-11-11,40.2413889,-75.2841667,Lansdale,PA,triangle,30,Low, slow, nealy silent delta wing 'airliner.' +2003-11-11,30.1125,-85.2005556,Wewahitchka,FL,other,5,Green object falling but not as fast as a shooting star +2003-11-11,45.301944399999996,-83.8875,Hawks,MI,changing,180,One night my friends and I were coming home when we saw a very bright light that disappeared. +2003-11-11,42.5775,-88.105,Paddock Lake,WI,sphere,2,Silvery sphere, glowing white, headed southwest very quickly from Paddock Lake, Wisconsin +2003-11-11,41.760555600000004,-88.32,Aurora,IL,formation,7200,every ten minuts the 4 disk shaped formation flashed about half an hor later i past out +2004-11-11,43.55,-96.7,Sioux Falls (Near),SD,light,300,My husband and I were driving south on Interstate 29 going to Sioux Falls. When we were about 6-7 miles north, of the city, I was looki +2004-11-11,30.6277778,-96.3341667,College Station,TX,changing,300,I have made several reports recently and had the most disturbing sighting last night. I previously reported seeing objects that appeare +2004-11-11,35.1494444,-90.0488889,Memphis,TN,changing,60,Me and my sister were outside and saw what looked like an airplane hen it got closer and it was triangular +2004-11-11,38.7316667,-82.9977778,Portsmouth,OH,sphere,30,Bright white, round light swells in size and then dissapears completely. +2005-11-11,37.5483333,-121.9875,Fremont,CA,light,30,Two bright stars faded simultaneously in approx. 4 seconds. +2005-11-11,40.0719444,-83.5563889,Mechanicsburg,OH,light,120,Pulsating, hovering white light. +2005-11-11,37.5388889,-87.2583333,Calhoun,KY,egg,60,Chrome cigar shaped craft without wings emitting no sound or vapor trails +2005-11-11,34.4208333,-119.6972222,Santa Barbara,CA,light,300,Bright light that vanished +2005-11-11,27.2436111,-80.83,Okeechobee,FL,cylinder,180,Bright white, wingless object, traveling silently at a high altitude +2005-11-11,42.6011111,-76.1808333,Cortland,NY,light,900,Light faded away and reappered in different location several times. +2005-11-11,47.93,-97.0241667,East Grand Forks,MN,unknown,2700,two-yellowish lights in the southern sky followed by planes coming up to the vincinity +2005-11-11,30.2263889,-93.2172222,Lake Charles,LA,triangle,420,Triangular object moving over interstate +2005-11-11,40.7669444,-72.9966667,East Patchogue,NY,other,720,Starlike objects hourglass like shape moving sporadically +2005-11-11,30.3319444,-81.6558333,Jacksonville,FL,triangle,1.5,solid triangular formation of white lights, probably birds +2005-11-11,39.8677778,-75.1319444,Westville,NJ,disk,3,Eye-shaped white light above Westville/Deptford NJ area +2006-11-11,38.8822222,-77.1713889,Falls Church,VA,cigar,3,Very Bright Missle/Cigar shaped U.F.O. in the VA/D.C. area. +2006-11-11,32.1572222,-94.3372222,Carthage,TX,light,300,Chased by three lights in Carthage, TX. 500 Lights On Object0: Yes +2006-11-11,30.5041667,-90.4611111,Hammond,LA,triangle,10,black triangular object without lights moving very slowly above treeline along I-12 +2006-11-11,35.0455556,-85.3097222,Chattanooga,TN,circle,60,a or multiple flashing lights perfictally syncronized +2006-11-11,37.4852778,-122.2352778,Redwood City,CA,light,15,2 highly maneuverable, fast, satellite-resembling objects. +2006-11-11,33.6633333,-116.3091667,La Quinta,CA,circle,20,Two bright white lights moving incredibly fast across the sky +2006-11-11,33.6694444,-117.8222222,Irvine,CA,diamond,15,Diamond shaped lights rose rapidly up in the sky, then moved left to right in a fluid, fast movement +2006-11-11,40.7652778,-73.8177778,Flushing,NY,light,5,Round Green Light near La Guardia +2006-11-11,38.9694444,-77.3863889,Herndon,VA,light,90,four lights moving together +2006-11-11,42.2411111,-83.6130556,Ypsilanti,MI,triangle,300,Black triangle over Martz Rd. moving towards Ypsilanti. +2006-11-11,40.1794444,-74.8555556,Fairless Hills,PA,light,59,"Stars" Pulsating and moving erraticly. +2007-11-11,42.3583333,-71.0602778,Boston,MA,light,600,large lights flashing rapidly +2007-11-11,29.4238889,-98.4933333,San Antonio,TX,unknown,1800,((HOAX??)) abduction, but no success +2007-11-11,38.7891667,-77.1875,Springfield,VA,flash,5,Bright light in Cardinal Plaza. ((NUFORC Note: Student report. PD)) +2007-11-11,47.6733333,-117.2383333,Spokane Valley,WA,other,100,Bright flashing light seen from afar on a mountain side . +2007-11-11,26.7080556,-80.2308333,Royal Palm Beach,FL,light,10,fast blinking lights in a triangle formation +2007-11-11,37.7022222,-121.9347222,Dublin,CA,light,2,This is the second time I saw this light flash across the Eastern sky then disappear. I live in the West Dublin hills with a full view +2007-11-11,42.5630556,-114.46,Twin Falls,ID,unknown,30,v- shaped object,approx 5 lights on each side rectangle in shape, no noise at all, very fast. +2007-11-11,34.6391667,-120.4569444,Lompoc,CA,cylinder,300,I saw what I thought was another missile launch from VAFB but it turned out to be something strange. +2007-11-11,48.6330556,-112.3252778,Cut Bank,MT,sphere,15,Five round red lights perform high-speed maneuvering and 90 degree turns over Cut Bank, Montana +2007-11-11,34.0658333,-84.6769444,Acworth,GA,sphere,180,2 Objects with Extreme Flashing Lights Moving Diagonally Witnessed By Two +2008-11-11,32.7355556,-97.1077778,Arlington,TX,sphere,15,big point of light, first appeared to be a planet, but it was too much daylight for that. thought it was a weather baloon til it moved +2008-11-11,33.4222222,-111.8219444,Mesa,AZ,triangle,60,Ufo as big as a football field,boomerang shaped,with red non blinking lights! +2008-11-11,33.0144444,-97.0966667,Flower Mound,TX,light,120,circular formation of 20 red/orange lights which then broke apart and moved west +2008-11-11,37.3394444,-121.8938889,San Jose,CA,light,300,Diamonds are forever!! +2008-11-11,43.4625,-121.6944444,Crescent,OR,light,1800,Driving west on hwy 58 my mp3 player started making static noises. I looked up ahead just above the tree line there was strange lights +2009-11-11,38.6772222,-87.5286111,Vincennes,IN,triangle,10,3 Light Blue/Gray Orbs in triangle formation flying at low altitude over Vincennes, Indiana +2009-11-11,33.7947222,-83.7133333,Monroe,GA,circle,21600,flashing blue/green light over Monroe, GA. +2009-11-11,48.051944399999996,-122.1758333,Marysville,WA,light,35,Bright Light - High Flyer moving at very high speed making W shaped turns without slowing. +2009-11-11,42.5238889,-83.2233333,Beverly Hills,MI,light,120,Two stationary bright objects, there one minute, gone the next! +2009-11-11,40.5697222,-79.765,New Kensington,PA,sphere,5,Large object in the sky with jets shot up and disappeared. +2009-11-12,30.2669444,-97.7427778,Austin,TX,other,300,This thing went Galactic, out of the Universe! +2010-11-11,38.6780556,-121.175,Folsom,CA,disk,600,Bright lght with glowing red lights top and bottom changing speed and direction over Folsom +2010-11-11,36.1658333,-86.7844444,Nashville,TN,egg,5,a shiney sitting in the skys over nashville +2010-11-11,41.6055556,-74.1844444,Wallkill,NY,other,240,Low flying, standing still above tthe trees bowtie unidentified flying object seen driving home from work +2010-11-11,38.5816667,-121.4933333,Sacramento,CA,other,120,Blue spiral with white orb floating into it. +2010-11-11,41.4344444,-72.1102778,Uncasville,CT,light,45,V shaped light formation over Montville Ct. +2010-11-11,41.2938889,-82.2175,Oberlin,OH,light,1200,Second Sighting of Similar Event +2010-11-11,33.6125,-117.7119444,Laguna Hills,CA,other,420,Slow moving yellow-white lights over South Orange County. +2010-11-11,33.6888889,-78.8869444,Myrtle Beach,SC,light,5,5 lights seen over Myrtle Beach SC. ... Not a plane +2011-11-11,47.6063889,-122.3308333,Seattle,WA,light,900,5 red lights flying north +2011-11-11,39.1619444,-84.4569444,Cincinnati,OH,circle,4,I saw green circle thing in the sky than it dissapeared right after +2011-11-11,33.5091667,-111.8983333,Scottsdale,AZ,unknown,300,6 glowing objects in the sky that were moving in ways that we have never seen +2011-11-11,30.2669444,-97.7427778,Austin,TX,oval,20,Bright Silver Oval Object 20 seconds Clear Sky +2011-11-11,47.5708333,-122.2208333,Mercer Island,WA,unknown,120,I was standing on my balcony on Mercer Island, which overlooks Lake Washington and Bellevue. At the time, lighting was very golden beca +2011-11-11,36.0725,-79.7922222,Greensboro,NC,oval,300,15 reddish/orange orbs launching from the horizon line and traveling slowly before fading away. +2011-11-11,39.1580556,-75.5247222,Dover,DE,triangle,20,A triangular shaped hovering object with green and red lights +2011-11-11,64.8377778,-147.7163889,Fairbanks,AK,circle,300,Red lights moving slowly. +2011-11-11,33.79,-118.2969444,Harbor City,CA,triangle,1200,Elongated delta craft of immense size with linear canopy dome lights and ringed circular lights flying very low, silent and slow. +2011-11-11,39.6527778,-78.7627778,Cumberland,MD,other,21600,Yellowish with red lights +2011-11-11,46.7833333,-92.1063889,Duluth,MN,formation,20,5 lights one very close my have landed in lake superiorƻ in formation and 1red or orange light in background. +2011-11-11,41.7308333,-84.9327778,Fremont,IN,cylinder,300,Unbelivabe huge ufo seen above fremont,indiana +2011-11-11,41.595,-72.6458333,Cromwell,CT,light,240,Very large light in the distance, stationary- thought it was a star. It started moving very slow, then heard a strong engine. It was mo +2011-11-11,35.705,-89.9694444,Osceola,AR,disk,60,Multiple lights and saucer at Missouri and Arkansas border. +2011-11-11,42.6525,-73.7566667,Albany,NY,circle,900,11 bright orange objects that were all flying in the same line over Albany, NY +2012-11-11,39.9080556,-85.9227778,Mccordsville,IN,sphere,60,There were lights on it and it was wierd! Read the description +2012-11-11,29.7027778,-98.1241667,New Braunfels,TX,other,4,Me and a couple of buddies were out on the Guadalupe river last night when the area we were in lit up. +2012-11-11,40.0394444,-84.2033333,Troy,OH,sphere,4,Large brite orb moving at high speed buzz's house in Troy, Ohio. +2012-11-11,47.5675,-122.6313889,Bremerton,WA,unknown,20,Heard a very loud craft noise hovering outside my bedroom window in the backyard that took off seconds later. +2012-11-11,33.9908333,-118.4591667,Venice,CA,triangle,3,I got up early in the morning headed for Motorcycle Swap Meet in Long Beach,Ca I look up I'll BE DAM&quot; It's the same small Tr +2012-11-11,34.1169444,-83.5725,Jefferson,GA,fireball,60,Fireball that vaporized? +2012-11-11,41.2586111,-95.9375,Omaha,NE,disk,30,Disappearing object. +2012-11-11,39.1155556,-77.5638889,Leesburg,VA,cylinder,30,Large, unknown silver object near Dulles; stationary. +2012-11-11,38.5816667,-121.4933333,Sacramento,CA,fireball,180,Orange ball of flame crosses North Sacramento - no news reports. +2012-11-11,36.9741667,-122.0297222,Santa Cruz,CA,formation,120,Formation of 10 to 15 bright red-orange lights appeared over Monterey Bay in California. +2012-11-11,39.0638889,-108.55,Grand Junction,CO,triangle,120,Night time. Large triangle w/3 lights sighted hovering 75 ft over ground. Banked and flew fast over city, lost altitude then vanished +2012-11-11,48.1958333,-114.3119444,Kalispell,MT,unknown,900,FIVE CRAFT WERE SEEN IN THE SKY FLYING IN FORMATION. +2012-11-11,48.1958333,-114.3119444,Kalispell,MT,diamond,30,While we were on our way home from the movies, a large lighted object flew over us, stopped and changed direction without a sound. +2012-11-11,39.0416667,-94.72,Shawnee,KS,formation,1800,Lights in the sky in Shawnee, KS +2012-11-11,38.3030556,-77.4608333,Fredericksburg,VA,triangle,30,Orange/red blurred lights in the shape of a triangle moving across the sky then disappeared. +2012-11-11,38.1905556,-116.3691667,Warm Springs,NV,unknown,3600,Pulsating orange lights by area 51 +2012-11-11,40.7719444,-80.7683333,Lisbon,OH,circle,120,I saw it out my window +2012-11-11,28.0219444,-81.7330556,Winter Haven,FL,unknown,20,Orange orb traveling over house low and caused my whole house to shake +2012-11-11,33.7591667,-118.0058333,Westminster,CA,chevron,20,2 grey with black chevron shaped crafts racing over Westminster, ca +2012-11-11,39.0169444,-94.2813889,Blue Springs,MO,cigar,20,Black, floating, silent obj. floating lower than 300 feet not terribly high above the trees, 11:30 pm, could see the outline, but no l +2012-11-11,35.2619444,-81.1875,Gastonia,NC,sphere,120,2 orange orbs traveling east to west under low cloud cover. app. dime size at arm length. no sound. +2013-11-11,39.9416667,-94.83,Savannah,MO,triangle,4,Triangle over heartland. +2013-11-11,48.1172222,-122.7591667,Port Townsend,WA,oval,900,Two aircraft were sighted over a portion of the Puget Sound, flying south-southwest at a low altitude. One looked to be a military airc +2013-11-11,36.5963889,-82.1886111,Bristol,VA,light,300,Hovering then moving very bright light with very bright light on top. +2013-11-11,47.6777778,-116.7794444,Coeur D'alene,ID,fireball,900,Out for a hike in Coeur D'Alene, Idaho. See a glowing golden orange light in the sky. +2013-11-11,39.7683333,-86.1580556,Indianapolis,IN,disk,960,Me and my daughter seen the most beautiful shiney spaceship. Not a UFO it was real and was watching us all watch them! +2013-11-11,33.4222222,-111.8219444,Mesa,AZ,light,120,Reddish-orange object with beams of light emanating from body of object. +2013-11-11,26.4611111,-80.0730556,Delray Beach,FL,light,3600,Bright light in sky that did not move. ((NUFORC Note: Possible sighting of Venus, we suspect. PD)) +2013-11-11,33.5805556,-112.2366667,Peoria,AZ,sphere,900,8 orange balls move across the sky. +2013-11-11,26.6155556,-80.0572222,Lake Worth,FL,light,180,All we could see was 3 lights in the sky that were defnetly moving around silently. Very strange… +2013-11-11,28.2438889,-82.7194444,New Port Richey,FL,light,240,Two bright orange lights hovering low in the sky. +2013-11-11,42.7852778,-88.405,East Troy,WI,triangle,7200,Multiple objects in the sky, moving, flashing, and disappearing +2013-11-11,43.0055556,-88.8072222,Jefferson,WI,light,60,Glowing Object Streaking Across the Sky +1954-11-01,39.7391667,-104.9841667,Denver,CO,fireball,10,I was approximately 12 years old when I saw this UFO. I haven't told a lot of people about it. I thought because I was so young at th +1962-11-01,30.5083333,-86.5027778,Valparaiso,FL,cigar,300,orange, glowing cigar over bayou +1965-11-01,42.5583333,-71.2694444,Billerica,MA,cigar,1200,Cigar shaped craft shines spotlight for me to walk towards it +1968-11-01,36.3955556,-97.8780556,Enid,OK,flash,15,Encountered a bright light between the ground and the aircraft possibly traveling perpendicular to our flight path. +1969-11-01,33.5016667,-117.6616667,San Juan Capistrano,CA,unknown,10,My brother saw a little man. +1969-11-01,64.8377778,-147.7163889,Fairbanks,AK,formation,240,Sighting of 5 objects in a PENTAGON formation near Fairbanks, Alaska around 1969 +1972-11-01,41.0594444,-124.1419444,Trinidad,CA,light,600,Satelite sighting, changing directions to quick for normal. +1972-11-01,34.9491667,-83.7575,Hiawassee,GA,circle,120,Red glowing circular disk over the North Georgia Mountains. +1974-11-01,36.1658333,-86.7844444,Nashville,TN,light,300,While fishing at Old Hickory lake,I observed one small light moving slowly up the lake. At first, I thought it was a large object that +1974-11-01,30.3583333,-103.6605556,Alpine,TX,light,2700,Mysterious lights in the sky around Alpine, Texas +1974-11-01,41.5236111,-90.5775,Davenport,IA,light,600,On this particular clear sky evening in rural Iowa. I was leaving our farm and goin on a date in town. I was 17 at the time and was goi +1974-11-01,41.4338889,-79.7066667,Oil City,PA,unknown,7200,Bright lights in the sky seperated by several miles moving in odd geometric directions--changing course instantly +1975-11-01,31.5602778,-91.4030556,Natchez,MS,oval,20,LARGE GLOWING OVAL SHAPED CRAFT NO IDENTIFING MARKINGS.WENT FROM HOVERING OVER TREES TO THE HORIZON MILES AND MILES AWAY IN ABOUT 2 SEC +1975-11-01,34.3983333,-82.2469444,Ware Shoals,SC,circle,600,Large UFO flies within 50 feet of surprised bystander. +1976-11-01,39.7458333,-75.5469444,Wilmington,DE,disk,120,Silent hovercraft 35-50 feet above ground with searchlights beaming down on houses makes a 90 degree turn and vanishes. +1977-11-01,37.3058333,-89.9702778,Marble Hill,MO,unknown,180,High orbit, 2 objects. Third object from outer space rendezvoused. +1978-11-01,38.42,-82.0555556,Culloden,WV,unknown,300,We had been to a bonfire on a friends farm. As we were returning home, we were passing through this small town when I looked at the dr +1978-11-01,39.6127778,-86.3741667,Mooresville,IN,other,900,a bright object follows 2 women home and gives a show +1978-11-01,37.7797222,-119.0744444,June Lake,CA,disk,900,MIGHT HAVE BEEN POWER BY ANT GRAVITY DEVICE +1978-11-01,31.4636111,-100.4366667,San Angelo,TX,chevron,120,Wildlife photos developed with only a ufo in pic +1978-11-01,42.7283333,-73.6922222,Troy,NY,light,10,Purple lights on a low- and slow-flying, hissing object. +1979-11-01,41.5380556,-72.8075,Meriden,CT,light,120,I was 14 years old and lived at Sidehill Rd.I had just finished supper and decided to go up the street to my friends house at the top o +1979-11-01,32.7994444,-97.2688889,Haltom City,TX,triangle,60,Triangle craft flying over Haltom City, Tx. 11/01/1979 +1980-11-01,41.0647222,-86.2158333,Rochester,IN,oval,7200,Two objects seen one at close range in November of 1980 +1980-01-11,37.6922222,-97.3372222,Wichita,KS,cigar,360,Cigar-shaped, city-block long, silent, super-slow forward moving and descending, three red lights, blotted out the stars w/black. +1981-11-01,40.8,-96.6666667,Lincoln,NE,sphere,300,Large Object hovering at low altitude in sky in Lincoln Nebraska +1982-11-01,43.9186111,-69.8016667,Woolwich,ME,changing,300,Lifelong UFO's +1982-11-01,34.1975,-119.1761111,Oxnard (Between Port Hueneme And Point Mugu),CA,sphere,7,Phosphorescent green sphere, with no other surface characteristics. +1983-11-01,38.7072222,-121.28,Citrus Heights,CA,disk,60,bright orange saucer went from stationary, dropped and then shot back up in a v motion then disappeared. +1983-11-01,36.1055556,-79.5425,Gibsonville,NC,light,600,Light observed in night sky followed by what appeared as military aircraft. +1983-11-01,41.926944399999996,-73.9977778,Kingston,NY,triangle,900,1983 Hudson Valley UFO sighting +1984-11-01,33.5833333,-95.9097222,Honey Grove,TX,disk,300,UFO in weat feild - Honey Grove - Texas +1986-11-01,39.4561111,-77.9641667,Martinsburg,WV,oval,900,bottom of a huge aircraft hovering directly over the yard. +1987-11-01,35.3163889,-81.1763889,Dallas,NC,light,600,Bright light in window +1987-11-01,29.2105556,-81.0230556,Daytona Beach,FL,cylinder,60,This cigarette shaped object spun without an axis of rotation! +1987-11-01,40.2247222,-105.2708333,Lyons,CO,oval,10,Large oval object with white glowing lights moves slowly above the car. +1988-11-01,45.4077778,-122.5691667,Clackamas,OR,cylinder,45,I know "ancient history" is frowned upon,but here goes.I've been around aircraft(experimental or otherwise) all my life,and nothing com +1990-01-11,40.5258333,-86.7580556,Americus,IN,oval,600,There was an absence of light, like a blackhole. +1990-11-01,44.7630556,-85.6205556,Traverse City,MI,light,180,Three eye-witnesses to a bluish light that moved so fast it was unreal above the tree tops. +1990-11-01,42.6333333,-71.3166667,Lowell,MA,light,20,A huge, round, red orb hovering in the sky +1991-11-01,41.8297222,-86.2541667,Niles,MI,triangle,7200,Triangle zigzagged. Another shined light on us. Others jetted to horizon. +1991-11-01,41.9866667,-83.8311111,Britton,MI,triangle,300,A large, low-hovering (not moving) craft with colored strobing lights around the bottom and it made no noise. +1991-11-01,33.7211111,-85.1455556,Bremen,GA,disk,180,My TV went off and I felt that something or someone was "fooling" with me and watching me +1993-11-01,38.5816667,-121.4933333,Sacramento,CA,triangle,1200,Spectacular triangle's seem in the sky +1993-11-01,33.4858333,-79.7177778,Trio,SC,circle,120,Huge bright object with no noise rose up out of woods behind my house!! +1993-11-01,35.0844444,-106.6505556,Albuquerque,NM,cigar,600,A colorful object was hovering over the Petroglyphs, which backed up to my back yard, and it had no sound. +1994-11-01,36.0113889,-88.6227778,Trezevant,TN,triangle,600,Triangle UFO changes three lives. 500 Lights On Object0: Yes +1994-11-01,42.2411111,-83.6130556,Ypsilanti (Pittsfield Township),MI,unknown,180,AT NIGHT ,WIND 20-25 FROM WEST MED TO HIGH CLOUDS SCATTERED OBERSEVED FUZZY LITE OBJECT MOVING TO S/W 5-10 MPH NO SHAPE WAS NOTED CLOU +1994-11-01,38.9105556,-122.6091667,Lower Lake (Near),CA,disk,600,"The Dunn sightings" Two hunters parked at the end of a fire trail near the highest point in the area observed a bright white light in +1995-11-01,39.0430556,-122.9147222,Lakeport (Near),CA,light,18000,Two brothers hunting 6 miles from the main road. Parked on a pullout near the top of the ridgetop. Saw red-green halo light moving acro +1995-11-01,42.1625,-71.0416667,Randolph,MA,circle,30,while working the late shift at agas station on rte 28 in Randolph I saw alarge white light in the sky to the east. It started up high +1995-11-01,42.1625,-71.0416667,Randolph,MA,light,120,Bright light appears over power lines +1995-11-01,33.8302778,-116.5444444,Palm Springs,CA,triangle,1800,Black triangle-shaped craft hovered at low altitude next to freeway for at least 30 minutes on Halloween night 1995. +1995-11-01,33.6469444,-117.6883333,Lake Forest,CA,unknown,60,Two bright headlights hovered noiselessly. Eyes adjusted and saw a Stealth shape head on. Finally able to see orange whisp of light whe +1995-11-01,40.9866667,-75.195,Stroudsburg,PA,sphere,120,On November 21st of the year 1995 around 8:00 oclock at night strange spherical violet bluish balls of light where landing over a mount +1995-11-01,34.0922222,-117.4341667,Fontana,CA,other,900,Saw a U.F.O. dropping some glowing stuff +1995-11-01,30.6033333,-87.9036111,Daphne,AL,triangle,30,Triangular shaped object with 3 lights, passes over house at low altitude and made no sound. +1995-11-01,33.0197222,-96.6986111,Plano,TX,sphere,2,Blue Sphere of Light - Turns into Upside Down Pyramid of Light +1996-11-01,35.0838889,-92.2077778,Vilonia,AR,cylinder,300,Cylinder-shaped object decended and began circling a nearby cell-phone tower. It shortly vanished. +1996-11-01,42.8305556,-71.0027778,Merrimac,MA,triangle,40,Massachsuetts - 1996 - Very Clear, Unmistakable, Evening Sighting +1996-11-01,39.3330556,-82.9825,Chillicothe,OH,other,20,round white lights in a slanted row. +1996-11-01,47.3225,-122.3113889,Federal Way,WA,circle,2,Saw an extremely fast white dot (similar to a slow moving satalite but very fast) Zoom across the Puget Sound sky.North to South +1997-11-01,42.7852778,-88.405,East Troy,WI,unknown,1800,My daughter was 3 and 1/2 years old at the time this occurred. It was approximately November. I arrived home from work at approx 02:30. +1997-11-01,41.9902778,-70.9755556,Bridgewater,MA,triangle,600,OBSERVED ONE VERY LARGE TRIANGLE WITH 5 LIGHTS TRAVELING TO THE NORTH EAST, POSSIBLY IN EARTH ORBIT. +1997-01-11,45.5608333,-94.1622222,St. Cloud,MN,pyramid,120,Right when me and my friend left the my housewe saw a bright green glowing object thatlooked like a 4 sided pyrimid then after about2 m +1997-11-01,31.3127778,-84.3358333,Newton,GA,light,60,About 0600 am going to work i saw this most unusual light from something overhead. +1997-11-01,36.6208333,-90.8233333,Doniphan,MO,fireball,120,2 fireballs fall from sky and light up surroundings +1997-11-01,33.8313889,-118.2811111,Carson,CA,formation,30,7 white lights in the form of an "L" traveled NW to SE seen from my backyard. Lights perfectly spaced apart, never changed formation. +1997-01-11,32.9536111,-96.89,Carrollton,TX,circle,2700,Very distinct object (circular in shape) passed over three major suburb cities of Dallas, Tx. +1997-11-01,34.0522222,-118.2427778,Los Angeles (Just Outside),CA,light,5,It was a green light that hovered over the horizon being very still. After a few seconds of looking at it, it dropped straight below t +1997-11-01,40.7141667,-74.0063889,New York City (Bronx),NY,light,300,OBSERVED THREE VERY BRITE LITES FLYING ACCROSS THE NIGHT SKY. +1998-11-01,42.2916667,-85.5872222,Kalamazoo,MI,fireball,60,A Bright Blue Fireball moving at High Rate of speed, similar to a firework display. +1998-01-11,38.8338889,-104.8208333,Colorado Springs (North Of, On I-25),CO,fireball,15,A friend and I witnessed a pulsating, intensely bright, fireball near I-25 between Colorado Springs and Castle Rock. The fireball broke +1998-11-01,43.698055600000004,-85.4836111,Big Rapids,MI,fireball,60,A green fireball appeared suddenly and lit the ground all around the neighborhood, scaring my son and our dogs, then disappeared. +1998-11-01,36.3130556,-86.8652778,Joelton (Near; I-24),TN,other,240,One Object, sighted in the southern sky, launched an object with running lights like a plane, turned 180 degrees, and morphed. +1998-01-11,38.935,-74.9063889,Cape May,NJ,light,180,What initially appeared to be an aircraft, accelerated away from me at a rate of speed too great to be an aircraft. At a few miles dis +1998-11-01,40.1052778,-85.6802778,Anderson,IN,cylinder,5,Three grayish-brown cylinder shaped objects with no sound or lights. +1998-11-01,33.4483333,-112.0733333,Phoenix,AZ,cross,5,very high in sky, cross shaped object with white light on corners. there and then gone. +1998-11-01,39.62,-78.2927778,Great Cacapon,WV,triangle,300,Me and my ex-fiance were fooling around in the woods, it was deer season so i had my rifle equiped with a high power tasco scope, we we +1998-01-11,37.6447222,-115.7427778,Rachel,NV,disk,480,At approximately 8:10 PM MST, my girlfriend and I were driving north towards Rachel on Highway 375 in Nevada. As we descended from Han +1998-11-01,36.6116667,-77.5469444,Skippers,VA,triangle,1200,Fleet of triangular shaped craft with amber lights at each point travelling south along I-95 in Virginia. +1998-11-01,39.4055556,-105.4727778,Bailey,CO,fireball,2,Streak of bright blue/white light flashed vertically downward from @40deg to horizon. Seen @20degs. SSW in clear moonlit sky. +1999-11-01,45.3002778,-122.9719444,Newberg,OR,other,180,four falling starst one time two hitting ground on either side of hwy 99w near newberg.. +1999-01-11,47.4888889,-92.4647222,Gilbert,MN,circle,120,this is the forth or fifth time i have seen the green balls in sky at number of locations in northern mn green circle glowing brightly +1999-11-01,45.7544444,-122.8763889,Scappoose,OR,oval,7200,Bright oval light floating aboe house, shooting off red laser like beams +1999-11-01,36.175,-115.1363889,Las Vegas,NV,oval,10,Gold oval flying north to south over the Las Vegas Strip. +1999-01-11,37.78,-121.9769444,San Ramon,CA,fireball,3,It looked like a shooting star except it was bigger but it did move like a shooting star. +1999-11-01,41.6833333,-86.25,South Bend,IN,triangle,4,Triange, green, no lights, all edges very sharp and clear. Flightpath from NE to SW, I would estimate the distance at 5 miles and altit +1999-01-11,44.5366667,-122.9058333,Lebanon,OR,cylinder,120,Saw a hovering silvery cylinder object sticking out from behind group of trees. +1999-11-01,40.7141667,-74.0063889,New York City (Staten Island),NY,cigar,7,Yellow line near Staten Island Mall! +1999-01-11,37.8216667,-121.9988889,Danville,CA,fireball,5,Blue-green fireball with a tail to the NW headed down and to the west; appeared to be 13-17 miles away towards San Francisco Bay +1999-11-01,32.7152778,-117.1563889,San Diego,CA,egg,600,Noticed illuminated egg-shaped object with strobe lights travel from N to S/SW. No engine noise and travelled slowly. Object emitted pa +1999-01-11,38.3397222,-122.7,Rohnert Park,CA,sphere,5,While driving, I noticed a round torquoise colored sphere falling from the sky to the North East of Rohnert Park. The object dissapear +1999-11-01,31.9172222,-102.7552778,Notrees (Close To Odessa Tx),TX,light,3600,Several people reported seeing bright lights outside Notrees TX. Reports from KCHX, KMRK radio and KOSA TV CBS. +1999-11-01,33.0780556,-96.495,Clear Lake,TX,changing,10,AN OBJECT SEEN THAT SEEMED TO CHANGE SHAPE IN FIGHT, THERE WAS NO SOUND AND IT WAS TRAVELING AT A HIGH RATE OF SPEED. IT WAS ONLY VISIB +1999-11-01,33.8358333,-118.3397222,Torrance,CA,triangle,17,Black Triangle/w chase, no noise and gave out a wavy distortion,,alt approx fl130 +1999-01-11,38.5580556,-91.0119444,Washington County,MO,egg,180,My 6 year old brother dustin pointed it out to myself, my mom, and her boy friend. +1999-11-01,42.6072222,-83.9294444,Howell,MI,disk,1200,SAUCER SHAPED OBJECT WITH HUMAN LIKE FIGURE INSIDE HOVERS OVER PROPERTY +1999-11-02,29.9544444,-90.075,New Orleans,LA,cylinder,600,Black cylinders over French Quarter +2000-11-01,30.2669444,-97.7427778,Austin,TX,disk,30,The craft shot a ray of solid light up into the sky and connected to what appeared to be a star. +2000-01-11,41.8505556,-87.8819444,Westchester,IL,triangle,600,I observed a very bright white light in the sky, approx. 3-4 miles away. It didn't appear to be moving. As I drove towards it, the li +2000-11-01,40.8427778,-73.2933333,Commack,NY,egg,180,Egg Shaped Ufo Over Long Island NY +2000-11-01,38.68,-93.0927778,Smithton,MO,other,30,grey and white hovering Y shape +2000-11-01,33.6411111,-117.9177778,Costa Mesa,CA,triangle,5,Small Translucent Triangle in Orange County, CA +2000-11-01,40.6975,-74.2636111,Union,NJ,light,360,U.F.O or a wandering star? +2000-11-01,43.7094444,-98.0294444,Mitchell,SD,other,60,It looked like a flying canoe. +2000-01-11,39.7391667,-104.9841667,Denver,CO,fireball,4,Bright aqua green flashing roundish ball with orange sparkles coming out the back in a triangular shape, may have had a red dot near th +2000-01-11,32.7152778,-117.1563889,San Diego,CA,oval,120,Already left message on answering machine. My son was out jogging about a block and a half from our home,and stopped in his tracks whe +2000-11-01,33.6102778,-114.5955556,Blythe,CA,diamond,3600,Dimond with lights around the middle. +2001-01-11,44.3125,-89.9041667,Nekoosa,WI,circle,1200,We were watching tv,I notice a light I tought it was a reflection from a light in the kitchen we dont have drapes on the side that face +2001-11-01,43.2805556,-71.8172222,Warner,NH,sphere,10,The first experience was in the mid 1970s. It was late at night while we were on our way > to a gig, driving along the New York State +2001-11-01,28.1758333,-80.5902778,Satellite Beach,FL,other,10,Rocket Shaped Craft with 2 USAF jets in pursuit at 4:30 am coming from the over the ocean +2001-11-01,33.425,-94.0475,Texarkana,TX,oval,900,The object very bright, shimering, as bright as the setting sun about 25 degrees to the south!! Oval or disc shaped standing upright, h +2001-11-01,40.7141667,-74.0063889,New York City,NY,light,2400,fast moving lights jumping all over Manhattan sky +2001-01-11,38.2544444,-104.6086111,Pueblo,CO,fireball,30,Blue fireball lights up the skies of colorado and nebraska. The fireball was spotted my many people +2001-01-11,39.3722222,-104.8555556,Castle Rock,CO,fireball,4,We saw a very bright white light, looked like the moon setting very quickly. +2001-01-11,42.2711111,-89.0938889,Rockford,IL,other,3,Computer shuts off during light sighting in Rockford +2001-11-01,39.1433333,-77.2016667,Gaithersburg,MD,cigar,180,Blue Light/Cigar shaped craft/Euphoria? +2001-11-01,38.4191667,-82.4452778,Huntington,WV,unknown,60,A distortion in the sky that moved and stopped, then moved again. +2001-11-01,38.4191667,-82.4452778,Huntington,WV,unknown,60,A distortion +2001-11-01,42.2702778,-74.3033333,Jewett,NY,triangle,15,Low-flying triangular craft during snow storm +2001-01-11,42.32,-89.0580556,Loves Park,IL,light,900,possible explaination of mass sightings in rockford illinois on january 11th 2001 +2001-01-11,42.2711111,-89.0938889,Rockford,IL,circle,2100,9 round objects moving independently. Orange/Yellow in color +2001-01-11,42.2711111,-89.0938889,Rockford,IL,formation,20,Formation of 10 yellowish glowing targets (night sighting) drifted SW to NE at 5-10 MPH, 1500' AGL then extinguished one at at time. +2001-01-11,42.2711111,-89.0938889,Rockford,IL,light,2100,First thought to be an airplane, but its color, shapes, and hovering motion was unexplainable. +2001-01-11,42.2711111,-89.0938889,Rockford,IL,light,2100,Confirming: 8 years later I saw Them lights Two {on 1-11-01} +2001-01-11,42.2711111,-89.0938889,Rockford,IL,sphere,1200,24 total golden colored, orbed lights in configurations similar to the big dipper moving slowly from NW to East +2001-01-11,42.2711111,-89.0938889,Rockford,IL,light,1500,Red balls of light that change to green before they disappeared +2001-01-11,42.2711111,-89.0938889,Rockford,IL,light,600,13 orange lights moved steadily and at times flew closely and eventually faded away. +2001-01-11,42.2711111,-89.0938889,Rockford,IL,circle,1200,A number of orange/yellow lights appeared and began moving erratically in two groups. +2001-01-11,42.2711111,-89.0938889,Rockford,IL,circle,1305,Looked up to the Northen sky and saw a set of 9 orange pulsating Balls, as soon as those 9 disappeared a second group of 9 appeared. +2001-01-11,42.2711111,-89.0938889,Rockford,IL,circle,1800,Looking up I observed a formation of 5objects that appeared to be circular & were orange in color moving in a northeasternly direction. +2001-01-11,42.2711111,-89.0938889,Rockford,IL,light,1200,Several orange lights moving about each other across the sky, but as a pack and then disappeared. +2001-01-11,42.2711111,-89.0938889,Rockford,IL,light,900,Bright lights floating East over the city of Rockford, IL. +2001-01-11,40.015,-105.27,Boulder,CO,fireball,5,01/11/01 fireball over western skies was different color and headed in a different direction. +2001-01-11,42.2711111,-89.0938889,Rockford,IL,fireball,600,My Wife and I noticed 9 Redish Orange Lights floating west to east +2001-01-11,42.2711111,-89.0938889,Rockford,IL,light,1200,Ten orange lights in a circular formation non blinking non moving in the east direction. There was a blink then they were gone. When +2001-01-11,42.2711111,-89.0938889,Rockford,IL,light,900,same as above +2001-01-11,40.3977778,-105.0744444,Loveland,CO,circle,60,A large bright blue/green light with a long white tail was traveling south at a fairly fast speed. It was above the horizon, but not a +2001-01-11,40.2588889,-103.6233333,Brush,CO,disk,2,A bright shooting light. +2001-01-11,43.5336111,-109.6297222,Dubois,WY,fireball,1.5,Bright , fast falling light +2001-01-11,35.5938889,-105.2233333,Las Vegas,NM,fireball,4,Green Fireball, falling from 15 to 20 degrees above the horizon in a straight line to the horizon from my view, leaving a trail. +2001-01-11,38.2544444,-104.6086111,Pueblo,CO,fireball,5,The picture window in my living room faces almost due north. With the curtains drawn and the room lighted, I saw the outline of a fire +2001-01-11,45.5566667,-108.8408333,Silesia,MT,fireball,2,I saw on the west horizon what looked like a huge falling star travelling from the north to the south and disappearing behind the west +2001-01-11,39.8680556,-104.9713889,Thornton,CO,fireball,5,Blue fireball, close to anf falling from sky +2001-11-01,38.9822222,-94.6705556,Overland Park,KS,sphere,4,Six sphres in offset triangular formation traveling northeast in Kansas on Nov. 1st 2001 +2001-01-11,39.4561111,-98.1058333,Beloit,KS,fireball,2,Fireball Over North Central Kansas +2001-01-11,39.9613889,-105.5102778,Nederland,CO,cylinder,4,Great, colorful UFO viewing in Boulder County,on Nov. 11.001 at 11:53 PM. +2001-11-01,38.2494444,-122.0388889,Fairfield,CA,circle,180,Big, round, and glowing white, flipped from one side to the other seeing the black center, and watching it drop gold particules. +2001-01-11,42.2711111,-89.0938889,Rockford,IL,light,600,Lights seen in Rockford, Il when coming home at night. Color sort of off pink like street lights. +2001-01-11,40.5852778,-105.0838889,Fort Collins,CO,light,2,Bright greenish/blue ball flying diagonally across sky +2001-01-11,42.2711111,-89.0938889,Rockford,IL,other,120,14 all together, then they separated and the one I remember most followed East State Street in an easterly direction, approx. 2000 ft +2001-11-01,30.4380556,-84.2808333,Tallahassee,FL,triangle,300,Im not sure of the exact month but it was either Sept October or Nov. I want to say October but after reading some of the reports on th +2001-01-11,39.9613889,-105.5102778,Nederland,CO,cylinder,4,Great, colorful UFO viewing in Boulder County,on Nov. 11.001 at 11:53 PM. +2002-11-01,30.2669444,-97.7427778,Austin,TX,other,15,Black square object seen over Austin Tx, Fall of 2002. +2002-11-01,33.4483333,-112.0733333,Phoenix,AZ,triangle,300,November 1, 2002 I seen a Triangle shaped craft. +2002-11-01,40.3355556,-75.9272222,Reading,PA,diamond,120,Single pink light deep in space darting around sky and hovering +2002-11-01,44.7630556,-85.6205556,Traverse City,MI,other,300,Very large, dark object flying very low over water, moving too smoothly and silently for airplane of any kind +2002-01-11,41.3116667,-75.8377778,Wyoming,PA,unknown,1500,Large Bright Slowly Moving light. +2002-11-01,38.7544444,-90.3311111,Berkeley,MO,other,10,there +2002-11-01,36.9741667,-122.0297222,Santa Cruz,CA,circle,900,Small, high-altitude reflective object moving steadily to the south over Santa Cruz, CA. +2002-01-11,35.4675,-97.5161111,Oklahoma City,OK,oval,5,The object was oval in appearence, I would gestimate altitude of approx. 40 to 50 thousand feet possibly even higher, it was gray or si +2002-11-01,41.6763889,-91.5802778,Coralville (East Of),IA,light,900,5 lights seen from I-80 near Coralville, Iowa +2002-11-01,41.6763889,-91.5802778,Coralville,IA,light,600,5 lights form triangle near Coralville, Iowa +2002-11-01,36.2083333,-115.9830556,Pahrump,NV,disk,600,The craft slowly rose over the mountain with a light sweeping slowly side to side. +2002-01-11,29.2105556,-81.0230556,Daytona Beach,FL,light,3600,Bright lights seen over ocean in Daytona Beach area on January 11, 2002 +2002-11-01,34.2255556,-77.945,Wilmington,NC,chevron,10,On November 1 2002 I observed four, chevron shaped flying objects in the sky that had an orange glow and were about the size of stars. +2002-11-01,42.8805556,-71.3277778,Derry,NH,sphere,5,We had been sitting in our hot tub outside on our deck ,myself for 25 minutes, when We sighted a blueish white sphere in the, clear of +2002-11-01,38.5922222,-89.9111111,O'fallon,IL,triangle,300,Late in 2002, while in my wife’s car driving towards O’Fallon, Illinois, I saw what appeared to be a triangle. It was moving in an even +2002-01-11,34.4208333,-119.6972222,Santa Barbara,CA,diamond,1200,Bright diamond objects with pulsating blue lights. +2002-11-01,47.5405556,-122.635,Port Orchard,WA,circle,1200,Glowing white lights that move in different patterns. +2002-11-01,33.5091667,-111.8983333,Scottsdale,AZ,fireball,15,Two Orbs Seen Over Scottsdale +2002-11-01,39.2402778,-76.8397222,Columbia,MD,triangle,60,Triangle shaped structure with lining the perimeter. +2002-11-01,36.175,-115.1363889,Las Vegas,NV,changing,180,V shaped Morphed gliding object over the Bellagio Hotel in Vegas +2002-01-11,29.4238889,-98.4933333,San Antonio,TX,rectangle,36,Large rectangular object with muticolored lights like needled in a pin cushion +2002-11-01,32.2216667,-110.9258333,Tucson,AZ,formation,1,5 Crafts in unity for about .5 seconds move incredibly fast and disappeared immediately. +2002-11-01,37.2705556,-76.7077778,Williamsburg,VA,chevron,10,Silent V-shaped aircraft slowly glided over Williamsburg, VA, then disappeared instantly. +2002-11-01,17.9677778,-66.0616667,Arroyo (Puerto Rico),PR,triangle,30,we saw what it looked to be a triangle shap object across the sky going in to the moutains it was very good experiance for me because t +2002-11-01,42.4791667,-71.1527778,Woburn,MA,diamond,3300,My wife and I saw a strange object that looked like a diamond in the sky. +2003-11-01,41.14,-104.8197222,Cheyenne,WY,fireball,5,A huge fireball east of Cheyenne Wyoming +2003-01-11,35.2225,-97.4391667,Norman,OK,flash,60,Huge, orange ball with black streaks of various shapes and sizes on surface. +2003-11-01,36.3008333,-119.7819444,Lemoore,CA,circle,300,Last night my husband and his friend were out fishing. They saw a small ball of light rise from the ground to the sky. The color of the +2003-11-01,42.9633333,-85.6680556,Grand Rapids,MI,oval,15,grey oval in the sky in the daytime in Michigan +2003-11-01,29.5847222,-81.2080556,Palm Coast,FL,cylinder,30,Metallic cylinder object +2003-01-11,28.6986111,-81.3083333,Winter Springs,FL,other,300,Domed craft, lime green colored, daylight sighting. +2003-11-01,45.5236111,-122.675,Portland,OR,sphere,60,Pink-Orange sphere photographed near downtown Portland, OR +2003-11-01,41.9994444,-88.145,Hanover Park,IL,sphere,300,THREE GLOWING SPHERES IN SHAPE OF TRIANGLE IN SKY SEEMED TO MOVE AWAY FROM ME AS I MOVED TOWARD IT .THEN LEFT +2003-11-01,21.3155556,-158.0072222,Ewa Beach,HI,sphere,15,I was looking up at the sky slightly northward hoping for a glimpse of the aurora due to recent high solar flare activity when I notice +2003-11-01,37.6688889,-122.0797222,Hayward,CA,light,30,object appeared dropped 'pod'and disappeared +2003-11-01,25.7738889,-80.1938889,Miami,FL,formation,60,Four starlike objects, arranged in a quadrilateral formation seen over Miami +2003-11-01,39.9522222,-75.1641667,Philadelphia,PA,circle,600,Kings Dominion Circle, seen at night five years ago +2003-11-01,37.775,-122.4183333,San Francisco,CA,oval,3600,large hovering object UFO I thought was plane isn't moving and isn't a star -- I've done astronomy +2003-11-01,38.2494444,-122.0388889,Fairfield,CA,diamond,40,Double-diamond shaped object sighted in Fairfield CA. Silhouetted by half-moon. No speed estimate. +2004-11-01,44.5236111,-89.5744444,Stevens Point,WI,cigar,300,Cigar Siting above house +2004-11-01,38.9975,-84.4963889,Taylor Mill,KY,disk,180,On my left hand side, out of my driver window there was an extemly large circular shaped object sitting around 100 feet up in the sky. +2004-01-11,35.7883333,-83.5544444,Pigeon Forge,TN,light,30,bright light +2004-11-01,33.9533333,-117.3952778,Riverside,CA,cylinder,30,White object seen flying north to south, reflecting sunlight. +2004-01-11,47.6063889,-122.3308333,Seattle,WA,oval,20,Oval craft seen flying over Lake Washington on 01/11/04 at 4:00 pm. +2004-11-01,32.7152778,-117.1563889,San Diego,CA,sphere,40,White or silver sphere moving fast and erratically across horizon and against the wind +2004-01-11,34.3697222,-83.2352778,Carnesville,GA,unknown,20,Very fast half-moon object over Georgia +2004-11-01,36.7097222,-81.9775,Abingdon,VA,unknown,420,Bright light object spotted near exit 7 off Highway 81 in Bristol, VA. Next day, I have a slight sunburn and my eyes are really red. +2004-11-01,34.1363889,-118.7736111,Agoura Hills,CA,light,60,Two brilliant white lights hovered in the Southeast near Malibu Canyon and slowly faded at the same time +2004-11-01,34.005,-118.8091667,Malibu,CA,other,60,TWO BRIGHT DOTS THAT LOOKED LIKE STARS,THAT SLOWLY DISAPPEARED. +2004-11-01,39.6294444,-79.9561111,Morgantown,WV,unknown,5,beam enters my room +2004-01-11,48.9391667,-119.4344444,Oroville,WA,triangle,600,Bright Triangle Accompanied by 3 jets. +2004-01-11,41.2294444,-73.9875,Stony Point,NY,light,300,A blinding Light filled up my car, and all the lights on the dashboard of the car went nuts! +2005-11-01,62.1091667,-145.5463889,Glennallen,AK,unknown,12600,((HOAX??)) Aliens and UFOs on Halloween night near HAARP!!! +2005-11-01,28.5380556,-81.3794444,Orlando,FL,circle,4,An object in the north sky moved downward and eastward emitting a red and blue trail at high speeds lasting four seconds. +2005-01-11,31.7586111,-106.4863889,El Paso,TX,disk,120,ufo's flew about 200 ft from my car. on I-10 on my way back from albuquerque +2005-01-11,42.9058333,-88.1388889,Muskego,WI,flash,360,Light Flashes and Beams +2005-11-01,45.69,-87.5258333,Powers,MI,fireball,10,Beautiful light streaming across the sky. +2005-11-01,41.8025,-71.8863889,Danielson,CT,oval,3,My wife and i were driving to meet up with some friend and it was a clear night as we pulled onto the highway i we saw a blue glowing o +2005-01-11,39.5358333,-76.3486111,Bel Air,MD,other,120,Roundish, dark gray thing moving in a steady, sraight line just above the trees and not moving very fast. +2005-11-01,32.2216667,-110.9258333,Tucson,AZ,light,60,Two red objects near a jet plane in Tucson, Arizona +2005-11-01,39.3641667,-74.4233333,Atlantic City,NJ,triangle,6,Fall 2005. My husband and I were driving on White Horse Pike in AC, when looking up, I thought I saw a flock of black birds, but as I w +2005-11-01,34.2783333,-119.2922222,Ventura,CA,fireball,30,Red/Orange glowing object hovered over the Channel Islands then glided away silently. +2005-11-01,42.9786111,-71.0733333,Brentwood,NH,other,15,a giant triangular rectangle thing with blue red and green lights that hovered above our house and then went down into the woods +2005-11-01,33.6694444,-117.8222222,Irvine,CA,light,5,Fast light in sky moving horizontal, and too fast for normal military of commercial traffic +2005-11-01,40.7391667,-89.0163889,El Paso (Rural),IL,light,30,Single Low Flying Star Like Object in Central Illinois. ((NUFORC Note: Sighting of International Space Station. PD)) +2005-01-11,44.9583333,-124.0166667,Lincoln City,OR,light,10,Similar to previous night sighting, same time of day, same area of the sky. Bright light over ocean. +2005-11-01,38.7838889,-90.4811111,St. Charles,MO,fireball,15,Large meteor traveling east to west +2005-11-01,38.9516667,-92.3338889,Columbia,MO,unknown,4,Blue and Green lights in Night Sky +2005-11-01,41.4886111,-75.7088889,Clarks Summit,PA,other,20,white streaks following one another +2005-01-11,37.6391667,-120.9958333,Modesto,CA,chevron,30,Boomerang shaped object in central California +2005-11-01,41.4969444,-71.3677778,Jamestown,RI,light,180,Lights in the november sky +2005-11-01,41.5733333,-87.7844444,Tinley Park,IL,triangle,3600,I saw one red light the size of a star move quickly then stop. Another red light met w/it and they moved on together. +2006-11-01,33.3266667,-83.3886111,Eatonton,GA,oval,10,Strange blue light going across my yard,from right to left. +2006-11-01,27.3361111,-82.5308333,Sarasota,FL,disk,2,Disk over Bee Ridge +2006-11-01,47.6063889,-122.3308333,Seattle,WA,other,600,Fighter type UFO over Seattle details on its shape clearly visible with ordinary binoculars +2006-11-01,40.8666667,-124.0816667,Arcata,CA,light,600,1 large orange light, round in shape moving SW slowly & inconsistantly. +2006-11-01,47.4830556,-122.2158333,Renton,WA,triangle,60,I saw a triangle clearly in Renton that rose up to a tiny dot in 1-3 seconds. +2006-11-01,34.2255556,-77.945,Wilmington,NC,unknown,15,We saw flashes of bright light in distance from our porch. Shortly after 5 very bright round yellow lights came on in a straight row fr +2006-11-01,41.8975,-84.0372222,Adrian,MI,triangle,180,The strangest thing that grabbed my attention, was that as it flew overhead, I could see up into it. Like it had a glass bottom and I +2006-11-01,29.3011111,-94.7975,Galveston,TX,cigar,2,Very fast white cigar shape with halo, low altitude, seen 2 times, with second observer. +2006-11-01,30.5588889,-91.5558333,Livonia,LA,circle,60,something weird flying in the sky +2006-11-01,38.4344444,-82.1325,Milton,WV,light,60,Bright light (no meteor) crossed the sky from horizon to horizon in less than one minute. +2006-11-01,33.9136111,-98.4930556,Wichita Falls,TX,rectangle,120,small red rectangle in texas +2006-01-11,38.2208333,-82.2038889,Branchland,WV,triangle,300,A brightly lighted, fast moving, triangular object. +2007-11-01,41.9583333,-70.6677778,Plymouth,MA,light,1800,11/1/07, 2:45am , Glowing orb out over water near nuclear power plant , Plymouth, MA. ((NUFORC Note: Celestial body? Venus? PD)) +2007-11-01,39.2997222,-75.605,Smyrna,DE,light,5,Unexplainable acceleration and deceleration in proportion to emitted light intensity. +2007-01-11,42.2711111,-89.0938889,Rockford,IL,triangle,10,Triangular shaped several white lights within +2007-01-11,40.0063889,-75.7036111,Downingtown,PA,cigar,120,I thought it was a plane but it had no wings and did not move. +2007-11-01,39.0169444,-94.2813889,Blue Springs,MO,disk,5,MISSOURI INVESTIGATORS GROUP Report: FOLLOW UP - Looking at a distance past the upcoming stoplight, I saw a round object in the sky. +2007-11-01,39.0169444,-94.2813889,Blue Springs,MO,disk,5,MISSOURI INVESTIGATORS GROUP Report: Looking at a distance past the upcoming stoplight, I saw a round object in the sky. +2007-11-01,30.2238889,-92.0197222,Lafayette,LA,rectangle,300,I saw a rectangular shoe-box shape stationary object the exact color of the blue sky. +2007-11-01,42.6375,-70.95,Topsfield,MA,disk,180,4 round flasing white lights in the night sky +2007-01-11,37.7138889,-97.1361111,Andover,KS,oval,4,hovering light came down slightly out of a small cloud increased in intensity and then went back up and disappeared +2007-11-01,38.7611111,-102.7888889,Kit Carson,CO,other,4,3 yellow haze colored lights almost you could touch them...... +2007-11-01,36.19,-76.4663889,Hertford,NC,light,8,bright star flashed then receded. ((NUFORC Note: Possibly the flare from an Iridium satellite. PD)) +2007-01-11,45.2102778,-123.1975,Mcminnville,OR,sphere,3600,Spherical object scene, hovering moving back and forth and up and down fairly rapidly, Clear skys no clouds in the southwestern sky, up +2007-11-01,37.9736111,-122.53,San Rafael,CA,changing,480,Strange blinking, saucer-like object spotted in SanRafael,CA; apprx. 7:30 PM Standard time +2007-11-01,30.3319444,-81.6558333,Jacksonville,FL,light,10,NAS plane with bright red and blue lights around it followed by a bright white ball of light. +2007-11-01,37.6625,-121.8736111,Pleasanton,CA,disk,180,One slow moving Illuminated Saucer Shaped craft seen about 50 ft. above the tree-line moving in a southeast direction. +2007-01-11,37.7975,-121.215,Manteca,CA,disk,600,I saw it until I went inside at home.It a disc shape. +2007-11-01,37.6625,-121.8736111,Pleasanton,CA,disk,180,Large saucer shaped object, with many windows, which was flying slow and low to the ground was seen tonight. +2007-11-01,33.6188889,-117.9280556,Newport Beach,CA,circle,60,Two shiny circles was dancing in the sky in Newport Beach,Ca Fashion Island. +2007-11-01,37.2494444,-83.1933333,Hazard,KY,triangle,600,two triangle shapes with white lights and one red flashing light. they flew at low speeds and altitudes with almost no noise +2007-11-01,36.7794444,-85.4519444,Leslie County,KY,triangle,600,two triangular aircraft with almost no sound and lights on the bottom +2007-11-01,32.3122222,-106.7777778,Las Cruces,NM,oval,300,Approx. 2200. 11/01/07 large defined bright oval traveled across Las Cruces from East (White Sands) to West before Aggie game ended. +2007-11-01,38.6272222,-90.1977778,St. Louis,MO,flash,21600,very bright,stationary white light rapidly flashing on and off. It stayed in the same spot for at least 6 hours. +2007-01-11,38.8002778,-90.6263889,St. Peters,MO,unknown,60,Two identical objects moving in unison. +2007-11-01,41.9352778,-87.8655556,Franklin Park,IL,changing,5,dark,shadowy ,oval/rectangular object , with no lights,traveling at "approaching/landing" height level from the soutwest to norteast. +2007-11-01,35.8263889,-82.5494444,Mars Hill,NC,circle,2,extremely bright green ball of light +2008-11-01,42.6288889,-85.0241667,Vermontville,MI,light,30,blue light lights up the sky +2008-11-01,38.8402778,-97.6111111,Salina,KS,egg,10,Fast, Silent, Low Flying, traveling over the center of town!! +2008-11-01,35.1594444,-84.8766667,Cleveland,TN,oval,12,Red oval object appeared in the sky on 3 occasions for about five seconds apiece, disappearing each time. +2008-01-11,47.3294444,-122.5788889,Gig Harbor,WA,light,2700,Husband &I saw lights 45 mins, outside heard unearthly noise bounce around property. 3 year old says it's "Yellow Man". 4 more events +2008-11-01,42.2505556,-83.1786111,Lincoln Park,MI,unknown,2100,Heard what sounded like several large jets flying by. +2008-11-01,33.08,-83.2322222,Milledgeville,GA,oval,3600,2 bright objects that changed colors and moved side to side and up and down. Also would get close at times +2008-11-01,39.1855556,-78.1636111,Winchester,VA,oval,180,white oval with fuzzy edges hovering then disappeared +2008-11-01,31.9380556,-81.3036111,Richmond Hill,GA,light,180,To the West of I-95. At first I thought the moving non-blinking "star" was a satellite. The "star" then started to fly to the left and +2008-01-11,43.0852778,-77.9425,Bergen,NY,formation,60,lights streak across the sky +2008-01-11,33.4483333,-112.0733333,Phoenix,AZ,oval,3600,A blinking red, green, and blue oval shone a light on the earth and circled the moon!!! +2008-11-01,41.1797222,-97.5472222,Osceola,NE,cigar,30,me and my brother were driveing down a gravel road when we seen this object, and aour car turned off, i have seen several other ocasion +2008-11-01,30.2238889,-92.0197222,Lafayette,LA,unknown,2,Translucent orb and high speed objects captured on video during air show +2008-11-01,35.925,-86.8688889,Franklin,TN,light,300,Two unidentifiable red lights seen flying above Franklin, TN. +2008-11-01,40.7141667,-74.0063889,New York City (Staten Island),NY,sphere,5,last Saturday night, around 7pm or just after, i saw a fiery orange ball, call it a sphere, call it what you will, basically idling in +2008-11-01,35.6008333,-82.5541667,Asheville,NC,flash,2,bright, wide disintegrating light, low in sky, moving horizontally +2008-01-11,29.7630556,-95.3630556,Houston,TX,triangle,5,Three triangular forms move quickly and in sync before disappearing, planes seemingly chasing it! +2008-11-01,38.2541667,-85.7594444,Louisville,KY,light,7200,Star like object appeared to move in circular paths +2008-11-01,36.2491667,-88.1530556,Springville,TN,formation,1800,Three red, blue, green flashing lights in triangular shape and one off to the side of it +2008-11-01,37.1041667,-113.5833333,Saint George,UT,triangle,1920,Triangle-shape with orange lights with small one leaving large one. +2008-11-01,32.7947222,-116.9616667,El Cajon,CA,oval,1200,TWO LARGE WHITE CIRCULAR LIGHTS DANCED OVER EL CAJON CA. +2008-11-01,35.0455556,-85.3097222,Chattanooga,TN,light,60,Directly overhead we saw 4 different objects appearing to be faint stars moving in different directions. ?UFOS? +2008-11-01,34.0522222,-118.2427778,Los Angeles,CA,disk,120,Very clear ufo sighting, small craft. Los Angeles. +2008-11-01,36.0152778,-83.415,Dandridge,TN,rectangle,140,Freind and I saw a huge craft which looked as if impossible for it to fly. +2008-11-01,29.5847222,-81.2080556,Palm Coast,FL,triangle,420,Slow traveling Triangle +2008-01-11,26.1416667,-81.795,Naples,FL,triangle,8,Triangular object rapidly crossing the sky with sideward movements. +2008-11-01,40.5866667,-122.3905556,Redding,CA,sphere,120,Redding, CA Unidentified Flying Object in bright orange light seen with brother and two other friends on November 2008. +2009-01-11,33.7455556,-117.8669444,Santa Ana,CA,oval,3600,UFO Santa Ana ,CA 01/11/09 +2009-01-11,37.775,-122.4183333,San Francisco,CA,fireball,120,Two bright orange objects hovering,pulsing lights, akward movements +2009-11-01,40.5866667,-122.3905556,Redding,CA,changing,2700,Changed shapes with bright multi-colored lights all over/around it. +2009-01-11,39.1580556,-75.5247222,Dover,DE,circle,2700,NOISELESS HOVERING THEN FLYING CIRCLE OF WHITE LIGHTS +2009-11-01,41.0041667,-92.3736111,Ottumwa,IA,sphere,1800,round reflective object +2009-11-01,32.8544444,-79.975,North Charleston,SC,rectangle,900,Mysterious black rectangular object in the North Charleston sky. +2009-11-01,38.2855556,-85.8241667,New Albany,IN,oval,120,Large disc appearing and disappearing while hovering with no change in direction. +2009-11-01,33.8491667,-118.3875,Redondo Beach,CA,triangle,3,Two craft spotted for three seconds, one primary (triangular) and one smaller (round) +2009-11-01,37.5536111,-77.4605556,Richmond,VA,triangle,90,Possible triangle craft spotted in Richmond VA +2009-01-11,26.1416667,-81.795,Naples,FL,other,120,Two pulsing red/white orbs in the full moon night sky around 7:30 Sunday evening, Jan 11, 2009. +2009-11-01,27.8002778,-97.3961111,Corpus Christi,TX,unknown,30,What looked like a star moved to the right very slowly and then got dimmer and slowy vanished. +2009-01-11,43.2363889,-120.6358333,Christmas Valley,OR,light,900,Objects lighting up, burning out, and leaving tracers in Christmas Valley, OR +2009-11-01,33.1908333,-101.3777778,Post,TX,light,3,single green orb-like light zipped forwards and disappeared +2009-01-11,20.9175,-156.3258333,Haiku,HI,light,900,Bright Light, moving left to right, and then right to left, and then dimming, disappearing, and then reappearing +2009-11-01,41.4827778,-87.3327778,Merrillville,IN,disk,600,Five fireball objects which were being escorted by military helicopters. The picture I took showed five disc shaped objects +2009-11-01,27.9472222,-82.4586111,Tampa,FL,triangle,300,Blue glowing object in tampa +2009-11-01,38.6858333,-121.0811111,El Dorado Hills (Suburb Of Sacramento),CA,light,30,At 9:25pm on 11/01/2009 a bright light hovered over a mountain range due west of eldorado hills, ca and it abruptly disappeared. +2009-11-01,40.9166667,-74.1722222,Paterson,NJ,triangle,10,Triangle wing span illuminated floating in sky +2010-01-11,28.0391667,-81.95,Lakeland,FL,other,60,Neon blue light in the sky disappears and then phone call is interrupted by unknown sound . +2010-01-11,26.6402778,-81.8725,Fort Myers,FL,fireball,15,Bright fireball seen over Naples area of SW Florida. +2010-11-01,32.7252778,-114.6236111,Yuma,AZ,diamond,300,Diamond shaped object, with lights on all 4 points,in the middle was a rim shaped object that resembled a tire hub cap with lights +2010-11-01,39.8072222,-82.0713889,Roseville,OH,circle,60,I saw a VERY bright, very slow moving object that I cannot explain that had almost radiating rings of light when I zoomed with my camer +2010-11-01,29.7630556,-95.3630556,Houston,TX,other,300,11/1/10 11:00am. Houston,Texas Duration: 5-minutes 6-silver metallic -balloons +2010-11-01,34.0522222,-118.2427778,Los Angeles,CA,sphere,300,Multiple flying objects seen in daylight, hovering over Los Angeles +2010-11-01,33.4147222,-111.9086111,Tempe,AZ,other,20,Bright siver inverted pie-shaped craft flying above Tempe, AZ vanishes completely on bright sunny day. +2010-11-01,40.7161111,-73.8505556,Forest Hills,NY,cylinder,60,Cylindrical air craft firing red lights. +2010-11-01,34.0522222,-118.2427778,Los Angeles,CA,formation,180,A flock of hunreds of unrecognizable objects in the Los Angeles night sky. +2010-11-01,32.8794444,-111.7566667,Casa Grande,AZ,circle,60,Large, silver, circular craft with square lights all the way around, hovering and spinning near Casa Grande Mountain. +2010-11-01,37.7397222,-121.4241667,Tracy,CA,light,600,blue and green ufos seen +2010-01-11,37.0841667,-94.5130556,Joplin,MO,triangle,10,V shaped, extreamly fast, silent and the color was orange. +2010-11-01,39.2088889,-76.0669444,Chestertown,MD,light,5,Light makes two 90 degree turns at high rate of speed. +2010-11-01,33.9525,-84.55,Marietta,GA,chevron,30,Large black silent v-shape with red light one one side and blue light on other +2010-01-11,37.0327778,-83.1725,Leatherwood,KY,other,300,3 SQUARE-SHAPED OBJECTS WITH RED LIGHTS IN A TRIANGULAR FORM - KENTUCKY +2011-11-01,42.2769444,-72.4013889,Belchertown,MA,other,180,Unexplained lights in the woods by Quabbin Reservoir +2011-01-11,33.7738889,-117.9405556,Garden Grove,CA,unknown,30,Looked like a star/satellite following a polar orbit, then changing directions. +2011-11-01,37.775,-122.4183333,San Francisco,CA,light,120,Super bright dark blue light in S.F. eastern sky at 1:15ish on Nov 1񫺛 Seen by three from Ocean beach +2011-11-01,41.5569444,-83.6272222,Perrysburg,OH,other,180,Chinese Lantern Shaped Glowing Orange Ball +2011-11-01,41.0813889,-81.5191667,Akron,OH,light,1800,Strange Lights Seen in Ohio Hang Above for Two Nights. ((NUFORC Note: Possible sighting of stars, we suspect?? PD)) +2011-11-01,39.7391667,-104.9841667,Denver,CO,diamond,1800,These objects, which looked liked stars, stood stationary, yet moved. They moved quite slowly. But there were two. Near DIA. +2011-11-01,42.4286111,-87.9238889,Wadsworth,IL,disk,3600,Flying saucer in the night sky moving around in the area. +2011-01-11,40.0063889,-75.7036111,Downingtown,PA,fireball,10,Sparking Fireball spotted rising in the early morning PA sky! +2011-01-11,26.4611111,-80.0730556,Delray Beach,FL,triangle,3600,bright, orange triangle in the sky +2011-11-01,29.6908333,-95.2088889,Pasadena,TX,disk,60,Disc/dome shape object shifted quickly side to side then disappeared. +2011-11-01,29.8680556,-94.8325,Old River-Winfree,TX,sphere,60,Bright metal sphere hovers then disappears near Old River-Winfree, Texas. +2011-11-01,33.6888889,-78.8869444,Myrtle Beach,SC,light,120,Two orange lights were spotted near the heart of Myrtle Beach, SC. +2011-11-01,39.0305556,-82.8244444,Beaver,OH,light,15,Very bright neon orange red elongated light moving through the sky heading south in the evening. +2011-11-01,44.2563889,-70.2566667,Turner,ME,fireball,180,Orange "ball" slowly comes over driveway +2011-11-01,38.5922222,-89.9111111,O'fallon,IL,light,25,A star looking light which suddenly moved and disappeared into the dark black skies near the crecent moon. +2011-01-11,43.2983333,-72.4827778,Springfield,VT,triangle,300,Two unidentified crafts following each other slowly. +2011-11-01,40.9311111,-73.8991667,Yonkers,NY,diamond,600,This wasn't anything I have ever seened before. +2011-11-01,40.6319444,-73.7130556,Woodmere,NY,sphere,480,video taken- flickering red orange spheres +2011-01-11,32.2730556,-89.9858333,Brandon,MS,flash,1,Quick Burst of Blue/Green light witnessed by at least 30 people. +2011-11-01,30.4866667,-90.9561111,Denham Springs,LA,circle,36000,perfectly round orange craft hovering a few moved quickly across the sky no sound traveled passed other craft closer than cars on the r +2011-11-01,35.3847222,-77.9930556,Goldsboro,NC,fireball,30,I saw 4 balls of fire floating through the night sky +2011-01-11,32.2744444,-90.1319444,Pearl,MS,light,600,bright unexplainable light +2011-11-01,44.8755556,-91.9191667,Menomonie,WI,light,300,November 1, 2011 approximately 9:05 P.M. Menomonie Wi. My husband stepped outside and called me to come and see what he was looking +2011-01-11,32.3525,-90.8777778,Vicksburg,MS,fireball,4,Fireball in the sky over Mississippi +2011-11-01,42.0372222,-88.2811111,Elgin,IL,light,30,bright white ball of light moving fast and smooth and silent +2011-11-01,41.4277778,-74.1663889,Washingtonville,NY,triangle,300,((HOAX)) 100 yard long giant black silent triangle 150FT hovering above me and friend silent. +2011-11-01,42.5802778,-83.0302778,Sterling Heights,MI,light,2,a bright light decending straight down +2011-11-01,30.4313889,-98.3444444,Round Mountain,TX,light,15,Very large, bright white light, not moving, vanished when I looked away. +2011-01-11,40.8475,-77.6863889,Centre Hall,PA,changing,1200,A mutating fiery flying mass descendes behind mountains +2012-11-01,37.3022222,-120.4819444,Merced,CA,light,60,Two bright unidentified flying objects appear in Northern night sky, Southeast bound in Merced, Ca. +2012-01-11,41.2427778,-73.2011111,Trumbull,CT,rectangle,60,A rectangular object flying lower than plane height with one bright light. +2012-11-01,38.7744444,-75.1397222,Lewes,DE,triangle,4,Dim horizontal lights in isosceles triangle shape flying East to West over Lewes, DE +2012-11-01,41.7647222,-98.0802778,Loretto,NE,disk,8,UFO Flat shaped disk or saucer with orange light seen by Loretto, Nebraska. +2012-01-11,29.4238889,-98.4933333,San Antonio,TX,disk,480,Disk shaped object broad daylight pursued by jet +2012-11-01,39.5347222,-107.7825,Rifle,CO,cone,7200,UFOS filmed going in and out of tube in clouds +2012-11-01,35.1822222,-83.3816667,Franklin,NC,unknown,1800,Disk shaped cloud, strange looking cloud moved quickly across town +2012-01-11,38.6702778,-89.9844444,Collinsville,IL,unknown,180,Object in the sky not moving, changing light colors from red, blue and pink. Numerous sides. +2012-01-11,48.051944399999996,-122.1758333,Marysville,WA,unknown,600,Four bright orange lights/ fireball spheres moving very slow vertically with no sound and no distinct shape +2012-01-11,41.4569444,-72.8236111,Wallingford,CT,light,1800,Teal ball of light hovers for nearly 30 mins then lowers below tree line in Yalesville, CT +2012-01-11,40.2858333,-76.6505556,Hershey,PA,oval,1800,Oval object travelling North West in sky with flashing lights. +2012-01-11,44.4294444,-75.1502778,Russell,NY,formation,10,Six Orange-Yellow Orbs in Horizontal Formation +2012-01-11,44.3294444,-74.1316667,Saranac Lake,NY,formation,10,Was driving, saw 7-10 very bright lights in a curved row, all evenly spaced, then half of the lights disappeared one by one, reappeared +2012-01-11,36.0652778,-119.0158333,Porterville,CA,unknown,300,Bright orange light in the sky and before disappearing it appeared to drop 2 bright lights or fire balls. +2012-11-01,41.7,-71.6833333,Coventry,RI,light,900,Hope they land. +2012-01-11,38.5816667,-121.4933333,Sacramento,CA,disk,300,Sacramento ufo arden mall sighting 01/11/12 +2012-11-01,37.3402778,-95.2608333,Parsons,KS,light,70,Small ball of white light moving incredibly fast to the South East of Parsons, KS. +2012-11-01,35.4675,-97.5161111,Oklahoma City,OK,circle,25,Ball of lights +2012-11-01,44.551944399999996,-69.6322222,Waterville,ME,light,600,Father and daughter witness and estimated 20 orange objects in the night sky. +2012-11-01,44.551944399999996,-69.6322222,Waterville,ME,light,600,8 parallel orange glowing lights in Waterville night sky 11-1-12 +2012-01-11,38.7838889,-90.4811111,St. Charles,MO,fireball,240,8 - 10 fireball spheres moving very slow horizontally with no sound and no distinct shape +2012-01-11,33.9611111,-116.5008333,Desert Hot Springs,CA,triangle,120,Large, triangular shaped object with bright lights and no sound being chased by helicopters in Desert Hot Springs +2012-11-01,41.525,-88.0816667,Joliet,IL,formation,300,7 Orange-Red lights hovering over Joliet, IL +2012-11-01,44.551944399999996,-69.6322222,Waterville,ME,circle,420,15 Orange Orbs in Small Groups with Engine Noise +2012-01-11,38.005,-121.8047222,Antioch,CA,circle,300,Glowing Orange orb with small red orbs or embers falling out of it +2012-11-01,41.2586111,-95.9375,Omaha,NE,rectangle,300,Large rectangle 168th blondo Omaha ne +2012-11-01,44.7319444,-93.2175,Apple Valley,MN,circle,1500,Large halo in the SW sky that was atleast 1/2 mile long and few thousand feet off the ground. No other light was near it and then it ju +2012-11-01,47.6063889,-122.3308333,Seattle,WA,light,120,Lights heading for a collision in the sky over Seattle +2012-11-01,47.2530556,-122.4430556,Tacoma,WA,triangle,900,3 orange lights in triangle formation w/a red light in the center of the triangle +2012-11-01,33.948055600000004,-86.4727778,Oneonta,AL,triangle,120,Immediate u- turn. no noise. +2012-01-11,32.7833333,-96.8,Dallas,TX,oval,1800,Ball of light seen above full moon while moon was blacked out and then appeared again. +2012-01-11,40.2502778,-103.7994444,Fort Morgan,CO,light,3,Rounded ball of light seen S/SE in the early night sky, solid white, bluish edge with briefly visible reddish tail, falling downward. +2012-01-11,44.9738889,-74.6636111,Hogansburg,NY,fireball,300,2 to 3 Orange fireballs randomly swerving in northeast, southern sky +2012-01-11,44.6902778,-74.7036111,Hopkinton,NY,fireball,120,Orange-red lights above tree tops +2012-01-11,44.8122222,-74.3977778,West Bangor,NY,unknown,240,Three orange spheres located in upstate N.Y. +2012-01-11,46.0647222,-118.3419444,Walla Walla,WA,formation,120,THERE WERE 6 LIGHTS ALTOGETHER.. 2 SETS OF 3 LIGHTS AND EACH SET FORMED A PERFECT TRIANGLE.. I CAME INSIDE TO GET FRIEND AND THEY WERE +2012-01-11,31.7058333,-83.6533333,Ashburn,GA,diamond,600,Low lights seen in sky in rural south georgia +2012-11-01,31.1502778,-81.3697222,St. Simons Island,GA,fireball,60,Two people witness 5+ dull orange spheres. +2013-11-01,28.1611111,-81.6019444,Davenport,FL,fireball,600,Several orange fireballs over Davenport, Florida. +2013-11-01,35.6233333,-95.9602778,Okmulgee,OK,formation,5,3 lights in formation flying south. +2013-11-01,39.3291667,-82.1013889,Athens,OH,flash,90,Flashes of blue-white light toward the north in Athens, Ohio. +2013-11-01,40.2141667,-77.0088889,Mechanicsburg,PA,light,180,Blue, Pink and Violet Lights. +2013-11-01,42.2708333,-83.7263889,Ann Arbor,MI,light,10,Extremely bright light, not moving. Situated just at the cloud cover line in the eastern sky. Darted up through the clouds. +2013-01-11,34.8847222,-79.6944444,Hamlet,NC,sphere,120,A slow moving white and pale orange pulsating spherical object flying over Hamlet, NC. +2013-11-01,38.7522222,-121.2869444,Roseville,CA,other,9000,Two very slow moving "stars" seen well past sunrise. +2013-11-01,47.6483333,-117.0913889,Liberty Lake,WA,circle,3600,Bright light. ((NUFORC Note: Sighting of Venus, we suspect. PD)) +2013-11-01,32.4616667,-90.1152778,Madison,MS,light,3600,Star like obj. in mid air shining bright then dim then very bright for ~1 hour then just disappeared! ((NUFORC Note: Venus? PD)) +2013-11-01,48.7052778,-114.8683333,Trego (Near),MT,fireball,5,Giant orange fireball shooting across sky. +2013-11-01,39.1619444,-84.4569444,Cincinnati,OH,fireball,180,Probably not a UFO. ((NUFORC Note: Reported to be a team of 3 sky divers. PD)) +2013-11-01,38.9463889,-78.4394444,Toms Brook,VA,sphere,2580,Erratic moving, flashing sphere of multicolored lights lingered over the WV border. +2013-11-01,39.1619444,-84.4569444,Cincinnati,OH,fireball,900,Driving down Bridgetown Rd. I spotted something strange. Three lights in a triangular formation. Lights slowly spread apart and moved o +2013-11-01,40.2452778,-75.65,Pottstown,PA,formation,120,Multiple unknown orange lights flying silently at night, followed by aircraft. +2013-11-01,39.1619444,-84.4569444,Cincinnati,OH,circle,120,3 large orange fiery balls,comet like tails,flying under the cloud coverage in a smooth methodical manner, disappeared, and reappeared +2013-11-01,39.1908333,-84.3636111,Madeira,OH,formation,20,3 yellowish and orange colored lights in many different formations. +2013-11-01,39.1619444,-84.4569444,Cincinnati,OH,fireball,600,3 fireballs in sky. +2013-11-01,33.6680556,-117.3263889,Lake Elsinore,CA,sphere,600,Hundreds of lights over Lake Elsinore 11/01/2013 7-7:30 pm. +2013-11-01,33.6680556,-117.3263889,Lake Elsinore,CA,other,360,Hundreds of mini stars flying low above the ground. +2013-11-01,41.3305556,-72.9722222,Westville,CT,formation,7,5-7 blueish white lights flying in a V formation very fast then breaking away from each other and fading out. +2013-11-01,27.6383333,-80.3975,Vero Beach,FL,fireball,300,Two very bright orange lights hovering and then flying over Florida coast. +2013-11-01,46.0038889,-112.5338889,Butte,MT,formation,30,Red formation above Butte, Montana. +2013-11-01,35.5280556,-108.7419444,Gallup,NM,light,3600,Bright light about the size of 20 stars seen west of Gallup, NM. ((NUFORC Note: Possible sighting of Venus?? PD)) +2013-11-01,36.1658333,-86.7844444,Nashville,TN,egg,1500,Was a cloudy night, hovering low amongst clouds saw large lighted object with a red light atop (moving clockwise atop the craft). +2013-11-01,35.6838889,-82.0094444,Marion,NC,circle,2700,Illuminated Orb hovering over Marion, NC- does this have to do with the "non- existent Military Base" behind Baxter. +2013-11-01,42.4683333,-73.8166667,Ravena,NY,fireball,60,3 fireballs no sound flying low in formation. +2013-01-11,28.5380556,-81.3794444,Orlando,FL,light,300,3 orange lights ascending and moving North over East Orlando 11/2013 +2013-01-11,25.7738889,-80.1938889,Miami,FL,fireball,10,Red UFO across Miami sky. +2013-11-01,41.7475,-74.0872222,New Paltz,NY,circle,300,Circular object/2 orange, 2 blue lights. +2013-11-01,47.3294444,-122.5788889,Gig Harbor,WA,light,300,Bright white light/red flashing disappeared behind two trees near Narrows Bridge, WA. +2013-11-01,38.8902778,-77.0844444,Arlington,VA,light,2,Green falling star. +2013-11-01,40.3077778,-75.9658333,Shillington,PA,light,1200,Fast bright blue and red light moving east to west. +2014-01-11,47.7883333,-122.3075,Mountlake Terrace,WA,light,120,20 red/orange lights rising up in the sky for short time then disappeared. +2014-01-11,39.9091667,-74.1552778,Bayville,NJ,unknown,30,Strange loud booming noises unknown origin. +2014-01-11,28.6697222,-81.2083333,Oviedo (Town In Orlando),FL,light,1800,I was walking down the street to my neighborhood at 4 AM, and hovering what appeared to be maybe 150 feet from the ground (MUCH closer +2014-01-11,45.0061111,-93.1563889,Roseville,MN,fireball,10,Green fireball fast moving. Shooting down towards the ground. +2014-01-11,37.985,-103.5433333,La Junta,CO,oval,120,Took picture of sunset, and noticed a green/red oval object in the clouds. +2014-01-11,45.57,-93.5813889,Princeton,MN,triangle,10,Very large bright object flying horizontally across the sky. +2014-01-11,32.2216667,-110.9258333,Tucson,AZ,cigar,240,Silver or white cigar shaped aircraft with no wings. +2014-01-11,34.5794444,-118.1155556,Palmdale,CA,fireball,300,Fireball falling at slow speed then flew upwards at high rate of speed without turning around made no noise as it sped upwards. +2014-01-11,26.3583333,-80.0833333,Boca Raton,FL,light,300,Four traveling orange lights in formation slowly dimmed to nothing. +2014-01-11,26.3180556,-80.1,Deerfield Beach,FL,unknown,180,Four orange spheres in sky over Deerfield Beach, Florida, 1/11/14. +2014-01-11,38.2544444,-104.6086111,Pueblo,CO,sphere,1800,Gold or orange sphere's appeared over Pueblo. +2014-01-11,39.5308333,-75.8077778,Chesapeake City,MD,circle,300,Many white circular activity light above the clouds as if playing a game of tag. +2014-01-11,38.6766667,-84.3302778,Falmouth,KY,circle,120,Large orange ball moves and hovers above house.-January 11, 2014. +2014-01-11,37.4419444,-122.1419444,Palo Alto,CA,formation,10,Boomerang Type Craft with Lights in Formation Seen Flying over Palo Alto, Ca on Saturday Night. +2014-01-11,40.7141667,-74.0063889,New York City (Queens),NY,light,60,((POSSIBLE HOAX??)) 2 balls of light in sky no sound military chasing it. +2014-01-11,26.0625,-80.2333333,Davie,FL,fireball,600,We were looking at the sky, and from the southwest saw an orange ball of light flying toward us. As it passed overhead, there was no so +1964-11-12,37.6658333,-77.5066667,Glen Allen,VA,disk,60,Angular Saucer-Like Craft Hovered Over Tree - Could See Movement Inside +1966-11-13,30.3319444,-81.6558333,Jacksonville,FL,chevron,15,It was between 3 and 5 am in my backyard when i went to let dog out. I was staring at the constellation Cassiopeia and then turned my a +1967-11-12,41.85,-87.65,Chicago,IL,disk,60,Saucer shaped, with 2 and a half portholes visible, a red light atop, and it moved away at high speed +1971-11-12,34.0625,-118.1219444,Monterey Park,CA,circle,300,Bluish white lights in the southeast at high altitude. +1976-11-12,35.8966667,-77.5361111,Tarboro,NC,disk,5400,We saw a disc with lights, it appeared to land in nearby woods, observed strange person. +1990-11-12,39.7155556,-75.6411111,Stanton,DE,light,30,TWO FRIENDS AND I WERE IN OUR HOT TUB WHEN WE VIEWED WHAT SEEMED TO BE ONE VERY LARGE PLANE IN THE SKY.SUDDENLY, THE FOUR TO FIVE LIGHT +1994-11-12,34.8733333,-87.6233333,St. Florian,AL,disk,300,Alien Agricultural Expedition +1995-11-12,41.1616667,-112.0255556,Roy,UT,triangle,600,At 11:20 PM as I saw a triange shaped object with 7 red lights moving slowly to the south. +1996-11-12,44.7316667,-116.08,Donnelly,ID,triangle,300,Black triangle in the mountains of Idaho +1997-11-12,43.2377778,-77.0616667,Sodus,NY,cigar,600,awesome and an adventure for such a small town. +1997-11-12,38.9419444,-105.1566667,Divide,CO,light,600,The object was the size of a basket ball. Cotten white in color. Came very very close. +1997-11-12,47.6063889,-122.3308333,Seattle,WA,light,8,Looked up in the sky in a S-SW direction. Noticed 2 "stars" that were moving together at the same speed. They traveled for about 3 se +1998-11-12,44.0583333,-121.3141667,Bend,OR,disk,600,Observed a disk-shaped object completing unbelievable maneuvers to the SE above the city of Bend, Oregon. Object hovered, did split sec +1998-11-12,42.8666667,-106.3125,Casper,WY,triangle,180,back oObserved a boomerang shaped object travelling roughly S to N at 2:18 a.m. looking toward the east. The object was pale, luminous +1998-11-12,44.4161111,-118.9519444,John Day,OR,fireball,600,About six thiety at night a orange ball was observed while driveing down the road was observed in the south eastern sky's just doing ra +1998-11-12,48.9938889,-122.7458333,Blaine,WA,flash,1,2 bright green flashes each lasting about 1 sec separated by about 10 sec +1998-11-12,41.7675,-76.4430556,Towanda,PA,triangle,15,Large silent flying triangle craft heads over town. +1998-11-12,40.9175,-96.5280556,Waverly,NE,fireball,3,Large, bright green fireball +1998-11-12,39.7047222,-105.0808333,Lakewood,CO,triangle,5,Triangle shaped lights moving very very fast +1998-11-12,34.6086111,-98.39,Lawton (Outside Of),OK,other,300,On our way to return a rental truck we witnessed a craft/a warship/battlestar intersect us, then pull off the ground, then propel itsel +1998-11-13,38.2541667,-85.7594444,Louisville (Seen From A/C @ Fl450 ~ 75 Nm S. Of),KY,circle,180,Falcon 2000 Corporate flight crew spots strobe WELL above their cruise altitude of 45ꯠ feet... unknown source to air traffic contro +1999-11-12,39.7391667,-104.9841667,Denver,CO,rectangle,120,Something(s) rising behind me as I was driving home from work. +1999-11-12,42.2141667,-83.15,Wyandotte,MI,other,10,VERY loud noise, like many jet engins , then was suddenly silenced, very strange lights. +1999-11-12,36.4197222,-82.4766667,Gray,TN,triangle,60,TRIANGLULAR SHAPED OBJECT OBSERVED APPROX 60 FEET ABOVE GROUND. SEVERAL LIGHTS AROUND PERIMITER, MANY COLORS. APPEARED TO HOVER. SOU +1999-11-12,32.2986111,-90.1847222,Jackson,MS,sphere,10,Four spherical objects, three traveling in an equilateral triangle formation fourth tailing behind and off to the right +2000-11-12,37.0561111,-85.0886111,Russell Springs,KY,formation,120,A tight formation of three crafts that zipped across the sky but stoped for a minute and then flew off again. +2000-11-12,33.5386111,-112.1852778,Glendale,AZ,light,240,Fast moving light in N.W. Phoenix. +2000-11-12,35.614444399999996,-88.8138889,Jackson,TN,triangle,30,Sitting on my back porch smoking I saw this thing floating across the sky going north to south with no sound.It had 5 large lights that +2000-11-12,28.5380556,-81.3794444,Orlando,FL,circle,5,Circle cruised over head in mid after noon. +2000-11-12,34.0522222,-118.2427778,Los Angeles,CA,changing,1800,Strange, contorting, object in the sky over Los Angeles. +2000-11-12,40.9463889,-73.0697222,Port Jefferson,NY,changing,15,ball of white light which turned bright green, arched wesrward and became a rainbow prism and disappeared +2000-11-12,40.5741667,-74.6102778,Somerville,NJ,fireball,3,Large green light blurs across the night sky in populated NJ area. UFO or spacegarbage, either way it was an awesome sight. +2000-11-12,25.7738889,-80.1938889,Miami,FL,other,60,I was at home by the pool when I saw a v shaped object come close to me and then dissapear into the sky. +2000-11-12,37.4136111,-79.1425,Lynchburg,VA,light,480,Extremely bright light stationary then slowly moving easterly over skyline of blue ridge mountains. +2001-11-12,40.7377778,-96.8441667,Denton,NE,light,300,Man of Reason fails to explain blinking starlike object with energy bursts +2001-11-12,38.9333333,-119.9833333,South Lake Tahoe,CA,disk,30,same as above +2001-11-12,33.4483333,-112.0733333,Phoenix,AZ,changing,120,rising balloon transformed into cigar craft with red light on bottom. +2002-11-12,36.2613889,-90.9711111,Pocahontas,AR,light,2,Jet chasing ball of light +2002-11-12,43.0125,-83.6875,Flint,MI,disk,120,saucer witnessed in flint mi. with red and white lights. +2003-11-12,39.8438889,-84.1247222,Huber Heights,OH,unknown,259200,The objects moved in a fasion not consistent with conventional aircraft and were completely silent. +2003-11-12,34.0686111,-118.0266667,El Monte,CA,oval,10,Oval flying object across my window screen 5-10 seconds +2003-11-12,42.3086111,-83.4822222,Canton,MI,oval,120,Oval shaped, Gray colored, and flying low and fast +2003-11-12,30.0969444,-95.6158333,Tomball,TX,triangle,60,v shaped almost triangles moving across the sky +2003-11-12,37.6819444,-121.7669444,Livermore,CA,other,120,I was driving down Lido Lane in Livermore, California, driving northwest. Something caught my eye that at first glance looked like a st +2003-11-12,35.2269444,-80.8433333,Charlotte,NC,light,60,dimming light that rotated counter-clockwise and then shot across the sky and vanished +2003-11-12,46.4111111,-86.6477778,Munising,MI,flash,60,TORNADO LIKE SOUND FOR A FEW MINUTES THEN SKY LIT UP WITH BRIGHT BLUE TO PULSING LITE +2003-11-12,43.8522222,-69.6286111,Boothbay Harbor,ME,disk,3600,Bright Red Objects with Orbiting White Lights/ Hovering Discs with Green,Red, Blue, White Lights Dancing Around It +2003-11-12,40.2247222,-105.2708333,Lyons,CO,sphere,10800,Color was yellow,red and it did not move in any direction,it just disappeared. +2003-11-12,36.1658333,-86.7844444,Nashville,TN,other,20,Serpentine object with windows. +2003-11-12,28.5380556,-81.3794444,Orlando,FL,cone,3600,Approximately 11:30 - midnight the night of Nov 12, 2003, I observed a cone-shaped hovering object in the Southeasterly sky. It was to +2004-11-12,29.3011111,-94.7975,Galveston,TX,cylinder,300,I was very delighted to finally find a place to report this object we encountered that evening. My brother, cousin and I were aboard my +2004-11-12,37.775,-122.4183333,San Francisco,CA,unknown,60,Black object hovering in front of clouds in san fransisco +2004-11-12,39.0997222,-94.5783333,Kansas City,MO,cigar,60,I saw a shiny slender object in the sky while driving north on 435 at about 7:30. There is a large Bayer factory next to the highway, +2004-11-12,44.98,-93.2636111,Minneapolis,MN,cylinder,120,Silver metallic cylinder moving slowly on Hwy 55 Minneapolis from east to west +2004-11-12,41.4994444,-81.6955556,Cleveland,OH,circle,20,Circle (Silver) perfect in shape, flying at speeds at least 3X faster than a fighter jet +2004-11-12,42.9038889,-78.6925,Depew,NY,cigar,120,A cigar shaped, shiney, silvery object stopped and started a few times, without turning, over Depew, NY. +2004-11-12,31.2230556,-85.3905556,Dothan,AL,light,30,Saw a big light in sky moving a bit and then it left VERY quickly. +2004-11-12,35.1494444,-90.0488889,Memphis,TN,triangle,30,My exited triangular craft sighting +2004-11-12,34.1866667,-118.4480556,Van Nuys,CA,light,300,Bright Red Light moving strangely over Van Nuys and then Bolting away fast. +2005-11-12,47.6063889,-122.3308333,Seattle,WA,other,3,Disc shaped, blue and white coloured object slicing the sky very quickly. +2005-11-12,40.5866667,-122.3905556,Redding,CA,light,900,white light , which would have been larger than full moon, but less intense and no definite shape circling +2005-11-12,34.2783333,-119.2922222,Ventura,CA,oval,600,Two Orange Oval shaped objects sighted moving together vanishing then reapearing. +2005-11-12,42.9633333,-85.6680556,Grand Rapids,MI,cylinder,2,I was looking at the sky and i saw this thing blinking and after 2 blinks it Disapered in the sky +2005-11-12,34.1063889,-117.3694444,Rialto,CA,circle,240,I now know we are not alone........ +2005-11-12,40.0791667,-75.3019444,West Conshohocken,PA,fireball,2,Green-glowing object streaked downward with a white-smoke trail behind it; was gone in 2 seconds. +2005-11-12,37.5536111,-77.4605556,Richmond,VA,fireball,2,green-blue fireball/meteor shooting across sky +2006-11-12,33.7669444,-118.1883333,Long Beach,CA,fireball,60,Orange fireball drips small ball +2006-11-12,37.6688889,-122.0797222,Hayward,CA,circle,7200,Formation of white lights circling in Hayward skies on Nov. 12, 2006 +2006-11-12,33.7669444,-118.1883333,Long Beach,CA,fireball,3,Bright Green Shooting Star? (NUFORC Note: Possible meteor? PD)) +2007-11-12,34.3686111,-84.9341667,Adairsville,GA,circle,3600,Unidentified Hovering Light seen in the Georgia Sky. ((NUFORC Note: Sighting of Venus. PD)) +2007-11-12,32.0833333,-81.1,Savannah,GA,circle,3600,Seven white round objects in the sky. +2007-11-12,35.1894444,-114.0522222,Kingman,AZ,light,300,11-12-07 three bright lights slowly blinking above the ground at 80 feet within 1/8 mile, no sound , farm road , disappeared +2007-11-12,33.6694444,-117.8222222,Irvine,CA,circle,300,Circular UFO with Blue lights seen near 405 S at Bake Pkwy exit. +2007-11-12,34.4838889,-114.3216667,Lake Havasu City,AZ,sphere,360,Disc Shaped Fire like Object +2007-11-12,30.3155556,-89.2475,Pass Christian,MS,light,1800,Star like, Red/Green/White, moving in sky. ((NUFORC Note: Possibly satellites?? PD)) +2007-11-12,33.9202778,-80.3416667,Sumter,SC,light,2820,Staionary light in the sky which appeared to be disintegrating. +2007-11-12,33.8702778,-117.9244444,Fullerton,CA,cone,240,Orange light bulb shape, very bright on the bottom, top looked like orange light coming through glass?, came from the east, stopped for +2007-11-12,32.7152778,-117.1563889,San Diego,CA,disk,1200,UFO SIGHTING IN SAN DIEGO ,THIS IS REAL +2007-11-12,36.1155556,-97.0580556,Stillwater,OK,formation,60,Two seperate phenomena occuring less then 30 seconds apart over Stillwater, OK. +2007-11-12,38.4088889,-121.3705556,Elk Grove,CA,other,180,Arrowhead large silent slow craft with 3 circular rows of Yellow Rectangular lights on top/dark on bottom. +2007-11-12,34.0094444,-118.1044444,Montebello,CA,sphere,300,Sphere shape, red, blue and white lights, over Montebello headed north west toward ELA / Monterey Park +2007-11-12,33.8302778,-116.5444444,Palm Springs,CA,other,10,Moving star over Palm Springs, California, approximately 2300, November 11񫺗 +2008-11-12,34.0522222,-118.2427778,Los Angeles,CA,disk,180,VERY bright object seemed to change course. +2008-11-12,37.9633333,-77.7375,Bumpass,VA,circle,20,The Craft Was An Orange Orb That Blinked then Dimmed And Kept Blinking Until It Sped Away And Disappeared. There was only one of the ob +2008-11-12,33.7669444,-118.1883333,Long Beach,CA,fireball,1200,Fireball moves slowly across the sky, puses, then changes directions - Long Beach, CA +2008-11-12,33.8622222,-118.3986111,Hermosa Beach,CA,oval,10,disappearing object during a sunny, clear daytime on Hermosa Beach, CA +2008-11-12,42.1625,-71.0416667,Randolph,MA,cigar,2,Possible Tomahawk Missile +2008-11-12,33.7069444,-117.2441667,Quail Valley,CA,circle,600,http://www.youtube.com/watch?v=ZSxiUVJ0u8g&feature=channel +2008-11-12,32.2730556,-89.9858333,Brandon,MS,unknown,120,Loud hot air balloon noise heard in the dark of night. +2008-11-12,38.545,-121.7394444,Davis,CA,light,15,Green light in the sky +2008-11-12,33.7669444,-118.1883333,Long Beach,CA,sphere,2,green light travelling at light speed +2008-11-12,41.4569444,-72.8236111,Wallingford,CT,fireball,3,I saw a green object flash across the sky +2008-11-12,37.2705556,-76.7077778,Williamsburg,VA,unknown,3,While taking an exit ramp I saw a large bright green light arcing towards the ground. +2008-11-12,42.2625,-71.8027778,Worcester,MA,other,2,Large green streak viewed across sky. +2008-11-12,42.5836111,-83.2455556,Bloomfield Hills,MI,cigar,2100,long blue cigar shape moving up into sky +2009-11-12,38.8113889,-91.1413889,Warrenton,MO,fireball,5,bright green fireball with a stardust trail. ((NUFORC Note: Possible meteor?? PD)) +2009-11-12,43.3227778,-76.4175,Fulton,NY,disk,1800,Spinning Bright lights over fulton, ny ((NUFORC Note: Possible meteor?? PD)) +2009-11-12,32.6080556,-86.3958333,Deatsville,AL,light,3600,Bright light over Prattville, AL flashing and moving over tree line +2009-11-12,43.1547222,-77.6158333,Rochester,NY,light,60,Bright light over Lake Ontario blazing through the early morning sky. +2009-11-12,33.7488889,-84.3880556,Atlanta,GA,sphere,120,I spotted what looked like three UFOs blinking orange and white, which made strange patterns across the sky before vanishing at once. +2009-11-12,37.1305556,-92.2633333,Mountain Grove,MO,light,45,Bright flash of light, small light flying North at a high rate of speed 500 Lights On Object0: Yes +2009-11-12,43.1547222,-77.6158333,Rochester,NY,light,300,Bright light seen traveling slowly west to east over Rochester; no sound or aircraft lights seen. ((NUFORC Note: Sighting of ISS. PD)) +2009-11-12,39.0216667,-84.44,Cold Spring,KY,other,1200,Large, white orb breaks apart into 4 equally sized orbs that slowly spiral downwards, disappearing over the horizon. +2009-11-12,30.085,-97.84,Buda,TX,changing,7200,Bright UFO that changed shape from sphere to triangle and color of bright light, many colors. ((NUFORC Note: Twinkling star?? PD)) +2009-11-12,33.2147222,-97.1327778,Denton,TX,light,600,Bright light falls to ground, changes directions several times, then descends to earth. +2010-11-12,42.4405556,-76.4969444,Ithaca,NY,other,3600,One big V shaped object blinking white, red and blue at a stand still with random movements - multiple objects as well. +2010-11-12,39.9130556,-83.1625,Galloway,OH,disk,180,attempting to resend video from prior report +2010-11-12,39.9130556,-83.1625,Galloway,OH,disk,180,Disc shaped object sitting on top orange pulsating ball of light, and flickering image of itself next to it. +2010-11-12,40.0063889,-75.7036111,Downingtown,PA,light,600,Two Bright, Circular Objects Lingered in the morning sky and then sped away at remarkable speed +2010-11-12,35.2269444,-80.8433333,Charlotte,NC,unknown,15,3 lights in a row, red mix then dim white +2010-11-12,47.6588889,-117.425,Spokane,WA,triangle,10,Slow moving triangular object in night sky disapeares into cloud. +2010-11-12,45.0725,-93.4555556,Maple Grove,MN,sphere,600,Daytime Sighting in Maple Grove +2010-11-12,31.5783333,-84.1558333,Albany,GA,cigar,30,I saw one white, tubular object above the treeline that seemed to be hovering. +2010-11-12,33.3702778,-112.5830556,Buckeye,AZ,other,15,Helicopter like ufo out in broad daylight with no noise, propellers, and up close. +2010-11-12,44.1102778,-70.6797222,Harrison,ME,triangle,300,DIAMOUND/TRIANGLE SHAPED CRAFT WITH RED LIGHTS ON EACH TIP -HARRISON, ME +2010-11-12,44.1102778,-70.6797222,Harrison,ME,triangle,300,Red tipped UFO over RT 35 in Harrison, Maine +2010-11-12,44.1102778,-70.6797222,Harrison,ME,triangle,300,Red tipped UFO Triangular shape/diamond shape. +2010-11-12,37.775,-122.4183333,San Francisco,CA,other,20,Boomerang UFO 500 feet over San Francisco Nov. 12, 2010 +2010-11-12,42.1547222,-75.4527778,North Sanford,NY,circle,5,Round orange fast moving object in straight line with glowing tail. +2011-11-12,41.8388889,-89.4794444,Dixon,IL,light,1200,Hovering, yellowship light dissapears into early morning sky. +2011-11-12,40.6258333,-75.3708333,Bethlehem,PA,light,8,This was not an airplane. +2011-11-12,33.3061111,-111.8405556,Chandler,AZ,rectangle,600,Observed a grey unidentified rectanular object in the sky that paused and then moved quickly. +2011-11-12,41.0813889,-81.5191667,Akron,OH,sphere,45,Three metallic orbs scramble in the wake of a jet in the northern sky seen from Ohio. +2011-11-12,38.4494444,-78.8691667,Harrisonburg,VA,sphere,5,Brilliant spherical object traveling S to N at low alt., high rate of speed with no sound. ((NUFORC Note: Report from USN pilot. PD)) +2011-11-12,40.7744444,-97.0502778,Milford,NE,cylinder,600,Pale Blue Light in Night Sky Over Seward, Nebraska +2011-11-12,34.1063889,-117.5922222,Rancho Cucamonga,CA,light,60,3 red triangle shaped lights in sky +2011-11-12,26.1219444,-80.1436111,Fort Lauderdale,FL,circle,300,Balls or orbs night sky, traveling west in a group a few stragglers, more like a bird movement but high in the sky, one was low and had +2011-11-12,42.1130556,-70.8125,Hanover,MA,sphere,180,A sphere organge and red in color gliding silently through the sky. Made no noise at all...speechless. +2011-11-12,40.7002778,-73.5933333,Uniondale,NY,circle,180,5 orange, round sphere shaped, objects, float across sky remaining in pattern. +2011-11-12,27.7705556,-82.6794444,St. Petersburg,FL,sphere,300,Orange lights moving over St Petersburg, FL +2011-11-12,43.0716667,-70.7630556,Portsmouth,NH,sphere,300,My husband went outside for a smoke just before 8 pm. He banged on the window from outside (I was in the living room)to get me to come +2011-11-12,33.9791667,-118.0319444,Whittier (Viewed From),CA,changing,30,plasma like translucent ufo shaped like a clown shoe's sole, or sea creature, colorful. but fast moving, biological ufo? +2011-11-12,42.1583333,-71.1452778,Canton,MA,light,3,Bright light traveling east near Blue Hills in Canton. +2011-11-12,40.2141667,-77.0088889,Mechanicsburg,PA,fireball,120,We saw a ball of fire in the sky as we were driving and it sped away after sharply turning. +2011-11-12,40.0394444,-84.2033333,Troy,OH,teardrop,2,Bluish-white "bullet" shaped object sighted above the levee near Hobart Arena in Troy, Ohio (11/12/11). +2011-11-12,32.0833333,-81.1,Savannah,GA,sphere,180,Blue /Silver objects over Savannah +2012-11-12,39.0416667,-94.72,Shawnee,KS,circle,10,3 circles flying close together, motionless, and without a sound! +2012-11-12,39.3702778,-94.7822222,Platte City,MO,triangle,480,Triangle shape object observed, no sound or lights. +2012-11-12,38.4022222,-122.8227778,Sebastopol,CA,circle,2,Fast moving large circular object appears in early evening sky in Northern California. +2012-11-12,34.0522222,-118.2427778,Los Angeles,CA,teardrop,45,Many ufos in the bright sky joined together and disapered less then an second. +2012-11-12,38.801944399999996,-94.4525,Raymore,MO,triangle,2,3 lights in triangle shape moving very fast from north to south. +2012-11-12,42.3583333,-71.0602778,Boston,MA,sphere,120,2 small consecutive black dots over Charles River +2012-11-12,40.1213889,-75.3402778,Norristown,PA,fireball,600,Objects in western sky at sunset with a forked tail. +2012-11-12,37.4136111,-79.1425,Lynchburg,VA,circle,3600,Lynchburg orb seen on Simons run and memorial by witnesses +2012-11-12,35.6505556,-78.4566667,Clayton,NC,triangle,20,Black triangle. +2012-11-12,28.4366667,-99.2347222,Cotulla (South Of),TX,light,60,Star like object with osculating flight path heading N NE South Texas. +2012-11-12,31.3269444,-89.2902778,Hattiesburg,MS,circle,30,3 white orbs in triangle formation +2012-11-12,40.0377778,-76.3058333,Lancaster,PA,changing,120,A craft that seemed to be covered in red and orange flames flew across the sky. +2012-11-12,34.02,-117.9486111,La Puente,CA,unknown,60,Bright orange object hovering over incoming air traffic. +2012-11-12,40.5852778,-105.0838889,Fort Collins,CO,triangle,15,A "V" formation of 5 faint solid lights flies over Fort Collins heading west. +2012-11-12,39.3869444,-94.5808333,Smithville,MO,light,1800,3 hovering lights over small town. +2012-11-12,40.7141667,-74.0063889,New York City,NY,sphere,600,Dark red sphere zig zaged then disappeared +2012-11-12,40.7719444,-80.7683333,Lisbon,OH,fireball,600,I saw it out my window. +2012-11-13,44.9430556,-123.0338889,Salem,OR,cylinder,300,Bright flying object spotted near downtown Salem, OR +2013-11-12,35.925,-86.8688889,Franklin,TN,circle,120,It looked like an orange moon setting above the tree line & it slowly descended down into the trees. I've been seeing this same thing +2013-11-12,39.8783333,-82.8838889,Groveport,OH,unknown,420,Pulsating beam of light with colors changing, intermittenet buzzing loud noise. +2013-11-12,44.9583333,-124.0166667,Lincoln City,OR,teardrop,30,12-inch long teardrop shaped hovering craft along Oregon Coast. +2013-11-12,39.6133333,-105.0161111,Littleton,CO,cylinder,240,Non-flashing bright object moving from the SW to the NE over the Denver Skyline at 5:15 am +2013-11-12,38.9458333,-105.2888889,Florissant,CO,triangle,180,Open triangle shape, spherical corners, no lights,emitting a short, thick grey 'exhaust' trail while slow moving across daylight sky. +2013-11-12,42.5775,-88.105,Paddock Lake,WI,light,900,White hovering light and red lights on ground +2013-11-12,34.0708333,-112.15,Black Canyon City,AZ,circle,120,Near I-17 interstate a formation of orange soft steady glowing obs equally spaced apart were observed by my husband and I. At the time +2013-11-12,40.63,-79.9697222,Gibsonia,PA,formation,1800,There were 4 main bright orange lights flying/hovering over the southeastern horizon with 2 larger lighters tailing the formation. +2013-11-12,36.7625,-80.735,Hillsville,VA,sphere,1200,Pulsating Sphere in the Southwest sky. ((NUFORC Note: Sighting of Venus, we suspect. PD)) +2013-11-12,48.6969444,-122.9041667,Eastsound,WA,oval,1800,UFO over San Juan Islands, Washington Nov. 12, 2013--Large White Light Globe Moving in Sky-VIDEO. ((Moon!!)) +2013-11-12,43.5408333,-116.5625,Nampa,ID,light,30,Light changing, fast erratic moving UFO in Nampa, ID. +2013-11-12,47.4936111,-92.7777778,Buhl,MN,circle,20,Three white balls of light shot from the ground up and hoovered for a few seconds b4 flashing out to nothing. +2013-11-12,35.6708333,-80.4744444,Salisbury,NC,circle,600,Small, Circular UFO spotted and moves once camera flashes. +2013-11-12,35.6869444,-105.9372222,Santa Fe,NM,diamond,1800,Lights in the sky in a diamond formation with additional trail of lights bgeneath or behind the diamond lights traveling Northeast +2013-11-12,35.6869444,-105.9372222,Santa Fe,NM,other,1800,Reddish-orange lights in diamond formation with a trail of lights following behind or below seen by family in Santa Fe skies +2013-11-12,35.6869444,-105.9372222,Santa Fe,NM,unknown,420,Multiple orange lights ascending then disappearing at a consistent altitude. +2013-11-12,43.5391667,-89.4625,Portage,WI,triangle,180,Triangle shape lights 1 becoming 2 the one behind it disappearing and a new one in front. They disappeared strobing lights showed up. +2013-11-12,44.0394444,-88.7441667,Omro,WI,unknown,20,Lights in a horizontal line in south sky east of Omro, WI. +2013-11-12,39.6291667,-75.6586111,Bear,DE,light,20,Very fast moving object at high altitude with flashing lights. Covered 20 miles in less than 20 seconds +1953-11-13,41.8455556,-87.7538889,Cicero,IL,other,120,Triangular formation passing over head just west of Chicago, Illinois. +1969-11-13,37.3394444,-121.8938889,San Jose,CA,light,7,Lime green lozenge -shaped light shot across the sky. +1974-11-13,29.9544444,-90.075,New Orleans,LA,disk,25,Two Saucer Shape U.F.O.'s over New Orleans East. +1975-11-13,38.8822222,-77.1713889,Falls Church,VA,circle,300,circular,bright multicolored lights rotating around middle of object +1975-11-13,38.6580556,-77.25,Woodbridge,VA,circle,600,BRIGHT OBJECTS CHASED INTO BELMONT BAY +1985-11-13,38.5816667,-121.4933333,Sacramento,CA,formation,120,A glowing, moving line, going from W to E, which when observed thru binoculars resolved into disks. +1992-11-13,46.0647222,-118.3419444,Walla Walla,WA,triangle,7200,6+ships +1996-11-13,34.4263889,-117.3,Hesperia,CA,triangle,360,Huge Black Triangular Craft hovers over the 15 Freeway in High Desert,CA. 1996 +1996-11-13,27.8394444,-82.7913889,Seminole,FL,triangle,300,I out of my front door to let the dog out. I remember I stared at this bright star that was pulsating. Then I had a feeling that I was +1996-11-13,40.2736111,-76.8847222,Harrisburg (Just Outside Of),PA,light,240,Flew around in sky then flew off in westerly direction. +1997-11-13,44.5647222,-123.2608333,Corvallis,OR,light,1200,We had just pulled onto Interstate 5 from leaving Corvallis when we saw these three amber/orange lights hovering above the freeway. At +1997-11-13,40.2169444,-74.7433333,Trenton (Just Outside),NJ,light,120,Moving light around a stationary object... +1999-11-13,34.0522222,-118.2427778,Los Angeles,CA,light,10,Object looked as if it could have been a star or an aircraft so high in the sky that it could have been mistaken for a star. The light +1999-11-13,40.015,-105.27,Boulder,CO,formation,10,Three black objects flying in close, diamond shaped formation. +1999-11-13,45.5319444,-122.29,Corbett,OR,flash,1,bright flash that lit up the surrounding area quicker than a meteor or flare could and too big in size also. +1999-11-13,38.6858333,-121.0811111,El Dorado Hills,CA,light,300,Star-like bright light with fire colored, pointed tail. Moved, then became stationary. +2000-11-13,37.8316667,-122.1866667,Canyon,CA,egg,600,3 egg shaped flying objects making a ringing noise +2000-11-13,33.2147222,-97.1327778,Denton,TX,triangle,120,Black triangle spotted over highway in the night sky +2000-11-13,32.0477778,-110.7113889,Vail,AZ,teardrop,900,a glowing teardrop shaped craft raised from the wash bed and moved west eluding local Air Force. +2000-11-13,34.0522222,-118.2427778,Los Angeles,CA,changing,1200,Floater +2000-11-13,33.9561111,-83.9880556,Lawrenceville,GA,rectangle,300,I was driving down Arnold road in Lawrenceville GA at approx. 7:45 PM EST. Driving past the rail road I saw a bright white light up in +2000-11-13,26.6402778,-81.8725,Fort Myers,FL,oval,300,This object was oval in shape, and apeared to be covered in hundreds or thousands of white lights. It literally glistened in the darke +2000-11-13,32.4561111,-93.2638889,Heflin,LA,diamond,900,December 29, 2000 Dear NUFORC, I’m writing in concern of a sighting of a craft that I saw 13 years ago, and again, recently, an encoun +2000-11-13,38.3555556,-98.5805556,Ellinwood (3 Miles South Of),KS,fireball,1200,Balls of light disappearing and reappearing. +2001-11-13,32.7152778,-117.1563889,San Diego,CA,triangle,5,Triangular Shaped Silent Craft with Red Lights Manouvers Over San Diego +2001-11-13,34.1486111,-118.3955556,Studio City,CA,triangle,180,Night time triangular UFO sighted at close range flying very low and very slow over a major, busy, metropolitan area. +2002-11-13,30.4505556,-91.1544444,Baton Rouge,LA,circle,10,A giant black orb, looming over Baton rouge. +2002-11-13,30.9808333,-97.3413889,Academy,TX,other,60,I was driving to work north highway 95 at 5:10 am before i reached actual site I atarted to see alot of lights looking like a huge sort +2002-11-13,33.9930556,-117.9677778,Hacienda Heights,CA,circle,900,I was going home from my cousins house in La habra coming down Hacienda blvd. I didn't feel good so I was laying back in the passanger +2002-11-13,43.9441667,-90.8127778,Sparta,WI,egg,600,Egg shaped bright and blinking lights descending slowly amoung cloud, then disappearing +2002-11-13,33.5830556,-84.3394444,Morrow,GA,unknown,606,It was a craft with 3 big red blinking lights zig zaging around in the sky! +2002-11-13,43.9561111,-89.8180556,Adams,WI,egg,300,UFO's Sighted in wis +2002-11-13,39.3330556,-82.9825,Chillicothe,OH,other,60,8 big ligts in sky +2002-11-13,33.7358333,-118.2913889,San Pedro,CA,triangle,300,7 to 10 red lights (flashing) in a triangular shape moving silently and slowly due south. Many other small planes in relatively the sam +2002-11-13,41.5833333,-87.5,Hammond,IN,unknown,1200,Craft silently hoverd above normal air traffic heading to Chicago, motionless for ten+ mins. Then began to move silently to the S.W & s +2002-11-13,31.8972222,-98.6033333,Comanche,TX,light,3,Flickering stationary orangish/yellowish light seen multiple times and places near Comanche, Texas. +2003-11-13,41.3005556,-111.8113889,Eden,UT,diamond,900,then out of the corner of my eye I saw a flash of light +2003-11-13,41.9994444,-88.145,Hanover Park,IL,triangle,120,Possible triangle caught on tape in Illinois. +2003-11-13,38.6272222,-90.1977778,St. Louis,MO,cigar,45,Cigar shaped slow moving haze or shadow +2003-11-13,40.7141667,-74.0063889,New York City (Staten Island),NY,fireball,60,I was sitting in my backyard And i saw a Big red fireball across the sky, my wife marge, and my dad, George were with me i was worried +2003-11-13,38.1041667,-122.2555556,Vallejo,CA,formation,60,STARTED WITH 4 COMING OUT OF THE SKY THEN 5 THEN 7 THEN 8 THEY WOULD COME TOGETHER THE LEAVE +2003-11-13,43.8522222,-69.6286111,Boothbay Harbor,ME,light,1200,Star Like UFO's that are Hidden in the Stars, But With Binoculars, Are Obviously Discs; I Saw 10-20 tonight!!!! +2003-11-13,43.8522222,-69.6286111,Boothbay Harbor,ME,light,1200,This is the Second Report I have done in the last two days. I had written about UFO Objects that hover in the sky that first appear to +2003-11-13,42.4775,-83.0277778,Warren,MI,triangle,600,4 lights close to horizon +2003-11-13,38.7244444,-83.0133333,South Portsmouth,KY,light,180,I saw a ufo at 9:00pm on the 13th. +2003-11-13,31.3363889,-81.9563889,Hortense,GA,changing,1200,bright object with colors of red,blue,green and yellow, moving in an erractic pattern and changing shape +2004-11-13,41.1505556,-73.9458333,Congers,NY,other,10,blue rectangular shape moves north to south along horizon +2004-11-13,35.6225,-117.67,Ridgecrest,CA,light,120,I have seen this twice, both times with witnesses, but i failed to report it the first time. i saw the first one a few days before it +2004-11-13,35.6225,-117.67,Ridgecrest,CA,sphere,600,Its actions were incredible and is not consistent with anything I or the general population would associate with our present technology +2004-11-13,42.5430556,-73.3241667,Hancock,MA,sphere,10,Shimmering globe, appeared stationary for 7-10 seconds then just vanished. +2004-11-13,41.2375,-80.8186111,Warren,OH,light,10,Bright red orb found amongst 9 U.S. jets in Warren, Ohio!!!!!!! +2004-11-13,40.31,-75.1302778,Doylestown,PA,light,300,threr were two distinct ships i even saw one turn and a flash off the metal shined from the other ship +2004-11-13,33.8883333,-118.3080556,Gardena,CA,triangle,120,A vshaped object with no sound flew overhead. It was up pretty high, yet the craft was large enough to identify. +2004-11-13,41.3322222,-87.7852778,Peotone,IL,light,600,Fast, flickering, ball of red and white lights seen in the northern sky traveling I57 near Peotone, Illinois +2004-11-13,39.6005556,-82.9461111,Circleville,OH,light,120,Fire colored orange lights spotted in Circleville, OH. +2004-11-13,42.2625,-71.8027778,Worcester,MA,light,1,I was standing outside having a cigarette, and saw a red light on the horizon. It was south and it zigzagged +2004-11-13,40.2472222,-75.2441667,Montgomeryville,PA,chevron,15,One chevron-like object appeared in Casseopia was then joined by 3-4 others that circled briefly then flew west. +2005-11-13,40.3858333,-122.2797222,Cottonwood,CA,other,180,BRIGHT LIGHT IN SKY, APPEARS BEFORE OUR VERY EYES! +2005-11-13,43.1775,-85.2527778,Greenville,MI,circle,60,dim then bright light +2005-11-13,41.3197222,-81.6269444,Brecksville,OH,fireball,120,Two bright fireball rounds,four straight-line Lights flashing green, red, and white in the middle,middle light a bit lower. 90 degree m +2006-11-13,46.1336111,-100.1611111,Strasburg,ND,teardrop,1680,My wife and I were heading south out of Strasburg, North Dakota scanning the morning sky for ducks and geese flying out to field feed, +2006-11-13,38.8338889,-104.8208333,Colorado Springs,CO,other,7,A calculated experience with another dimension. +2006-11-13,35.2269444,-80.8433333,Charlotte,NC,circle,300,2 BLACK OBJECTS SLOWLY TUMBLING ACROSS SKY PERFECTLY SPACED APART +2006-11-13,39.6133333,-105.0161111,Littleton,CO,other,120,I WAS ON MY WAY HOME WHEN I SAW I FLASHING LIGHTS THAT WOULD LOOK LIKE AN AIRPLANE BUT IT TURNED BACWARDS AND AIRPLANES CAN NOT GO BACK +2006-11-13,34.54,-112.4677778,Prescott,AZ,unknown,20,"Phoenix Lights"-like formation seen south of Prescott, Arizona +2006-11-13,33.7669444,-118.1883333,Long Beach,CA,triangle,5,V shaped light formation +2006-11-13,33.9525,-84.55,Marietta,GA,rectangle,120,Huge rectangular craft in the night sky +2007-11-13,33.4472222,-84.1469444,Mcdonough,GA,diamond,30,Diamond like crafts flying low. +2007-11-13,44.9583333,-124.0166667,Lincoln City,OR,oval,15,LINCOLN CITY OREGON SIGHTING +2007-11-13,33.7797222,-116.4644444,Cathedral City,CA,unknown,60,11-13-07 object over Palm Springs California leaves billowing white trail but makes no sound. +2007-11-13,32.7152778,-117.1563889,San Diego,CA,other,30,I saw four bright blue lights that hovered and zig zagged. +2007-11-13,32.7152778,-117.1563889,San Diego,CA,triangle,900,LOW FLYING/HUGE TRIANGULAR CRAFT/LARGER THAN A STEALTH! +2007-11-13,32.7152778,-117.1563889,San Diego,CA,triangle,600,Huge Delta-shaped craft over San Diego sky +2007-11-13,47.9791667,-122.2008333,Everett,WA,other,3,Silent Orange Flying Object in the clear night sky. +2007-11-13,35.8788889,-97.425,Guthrie,OK,disk,40,saucer is a delta triangle when directly overhead!! +2007-11-13,47.7558333,-122.3402778,Shoreline,WA,fireball,2,Very large bright green fireball +2007-11-13,32.8047222,-97.4447222,Lake Worth,TX,unknown,600,Two sets of four bright, round, evenly-spaced lights flying low over the highway +2007-11-13,33.1433333,-117.1652778,San Marcos,CA,formation,900,we are seeing a 5 light formation in a cross pattern for many minutes with little red lights erratically flying around the right side +2007-11-13,31.4172222,-89.5422222,Sumrall,MS,triangle,300,Triangle shaped craft producing no sound in my back yard. +2007-11-13,34.8697222,-111.7602778,Sedona,AZ,light,300,I saw three bright red/orange lights in a linear pattern, low in the southwest horizon. At first, I thought they might be Orion's belt +2007-11-13,29.0386111,-95.6983333,Sweeny,TX,light,600,We were looking at the stars , and noticed 3 lights moving back and forth, We could Not see the pattern till I saw the picture. +2007-11-13,34.0522222,-118.2427778,Los Angeles,CA,unknown,10,red lights over Los Angeles at 10:20 pm on 11/13/07 +2007-11-13,40.8,-96.6666667,Lincoln,NE,changing,120,Bright white light that change formation, had a limited duration. +2008-11-13,37.2152778,-93.2980556,Springfield,MO,other,25,Same craft as seen in Nijegen Holland, seen in Springfield, Mo. USA +2008-11-13,33.1030556,-96.6702778,Allen,TX,unknown,600,Entered atmosphere from the Far north as though falling 1ꯠ plus knots.fell then leveled out over Allen TX tried to turn light em +2008-11-13,44.5647222,-123.2608333,Corvallis,OR,diamond,60,a shooting star that turned into a UFO +2008-11-13,39.6538889,-88.0261111,Oakland,IL,fireball,300,large fireball with tail +2008-11-13,45.5236111,-122.675,Portland,OR,triangle,20,4 Large Triangular Objects flying low and silent over tanasbourne area around 7pm 11-13-08, Dim orange circles underneath. +2008-11-13,31.2169444,-98.3930556,Lometa,TX,disk,10,3 Large Lights on a horizontal saucer shaped object +2008-11-13,37.9780556,-122.03,Concord,CA,cross,60,It looked like a plane but it stopped in Midair and started going the other direction without turning around! +2008-11-13,47.2152778,-123.0994444,Shelton,WA,oval,5,Oblong shaped, silent, moved quickly across the sky and was glowing like pink beach glass. +2008-11-13,40.4233333,-104.7086111,Greeley,CO,fireball,5,A streak of light went across the sky and then it suddenly got bright and took off into the sky and disapeared. +2009-11-13,33.3244444,-96.7841667,Celina,TX,circle,180,MYSTERIOUS ORANGE SPHERE +2009-11-13,34.2163889,-119.0366667,Camarillo,CA,unknown,4,Bright buzzing light. +2009-11-13,37.2866667,-98.0255556,Harper,KS,light,300,It was a little after 3am, maybe 3:05am Nov.13thᄹ. My wife is a nurse at a hospital in Wichita,KS about 40miles north of where we liv +2009-11-13,43.2311111,-76.3011111,Phoenix,NY,light,120,White light over phoenix, ny made no sound +2009-11-13,27.1972222,-80.2530556,Stuart,FL,unknown,300,1 object entering our atmoshpere at amazing speeds suddenly stopped in mid fall, then 2 more objects came out of first one +2009-11-13,39.1619444,-84.4569444,Cincinnati,OH,fireball,600,Four low flying fireballs over Cincinnati. +2009-11-13,38.9975,-84.4963889,Taylor Mill,KY,fireball,120,Four streaking fireballs that turned into four solid lights over Cincinnati, OH. +2009-11-13,33.5441667,-84.2338889,Stockbridge,GA,triangle,120,We saw definitively a black craft in the rough shape of a triangle, moving very slowly at a low altitude in silence that night. +2009-11-13,28.6802778,-81.5097222,Apopka,FL,light,15,two bright lights flying over apopka +2009-11-13,37.6236111,-120.7527778,Hickman,CA,light,90,Unknown amber light moving north to south +2009-11-13,44.1244444,-73.1541667,New Haven,VT,circle,60,Very strange circular craft clearly seen at close range by two people. +2009-11-13,27.3361111,-82.5308333,Sarasota,FL,light,60,near aircraft +2009-11-13,41.6638889,-83.5552778,Toledo,OH,light,60,I saw bright multi-colored lights hoovering over downtown Toledo. ((NUFORC Note: Possible twinkling star. PD)) +2010-11-13,34.09,-117.8894444,West Covina,CA,changing,180,I seen what I thought was a star towards the mountain area and was looking at it because I never seen a star in that area of sky and it +2010-11-13,39.8402778,-88.9547222,Decatur,IL,unknown,60,this thing was no ordinary shape +2010-11-13,39.8122222,-121.5772222,Magalia,CA,fireball,60,the real deal were not alone +2010-11-13,40.2452778,-75.65,Pottstown,PA,sphere,5,Unknown object filmed from airplane, Pottstown, Pennsylvania. +2010-11-13,39.7944444,-87.3958333,Highland,IN,unknown,25,unexplained noise flying above house with no associated air traffic +2010-11-13,39.4408333,-78.9741667,Keyser,WV,light,7,I was in the back yard running my dogs and talking to my father on the phone when I sighted a light moving east to west approx. 5000 ft +2010-11-13,33.7630556,-81.245,Pelion,SC,circle,120,Light in the sky +2010-11-13,37.3394444,-121.8938889,San Jose,CA,fireball,5,Green FireBall flew across downtown SJ +2010-11-13,20.8947222,-156.47,Kahului,HI,formation,360,6 arclight orbs that seemed to be under intelligent control fly-by @ 5000ft. +2011-11-13,40.7719444,-73.9305556,Astoria,NY,cross,120,One bright light apearing to be a bright flash light or a star. Then the two of us noticed how bright the light was i noticed another p +2011-11-13,41.0813889,-81.5191667,Akron,OH,fireball,180,Bright fire in the sky, hovered and split off into four. +2011-11-13,39.3122222,-84.6505556,Ross,OH,light,10,In Ross Ohio saw light travel across the sky at very fast speeds. +2011-11-13,40.7002778,-73.5933333,Uniondale,NY,other,300,Humongous craft seen in Nassau county long island +2011-11-13,32.9808333,-80.0327778,Goose Creek,SC,fireball,300,We saw two orange fire balls come in from the east, following each other. They joined close together then flew north. In about one min +2011-11-13,38.6630556,-90.5769444,Chesterfield,MO,circle,4800,Yellow orange low circle shaped light over chesterfield missouri then disappears in a blink of an eye +2011-11-13,32.6277778,-96.4555556,Crandall,TX,disk,30,A glowing green oval-disk shaped object appeared in the sky. +2011-11-13,47.3483333,-122.1136111,Covington,WA,sphere,1200,Object hovering in the sky. Then starts to hover in a bumble bee like patterns. +2012-11-13,34.27515,-118.5498,Porter Ranch,CA,sphere,4,Witnessed red sphere traveling low, silent at very high rate of speed across valley at 2:00 a.m. +2012-11-13,34.2483333,-117.1883333,Lake Arrowhead,CA,circle,18,Moving, flying,orb-like, +2012-11-13,33.5205556,-86.8025,Birmingham,AL,egg,180,Metallic object rolling across morning sky +2012-11-13,38.9988889,-84.6266667,Florence,KY,sphere,70,Bright sphere heading west to east +2012-11-13,28.5380556,-81.3794444,Orlando,FL,circle,5,Fire like, dots shape similar to Texas state +2012-11-13,32.6730556,-97.4602778,Benbrook,TX,cigar,300,Flying cigar shaped object with six lights over Benbrook by the lake. +2012-11-13,43.2080556,-71.5380556,Concord,NH,formation,300,Quick spiral flying south over Concord, NH +2012-11-13,42.8863889,-78.8786111,Buffalo,NY,light,120,I saw a bright light off in the sky, no airplains were around +2012-11-13,39.1855556,-78.1636111,Winchester,VA,oval,1200,I was driving home from work yesterday and as I was going down Route 340 towards Berryville,VA I saw numerous oval shaped lights just h +2012-11-13,28.5380556,-81.3794444,Orlando,FL,fireball,600,Orange balls gliding through the sky over Orlando +2012-11-13,40.1244444,-87.63,Danville,IL,unknown,180,Bluish light +2012-11-13,47.0625,-109.4275,Lewistown,MT,fireball,300,Orange glow object in Central Montana +2012-11-13,32.7425,-117.0305556,Lemon Grove,CA,oval,240,Large white light moving across the sky +2012-11-13,40.2319444,-92.7083333,Novinger,MO,sphere,300,Small light low to ground in novinger mo +2012-11-13,41.5963889,-72.8780556,Southington,CT,sphere,600,3 Orange orbs in the night sky. +2012-11-13,38.4022222,-122.8227778,Sebastopol,CA,circle,2,Circular fast-moving object appears in early evening sky in Northern California. +2012-11-13,43.0716667,-70.7630556,Portsmouth,NH,rectangle,15,Large house sized object floating in mid-air near Portsmouth traffic circle. +2012-11-13,42.05,-71.8805556,Webster,MA,fireball,5,I was sitting in my computer room when I heard a very loud deep sizzling-like sound, I turned toward the window to see what looked like +2012-11-13,29.7855556,-95.8241667,Katy,TX,fireball,30,Glowing fireball going through night sky +2012-11-13,39.9611111,-82.9988889,Columbus,OH,formation,120,Three red lights in consistent formation, occasionally vanishing, and re-appearing. +2012-11-13,44.9636111,-93.8469444,Watertown,MN,light,120,Ufo in small town MN. +2012-11-13,41.9761111,-72.5922222,Enfield,CT,triangle,20,Vibrant yellow lights forming perfect triangle +2012-11-13,36.5483333,-82.5619444,Kingsport,TN,triangle,300,A silent triangle with three white lights on each point with a pulsing red light in the middle moved E to W then slowly toward SW. +2013-11-13,47.6419444,-122.0791667,Sammamish,WA,triangle,120,Crazy triangle UFO, flashing designs in light show over Sammamish, WA +2013-11-13,40.7877778,-74.3886111,Florham Park,NJ,light,5,Blue light observed over RT 24 northbound in the early morning. +2013-11-13,33.7669444,-118.1883333,Long Beach,CA,disk,900,Witnessed two objects in sky during two different occasions flying unnaturally. +2013-11-13,43.6136111,-116.2025,Boise,ID,light,300,Unknown extremely bright pulsing light in sky. +2013-11-13,41.0255556,-81.73,Wadsworth,OH,cigar,7200,Squadrons flying in formation and not in formation, all flying north, for 2 hours. +2013-11-13,43.0388889,-87.9063889,Milwaukee,WI,cigar,120,Two pitch white cylinders flying close to the moon in daylight. +2013-11-13,38.5816667,-121.4933333,Sacramento,CA,light,900,Very bright white light with 2 orange lights. +2013-11-13,34.4838889,-114.3216667,Lake Havasu City,AZ,disk,300,Object flying in the cold jet stream air and not leaving a vapor trail from it's hot exhaust like other jets were leaving! +2013-11-13,44.1969444,-72.5025,Barre,VT,oval,2400,Bright light/disk shaped ship with 5 windows hovering for at least 45 minutes near exit 6 I-89 +2013-11-13,44.5433333,-68.42,Ellsworth,ME,flash,14400,Colors were clearly seen red, blue/green/white/ red. I observed this object with only field binoculars. ((Venus??)) +2013-11-13,26.4516667,-81.9483333,Fort Myers Beach,FL,flash,5,I saw a massive brilliant jade green light flash in the sky above SW Florida near Lovers Key State park. +2013-11-13,41.9902778,-70.9755556,Bridgewater,MA,triangle,1800,Sighting of a number of craft with white and red lights. +2013-11-13,44.2947222,-90.8513889,Black River Falls,WI,fireball,30,Fireballs in sky that pertuded objects when lights went out. +2013-11-13,40.7608333,-111.8902778,Salt Lake City,UT,rectangle,300,Red and white lights above the great salt lake that appeared to be moving. +2013-11-13,42.5961111,-76.0936111,Mcgraw,NY,fireball,600,3 orange fire balls in Upstate New York. +2013-11-13,43.8013889,-91.2394444,La Crosse,WI,triangle,10,Triangle air craft. +2013-11-13,27.2436111,-80.83,Okeechobee,FL,fireball,3600,Orange fireballs in a pattern of three, winking out and returning in another location, repeatedly. +2013-11-13,29.5955556,-90.7194444,Houma,LA,formation,3,Huge ball or circle-going to fast to know . Light was bright bright , lit up the clouds , very white white light . Traveling super +2013-11-13,36.4252778,-89.6994444,Portageville,MO,triangle,3,Multiple triangular objects with red and white lights spotted over southeast Missouri. +2013-11-13,40.115,-111.6541667,Spanish Fork,UT,light,30,Three clustered bright red lights slowly descended and disappeared. +2013-11-13,39.9536111,-74.1983333,Toms River,NJ,triangle,3,Triangle craft seen over Toms River, N.J. +2013-11-13,38.7522222,-121.2869444,Roseville,CA,circle,600,Bright Orange balls of light in the sky. Stayed in one place for a few minutes then began moving North until they disappeared. +2013-11-13,43.7972222,-90.0772222,Mauston,WI,fireball,10,Fireballs. +2013-11-13,44.2947222,-90.8513889,Black River Falls,WI,fireball,60,Bright orange lights over Robinson road, hovered then vanished. +2013-11-13,34.1808333,-118.3080556,Burbank,CA,other,300,Boomerang UFO in Burbank, 11/13/13 at 10:30pm. +2013-11-14,48.0841667,-121.9675,Granite Falls,WA,circle,9000,Hundreds of objects fly over small town in Washington State. +1954-11-14,31.5830556,-96.6108333,Thelma (South Of),TX,disk,300,11/14/1954 WHILE HUNTING OBJECT CIRCLED, LANDED AND THEN TOOK OFF STRAIGHT OUT OF SIGHT. +1966-11-14,27.8002778,-97.3961111,Corpus Christi,TX,oval,300,I saw an oval shaped object that stood in the air and made square turns and left almost straight up at thousands of miles per hour. I +1984-11-14,32.4063889,-97.2113889,Alvarado,TX,fireball,2,Fireball in Alvarado +1988-11-14,32.4708333,-100.4055556,Sweetwater,TX,changing,1800,We know we weren't the only ones to see it, but there was never any media reports about it. +1989-11-14,35.9986111,-96.1138889,Sapulpa,OK,triangle,180,Triangular object flying west +1990-11-14,43.4138889,-71.9855556,New London,NH,other,600,formation of lights pulls manuevers then shoots off +1994-11-14,32.7152778,-117.1563889,San Diego,CA,other,420,Rectangle lights in circluar motion zig zagging through the sky within seconds. +1996-11-14,46.3141667,-114.1119444,Corvallis,MT,sphere,3,glowing orb like object displacing dense fog +1996-11-14,27.0591667,-80.1366667,Hobe Sound,FL,fireball,5,Green fireball moving at high rate of speed. +1997-11-14,48.9180556,-122.7433333,Birch Bay,WA,other,1200,Saw two objects go from northwest southwest over ocean and san jaun islands twords bellingham with a long trail +1997-11-14,45.5236111,-122.675,Portland,OR,formation,18000,Two bright lights appeared over the neighbors house and seem to go back and forth, stand still and pulsated at the same time. They loo +1997-11-14,43.1125,-84.9855556,Palo,MI,triangle,1800,While outside at a basketball game, several people and I saw ann oject rise straight up and hover then fly, very low, over our heads. +1997-11-14,48.9391667,-119.4344444,Oroville,WA,triangle,90,7 lights 1 amber at the point the remaining 6 were red with 3 down each side.It was huge and silent.It passed by extremely low in the v +1997-11-14,37.8044444,-122.2697222,Oakland,CA,disk,900,Saw hovering craft above SF Bay Area above Oakland Coliseum area. Craft was saucer like from what we could see. The top was unlit and +1997-11-14,47.3294444,-122.5788889,Gig Harbor,WA,formation,300,UFO sighting Gig Harbor Washington Nov. 14 1997. ((NUFORC Note: Many, many reports of this dramatic event. PD)) +1997-11-14,47.7575,-122.2427778,Kenmore,WA,rectangle,900,I'm wondering why I can't find info on a UFO siting that took place between 9/98 &9/99 in Seattle area. An enormous craft moved slowly +1997-11-14,40.0455556,-86.0086111,Noblesville,IN,fireball,20,AS WE WERE LINING UP OUR REFLECTOR TELESCOPE WITH POLARIS. SEEN SOMETHING HIT THE ATMOSPHERE, STOPPED FOR 2-5 SEC. AND DISAPPER. WITHOU +1997-11-14,47.0380556,-122.8994444,Olympia,WA,formation,20,Cluster of lights moving from West to East (I think) very slowly. Similar to shooting stars, but much slower. +1997-11-14,47.7361111,-122.6452778,Poulsbo,WA,formation,45,One long streak with various sizes of blobs and streaks with another below it. They streaked across the northern sky at about 40° abov +1997-11-14,47.6063889,-122.3308333,Seattle,WA,formation,8,Siting at stop light on Alaskan Way, heading west. Streaks of lights came flying across the sky, coming from over the Puget Sound. Th +1997-11-14,47.6063889,-122.3308333,West Seattle,WA,formation,90,Full clear sighting and recall of November 14th, ྜྷ event--Seattle, WA +1997-11-14,47.8108333,-122.3761111,Edmonds,WA,formation,90,Mass of lights moving simultaneously from west to east. +1997-11-14,48.7052778,-119.4383333,Tonasket (14 Miles East Of),WA,formation,180,Two couples see 2 brilliant lights and a formation of smaller lights following behind them in Central WA. +1997-11-14,47.5302778,-122.0313889,Issaquah,WA,other,120,Large craft flew within 1 mile of 4 of us, moving at a medium speed, then sped up and went over the mountain. +1997-11-14,47.9447222,-122.3033333,Mukilteo,WA,formation,120,Two large bright lights leading streams of hundreds, or many thousands of smaller bright lights, streaming across the sky. +1997-11-14,47.9130556,-122.0969444,Snohomish,WA,formation,10,Large object seen traveling northeast at a slow rate of speed approximately 300-500 feet above the ground and 250 to 300 yards from obs +1997-11-14,48.4780556,-120.185,Winthrop,WA,fireball,120,Saw out of window, thought was meteors. kinda orange. +1997-11-14,48.4758333,-122.3241667,Burlington,WA,formation,30,2 groups of 10 to 15 burning objects going from W by Nw sky towards E by NE sky moving much slower than a shooting star; moving at a co +1997-11-14,47.4830556,-122.2158333,Renton,WA,formation,30,4 yellowish-orange balls with streaming tails moving very slowly from West to East disappearing behind the Cascade foothills. +1997-11-14,46.7163889,-122.9530556,Centralia,WA,sphere,180,Magenta fog after Seattle Lights sighting +1997-11-14,48.0097222,-122.5247222,Freeland (Whidbey Island),WA,formation,120,Streaks of light moving in a very flat pattern from west to east. There appeared to be two pulsing or flashing lights at the front . +1997-11-14,45.2102778,-123.1975,Mcminnville,OR,formation,10,We were out enjoying the full moon. These things appeared, from over the hills. I was the first to see them, and it took me about 3 s +1997-11-14,47.4830556,-122.2158333,Renton,WA,formation,90,At work going to lunch. 8 objects in a row 10 to 12 objects in a row horzintal,under the 8, traviling from the south to the north at a +1997-11-14,47.5288889,-121.8241667,Snoqualmie,WA,formation,120,We were heading west on the North Bend to Fall City Road. (203?) There were two parallel primary bright objects with multiple bright ob +1997-11-14,45.5319444,-122.29,Corbett,OR,formation,180,We were driving west on chamberlain rd. which overlooks the columbia river gorge toward washugal washington. we witnessed several, at l +1997-11-14,47.0380556,-122.8994444,Olympia (East Of),WA,formation,120,We drove up to my house and looked to the North. At about a 45 degree angle we observed a flight of ???? moving from left to right in a +1997-11-14,47.0380556,-122.8994444,Olympia,WA,fireball,30,Fireball object in Puget Sound Area +1997-11-14,48.7597222,-122.4869444,Bellingham,WA,formation,90,Consistent with behavior of object burning on re-entry +1997-11-14,33.8491667,-118.3875,Redondo Beach,CA,fireball,3,Blue-Green Light ball streaked in SW driection at low altitude making distinguishable buzzing sound. Object appeared to be traveling at +1998-11-14,42.0341667,-91.5975,Marion,IA,cylinder,300,ten (10) white cylinder shaped objects flying in standard formattion, for appox. 5 minutes. +1998-11-14,39.7391667,-104.9841667,Denver,CO,light,840,My son and I saw and videotaped a sighting in the sky north of Denver on 11/14/98 beginning at 17:24 and ending at 17:38. +1998-11-14,33.4222222,-111.8219444,Mesa,AZ,flash,2,Bright blue-white flash on or near the northern horizon. It flared up and then was gone. +1998-11-14,46.7380556,-119.9016667,Mattawa,WA,disk,5,Disk flew over raodway, unlit except from reflection of car lights +1998-11-14,45.9633333,-116.2552778,Fenn,ID,fireball,30,ball of light shot across sky - lit up like daytime at 9:15 PM +1998-11-14,42.3683333,-83.3527778,Livonia,MI,fireball,30,1st sighting: A green-blue fireball streaked across the eastern sky, north to south approximately at 180 degrees. It started out as a s +1999-11-14,35.6008333,-82.5541667,Asheville,NC,other,14400,TRIANGULAR MOVEMENT OF TWO LIGHTS OVER ASHEVILLE, NC +1999-11-14,35.2561111,-88.9877778,Bolivar,TN,light,2040,A number of objects moving in sky with red and white lights in specific formations +1999-11-14,32.9616667,-96.8288889,Addison,TX,triangle,5,I saw a black Triangle containing 6 lights traveling due south for about 5 seconds before it disappeared +1999-11-14,27.1972222,-80.2530556,Stuart,FL,oval,1800,Bright light appearing suddenly....then a large saucer like craft with a tranlucent like skin appeared over our head! +1999-11-14,34.2669444,-118.3013889,Sunland,CA,unknown,2400,Two parallel contrails were seen in the western sky approximately over eastern San Fernando Valley heading from south-east to north-wes +1999-11-14,33.1372222,-95.8391667,Cumby,TX,unknown,300,Two adults and one child witnessed a bright object moving in a snake like pattern across the sky then quickly fading away. +1999-11-14,43.8869444,-89.7061111,Grand Marsh,WI,circle,300,It looked white and round and bright. +1999-11-14,41.8875,-88.3052778,Geneva,IL,unknown,60,Two non-blinking red lights moved south to north. The lights covered 90 degrees of arc in approximately one minute. There were no whit +2000-11-14,30.4088889,-89.435,Kiln,MS,unknown,180,Helicopter "Escorting" Strange object with Straight row of Rectangular Lights towards Seal Base +2000-11-14,46.9966667,-120.5466667,Ellensburg,WA,unknown,900,Flashin-and-lights +2000-11-14,30.1388889,-82.9519444,Mcalpin,FL,fireball,5,two firery lights emmitting debris with an aircraft neerby +2000-11-14,46.9966667,-120.5466667,Ellensburg,WA,chevron,420,NOW I HAVE SEEN BOTH CRAFTS: A 1975 SUACER/ AND A 2000 CHEVRON! +2000-11-14,38.573055600000004,-82.8302778,Greenup (Rural),KY,fireball,180,5 to 10 fireball shapes come together, seperate, and then all blint on & off at different times. +2000-11-14,32.7152778,-117.1563889,San Diego,CA,light,600,SLOW MOVING LIGHT OVER SAN DIEGO, CA. +2001-11-14,35.1494444,-90.0488889,Memphis,TN,triangle,120,Second sighting from the same general ground location, though not in the same location in the sky. +2001-11-14,34.0522222,-118.2427778,Los Angeles,CA,circle,10,Round metalic object over Los Angeles which disappeared after several seconds +2001-11-14,34.1458333,-118.8047222,Westlake Village,CA,sphere,45,redish-orange light moves across sky,hovers,drops a substance,then rapidly disapears +2001-11-14,42.6611111,-70.9972222,Boxford,MA,triangle,300,Large slow V shaped object making no noise flew overhead in Boxford, Mass +2001-11-14,37.6455556,-84.7722222,Danville,KY,triangle,600,triangular object with lights in each corner hovering over a school campus seen by wife and I +2001-11-14,44.9958333,-92.8791667,Lake Elmo,MN,chevron,300,5 mi sighting of a soundless chevron craft with six lights as bright as those on a baseball field . +2002-11-14,34.0233333,-84.6155556,Kennesaw,GA,sphere,60,Stars that run when you see them? +2002-11-14,37.6688889,-122.0797222,Hayward,CA,egg,600,Strange craft over Bay Area +2002-11-14,30.4505556,-91.1544444,Baton Rouge,LA,unknown,900,bright lights appear suddenly at high altitude during a clear day ,make formation and disappear +2002-11-14,37.485,-119.9652778,Mariposa,CA,oval,20,FAST-MOVING BRILLIANT OVAL OBJECT SEEN IN YOSEMITE SKY. +2003-11-14,37.5058333,-77.6494444,Midlothian,VA,circle,900,This was pretty weird, we live in the country somewhat. My house is high on a hill and my deck you can see the woods far away. I woke u +2003-11-14,48.1183333,-123.4294444,Port Angeles,WA,unknown,15,Unexplainably loud , extremely close, hovering noise which resembles a large aircraft. +2003-11-14,32.7763889,-79.9311111,Charleston,SC,sphere,300,silver orb associated with chemtrails +2003-11-14,45.8625,-122.6691667,La Center,WA,triangle,420,triangular craft spotted in washington state +2003-11-14,28.8002778,-81.2733333,Sanford,FL,light,900,Traveling east on I4 I spotted a bright white light w/ 2 flashing red lights +2003-11-14,26.9294444,-82.0455556,Punta Gorda,FL,flash,2,flashes and power failure in florida +2003-11-14,30.0225,-82.3397222,Lake Butler,FL,light,300,bright white light shot down below treeline +2003-11-14,31.3363889,-81.9563889,Hortense,GA,cigar,7200,Object appeared just below the Big Dipper. Colors were red,yellow,green and blue. Seemed to descend as we watched it. Began to ascend +2003-11-14,28.7497222,-82.2969444,Floral City,FL,changing,1200,Circular/Oval shape with red, orange, blue and green lights hovering +2003-11-14,34.1991667,-118.1869444,La Canada Flintridge,CA,other,480,didnt see object very well but saw a HUGE amazing yellow light covering my WHOLE window and saw only one of its lights from the object +2004-11-14,39.7683333,-86.1580556,Indianapolis,IN,formation,1200,Red lights +2004-11-14,34.2783333,-119.2922222,Ventura,CA,formation,240,Three orange spheres traveling silently in triangle formation until lead sphere broke formation. +2004-11-14,47.8211111,-101.2983333,Max,ND,flash,300,Flashing lights moving quickly in the sky +2005-11-14,40.0719444,-83.5563889,Mechanicsburg,OH,light,15,White light again spotted hovering in same location +2005-11-14,41.5963889,-73.9113889,Wappingers Falls,NY,circle,3600,Circular object with pulsing light seen over Stewart Air National Gaurd base in Newburgh New York. ((NUFORC Note: Venus sighting.)) +2005-11-14,36.9861111,-120.6255556,Dos Palos,CA,unknown,4380,UFO Sighted in Central California - Dos Palos. ((NUFORC Note: Sighting of Venus. PD)) +2005-11-14,33.0197222,-96.6986111,Plano,TX,fireball,7,A green fireball coming down at a rapid speed disappeared before it would have hit the ground. +2005-11-14,33.0461111,-96.9938889,Lewisville,TX,flash,2,BRIGHT flash that looked like someone taking a picture from up above with streak of light that faded.... +2005-11-14,30.2669444,-97.7427778,Austin,TX,fireball,1,Burning debrie falling from space. ((NUFORC Note: Possible meteor. PD)) +2005-11-14,31.5491667,-97.1463889,Waco,TX,light,1,bright blue/turqoiuse colored light , lights up the whole lower level of the sky for apprx. 1 sec. ((Meteor??)) +2005-11-14,34.1722222,-118.3780556,North Hollywood,CA,fireball,3,I saw a Fireball heading north west over my head. I first saw it at about 10 degrees to the right above my head and I watched it fall d +2005-11-14,38.2325,-122.6355556,Petaluma,CA,light,3,((NUFORC Note: Sighting of Mars. PD)) Unknown light following moon. +2005-11-14,33.8702778,-117.9244444,Fullerton,CA,circle,10,green star like object shot across sky +2005-11-14,33.9525,-84.55,Marietta,GA,teardrop,7200,There is a bright object hovering below the moon at about 6:00 o'clock. It appears to move rapidly from side to side. ((Mars??)) +2005-11-14,42.3583333,-71.0602778,Boston,MA,light,600,Bright white/red light over Boston then fades out +2005-11-14,33.0580556,-112.0469444,Maricopa,AZ,fireball,3,Large Green Light / Fireball +2005-11-14,30.3580556,-90.0655556,Mandeville,LA,fireball,10,neon green fireball or sphere falling or moving across the sky. ((Meteor??)) +2006-11-14,47.7675,-117.3538889,Mead,WA,circle,5,Mt.Spokane Wa. -large white round globe shaped light moving across sky heading towards ground +2006-11-14,47.4019444,-122.3230556,Des Moines,WA,unknown,60,I was driving Southbound on I-5, Milepost 147, at 05:57 A.M., just passed the old Des Moines, Wa. garbage dump. +2006-11-14,27.5872222,-82.4252778,Parrish,FL,formation,120,Daytime spheres. +2006-11-14,33.4483333,-112.0733333,Phoenix,AZ,light,300,Again...Lights over the Far North Valley ...Third time in 7 months +2006-11-14,33.8566667,-112.6225,Morristown,AZ,oval,600,An object with 9 lights that sometimes flashed from left to right, and were sometimes steady. +2006-11-14,61.2180556,-149.9002778,Anchorage,AK,light,2,greenish ball of light moving rapidly in northern direction at exactly 11:25 pm Alaska time Nov. 14, 2006 +2007-11-14,42.225,-73.735,Claverack,NY,cross,2,Anyone else seeing this right now? ((NUFORC Note: Sighting of Venus. PD)) +2007-11-14,30.3672222,-89.0927778,Gulfport,MS,fireball,2,Bright Green Ball Falls From Sky (and other sightings) +2007-11-14,32.7152778,-117.1563889,San Diego,CA,circle,600,Bright orange ascending then hovering light with smaller red flashing lights in center +2007-11-14,32.7152778,-117.1563889,San Diego,CA,changing,900,Craft exhibiting a bay of red lights flew in from over the Pacific, hovered for several minutes, then flew off into spa +2007-11-14,30.3958333,-88.8852778,Biloxi,MS,triangle,30,Triangular object in Biloxi, MS above I-10 +2007-11-14,36.6002778,-121.8936111,Monterey,CA,triangle,10,Triangular craft, three distinct white lights on each corner, high altitude, moved silently and swiftly and like a swaying glider. +2007-11-14,32.0833333,-81.1,Savannah,GA,circle,120,moving red light over savannah georgia sky +2007-11-14,34.2241667,-118.2391667,La Crescenta,CA,circle,3000,Three circular objects moving at good pace in SW direction. ((NUFORC Note: Stars or satellites?? PD)) +2007-11-14,37.6922222,-97.3372222,Wichita,KS,triangle,120,It was about 11:00 pm I was outside smoking a cigarette because I don’t smoke inside. I was talking to my spouse and I looked up becaus +2008-11-14,38.2769444,-112.6402778,Beaver,UT,circle,600,Bright Stationary object in the sky above Beaver Utah during early morning 8:40 AM +2008-11-14,31.7586111,-106.4863889,El Paso (Fort Bliss),TX,cigar,600,Cigar-shaped UFO moving south-southwest towards Mexico +2008-11-14,34.1577778,-118.6375,Calabasas,CA,chevron,360,We were having dinner on our deck in our hillside home which overlooks the SF Valley on Nov 14 2008 @ 6:30pm.We saw a huge V shaped +2008-11-14,34.0522222,-118.2427778,Los Angeles,CA,chevron,600,incomplete V formation of red flashing lights flying. +2008-11-14,42.7675,-78.7441667,Orchard Park,NY,other,1800,Large amber colored light +2008-11-14,27.9655556,-82.8002778,Clearwater,FL,light,30,a orange light going straight up by the moon dissapered as it fly right next to the moon. +2008-11-14,33.8352778,-117.9136111,Anaheim,CA,disk,300,Spinning top shaped craft photographed in california November 2008 +2008-11-14,48.76,-98.3677778,Langdon,ND,flash,300,An orange, glowing shape followed me in my pickup causing it to die and interfered with my phone outside of Langdon, North Dakota. +2008-11-14,37.775,-122.4183333,San Francisco,CA,triangle,60,Dim Orange +2008-11-14,40.7608333,-111.8902778,Salt Lake City,UT,light,12,Eastern Salt Lake City disappearing light sighting. +2009-11-14,37.2294444,-80.4141667,Blacksburg,VA,other,300,Nov. 14, 2009 - UFO sighting in Blacksburg, VA at approx. 5:45PM - 3 Lights, no movement, disappeared into thin air +2009-11-14,44.2444444,-69.7719444,Farmingdale,ME,flash,60,bright lights above us that lit up the night sky with no noise from the object +2009-11-14,34.9391667,-79.7741667,Rockingham,NC,triangle,10,Triangle Craft 3 White Lights- non-flashing +2009-11-14,35.9605556,-83.9208333,Knoxville,TN,diamond,120,My husband and I were just walking in our neighborhood and saw something we can not explain.I am posting this because neither of us +2009-11-14,36.6002778,-121.8936111,Monterey,CA,light,10,Bright, yellow sphere of light streaks and shifts (manuevers) across sky then suddenly disappears. +2009-11-14,38.1805556,-99.0983333,Larned,KS,circle,10,3 UFO's Sighted in Larned, KS flying southwest to northeast - went from 1 side of the sky to the next in approximately 5-7 seconds +2009-11-14,39.5522222,-84.2333333,Springboro,OH,oval,300,I saw a hazy oval circling a group of trees. +2009-11-14,43.8013889,-91.2394444,La Crosse,WI,cross,60,String of lights like string of geese moving very fast from Northwest to southeast. +2010-11-14,35.7327778,-84.3338889,Loudon,TN,light,900,Large Mass of UFO's (lights) fly over Loudon, Tn. +2010-11-14,41.2222222,-73.0569444,Milford,CT,cylinder,1200,Cylindrical, faceted silver metalic rotating object flying East -West.. +2010-11-14,37.5536111,-77.4605556,Richmond,VA,unknown,360,Slow moving craft with short bursts of vertical contrail.... +2010-11-14,40.8388889,-89.8863889,Brimfield,IL,light,3,small bright sphere with red gas cloud in cornfield +2010-11-14,32.9438889,-103.3480556,Lovington,NM,circle,1200,Lovington new Mexico UFO with crash +2010-11-14,29.6130556,-82.8177778,Trenton,FL,cross,12,Object portal exit +2010-11-14,27.9905556,-82.6933333,Safety Harbor,FL,light,3600,I went to the pier by my house and witnessed dozes of UFOs in the sky. +2010-11-14,37.9622222,-122.3444444,San Pablo,CA,circle,20,12 circle objects flying over san pablo ca +2010-11-14,39.6411111,-85.1411111,Connersville,IN,fireball,180,No Sound was emitted from the craft and was at low altitude and was not any conventional craft. +2010-11-14,41.4277778,-74.1663889,Washingtonville,NY,unknown,120,The lights, that type of illumination on a plane or jet I have never seen before, and ONLY 2 of them, no others. +2010-11-14,42.2711111,-89.0938889,Rockford,IL,triangle,4,Black "shadow"(dim light outlined) triangular craft spotted gliding silently in night sky over Rockford, IL. +2011-11-14,44.0747222,-89.2877778,Wautoma,WI,fireball,900,Four orange fireballs seen over Wautoma, WI +2011-11-14,39.0997222,-94.5783333,Kansas City,MO,oval,120,North Kansas City UFO +2011-11-14,42.2625,-71.8027778,Worcester,MA,unknown,30,2 UFO's with dim lights and moving with no sound. +2011-11-14,42.1469444,-91.68,Lafayette,IA,light,15,Stationary High-Magnitude Light Dimming Out +2011-11-14,41.5286111,-109.4655556,Green River,WY,triangle,15,I was in my back yard and loooked up and saw 3 perfecct lights in a fast direction to the north then two otheerr ligghts vered of +2011-11-14,34.1083333,-117.2888889,San Bernardino,CA,light,300,Light the color of fire floating in the sky +2011-11-14,29.6513889,-82.325,Gainesville,FL,light,2,Darker Bright Blue Light Went Faster Than a Jet Fighter In Gainesville, FL +2011-11-14,33.6116667,-111.7166667,Fountain Hills,AZ,light,3,My daughter (47)just came back from walking her dog and told Me her dad (69) and Mom (68)that she just observed a blue light just like +2011-11-14,47.6063889,-122.3308333,Seattle,WA,fireball,60,Reddish/Orange light seen over Seattle, WA +2011-11-14,43.9705556,-89.8166667,Friendship,WI,formation,2,Line of White Lights in Slanted Formation +2011-11-14,39.0638889,-108.55,Grand Junction,CO,unknown,1800,Very bright crisp star like object seen in eastern aspect of sky over grand mesa. object changed colors from red to green to blue. Co +2012-11-14,36.8188889,-76.2752778,Chesapeake,VA,formation,50,A formation of several orange circular lights gliding through the sky. +2012-11-14,40.835,-73.1316667,Lake Ronkonkoma,NY,sphere,60,Low flying disc with three big flashing circular lights. +2012-11-14,33.6,-117.6711111,Mission Viejo,CA,light,480,Two very bright red and white lights flashing in the sky completely still and silent befor disappearing at very high speeds. +2012-11-14,36.8188889,-76.2752778,Chesapeake,VA,formation,50,7 to 8 orange balls in a line, 4 additional balls from top left coming down T an angle.no sound and I followed it across th sky as f +2012-11-14,46.1383333,-122.9369444,Longview,WA,fireball,2,Driving north on I-5 just before the last bend in the freeway before exit 36. Was pacing an Amtrak train and looked to make sure I was +2012-11-14,40.1413889,-74.1002778,Allenwood,NJ,triangle,30,Triangle, rainbow lights over Garden State Parkway. +2012-11-14,26.5625,-81.9497222,Cape Coral,FL,sphere,600,UFO's fly by festival in Cape Coral Florida on 11/10/2012 +2012-11-14,45.6388889,-122.6602778,Vancouver,WA,fireball,180,Floating red orange objects. +2012-11-14,45.6388889,-122.6602778,Vancouver,WA,fireball,30,Fiery glowing object seen in Vancouver, WA. +2012-11-14,45.0244444,-123.9452778,Otis,OR,formation,180,5 red star like lights appeared in the sky. +2012-11-14,41.9,-71.0902778,Taunton,MA,triangle,15,Triangle lights seen then gone instantly. +2012-11-14,45.6388889,-122.6602778,Vancouver,WA,fireball,180,Multiple lights over Vancouver, WA, headed towards Portland, OR on 11/14/2012 around 5:30. +2012-11-14,40.7258333,-73.5147222,Levittown,NY,light,180,2 large, bright Orange/Amber circular lights seen by two retired-teachers +2012-11-14,41.8455556,-87.7538889,Cicero,IL,fireball,44,Ufo passes from northwest to southeast casually at low altitudes in cicero, ill. +2012-11-14,44.1511111,-72.4933333,Graniteville,VT,triangle,840,Triangle shape lights (red/green/blue) moving slowly westward. +2012-11-14,48.7597222,-122.4869444,Bellingham,WA,circle,5,A bright green orb seen streaking over Bellingham Washington in a night sky. +2012-11-14,40.2969444,-111.6938889,Orem,UT,light,120,We saws ourselves up in the sky! some UFO's! they were blinkin up theres, from red to white. Up there a scheming. There were 7 and they +2012-11-14,38.5816667,-121.4933333,Sacramento,CA,fireball,3,Orange fireball heading down to ground +2012-11-14,37.5958333,-122.0180556,Union City,CA,light,1080,12 Orange Lights Flying Objects. +2012-11-14,37.5958333,-122.0180556,Union City,CA,light,600,12 red color UFOs, at Union City, CA. +2012-11-14,47.7661111,-116.7855556,Hayden,ID,circle,600,Red orange circle flares for about 10 minutes. +2012-11-14,61.2180556,-149.9002778,Anchorage,AK,disk,300,Saucer with bright lights, then spiky halo in colors, over Cook Inlet, Anchorage. +2012-11-14,40.7608333,-111.8902778,Salt Lake City,UT,rectangle,20,Eight dim red rectangles in a string traveled slowly then went out one by one, appearing to dissolve. +2012-11-14,40.5,-111.95,West Jordan,UT,fireball,300,We were in our car driving west (oquirrh mountains). I look up and I thought I saw a shooting star because I see a big ball with little +2012-11-14,40.5308333,-112.2975,Tooele,UT,other,120,Rotating-Steady set of lights in the sky in Western Utah near (just south of) the I-80 corridor. +2012-11-14,34.5441667,-91.9688889,England,AR,triangle,420,Large black, triangular shaped aircraft with many bright white lights hovering over rural area along Hwy 161. +2012-11-14,35.9605556,-83.9208333,Knoxville,TN,circle,45,I observed what I thought was a low flying plane, but as I approached I realized it was stationary and hovering. +2012-11-14,37.8716667,-122.2716667,Berkeley,CA,diamond,5,Green non flashing flies north diamond in shape. +2012-11-14,47.2530556,-122.4430556,Tacoma,WA,flash,120,Their Real ..Do not believe everything your government tells you ,High Science holds the key. +2013-11-14,37.3661111,-81.1027778,Princeton,WV,other,60,Flat precise platinum line viewed low in sky, descending at sharp angle, tilted to show shape, modified triangular, immediately masked. +2013-11-14,44.0536111,-71.1288889,North Conway,NH,formation,10,Lighted Craft above tree line +2013-11-14,44.6688889,-90.1716667,Marshfield,WI,circle,90,Marshfield WI - 5 lit orange orbs in night sky which darted about then two darted away and three disappeared +2013-11-14,34.1975,-119.1761111,Oxnard,CA,diamond,30,Diamond shaped, rainbow lights, transparent object. +2013-11-14,44.8108333,-73.0836111,Saint Albans,VT,circle,300,2 bright orange orbs silently flying through the sky. +2013-11-14,44.6705556,-70.1516667,Farmington,ME,fireball,600,7 bright orange fireballs travelling easterly over Farmington +2013-11-14,37.0297222,-76.3455556,Hampton,VA,cigar,10,Cigar, wingless, gray aircraft with no lights that moved slowly and then disappeared. +2013-11-14,40.2736111,-76.8847222,Harrisburg,PA,circle,3600,Large Bright Orb Appearing Periodically. +2013-11-14,39.0997222,-94.5783333,Kansas City,MO,sphere,120,Red pulsing orb flying over Kansas City, MO. +1953-11-15,40.4416667,-74.1302778,Keansburg,NJ,circle,540,In November, 1953, at 0300, a silvery sphere moves slowly overhead, changes direction, and disappears over the horizon. +1956-11-15,45.4647222,-98.4861111,Aberdeen,SD,circle,120,Traveled south to north at a slow speed,(90deg. of arc in two min). Size of a half dollar coin at arms length, had a neon orange glow. +1958-11-15,41.8711111,-71.5525,Greenville,RI,disk,600,Five small disk or spherical-shaped objects merging with a large saucer-shaped object observed by three whitnesses in 1958. +1959-11-15,40.4166667,-86.8752778,Lafayette,IN,circle,1800,Observed white object for about 20 minutes in Nov. 1959 which approached and then flew away. +1960-11-15,39.1141667,-94.6272222,Kansas City,KS,unknown,300,Two witnesses see ball of light come over horizon, then speed up and disappear before their eyes. +1962-11-15,28.8830556,-97.7127778,Runge,TX,sphere,60,creature in transparent sphere panics at being seen by nine year old boy +1964-11-15,35.1494444,-90.0488889,Memphis,TN,circle,600,The "Moon of Memphis" looked simular to the white full moon in size and brightness but rises to be a star. +1964-11-15,35.1494444,-90.0488889,Memphis,TN,sphere,900,A white full moon shaped ufo hovered for several minutes then started to ascend in the sky into space +1965-11-15,40.8261111,-73.5025,Syosset (Long Island),NY,disk,420,Observed a disk-shaped object about the size of a dime ( if held at arm's length )for several minutes against a blue sky until it slowl +1965-11-15,40.7141667,-74.0063889,New York City (Queens),NY,oval,1200,Saw this object directly overhead.....about 65 ft. long emiting a reddish glow.went 1/2 block to my girlfrends house, got my camera, wh +1966-11-15,33.6602778,-117.9983333,Huntington Beach,CA,circle,10,Ring of blue lights approx 200 in diameter slowly flying cross night sky at 500 feet in 1966 +1966-11-15,36.0997222,-80.2444444,Winston-Salem,NC,triangle,60,3 white lights high in the sky,making a 90 degree fast turn +1967-11-15,48.9938889,-122.7458333,Blaine,WA,unknown,36,UFO flyover during war games. +1970-11-15,39.9611111,-82.9988889,Columbus,OH,sphere,3600,I saw the Three Red Lights back in the 70's. +1970-11-15,40.5741667,-74.6102778,Somerville,NJ,disk,3600,We Had An Alien Trapped! +1971-11-15,30.9088889,-98.1930556,Lake Victor,TX,sphere,8,Large Bright Blue Ball of light at very low altitude. +1973-11-15,24.5552778,-81.7827778,Key West,FL,disk,30,Saucer craft with red/green alternating lights on its midsection seen within 500 yards, travelling slowly at first, then vanishes +1973-11-15,34.6608333,-87.6944444,Colbert Heights,AL,disk,300,Hovering object with circulating yellow and green lights slowly began to move before attaining hyper speed from virtual dead stop +1973-11-16,40.7141667,-74.0063889,New York City (Manhattan),NY,disk,2,Imagine vertical line in space i'm writng in coming back around after complete turn. +1974-11-15,60.5427778,-145.7575,Cordova,AK,disk,18000,UFO ALIEN ABDUCTION AND SPACE CRAFT INCOUNTER A DEMENSHONAL SPEED TRAIL WAS LEFT +1974-11-15,33.5602778,-81.7197222,Aiken,SC,changing,60,parallelogram shape outline only, no matter (substance) visible between the inverting of itself changing from red to green +1974-11-15,44.4836111,-84.7797222,Higgins Lake,MI,circle,600,Higgins Lake ,Mi. Nov.1974 at night. Round, bright white object hovers over the lake. +1974-11-15,34.1866667,-118.4480556,Van Nuys,CA,teardrop,240,I SAW WHAT APPEARED TO BE A "FALLING STAR" (A BRIGHT BALL OF LIGHT);JUST ABOVE THE SANTA MONICA MOUNTAINS.THE LIGHT JUST KEPT MOVING IN +1975-11-15,42.6525,-73.7566667,Albany,NY,circle,30,UFO Sighting Occurred: 11/?/1975 approx 8:00pm EST Location: Albany, NY Shape: Bright, White light Duration: approx 30 seconds I just +1975-11-15,42.2172222,-73.865,Catskill,NY,formation,20,On my way across the rip van winkle bridge with my mother as a passenger we stopped my truck when we saw multiple dark gray football sh +1975-11-15,40.1052778,-85.6802778,Anderson,IN,disk,300,Large craft with lights and whirring sound. Object stopped mid air. Lights sequenced. Object darted and stopped twice. +1975-11-15,41.1538889,-80.7016667,Girard,OH,oval,45,low flying oval light with zig zag bands on it . +1975-11-15,25.7738889,-80.1938889,Miami,FL,disk,240,The object ws sighted from the cockpit of a Choey Lee sloop, docked by a condo on a causwat between Miami & Miami Beach. It first appea +1975-11-15,42.6666667,-71.7055556,Townsend,MA,circle,1200,Bright object resembling a full moon with strobe like chaser lights going around the bottom. Used a spot light then left. +1976-11-15,44.4202778,-83.3308333,Oscoda,MI,disk,3600,No sound, Two search lights spotting the ground, moved slowly 10 ft. above the ground. +1976-11-15,41.9,-71.0902778,Taunton,MA,fireball,900,Large orange/yellow sphere w/pulsating energy imploded , disappeared then seemed to exploded returning to preious shape but larger. +1976-11-15,41.4169444,-81.5275,Bedford Heights,OH,oval,900,LIGHT BLUE OBJECT LITE UP WAS SEEN DOING SUDDEN STARTS AND STOPS FREQUENT DIRCTION CHANGES FOR 10-15 MIN +1977-11-15,41.5033333,-74.0108333,Newburgh,NY,disk,600,Stationary UFO in Newburgh Upstate New York 1975. ((NUFORC Note: Date corrected to November 15, 1977. PD)) +1977-11-15,47.7166667,-104.1558333,Sidney,MT,circle,180,Small saucer with red, green and blue lights. +1977-11-15,42.2916667,-85.5872222,Kalamazoo,MI,disk,120,Close encounter near Kalamazoo +1978-11-15,36.175,-115.1363889,Las Vegas (??),NV,cigar,600,not been noted on any sighting that i have heard of. +1979-11-15,21.3069444,-157.8583333,Honolulu,HI,sphere,120,saw a blue sphere hover in front of me---just bigger than a basketball--no noise, heat, etc.--it took off and disappeared as soon as I +1979-11-15,30.2669444,-97.7427778,Austin,TX,triangle,30,Large Triangle over Austin Texas 1979 +1979-11-15,41.8038889,-73.5591667,Wassaic (Falls Village),NY,circle,3600,Area of Wasaiic Developmental Center late 1979 - 1980-New York/Connecticutt area +1980-11-15,31.0636111,-98.1813889,Lampasas,TX,light,10,Very bright, fast moving light which appeared to circle the local radio tower and speed away +1982-11-15,31.1277778,-92.0661111,Marksville,LA,circle,300,I can Only Belive That This Was A Loading Of A UFO Into A Mother Ship. +1982-11-15,41.3502778,-83.1219444,Fremont,OH,light,60,Silent, invisible craft, shoots blue beams of light on friend and I. +1983-11-15,36.8527778,-75.9783333,Virginia Beach,VA,light,900,Cloaked lights in the trees +1983-11-15,41.1569444,-101.1258333,Sutherland,NE,other,900,Strange Craft sited, just hung in the air, gray black in color. emitted a winning sound. +1984-11-15,30.5180556,-82.9483333,Jasper (Rural Part Of),FL,unknown,240,Lights moving in a circular motion, but hovering without any SOUND! +1984-11-15,41.1238889,-100.765,North Platte,NE,other,300,UFO follows train tracks +1985-11-15,41.2366667,-74.4875,Vernon Valley,NJ,other,600,An alien looking in at me from outside when I was 5. +1986-11-15,60.9425,-149.1663889,Girdwood,AK,sphere,120,25 feet from amber, orange orb [1986] Alaska. +1986-11-15,32.0833333,-81.1,Savannah,GA,light,300,I saw a "star" that moved about in a very strange, rapid manner the night sky over Savannah, Georgia late in 1986 +1986-11-15,47.4602778,-114.8819444,Plains,MT,other,60,Boomerang shaped black body, green lights motionless and silent. Vanished after I came closer to it. +1987-11-15,32.7152778,-117.1563889,San Diego,CA,flash,1,flash like daylight lit up everything for 1 second, not lightning +1987-11-15,27.7705556,-82.6794444,St. Petersburg,FL,rectangle,180,The exact date is vague but I remember it being somewhere between Nov 1987-Feb 1988. I was heading northboud on 4th st N just north of +1987-11-15,44.1536111,-87.9566667,Reedsville,WI,triangle,600,Get the hair to stop standing up on my neck ,This Was Too Real . +1987-11-15,45.2325,-88.0075,Crivitz,WI,unknown,600,green light spotted above trailer.Footsteps leading to trailer,door opened and footsteps came toward bdrm door.Door opened slightly,sha +1988-11-15,44.0077778,-76.0447222,Dexter,NY,disk,300,craft was close, silent, brightly illuminated, and appeard to be examining the local airport. +1988-11-15,44.0077778,-76.0447222,Dexter,NY,disk,60,large saucer shaped object with many colored lights, very close to me +1988-11-15,44.0077778,-76.0447222,Dexter,NY,disk,60,Object was at tree level, approximately 200 feet in diameter and made no noise. +1988-11-15,37.9577778,-121.2897222,Stockton,CA,triangle,600,Black huge triangle craft with chevron shape of lights on her belly with a larger red light in the center of the chevron shape travelin +1989-11-15,44.0077778,-76.0447222,Dexter,NY,disk,300,It was treetop level and only 100 yards or less away +1989-11-15,29.4238889,-98.4933333,San Antonio,TX,diamond,10,Huge UFO over North Star Mall +1989-11-15,36.4497222,-76.0158333,Currituck County,NC,disk,900,This metalic disk had blueish plasma lighting coming from all around it +1989-11-15,18.3966667,-67.1136111,Moca (Puerto Rico),PR,unknown,60,Late, cloudy night in Moca, Puerto Rico. I saw immense, pulsing lights of varied colors slowing passing above the clouds. Could not m +1990-11-15,28.3505556,-80.7255556,Rockledge,FL,light,30,Bright light, intense noise, waking me. +1990-11-15,33.015,-96.5386111,Wylie (Just Off The Main Highway),TX,triangle,600,Cousin and Boyfriend on the way home from work early in the morning saw a triangular craft that totally scared them both as it was just +1990-11-15,36.4580556,-116.87,Furnace Creek (Death Valley),CA,unknown,7200,Mysterious red glow in the sky, brightest toward the horizon off to the Northeast. +1990-11-15,32.3861111,-94.8755556,Kilgore,TX,light,300,I was driving home from work and saw something that looked like a falling star, it took off very fast. +1991-11-15,38.8338889,-104.8208333,Colorado Springs,CO,triangle,300,Clear night, calm winds, object triangular, blue glow emanating all around, flying at250 to 500 feet north to south direction no noise +1991-11-15,30.4211111,-87.2169444,Pensacola,FL,disk,1200,Metallic disc hovers near road in northeast pensacola +1991-11-15,29.6908333,-95.2088889,Pasadena,TX,unknown,600,UFO sighting in Pasadena TX in November 1991. +1992-11-15,33.5816667,-116.9313889,Sage,CA,oval,45,Very bright like alumium when the sun shines on it and hovered in one place for about 45 seconds. +1992-11-15,40.3055556,-89.6027778,San Jose,IL,light,240,Sighting of 5 or 6 orange lights in the sky. +1992-11-15,45.1277778,-87.2469444,Fish Creek,WI,triangle,900,Slow moving large triangle craft seen at close range, 1 white light in front 2 red in back, Low hum. +1993-11-15,41.4961111,-85.3766667,Rome City,IN,egg,180,Two eggshaped objects hovered in the sky then speed away. +1993-11-15,28.0408333,-99.3541667,Encinal (Northeast Of),TX,rectangle,3600,Large mother ship sighting and smaller UFO chased by military fighters. +1993-11-15,42.8047222,-102.2027778,Gordon,NE,triangle,3600,A very large triangle shape(black,soundless) with red lights at the corners wile traveling at night. +1994-11-15,30.925,-88.59,Lucedale,MS,disk,240,I was caught in the light +1994-11-15,36.4744444,-81.805,Mountain City,TN,triangle,1200,Computer engin. repts. seeing triangular ships over TN almost nightly. Repts. overhearing radio commo. of F-15 firing on UFO. +1994-11-15,33.7488889,-84.3880556,Atlanta,GA,light,20,HBCCUFO CANADIAN REPORT: Oval shaped bright light. +1994-11-15,36.8352778,-76.2986111,Portsmouth,VA,flash,10,Two flashes of illuminating green light that lasted 3 seconds each & lit up the surrounding area. +1994-11-15,37.3183333,-84.9394444,Liberty,KY,fireball,900,orange firery ball/ pouring out green and purple smoke from beneath./ at night-very visible +1994-11-15,40.8686111,-73.0019444,Coram,NY,other,120,It was 5-10 feet above my head and my sunroof was wide open, +1995-11-15,43.0388889,-87.9063889,Milwaukee,WI,fireball,15,Fireball in Milwaukee +1995-11-15,34.02,-117.9486111,La Puente,CA,other,15,Four large luminous disks arranged like the engines of a 4-engine plane flew north to south at low altitude and silently. +1995-11-15,40.015,-105.27,Boulder,CO,formation,10,I was sitting in my back yard talking on the phone.When I saw 1 green dot fly south Followed by 2 more green dots flying parallel to ea +1995-11-15,39.6,-75.9416667,North East,MD,oval,600,UFO hovers right above a rural house and field +1996-11-15,31.0833333,-97.6594444,Harker Heights,TX,light,120,This dot of light was moving quite fast and then it stopped and took off 90 degrees from the direction it was traveling +1996-11-15,40.8,-96.6666667,Lincoln,NE,diamond,300,Orange narrow diamond shaped ufo seen rotating in tree top next to my apartment. +1996-11-15,40.7425,-84.1052778,Lima,OH,light,600,2 adult women about 1 mile apart saw a brightlight 1/2 moon in diameter hover between and above them for about 10 min., then vanish +1996-11-15,35.0844444,-106.6505556,Albuquerque (Manzano Mountains),NM,sphere,1800,A bright purple sphere Hoovers then uses some type of warp drive to dissappear. +1997-11-15,32.2216667,-110.9258333,Tucson,AZ,other,3,Traveling east on Speedway Blvd. and saw a bright white/yellow object with a red streaking tail traveling low from southwest to northea +1997-11-15,46.1383333,-122.9369444,Longview,WA,other,240,Woke up from sleep, out window over golf course saw dk grey hexagonal object possibly with something thin ( rope-like) hanging down fro +1997-11-15,39.5297222,-119.8127778,Reno,NV,triangle,1200,Listened to radio on the way from San Jose to Reno, NV. We listened to Artbell on his AM talk radio. We just viewed what we thought w +1997-11-15,43.1705556,-78.6905556,Lockport,NY,sphere,1500,Low in the eastern sky over a farming area I spotted a ball of bright light, every once in a while it seemed a ring of color would move +1997-11-15,41.1563889,-80.5694444,Hubbard,OH,triangle,900,THREE LIGHTS AT A TRANGULAR SHAPE. LIGHTS WHERE RED. +1997-11-15,26.7052778,-80.0366667,West Palm Beach,FL,other,300,Object changed direction twice. +1997-11-15,40.7972222,-75.9697222,Tamaqua,PA,light,30,A light was seen up in the sky with small lights shining down from it it dissapeared and a possible abduction took place the following +1997-11-15,42.7633333,-78.31,Varysburg,NY,triangle,15,Two triangular ships seen at night +1997-11-15,40.8022222,-124.1625,Eureka,CA,triangle,180,large slow moving triange-shaped aircraft flies over Eureka California... 1997 +1997-11-15,40.7841667,-74.6972222,Chester,NJ,circle,120,Seven UFO's zigzagging across the night sky over Chester, NJ +1997-11-15,40.7841667,-74.6972222,Chester,NJ,circle,240,Seven UFO's zigzagging in formation across the night sky +1997-11-15,26.2375,-80.125,Pompano Beach,FL,sphere,120,Bright orange Sphere goes over Pompano Beach, Florida in seconds! +1998-11-15,32.7152778,-117.1563889,San Diego (Camp Pendleton),CA,fireball,1,a fast moving, green-white, glowing object streaked across the sky. It moved southward as I drove south along I-5. +1998-11-15,36.8083333,-76.7444444,Windsor,VA,light,40,Four lights passed over at low altitude{less than 1000ft}and were silent,moving in a staight line as if one object.conditions were clea +1998-11-15,40.5186111,-74.4125,Edison,NJ,disk,180,My husband and I were driving to the drycleaners when my husband says "What the heck is that?!" I look up and in the sky in the derecti +1998-11-15,43.073055600000004,-89.4011111,Madison,WI,light,7500,late nov. ྞ, wife observed x3 nights lrg ball extreme bright light w/ radiating green& red light emanating from & around the main whi +1998-11-15,39.7661111,-105.0766667,Wheat Ridge,CO,diamond,8,VERY LARGE DIOMOND SHAPED OBJECT HOVERING OVER NEIGHBORS HOUSE.HARDLY ANY SOUND,JUST A LOW VIBRATIONAL SOUND. +1998-11-15,41.7797222,-71.4377778,Cranston,RI,light,5,i was in a car with my mother driving down phenix ave. i saw a bright orangish light in the sky i looked up and it was moving slowwly b +1998-11-15,41.7444444,-87.8377778,Justice,IL,light,180,2 points of light, leaving "light trail" as they moved through the sky +1998-11-15,46.9966667,-120.5466667,Ellensburg,WA,fireball,20,Orange dripping orb.... WA +1998-11-16,43.3347222,-90.3866667,Richland Center,WI,other,20,i was just waitng for my cab and i happened to look up in the sky. and it was very plain to see. it was low in the sky. the lights wer +1999-11-15,32.7252778,-114.6236111,Yuma,AZ,circle,600,I awoke at approx. 5:30 am and was going into San Luis Mexico for dental work and saw a circular object in the sky. +1999-11-15,35.8455556,-86.3902778,Murfreesboro,TN,sphere,6,Large spherical object seen in Murfreesboro TN. +1999-11-15,42.0083333,-91.6438889,Cedar Rapids,IA,fireball,120,Long Green tail with a orange fireball moved across the sky from south to north in the eastern sky. Tail disapated orange fireball cont +1999-11-15,46.9422222,-122.6047222,Yelm,WA,other,900,object hovered, then separated into two sections and flew away +1999-11-15,42.9541667,-85.4888889,Ada,MI,light,1200,Very bright light over horizon which moved about 45 degrees over 20 minutes. Similar to bright, flickering star. +1999-11-15,35.9605556,-85.8141667,Smithville,TN,circle,300,6 miles north of smithville on hwy 56 - just beyond the tree line were 2 round beams of light just hovering for over 5 minutes then the +2000-11-15,38.5630556,-76.0791667,Cambridge,MD,light,120,A bright orb like craft flying low over Maryland. +2000-11-15,42.7369444,-84.4838889,East Lansing,MI,diamond,10,5-6 Black Diamond shaped Silent Objects +2000-11-15,42.8263889,-84.2194444,Perry,MI,triangle,180,Bright silvery-white triangles standing on end +2000-11-15,31.8972222,-98.6033333,Comanche,TX,other,30,a black object (abyss)hovered 200 feet over me while deer hunting and 3 months later, i underwent emergency brain surgery. +2000-11-15,35.2155556,-94.2555556,Greenwood,AR,flash,2,Blinking, multi-colored lights below clouds outside Ft. Chaffee. +2000-11-15,31.9491667,-98.7369444,Sidney,TX,other,10,A black cube appears in the sky above me. +2000-11-15,43.1283333,-73.8469444,Greenfield Center,NY,other,2,UFO spotted in Greenfield Cntr. NY +2000-11-15,40.4863889,-86.1336111,Kokomo (West Of),IN,flash,9900,glittering white lights accompany bright orange spheres. +2000-11-15,45.5236111,-122.675,Portland,OR,circle,80,sequenced flurry of circles +2000-11-15,40.7936111,-74.1505556,Belleville,NJ,unknown,240,it was dark out so I couldn't see the actual shape of the craft,but I think of ufos as something I never want to see so i stoped looki +2000-11-15,35.3858333,-94.3983333,Fort Smith,AR,triangle,30,5 orange lights shaped in a HUGE triangle/v shape about 2000 ft high +2000-11-15,43.1319444,-86.1547222,Fruitport,MI,triangle,180,Huge silent Aircraft flew overhead incredibly low and slow. +2001-11-15,47.6588889,-117.425,Spokane,WA,light,3600,I was up working late, I work from my home, I am 15 miles south of Spokane, WA I heard a loud noise above my sewing machine and stereo, +2001-11-15,46.6022222,-120.5047222,Yakima,WA,rectangle,180,spinning box +2001-11-15,38.575,-83.5197222,Ribolt,KY,other,5,Several steady bright orange lights that appeared in succession forming a semi-circle before blinking out all at once. +2001-11-15,38.8133333,-82.7269444,South Webster,OH,light,300,This is what I would call my part two of an event that happen on 5/31/01. A coworker and myself saw the same burnt orange objects in th +2001-11-15,47.2044444,-121.9902778,Enumclaw,WA,fireball,300,A red fireball stopped traffic in Cumberland/Enumclaw, WA. +2001-11-15,47.2044444,-121.9902778,Enumclaw,WA,fireball,300,Investigative Report of Red "Fireball" Sighted Near Enumclaw, WA on 11/15/2001 +2001-11-15,47.2044444,-121.9902778,Enumclaw,WA,sphere,300,While driving outside Enumclaw, WA we saw a red fireball +2001-11-15,44.9802778,-85.2111111,Bellaire,MI,triangle,1800,I heard a jet approx. 8 pm and looked up. I not only saw the jet but also a slow moving, large object heading north to south. It was +2001-11-15,45.2166667,-85.0138889,Boyne City,MI,diamond,1800,Diamond shape craft, loud rumbling noise, spinning lights over Northern Michigan +2001-11-15,44.9022222,-85.0608333,Mancelona,MI,other,480,We saw a bell shaped object with three red lights in the shape of a triangle. +2001-11-15,35.5769444,-92.1772222,Greers Ferry,AR,sphere,1200,A friend and I walked outside the house we were at to smoke a cigarette. In the sky was a orange sphere seemingly hovering in the sky. +2001-11-15,44.9444444,-93.0930556,St. Paul,MN,unknown,10,Observed was a black boomerang/triangle shaped going east at approximately 500 miles an hour with no lights on at all. +2001-11-15,44.8994444,-109.1502778,Clark,WY,light,600,I have been seeing a bright light for years in the same area of sky, it is brighter than a plane slower than a plane it lasts about 10 +2001-11-15,46.9966667,-120.5466667,Ellensburg,WA,light,180,Sighted one small bright light moving right and left quickly while ascending. +2001-11-15,43.9827778,-124.0986111,Florence,OR,unknown,540,Pulsating light follows car 9 miles in Oregon +2002-11-15,44.3105556,-69.78,Augusta,ME,light,300,My son and I saw this in early evening.There were a string of lightd quite brite over a low hill. It was right in town and very visible +2002-11-15,40.8666667,-124.0816667,Arcata,CA,light,600,Four globes of light in formation +2002-11-15,36.175,-115.1363889,Las Vegas,NV,other,15,UFO shadows observed near Las Veagas , Nevada +2002-11-15,33.6305556,-112.3325,Surprise,AZ,flash,5,Flash in the sky +2002-11-15,34.7211111,-116.1591667,Ludlow (8 Miles West Of),CA,triangle,600,We were driving east on route I 40 when my friend, Tom who was driving said"what is that?" Of the right side of the road perhaps five m +2002-11-15,42.0852778,-83.6825,Milan,MI,triangle,600,Tonight I saw a Triangle shaped craft do a complete v-turn over downtown, and speed up in the opposite dirrection. +2002-11-15,41.4875,-82.1016667,Sheffield Lake,OH,circle,180,A BRIGHT LIGHT WAS MOVING JUST ABOVE THE CLOUDS VERY SLOWLY FROM NORTH TO SOUTH. +2003-11-15,32.8383333,-116.9730556,Santee,CA,formation,720,Four saucers in a diamond formation. +2003-11-15,41.7002778,-73.9213889,Poughkeepsie,NY,light,120,Red light in the night sky. +2003-11-15,33.2938889,-111.0955556,Superior,AZ,sphere,3600,Silver Sphere Hindreds of Witnesses Superior AZ +2003-11-15,35.0844444,-106.6505556,Albuquerque,NM,oval,10,WHITE OBJECT OVER ABQ, NM. +2003-11-15,40.7141667,-74.0063889,New York City (Bronx),NY,light,30,white light on the sky, moving slowly, then suddenly disapearing over the sky ( the sky was clear, really clear that day)! +2003-11-15,37.7397222,-121.4241667,Tracy,CA,teardrop,420,I had just left tracy, CA traveling west on I-205 towards San Francisco. The sky was a little stormy but there was a clearing in it ju +2003-11-15,42.0666667,-85.1361111,Union City,MI,oval,1046,Orange/red meshed object Union City, Michigan +2003-11-15,27.4986111,-82.575,Bradenton,FL,other,300,3 objects that were very odd in color and moved quickly and then hovered at times. Bright flashes of light as each disappeared. +2003-11-15,34.4077778,-111.4927778,Strawberry,AZ,disk,2700,Landed Object viewed with High Power Scope at Length +2003-11-15,46.2677778,-89.1777778,Watersmeet,MI,light,7200,Mystery Light in Northern Michigan +2003-11-15,31.5544444,-110.3030556,Sierra Vista,AZ,unknown,3600,The pulsating light kept moving over our area for over an hour with no sound emitting from it and the light pulsating the whole time. +2003-11-15,26.9616667,-82.3527778,Englewood,FL,formation,6,4 ights in a row wiggling like a centerpede +2003-11-15,34.0858333,-81.1833333,Irmo,SC,circle,300,Strange Hovering Object +2003-11-15,38.3605556,-75.5997222,Salisbury,MD,diamond,10,Sighting of a huge, diamond shape UFO in Maryland. +2003-11-15,34.8027778,-86.9716667,Athens,AL,triangle,15,Triangular shaped craft with three dimmly lit lights on the bottom of it and It was following something on the interstate going south. +2003-11-15,30.2944444,-81.3933333,Jacksonville Beach,FL,rectangle,120,UFO streaks past hotel and unreported aerial search of beach and ocean is conducted by the navy (most likely) or coast gaurd +2003-11-15,38.7244444,-83.0133333,South Portsmouth,KY,light,180,I was walking outside for a breath of air.It was about 10pm.I looked uped at the sky to look at the planes and stars.I looked towards P +2003-11-15,29.5847222,-81.2080556,Palm Coast,FL,triangle,7,Very large V shape with lights, haze, silent,moving east extremely fast. +2003-11-15,38.5816667,-121.4933333,Sacramento,CA,unknown,2,We heard and felt an unearthly object pass down our street, traveling incredibly fast. +2004-11-15,36.4033333,-76.7533333,Gatesville,NC,circle,5,Smooth circle (bottom) of silvery craft disappeared into larger invisible apparently 'cloaked' craft -- no sound. +2004-11-15,36.4369444,-77.2291667,Conway,NC,light,180,Isaw a bright light in the sky moving fast for 5 seconds then stop ,became brighter,then disappear +2004-11-15,32.7152778,-117.1563889,San Diego,CA,triangle,10,They flew silently, straight, and very quick. +2004-11-15,39.8863889,-83.4483333,London,OH,formation,1200,multiple light display over central london +2004-11-15,45.2163889,-112.6366667,Dillon,MT,triangle,70,The object had several dim white lights that flickered at different times, flew just at the edge of the city lights, and had no sound. +2004-11-15,42.1097222,-86.48,St. Joseph,MI,cylinder,2,I saw a noiseless, hovering, barrel shaped object visible for several seconds and then it disappeared. +2004-11-15,33.8622222,-118.3986111,Hermosa Beach,CA,changing,120,A triangle of three flashing red round objects moving very fast and changing formation. +2004-11-15,40.4641667,-81.0019444,Kilgore,OH,disk,20,Flying Saucer hovering over powerline in smalltown Ohio +2004-11-15,34.1841667,-118.9097222,Newbury Park,CA,chevron,20,A chevron shape that appeared several miles away and flew over me and away in less than 20 seconds. +2004-11-15,44.3291667,-73.1111111,Hinesburg,VT,light,60,Hovering formation of lights, dimming and brightening just above treeline +2004-11-15,34.0858333,-81.1833333,Irmo,SC,circle,600,Chased UFO And Witnessed It Up Close And Personal +2004-11-15,38.7297222,-120.7975,Placerville,CA,light,5,On November 15, 2004, in Placerville, California, My daughter and I had both gone to bed. Right when I was just about to fall asleep I +2004-11-15,37.3541667,-121.9541667,Santa Clara,CA,chevron,90,Mute, flying object shoots straight up into the sky, then falls back down to leave the same way it came. +2005-11-15,28.0391667,-81.95,Lakeland,FL,triangle,120,I believe we are being visited a lot more than people think. +2005-11-15,29.4238889,-98.4933333,San Antonio,TX,other,300,Low flying craffts over the city with figures inside +2005-11-15,33.0888889,-96.8861111,The Colony,TX,light,600,Winter of 05, Dallas Texas. Light Pair exhibiting impossible aerial behaviour, & not fitting air traffic profile. +2005-11-15,38.0194444,-122.1330556,Martinez,CA,other,120,Glowing object moves across San Francisco Bay Area sky +2005-11-15,37.6361111,-86.7175,Fordsville,KY,light,1800,While seating in my deerstand i was watching a meteor shower as i looked north i noticed a cluster of meteors come down all at once the +2005-11-15,29.8944444,-81.3147222,St. Augustine,FL,triangle,300,I have to report this because it has been bothering me for several month's.I was a foreman at Norsk Hydro Aluminum plant during this s +2005-11-15,28.5388889,-80.6722222,Merritt Island,FL,light,60,There was a full moon out and i decided it would be a good picture so I started filming the moon with my cell phone. What I notice late +2005-11-15,34.2163889,-119.0366667,Camarillo,CA,disk,480,Lewis Rd./ Camarillo FLYING SAUCER UFO seen in daylight during November, 2005 +2005-11-15,35.8238889,-80.2536111,Lexington,NC,fireball,55,Yellow fireball object, viewed from lexinton, NC +2005-11-15,41.2230556,-111.9730556,Ogden,UT,fireball,2,Brilliant fireball seen near Ogden, UT. ((NUFORC Note: Possible meteor?? PD)) +2005-11-15,37.835,-122.1286111,Moraga,CA,light,120,White pulsating object viewed from Moraga CA 94556 at 8pm. +2005-11-15,33.4483333,-112.0733333,Phoenix,AZ,circle,420,we saw 3 big lights in the sky, and they passed riht over us. +2005-11-15,34.8766667,-117.1030556,Lenwood,CA,fireball,360,Observed a bright orange orb shaped object approaching from the North at an altitude between 1000-2000 ft AGL. As the object approache +2005-11-15,38.3605556,-75.5997222,Salisbury,MD,oval,900,Five oval white and blue lights zooming (first in patterns then straight patterns)in the cloudy sky at dusk. +2005-11-15,33.6058333,-78.9733333,Surfside Beach,SC,light,300,three round lighted objects blinking in sequence then disapeer +2005-11-15,37.5483333,-121.9875,Fremont,CA,sphere,2,I saw a sphere,lime green at a fast rate of speed-w-trail of fire entering above homes over 880/alavarado area and it vanished/seconds. +2005-11-15,37.5536111,-77.4605556,Richmond,VA,triangle,120,Object forming a perfect triangle of lights, unidentifiable. +2005-11-15,47.1122222,-116.3916667,Fernwood,ID,circle,3600,more than one person[strangers] have come to my unique viewing mountainside +2005-11-15,37.3402778,-95.2608333,Parsons,KS,disk,45,7 lights of one craft veiwed at night over south east Kansas. +2005-11-15,19.7297222,-155.09,Hilo,HI,light,240,Orangeish pulsating light is stationary for 3 minutes, then makes abrupt movements in zig zag motion to the left before disapearing +2005-11-15,39.3958333,-101.0519444,Colby,KS,light,420,Light in NW Kansas sky, Military Aircraft scrambled +2006-11-15,33.5205556,-86.8025,Birmingham,AL,fireball,15,bright white-greenish object appears, hovers in place, quickly travels zig zag pattern and vanishes +2006-11-15,33.7122222,-84.1052778,Lithonia,GA,light,180,Satellite performing a sharp 90 degree turn. +2006-11-15,34.5566667,-93.6338889,Mount Ida,AR,changing,2700,Large silver dome shaped object coming up between ridge ane mountain in back yard. Once in the air changed to a cylinder shape. Change +2006-11-15,41.7847222,-73.9336111,Hyde Park,NY,chevron,120,B-2 Bomber hovers! My sister was in her back yard when she heard a "whooshing" sound, very loud. She turned to see the B-2 bomber (Ste +2006-11-15,34.1808333,-118.3080556,Burbank,CA,changing,1200,3 Large disk shaped clouds over the Burbank CA Airport +2006-11-15,32.9616667,-96.8288889,Addison,TX,teardrop,300,Large shadow flew over head very fast +2006-11-15,40.5725,-74.4930556,Middlesex,NJ,other,1200,We were out stargazing on a very clear night after fixing a new telescope that had never been used. AFter about an hour or so of watchi +2006-11-15,39.9522222,-75.1641667,Philadelphia,PA,formation,300,cluster of lights in good formation traveling high in the sky over South Philadelphia, Pa.. ((NUFORC Note: Possible hoax?? PD)) +2006-11-15,32.2216667,-110.9258333,Tucson,AZ,disk,3,disk wisk through sky very low at high rate of speed left cloud as it disappered. No sound. +2006-11-15,28.4055556,-80.605,Cape Canaveral,FL,light,8,Bright object, incredibly fast, witnessed over Kennedy Space Center in Florida. +2006-11-15,39.0997222,-94.5783333,Kansas City,MO,triangle,30,Can the Silent approach of UFOS be heard???? +2006-11-15,41.4527778,-82.1825,Lorain,OH,unknown,1800,I saw different colored lights in the sky southeast of me +2006-11-15,41.0997222,-80.6497222,Youngstown,OH,sphere,20,White light in sky moving quickly away at unnatural speed. +2007-11-15,38.1494444,-79.0719444,Staunton,VA,other,60,1 rectangle ship flying beside rt.262 staunton va +2007-11-15,31.9380556,-81.3036111,Richmond Hill,GA,changing,180,Very Bright object in morning sky. ((NUFORC Note: Possibly a sighting of Venus?? PD)) +2007-11-15,30.2238889,-92.0197222,Lafayette,LA,formation,10,((HOAX??)) A UFO flew right over my house in the city. +2007-11-15,35.0844444,-106.6505556,Albuquerque,NM,light,300,light in sky - disappears +2007-11-15,34.2569444,-85.1647222,Rome,GA,triangle,300,UFO over old GE building, heading towards Armuchee +2007-11-15,38.5816667,-121.4933333,Sacramento,CA,cigar,10800,blue streaks of light flashing all over the sky +2007-11-15,31.0361111,-89.8047222,Sandy Hook,MS,sphere,180,Large round white object that shone like swimming pool water at night with three spinning red lights on the bottom, which made me think +2007-11-15,32.8233333,-97.1702778,Hurst,TX,circle,12,Steady light low in sky. Made no noise. Traversed sky in about 11 seconds. +2007-11-15,39.4666667,-87.4138889,Terre Haute,IN,changing,2400,November 2007 Sighting of Strange Object in Terre Haute Indiana. ((NUFORC Note: Possible twinkling star?? PD)) +2007-11-15,41.9444444,-71.2861111,Attleboro,MA,disk,2,Rotating disk revealed after i had a feeling it would happen before my eyes. psychic +2008-11-15,34.49,-77.4319444,North Topsail Beach,NC,light,1200,Glowing orbs in my room +2008-11-15,36.3275,-119.6447222,Hanford,CA,disk,300,Silver fat disk fading in and out with a blueish tinge, very high speed , in a perfectly straight line n to s +2008-11-15,39.5297222,-119.8127778,Reno,NV,triangle,10,From flock of birds, to plane crash, to WTF is that! +2008-11-15,26.5625,-81.9497222,Cape Coral,FL,circle,10,I had just sat down on my patio partially reclined on my chair and looked to the clear sky above before sunset and spotted what was a s +2008-11-15,34.9494444,-81.9322222,Spartanburg,SC,teardrop,300,Upside down teardrop hovering over hwy witnessed by others. +2008-11-15,47.6063889,-122.3308333,Seattle,WA,fireball,1800,Flaming ball moves slow and turns on a dime +2008-11-15,37.8313889,-122.2841667,Emeryville,CA,chevron,120,It looked like a vapor trail from a jet engine. +2008-11-15,33.5016667,-117.6616667,San Juan Capistrano,CA,chevron,15,chevron shaped lights fly silently over San Juan Capistrano at high rate of speed +2008-11-15,37.775,-122.4183333,San Francisco,CA,triangle,7,It had a TRANGULAR SHAPE, was DARK GRAY (lit by the moon light) with 3 ROUND CIRCLES ON IT'S BOTTOM +2008-11-15,32.5419444,-97.3205556,Burleson,TX,triangle,420,Low, slow moving triangle or arrowhead shaped object with white lights and one red light in center +2008-11-15,44.0886111,-87.6575,Manitowoc,WI,egg,5,a white egg shaped light with a trail of blue-aqua colored streak behind it moving in a downward motion towards the ground. +2008-11-15,47.2530556,-122.4430556,Tacoma,WA,light,30,green light over commencement bay +2008-11-15,26.2708333,-80.2708333,Coral Springs,FL,other,60,white spot moving silently and rapidly across the sky in 1 direction and then the exact opposite direction +2008-11-15,37.775,-122.4183333,San Francisco,CA,rectangle,600,black shadowed rectangle bottom object came in from the west made U-turn back out to the west 23:27 11/15/08 +2008-11-15,40.3611111,-83.7597222,Bellefontaine,OH,disk,120,((HOAX??)) i was raccoon hunting in the dark and seen somthing go over top and it let up the woods then it was gone no trace. +2009-11-15,40.7141667,-74.0063889,New York City (Queens; Elmhurst),NY,oval,300,Loud noise throughout house and outside flashing lights red and while and beams going down to landscape. +2009-11-15,40.7141667,-74.0063889,New York City (Queens),NY,oval,300,Large blimpy looking object in night sky, very loud noise, flashing lights red and white. +2009-11-15,41.5736111,-84.0052778,Delta,OH,light,1800,Large hovering light that changed into five separate, smaller lights. +2009-11-15,44.4472222,-69.8330556,Belgrade,ME,circle,300,Amber colored pulsing object with no sound hovered low to the ground for about 5 minutes. +2009-11-15,31.8455556,-102.3672222,Odessa,TX,formation,8,3 oval shaped orange colored orbs flew by in a triangle formation. +2009-11-15,38.6105556,-122.8680556,Healdsburg,CA,disk,18000,Very bright flickering lights hovering over mountain ridge in Russian River/Healdsburg, CA +2009-11-15,31.8455556,-102.3672222,Odessa,TX,rectangle,15,I saw a dark retangular object slowly fly over my house. +2009-11-15,37.7808333,-90.4216667,Farmington,MO,other,30,Last November I saw a black craft just above a tree in my backyard. I live in town and our sky is dark gray at night, so the craft was +2010-11-15,43.0388889,-87.9063889,Milwaukee,WI,other,1800,Strange lights, stranger shapes, and a strange ending. +2010-11-15,42.0866667,-71.475,Bellingham,MA,light,25,Bright white lights splitting symetrically into 4 to 5 light spheres +2010-11-15,43.55,-96.7,Sioux Falls,SD,triangle,240,light, triangle, airport +2010-11-15,47.1719444,-122.5172222,Lakewood,WA,changing,1200,craft hovers silently changing shape. possible abduction. +2010-11-15,32.7152778,-117.1563889,San Diego,CA,oval,180,A black object with strobing red/orange lights seen over San Diego. +2010-11-15,39.9555556,-86.0138889,Fishers,IN,light,3,This was an extremely fast moving, thumbnail size light, emitting no sound. +2010-11-15,41.7197222,-72.8325,Farmington,CT,triangle,120,Triangular Craft spotted in CT. +2010-11-15,29.1869444,-82.1402778,Ocala,FL,light,600,blinking light in sky remains in same location +2010-11-15,37.9577778,-121.2897222,Stockton,CA,light,3600,Possible UFO sighting in Northern Ca. +2010-11-15,39.1652778,-86.5263889,Bloomington,IN,other,60,White pearl-shaped object seen zooming above Bloomington +2010-11-15,41.7797222,-89.6888889,Rock Falls,IL,light,5,On November 15 2010 at approximately 11:35 pm, while driving at approximately 60 mph along Route 2 (Dixon Road) near Rock Falls Illinoi +2011-11-15,40.2736111,-76.8847222,Harrisburg,PA,sphere,120,how fast they went up in the sky and what was one doing while standing still till the other one got there +2011-11-15,41.4047222,-81.7230556,Parma,OH,cigar,1800,Pipe coming thru the clouds out of the atmosphere +2011-11-15,42.9786111,-71.0733333,Brentwood,NH,circle,1200,circular flying object. +2011-11-15,44.1858333,-88.4625,Neenah,WI,triangle,600,Massive slow triangle witnessed my many..orange lights small white lights on teather +2011-11-15,38.8105556,-90.6997222,O'fallon,MO,triangle,1800,Three strange ufos, make formation and break apart while flashing. +2011-11-15,47.6588889,-117.425,Spokane,WA,formation,4,formation of 5 or 6 red lights flying over my house +2011-11-15,47.3811111,-122.2336111,Kent,WA,fireball,30,Large fireball streaking across the sky over Highway 167 in Kent WA. +2011-11-15,47.6063889,-122.3308333,Seattle,WA,sphere,2,Orange sphere appears and skirts across the sky +2011-11-15,45.5827778,-122.3522222,Washougal (Nearest),WA,other,3,During a 3 secs I saw a 12ft diam, onion-shapd object ~2miles away, going ~400mph. Bright orange light +2011-11-15,48.8466667,-122.5897222,Ferndale,WA,sphere,5,Bright white ball traveling at fast speed crosses rural road in evening, 2 witnesses +2011-11-15,39.5138889,-121.5552778,Oroville,CA,light,60,BRIGHT cylindrical light beamed out towards earth half way it looked like a helicopter spotlight from space. +2011-11-15,27.7705556,-82.6794444,St. Petersburg,FL,fireball,5,Bright green fireball with a green coma/haze crossed the sky, slowly downward +2011-11-15,44.2619444,-88.4152778,Appleton,WI,circle,60,Two lights (initially looked like airplane lights) lower than airplanes should be, were blinking. The light on the left disappeared whi +2011-11-15,43.9747222,-75.9111111,Watertown,NY,triangle,60,Black triangular object scene in Watertown New York. +2011-11-15,40.5066667,-74.2658333,Perth Amboy,NJ,light,300,Lighted symmetrical “CROSS-HAIR LIGHT EVENT” Nov/2011 +2012-11-15,39.9536111,-74.1983333,Toms River,NJ,circle,5,Green UFO +2012-11-15,37.6486111,-118.9711111,Mammoth Lakes,CA,light,2,Ball of light that was able to turn on and off as well as move at speeds that seemed regardless of inertia. +2012-11-15,25.9013889,-97.4972222,Brownsville,TX,oval,120,Oval shape light,gliding within some clouds at high speed, 2-3 min.it went at a upright angle,sat in a clound then it just vanish. +2012-11-15,39.1619444,-84.4569444,Cincinnati,OH,fireball,2,I do not know what it was.it was bright green rather large with the stuff around it when something is moving at a high rate of speed an +2012-11-15,26.2708333,-80.2708333,Coral Springs,FL,light,120,3 reddish colored ball of light and an aircraft of somekind were seen on university drive and sample road in coral springs . +2012-11-15,45.6388889,-122.6602778,Vancouver,WA,triangle,60,Heavily populated area with incoming and outbound aircraft from the airport, UFO objects overhead, and visible to witnesses. +2012-11-15,40.2577778,-75.7266667,Douglassville,PA,rectangle,60,4 Blue Lights perfectly spaced in a single row found hovering above night sky for 1 minute in Douglassville, Pa +2012-11-15,39.2319444,-84.3783333,Blue Ash,OH,sphere,300,Blue Ash, Ohio 11/15/2012 around 06:33 PM EST - Single red sphere traveling S/SW below the clouds briefly before disappearing. +2012-11-15,35.8238889,-80.2536111,Lexington,NC,other,5,Very small dimly lit object the size of a tennis/ racquetball silently flies a few feet over my house in the night sky. +2012-11-15,46.7833333,-92.1063889,Duluth,MN,diamond,60,Two square-shaped objects with flashing lights and no sound hovered above Duluth for a minute and slowly moved south. +2012-11-15,41.2230556,-111.9730556,Ogden,UT,light,600,Unusual, twinkling orange light, hovering, then ascending +2012-11-15,39.1433333,-77.2016667,Gaithersburg,MD,changing,1200,4 Huge lights like spotlights reflecting across the clouds in a very strange pattern. ((NUFORC Note: Advertising lights. PD)) +2012-11-15,39.1433333,-77.2016667,Gaithersburg,MD,circle,900,The four circles were moving in succession. ((NUFORC Note: Probably an advertising lights. PD)) +2012-11-15,39.6294444,-79.9561111,Morgantown,WV,triangle,5,Triangle shaped BLUE UFO Morgantown West Va +2012-11-15,45.6388889,-122.6602778,Vancouver,WA,light,300,11-15-2012 orb sighted over Vancouver, Washington, area. +2012-11-15,37.6922222,-97.3372222,Wichita,KS,other,35,Boomer rang Objects! +2012-11-16,61.5813889,-149.4394444,Wasilla,AK,other,1500,Body Inhabitated +2013-11-15,42.9633333,-85.6680556,Grand Rapids,MI,fireball,5,Bright Green Fireball. +2013-11-15,42.5369444,-85.6416667,Martin,MI,fireball,60,It was moving too slow to be an aircraft, but faster than a baloon or something simular. +2013-11-15,43.5391667,-89.4625,Portage,WI,fireball,20,5 Orbs seen over Columbia county +2013-11-15,32.7447222,-116.9980556,Spring Valley,CA,sphere,15,Orange orb. shot strait up in early morning sky ese. +2013-11-15,47.2044444,-121.9902778,Enumclaw,WA,fireball,8,Orange colored orb seen the morning of November 15 2013 at 6:52am in Enumclaw Washington. +2013-11-15,38.8033333,-76.99,Oxon Hill,MD,unknown,900,Didnt anyone else see the slow moving black object gliding over the DMV????? +2013-11-15,39.8366667,-105.0366667,Westminster,CO,oval,30,Colorado UFO or Drone +2013-11-15,45.0905556,-89.885,Hamburg,WI,circle,20,One orb, bright green/blue color, going SW lasted about 20 sec, large and very fast. +2013-11-15,44.7791667,-93.3361111,Savage,MN,sphere,20,Orangish-blueish sphere object. +2013-11-15,44.7677778,-93.2775,Burnsville,MN,fireball,5,Green ball of light cruised across sky. +2013-11-15,44.0747222,-89.2877778,Wautoma,WI,circle,10,Two orange fire balls in line with each other, one went out followed by the other. Both reappeared together two seconds later lasted ab +2013-11-15,44.7272222,-75.3213889,Lisbon,NY,light,10,Cluster of orange/amber lights over Lisbon, NY. +2013-11-15,43.5391667,-89.4625,Portage,WI,circle,600,Traveling on Friday November 15, 2013, on Hwy 51 North, Just past the town of Portage, WI, The bright Orange Orbs were popping in and o +2013-11-15,41.6213889,-72.7461111,Berlin,CT,chevron,120,It was about a few minutes just after 6:00 PM, November 15, 2013. Berlin, CT.Visibility was clear, and I observed stars and other a +2013-11-15,42.4927778,-92.3427778,Waterloo,IA,other,15,Half disc like shape with a pale green glow that had movement I've never seen before. +2013-11-15,29.1869444,-82.1402778,Ocala,FL,diamond,300,Unknown bright lights. +2013-11-15,42.1675,-71.3583333,Millis,MA,unknown,90,Red light moves an impossible patterns stops and vanishes moments later. +2013-11-15,31.3111111,-92.445,Alexandria,LA,fireball,300,Red orange in color, fireballs appearing to be drifting from east to west across the Southern sky. About 10-15 of them. Visible for a +2013-11-15,37.051944399999996,-80.3638889,Pilot,VA,unknown,7200,White and Orangeish lights flying and osillating in the sky over Roanoke Va.also blue orbs +2013-11-15,41.6005556,-93.6088889,Des Moines,IA,light,300,30-40 glowing, orange lights drifted across the sky, very low, over Des Moines, not losing altitude until they passed from view. +2013-11-15,43.6275,-89.7708333,Wisconsin Dells,WI,unknown,60,Triangle shaped lights going in sequence. +2013-11-15,38.8916667,-121.2919444,Lincoln,CA,sphere,300,Red, blue green lights of one unit observed in patterns back and forth and large circles. +2013-11-15,41.6005556,-93.6088889,Des Moines,IA,light,120,20+ flying objects in Des Moines Iowa. +2013-11-15,34.2977778,-83.8241667,Gainesville,GA,fireball,420,The first two we saw were together. One kept moving while the other flickered out after staying in one spot. Several more followed Hove +2013-11-15,40.8261111,-73.5025,Syosset,NY,unknown,1020,5 objects of an amber/orange color moving together from west to east at low altitude. +1974-11-16,43.4055556,-88.705,Juneau,WI,other,20,a series of lights moving like a snake +1975-11-16,25.7738889,-80.1938889,Miami,FL,teardrop,3600,UFO lights in night sky, one came down and was wittnessed by young girl. +1994-11-16,45.3733333,-84.9552778,Petoskey,MI,triangle,1200,Object changed shape, color and path. +1996-11-16,36.175,-115.1363889,Las Vegas,NV,light,3600,number of strange lights seen in NV test site Area 51 months before phoenix sighting +1996-11-16,41.6563889,-76.8536111,Canton,PA,light,60,The blue lights zigzagged very rapidly across the sky and would come to a dead stop and then do it again. +1996-11-16,38.9905556,-77.0263889,Silver Spring,MD,triangle,45,Triangular Craft Flies Through Boyfirend's Neighborhood. +1996-11-16,41.8072222,-77.0777778,Mansfield,PA,round,5,Man saw orange fireball pass across the sky at very high speed from E to W. Approx. 1/4-1/2 dia. of moon. Very fast, bright. +1998-11-16,30.2669444,-97.7427778,Austin (Round Rock),TX,triangle,5,Triangular object w/three hemi-spherical 'projections' from the bottom, travelling N-S reflecting pink glow of city lights. +1998-11-16,40.1947222,-92.5830556,Kirksville,MO,other,1,Large, red jellyfish-shaped UFO crossing night sky +1998-11-16,36.175,-115.1363889,Las Vegas,NV,unknown,60,A bright Flash of something in the sky leaving a long trail lasting approx. 60 secs. and a long greenish hume to the tail. +1998-11-16,37.7866667,-90.8491667,Belgrade,MO,circle,30,Spotted object overhead, then watched it shoot across the sky, coming from the northwest and traveling easterly. +1998-11-16,35.9883333,-96.6008333,Drumright,OK,fireball,0.5,white fireball w/blue tail going streight down. lit up the sky and trees. the fireball was 1/32 the size of full moon. the tail was 4x +1998-11-16,30.2669444,-97.7427778,Austin,TX,fireball,5,Saw a glowing fireball plunge through the sky towards earth. +1998-11-16,42.6016667,-88.7075,Darien,WI,other,480,What I noticed first was a large shadow cover the ground I was traveling I-43 north toward Milwaukee, Wi. in a semi tractor/trailer now +1998-11-16,43.4711111,-89.7441667,Baraboo,WI,triangle,600,Triangular UFO near Baraboo, Wisconsin +1998-11-16,40.4405556,-79.9961111,Pittsburgh,PA,other,900,I saw 4 different aircrafts within a period of 15 min, all were square, low flying, had 3 round lights, and fast flashing red lights. +1998-11-16,40.4233333,-104.7086111,Greeley,CO,triangle,5,Looking for Leonid meteors saw triangle lights fly overhead +1998-11-16,47.3075,-122.2272222,Auburn,WA,light,6,small fast ball of orange light moving east to west above the treetops. +1998-11-16,39.1141667,-94.6272222,Kansas City (Suburb Mission),KS,other,60,Was witnessed by my girlfriend on her way home. She stated that it was an orange colored "Glowing" round object leaving a trail behind +1999-11-16,37.4502778,-86.3905556,Millwood,KY,formation,60,UFO seen during "flap" in 1999. +1999-11-16,41.5283333,-87.4236111,Griffith,IN,flash,120,In the early morning, I saw very bright lights shinning into my window. The flashes of light were so bright that I thought something b +1999-11-16,32.7833333,-96.8,Dallas,TX,flash,2,A real big green flash in the western sky +1999-11-16,34.0286111,-117.8094444,Diamond Bar,CA,disk,30,Observed disk shaped craft with dome while traveling n/bound on 57 FWY. +1999-11-16,37.2152778,-93.2980556,Springfield,MO,cylinder,360,My wife and I, along with passing motorists, observed a UFO that appeared like an airliner except it had no wings, tail or visible mean +1999-11-16,42.6525,-73.7566667,Albany,NY,fireball,240,At about 16:00 myself and a co-woker went outside for a cig break when I looked to the sky and saw what looked like an orange fireball +1999-11-16,42.2797222,-88.2288889,Burtons Bridge,IL,fireball,10,Horizon to horizon in 10 seconds. Fireball (short tail & enormous vapor trail). +1999-11-16,44.05,-91.6391667,Winona,MN,fireball,300,Appeared to be a plane crashing leaving a smoke trail. +1999-11-16,41.1383333,-81.8638889,Medina,OH,fireball,25,I saw , as what looked like fireworks of purple and blue in the Western sky. The sparkling fragments traveled Eastward towards me as a +1999-11-16,33.5091667,-111.8983333,Scottsdale,AZ,triangle,600,Non-moving lights in the southwestern sky. +1999-11-16,41.85,-87.65,Chicago,IL,circle,7,WHILE DRIVING EASTBOUND ON I-90; OBJECT MOVED IN AN ARCH ACROSS THE HORIZON, SOUTH TO NORTH DIRECTION, MOSTLY WHITE IN COLOR. FROM MY P +1999-11-16,41.85,-87.65,Chicago,IL,fireball,30,saw a bright white light, what appeared to be a type of firework missile, but this was different because of the intense brightness and +1999-11-16,41.7180556,-92.9072222,Kellogg (Outside Of),IA,circle,30,My grandma and me were driving home from Newton and About two or three miles outside of Kellogg my grandma seen something go by us. I d +1999-11-16,41.2913889,-87.4205556,Lowell (Outside Of, On I-65 Northbound),IN,rectangle,150,I was driving back on Interstate 65 northbound and looked toward the sky and saw a craft shaped liked a rectangle flying along side of +1999-11-16,43.073055600000004,-89.4011111,Madison,WI,fireball,45,Very large fireball with trail arched silently from SE to E/NE. Thought it was a plane crashing. When it went over the horizon, I wai +1999-11-16,43.2363889,-87.9844444,Mequon,WI,fireball,150,A brilliant blue-green fireball crossed the sky from SW to NE, leaving a smoke trail. +1999-11-16,39.1697222,-91.8827778,Mexico (7 Miles West Of),MO,teardrop,45,Bright green object traveling NW to SE. Copper colored tail trailing behind. Slowed in speed, leveled off and dissapeared over the hori +1999-11-16,39.2072222,-86.2511111,Nashville,IN,fireball,30,Object came from west to east at about 200-300 m.p.h.,object was on fire with black smoke trail behind it. Obect did not appear to be l +1999-11-16,36.1658333,-86.7844444,Nashville (On I-24 ᅬ Mi. Southeast Of),TN,fireball,90,FIREBALL GOING WEST TO EAST WITH A LONG FIREY TAIL. iI WATCHED THIS OBJECT FOR A MINUTE AND A HALF AS I WAS DRIVING WEST BOUND ON I-24 +1999-11-16,40.5141667,-88.9905556,Normal,IL,fireball,30,another fireball on 11/16/99 +1999-11-16,38.5363889,-84.8419444,Owenton (5 Miles South Of),KY,formation,30,Object was a cylinder shape with light formations on what appeared to be both sides of object. Flying at low altitude but could not se +1999-11-16,38.6272222,-90.1977778,St. Louis,MO,fireball,60,Small meteor like object streaked across sky but did not lose brilliance or speed. +1999-11-16,39.8905556,-84.1988889,Vandalia,OH,fireball,20,A white colored ball with a firetrail was seen by me and a co-worker. We thought it was a plane with an engine on fire since we are air +1999-11-16,44.6338889,-91.8727778,West Lima,WI,fireball,45,Green Fireball heading NNE accoss 56 1000 ft above county A. +1999-11-16,41.4755556,-93.6786111,Norwalk (Sml Town Just Sw Of Des Moines),IA,fireball,8,this was a blue-green fireball seen by myself, my husband and our young son. it was moving from the south to the northeast. my husban +1999-11-16,42.5775,-88.105,Paddock Lake,WI,fireball,30,Hi Peter; I want to report an interesting event. Last night at 6:04 to 6:05 PM, my husband was laying on our couch after dinner he was +1999-11-16,44.2619444,-88.4152778,Appleton,WI,fireball,25,While stepping outside to take out the trash, I saw a large yellow-green fireball traveling west to east about 30 degrees above the hor +1999-11-16,44.7319444,-93.2175,Apple Valley,MN,circle,30,Slow moving light very simular to airplane landing light with long trail of red sparks. +1999-11-16,41.760555600000004,-88.32,Aurora,IL,fireball,10,Large "meteor". Greenish color at head. Sparkling tail, golden-flecked. Traveling in arching trajectory West to East out of sight. +1999-11-16,42.1538889,-88.1361111,Barrington,IL,formation,90,6:05PM CST. In my car driving south I see a ball of blue green light coming towards me. I stop my car.This ball stops over the road for +1999-11-16,41.85,-87.65,Chicago,IL,fireball,60,probably the biggest, brightest metour ive ever seen. green, broke into 10+piecesƺ-3 times longer than halebopp,hit lake mich? very im +1999-11-16,36.1627778,-85.5016667,Cookeville,TN,oval,20,At a stop light, caught my eye moving west to east north of cookeville. It was huge. It was moving in a downward slant. I watch it unti +1999-11-16,41.8088889,-88.0111111,Downers Grove,IL,chevron,15,It looked a lot like a comet and it was red and orange until it came closer thaen it became a neon green then it looked like it landed +1999-11-16,41.5997222,-90.9105556,Durant (Rural),IA,fireball,15,A fireball of green blue/turquoise and orange color. With long glowing tail traveling behind seem to be descending out of the sky heade +1999-11-16,41.0086111,-91.9625,Fairfield,IA,fireball,15,Greenish apearing fireball with spark tail heading slowly eastward. +1999-11-16,36.4275,-84.9319444,Jamestown,TN,light,180,Husband saw a greenish/white streak that seemed to be motionless +1999-11-16,36.4275,-84.9319444,Jamestown,TN,light,45,A very slow moving, white with a greenish tint streak of light moving in a northern direction. +1999-11-16,43.0388889,-87.9063889,Milwaukee,WI,fireball,10,Very large, bright green fireball traveling west to east fairly low to the horizon. +1999-11-16,42.2630556,-88.0038889,Mundelein,IL,fireball,15,I saw a fireball, very low in the horizon, it was greenish in color with a tail that was white and green. It moved west to east +1999-11-16,43.8844444,-91.235,Onalaska,WI,teardrop,10,Green Fireball with yellow-orange tail. +1999-11-16,42.7261111,-87.7827778,Racine,WI,fireball,45,Definate fireball traveling west to east, some pieces were breaking off, extremely bright green glow illuminated surroundings casting s +1999-11-16,44.7822222,-88.6088889,Shawano,WI,cigar,60,Very large cigar, or disc shaped. had a row of windows, and lights yellow orange in color. +1999-11-16,38.6272222,-90.1977778,St. Louis (Fenton),MO,fireball,10,green ball of fire we were facing north and it crossed the horizon from west to east w/ tail +1999-11-16,38.6272222,-90.1977778,St. Louis (Metro Area),MO,fireball,10,Fire ball shooting across the sky from west to east at a 30 degree angle +1999-11-16,38.8002778,-90.6263889,St. Peters,MO,fireball,30,A bright ball of light (blue in color with an orange tail) descended across the sky at a 45 degree angle. It then "broke apart" into an +1999-11-16,37.555,-87.4369444,Onton,KY,fireball,300,I observed a fireball coming from the western sky parrallel to the ground going east with fire trail behind it. +1999-11-16,42.3147222,-88.4486111,Woodstock,IL,fireball,60,Saw something in the sky looked like fireworks but travel to far and to long. +1999-11-16,41.3186111,-87.2002778,Hebron,IN,other,15,Driving down highway in dark and noticed dull flash from above, leaned forward and saw something dropping from sky, Object was droppin +1999-11-16,38.6272222,-90.1977778,St. Louis,MO,light,60,I was picking up my fiance from work. While standing outside a noticed a picular object in the sky. at fist i thought it was an airpla +1999-11-16,36.3883333,-86.4466667,Gallatin,TN,fireball,30,Green fireball - west to east flight - low on northern horizon - appeared to be color of burning copper - unable to gauge speed (no dis +1999-11-16,39.5488889,-89.2944444,Taylorville,IL,light,30,A bright burning light or fireball traveling North to South, that gradually disappeared. +1999-11-16,42.9633333,-85.6680556,Grand Rapids,MI,light,10,Erratic bright pinpoint of light fading to red before disappearing +1999-11-16,40.7933333,-77.8602778,State College (28 Miles Se Of On Rt 322w),PA,fireball,30,one fireball traveling east horizontally across the sky,sparked and broke into five balls one by one in a trail of sparks +1999-11-16,41.9888889,-88.6866667,Sycamore,IL,fireball,240,Witness described a fireball like object with a large multi-colored head (basketball or two) with a large tail extending behind it 10 h +1999-11-16,38.1597222,-87.4483333,Elberfeld,IN,fireball,240,I was traveling home from work on I164 from Evansville, IN to Oakland City, IN. As I was approaching the I64 crossover, I saw a bright +1999-11-16,29.7630556,-95.3630556,Houston,TX,light,45,walking s-se I noticed an unnatural light in the sky s-se about 30 degrees. Motionless, obvious to be a great distance away +1999-11-16,38.4783333,-82.6380556,Ashland,KY,light,30,saw a light resembling aircraft light-but not blinking-moved horizontially with trailing light as though it was time lapse photography +1999-11-16,38.2541667,-85.7594444,Louisville,KY,light,20,I sighted a long series of lights west of Louisville Ky. +1999-11-16,41.3658333,-85.2388889,Avilla,IN,fireball,30,Five Police Officers on a stake out in Noble county in Indiana at county roads 250 & 600, saw a fireball streak from south west to nort +1999-11-16,41.85,-87.65,Chicago,IL,triangle,20,Triangular shaped, solid bright white with bright white tail, moving very fast over north/downtown Chicago, directly towards Lake Michi +1999-11-16,39.3330556,-82.9825,Chillicothe,OH,light,30,The UFO flew directly over my house. It was a bright elongated light moving approx. 60 mph +1999-11-16,39.1619444,-84.4569444,Cincinnati (Eastern Outskirts),OH,fireball,11,large, slow moving green fireball with green and yellow tale, dropping reddish sparks, moving from south/south west towards north/north +1999-11-16,43.915,-87.7472222,Cleveland (Northern),WI,fireball,60,Fireball +1999-11-16,41.4994444,-81.6955556,Cleveland,OH,light,300,It was rock shape fire balls moving very slowly Over the raped station it was coming from east to west. +1999-11-16,42.8822222,-82.6625,Columbus,MI,other,60,Looking out my living room window...I saw a bright light that had a form like a long tail. It came from the west and was traveling slow +1999-11-16,39.9611111,-82.9988889,Columbus,OH,fireball,180,I saw 4 or 5 fireballs going across the sky.They were right behind each other. +1999-11-16,42.3313889,-83.0458333,Detroit,MI,unknown,30,Objects seen over detroit meto airport +1999-11-16,42.7369444,-84.4838889,East Lansing,MI,unknown,20,Green flare like object streaked from SWW to NEE +1999-11-16,42.9544444,-83.4033333,Hadley,MI,fireball,30,I don't know if I'd call it a CRAFT, but I saw 5 or 6 extremely bright white balls of light clustered together, with red/orange/purple- +1999-11-16,43.2880556,-77.7936111,Hilton,NY,formation,30,seen 3 bright objects moving from west to east. +1999-11-16,38.2541667,-85.7594444,Louisville,KY,light,7,Very bright white light, moving at approx. mach 2 or 3, in a northerly to north easterly direction, along a perfectly straight line, ap +1999-11-16,44.0991667,-87.7008333,Manitowoc Rapids,WI,fireball,2,Really bright fireball in the southern sky +1999-11-16,41.7075,-86.895,Michigan City,IN,formation,10,5 pieces in formation of the nike symble +1999-11-16,39.515,-84.3983333,Middletown,OH,triangle,10,I observed a huge, silent, pale green triangular object moving east over the city. +1999-11-16,40.3933333,-82.4858333,Mount Vernon,OH,cigar,40,Cigar shaped craft glided over the treetops behind my home. +1999-11-16,41.3136111,-81.7247222,North Royalton,OH,fireball,20,I saw the November 16th event. To me it was a fireball. It moved from west to east. +1999-11-16,43.12,-85.56,Rockford,MI,fireball,30,watched from car fire like balls in the sky +1999-11-16,42.4605556,-83.6516667,South Lyon,MI,fireball,120,saw what was reported as earth rakers +1999-11-16,42.5802778,-83.0302778,Sterling Heights,MI,fireball,12,Saw five fireball objects flying at a low altitude and steady speed crossing from west toward the northeast. +1999-11-16,41.6638889,-83.5552778,Toledo,OH,fireball,15,Three balls of fire, one larger than the others, flew across sky and disappeared over horizon +1999-11-16,44.1538889,-87.5691667,Two Rivers,WI,fireball,120,Streak of light in south +1999-11-16,42.7022222,-83.4027778,Waterford,MI,fireball,30,I witnessed a meteor / fireball that passed south of my location traveling from the West to the East at a fairly slow rate of speed. +1999-11-16,39.051944399999996,-82.6366667,Jackson,OH,sphere,20,I exited my vehicle at about 7pm est and a greenish light caught my attention from the corner of my eye. It was travelling from my lef +1999-11-16,40.1261111,-82.9291667,Westerville,OH,fireball,10,it was a white blueish fireball,leaving a greenish,long trail of orange sparks +1999-11-16,44.9286111,-85.3730556,Kewadin,MI,circle,240,saw a light, long object above some trees while driving.we stopped and got out to see what it was. we thought it was a large plane flyi +1999-11-16,44.9286111,-85.3730556,Kewadin,MI,circle,300,saw long string of lights and watched it hover atop some trees.when it turned to the left i saw that it was circular and large. i knew +1999-11-16,43.2508333,-83.7941667,Birch Run,MI,formation,10,Passing meteor? Seen from my livingroom window, looking south, appeared to be 30 degrees above the horizon, moving from West to East. +1999-11-16,38.2775,-85.7372222,Jeffersonville,IN,fireball,34,I seen a bright fireball-shaped object in the sky traveling east, northeast. It was moving at an increadible speed and at a high altit +1999-11-16,39.4352778,-84.2030556,Lebanon,OH,fireball,10,White and orange fireball seen. +1999-11-16,38.2541667,-85.7594444,Louisville (45 Miles Southeast Of),KY,changing,8,Multi-colored round ball (primarily blue and green to start). Appeared from the North East at approx 39 degrees from the horizon . The +1999-11-16,39.9241667,-83.8088889,Springfield,OH,fireball,60,Heading eastbound on rt4. western outskirts of Springfield,Oh noted a single white fireball about60 deg from the north horiz. and dead +1999-11-16,39.0875,-81.9227778,West Chester,OH,fireball,30,On 11/16/99 at approx. 7:04 pm, I saw a green/orange "fireball" streaking from west to east...it spit out 5 or so smaller round objects +1999-11-16,40.3944444,-84.1727778,Anna,OH,light,30,Moving from west to east I saw a bright light followed by a long fire trail. +1999-11-16,43.9011111,-85.8516667,Baldwin,MI,fireball,120,large green "comet" with a very large orange tail extending at least 10x as long as the "head" traveling ESE . +1999-11-16,39.1619444,-84.4569444,Cincinnati,OH,light,7,Saw three lights streak across the sky with particles flaking off. The objects left no trail however. +1999-11-16,41.4994444,-81.6955556,Cleveland,OH,fireball,25,Objects split over the city. Originally looked like a 'firework" passed east to west as i was looking north. +1999-11-16,40.8852778,-73.9527778,Englewood Cliffs,NJ,circle,10,LOOKING NORTHWEST AT APROX. 45-55 DEGREES FROM HORIZON. TRAVELED TO NORTHEAST AT METEOR SPEED UPWARD. +1999-11-16,39.8208333,-84.0194444,Fairborn,OH,other,60,Saw a very bright streak of light at about 500-1ꯠft altitude with bright multicolored flashes of light emmiting from it. Estimated s +1999-11-16,38.3725,-85.9863889,Greenville,IN,cigar,30,saw a long object like a pencil with alternating red and green lights moving across sky in a east to west direction for about 30 second +1999-11-16,40.0333333,-83.1583333,Hilliard ( Western Suburb Of Columbus),OH,flash,10,Not believed to be extra terretrial. Probably that space junk. Many in Columbus saw it. Just giving you a time and palce so you can tr +1999-11-16,42.6072222,-83.9294444,Howell (5 Mi. N Of, On A Dark Country Road),MI,formation,30,A long line of white lights moving from W to E, absolutely static and rigid, no blinking or sparks, no movement in relation to the othe +1999-11-16,41.24,-81.4408333,Hudson,OH,other,20,looking out of window I saw a huge long light moving slowly across sky, that looked like a passenger train with many lights alongside o +1999-11-16,39.7683333,-86.1580556,Indianapolis,IN,light,7,4 green lights coming from the northeast sky downward at about a 45 degree angle. Lights seemed perfectly spaced and moved at the same +1999-11-16,39.3880556,-77.8858333,Kearneysville,WV,light,90,4-5 bright lights were seen approximately equally spaced from each other moving from the west to the east. They appeared to be moving +1999-11-16,38.7358333,-85.38,Madison,IN,other,1.2,Driving N on old hw62 at jct 400N & hw62. object alt 100ft dist. 150ft travel W to E 65 to 70 deg. compass. sparks yellow & white. vapo +1999-11-16,41.3922222,-84.1252778,Napoleon,OH,fireball,90,Bright light/craft with tail traveling s-ne +1999-11-16,41.2425,-82.6158333,Norwalk,OH,other,30,Bright light resembling bottle rocket or firework travelled from west to east. +1999-11-16,39.9241667,-83.8088889,Springfield,OH,formation,150,6 unknown lights traveling in a straight line +1999-11-16,39.4666667,-87.4138889,Terre Haute,IN,fireball,15,November 16, 1999 - Large meteor/fireball sighting in Indiana, folloed by UFO sighting later that evening. +1999-11-16,42.4394444,-83.7438889,Whitmore Lake,MI,teardrop,120,Objects crossed sky from approx west to east. 1 large and 4 smaller trailing objects. Observed for at least 2 min. No sound. All had sh +1999-11-16,41.4047222,-81.7230556,Parma,OH,circle,240,saw 6 to 7 white round obects with green glow going,.. across the sky towrds the East, not in a fast pace, but slow...the objects had t +1999-11-16,42.5802778,-83.0302778,Sterling Heights,MI,fireball,90,Object traveling from west to east, Very Large white/blue fireball with long yellow orange tail 4 smaller objects behind it. +1999-11-16,39.7686111,-76.68,Shrewsbury,PA,circle,60,Circular orangish-yellow lights with comet like tails flying in a line,one behind the other, from west to east in the Northern sky. +1999-11-16,42.3369444,-83.2733333,Dearborn Heights,MI,fireball,12,I was talking to my son when I saw (to his back) what I thought was an airplane on fire, crashing ( we live aprox. 3mi. North, East of +1999-11-16,38.4177778,-82.5863889,South Point,OH,fireball,20,Looked like a large meteor or space junk re-entry. +1999-11-16,42.12,-85.5327778,Vicksburg,MI,fireball,10,Observed an orange fireball with between 4-6 trailing fireballs streaking across the sky in a SW to NE direction +1999-11-16,43.0011111,-84.5591667,St. Johns,MI,other,120,Approxamitly at 7:09pm I, and two other witnesses spotted 3 to four what looked to be fireballs fly in formation across the sky, They w +1999-11-16,41.4994444,-81.6955556,Cleveland,OH,disk,5,Dear Sirs, My name is ((name deleted)) 36yr old biomedical engineering tech for a local dialysis center. I observed on date reported +1999-11-16,40.9194444,-84.0569444,Columbus Grove,OH,circle,15,this was a large object moving at a very fast pace from the north west to the south east. it did not burn up but just went over the hor +1999-11-16,39.9611111,-82.9988889,Columbus,OH,light,120,Earth Skimmer Meteor? +1999-11-16,38.3241667,-85.4725,Crestwood,KY,cigar,60,Craft entered my field of vision, stayed at one side of my vision, then moved across until it was hidden behind trees +1999-11-16,42.3313889,-83.0458333,Detroit (North Of, Driving East On I-696),MI,formation,30,Witnessed 5 balls of light in the sky, lasting as long as 30 seconds, while driving east on I-696. My location was between I-75 and I-9 +1999-11-16,42.3313889,-83.0458333,Detroit (Or Windsor, Ont),MI,formation,45,I was headed east on I94 in MI around jackson countyI was looking to the east out of my truck window when I saw theses lights in a form +1999-11-16,41.6216667,-83.7116667,Holland,OH,formation,40,i went outside to smoke a ciggarette,i glanced to the west of my home.saw cluster of lights,elongated formation,some larger than others +1999-11-16,39.7683333,-86.1580556,Indianapolis,IN,fireball,10,I was walking the dog about 7:10 PM when I saw a Vanilla white fireball moving West to East past the intersection of South Keystone Ave +1999-11-16,39.4577778,-76.3555556,Joppatowne,MD,light,4,traveling northeast in a car. i observered 3 objects, best described as dots, flew across the sky. they traveled one behind the other. +1999-11-16,38.2541667,-85.7594444,Louisville,KY,fireball,10,Single bright fireball with fire trail and sparks, very far out and high up, fast moving from southwest to northeast, obviously massive +1999-11-16,40.2141667,-77.0088889,Mechanicsburg,PA,formation,20,Linear formation of bright amber colored lights moving west to east at about the speed of a normal airplane, but it was not an airplane +1999-11-16,41.3144444,-81.8358333,Strongsville (Suburb Of Cleveland),OH,fireball,120,Flaming fireball initially looking like a firecracker was steadily moving in west to east. I was south of it facing north from 10:00 po +1999-11-16,39.3994444,-84.5613889,Hamilton (Hanover Twp),OH,fireball,60,A large fireball moving West to East in the Northern Sky at 1-2 o'clock was visible, deteriorating rapidly in light intensity as if bur +1999-11-16,42.4605556,-83.6516667,South Lyon,MI,fireball,120,On 16-Nov-99 at about 7:12 PM EST I witnessed a dramatic fireball in the sky over South Lyon, Michigan, a small town just to the North +1999-11-16,41.85,-87.65,Chicago,IL,fireball,30,Green fireball followed by tail of red going northeast across sky +1999-11-16,39.1619444,-84.4569444,Cincinnati,OH,fireball,25,Bright green fireball 20-25deg. above horizon the size of 1/2 thunmbnail at arms length traveling s.west to n.east for 25 seconds. Brok +1999-11-16,41.4994444,-81.6955556,Cleveland,OH,egg,3,I was reading the reports from last year of the four fast moving objects Nov.ྟ. I also reported it to you. And their was a note that +1999-11-16,42.9572222,-83.8305556,Swartz Creek,MI,formation,20,Light formation spanning over a HUGE area and moving very slowly from South to North direction then aiming downward +1999-11-16,40.1083333,-83.7525,Urbana,OH,formation,30,Stream of lights colored red, yellow, white in northern sky traveling West to East. Lower altitude. Changed speed from slower to extre +1999-11-16,32.5997222,-110.6302778,San Manuel,AZ,triangle,300,Very large soundless aircraft. +1999-11-16,40.3980556,-77.0233333,Duncannon,PA,sphere,3,I saw one object,traveling west to east at a high rate of speed. This object was a very bright white light. +1999-11-16,40.8336111,-75.7141667,Lehighton,PA,light,20,THREE OBJECTS APPEARED OVER HORIZON WITH LONG TAILS IN FORMATION +1999-11-16,43.0125,-83.6875,Flint,MI,formation,30,Seen traveling west to east...bright white lights, Precise triangle formation, 3 objects, IDENTICAL. CONSTANT SPEED. +1999-11-16,29.9033333,-90.0772222,Harvey,LA,formation,20,I had taken the dog outside, and while I was waiting for him to do his business,I looked up to stargaze on this extremely clear night. +1999-11-16,38.9780556,-122.8383333,Kelseyville,CA,light,30,Three vehicles, two small and one large in the rear. approximately 30 to 80 thousand feet leaving a triangle wake. moving from NW to NE +1999-11-16,37.7652778,-122.2405556,Alameda,CA,chevron,5,a flying chevron with extremely white bright lights for about 5 seconds and it disapeared in clear sky while banking right +1999-11-16,42.6583333,-83.15,Rochester Hills,MI,other,30,Saw a boomerang shaped, grey, HUGE, object pass at about 45 degrees from the horizon. It was gliding to the south east direction. More +1999-11-16,42.2411111,-88.3161111,Crystal Lake,IL,fireball,60,Nov 16񫺏 Meteor, fireball sighting +1999-11-16,38.2225,-85.3552778,Simpsonville,KY,fireball,60,I was pulling up my long driveway facing Southwest and saw in the distance what first looked like Airplane landing lights coming toward +1999-11-16,35.9605556,-85.8141667,Smithville,TN,teardrop,300,2 lights were seen just above the tree lines about a mile away from my home. i watched these lights for several minutes then they shot +1999-11-16,36.1988889,-115.1166667,North Las Vegas,NV,other,2400,FIRST NOTICED MANY BLINKING LIGHTS NORTHERN HORIZON. FLASHING WHITE AND GREEN. NUMEROUS AND MOVING CLOSELY TOGETHER. THEY MOVED NORTH D +1999-11-16,37.5841667,-122.365,Burlingame,CA,other,1,This is in referance to the request on Art bells show to submit sighting on the night of november 16. This is what I saw... +1999-11-16,36.7277778,-110.2538889,Kayenta,AZ,light,7200,Bright Light with tail seen while driving on I-180 +1999-11-16,35.9380556,-77.7908333,Rocky Mount,NC,light,300,WE IST SAW BRIGHT MOVING LIGHTS,MOSTLY WHITE.THEY APPEARED TO HAVE POWERFUL SEARCH LIGHTSTHAT SCANED A LARGE AREA.WE THEN SAW A STRING +1999-11-16,39.9936111,-105.0891667,Lafayette,CO,other,5,First sighting @23:03 while watching meteor shower. Saw VERY large boomerang shape object crossing sky at satellite speed. Again at 0:3 +1999-11-16,38.9516667,-92.3338889,Columbia,MO,chevron,300,Sitting on backporch, looking at sky, smoking cigarette when an orange light in the sky caught my attention... +1999-11-16,44.9238889,-92.9591667,Woodbury,MN,rectangle,18000,I saw 4 craft floating in the sky in and near the constellation Ursa Major. They remained there for quite some time and then sped off. +1999-11-16,35.4675,-97.5161111,Oklahoma City,OK,egg,5,Large blue green fire ball, slightly larger than the hiway lights. +1999-11-16,38.9822222,-94.6705556,Overland Park,KS,diamond,7200,Roger Betts(friend), my two children and I went to a park to watch the meteor shower. We noticed a cluster of lights in the sky that l +2000-11-16,35.1186111,-120.5897222,Arroyo Grande,CA,other,3,Iwork schiftes at 24:00HRS WHILE TRVELING SOUTH ON HWY 101 I SIGHTED A ASTEROIDE SKIPING ARE ATMOSHPHERE ONE SIXTH THE SIZE OF THE THRE +2000-11-16,34.0341667,-94.5747222,Eagletown,OK,sphere,900,noticed were lights in patterns of 3. approimately 8 or more sets in all. When I looked directly up in the sky, this oject was as large +2000-11-16,47.3075,-122.2272222,Auburn,WA,fireball,5,Bright flash of light seen in the sky and apparently headed directly under a commercial airline flight headed for SeaTac Airport +2000-11-16,47.9791667,-122.2008333,Everett,WA,other,5,Brilliant Streak: 'Lands' at Everett Mall +2000-11-16,44.3936111,-122.9836111,Brownsville,OR,circle,4,I saw a small amber light traveling from east to west +2001-11-16,39.7391667,-104.9841667,Denver,CO,chevron,60,Large boomerang-shaped craft seen during meteor storm in the Denver, Colorado area. +2001-11-16,34.1722222,-118.3780556,North Hollywood,CA,cigar,15,Cigar shaped object with 3 bright round white lights +2001-11-16,33.5091667,-111.8983333,Scottsdale,AZ,triangle,30,Saw silent, triangular craft at early twilight that was almost blended with the sky background. +2001-11-16,32.3525,-90.8777778,Vicksburg,MS,teardrop,600,UFO sighted by numerous people +2001-11-16,33.4483333,-112.0733333,Phoenix,AZ,formation,240,Lights that seemed to flutter and flap like the wings of birds +2001-11-16,39.945,-105.8166667,Fraser,CO,triangle,5,5, red, triangular shaped, crafts fly across the night sky in Colorado............ +2001-11-16,35.1427778,-76.7705556,Bayboro,NC,triangle,5,Three lights in triangular formation. +2002-11-16,42.2438889,-71.9927778,Spencer,MA,light,20,Lights were at brief and bright. +2002-11-16,33.7358333,-118.2913889,San Pedro,CA,formation,1500,Six dark objects move over city in daytime, stop, hover, assume stationary " U" formaiton. +2002-11-16,33.9652778,-118.1505556,Bell Gardens,CA,sphere,30,I saw a flying object that was the shape of Saturn all lit up and just above treetops and buildings +2002-11-16,35.4675,-97.5161111,Oklahoma City,OK,cylinder,600,black cylindrical object with two forward lights. +2003-11-16,36.0958333,-79.2672222,Mebane,NC,unknown,300,Unseen object's, Very loud sonic booms over Mebane NC +2003-11-16,34.0522222,-118.2427778,Los Angeles,CA,other,1800,Stars in the mid-day sun. +2003-11-16,34.1683333,-118.605,Woodland Hills,CA,light,10,Intense, White Light Streaks Across The 101 Freeway Towards Simi Valley!! +2003-11-16,34.6086111,-98.39,Lawton,OK,other,1800,2 crescent shaped lights moving and changing into "rockets" with red flames, and no white streaks behind them. +2003-11-16,38.8113889,-90.8527778,Wentzville,MO,light,3,Bright Light +2003-11-16,29.3836111,-94.9025,Texas City,TX,unknown,60,Saw straight line star color objects moving at a high rate of speed from south to north;moving too fast to be bird formation,also maint +2003-11-16,27.7705556,-82.6794444,St. Petersburg,FL,circle,60,Circular object flying overhead +2003-11-16,33.8752778,-117.5655556,Corona,CA,light,2700,two white lights with red light blinking back and forth,moving to the right then back to the left. +2003-11-16,32.7152778,-117.1563889,San Diego,CA,circle,900,Walking back to my apartment and noticing the sky had cleared between storms, I looked up to see and appreciate the clear, dark sky and +2003-11-16,44.2891667,-69.2513889,Appleton (Near),ME,triangle,2400,I saw a bright odd-shaped star through my bedroom window facing southeast in a valley toward the coast of Camden, Maine (about 22 mile +2003-11-16,31.315,-85.8552778,Enterprise,AL,light,240,Three to four different oblects together being attacked by jets. +2004-11-16,35.6225,-117.67,Ridgecrest,CA,triangle,180,An orange triangular craft that made no sound observed in the Mojave Desert. +2004-11-16,40.9791667,-74.1169444,Ridgewood,NJ,oval,600,7 oval shaped lights moving in formations for 10 minutes, may have left trails, then disappeared. +2004-11-16,43.0113889,-75.0044444,Mohawk,NY,light,10,3 Golden Lights, Appear and Disappear +2004-11-16,41.49,-71.3133333,Newport,RI,triangle,240,11-16-04 On this night both the anniversary of my fathers death and the birth of my grandfather I had an intense UFO experience. While +2004-11-16,39.2672222,-76.7986111,Ellicott City,MD,cigar,240,Too slow to be a plane, too fast to be a star and stayed within a small radius, and want to know if there are other reports. +2004-11-16,38.2541667,-85.7594444,Louisville,KY,disk,1800,it floated past inside a hase +2005-11-16,35.0525,-78.8786111,Fayetteville,NC,formation,120,bright lights seen over northwest Fayetteville +2005-11-16,33.4483333,-112.0733333,Phoenix,AZ,triangle,600,Daytime sighting of three objects, in formation, moving across the sky, VERY VERY high compared to other aircraft. No noises at all. +2005-11-16,34.0522222,-118.2427778,Los Angeles,CA,disk,120,3 people witness saucer with flashing red and blue lights in Playa del Rey near beach in LA +2005-11-16,34.0522222,-118.2427778,Los Angeles (Playa Del Rey),CA,disk,120,Object was viewed from the parking lot of the La Marina Restaurant in Playa del Rey, a beach community that is part of the city of LA. +2005-11-16,36.06,-86.6722222,Antioch,TN,light,2400,Bright shining light slowly moving in a drifting, swirling fashion toward the southwest. ((Venus?? )) +2005-11-16,46.7163889,-122.9530556,Centralia,WA,triangle,420,Nov. 16񫺕 Place: Centralia Washington- 4/10ths mile West of I-5 Hwy on Cooks Hill Road & Scammon Creek Road It was about 21:00 hrs +2005-11-16,38.0683333,-120.5386111,Angels Camp,CA,sphere,600,Bright spherical object seen hovering above hills of Angels Camp. +2005-11-16,42.525,-71.7602778,Leominster,MA,flash,1,Bright green flash of 2 parallel lines, lasted a second or less. +2006-11-16,47.5963889,-120.6602778,Leavenworth,WA,cylinder,7200,I saw one very large cylinder craft just above tree tops. It was flashing red & blue lights constantly. The craft never moved from it +2006-11-16,34.1733333,-118.5530556,Tarzana,CA,sphere,25,Ball of white light near contrail. Moving from left to right, hovering in sky. Zoomed in and out of view. +2006-11-16,33.0580556,-112.0469444,Maricopa,AZ,oval,5,silver oblong object observe in east/southeastern sky at 10:30 AM for apprx 5 seconds. was gone before anyone of four friend could see +2006-11-16,33.2,-117.2416667,Vista,CA,unknown,1800,Stange contrails in the western horizon off coast of San Diego. +2006-11-16,33.3061111,-111.8405556,Chandler,AZ,rectangle,7,driving north on I-10 south of Chandler, AZ saw shiney, silver object in north/ northwestern sky for 5 - 7 secs +2006-11-16,39.3544444,-84.1272222,Morrow County,OH,disk,180,Daylight sighting of disc shaped object performing impossible maneuvers +2006-11-16,44.3,-120.8333333,Prineville,OR,changing,180,Bright lights change number and into object and strike of lights apear in picture taken Prineville, OR +2006-11-16,47.2152778,-123.0994444,Shelton,WA,unknown,180,Flashing white lights over Sanderson Field in Shelton Washington +2006-11-16,30.1586111,-85.6602778,Panama City,FL,light,40,Red Orb Light ( Not Blinking) +2006-11-16,33.4483333,-112.0733333,Phoenix,AZ,rectangle,5,three parallel glowing orange light overhead +2006-11-16,28.9166667,-82.4583333,Beverly Hills,FL,changing,900,Round with lots of color .Large ball or mass with 3-4 smaller balls near it. Moving. ((NUFORC Note: Sighting of Sirius? PD)) +2006-11-16,29.8186111,-95.0558333,Highlands,TX,circle,40,the object was more fast than an air plane. ((NUFORC Note: Student report. Possible hoax. PD)) +2007-11-16,38.3802778,-78.2577778,Madison,VA,circle,20,Eight to ten circular objects in triangular formation near high cumulus cloud in daytime. +2007-11-16,42.3313889,-83.0458333,Detroit,MI,other,120,I’m 29 years old, Caucasian male, and currently work as head of maintenance for an apartment building in downtown Detroit. I don’t make +2007-11-16,39.0169444,-94.2813889,Blue Springs,MO,light,1800,Moving lights in northern sky over Missouri, [6] visible with night vision scope [2] with naked eye. +2007-11-16,39.3330556,-82.9825,Chillicothe,OH,fireball,600,5 red orange fireball looking things +2007-11-16,36.3319444,-94.1183333,Rogers,AR,light,6300,Big white light, then smaller red lights seen in the eastern sky that should not have been there and then vanished. +2007-11-16,36.2552778,-94.1305556,Lowell,AR,chevron,15,"V-Shaped" object passing over Lowell Arkansas with no sound or lights. +2008-11-16,39.3641667,-74.4233333,Atlantic City,NJ,light,50,ZigZagging Light over Atlantic Ocean off Coast of Atlantic City, NJ +2008-11-16,33.1580556,-117.3497222,Carlsbad,CA,cross,5,The object was transparent & cylindrical but having smooth edges and having a cross sectional area with red and green lights. +2008-11-16,38.9783333,-76.4925,Annapolis,MD,disk,180,Four silver objects in shifting formation over the Eastern Shore +2008-11-16,38.4405556,-122.7133333,Santa Rosa,CA,fireball,10,Brilliant fireball observed while driving north on Stony Point Road, Santa Rosa, CA. ((NUFORC Note: Possible meteor. PD)) +2008-11-16,36.0997222,-80.2444444,Winston-Salem,NC,light,3000,A mysterous, and very bright lumanating craft seen hoovering high over Clemmons, N.C +2008-11-16,40.4863889,-86.1336111,Kokomo,IN,circle,900,The three bright objects seemed to be fading from dim to very bright for about fifteen minutes, just as we have seen before many times. +2008-11-16,34.0522222,-118.2427778,Los Angeles,CA,circle,15,I saw a small circular object with bright lights hovering low and very slowly in the air. +2008-11-16,42.0833333,-71.0188889,Brockton,MA,triangle,120,Suspected UFO, hovering in an unpopulated area over the tree line. +2008-11-16,34.0469444,-116.58,Morongo Valley,CA,light,600,Blueish/White light seen in Morongo Valley, CA. +2009-11-16,40.7791667,-72.9158333,Brookhaven,NY,chevron,10,small v shaped transparent red lights very faint one side of v was shorter than other +2009-11-16,38.6652778,-78.4597222,Luray,VA,cylinder,300,Bright brilliant orange cylinder object about New Market Gap, with light flying from it and coming back to craft. +2009-11-16,48.1969444,-106.6361111,Glasgow,MT,light,10,Intense bright light seen for a few seconds. +2009-11-16,41.42,-87.7416667,Monee,IL,light,600,incredibly bright white solid light that hovered for 5-10 minutes then disappeared +2009-11-16,33.2486111,-111.6336111,Queen Creek,AZ,changing,1800,3 White Orbs and bands of 8 Red Lights flash on and off over Queen Creek, AZ +2009-11-16,39.7597222,-121.6208333,Paradise,CA,light,15,2 lights, 1st one NOT blinking being followed by 2nd one with blinking lights (probable military aircraft) +2009-11-16,38.6580556,-77.25,Woodbridge,VA,circle,10,3 objects over Northern Virginia +2009-11-16,31.8541667,-110.9930556,Green Valley,AZ,light,60,Took my dog for a walk tonight on my block. Looked up in the night sky to the North and saw a series of strobe lights stationary in the +2009-11-16,41.7747222,-74.2986111,Kerhonkson,NY,changing,900,2 unidentifiable flying objects passsed over our home in Kerhonkson , NY +2009-11-16,30.2669444,-97.7427778,Austin,TX,other,1,A crescent shape UFO flying 6ꯠ feet above my head +2009-11-16,48.4213889,-122.3327778,Mount Vernon,WA,unknown,120,After thinking about this all week, I've decided to report this. During the 3rd week of November 09 ( I dont remember the exact day) my +2009-11-16,34.2783333,-119.2922222,Ventura,CA,formation,7,5 non blinking red-orange lights in V formation zooming silently across the night sky +2009-11-16,33.9908333,-118.4591667,Venice,CA,light,15,Coming home from work parking my in the back yard,I look up at the sky.At Marina Del Rey, moving north to Santa Monica 4 light triangle +2010-11-16,37.6688889,-122.0797222,Hayward,CA,disk,300,I was walking my dogs in the morning and on my way back I saw like a disc object floating in the air. It was like leaning side to side +2010-11-16,42.6805556,-83.1338889,Rochester,MI,triangle,180,Black triangle in Rochester, Michigan +2010-11-16,33.9608333,-83.3780556,Athens,GA,light,5,Ascending Orange Light +2010-11-16,34.365,-77.6308333,Topsail Beach,NC,sphere,300,brigth orange globe that became four objects. +2011-11-16,26.6833333,-80.28,Loxahatchee,FL,fireball,5,Consolidated ovoid Fireball, Supersonic speed but without sound, hint of form, 3-5 sec duration, stable trajectory PARALLEL to ground +2011-11-16,34.1083333,-117.2888889,San Bernardino,CA,light,60,A fast moving bright white object zooms past ISS +2011-11-16,39.9241667,-83.8088889,Springfield,OH,light,5,Bright silver fast moving light in the sky made a quick 180 degree turn, comtrail photographed. +2011-11-16,43.7972222,-90.0772222,Mauston (In Country),WI,circle,60,3 large spheres in sky merge into 1 and disappear north of the Wi Dells on a country road at dusk. +2011-11-16,36.7277778,-110.2538889,Kayenta,AZ,unknown,2400,UFO lights near Kayenta, AZ +2011-11-16,44.0355556,-89.5213889,Coloma,WI,unknown,5,Over a rural road, six horizontal lights appeared low in the sky for a few seconds and disappeared, silently. +2011-11-16,43.9680556,-88.9433333,Berlin,WI,circle,120,Row of vertical rectangular lights framed by darkness illuminated a circular matte gray object. +2011-11-16,43.6275,-89.7708333,Wisconsin Dells,WI,unknown,5,String of lights +2011-11-16,37.6775,-113.0611111,Cedar City,UT,flash,360,Large String of perfectly spaced strobes flashing in a chaceing pattern along the entire string over Cedar City, UT +2011-11-16,37.6775,-113.0611111,Cedar City,UT,formation,900,String of flashing lights widely spaced moving steadily through western sky from north to south +2011-11-16,35.2225,-97.4391667,Norman,OK,light,5,Small, faintly triangular light seen over east Norman, OK +2011-11-16,36.9613889,-120.0597222,Madera,CA,other,30,Large angel hair mass floating above county road. +2011-11-16,42.2966667,-89.6211111,Freeport,IL,triangle,15,Totally silent and dark objects flew over my neighborhood 11/16/2011 +2011-11-16,30.5066667,-88.2338889,Irvington,AL,circle,600,Reddish orange lights fading and reappearing in different spots of the sky. +2011-11-16,33.4936111,-117.1475,Temecula,CA,unknown,240,Blacked out Helicopters followed by a strange white light +2011-11-16,25.7738889,-80.1938889,Miami,FL,unknown,20,Triangular formation that disburses. +2011-11-16,38.5816667,-121.4933333,Sacramento,CA,light,600,((HOAX?? Date is flawed.)) Green ufo and red and white ufo over shopping center. +2011-11-16,44.2911111,-121.5480556,Sisters,OR,flash,120,Red low flying objects, no sound +2011-11-16,32.5325,-93.5038889,Haughton,LA,sphere,120,Orange sphere trailing high flying jet +2011-11-16,41.3572222,-88.4211111,Morris,IL,triangle,60,Craft is traingular 2 red lights 1 blue light bottom is gray hovered silently then took off at high speeds +2011-11-16,38.0280556,-121.8836111,Pittsburg,CA,flash,7200,Was driving on the freeway and saw what appeared to be a shooting star but by the time we exited the freeway this strange light started +2012-11-16,36.6691667,-97.8008333,Pond Creek,OK,teardrop,180,Slow moving teardrop shaped craft +2012-11-16,38.1777778,-94.7111111,Pleasanton,KS,fireball,12,On 11/16/2012, I was with a friend getting ready for a morning duck hunt in Pleasanton, KS. At around 4AM, we witnessed an orange, elo +2012-11-16,45.0563889,-92.8058333,Stillwater,MN,triangle,900,Triangular craft with red lights surrounding an orange center hovering and then retreating over hwy 95 +2012-11-16,41.1838889,-97.0036111,Brainard (6 Mi. E Of; On Hwy. 92),NE,unknown,300,Orange cresent object with trail moving northwest to southwest..no sound, no decent 2-3 min across sky +2012-11-16,41.2586111,-95.9375,Omaha,NE,other,5,While running in the early morning, a friend and I witnessed an object flying at a low altitude emitting an orange glow behind it. +2012-11-16,38.9605556,-89.0936111,Vandalia,IL,light,15,Bright red light at high speed. +2012-11-16,39.6294444,-79.9561111,Morgantown,WV,circle,10,Bright spherical fireball descending from the sky. +2012-11-16,35.6697222,-81.2216667,Newton,NC,sphere,90,Fiery orange/red ord traveling across the sky +2012-11-16,43.1116667,-88.4991667,Oconomowoc,WI,unknown,3600,A light sitting still in the sky that is constantly changing color. Looks to be rotating saucer. +2012-11-16,42.1033333,-76.2625,Owego,NY,circle,1,Bright blowy silver round object vanished in the sky +2012-11-16,44.7894444,-93.6019444,Chaska,MN,light,1800,These things hovered and moved north +2012-11-16,41.0533333,-73.5391667,Stamford,CT,fireball,300,Orange fireballs. +2012-11-16,41.4044444,-80.3913889,Greenville,PA,unknown,300,Red/orange lights seen for about 4 minutes in Western Pennsylvania +2012-11-16,40.5433333,-79.1625,Homer City,PA,diamond,7,Bright diamond shaped object with a beam of light. +2012-11-16,40.5433333,-79.1625,Homer City,PA,diamond,8,Bright diamond shaped moving object with a bright beam of light. 500 Lights On Object0: Yes +2012-11-16,36.175,-115.1363889,Las Vegas,NV,other,20,White, large arrow-shaped UFO flew over/near Las Vegas airport on a November evening. +2012-11-16,34.2783333,-119.2922222,Ventura,CA,fireball,300,Huge black circle with fire ball! +2012-11-16,43.7358333,-70.5525,Standish,ME,circle,30,One orange circle seen flying low over my house silently by two people in Standish, ME. +2012-11-16,33.7669444,-118.1883333,Long Beach,CA,fireball,10,Long Beach California November 16, 2012, appeared to be 2 large comets or fireballs over ocean. +2012-11-16,33.7669444,-118.1883333,Long Beach,CA,fireball,120,Flaming/Sparkling trails with following helicopter over Long Beach, CA +2012-11-16,40.7205556,-76.1913889,Saint Clair,PA,light,300,Orange orbs sighting. +2012-11-16,40.4405556,-79.9961111,Pittsburgh,PA,unknown,3600,Recurring sightings of 3 UFOs. ((NUFORC Note: Possible stars?? PD)) +2012-11-16,47.5288889,-121.8241667,Snoqualmie,WA,circle,2,A UFO was 7 feet away from me outside my window +2012-11-16,43.2983333,-72.4827778,Springfield,VT,sphere,1800,Flying orb seen in night sky +2012-11-16,42.9005556,-78.6705556,Lancaster,NY,fireball,300,Silent Orange/red fireballs coming from the south and became smaller as they moved away +2012-11-16,42.8566667,-85.3802778,Alto,MI,light,120,Three bright orange lights move in formation +2013-11-16,39.4561111,-77.9641667,Martinsburg,WV,oval,120,Grey elongated egg like shape. +2013-11-16,34.0522222,-118.2427778,Los Angeles,CA,fireball,300,Fire ball over major city. +2013-11-16,39.1405556,-121.6158333,Yuba City,CA,sphere,60,3 orbs over Beale Air Force Base +2013-11-16,42.0347222,-93.6197222,Ames,IA,circle,2700,Green, red, and white lights f rom object hovering in the sky. +2013-11-16,40.7402778,-75.31,Nazareth,PA,formation,180,Formation of orange light move across Nazareth sky. +2013-11-16,42.5583333,-71.2694444,Billerica,MA,changing,7200,Stationary bright white object observed in daytime sky in Billerica, MA +2013-11-16,41.5380556,-72.8075,Meriden,CT,fireball,1800,I was driving up east Main Street to dunkin donuts when to my left I saw like 8 balls of orange/red in the sky. I went to dd and on my +2013-11-16,41.4969444,-71.3677778,Jamestown,RI,fireball,480,When outside with our dog around 6:30 pm on Sat., Nov. 16th, I spotted a bright white orange light pulsating somewhat coming above the +2013-11-16,41.0813889,-81.5191667,Akron,OH,light,420,Looking nort east 4 lights making straight line. Then bottom light moved up. 3 lights disappeared then 40 sec later reappeared. Then a +2013-11-16,38.1505556,-81.2875,Boomer,WV,circle,720,Lights in small town looks like that of the New Years Eve ball. +2013-11-16,38.4405556,-122.7133333,Santa Rosa,CA,sphere,120,Low flying orange ball of light moves across northern California. +2013-11-16,42.9311111,-75.3802778,Waterville,NY,unknown,600,EXTREMELY BRIGHT AND HUGE LIGHT OVER WATERVILLE, NY +2013-11-16,33.2002778,-97.97,Wizard Wells,TX,other,300,Green orb descends from air then changes color, shape, and size and flashes lights on cows. +2013-11-16,34.4838889,-114.3216667,Lake Havasu City,AZ,fireball,900,Fireballs appeared over Lake Havasu City and gradually departed gracefully, lovely to watch. +2013-11-16,41.6005556,-93.6088889,West Des Moines,IA,formation,60,10 red orb/lights ranging across the entire northern sky traveling at the same speed and vanishing within 15 seconds. +2013-11-16,33.6408333,-117.6022222,Rancho Santa Margarita,CA,light,600,Northwest in front of the foothills of the Santa Ana mountains, my wife and I were on our way to the supermarket when we witnessed five +2013-11-16,41.6005556,-93.6088889,West Des Moines,IA,light,180,Eight to ten stationary orange lights over West Des Moines, IA +2013-11-16,44.0463889,-123.0208333,Springfield (?),OR,circle,1800,Was moving in different directions at really fast speeds. +2013-11-16,40.3222222,-98.5944444,Bladen,NE,unknown,30,Looked like a spotlight was turned on in a round object like an ornament. +2013-11-16,37.6438889,-98.7372222,Pratt,KS,fireball,3,Quick flash of light. lit up the sky, i turned around and seen the fireball falling. about five minutes later i heard what sounded +2013-11-16,34.0858333,-81.1833333,Irmo,SC,cigar,600,UFO sited 3 times in Columbia SC area, approximately 22 hours each time. +2013-11-16,35.9525,-97.5944444,Crescent,OK,sphere,15,Blueish/green orb or oval over central Oklahoma flew south by south west. Seen by two young men on the phone simultaneously 60mi. apart +2013-11-16,34.165,-84.8,Cartersville,GA,circle,60,Fireball over Lake Allatoona, Cartersville GA +2013-11-16,37.5455556,-97.2686111,Derby,KS,fireball,5,Bright green meteor. +2013-11-16,30.2383333,-90.92,Gonzales,LA,sphere,11,Bright, Orange lights in the sky. +2013-11-16,41.9,-71.0902778,Taunton,MA,fireball,120,Fireball over Taunton. +2013-11-16,26.0625,-80.2333333,Davie,FL,formation,300,9 Fireball-like orange orbs flying in formation from northeast to northwest direction in South Florida +2013-11-16,30.3319444,-81.6558333,Jacksonville,FL,unknown,180,Three lights were coming together and then the left and right vanished. middle light stayed a moment before vanishing too. +1971-11-17,42.6711111,-74.1161111,Knox,NY,disk,60,UFO hovers above and shines a bright beam of light down on me +1977-11-17,40.1044444,-74.9516667,Bensalem,PA,sphere,300,The craft hovered approx. 15 ft. above my station wagon. +1987-11-17,61.2180556,-149.9002778,Anchorage,AK,light,180,Glowing ball of light +1990-11-17,44.2858333,-69.7913889,Hallowell,ME,fireball,120,Night turns to morning light and back again +1990-11-17,46.4855556,-88.8938889,Kenton,MI,cigar,30,At dusk, my Dad and I were walking out of our blinds after deer hunting and our attention was drawn to the lights in the sky, not far a +1995-11-17,40.6627778,-73.5519444,Merrick (Long Island),NY,chevron,30,Reading text of Lufthansa Pilots sighting that night, jogged my memory, of my own sighting that night. +1995-11-17,40.8072222,-72.8216667,Moriches (Long Island),NY,other,120,NY Radar Air Traffic Controllers see UFO over Long Island. +1996-11-17,36.175,-115.1363889,Las Vegas,NV,light,2,Saw a stationary "star" all of a sudden zip to the west, across the southwest sky. +1997-11-17,43.55,-96.7,Sioux Falls,SD,other,180,Giant white streak moving across the sky at a high rate of speed stopped and took a 90 degree turn and went straight up and eventually +1997-11-17,27.9769444,-82.8280556,Clearwater Beach,FL,oval,3600,Encounter On Caladesi Island/ Clearwater Beach, Florida -Two Crafts With Glowing Amber Lights +1997-11-17,61.5813889,-149.4394444,Wasilla,AK,triangle,180,A huge trianglar object moving in a true north direction. +1998-11-17,36.805,-98.6661111,Alva,OK,triangle,120,We were watching the leonoid showers and there was a big meteor that I see I was looking to the north and it seem to appere from no whe +1998-11-17,44.0991667,-87.7008333,Manitowoc Rapids,WI,fireball,2,Incredibly bright fireball in southeast direction +1998-11-17,38.9333333,-119.9833333,South Lake Tahoe (Meyers),CA,disk,300,@ approx. 4;30 AM MY SISTER IN LAW WAS UP DOING SOME LATE NIGHT PAPER WORK WHEN HER ATTENTION WAS GOTTEN BY A BRIGHT LIGHT IN THE SKY. +1998-11-17,27.9472222,-82.4586111,Tampa,FL,triangle,60,Flying V seen by multiple wintesses in during meteor shower. +1998-11-17,38.5816667,-121.4933333,Sacramento,CA,circle,10,looked like a large star, moved for a couple seconds then shot out into space. +1998-11-17,41.5236111,-90.5775,Davenport,IA,triangle,240,Triangular shaped noiseless craft flew over head at approx 150 feet heading south by south west from my location. +1998-11-17,32.9477778,-112.7161111,Gila Bend,AZ,flash,1,Flash on moon +1998-11-17,26.9758333,-82.0908333,Port Charlotte,FL,fireball,120,I am a newspaper reporter. A resident came to me 11/19 and said he filmed a "ball of fire" traveling slowly at high altitude toward hor +1998-11-17,39.7286111,-121.8363889,Chico,CA,triangle,360,I was surprised to noticed a large black triangular-shaped-wingless object cross the road directly in front of me flying about twenty f +1998-11-17,37.0583333,-120.8488889,Los Banos,CA,light,3,WHILE ATTENDING MY DAUGHTERS SOFTBALL GAME,MY WIFE AND MYSELF WAS TALKING TO MY FATHER WHEN FROM OUR LEFT SIDE WE NOTICED A BALL OF GRE +1998-11-17,34.815,-92.2241667,Sherwood,AR,triangle,30,I was watching for the leonids meteors before going into work. I saw three lights (dim, like distant stars) in a triangular formation. +1998-11-17,34.7463889,-92.2894444,Little Rock,AR,circle,15,we saw a circular craft with large windows or lights in a mist slowly moving near us. +1998-11-17,41.4994444,-81.6955556,Cleveland,OH,egg,120,I have utmost respect for Peter Davenport and his attempts to categorize and document UFO anomalies. I am also dumbfounded that my +1998-11-17,35.9605556,-83.9208333,Knoxville,TN,formation,20,OBSERVED 4 LIGHTS, HIGH ALTITUDE, SUPER-FAST, TRAVELING STRAIGHT ACROSS THE SKY IN LESS THAN 20 SECONDS +1998-11-17,33.4352778,-112.3575,Goodyear,AZ,light,20,I was at the window when I saw a yellow bright light then I called my mom and we stood there watching the strange light.Then a helico +1998-11-17,29.1380556,-80.9958333,Port Orange (Daytona Beach),FL,triangle,15,OBSERVED TRANSLUCENT TRIANGULAR OBJECT MOVING NORTH TO SOUTH DIRECTLY OVERHEAD, APPROXIMATELY TWO HAND WIDTHS WIDE. +1998-11-17,28.8038889,-81.7258333,Tavares,FL,other,3,Observing metor shower. 10 minutes into obsevation an object was seen to pass from NW to SE all lights extingwished. Estimate no more t +1999-11-17,47.6063889,-122.3308333,Seattle (Belmont &Amp; Pike Intersection),WA,other,2,having just left my apt. on belmont & olive st.,i walked toward pike st., and as i reached the intersetion ,looked up (which would be t +1999-11-17,34.9158333,-85.1091667,Ringgold,GA,circle,900,IN TRUE EAST SKY, ROUND OBJECT HOVERING WITH LIGHTS IN WHITE,BLUE,GREEN AND REDDISH ORANGE. THIS IS THE 4TH SIGHTING OF THIS OBJECT IN +1999-11-17,37.9736111,-122.53,San Rafael,CA,triangle,30,Very bright high flying Orange Triangle over San Francisco during Leonid Meteor shower +1999-11-17,42.1291667,-80.0852778,Erie (Green Township),PA,sphere,30,We were watching the meteor storm in the southeastern sky, and noticed a bright object rise above the tree line.In the distance off to +1999-11-17,41.4488889,-82.7080556,Sandusky,OH,sphere,900,About 20 silver spheres were seen circling a jumbo jet in formation. They were extremely fast and formatted into a V shape at one point +1999-11-17,43.9013889,-70.4708333,Raymond,ME,triangle,120,my daughter saw 2 triangular,blackish objects flying toward each other in a converging point, silently, slowly. And with extreme precis +1999-11-17,35.925,-86.8688889,Franklin,TN,unknown,300,I was on my balconay look at the sky when i saw a orang comtrail comming towards my direction, i also noticed an other trail going sout +1999-11-17,33.8358333,-79.0480556,Conway,SC,teardrop,300,looking to east-ne sky approx.30 degrees off horizon line,watched very slow movement of this object toward the horizon,brilliant, vivid +1999-11-17,39.7391667,-104.9841667,Denver,CO,other,45,Observed large, dark, vaguely boomerang-shaped object move swiftly and silently from NE to S and then arc W +1999-11-17,31.4172222,-89.5422222,Sumrall,MS,unknown,120,Viewed a ball of hot pink light above the treetops. It was moving sporadically up and down and side to side. Then after approx. 2 min. +1999-11-17,40.8213889,-73.9880556,Cliffside Park,NJ,unknown,3600,Object seen flashing brillant colors, moved slightly from north to south. Appears to be surrounded by a haze, could not definitely say +1999-11-17,32.2216667,-110.9258333,Tucson,AZ,triangle,60,Sighting of large flying triangle north of Tucson AZ +2000-11-17,40.26,-74.2741667,Freehold,NJ,circle,37800,an unidentifed flying object along with a smaller object hovered for a short period of time before disappearing +2000-11-17,42.8947222,-70.8716667,Seabrook,NH,rectangle,300,During rush hour evening commute, two stationary crafts in the sky over I95 separated from each other and one launched a fireball. +2000-11-17,43.0905556,-73.4991667,Greenwich,NY,light,10800,I saw a bright object that went on and off in 2-4 minute periods and,stayed in the same place for 3-4 hours. +2000-11-17,42.5777778,-121.865,Chiloquin,OR,other,120,Large boomerang shaped aircraft +2000-11-17,46.1880556,-123.83,Astoria,OR,light,2,Point source of light making abrupt changes in direction captured on video +2000-11-17,41.6555556,-74.6897222,Monticello,NY,changing,600,This is the second ufo I've seen in monticello. This one was bright orange and it kind of pulsated from dim to very bright. It was also +2000-11-17,34.0952778,-118.1261111,Alhambra,CA,other,7,v-shaped formation 25-30 craft very high, very fast. +2001-11-17,37.5630556,-122.3244444,San Mateo,CA,triangle,25,I saw a dark triangle shaped craft with three red dots on the bottom of the craft moving at a fast speed. +2001-11-17,41.2622222,-73.615,Cross River,NY,triangle,1080,Lights over NY State (shortly after 9/11) +2001-11-17,35.3627778,-84.2941667,Tellico Plains,TN,unknown,1800,On Sat. Nov 17th, while viewing the Leonid Meteor shower from a scenic overlook on the Cherohala Skyway outside of Tellico Plains, TN, +2001-11-17,47.2530556,-122.4430556,Tacoma,WA,circle,600,The object emitted other objects +2001-11-17,33.3047222,-83.6833333,Monticello,GA,light,20,2 round shaped lights approx 4-5 times higher than commercial aircraft can fly. +2001-11-17,34.1477778,-118.1436111,Pasadena,CA,changing,180,Two glowing jellyfish-like objects float across Pasadena, CA sky +2001-11-17,35.2030556,-85.9211111,Sewanee,TN,cylinder,4,A glowing cylinder +2001-11-17,32.4486111,-81.7833333,Statesboro,GA,light,25,Silent green light traveling at an unbelievable speed. +2001-11-17,47.3075,-122.2272222,Auburn,WA,formation,300,3 sets of 2-4 objects flying in formation that were a semi-rectangular shape with a hazy aura around them as if entering the atmosphere +2001-11-17,36.0397222,-114.9811111,Henderson,NV,unknown,3600,Bright light/red flashing lights +2002-11-17,35.9605556,-83.9208333,Knoxville,TN,fireball,1200,I saw balls of fire coming from the sky. +2002-11-17,43.7438889,-85.2972222,Chippewa Lake,MI,light,1800,Hunter observes unidentified flying object. +2002-11-17,40.8,-96.6666667,Lincoln,NE,other,2,I was sitting here at my computer Sunday morning, and heard the wierdest sound I have ever heard. I got my tape recorder out and recor +2002-11-17,33.7763889,-112.5277778,Wittmann,AZ,other,600,A sudden flash of fire light came out of the clear sky, then the object came closer befor disapearing. +2002-11-17,36.5963889,-119.4494444,Reedley,CA,light,900,Strange light observed over small california town. +2003-11-17,25.7738889,-80.1938889,Miami,FL,unknown,60,Invisible Jet or I'm Blind. +2003-11-17,37.775,-122.4183333,San Francisco,CA,light,600,What looked like shooting stars over the east in the San Francisco bay area. +2003-11-17,25.7738889,-80.1938889,Miami,FL,light,5,White Orb +2003-11-17,34.1808333,-118.3080556,Burbank,CA,sphere,600,A bright gold sphere in Burbank, CA @ 8:30 pm seen in the southern sky +2004-11-17,32.0833333,-81.1,Savannah,GA,light,300,5 minutes of visability, 45 degrees high, moving from the northeast to the southwest +2004-11-17,36.6777778,-121.6544444,Salinas,CA,circle,60,Round white object near Salinas freeway +2004-11-17,33.94,-118.1316667,Downey,CA,circle,10800,The object was a circle that was blinking red blue and green at diferent times then another one was doing the same +2004-11-17,38.35,-104.7222222,Pueblo West,CO,flash,1800,Bright Flash of light and than darkness +2004-11-17,33.7877778,-117.8522222,Orange County,CA,teardrop,180,very big teardrop shaped,many small lights it had a haze around it that changed color and left a trail. +2005-11-17,41.6413889,-80.1516667,Meadville,PA,light,7200,3 flashing light, very bight. +2005-11-17,31.7380556,-99.9469444,Ballinger,TX,changing,1200,UFO in Ballinger Tx in the Middle of the Day, White Object with Amazing Skills in Flying +2005-11-17,31.8575,-103.0922222,Kermit,TX,unknown,1800,two objects almost hit each other and I could make out an sort of outline of the big one. +2005-11-17,35.2269444,-80.8433333,Charlotte,NC,other,30,Two red dots next to each other over South Charlotte, NC heading towards Matthews,NC (East) about 2000 feet? +2005-11-17,34.2783333,-119.2922222,Ventura,CA,oval,240,Illuminated Orb type craft near Point Mugu to Ventura beach. +2005-11-17,33.0580556,-112.0469444,Maricopa County (Outskirts Of),AZ,other,900,7 enormous, bright amber light, Spherical Orbs hover at high altitude over Arizona desert +2005-11-17,41.465,-112.0316667,Perry,UT,other,60,300 hundred above me an arrowhead oblonged cone shape object flew slow above me. Anyone else? +2006-11-17,39.0508333,-74.7583333,Stone Harbor,NJ,triangle,900,Strange High Speed Aerial Object +2006-11-17,38.0280556,-121.8836111,Pittsburg,CA,cigar,1200,appears organic in structure +2006-11-17,39.1911111,-106.8169444,Aspen,CO,light,1800,High object over Colorado moving erraticly, starting and stopping, zigging and zagging, just before daybreak! +2006-11-17,47.5002778,-111.3,Great Falls,MT,circle,180,Large, White, Round Ball +2006-11-17,44.4447222,-88.5788889,Shiocton,WI,triangle,600,Coming home from work tonight I noticed a set of bright flashing lights a mile ahead of me hovering in a field. I pulled quickly in my +2006-11-17,37.8391667,-94.3544444,Nevada,MO,light,30,Strange stationary light. Increased in brightness, became faint, moved to the right, and vanished. ((NUFORC Note: Iridium flare. PD +2006-11-17,31.4866667,-96.3072222,Fair Oaks,TX,triangle,600,I saw a bright when it hoverd over me it was a triangle UFO +2006-11-17,38.8302778,-77.1966667,Annandale,VA,other,40,Low flying kite shaped object with very faint lights evenly spaced from the tip and along the tail. +2007-11-17,43.0494444,-88.0075,Wauwatosa,WI,fireball,5,Bright green fireball, no shared characteristics with meteors, northwestern sky, no trail. +2007-11-17,40.7141667,-74.0063889,New York City (Staten Island),NY,fireball,1,Green Light in sky.. +2007-11-17,27.8961111,-81.8433333,Bartow,FL,light,240,Strange Lights over Bartow, FL +2007-11-17,27.9011111,-81.5861111,Lake Wales (Area),FL,circle,300,Strange Orange Glowing Balls of Light in Lake Wales Area. +2007-11-17,28.0219444,-81.7330556,Winter Haven,FL,light,300,Objects entering atmosphere and stopped to give off bright lites in Lake wales +2007-11-17,28.0391667,-81.95,Lakeland,FL,changing,6,Falling Star/Fireball changes into 4 horizontal red lights. +2007-11-17,28.0219444,-81.7330556,Winter Haven,FL,oval,240,4 large UFOs in Winter Haven, Florida, fully lit ovals, possibly landed, 2 witnesses 500 Lights On Object0: Yes +2007-11-17,41.42,-87.7416667,Monee,IL,unknown,150,Two bright objects just south of Chicago never moving, just fad away. +2008-11-17,41.8477778,-74.5483333,Grahamsville,NY,light,600,Saw a light circling a mountain. +2008-11-17,37.3769444,-77.5061111,Chesterfield,VA,oval,10,Orange Light at 75 Cent Toll Plaza Chesterfield, VA +2008-11-17,29.4236111,-95.2438889,Alvin,TX,other,10,I saw a Silver space ship rising into the early morning sky over Houston, Texas. +2008-11-17,32.9125,-96.6386111,Garland,TX,unknown,10,Setting: At home, inside my house, all windows and doors closed. Temp outside in 50s. Low this morning about 45 deg F. Predicted hi +2008-11-17,33.2,-117.2416667,Vista,CA,light,900,Unidentified light flashing and reappearing throughout the valley +2008-11-17,39.3722222,-104.8555556,Castle Rock,CO,circle,20,Small White Light Around Sundown +2008-11-17,40.9255556,-73.1413889,Stony Brook,NY,flash,5400,Light in the sky, moving eratically, dimming and undimming, and staying still. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2008-11-17,40.9255556,-73.1413889,Stony Brook,NY,sphere,120,((HOAX??)) Mysterious flying object appears around an engineering building. +2008-11-17,33.8622222,-118.3986111,Hermosa Beach,CA,triangle,7200,V-shaped amber lights +2008-11-17,30.4866667,-90.9561111,Denham Springs,LA,chevron,5,This is a real sighting. Been wanting to always see one...no camera on hand. +2008-11-17,26.0108333,-80.1497222,Hollywood,FL,sphere,120,Bright circular light moves towards the Atlantic Ocean and disappears at an incredible speed. +2008-11-17,34.0469444,-116.58,Morongo Valley,CA,light,4,Fast flying Object +2008-11-17,30.2669444,-97.7427778,Austin,TX,disk,30,Small saucer camouflages itself at dusk and speeds off +2008-11-17,30.6325,-97.6769444,Georgetown,TX,triangle,600,Dark triangle-shaped object spotted while driving on I-35 in Georgetown, TX +2008-11-17,36.1016667,-78.4583333,Franklinton,NC,light,240,2 orange orbs 1 orb circled around the motionless one, then went up and took off. +2008-11-17,37.2386111,-76.51,Yorktown,VA,circle,15,4 dimly lit circles going southeast, no sound, no blinking lights, clear night, duration about 15 secounds +2008-11-17,37.2386111,-76.51,Yorktown,VA,circle,15,at 20:33 on 11/77/08 in yorktown , virginia I saw 4 dimly lit circular objects in a diamond formation moving southeast for aprox. 15 se +2008-11-17,44.0247222,-88.5425,Oshkosh,WI,formation,5,7 lights in a shraight line over Oshkosh. ((NUFORC Note: Student report. PD)) +2009-11-17,38.5366667,-82.6830556,Ironton,OH,other,2700,The main craft was v shaped and seemmed to make small pitches as to trying not to be noticed others were triangular or just singular li +2009-11-17,34.1683333,-118.605,Woodland Hills,CA,fireball,5,Two white fireballs seen in sky. It was shooting stars. +2009-11-17,34.2083333,-77.7966667,Wrightsville Beach,NC,disk,4500,11/17/09 a disc w/ flashing lights hovered off coast of NC for 1hr+ moving horizontally then climbing off at a steep angle. +2009-11-17,35.0844444,-106.6505556,Albuquerque,NM,chevron,10,Saw a chevron of lights moving from north to south while watching for the Leonid meteor shower. +2009-11-17,41.85,-87.65,Chicago,IL,oval,5,Oval/circular object with red/yellow lights +2009-11-17,43.6422222,-72.2522222,West Lebanon,NH,unknown,240,11/17/09 18:07 West Lebanon NH amber globes coming on and fading at the same rate in sequence in a straight line with no sound +2009-11-17,44.0211111,-91.1016667,Mindoro,WI,light,1800,Yellow light over NE La Crosse County WI that moved around in the sky in a non aircraft fashion. +2009-11-17,44.1969444,-72.5025,Barre,VT,light,60,Bright orange lights fading in and out in a perfect diagonal pattern over Barre +2009-11-17,40.8125,-76.1419444,Mahanoy City,PA,unknown,1200,Four cloud shrouded lights to the east of town moving in erratic jerks. +2009-11-17,39.9625,-76.7280556,York,PA,unknown,2700,strange orange lights in the sky, fade in and out, disappear, then reappear several minutes later +2009-11-17,45.8566667,-111.3316667,Manhattan,MT,other,120,Thin bright line streaking across the sky, then stops. +2009-11-17,35.6225,-117.67,Ridgecrest,CA,fireball,15,Super Bright explosion after object hits the desert ground +2009-11-17,36.175,-115.1363889,Las Vegas,NV,flash,8,Green Flash +2009-11-17,40.7608333,-111.8902778,Salt Lake City,UT,unknown,1,Huge flash of light , two wintnesses that i know of when 10 miles apart at same time +2010-11-17,39.3341667,-76.4397222,Middle River,MD,disk,360,I saw a ufo behind my neighbors house on the ground. +2010-11-17,35.7719444,-78.6388889,Raleigh,NC,other,3,Green scanner laser like light flashes over the sky in Raleigh, NC +2010-11-17,36.5858333,-79.3952778,Danville,VA,diamond,3600,A DIAMOND SHAPED OBJECT HOVERED SIDE BY SIDE IN THE SKY FLYING UP FOR 1 HOUR. +2010-11-17,34.0141667,-86.0066667,Gadsden,AL,sphere,900,White sphere witnessed by my nieces and orange ball witnessed by all of us on same day. +2010-11-17,36.8527778,-75.9783333,Virginia Beach,VA,sphere,20,Sphere seen traveling at a high rate of speed over Virginia Beach +2010-11-17,34.1083333,-117.2888889,San Bernardino,CA,light,600,Photo taken of three lights or crafts hovering over electrical power plant in san bernardino ca +2010-11-17,40.0483333,-86.4691667,Lebanon,IN,triangle,2,V or triangle shaped object. +2010-11-17,47.5002778,-111.3,Great Falls,MT,triangle,60,flew low really low over the hotel i was walking my dog and heard a low click noise im an airfraft mechanic so i know its nothing ive s +2010-11-17,33.1958333,-80.0133333,Moncks Corner,SC,disk,60,Witness #2: UFO flying over Moncks Corner, SC, 5 or 6 lights on side and had red lights on bottom. +2010-11-17,33.1958333,-80.0133333,Moncks Corner,SC,unknown,60,Witness #3: UFO flying over Moncks Corner, SC, only saw it briefly had lights on side and bottom. +2010-11-17,33.1958333,-80.0133333,Moncks Corner,SC,unknown,60,Witness #1: UFO flying over Moncks Corner, SC, 5 or 6 lights on side and had red lights on bottom, not moving very fast. +2010-11-17,37.6041667,-75.69,Wachapreague,VA,unknown,10,low altitude ufo consisting of about 21 windows in groups of 7,no shape observed,over 100 feet long +2010-11-17,33.1019444,-82.8038889,Warthen,GA,circle,240,I believe that it is some secret government military craft of some sort. Or maybe just sometime that God is trying to tell or show me. +2010-11-17,25.7738889,-80.1938889,Miami,FL,light,300,Two star-sized blinking lights moving fast and perpendicular in a northwesterly direction +2010-11-17,42.2966667,-89.6211111,Freeport,IL,other,30,Flashing red light flew through Freeport. +2010-11-17,35.8825,-80.0822222,Thomasville,NC,fireball,600,Night Time UFO +2011-11-17,32.7833333,-96.8,Dallas,TX,fireball,300,Bright large hoving light that dissappear and reappered within a 10minutes time frame... +2011-11-17,35.9605556,-83.9208333,Knoxville,TN,disk,60,Sighting of a saucer in broad daylight in Knoxville, TN. +2011-11-17,33.4483333,-112.0733333,Phoenix,AZ,sphere,1200,Just look sphere color metal formation geometric +2011-11-17,37.3211111,-82.8030556,Kite,KY,other,600,Strange disc of light with trails of orange/pink on either side sighted above mountains. +2011-11-17,41.3,-80.85,Champion,OH,triangle,300,Triangular Craft, White Lights, Champion, Ohio +2011-11-17,41.3,-80.85,Champion,OH,triangle,600,Dark Triangular Craft 3 large lights dimmed to 6 small lights before moving from hovering position +2011-11-17,37.9291667,-86.1794444,Ekron,KY,disk,1800,11-17-11 Ekron, KY, disc, 30 minutes, yellowish, posted 11-18-11 +2011-11-17,34.4838889,-114.3216667,Lake Havasu City,AZ,changing,60,Shiny Object Morphs into M Shaped Lights then Vanishes +2011-11-17,35.260555600000004,-97.1194444,Pink,OK,triangle,180,Triangular shaped. 2 white lights & 1 red light. Low & slow flying, silent. +2011-11-17,38.8588889,-85.1405556,Bennington,IN,fireball,180,16 ors along with firealls light up Indiana sky +2011-11-17,38.9330556,-104.6080556,Falcon,CO,other,60,Sighting near Colorado Springs. Black triangles above the road. +2011-11-17,45.8152778,-122.7413889,Ridgefield,WA,triangle,120,2 eyewitnesses see 3 reddish glowing lights in a perfect triangle formation silently hovering 200' above ground. +2011-11-17,41.42,-87.7416667,Monee,IL,triangle,20,Dark triangular wing in night sky +2011-11-17,29.7630556,-95.3630556,Houston,TX,other,10,Transparent UFO Seen by 3 teenagers. +2012-11-17,45.6797222,-111.0377778,Bozeman,MT,circle,20,Red sphere that made obvious speed and altitude gains as well as direction changes. +2012-11-17,39.6416667,-77.7202778,Hagerstown,MD,light,2,Very illuminous light moving very fast blinked twice then gone. +2012-11-17,38.7933333,-77.2719444,Burke,VA,triangle,5,Three very faint lights in a small triangular shape moving very fast across the sky +2012-11-17,40.7683333,-73.5255556,Hicksville,NY,light,3,White round light with a trail shoots down and disappears +2012-11-17,43.1530556,-70.8005556,Eliot,ME,circle,30,Tannish orb in orange sky turned black then disappeared. +2012-11-17,40.9494444,-72.5819444,Jamesport,NY,disk,15,White disk shaped object hanging motionless in the sky then disappeared. +2012-11-17,26.525,-80.0666667,Boynton Beach,FL,sphere,30,Two metallic spheres moving west over then south over Boynton Beach +2012-11-17,41.6388889,-70.9708333,North Dartmouth,MA,circle,300,3 ORANGE CIRCLES. +2012-11-17,40.7280556,-74.0780556,Jersey City,NJ,disk,900,Orange lights in sky above New jersey +2012-11-17,35.9605556,-83.9208333,Knoxville,TN,unknown,10,Brilliant bright light seen above high altitude airplane with no plume then disappears over Knoxville, TN. +2012-11-17,36.9741667,-122.0297222,Santa Cruz,CA,circle,300,4 red/ orange orbs moved slowly across the sky together disappearing individually. +2012-11-17,38.6272222,-90.1977778,St. Louis,MO,triangle,60,Silent Black Triangle. +2012-11-17,43.3044444,-70.9761111,Rochester,NH,fireball,900,A series of 7 flaming type objects crossing the night sky from South to North lasting 15 minutes. +2012-11-17,42.375,-70.9833333,Winthrop,MA,fireball,120,At 18:12 I saw two orange balls hovering at about 500 feet above the ground. +2012-11-17,38.4219444,-77.4086111,Stafford,VA,circle,300,Circular glowing objects flying in the sky. +2012-11-17,38.4219444,-77.4086111,Stafford,VA,fireball,300,10-12 orange or reddish fireballs were seen high in the sky. They did not streak across the sky, but merely floated. +2012-11-17,38.4219444,-77.4086111,Stafford,VA,formation,120,My husband and I saw a swarm of bright-colored (red and white) objects floating noiselessly very low to the ground. +2012-11-17,38.4219444,-77.4086111,Stafford,VA,circle,180,Luminous Bright Orange Lightballs Traveling in a Pattern in Stafford VA +2012-11-17,37.2152778,-93.2980556,Springfield,MO,flash,300,Red flashing lights in sky. +2012-11-17,37.2152778,-93.2980556,Springfield,MO,light,120,Red light moves at excessive speed, stays absolutely still and changes direction abruptly +2012-11-17,38.9516667,-92.3338889,Columbia,MO,light,30,Formation of white lights in the sky drifting downward over Columbia, MO +2012-11-17,43.2966667,-87.9875,Cedarburg,WI,fireball,1200,9 orange "fireballs" track across sky. +2012-11-17,41.9761111,-72.5922222,Enfield,CT,unknown,120,15 Orange lights on horizon +2012-11-17,42.0269444,-84.4694444,Jerome,MI,unknown,180,There were three very large round strobe lights about 6 to 8 feet across flying 2 to 3 hundred feet high moving very slow traveling fro +2012-11-17,43.2966667,-87.9875,Cedarburg,WI,fireball,540,8 red/orange fireball objects, evenly spaced +2012-11-17,41.1575,-81.2422222,Ravenna,OH,sphere,60,Two glowing orange fiery orbs sighted by Ravenna , Ohio family +2012-11-17,43.0966667,-71.4655556,Hooksett,NH,triangle,30,Very Thin Flashes of Light and Triangular Object. +2012-11-17,47.6936111,-114.1622222,Polson,MT,light,240,7 crafts light orange glow ball that formed a triangle ... for a few mins ... then rose up 1 at a time and disappeared. +2012-11-17,33.4483333,-112.0733333,Phoenix,AZ,light,60,It was a bright orange light. +2012-11-17,41.6827778,-88.3513889,Oswego,IL,oval,30,4 silent orange balls of light flying across field of view chasing each other at decent rate of speed and quite low above Oswego, IL. +2012-11-17,40.6936111,-89.5888889,Peoria,IL,diamond,300,Pattern of orange/red round objects seen over Peoria, IL at about 11:00 PM on 11/17/12 +2012-11-17,40.6936111,-89.5888889,Peoria,IL,sphere,300,Red Orange spheres seen in Peoria Il +2012-11-17,44.2563889,-70.2566667,Turner,ME,oval,10800,Very bright and changing colr very clear red , blue and white. ((NUFORC Note: Sighting of Sirius. PD)) +2012-11-17,38.1361111,-81.0997222,Ansted,WV,light,1800,Multicolored flashing light on cloudy night. +2012-11-17,39.9611111,-82.9988889,Columbus,OH,light,1800,Watching large object separate then merge again. +2013-11-17,41.6005556,-93.6088889,Des Moines,IA,sphere,120,Large red/orange sphere seen above Des Moines, Ia. +2013-11-17,33.4147222,-111.9086111,Tempe,AZ,oval,720,Dark silent oval craft that was silhoutted against the white clouds lit by the full moon over Tempe AZ. +2013-11-17,42.7358333,-83.4188889,Clarkston,MI,unknown,21600,No ufo it was flashing lights. +2013-11-17,39.5297222,-119.8127778,Reno,NV,circle,3600,Lights seen hovering over rural Nevada community, witnessed by nearly a dozen residents. +2013-11-17,32.4205556,-104.2283333,Carlsbad,NM,circle,300,Observed two reddish orange objects moving from west to east above Carlsbad New Mexico about four or five minutes apart. Both objects a +2013-11-17,43.6136111,-116.2025,Boise,ID,light,60,Mysterious Object being escorted by Military helicopters at night only +2013-11-17,38.8158333,-76.75,Upper Marlboro,MD,fireball,300,Orange sets of lights seen over Maryland +2013-11-17,39.8027778,-105.0869444,Arvada,CO,light,300,Saw what looked like 2 gold flares over SE sky. Turned into 5 lights, stayed stationary then one by one the disappeared. Then saw mult +2013-11-17,39.8366667,-105.0366667,Westminster,CO,fireball,30,Boomerang shaped fireballs descended from the sky in Colorado +2013-11-17,40.7355556,-74.1727778,Newark,NJ,fireball,7,large Reddish White fireball coming through the foggy sky near Newark Airport. +2013-11-17,43.6136111,-116.2025,Boise,ID,light,4,More UFOs over Boise Idaho. +2013-11-17,39.7391667,-104.9841667,Denver,CO,light,60,3 falling fireworks streams changing into 3 bright hovering lights. +2013-11-17,42.3313889,-83.0458333,Detroit,MI,light,3600,UFL (LIGHTS) -ORANGE AND OR BLUE LIGHTS FLASHING IN THE CLOUDS FOLLOWING THIS EVENING STORM. +2013-11-17,27.6383333,-80.3975,Vero Beach,FL,fireball,240,Fireball in the night sky. +2013-11-17,28.5380556,-81.3794444,Orlando,FL,sphere,30,Green round object moving fast and irregular. +2013-11-17,40.4166667,-86.8752778,West Lafayette,IN,cone,900,I've never saw a anything we have that light's up from one end to the other and leave that quik ........ +2013-11-18,38.6338889,-95.8255556,Osage City,KS,other,1200,Strange lights in the sky. +1991-11-18,38.8338889,-104.8208333,Colorado Springs,CO,triangle,300,triangle craft. one moving glowing blue at 250ft. The other hovering off a busy street . same altitude.3 wht lights 1 red center +1992-11-18,40.7141667,-74.0063889,New York City (Brooklyn),NY,formation,300,Pool Rack formation seen over an Army Base in Brooklyn, NY during a meteor shower +1995-11-18,34.9158333,-85.1091667,Ringgold,GA,delta,900,On Saturday evening just after dark on November 18, 1995 an arrowhead-shaped ufo was spotted to the east approx. 100 yrds. from Davis R +1997-11-18,48.3597222,-107.8736111,Malta (60 Miles South Of),MT,rectangle,2,Three of us wittnessed three rectangular orangish red lights in the sky the same distance apart. They appeared one at a time till three +1998-11-18,29.6513889,-82.325,Gainesville,FL,triangle,90,Viewed a delta shaped craft in the SE sky traveling south, craft made no noise and flew smoothly before banking and disappearing +1998-11-18,37.5175,-76.9791667,New Kent,VA,triangle,5,3 white lights forming black triangle. Slowly moved below treeline. +1998-11-18,34.7694444,-92.2669444,North Little Rock,AR,triangle,180,massive triangular craft--forward moving sides had spaced lights, non-blinking--back side unlit--with almost opaque shadow quality of c +1998-11-18,57.79,-152.4072222,Kodiak,AK,light,180,3 lights in the dark clear sky manuvering in an uncomprhensable pattern at a high rate of speed over kodiak in nov 1998. +1998-11-18,40.1291667,-74.6938889,Dunns Mills,NJ,disk,600,Well lighted disc craft lands off NJ Turnpike at Dunns Mills witnessed by two and exits off very fast. +1999-11-18,31.4172222,-89.5422222,Sumrall,MS,unknown,60,Viewed craft with hot pink coloration in the south west the craft was similar to the one reported at 21:35 on 11/17/99. It also was se +1999-11-18,42.2222222,-71,Braintree,MA,light,20,Red star-sized light appeared from Big Dipper area, then joined by 2 more which interacted for 10 seconds, formed points of a triangle, +1999-11-18,39.9611111,-82.9988889,Columbus,OH,triangle,15,I was looking for meteors. Saw a grey shadow coming out of the east, heading Northwest. It appeared to be a dark grey shape, like a w +1999-11-18,29.7630556,-95.3630556,Houston,TX,triangle,15,see below +1999-11-18,39.9611111,-82.9988889,Columbus,OH,triangle,20,While on patrol in my police cruiser I noticed a dark object coming from the east. As it grew closer I noticed it was triangular in sh +1999-11-18,33.1580556,-117.3497222,Carlsbad,CA,triangle,2,V shaped formation of approximately 7 lights obseved for 2 seconds. Formation approx 2 1/2 fingers wide, seen for 30 deg. of arc. No so +1999-11-18,40.5866667,-122.3905556,Redding,CA,other,30,large, boomerang shaped craft....no lights, completely black...no noise..flew over us...north to south direction(approx.)..very fast +1999-11-18,29.7630556,-95.3630556,Houston,TX,circle,20,While observing the Leonid Meteor Shower I saw 7 or 8 luminous circles flying in a V formation east to west moving very fast and making +1999-11-18,29.7630556,-95.3630556,Houston,TX,formation,20,Seven blueish discs flying in V formation making no sound. +1999-11-18,34.5969444,-83.7633333,Cleveland,GA,disk,10,silent large titanium colored craft with black windows +1999-11-18,40.5186111,-74.4125,Edison,NJ,light,900,I observed an bright object in the sky with a glittering tail - nothing unusual you say, but it was traveling NORTHWARD. After 15 minut +1999-11-18,27.7705556,-82.6794444,St. Petersburg,FL,light,3,i was facing due south when i saw a ruby red light speed by horizontally,just above the trees, going from west to east. +1999-11-18,32.7152778,-117.1563889,San Diego,CA,light,30,Four stationary lights in sky suddenly moved toward ea other untill they all reached ea other. Then returned the same direction they ca +1999-11-18,39.7391667,-104.9841667,Denver,CO,other,120,A triangle-shape object that looked like balls tied together, flying in formation. +2000-11-18,40.7141667,-74.0063889,New York City,NY,triangle,180,Black, unidentifiable, triangular object seen flying over Hudson River/Manhattan at night. +2000-11-18,34.1477778,-118.1436111,Pasadena,CA,light,60,Disapearing sattellite like object spotted above Los Angeles County. +2000-11-18,38.7013889,-90.1486111,Granite City,IL,triangle,60,TRIANGLE CRAFT IN ILLINOIS STRIKES AGAIN +2000-11-18,37.9063889,-122.0638889,Walnut Creek,CA,light,600,Last night in the northern sky, I saw 2 bright lights. A golden amber color. One ws comming from the northwest, and the other almost in +2000-11-18,28.6672222,-99.1702778,Dilley (South Of San Antonio),TX,disk,420,very big bright white saucer like object about 1000-1200 feet in diameter very large with red and blue flashing lights on it and around +2000-11-18,41.2586111,-95.9375,Omaha,NE,unknown,600,A number of wintnesses driving in the 132nd and maple area on Omaha, ne stopped and pulled over when they say a very very bright fast l +2001-11-18,39.7294444,-104.8313889,Aurora,CO,light,300,Blinking white light moving unnaturally +2001-11-18,37.6391667,-120.9958333,Modesto,CA,circle,1800,known about this object for about 35 years and finally got a picture. you need to see before you beleive it. the sound couldn"t be hear +2001-11-18,40.4775,-104.9008333,Windsor,CO,triangle,5,Black triangle with three lights over Windsor +2001-11-18,27.9472222,-82.4586111,Tampa,FL,sphere,30,Lightless,soundless sphere glides over tampa, 1:30 Sunday morning, Nov 18. +2001-11-18,20.8947222,-156.47,Kahului,HI,disk,7200,Sighting of object during meteor shower ((NUFORC Note: Possible sighting of twinkling star? PD)) +2001-11-18,37.775,-122.4183333,San Francisco,CA,light,6,Two amber glowing lights in San Francisco sky. +2001-11-18,47.6063889,-122.3308333,Seattle,WA,triangle,10,Three dark orange objects flew quickly across the sky at about 2:00 AM (approx) during the Leonid meteor shower. +2001-11-18,47.6063889,-122.3308333,Seattle,WA,other,20,Slow-flying crescent made up of lots of little balls flies over downtown Seattle +2001-11-18,47.6063889,-122.3308333,Seattle,WA,circle,90,Two yellow-amber spheres; one disappeared slowly, the other changed direction, stopped, & vanished. +2001-11-18,45.3841667,-122.7627778,Tualatin,OR,triangle,30,UFOs on The Night of The Shooting Stars +2001-11-18,39.7286111,-121.8363889,Chico,CA,triangle,60,Huge slow flying triangular object blocking out sky during meteor shower on california's I-5 outside chico. +2001-11-18,37.5586111,-122.27,Foster City,CA,triangle,10,Bay Area Sighting During the Morning of the Peak of Leonid Meteor Shower +2001-11-18,47.7569444,-122.2797222,Lake Forest Park,WA,triangle,3300,I saw a bright, erratically moving light, the movements of which seemed to be beyond the capabilities of any manmade aircraft. +2001-11-18,39.2902778,-76.6125,Baltimore,MD,cigar,60,Long, transparent object moving sideways across sky. +2001-11-18,38.3030556,-77.4608333,Fredericksburg,VA,diamond,4,It was around 4:00 or so early sunday morning, I was on the roof of my apartment watching the meteor showers. From where i was sitting +2001-11-18,39.56,-76.0716667,Perryville,MD,unknown,30,Faint Object Stealth looking +2001-11-18,42.8688889,-76.9780556,Geneva,NY,circle,5,Circular craft during the Leonid Meteor Storm +2001-11-18,46.2830556,-96.0772222,Fergus Falls,MN,other,180,V-shaped pattern of faint reddish lights +2001-11-18,26.1219444,-80.1436111,Fort Lauderdale,FL,disk,45,Two saucer shaped faintly glowing objects side by side silently going north over Ft. Lauderdale on 11/18/01 at 4:22 +2001-11-18,40.015,-105.27,Boulder,CO,changing,1200,Bright lights hovering very low and changing colors. +2001-11-18,39.7294444,-104.8313889,Aurora,CO,formation,120,Group of faint red lights flying in a boomerang formation very high and quiet +2001-11-18,48.7597222,-122.4869444,Bellingham,WA,formation,120,cluster of peanut-brittle colored balls flying in loose formation +2001-11-18,35.2269444,-80.8433333,Charlotte,NC,circle,180,Flying objects seen while watching Leonid meteor shower +2001-11-18,30.4063889,-87.6836111,Foley,AL,other,20,slow, star like image that slowly faded away +2001-11-18,29.7630556,-95.3630556,Houston (Spring),TX,cylinder,240,Six elongated lights, cylinder shaped, although actual "craft" could not be seen. NO sound. Smooth travel, no wavering. +2001-11-18,40.0047222,-75.635,West Grove,PA,circle,10,Craft were in a "V" formation at 10ꯠ feet, and 3 timesw the speed of an airliner. +2001-11-18,35.925,-86.8688889,Franklin,TN,chevron,2,V shaped blurry craft with lights. Extremely fast velocity +2001-11-18,38.9783333,-76.4925,Annapolis,MD,triangle,10,I saw luminous triangles, flying in formation during the Leonid meteor shower +2001-11-18,29.7630556,-95.3630556,Houston (Spring),TX,cylinder,120,Large Cylinder with six orange (low-glow) lights moving slowly within 3 miles of IAH, heading toward IAH (Airport) +2001-11-18,29.4605556,-95.0511111,Dickinson,TX,changing,3000,single point lite source changing occasionally to bipolar red/azure elongated object rapidly jerking around nite sky +2001-11-18,40.4861111,-74.4522222,New Brunswick,NJ,chevron,20,Boomerang shaped object over Central Jersey +2001-11-18,44.635555600000004,-72.6808333,Johnson,VT,flash,1,There were tons of meteors out then there was a flash. There was only one flash that I saw all night. +2001-11-18,35.3186111,-82.4611111,Hendersonville,NC,sphere,20,Round object-didnt behave like meteor or plane +2001-11-18,33.4708333,-81.975,Augusta,GA,chevron,60,It came from the north to south.Moveing along the sky. Its movement caught my eye a v shaped bank of lights (white) the same color as t +2001-11-18,25.7902778,-80.1302778,Miami Beach,FL,sphere,10,this thing was round, metalic,fast and had no lights. +2001-11-18,26.1416667,-81.795,Naples,FL,formation,5,twin orbs cross the entire sky at high altitude in a matter fo seconds (not meterorites) +2001-11-18,33.5386111,-112.1852778,Glendale,AZ,other,600,The lights or fire that were dropping from the bottom were what made it look like something we have never seen. +2001-11-18,41.3958333,-72.8972222,Hamden,CT,sphere,180,Observed venus size and color (white) object through binoculars moving slowly accross the sky during day of about 3 minute duration. +2001-11-18,41.2622222,-73.615,Cross River,NY,triangle,60,The night of the Leonids meteor shower some friends and I (one of which was an Earth Science teacher) were watching the showers in fron +2001-11-18,45.5236111,-122.675,Portland (Suburbs),OR,light,900,Two objects joined, then split apart and one released a small light. +2001-11-18,39.5538889,-104.9688889,Highlands Ranch,CO,triangle,240,triangle with one spot on each corner and one big one in the middle. +2001-11-18,41.2586111,-95.9375,Omaha,NE,circle,1200,I was not drinking or anything I know what I saw +2002-11-18,34.2483333,-117.1883333,Lake Arrowhead,CA,unknown,20,I had been watching the 2002 Leonid meteor shower. I came back home about 3:15-3:30 a.m. and turned on the NASA TV live broadcast of t +2002-11-18,42.7222222,-84.4275,Okemos,MI,other,10,6:00 am in Okemos Michigan +2002-11-18,42.7008333,-82.9591667,Macomb,MI,triangle,120,bright triangular object flying slowly across low evening sky +2002-11-18,38.4405556,-122.7133333,Santa Rosa,CA,unknown,600,This is the fourth time my family and I have seen this object within the last 12 months. The object was a brilliant orange color. The o +2002-11-18,40.4591667,-74.3613889,Sayreville,NJ,light,45,2 orange hazes scrambling across the sky. +2002-11-18,35.6125,-77.3666667,Greenville,NC,chevron,120,V shaped object with no sound and colorful lights moving across sky at low altitude. +2002-11-18,39.7155556,-82.9530556,Ashville (2 Miles South Of),OH,light,2,lights during a meteor shower.. +2002-11-18,29.7630556,-95.3630556,Houston,TX,cigar,60,Large object, no lights, no radar indication in Houston +2003-11-18,40.7141667,-74.0063889,New York City (Staten Island),NY,unknown,1200,Me and my bro saw alien and ufo at our house +2003-11-18,40.7141667,-74.0063889,New York City (Queens),NY,cigar,10,cigar shaped object fling fast near jfk airport +2003-11-18,42.9058333,-88.1388889,Muskego,WI,other,600,Cloud cover, very low ceiling, six rings would move around, then move into one ring, then separate, move around, and go again into one +2003-11-18,34.0336111,-117.0422222,Yucaipa,CA,light,20,Orbital lights, bright, flashing or stationary +2003-11-18,26.0713889,-97.4761111,Los Fresnos,TX,sphere,10,Spherical light seen headed due East towards the Gulf Of Mexico. Extremely fast with no apparent noise sound/emmitted. +2003-11-18,34.0922222,-117.4341667,Fontana,CA,changing,30,It looked like a giant jelly fish with little lights all around. and it kept changing it's shape. I looked a lot like the something fro +2003-11-18,39.3330556,-82.9825,Chillicothe,OH,changing,10800,Object changed colors and shapes, divided at one point ((NUFORC Note: Sirius?? PD)) +2003-11-18,34.2283333,-92.0030556,Pine Bluff,AR,light,7,light ufo seen on arkansas highway between Little Rock and Pine Bluff appearing to land in nearby woods. +2004-11-18,28.1875,-82.7397222,Holiday,FL,light,1200,Photographic anomaly +2004-11-18,33.6663889,-101.6825,Idalou,TX,triangle,300,There was two huge lights on one side of the triangular craft. There wwas a light on each corner, making the total 5. About the size +2004-11-18,33.5602778,-81.7197222,Aiken,SC,circle,120,Silver cylindrical object; no wings; no vapor trail; no sound . +2004-11-18,33.5602778,-81.7197222,Aiken,SC,cylinder,120,Straight-line flight with no visible wings or no vapor trail. +2004-11-18,34.9808333,-79.2244444,Raeford,NC,disk,120,flat, fast, lite up +2004-11-18,30.3319444,-81.6558333,Jacksonville,FL,sphere,600,Two round unsusal objects spotted a very high altitude - video tape confirms not to be airplane +2004-11-18,40.7758333,-74.6011111,Mendham,NJ,light,1200,clusters of low-flying white lights moving rapidly in formation, silent. +2004-11-18,33.5225,-117.7066667,Laguna Niguel,CA,changing,240,Laguna Niguel CA 3 lights moving from same point on the horizon to differnt points in space. +2004-11-18,48.0797222,-123.1005556,Sequim,WA,unknown,45,deep, throbbing, sound heard; nothing sighted +2004-11-18,45.4363889,-123.1383333,Gaston,OR,light,120,3 lights, triangular shape at first then moved randomly while changing colors - red, blue, green, yellow +2005-11-18,43.4061111,-76.1261111,Parish,NY,light,1200,me and two of my good friends were testing out a new telescope and were looking out the window and spotted a light in the sky. the ligh +2005-11-18,32.7152778,-117.1563889,San Diego,CA,triangle,45,Large triangle with lights over south san diego +2005-11-18,32.7252778,-97.3205556,Fort Worth,TX,light,1,saw a bright flash tha quikly went out and streamed down twards the ground with a stream of light behind it. +2005-11-18,44.98,-93.2636111,Minneapolis,MN,disk,20,white disk shaped object! +2005-11-18,33.5091667,-111.8983333,Scottsdale,AZ,disk,900,Daylight Scottsdale Sighting +2005-11-18,47.9891667,-108.6936111,Hays,MT,fireball,60,We/I saw 6 orangish light over Blaine County. ((Anonymous report)) +2005-11-18,34.2255556,-77.945,Wilmington,NC,unknown,900,Saw a small, bright object move across the sky, come to a complete stop, and begin flying in circles. ((NUFORC Note: ISS?? PD)) +2005-11-18,26.3394444,-81.7788889,Bonita Springs,FL,unknown,2100,I observed two lights flying in and out of a cloud formation. The flight pattern was unlike a normal aircraft flight pattern. I retired +2005-11-18,42.45,-73.2458333,Pittsfield (Proximity Of; To South; 90 E On Highway),MA,cigar,4,Green ovular/cigar shaped ball of pure energy radiates off treetops and cuts over highway +2005-11-18,38.8916667,-121.2919444,Lincoln,CA,sphere,15,Three Spheres moving in formation +2005-11-18,36.2125,-79.7138889,Browns Summit,NC,unknown,1800,Two strange lights with planes chasing over Greensboro, NC. +2006-11-18,35.8916667,-119.0463889,Ducor,CA,triangle,10,SILENT TRIANGLE SHAPED CRAFT +2006-11-18,34.0522222,-118.2427778,Los Angeles,CA,fireball,3600,Two of my friends and myself, were walking in westwood village, it was still daylight outside, we were walking on Broxton street, and w +2006-11-18,33.4483333,-112.0733333,Phoenix,AZ,sphere,180,Three spheres flying high on the skies of Phoenix, Arizona +2006-11-18,39.6030556,-74.3405556,Tuckerton,NJ,circle,5,Circular lights seen in Bass River State Forest above Lake Absegami NJ +2006-11-18,37.2152778,-93.2980556,Springfield,MO,chevron,30,Luminescent, boomerang shaped object moving silently south. +2006-11-18,33.7591667,-118.0058333,Westminster,CA,cigar,720,cigar shape floating silently through night space. +2006-11-18,39.4141667,-77.4108333,Frederick,MD,light,5,Looking to the west at 45 degrees above the horizon a bright white light disappears +2006-11-18,28.2486111,-81.2813889,St. Cloud,FL,formation,20,Triangular formation over St. Cloud Florida +2006-11-18,46.9222222,-95.0583333,Park Rapids,MN,triangle,4,three orange lights in a triangle over northern minnesota +2006-11-18,35.0844444,-106.6505556,Albuquerque,NM,other,10,Crescent-shaped object observed +2006-11-18,27.89,-82.0316667,Nichols,FL,unknown,900,Watching for Leonid meteors in eastern sky, observed bright multi-colored object travelling in a south to north arc. +2006-11-18,41.2863889,-96.2341667,Elkhorn,NE,triangle,5,V shaped object wih dim lit circles +2007-11-18,38.9711111,-77.0766667,Chevy Chase,MD,light,900,A bright, non-blinking light moved slowy across the sky, then stopped for several minutes before disappearing +2007-11-18,43.1547222,-77.6158333,Rochester,NY,fireball,5400,orange ball of fire hovering over Rochester NY area, chased away by another multi-colored UFO. ((NUFORC Note: Venus?? PD)) +2007-11-18,33.8302778,-116.5444444,Palm Springs,CA,triangle,300,Three Identical Craft Sighted Over Palm Spings, California Slowly Come Together...And Vanish. +2007-11-18,35.72,-79.1775,Pittsboro,NC,other,15,Bright Green light, square shape +2007-11-18,27.9011111,-81.5861111,Lake Wales,FL,fireball,180,Orange fireball in the sky followed by four white spherical lighted ? +2007-11-18,31.7619444,-95.6305556,Palestine,TX,teardrop,7,ufo seen taking of from in palestine texas +2007-11-18,32.9341667,-97.0777778,Grapevine,TX,triangle,6,Triangular craft with rounded corners accelerated to 1000's of MPH in seconds. +2007-11-18,42.8863889,-78.8786111,Buffalo,NY,light,2,Streaking Light during field goal kick Patriots vs Bills Sunday Night Football +2008-11-18,32.3511111,-95.3008333,Tyler,TX,sphere,1800,Westbound Spherical Object Near Tyler Texas +2008-11-18,32.4638889,-86.4597222,Prattville,AL,disk,10,I saw a bright reflection fairly low in the sky. The reflection was in the shape of a disc. It hovered for a few seconds and then dis +2008-11-18,33.9488889,-118.4447222,Playa Del Rey,CA,circle,1800,3 round objects behaving "not normal," hovering near the day-time moon +2008-11-18,34.698055600000004,-118.1358333,Lancaster,CA,circle,60,Bright orange light over E. Lancaster Desert +2008-11-18,37.9747222,-87.5558333,Evansville,IN,unknown,300,Two small craft with a sequence of red lights made an instantaeous 90 degree turn to follow a commercial aircraft. +2008-11-18,42.5777778,-121.865,Chiloquin,OR,oval,4,Oval shaped object streaks across sky in Southern Oregon. +2008-11-18,41.2558333,-122.1383333,Mccloud,CA,cone,7,Appeared out of nowhere and maintained a vertical line and disappeared 7 seconds later. +2008-11-18,41.9475,-80.5544444,Conneaut,OH,disk,480,floating light over ashtabula county, ohio +2008-11-18,40.1741667,-75.0441667,Southampton,PA,triangle,120,I saw two identical UFOs this evening about 45 miles away from each other. +2008-11-18,34.0736111,-118.3994444,Beverly Hills,CA,sphere,120,((HOAX??)) Fast moving formation of unidentified flying objects. +2008-11-18,34.2255556,-77.945,Wilmington,NC,circle,2700,3 unexplained circular lights over the ocean in North Carolina +2008-11-18,45.795,-88.0719444,Kingsford,MI,circle,60,A fairly large orange orb type thing traveled across the sky slowly and gradually faded away. It was a cloudy night with no stars visi +2008-11-18,47.2358333,-122.5491667,University Place,WA,triangle,45,Slow moving, triangle shaped craft, with several redish lights and silent +2008-11-18,33.9730556,-79.7472222,Coward,SC,light,240,3-4 orbs in triangle formation then spread out to straighter line while flashing red and white. no noise and irregular flashes +2008-11-18,40.4405556,-79.9961111,Pittsburgh,PA,fireball,300,Bright orange ball of fire hovers then snapped back up into the atmosphere at a high rate of speed +2008-11-18,33.5091667,-111.8983333,Scottsdale,AZ,formation,25,Scottsdale sighting against air traffic +2009-11-18,40.5,-111.95,West Jordan,UT,light,4,neighborhood flashes like day time. ((NUFORC Note: Possible Leonid meteor?? PD)) +2009-11-18,28.0833333,-80.6083333,Melbourne,FL,triangle,5,While walking outside to see the meteor shower, I believe i saw a U.F.O.. It was triangular in shape and moved at a steady pace across +2009-11-18,32.6030556,-98.215,Santo,TX,circle,1500,Reappearing bright lights with alternating colors moving very slowly approximately 200 AGL. +2009-11-18,27.6383333,-80.3975,Vero Beach,FL,formation,420,Three large orbs +2009-11-18,33.6669444,-93.5913889,Hope (Exit 30, Highway 30),AR,diamond,30,((HOAX??)) An aircraft just appeared and stood still. +2009-11-18,42.1291667,-80.0852778,Erie,PA,circle,30,orb repeat +2010-11-18,42.2916667,-85.5872222,Kalamazoo,MI,light,9000,Bright light in the sky appeared to be a star but was a lot brighter, stayed in the sky even as the sun had risen. +2010-11-18,39.0955556,-121.5511111,Olivehurst,CA,formation,420,Triangle of lights +2010-11-18,39.0483333,-95.6777778,Topeka,KS,cylinder,60,Stationary, cylindrical object with white flashing lights +2010-11-18,33.6888889,-78.8869444,Myrtle Beach,SC,circle,12,5 yellowish-orange circles appeared over the ocean. Went from bright to dim. +2010-11-18,47.6588889,-117.425,Spokane,WA,oval,120,the object resembled a blimp, flat/concaved on the underside with 3 lights. +2010-11-18,38.6244444,-76.9394444,Waldorf,MD,light,0.5,one small white ball of light, without a tail flashed through the sky for just 1/2 of a second then disappeared +2010-11-18,38.0194444,-122.1330556,Martinez,CA,teardrop,10,Inverted Teardrop-shaped UFO Martinez, CA. +2010-11-18,33.6141667,-85.835,Oxford,AL,circle,300,IT LOOKED LIKE A BALL OF Fire ABOUT THE SIZE OF A SOFTBALL IT CAME DOWN AT A ANGEL THEN STRAITEND AND WHENT ABOUT 50 FEET UP AND OVER S +2011-11-18,27.9375,-82.2861111,Brandon,FL,other,5,I saw a glowing, boomerang/sickle shaped object in the sky over Brandon +2011-11-18,39.3916667,-81.2052778,Saint Marys,WV,light,420,Lt appeared in north and disappeared in the south over eastern Oh. 06:50 +2011-11-18,35.0844444,-106.6505556,Albuquerque,NM,light,300,Saw a space ship hanging over the southern (Manzano) portion of the Sandia Mountains on evening. It was brightly lit, but not entirely. +2011-11-18,35.6008333,-82.5541667,Asheville,NC,cigar,180,11/18/11 Asheville NC cigar 2-3 min. black bee-shape/sections, square wings, 2 headlights, no sound, along busy highway +2011-11-18,42.0027778,-71.5152778,Woonsocket,RI,circle,5,Moved faster that a plane but, much slower than a meteor. +2011-11-18,33.4486111,-84.455,Fayetteville,GA,flash,2,Driving east on highway #54 between Peachtree, City Ga. toward Fayetteville Ga. My wife and I both witness what we expected to be a sh +2011-11-18,44.4202778,-83.3308333,Oscoda,MI,fireball,5,Sparkly ball with a sparkly tail +2011-11-18,39.3291667,-82.1013889,Athens,OH,unknown,60,Flying object with 3 red, rear end tail lights in the shape of a triangle that illuminated in and out of brightness. +2011-11-18,42.2094444,-85.7844444,Mattawan,MI,fireball,1200,Bright red/orange burning orbe floating above the trees. +2011-11-18,39.9402778,-82.0133333,Zanesville,OH,triangle,600,My mother and I were driving at night about 10:30 pm east bound on 70 from Newark, OH to Zanesville, OH. Almost into Muskingum County w +2012-11-18,39.8680556,-104.9713889,Thornton,CO,teardrop,600,Giant Teardrop UFO flies down toward Thornton Colorado. +2012-11-18,33.1580556,-117.3497222,Carlsbad,CA,disk,3,Green saucer strobes in and out of sight into horizon +2012-11-18,35.7883333,-83.5544444,Pigeon Forge,TN,other,20,Cloud like structure flew quickly across the sky. +2012-11-18,33.5205556,-86.8025,Birmingham,AL,unknown,30,Fast Light Moving. +2012-11-18,29.7855556,-95.8241667,Katy,TX,other,90,Daylight sighting of multi-colored object and bright lights in triangular pattern. +2012-11-18,41.6897222,-87.7972222,Worth,IL,changing,2700,Fireballs turning into plane like objects. +2012-11-18,41.6897222,-87.7972222,Worth,IL,fireball,3000,Fireballs appear out of nowhere and morph shapes as they hover away. +2012-11-18,37.0561111,-85.0886111,Russell Springs,KY,disk,120,Red flame saucer over Kentucky. +2012-11-18,39.0955556,-121.5511111,Olivehurst,CA,changing,120,2 Sightings in one day. +2012-11-18,37.1330556,-113.6533333,Santa Clara,UT,light,1200,Light that changed color from blue to green & abruptly changed at a high rate of speed. +2012-11-18,40.9866667,-75.195,Stroudsburg,PA,changing,360,Yellow orb chased off by multiple civilian aircraft. +2012-11-18,42.4525,-89.0722222,Rockton,IL,light,180,Orange orbs above tollway. +2012-11-18,37.0561111,-85.0886111,Russell Springs,KY,fireball,600,Ascending orange fireball- like circle with a glow trailing it. +2012-11-18,37.0561111,-85.0886111,Russell Springs,KY,fireball,120,Orange fireball passes directly overhead in southern KY. +2012-11-18,39.4666667,-87.4138889,Terre Haute,IN,formation,120,Nearly invisible object flying in the sky. +2012-11-18,41.1016667,-80.7647222,Austintown,OH,triangle,900,Orange lights and crafts. +2012-11-18,41.395,-82.5552778,Huron,OH,light,7200,Saw strange lights over lake Erie near Huron Ohio for about 2 hours. +2012-11-18,46.0494444,-118.3872222,College Place,WA,triangle,1140,Stationary streetlight looking craft/tri-lit orange/green/red UFO hovering through College Place, WA +2012-11-18,34.0230556,-84.3616667,Roswell,GA,fireball,120,Reddish Orange fireballs over Roswell, Georgia. +2012-11-18,41.1016667,-80.7647222,Austintown,OH,circle,360,We were outside and these orange circular orbs came out of the eastern sky toward the west moving very slowly ; spaced quite a distance +2012-11-18,48.7597222,-122.4869444,Bellingham,WA,rectangle,300,It appeared to be a rectangular docking station seen in Washington State +2012-11-18,42.6986111,-71.1355556,North Andover,MA,chevron,45,Dull chevron shaped object with dim lights gliding across night sky. No noise attached. +2012-11-18,42.2708333,-83.7263889,Ann Arbor,MI,fireball,900,Red fireball shaped object that formed shapes and vanished. +2013-11-18,42.865,-71.4938889,Merrimack,NH,cigar,600,Intense bright light metallic reflecting light just hovering over toll plaza on exit 12 +2013-11-18,38.6986111,-77.58,Nokesville,VA,circle,60,I was waiting for NASA to send up a rocket and I saw a strange object. +2013-11-18,33.2855556,-86.81,Pelham,AL,light,600,Small pulsing light. Moved across entire sky. +2013-11-18,41.3080556,-72.9286111,New Haven,CT,cone,900,3 conical, one spherical object spotted from I-91 over New Haven / Long Island Sound on November 18. +2013-11-18,44.7894444,-93.6019444,Chaska,MN,disk,10,2 lights (seen later in pictures as crafts). +2013-11-18,38.6244444,-76.9394444,Waldorf,MD,fireball,240,Orange orb seen by a woman in the horizon in Waldorf, MD +2013-11-18,39.9008333,-76.6061111,Red Lion,PA,changing,3600,Strange lights in sky south of Red Lion. +2013-11-18,36.06,-86.6722222,Antioch,TN,sphere,7200,Red and blue sphere connected to brightly lit, hovering craft in Nashville +2013-11-18,36.8527778,-75.9783333,Virginia Beach,VA,sphere,5,Small orb like object, made quick sharp turns, very very fast and from my vantage point appeared to be red. +2013-11-18,36.1658333,-86.7844444,Nashville,TN,triangle,180,3 triangled crafts eastern Nashville, TN. red/orange/yellow lights. +2013-11-18,41.4772222,-72.5125,Haddam,CT,circle,7200,Multi-colored flashing orbs in sky over Ct River. ((NUFORC Note: We suspect a "twinkling" star sighting. PD)) +2013-11-18,61.5997222,-149.1127778,Palmer,AK,cylinder,1200,Large orange cylindrical object flying over and near Pioneer Peak Alaska (6ꯠ ft in elevation) +2013-11-18,32.5761111,-111.325,Red Rock,AZ,light,300,Stationary oscillating lights north of I-10. +2013-11-18,39.2902778,-76.6125,Baltimore,MD,sphere,180,Very bright sphere in sky, thought it was planet but had one blinking light. +1910-01-02,40.1947222,-92.5830556,Kirksville (Near),MO,disk,120,Historical sighting (1903 - 1913) Northern Missouri +1988-11-19,35.2577778,-96.9363889,Tecumseh,OK,other,1500,Hovering UFO 40 feet above my head +1988-11-19,33.8352778,-117.9136111,Anaheim,CA,circle,120,a disneyland area ufo 1988 +1988-11-19,33.8352778,-117.9136111,Anaheim,CA,disk,90,i saw what i thought was a shooting star but then it dissapered only to turn itself upright and just hoover over the house tops. for se +1988-11-19,37.3688889,-122.0352778,Sunnyvale,CA,other,3600,Figure-eights or infinity symbolism ? +1995-11-19,36.8527778,-75.9783333,Virginia Beach,VA,circle,30,A circular object with lights on the bottom, flying very low to the house, possibly about six stories high, there was a humming noise. +1998-11-19,40.7141667,-74.0063889,New York City (Bronx),NY,circle,120,Two UFO's chase each other in Bronx, NYC +1998-11-19,28.6,-81.6741667,Montverde,FL,oval,180,What we saw was not exactly oval, but larger at the top. +1998-11-19,38.8966667,-121.0758333,Auburn,CA,sphere,600,I was WB I-80. Sun behind high clouds, grey/yellow in color, and bright. Saw other bright area approx. 50 degrees to the south. not as +1998-11-19,33.4483333,-112.0733333,Phoenix,AZ,light,5400,Observed a varying number of very bright, stationary lights to the south of Phoenix. Most of the time there was one very bright, orange +1998-11-19,33.6305556,-112.3325,Surprise,AZ,formation,45,Formation of stationary lights - most turning on and off and VERY similar to the infamous March 13 Phoenix sightings +1998-11-19,33.4483333,-112.0733333,Phoenix (West Valley),AZ,light,900,While driving S on the 101 freeway spotted very brite yellowish light to s sw of valley made coment to girlfriend that this light was n +1999-11-19,33.7205556,-116.2147222,Indio,CA,triangle,60,4 dark triangle objects with 3-4 lights flying fast and high, no sound +1999-11-19,34.1511111,-118.4483333,Sherman Oaks,CA,other,4,Nightime,black craft/no lights, flying under conventional aircraft,craft had a thick body with short stuby shark fin like wings! +1999-11-19,42.1886111,-74.7861111,Andes,NY,cylinder,900,Craft hovered over a mountain for 15 +2000-11-19,40.6805556,-73.4747222,Massapequa,NY,oval,15,Southwest, a somewhat "left-parenthesis"-shaped formation of 10-15 oval-shaped silvery/white objects moving from southwest to southeast +2000-11-19,40.4277778,-74.4163889,East Brunswick,NJ,teardrop,120,Tear-drop shaped UFO over central New Jersey. +2000-11-19,42.7694444,-71.0763889,Bradford,MA,other,900,A large, dark object holding a stationary postion, extremely high in the sky and then disappearing. +2000-11-19,36.4275,-84.9319444,Jamestown,TN,light,180,I've watched the skies for several years and have never seen any lights do what these 3 did. +2000-11-19,38.0494444,-122.1575,Benicia,CA,other,30,Observed: elliptical object with unusual light +2000-11-19,32.9341667,-97.0777778,Grapevine,TX,triangle,300,This was reported to me by the eyewitnesses. There were two light colored sail shaped UFO's. One flew into and through the other. Tw +2000-11-19,32.2216667,-110.9258333,Tucson,AZ,unknown,20,Craft with bright flashing color-changing lights +2000-11-19,38.9536111,-94.7333333,Lenexa,KS,formation,45,Approximatly 2 dozen orange lights in a straight line moving accross the night sky. +2000-11-19,38.8902778,-77.0844444,Arlington,VA,disk,600,There were lights on the object that changed in a distinct circular pattern from red and white. +2000-11-19,30.2419444,-93.2505556,Westlake,LA,sphere,7200,It was the week of thanksgiving holidays my kids and thier cousin were out of school for thanksgiving. I was in the house cooking the +2001-11-19,40.7141667,-74.0063889,New York City (Staten Island),NY,chevron,15,chevron shaped object sighting during Leonid meteor shower +2001-11-19,45.5236111,-122.675,Portland,OR,triangle,300,Triangle shaped object drops from sky during meteor shower...possible abduction. +2001-11-19,32.7152778,-117.1563889,San Diego,CA,other,10,Wedge shaped UFO spotted over San Diego, CA 11/19/01 +2001-11-19,37.4419444,-122.1419444,Palo Alto,CA,unknown,60,strange aircraft over Palo Alto +2001-11-19,44.9530556,-92.995,Maplewood,MN,other,10,5 Bronze colored, elliptical shaped objects in (<) formation, travelling really fast from NW to SE on clear night. +2002-11-19,40.7141667,-74.0063889,New York City,NY,changing,300,strange morphing cloud scans city at night +2002-11-19,38.9716667,-95.235,Lawrence,KS,cross,5,Saw an orange cross shaped craft with no blinking lights moving east to west +2002-11-19,32.9536111,-96.89,Carrollton,TX,changing,20,Shape warping object seen crossing sky in west to east direction with naked eye and 70mm binoculars. +2002-11-19,38.4408333,-92.9916667,Stover,MO,circle,14400,Large Glowing Orange Ball & Meteor Shower +2002-11-19,29.7630556,-95.3630556,Houston,TX,formation,10,Three red light formation over Houston +2002-11-19,40.4405556,-79.9961111,Pittsburgh,PA,egg,1800,Three egg like spheres followed two cross country track runners +2002-11-19,37.4136111,-79.1425,Lynchburg,VA,triangle,10,Triangular Aircraft Flyby +2002-11-19,33.0197222,-96.6986111,Plano,TX,formation,10,On September 19, at approximately 4:40 am, my mother and I were outside looking for the Leonid Meteor Shower. After a while, a V-shape +2002-11-19,28.6802778,-81.5097222,Apopka,FL,unknown,7200,Satelites that move back and forth and in circles?? I dont think so! +2002-11-19,28.5491667,-81.7730556,Clermont,FL,triangle,20,On Nov.19th񫺒,at 5:00am ,I saw 2 dark brown,triangular shaped aircrafts fly quietly from west to east +2002-11-19,47.4905556,-100.7105556,Mercer,ND,disk,900,There's lights in sky out there and no one is doing nothing about it .. Are really being invaded? +2002-11-19,39.2902778,-76.6125,Baltimore,MD,formation,10,not sure if i observed one object or 10 in some kind of formation. +2002-11-19,39.2902778,-76.6125,Baltimore,MD,formation,30,all i can say is i saw a formation of about 8 to 12 objects go overhead +2002-11-19,27.4986111,-82.575,Bradenton,FL,other,3600,Sighting of seven flying star looking objects during Leonid Metor Shower +2002-11-19,26.625,-81.625,Lehigh Acres,FL,light,1800,we were merely enjoying a meteor shower when these objects happened simply caught our eyes, as if wanting to be seen. +2002-11-19,36.8466667,-76.2855556,Norfolk,VA,chevron,15,Silent Red V/Chevron of 6-7 lights over Norfolk, VA during Leonids. +2002-11-19,35.4736111,-81.2547222,Lincolnton,NC,egg,30,WHILE WATCHING METEOR SHOWER, LOOKING STRAIGHT UP THERE WAS AN AREA WHERE MOST OF THE METEORS SEEMED TO BE COMING FROM. I NOTICED A SAT +2002-11-19,28.7555556,-82.095,Lake Panasoffkee,FL,other,900,Moving starlike objects +2002-11-19,45.3125,-116.3580556,Pollock,ID,changing,1200,Bright light SSE of Pollock, Idaho at 20 degrees above horizon that remained stationary for 20 min (spherical to crescent). +2002-11-19,32.8341667,-97.2286111,North Richland Hills,TX,cylinder,900,seen two round grey in color objects. one small,the other seemed to be quiet larger. these objects stayed still & didn't move for abou +2002-11-19,39.1652778,-86.5263889,Bloomington,IN,light,300,UFO observed south of Bloomington Indiana; moved horizontally +2002-11-19,34.6180556,-79.0088889,Lumberton,NC,diamond,45,11/19/02 Lumberton, NC Diamond shape with 4 dull green lights flying from S to N @ 500 ft made no sound. +2002-11-19,45.5236111,-122.675,Portland,OR,triangle,60,From the south and passing near intersection of se holgate and 30th ave it banked and headed over the river towrds downtown PDX.I s +2002-11-19,42.7158333,-78.8297222,Hamburg,NY,other,1500,took a picture of a flashing "v" shaped light. +2003-11-19,41.0086111,-91.9625,Fairfield,IA,triangle,180,MUFON/IOWA FOLLOW-UP REPORT: Low-altitude triangle with triangular shaped pinkish-white lights at angles. +2003-11-19,41.0086111,-91.9625,Fairfield,IA,triangle,180,observed triangle shaped object fly from north to south at slow speed making no noise. Corners were glowing triangles +2003-11-19,32.7355556,-97.1077778,Arlington,TX,triangle,300,large triangular ship moving slowly on it's path +2003-11-19,33.2669444,-93.2391667,Magnolia,AR,triangle,30,Triangle Craft spins overhead and then speeds away. +2003-11-19,32.9544444,-97.0147222,Coppell,TX,unknown,300,i saw eight flashing dots like stars changing colors from red to silver +2003-11-19,33.7488889,-84.3880556,Atlanta,GA,light,300,white light source changing from pinpoint to much brighter size(possibly rotating space debris catching sunlight) +2003-11-19,32.7833333,-96.8,Dallas,TX,light,3600,Earlier during the day on the 19th of November at about 2:05 pm, I saw a gray cylinder that resembled a fuselage without any wings goin +2003-11-19,32.7833333,-96.8,Dallas,TX,light,3600,Light in the Western Sky +2003-11-19,31.3352778,-109.9475,Naco (Mexico),AZ,light,570,white floating light +2003-11-19,41.85,-87.65,Chicago (West Suburbs),IL,light,300,2 soft white lights, one disappears and reappears quickly next to the other during a sunset. +2003-11-19,28.8525,-81.6855556,Eustis,FL,sphere,600,Brilliant lightts with a haze +2003-11-19,38.3452778,-90.9808333,St. Clair,MO,light,900,lights had strobe affect in a erratic way +2003-11-19,42.4997222,-85.4080556,Delton,MI,sphere,600,A sherical craft that manuverd around then it flashed green, red, and blue then it vanished +2003-11-19,37.7447222,-105.0708333,Farisita,CO,light,3600,Like stars, but moving in different directions, then disappear. +2003-11-19,37.5880556,-90.6288889,Arcadia,MO,light,3600,Swirling colored ball's of light in night sky. +2003-11-19,40.0788889,-93.6163889,Trenton,MO,triangle,30,On the night of November 19 2003, after watching my buddys band practice we went outside to load the equipment in his truck. I hear hi +2003-11-19,40.0788889,-93.6163889,Trenton,MO,triangle,30,Triangle shaped craft with 8 lights 4 on nose one in middle one on each wingtip and one on the rear +2003-11-19,30.2669444,-97.7427778,Austin,TX,light,600,They were all the same magnitude brightness and not one object. +2003-11-19,29.9744444,-92.1341667,Abbeville,LA,formation,600,It was a scarey sight. +2003-11-19,33.5205556,-86.8025,Birmingham,AL,light,2400,stationery pulsating white starlike object with blue and red flashes appeared to be spinning. +2003-11-19,31.3269444,-89.2902778,Hattiesburg,MS,triangle,5,Triangular Object - Silent - No lights - Low Flying - Light colored markings on underside +2003-11-19,34.0555556,-117.1816667,Redlands,CA,light,1800,Singular light in night sky. Shifted intensity irregularly. Appeared to give off red, green, white, blue, purple light. +2004-11-19,34.4436111,-118.6086111,Valencia,CA,unknown,60,2 large flashes of light +2004-11-19,28.5380556,-81.3794444,Orlando,FL,sphere,120,Sphere of light descends, emitts blinding bright light across city, then shoots up back into atmosphere at light speed +2004-11-19,36.175,-115.1363889,Las Vegas,NV,light,18000,On or about this date i caught a freght train out of las vegas as i was leaveing town headed west towards la i noticed that the light +2005-11-19,35.7972222,-84.2561111,Lenoir City,TN,diamond,60,Multiple sightings in Tennessee. +2005-11-19,38.9822222,-94.6705556,Overland Park,KS,other,180,A horse shoe shaped object with red pulsating lights appeared, hovered, and reversed its direction. +2005-11-19,34.7016667,-86.3758333,Gurley,AL,circle,7200,Flurry of small bright flashing lights going east to west in random formation as if they were bees that were disturbed. +2005-11-19,39.7391667,-104.9841667,Denver,CO,cigar,1200,Cigar shaped object over the frontyard of my house flashed green and orange lights in my face. +2006-11-19,33.4483333,-112.0733333,Phoenix,AZ,unknown,7200,distant flickering blue light moves back and forth in the Southern Sky over Phoenix. ((NUFORC Note: Sighting of Sirius?? PD)) +2006-11-19,41.7758333,-72.5219444,Manchester,CT,sphere,180,My husband and I woke from a deep sleep to a strange blue orb outside our window. +2006-11-19,33.8755556,-84.7622222,Hiram,GA,light,5,Four Check mark shaped lights seen in the night sky over Georgia, traveling west to east. +2006-11-19,31.3269444,-89.2902778,Hattiesburg,MS,light,240,LIGHT MOVING SLOWLY IN WESTERN SKY AT 5:30AM MOVING TO THE NORTH W/O ANY TRAILS +2006-11-19,34.1866667,-118.4480556,Van Nuys,CA,circle,2,Bright light, 3 or 4 times the size of a star hovered, moved slowly, and then accelerated to an astounding speed till it disappeared. +2006-11-19,34.2880556,-79.2755556,Fork,SC,disk,900,Bright Disc seen in Ne South Carolina +2006-11-19,33.4483333,-112.0733333,Phoenix,AZ,sphere,600,THIS IS A MULTI EVENT REPORT, OF EVENTS HAPPENING WITHIN THE LAST TWO MONTHS... After my report on November 18, 2007, of three spheres +2006-11-19,34.0522222,-118.2427778,Los Angeles,CA,unknown,300,Flashing red-orange light very high up in the sky almost like a fire in Los Angeles. +2006-11-19,40.5291667,-75.3936111,Center Valley,PA,disk,60,I saw several objects playing in the clouds. +2006-11-19,26.6583333,-80.2416667,Wellington,FL,cylinder,30,cylinder no wings +2006-11-19,32.7152778,-117.1563889,San Diego,CA,light,1,I saw an apparent meteor near the NW horizon (more west than north) traveling from right to left, and downward. It was unusually brigh +2006-11-19,33.9533333,-117.3952778,Riverside,CA,fireball,3,Green fireball, very slowly descending +2006-11-19,33.7669444,-118.1883333,Long Beach,CA,formation,300,Giant craft? with random red blinking lights. +2006-11-19,41.85,-87.65,Chicago,IL,other,10,Quite large boomerang shaped object with dim/ faint yellowish lights lining the V-shape of the bottom +2006-11-19,43.18,-95.4766667,Hartley,IA,unknown,60,5 liights in southern sky +2006-11-19,42.4927778,-92.3427778,Waterloo,IA,other,30,silent objest with rippling effect +2006-11-19,48.1183333,-123.4294444,Port Angeles,WA,other,120,Flash of light and huge object blending in with the night sky +2007-11-19,34.7302778,-86.5861111,Huntsville,AL,light,7200,large white object at tree top level, slowly moves higher in sky as the sun comes up. ((NUFORC Note: Sighting of Venus. PD)) +2007-11-19,43.9036111,-99.8613889,Kennebec,SD,triangle,300,Bright triangular white light with two much smaller circular lights that flew with it. ((NUFORC Note: Overflight of ISS. PD)) +2007-11-19,33.6041667,-117.5861111,Coto De Caza,CA,other,15,Beautiful bright blue-white round light flying low across daylit sky: November 19, 2007 Orange County, Ca +2007-11-19,37.6391667,-120.9958333,Modesto,CA,other,300,Black helicopter with very bright pulsating light. +2007-11-19,33.0197222,-96.6986111,Plano,TX,light,10,2 lights appear and become extremely bright then fade one by one into the dark night sky. +2008-11-19,32.64,-117.0833333,Chula Vista,CA,light,60,UFO in Chula Vista, CA NOV 19 08 +2008-11-19,40.3641667,-74.9516667,New Hope,PA,cigar,1200,a bright 'falling' star that didn't fall but had trails of vapor and revolved so I could see the cigar or disk shape. +2008-11-19,41.2761111,-72.8688889,East Haven,CT,egg,300,A white egg shaped light suddenly dissappears and more return.......... 500 Lights On Object0: Yes +2008-11-19,38.8338889,-104.8208333,Colorado Springs,CO,unknown,15,What apeared to be a white dot in a clear blue sky, was acually a sagnificant size unknown aircraft reflecting the sun +2008-11-19,43.0591667,-77.6125,Henrietta,NY,light,300,Bright Pulsing object appears, then disappears. +2008-11-19,37.7975,-121.215,Manteca,CA,triangle,300,Triangular craft flew over houses in Manteca, Ca. +2008-11-19,32.3475,-97.3863889,Cleburne,TX,light,10,Three lights in a shape of triangle, lights changed positions four times. +2008-11-19,40.7683333,-73.7775,Bayside,NY,rectangle,20,Here I go again.I saw two objects tonight in two different locations in Queens at two different times. First object was definitely +2008-11-19,40.1783333,-75.1288889,Horsham,PA,light,1270,This is less of a craft sighting and more of a sighting a numerous beams of light varying in intensity of their brightness. These light +2008-11-19,33.5091667,-111.8983333,Scottsdale,AZ,formation,20,Unfamilar orange lights in North Scottsdale +2008-11-19,33.2097222,-87.5691667,Tuscaloosa,AL,cigar,2,large blue bullet shaped object crossing sky of tuscaloosa alabama +2008-11-19,47.6063889,-122.3308333,Seattle,WA,light,10,Blue/green light falling from the sky (NE) viewed from West Seattle +2008-11-19,33.7877778,-117.8522222,Orange,CA,triangle,60,TWO TRIANGLE SHAPED CRAFT MOVING SOUTH ALONG CA COAST +2008-11-19,33.6125,-117.7119444,Laguna Hills,CA,triangle,360,((HOAX??)) IT IS OVER MISSION VIEJO AT THIS VERY MOMENT. +2009-11-19,33.4222222,-111.8219444,Mesa,AZ,light,20,Bright Light, No Sound, Heading Eastward at 5:59am Thursday 19th Nov 2009 +2009-11-19,31.9491667,-98.7369444,Sidney,TX,light,3,Amber-red light array, 3 sec illumination, 40 miles from Stephenville, TX.. +2009-11-19,43.9075,-72.1438889,Fairlee,VT,cross,60,sighting in fairlee vt +2009-11-19,42.725,-70.9916667,Georgetown,MA,triangle,120,Triangular object, slow moving with red central light and white v-shaped lights on corners of triangle. +2009-11-19,33.8158333,-112.5794444,Circle City,AZ,triangle,600,Low hovering orange triangle of lights +2009-11-19,27.2436111,-80.83,Okeechobee,FL,light,1020,Many small lights and bright orange flashes. +2010-11-19,35.9605556,-83.9208333,Knoxville,TN,circle,180,We found this orb of light that is purple and cannot be seen by us, we also know it was way up in the sky. +2010-11-19,58.301944399999996,-134.4197222,Juneau,AK,fireball,60,Missile like fireball seen in Juneau, Alaska. +2010-11-19,39.9977778,-76.3544444,Millersville,PA,unknown,5,as above +2010-11-19,38.3225,-75.2180556,Berlin (Assateague Island),MD,triangle,1200,Three stationary lights in triangular pattern +2010-11-19,41.0241667,-80.6630556,Boardman,OH,circle,1200,Twenty bright red lights moving from west to east. +2010-11-19,40.7966667,-81.5216667,Massillon,OH,triangle,360,Triangular-shaped object flying low with white flashing lights over Perry Township in Massillon, Ohio. +2010-11-19,46.8722222,-113.9930556,Missoula,MT,triangle,300,I saw a strange object that was just hovering, appeared to be a plane but planes don't hover. +2010-11-19,35.2269444,-80.8433333,Charlotte,NC,formation,420,saw a group of bright orange (30) lights moving from east to south +2011-11-19,41.6269444,-88.2038889,Plainfield,IL,triangle,240,Three Spinning Green Lights Hovering Above the Subdivision. +2011-11-19,44.32,-91.9147222,Alma,WI,light,900,Satellite like star in the morning sky moves in fast 45 degree angles at impossible speeds +2011-11-19,38.2008333,-77.5894444,Spotsylvania,VA,diamond,1200,Very low ufo encounter. ((NUFORC Note: Student report?? PD)) +2011-11-19,40.3477778,-79.8644444,Mckeesport,PA,cigar,180,Cigar Shaped UFO seen in sky. +2011-11-19,33.3805556,-84.7997222,Newnan,GA,fireball,180,Silent glowing fireballs flying in formation south of Atlanta, GA. ((NUFORC Note: Report from airline pilot. PD)) +2011-11-19,36.4219444,-94.4533333,Gravette,AR,flash,7200,Ambient strobe like light located in forest. +2011-11-19,31.9972222,-102.0775,Midland,TX,light,180,UFO sighting yeilds uncomfortable sense that they can tell I was observing them. +2011-11-19,38.3683333,-81.6997222,South Charleston,WV,teardrop,10,Lime colored, teardrop, bright light, falling sraight down from sky. +2011-11-19,38.4219444,-77.4086111,Stafford,VA,other,3600,Very large boomerang-shaped object with 3 large bright front lights and low engine noise glided low overhead +2011-11-19,33.6588889,-79.5136111,Nesmith,SC,unknown,7200,((HOAX??)) UFO Evades Possible Laser ((NUFORC Note: One of several reports from same source. PD)) +2012-11-19,40.7141667,-74.0063889,New York City (Brooklyn),NY,triangle,10,Silent V-Shaped Craft seen flying over Brooklyn NY! +2012-11-19,21.6536111,-157.9272222,Laie,HI,light,360,1 orange spotlight multiplied to 13 gradually and shined on 2 witnesses as they fled. +2012-11-19,40.5247222,-111.8630556,Draper,UT,rectangle,180,Black rectanlge object moving north with a blue "knight rider" light that blink every couple of secs +2012-11-19,40.6994444,-99.0811111,Kearney,NE,circle,1200,Two orbs, blue, and multi-colored. +2012-11-19,26.9616667,-82.3527778,Englewood,FL,cigar,15,Near coast loking east long silver metalic looking item seen headed towards ground , not straight down but at slieght angle. +2012-11-19,41.4994444,-81.6955556,Cleveland,OH,circle,5,I was outside on my backyard porch looking up into the sky: I then saw a circular shaped object, with bright lights, moving at speeds g +2012-11-19,40.6083333,-75.4905556,Allentown,PA,teardrop,900,3 small objects, very high in the sky, flying very close together and performing different maneuvers. +2012-11-19,46.1261111,-67.8408333,Houlton,ME,teardrop,1800,Strange cloudy tadpole shaped object, dark core no flames moving in southern sky with Jet presence seeming to be watching from distance +2012-11-19,41.8238889,-71.4133333,Providence,RI,teardrop,540,Around 6 am I saw something in the sky that looked like a silver teardrop. +2012-11-19,38.2541667,-85.7594444,Louisville,KY,triangle,240,Low flying, slow moving triangular shape with red pulsing lights at corners flew over Louisville, Ky. +2012-11-19,37.9736111,-82.0175,Chapmanville,WV,fireball,900,Orange fireball UFO, changed shape to triangle, spinning like a boomerang. +2012-11-19,33.5380556,-86.7072222,Irondale,AL,light,30,Very distant, silent, faint and quick moving light eased across the southern sky. +2012-11-19,39.7338889,-90.2288889,Jacksonville,IL,sphere,20,4 orange glowing, non flickering spheres, very crisp and clear. +2012-11-19,35.2905556,-98.9880556,Cordell,OK,light,360,Blue and red light orb falling from sky, then rising again. +2012-11-19,42.9005556,-78.6705556,Lancaster,NY,fireball,120,Glowing orange lights in the sky. +2012-11-19,31.8513889,-97.2177778,Aquilla,TX,triangle,2700,While driving home from work, saw an orange/whitish colored light hanging in the sky above some trees behind a neighbors field. +2012-11-20,46.0038889,-112.5338889,Butte,MT,changing,600,Red with periodis of white and red blinking lights moving slowly southeast soundlessly and changing shape. +2012-11-20,38.9988889,-84.6266667,Florence,KY,cigar,1800,Seen 3 pairs of cigar shaped objects stayin stationary. +2013-11-19,34.9247222,-81.0252778,Rock Hill,SC,circle,30,One object it was a Circular. Green and reddish/orange lights on the side, middle was a greenish color, moved right. +2013-11-19,42.7261111,-87.7827778,Racine,WI,cigar,5,I was talking to my wife and she said she saw a glimmer in the sky while she was driving. She said there was a single engine plane tha +2013-11-19,43.2969444,-84.1405556,St. Charles,MI,cylinder,15,Silver. ((NUFORC Note: Source of report provides flawed contact information. PD)) +2013-11-19,35.9555556,-80.0055556,High Point,NC,sphere,60,Metallic sphere pauses and becomes transparent after being spotted. +2013-11-19,33.3869444,-84.2830556,Hampton,GA,sphere,300,Saw a silver ball traveling at a high rate of speed going from north to south, then it went in a cloud. +2013-11-19,26.5216667,-82.1894444,Captiva,FL,fireball,600,SIGHTING #30 – 11TH SIGHTING OF ORANGE-RED “FIREBALLS” IN A CLOSE BY STRUCTURED FORMATION +2013-11-19,44.4191667,-72.0155556,St. Johnsbury,VT,circle,5,4 reddish orange lights appeared one by one, then disappeared one by one, appeared to be headed northeast. +2013-11-19,35.2333333,-106.6638889,Rio Rancho,NM,other,3600,Unidentified foreign obeject was seen flying over New Mexico +2013-11-19,35.2333333,-106.6638889,Rio Rancho,NM,triangle,3600,My daughter and I saw a triangular shape object with blue, then green, lights over some housing in Rio Rancho, NM. +2013-11-19,43.3138889,-89.5263889,Lodi,WI,triangle,300,Short line of bright white lights w/ red center + small triangle +2013-11-19,40.4405556,-79.9961111,Pittsburgh,PA,light,7200,Three red lights moving in the sky. +2013-11-19,31.1369444,-83.4236111,Adel,GA,triangle,420,Triangle, rounded leading edges reddish /pink glow at tips of wing, white left to right pulsing light at rear. +2013-11-19,36.4991667,-80.6075,Mount Airy,NC,sphere,30,Bright orb hovering and dancing around the car, in Mt. Airy, next to Pilot Mountain, NC +2013-11-19,38.2775,-85.7372222,Jeffersonville,IN,sphere,480,10-12 bright orange spherical balls of light, some turning away from others, and one coming in close +2013-11-19,32.7152778,-117.1563889,San Diego,CA,fireball,360,Object moving fast, slowed, hovered, then faded away. +2013-11-19,35.6869444,-105.9372222,Santa Fe,NM,unknown,600,Three red lights in horizontal formation. +2013-11-19,34.185,-83.9252778,Flowery Branch,GA,triangle,1800,Looked like the sail of a sail boat with lights. Made a circular path across the sky. This lasted for about 30 minutes while I was walk +2013-11-19,35.0766667,-80.6694444,Indian Trail,NC,light,120,Bright Electric Blue Light over Indian Trail, North Carolina. +2013-11-19,33.5225,-117.7066667,Laguna Niguel,CA,rectangle,600,Three Orange Spheres in a Rectangular Cluster with a Pulsating Sphere on the Right Side +2013-11-19,35.0844444,-106.6505556,Albuquerque,NM,triangle,600,Triangle shaped hovering lights. +2013-11-19,39.0997222,-94.5783333,Kansas City,MO,fireball,1800,Red flashing orb/fireball seen near Front St. in Kansas City, Missouri. +2013-11-19,39.0875,-81.9227778,West Chester,OH,circle,600,9 orange-red circles in the western sky that faded out over 10 minutes. +2013-11-19,38.545,-75.0894444,Ocean View,DE,other,300,Bright Aircraft Emitted Sparks and Disappeared. +2013-11-19,39.0255556,-77.0766667,Kensington,MD,fireball,30,An orange fireball moved in the sky near Washington, D.C., turned direction and "burned out." +2013-11-19,30.7108333,-94.9327778,Livingston,TX,other,1800,We saw 3 objects in the sky. +1944-01-01,32.7152778,-117.1563889,San Diego,CA,cigar,180,A sighting of one silver or white enlongated cylindrical or cigar shaped craft without any visual control surfaces heading west to east +1956-01-01,40.4188889,-80.5897222,Weirton,WV,disk,10,My Uncle Sam was driving to work very early one winter morning. He lived down the street from my house. As he approached my home in h +1957-01-01,32.7833333,-96.8,Dallas,TX,unknown,20,I was flying the first of 4 USAF aircraft on a simulated bombing run on a bridge span in Dallas, Texas. The other 3 aircraft were behi +1958-01-01,33.8161111,-102.5577778,Pep,TX,fireball,2,Green fire balls, Texas Panhandle, late 1950's. +1961-01-01,37.3541667,-121.9541667,Santa Clara,CA,circle,10800,Stationary circular object 12 oclock high. +1961-01-01,41.4413889,-85.265,Kendallville,IN,circle,30,It was a clear Indiana day and I saw something fascinating +1962-01-01,24.5552778,-81.7827778,Key West,FL,sphere,300,in the very early morning hours of 1962, I don't recall the date or month, at the time I was only 10 years of age, a very loud whistlei +1963-01-01,46.5927778,-112.0352778,Helena (Near),MT,diamond,3600,Diamond shaped UFO blocks USAF runway +1965-01-01,41.5261111,-87.8891667,Mokena,IL,light,20,Light over Mokena Illinios +1965-01-01,35.0886111,-92.4419444,Conway,AR,light,3600,At a drive-in during the summer my brother and I saw three lights above and to the right of the screen. The movie was "CAT BALOU." We +1965-01-01,43.3783333,-92.9186111,St. Ansgar,IA,fireball,20,winter nite wonder +1966-01-01,35.198055600000004,-111.6505556,Flagstaff,AZ,disk,600,Spotted two black disk shaped objects flying over a small nearby mountain, followed by a single engine plane . +1968-01-01,40.0711111,-74.8652778,Burlington,NJ,circle,1200,New Years night in the late 60's I, my fater and two brothers observed a circular shaped craft +1968-01-01,33.8872222,-118.3516667,Lawndale,CA,circle,60,Craft with a portal +1968-01-01,32.5091667,-92.1191667,West Monroe,LA,light,1200,On the way into town, a light appeared over head and followed us. +1968-01-01,39.0397222,-77.0555556,Wheaton,MD,circle,60,Woke up by loud noise, parents said to come out and see the object. i was 9 or so at time. i remember red sphere hovering in one place +1969-01-01,32.7733333,-92.4055556,Farmerville,LA,other,120,Five bright white, small balls jumped out of the sky, and bounced across the road. +1970-01-01,37.0841667,-94.5130556,Joplin,MO,unknown,1800,Large object moved slowly over the city +1970-01-01,42.9633333,-85.6680556,Grand Rapids,MI,disk,1800,Low flying, zig-zagging disc with lights in the 70's +1972-01-01,47.6063889,-122.3308333,Seattle,WA,triangle,30,Man reports sighting in l972 or 1973. Heard woman scream, turned, and saw large triangular ship in sky. +1972-01-01,34.7302778,-86.5861111,Huntsville,AL,unknown,120,3 lights, light speed, no sound, 90 degree turn +1973-01-01,35.0455556,-85.3097222,Chattanooga,TN,oval,30,3 objects in a tri-angle formation also in stationary mode for about 20 to 30 sec. Then dispersed in different directions in less than +1974-01-01,47.3811111,-122.2336111,Kent,WA,cigar,300,Cigar shaped with distint window shapes the width of the object, wasn't moving, it was about 20 to 30 feet off the ground. I saw no li +1975-01-01,42.0969444,-79.2355556,Jamestown,NY,sphere,120,I was 13-15. I was in my parent house on Moon Rd., Woke up in the middle of the night. Looked out the window. saw a SMALL round objec +1975-01-01,33.4483333,-112.0733333,Phoenix,AZ,disk,300,Saucer sighting in 1970s near Phoenix, AZ. +1975-01-01,32.6833333,-84.7383333,Waverly Hall,GA,sphere,600,Hovering Sphere +1975-01-01,39.7391667,-104.9841667,Denver,CO,disk,180,Flying saucer seen by 100 people at drive-in theater in Denver +1977-01-01,40.8005556,-73.7288889,Great Neck,NY,cylinder,1800,When I was a child, I witnessed shiney gold cylinders in the sky. The sky was very clear; not a cloud in the sky. The objects were fl +1977-01-01,40.7141667,-74.0063889,New York City (Manhattan),NY,sphere,60,A small gray ball moved past my bedroom window on the 15th floor of a New York City apartment building. +1977-01-01,34.2241667,-118.2391667,La Crescenta,CA,formation,10800,Triangle formation in foothills. +1977-01-01,33.7591667,-118.0058333,Westminster,CA,disk,300,There were two ships, saucer shaped, silver grey..like pewter, soundless, drifting over our neighborhood like silent boats on the water +1978-01-01,37.7797222,-119.0744444,June Lake,CA,disk,900,seen flying saucers at june lake ca +1978-01-01,48.2025,-116.5466667,Sagle,ID,sphere,20,Hovering gray, grapefruit size, shaped sphere that travels at lightning speed. +1979-01-01,33.7877778,-117.8522222,Orange,CA,disk,1200,In Broad daylight saucer appeared 50 feet above after I looked up to see what the humming and deep bass sound was +1979-01-01,33.8491667,-118.3875,Redondo Beach,CA,disk,15,Low-altitude disk flying slowly; red lights around perimeter. +1980-01-01,39.7683333,-86.1580556,Indianapolis,IN,light,420,Very bright green light without sound moved over me and my car from a wooded area about a 1000 ft. up. +1980-01-01,42.1486111,-72.6083333,Chicopee,MA,diamond,300,I heard a noise like thunder, went to the kitchen window and saw a black diamond-shaped craft hovering over the porch. +1981-01-01,32.7947222,-116.9616667,El Cajon,CA,sphere,1800,My husband and I were at home just bringing in the new year of 1981 watching the the ball drop in New York city having not even a glass +1981-01-01,35.5322222,-97.9547222,El Reno,OK,disk,1800,New Years 1981 Crashing Disc +1982-01-01,35.1294444,-78.5225,Orange County,NC,circle,900,this was no helicopter squad +1985-01-01,42.7919444,-83.6277778,Holly,MI,other,900,group of lihtts two circled real fast then they all shot strait up.gone +1985-01-01,27.9091667,-82.7875,Largo,FL,other,300,Very large UFO, irregular in shape, glowing red-orange craters, below cloud level, no noise, reported in paper as space debris. +1986-01-01,38.3241667,-85.4725,Crestwood,KY,oval,180,A faint beam of white light that seemed to come from a star or star-like object. +1987-01-01,37.6941667,-122.0852778,Castro Valley,CA,oval,10,One single, beach ball sized .... &quot;red ball&quot; +1988-01-01,41.9847222,-88.0797222,Roselle,IL,triangle,180,fast moving Triangle with no sound and orange lights, stops hovers and speeds off. +1988-01-01,29.9938889,-90.2416667,Kenner,LA,circle,1200,Gigantic circular object hovering, and then with progressive speed moved away and disappeared. 500 Lights On Object0: Yes +1989-01-01,35.9594444,-95.3691667,Wagoner,OK,light,120,My friend and I who were both 16 at the time were driving to her house on state highway 51 westbound. We were going to be late for curf +1991-01-01,34.5294444,-90.5916667,Helena,AR,triangle,60,I was outside of the police station with my dog when I got this sudden urge to look up. I saw a black triangle flying really low and ma +1992-01-01,47.6063889,-122.3308333,Seattle,WA,other,120,I and a witness saw a black helicopter like object in a very populated area af Seattle Wa, got a good long look at it but it was night. +1994-01-01,33.9191667,-118.4155556,El Segundo,CA,other,1800,What I'm seeing, please help. +1994-01-01,41.1133333,-74.2458333,Ringwood,NJ,unknown,240,Strange light, stranger disappearance +1995-01-01,37.5027778,-122.4683333,El Granada,CA,fireball,45,Glowing fireball object crashed at Maverick's Beach +1995-01-01,34.9675,-82.4436111,Travelers Rest,SC,triangle,8,something i never want to see again atleast not this close. 500 Lights On Object0: Yes +1995-01-01,34.1975,-119.1761111,Oxnard,CA,changing,600,1 light turns into 4 (light show) +1995-01-01,29.1383333,-83.0352778,Cedar Key,FL,triangle,180,I could hear and see it, close encounter. +1995-01-01,34.1952778,-82.1619444,Greenwood,SC,sphere,20,Bright red sphere floating and completely silent takes off and disappears. +1995-01-01,32.2216667,-110.9258333,Tucson,AZ,triangle,600,120-140 ft, X 35-40 ft, X 30 ft, triangler craft, metalic colored, 4 lights directly down the center with 2 strobes and 3 very large li +1995-01-01,40.8841667,-72.39,Southampton,NY,light,20,Very bright light moved from one side of sky to the other and in circles at an amazing speed, changed direction and flew off. +1996-01-01,41.7561111,-124.2005556,Crescent City,CA,light,1800,unexplainable white light above the mountain, flashing it blue, all animals making noises. +1996-01-01,25.0861111,-80.4475,Key Largo,FL,triangle,240,3:30 in the morning observe a black triangular shaped craft fly directly over Key Largo Fl. aproximately one tholusand ft. up and 2000 +1996-01-01,32.7152778,-117.1563889,San Diego,CA,sphere,90,A metalic sphere flew across the daytime sky. +1996-01-01,34.6291667,-78.6055556,Elizabethtown,NC,triangle,300,TRIANGLE SHAPED SHADOW BLOCKS OUT STARS +1996-01-01,47.6063889,-122.3308333,Seattle,WA,sphere,20,saw circle in lightning +1997-01-01,37.6791667,-95.4569444,Chanute,KS,circle,35,3 circle shaped objects travelling due north. +1997-01-01,46.9105556,-98.7080556,Jamestown,ND,changing,600,AUTHOR"S SUMMARY: The object was around the size of a small car it changed shape and light color and pattern as it moved. it was silen +1997-01-01,33.4483333,-112.0733333,Phoenix,AZ,chevron,1200,Phoenix lights witnessed and documented two months prior to major sighting. +1997-01-02,36.7983333,-81.6825,Chilhowie,VA,cross,180,4 craft slowly came together from four directions (North, South, East, West) They stayed together for 2-3 minutes(shot off in different +1998-01-01,40.6083333,-75.4905556,Allentown,PA,light,1800,One object, too far to see size and shape, one blinking light red/green/white. Stayed in oproximately same spot for about 30 minutes +1998-01-01,37.4458333,-88.305,Elizabethtown,IL,triangle,240,Triangular object traveling south crossed the highway in front of us hovered then turned east and left with no sound. +1998-01-01,20.9083333,-156.2275,Huelo,HI,light,3600,I've seen many strange things, from beings in my room to faces looking down on me, and I was not alone!! +1998-01-01,40.7438889,-74.0327778,Hoboken,NJ,disk,1800,Incredible UFO sighting in Hoboken NJ around 1997-1998 +1998-01-01,40.4405556,-79.9961111,Pittsburgh,PA,formation,1200,28-30 Lighted objects coming up over the city hovering and almost coliding with one another. Red lights escorting them. Vanished. +1998-01-01,30.4505556,-91.1544444,Baton Rouge,LA,circle,900,the brightest lights over the mississippi river +1999-01-01,39.3119444,-121.4166667,Loma Rica,CA,light,1200,Lights I saw and now seem to feel. +1999-01-01,34.1952778,-79.7627778,Florence,SC,cylinder,600,It was a clear day when I saw a silver cylinder over head moving slowly making no sound +1999-01-01,32.0033333,-80.9738889,Wilmington Island (Savannah),GA,light,240,Bright light paces commercial airliner +1999-01-01,38.5891667,-121.3016667,Rancho Cordova,CA,unknown,300,I heard like a swoshing noise that was high pitch and it hurt my ears i walked outside my back door and saw nothing but i took pictures +2000-01-01,40.7141667,-74.0063889,New York City,NY,sphere,120,I was celebreating with my friends, when I saw spheres flying around. I was ontop of my friends building, I can assure you that it wa +2000-01-01,34.0522222,-118.2427778,Los Angeles,CA,unknown,120,High speed weird noise over Los Angeles midnight new years 2000. +2000-01-01,32.7152778,-117.1563889,San Diego,CA,light,15,Instense Green light traveling from NW to SE. Paused momentarily (3-5 sec) before turning in a Southerly direction. +2000-01-01,40.3611111,-83.7597222,Bellefontaine,OH,light,10,After we ( my girlfriend and I ) got done skiing at the Mad River Mt. walking back to my car, I look up in the sky and see two red obje +2000-01-01,36.8252778,-119.7019444,Clovis,CA,light,60,It's a plane, it's a star, NO it's a UFO! +2000-01-01,42.3702778,-87.9019444,Gurnee,IL,light,60.3,Driving to movies with my daughter and mother and just before arriving daughter noticed a light in the sky to the west...it wasn't movi +2000-01-01,37.775,-122.4183333,San Francisco,CA,light,900,It's a cold, clear, sunny, windy day, with large, rapidly moving clouds. probably preceeding a storm front. Observed a bright, starlike +2000-01-01,42.3266667,-122.8744444,Medford,OR,formation,300,the quick flash of an object that looked like a boomarang +2000-01-01,29.7630556,-95.3630556,Houston,TX,flash,5,Myself and a friend were driving east on Loop 610 South in Houston near I-45. As we drove up the elevated roadway, our eyes were natur +2000-01-01,38.7552778,-89.0952778,Patoka,IL,triangle,300,Triangular shaped object flying very low to the ground over my parents yard in rural Illinois. +2000-01-01,29.7630556,-95.3630556,Houston (Nw ),TX,sphere,10,Bright green sphere hovering then accellerating exponentially. +2000-01-01,37.9747222,-87.5558333,Evansville,IN,cigar,2,Long black cigar-shaped craft flew over at low altitude and was extremely quick despite no engine noise (only wind) +2000-01-01,29.9580556,-92.0358333,Erath,LA,egg,120,Yellow egg shape craft displays of technolegy +2001-01-01,35.198055600000004,-111.6505556,Flagstaff,AZ,unknown,21600,UFO Seen Manuevering in Impossible Ways with No Apparent Reason +2001-01-01,28.0391667,-81.95,Lakeland,FL,circle,120,Unknown circular object in the sky near a fireworks show in lakeland. +2001-01-01,38.6786111,-121.7722222,Woodland,CA,light,480,this is the third sighting of these golden lights we have seen. Just after midnight on New Years we stepped out side and we notice our +2001-01-01,38.5816667,-121.4933333,Sacramento,CA,circle,10,Big Bouncing Light +2001-01-01,47.6105556,-122.1994444,Bellevue,WA,circle,600,small white circles that fade in and out and remain motionless for minutes at a time +2001-01-01,33.1958333,-117.3786111,Oceanside,CA,light,120,First off, I apologize for the length of the "report" however, it took quite sometime for me to actually be interested enough to find o +2001-01-01,44.2219444,-69.5877778,North Whitefield,ME,light,109800,I have seen this craft for years and would like to know what it is please. +2001-01-01,34.0522222,-118.2427778,Los Angeles,CA,circle,1200,Several dark objects traverse the moon on the night it was historically closest to the earth. +2001-01-01,41.2083333,-73.8916667,Croton-On-Hudson,NY,fireball,2,A fireball shaped UFO changed colors and disapeared. +2001-01-01,38.6202778,-93.4091667,Green Ridge,MO,light,300,single light sighted +2001-01-01,35.9436111,-96.2133333,Kellyville,OK,changing,2700,object that changed from cylinder to triangle,no sound. +2001-01-01,38.6786111,-121.7722222,Woodland,CA,light,300,Another sighting, same golden lights in the Northwest sky. As I was typing up a report for last nights sighting my husband came in teh +2001-01-01,25.9869444,-80.2325,Miramar,FL,formation,240,5 bright burgund lights flying in formation over I-75 and Miramar, FL area. +2002-01-01,40.735,-73.6883333,New Hyde Park,NY,oval,300,Light over Long Island/NYC sky on New Years day. +2002-01-01,39.9522222,-75.1641667,Philadelphia,PA,triangle,300,solid black pyramid-like object seen in NE philadelphia sky. +2002-01-01,31.7586111,-106.4863889,El Paso (100 Miles Outside),TX,unknown,15,biazzare lights in the desert where there were no living things +2002-01-01,31.5847222,-95.8488889,Oakwood,TX,triangle,120,triangular ufo seen in oakwood texas +2002-01-01,36.175,-115.1363889,Las Vegas,NV,light,300,lights over mountains chased by f-16's +2002-01-01,35.6333333,-80.1161111,Denton,NC,triangle,7200,me and my girlfriend was thello I have a story of a ufo encounter that took place on jan 1 and the morning of jan 2 from 11 pm to 2 am +2003-01-01,34.1808333,-118.3080556,Burbank,CA,fireball,240,New Year's Eve Two Fireballs Move SLOW across sky in CA +2003-01-01,34.1808333,-118.3080556,Burbank,CA,formation,300,In formation/Abrupt formation change/Smaller objects shooting from larger ones/Up and out of sight. +2003-01-01,34.1808333,-118.3080556,Burbank,CA,triangle,300,6 orangish bright lights flew above us, then disappeared. . . +2003-01-01,38.2383333,-122.0391667,Suisun City (Fairfield),CA,circle,420,Orange ball, silent and fast acrossed sky, stoppped, was burning? Embers falling, turn silver and move at unreal speed, disappeared +2003-01-01,32.7447222,-116.9980556,Spring Valley,CA,light,600,Orange reddish bright light coming from the north , it drop something then came closer we could see light turning then it dissappear +2003-01-01,43.3138889,-89.5263889,Lodi,WI,cone,660,bliking lights hissing sounds hovering and then vanised +2003-01-01,26.2030556,-98.2297222,Mcallen,TX,disk,300,I was just getting off of the night shift on New Years night when I saw in the distances as though this large plane coming into the ci +2003-01-01,35.8938889,-80.5616667,Mocksville,NC,unknown,60,UFO and alien sighting +2003-01-01,41.1366667,-95.8905556,Bellevue,NE,disk,240,NEW YEARS DAY SURPRISE +2003-01-01,44.7527778,-68.6794444,Holden,ME,triangle,600,the vehicle ? was completely silent and very big. i assume the other one was in this one. it disappeared. +2003-01-01,35.1427778,-120.6402778,Pismo Beach,CA,circle,2700,1 orange circle zig zagging at a very fast pace across the night sky above the ocean changing direction often. ((NUFORC: Sirius??)) +2003-01-01,39.0169444,-94.2813889,Blue Springs,MO,light,6300,White, Red, and Green lights move in unbelievable formations in the sky. +2003-01-01,32.5838889,-117.1122222,Imperial Beach,CA,fireball,600,Odd Silver/gray objects shooting above mountain range, (multiple daily sightings) +2003-01-01,32.7252778,-114.6236111,Yuma,AZ,oval,3000,Large white sphere observed East of Yuma for about 50 minutes. Disapeared when military craft aproached. +2003-01-01,37.3394444,-121.8938889,San Jose,CA,sphere,15,Noon an a Saturday or Sunday in mid January - Orange/Silver Sphere +2003-01-01,29.7630556,-95.3630556,Houston,TX,unknown,600,Voice mail from something not of this world +2003-01-01,37.775,-122.4183333,San Francisco,CA,circle,300,Tiny object high in the blue afternoon sky, remaining motionless for 5 minutes +2003-01-01,35.4675,-97.5161111,Oklahoma City,OK,light,900,Very high and slightly north I saw a group of 3 white objects and one below them. At first I thought they were birds, but they seemed a +2003-01-01,40.5583333,-85.6591667,Marion,IN,triangle,20,we were not scared they didnt look harmful +2004-01-01,60.5544444,-151.2583333,Kenai,AK,light,900,At first they looked like bright stars, but stars don't move, right? +2004-01-01,32.7447222,-116.9980556,Spring Valley,CA,light,1800,Mysterious Red Blinking light of San Diego +2004-01-01,33.9172222,-118.0111111,La Mirada,CA,other,600,Bright, orange, planet sized object first observed near Jupiter, then moved slowly due north for ten minutes then vanished +2004-01-01,42.3583333,-71.0602778,Boston,MA,formation,240,Two amber lights just above the city skyline altered between visible and invisible shortly after NYE. One was higher than the other and +2004-01-01,34.185,-83.9252778,Flowery Branch,GA,disk,120,HBCCUFO CANADIAN REPORT: Disk shaped object. +2004-01-01,33.7488889,-84.3880556,Atlanta,GA,changing,1800,The black object changed from a rectangle to a cross and had an orange glow. +2004-01-01,46.1383333,-122.9369444,Longview,WA,flash,30,Entire sky lit up with two seperate flashes near Longview Washington. +2005-01-01,34.1722222,-118.3780556,North Hollywood,CA,formation,1260,I witnessed a UFO dogfight. ((NUFORC Note: Probably not a serious report. PD)) +2005-01-01,29.055,-82.0625,Belleview,FL,unknown,360,scary shit +2005-01-01,36.175,-115.1363889,Las Vegas,NV,oval,5,I had never seen such speed of an object up on the sky. +2005-01-01,33.8702778,-117.9244444,Fullerton,CA,light,600,New Year's Day around 1:30 a.m two redish/yellowish/orange lights appear in the sky, one after the other diasappears +2005-01-01,41.85,-87.65,Chicago,IL,changing,120,3 shape-changing objects, interacting with each other, seen flowing southward over downtown chicago +2005-01-01,37.9319444,-121.6947222,Brentwood,CA,rectangle,600,I went outside to turn off the hot tub and I saw an orange glowing light in the distance. The light seemed to be getting closer. As I l +2005-01-01,46.9738889,-124.155,Ocean Shores,WA,flash,14400,thier were ligth flashing ,moving in all diff. dications,they made diff pattten,they were there untill the sun came up.they were all in +2005-01-01,34.0005556,-81.035,Columbia,SC,changing,300,White objects at high altitude and high speeds during clear daytime conditions. +2005-01-01,27.9472222,-82.4586111,Tampa,FL,disk,60,Saucer-shaped object , about the size of two football fields traveling at high speed over air force base! +2005-01-01,40.6130556,-80.5630556,Chester,WV,circle,60,a ball of white bright light +2005-01-01,32.4608333,-84.9877778,Columbus,GA,light,300,Four individual lights moving rapidly across the night sky, at common interval, all in same direction +2005-01-01,33.4483333,-112.0733333,Phoenix,AZ,triangle,600,((POSSIBLE HOAX)) Three Huge Amber Orbs of light !!! +2006-01-01,37.775,-122.4183333,San Francisco,CA,light,900,I saw 4 groups of small glowing orange lights generally traveling North, one of which made a manuever impossible to any known aircraft. +2006-01-01,35.0844444,-106.6505556,Albuquerque,NM,changing,60,Vertical, white cigar shaped object, seperated into 3 white round spinning objects, disappeared and a gold metallic object appeard. +2006-01-01,34.2766667,-115.1694444,Milligan,CA,diamond,1800,Dozens of spacecraft strobing white lights with one red (appearing diamond shaped) headed to southwest. +2006-01-01,34.0836111,-114.8488889,Rice,CA,diamond,1800,25-50 aircrafts white and one red light(diamond shaped) strobing furiously headed in one direction +2007-01-01,39.1580556,-75.5247222,Dover,DE,sphere,15,((HOAX??)) Shpere like air craft sighted in DE, on new years. +2007-01-01,38.5472222,-122.8152778,Windsor,CA,other,600,An array of lights, formed in two parralel rows, moving across the sky into a cluster. +2007-01-01,38.5472222,-122.8152778,Windsor,CA,circle,300,Several yellow/red objects hovering in the sky, then they disappear. +2007-01-01,38.5472222,-122.8152778,Windsor,CA,light,600,Series of 17 unidentifiable lights cross the skies of Northern California. ((NUFORC Note: Witness is aviation specialist. PD)) +2007-01-01,34.0775,-117.6888889,Montclair,CA,fireball,420,walk outside, just before new years count down, great view of the sky.waiting, listening and watching for any fire works, common du +2007-01-01,38.5472222,-122.8152778,Windsor,CA,formation,780,Swarm of Amber spheres +2007-01-01,42.5277778,-92.4452778,Cedar Falls,IA,light,300,Strange light bobs up and down three times before circling around the east side of the city and disappearing. +2007-01-01,26.5625,-81.9497222,Cape Coral,FL,fireball,600,18 lights east to west in sky faster then airliners after fireworks ended on NEWYEARS EVE ---- SCARY +2007-01-01,41.955,-87.94,Bensenville,IL,formation,120,i was sitting outside at my grandmas house, when i looked up to see the moon, after about 15 seconds, i saw 3 lights flying in perfectl +2007-01-01,40.0322222,-74.9577778,Riverside,NJ,light,120,bright object that stopped in mid air and backed up. 500 Lights On Object0: Yes +2007-01-01,40.2430556,-79.2377778,Ligonier,PA,light,1500,New Year's Morning siting of spinning lights hovering over Ligonier, PA +2007-01-01,25.7738889,-80.1938889,Miami,FL,oval,1500,Object moved fast back and forth but aslo stayed still at times sometimes changingt colors. +2007-01-01,40.7141667,-74.0063889,New York City (Time Square),NY,disk,900,Disked shaped objects...3... over Time Square, New York. Reported by Fox News. Objects were approx. 30 feet in dia., transillumated in +2007-01-01,34.1477778,-118.1436111,Pasadena,CA,other,5,UFO spotted on spanish tv recording of Rose Parade. +2007-01-01,38.935,-74.9063889,Cape May,NJ,disk,7200,WHAT I SAW WAS IN A FORM OF CLOUDS.THEY WERE SAUCER SHAPED SOME WERE BIGGER THAN OTHERS,I HAVE PICS ON MY CAMERA PHONE YOU HAVE 2 SEE T +2007-01-01,40.6788889,-73.4175,Amityville,NY,changing,900,Craft that changed shape, then shot into the water. +2007-01-01,32.7152778,-117.1563889,San Diego,CA,oval,18,It went slowly then sped up at a 90 degree angle. +2007-01-01,41.575,-87.2388889,Lake Station,IN,light,300,light shot toward woods army helicoptor quit persuit +2007-01-01,27.7705556,-82.6794444,St. Petersburg,FL,disk,120,noted a disc shaped object 40-50 ft in diameter flying towards macdill AFB at liw and at very high speeds. +2007-01-01,25.9083333,-80.3088889,Miami Lakes,FL,changing,1200,strange objects on new year's day, 2007 in Miami Lakes, Fl on a perfectly clear and sunny day +2007-01-01,28.7088889,-100.4991667,Eagle Pass,TX,circle,900,Dark circular object seen over a deserted ranch outside of Eagle Pass, Tx. later we see a smaller object as well. +2007-01-01,41.85,-87.65,Chicago,IL,light,3600,Ball of changing light colors +2007-01-01,33.2669444,-93.2391667,Magnolia,AR,unknown,300,Unidentified aircraft playing tag in the night sky over Magnolia Arkansas +2007-01-01,44.9430556,-123.0338889,Salem,OR,unknown,20,Lights moving from south to north, low to ground and slow without any sound. +2007-01-01,41.6252778,-87.7175,Midlothian,IL,other,20,V-shaped with two glowing orange lights tarveling southeast +2007-01-01,38.4213889,-78.1938889,Brightwood,VA,circle,40,object streeked across sky, made a left then climbed out of sight. +2007-01-01,34.4838889,-114.3216667,Lake Havasu City,AZ,sphere,360,Ground lights up and brings to our attention a huge glowing orange sphere over city. +2007-01-01,33.5205556,-86.8025,Birmingham,AL,disk,180,ufo seen over 3-day period +2008-01-01,34.1808333,-118.3080556,Burbank,CA,circle,300,Five orange lights appear over San Fernando Valley, CA. ((NUFORC Note: Possible party lanterns?? PD)) +2008-01-01,34.1808333,-118.3080556,Burbank,CA,light,300,Orange-Red lights seen over Burbank, CA on New Years. ((NUFORC Note: Possible party lanterns?? PD)) +2008-01-01,32.7947222,-116.9616667,El Cajon,CA,triangle,300,orange light flying through sky during new years. ((NUFORC Note: Possible party lanterns?? PD)) +2008-01-01,36.175,-115.1363889,Las Vegas,NV,disk,120,Three glowing discs above Las Vegas New years. +2008-01-01,37.5483333,-121.9875,Fremont,CA,formation,240,Formation of circular lights traveling across the sky. +2008-01-01,38.005,-121.8047222,Antioch,CA,light,480,Five lit objects high in the sky... New Years Eve in Antioch, California...1/1/08 at 12:05 AM +2008-01-01,60.8969444,-162.4594444,Nunapitchuk,AK,fireball,180,Red fireball looking object passing a village in Alaska. +2008-01-01,34.1808333,-118.3080556,Burbank,CA,light,120,3 unusual red lights in sky +2008-01-01,40.7966667,-81.5216667,Massillon,OH,light,300,My wife and I both saw a strange orange glowing ballon like object that seemed to float silently above the trees +2008-01-01,32.7152778,-117.1563889,San Diego,CA,light,600,9 bright balls of amber light, shifting formation, initially making two groups of triangles and then a linear string +2008-01-01,35.2044444,-89.8738889,Bartlett,TN,oval,45,Red lights , and Firey underneath. +2008-01-01,32.7152778,-117.1563889,San Diego,CA,light,600,My wife and I saw this at 12:30 am we had just arrived back in Pacific Beach from a party in La Jolla and saw 7 yellow / orange lights; +2008-01-01,32.7152778,-117.1563889,San Diego,CA,light,600,Lights over San Diego around 0:30 New Year day. (NUFORC Note: Possible party lanterns, but that is a guess. PD)) +2008-01-01,32.8472222,-117.2733333,La Jolla,CA,light,300,Red lights over San Diego. ((NUFORC Note: Possible party lanterns. Many other reports. PD)) +2008-01-01,38.7072222,-121.28,Citrus Heights,CA,formation,600,Four gold glowing globes of light in formation, then breaking formation. +2008-01-01,31.2133333,-82.3541667,Waycross,GA,disk,240,2 disk like objects above treeline, extremely bright, turned and shot straight up and out of sight +2008-01-01,29.6513889,-82.325,Gainesville,FL,changing,300,Black, seemed reflective, flowing object +2008-01-01,34.8297222,-82.6016667,Easley,SC,light,120,Bright white light moving in cloudless pre-dawn sky suddenly disappears +2008-01-01,30.3319444,-81.6558333,Jacksonville,FL,fireball,600,i'm 26 and havn't graduated college yet or don't really care too since all that stuff started happening. i went to a prestigious ar +2008-01-01,34.4208333,-119.6972222,Santa Barbara,CA,other,480,Bright light in broad daylight changing intermittently to black object moves slowly across sky in Sant Barbara. +2008-01-01,32.7152778,-117.1563889,San Diego,CA,light,420,Orange brightly glowing balls of light +2008-01-01,29.6513889,-82.325,Gainesville,FL,unknown,60,Basically same thing as what was seen in Winter Park, but on New Years day in Gainesville, Fl. Came from NW and went S near N Main St. +2008-01-01,47.6063889,-122.3308333,Seattle,WA,changing,75,Bright flying object over the puget sound +2008-01-01,28.2713889,-82.7197222,Port Richey,FL,cigar,2,West Coast Florida +2008-01-01,29.6513889,-82.325,Gainesville,FL,changing,300,((HOAX??)) Black triangular form-shifting mass spotted. +2008-01-01,34.8527778,-80.9113889,Catawba,SC,light,2,I left home about 7pm to take my sons girlfriend home. About a fourth of a mile at a stop sign , I saw a red light in the sky to the le +2008-01-01,31.5491667,-97.1463889,Waco,TX,fireball,5,Strange ball of white light travelling over Waco +2008-01-01,33.7591667,-96.6691667,Pottsboro,TX,light,5,Brilliant illumination at night 1-1-08 North Texas around 8:30pm +2008-01-01,30.3027778,-90.9719444,Prairieville,LA,changing,60,Strange object changes shap over my house in Louisiana. +2008-01-01,40.4841667,-88.9936111,Bloomington,IL,unknown,15,Bright Vertical Light Beams (no visible craft) +2009-01-01,34.5794444,-118.1155556,Palmdale,CA,circle,240,TRAVELING HOME FROM CLEANING SALON,HAD FEELING SOMETHING ODD AROUND ME,LOOKING UP SAW 3 LIGHTS MOVING IN A HOVERING TYPE POSITION,I +2009-01-01,28.5152778,-82.5730556,Weeki Wachee,FL,diamond,300,Diamond Shape craft with orange lights on all four corners ,estimated altitude is about 3000 -5000 ft.Had great view of underside of cr +2009-01-01,32.7447222,-116.9980556,Spring Valley,CA,light,900,A bright red light in the sky NW of Spring Valley, CA was observed for approximately 20 minutes at midnight 01/01/09. +2009-01-01,34.2011111,-118.5972222,Canoga Park,CA,sphere,300,RED SPHERE travels in West San Fernando Valley sky New Year's Eve 2008/2009 +2009-01-01,32.3511111,-95.3008333,Tyler,TX,sphere,300,Four yellow-gold orbs flying from southeast to northwest viewed from Tyler, Texas just after midnight on 1/1/09. +2009-01-01,28.5380556,-81.3794444,Orlando,FL,diamond,30,At 11:12 I pulled into my driveway and was exiting my vehicle when me and my girlfriend noticed a dim rust colored light flying above m +2009-01-01,32.7947222,-116.9616667,El Cajon,CA,changing,600,red light +2009-01-01,30.2383333,-90.92,Gonzales,LA,unknown,60,Three seperate groups of bright red objects moving in a westerly direction +2009-01-01,32.7152778,-117.1563889,San Diego,CA,circle,900,Single red object stationary in sky in San Diego on New Year's Eve 2008. +2009-01-01,32.7152778,-117.1563889,San Diego,CA,light,300,In recent years past, I have noticed on two seperate new years eves a very strange and very bright red light. I told my wife after wat +2009-01-01,27.4986111,-82.575,Bradenton,FL,fireball,60,4 Orange/red balls of light flying through the sky +2009-01-01,60.7922222,-161.7558333,Bethel,AK,other,900,Possible Bethel UFO sighting +2009-01-01,39.1619444,-84.4569444,Cincinnati,OH,unknown,180,Red lighted object moving over Cincinnati +2009-01-01,35.7077778,-79.8138889,Asheboro,NC,cigar,240,Silver Cigar Shaped object at high altitude moving West. +2009-01-01,35.1494444,-90.0488889,Memphis,TN,cigar,1800,Traveling red lights that had the ability to rapidly change flight direction were seen on Jackson Ave in Memphis TN +2009-01-01,41.6213889,-72.7461111,Berlin,CT,fireball,3600,This is the 2nd night the object or craft has been seen. It is a few miles away houvering in the sky. ((NUFORC Note: Venus?? PD)) +2009-01-01,37.9780556,-122.03,Concord,CA,unknown,7200,Regular, almost nightly sightings of bright star-like objects and one large slow flying object with red light +2009-01-01,40.8291667,-85.3355556,Markle,IN,circle,120,Silver circle thing over a grave yard It pulsed 3 to 4 times and it was gone. +2009-01-01,39.0955556,-121.5511111,Olivehurst,CA,oval,300,Red and white lights curving around a large hovering black mass, which speed off very fast. +2009-01-01,34.3738889,-80.0736111,Hartsville,SC,light,30,Meteorite object appears after what I thought an aircraft dissappeared. +2009-01-01,33.9533333,-117.3952778,Riverside,CA,light,120,LARGE YELLOW BALL THAT HOVERED IN THE SKY, IT DID NOT BLINK OR CHANGE SHAPE IN ANYWAY. IT SIMPLY GLOWED, I RAN INSIDE TO GET MY BROTHE +2009-01-01,37.3433333,-85.3419444,Campbellsville,KY,light,3600,((HOAX)) I was taking my nightly walk, and saw several crafts. +2009-01-01,35.9555556,-80.0055556,High Point,NC,circle,780,Round Shaped object had triangle pattern lights under carriage, the top had a series of lights in circle. Object stood sitll in air. +2010-01-01,34.5644444,-92.5866667,Benton,AR,circle,300,4 bright green circles high in the sky going in circles then one bright green light at my front door. +2010-01-01,32.6577778,-117.0291667,Bonita,CA,light,780,Three bright red lights witnessed floating stationary over San Diego New Years Day 2010 +2010-01-01,32.7947222,-116.9616667,El Cajon,CA,triangle,360,On New Years Eve I went outside to hear the celebration and fireworks in my neighbor hood. And noticed 3 red lights above my house and +2010-01-01,32.7947222,-116.9616667,El Cajon,CA,triangle,720,3 Red objects hovering over El Cajon CA +2010-01-01,36.7477778,-119.7713889,Fresno,CA,light,60,Fresno cal. bright light hovers over head then vanished +2010-01-01,42.4391667,-123.3272222,Grants Pass,OR,triangle,120,Triangle shaped craft with three red lights at points hovering over Grants Pass, Oregon. +2010-01-01,32.7677778,-117.0222222,La Mesa,CA,light,600,Three red lights over southern California that made a triangle shape +2010-01-01,32.7425,-117.0305556,Lemon Grove,CA,light,900,3 Red lights in line pattern above El Cajon/ East County. +2010-01-01,33.0580556,-112.0469444,Maricopa,AZ,unknown,180,One huge UFO or three seperate ones +2010-01-01,37.0938889,-86.0463889,Park City,KY,light,3,Lights orbiting the moon +2010-01-01,38.6272222,-90.1977778,St. Louis,MO,fireball,60,7 floating orbs or fireballs moving from southwest to northeast direction. +2010-01-01,32.7947222,-116.9616667,El Cajon,CA,formation,900,Three red lights over the San Diego area - IT'S A HOAX YET AGAIN!! +2010-01-01,32.7447222,-116.9980556,Spring Valley,CA,light,600,Three bright red lights in a straight line formation +2010-01-01,61.7472222,-150.0375,Willow,AK,formation,420,four orange red objects suddenly appear 12:01 am new years move north then south and dissapear +2010-01-01,38.005,-121.8047222,Antioch,CA,other,1800,Objects in sky over Antioch California 12:03AM January 1, 2010 +2010-01-01,32.7947222,-116.9616667,El Cajon,CA,light,600,3 red lights in sky new years 2010 +2010-01-01,26.1416667,-81.795,Naples,FL,sphere,120,i'm in naples park. last night, my husband and I were sitting outside --neighbors lighting off fireworks, etc. We're under a lanai and +2010-01-01,32.7677778,-117.0222222,La Mesa,CA,triangle,360,3 bright red lights hovering high in the sky in an elongated triangle pattern just after midnight 2010 in La Mesa, Ca +2010-01-01,61.2180556,-149.9002778,Anchorage,AK,light,60,Upper atmosphere object moving south, becoming stationary and later moving east at a high rate of speed. +2010-01-01,32.6780556,-117.0983333,National City,CA,formation,1500,3 red lights over the mountains in Eastern San Diego +2010-01-01,26.3583333,-80.0833333,Boca Raton,FL,fireball,240,Slow moving fireball northbound at hight altitude Southern Florida +2010-01-01,38.9330556,-104.6080556,Falcon,CO,disk,480,We experienced red disk over the falcon, colorado sky within the first minutes of the new year. +2010-01-01,30.7619444,-86.5705556,Crestview,FL,unknown,120,Orange/Yellow flickering light in the sky with no sound and abrupt changes in direction, below 12ꯠ feet. +2010-01-01,39.1911111,-106.8169444,Aspen,CO,chevron,120,New Years Eve Anomoly In Aspen Colorado +2010-01-01,42.5311111,-88.5994444,Walworth,WI,sphere,420,Large red/orange orb traveling southeast between Milwaukee and Chicago. +2010-01-01,32.7152778,-117.1563889,San Diego,CA,sphere,1200,Orange spheres in sky New Year's Eve, San Diego, CA +2010-01-01,61.7472222,-150.0375,Willow,AK,sphere,660,4 redishorange shpereiodical objects appear during 2010 fireworks show hover around then disappear 500 Lights On Object0: Yes +2010-01-01,32.7152778,-117.1563889,San Diego,CA,triangle,180,It happen nEw years eve 2010 +2010-01-01,42.7761111,-71.0777778,Haverhill,MA,triangle,30,Haverhill Massachusetts triangle object sighting +2010-01-01,34.1477778,-118.1436111,Pasadena,CA,triangle,60,Walking on Cordova westbound just before the Hilton. Sun was setting so looked up to see if we could see any satellite reflection. Sa +2010-01-01,35.0844444,-106.6505556,Albuquerque,NM,light,60,My wife and I were outside in the Jacuzzi when she first saw a light. It glowed and traveled from north to south. It lit up again whe +2010-01-01,30.5180556,-82.9483333,Jasper,FL,sphere,60,Bright light sets in the eastren sky. +2010-01-01,35.3733333,-119.0177778,Bakersfield,CA,light,60,Two Crafts dancing in the sky! +2011-01-01,39.2805556,-80.3447222,Clarksburg,WV,oval,300,three orange glowing balls. +2011-01-01,42.4852778,-83.3772222,Farmington Hills,MI,circle,900,Series of red lights moving in a wave-like line. +2011-01-01,39.4577778,-76.3555556,Joppatowne,MD,fireball,90,Silent Red Light of New Years +2011-01-01,44.9583333,-124.0166667,Lincoln City,OR,light,10,irratic star movement +2011-01-01,27.8394444,-82.7913889,Seminole,FL,light,1200,UFO's over Florida on New Year's Eve 2011 +2011-01-01,38.6580556,-77.25,Woodbridge,VA,light,360,A group of six watches and videotapes seven UFOs flying over Northern Virginia minutes after the start of the New Year. +2011-01-01,34.0555556,-117.1816667,Redlands,CA,sphere,900,Possible balloons with ignition sources launched over Mentone for New Year's celebration. +2011-01-01,39.9547222,-82.8122222,Reynoldsburg,OH,circle,10,flame colored circle cruised slowly, turns, and vanishes at astonishing speed +2011-01-01,40.7608333,-111.8902778,Salt Lake City,UT,fireball,300,Just wanted to report UFO (Unidentified Flying Object) sighting over SLC with a extremley bright orange aura. I know the sound of chopp +2011-01-01,38.7511111,-105.5208333,Guffey,CO,fireball,300,Large & small fireballs ring in the New Year 2011 in CO +2011-01-01,27.4986111,-82.575,Bradenton,FL,triangle,60.3,red-amber colored lights in the shape of a triangle, one light in middle moving at a low altitude at a slow rate of speed. +2011-01-01,41.7108333,-87.7580556,Oak Lawn,IL,fireball,20,Square Shaped with fire in middle and birds/fish found dead +2011-01-01,29.7855556,-95.8241667,Katy,TX,sphere,30,3 orange lights in a triangular form followed by one more +2011-01-01,41.4225,-87.9858333,Manhattan,IL,fireball,600,5 fireball like objects were seen moving east bound. +2011-01-01,28.5380556,-81.3794444,Orlando,FL,circle,900,UFOs in a V formation over Orlando, Fl. +2011-01-01,45.3283333,-121.9597222,Welches,OR,sphere,900,8-9 extremely bright orange ball shaped objects traveling rapidly and silently in a straight line across night sky +2011-01-01,27.8394444,-82.7913889,Seminole,FL,formation,480,Glowing, red lights flying in formation. +2011-01-01,25.7738889,-80.1938889,Miami,FL,unknown,45,red lights over miami florida +2011-01-01,40.7608333,-111.8902778,Salt Lake City,UT,formation,180,Unusual formation outside of Salt Lake INT airspace and flight patterns. +2011-01-01,28.5491667,-81.7730556,Clermont,FL,circle,60,A round object near known satellites, that is manmade or other +2011-01-01,25.7738889,-80.1938889,Miami,FL,other,600,red lights orbing over miami ,fl night sky new years morning 1;00 am +2011-01-01,36.5244444,-91.5380556,Thayer,MO,light,300,Low flying, separated large red lights, slowly moving south, dropping white beams of light. +2011-01-01,29.5072222,-95.0947222,League City,TX,light,1800,bright light hovering in south east sky just south of houston tx +2011-01-01,33.5538889,-117.2130556,Murrieta,CA,triangle,60,bright white lights, triangle ufo flying towards the coast over murrieta, california +2011-01-01,28.5380556,-81.3794444,Orlando,FL,rectangle,120,Huge dark silver rectangle UFO no noise, disappeared after 1-2 minutes +2011-01-01,32.7252778,-114.6236111,Yuma,AZ,oval,2700,oval stationary object over Yuma Proving Grounds on New Years Day 2011. +2011-01-01,35.614444399999996,-88.8138889,Jackson,TN,cylinder,10,Cylinder Shaped UFO over Jackson TN +2011-01-01,37.6922222,-97.3372222,Wichita,KS,cylinder,180,Cylinder shaped object sighted above Wichita, KS +2011-01-01,41.6916667,-97.4841667,Humphrey,NE,other,3600,Multi-colored flashing lights on an object that hovered for over an hour in the N.E. Nebraska area. ((NUFORC Note: Sirius? PD)) +2011-01-01,29.5291667,-95.2008333,Friendswood,TX,sphere,180,Large yellowish orange orb traveling south with no flashing lights or sound. +2011-01-01,27.3361111,-82.5308333,Sarasota,FL,unknown,10,very weird +2011-01-01,40.31,-75.1302778,Doylestown,PA,fireball,600,Witnessed approximately 70 flaming balls travel across the eastern sky in a semi circular trajectory. +2011-01-01,40.31,-75.1302778,Doylestown,PA,light,1800,ufo sightingin doylestown pennsylvania +2011-01-02,30.2669444,-97.7427778,Austin,TX,fireball,60,sighting in out backyard +2012-01-01,40.7325,-73.4458333,Farmingdale,NY,circle,300,Approx. 9 orb crafts flying in groups go 3 in v formation over farmingdale ny airspace at midnight on near years day +2012-01-01,38.4588889,-90.5363889,High Ridge,MO,other,120,Reddish orange silent orb on new years eve 2012 Missouri +2012-01-01,33.4483333,-112.0733333,Phoenix,AZ,oval,180,Red orb. +2012-01-01,39.3736111,-76.9680556,Sykesville,MD,circle,3600,Weird orange/red balloon lights on New Year's Eve in Syskesville +2012-01-01,61.2180556,-149.9002778,Anchorage,AK,light,90,New Years morning 2012. 5 lights by southern mountains outside Anchorage, AK +2012-01-01,47.6063889,-122.3308333,Seattle (Northgate),WA,oval,210,Big amber oval seen traveling north over Peugot Sound just after midnight? +2012-01-01,48.0686111,-122.2905556,Tulalip,WA,oval,30,Craft appeared to be an oval light, red and yellow, silently drifting over Port Susan, Wa. +2012-01-01,33.9525,-84.55,Marietta,GA,light,600,Three orange lights in sky on New Year's Eve in Marietta, GA +2012-01-01,30.5080556,-97.6786111,Round Rock,TX,circle,180,7 bright, reddish-orange orbs seen flying in a row +2012-01-01,26.3394444,-81.7788889,Bonita Springs,FL,fireball,180,Orange ball of light moving horizontally through the sky towards the Gulf of Mexico. +2012-01-01,32.7677778,-117.0222222,La Mesa,CA,fireball,60,Mr. Davenport, On Jan. 1, 2012, as I went outside to listen to the gunfire and people celebrating (1205am), I saw 4 orange, almost red +2012-01-01,32.7677778,-117.0222222,La Mesa,CA,oval,90,4 round orbs, hovered for about 90 seconds,came from behind a tree in front yard, they were orange/red, then faded out. +2012-01-01,35.3733333,-119.0177778,Bakersfield,CA,sphere,240,2 orange fireball's over Bakersfield,CA +2012-01-01,43.8013889,-91.2394444,La Crosse,WI,circle,600,8 bright orange orbs flying horizontally southbound across east sky in seen from La Crosse, Wisconsin 1/1 12 +2012-01-01,34.5861111,-94.2394444,Mena,AR,circle,120,1/1/12 at 12:01 a.m. It was round with a black center and a red circle around it Mena Arkansas +2012-01-01,26.9758333,-82.0908333,Port Charlotte,FL,changing,900,Port Charlotte Florida large procession of lights in various colors moves slowly in a loose, linear formation. +2012-01-01,48.0152778,-122.0625,Lake Stevens,WA,light,300,Red light flew up quickly,hovered,moved slowly north, then west +2012-01-01,30.2944444,-81.3933333,Jacksonville Beach,FL,light,240,Saw a red light pass over us +2012-01-01,41.85,-87.65,Chicago,IL,circle,180,Red Flying object over lake shore Dr, Chicago, IL +2012-01-01,40.4483333,-122.2966667,Anderson,CA,disk,2700,11 pulsing lights were seen by 7 witnesses, the lights would go out to become discs. +2012-01-01,44.4758333,-73.2125,Burlington,VT,light,120,2 bright orange balls of light in sraight perpendicular formation moving away at great speed. +2012-01-01,35.2619444,-81.1875,Gastonia,NC,triangle,360,Very very strange anomoly of many flying objects, very close together, large in numbers, and dissappearing into nowhere. +2012-01-01,41.0602778,-111.9702778,Layton,UT,unknown,1200,15+ Lights seen on the Wasatch mountain range +2012-01-01,39.2688889,-84.2638889,Loveland,OH,light,900,Line of red/orange lights travel northeast, making no sound. +2012-01-01,40.5622222,-111.9288889,South Jordan,UT,triangle,480,Triangular shaped object with orange glow moving very slowly. +2012-01-01,39.3736111,-76.9680556,Sykesville,MD,circle,300,Three glowing red lights moving slowly over Sykesville, MD. +2012-01-01,42.3875,-71.1,Somerville,MA,oval,300,Saw 6-Orange and yellow in color oval objects in the sky for 4-5 min. +2012-01-01,25.7738889,-80.1938889,Miami,FL,flash,60,Red flashing flotilla in rectagular formation seen in Western sky of Miami, FL at 12:25am on January 1st, 2012. +2012-01-01,40.7141667,-74.0063889,New York City (Brooklyn),NY,fireball,45,Bright orange ball over Brooklyn +2012-01-01,39.0066667,-76.7794444,Bowie,MD,light,300,Orange/pinkish lights seen by 6 people seen in Bowie, MD +2012-01-01,38.2541667,-85.7594444,Louisville,KY,fireball,1200,Red/Orange fireballs over Louisville, KY, USA on New Year's 2012 +2012-01-01,40.7141667,-74.0063889,New York City (Brooklyn),NY,fireball,120,This was something I have seen before...... Often talk bout it to the fam they say I'm +2012-01-01,27.9472222,-82.4586111,Tampa,FL,fireball,180,Amber ball with tail +2012-01-01,45.7761111,-111.1761111,Belgrade,MT,circle,180,We saw a strange looking orange light in the sky. It was moving slowly in the sky then stopped. The light then remained still for app +2012-01-01,35.8808333,-84.5086111,Kingston,TN,light,1800,16 Amber Lights Flying in a Straight Line Over Tennessee. +2012-01-01,30.2394444,-81.3858333,Ponte Vedra Beach,FL,light,300,Orange lights traveling in sequence/formation as never seen before. +2012-01-01,30.2272222,-81.3802778,Ponte Vedra,FL,unknown,300,18 lights in a row moving slow then upward fast +2012-01-01,28.4055556,-80.605,Cape Canaveral,FL,sphere,120,Two glowing red spheres seen at low altitude +2012-01-01,36.0397222,-114.9811111,Henderson,NV,triangle,4,I went out back to smoke a cigarette an noticed three lights the size of stars moving in sync from right above me traveling from south +2012-01-01,46.4477778,-120.4191667,Wapato,WA,other,60,Formation changed from straight line to rhombus solid orange light ,orbs were individual in nature +2012-01-01,39.6066667,-75.8336111,Elkton,MD,diamond,240,((HOAX??)) Abduction. +2012-01-01,40.7608333,-111.8902778,Salt Lake City,UT,circle,300,Red-ish orange "orb" thrree even spaced and asended to unknow altitudes +2012-01-01,39.1405556,-121.6158333,Yuba City,CA,light,600,Reddish orange lights on New Year's morning +2012-01-01,37.4136111,-79.1425,Lynchburg,VA,light,420,About 10 minutes into the New Year a slow moving orange ball of light was observed with no sound nor was there any flashing lights +2012-01-01,40.4405556,-79.9961111,Pittsburgh,PA,unknown,300,Five high-flying objects in a row with bright red lights over Pittsburgh. +2012-01-01,40.7933333,-77.8602778,State College,PA,circle,60,3 orange circles in sky over central pa +2012-01-01,37.6547222,-122.4066667,South San Francisco,CA,light,30,A circular light in the sky moved horizontally then vanished +2012-01-01,32.2686111,-107.7580556,Deming,NM,unknown,1084,Black, hovering object over the mountains of New Mexico +2012-01-01,33.8491667,-118.3875,Redondo Beach,CA,light,60,Light shots across sky before taking off at a extraordinary speeds out to space. +2012-01-01,28.3858333,-80.7422222,Cocoa,FL,light,30,Red glowing lights in the Cocoa Sky +2012-01-01,38.5816667,-121.4933333,West Sacramento,CA,cylinder,120,Unknown craft heading Southeast from the Northwest at approx 5 thousand feet..reflecting lite only..no apparent onboard lighting +2012-01-01,61.2180556,-149.9002778,Anchorage,AK,sphere,300,Five glowing lights traveling at slow speeds without engine noise. +2012-01-01,46.0647222,-118.3419444,Walla Walla,WA,sphere,900,Three UFOs spotted over Walla Walla WA. on new years day by five witnesses. +2012-01-01,40.8758333,-81.4025,North Canton,OH,fireball,900,4 flame/ fireball shaped lights slowly passed over us while driving. Pulled over to get a good idea of how fast they were moving and to +2012-01-01,38.1141667,-82.6033333,Louisa,KY,light,300,2 lghts hovering over house +2012-01-01,40.7683333,-73.5255556,Hicksville,NY,cylinder,25,Fast flying UFO with no wings and two halo lights spotted on long island. +2012-01-01,40.7683333,-73.5255556,Hicksville,NY,light,30,Two bright lights moving smoothly with fast speed and no sound curving out of sight. +2012-01-01,32.655,-79.9405556,Folly Beach,SC,cylinder,10,Orange light with red outline moving north +2012-01-01,47.2358333,-122.5491667,University Place,WA,sphere,120,Brilliant flickering orange sphere flies over, then hovers and then shoots straight up punching hole through clouds. +2012-01-01,29.7630556,-95.3630556,Houston,TX,circle,60,2 dark stealthy orbs silently cruised above Houston while rotating around each other +2012-01-02,30.7908333,-89.8486111,Bogalusa,LA,unknown,900,Observed a flying light with on sound +2013-01-01,48.7597222,-122.4869444,Bellingham,WA,disk,300,Five Glowing Orbs in the sky +2013-01-01,28.2438889,-82.7194444,New Port Richey,FL,sphere,1200,Orange/reddish perfect sphere/glowing. +2013-01-01,37.5536111,-77.4605556,Richmond,VA,triangle,300,Orange lights over Richmond va/ d..c. +2013-01-01,35.2333333,-106.6638889,Rio Rancho,NM,other,300,5 glowing lights following eachother and disappear +2013-01-01,45.5236111,-122.675,Portland,OR,other,180,I observed the following by eye & through binoculars.Whilst watching the New Years Fireworks from my 2nd story which affords me a g +2013-01-01,30.4111111,-88.8277778,Ocean Springs,MS,fireball,120,Three craft spotted that are glowing and are an amberish color. +2013-01-01,37.6391667,-120.9958333,Modesto,CA,changing,180,3 red lights in triangle shape change shape and fade away +2013-01-01,37.8716667,-122.2716667,Berkeley,CA,fireball,600,Orange orbs over the Bay Area, CA on New Years and 3 made a triangle. +2013-01-01,26.4377778,-81.8069444,Estero,FL,teardrop,180,Red, teardrop shaped object sighted minutes after midnight in Estero, FL. +2013-01-01,37.3394444,-121.8938889,San Jose,CA,circle,30,Two objects that appeared star-like, but were moving quite slowly in a northerly path and had blinking red-orange lights +2013-01-01,39.3736111,-76.9680556,Sykesville,MD,formation,900,3 Orange colored objects in formation over Sykesville, Maryland New Year's Eve 2012 +2013-01-01,45.7833333,-108.5,Billings,MT,light,300,Two orange lights in sky. +2013-01-01,40.1005556,-74.8522222,Bristol,PA,oval,420,Multiple clusters of strange orbs traveling at a medium speed over Bristol midnight New Years Eve. +2013-01-01,31.8455556,-102.3672222,Odessa,TX,triangle,20,Odessa tx flying object new years. +2013-01-01,26.9338889,-80.0944444,Jupiter,FL,circle,600,Orange round lights. +2013-01-01,43.0388889,-87.9063889,Milwaukee,WI,cone,120,Orange ball of light in sky over Milwaukee. +2013-01-01,40.6861111,-75.4972222,Northampton,PA,unknown,240,3 Orange/red balls seen by police officer. +2013-01-01,37.9577778,-121.2897222,Stockton,CA,fireball,720,10 total craft spotted all orange fireball and all completely silent +2013-01-01,28.2713889,-82.7197222,Port Richey,FL,sphere,90,Two orange spheres moving in the cloudy night sky, for 90 seconds then they disappeared. +2013-01-01,35.6225,-117.67,Ridgecrest,CA,light,300,We saw a pair of stationary, red-orange lights when we started home, one vanished, the other created a new object shortly after. +2013-01-01,43.3766667,-72.3472222,Claremont,NH,circle,300,3 silent, lightless, orange ball-shaped objects very slowly hovering appx. 30 feet above us. +2013-01-01,34.8833333,-82.7075,Pickens,SC,fireball,20,My wife and I were on the porch, admiring the fireworks miles away, when this fireball came across the sky. She noticed it first and po +2013-01-01,27.8425,-82.6997222,Pinellas Park,FL,fireball,180,Looked like a Delta Rocket, but changed direction and originated from a point too far south to be NASA. +2013-01-01,32.6394444,-96.5380556,Seagoville (Dallas),TX,circle,180,Bright, red ball with no noise and changed directions then shot off and disappeared +2013-01-01,39.9625,-76.7280556,York,PA,other,300,Six orange lights flew in formation across the sky. +2013-01-01,32.7252778,-97.3205556,Fort Worth,TX,light,120,Glowing orange/red object, seemingly traveling at a slower speed, definitely NOT a plane. +2013-01-01,25.7738889,-80.1938889,Miami,FL,light,900,Red lights in Miami (zip 33182 ). +2013-01-01,33.7222222,-116.3736111,Palm Desert,CA,sphere,60,Red orb/ ufo palm desert, ca +2013-01-01,36.7280556,-108.2180556,Farmington,NM,egg,300,Red egg shaped no sound quiet. Hooverd then shot off. +2013-01-01,29.2855556,-81.0561111,Ormond Beach,FL,fireball,120,Fireball object in Ormond beach +2013-01-01,33.7669444,-118.1883333,Long Beach,CA,formation,180,Multiple red/orange orbs forming triangle and hovered slowly. +2013-01-01,27.9375,-82.2861111,Brandon,FL,fireball,300,Two red-orange fireballs flying silently over Tampa +2013-01-01,41.85,-87.65,Chicago,IL,cone,1200,Bright cone shaped object in the sky +2013-01-01,64.0377778,-145.7322222,Delta Junction,AK,triangle,120,2 UFO's bright orange lights in Delta Junction, Alaska +2013-01-01,20.8911111,-156.5047222,Wailuku,HI,sphere,900,Red orbs sighted. +2013-01-01,38.4088889,-121.3705556,Elk Grove,CA,sphere,300,3 Orbs Appear Amongst Fireworks +2013-01-01,37.1041667,-113.5833333,St. George,UT,cylinder,900,2 very bright orange round objects seen high above moving slow, no sound, then disappeared. +2013-01-01,36.2077778,-119.3463889,Tulare,CA,formation,5,Formation that change direction and disappeared. ((NUFORC Note: Report from law enforcement officer. PD)) +2013-01-01,46.1383333,-122.9369444,Longview,WA,unknown,600,Witnessed 5 red lights in the sky that, a minute later, became one, then disappeared. +2013-01-01,40.6111111,-111.8991667,Midvale,UT,fireball,480,Fiery yellow-orange ball in clear sky, hanging at 8:00 to Jupiter; it floated and drifted , then flamed out, but sphere remained +2013-01-01,47.6063889,-122.3308333,Seattle (Ballard Neighborhood),WA,light,120,2 red lights rising into sky and blinking out +2013-01-01,30.2944444,-81.3933333,Jacksonville Beach,FL,disk,900,Aircraft with multiple flashing lights hovering over the ocean with a beam shining on the water. +2013-01-01,43.0677778,-72.4591667,Westminster,VT,oval,5,There was a golden orb that slowly moved across the sky and disappeared before I got outside. +2013-01-01,26.6155556,-80.0572222,Lake Worth,FL,fireball,90,Red Fireball sited in the sky, witnessed by 8 on New Years Day +2013-01-01,38.5816667,-121.4933333,Sacramento,CA,light,1200,On the right side of the moon,two red objects(lights) appeared. They climbed in altitude then faded away into the night sky. They then +2013-01-01,40.4405556,-79.9961111,Pittsburgh,PA,circle,2,On my couch watching Reds on direct tv (actually DVR)) I witnessed two circular craft lift from behind hill. I'm 44. +2013-01-01,20.8783333,-156.6825,Lahaina (Maui),HI,fireball,90,Orange white fireball over Lahaina Maui Hawaii +2013-01-01,27.3361111,-82.5308333,Sarasota,FL,light,300,9 orange lights slowly move across sky, all but one in pairs. +2013-01-01,37.9577778,-121.2897222,Stockton,CA,triangle,120,Trinagular object flying low, slowly across sky with alluminated outline. +2013-01-01,40.18,-75.7311111,St. Peters,PA,light,10,At around 20:00 local time I noticed a reddish light crossing the sky, it was about 2 times the perceived size of a planet and about 2 +2013-01-01,40.7311111,-122.9408333,Weaverville,CA,fireball,15,Unfortunately it has to be classified as a light in the sky. But it was more then just that! +2013-01-01,37.1888889,-112.9977778,Springdale,UT,oval,60,Round UFO sighting in Zion Canyon +2013-01-01,28.5380556,-81.3794444,Orlando,FL,fireball,180,Orange Fireballs in Southern Sky, Orlando, Florida +2013-01-01,33.8352778,-117.9136111,Anaheim,CA,unknown,900,Silent, hovering, orange light at about 500 ft and about 1oo yds away.and disappeared in an instant. +2013-01-01,21.3069444,-157.8583333,Honolulu,HI,fireball,180,Fireball object in downtown Honolulu that changed direction and hovered. +2013-01-01,28.2438889,-82.7194444,New Port Richey,FL,changing,11,Two Orange/ Yellowish morphing objects, 40' in the air with no sound accelerated at an increadible speed. +2013-01-01,33.6116667,-111.7166667,Fountain Hills,AZ,other,300,Observed flash in night sky at southern direction from 33 latitude and 111 longitude at 30-35 degree altitiude of bright(full moon) int +2013-01-01,33.5172222,-82.0758333,Martinez,GA,other,30,((HOAX??)) UFO gives friends a sunburn. +2014-01-01,30.2669444,-97.7427778,Austin,TX,circle,300,Orange orbs above Austin, TX, on New Years 2014. +2014-01-01,35.3733333,-119.0177778,Bakersfield,CA,light,300,3 bright orange lights disappear one burst into 5 lights. +2014-01-01,36.0330556,-86.7827778,Brentwood,TN,circle,600,Orange flickering, slow moving, circular flying object. +2014-01-01,33.9236111,-84.8408333,Dallas,GA,sphere,1200,5 Reddish Amber Lights Moving Multiple Directions Then Disappear. +2014-01-01,39.6894444,-84.1688889,Kettering,OH,circle,45,Strange orange ball. +2014-01-01,30.2238889,-92.0197222,Lafayette,LA,unknown,240,Multiple Sightings,Multiple Witnesses, Same Night. #1- December 31 2013 10-11pm/ #2- January 1st 2014 12-12:30 AM. +2014-01-01,36.175,-115.1363889,Las Vegas,NV,circle,120,9 orbs observed at New Years in Las Vegas. +2014-01-01,37.4283333,-121.9055556,Milpitas,CA,light,180,Slow moving orange light floated up over hills then move to left descended and faded. +2014-01-01,33.9375,-117.2297222,Moreno Valley,CA,light,1800,Orange lights over the Moreno Valley sky. +2014-01-01,38.5816667,-121.4933333,Sacramento,CA,unknown,120,Bright orange light to the east. +2014-01-01,48.0797222,-123.1005556,Sequim,WA,other,2100,Multiple bright orange orbs glowing in the sky and shedding droplets of light. +2014-01-01,44.0463889,-123.0208333,Springfield,OR,circle,300,As we were watching the fireworks five or six orb like shapes hovered slowly across the sky and then seem to have disappeared moving aw +2014-01-01,36.4072222,-105.5725,Taos,NM,circle,240,Orange lights hovering and making formations by old Taos convent that burnt down. +2014-01-01,33.6197222,-86.6088889,Trussville,AL,light,300,These were not planes I know this for a fact. +2014-01-01,47.4236111,-120.3091667,Wenatchee,WA,oval,210,4 amber/orange object hovering over The Clockum area. +2014-01-01,36.5297222,-87.3594444,Clarksville,TN,sphere,600,3 Orange spheres in Clarksville, TN sky on New Years after midnight. +2014-01-01,36.0397222,-114.9811111,Henderson,NV,sphere,240,2 round balls of fire floating west to east across the sky then up and out. +2014-01-01,44.9430556,-123.0338889,Salem,OR,light,300,Six yellow-orange lights with reddish halos moving from NE to SW at midnight on New Year's Eve spaced about 45 seconds apart; no sounds +2014-01-01,31.7586111,-106.4863889,El Paso,TX,formation,120,Very bright lights . In a form of a "S." +2014-01-01,32.9808333,-80.0327778,Goose Creek,SC,light,480,Red and Green lights above Goose Creek, South Carolina New Years Morning! +2014-01-01,35.0844444,-106.6505556,Albuquerque,NM,egg,120,Bright reddish gold object seen in Albuquerque NM FIVE MINS after midnite on new years 2014. +2014-01-01,30.2669444,-97.7427778,Austin,TX,light,2100,Red lights all over the sky in Austin TX new year's 2014. +2014-01-01,38.8338889,-104.8208333,Colorado Springs,CO,formation,120,Cluster of "stars" move after being at a stand still. +2014-01-01,36.1027778,-79.5069444,Elon,NC,circle,120,Red light moved slowly at low altitude in the sky at northeast tip of Alamance County, NC. +2014-01-01,32.7938889,-79.8627778,Mt. Pleasant,SC,circle,180,NYrs Eve right after 12pm My husband & I went out on our deck and saw 6-7 orange/yellow spheres in a group floating in sky. +2014-01-01,47.6733333,-117.2383333,Spokane Valley,WA,formation,600,21 Craft with bright red lights flying as a squadron in Spokane Valley. +2014-01-01,30.3319444,-81.6558333,Jacksonville,FL,circle,120,Round orange extremley fast moving and silent. Traveling west. +2014-01-01,28.9002778,-81.2638889,Deltona,FL,sphere,180,Well we was watching the fireworks outside for new years 1rst 2014 about 12:07 AM we live in Deltona Florida. And we saw this 3 dull. +2014-01-01,38.0291667,-78.4769444,Charlottesville,VA,light,600,Orange lights in sky just after midnight on New Years Eve seen over Charlottesville, VA. +2014-01-01,28.9002778,-81.2638889,Deltona,FL,circle,1200,Ten orange circles flying across sky. +2014-01-01,39.8208333,-84.0194444,Fairborn,OH,light,60,Went outside, looked up, saw four orange, unblinking lights in the sky. They appeared to be moving north in more or less a straight lin +2014-01-01,37.6819444,-121.7669444,Livermore,CA,light,300,Red Lights/Orbs in formation over downtown Livermore - New Years Eve 2014. +2014-01-01,37.6391667,-120.9958333,Modesto,CA,circle,300,Single object, glowing red, hovering in place with no nosie or movemrnt in the night sky. +2014-01-01,38.385555600000004,-81.8363889,Saint Albans,WV,triangle,50,Orange lights in a triangular formation. +2014-01-01,34.2255556,-77.945,Wilmington,NC,triangle,30,3 orange orbs in triangular form perfectly still. +2014-01-01,40.6563889,-73.6097222,Baldwin,NY,fireball,240,Fireball over south shore long island. +2014-01-01,37.4716667,-121.1286111,Patterson,CA,sphere,600,Three orange/red spheres in alignment; leaving one at a time. +2014-01-01,43.6136111,-116.2025,Boise,ID,light,240,Four orange orbs over Boise early new years day. +2014-01-01,34.1808333,-118.3080556,Burbank,CA,sphere,540,Burbank Ca. 3 Amber Orange Hovering Lights 9 minutes. +2014-01-01,33.8752778,-117.5655556,Corona,CA,circle,120,3 bright orange circles in triangle formation on a clear night. +2014-01-01,39.785,-85.7694444,Greenfield,IN,light,60,Two distinct odd colored red lights suddenly vanish. +2014-01-01,26.1719444,-80.1322222,Oakland Park,FL,flash,5,Bright flash of blue light came out of nowhere in the clear night sky. +2014-01-01,44.9430556,-123.0338889,Salem,OR,circle,420,Looked like some sort of patrol or scouting team. +2014-01-01,40.115,-111.6541667,Spanish Fork,UT,unknown,900,Orange Orbs. +2014-01-01,28.2394444,-82.3280556,Wesley Chapel,FL,fireball,90,An amber colored light appeared on the horizon and moved slowly, in a very straight line, East to West. +2014-01-01,38.7744444,-75.1397222,Lewes,DE,light,1320,9 lights flew diffrent speeds some times fast and others slow W to E north of the canal Red-Green and Blue. They made no noise. +2014-01-01,33.9980556,-85.8663889,Hokes Bluff,AL,circle,600,I saw a bright red object on 1/1/2014 approximately 12:20 I recorded part of it before it just blinked and went out. +2014-01-01,37.2708333,-79.9416667,Roanoke,VA,fireball,1020,Two orange fireball shaped craft observed by Military Retiree and son over 17 minutes. +2014-01-01,37.3541667,-121.9541667,Santa Clara,CA,sphere,1500,Three fiery orange-red orbs, all seen about 5 minutes apart, ascended into space on a near vertical path. +2014-01-01,33.4352778,-112.3575,Goodyear,AZ,sphere,180,Seven orange/red lights moving slowly and / or hovering. +2014-01-01,28.5555556,-82.4505556,Spring Hill,FL,circle,240,Four orange, circular objects rising in the Eastern sky and disappearing vertically out of the atmosphere. +2014-01-01,27.4986111,-82.575,Bradenton,FL,fireball,300,I witnessed 2 orange orbs (thought to be flares at the time due to previous fireworks) moving east. +2014-01-01,38.8461111,-77.3066667,Fairfax,VA,flash,30,Orange lights seen at DC. +2014-01-01,29.1869444,-82.1402778,Ocala,FL,light,1200,12 slow moving orange lights over 20 minutes period. +2014-01-01,34.051944399999996,-118.0458333,South El Monte,CA,sphere,360,2nd sighting of red sphere moving fast , stopping and fading away. +2014-01-01,32.7252778,-97.3205556,Fort Worth,TX,oval,120,Orange ball stationary in sky above neighborhood south of Fort Worth before leaving northbound. +2014-01-01,36.7341667,-108.3591667,Kirtland,NM,formation,420,While lighting fireworks on New Years Eve with my four children we witnessed three orange objects in the shape of a triangle in the sky +2014-01-01,34.2011111,-118.5355556,Reseda,CA,circle,60,Three orange lights on New Year's Eve form triangle, align themselves then disappear. +2014-01-01,35.0844444,-106.6505556,Albuquerque,NM,circle,10,Cylindrical shape with amber colored lights hovering near Route 66. +2014-01-01,40.3769444,-111.795,American Fork,UT,circle,600,3 round lights/balls seen, flashing/moving/disappearing. +2014-01-01,26.3583333,-80.0833333,Boca Raton,FL,circle,1800,I was driving home from a new year’s party, about 1 am. +2014-01-01,33.3061111,-111.8405556,Chandler,AZ,egg,1200,3 Orange "orb" shaped objects over Southwest Arizona, followed by a fourth. +2014-01-01,40.6408333,-74.3838889,Fanwood,NJ,fireball,900,8 round orang red orbs came from Watching mountain area over Fanwood NJ no noise they all went in the same direction and vanished. +2014-01-01,26.625,-81.625,Lehigh Acres,FL,fireball,300,A fiery ball, appearing to look like a helicopter on fire with no sound or other lights for 4-5 minutes in one spot before flying east. +2014-01-01,32.7938889,-79.8627778,Mt. Pleasant,SC,other,1200,UFO orange spheres over Mt. Pleasant, SC on New Year's Eve. +2014-01-01,32.2216667,-110.9258333,Tucson,AZ,light,120,Bright dark orange colored light with varied speed and direction disappearing while traveling straight into the atmosphere. +2014-01-01,33.6680556,-117.3263889,Lake Elsinore,CA,fireball,10,Lake Elsinore ufo with blue thrusters. +2014-01-01,27.4986111,-82.575,Bradenton,FL,egg,600,One white/red light hovering over Bradenton, FL. - posted 1/7/14. +2014-01-01,32.7677778,-117.0222222,La Mesa,CA,formation,900,Unidentified lights fly in and out of formation high in the night sky over east San Diego. +2014-01-01,33.8722222,-117.8694444,Placentia,CA,rectangle,60,UFO descends and seems to land in golf course. +2014-01-01,43.6794444,-70.4447222,Gorham,ME,fireball,120,Three orange/red fireball or flickering-type lights flying in a triangle formation across the sky and then out of sight. +2014-01-01,34.07,-117.1336111,Mentone,CA,formation,300,Orange light formations. +2014-01-01,37.0058333,-121.5672222,Gilroy,CA,formation,300,10-12 red dots flying in a bird like formation lower than the airplane above. Each red dot began to disappear slowly one at a time. +2014-01-01,39.9522222,-75.1641667,Philadelphia,PA,light,180,3 red/orange flame-less lights seen hovering. +2014-01-01,41.7469444,-88.0502778,Woodridge,IL,fireball,240,New Year's day red scanning fireball. +2014-01-01,32.7152778,-117.1563889,San Diego,CA,unknown,45,Two dark objects less than two miles away, moving east then separating and accelerating north at a miraculous rate of speed. +2014-01-01,33.6797222,-113.9438889,Brenda,AZ,circle,300,Five yellow orange objects flying at same altitude slightly above hills to south east of us. +2014-01-01,40.4405556,-79.9961111,Pittsburgh,PA,circle,900,Four orange-red lights over Pittsburgh, PA dropping smaller orange lights. +2014-01-01,42.3583333,-71.0602778,Boston,MA,egg,900,Over Boston, 4 bright orange lights approach separately, hover, then recede to the South East. +2014-01-01,38.2541667,-85.7594444,Louisville,KY,sphere,300,Three large orange spheres traveling, then turning independently of one another in night sky. +2014-01-01,40.4405556,-79.9961111,Pittsburgh,PA,fireball,120,4 ufos in pittsburgh pa area. +2014-01-01,35.7330556,-81.3413889,Hickory,NC,triangle,60,(3) Yellowish/Orange spheres in the shape of a triangle. +2014-01-01,47.5002778,-111.3,Great Falls,MT,sphere,30,Observes 2 orange spheres flying North over Great Falls Montana. +2014-01-01,47.6588889,-117.425,Spokane,WA,light,30,Orange/red light in the sky moving from east to west seen in southern sky gone 30 seconds after spotted. +2014-01-01,39.8783333,-75.0930556,Mount Ephraim,NJ,circle,600,Circular craft spotted in Mount Ephraim, NJ. +2014-01-01,39.1619444,-84.4569444,Cincinnati,OH,circle,1800,Westside of Cincinnati, bright red and blue lights making abrupt U turns and then dropping straight down from the sky, quick as light +2014-01-01,33.8158333,-78.6802778,North Myrtle Beach,SC,fireball,3600,Chinese lanterns with orange glow very popular in the Myrtle Beach area. +2014-01-01,32.2216667,-110.9258333,Tucson,AZ,light,300,Floating lights. +1967-11-20,43.1280556,-121.045,Silver Lake,OR,unknown,60,Saw a small white light that increased dramatically in size, reduced to a small light, turned red and zip......it was gone. +1968-11-20,47.3811111,-122.2336111,Kent,WA,triangle,30,At daybreak, object (with recessed light in nose, and soundless) passed by us in the low clouds. It was barely getting light enough to +1972-11-20,36.2080556,-86.2911111,Lebanon,TN,oval,3600,11/20/1972 2100, Tenn Lebanon oval 30 minutes usa space craft over friends house 01/25/09 +1975-11-20,25.7738889,-80.1938889,Miami,FL,oval,10800,At 01:00 hrs looking out my room window I saw about 14 lights moving in the sky, they began to pair off and move in diffrent direction +1975-11-20,42.2527778,-73.7913889,Hudson,NY,unknown,30,I was alone, travelling north east on a local side road (Harry Howard Ave.) coming out of Hudson and on my way home from one of our bus +1975-11-20,40.9311111,-73.8991667,Yonkers,NY,light,900,A fast object in the night sky +1977-11-20,39.7294444,-104.8313889,Aurora,CO,circle,900,i could see it but my friend standing next to me could not it was plain as day right there. +1979-11-20,42.3313889,-83.0458333,Detroit,MI,light,1800,Obserbed bright disc in upper right quadrant of windshield as I was backing out of my drive, car was facing sough. As I drove eastward +1981-11-20,45.3566667,-122.8388889,Sherwood,OR,other,300,I looked up in the sky, and right above me, about the height you'd see a landing airplane if you were near an airport, were two flying +1981-11-20,36.0525,-95.7905556,Broken Arrow,OK,oval,300,Large craft hovering within 75 feet of us, emitted glowing ball before taking off at amazing speed! +1982-11-20,25.8780556,-80.1258333,Surfside,FL,diamond,60,A tumbling football shaped UFO with triangle windows of equal size with a different soft pastel colored light glowing in each window. +1985-11-20,43.5697222,-87.8233333,Cedar Grove,WI,sphere,600,A large greenish Orb is sighted near Cedar Grove WI early in the AM 11/20/85 for aprox. 10 minutes by two witnesses +1985-11-20,30.8202778,-92.0094444,Big Cane (Plaucheville Area),LA,light,6,A bright light traveling east to west followed by a green waving light, followed by a smaller white light. The objects were close toge +1985-11-21,42.9105556,-87.8605556,South Milwaukee,WI,light,20,Two massive booms which shook the windows followed by a bright light wich flew across sky then reversed course headed back the way it c +1987-11-20,29.2094444,-99.7858333,Uvalde,TX,circle,3,LIGHT SHOOTING STRAIGHT UP +1990-11-20,37.2708333,-79.9416667,Roanoke,VA,light,60,"Yellow Orb following vehicle , bright yellow lights entering vehicle. +1990-11-20,40.8897222,-81.5977778,Canal Fulton,OH,unknown,120,UFO hovering a few feet above the car Bright lights and Very Silent. +1991-11-20,27.7,-80.9044444,Yeehaw Junction,FL,triangle,900,Silver triangular craft hovering over highway +1991-11-20,36.5041667,-88.8741667,Fulton,KY,light,300,1991- seen a light zip out of sight with out a sound. +1993-11-20,39.6066667,-75.8336111,Elkton,MD,triangle,1800,I was in my deer stand when i seen a light it came down wright over top of me.A beam of light came out when it left it was allmost day +1995-11-20,37.6938889,-85.8591667,Elizabethtown,KY,other,120,The craft was about 200 feet in the air above the field and an adjacent house. +1995-11-20,30.6277778,-96.3341667,College Station,TX,light,15,One third larger and twice as bright as venus. The object did not twinkle as one would expect if it were a star. +1995-11-20,36.7416667,-88.6366667,Mayfield,KY,triangle,600,family followed by darting, triangular objects. +1995-11-20,43.2363889,-120.6358333,Christmas Valley,OR,light,300,Three sitings, all in Oregon, at night, no visible moon +1996-11-20,34.2255556,-77.945,Wilmington,NC,diamond,240,COMING HOME ONE NITE WE SAW A DIAMOND SHAPE OBJECT APPEAR FROM NOWHERE AND IT HOVERED FOR A FEW MINUTES AND THEN DISAPPEARED. +1996-11-20,28.9430556,-95.2975,Surfside (On The Beach),TX,diamond,10800,It appeared above me app. 200 ft. with 3 lights; {leftlight, red} {right light,green} {middle light, bright white.} The middle light bl +1996-11-20,41.4047222,-81.7230556,Parma (??),OH,circle,600,I WENT OUTSIDE TO TAKE OUT THE GARBAGE DURING THE INDIANDS PLAYOFF GAME I WENT TO THE BACK YARD LOOKED UP AT THE TOWER AND SAW A LIGHT. +1997-11-20,37.2152778,-93.2980556,Springfield (25 Miles Northeast Of),MO,oval,900,At approxamatly 1a.m. Cnt/stn time. A group of young adults 21-25 years of age. Where Having a get to gather at an ANONYMOUS idaviduals +1997-11-20,41.85,-87.65,Chicago,IL,other,120,A couple friends and i witnessed a possible ufo sighting at about 2 am. In the northeast quadrant we saw a bright white object tht ca +1997-11-20,41.6258333,-74.5980556,Rock Hill,NY,triangle,60,While driving west bound on Route 17 near Rock Hill, New York, my wife,son and myself saw a triangle shaped object moving across the hi +1997-11-20,45.4111111,-87.3544444,Cedar River,MI,fireball,5,Bright Green Fireball over the Green Bay of Lake Michigan. Fireball went straight up and then down at high rate of speed. The Fireball +1998-11-20,37.9319444,-121.6947222,Brentwood,CA,fireball,5,THE OBJECT WAS ROUND IN SHAPE,IT WAS ELECTRIC IN ITS INTENSITY, ORANGE IN THE CENTER AND GREEN AROUND THE OUTER PERIMETER OF THE ORANGE +1998-11-20,47.6588889,-117.425,Spokane,WA,triangle,12,thought we saw a satellite going over,it changed direction 80 deg.in 1/4 sec, then again. Had a transparent triangle shape around centr +1998-11-20,33.6694444,-117.8222222,Irvine (Entering City From The South),CA,oval,180,As I was driving on freeway 5 north, moving along with traffic, I noticed in the sky an oval shaped silvery object flying above Irvine +1998-11-20,41.5066667,-90.515,Moline,IL,fireball,2,Wife reported a brilliant flash of green light with a tail. She saw the video of the recent leonids and insists it did not look like t +1998-11-20,39.7294444,-104.8313889,Aurora,CO,triangle,600,Triangle shaped object traveling slowly over Colorado neighborhood +1998-11-20,47.6063889,-122.3308333,Seattle,WA,flash,600,Bright, multi-colored (mostly green and blue, but some red) flashes across the eastern horizon. +1998-11-20,36.2841667,-82.1727778,Hampton,TN,triangle,30,A Triangle shape Reflection, appearing as watery glass +1999-11-20,37.1533333,-98.0308333,Anthony,KS,disk,60,A strange site and then a ufo passed above us +1999-11-20,37.5058333,-77.6494444,Midlothian,VA,fireball,3,I WAS OUTSIDE AND I LOOKED UP AND SAW A VERY BRIGHT LIGHT BLUE OBJECT SHOOT HALVEWAY ACROSS THE SKY AND THEN DISSAPEAR +1999-11-20,41.6638889,-83.5552778,Toledo,OH,fireball,5,3 balls of light, rapidly changing color, zipping off at, what seemed to be, the speed of light. +1999-11-20,40.5727778,-81.0858333,West Carrollton,OH,disk,45,I have been watching these contrails left by planes all year but I observed something strange. The contrails left a haze over sky and +1999-11-20,30.2669444,-97.7427778,Austin,TX,formation,10,Three dome shaped lights. One craft or three I don't know. +1999-11-20,39.9536111,-74.1983333,Toms River,NJ,other,30,I was looking out my window at my husband lying face down in the grass on our front lawn at 11:30 pm because he celebrated just a littl +1999-11-20,33.8816667,-118.1161111,Bellflower,CA,fireball,120,Red blob, went to a dot, then disappeared +2000-11-20,37.6202778,-82.2691667,Belfry,KY,light,3600,It was a light blue object that faded out and would reappear in a different location; it was the first night of Rabbit Season when we s +2000-11-20,38.0291667,-78.9452778,Lyndhurst,VA,changing,180,Craft changes shapes, disappears and reappears, and changes direction under the clouds while making no noise. +2000-11-20,39.7686111,-94.8463889,St. Joseph,MO,egg,10,I was a passenger driving down the Belt Hwy. loked up and seen a round shiny metal object that stayed in the same spot but got smaller +2000-11-20,32.6394444,-96.5380556,Seagoville,TX,triangle,300,Triangle 3 slowly pulsating large soium colored lights, with small 7 running lights, vehicle moved extremely slow, with no sound +2000-11-20,33.4483333,-112.0733333,Phoenix,AZ,triangle,1200,UFOs seen by 11yr old while taking out garbage 11/20/2000 at 8:30pm +2000-11-20,30.3933333,-86.4958333,Destin,FL,fireball,6,Multi-color fireball, Destin, FL. +2000-11-20,43.6227778,-87.7944444,Oostburg,WI,flash,6,bright multi-colored blinking object south east of Sheboygan Wisconsin +2001-11-20,30.1763889,-85.8055556,Panama City Beach,FL,chevron,7,At 02:55 I saw a glowing orange object (approximately chevron shaped) which moved rapidly across the sky from west to east. +2001-11-20,30.1172222,-83.5819444,Perry (Exit 35; Almost To Talahassee),FL,chevron,30,I witnessed a slient chevron shaped craft with 10 large white lights simutaneously going on and off near Tallahassee 11/20-01. +2001-11-20,36.7983333,-81.6825,Chilhowie,VA,triangle,180,yellow triangle +2001-11-20,40.2944444,-78.7213889,Dunlo,PA,other,60,it moved about more than 200 mph it was really low to the ground didnt make sound and had lights +2001-11-20,39.5791667,-104.8763889,Centennial,CO,oval,120,We saw five oval shaped objects streak across the sky on November 20, 2001. They flew across the sky one by one as if chasing each othe +2001-11-20,39.5358333,-76.3486111,Bel Air,MD,circle,2,Round turquise, blue white disc hopping across the sky like a skipping stone. +2002-11-20,47.4830556,-122.2158333,Renton,WA,sphere,3,Bright object speeds from cloud over Renton at very rapid speed and disappears above Boeing. +2002-11-20,40.6883333,-75.2211111,Easton,PA,fireball,180,Two fireballs hovered for a while then one took off while one stayed for another minute or so then vanished +2002-11-20,38.7316667,-82.9977778,Portsmouth,OH,cigar,120,White Cigar Shape-Daytime +2002-11-20,40.3266667,-78.9222222,Johnstown,PA,light,900,White light in night sky viewed for 15 minutes, traveled N to W and reversed it path +2002-11-20,34.1791667,-118.7619444,Oak Park,CA,oval,2,My friend at I were at the park when i noticed a triangular glowing arrow heading south. Then we noticed that there were 3 seperate ora +2003-11-20,33.0461111,-96.9938889,Lewisville,TX,circle,180,Very small Yellow circular object moving toward the east at a slow pace +2003-11-20,36.3433333,-106.1880556,El Rito,NM,fireball,900,A bright yellow egg-shaped firey object suddenly appeared in the west on 11/20/03 at l7:30 hours, suddenly vanishing and leaving a smok +2003-11-20,37.2266667,-121.9736111,Los Gatos,CA,light,3,Single Gigantic-size Solid White Light in Rounded Cone Shape with a light tail behind it traveling at Extremely Fast speed +2003-11-20,37.2266667,-121.9736111,Los Gatos,CA,light,3,Single Gigantic White Light in Cylinder shape with light Tail at extremely high rate of speed +2003-11-20,36.6777778,-121.6544444,Salinas,CA,circle,30,I was not the actual witness but the news stations were discussing the incident for hours and the object was reported from Sacramento,C +2003-11-20,37.3688889,-122.0352778,Sunnyvale,CA,unknown,6,HUGE Ball of Light Falling from the Sky. Possible meteor or missile test on California coast. +2003-11-20,35.8944444,-79.9911111,Trinity,NC,changing,300,Seen a light come down then turn to a dome then a saucer then take off a jet was chasing it. ((NUFORC Note: Hoax?? PD)) +2003-11-20,37.2872222,-121.9488889,Campbell,CA,other,5,Bright white/green streak straight into Almaden Valley / Los Gatos area - 5:34pm PST +2003-11-20,33.9533333,-117.3952778,Riverside,CA,circle,15,Bright Green Circle over 60 FWY +2003-11-20,38.3397222,-122.7,Rohnert Park,CA,fireball,1,flare-type unidentified light over Rohnert Park, CA +2003-11-20,41.2586111,-95.9375,Omaha (Outside Of, Near I-80/Westbound),NE,triangle,1200,Triangle shape craft with multiple lights underneath hovering around I-80 +2003-11-20,43.1947222,-88.7288889,Watertown,WI,rectangle,60,3 Amber Circles enclosed in Rectangle - Healing requested. +2003-11-20,33.4222222,-111.8219444,Mesa,AZ,light,480,Flashing red light moving slowly +2003-11-20,33.4147222,-111.9086111,Tempe,AZ,other,2700,Brilliant Red Starlike object in east sky on 11-20-03 in Tempe AZ +2003-11-20,43.4919444,-116.4191667,Kuna,ID,triangle,360,Triangular object with pulsating lights hovered near Meridian Rd., then slowly flew off towards Boise, ID +2003-11-20,38.3283333,-94.9916667,Parker,KS,unknown,1200,Two bright reddish orange lights moving from southern horizon in NNW direction +2003-11-20,39.2544444,-76.7002778,Arbutus,MD,triangle,3600,triangular flashing lights +2003-11-20,30.4866667,-90.9561111,Denham Springs,LA,light,3,small flashing lights +2004-11-20,26.3583333,-80.0833333,Boca Raton,FL,unknown,3600,Sleeping Male Vanishes From Home Late AM ((NUFORC Note: Investigated by MUFON/Florida. Report unconfirmed.. PD)) +2004-11-20,28.1458333,-82.7569444,Tarpon Springs,FL,formation,1800,A large perfect circle of lights dispersed leaving a trail. +2004-11-20,26.0027778,-80.2241667,Pembroke Pines,FL,light,300,bright light ,then circled by 4 other objects moving fast then stopping +2004-11-20,33.6116667,-111.7166667,Fountain Hills,AZ,changing,600,Object morphed +2004-11-20,33.5091667,-111.8983333,Scottsdale,AZ,changing,600,Round to oval morphing Characteristics +2005-11-20,37.4419444,-122.1419444,Palo Alto,CA,formation,300,Dozens of Boomerang/V Shaped Formations Floating in the sky from 2:00am-5:00am on 11/20/2005 Witnessed by 4 People. +2005-11-20,37.775,-122.4183333,San Francisco,CA,unknown,30,one or two flying crafts, no lights +2005-11-20,38.4088889,-121.3705556,Elk Grove,CA,circle,1200,For 20 minutes I viewed a large and thee circles at about 10 am November 20, 2005 above my house.. +2005-11-20,33.9163889,-118.3516667,Hawthorne,CA,other,600,Bright Yellow-orange boomerang,with higher up white round object moving with it.Seen for 10 minutes,moving south-west. +2005-11-20,43.073055600000004,-89.4011111,Madison,WI,light,180,3 "head lights" with 2 rear flashing lights, hovering in place 4000ft above the ground. +2005-11-20,34.8986111,-117.0219444,Barstow,CA,light,300,"Falling star" over Barstow, CA went from a "falling star" to traveling east/west and skyward. +2005-11-20,41.0441667,-83.65,Findlay,OH,other,3600,Large bright light in southwest sky. ((NUFORC Note: Sighting of Venus?? PD)) +2005-11-20,40.9113889,-73.7827778,New Rochelle,NY,unknown,14400,Strange "soundless" objects and Streaking Lights over New Rochelle, NY +2005-11-20,41.1366667,-95.8905556,Bellevue,NE,fireball,5,Large, bright, Green Fireball Object was seen falling from sky, disappeared after 5 seconds +2005-11-20,38.9805556,-77.1005556,Bethesda,MD,light,10800,I saw a moving lighting object in the sky from 9th floor balcony in Bethesda Maryland. ((NUFORC Note: Advertising light?? PD)) +2006-11-20,31.3269444,-89.2902778,Hattiesburg,MS,other,2700,I would like to bring something to your attention. You might already know this. ((NUFORC Note: Possibly a sighting of Sirius. PD)) +2006-11-20,40.7141667,-74.0063889,New York City,NY,flash,1,I was driving home one night at 2:15 am after work with a friend. We were going over the Brooklyn Bridge from Manhattan and about half +2006-11-20,33.6602778,-117.9983333,Huntington Beach,CA,circle,1,UFO over Huntington Beach +2006-11-20,22.0783333,-159.3219444,Kapaa,HI,unknown,300,3 objects appear in the sky, zigzagging and moving in opposite directions, brightly flashing intermittently +2006-11-20,42.5277778,-70.9291667,Peabody,MA,circle,60,round object with green lights spotted over massachusetts +2006-11-20,26.7052778,-80.0366667,West Palm Beach,FL,other,120,Palm Beach County sighting, strange light +2006-11-20,33.1283333,-107.2522222,Truth Or Consequences,NM,circle,2700,Looked like a Fourth Of July sparkler--like a colored pinwheel. +2007-11-20,39.5297222,-119.8127778,Reno,NV,triangle,300,Triangular object above freeway +2007-11-20,33.9158333,-112.1352778,New River,AZ,light,1200,The Night Life +2007-11-20,27.4463889,-80.3258333,Fort Pierce,FL,light,1800,Lights in the Eastern sky (possibly over the ocean) - Fort Pierce, FL ((NUFORC Note: Sighting of Sirius. PD)) +2007-11-20,30.7302778,-81.5466667,St. Marys,GA,unknown,3600,It was a "twinkle" in the sky, too bright to be a star, and moved ever so slightly in the distance. ((NUFORC Note: Sirius?? PD)) +2008-11-20,30.2669444,-97.7427778,Austin,TX,unknown,4,fast and shiney straight path no wings +2008-11-20,29.9402778,-91.0247222,Napoleonville,LA,flash,5,a green ball that desentagrated in the sky +2008-11-20,32.7833333,-96.8,Dallas,TX,oval,300,((HOAX??)) was going in car and in the air saw a object going faster then a plane and had no lights on it/ +2008-11-20,36.8352778,-76.2986111,Portsmouth,VA,light,1200,Strange, Blinking, White Lights-Hovering +2008-11-20,33.4483333,-112.0733333,Phoenix,AZ,light,60,3 strangely colored(bronze, copper, orange red) very bright, began very small, and grew to very large, disapeared, and then reappeared +2008-11-20,33.2075,-92.6661111,El Dorado,AR,circle,60,We are not sure is was a craft or a meteor, falling star, or whatever. It seemed to be about tree top level and traveled so rapidly th +2008-11-20,35.2219444,-101.8308333,Amarillo,TX,other,7200,Shiny heart shaped object in amarillo texas +2008-11-20,32.4697222,-98.6786111,Ranger,TX,light,30,Orange glowing lights in sky above Stephens County, Texas +2008-11-20,38.7522222,-121.2869444,Roseville,CA,circle,240,Discription: There was a light in the sky, but it was not a plane or helicopter. When we got closer we could see a round shaped object +2008-11-20,41.6888889,-98.3630556,Spalding,NE,formation,60,Many lights in the sky seen outside of Spalding, NE. +2008-11-20,38.7083333,-121.3288889,Antelope,CA,rectangle,120,Rectangle with chasing lights on the bottom +2008-11-20,38.7072222,-121.28,Citrus Heights,CA,sphere,30,Heading North on Sunrise Blvd. and saw circular object with lights around it's rim circle 2 and a half times and vanish. +2008-11-20,38.6780556,-121.175,Folsom,CA,circle,120,There was a disk with lights around it spining around itself while moving in the air +2008-11-20,38.9716667,-95.235,Lawrence,KS,light,40,two small, round lights moving very quickly, with abrubt direction and speed changes seen in South Lawrence. +2008-11-20,33.0580556,-112.0469444,Maricopa,AZ,unknown,1200,Lights Over City Of Maricopa Previously Spotted +2008-11-20,32.0833333,-81.1,Savannah,GA,fireball,10,glowing green ball of fire +2008-11-20,33.4208333,-82.1622222,Ft. Gordon,GA,fireball,600,fading lights in formation over Fort Gordon +2008-11-20,38.8697222,-75.4233333,Lincoln,DE,circle,300,blinking lights, silent, moved rather quickly. +2008-11-20,33.9311111,-117.5477778,Norco,CA,formation,7200,In Nov. 08 there was a giant ring around the moon and at the bottom of the ring, the vapor began to disinigrate and I observed 2 round +2008-11-20,35.7697222,-91.6408333,Batesville,AR,fireball,120,Bright yellow/ornage fireball going W to E across the Northern sky. +2008-11-21,38.7633333,-121.1627778,Granite Bay,CA,rectangle,600,spherical rectangular UFO sighting in Granite Bay Roseville over freeway +2009-11-20,33.8544444,-84.2172222,Tucker,GA,other,1800,iwas outside with my friends when we saw 5 ufos. +2009-11-20,39.3111111,-94.9222222,Leavenworth,KS,sphere,60,UFO over Leavenworth, ks +2009-11-20,35.6869444,-105.9372222,Santa Fe,NM,formation,300,sighted a formation of many star-like objects flying through daytime sky +2009-11-20,34.2694444,-118.7805556,Simi Valley,CA,circle,120,bright powder blue puck shaped disk flying in circles near reagan pres library, 50 to 75 ft long, 1 mile away +2009-11-20,33.2,-117.2416667,Vista,CA,sphere,300,10 orbs form a patteren for 5 min. over camp pendleton. +2009-11-20,40.1727778,-74.9930556,Holland,PA,sphere,300,one yellow ball of light traveling across the sky slowly without sound +2009-11-20,36.1658333,-86.7844444,Nashville,TN,unknown,5,Blurry blob of light streaking through sky above a cloud +2010-11-20,33.3061111,-111.8405556,Chandler,AZ,light,600,Lights in the sky that look like stars or satelites, but do not move accordingly per the laws of physics. +2010-11-20,33.015,-96.5386111,Wylie,TX,unknown,2,White light moving across sky without a streak or sound in different directions. +2010-11-20,42.6338889,-73.5541667,Averill Park,NY,disk,10,Low to the ground... all black around the UFO in a saucer shape going slow then it sped up and it was gone. Had about 8 lights around +2010-11-20,37.0208333,-93.2058333,Ozark,MO,circle,10,i was looking out a telescope at the moon when i saw what looked like a ufo fly across the suface of the moon. +2010-11-20,42.3313889,-83.0458333,Detroit (South Of),MI,other,20,I don't know what else to say! its been driving me crazy, I want to see it again +2010-11-20,35.4675,-97.5161111,Oklahoma City,OK,light,12,It was motionless, then moved forward very fast, did a loop-the-loop, then flew away at about a 15' degree angle +2010-11-20,36.7477778,-119.7713889,Fresno,CA,light,1200,No objects seen only 5 or more lights moving in a rapid circles. Heavy clouds but lights visible. Unusual and scary. +2011-11-20,47.9791667,-122.2008333,Everett,WA,unknown,2400,When I first seen the ufo it reminded me of emergency light but it was in the sky. ((NUFORC Note: Twinkling star?? PD)) +2011-11-20,35.3847222,-77.9930556,Goldsboro,NC,circle,4,Two oval shaped objects fly over Goldsboro, NC +2011-11-20,46.6022222,-120.5047222,Yakima,WA,light,300,A formation of 5 to 7 red-orange lights/fireballs that moved slowly across the sky and disappeared up in the sky. +2011-11-20,32.4797222,-86.3619444,Millbrook,AL,egg,10,2 night sky Camoflaged "things!" +2011-11-20,33.5988889,-117.2791667,Wildomar,CA,light,4,Orange ball streaks across skyline +2012-11-20,35.7847222,-89.1172222,Alamo,TN,flash,1,November 20 , 2012 12:00 AM MIDNIGHT Alamo Tn Around , the time of midnight , while smoking a cigar outside in a car with a friend. +2012-11-20,33.5508333,-79.0416667,Murrells Inlet,SC,oval,300,I saw 3 crafts with bright red blinking lights and they just disappeared. +2012-11-20,39.4861111,-77.7,Keedysville,MD,circle,120,Large circular object low to ground blinking colorful lights. Then zoomed off out of sight within a sec. +2012-11-20,41.5963889,-72.8780556,Southington,CT,sphere,300,Bright light in the night sky. +2012-11-20,38.4275,-89.9136111,Freeburg,IL,cone,90,Bright orange fireball in the night sky. +2012-11-20,40.7425,-84.1052778,Lima,OH,circle,7200,I thought I was seeing a moving low cloud reflecting the light. +2012-11-20,33.1191667,-117.0855556,Escondido,CA,other,600,Line of eight orange lights that didn't move. It appeared, a few lights went off, came back on, then all went off simultaneously. +2013-11-20,33.2111111,-111.8747222,Sun Lakes,AZ,circle,180,Orange ball over Sun Lakes, AZ, fell from sky. +2013-11-20,31.5788889,-90.4405556,Brookhaven,MS,light,3600,My employee and his wife witnessed two lights in the sky that lingered for most of an hour before disappearing. +2013-11-20,32.4205556,-104.2283333,Carlsbad,NM,fireball,30,Bright fireball object. +2013-11-20,46.2633333,-119.4866667,Benton City,WA,flash,2,Green, gaseous streak or cylinder. +2013-11-20,41.6361111,-70.9347222,New Bedford,MA,light,86400,Bright light seen all day into the night. Solid light and flashing it would would/is moving around the sky. +2013-11-20,36.7477778,-119.7713889,Fresno,CA,light,180,Rectangle lights over N/E Fesno. +2013-11-20,41.7480556,-71.1902778,Swansea,MA,light,2400,I saw reports from a friend in New Bedford. He saw this. I decided to look out my window and there it was. +2013-11-20,43.9847222,-72.8466667,Granville,VT,fireball,60,Unknown object flying over.... +2013-11-20,44.5141667,-72.0113889,Lyndon,VT,flash,60,Three white lights flashed on in a triangle one on top two on bottom hovered a few seconds to a minute then flashed off. +2013-11-20,43.9847222,-72.8466667,Granville,VT,fireball,120,Orange fire balls appeared over... +2013-11-20,44.4408333,-72.4169444,Woodbury,VT,light,1800,Over North Central Vermont: Three large stationary red lights in a triangle for 15 seconds then simultaneously disappear. +2013-11-20,44.26,-72.5758333,Montpelier,VT,light,60,One bright light, disappeared and reappeared as two, disappeared and reappeared as three then four in a uniform row. +2013-11-20,43.9408333,-72.6080556,Randolph Center,VT,circle,15,4 fiery orange colored orbs in Northern sky. Moved from North to West in a perfectly horizontal manner. +2013-11-20,43.6461111,-72.4188889,Quechee,VT,formation,120,5 to 6 fireballs in formation in southeast sky 17:45 11/20/13 +2013-11-20,43.5911111,-71.7372222,Bristol,NH,oval,420,Multiple orange balls in the sky. +2013-11-20,43.7152778,-72.3083333,Norwich,VT,light,180,Group of lights seen over Thetford, Vermont. +2013-11-20,41.9902778,-70.9755556,Bridgewater,MA,fireball,240,Orange balls in sky. +2013-11-20,44.26,-72.5758333,Montpelier,VT,oval,15,Two bright yellow/orange oval shapes moving in irregular patterns making no noise fading in and out and then disappeared. +2013-11-20,40.4383333,-79.8433333,Churchill,PA,fireball,1800,Several orange fireballs all perfectly spaced and moving at the same speed. +2013-11-20,40.4172222,-79.8652778,Braddock Hills (Pittsburgh),PA,formation,1200,Red/orange lights moving east to west over Pittsburgh, all the same speed, then winking out. +2013-11-20,42.7008333,-82.9591667,Macomb,MI,oval,600,3 Circle Earlville Shape object about 4ꯠ feet look to be about possibly 50 miles away. The craft Harvard in mid air and would change +2013-11-20,28.4952778,-81.535,Windermere,FL,triangle,30,Large, very Low, very slow flying triangular object with a light a each point. +2013-11-20,41.9902778,-70.9755556,Bridgewater,MA,formation,900,6 orange lights seen rising into sky and moved into a circle formation. +2013-11-20,36.8525,-121.4005556,Hollister,CA,triangle,7,Triangular solid blue light flying over South end of Diablo Range in Hollister. +2013-11-20,41.0180556,-75.9952778,Drums,PA,light,2700,I went out on my back porch and lit a cigarette and something caught my eye. I have stared out in the sky before and thought a star was +2013-11-20,43.8122222,-71.0361111,Freedom,NH,fireball,300,Four large yellow/orange round lights in the night sky. +2013-11-20,31.3402778,-110.9336111,Nogales,AZ,light,60,Four orange/red orbs seen in Nogales, AZ sky. +2013-11-20,47.2530556,-122.4430556,Tacoma,WA,disk,300,I saw 3 small but bright lights floating. At first I thought they were stars but then I realized they were moving following one bigger +2013-11-20,40.4086111,-75.9219444,Temple,PA,unknown,2,6-10 white lights in a V formation flying south at hight speed. +2013-11-20,40.6263889,-80.0561111,Wexford,PA,cylinder,15,Bright orange cylinder spiraled in sky +2013-11-20,44.7527778,-68.6794444,Holden,ME,triangle,60,White lights, triangle shape, low altitude, slow speed. I have a military backround. +1953-11-21,39.9975,-85.7466667,Pendleton (2-2 1/2 Mi. Se Of),IN,disk,180,On a moonless, star-lit night, greenish-orange light moves rapidly and silently about the dark sky while being pursued by a jet. +1978-11-21,45.5113889,-92.98,North Branch (South Of),MN,rectangle,300,That thing was not built around here +1980-11-21,39.2805556,-80.3447222,Clarksburg,WV,oval,5400,tHE OBJECT MOVED FROM SIDE TO SIDE AND UP AND DOWN AND WAS GONE IN A FLASH +1981-11-21,38.4563889,-75.5775,Delmar,DE,light,300,My sister and I witnessed six bright red lights shooting green lights up at six blue lights that were positioned directly above.e +1995-11-21,47.2891667,-101.0286111,Washburn,ND,triangle,20,A bluish triangular object moving in a clockwise direction. +1997-11-21,41.55,-71.4666667,North Kingstown,RI,triangle,10,While driving at dusk my daughter and I noticed an airplaine flying up in the sky w/ it's lights on heading in an easternly dirtection +1997-11-21,43.4675,-85.9419444,Fremont,MI,circle,300,A yellow white light flying back and forth at high speeds over a field. +1998-11-21,44.0191667,-84.7994444,Harrison,MI,sphere,150,We saw silver balls flying irradically in the sky +1998-11-21,34.5294444,-90.5916667,Helena (North Of, On Highway 49),AR,circle,30,A large circular or oval shaped object was observed moving southward in the clear night sky over highway 49 outside of Helena, Arkansas +1998-11-21,35.3519444,-75.5108333,Avon (Outer Banks),NC,light,30,Single points of light, orange/yellow in color, much like meteors. There was broken cloudcover, and the lights would appear and disappe +1999-11-21,40.7425,-84.1052778,Lima (Just South Of Mile Marker 117),OH,sphere,180,Saw sphere shaped, mirror like craft moving through field low to ground and very slowly . Craft was randomly shining light onto ground +1999-11-21,36.2625,-85.3755556,Rickman,TN,other,240,THIER WHERE VERY BRIGHT AT FIRST WHEN ME AND MY WIFE SEEN THEM WE THOUGHT THAT THEY WHERE STARS. BUT TO OUR AMAZEMENT THEY SEEMED TO FL +1999-11-21,33.9411111,-84.2136111,Norcross,GA,unknown,30,My wife and I were driving south on highway 141 in Norcross, Ga when we spotted an illuminated object that demonstrated incredible acce +1999-11-21,47.3075,-122.2272222,Auburn (Heading N On Hwy 167),WA,light,60,Bright rapid moving light speeding across the sky. +2000-11-21,33.8141667,-86.8094444,Warrior,AL,light,120,Object was like the picture on the home page "During July" except the color was bright white. +2000-11-21,35.1894444,-114.0522222,Kingman,AZ,disk,480,Dust devil caused by two UFO's. +2000-11-21,35.3658333,-120.8488889,Morro Bay,CA,light,1800,A stationary white bright light north of Morro Bay gradually dimmed and disappeared +2000-11-21,33.7597222,-87.1833333,Cordova,AL,unknown,300,The bright star like object in the constellation of Orion. +2000-11-21,47.0380556,-122.8994444,Olympia,WA,other,2,Seen bright, round, large white light, center very bright, duration 1-2 seconds. +2001-11-21,37.7477778,-84.2947222,Richmond,KY,light,180,A yellowish twinkling light with a red ring around it that disappeared after about 3 minutes. +2001-11-21,32.7152778,-117.1563889,San Diego,CA,other,300,I was driving on freeway when I saw two boomerang shaped objects flying slowly in the sky. All of a sudden as If they knew I saw it the +2001-11-21,37.1305556,-121.6533333,Morgan Hill,CA,light,180,It was a light moving across the sky, but then it turned into 3 lights that were circling, then it shot a light out of it. +2001-11-21,26.0108333,-80.1497222,Hollywood,FL,chevron,90,Cloud colored chevron. +2002-11-21,36.0213889,-80.3822222,Clemmons,NC,triangle,300,It was a large, triangular shaped flying object. +2002-11-21,36.6386111,-95.1538889,Vinita,OK,cigar,120,I saw a bright cigar shaped object hover in the sky, then speed off away from me at a very high rate of speed. +2002-11-21,32.7152778,-117.1563889,San Diego,CA,unknown,1060,Me and my 2 friends get out of music class at 5:10. We play around until 1 of my friend talks about UFOs. My other friend said he saw s +2002-11-21,36.1538889,-95.9925,Tulsa,OK,cross,60,plane/bird shaped opbject--no lights travelling fast +2002-11-21,43.0202778,-78.8805556,Tonawanda,NY,chevron,120,three large white lights on craft, chevron shaped +2003-11-21,44.551944399999996,-69.6322222,Waterville,ME,cross,1200,cross shaped, six light,silent,big maby 1oo feet long, +2003-11-21,41.1416667,-87.875,Bourbonnais,IL,chevron,120,Strange white triangular craft possibly military or not. +2003-11-21,33.6694444,-117.8222222,Irvine,CA,cigar,10,Blue cigar shaped with a red light +2003-11-21,33.4222222,-111.8219444,Mesa,AZ,egg,2,Bright Green Light above Mesa +2003-11-21,39.9880556,-81.1766667,Barnesville,OH,formation,8,the object distorted the visible sky yet you could see through it and it was boomerang shaped,very fast, and silent. +2003-11-21,46.4166667,-117.0166667,Lewiston,ID,light,1200,Bright, steady white light with blue and red flashes +2003-11-21,39.8308333,-77.2313889,Gettysburg,PA,light,7200,UFO sighting on a Ghost tour in Gettysburg. +2004-11-21,28.5380556,-81.3794444,Orlando,FL,changing,120,I AM WRITTING THIS BECAUSE I ALSO SAW THE SIGHTTING FROM ORLANDO ON NOV. 21-2004 , I WAS WITH A FRIEND AT HIS JOB WICH IS VERY CLOSE TO +2004-11-21,41.3030556,-74.7938889,Montague,NJ,circle,300,WELL,FIRST ID REALLY LIKE WHOMEVER IS GOING TO READ THIS TO KNOW THAT I AM REALLY HAVING A HARD TIME BELIEVING THIS MYSELF.I KEEP TRY +2004-11-21,37.2872222,-121.9488889,Campbell,CA,teardrop,300,contrails and lil orbs real pics taken from a hp 735 digital ((NUFORC Note: Photos are ambiguous. PD)) +2005-11-21,47.4958333,-121.7855556,North Bend,WA,cigar,30,Cigar shaped craft over observed over cascade foothills. It was moving slowly but disappeared suddenly. +2005-11-21,26.3583333,-80.0833333,Boca Raton,FL,light,7200,white lights in sky over ocean which could not be airplanes, helicopters, or stars +2005-11-21,33.7669444,-118.1883333,Long Beach,CA,disk,360,Big saucer with bright white lights flying over Long Beach Calicornia. +2005-11-21,36.7477778,-119.7713889,Fresno,CA,oval,5,extremely abnormal +2005-11-21,36.3302778,-119.2911111,Visalia,CA,changing,300,White orb enveloped by red colored halo, splits into smaller red fragments, while weaving and dropping. +2006-11-21,40.7141667,-74.0063889,New York City,NY,flash,1,an immensely extraordinary giant flash of light in the western sky above manhattan +2006-11-21,40.7794444,-74.0241667,Union City,NJ,fireball,10,A bright light falls from the sky over New Jersey. +2006-11-21,39.8841667,-82.7536111,Pickerington,OH,other,60,Something darted across the sky +2006-11-21,46.2858333,-119.2833333,West Richland,WA,other,300,Moving lights in the sky with what looked like radio/cell tower structures. ((NUFORC Note: Lights on radio towers. PD)) +2006-11-21,33.7458333,-117.8252778,Tustin,CA,changing,300,I saw a small black object rotating in the sky on my morning walk. +2006-11-21,44.9055556,-93.7472222,Saint Bonifacius,MN,light,180,BRIGHT light low in the sky- middle of the day. +2006-11-21,33.9561111,-83.9880556,Lawrenceville,GA,fireball,10,I saw a multicolored fireball moving left to right in the sky at cloud level. +2006-11-21,39.3897222,-110.8144444,Elmo,UT,cigar,10,A long bright white cigar shaped object rose from the desert and shot off into the western sky +2006-11-21,42.9047222,-76.8630556,Waterloo (North Of),NY,triangle,15,Triangular Craft with Bright LED-like flashers moving west over I-90 +2006-11-21,39.7047222,-105.0808333,Lakewood,CO,light,180,Blue light sighted low on Southern horizon moving in very strange and erratic patterns. +2006-11-21,41.6361111,-72.2130556,Lebanon,CT,oval,90,freaky ufo sighting close to house 1/4 of a mile away over corn field!!! +2007-11-21,40.8533333,-73.4119444,Huntington Station,NY,circle,3,Gold object fell from the sky. +2007-11-21,38.6172222,-121.3272222,Carmichael,CA,flash,7200,Light, 2 hours; bright light at a far distance, flashing green, red, blue & white. ((NUFORC Note: Sirius. PD)) +2007-11-21,35.2619444,-81.1875,Gastonia,NC,diamond,900,Object moved straight up, left, right then back to center +2007-11-21,39.8780556,-83.9369444,Enon,OH,triangle,240,i was driving back fromdayton ohio and i saw something it didnt make sound it had alot of lights on it +2007-11-21,33.2147222,-97.1327778,Denton,TX,circle,60,Three white circle objects dissapear over 35W +2007-11-21,32.7152778,-117.1563889,San Diego,CA,circle,600,Brilliant Gold Object Appears Over Ocean Beach +2007-11-21,27.9655556,-82.8002778,Clearwater,FL,cigar,240,Large low flying UFO- Tons of multi colored lights. No noise. Gliding very slowly. +2008-11-21,35.1894444,-114.0522222,Kingman (Near; In Mohave Desert ),AZ,other,35,6 LARGE GLOWING PLASMA ENGINES OVER HEAD +2008-11-21,32.0833333,-81.1,Savannah,GA,formation,150,8-12 lights viewed in the skies of Savannah, GA moving very fast and in unison. +2008-11-21,41.0097222,-95.2252778,Red Oak,IA,teardrop,120,a teardrop +2008-11-21,36.0344444,-89.3855556,Dyersburg,TN,cigar,60,I was in a vehicle on an exit ramp on I-155w waiting at a stop sign to turn left onto lake rd.(hwy 78) in dyersburg, tn. I noticed a l +2008-11-21,35.1494444,-90.0488889,Memphis,TN,circle,2880,Two white lights seen in Memphis,TN. one on cellphone camera airplanes avoided the aircrafts +2008-11-21,33.4483333,-112.0733333,Phoenix,AZ,circle,3,Hight-Speed White Glowing Object with a Tail Spotted Over Phoenix, Arizona +2008-11-21,33.4483333,-112.0733333,Phoenix,AZ,unknown,3,Green light in South Phoenix sky moving West very fast. +2008-11-21,32.2216667,-110.9258333,Tucson,AZ,circle,30,Small blue-green orb speeding across sky to the west then disappeared +2008-11-21,29.5291667,-95.2008333,Friendswood,TX,other,900,white non-spherical brighter apparent magnitude than any other common object motionless and then later completely vanished +2008-11-21,40.4863889,-86.1336111,Kokomo,IN,rectangle,480,There were three different objects, in three different directions. Jets seem to be closing in on two of them. +2008-11-21,33.7458333,-117.8252778,Tustin,CA,triangle,8,noticed a low flying, slow flying plane. obviously a plane due to red/blue lights, and flashing white lights. made a low humming, whirr +2008-11-21,41.0222222,-100.3672222,Brady,NE,light,900,high speed red/blue lights extremely fast and maneuverable with the ability to disappear +2008-11-21,47.6063889,-122.3308333,Seattle,WA,unknown,720,Slow red strobe light, static in position, high above air traffic +2008-11-21,26.9616667,-82.3527778,Englewood,FL,light,120,Lights over Englewood Florida +2008-11-21,35.1894444,-114.0522222,Kingman,AZ,rectangle,60,6 LARGE GLOWING PLASMA ENGINES +2008-11-21,38.8113889,-91.1413889,Warrenton,MO,chevron,180,White lights in a V shape traveling at a constant speed. +2008-11-21,32.7355556,-97.1077778,Arlington,TX,teardrop,10,Fast moving green and yellow in color at low altitude +2008-11-21,32.3122222,-106.7777778,Las Cruces,NM,light,1140,Two seperate lights hovering and moving in circular motion. +2008-11-21,39.7683333,-86.1580556,Indianapolis,IN,triangle,30,Seven faint white lights in triangle shape (one light leading with 2 lights following and two lights again and two more lights that out +2008-11-22,35.2827778,-120.6586111,San Luis Obispo,CA,light,900,bright lights fast percise in movement no noise. ((NUFORC Note: Possible advertising lights?? PD)) +2009-11-21,36.1538889,-95.9925,Tulsa,OK,circle,2400,a light in the sky that flashes. +2009-11-21,35.7405556,-81.5633333,Valdese,NC,triangle,120,Watching movie, cousin got my attention, pointed at craft outside literally floating in the air as if it was on ice. Never changing alt +2009-11-21,40.8041667,-74.0125,North Bergen,NJ,light,10,Extremely bright light zooming scross the sky just disappears from sight +2009-11-21,40.9113889,-73.7827778,New Rochelle,NY,fireball,5,fireball over nyc +2009-11-21,43.8052778,-71.8130556,Rumney,NH,light,10,Light moving over Rumney, NH, vanishes in instant +2009-11-21,39.3897222,-74.5244444,Pleasantville,NJ,light,240,fier like object moving swiftly in the sky. +2010-11-21,35.0844444,-106.6505556,Albuquerque,NM,other,360,Blue/green Hoops in the sky in Albuquerque, New Mexico. +2010-11-21,33.5091667,-111.8983333,Scottsdale,AZ,disk,15,I was at home on the patio that was facing south, I looked up and saw a dark object in the sky. I thought it was a helicopter but it wa +2010-11-21,33.3391667,-84.6486111,Sharpsburg,GA,changing,240,Three lobed, colorful sphere moving slowly at low altitude and then changing shape. ((NUFORC Note: Possible cluster of balloons? PD) +2010-11-21,41.5755556,-72.3325,Colchester,CT,unknown,2,silver fast +2010-11-21,32.3641667,-88.7036111,Meridian (West Of),MS,light,420,Bright light during the late afternoon initially stationary, moves, then disappears, reappears a few minutes later. +2010-11-21,31.4636111,-100.4366667,San Angelo,TX,oval,20,Daylight sighting in San Angelo (oval) +2010-11-21,42.4775,-83.0277778,Warren,MI,light,30,NOT A SOUND, TRAVELING NE BELOW AN OVERCAST SKY. I WAS STRAINING TO SEE PAST WHAT I THOUGHT WERE MARKER LIGHTS. THEY WERE BRIGHTER THAN +2010-11-21,45.9175,-119.3413889,Umatilla,OR,triangle,30,A defined glowing oval shape moving with control. +2010-11-21,39.7475,-122.1952778,Orland,CA,light,180,Large bright yellow-orange light appeared for 3 minutes and then disappeared completely +2010-11-22,37.9988889,-86.1694444,Brandenburg,KY,unknown,7200,Last night November 21, 2010 at 12:30 AM My TV had been going in and out of clarity, So I desided to step out side and turn the antenna +2011-11-21,38.6786111,-121.7722222,Woodland,CA,unknown,600,Re: "Abduction" at Woodland, CA the description follows the traditional "abduction" scenario. See this site: http://www.news.harvard.ed +2011-11-21,38.6786111,-121.7722222,Woodland,CA,unknown,600,Early morning abduction/visitation on november 21, 2011 +2011-11-21,36.3302778,-119.2911111,Visalia,CA,fireball,240,A fireball with a tail that seemed to me maybe a comet? But as I kept looking it slowed down, and turned a direction, then disappeared. +2011-11-21,33.7222222,-116.3736111,Palm Desert,CA,triangle,300,Triangular UFO sighted in daylight Palm Desert CA on 11/21/11 +2011-11-21,34.1083333,-117.2888889,San Bernardino,CA,fireball,300,Slow moving fireball +2011-11-21,40.6883333,-75.2211111,Easton,PA,rectangle,3600,((HOAX??)) Hovering craft flying up and down then in circles before taking off upward. +2012-11-21,33.6258333,-97.1330556,Gainesville,TX,circle,300,MASSIVE SIZE Red circular light in sky resembling a planet in the west sky of texas. +2012-11-21,43.6136111,-116.2025,Boise,ID,oval,600,Sun colored shape with red ring see over Boise, ID. +2012-11-21,42.1013889,-72.5902778,Springfield,MA,unknown,3600,Strange Flashing White and Green Bright lights ascending and hovering +2012-11-21,44.2619444,-88.4152778,Appleton,WI,fireball,300,Evenly spaced yellow orange fireballs traveling across the sky. +2012-11-21,40.6083333,-75.4905556,Allentown,PA,circle,15,Bright orange light falling from sky rapidly. +2012-11-21,37.9347222,-80.6522222,Crawley,WV,light,180,The ufo was very bright and made no sound what so ever.and at times my new fully charged spot light would go out or get real dim. +2012-11-21,29.3991667,-95.8375,Needville,TX,fireball,300,Two fireballs type objects witnessed moving slowly with no tail. +2012-11-21,42.9675,-87.8775,St. Francis,WI,triangle,120,Huge 2+ Mile Perfect Triangle of Lights Over Lake Michigan; Next to Mitchell Field in Milwaukee, WI 21 Nov 21. +2012-11-21,41.3683333,-82.1077778,Elyria,OH,triangle,120,Orange lights in triangular formation over Elyria, Ohio. +2012-11-21,26.8172222,-80.0822222,North Palm Beach,FL,fireball,600,My wife called me to the back yard to look at orange-red ball shaped bright lights moving south bound. +2012-11-21,33.8311111,-87.2775,Jasper,AL,fireball,15,While driving home last night on Highway 69, my girlfriend and I saw a fireball streak across the sky. +2012-11-21,41.49,-71.3133333,Newport,RI,circle,60,Slow moving white light with red sphere rotating tightly around it, disappears into thin air. +2012-11-21,29.0336111,-95.4341667,Lake Jackson,TX,circle,900,Red and blue flashing light hovering for more than 15 min. +2012-11-21,41.6833333,-86.25,South Bend,IN,changing,600,There were 3 lights, there were 2 lights at first, then one more appeared, they were moving in a circualr movement sorta. +2013-11-21,42.5294444,-83.7802778,Brighton,MI,triangle,600,Bright light triangle hovering then swiftly changing directions the other way. +2013-11-21,43.1705556,-78.6905556,Lockport,NY,fireball,600,Single fireball hovering in Lockport at the Niagara County/Erie County border. +2013-11-21,21.3069444,-157.8583333,Honolulu,HI,sphere,300,Orbs dropping larger orbs into the ocean. +2013-11-21,34.4208333,-119.6972222,Santa Barbara,CA,light,120,3 lights moving north in formation and each light disappeared one at a time. +2013-11-21,32.9627778,-117.035,Poway,CA,light,10,Blue light which changed to orange travelling fast then disappeared. +2013-11-21,39.9522222,-75.1641667,Philadelphia,PA,triangle,300,Orange Objects Ascending Over Philadelphia +2013-11-21,36.5166667,-105.5686111,Arroyo Seco,NM,fireball,420,Traveling fire ball in the sky. +2013-11-21,44.7197222,-123.0091667,Jefferson,OR,sphere,5,Object was shaped like a long bright Bar very bright in the north sky above my back yard field.... at 8:15pm traveled 5 sec and the +2013-11-21,47.8555556,-121.9697222,Monroe,WA,fireball,180,4 orange flying object Monroe, Wa. +2013-11-21,47.9791667,-122.2008333,Everett,WA,unknown,30,Massive craft slowly moving away from my position. +2013-11-21,26.2708333,-80.2708333,Coral Springs,FL,fireball,300,Fireballs floating across sky then dissappearing. +2013-11-21,40.0391667,-76.4311111,Mountville,PA,light,120,Small changing light moving different directions. ((NUFORC Note: Possibly a "twinkling" star?? PD)) +1960-11-02,40.7555556,-73.5880556,Westbury,NY,disk,60,Father Mother and son in car stopped in middle of street to see a saucer with lights around the rim hovering above their house. +1966-01-13,47.5963889,-120.6602778,Leavenworth,WA,triangle,300,red triangular ufo observed on clear day +1967-11-02,37.8736111,-122.4555556,Tiburon,CA,teardrop,20,Teardrop outlined in white light, three circular white lights in dark interior, silent. +1968-01-12,42.7861111,-112.8536111,American Falls,ID,disk,20,Large glowing green in color looking up at the bottom it was round +1973-01-12,36.7280556,-108.2180556,Farmington (Se Of, Deserted Area, Hwy 44),NM,light,180,A large bright light apeared seemingly from nowhere.It followed my 18 wheeler for 1-2 min. then disapeared as quickly. It wasn't a pr. +1974-11-02,29.9544444,-90.075,New Orleans,LA,other,10,Hugh blinking red light over New Orleans East. +1978-01-12,42.9633333,-85.6680556,Grand Rapids,MI,disk,300,I submitted this report back in 2005. I have been reviewing my report from that time. There are a couple of things that are incorrect. +1978-01-12,42.9633333,-85.6680556,Grand Rapids,MI,disk,300,Saw a craft decend over some power lines and hover. Saucer shaped with bright lights around the middle +1980-01-12,37.8772222,-122.1786111,Orinda,CA,sphere,2400,My house was on the golf course i became very uneasy and had butterflys in my stomache I picked up a firearm before the sighting a s +1981-01-12,41.7386111,-80.77,West Jefferson,OH,triangle,60,Red Triangle Over West Jefferson. +1985-11-02,41.5136111,-73.6066667,Patterson,NY,cigar,900,As traveling North on Route 22, NY approx town Patterson, my son and I had stopped to see this object with colored lights, traveling ve +1988-01-12,42.375,-71.1061111,Cambridge,MA,oval,15,8 gliding craft in formation with a 9th "quantum jump" scout craft +1993-11-02,37.9747222,-87.5558333,Evansville,IN,triangle,1800,Driving home from work one evening late around 2am on hwy 44 evansville indiana I noticed in the night sky a strange light. It looked s +1993-01-12,43.0605556,-88.1063889,Brookfield,WI,triangle,900,A triangle craft this huge and so low does not seem possible but it's true. +1994-01-12,29.1383333,-83.0352778,Cedar Key,FL,chevron,300,Huge bluish black delta wing 50 feet or less over my head while deer hunting from my tree stand in FL !! +1997-11-02,29.7630556,-95.3630556,Houston,TX,light,60,3 lights in line to V formation moving southwest.One light moved erraticaly and split making 180 degree turn +1997-11-02,40.2247222,-105.2708333,Lyons,CO,unknown,240,strange humming noise over house late at night +1997-11-02,44.5191667,-88.0197222,Green Bay,WI,light,600,A loose formation of 3 orange non-blinking lights observed slowly crossing evening sky. +1997-01-12,45.7833333,-108.5,Billings,MT,light,300,Two bright red lights moving in perfect formation flew over Billings on the evening of Jan.12, 1997. They were flying at an altitude n +1998-11-02,42.9633333,-85.6680556,Grand Rapids (North Of),MI,fireball,60,Blue-green fireball appears, lighting the ground all around. Long "tail" has a small white light on it +1998-11-02,32.7833333,-96.8,Dallas (Irving/Valley Ranch?),TX,fireball,1,More than likely a shooting star, but thought I should report it. +1999-01-12,32.7833333,-96.8,Dallas,TX,circle,90,it appears as a red/orange dot, it was about 12:00p.m. big as the independence day movie ship. +1999-11-02,47.3811111,-122.2336111,Kent,WA,disk,420,3 CRAFTS,RED AND WHITE FAST BLINKING LIGHTS,TRAVELING ERRATICALLY,QUIETƹCRAFT CHANGE TO 3 BRIGHT WHITE LIGHTS THAN BACK TO RED AND WHI +1999-01-12,40.665,-78.7125,Hastings,PA,diamond,300,As we prepared to go for the drive home after a dinner party we noticed that our vehicle would not start. It was strange because the v +1999-11-02,30.4505556,-91.1544444,Baton Rouge,LA,triangle,5,I happen to look up at the stars and saw 3 craft heading south. Two were smaller with 3 lights eachƹ larger craft with a circle of li +1999-11-02,34.5022222,-97.9575,Duncan,OK,other,4,Looking high into the eastern sky, I saw an "arc" of dim orange lights gliding silently from the north, and curve towards the southeast +1999-11-02,34.1161111,-118.1494444,South Pasadena,CA,circle,180,While sitting in my patio, I glanced up and was amazed at an array of glowing orange spheres moving across the sky. +2000-11-02,42.2613889,-94.0683333,Dayton,IA,disk,18000,bright star like lights seen through a telescope +2000-01-12,34.0522222,-118.2427778,Los Angeles,CA,disk,90,It was a metalic looking object with blue and yellow flashing lights. +2000-11-02,45.1386111,-90.34,Medford,WI,circle,5,just prior to going to work at a local factory,I was out behind the building ,where it was dark,the sky was partly cloudy,temp was arou +2000-01-12,47.9130556,-122.0969444,Snohomish,WA,triangle,120,Triangle shaped object hovering above farmland +2000-11-02,33.4669444,-117.6972222,Dana Point,CA,triangle,30,Triangular object sighted over Dana Point, California. +2000-11-02,40.8066667,-74.1858333,Bloomfield,NJ,disk,180,Bloomfield, N.J., 7:40pm EST, saucer-shaped craft heading north/northeast coming from the southeast. +2000-11-02,40.9413889,-73.9597222,Cresskill,NJ,disk,360,Hudson Valley-New Jersey-Large Sighting, No Hoax +2000-11-02,38.2325,-122.6355556,Petaluma,CA,formation,120,Large object seen hovering over Petaluma, California neighborhood. +2000-11-02,46.2113889,-119.1361111,Kennewick,WA,triangle,900,Two objects which appeared to be very low and triangular with white light. They were spread apart and traveled from left to right. When +2000-11-02,32.7252778,-97.3205556,Fort Worth,TX,fireball,1320,IT LOOKED LIKE A SHOOTING STAR BUT IT WAS BELOW THE CLOUDS. +2001-01-12,34.1808333,-118.3080556,Burbank,CA,changing,30,It appeared to be cascading down the tree outside, a huge fir with a slanting shape. The object curled down in puff-like shapes of smok +2001-01-12,36.175,-115.1363889,Las Vegas,NV,other,1800,They were dancing in the sky and the air was VERY cold +2001-11-02,35.1494444,-90.0488889,Memphis,TN,changing,2,Daylight sighting of a black object moving at high speed below low cloud cover. +2001-11-02,34.7463889,-92.2894444,Little Rock,AR,triangle,6,My friends, and I were out for lunch when we saw three triangle shaped lights beaming at a very low altitude. The lights were so bright +2001-11-02,38.7522222,-121.2869444,Roseville,CA,light,120,Bright light over I-80 East at Douglas. The light shot horizontally toward the East leaving a trail of light and disappeared. +2001-01-12,39.7136111,-82.5994444,Lancaster,OH,cigar,600,We watched a cigar/cylinder shaped object about ten degrees above the horizon. +2001-01-12,37.7933333,-79.9941667,Covington,VA,circle,180,I know what I saw this is not a hoax +2001-11-02,40.7141667,-74.0063889,New York City (Brooklyn),NY,teardrop,240,white glowing craft with little blue dot chasing it +2002-11-02,48.0841667,-121.9675,Granite Falls,WA,light,2,Bright light round with something like a comet tail. +2002-11-02,48.0841667,-121.9675,Granite Falls,WA,circle,900,brilliant ball of light +2002-11-02,40.7841667,-74.6972222,Chester,NJ,other,120,North New Jersey Rocket shaped craft seen +2002-01-12,34.1083333,-117.2888889,San Bernardino County,CA,unknown,300,for every government agency would finally put the rumors to rest and tell the truth +2002-01-12,41.4813889,-74.3605556,Scotchtown,NY,triangle,20,Large triangular object glided crosswise over traffic on highway, descending, banked 45 turning 90 and appeared to land. +2002-01-12,32.4419444,-97.7938889,Granbury,TX,disk,660,Unusual object flying low at a slow speed +2002-11-02,40.9477778,-90.3711111,Galesburg,IL,circle,300,silver, circular object moving at great speed with no apparent rising or setting on a horizon +2002-11-02,35.1186111,-120.5897222,Arroyo Grande,CA,changing,1200,black object appeared to float and change shape at altitude. maybe from vandenburg +2002-01-12,45.5236111,-122.675,Portland,OR,light,60,Sighting of lights over willamette river in Portland, OR Saturday 1/12/02 @ 4:10pm near two rainbows +2002-11-02,39.0638889,-108.55,Grand Junction,CO,other,180,I was walking towards City Market Supermarket on Rood Avenue (going west) today. the sun had just set minutes before. It was still very +2002-11-02,38.7013889,-90.1486111,Granite City,IL,light,10,I SAW TWO BIG GLOWING RED LIGHT'S OVER GRANITE CITY ILLINOISE +2002-11-02,33.8536111,-118.1330556,Lakewood,CA,triangle,900,Glowing slow moving object stope +2002-11-02,33.8536111,-118.1330556,Lakewood,CA,triangle,900,Slow moving, glowing, pulsing object stopped motionless for approximatedly 10 minutes, then vanished at high rate of speed +2002-11-02,48.051944399999996,-122.1758333,Marysville,WA,sphere,300,Large sphere shaped light swaying and bobbing over the Puget Sound. +2002-11-02,28.9002778,-81.2638889,Deltona,FL,flash,3,(it was very bright and then it kept flashing) +2002-11-02,34.3513889,-82.0594444,Waterloo,SC,light,10,Two points of light chased by helicopters over Lake Greenwood, South Carolina +2002-01-12,40.2969444,-111.6938889,Orem,UT,teardrop,180,3 teardrop shaped crafts hovered in the sky changing color +2002-01-12,33.4483333,-112.0733333,Phoenix,AZ,rectangle,8,While sitting around the campfire, my son and I observed a rectangular object in the north east skies of northern Phoenix. This object +2002-01-12,36.6002778,-121.8936111,Monterey,CA,triangle,2,Silent, craft flying at an average speed with lights in a triangular pattern. +2003-11-02,42.2711111,-89.0938889,Rockford,IL,unknown,2,November, Exact date I'm not sure of except it was early in the month. Sky was clear and I was taking a walk as I usually do. It was ju +2003-11-02,30.0797222,-95.4169444,Spring,TX,unknown,60,There were pulsed white light surrounding an object with circular blue lights with a ring of red and white light underneath. +2003-01-12,34.1808333,-118.3080556,Burbank,CA,fireball,240,Fireballs hovering over Southern California +2003-11-02,42.3716667,-88.09,Round Lake Beach,IL,triangle,3600,two objects one v shaped 3 lights on top, under brownish dimmed light another triangle shaped lights on top flying north. +2003-01-12,46.33,-94.4738889,Pillager,MN,triangle,600,5:00 am, Pillager, Mn. Dark, cold, clear morning! A huge, Black Triangle hovers above the Pillager Water Tower! +2003-01-12,37.948055600000004,-122.0597222,Pleasant Hill,CA,fireball,120,Big orangish-Reddish ball that just dissapeared!!! +2003-11-02,45.2788889,-92.985,Forest Lake,MN,triangle,420,Saw a triangular shaped craft that emmitted a beam directly at us and then followed over the top of our vehicle for a short distance. +2003-01-12,30.3958333,-88.8852778,Biloxi,MS,light,180,Biloxi couple witnesses odd lights over Gulf of Mexico +2003-01-12,38.5733333,-109.5491667,Moab,UT,fireball,40,a round object in the sky. +2003-11-02,32.7833333,-96.8,Dallas,TX,flash,3,Very bright light (almost green) fell out of the sky and then disappeared in a very well-lit area. Did not look like a shooting star. +2003-11-02,36.1511111,-95.5091667,Inola,OK,light,7200,Strange flashing lights. +2004-01-12,35.6869444,-105.9372222,Santa Fe,NM,light,600,Multiple red lights decending towards earth +2004-01-12,42.5555556,-72.0680556,Templeton,MA,light,420,pulsating light +2004-11-02,36.175,-115.1363889,Las Vegas,NV,teardrop,300,Large fireball shape moving from east to west over the mtns. Noticed aircraft above it from a distance +2004-01-12,38.9716667,-95.235,Lawrence,KS,unknown,300,Bright, Color Changing Fast Object +2004-01-12,40.8022222,-124.1625,Eureka,CA,fireball,120,Can firballs move like that? +2004-11-02,41.9911111,-70.8625,Halifax,MA,formation,600,multiple lights on election day 2004 +2004-01-12,44.56,-90.5961111,Neillsville,WI,unknown,300,red-yellow-blue lights in southern-western sky in Neillsville WIS +2004-01-12,31.7586111,-106.4863889,El Paso,TX,triangle,420,A triangular object that didnt make a sound seen at a low level around El Paso +2004-11-02,43.6852778,-85.8158333,Brohman,MI,light,900,Flashing light making zig-zag patterns in sky, as well as hovering. +2004-01-12,41.2097222,-93.8463889,Truro,IA,triangle,1200,UFO seen by two well grounded college educated individuals +2004-01-12,41.2097222,-93.8463889,Truro,IA,triangle,120,MUFON/IOWA Report: 1/13/2004 3:25:05 AM 03:25. Investigated by Iowa MUFON,Beverly Trout and Pam Brackenbury. +2005-01-12,39.0058333,-122.0083333,College City,CA,disk,2700,About 5.5 hours total (between two sightings) oscillating lights are seen by 3 people in the country skies. +2005-11-02,29.4238889,-98.4933333,San Antonio,TX,light,420,Bright Light seen over Northeast San Antonio, TX +2005-11-02,41.85,-87.65,Chicago,IL,other,300,Low-flying craft with vapor trail spotted at nightfall. +2005-11-02,41.85,-87.65,Chicago,IL,other,480,odd bird-shaped flying device spotted in urban area +2005-11-02,34.1013889,-84.5194444,Woodstock,GA,triangle,10,Large Craft Low Altitude No Sound 500 Lights On Object0: Yes +2005-11-02,33.7738889,-117.9405556,Garden Grove,CA,light,1800,On Nov. 02, 2005 at 5:30 pm, my family and I witnessed a strange display of lights over the city.... +2005-11-02,41.1111111,-75.3866667,Pocono Summit,PA,oval,240,((NUFORC Note: Sighting of ISS. PD)) White Oval Floating Light +2005-11-02,44.6688889,-90.1716667,Marshfield (Rural),WI,fireball,480,multiple orbs in central WI hunted by jets +2005-11-02,36.8527778,-75.9783333,Virginia Beach,VA,sphere,120,3rd night of Orb sighting in Larkspur area of Virginia Beach +2005-11-02,32.7355556,-97.1077778,Arlington,TX,light,14400,The object appears stationary very close, moving from one place to enother,then stops and disappears. ((Sighting of Mars?? PD)) +2005-01-12,41.865,-80.79,Ashtabula,OH,triangle,900,Triangular object followed by two other strange UFOs +2005-11-02,47.7444444,-93.6538889,Bigfork,MN,unknown,600,Two UFO's Sighted in Northern MN. +2005-11-02,38.2511111,-87.5811111,Fort Branch,IN,light,180,Mysterious lights over a field in southern IN +2005-11-02,38.9908333,-88.1625,Newton,IL,triangle,120,we were feeding animals and there were about 7 lights in the souther sky and they were bright yellowish-orange. they were there for abo +2005-01-12,34.698055600000004,-118.1358333,Lancaster,CA,triangle,1200,Triangular craft flies over highway... low altitude... then disappears only to reappear later +2005-11-02,42.9133333,-85.7052778,Wyoming,MI,sphere,600,((NUFORC Note: Probable sighting of Mars. PD)) I observed what appeared to be an a/c on final to GR-Ford w/ landing lights. +2005-01-12,42.5875,-72.6,Greenfield,MA,triangle,180,Large wedged shaped object, with two large bright lights, and no noise. +2005-11-02,27.5155556,-97.8558333,Kingsville,TX,light,1800,Strange light hovers outside of Kingsville +2005-01-12,34.1705556,-118.8366667,Thousand Oaks,CA,formation,4,Three high speed orange lights in a long narrow triangular pattern over Thousand Oaks CA. +2005-11-02,39.0019444,-87.9088889,Oblong (Rural),IL,formation,300,pulsating row of 4-5 very bright lights in SW sky (southern IL), Triangle of 3 lights of same intensity, also small pulsing orbs +2005-11-02,35.9516667,-95.6505556,Coweta,OK,other,15,Green object seen in the sky at night. +2005-11-02,28.8022222,-81.6447222,Mt. Dora,FL,disk,5,while driving to work the other night I looked up and out of my top left corner of my windshield and saw this very bright light that lo +2005-11-02,37.3341667,-79.5233333,Bedford,VA,triangle,900,Three lights moving slowly overhead, no sound +2005-01-12,39.7286111,-121.8363889,Chico,CA,light,600,Orange star-like ball of light, erratic motion, no noise. +2005-01-12,38.52,-89.9838889,Belleville,IL,other,4,Odd looking thing in the sky. +2005-11-02,39.8016667,-89.6436111,Springfield,IL,light,2700,Flickering colored lights appear in the sky at the about the same time each night for ~ 45 min. ((NUFORC Note: Celestial body? PD)) +2005-11-02,33.9163889,-78.1613889,Oak Island,NC,fireball,900,sat on porch n saw a sparkling light was chages colors red-green-yellow flashing staying in one spot below a few stars * darkness +2005-11-03,44.8833333,-93.2827778,Richfield,MN,oval,120,Orange saucer shaped stationary object hung in the sky like a fixed object. 500 Lights On Object0: Yes +2006-01-12,34.8963889,-98.2002778,Cyril,OK,triangle,240,The sound of it made me go outside. +2006-01-12,39.7172222,-74.9697222,Sicklerville,NJ,light,120,Very bright light or lights in close proximity seemed to hover over South Jersey in the Sicklerville area. +2006-01-12,45.6691667,-108.7708333,Laurel,MT,fireball,1800,On my way home from work in Billings, Montana, I observed a huge, firey thing hanging in the sky North of Laurel, Montana where I live. +2006-11-02,34.1722222,-118.3780556,North Hollywood,CA,circle,300,Hovering silver ball over Burbank Airport +2006-01-12,39.6133333,-105.0161111,Littleton,CO,disk,2,Diamond shaped light above foothills near Rockies +2006-01-12,40.2322222,-76.885,New Cumberland,PA,light,60,rows of bright lights in the sky +2006-11-02,35.0716667,-81.65,Gaffney (Near),SC,light,30,two very bright looking stars, top once flickered out then the bottom one flickered out and was gone +2006-11-02,33.6,-117.6711111,Mission Viejo,CA,light,900,I WAS STANDING IN MY BACKYARD LAST NIGHT AND WAS FACING TO THE SOUTH WHEN I NOTICED 4 BRIGHT LIGHTS TRAVELING IN CLOSE FORMATION TWORD +2007-11-02,40.5141667,-88.9905556,Normal,IL,disk,20,standing outside my friends house looking at the stars we saw an object with no lights it. +2007-11-02,28.2438889,-82.7194444,New Port Richey,FL,other,10,v shaped object moving southbound in New Port Richey FL +2007-11-02,29.4238889,-98.4933333,San Antonio,TX,chevron,45,As I pulled out of a gas station, I saw a UFO hover over me. +2007-11-02,40.26,-74.2741667,Freehold,NJ,triangle,20,Flying then disappeared in to sky +2007-11-02,40.6952778,-80.305,Beaver,PA,changing,90,Two hovering, luminous yellow-white oval shaped lights joined like a barbell, with a long silver appendage and haze beneath it, +2007-01-12,41.5380556,-72.8075,Meriden,CT,circle,20,It appeared like a cload shape but moving extremely fast from I think west to east direction. +2007-01-12,41.9536111,-73.5111111,Millerton,NY,other,4,strange streaking blue light +2007-01-12,42.3583333,-71.0602778,Boston,MA,fireball,2,green light streaks over the middle of the Charles River in the area of the Hatch Shell +2007-01-12,42.2963889,-71.2930556,Wellesley,MA,fireball,3,Green fireball seen close to horizon +2007-01-12,32.7833333,-96.8,Dallas,TX,disk,300,UFO spotted in air past DFW airport---not a plane or hot air balloon +2007-11-02,47.9033333,-91.8669444,Ely,MN,cigar,15,Blue tube over Ely Jackpines +2007-11-02,33.7205556,-116.2147222,Indio,CA,fireball,300,Comet-like fireball with Red & Green lights seen in Coachella Valley, CA +2007-01-12,34.1975,-119.1761111,Oxnard,CA,cross,3600,Bright unusual lights in sky +2007-11-02,37.9086111,-121.5991667,Discovery Bay,CA,other,1800,Object which looked like a lighted jellyfish pulsating around a star below and to the right of Cassiopea. +2007-11-02,37.9086111,-121.5991667,Discovery Bay,CA,other,1800,Pulsating lights in a bell shape seen through binoculars near at star below Cassiopea. ((NUFORC Note: Possibly Sirius. PD)) +2007-11-02,38.7908333,-121.2347222,Rocklin,CA,light,120,Strange light in Rocklin CA +2007-11-02,40.3141667,-112.0061111,Eagle Mountain,UT,triangle,60,November 2nd, 2007 we saw a huge black triangular-shaped craft fly over us in Eagle Mountain, Utah. +2007-11-02,33.8594444,-84.6838889,Powder Springs,GA,triangle,30,I observed a triangle in the sky. +2007-11-02,47.3294444,-122.5788889,Gig Harbor,WA,triangle,10,Medium sized triangular shaped craft hovered and shot off extremely fast +2007-11-02,41.1586111,-101.0022222,Hershey,NE,light,20,Bright Light in northern Sky, not any Planet I know of and Not the Space Station +2007-11-02,41.6527778,-70.2833333,Hyannis,MA,diamond,7200,My sister saw something highly unusual from the windows of her second floor apartment in Hyannis, Massachusetts. She is 56 years old an +2007-11-02,41.2586111,-95.9375,Omaha,NE,other,600,Wishbone frame over southwest Omaha, emerging from clouds. +2008-01-12,40.6113889,-79.8372222,Russellton,PA,triangle,120,UFO over Russellton PA +2008-11-02,36.5297222,-87.3594444,Clarksville,TN,changing,1200,UFO SIGHTHING IN CLARKSVILLE TN 2NOV08 ((NUFORC Note: Sighting of Sirius?? PD)) +2008-01-12,33.9533333,-117.3952778,Riverside,CA,fireball,25,Fast traveling object during late night +2008-11-02,34.1477778,-119.1941667,Port Hueneme,CA,light,1800,I witnessed two objects each comprised of five lights at the Port Hueneme Beach in CA. +2008-01-12,40.5677778,-84.1936111,Wapakoneta,OH,triangle,75,trianglular crafts in a triangle formation over wapakoneta, ohio +2008-11-02,39.4622222,-76.2794444,Abingdon,MD,fireball,300,I saw above the tree lines (not that far above) what looked to be like a shooting star/meteorite race across the sky. However it was lo +2008-11-02,41.7758333,-72.5219444,Manchester,CT,unknown,360,Bright light hovering suddenly disappeared. +2008-01-12,42.5836111,-83.2455556,Bloomfield Hills,MI,unknown,120,Two flying aircrafts morphed into one. +2008-11-02,33.4483333,-112.0733333,Phoenix,AZ,sphere,20,Silver Sphere moves very fast over Camelback Mt. then disappears. +2008-01-12,34.0194444,-118.4902778,Santa Monica,CA,changing,180,A UFO flow over the Santa Monica, Ca area at about 10:38 or 10:39 PM. on a clear and windy night. It was not a plane. +2008-01-12,27.7705556,-82.6794444,St. Petersburg,FL,changing,10800,Strange changing object with different color lights and moving slowly, left to right, however staying in same location +2008-01-12,39.8911111,-74.9222222,Marlton,NJ,egg,600,Bright egg shaped UFO seen by 4 people +2008-01-12,39.2638889,-103.6916667,Limon,CO,unknown,30,After noticing a bright light in the sky, I watched it for a while until it vanished. +2008-11-02,43.2322222,-99.43,Gregory,SD,sphere,600,white sphere seen about 1/3 the size of a full moon, hovering then disappearing at high rate of speed +2008-11-02,42.6191667,-78.6580556,Glenwood,NY,light,5,Bright white light moving fast and low accross the horizon. +2008-01-12,40.2625,-80.1875,Canonsburg,PA,triangle,300,strange and lonely light attracted the attention of two seperate groups of people as it flew overhead +2008-11-02,29.4238889,-98.4933333,San Antonio,TX,oval,30,Shiny, oval shaped object in the sky, hovering above San Antonio +2008-11-02,34.7738889,-79.4630556,Laurinburg,NC,oval,600,I have pictures. +2008-11-02,41.8005556,-73.1216667,Torrington,CT,triangle,480,UFO +2008-01-12,42.2911111,-71.125,Roslindale,MA,oval,5,I had a short Close Encounter of the First Kind. +2008-01-12,33.9022222,-118.0808333,Norwalk,CA,triangle,15,3 Tringle white lights traveling from north to south in a very low altitud and a steady formation line making it looks like triangle +2008-01-12,35.8680556,-83.5619444,Sevierville,TN,other,60,UFO seen in the night sky. +2008-11-02,38.52,-89.9838889,Belleville,IL,triangle,45,Large triangular UFO sighting near Belleville, IL +2008-11-02,43.0386111,-78.8644444,North Tonawanda,NY,light,2,Headed toward Canada +2008-01-12,36.2841667,-82.1727778,Hampton,TN,egg,15,observed half egg shaped object pic on phone +2008-11-02,41.5580556,-73.0519444,Waterbury,CT,fireball,480,Deep Red Perfect Circle shaped object hovering in the sky +2008-11-02,41.6897222,-87.7972222,Worth,IL,light,10,Shooting star? +2008-01-12,40.7255556,-75.3944444,Bath,PA,unknown,30,bright glowing light darting across the sky. +2008-11-02,30.6033333,-87.9036111,Daphne,AL,unknown,1800,Blue/Red/Green flashing object above Mobile, Al. ((NUFORC Note: Sirius? PD)) +2008-01-12,33.8491667,-118.3875,Redondo Beach,CA,flash,2,a UFO spotted late at night in Los Angeles area on 1/12/08 +2008-11-02,34.0230556,-84.3616667,Roswell,GA,light,2,Pale blue light streak across windshield in Roswell 11/02/08. +2009-01-12,34.5033333,-82.6502778,Anderson,SC,light,1260,Unknown light hovering in sky toward Townville +2009-01-12,25.9869444,-80.2325,Miramar,FL,light,300,U F O caught on home surveillance camera...UNBELEIVABLE! +2009-01-12,37.9622222,-122.3444444,San Pablo,CA,formation,2700,Many star like objects fly in formation then blink out as they fly toward coast +2009-11-02,26.7052778,-80.0366667,West Palm Beach,FL,changing,1200,Two objects over West Palm Beach Florida. One changed shape and both disappeared +2009-01-12,35.4661111,-82.5166667,Arden,NC,light,660,Bright star-shaped light with red center through binos appeared to have yellow and blue trails or bursts coming out of it. +2009-01-12,40.4694444,-123.7986111,Bridgeville,CA,light,43200,Bright Light In Sky. ((NUFORC Note: Sighting of Venus?? PD)) +2009-01-12,37.9886111,-84.4777778,Lexington,KY,other,30,A friend and I were driving past our local shopping center when we noticed some odd lights in the sky. We observed the lights created a +2009-01-12,40.6258333,-75.3708333,Bethlehem,PA,circle,45,A large bright orange circular object was seen close to the moon that moved and dissappeared behind the moon.. +2009-01-12,47.1619444,-114.0841667,Arlee,MT,flash,1200,A flash above mountains and went from bright to dull several times; looked with telescope and definate object-tried to photograph. +2009-11-02,43.3666667,-124.2166667,Coos Bay,OR,circle,45,Glowing green light near street intersection spotted, then shoots straight up. +2009-11-02,41.7711111,-81.05,Madison,OH,triangle,1800,I saw a triangle craft hovering up close +2009-11-02,41.2586111,-95.9375,Omaha,NE,light,30,I was looking up at around 23:00 northwards, and saw what appeared to be a rainbow-colored, as in changing colors, up in the sky. It st +2009-01-12,32.5091667,-92.1191667,Monroe,LA,triangle,300,Unusually fast and triangular shaped craft with red and green flickering lights underneath +2009-11-02,43.1063889,-76.2180556,Liverpool,NY,cross,300,3 lighted circular aircraft +2009-11-02,31.435,-97.7436111,Gatesville,TX,rectangle,60,2 red lights on back 1 bright white on the front shaped like a old bigbody Lincoln towncar with no top like a Flat rectangular brick +2010-01-12,38.0527778,-81.1041667,Fayetteville,WV,sphere,420,something followed my family and left a piece behind +2010-11-02,42.1180556,-88.0961111,Inverness,IL,disk,1800,Stationary object over with flashing colored lights in center and 4 or 5 dark disks on side of object. +2010-01-12,44.0522222,-123.0855556,Eugene,OR,unknown,120,Awaken by several episodes of BRIGHT FLASHING LIGHT and a very LOUD mysterous noise. +2010-11-02,34.1975,-119.1761111,Oxnard,CA,disk,600,2 PICTURES TAKEN OF SUNRISE FROM PHONE CAMERA ABOUT 7 AM +/- IN MID TOWN OXNARD LOOKING EAST 2ND PHOTO SHOWS 3 SAUCER LIKE OBJECTS +2010-11-02,42.2597222,-72.2402778,Ware,MA,oval,5,Oval white blue light moving fast with no sound (second in the last week) +2010-11-02,43.0125,-83.6875,Flint,MI,egg,180,Flint Michigan November 2 2010 UFO sighting oval gray grey metallic sighting +2010-11-02,30.2669444,-97.7427778,Austin,TX,sphere,40,Silver metallic spherical object moving in the afternoon sky over Austin. +2010-11-02,39.7683333,-86.1580556,Indianapolis,IN,cylinder,60,silver cylinder object in sky 3ft L x 2Ft H white circle moved to cover whole object then disappeared +2010-01-12,44.0463889,-123.0208333,Springfield,OR,changing,180,black floating object with lights +2010-01-12,37.6922222,-97.3372222,Wichita,KS,teardrop,300,Orange teardrop-shape craft +2010-11-02,37.5630556,-122.3244444,San Mateo,CA,triangle,6,Large, dark triangular stealth aircraft with no lighting traveling south at 1500 ft just after dark. +2010-11-02,42.1013889,-72.5902778,Springfield,MA,cigar,10,Large cigar craft traveling at high speed and low altitude. +2010-11-02,43.6105556,-72.9730556,Rutland,VT,fireball,180,extremly low in the sky streaking horizontally leaving a long trail behind itself and eventually exploding. +2010-01-12,35.1452778,-77.7041667,Deep Run,NC,other,10,Car like object in the sky +2010-11-02,37.8716667,-122.2716667,Berkeley,CA,triangle,420,Triangular Configuration of Red Lights over Berkeley, CA +2010-01-12,43.0116667,-88.2313889,Waukesha,WI,disk,900,five glowning globes over waukesha,wi +2010-11-02,43.3666667,-124.2166667,Coos Bay,OR,triangle,5,Black triangle cruised above treetops right over my daughter and me! +2010-11-02,46.4736111,-93.8986111,Deerwood,MN,oval,25,Two oval objects with soft green light inside hovering near Deerwood Mn. then moved s.e. +2010-11-02,43.9186111,-69.8016667,Woolwich,ME,light,300,A light was i the sky it moved higher in the sky and left a white and orange trail and then disappeared it had no sound. +2010-11-02,41.2008333,-73.3811111,Weston,CT,unknown,20,Rocket-like object streaking across the sky with whitish tail +2010-11-02,43.9011111,-85.8516667,Baldwin,MI,unknown,120,orange/reddish colored light blinked, reappeared different location , made circles(moved) and disappeared +2010-11-02,38.8813889,-94.8188889,Olathe,KS,light,60,bonfire ufo in the sky +2010-11-02,34.0522222,-118.2427778,Los Angeles,CA,other,1200,UFO fleet above Los Angeles +2010-01-12,37.595,-120.9566667,Ceres,CA,fireball,30,Fireballs seen from Ceres, California +2011-11-02,35.4816667,-86.0886111,Manchester,TN,disk,600,red and blue disk hover over hunters in east tenn. +2011-01-12,28.6986111,-81.3083333,Winter Springs,FL,rectangle,1200,This has to be the 3rd or 4th time this vessel made its presence clear. To me from the same exact location. Movement quick, short dista +2011-01-12,45.6016667,-107.4605556,Crow Agency,MT,light,60,driving to work spotted bright light in the sky... +2011-01-12,37.3394444,-121.8938889,San Jose,CA,fireball,90,red/gray "fireball" in San Jose, Ca 1/12/11 +2011-11-02,25.7738889,-80.1938889,Miami,FL,circle,20,Circular, black dot travelling at tremendous speeds across Miami. No explanation. +2011-11-02,36.175,-115.1363889,Las Vegas,NV,formation,60,V formation of Ufos fly over Las Vegas NV +2011-11-02,39.7391667,-104.9841667,Denver,CO,formation,120,Large silent silver spheres gliding across sky in formation. +2011-01-12,36.9822222,-76.6313889,Smithfield,VA,sphere,60,the red shpere shape objject hovered over an open field in front of my home for 40 seconds. my satelite dish went ou & my electircity f +2011-11-02,33.8622222,-118.3986111,Hermosa Beach,CA,egg,240,4 white egg shaped objects over Hermosa beach +2011-01-12,46.0705556,-93.6675,Onamia,MN,flash,2,flash seen at same time in different parts of state. +2011-11-02,41.5933333,-73.0858333,Oakville,CT,unknown,600,Zigzagging object +2011-11-02,36.0663889,-81.8705556,Linville,NC,cylinder,5400,Orange balls of light seen flying over Avery County, NC. +2011-01-12,44.8877778,-94.3694444,Hutchinson,MN,light,600,Hovering aircraft +2011-11-02,33.4222222,-111.8219444,Mesa,AZ,other,300,arrow shaped craft red and orange-white over arizona. +2011-01-12,41.4994444,-81.6955556,Cleveland,OH,flash,300,Beam of light over Cleveland Clinic Main Campus in Cleveland, Ohio That cause power loss. +2011-11-02,44.7319444,-93.2175,Apple Valley,MN,circle,1800,i was taking trash out to edge of street about 9:45 looked up and over to my right and thought i seen the northern lights but after con +2011-11-02,38.9558333,-76.9458333,Hyattsville,MD,light,300,While sitting in my car I saw to round lights that looked like the headlights from a automobile, then the two became one. +2011-01-12,30.6941667,-88.0430556,Mobile,AL,flash,300,ufos playing in the night sky near the southern cross star cluster +2011-01-12,42.3758333,-82.9375,Grosse Pointe Park,MI,other,240,Arced line of 9-11 orange lights, with the last four forming a square, moving slowly N, silent; lights disappeared one by one. +2011-11-02,32.3413889,-90.3216667,Clinton,MS,light,90,On Tuesday night Nov. 2, at 11:45 I was outside with my sister looking in her trunk and as we closed the trunk we noticed a light flash +2012-11-02,33.4483333,-112.0733333,Phoenix,AZ,triangle,300,The object sounded like a helicopter but look like it was floating and the lights turned into one light then the other two turned back +2012-01-12,32.4805556,-80.9805556,Ridgeland,SC,cigar,60,Cigar shape slow moving above tree tops +2012-01-12,37.8783333,-88.3933333,Texas City,IL,sphere,2520,Sitting out by a bonfire in an area near a hwy and inter-county bike trail, a few friends and I observed 4 low flying fireball craft. +2012-01-12,22.0783333,-159.3219444,Kapaa,HI,oval,3600,2 objects seen by the naked eye by 3 different people at the same time. +2012-01-12,25.7738889,-80.1938889,Miami,FL,egg,1,My brother was filming half a dozen kids jumping of a bridge while the object flew silently over them heading to Cuba. +2012-01-12,34.2783333,-119.2922222,Ventura,CA,light,360,Blue/red light seen 'dancing' above Ventura, CA +2012-11-02,33.4483333,-112.0733333,Phoenix,AZ,formation,30,At about 6:30pm in Phoenix my mom was walking me out to my truck. I noticed 3 non-flashing bright white lights spaced evenly apart. The +2012-11-02,26.2708333,-80.2708333,Coral Springs,FL,light,120,It moved way too fast to be a plane or helicopter, and it was silent. +2012-01-12,29.5072222,-95.0947222,League City,TX,sphere,30,Two stationary, silent, super bright white spheres about 100-200 feet in the air. +2012-01-12,37.2638889,-122.0219444,Saratoga,CA,other,4,Flash of light that lit entire nighttime sky, traveling West to East. Followed by a power flicker of at least 25 miles. +2012-11-02,43.4016667,-94.8325,Estherville,IA,triangle,600,Orange lights in triangle formation over Emmet County, Iowa on 11/2/12. +2012-01-12,44.739444399999996,-93.1255556,Rosemount,MN,triangle,60,Triangle of Lights merged into 1 light and then went left quickly...was in total shock! +2012-11-02,43.7486111,-87.9769444,Plymouth,WI,fireball,360,Yellow /Orange light ( fire in the sky) whitnessed by two in Plymouth WI +2012-11-02,41.7355556,-111.8336111,Logan,UT,circle,60,Orange lights in the sky +2012-11-02,44.3891667,-69.3033333,Liberty,ME,light,300,Fireball in Liberty +2012-11-02,35.9172222,-82.3011111,Burnsville,NC,circle,1800,Glowing silverish sphere type object, with bright swirling, varying illumination. Sphere appears quite often. +2012-11-02,43.9127778,-115.8913889,Centerville,ID,unknown,900,Nightime sighting of craft making impossible movements for any sort of airplane +2012-11-02,59.6425,-151.5483333,Homer,AK,flash,1200,Strobe light +2012-01-12,42.5847222,-87.8211111,Kenosha,WI,flash,1,Sudden Flash of Light +2012-11-02,33.4666667,-79.1,Litchfield Beach,SC,fireball,10,Bright orange light descending towards ocean, two flashes and then it looked like it just dissipated +2012-01-12,37.775,-122.4183333,San Francisco,CA,changing,300,Bright Orange round ball, changed shape to elongated object, then returnes into bright orange ball. +2012-11-02,60.4877778,-151.0583333,Soldotna,AK,flash,600,3 bright consecutive flashes of light. +2012-11-02,39.2688889,-84.2638889,Loveland,OH,circle,180,It just dissaperared. +2012-11-02,41.7491667,-91.5977778,North Liberty,IA,light,1800,Four white lights swirled in arcs across the sky, then were absorbed into a red/blue orb which sped away. +2012-11-02,44.1002778,-70.2152778,Lewiston,ME,light,300,Fast moving bright light that stopped suddenly +2012-01-12,36.1930556,-89.6555556,Caruthersville,MO,unknown,30,Floating blinking red and yellowish orange lights in Southeast Missouri near Hwy 412 +2012-11-02,33.9802778,-118.4508333,Marina Del Rey,CA,fireball,600,Red glowing, pulsating orbs flying low over Marina Del Rey. One emitted a &quot;search light&quot; & they all disappeared in depth int +2013-11-02,33.8136111,-92.4127778,Fordyce,AR,fireball,600,One by one these nine to twelve brightly lit orange orbs flew overhead excelerating and decreasing in speed as they appeared to be foll +2013-01-12,41.0894444,-112.0638889,Syracuse,UT,circle,480,Nine orange lights ascending into western sky over Antelope Island. +2013-01-12,45.6797222,-111.0377778,Bozeman,MT,flash,3,Unidentified Flash. +2013-11-02,44.0805556,-103.2305556,Rapid City,SD,other,1800,Little blue green white and red flashing light, hovering of South East Rapid. +2013-11-02,42.3875,-71.1,Somerville,MA,circle,10800,Multiple lights on a round ufo over Boston, MA, Nov. 2, 2013. +2013-01-12,45.6388889,-122.6602778,Vancouver,WA,circle,900,Orange red fireballs go slowly across vancouver sky, caught on video. +2013-11-02,45.9047222,-122.7427778,Woodland,WA,circle,300,About a dozen orange lights in the sky under clouds above Woodland hills. Kind of in a triangle form. +2013-11-02,46.7311111,-120.6983333,Naches,WA,flash,1,My son and his wife were sitting in their bedroom near South Naches area. It was raining and still dark outside when there was a brilli +2013-11-02,39.8772222,-75.065,Haddon Heights,NJ,triangle,900,Brite lite in the sky very very brite north to south not normal! 4 of us saw it moved left to right then gone? +2013-11-02,41.1919444,-111.9705556,South Ogden,UT,light,900,Large star that was gone in the same night. ((NUFORC Note: Possible sighting of Arcturus? PD)) +2013-01-12,28.5380556,-81.3794444,Orlando,FL,fireball,90,Orlando Florida Glowing Orange Balls About 90 seconds 6 orange balls traveling across sky East to West. +2013-01-12,38.5816667,-121.4933333,Sacramento,CA,light,120,Orange lights near downtown. +2013-11-02,46.5927778,-112.0352778,Helena,MT,oval,3,Green orb stationary, accelerates to unimaginable speed, and vanishes. +2013-11-02,43.1636111,-73.0727778,Manchester,VT,light,600,Three red lights, one after the other, came up from the valley (off if rt 7 in Manchester VT) and disappeared in the clouds. +2013-01-12,34.8780556,-83.4011111,Clayton,GA,oval,300,At roughly 1700 hours my brother and best friend were leaving the house and noticed a cluster of lights in the sky behind the house. I +2013-11-02,42.865,-71.3744444,Londonderry,NH,light,600,3 bright white/orange lights moving slowly observed over Londonderry, NH. ((NUFORC Note: Sighting of Venus? PD)) +2013-11-02,39.0288889,-104.4825,Peyton,CO,light,7200,Very bright silent light in night sky. +2013-11-02,30.085,-97.84,Buda,TX,triangle,900,@7:15 pm my wife and I were driving down the fwy when we both noticed a purple ball of light hovering above a nearby neighborhood. +2013-11-02,33.9686111,-112.7288889,Wickenburg,AZ,light,1200,My husband, 9yr. old daughter were in our truck heading to Las Vegas from Phoenix. We were on highway 93, heading north just through W +2013-11-02,40.2291667,-74.9372222,Newtown,PA,sphere,10,Very bright red orb... road flair like...transited north to south...seemed like low altitude...at a planes speed... no noise heard... +2013-11-02,42.4972222,-82.9372222,Roseville,MI,cylinder,1200,Long tube like blinking light 300-400 feet long. +2013-11-02,38.4405556,-122.7133333,Santa Rosa,CA,triangle,15,Small, silent, unlit triangle craft. +2013-11-02,61.5813889,-149.4394444,Wasilla,AK,disk,300,A UFO was photographed, but Men in Black came and confiscated the evidence. +2013-11-02,42.2208333,-70.9402778,Weymouth,MA,light,120,Two lights hovering over Weymouth shoot to earth at tremendous speed. +2013-11-02,43.0972222,-89.5041667,Middleton,WI,other,60,I saw four black helicopters flying southwest in a single file formation, only the one in front had lights on. +2013-11-02,25.9561111,-80.1394444,Aventura,FL,circle,900,Viewed 6 circular reddish orange lights rising from ground level to very high altitude. +2013-01-12,34.0233333,-84.6155556,Kennesaw,GA,oval,60,ONE BRIGHT ORANGE OVAL SHAPED CRAFT CAME IN LIKE A JET TO WITHIN 300 YARDS OF HOME, BUT SILENTLY, AND THEN HOVERED SLOWLY BEFORE DISAPP +2013-01-12,34.0233333,-84.6155556,Kennesaw,GA,oval,60,OVAL OBJECT ORANGE, LOOKED METALLIC,OR SOLID. EMITTING HEAT WAVES, CIRCLED IN A GLOW AND COMPLETY SILENT. +2013-11-02,39.6427778,-84.2866667,Miamisburg,OH,light,30,Three orbs hovering in a triangular configuration. Lights intermittently disappear and reappear as one light. +2013-01-12,43.55,-96.7,Sioux Falls,SD,light,120,An orange bright light pulsating over the east sky going south in Sioux Falls, SD, at 9:00 pm on January 12, 2013. +2013-11-02,34.1477778,-119.1941667,Port Hueneme,CA,light,300,Orange Lights Over Port Heneme, CA. +2013-11-02,28.7394444,-81.1152778,Geneva,FL,circle,300,Strange red lights suspended in air then vanished. +2013-11-02,35.0886111,-92.4419444,Conway,AR,fireball,300,UFO sighting in Conway, AR. +2013-01-12,33.9813889,-81.2363889,Lexington,SC,light,900,15 to 25 orange round lights above Lexington in a formation. +2013-01-12,40.2969444,-111.6938889,Orem,UT,sphere,300,Two red/orange spheres over Orem, Utah. +2013-11-02,39.2402778,-76.8397222,Columbia,MD,light,2,Bright Green Light Shoots Across The Sky. +2013-11-02,41.4372222,-71.5019444,Wakefield,RI,fireball,300,Silent flaming ball moving around 50 knots at 1500 feet altitude. Dead calm wind. Could see flames dancing. +2013-11-02,37.9086111,-121.5991667,Discovery Bay,CA,oval,900,Reddish orange sphere seen by off duty police officer and his family. +2013-11-02,41.4858333,-73.0511111,Naugatuck,CT,light,120,Amber light. +2014-01-12,40.9008333,-73.3436111,Northport,NY,diamond,30,Orange orb leading d diamond shaped glowing orange with green white lights in middle heading N over Eaton's Neck, NY. +2014-01-12,34.6086111,-98.39,Lawton,OK,teardrop,5,Very light blue flame heading towards the ground. +2014-01-12,40.6591667,-78.7819444,Northern Cambria,PA,circle,180,Object with light increasing directly up. +2014-01-12,39.9375,-77.6613889,Chambersburg,PA,cigar,900,2 white cigar-shaped objects with a central black band traveling east to west. +2014-01-12,34.7302778,-86.5861111,Huntsville,AL,disk,480,Daylight-Saucer with cloud and two other lights. +2014-01-12,34.1780556,-79.4008333,Marion,SC,disk,180,Black saucer over Marion, SC. +2014-01-12,28.0833333,-80.6083333,Melbourne,FL,cylinder,900,Five photos were taken. ((NUFORC Note: Possible bird in flight, we believe? Either a seagull, or a pelican, we suspect. PD)) +2014-01-12,33.3536111,-90.5925,Inverness,MS,cigar,900,500 foot wide silver object moved over 2 1000 foot radio towers no sound then disapiered. +2014-01-12,41.9038889,-72.4702778,Ellington,CT,fireball,5,Fireball seen in CT sky. +2014-01-12,38.2097222,-84.5588889,Georgetown,KY,light,2700,Orange streaks of light over Georgetown. +2014-01-12,40.9952778,-74.0125,River Vale,NJ,egg,4,BRILLIANT WHITE OBJECT MOVED ACROSS EASTERN SKY, LEFT NO TRAIL ARCED DOWNWARD NEVER LOOSING ITS BRILLIANCE AND DISAPPEARED BEHIND TREES +2014-01-12,29.6483333,-81.6377778,Palatka,FL,fireball,420,Three fireballs moving slowly across sky. +2014-01-12,43.1547222,-77.6158333,Rochester,NY,light,120,At approximately 7:30 pm , my wife and I witnessed an orange glow in the southwest sky. The glow became larger as it got closer. There +2014-01-12,44.6388889,-70.0161111,New Sharon,ME,circle,1200,Very bright white circle... occasionally small explosions of orange that seemed to propel the vessel. +2014-01-12,41.4994444,-81.6955556,Cleveland,OH,light,240,15 balls of light moving quite fast in a line towards Lake Erie. +2014-01-12,34.3527778,-82.9322222,Hartwell,GA,triangle,10,PILOT REPORT: 3 dim orange lights in triangle formation moving at high speed before separating in different directions. +2014-01-12,48.2969444,-118.1955556,Inchelium,WA,triangle,120,Triangle Flying over Columbia River Colville Reservation. +2014-01-12,33.9236111,-84.8408333,Dallas,GA,oval,120,Beautiful lighted egg shape floated over my head! +2014-01-12,40.9355556,-74.1866667,Haledon,NJ,circle,900,Bright red/orange circular object in the SE sky. +2014-01-12,44.6388889,-70.0161111,New Sharon,ME,oval,3600,One object, very bright, white, oblong, dark spot in the center. about half the size of a typical full moon, and brighter than a typica +1964-11-22,35.1494444,-90.0488889,Memphis,TN,circle,900,Moon like UFO hovers for minutes then ascends to appear to look like bright star, then dim star, then gone. +1969-11-22,60.5544444,-151.2583333,Kenai,AK,light,300,My brother and I saw what we thought was a car approaching on the rise of a hill. The lights were so bright we turned our eyes away fr +1977-11-22,35.9152778,-94.9697222,Tahlequah,OK,triangle,300,Triangular shaped object stopped over horse pasture in Tahlequah, Oklahoma in 1977 +1979-11-22,39.2805556,-80.3447222,Clarksburg,WV,disk,7200,Asatched the light travel back and forth and uyou could see no craft. When the light went off, oh my God. +1980-11-22,38.1375,-81.2744444,Alloy,WV,disk,10,Saucer seen briefly over road - may have landed +1989-11-22,26.0569444,-80.2719444,Cooper City,FL,triangle,10,Couple witness arrowhead triangle, w/ 7 lights, streak overhead during night launch of Space Shuttle. +1997-11-22,35.198055600000004,-111.6505556,Flagstaff,AZ,other,120,An Aubrun red dot floated scilently to the right and then darted off to the left and disaapeared +1997-11-22,45.3733333,-84.9552778,Petoskey,MI,egg,8,Very large flouresent green/bright white egg shaped "thing" traveling extremely fast. +1997-11-22,35.0844444,-106.6505556,Albuquerque,NM,other,180,A black object that at first looked like a hot air balloon, then a 747, then roundish. It appeared black against the twilight blue sky. +1997-11-22,43.1125,-84.9855556,Palo,MI,triangle,900,out side of school medium(80-100'side) triange ship with light on each corner flying 20'over head +1998-11-22,43.6136111,-116.2025,Boise,ID,disk,2,A disc shaped object was captured on video. +1998-11-22,26.7052778,-80.0366667,West Palm Beach,FL,other,300,Bright burning object with tail originating in northern sky heading east. +1998-11-22,47.4875,-117.5747222,Cheney,WA,sphere,8,Driving E on I-90 at approx. mile marker 164 at 6:32 pm PST on car clock, noticed white ball of light moving across night sky from my 1 +1999-11-22,48.1958333,-114.3119444,Kalispell,MT,circle,3600,First craft was hovering over backyard approximately 100 ft off the ground then slowly headed for the mountains. +1999-11-22,27.4986111,-82.575,Bradenton,FL,fireball,180,a most spectacular sighting over central florida +2000-11-22,42.2458333,-84.4013889,Jackson,MI,light,2400,I just Filmed a Moving and Glowing "Orb" of energy on videotape +2000-11-22,47.6777778,-116.7794444,Coeur D'alene,ID,light,420,Bright orange-yellow light, two-story high, with structure underneath when observer got closer, did not move or streak, hovered above t +2000-11-22,36.0725,-79.7922222,Greensboro,NC,triangle,30,Triangular craft with five large round lights on underbelly - silent, slow and low flying +2000-11-22,41.2586111,-95.9375,Omaha,NE,triangle,90,Observation of large, illuminated triangle-shaped craft passing over city as we were traveling to Hospital +2001-11-22,43.4911111,-83.3969444,Caro,MI,triangle,5,Triangle shaped object the size of 4 to 5 747 airliners with four glowing engines, or lights on each leading side of craft that made no +2001-11-22,42.6072222,-83.9294444,Howell,MI,light,120,Object as bright as a star traveling in a straight path suddenly changes directions moving backwards almost instantly. +2001-11-22,41.4169444,-87.3652778,Crown Point,IN,fireball,1200,Two firballs or meteors seen low in the sky southwest of Crown Point, IN +2001-11-22,34.0522222,-118.2427778,Los Angeles,CA,sphere,300,5-6 glowing orange spheres shoot across the Hollywood skyline Thanksgiving night 2001. +2001-11-23,34.8525,-82.3941667,Greenville,SC,fireball,1800,Fireballs seen over the sky in Greenville, South Carolina on Thanksgiving 2001. +2002-11-22,42.1741667,-83.1794444,Riverview,MI,triangle,300,A large triangular shaped object that made a very loud noise +2002-11-22,32.7833333,-96.8,Dallas,TX,formation,2,light flickering followed by dark mass at low speed which was gone quickly and quitly +2002-11-22,41.835,-87.8227778,Riverside,IL,circle,45,3 stop signs flying in a triangular pattern +2003-11-22,38.948055600000004,-79.9594444,Harding (Near),WV,disk,10,Transluscent disc shaped ufo flying right at us... +2003-11-22,37.6819444,-121.7669444,Livermore,CA,light,3600,Space battle in the eastern sky? +2003-11-22,33.5508333,-79.0416667,Murrells Inlet,SC,circle,900,cluster of white lights "hopscotching" in the sky +2003-11-22,41.5386111,-75.9469444,Tunkhannock,PA,triangle,30,triangle aircraft with white lights on corners and a blue light in the middle +2003-11-22,34.7997222,-87.6772222,Florence,AL,triangle,4,A fast triangular-shape without any noise which disapeared seconds after sighting. +2003-11-22,34.5025,-84.9511111,Calhoun (North Of),GA,circle,1,Circular metallic gray object in the sky in front of me appeared for about 1 second. +2003-11-22,34.9494444,-81.9322222,Spartanburg,SC,other,600,Eight, small star-like objects were seen floating and moving after a plane passed, then they disappeared +2003-11-22,34.9352778,-82.5588889,Dacusville,SC,light,240,Three star like lights following the ISS +2003-11-22,40.8152778,-73.1127778,Ronkonkoma,NY,circle,900,darting circle that shot staright up and a red light circling the area at a fast speed +2003-11-22,34.0522222,-118.2427778,Los Angeles,CA,light,10,Peculiar light, the apparent size of a star, streaks from west to east over Los Angeles, CA. +2003-11-22,33.2,-117.2416667,Vista,CA,triangle,10,The first craft was in had 3-5 small dim blue lights in a triangular shape, although the outline of its body was circular, it was very +2003-11-22,33.2,-117.2416667,Vista,CA,triangle,15,two crafts were sighted moving north to south at a high rate of speed +2003-11-22,34.5325,-83.985,Dahlonega,GA,circle,10,A large, white moon-like object fell out of the sky, disintegrating as it fell. +2003-11-22,42.6525,-73.7566667,Albany,NY,other,8,Dim yellow lights on a solid object moving silently and quickly +2003-11-22,37.8091667,-85.4669444,Bardstown,KY,other,2,The object passed very fast from right to left in front of me and was emmiting blue flames from the rear. +2003-11-22,31.8713889,-90.1644444,Georgetown,MS,light,1200,We noticed a light in the sky we first thought was a bright star. It moved irratically up and down and in circles. With binoculars, we +2003-11-22,40.9275,-73.9977778,Bergenfield,NJ,other,35,The W shaped object contained no lights, produced no sound, and banked left to right constantly as it flew from north to south. +2003-11-22,39.9522222,-75.1641667,Philadelphia,PA,changing,600,Ball lights form circles and rotate. Two groups of two. +2003-11-22,38.8338889,-104.8208333,Colorado Springs,CO,triangle,30,Triangle shaped, no lights, clear, like it was being cloaked, I could still make out the shape. VERY LARGE. Totally silent, very fast. +2004-11-22,43.1775,-83.7341667,Clio,MI,triangle,300,It just floated like bobber in a lake +2005-11-22,34.145,-81.2758333,White Rock,SC,triangle,300,was low flying slow moving craft with bright lights 2 lights seemed to slowly drop from it and it flew right over my house had round ci +2005-11-22,33.94,-118.1316667,Downey,CA,fireball,1200,ORANGE FIREBALL SEEN OVER DOWNEY CA. +2005-11-22,42.2708333,-83.7263889,Ann Arbor,MI,unknown,3600,Bright white light hung in the night sky with flashing lights that radiated in all directions from it. I watched for an hour then left. +2005-11-22,46.165,-112.3713889,Elk Park,MT,triangle,25,Two triangle shaped craft spotted over Elk Park, Montana. +2005-11-22,29.4238889,-98.4933333,San Antonio,TX,changing,360,3 objects were about 100 yds. off the ground and rotating around eachother while changing color and shape +2005-11-22,38.6269444,-88.9455556,Salem,IL,other,900,The Curtain Call. +2005-11-22,38.9822222,-94.6705556,Overland Park,KS,unknown,3300,RED, YELLOW, PURPLE, BLUE, ORANGE, GREEN, PINK, WHITE, AND SILVER FLASHING OBJECT HOVERS AND RETREATS BACK OVER 55 MINUTE TIME FRAME. +2005-11-22,38.0494444,-122.1575,Benicia,CA,fireball,900,Looked like a plane on fire, sparks falling for about 10mins than just fell in the ocean. +2005-11-22,38.2538,-94.3356,Butler,MO,chevron,900,Chevron shaped object over my barn pasture and over the lake. +2005-11-22,41.4755556,-93.6786111,Norwalk,IA,cigar,900,While I was at my barn in my pasture I saw white lights and a cigar object +2005-11-22,44.8011111,-68.7783333,Bangor,ME,other,900,RED, YELLOW, AND BLUE LIGHTS OVER BANGOR, MAINE. +2005-11-22,35.6527778,-97.4777778,Edmond,OK,unknown,1500,WHILE ME AND A FRIEND WERE FISHING ON A LAKE WE SAW AN OBJECT IT WAS VERY SCARY. +2005-11-22,39.9375,-77.6613889,Chambersburg,PA,cigar,300,Cigar shaped object was over my house and me and my friend saw the object. +2005-11-22,32.7763889,-79.9311111,Charleston,SC,rectangle,900,RECTANGLER OBJECT OVER A CONVENIENT STORE OF THE FREEWAY. +2005-11-22,38.5816667,-121.4933333,Sacramento,CA,sphere,3600,Orange and green UFO over Sacramento, Ca 11-22-05 +2005-11-22,38.2541667,-85.7594444,Louisville,KY,changing,1200,AS ME AND A FRIEND WERE DRIVING ON THE INTERSTATE WE SAW THESE UFOS. +2005-11-22,40.6430556,-111.28,Kamas,UT,unknown,5400,Red, white, and blue flashing light on a hovering object that we observed for over 90 minutes. +2005-11-22,32.655,-79.9405556,Folly Beach,SC,disk,35,BIG SAUCER GOING OVER FOLLEY BEACH WE SAW IT FROM OUR HOTEL. +2005-11-22,31.5544444,-110.3030556,Sierra Vista,AZ,light,7,A very fast craft turned 90 degrees without slowing or banking, traveling apprx mach one at 20ꯠ ft. +2005-11-22,34.1013889,-84.5194444,Woodstock,GA,triangle,300,Odd craft in Georgia +2005-11-22,41.2230556,-111.9730556,Ogden,UT,circle,1800,Strange round object flashing multicolored lights, moving very slowly, coming to complete stop for several minutes. +2006-11-22,40.0047222,-75.635,West Grove,PA,triangle,3600,Large Black Triangular Blinking Aircraft +2006-11-22,39.5994444,-110.81,Price,UT,teardrop,1800,Six hovering lights above price, utah. +2006-11-22,40.7913889,-80.6263889,Rogers,OH,rectangle,30,22 Nov., 06 early am a bright flash lit up my bedroom window, next a starry rectangle hung above the earth. +2006-11-22,40.8808333,-88.6297222,Pontiac,IL,light,2700,It looked like a bright star in the sky except it was moving up, down, side to side, and in circles. +2006-11-22,45.5863889,-92.9744444,Harris,MN,light,45,Two stationary bright lights ( like stars)in NW sky, pulsing brighter and brighter, then disappearing together. +2006-11-22,41.6413889,-80.1516667,Meadville,PA,cylinder,5400,Strange Lights Over Small Pennsylvania Town. ((NUFORC Note: Probably a sighting of celestial bodies. PD)) +2006-11-22,27.9472222,-82.4586111,Tampa,FL,other,90,White Boomerang causes chemtrail laying jet to veer off course. +2006-11-22,34.3916667,-118.5416667,Santa Clarita,CA,light,120,one bright light moving fast across the night sky suddenly stopped. it sat at the same spot for about 30 seconds the it shot sraight up +2006-11-22,39.245,-112.1033333,Scipio,UT,disk,3600,Circular disk blinking very brightly with a bluish tint sighted next to I-15 just north of Scipio, UT +2006-11-22,34.8027778,-86.9716667,Athens,AL,triangle,120,Triangle shape object moving silently passed directly over my head. +2006-11-22,28.5380556,-81.3794444,Orlando,FL,other,45,2 bomerang crafts, almost the color of the night sky. +2006-11-22,39.8519444,-81.6577778,Cumberland,OH,cone,1440,i know what I saw. ((NUFORC Note: Probably a sighting of Sirius, we suspect. PD)) +2006-11-22,41.3747222,-83.6513889,Bowling Green,OH,light,60,We notice a light in the night sky that seems to look like a star but twinkles in different colors. ((Sirius??)) +2007-11-22,26.6583333,-80.2416667,Wellington,FL,chevron,60,A black cheveron with circling lights about a hundred yards long. 500 Lights On Object0: Yes +2007-11-22,39.9561111,-75.0583333,Pennsauken,NJ,oval,60,craft in pennsauken nj +2007-11-22,38.7744444,-75.1397222,Lewes,DE,light,3600,((ADVERTISING LIGHTS??)) 4 White lights continually circling over area in sky and joining in center at a point. +2007-11-22,47.0530556,-93.1188889,Wawina,MN,changing,1800,UFO with vivid flashing lights and changing shape sighted in Wawina, MN. ((NUFORC Note: Sighting of Sirius. PD)) +2008-11-22,39.1266667,-82.9855556,Waverly,OH,chevron,20,A gigantic flying boomerang with a dozen faint white lights on the front edge of it flying north to south at a tremendous speed,no nois +2008-11-22,34.7211111,-116.1591667,Ludlow,CA,unknown,120,Glowing panels flying over desert between Needles and Barstow +2008-11-22,35.614444399999996,-88.8138889,Jackson,TN,light,720,moving light/box shape object +2008-11-22,32.7447222,-116.9980556,Spring Valley,CA,circle,120,five shiny metallic objects bunched in tight formation +2008-11-22,42.3086111,-83.4822222,Canton,MI,triangle,45,Twelve to eighteen white, wing shaped craft flying northwest through Canton, MI. +2008-11-22,41.2586111,-95.9375,Omaha,NE,light,60,Bright white light turned red and dissappreaed, later a "wave" of small lights from the same spot +2008-11-22,40.215,-75.0111111,Richboro,PA,oval,180,Oval shaped UFO flew high and far very fast. +2008-11-22,45.5236111,-122.675,Portland,OR,light,30,A bright light from no conventional aircraft behaves erraticly and moves at high speeds +2008-11-22,28.9002778,-81.2638889,Deltona,FL,unknown,1,While looking at the constellation of Cassiopeia a dispersed orange flash was seen. It appeared for only a second and did not repeat d +2009-11-22,26.5625,-81.9497222,Cape Coral,FL,circle,600,2 shiny flying objects flying over cape coral/ft myers area +2009-11-22,37.5958333,-122.0180556,Union City,CA,unknown,900,Unknown Aircraft Hoovers in Silence +2009-11-22,41.0380556,-74.2944444,Wanaque,NJ,light,10800,Prism ball of light viewed over West milford, NJ +2009-11-22,34.1083333,-117.2888889,San Bernardino,CA,fireball,120,flickering fireball object burning across the skies +2010-11-22,39.0483333,-95.6777778,Topeka,KS,fireball,3,Object lights up sky then large fireball +2010-11-22,21.5902778,-158.1125,Haleiwa,HI,disk,3600,a bright star flashing red and blue +2010-11-22,35.1477778,-114.5675,Bullhead City,AZ,triangle,1200,spirattic triangular light bouncing about +2010-11-22,28.5380556,-81.3794444,Orlando,FL,cigar,2100,Brightly Flashing lights, loud sounding object hovering over Orando. +2010-11-22,35.9555556,-80.0055556,High Point,NC,circle,90,disk made 2 90 degree turns and past air craft at high speed. +2010-11-22,38.4077778,-78.6238889,Elkton,VA,disk,240,Multiple lighted unexplained aircraft hovering above the sky in rapid movements +2010-11-22,25.7738889,-80.1938889,Miami,FL,light,1,single white pinpoint light moved from south to north about twice as fast as any aircraft; no sound +2010-11-22,41.6005556,-93.6088889,West Des Moines,IA,light,120,2 Bright Lights in Des Moines Iowa +2010-11-22,35.6869444,-105.9372222,Santa Fe,NM,sphere,5,yellow sphere with orange blinks trailing it. Moved pretty slowly, and was quite low to the horizon. +2010-11-22,34.0136111,-83.8277778,Auburn,GA,other,600,At first, it appeared to be a star, however what got my attention was the movement. It was similar to a laser pointer being moved aroun +2011-11-22,33.3391667,-84.6486111,Sharpsburg,GA,light,1500,Flashing lights over Sharpsburg, GA +2011-11-22,36.7477778,-119.7713889,Fresno,CA,sphere,240,Strange stationary red light in the northwest sky in Fresno +2011-11-22,34.4838889,-114.3216667,Lake Havasu City,AZ,changing,1800,Small silver u shaped craft with blue and red lights on top. +2011-11-22,33.7922222,-118.3141667,Lomita,CA,triangle,120,Triangle Big Black Silent +2011-11-22,38.1075,-122.5686111,Novato,CA,light,35,Bright green ball of light falls through the clouds +2011-11-22,42.3725,-74.0961111,East Durham,NY,triangle,300,The triangular craft was in the sky hoovering and seemed to have strange red/orange lights at the bottom. +2011-11-23,42.325,-72.6416667,Northampton,MA,diamond,240,Diamond-shaped UFO seen near Northampton, Massachusetts +2012-11-22,44.9061111,-72.9780556,Sheldon Springs,VT,triangle,1,three triangle lights spinning with a green aura around it it was close to the ground it vanished. +2012-11-22,39.9783333,-86.1180556,Carmel,IN,chevron,20,V shaped silent object with 5-6 lights on each arm. +2012-11-22,40.6686111,-74.1147222,Bayonne,NJ,other,480,With the trajectory of a satellite, a single, silent inverted orange flame passed overhead from northeast to southwest. +2012-11-22,41.6105556,-86.7225,Laporte,IN,light,1800,Every month for the past4 months we have seen the same object in the same part of the sky.The main light is a bright white light hoveri +2012-11-22,41.77,-72.3055556,Coventry,CT,circle,180,Orange/red large bright blob in night sky over Coventry. +2012-11-22,38.5816667,-121.4933333,Sacramento,CA,triangle,420,Triangle shaped craft 200 feet up flying slowly overhead, slight noise from engine after passing over. +2012-11-22,41.4994444,-81.6955556,Cleveland,OH,fireball,4,Fast bright object very high up in the sky. +2012-11-22,47.6761111,-120.2072222,Entiat,WA,diamond,600,The VERY brite lights were in a Diamond shape and hovered for the ten minutes I watched them. +2012-11-22,38.3566667,-121.9866667,Vacaville (Fairfield Area),CA,circle,300,10 round objects,like headlights that turned light orange and disapeared . +2012-11-22,33.8302778,-116.5444444,Palm Springs,CA,changing,300,Inexplicable red UFO rises like a distant star, then falls to earth. +2012-11-22,42.2575,-83.2111111,Allen Park,MI,fireball,600,Red Fireball in Southeastern Michigan sky 11/22/2012. +2012-11-22,41.2041667,-73.7275,Mount Kisco,NY,light,120,Red lights traveling over Northern Westchester, NY. +2012-11-22,42.3266667,-122.8744444,Medford,OR,diamond,240,4 orange lights in shape of diamond with one trailing. +2012-11-22,41.5052778,-82.0283333,Avon Lake,OH,fireball,420,Red Orange Objects. +2012-11-22,40.3041667,-73.9927778,Long Branch,NJ,light,300,Unknown object @ seen in Jersey Shore sky's. Stirs Interest? +2012-11-22,42.1947222,-122.7083333,Ashland,OR,circle,120,Circular object directly overhead (far), bright red with yellow center, hung in fixed position for a few mins then moved and went dark. +2012-11-22,42.2286111,-71.5230556,Hopkinton,MA,fireball,600,Object appears on fire cruising along in straight line. +2012-11-22,64.8377778,-147.7163889,Fairbanks,AK,light,180,Unidentified orange lights over Fairbanks Alaska. +2012-11-22,43.1133333,-73.1036111,Sunderland,VT,triangle,240,2 triangle shaped crafts very slow moving and silent with 3 orange ball shaped lights at each point +2012-11-22,43.1133333,-73.1036111,Sunderland,VT,triangle,300,3 of the brightest orange lights I had ever seen on a large triangle shape object in the sky with a smaller one behind it. +2012-11-22,35.0844444,-106.6505556,Albuquerque,NM,fireball,120,Unexplained "fireball" over albuquerque's west side. +2012-11-22,40.8122222,-73.0788889,Holbrook,NY,light,180,3 Bright orange lights rise high into upper atmosphere 1 at a time, flicker then vanish. +2012-11-22,32.7938889,-79.8627778,Mt. Pleasant,SC,triangle,300,Three red and gold orbs in Mt Pleasant, SC. +2012-11-22,41.5769444,-73.4088889,New Milford,CT,circle,90,Nov. 22, 2012 bright red round object, emitting red & blue rays, over New Milford, Ct, slowly moving south to north. +2012-11-22,42.2097222,-76.4936111,Spencer,NY,light,240,Huge, bright red light (too large to be a plane & not blinking), resembled plane crash but didn't fall, just slowly glided across sky. +2012-11-22,28.0391667,-81.95,Lakeland,FL,fireball,240,8-10 orange glowing silent objects floating across the sky seen in Lakeland, Fl +2012-11-22,44.7677778,-93.2775,Burnsville,MN,circle,120,Orange light moved effortlessly through cloudy night sky, flickered, and vanished. +2012-11-22,36.175,-115.1363889,Las Vegas,NV,fireball,240,Saw what appeared to be a campfire on a close by foothill pulled over and could see that the object was above the mountain and moving. +2012-11-22,32.8233333,-97.1702778,Hurst,TX,circle,15,Reddish orange glowing object flew across the night sky from the southeast to the northwest. The object stopped glowing. +2012-11-22,39.1155556,-77.5638889,Leesburg,VA,formation,420,16+ Orange Blumes in scatter straight line moving from the northwest to southeast +2012-11-22,38.7333333,-104.7194444,Widefield,CO,light,7200,My daughter and I both know the bright moving lights lined up some turned red , some lined up could not be planes or stars. +2012-11-22,28.0219444,-81.7330556,Winter Haven,FL,fireball,420,Orange fireball silenty gliding through the air over my neighborhood/house. +2012-11-22,36.8527778,-75.9783333,Virginia Beach,VA,sphere,480,Bright orange orbs off VA Beach, VA coast. +2012-11-22,35.6697222,-81.2216667,Newton,NC,disk,2400,Multi-colored disc moving erratically east of Newton. ((NUFORC Note: Possible sighting of Sirius? PD)) +2012-11-22,43.1636111,-73.0727778,Manchester,VT,light,180,Four orange lights in front of mountain rise to the sky, hover for a short period of time, accelerate to the NE and fade away. +2012-11-22,42.5777778,-70.7694444,Manchester,MA,fireball,5,Glowing Green and yellow fireball Over the water in Manchester by the sea. Possibly an asteroid... But I just don't know! +2012-11-22,40.9008333,-73.3436111,Northport,NY,light,60,Round light shot across Northport - Huntington Long Island then it shot straight up. +2013-11-22,39.2883333,-77.2041667,Damascus,MD,changing,1200,Sighted 2 bar shaped brightly lighted objects that changed shape. +2013-11-22,27.9472222,-82.4586111,Tampa,FL,circle,1800,Glowing hoop. +2013-11-22,35.0255556,-76.8258333,Arapahoe,NC,circle,5,3 circles moving in the sky and disappeared about 5 seconds later. +2013-11-22,44.2727778,-121.1727778,Redmond,OR,sphere,600,Glowing orange spheres over Redmond, Oregon. +2013-11-22,48.5127778,-122.6113889,Anacortes,WA,light,600,Blue light fastly moving up and down. +2013-11-22,47.5675,-122.6313889,Bremerton,WA,unknown,1200,Looked at first like a star then shot sparks out of sides then turned into a red star and then flew away leaving a trail of blue smoke. +2013-11-22,32.7152778,-117.1563889,San Diego,CA,light,420,Three bright lights moving in unison then splitting up dramatically, later regrouping... power outage 4 hours later. +2013-11-22,39.0997222,-94.5783333,Kansas City,MO,oval,300,Bright red objects over Raytown. +2013-11-22,35.9938889,-78.8988889,Durham,NC,light,600,Bright red light performing maneuvers and landing. +2013-11-22,43.385555600000004,-84.8355556,Riverdale,MI,cylinder,3600,Two round lights one small, one big. ((NUFORC Note: Possible sighting of Venus in SW sky? PD)) +2013-11-22,40.7608333,-111.8902778,Salt Lake City,UT,changing,1800,Red objects above Salt Lake City. +2013-11-22,44.735,-90.7191667,Willard,WI,circle,180,Two small orange glowing lights spotted traveling from west to east. No sound emitted, and lights traveled in a static manner. +2013-11-22,39.9719444,-74.6833333,Pemberton,NJ,unknown,30,Bright red spheres flying in formation over Pemberton, N.J., Burlington County. +2013-11-22,42.9633333,-85.6680556,Grand Rapids,MI,diamond,90,Two lights, three lights, four lights, gone! +2013-11-22,28.565,-81.5863889,Winter Garden,FL,light,3600,Very bright white light in northwestern sky. White/red light to its lower right side. +2013-11-22,28.2713889,-82.7197222,Port Richey,FL,triangle,7,Dark wing or triangle shaped soundless object flying at low altitude and extreme speed. +2013-11-22,28.2438889,-82.7194444,New Port Richey,FL,unknown,6,Orange dim dark lights 1 on each side. Invisible craft. Seemed to be trailing a plane then vanishes into clouds. Very close and no soun +2013-11-22,34.2569444,-85.1647222,Rome,GA,light,14400,Video taped a large multi-colored lighted object in the sky below Orion. +1965-11-23,36.7544444,-98.3563889,Cherokee,OK,other,300,There was one silver metallic craft with small lights, no sound, no windows, no red or green lights, and no blinking light. +1973-11-23,22.0783333,-159.3219444,Kapaa,HI,cigar,600,Five of f us witnessed a cigar-shaped wingless aircraft with a light shining inside of its windows hover over us.. +1977-11-23,40.8788889,-73.1572222,Saint James,NY,sphere,10,I, and two other witnesses, observed a red glowing sphere for approximately 10 seconds. +1986-11-23,39.5419444,-77.1083333,New Windsor,MD,triangle,60,I was hunting with my Dad on a farm near our house. It was before dawn, and I was sitting by a tree, bored and looking up at the sky. +1987-11-23,35.9605556,-83.9208333,Knoxville,TN,chevron,1200,300 ft Flying wing followed by fighters, later observed by glowing ball. +1987-11-23,36.8588889,-120.455,Firebaugh,CA,triangle,1200,In late 1987 while driving south on I-5, I witnessed a UFO for approx 15-20 min. +1991-11-23,37.6455556,-91.5358333,Salem,MO,triangle,1325,The craft hovered above car for 3 to 5 minutes staying directly 30-50 feet in front of the car above the road. Lowed itself infront of +1993-11-23,64.8377778,-147.7163889,Fairbanks,AK,cigar,180,Me and one of my friends were coming home from sledding when we saw a mettalic, cigar shaped, UFO hovering in the air emitting a blue b +1993-11-23,30.4505556,-91.1544444,Baton Rouge,LA,triangle,30,I saw 3 orange illuminated triangles flying very low between 2 apartment buildings, just above the trees. +1994-11-23,34.1425,-118.2541667,Glendale,CA,sphere,12,The craft was a light blue shiny sphere frisbee looking object.It flew left to right a couple of times then it flew in circles and the +1996-11-23,38.2716667,-84.6863889,Stamping Ground,KY,triangle,480,Giant black triangle hovers over me and my car while parked on Union Ridge in northern Franklin Co. Kentucky... +1997-11-23,33.9136111,-98.4930556,Wichita Falls (Sheppard Afb),TX,light,3,A bright green light appeared low on the horizon. Made a arc movement from the northern horizon up about 15 degrees and went down over +1998-11-23,45.12,-93.2875,Coon Rapids,MN,oval,4,Oval object flying down at 45 degree angle with stream of light following +1998-11-23,41.9888889,-88.6866667,Sycamore,IL,triangle,5,As I was taking out the garbage,I noticed something moving across the night sky at a very fast rate of speed.I saw 2 triangle shaped,di +1998-11-23,41.7636111,-72.6855556,Hartford,CT,circle,240,Three circular objects in the sky floated at a high altitude , seemed like spotlights but there no obvious source for spotlights, were +1998-11-23,45.7811111,-122.5322222,Battle Ground,WA,light,15,Saw a light traveling low in the horizon at night that normally would have appeared to be an airplane except it was moving too fast. I +1998-11-23,37.7272222,-89.2166667,Carbondale,IL,changing,10,An unidentified flying object sited over Carbondale Illinois. The object travelled from North to South in a direct path at a speed tha +1998-11-23,36.1538889,-95.9925,Tulsa,OK,unknown,37800,appeared to be a prism of colors sparkling--purple,yellow,orange,green, red and blue -- it hovered for 10 to 15 minutes at a time in th +1999-11-23,38.2325,-122.6355556,Petaluma,CA,light,3600,Clouds over small aircraft airport flashing coded laser light to ground or vice versa, animals making noise +1999-11-23,37.4636111,-122.4275,Half Moon Bay,CA,chevron,300,70+ chevron-shaped aircraft, approx. 40ꯠ`, flying from northeast to southwest over Half Moon Bay, CA, like someone opened up at box +1999-11-23,36.8663889,-83.8888889,Barbourville,KY,changing,18,i was arriving at a 4 way stop when i saw a blue green haze in upper right hand corner of windshield,i first thought was my engine over +1999-11-23,37.775,-122.4183333,San Francisco,CA,disk,300,looked out window at an object the color of a setting sun moving west to east at a slow speed. +1999-11-23,38.8119444,-94.5316667,Belton,MO,oval,360,Three bright lights in the front and sides and a red light at the bottom on the object. +1999-11-23,38.4997222,-86.0119444,Pekin,IN,cigar,10,brown fastmoving cigar +1999-11-23,36.7477778,-119.7713889,Fresno,CA,disk,300,18 year old girl encountered an alien spacecraft coming home from the Clovis Community College Center on Nov. of 1999 +1999-11-23,42.8666667,-106.3125,Casper,WY,sphere,60,My wife and I witnessed a craft hovering over the city of Casper, Wyoming. The craft hovered for a few moments then sped off to the Sou +1999-11-23,35.1477778,-114.5675,Bullhead City,AZ,sphere,900,I was out with my dogs and notice at first two objects in the south eastern sky, then three and then four lights. +2000-11-23,47.6063889,-122.3308333,Seattle,WA,light,4,the light looked bright white round golf ball size when above me, but became a flattened horizontal band of five lights as it moved rap +2000-11-23,41.6436111,-83.4869444,Oregon,OH,triangle,240,Dark triangular object spotted over Oregon, Ohio early morning Nov. 23rd. +2000-11-23,40.2361111,-74.0011111,West Allenhurst,NJ,other,120,11/23/00 observed a V-shaped and crescent-shaped object silently crossing the sky with dull or faint orangy/pink lights. +2000-11-23,44.1319444,-91.7186111,Fountain City,WI,light,2700,Red Light changing colors and "dancing" above Wisconsin Valley Bluffs +2000-11-23,31.0558333,-97.4641667,Belton,TX,light,1140,ANOTHER Bell County Sighting +2000-11-23,27.8002778,-97.3961111,Corpus Christi,TX,other,5,saw v shape craft going the same speed of a jet no light no sound +2000-11-23,40.6641667,-73.7088889,Valley Stream,NY,triangle,240,Bright light flashes-lights up sky (entire sky) then black triangle craft slowly crosses crystal clear night sky.... +2000-11-23,33.7222222,-116.3736111,Palm Desert,CA,light,5,11/23/00 2300 Palm Desert, Ca. Dull white object crossing from horizon to horizon in 5 sec. +2000-11-23,33.7488889,-84.3880556,Atlanta,GA,circle,900,More than 50 bright objects disc-shaped in formations of 2-12 moving towards the North-northeast for a total of about 15 min +2000-11-23,33.7488889,-84.3880556,Atlanta,GA,formation,1200,Several bright disk-shaped objects moving North across the sky +2000-11-23,43.0044444,-71.3488889,Auburn,NH,circle,37800,Two objects, lots of lights viewed for 1 1/2 hours +2000-11-23,33.9022222,-118.0808333,Norwalk,CA,light,900,9 objects appeared in different formations while changing colors thanksgiving evening. +2000-11-23,33.7488889,-84.3880556,Atlanta,GA,oval,1800,Between 50-100 oval shaped light reflected objects. +2001-11-23,39.6133333,-105.0161111,Littleton,CO,triangle,300,Black Triangle near downtown Littleton,CO +2001-11-23,34.0555556,-117.1816667,Redlands,CA,oval,600,ufo sighting in redlands, california +2001-11-23,45.3055556,-93.7938889,Monticello,MN,sphere,60,driving home and a ufo passed me and i stopped and it sped away +2002-11-23,42.9786111,-93.3166667,Swaledale,IA,circle,300,A moving circle of white light +2002-11-23,36.3883333,-86.4466667,Gallatin,TN,unknown,2,Disappearing object seen as light glints off of it +2002-11-23,36.3883333,-86.4466667,Gallatin,TN,unknown,2,My daughter and I were traveling to Goodlettsville from Gallatin between 4:00 and 4:30 pm. We were just about to get on Vietnam Vets Pa +2002-11-23,41.9983333,-92.1972222,Keystone (Us 30 @),IA,light,1200,Shimmering bright white light 3X size of Venus. Dripping, a tail, and variable at times. +2002-11-23,42.35,-71.1569444,Brighton,MA,other,5,blue-white light seen in brighton,mass +2002-11-23,39.0483333,-95.6777778,Topeka,KS,flash,4,I saw a flashing aircraft of some sort traveling very rapidly from west to east to the north of topeka ks. +2002-11-23,39.7075,-90.8475,New Salem,IL,fireball,120,New Salem Red-Green Fireball Pre-Thanksgiving +2003-11-23,34.9744444,-92.0163889,Cabot,AR,formation,180,large fast formation in the sky. +2003-11-23,41.8083333,-71.3375,Seekonk,MA,light,180,The object appeared to be a small rapidly flashing light. The object was traveling Southwest at about 40 mph, at 1000-2000 ft, I notice +2003-11-23,37.8716667,-122.2716667,Berkeley,CA,oval,480,huge illuminated object with flashing lights moving smoothly over Bay Bridge toward Oakland +2003-11-23,35.7477778,-95.3694444,Muskogee,OK,light,180,Star like,very large and extremely bright +2003-11-23,40.4991667,-74.3994444,Piscataway,NJ,triangle,180,Triangle shaped abject that hovered in the sky +2003-11-23,42.1155556,-75.9591667,Johnson City,NY,circle,420,A brite lite +2003-11-23,32.7152778,-117.1563889,San Diego,CA,chevron,3,4 sphere red chevron +2003-11-23,38.2972222,-122.2844444,Napa,CA,unknown,300,what seemed to be a burning triangle shape, no noise, burning pieces falling from it , no explosion,just red debris falling +2003-11-23,36.7069444,-97.0852778,Ponca City,OK,oval,3600,flashing lights in easten sky ponca city okla +2003-11-23,34.9530556,-120.4347222,Santa Maria,CA,light,10,six red lights moving away from each other +2003-11-23,43.9144444,-69.9658333,Brunswick,ME,circle,20,Very unusual, fast moving craft with sequential light display at high altitude, Maine, 23Nov03 +2004-11-23,29.5633333,-95.2858333,Pearland,TX,light,480,0230 Light sighted in the southern sky near Banbury Cross Subdivision. Appeared to be a spherical shape and was still like a star.0 +2004-11-23,36.1658333,-86.7844444,Nashville,TN,teardrop,300,A puff came out of the back of the white-grey ufo, that me and my mother saw over the runway. +2005-11-23,45.1438889,-122.8541667,Woodburn,OR,fireball,5,White ball of light falling to the ground +2005-11-23,28.3644444,-82.1961111,Dade City,FL,disk,3,I often don't sleep well, so go outside at night to look at the stars. I noticed that there were some clouds to the southeast, but non +2005-11-23,37.0194444,-110.7905556,Navajo Mountain,UT,unknown,180,Yellow/Orange light beaming down from an object 100 feet up. +2005-11-23,32.7833333,-96.8,Dallas,TX,triangle,15,Daytime UFO Streaks Overhead +2005-11-23,42.0833333,-71.3972222,Franklin,MA,light,60,Did anyone else see this in Mass Thanksgiving Eve? +2005-11-23,38.2027778,-75.6927778,Princess Anne,MD,formation,15,ORANGE GLOWING LIGHT FORMATION DARTS OUT OF SIGHT +2005-11-23,37.9575,-119.1208333,Lee Vining,CA,light,9000,Plasmic bluish white orb of light east of Mono Lake. +2005-11-23,32.0808333,-89.7758333,Puckett,MS,rectangle,120,Very larg and very bright +2005-11-23,34.9191667,-115.0619444,Goffs (Ne Of),CA,light,1800,Solitary light completed several repetetive flight maneuvers not possible by known aircraft. +2005-11-23,30.7436111,-98.0552778,Bertram,TX,light,120,orange light making jerky movements +2006-11-23,32.6536111,-83.7597222,Byron,GA,disk,300,Shiny, metallic, stationary disc shaped object. +2006-11-23,39.9611111,-82.9988889,Columbus,OH,circle,120,Shiny metallic ball observedThanksgiving day over Columbus, Ohio +2006-11-23,36.8044444,-121.7858333,Moss Landing,CA,oval,1200,oval white light in sky just offshore of Moss Landing, CA +2006-11-23,32.2216667,-110.9258333,Tucson,AZ,changing,1200,Brightly lit object SW Tucson sky, moves sideways +2006-11-23,39.7422222,-92.4725,Macon,MO,triangle,120,triangular, winged, no lights, no sound, grayish, gliding +2006-11-23,39.0169444,-94.2813889,Blue Springs,MO,light,50,Two lighted objects of varying intensity intersect @ same location in space within 20 seconds of each other. +2006-11-23,41.6833333,-86.25,South Bend,IN,triangle,20,Triangular UFO over South Bend, IN moving southeast on 11-23-06 at 20:25. +2006-11-24,40.1741667,-75.0441667,Southampton,PA,light,4,2nd time bright blue lights were spotted over Southampton. +2007-11-23,36.5936111,-94.7688889,Grove,OK,circle,7200,clear view on clear night, 5 lights in a row, sighting lasted 2 hours at 3:00AM with binoculars. +2007-11-23,40.7141667,-74.0063889,New York City (Queens),NY,circle,3600,4:00AM after Thanksgiving in NY - several lights in the sky, one of which was entirely too bright! ((NUFORC Note: Venus. PD)) +2007-11-23,45.7811111,-122.5322222,Battle Ground,WA,light,1800,((HOAX??)) There were rapidly moving lights in the sky that were flashing it seemed. +2007-11-23,40.1416667,-75.2094444,Fort Washington,PA,unknown,2,unusual daytime object that seemed to have a repetitive 'jump' +2007-11-23,32.7152778,-117.1563889,San Diego,CA,formation,300,Three Light Formation in Point Loma +2007-11-23,32.7152778,-117.1563889,San Diego,CA,formation,120,Three lights changing formation +2007-11-23,42.0083333,-91.6438889,Cedar Rapids,IA,triangle,180,Triangular craft, two horizontaly level beams of lights, "Head Lights" I-380, Cedar Rapids, Iowa, Near Eastern Iowa Airport +2007-11-23,41.5783333,-70.5591667,East Falmouth,MA,other,1200,Bright Underwater Lights in ocean +2007-11-23,33.8752778,-117.5655556,Corona,CA,light,300,A light floating, moving, and hovering in the air. +2007-11-23,40.7141667,-74.0063889,New York City (Manhattan),NY,light,2,very shiny object that I captured movie from that but the movie didn't show that! +2008-11-23,31.7319444,-84.1708333,Leesburg,GA,cigar,5,Fast moving object seen in Leesburg Ga that does not resemble anything known. +2008-11-23,41.1844444,-73.1336111,Stratford (Not Exact),CT,disk,21600,Driving to buy a car....on the highway about three miles before the exit for stratford. I looked to my left to see a disc that was like +2008-11-23,47.7425,-121.9844444,Duvall,WA,triangle,300,Three bright lights in the sky, possibly above the Novelty Hill area of Redmond, WA. +2008-11-23,45.4872222,-122.8025,Beaverton,OR,sphere,60,Shiny Silver Half Sphere with bright light reflecting underneath floating around Beaverton Mall, Oregon +2008-11-23,33.9791667,-118.0319444,Whittier,CA,circle,300,Object at High Altitude Over Whittier/San Gabriel Valley +2008-11-23,41.85,-87.65,Chicago,IL,triangle,300,Large Hovering Triangle Observed in Chicago Suburbs November 2008 +2008-11-23,45.5236111,-122.675,Portland,OR,light,2400,3 bright white lights in traingular formation with no sound and in seemingly fixed pos.. ((NUFORC Note: 3 planets in sw sky. PD)) +2008-11-23,39.1961111,-121.19,Penn Valley,CA,light,15,Large photonic object vanishes over Penn Valley, California +2008-11-23,32.7833333,-96.8,Dallas,TX,light,600,Two large Lights over Dallas +2008-11-23,37.5458333,-77.3280556,Highland Springs,VA,diamond,900,Large 1 to 2 diamond shaped object(s) with lights STOPPED low over Highland Springs VA subdivisions at night. +2008-11-23,33.0183333,-80.1758333,Summerville,SC,light,900,On November 23, 2008 I saw a blinking orange light in the sky that hovered for a few minutes and then disappeared. +2008-11-23,41.1586111,-73.2258333,Black Rock,CT,changing,600,2 lights over Black Rock/Bridgeport, Fairfield Co., CT, one cigar chaped one firebal-like obj.((NUFORC Note: Planets in sw sk sky.PD)) +2008-11-23,38.1838889,-83.4327778,Morehead,KY,light,2,Three bright glowing orbs fly by dormatory building on Morehead State University, each is around 1 to 2 feet in width. +2008-11-23,38.6172222,-121.3272222,Carmichael,CA,light,2,Red and blue lights streaking accross sky +2008-11-23,47.7094444,-121.3588889,Skykomish,WA,other,16200,A dancing star like object, complete with a strobe light show in the mountains. +2009-11-23,40.1163889,-88.2433333,Champaign,IL,oval,1800,Well, it has taken me a while to actually talk about this. I didn't tell anyone at school about this because... why would I risk the hu +2009-11-23,28.2916667,-81.4077778,Kissimmee,FL,light,15,Unidentified orange ball of light observed ascending from ground into sky, lost sight of object in clouds. +2009-11-23,38.8105556,-90.6997222,O'fallon,MO,light,420,Bright red noiseless light traveled south to north at an altitude of 7ꯠ -10ꯠ ft for 7 minutes before blinking then disappearing. +2009-11-23,35.6008333,-82.5541667,Asheville,NC,light,30,Silent white lights slowly move low in the sky then vanish. +2010-11-23,45.5827778,-122.3522222,Washougal,WA,oval,900,Bright big oval shaped light in the sky. +2010-11-23,42.6525,-73.7566667,Albany (3 Hrs W Of: On Interstate-90 Near Exit 44),NY,other,45,Gun metal black crescent with 6 window-glowing lights. +2010-11-23,40.8041667,-74.0125,North Bergen,NJ,other,240,THE OBJECT CHANGED COLOURS OVER NYC& N.J. IN HEAVY AIRTRAFFIC. MID. AFTERNOON. +2010-11-23,42.2711111,-89.0938889,Rockford,IL,triangle,5,Black "shadow"(dim light outlined) triangular craft spotted gliding silently in night sky over Rockford, IL. +2010-11-23,39.2402778,-76.8397222,Columbia,MD,cylinder,60,cylinder shaped object with moving lights +2011-11-23,39.0911111,-94.4152778,Independence,MO,light,300,White orb of light visible from I70 somewhere between 2-91 and Lees Summit rd. moving to the east. +2011-11-23,38.8119444,-94.5316667,Belton,MO,sphere,90,Silver/white orbs seen over Belton, MO +2011-11-23,42.9813889,-70.9483333,Exeter,NH,diamond,600,Black diamond on video in broad daylight +2011-11-23,40.0580556,-82.4013889,Newark,OH,triangle,20,Upside down "Y" low flying overhead wiht 4-5 dimly lit amber lights on each leg +2011-11-23,43.0238889,-70.9141667,Stratham,NH,fireball,300,Four orange orbs sighted in New Hampshire +2011-11-23,33.4352778,-112.3575,Goodyear,AZ,fireball,300,Large White Fireball disappears behind Estrella mountains +2011-11-23,38.3497222,-81.6327778,Charleston,WV,triangle,10,V shaped, silent fast moving orb formation. +2011-11-23,25.8572222,-80.2783333,Hialeah,FL,diamond,60,Huge flash diamond in the sky. +2011-11-23,48.6483333,-118.7366667,Republic,WA,circle,600,Small white flashing lights all over sky and bigger round non flashing object traveling low above womans car seen on sherman pass WA. +2012-11-23,42.3683333,-83.3527778,Livonia,MI,disk,30,Object too large, too close and too low while seeming to hover, then fade away. +2012-11-23,41.2563889,-74.3602778,Warwick,NY,formation,15,Four lights moved in unison, east to west, sliding across the night sky like a water bug and accelerating to simply vanish. +2012-11-23,34.1722222,-118.3780556,North Hollywood,CA,formation,600,Constellation looking formation. +2012-11-23,41.8525,-72.6441667,Windsor (Seen From),CT,unknown,20,Shite stationary spot; plane nearing. +2012-11-23,34.0186111,-95.2661111,Fort Towson,OK,cylinder,180,Clearly seen craft starts shimmering red orange underneath craft, pop, then appears to cloak. +2012-11-23,44.1336111,-89.5230556,Hancock,WI,fireball,180,Lights in the sky. +2012-11-23,42.0833333,-71.0188889,Brockton,MA,sphere,2,Bright white small round object..travelling very fast. +2012-11-23,21.3822222,-157.9336111,Aiea,HI,light,2,Light streaked forward in front of me. +2012-11-23,41.3325,-73.2077778,Monroe,CT,fireball,180,Bright orange fiery orb. +2012-11-23,33.5927778,-79.0088889,Garden City,SC,fireball,60,Orange ball of light in Garden City, SC heading NE. +2012-11-23,38.1041667,-122.2555556,Vallejo,CA,sphere,60,4 bright orange red circles floating in sky suddenly disappear +2012-11-23,21.3069444,-157.8583333,Honolulu,HI,circle,5,REALLY FAST GREEN CIRCULAR LIGHT IN THE SKY. +2012-11-23,38.5816667,-121.4933333,Sacramento,CA,other,60,Strange lights (10-12) in stringlike formation that suddenly drifted apart appeared round in shape with copper like glow illumination. +2012-11-23,42.7919444,-83.6277778,Holly,MI,light,30,Very personal sighting. +2012-11-23,43.1636111,-73.0727778,Manchester,VT,light,1800,Mysterious orange lights spotted rising above Mt. Equinox. +2013-11-23,32.7355556,-97.1077778,Arlington,TX,triangle,751,silent v shaped ufo all white lights not conventional aircraft lights. +2013-11-23,46.6311111,-68.4066667,Ashland,ME,unknown,10,Very Bright Aqua Blue Light in Shape of Cone. +2013-11-23,42.4775,-83.0277778,Warren,MI,diamond,7200,Stayed in proximity 5 degrees north of moon. +2013-11-23,46.5927778,-112.0352778,Helena,MT,oval,2,An aircraft with very bright green lights plummeted out of the sky then flew unexplainable speeds back into the night sky. +2013-11-23,48.2766667,-116.5522222,Sandpoint,ID,triangle,30,Heading Southeast on Hwy 2 from Priest River, Id to Sandpoint, Id at Wrenco Loop Road. Low flying projectile, mirror-like reflective su +2013-11-23,41.7,-71.6833333,Coventry,RI,other,172800,A light over Rhode Island for more than 10 days. ((NUFORC Note: If the time is p.m., we suspect Venus. PD)) +2013-11-23,36.8527778,-75.9783333,Virginia Beach,VA,chevron,20,V-shaped moving slow over houses. +2013-11-23,41.7991667,-85.4191667,Sturgis,MI,light,3600,Ball of light SW of Sturgis, Mi. looked like an extremely close and bright planet but vanished suddenly. ((NUFORC Note: Venus? PD)) +2013-11-23,38.0044444,-122.2977778,Pinole,CA,light,3600,I saw what I thought was a star but moving fast from horizon S to N, object zig zgged, looped, changed directions erratically. +2013-11-23,28.8525,-81.6855556,Eustis,FL,circle,2700,Very bright circle of light that did not move for as long as I saw it (about 45 minutes). +2013-11-23,35.1083333,-81.0430556,Lake Wylie,SC,fireball,300,Possible UFO Sighting in Lake Wylie, SC. +2013-11-23,37.1377778,-76.8355556,Surry,VA,light,900,Very Bright Stationary Light Seen Over Surry, Virginia. +2013-11-23,35.1083333,-81.0430556,Lake Wylie,SC,light,45,Strange lights in the sky. +2013-11-23,47.6588889,-117.425,Spokane,WA,light,540, On Saturday 11-23-13 at approximately 7:15pm I let the dog outside to go to the bathroom. The backyard faces south. I looked up in t +2013-11-23,47.6588889,-117.425,Spokane,WA,light,600,On 11-23-2013, Saturday, about 7:15pm, my family, a guest and I went out back of my home to play with our dog. The sky was clear. While +2013-11-23,42.8697222,-72.2822222,Swanzey,NH,light,6,A zigzagging orange light ball moving upwards into the night sky than vanishes. +2013-11-23,29.1655556,-81.0047222,South Daytona,FL,sphere,120,Fire like orb climbing emerging from the west moving east turning to the north. +2013-11-23,33.3061111,-111.8405556,Chandler,AZ,fireball,90,Slow-moving orange light crossing overhead, then slowly burning out. +2013-11-23,36.0625,-94.1572222,Fayetteville,AR,chevron,10,Chevron shape with an extra bend on each end, dark and completely silent,dim orange illuminating light +2013-11-23,44.6366667,-123.1047222,Albany,OR,circle,3600,5 bright flashing lights, blue, red, green and white. +1977-11-24,43.6055556,-71.6547222,New Hampton,NH,other,120,white/yellowish lights shaped like a bulldozer track moving in a counterclockwise direction. +1984-11-24,43.3380556,-89.0152778,Columbus,WI,cigar,10,Mid day cigar shape citing while deer hunting +1984-11-24,42.7119444,-73.2041667,Williamstown,MA,triangle,1200,Don't want to divulge any information that might involve other witnesses of this event without their permission. Suffice to say that my +1989-11-24,30.4380556,-84.2808333,Tallahassee,FL,sphere,10,small spheres flying in formation near approach to Tallahassee airport +1989-11-24,38.545,-121.7394444,Davis,CA,triangle,20,Speedy Black Triangle over Central California in the middle of the day. +1993-11-24,46.4355556,-109.8336111,Harlowton (In General Vicinity Of Malmstrom Afb),MT,formation,21600,6-7 hr. long event during which a triangle,disks and an IMMENSE cylindrical object were observed clearly at close range and through opt +1995-11-24,42.8691667,-84.9030556,Portland,MI,disk,25,large saucer object with red and green light over highway that sped away at unbelievable speeds. +1996-11-24,46.8083333,-100.7833333,Bismarck,ND,light,60,Nat. Weather Serv. empl. sees a small, circular, distinctly flame-orange obj. in the S sky. Brighter & larger than brightest star. +1996-11-24,25.7738889,-80.1938889,Miami,FL,light,120,A light the size of an average star was spotted traveling at grater spped than commmercial aircraft at a high altitude. +1997-11-24,38.3605556,-75.5997222,Salisbury,MD,oval,120,Bright lights coming up over the trees. See little tiny oval yellowesh glowing thing. It would get bright then dim, then bright than d +1997-11-24,38.3605556,-75.5997222,Salisbury,MD,oval,120,A gold ovalish shaped craft hovering just over the tree line, varrying in intensity of light, no sound. +1997-11-24,28.0777778,-82.7638889,Palm Harbor,FL,triangle,480,tracked a triangular object with seven or eight lights hover for approx. 2-3 min. then travel eastward out of view. +1998-11-24,48.2766667,-116.5522222,Sandpoint,ID,light,1800,My friend and I witnessed strange lights over my back yard. We watched whatever it was decend closer and closer to the pond in my back +1998-11-24,43.4686111,-71.2325,Alton Bay,NH,light,600,In a north westerly direction from my residence, observed a bright light doing very erratic maneuvers at an altitude of approximatly 50 +1998-11-24,34.5025,-84.9511111,Calhoun,GA,unknown,45,Could not see the entire shape because of cloud cover.but rear was straight.There were no lights,no sound,but I could see underneath cl +1998-11-24,30.8325,-83.2786111,Valdosta,GA,circle,10,2 pulsing redlights were flying around in circles then faded away, a third identical craft appeared it stood still then faded away +1998-11-24,40.6469444,-83.6097222,Kenton,OH,formation,20,my wife and i were in the hottub this evening and i looked up into the clear night and was watching the stars when out of the north we +1998-11-24,40.8686111,-82.3183333,Ashland,OH,triangle,15,Witnessed an immense, triangular object moving from North to South at a rate of speed never before seen while star-gazing. +1998-11-24,40.2141667,-77.0088889,Mechanicsburg,PA,light,1800,Seen unusual light in sky +1999-11-24,33.8352778,-117.9136111,Anaheim,CA,fireball,900,Ufo shooting smaller crafts from bigger Ufo +1999-11-24,39.7844444,-93.0733333,Brookfield,MO,light,900,3 lights moving generally south to north. All had a red light and white strobe lights that appeared to rotate around them. +1999-11-24,38.5816667,-121.4933333,Sacramento,CA,chevron,45,Noted two airliner sized objects travelling West to Easterly across the sky within my field of view. +1999-11-24,33.7488889,-84.3880556,Atlanta (Going Northwest Toward, Highway 316),GA,circle,180,circle throwing out light. +1999-11-24,35.9380556,-77.7908333,Rocky Mount,NC,cigar,300,Birght, yellowish-orange, cigar shaped object over Sunset Ave./ Business 64 exit in Rocky mount, NC. +2000-11-24,42.0527778,-88.5480556,Burlington,IL,circle,10,White disk in Burlington +2000-11-24,39.7391667,-104.9841667,Denver,CO,triangle,30,Five faint red things in a fast and silent V formation in Denver at 5:52pm on 11/24/00 with no running lights? +2000-11-24,36.9772222,-121.8983333,Aptos,CA,fireball,2,Green fireball falling to the ground +2001-11-24,34.1866667,-118.4480556,Van Nuys,CA,circle,180,background of sky - deep blue Too high maybe over 60ꯠ fts or more +2001-11-24,41.4952778,-79.4561111,Tionesta,PA,light,25200,A storm was moving in that evening, and we watched what first looked like someone shining a spotlight into the sky. This is what we th +2001-11-24,29.2105556,-81.0230556,Daytona Beach,FL,disk,600,Very slow moving disk shaped craft heading towards lighthouse +2001-11-24,38.5816667,-121.4933333,Sacramento,CA,fireball,10,Giant fireball like that seen in recent singapor video appears than vanishes. +2002-11-24,35.6869444,-105.9372222,Santa Fe,NM,chevron,10,slow moving object evolves from a light green colored embryo shape to a full saucer with tent top and wht bulb like trim. +2002-11-24,30.2263889,-93.2172222,Lake Charles,LA,circle,900,A small dot that didnt' seem to move as a jet flew under as it was passing and dot looked white and we watched 15 min. +2002-11-24,44.8011111,-68.7783333,Bangor,ME,cylinder,300,I saw a translucent, high flying, cylinder, with faint contrails traveling in a direction that is seldom seen in this area. +2003-11-24,46.5483333,-110.9013889,White Sulphur Springs,MT,circle,10800,There were two crafts hovering for several hours. +2003-11-24,38.5816667,-121.4933333,Sacramento,CA,triangle,60,Low flying Triangular Object w/ 7 lights. As it passed overhead appeared to be a 5 sided dark gray object. +2003-11-24,32.5888889,-96.3086111,Kaufman,TX,sphere,20,While watching jets,saw sphere and video-taped +2003-11-24,38.8338889,-104.8208333,Colorado Springs,CO,changing,300,Colorado Springs has Bright Stationary Object(s) that were filmed for about 5 minutes. Then disapears. +2003-11-24,43.3666667,-124.2166667,Coos Bay,OR,oval,360,very bright light, slowing and speeding up, white light w/red and yellow lights around main light +2003-11-24,64.8377778,-147.7163889,Fairbanks,AK,disk,300,UFO speeding south, westward of Fairbanks. +2003-11-24,30.3933333,-86.4958333,Destin,FL,circle,2700,Large (circular view with possible oval side)object with sophistacted lighting system hovered and moved over ocean (Gulf of Mexico) +2003-11-24,27.5061111,-99.5072222,Laredo,TX,circle,15,UFO sighted over U.S - Mexico border town. +2003-11-24,32.7152778,-117.1563889,San Diego,CA,triangle,60,Triangle with circular lights on each end. +2004-11-24,28.565,-81.5863889,Winter Garden,FL,changing,120,3 purple/white objects , fast no sound 1000ft , against black sky around midnight electrical dist in truck +2004-11-24,32.7252778,-114.6236111,Yuma,AZ,chevron,360,V-SHAPED ORANGE GLOWING OBJECT THAT MOVED STRAIGHT UP UNTIL IT BECAME IMPOSSIBLE TO SEE. +2004-11-24,42.5291667,-85.8552778,Allegan,MI,unknown,120,Bright light/enormous aircraft hovering over Allegan County +2004-11-24,33.6469444,-117.6883333,Lake Forest,CA,disk,900,ufo flying around my neighborhood, i got a couple pictures before it left at an unhuman rate of speed! ((NUFORC Note: Possible hoax.)) +2004-11-24,38.005,-121.8047222,Antioch,CA,fireball,900,3 fireballs dropping smaller balls of light seen in the north sky moving east over antioch california +2004-11-24,40.7141667,-74.0063889,New York City (Manhattan),NY,light,45,Night-time sighting of UFO over Midtown NYC. ((NUFORC Note: Possible landing light on an airliner approaching local airport? PD)) +2005-11-24,39.4666667,-87.4138889,Terre Haute,IN,light,60,White light - suddenly gone +2005-11-24,40.5205556,-81.4741667,Dover,OH,light,14400,Strange star like object that was extremely bright and then dimmed and became bright again many times. +2005-11-24,43.905,-91.4361111,Nodine,MN,light,3600,Large glowing light hovering low on the horizon. ((NUFORC Note: Possibly Venus. PD)) +2005-11-24,34.4208333,-119.6972222,Santa Barbara,CA,triangle,15,Large dark triangle with very unusual orange lights flying low, slow, and was completely silent. +2005-11-24,40.0830556,-74.0686111,Point Pleasant,NJ,diamond,90,Lights over the beach/ocean at the Jersey Shore Thanksgiving evening 2005 +2005-11-24,39.0416667,-76.0666667,Centreville,MD,light,90,red lights, soundless, hover or move with blistering speed. +2005-11-24,36.0955556,-79.4380556,Burlington,NC,formation,120,Crystal clear sky. Several orange-white objects,in formation,RAPIDLY changing positions,front to back, side to side, looping, suddenly +2005-11-24,27.7705556,-82.6794444,St. Petersburg,FL,sphere,3600,starlike objects with very distinct flashing, colored lights. +2005-11-24,33.7222222,-116.3736111,Palm Desert,CA,triangle,300,My dog awoke me from a ufo trance where I knew what was happening and was okay with it. +2005-11-25,33.9908333,-118.4591667,Venice,CA,light,1200,Two light orbs with propulsion flares on bottom flying above Venice,CA +2006-11-24,37.4416667,-77.0438889,Providence Forge,VA,light,20,White pinpoint with trail, sudden brilliant flash. +2006-11-24,40.8336111,-75.7141667,Lehighton,PA,disk,5,Stereotypical movie ufo(disk emitting different colored lights) seen in Lehighton Pa +2006-11-24,39.025,-99.8791667,Wakeeney (Near; Trego County) (E On Interstate 70),KS,other,6,Observed barbell shaped with spheres on each end and a connecting device of some type between the two spheres. +2006-11-24,41.9558333,-78.6441667,Bradford,PA,light,180,This object faded out in regular intervals +2006-11-24,44.6669444,-93.6266667,Jordan,MN,fireball,4,I was out side at about 7:30 at night with my telescope, when I happened to look up at the sky and saw what I at first thought was a sh +2006-11-24,35.3883333,-82.5669444,Mills River,NC,fireball,45,Large, glowing, yellow sphere in Blue Ridge Mountains. +2006-11-24,29.7855556,-95.8241667,Katy,TX,triangle,900,My son and I watched a triangular shaped craft several thousand feet in the air that remained stationary but rotated or gyrated. +2006-11-24,42.6666667,-71.7055556,Townsend,MA,fireball,600,Large fireball heading towards sun 5 fighters in percuit +2006-11-24,40.1063889,-75.1088889,Rydal,PA,light,1200,Mysterious Number Of Lights And Military Aircrafts +2006-11-24,44.6669444,-93.6266667,Jordan,MN,fireball,4,I was out side at about 7:30 at night with my telescope, when I happened to look up at the sky and saw what I at first thought was a sh +2006-11-24,37.305,-93.4283333,Willard,MO,triangle,900,Shuttle-like craft hovers and flies silently over Willard area. +2006-11-24,33.4483333,-112.0733333,Phoenix,AZ,rectangle,120,My friends and I were standing outside in the central phoenix area, when one of them informed me of a large white light above Sky Harbo +2006-11-24,37.9452778,-104.8347222,Colorado City,CO,oval,432000,Right in front of my house I saw red and blue flashing lights at first I thought it was a plane but then I noticed that it was hovering +2007-11-24,40.8041667,-74.0125,North Bergen,NJ,light,0.5,Beam shoot towards park. +2007-11-24,37.7833333,-121.5416667,Mountain House,CA,circle,60,Red Ball of Fire +2007-11-24,34.2572222,-118.4661111,Mission Hills,CA,cigar,600,Ufo over the san fernando valley +2007-11-24,32.7152778,-117.1563889,San Diego,CA,light,120,2 bright reddish orange lights, moving up and away into the atmosphere +2008-11-24,39.7391667,-104.9841667,Denver,CO,light,300,Two twinkling, moving UFOs seen above the western horizon in Denver, CO. +2008-11-24,34.3113889,-89.9441667,Batesville,MS,chevron,15,boomarang shape +2008-11-24,42.9872222,-85.0711111,Ionia,MI,cross,45,Four pointed star shaped light sighted on 11/24/08 at 6pm, near Ionia, Mi. +2008-11-24,32.7833333,-96.8,Dallas,TX,light,1,Dropping object in middle of busy air traffic. +2008-11-24,36.0102778,-84.2697222,Oak Ridge,TN,rectangle,1,((HOAX)) black house size no noise 50 feet away 50 off ground +2008-11-24,39.0997222,-94.5783333,Kansas City,MO,triangle,90,Slow moving triangle shaped craft. Size of 2 or 3 football fields. +2008-11-24,40.1741667,-75.1072222,Hatboro,PA,disk,105,bright green light, hovering object, heat wave haze around object. +2009-11-24,45.1672222,-91.1491667,Cornell,WI,circle,300,Craft's over Firth Lake in Cornell, Wisconsin +2009-11-24,37.7397222,-121.4241667,Tracy,CA,chevron,300,I saw a red and blue "V" shaped object flying through the sky and emitting a bright l.e.d.-like light. +2009-11-24,41.7486111,-77.3008333,Wellsboro,PA,other,600,light following another,no sound,no flashing blocked out stars between the lights. +2009-11-24,40.8758333,-75.7327778,Jim Thorpe,PA,light,300,3 spherical bright white lights turned into a dim bluish light moving fast horizontally +2009-11-24,34.948055600000004,-82.1275,Lyman,SC,light,15,Star-like object at high altitude slowly moving over house to the southwest. +2009-11-24,47.6522222,-101.4152778,Garrison,ND,oval,900,11 orange oval objects moving under perceived intelligent control +2009-11-24,35.1555556,-89.7761111,Cordova,TN,triangle,30,Large triangular- shaped object traveling East to West at approx.Mach 1-1.5 over North Memphis, Tennesee +2009-11-24,34.2011111,-118.5972222,Canoga Park,CA,other,40,Three lights in Thousand +2010-11-24,43.0527778,-74.3441667,Gloversville,NY,formation,900,bright object with jet sound engine stops in sky and engine sound ceases +2010-11-24,47.4736111,-94.88,Bemidji,MN,fireball,120,Flaming Orb in Chippewa National Forest +2010-11-24,31.9636111,-95.2702778,Jacksonville,TX,flash,10,streak of light low to ground caught on game camera +2010-11-24,33.6888889,-78.8869444,Myrtle Beach,SC,light,3600,Two strange stationary lights in the sky with no specific shape and variolus colors. ((NUFORC Note: Twinkling stars?? PD)) +2011-11-24,33.6125,-117.7119444,Laguna Hills,CA,triangle,60,V-Shaped low Flying Aircraft with many Red and Green Bright Lights fly 20 ft over my car. +2011-11-24,42.3583333,-71.0602778,Boston (Northwest Of),MA,light,11,Second sighting. First on Cape Cod, Second in Boston +2011-11-24,36.0525,-95.7905556,Broken Arrow,OK,unknown,2700,White light becomes two and changes colors +2011-11-24,44.0522222,-123.0855556,Eugene,OR,light,13,A single spot light shinning on me from on High above. +2011-11-24,45.739444399999996,-91.9252778,Shell Lake,WI,circle,1980,Round object that emited light, or reflected sunlight onto ground by the camera, 1 hour after sunrise +2011-11-24,41.5580556,-73.0519444,Waterbury,CT,diamond,300,What Did I Just See! Waterbury CT. 11/24/11 +2011-11-24,36.6436111,-93.2183333,Branson,MO,light,600,Saw light move left to right, and descending +2011-11-24,28.5380556,-81.3794444,Orlando,FL,fireball,600,Thanksgiving Evening shortly after dark, there was orange fireballs one after another, 7 in total, appearing mid skyline and traveling +2011-11-24,43.2166667,-123.3405556,Roseburg,OR,light,300,Amber/Orange lights evenly spaced in a line moved north quickly and disappeared in the clouds +2011-11-24,43.0830556,-73.785,Saratoga Springs,NY,fireball,600,Going from west to east over Saratoga High School 3-4 individual fireball type sighting moving across the sky.3 more in a triangle +2011-11-24,32.7866667,-79.795,Isle Of Palms,SC,triangle,420,Triangular shape with orange lights moving slowly towards ocean, then disappearing. +2011-11-24,42.6291667,-73.865,Slingerlands,NY,circle,21600,Orange spheres seen in the Albany County, NY, area. +2011-11-24,40.0322222,-74.9577778,Riverside,NJ,fireball,300,Two large Fireballs slowly moving south to north 11-24-11 +2011-11-24,32.7152778,-117.1563889,San Diego,CA,light,300,3 strange lights with no object insight but traveled from the north to the east disappearing! +2011-11-24,35.7719444,-78.6388889,Raleigh,NC,circle,5,UFO sighting in Raleigh/Knightdale on Thanksgiving +2011-11-24,37.8227778,-121.2755556,Lathrop,CA,light,900,Formation of floating lights in Thanksgiving night sky +2011-11-24,40.3355556,-75.9272222,Reading,PA,fireball,120,I was driving home from Thanksgiving dinner at my friends house, about five minutes away. It was a beautiful day and I had one heineken +2011-11-24,32.4616667,-90.1152778,Madison,MS,triangle,300,Witnessed three bright orange lights in triangle formation that stood steady and unflickering approx.10 minutes then disapeared. +2011-11-24,39.4597222,-90.6258333,Pearl,IL,sphere,7200,Round object rapidly changing colors with jets flying over it....video proof!!!! +2011-11-24,41.9316667,-87.9888889,Addison,IL,oval,480,Oval shape craft with 2 extremely large bright pulsating lights. +2011-11-24,36.3302778,-119.2911111,Visalia,CA,unknown,1200,4 lights moving in a precise pattern as though on the perimeter of a sphere. ((NUFORC Note: Advertising light. PD)) +2012-11-24,37.0513889,-122.0722222,Felton,CA,oval,180,Two UFOS seen by a skeptic in Felton, CA. +2012-11-24,33.6597222,-85.8316667,Anniston,AL,light,180,Old fort in Anniston alabama bright light. +2012-11-24,33.1958333,-80.0133333,Moncks Corner,SC,formation,5,V shaped object emitting no sound or lights. +2012-11-24,25.7738889,-80.1938889,Miami,FL,fireball,60,Steady round object, yellow/orange, large size. 500 Lights On Object0: Yes +2012-11-24,40.7608333,-111.8902778,Salt Lake City,UT,light,1200,30+ orange-colored orb-like objects +2012-11-24,38.8008333,-77.3258333,Fairfax Station,VA,circle,60,Four bright orbs forming a rectangle that quickly regrouped into a straight line formation going upwards. +2012-11-24,32.3666667,-86.3,Montgomery,AL,circle,300,Four glowing orbs present in the night sky, traveling not spontaneously, and making no noise. +2012-11-24,38.5837,-90.4162,Glendale,MO,unknown,300,4 luminous objects flying low, slow and silent. Glendale, MO +2012-11-24,24.5552778,-81.7827778,Key West,FL,light,240,Approx 10 orange lights moving slowly in East sky over Atlantic for about 4 minutes then disappeared +2012-11-24,28.1758333,-80.5902778,Satellite Beach,FL,fireball,60,ORANGE FIREBALL FLYS LOW AND SILENT OVER BACK YARD WIFE AND 2 SONS WATCHED IT. +2012-11-24,38.5833333,-90.4066667,Kirkwood,MO,oval,120,6 silent objects flying over Kirkwood and Webster Groves. Golden brown in color. +2012-11-24,29.3011111,-94.7975,Galveston,TX,oval,30,Bright whiite round lite , low to ground and falling. Thought it was a helcopter that went into the bay. +2012-11-24,40.1225,-75.0638889,Huntingdon Valley,PA,triangle,300,I walked outside to go to store, looked up into the sky as I always do and seen at least 12 objects in the distance! I yelled for my. +2012-11-24,30.2866667,-89.3761111,Waveland,MS,light,600,This Event is happening more offen Red ball Moving Object. +2012-11-24,41.7688889,-72.4338889,Bolton,CT,light,300,One orb of light ascends quickly into sky while another descends behind tree line. +2012-11-24,30.1763889,-85.8055556,Panama City Beach,FL,sphere,45,PCB, FL. - Sighted one reddish/orange colored sphere/75-100 ft. high/100yds. from coast/travelling west to east. +2012-11-24,27.9472222,-82.4586111,Tampa,FL,circle,60,Orange orb about 1/2 mile up. Traveled in a straight line N to S about a minute then faded out. Not a plane. No flashing lights. +2012-11-24,32.8647222,-84.8541667,Pine Mountain,GA,disk,5,Blue round object in the sky +2012-11-25,32.3413889,-90.3216667,Clinton,MS,cross,3600,THIS IS NOT JUPITER. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2013-11-24,27.2436111,-80.83,Okeechobee,FL,light,240,Towards the E one bright light for a little while by itself then other flickering lights came with streaks of light falling from them. +2013-11-24,38.005,-121.8047222,Antioch,CA,circle,1200, UFO sighting Antioch CA--4 orange lights. +2013-11-24,37.3394444,-121.8938889,San Jose,CA,other,300,Unknown object high in the sky. +2013-11-24,35.2922222,-81.5358333,Shelby,NC,sphere,120,Silver reflective sphere hovering stationary over field +2013-11-24,35.3733333,-119.0177778,Bakersfield,CA,triangle,60,I saw white triangular object with metallic red at the apex. It was very loud and was travelling north. +2013-11-24,37.9747222,-87.5558333,Evansville,IN,disk,120,((HOAX??)) Debunk This. ((NUFORC Note: Possible hoax. Date is flawed, and contact information is wrong. PD)) +2013-11-24,42.2625,-71.8027778,Worcester,MA,triangle,1200,Bright stationary object in s/sw night sky. ((NUFORC Note: Sighting of the planet, Venus. PD)) +2013-11-24,38.9558333,-76.9458333,Hyattsville,MD,circle,10800,White cirlce of light with red lights in the sky for 3 hours, Way to big to be a star as the other stars in the sky were barley visible +2013-11-24,48.0152778,-122.0625,Lake Stevens,WA,changing,30,Odd multishaped Orange Orbs Seen Over Western Washington- Cascade Foothills, North Sound, Snohomish Co.. +2013-11-24,34.1480556,-117.9980556,Monrovia,CA,light,180,Multiple lights in the sky. +2013-11-24,41.9994444,-88.145,Hanover Park,IL,fireball,300,Lights was orange fire and moves faster. +2013-11-24,39.6861111,-74.9955556,Williamstown,NJ,other,1800,Strange shaped objects. +2013-11-24,42.9730556,-77.8530556,Caledonia,NY,triangle,900,Triangular shaped UFO caught on camera in southwest sky Caledonia, NY. +2013-11-24,41.85,-71.4666667,North Providence,RI,light,9000,Read above. ((NUFORC Note: We wonder whether the object might have been in the SW sky, therefore, Venus. PD)) +2013-11-24,42.2586111,-87.8405556,Lake Forest,IL,disk,60,Fast moving disk seen above the north Chicago-land area heading north. +2013-11-24,35.6125,-77.3666667,Greenville,NC,light,60,Three orange lights moving slowly east. Lights diminished and disappeared. +2013-11-24,42.5630556,-114.46,Twin Falls,ID,triangle,1273,Real UFO sightings over city TWINFALLS,id (Triangle) fly over me no sound no noise just light and they are fly, too. +2013-11-24,44.0583333,-121.3141667,Bend,OR,light,600,Eight bright red lights in the sky. +2013-11-24,44.0583333,-121.3141667,Bend,OR,light,900,Nine circular bright orange and yellow objects moving slowly then rising higher then vanished. +2013-11-24,44.4758333,-73.2125,Burlington,VT,triangle,60,Large Black Triangle High Altitude. +2013-11-24,44.4758333,-73.2125,Burlington,VT,changing,30,One Orb splits into Four. One massive object? or four small orbs traveling in unison? +2013-11-24,44.0583333,-121.3141667,Bend,OR,circle,300,We saw 6 very bright orange lights low in the sky. Much larger and brighter then stars. +1958-11-25,43.0388889,-87.9063889,Milwaukee,WI,disk,10,3 disk shaped lights swerving among each other across sky, got to North, shot straight into the stars +1973-11-25,38.9011111,-77.2655556,Vienna,VA,cigar,5,White cigar shaped object, very fast, no plausible explanation +1974-11-25,32.7497222,-86.5113889,Verbena,AL,sphere,300,Big Bobbing red light +1976-11-25,41.2586111,-95.9375,Omaha,NE,rectangle,60,White rectangular "door" opens in night sky, emiting orange beam of light +1978-11-25,30.275,-98.8716667,Fredericksburg (Northwest Hill Country)),TX,light,60,Blue lights fill room of house in rural Texas before abruptly vanishing +1985-11-25,28.9783333,-96.6458333,Edna,TX,unknown,240,nothing on military or commercialcould move that fast from a stopped position +1989-11-25,41.3080556,-72.9286111,New Haven,CT,cigar,1200,CIGAR SHAPE +1989-11-25,43.5172222,-88.4511111,Theresa,WI,triangle,600,layered white lights, large, silent, moving slowly over large distance at low altitude and suddenly disappeared with out a trace +1992-11-25,36.9741667,-122.0297222,Santa Cruz,CA,light,300,I was driving down the highway 17 to highway 1 south junction.. A light enveloped the car. I pulled over and got out of the car. I l +1993-11-25,36.8055556,-114.0663889,Mesquite (Approx. 15 Miles West On I-15 Of),NV,other,300,Two adults driving see "metallic" objects in sky. Look like commercial aircraft but no movement. Watch objects for a couple of minute +1996-11-25,43.3727778,-95.1236111,Arnolds Park,IA,triangle,30,Triangular Shaped Object Hovering Over Frozen Lower Gar Lake No More Than 1500ft (Aprox 1/4 Mile Away) From Bridge I Was Standing On. +1997-11-25,33.2075,-92.6661111,El Dorado,AR,other,3,One object with 5 dim red v shaped lights or five objects flying in formation. No sound. Moved generally West to East. Lights were shap +1998-11-25,38.2541667,-85.7594444,Louisville,KY,sphere,300,We were driving on the highway, when suddenly we saw a huge circular space craft over our car! It traveled at our side for abour 5 minu +1998-11-25,31.1238889,-97.9027778,Copperas Cove,TX,triangle,10,was waching Venus when craft appeared out of my eye. +1998-11-25,45.4313889,-122.7702778,Tigard (Portland Suburb),OR,fireball,2,my daughter and I were in our kitchen and the whole room lit up bright red. I thought the candles on our table caught something on fire +1998-11-25,30.2458333,-87.7008333,Gulf Shores,AL,flash,180,Observing stars and saw a shooting star and a moment latter I saw a fast blinking light that zig-zagged going N NW faster than aircraft +1998-11-25,40.5563889,-75.2897222,Springtown,PA,light,30,Driving home we witnessed a solid red light hovering about the below the tree line on the right side of the road. +1999-11-25,29.1691667,-95.4316667,Angleton,TX,light,2,Driving home from fishing, and saw a light in the sky. +1999-11-25,41.5963889,-73.9113889,Wappingers Falls,NY,light,300,I saw lota of stars then one started moving +2000-11-25,40.6638889,-74.2111111,Elizabeth,NJ,sphere,60,Wish to see more of those things!!! (UFO's)... +2000-11-25,33.58,-85.0766667,Carrollton,GA,unknown,5400,Two flashes of light cover ENTIRE sky - bright white followed by dark green, seen 5x in 1.5 hrs...more to story -gov't coverup? READ!!! +2000-11-25,37.3541667,-86.1222222,Wax,KY,circle,420,Deer hunter see's dancing ball of light in Kentucky sky. +2000-11-25,36.0525,-95.7905556,Broken Arrow,OK,sphere,480,Silver sphere moving at varying speeds and began ascent to higher altitude. +2000-11-25,34.2163889,-119.0366667,Camarillo,CA,light,10,Two crafts coming out 90 degrees from a burst of light. +2000-11-25,31.6038889,-89.1955556,Ellisville,MS,triangle,20,long triangle shaped object with lots of lights and soundless +2001-11-25,39.1752778,-84.2944444,Milford,OH,circle,15,Giant black aerobie floats over SW Ohio! +2001-11-25,36.7477778,-119.7713889,Fresno,CA,light,10,Bright rapidly moving blue white light +2001-11-25,37.6391667,-120.9958333,Modesto,CA,other,40,I saw a bright light in the sky, it looked like a small plane,it was florescent aqua blue and looked like it was crashing. +2001-11-25,37.8044444,-122.2697222,Oakland,CA,light,5,Fast moving Green light over Oakland, CA +2001-11-25,37.5586111,-122.27,Foster City,CA,rectangle,5,Green glowing square/rectangle shape with trail seen 11/25/01, Foster City CA +2001-11-25,40.0394444,-84.2033333,Troy,OH,egg,300,THE WINTER OF 2001 I WAS DRIVING AT APPROX 11.30 PM, ON A STATES ROAD OUTSIDE OF TROY HEADING HOME I LOOKED UP AND SAW A FAIRLY BRIGHT +2003-11-25,43.5780556,-70.3222222,Scarborough,ME,light,2,incredibly fast tranveling large white ball of light over scarborough +2003-11-25,43.3177778,-88.3788889,Hartford,WI,other,900,Brite light flash seen in bedroom. +2003-11-25,43.6613889,-70.2558333,Portland,ME,unknown,600,While at work on the Ptld, Maine, waterfront ,at 2a.m I did see bright white lights, 25-45 sec, that vanishedbehind,into a cloud , +2003-11-25,34.0005556,-81.035,Columbia (70 Miles South Of, On I-26 West),SC,circle,180,Enormous Round Object with Lights in the Sky +2003-11-25,39.7683333,-86.1580556,Indianapolis,IN,unknown,300,hovering light over Avon for 10 minutes sends signal then disappears +2003-11-25,36.7983333,-81.6825,Chilhowie,VA,other,180,pyramidal craft daylight sighting +2003-11-25,45.5236111,-122.675,Portland,OR,disk,180,Wobbling Disc Daylight Sighting +2003-11-25,45.3552778,-84.3005556,Tower,MI,light,180,It had very bright light and blinking green and red lights . It moved downward in a straight perfect and quiet manner. +2003-11-25,38.385555600000004,-81.8363889,St. Albans,WV,other,5,Bright object seemed to move at an amazing speed toward the area I was standing and paused for a moment, then flew away. +2003-11-25,33.7488889,-84.3880556,Atlanta,GA,changing,180,Bright light which seemed to morph into wedge/cylinder with red and blue/green lights at intersection of North Druid Hills and Lavista +2003-11-25,44.0886111,-87.6575,Manitowoc,WI,formation,300,Pair of lights over Lake Michigan +2004-11-25,38.5816667,-121.4933333,Sacramento,CA,light,30,Fast light approaches me and I shoot 2 Quicktime clips of it passing overhead while driving! +2004-11-25,41.0041667,-92.3736111,Ottumwa,IA,triangle,300,Triangular UFO w\red,blue lights,spinning clockwise,completely silent +2004-11-25,35.3858333,-94.3983333,Fort Smith,AR,circle,120,There were spinning lights and all of a sudden they just dissappered...wow. +2004-11-25,41.9438889,-85.6325,Three Rivers,MI,other,300,Hawk like object +2004-11-25,35.4675,-97.5161111,Oklahoma City,OK,disk,4,Fireball or whatever south of Okla. City, 21:45 local, 11/25/04 +2004-11-25,29.7630556,-95.3630556,Houston,TX,light,600,UFO TWICE ABOVE MY HOUSE. +2004-11-25,33.1433333,-117.1652778,San Marcos,CA,light,120,Orange Light over Highway 78 +2005-11-25,41.8994444,-87.9402778,Elmhurst,IL,disk,40,ufo spaceship in elmhurst +2005-11-25,35.2269444,-80.8433333,Charlotte,NC,teardrop,300,Teardrop UFO appearance +2005-11-25,39.1652778,-86.5263889,Bloomington,IN,cone,10800,cone shaped object moving slowly east while strong nnw winds blew +2005-11-25,37.3280556,-87.4988889,Madisonville,KY,light,1800,On 11-25-05 around 6:45 a large red light was seen in the south-eastern sky around Madisonville,KY. +2005-11-25,37.3280556,-87.4988889,Madisonville,KY,light,2700,Local radio station reporting on UFO or whatever it was,lots of callers were seeing the same thing. ((Venus??)) +2005-11-25,27.9472222,-82.4586111,Tampa,FL,triangle,45,translucent isosoles triangle with red flashing light at each triangle point moving in an arc through the sky +2005-11-25,26.625,-81.625,Lehigh Acres,FL,oval,3,dull roundish blur crosses night sky +2005-11-25,40.5791667,-74.4119444,South Plainfield,NJ,circle,3,large green orb with light trail appeared over South Plainfield +2005-11-25,41.1147222,-74.15,Suffern,NY,light,5,well demarcated flash of light with a tail appeared to be falling towards the earth in a free fall, then disappeared except for three s +2005-11-25,37.6922222,-97.3372222,Wichita,KS,cigar,300,aliens speak german??? +2006-11-25,40.4252778,-75.1397222,Pipersville,PA,circle,5,The object was stationary for roughly 3-5 seconds. It had a neon greenish light and was rotating on an axis. The color made it look li +2006-11-25,41.5344444,-76.2866667,Colley,PA,formation,7200,This object usually is a bright light normally, but changed to a larger formatrion of several colorful lights this morning. +2006-11-25,29.7352778,-94.9772222,Baytown,TX,circle,60,not the size of any plane. ((NUFORC Note: Student report. Probable hoax. PD)) +2006-11-25,35.9488889,-85.0269444,Crossville,TN,fireball,120,Object orange with multiple lights appearing to not be moving and/or moving toward or away from us +2006-11-25,34.2072222,-84.1402778,Cumming,GA,light,10,Looked like a satellite moving overhead but a smaller object shot out from its 6 o clock position. +2006-11-25,41.2411111,-76.7241667,Hughesville,PA,oval,600,Making no sound, the object came from far into the sky down close enough to view, and scanned the area. +2007-11-25,40.9730556,-117.7347222,Winnemucca,NV,light,600,ufo over the hill of winnimucca nevada +2007-11-25,29.8944444,-81.3147222,St. Augustine,FL,oval,120,Lights in circular pattern hovered in the trees of a heavily wooded area, uniformly lifting and fading away +2007-11-25,47.2530556,-122.4430556,Tacoma,WA,light,1800,Strange lights above Tacoma, Washinton. ((NUFORC Note: Possible aircraft lights, we wonder. McChord AFB is nearby. PD)) +2007-11-25,47.2530556,-122.4430556,Tacoma,WA,light,1800,Bright orange steady light over Tacoma, Washington. +2008-11-25,30.7233333,-95.5505556,Huntsville,TX,cigar,438,Cigar shaped UFO's sighted and investigated as they traveled at a high rate of speed. +2008-11-25,41.7958333,-87.9755556,Westmont,IL,rectangle,20,Reddish-gray rectangular object crossing sky, daytime sighting. +2008-11-25,48.8258333,-122.2147222,Deming,WA,cigar,10,Long siler, sparkely object in Deming. +2008-11-25,41.6302778,-87.8538889,Orland Park,IL,light,2400,2 slow moving lights in formation over Orland Park, IL +2008-11-25,43.0591667,-92.3175,New Hampton,IA,light,900,2 HUGE BRIGHT STATIONARY LIGHTS IN THE SKY. ((NUFORC Note: Venus and Jupiter currently are prominent in the sw sky. PD)) +2008-11-25,36.4202778,-81.4736111,West Jefferson,NC,light,1,Shooting star with NO TAIL or UFO +2008-11-25,39.3269444,-77.6644444,Knoxville,MD,teardrop,5,I looked up to see teardrop shaped light , back dropped by a mountain, as it shot towards the ground at a 45 degree angle. +2008-11-25,37.6616667,-75.8308333,Harborton,VA,light,7200,bright object emitting colored lights moving slowly up and south from 35 to 60 degress elevation east. ((NUFORC Note: Sirius?? PD)) +2009-11-25,33.7669444,-118.1883333,Long Beach,CA,sphere,60,Confirming sphere siting +2009-11-25,33.6469444,-117.6883333,Lake Forest,CA,formation,900,Multiple luminating lights seen over horizon from Lake Forest, CA +2009-11-25,37.8716667,-122.2716667,Berkeley,CA,other,180,Two Bright star like UFOs follow eachother over Berkeley/Oakland CA and zoom off into space. +2009-11-25,36.1544444,-109.5519444,Chinle,AZ,other,420,2 perfectly aligned orbs silently cruise across Navajo Nation skies. +2009-11-25,36.4197222,-82.4766667,Gray,TN,light,120,There were two star like objects moving in unison and keep the same distance apart the entire time. +2009-11-25,38.5816667,-121.4933333,Sacramento,CA,light,300,Twin, non-blinking lights, one following the other, seen over Sacramento before turning red and fading out. +2009-11-25,34.9202778,-82.2963889,Taylors,SC,unknown,90,It was an object roughly two football feilds in length going approximately 10-20 mph. +2009-11-25,34.0852778,-117.96,Baldwin Park,CA,light,180,Two Bright ligths over Baldwin Park California. +2009-11-25,33.8536111,-118.1330556,Lakewood,CA,light,120,2 objects flying very high from the north to the south over southern ca. +2009-11-25,37.3041667,-77.2875,Hopewell,VA,light,150,Two white lights from afar then three white lights when underneath in triangular form. +2009-11-25,32.7152778,-117.1563889,San Diego,CA,flash,600,A flash(approx. 2nd mag when first sighted) every 8 sec that moved about 15 min arc in a n.easterly dirrection untill it was too dim. +2009-11-25,30.4752778,-90.1008333,Covington,LA,circle,2,Fast moving white light +2009-11-25,34.2783333,-119.2922222,Ventura,CA,chevron,6,I saw a huge very black chevron shaped craft, with lights like steady stars, heading NNW out of Ventura CA towards Ojai. +2010-11-25,37.4097222,-79.9127778,Daleville,VA,triangle,2400,a large ship the size of a few football feilds let four ships out and left +2010-11-25,37.775,-122.4183333,San Francisco,CA,chevron,15,Thanksgiving Night 2010, Cheveron UFO flew over San Francisco, CA. +2010-11-25,37.775,-122.4183333,San Francisco,CA,disk,3,Thanksgiving night, 2 UFOS move fast over SF and caught on tape. +2010-11-25,27.8002778,-97.3961111,Corpus Christi,TX,triangle,300,3 craft stayed still in the sky and one left +2010-11-25,36.1630556,-82.8311111,Greeneville,TN,other,3600,many sightings but the last ones were for a week Novemeber 23-27@010..Different events were flashing bright light,..flickering lights.. +2010-11-25,41.5266667,-124.0372222,Klamath,CA,light,600,Bright light Thanksgiving night 2010 +2011-11-25,38.2541667,-85.7594444,Louisville,KY,oval,720,Very large red orb, changing to green. Silent and hovering, then making unnatural maneuver. +2011-11-25,45.3841667,-122.7627778,Tualatin,OR,light,300,Light sphere above odd shaped clouds +2011-11-25,39.2688889,-84.2638889,Loveland,OH,formation,120,Whitish orange lights in two triangle formations pass overhead. +2011-11-25,35.9936111,-82.2591667,Green Mountain,NC,sphere,5,Glowing Green Sphere in sky in Western NC +2011-11-25,40.1497222,-75.4022222,Trooper,PA,circle,300,12 round orange objects crossing night sky from south to north +2011-11-25,39.0169444,-94.2813889,Blue Springs,MO,changing,60,10+lights in the sky over Blue Springs +2011-11-25,32.64,-117.0833333,Chula Vista,CA,triangle,5,Fast West to East moving equilateral triangle with three white lights one on each point. +2011-11-25,27.725,-82.7413889,St. Pete Beach,FL,light,120,Bright Orange Light overhead in a straight orbital type flight. +2011-11-25,41.5580556,-73.0519444,Waterbury,CT,fireball,900,At about 9 pm, we observed a red-orange fireball moving slowly across the sky. +2011-11-25,36.1961111,-86.6225,Hermitage,TN,light,2,Bright blue light falling from sky. +2011-11-25,44.9483333,-93.3477778,St. Louis Park,MN,fireball,15,Low-flying fire ball over St. Louis Park, Minnesota on 11/25/11 +2011-11-25,33.7669444,-118.1883333,Long Beach,CA,fireball,300,VANTAGE POINT AND SIGHTING DIRECTION Standing at GPS coordinates (per Google Maps) 33.778603,-118.198761, if you face north and then tu +2011-11-25,29.6513889,-82.325,Gainesville,FL,circle,2,Yellowish/orange sphere, extremely fast flew from horizon to horizon in seconds +2012-11-25,36.1988889,-115.1166667,North Las Vegas,NV,unknown,10,Was feeding the dogs when i saw a light fixed my back yard the kind you get from a police helicopter. So i looked up to see if it was. +2012-11-25,36.175,-115.1363889,Las Vegas,NV,unknown,3,Bright green flash while in backyard. A streak appeared in sky like a jet streak after flash had ended, but there was complete silence. +2012-11-25,35.615,-87.0352778,Columbia,TN,light,275,Light shaped like a circle +2012-11-25,41.85,-87.65,Chicago,IL,changing,120,Brilliant yellow/orange star-like light seen over downtown Chicago. +2012-11-25,35.7719444,-78.6388889,Raleigh,NC,formation,60,Three lights moving faster then everything I have seen. +2012-11-25,45.5236111,-122.675,Portland,OR,light,240,Extremely bright object in southern sky. - Portland. +2012-11-25,32.0833333,-81.1,Savannah,GA,circle,1200,Red lights over Savannah Ga. +2012-11-25,34.0005556,-81.035,Columbia,SC,other,240,Orange/red round shaped object in the sky. Looked like a round circle of fire with a fan shaped top that also appeared to be on fire. +2012-11-25,27.3361111,-82.5308333,Sarasota,FL,light,3600,7 balls of light flying in different difections. at different times for about an hour. +2012-11-25,37.78,-121.9769444,San Ramon,CA,formation,4,4 Silent Bright formation, just dimmer than Venus at a 45 degree viewing angle from 126 Deg, SE to 86 Deg. E in a matter of 3 seconds. +2012-11-25,61.2180556,-149.9002778,Anchorage,AK,light,5400,Object emitted another object. +2012-11-25,27.8425,-82.6997222,Pinellas Park,FL,disk,600,2 objects over st pete area 11/25/2012 +2012-11-25,39.6952778,-74.2591667,Manahawkin,NJ,light,180,Flashing light - moving rapidly - stopping...moving rapidly. +2012-11-25,35.615,-87.0352778,Columbia,TN,light,15,I was walking my dog, with the nearly full moon over head, and very few clouds in the night sky. A silent light, which I first thought. +2012-11-25,39.4861111,-75.0261111,Vineland,NJ,light,300,I saw 2 large red vertical lights flying low to the ground ..made no sound. +2012-11-25,42.2958333,-71.7133333,Shrewsbury,MA,circle,4,Fireball seen while looking east/north east. +2013-11-25,36.1658333,-86.7844444,Nashville,TN,triangle,360,Nashville Sunday/Monday Morning Triangle UFO. +2013-11-25,44.0463889,-123.0208333,Springfield,OR,formation,300,Solid line of bright red lights, then transitioning to blue but in longer duration than a plane.Craft circled back very quickly. +2013-11-25,44.0463889,-123.0208333,Springfield,OR,cross,30,T-shaped UFO with red and blue lights sighted in Springfield, OR. +2013-11-25,28.6697222,-81.2083333,Oviedo,FL,formation,120,Very bright green and red formation of light that was stationary and then moved down towards the ground very quickly. +2013-11-25,41.0544444,-76.2336111,Berwick,PA,triangle,180,Triangle UFO with Large Bright Center Light. +2013-11-25,35.0525,-78.8786111,Fayetteville,NC,fireball,8,one fireball splits into fours falling towards earth disappearing before main fireball disappeared. +2013-11-25,43.5408333,-116.5625,Nampa,ID,light,60,Driving through Nampa's old highway off of 12th ave heading to Eagle strange orb. +2013-11-25,40.5694444,-77.4030556,West Mifflin,PA,fireball,120,Standing on the porch talking on the landline phone, a bright orange ball with a tail-like flame appeared over a neighbor’s home moving +2013-11-25,26.2375,-80.125,Pompano Beach,FL,triangle,900,Black triangular object dancing around in the night sky. +2013-11-25,45.4208333,-122.6694444,Lake Oswego,OR,diamond,240,Diamond shaped, black, large, flat craft with 3 or 4 white lights and 1 red blinking light hovering in Lake Oswego, OR. +2013-11-25,40.7488889,-74.2616667,South Orange,NJ,fireball,120,Brightly glowing orange Fireball hovering above neighborhood. Hovered 15 seconds then ascended getting smaller until it disappeared. +2013-11-25,32.0722222,-84.2327778,Americus,GA,light,20,I am a 63 yr old male. While looking out of an upstairs open window directly to the south, I observed three lights in an echelon form +2013-11-25,38.9666667,-94.6166667,Leawood,KS,cigar,7,Silent Cigar Shaped UFO Leawood, KS. +1961-11-26,33.9163889,-81.5136111,Leesville,SC,flash,15,It was an overcast day. It was around 10am. My passenger and I left Summit, SC heading toward Leesville, SC. We saw an incredibly br +1976-11-26,29.7630556,-95.3630556,Houston,TX,circle,900,Night patrolman rendered defenseless by ALIENS and ARMORED aliens. Interlect exam took place on roof top of building. +1977-11-26,42.8741667,-77.2883333,Canandaigua,NY,triangle,7200,Triangular craft watching Bristol Mountain Ski Resort +1984-11-26,41.9141667,-88.3086111,St. Charles,IL,changing,2700,Object pulses in the red-blue-purple spectrum. +1985-11-26,33.3266667,-83.3886111,Eatonton (Near),GA,disk,3600,I was returning from deer hunting in PA. It was the Tues morn after Thanksgiving 1985 around 430 am. I was riding along Ga rt 441 south +1987-11-26,35.1322222,-118.4480556,Tehachapi,CA,unknown,480,Tehacipi, CA: Lights sighted and missing time noted. +1989-11-26,32.7833333,-96.8,Dallas,TX,triangle,600,Woman repts. bizarre, triangular ship w/ stunning, red, blue, green, & white lights. Surrounded by a haze. Excellent rept.. +1994-11-26,36.0725,-79.7922222,Greensboro,NC,cigar,1200,The object moved right and left very fast then a flash of light it split in two objects. +1996-11-26,29.2105556,-81.0230556,Daytona Beach,FL,disk,60,miles to the east we saw 5 discs in a semi arc. they were the size of a dinner plate. color that of a lighter flame, yellow. the clouds +1996-11-26,41.0036111,-76.4552778,Bloomsburg,PA,teardrop,120,Black balloon shaped object on thanksgiving day 1996 in Central PA +1998-11-26,42.6333333,-71.3166667,Lowell,MA,circle,30,Round 3 feet in diameter floating glowing white light teen saw it +1998-11-26,42.0427778,-88.0797222,Hoffman Estates,IL,unknown,3,saw something in the air +1998-11-26,32.7152778,-117.1563889,San Diego,CA,oval,10800,Ufo Playing with airliners in the sky. +1999-11-26,34.1480556,-117.9980556,Monrovia,CA,other,300,I WOKE AT 2AM IN THE MORNING, LYING ON MY BED IN THE PITCH DARKNESS, AND HOVERING ABOVE ME WAS A RED TRANSLUCENT LIGHT. IT SEEMED TO MO +1999-11-26,33.8491667,-118.3875,Redondo Beach,CA,formation,10,Blue-green luninescent objects moving at a high rate of speed, producing no sound and maneuvering at incredible angles to each other. +1999-11-26,33.8491667,-118.3875,Redondo Beach,CA,formation,15,Follow up to : Blue-green luminescent objects moving at a high rate of speed +1999-11-26,35.198055600000004,-111.6505556,Flagstaff,AZ,light,360,A glowing orange light. +2000-11-26,36.3125,-95.6158333,Claremore,OK,light,7200,I saw a bright multi-colored light which moved in an erratic fashion and appeared at times to be an orb surrounded by energy. +2000-11-26,32.8472222,-117.2733333,La Jolla,CA,light,480,I was walking my dogs when i noticed an extremly bright light over a canyon. At first i thought it might be a street light, but it app +2000-11-26,36.5877778,-84.1269444,Jellico,TN,circle,600,We saw the object over a mountain facing south. The object seemed to fade from bright to dim, several times. The bottom half seemed to +2000-11-26,46.0927778,-88.6422222,Iron River,MI,other,18000,Erratic, changing forms light of blue, green and yellow that flew patterns of ovals, a U and bobbing up and down. +2001-11-26,35.1216667,-120.6202778,Grover Beach,CA,light,600,It was about 5:40 in the morning , I was leting the dog out and in the sky looking south I saw a bright light traveling west to east At +2001-11-26,39.0255556,-77.0766667,Kensington,MD,light,600,We saw a light moving soundlessly in an erratic pattern and at varying speeds. +2001-11-26,44.98,-93.2636111,Minneapolis,MN,light,5,Minneapolis-two flashes of robin egg blue lightening behind clouds, leaving sky lit a little lighter in that area for 45 minutes after. +2001-11-26,38.9536111,-94.7333333,Lenexa,KS,formation,1020,Light Formation over Kansas City +2001-11-26,38.5816667,-121.4933333,Sacramento,CA,light,600,sacramento light beam- 11/26/01 +2001-11-26,38.2541667,-85.7594444,Louisville,KY,triangle,240,triangle shape low flying with 3 while lights on each corner. Object made no sound! +2002-11-26,45.0483333,-122.9572222,Brooks,OR,fireball,30,I was at the pilot truck stop in brooks oregon looking north when at 6:10 all of a sudden from east to west i saw 2 fire balls. it was +2002-11-26,40.3280556,-79.6155556,Jeannette,PA,other,3600,Someone is playing tic-tac-toe in the sky with contrails. Looking out a second floor window facing west. Was looking for a winter sto +2002-11-26,33.1958333,-117.3786111,Oceanside,CA,triangle,1800,Two objects appeared to my South West very bright. When the lights dimmed, I saw a triangular shaped objects with color lights. +2002-11-26,34.6991667,-86.7483333,Madison,AL,light,5,Light over the horizon dropping suddenly to no where +2003-11-26,45.5947222,-121.1775,The Dalles,OR,light,10,I saw weird, moving lights along the Columbia River heading Eastward. +2003-11-26,35.2380556,-111.8327778,Bellemont,AZ,fireball,300,A large glowing green fireball. +2003-11-26,33.9136111,-98.4930556,Wichita Falls,TX,chevron,180,Chevron shaped object observed over Wichita Falls, TX. +2003-11-26,39.9625,-76.7280556,York,PA,light,600,A object following our van +2003-11-26,42.4791667,-71.1527778,Woburn,MA,teardrop,300,Blue/green teardrop over woburn +2003-11-26,39.7683333,-86.1580556,Indianapolis,IN,other,360,The object was bright and stauled. +2003-11-26,33.6219444,-84.3691667,Forest Park (A Little South Of Atlanta),GA,light,900,Light over the skies of Georgia +2003-11-26,44.6397222,-73.1108333,Milton,VT,light,300,Bright steady light traveling low and heading north, no sounds were heard. +2003-11-26,45.8588889,-123.1916667,Vernonia,OR,sphere,30,Bright light seen near Mars, descended rapidly. +2003-11-26,33.3527778,-111.7883333,Gilbert,AZ,triangle,90,Nov 26th 6:55pm I saw three red lights +2003-11-26,34.4436111,-118.6086111,Valencia,CA,triangle,15,Silent, triangular object with three dim, greyish lights +2003-11-26,38.935,-74.9063889,Cape May County,NJ,light,5,STRANGE BLUISH---GREEN LIGHT. +2004-11-26,37.3341667,-79.5233333,Bedford,VA,circle,300,TWO DISTINCT ROUND WHITE LIGHTS STANDSTILL IN THE NIGHT SKY, THEN LIGHTS WENT OFF. +2004-11-26,37.3394444,-121.8938889,San Jose,CA,disk,45,It looked like a saucer... It was all light up and quite large in size. +2004-11-26,38.2541667,-85.7594444,Louisville,KY,light,900,4 lights moving across the moon +2005-11-26,37.2608333,-85.4988889,Greensburg,KY,changing,3600,Multiple lights seen in the sky including erratic movement. +2005-11-26,33.7488889,-84.3880556,Atlanta,GA,unknown,2,Fast moving white light +2005-11-26,45.6872222,-120.8125,Maryhill,WA,light,1,Fast moving starlike object west of Maryhill, WA: Zenith to horizon in 1 sec. Flat trajectory with wobble, did not flare like meteor. +2005-11-26,33.7488889,-84.3880556,Atlanta,GA,circle,5,three circular white disc shapes circling each other +2005-11-26,27.3361111,-82.5308333,Sarasota,FL,oval,5,the object seen was oval in shape with two winglike projections and a blue light emanating from the tail as seen with a pair of binocul +2006-11-26,40.2491667,-75.1344444,Warrington,PA,oval,2,blue light lights up our faces then the oval is gone in 2 sec. +2006-11-26,34.7227778,-76.7263889,Morehead City,NC,chevron,8,Nine chevron objects in two formations, Morehead City NC 11/26/06 2am +2006-11-26,33.1538889,-97.0644444,Corinth,TX,sphere,360,I could not sleep, So i got out of bed and went to my back pourch to smoke a cigarette. I got up from my chair and went into the back y +2006-11-26,35.7563889,-83.9705556,Maryville,TN,light,20,Blue light moving rapidly to north east on tuesday nov 25 +2006-11-26,41.2458333,-75.8816667,Wilkes-Barre,PA,oval,300,8:00PM I SAW OVAL SHAPE WITH FLAT BOTTOM WITH BRIGHT COLORS +2006-11-26,37.9330556,-75.3791667,Chincoteague,VA,unknown,1200,Is it a real UFO? +2006-11-26,33.4483333,-112.0733333,Phoenix,AZ,cylinder,180,A White/ Silver cylindrical object that seemed to hover high above the Paradise Valley/ North Phoenix area. +2006-11-26,33.7669444,-118.1883333,Long Beach,CA,circle,360,Let me first say that I have been a pilot since I was 17 years old, flew helicopters in the Army and logged over 3600 hours of flight t +2006-11-26,32.2216667,-110.9258333,Tucson,AZ,unknown,300,It was a silvery bright object traveling east to west over mountains in the city of Tucson. +2006-11-26,47.0380556,-122.8994444,Olympia,WA,light,3,Low, quick light seen over Olympia, Washington, neighborhood. +2006-11-26,35.4797222,-79.1805556,Sanford,NC,changing,600,Golden orange quarter moon shaped-object hovers at tree line for ten minutes before developing an orb and disappearing in Sanford, NC. +2006-11-26,28.1611111,-81.6019444,Davenport,FL,unknown,900,Power outage and blinking lights in Polk County Florida. +2006-11-26,35.614444399999996,-88.8138889,Jackson,TN,other,5,Blue ball of light with a tail attached seen from East Jackson TN moving south VERY FAST. +2006-11-26,35.7719444,-78.6388889,Raleigh,NC,light,3600,That it seemed to emit a red and blue with some green,it did not move and after a few moments,the intensity of the light would pulsate. +2006-11-26,40.2491667,-75.1344444,Warrington,PA,light,5,Blue light zooms across sky +2007-11-26,34.0122222,-117.6880556,Chino,CA,light,1200,Dancing Lights in the Sky +2007-11-26,40.7297222,-73.2108333,Islip,NY,flash,120,Flash of Light Shape, UFO? +2007-11-26,29.7630556,-95.3630556,Houston,TX,other,40,Two connected and cloaked elongated circles +2007-11-26,32.5480556,-82.8719444,East Dublin,GA,unknown,20,Unexplained lights in East Dublin, Georgia. +2007-11-26,33.8675,-117.9972222,Buena Park,CA,fireball,600,Brigh orange light seen in the sky over Orange County California. +2007-11-26,29.7630556,-95.3630556,Houston,TX,disk,900,Bright Blue Lighted Craft flying over clear Houston night sky. It was hovering low over the neighborhood as I took my nightly walk. +2008-11-26,47.5002778,-111.3,Great Falls,MT,light,2700,Bright light hovering for 45+ minutes on the outskirts of Great Falls, MT; w/ flashing blue and red. ((NUFORC Note: Star?? PD)) +2008-11-26,38.9694444,-77.3863889,Herndon,VA,rectangle,1800,Rectangle shaped object with blinking red and white lights in Herndon, VA +2008-11-26,34.0522222,-118.2427778,Los Angeles (Downtown),CA,other,600,Amorphous black object floating approx 300 feet from the ground over downtown Los Angeles at the 101 freeway +2008-11-26,38.9516667,-92.3338889,Columbia,MO,sphere,2700,I was walking to the bar to meet some friends and I noticed to bright star-like objects. ((NUFORC Note: Venus & Jupiter? PD)) +2008-11-26,45.4902778,-93.2475,Isanti,MN,fireball,5,Bright falling object with a blue trail. +2008-11-26,34.8666667,-92.4041667,Maumelle,AR,other,90,Triangular Craft Hovering in Maumelle +2008-11-26,33.9525,-84.55,Marietta,GA,light,3600,Stationary Very Bright Star-Like Object That Rapidly Changed Colors in Marietta, GA, Eastern Sky. ((NUFORC Note: Sirius?? PD)) +2008-11-26,40.8,-96.6666667,Lincoln,NE,circle,900,Red/orange glowing ball low on the horizen then climbed untill out of sight +2008-11-26,32.5016667,-84.4211111,Mauk,GA,light,300,My son and I witnessed a Light in the North-West Hovering for 1Min before flying South-East We thought it was an Aircraft we did not he +2009-11-26,32.7833333,-96.8,Dallas,TX,light,2,Large green self emitting ball of light with a cool silver center over a cemetery in dallas +2009-11-26,33.9908333,-118.4591667,Venice,CA,changing,480,On Nov.26th 2009 at or about 15:00hrs 8 of use saw an object that changed shape every few seconds and was moving from South East to Sou +2009-11-26,45.1077778,-93.2377778,Spring Lake Park,MN,sphere,120,i would call it a sunlike sphere +2009-11-26,36.0458333,-108.9655556,Crystal,NM,light,300,Two Tandem Bright Reflective Objects Traveling Southeasterly +2009-11-26,38.2544444,-104.6086111,Pueblo,CO,triangle,3,three lights forming a triangle-shaped object. +2009-11-26,40.7655556,-95.3719444,Shenandoah,IA,light,120,Two lights separated quite a distance apart, traveling in unison in a straight line from N.W. to S.E. +2009-11-26,31.8666667,-89.2633333,Stringer,MS,light,1800,Mysterious lights seen flying over my country home. +2009-11-26,40.9380556,-73.8325,Bronxville,NY,light,120,Two bright lights moving single-file and steadily across the night sky +2009-11-26,38.8516667,-80.9366667,Normantown,WV,unknown,240,Stationary, star-like white lights suddenly approached and passed directly overhead +2009-11-26,33.4222222,-111.8219444,Mesa,AZ,fireball,120,circular fireball slowly flew over me +2009-11-26,41.85,-87.65,Chicago (Near),IL,teardrop,10,Thanksgiving - spade shaped object with 10-15 red lights below the cloud overcast and above the tree line. +2009-11-26,38.8338889,-104.8208333,Colorado Springs,CO,triangle,3600,Multicolored arrowhead shaped object east over Colorado Springs viewed from the Ute Pass to the west. +2010-11-26,32.2216667,-110.9258333,Tucson,AZ,triangle,600,Triangle aircraft with 3 lights above tucson +2010-11-26,34.3541667,-119.0583333,Santa Paula,CA,cigar,2100,hello i am a out of town bus driver i do a run from oxnard ca to fillmore ca i have to pass santa paula ca i pick up mine bus at the ya +2010-11-26,27.9091667,-82.7875,Largo,FL,unknown,180,flashing color orb in sky +2010-11-26,34.8788889,-76.9016667,Havelock,NC,diamond,60,orangy light, in a diamond shape, disapear into thin air. havelock nc +2011-11-26,43.3266667,-78.3891667,Lyndonville,NY,circle,240,A white filled circle, half the size of a full moon, appeared over Lake Ontario, north of Lyndonville, NY. I reappeared 5 more times. +2011-11-26,41.8238889,-71.4133333,Providence,RI,unknown,7200,The object was extremely close to my car when driving and traveled at a high rate of speed when it was not idle. +2011-11-26,47.3075,-122.2272222,Auburn,WA,circle,600,2 colorful orbs playing in the sky with mothership (white orb) watching... +2011-11-26,39.12,-90.3283333,Jerseyville,IL,fireball,120,Red fireball crashing into a field +2011-11-26,46.8722222,-113.9930556,Missoula,MT,unknown,40,5 or 6 orange lights, no noise, disbursed and went in different directions. lasted approx 40 seconds +2011-11-26,41.3438889,-75.7388889,Duryea,PA,triangle,300,Triangle shaped UFO with a light on each side and blue and red smaller lights, +2011-11-26,35.2269444,-80.8433333,Charlotte,NC,fireball,3,Orange colored super fast object +2011-11-26,27.6383333,-80.3975,Vero Beach,FL,light,3600,Over 50 dancing lights revolving in triange formations +2011-11-26,37.775,-122.4183333,San Francisco,CA,sphere,600,Yellow aura around bright red center low in sky and lossing the aura to then grow faint and rise up in the sky to vanish completly. +2011-11-26,34.4208333,-119.6972222,Santa Barbara,CA,disk,600,One Round circular pale orange object rising almost vertically to the South,then over us heading North. +2011-11-26,41.0602778,-111.9702778,Layton,UT,light,900,6 bright orange lights to the East over the Wasatch Mountain Range +2011-11-26,40.7141667,-74.0063889,New York City (Brooklyn),NY,circle,12,Unexplained red and white light, like a star, visible for 10 seconds then fades out very quickly +2012-11-26,36.8177778,-80.61,Dugspur,VA,disk,120,UFO +2012-11-26,42.9708333,-82.425,Port Huron (West Of),MI,cigar,180,Grey/silver cigar shaped object hovering 1000about yards above the ground west of Port Huron, Michigan around four o clock pm. +2012-11-26,42.485,-71.4333333,Acton,MA,formation,10,Route 2 West in Acton, MASS, Blue Lights doing amazingly impossible meanuvers. +2012-11-26,47.3075,-122.2272222,Auburn,WA,changing,180,Reflective surface, red lights, changing shape. +2012-11-26,41.6861111,-70.0763889,Harwich,MA,light,600,An intelligent moving light the size of a bright star +2012-11-26,35.3733333,-119.0177778,Bakersfield,CA,light,300,Reddish glowing light at cruising speed. I thought it was a helicopter but it made no sound and had no flashing light. +2012-11-26,38.8941667,-77.4313889,Chantilly,VA,other,600,Four white lights NE swirling and meeting above my location. +2013-11-26,42.1033333,-73.5505556,Copake,NY,light,3600,Many different colors of various lights zipping through the sky, changed in colors and moved irradicately. +2013-11-26,39.9008333,-74.8238889,Medford,NJ,unknown,5,Strange redish blue lights over Medford, NJ. +2013-11-26,35.0072222,-80.9452778,Fort Mill,SC,circle,30,UFO? Over Fort Mill. +2013-11-26,37.6922222,-97.3372222,Wichita,KS,light,2,Very fast, high altitude light traveling from the west to the east. +2013-11-26,35.1602778,-97.8788889,Amber,OK,disk,3600,Disk shaped object spotted in Amber, Oklahoma. +2013-11-26,32.7252778,-114.6236111,Yuma,AZ,rectangle,2400,Stationary Object in sky northeast of Yuma AZ. +2013-11-26,33.426944399999996,-117.6111111,San Clemente,CA,light,600,Bizarre color changing moving light. +2013-11-26,40.1244444,-87.63,Danville,IL,light,2100,Light in the sky over Danville, IL. 11/26/13 545pm. ((NUFORC Note: Sighting of Venus, we suspect. PD)) +2013-11-26,40.5852778,-105.0838889,Fort Collins,CO,disk,5400,UFO west of Fort Collins, Colorado, November 26 2013. ((NUFORC Note: Sighting of Venus in SW sky. PD)) +2013-11-26,41.6386111,-111.9330556,Wellsville,UT,light,2700,It was a bright light, larger than a star, in western sky. ((NUFORC Note: Sighting of Venus. PD)) +2013-11-26,33.415,-111.5488889,Apache Junction,AZ,fireball,90,Silent, bobbing flaming orb. +2013-11-26,41.0783333,-80.5994444,Campbell,OH,triangle,300,Near Youngstown, OH- Triangle/Lights on all sides/warm, radiant, shining light/rapid descent/slow, hovering/SILENT. +2013-11-26,36.0955556,-79.4380556,Burlington,NC,circle,15,Upward curving row or lights flying low over interstate 85 NC. +2013-11-26,29.9911111,-93.9583333,Port Neches,TX,light,120,Green/blue light swirling high in sky, then started descending straight (very straight) down very slowly. +1978-11-27,39.1502778,-123.2066667,Ukiah,CA,sphere,600,1978 sphere inside cloud over Ukiah Valley, Ca beams of light radiated out from it after a few minutes +1978-11-27,39.1502778,-123.2066667,Ukiah,CA,sphere,600,UFO over Ukiah, sphere with beams coming out from it...then I forgot the entire sighting until I saw a report in the paper +1981-11-27,40.8041667,-74.0125,North Bergen,NJ,fireball,300,It was early evening, while looking West, towards Hudson County Park, a ball of fire was seen moving east... +1987-11-27,31.7586111,-106.4863889,El Paso,TX,oval,30,A noiseless, round object with colorful bright lights, hovering in the desert of northeast El Paso Tx. by McGregor Range. +1988-11-27,38.6858333,-121.0811111,El Dorado Hills,CA,unknown,600,drive-by close encounter +1988-11-27,32.8994444,-105.9597222,Alamogordo,NM,light,1200,saw 5 objects doing amazing manuevers for 20 minutes +1991-11-27,42.5294444,-83.7802778,Brighton,MI,circle,120,Large object with two bright lights, passed overhead silently. Half-circles connected by rectangle. +1992-11-27,39.9611111,-82.9988889,Columbus,OH,disk,120,Drove right underneath a UFO while on the freeway--saw 3 more UFOs +1994-11-27,47.6588889,-117.425,Spokane,WA,unknown,600,Twin lights fly overhead +1994-11-27,39.2930556,-83.9888889,Blanchester,OH,triangle,180,triangular shaped object over SW Ohio, moving very slowly and completely silent +1995-11-27,40.2247222,-105.2708333,Lyons,CO,other,1200,Hole (50 feet by 30 feet) opens up on hill side. Light streams from it along with motor noise. Closes again and leaves no sign of exi +1996-11-27,35.3413889,-89.8972222,Millington,TN,chevron,120,seethrought cheveron shape that made no noise +1997-11-27,42.325,-72.6416667,Northampton,MA,other,10,Object at first thought to be satellite but made vary sudden, erratic and flight manuveurs. +1998-11-27,44.2444444,-86.3241667,Manistee,MI,fireball,2,Saw a bright green ball shoot across the sky. +1998-11-27,38.3497222,-81.6327778,Charleston,WV,fireball,120,Me and my friends were playing some football in our yard and +1998-11-27,41.4813889,-73.2136111,Southbury,CT,triangle,1800,A large triangular object hovered 30 mins, then accelerated and disappeared over the horizon. +1998-11-27,38.5472222,-122.8152778,Windsor,CA,sphere,2700,in the proximity of the moon,size and brightness of planet,reflective,metalic,moved in all directions,color constant +1998-11-27,35.615,-87.0352778,Columbia,TN,fireball,5,Greenish-blue fireball at approx. 45 degree angle, moving east to west, first observed at highest point approx.one o'clock position, mo +1998-11-27,37.2152778,-93.2980556,Springfield,MO,light,10,A faily bright green light appeared to be falling straight down at high speed. Dissapeared somewhere in the distance at ground level. T +1998-11-27,42.9725,-85.7763889,Standale,MI,triangle,5,On November 27, 1998 at approximately 8:45 p.m. an object containing 3 lights was seen by myself and two friends. The object's lights w +1998-11-27,29.7855556,-95.8241667,Katy,TX,fireball,4,I was Traveling west on I-10 20 miles west of Houston,Tx. At Approx 21:30 I saw a green fireball with a long tail streak across the sky +1999-11-27,35.6658333,-118.2894444,Weldon,CA,cross,3600,A bright shaft of light shaped like a huge check mark from west to east was seen coming up behind the mountains, behind which there is +1999-11-27,40.1105556,-88.2072222,Urbana,IL,changing,37800,Objects were shaped like short contrails. But upon accelleration a round object appeared at the front of the contrail +1999-11-27,32.8808333,-97.1547222,Colleyville,TX,light,4800,I was alerted by my son by a phone call that he spotted a UFO in the Northeast sky that was red, green and white lights which separated +1999-11-27,35.4013889,-93.1141667,Dover,AR,disk,1800,We were sitting in a large field and we saw this strange object bypassing to jets. The objects were moving at fonominal speeds. These +1999-11-27,32.7152778,-117.1563889,San Diego,CA,light,5,We were traveling West to East on Pomerado Road. On my left side above the tree tops, a very large white bright light circular in shape +1999-11-27,37.8091667,-85.4669444,Bardstown,KY,fireball,3,Blueish fireball +1999-11-27,33.8627778,-83.4088889,Watkinsville,GA,changing,13500,Family & Friends camping out observed a set of 3 neon lights that came together into 1 bright light with approx. 5 pointed edges. Thi +1999-11-27,41.8011111,-74.7469444,Liberty,NY,circle,2,While driving with two other people, saw a strange light in the sky. +1999-11-27,41.0408333,-73.715,Purchase,NY,circle,10,While on patrol for Manhattanville College Campus Safey, I was driving up one of the back roads. I saw what appeared to be a shooting s +1999-11-27,41.3361111,-75.9636111,Dallas,PA,triangle,25,While driving with my two friends, we noticed this craft in the sky. It sort of fluttered changing its elevation. We lost it when it we +2000-11-27,34.7697222,-84.9702778,Dalton,GA,disk,60,Saucer shaped craft over neighborhood in north Georgia +2000-11-27,46.5927778,-112.0352778,Helena,MT,egg,120,very bright egg shaped craft traveling west to east +2000-11-27,35.7452778,-81.685,Morganton,NC,fireball,5,Brightly lit fireball blazed through southern sky. +2001-11-27,44.6705556,-70.1516667,Farmington (?),ME,oval,5400,Three oval craft seen in mid-Maine emiting pulsing white light. +2001-11-27,38.0080556,-92.7444444,Camdenton,MO,triangle,60,Unfamiliar Black Triangular shaped craft with lights +2001-11-27,27.5955556,-81.5063889,Avon Park,FL,disk,1500,NEED SOME HELP PLEASE +2001-11-27,32.6208333,-83.6,Warner Robins,GA,triangle,361800,There ARE UFOs over Robins AFB, Ga. +2001-11-27,30.4380556,-84.2808333,Tallahassee,FL,other,60,Aircraft with lights spotted over I-10 exit on Capital Circle NW in Tallahassee. +2002-11-27,46.8883333,-122.6872222,Rainier,WA,triangle,109800,bright lights hovering in the sky +2002-11-27,37.775,-122.4183333,San Francisco,CA,changing,109800,My wife and I witnessed a large, extremely bright, spheroid object that appeared to be hanging in the air over San Francisco for a very +2002-11-27,47.2530556,-122.4430556,Tacoma,WA,flash,2,A flash of light streaked across the daytime sky at about the altitude of a jet, but at least 10 times faster. +2002-11-27,25.8402778,-80.3266667,Medley,FL,unknown,2100,While taking the morning break at work, someone expresed concern about a bright star sitting motionless in the blue sky, there were 5 o +2002-11-27,37.775,-122.4183333,San Francisco,CA,triangle,60,Triangle craft over ocean beach in san francisco +2002-11-27,40.8,-96.6666667,Lincoln,NE,fireball,5,Suspected large meteor, unreported in news media. +2002-11-27,41.4819444,-81.7983333,Lakewood,OH,chevron,20,Gossamer V-shaped object seen from Ohio +2003-11-27,34.0522222,-118.2427778,Los Angeles,CA,triangle,15,Triangular formation of bright amber lights passes over downtown L.A. after violating LAX approach path +2003-11-27,35.1494444,-90.0488889,Memphis (100 Miles North Of),TN,light,2400,I have never seen a weather balloon change colors and be bright enough to be seen at night, and travel at 500 mph. +2003-11-27,32.7152778,-117.1563889,San Diego,CA,fireball,30,large white circular shape leaves a trail of blue and orange streaks, last only seconds then disapears. +2003-11-27,45.8152778,-122.7413889,Ridgefield,WA,unknown,60,Very bright light, flickering and traveling faster than a normal commercial jet. +2003-11-27,33.7475,-116.9711111,Hemet,CA,triangle,60,We heard a loud noise, and noticed 2 white lights connected by a single object, moving a first slow then great speed. +2003-11-27,32.7152778,-117.1563889,San Diego,CA,light,20,Light srteaking through the sky in San Diego, CA at 22:40 on 11/27/03 projecting white, green and red. +2004-11-27,33.8883333,-118.3080556,Gardena,CA,disk,1800,huge disk with others nearby changing direction/speed in a blink of an eye. lights very quiet no noise at all. came over my apartment l +2004-11-27,32.7286111,-94.9422222,Gilmer,TX,changing,3600,BLUE LIGHT MOVING AS A CHOPPER WITH A BEAM OF LIGHT +2004-11-27,46.2033333,-123.3819444,Cathlamet,WA,fireball,900,Fireball over SW Washington +2004-11-27,41.2147222,-79.3855556,Clarion,PA,circle,300,I was heading in my daughter's garage on the east side of the house and noticed what I fist thought was a hot air balloon, which therea +2004-11-27,36.7477778,-119.7713889,Fresno,CA,oval,2,Large meteor or UFO spotted in Fresno. +2004-11-27,37.775,-122.4183333,San Francisco,CA,oval,3600,there was a blue streak from the sky, then showering yellow and after the showering, there was left a red oval shape craft with one bli +2004-11-27,32.2047222,-95.8552778,Athens,TX,triangle,10800,11-28-04 At 6:00 pm cdt,me, my wife and my grandauther were ridind around on farm to market roads approx. 25 miles from athens tx when +2004-11-27,44.9430556,-123.0338889,Salem,OR,light,300,A moving light observed. ((NUFORC Note: Possible overflight and sighting of the ISS. PD)) +2004-11-27,33.0461111,-96.9938889,Lewisville,TX,egg,3600,Bright lights in Lewisville, TX +2004-11-27,33.0461111,-96.9938889,Lewisville,TX,light,3600,My friends and I saw up to 40 lights in the North Texas sky. +2004-11-27,47.9791667,-122.2008333,Everett,WA,light,60,An object resembling a satalitte moving north, changes directions and heads straght up and fades into the sky. +2004-11-27,32.8386111,-86.6294444,Clanton,AL,light,300,Two very bright solid orange lights fly overhead with no sound. +2005-11-27,42.4055556,-83.0969444,Highland Park,MI,unknown,4,A firery streak seen falling downward in the Western sky from Highland Park, MI then disappeared. +2005-11-27,35.6266667,-120.69,Paso Robles,CA,light,180,anouther light like object hoovers over paso robles ca +2005-11-27,35.6266667,-120.69,Paso Robles,CA,light,180,star like light propelled over paso robles ca +2005-11-27,48.5127778,-122.6113889,Anacortes,WA,light,480,Bright white diving light, accompanied by other lights that changed color. +2005-11-27,41.35,-72.0788889,Groton,CT,light,10,Green light travelling at extreme speed over Groton, CT +2006-11-27,36.175,-115.1363889,Las Vegas,NV,sphere,3600,Blue Orb sighted from Las Vegas, over Area 51 Mountain Range, traveling at incredible speeds. +2006-11-27,47.3811111,-122.2336111,Kent,WA,disk,20,I AM A BREAD DELIVERY MAN AND WAS PULLING INTO THE PARKING LOT 11-27-2006 AT MY JOB SITE, WHEN I SAW A BRILLIANT DISK SLOWLY MOVE ACROS +2006-11-27,47.1302778,-119.2769444,Moses Lake,WA,triangle,180,11/27/2006 6:47 Moses Lake Wa lasted 3 mins cicler craft with lights vanished when it dimmed out +2006-11-27,33.4147222,-111.9086111,Tempe,AZ,disk,1200,Numerous incidents over the last few months occuring over Sky Harbor International Airport in Phoenix, AZ +2006-11-27,47.6105556,-122.1994444,Bellevue,WA,other,300,Hovering craft seen over Bellevue Washington +2006-11-27,38.0275,-82.8433333,Blaine,KY,triangle,300,My friend was driving on route 32 from louisa to Blaine after work and noticed an aircraft over yatesville lake. I hovered there for ab +2006-11-27,34.7302778,-86.5861111,Huntsville,AL,fireball,2,Blue-green, round, hazy light moving rapidly from north to south +2006-11-27,41.6302778,-87.8538889,Orland Park,IL,light,300,On November 27, 2006 around 10:55 pm in the Orland park area, I was driving to work when I saw in the western skies , a bright fiery Or +2006-11-27,41.926944399999996,-73.9977778,Kingston,NY,flash,1,White Flash near Exit 19 Thruway Kingston +2006-11-27,29.0425,-81.9294444,Ocklawaha,FL,changing,900,white light that changed color and form over ocklawaha florida. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2007-11-27,30.6552778,-97.0011111,Rockdale,TX,triangle,180,I stepped outside with my dogs at 6:07 AM and happened to look up. Overhead was a huge triangled shaped craft with blinking lights. It +2007-11-27,28.5997222,-81.3394444,Winter Park,FL,unknown,240,Strange Dark Object over Winter Park +2007-11-27,38.6555556,-92.7797222,Tipton,MO,light,45,While driving home from work on Tuesday November 27, 2007 I noticed in the sky what appeared to be a line of large orange lights. I th +2007-11-27,38.8338889,-104.8208333,Colorado Springs,CO,light,2,Fast moving green dot proceeding from west to east and disappearing into black sky. +2007-11-27,30.2655556,-94.1994444,Lumberton,TX,light,240,Moving bright light goes dim. +2007-11-27,41.85,-87.65,Chicago,IL,fireball,1800,Brilliant multi-colored light hanging in the east-southest sky for over half an hour. ((NUFORC Note: Venus. PD)) +2007-11-27,29.5633333,-95.2858333,Pearland,TX,sphere,10,We have a huge window over our front door and me and my 13 year old son were talking to my wife, looking in the directions of the huge +2008-11-27,31.7586111,-106.4863889,El Paso,TX,formation,300,Floating lights disappear into night sky +2008-11-27,29.3213889,-103.6155556,Terlingua,TX,light,1200,Flickering red and white light with floating and very rapid straight line movements then stationary spotted near Big Bend Nat'l Park +2008-11-27,41.85,-87.65,Chicago,IL,light,300,slow traveling light disappears +2008-11-27,41.7,-71.4166667,Warwick,RI,flash,1,Cloud like object streaks through sky at tremendous speed - for one second! +2008-11-27,33.4483333,-112.0733333,Phoenix,AZ,diamond,120,it split +2008-11-27,34.0522222,-118.2427778,Los Angeles,CA,cigar,10,Black saucer/cigar shaped object seen in west LA on November 27 2008 at apporximately 8:00 am. 500 Lights On Object0: Yes +2008-11-27,34.1741667,-97.1433333,Ardmore,OK,light,600,Family sees strange light moving across night sky that flickers, dims, and brightens. +2008-11-27,40.6258333,-75.3708333,Bethlehem,PA,light,60,My wife and I were walking our dog. As we came around a corner that offered an unobstructed view of the SE sky we saw three bright (ma +2008-11-27,33.1975,-96.615,Mckinney,TX,light,3600,2 bright lights in the sky, no other stars visible and planes deviated flight path around them. ((NUFORC Note: Venus & Jupiter. PD)) +2008-11-27,36.8252778,-119.7019444,Clovis,CA,light,300,On the night of November 27, 2008 (Thanksgiving) from 7:05 to 7:10, my sister & I witnessed a strange red/orange light in Clovis, CA. +2008-11-27,33.8313889,-118.2811111,Carson,CA,light,420,Strange orange/red light flying slowly across the sky with a smaller object falling off it then both disappearing. +2008-11-27,39.6291667,-75.6586111,Bear,DE,circle,300,Three of us witnessed a orange, glowing, round object, that was soundless, and moved slowly accross the sky from the south to the north +2008-11-27,35.2980556,-81.0161111,Mount Holly,NC,light,2700,Two stationary white lights mysteriously 'disappear.' ((NUFORC Note: Sighting of Venus, we suspect. PD)) +2008-11-27,32.7152778,-117.1563889,San Diego (Clairemont),CA,fireball,300,roundish, wavyish bright light with a flashing reddish edge that kept changing, pulsating. +2008-11-27,32.7152778,-117.1563889,San Diego,CA,light,300,There were about 9 or 10 red/orange bright lights in the dark sky, then each slowly disappeared at about 8:30PM. +2009-11-27,32.7833333,-96.8,Dallas (Dfw Airport),TX,fireball,2,Bright, neon-green fireball (or flare) falling towards ground slowly +2009-11-27,40.7311111,-122.9408333,Weaverville,CA,light,3600,Bright pulsating stationary light, changing positions quickly. +2009-11-27,37.6391667,-120.9958333,Modesto,CA,diamond,300,diamonds above modesto +2009-11-27,39.8716667,-75.5916667,Chadds Ford,PA,triangle,10,Driving south on Rt.1 through Chadds Ford, Pa. on black Friday (day after Thanksgiving). Before passing Longwood Gardens on the way to +2009-11-27,32.7152778,-117.1563889,San Diego,CA,chevron,1200,Lights (red, blue, green, white) that changed color and direction without any noticable pattern, object moved left and right. +2009-11-27,33.7738889,-93.6825,Washington (Near),AR,flash,600,A bright, flashing, possibly immobile object that seemed large and whose flashing obscured the emitting object. +2009-11-27,39.1855556,-78.1636111,Winchester,VA,light,1200,Witnessed multi-colored light hanging very low in the sky to the east; changed colors. ((NUFORC Note: Sirius. PD)) +2010-11-27,35.2908333,-97.8119444,Tuttle,OK,teardrop,5,Teardrop shaped object in the night-sky... +2010-11-27,41.2586111,-95.9375,Omaha,NE,light,120,Four orange objects flying in East sky from South to North. +2010-11-27,29.7630556,-95.3630556,Houston,TX,circle,30,The UFO was a flying disc with green lights. +2010-11-27,38.3363889,-75.0852778,Ocean City,MD,triangle,60,UFO over Ocean City, Maryland +2011-11-27,40.1727778,-74.9930556,Holland,PA,oval,600,Oval object with evenly spaced white blinking lights. +2011-11-27,34.0686111,-118.0266667,El Monte,CA,light,600,Star/Light object with circular counter and clockwise movements. +2011-11-27,40.1797222,-76.1791667,Ephrata,PA,disk,5,Looked like a saucer, many different flashing lights, made a strange buzzing sound and seemed extremely close to my house. +2011-11-27,38.6158333,-76.6133333,Huntingtown,MD,triangle,1200,Triangle shape black object bigger than commercial jet. 3 round bright lights 1 on each corner, red light in center. +2011-11-27,36.7277778,-110.2538889,Kayenta,AZ,oval,7,6-7 ovoids in formation at high speed. Kayenta, AZ. +2011-11-27,29.7630556,-95.3630556,Houston,TX,other,30,Crescent Shaped UFO Passes over Houston November 2011 +2011-11-27,39.0997222,-94.5783333,Kansas City,MO,triangle,600,Saw a thin and long triangular shaped object with red and green lights. +2011-11-27,34.3977778,-112.2355556,Mayer,AZ,formation,30,Lights seen over the Bradshaw Mts, Az. +2011-11-27,43.073055600000004,-89.4011111,Madison,WI,disk,3,Disk shaped object came from bright blue and white light in the sky +2012-11-27,41.1219444,-75.365,Mt. Pocono,PA,rectangle,480,I'm not sure what it was but the sky was blue and from a certain angle I was able to see a white light emitting from the sky it was li +2012-11-27,39.8016667,-89.6436111,Springfield,IL,light,120,Starlike moving object that suddenly disappeared. +2012-11-27,39.5363889,-83.4391667,Washington Court House,OH,sphere,20,3 yellowish-orange circular spheres in sky +2012-11-27,43.0083333,-97.1063889,Wakonda,SD,circle,15,Five orange lights in stair-step pattern appear over Southeast South Dakota. +2012-11-27,36.5244444,-91.5380556,Thayer,MO,unknown,3600,MISSOURI INVESTIGATORS GROUP Report: I looked up and through the wind shield I saw sparkling fire projectile out of a craft +2012-11-27,34.9852778,-80.5497222,Monroe,NC,triangle,45,A triangular object with white and blue lights flying toward a airport then abruptly away +2012-11-27,33.4483333,-112.0733333,Phoenix,AZ,circle,8,Red orange lights over apache junction in Arizona. +2012-11-27,41.375,-74.6930556,Port Jervis,NY,triangle,180,Two glowing red/orange triangular objects. +2012-11-27,34.8697222,-111.7602778,Sedona,AZ,circle,120,An organe sphere divided into 2 orange spheres or a 2nd one emerged from the first. Each appeared the same in color, shape, and size. +2012-11-27,27.9655556,-82.8002778,Clearwater,FL,unknown,600,Bright cloud bank that dissappeared quickly +2013-11-27,43.7208333,-111.9891667,Menan,ID,light,1800,2 lights that moved slowly around eachother, in southern sky... +2013-11-27,36.8525,-121.4005556,Hollister,CA,circle,300,Four multi colored orbs/lights over Hollister CA on 11/27/2013. +2013-11-27,35.925,-86.8688889,Franklin,TN,diamond,1800,Diamond shaped bright light stationary over Franklin TN. +2013-11-27,44.0838889,-93.2258333,Owatonna,MN,changing,1800,Changes shape. ((NUFORC Note: We suspect a sighting of Venus. PD)) +2013-11-27,38.2544444,-104.6086111,Pueblo,CO,triangle,50,Bright Pink Stealth shaped ufo in CO +2013-11-27,38.3030556,-77.4608333,Fredericksburg,VA,other,300,Low-flying large object over Fredericksburg. +2013-11-27,36.2694444,-95.8544444,Owasso,OK,triangle,1800,White light triangular over central oklahoma ((NUFORC Note: Sighting of Venus. PD)) +2013-11-27,33.4483333,-112.0733333,Phoenix,AZ,triangle,30,Amber-Orange triangle of 3 lights southeast of Phoenix, AZ. +2013-11-27,32.2216667,-110.9258333,Tucson,AZ,other,300,White lights seen at night to the north of Sabino Canyon. +2013-11-27,40.8,-96.6666667,Lincoln,NE,unknown,15,Boomerang object over 100 feet long and silently glided past my house; no lights; no sounds. +2013-11-27,34.3580556,-86.2947222,Guntersville,AL,formation,600,Orange orbs going south. +1992-11-28,34.0522222,-118.2427778,Los Angeles,CA,other,16200,Bright white football shaped object, turned neon green and shot off horizontally 500 Lights On Object0: Yes +1996-11-28,38.7302778,-82.8555556,Wheelersburg,OH,light,25,A pair of stars begin to circle each other....shoot off...then return to their original positions.... +1997-11-28,44.9444444,-93.0930556,St. Paul,MN,fireball,5,An orange "shooting star" in the SSE area of the sky. +1997-11-28,42.5916667,-88.4333333,Lake Geneva,WI,fireball,3600,Follow-up to article in Chicago Sun Times 12/3/97 re "Fireball" in Will Co, Illinois 12/30. Saw similar in Lake Geneva, WI 11/28/97 ar +1998-11-28,33.7669444,-118.1883333,Long Beach,CA,triangle,30,Traveling in car on 405 Fwy No. transition to 22 Fwy E. observed Large Triangle Craft very low Aprox 300 to 400ft traviling west craft +1998-11-28,38.7216667,-76.6608333,Dunkirk,MD,other,60,fast moving craft at a very high altidude, after sun set +1998-11-28,40.3911111,-75.6105556,Barto,PA,fireball,5,observed firey light green ball long tail changed color +1998-11-28,33.7513889,-84.7477778,Douglasville (West Of Atlanta),GA,circle,7200,Objects seen nightly, ring-shaped with rotating colors. Then colors fade and center area becomes more distinct(black). Objects usuall +1999-11-28,25.8897222,-80.1869444,North Miami,FL,other,5,At just past midnight, I observed what appeared to be a small steady white light (no blinking, no green or red); it could have also bee +1999-11-28,42.8027778,-83.0130556,Romeo,MI,cigar,1020,sighted object in northern sky that appeared not be moving. +1999-11-28,39.3372222,-85.4836111,Greensburg,IN,fireball,5,family returning from holiday trip witnesses a bright yellowish green fireball falling from the sky near the interstate 74 interchange +1999-11-28,40.4405556,-79.9961111,Pittsburgh,PA,fireball,1,bright, relatively large "shooting star" or meteor +1999-11-28,43.2508333,-83.7941667,Birch Run,MI,sphere,2,Object seen traveling North to South (meteor?) +1999-11-28,29.4238889,-98.4933333,San Antonio,TX,unknown,900,A humming noise and then a bright light in the sky which I saw at home at an appartment complex on northside east SA tx off HW1976 +2000-11-28,44.0522222,-123.0855556,Eugene,OR,circle,0.08,Brilliant White light seen traveling N to S along the +2000-11-28,25.9327778,-80.1627778,North Miami Beach,FL,disk,35,WE SAW AN OUT OF SPACE OBJECT +2000-11-28,40.6936111,-89.5888889,Peoria,IL,light,6,saw eight total lights in wide V formation for 5 seconds and then they disappeared. +2000-11-28,33.4483333,-112.0733333,Phoenix,AZ,triangle,40,I was in my back yard petting the dogs when i heard a loud,low rumble of a passing jet plane.When i looked up i saw a huge triangle cra +2000-11-28,46.2113889,-119.1361111,Kennewick,WA,fireball,1800,Three round orange objects traveliing in a row from north to south +2000-11-28,44.8897222,-93.3497222,Edina,MN,circle,180,round, bright white light that changed into orange +2000-11-28,38.7297222,-120.7975,Placerville,CA,fireball,5,White fireball with green edges heading for the ground. +2001-11-28,45.4463889,-122.6380556,Milwaukie,OR,fireball,0.02,High speed moving fireball fallow by a bright tail . +2001-11-28,33.8816667,-118.1161111,Bellflower,CA,other,900,Two small red lights extremeley high. At first sight object dropped what seemed to be a flair. +2001-11-28,32.7833333,-96.8,Dallas,TX,disk,120,November 2001 Dallas, Texas UFO sighting downtown +2001-11-28,37.4852778,-122.2352778,Redwood City,CA,light,15,Fast moving glowing white light changed direction suddenly and zig-zagged out of sight. +2001-11-28,33.8352778,-117.9136111,Anaheim,CA,circle,20,dim light mocing oddly +2001-11-28,27.3361111,-82.5308333,Sarasota,FL,other,15,A BRIGHT LIGHT THAT APPEARED FOR ABOUT 15 SECONDS THEN DISAPPEARED SILENTLY. +2001-11-28,33.8536111,-118.1330556,Lakewood,CA,light,1200,Single red light hovering for 20 minutes below the cloud cover. +2002-11-28,42.045,-71.9305556,Dudley,MA,triangle,600,Triangular shaped lights crossing the sky in MA on Thanksgiving night 2002 +2002-11-28,42.1166667,-71.8652778,Oxford,MA,changing,7200,I have on film an unexplained large,odd shaped ,colorful object in the night sky. +2002-11-28,45.12,-93.2875,Coon Rapids,MN,light,4500,FOLLOWED IN VEHICLE BY A BRIGHT LIGHT RESEMBLING A STAR +2002-11-28,41.9666667,-71.4333333,Cumberland,RI,disk,2100,Disk Shaped Revolving Lights in the Sky +2002-11-28,48.7597222,-122.4869444,Bellingham,WA,formation,60,series of flare-like fireballs +2002-11-28,47.2044444,-121.9902778,Enumclaw,WA,other,30,4 Meteor shaped objects slowing going across early morning sky +2002-11-28,47.6741667,-122.1202778,Redmond,WA,cylinder,45,Needle shaped light, possible space debris, crossed slowly from horizon to horizon, due east over Seattle area. +2002-11-28,45.6388889,-122.6602778,Vancouver,WA,fireball,60,i saw a very large slow moving golden fireball that split into several parts +2002-11-28,44.9111111,-116.0977778,Mccall,ID,other,120,Observed fiery debris field of object moving west to east. +2002-11-28,45.5608333,-94.1622222,St. Cloud (South Of),MN,other,60,Large, black, foil / wing flying low over field near highway in dayimte. +2002-11-28,38.8338889,-104.8208333,Colorado Springs,CO,circle,60,In my opinion, I witnessed a metor fall from the sky and impact the ground west of Colorado Springs. +2002-11-28,41.14,-104.8197222,Cheyenne,WY,fireball,5,Fireball seen in night sky near Cheyenne WY Thanksgiving evening +2002-11-28,36.9741667,-122.0297222,Santa Cruz,CA,changing,10,5 of us were waiting for an iridium flare to appear on the No.Eastern sky,at approximately 18:43 hrs., when one of my friends got the +2002-11-28,39.7294444,-104.8313889,Aurora,CO,fireball,60,Aurora-sees another fireball in the skies of Colrado!!! A truck driver catches the fireball on his truck mounted camerra.Local Colrado +2002-11-28,42.9386111,-74.1886111,Amsterdam (West Of),NY,flash,1,Bright orange streak speeds toward Albany, NY +2002-11-28,38.3641667,-122.5230556,Glen Ellen,CA,light,600,Blue and Red Lights in the Sky +2002-11-28,42.4602778,-71.3494444,Concord,MA,cylinder,240,It was 10 o' clock on the night of november 28th. I was driving down the empty street when i saw a bright hazy light. I suddenly got ou +2002-11-28,40.8,-96.6666667,Lincoln,NE,light,1,Very bright flash and explosion over Lincoln, Ne., on Thanksgiving. +2002-11-28,35.2922222,-81.5358333,Shelby,NC,light,1,white flickering light hovering slowly with green strobe lights like a police car real phant though,but it didnt look like a star. +2003-11-28,37.6688889,-122.0797222,Hayward,CA,light,300,I didn't see a solid object, but I saw some crazy lights! +2003-11-28,36.301944399999996,-88.3266667,Paris,TN,light,600,Moving orange ligh +2003-11-28,37.9063889,-122.0638889,Walnut Creek,CA,triangle,138,I and 7 freinds and family saw a dull, grey triangular shaped object hover over a hill, fly toward us and the speed away. There was a v +2003-11-28,37.4419444,-122.1419444,Palo Alto,CA,disk,10,I sitted an image in the sky. +2003-11-28,35.7441667,-98.7472222,Thomas,OK,oval,300,while on a hunting/camping trip on the north canadian river in wesrern oklahoma 5 of us observed a large light going east (toward okla +2003-11-28,32.2986111,-90.1847222,Jackson,MS,light,2,green light moving at high rate of speed +2003-11-28,46.8083333,-100.7833333,Bismarck,ND,other,1200,We spotted unusual bright lights and drove to investigate. It came towards our vehicle as if it were going to hit us. +2004-11-28,40.3477778,-79.8644444,Mckeesport,PA,disk,1200,i was outside my house ,,when i saw a bright light in the sky. i called my wife out to see we watched for 20 min. it changed direction +2004-11-28,33.6888889,-78.8869444,Myrtle Beach,SC,flash,1800,lights in the middle of the ocean....... +2004-11-28,24.5552778,-81.7827778,Key West,FL,light,300,Orange object over Key West, Florida +2004-11-28,47.9663889,-116.8675,Spirit Lake,ID,light,6,While watching International Space Station from Northern Idaho on Nov. 28th, 2004, observed Extremely bright light to the left. +2004-11-28,39.1405556,-121.6158333,Yuba City,CA,fireball,5,I see these from time to time by the small mountain range by hw 99 and hw 20 and I-5. and hw 113 ......this time i was answering the +2005-11-28,35.7325,-78.8505556,Apex,NC,triangle,120,Driving North on Route 55 in Apex, NC. I noticed a triangular light pattern, I thought it was an airplane heading directly at me. As +2005-11-28,29.7855556,-95.8241667,Katy,TX,light,9000,Strange bright lights in sky over rural area in Katy Texas. +2005-11-28,35.9172222,-82.3011111,Burnsville,NC,unknown,6,I REPORTED THIS ON 11/28/05 .AFTER VIEWING THE ANGLES AND LAND MARKS,THIS IS WHAT I OBSERVED. I WAS STANDING 14' ABOVE GROUND ON MY DEC +2005-11-28,41.8472222,-85.3186111,Burr Oak,MI,disk,300,The two racers in Michigan. +2005-11-28,33.3527778,-111.7883333,Gilbert,AZ,formation,15,Disappearing in a fading smoke. +2005-11-28,40.1261111,-82.9291667,Westerville,OH,disk,15,3 Flying Saucers with eerie purple lights flew high across sky +2006-11-28,39.1788889,-76.9577778,Highland,MD,other,300,Parallel lines moving from West to East in the sky +2006-11-28,39.1225,-84.1358333,Owensville,OH,unknown,300,((HOAX??)) Three bright lights, red, white, and blue. +2006-11-28,33.5205556,-86.8025,Birmingham,AL,light,15,Brilliant green light across the Birmingham Sky...Definitely not a plan. +2006-11-28,34.0230556,-84.3616667,Roswell,GA,egg,5,REFLECTIVE EYE SHAPED ORB SPOTTED DURING THE DAY. +2006-11-28,32.6208333,-83.6,Warner Robins,GA,sphere,120,Sphere shaped, metallic, stationary object +2006-11-28,61.2180556,-149.9002778,Anchorage,AK,light,3,an amazingly fast blue-green light pulsing to the chugach mountains in south anchorage +2006-11-28,33.5205556,-86.8025,Birmingham,AL,circle,60,meteor passing tangent to earth atmosphere +2006-11-28,33.6888889,-86.6833333,Pinson,AL,fireball,120,white then turned green fire ball falling from sky +2006-11-28,33.5205556,-86.8025,Birmingham,AL,circle,10,We saw a greenish-blue ball of light in Clay Alabama, on Tuesday, November 28. +2006-11-28,33.5205556,-86.8025,Birmingham,AL,fireball,30,A large green glowing round object was seen flying above the Birmingham, Alabama area at 5:30 pm on November 28, 2006. +2006-11-28,33.5205556,-86.8025,Birmingham,AL,light,12,Bluish-Green Light over Alabama +2006-11-28,33.5205556,-86.8025,Birmingham,AL,sphere,45,I noticed a light streaking across the sky and thought it was a large meteorite, but it was too slow and was unmistakably green. The t +2006-11-28,33.9944444,-86.97,Bremen,AL,fireball,15,Glowing green ball of light falling from the sky over Northern Alabama +2006-11-28,34.7302778,-86.5861111,Huntsville,AL,light,15,Bright green light(s) traveling east over Chapman Mountain. +2006-11-28,45.6388889,-122.6602778,Vancouver,WA,changing,90,3 red lights making formations +2006-11-28,34.6991667,-86.7483333,Madison,AL,unknown,5,Green light in the sky around Madison, AL area Nov. 28th 2006 +2006-11-28,34.76,-85.5311111,Rising Fawn,GA,circle,10,2 round, green lights "falling" toward the horizon visible for about 5-10 seconds +2006-11-28,35.1822222,-83.3816667,Franklin,NC,light,3,2 green lights moving very fast traveling downward then turning moving upward at an angle and disappearing. no noise +2006-11-28,36.0444444,-84.3444444,Oliver Springs,TN,fireball,5,Streak of light across the sky on Tuesday, November 28 at 18:25 (EST) +2006-11-28,35.0455556,-85.3097222,Chattanooga,TN,changing,2,bright green light, silent, moving slowly, turned, shot forward and was gone +2006-11-28,35.9605556,-83.9208333,Knoxville,TN,fireball,10,Large blue fireball reported in Knoxville, TN over Tuesday night, Nov. 28th sky. +2006-11-28,35.9605556,-83.9208333,Knoxville,TN,light,5,Five bright blue lights in formation streak across sky without making a sound +2006-11-28,33.9561111,-83.9880556,Lawrenceville,GA,other,5,Observed very bright green light eye-brow shape move silently across early evening sky. +2006-11-28,37.5311111,-84.6619444,Stanford,KY,light,10,Very fast moving greenish lights,not from this world. +2006-11-28,34.2569444,-85.1647222,Rome,GA,fireball,5,Glowing green object in the southen skies, November 28 񫺖 +2006-11-28,36.2166667,-81.6747222,Boone,NC,fireball,20,Glowing Green light in Boone NC +2006-11-28,35.175,-83.925,Marble,NC,light,5,Bright green light passing in and out of the clouds as it moved northeast over Marble N.C. +2006-11-28,33.9886111,-83.8980556,Dacula,GA,light,2,Bright green object resembling shooting star. +2006-11-28,34.7697222,-84.9702778,Dalton,GA,fireball,10,Seen a fireball with a tail that changed colors. +2006-11-28,35.7972222,-82.6841667,Marshall,NC,light,7,Was looking toward the west out of marshall. Green light flying to fast for an aircraft went from south to north at arms lenth about5 i +2006-11-28,31.2041667,-81.9813889,Nahunta,GA,fireball,30,Fireball thought to be a plane, but now heard thath its not. ???? +2006-11-28,32.7502778,-81.6369444,Sylvania,GA,oval,2700,Symetrical horizontal lights fading in and out to the left and right in sequence, then up down and all around! +2006-11-28,42.7977778,-83.705,Fenton,MI,formation,3600,couldn't have been spotlights because there was no beams from below! ((NUFORC Note: Advertising light. PD)) +2006-11-28,35.9605556,-83.9208333,Knoxville,TN,light,12,Several bright lights in a row over Knoxville, TN +2006-11-28,33.8352778,-117.9136111,Anaheim,CA,cigar,60,((HOAX??)) I saw a cigar shaped craft. I did not know if it was an alien craft. +2006-11-28,32.4486111,-81.7833333,Statesboro,GA,light,1800,Amber lights appearing in a line, then fading as a new one appeared. +2007-11-28,43.5977778,-84.7675,Mount Pleasant,MI,other,60,5 parallelogram shaped lights in tight formation at high speed observed over Mid-Michigan +2007-11-28,32.7152778,-117.1563889,San Diego (Clairmont),CA,circle,15,Notice how many San diego post there are now, I told you somehting was going on in san diego CA. i live in clairmont CA and sent you +2007-11-28,34.2977778,-83.8241667,Gainesville,GA,unknown,1800,As I went outside to have a late night smoke...... +2007-11-28,30.2669444,-97.7427778,Austin,TX,oval,60,Two small oval objects over a neighborhood +2007-11-28,37.0986,-93.8185,Mount Vernon,MO,light,3600,Alien Aircraft apparently watching me. +2007-11-28,40.1377778,-79.8983333,Charleroi,PA,circle,30,what appeared to be an invisible craft just dissappeared into thin air +2007-11-28,35.245,-81.3413889,Kings Mountain,NC,diamond,900,Diamond shaped object over Kings Mountain +2007-11-28,41.3947222,-73.4544444,Danbury,CT,diamond,60,4 bright lights, no noise, flying north towards new milford +2007-11-28,40.1166667,-80.7,Warwood,WV,formation,3,Large formation of lights streaking east to west +2007-11-28,34.6183333,-82.4780556,Williamston,SC,light,900,White lights seen over I-85 +2007-11-28,39.7902778,-77.7280556,Greencastle,PA,unknown,900,I noticed a very small, close pattern of stars. ((NUFORC Note: Student report. Possible hoax. PD)) +2007-11-28,40.1497222,-77.1286111,Boiling Springs,PA,triangle,180,A triangle shaped craft with large lights and no sound or form of thrust passed over my head. +2008-11-28,25.7738889,-80.1938889,Miami,FL,oval,30,ODD UFO OVER MIAMI +2008-11-28,38.9341667,-77.1777778,Mclean,VA,sphere,180,Was object a UFO or Stealth Bomber following 747 +2008-11-28,26.625,-81.625,Lehigh Acres,FL,other,600,5 objects in close formation, but in no particular order +2008-11-28,42.0333333,-87.7333333,Skokie,IL,cylinder,600,Glowing silver cylinder seen in daylight. +2008-11-28,40.8830556,-85.4975,Huntington,IN,light,1200,2 bright, stationary lights in the southwestern sky, one appears to be hovering over another. ((NUFORC Note: Venus and Jupiter. PD)) +2008-11-28,42.0038889,-87.9702778,Elk Grove Village,IL,light,3300,Two Unusual Orbs of Light Spotted Just Above Antenna at Elk Grove Village, IL. ((NUFORC Note: Venus and Jupiter. PD)) +2008-11-28,32.7025,-103.1355556,Hobbs,NM,light,900,2 BRIGHT LIGHTS OVER THE S SKY OVER HOBBS,N.M. ((NUFORC Note: Venus and Jupiter?? PD)) +2008-11-28,40.8680556,-73.4261111,Huntington,NY,light,300,A very slow moving tiny blinking light that suddenly disappeared. +2008-11-28,29.4238889,-98.4933333,San Antonio,TX,disk,188,Video surveillance of unidetified flying object moving in zig zag pattern and disappearing in sky. +2008-11-28,32.7152778,-117.1563889,San Diego,CA,rectangle,3,bright white, fast-moving light seen over san diego +2008-11-28,34.005,-118.8091667,Malibu,CA,flash,3,a blue light moving over the Santa Monica Bay, changed directions and flashed off. +2008-11-28,42.5,-96.4,Sioux City,IA,oval,180,Rounded UFO Near Grandview Park in Sioux City +2008-11-28,40.9405556,-73.9972222,Dumont,NJ,flash,60,orange red lights going in the same direction towards NYC at a high rate of speed +2009-11-28,35.1391667,-97.3944444,Noble (15 Miles East Of),OK,oval,2,VERY BRIGHT, ROUND, OBJECT. FLYING VERY FAST. SOUTH TO NORTH. TREE TOP LEVEL. +2009-11-28,38.7713889,-90.3708333,Hazelwood,MO,fireball,3,What I thought was unusual was the fact the object traveled horizontally across the sky. +2009-11-28,30.3580556,-90.0655556,Mandeville,LA,triangle,600,Saw a trianguler shaped craft while driving home. +2009-11-28,45.1077778,-93.2377778,Spring Lake Park,MN,sphere,300,we saw two spheres one large one small following we have no idea as to their size just two white spheres +2009-11-28,30.4211111,-87.2169444,Pensacola,FL,circle,180,two very bright balls of light in night sky following each other. No sound and no flashing lights moving very slowly. +2009-11-28,37.6391667,-120.9958333,Modesto,CA,flash,900,((HOAX??)) The object's shape was not seen exactly, but it had lights on either end of the spacecraft. +2009-11-28,40.0116667,-89.8480556,Petersburg,IL,triangle,10,Black, triangular UFO over a small central Illinois town. +2009-11-28,40.0116667,-89.8480556,Petersburg,IL,triangle,10,its was 10:52 pm three brownish-orange circles with a dark center appeared in a triangular formation for around ten seconds. +2009-11-28,40.0116667,-89.8480556,Petersburg,IL,triangle,15,3 orange lights fly over petersburg Illinois +2010-11-28,43.7608333,-93.2038889,Hollandale,MN,rectangle,1200,a hollandale mn strang object +2010-11-28,33.6675,-84.0177778,Conyers,GA,oval,900,Sighted object over Conyers GA that looked like large solid lit blimp hovering and then moving off +2010-11-28,28.8002778,-81.2733333,Sanford,FL,circle,300,Four, very large, stainless steel/chrome appearing shiny balls in a formation +2010-11-28,42.6055556,-83.15,Troy,MI,triangle,300,Unusual Triangular Craft +2010-11-28,39.9611111,-82.9988889,Columbus,OH,triangle,600,Triangle UFO seen near Port Columbus International Airport was ''wobbly''. +2010-11-28,33.8352778,-117.9136111,Anaheim,CA,triangle,20,Low flying, triangular shaped, series of dimly lit orange lights +2010-11-28,41.3325,-73.2077778,Monroe,CT,other,180,Huge object with 2 Verry bright headlights i can see from 3 minutes away +2010-11-28,38.5816667,-121.4933333,Sacramento,CA,oval,45,Oval Pattern of Lights Observed Traveling Low Over Sacramento, CA +2010-11-28,42.9169444,-83.5063889,Goodrich,MI,unknown,300,Strobing Craft in Goodrich +2011-11-28,34.0194444,-118.4902778,Santa Monica,CA,oval,3,I was late for work park my car got out start walking up the street, hey shooting star that weird 2 grey oval flying in close formation +2011-11-28,36.9541667,-101.065,Tyrone,OK,light,1200,It was then that I saw the brightest yellow star emitting lights around it. +2011-11-28,46.5927778,-112.0352778,Helena,MT,oval,300,Blue Oval by Mount Helena +2011-11-28,42.8238889,-72.1816667,Troy,NH,light,480,6 Exceptionally Bright White Lights with no sound 8 yards into the woods during broad daylight. +2011-11-28,39.7391667,-104.9841667,Denver,CO,changing,240,Three amber lights in Lakewood, Colorado +2011-11-28,45.4208333,-122.6694444,Lake Oswego,OR,egg,120,Gold/yellow Orb seen over Lake Oswego Oregon by 2 people. +2011-11-28,44.8341667,-87.3769444,Sturgeon Bay,WI,disk,120,Distant sphere-shaped object in the sky seen moving about in unpredictable and impossible directions over Lake Michigan. +2011-11-28,30.2669444,-97.7427778,Austin,TX,triangle,3,Austin, Texas ufo that was bright, triangular and fast and disappeared after about 2 seconds +2012-11-28,35.4633333,-89.91,Drummonds,TN,triangle,240,Blue blur hovering in the sky. +2012-11-28,37.2708333,-79.9416667,Roanoke,VA,unknown,900,This was brownish oddly shapped craft following under an airlplane. +2012-11-28,38.8047222,-77.0472222,Alexandria,VA,oval,240,2 red/orange oval shapes hovering in air +2012-11-28,35.4913889,-92.0311111,Heber Springs,AR,circle,600,Jets chasing shiny object in the sky. +2012-11-28,29.7630556,-95.3630556,Houston,TX,fireball,300,Yellowish /Orange object falling from the sky then changing direction. +2012-11-28,41.9666667,-71.55,North Smithfield,RI,other,2,Super fast blue green object jets in sky and just disappears. +2012-11-28,28.1138889,-81.6180556,Haines City,FL,light,120,I was driving to work down route 544 in Haines City when i noticed 2 bright orange lights to my east. At first i thought it was 2 big s +2012-11-28,43.7094444,-98.0294444,Mitchell,SD,circle,10,3 round golden circles in sky +2012-11-28,35.9605556,-83.9208333,Knoxville,TN,light,25,Brilliant Light Shines and Disappears. +2012-11-28,38.4327778,-90.3775,Arnold,MO,diamond,120,The moon was full, it was a cloudless night I saw a craft at 141/Hyw. 21 about 150 ft. off the ground stationary with no sound. Throug +2012-11-28,39.1683333,-96.9122222,Milford,KS,light,60,Bright orange sphere seen in the eastern sky from Milford State Park. +2012-11-28,41.1975,-73.965,Haverstraw,NY,light,10800,Light above moon. ((NUFORC Note: Witness later concludes that the object was a star. PD)) +2012-11-28,34.1486111,-118.3955556,Studio City,CA,fireball,120,Large circular orangish yellowish fireball in the sky - Made no noise! +2012-11-28,38.6272222,-90.1977778,St. Louis,MO,light,600,Slow moving bright orange light with differnt muffled engine noise that turned red before dissappearing off the horizon. +2012-11-28,39.3897222,-74.5244444,Pleasantville,NJ,triangle,480,3 stationary big white light then start moving until it disapwar. +2012-11-28,39.2688889,-84.2638889,Loveland,OH,circle,180,Orange orbs over Loveland, OH +2012-11-28,43.9597222,-122.8191667,Fall Creek,OR,circle,1800,Sighting Over Eugene Oregon Area. +2012-11-28,43.8569444,-70.1036111,Freeport,ME,fireball,2,Extremely large ball of light streaking from east to west. +2013-11-28,28.182222199999998,-81.8241667,Polk City,FL,sphere,10,Blue sphere of light flashes on 1-4 and zoomed down. +2013-11-28,42.3583333,-71.0602778,Boston,MA,circle,5400,White circular UFO outside Boston disappears--then reappears atop neon orange vertical-ellipse-shaped cloud & witnessed to Hartford CT. +2013-11-28,38.4088889,-90.57,House Springs,MO,circle,600,Five orange-red objects flying in an inverted Y formation, no.sound. +2013-11-28,33.9841667,-88.4880556,Amory,MS,sphere,420,Duration from first sphere appearing to last disappearing approx. 7 minutes. +2013-11-28,36.9902778,-86.4436111,Bowling Green,KY,circle,2700,Circular object with red and orange lights hovering above scottsville rd area for an hour. +2013-11-28,34.1336111,-117.9066667,Azusa,CA,circle,3,Small yellow circular craft, very still, then disappeared very quickly. +2013-11-28,45.0575,-93.0736111,Vadnais Heights,MN,circle,90,Orange orbs that disappear in sky, seen from Vadnais Heights, MN. +2013-11-28,35.0844444,-106.6505556,Albuquerque,NM,light,60,2 orange/red lights in a line were traveling North +2013-11-28,41.9902778,-70.9755556,Bridgewater,MA,flash,300,Light over Bridgewater. +2013-11-28,35.9605556,-83.9208333,Knoxville,TN,light,45,Four redish pink balls of light traveling very slow in a straight line then turned to east and disappeared. +2013-11-28,38.7508333,-77.4755556,Manassas,VA,egg,300,8 orbs seemingly connected in brentsville lake jackson manassas area. +2013-11-28,41.1466667,-73.4952778,New Canaan,CT,light,2700,10 red orange orbs flying across New Canaan +2013-11-28,41.5022222,-72.9791667,Prospect,CT,other,15,A brief sighting of a grey crescent shaped object flying at night. +2013-11-28,33.9841667,-88.4880556,Amory,MS,circle,120,911 was called; I was told a policeman on duty had seen these bright objects; Columbus AFB confirmed no aircraft flying T'giving Day. +2013-11-28,47.4486111,-122.1561111,Fairwood,WA,triangle,120,Large Triangle UFO Sighting. +2013-11-28,41.6797222,-74.1508333,Gardiner,NY,fireball,180,Four Person Fireball UFO sighting in Upstate NY 11/28/2013 6:55 PM. +2013-11-28,33.6888889,-78.8869444,Myrtle Beach,SC,triangle,900,7 total objects seen in the sky coming from the vicinity of the ocean, triangular orange lights that seemed to pulsate, stop and hover +2013-11-28,42.45,-73.2458333,Pittsfield,MA,unknown,180,Orange glowing line in sky. +2013-11-28,41.7791667,-83.5688889,Temperance,MI,formation,120,7-8 bright lights in formation, no sound, low in sky headed east towards lake Eire. Seen by 8 of us. Whole sky glowed. +2013-11-28,37.0058333,-121.5672222,Gilroy,CA,light,420,Seven lights in sky over North Gilroy. +2013-11-28,30.2238889,-92.0197222,Lafayette,LA,formation,420,Single file bright lights appear then disappear. +2013-11-28,42.8666667,-88.3333333,Mukwonago,WI,light,60,Line (convoy)? of very bright, deep-orange-red lights flying at low altitude. No sound. +2013-11-28,44.925,-93.4625,Hopkins,MN,formation,300,Formation of red lights over Hopkins, MN. +2013-11-28,34.4838889,-114.3216667,Lake Havasu City,AZ,circle,3600,Bright Fireball got lower to ground and dimmer until it eventually just faded out. ((NUFORC Note: Sighting of Venus. PD)) +2013-11-28,35.0844444,-106.6505556,Albuquerque,NM,changing,420,Five lights plusing over ABQ sky. +2013-11-28,42.3333333,-88.2666667,Mchenry,IL,fireball,300,4 fireballs moving together in a single line. +2013-11-28,41.5066667,-83.1466667,Oak Harbor,OH,light,15,There were 7 lights, some were reddish and yellowish/clear, in the sky forming a straight line and a triangle. +2013-11-28,40.2755556,-75.4569444,Spring Mount,PA,oval,900,I looked across the creek at the tree line and saw a bright orange light start to slowly rise vertically above the trees. +2013-11-28,44.7208333,-88.0719444,Sobieski,WI,fireball,120,2 Orange fireballs appeared in northeast Wisconsin for approximately 2 minutes. +2013-11-28,38.7744444,-75.1397222,Lewes,DE,light,10,Bright blue light moving horizontally. +2013-11-28,42.5791667,-71.4383333,Westford,MA,circle,10,Was driving and saw two circular unidentifies objects zooming past my field of vision. Then a few seconds later they passed by again at +2013-11-28,32.655,-79.9405556,Folly Beach,SC,sphere,900,Approx. 100 yards away from house. Red sphere that gradually diminished over 15 mins. +2013-11-28,33.7319444,-84.9191667,Villa Rica,GA,formation,209,Video taken and one picture. +2013-11-28,26.1591667,-97.9905556,Weslaco,TX,cone,8,7 circular red orange lights heading upward in the same formation and disappeared after a duration of 8 seconds. +2013-11-28,42.7208333,-94.215,Humboldt,IA,formation,60,Orange lights in a spread formation. +2013-11-28,29.8944444,-81.3147222,St. Augustine,FL,sphere,1200,4 strange orbs of light going around in a weird formation above an abnormally shaped cloud. +2013-11-28,42.7344444,-71.325,Pelham,NH,teardrop,240,6 red and yellow objects in a line at first, then 3 in formation of a triangle, all moving in a fast speed across sky. +2013-11-28,28.5380556,-81.3794444,Orlando,FL,fireball,300,3 Glowing Orange orbs. +2013-11-28,42.4602778,-71.3494444,Concord,MA,unknown,1800,Unexplained light beams radiating high in the sky above west concord for at least an hour. +2013-11-28,30.5041667,-90.4611111,Hammond,LA,other,120,BOOMERANG SHAPED CRAFT OVER THE TREES. +2013-11-29,33.3061111,-111.8405556,Chandler,AZ,other,900,THERE WERE 3 RED FIERY SHAPES IN THE SKY. THE 3 RED THINGS WERE FLYING IN THE FORM OF A TRIANGLE. +2013-11-29,38.6402778,-92.1222222,Holts Summit,MO,disk,2700,They're Back!!! +2013-11-29,31.2169444,-98.3930556,Lometa,TX,triangle,1080,3 bright lights hovering soundless in Lometa, Texas, seen by father and daughter. +1981-11-29,36.7472222,-95.9805556,Bartlesville,OK,unknown,120,The cloaked figure with huges eyes was hovering between the bed and the door. +1994-11-29,40.8972222,-98.2144444,Phillips,NE,light,600,Silent bright multicolored object moved at high speed stopping abruptly to change direction. shot straight up into upper atmosphere +1996-11-29,34.8697222,-111.7602778,Sedona,AZ,light,300,Orange Blazing Light over Rim of Mountain Northeast of Long Canyon. +1997-11-29,34.7961111,-118.8516667,Gorman (60 Miles North Of Los Angeles),CA,light,600,I was coyote calling on top of a mountain at night, and the sky was dark with clouds. A red flickering light came down through the clou +1998-11-29,34.3675,-77.7108333,Hampstead,NC,fireball,18,As we steped out of our car we saw a fireball vollyball size redish orange yellow in color, heading west to east on a horizontal plane +1998-11-29,33.7222222,-116.3736111,Palm Desert (Above),CA,fireball,60,Fiance and I were on the way to the theatre (RENT musical) I motioned to her to look at the odd falling star when I realized that the d +1999-11-29,34.6216667,-118.4130556,Green Valley,CA,light,240,Moving bright light that disappeared and seemed to become a faint moving light +1999-11-29,32.7152778,-117.1563889,San Diego,CA,sphere,4,Very large green ball with brighter areas then others traveling South to North in slight arch path. No trail. Very bright and green...h +1999-11-29,33.4483333,-112.0733333,Phoenix,AZ,fireball,10,Fireball witnessed. +1999-11-29,33.8583333,-118.0638889,Cerritos,CA,disk,3.5,sighting of object traveling at high speed with unusual movement and shape. +1999-11-29,38.8466667,-91.9477778,Fulton,MO,circle,7200,one of the objects was traveling from the north east and one was coming from the west to the east, the one coming from the north east w +2000-11-29,45.3566667,-122.8388889,Sherwood,OR,triangle,180,Saw very low flying, quite or HUGE object with 5 big bright lights in a V shape, evenly spaced. No strobe nor colored flashing lights. +2001-11-29,36.8347222,-81.515,Marion,VA,unknown,60,Unseen object, ,effects felt. +2001-11-29,35.7111111,-78.6144444,Garner,NC,disk,120,It was far over the trees and I could see windows. +2001-11-29,39.7555556,-105.2205556,Golden,CO,light,3,Blinking object entering atmosphere. +2002-11-29,39.6133333,-105.0161111,Littleton,CO,unknown,40,Red dot high in the sky moves very quickly and in a zigzag pattern. +2002-11-29,40.3355556,-75.9272222,Reading,PA,oval,20,Very high flying and super fast +2002-11-29,40.3355556,-75.9272222,Reading,PA,disk,10,This object made a pin point turn moving very fast and darted out of sight +2002-11-29,37.2744444,-94.6052778,Asbury,MO,changing,5,Large glowing ball straked across sky and broke in to three smaller objects of equal size. +2002-11-29,46.1383333,-122.9369444,Longview,WA,fireball,180,Fireball streaks slowly across northern sky. +2002-11-29,47.2044444,-121.9902778,Enumclaw,WA,cylinder,6,A "break-up" in the sky +2002-11-29,32.2686111,-107.7580556,Deming,NM,other,1800,Goldfish cracker shaped object seen in Deming, New Mexico on 11/29/02 +2002-11-29,37.2752778,-107.8794444,Durango,CO,oval,10,Large sun bright oval shaped object flying through the air at a high rate of speed , hit ground ,followed by large flash. +2002-11-29,35.198055600000004,-111.6505556,Flagstaff,AZ,light,180,smal amber light to the north north east part of flagstaff +2002-11-29,39.9147222,-77.905,Fort Loudon,PA,light,180,a moveing light shining through the clouds +2002-11-29,40.0630556,-76.7041667,Mount Wolf,PA,light,1800,I witnessed 3 disk shaped lights flying through the sky for 10 minutes, when a 4th appeared they began to fly in a predetermined patter +2003-11-29,40.2308333,-75.5225,Limerick,PA,triangle,60,slow moving triangle with three lights, that stopped rotated and shot off in the other direction +2003-11-29,42.125,-71.1027778,Stoughton,MA,circle,18,UFO dropped from the sky at high rate of speed. +2003-11-29,40.9275,-73.9977778,Bergenfield,NJ,light,20,The object was a ball of light which changed direction and speed several times, and slightly changed color once. +2003-11-29,42.4927778,-92.3427778,Waterloo (North Of),IA,fireball,30,Green fireball Sonic Boom felt +2003-11-29,45.7858333,-92.3808333,Siren,WI,disk,7200,went out side at 11.10 p.m.to get mail.seen objects south/east of siren.object changed colors moved up and down fast . +2003-11-30,38.9580556,-76.2105556,Grasonville,MD,other,3,blinked on moving very fast and blinked off. +2004-11-29,42.3625,-71.3619444,Wayland,MA,sphere,15,gold, spinning, 3 non flickering lights pretty big, close enough for some details to be seen +2004-11-29,42.3625,-71.3619444,Wayland,MA,sphere,20,Gold,spinning, 3 lights that we visible but not flickering, went in a circle then dissapeared, was lower than airplanes. +2004-11-29,42.4258333,-71.3044444,Lincoln,MA,sphere,660,spinning, lights like a triangle, and flying slow +2004-11-29,42.3458333,-71.5527778,Marlborough,MA,chevron,300,At approximately 13:05 I was looking out a window at work, when I spotted a fairly stationary object in the air above our company parki +2004-11-29,41.7938889,-86.7438889,New Buffalo,MI,cone,480,Raped by Aliens, ETC>. +2004-11-29,42.4563889,-79.0022222,Perrysburg,NY,light,1350,It was a bright white light the flaoted 300 yards over our head and stayed in the same area all the time. It would dissaper then reappe +2004-11-29,33.6694444,-117.8222222,Irvine,CA,unknown,0.2,the object emitted sparks from the side and rear and hit the earth at a fantastic speed. no light was emitted upon impact. +2004-11-29,32.2216667,-110.9258333,Tucson,AZ,disk,180,there were 3 disks hovering in the sky flying in formations that i have nere seen before they hovered in the air then they started to c +2005-11-29,28.5380556,-81.3794444,Orlando,FL,light,120,Two bright lights in orlando strange behavior. +2005-11-29,31.7086111,-87.7772222,Grove Hill,AL,triangle,5,Large triangle craft near commerical aircraft +2005-11-29,39.9611111,-82.9988889,Columbus,OH,cylinder,60,Long cylinder shaped UFO sighted along I-70 near Columbus Ohio. +2005-11-29,28.5380556,-81.3794444,Orlando,FL,light,600,2 lights high NE in orlando not moveing just fadeing in and out +2005-11-29,35.9172222,-82.3011111,Burnsville,NC,unknown,5,A dark object with dull lights 200-300 yrds up in the sky , moving in total silence +2005-11-30,35.9172222,-82.3011111,Burnsville,NC,unknown,300,Another sighting in Burnsville,NC 11/29/05 +2006-11-29,37.8772222,-122.1786111,Orinda,CA,disk,120,Hovering in distance while I was driving on freeway. Lights in solid row, then blinking in 1/3 sections, then "running" lights, then b +2006-11-29,32.4608333,-84.9877778,Columbus,GA,other,60,The military transported an acorn shaped object the size of an old Volkswagen Beetle to the Columbus Metropolitan Airport. +2006-11-29,38.7291667,-89.8830556,Troy,IL,triangle,300,Silent Black Triangle Aircraft Sighted in Illinois Suburb. +2007-11-29,40.4841667,-88.9936111,Bloomington,IL,formation,5,A series of 8-10 amber lights in traveled in a V formation, unable to determine if they were part of one craft or several aligned ones +2007-11-29,28.3197222,-80.6077778,Cocoa Beach,FL,light,15,Two orange lights over Cocoa Beach (Space Coast) Florida +2007-11-29,46.7833333,-92.1063889,Duluth,MN,disk,1800,A disk-shaped UFO high in the sky at 4:00 AM CT. +2007-11-29,39.7294444,-104.8313889,Aurora,CO,unknown,120,0n Thursday the 29th of November 2007 between 12:34 to 12:37 pm. My friend and I were at 225 and I70 near Fitzsimons. +2007-11-29,41.9444444,-71.2861111,Attleboro,MA,other,5,BOOMERANG OBJECT TRAVELING NORTH TO SOUTH OVER ATTLEBORO MASS. +2007-11-29,43.6136111,-116.2025,Boise,ID,light,600,A collection of flashing lights moving quickly across the sky. Too many to be airplanes. +2007-11-29,36.0625,-94.1572222,Fayetteville,AR,light,300,Satellite-like light was seen moving in various directions at a high rate of speed. +2007-11-29,39.1625,-76.625,Glen Burnie,MD,chevron,15,Glowing V moves across sky +2007-11-30,37.6391667,-120.9958333,Modesto,CA,light,3600,At 4:00 am I awoke looking at the sky in the E and noticed a bright star. The star started to slowly move. ((NUFORC Note: Venus?? )) +2008-11-29,44.9591667,-89.63,Wausau,WI,light,15,Twice I saw a light zoom from my tree, once to a series of branches, the ground, and it disappeared both times. +2008-11-29,41.8775,-88.0669444,Glen Ellyn,IL,chevron,20,((HOAX)) He lost. We win. 500 Lights On Object0: Yes +2008-11-29,32.7833333,-96.8,Dallas,TX,sphere,15,Brightly illuminated orb near I35 and 635 in Dallas at 3 am 11/29/08 500 Lights On Object0: Yes +2008-11-29,39.1266667,-82.9855556,Waverly,OH,chevron,5,Huge boomerang ,flying very fast among the clouds,no sound,white lights along front edge. +2008-11-29,39.7155556,-82.9530556,Ashville,OH,light,600,Dual beams of light (like headlights) reflecting off clouds, rotating in a stationary circular pattern; only visible when cloudy. +2009-11-29,48.8466667,-122.5897222,Ferndale,WA,changing,2,3 objects that appeared to be made up of separate lights approximately 6-8 spinning lights per object that appeared, disappeared +2009-11-29,44.7677778,-93.2775,Burnsville,MN,chevron,1200,Orbiting light spheres and gold lights in boomerang shape +2010-11-29,34.02,-117.9486111,La Puente,CA,light,180,I experienced a UFO sighting on November 29th񫺚 around 8:30 pm I went outside to get something from my grandma's van and I see abou +2011-11-29,46.5436111,-87.3952778,Marquette,MI,light,240,Light object in sky dims then moves away towards downtown after hovering for several minutes. +2011-11-29,48.7597222,-122.4869444,Bellingham,WA,unknown,180,While driving, my daugter and I witnessed a brightly lit object move accross the sky in vertical/horizontal movements . +2011-11-29,34.2308333,-111.3244444,Payson,AZ,cigar,300,Long tubular shaped ufo over the desert of Arizona near Payson. +2011-11-29,32.3330556,-93.8361111,Keithville,LA,triangle,600,Low flying, very slow, very quite, triangular shaped aircraft with two large white lights & one small white light +2011-11-29,34.1361111,-117.8644444,Glendora,CA,circle,2700,Several white dots racing accross sky over glendora mountain range in california +2011-11-29,34.0583333,-106.8908333,Socorro,NM,light,180,3-4 yellow round lights in a triad and a string over the northern end of the WSMR east of Socorro NM on 11.29.11 about 1830. +2011-11-29,39.2191667,-121.06,Grass Valley,CA,chevron,6,Lighted(glowing) chevron shaped craft with individual lights moving east to west then just disappeared +2012-11-29,40.9519444,-76.46,Catawissa,PA,circle,7200,RED OBJECT (UFO) FLYING NEAR FULL MOON PICTURES. +2012-11-29,41.2586111,-95.9375,Omaha,NE,unknown,3600,Loud humming sound off and on, unlike any type of plane, car or helicopter. +2012-11-29,39.2902778,-76.6125,Baltimore,MD,disk,480,DISCS WERE ALREADY SIGHTED UPON MY ARRIVAL. +2012-11-29,37.5630556,-122.3244444,San Mateo,CA,light,10,Yellow stationary light in the sky low on the horizon that was stationary for at least 10 seconds and then disappeared suddenly. +2012-11-29,41.7,-71.6833333,Coventry,RI,fireball,300,Fireball falling straight down. +2012-11-29,42.7761111,-71.0777778,Haverhill,MA,other,900,Kite shaped craft hovering over residential area in Haverhill, MA. +2012-11-29,37.9975,-121.7113889,Oakley,CA,sphere,900,I was in front of my house in front I looked up and saw 5 spherical lights in the shape of #5 dice pattern. The outer spheres move in t +2012-11-29,37.9975,-121.7113889,Oakley,CA,sphere,600,4 uluminated white light spheres the size of a basket balls performed a symmetrical choreographed movement at low level +2012-11-29,31.1238889,-97.9027778,Copperas Cove,TX,changing,300,"SAUCER SHAPE SHOOTING BLUE LIGHTS AT GROUND. WNW OF COPPERAS COVE +2012-11-29,38.0291667,-78.4769444,Charlottesville,VA,light,60,Three red lights in a diagonal line rose in the sky, vibrated then went out. +2012-11-29,32.8338889,-109.7069444,Safford,AZ,light,300,While on approach passengers see amber color illuminating spheres in the sky near Safford Arizona +2012-11-29,40.2025,-75.8366667,Geigertown,PA,light,2700,This is the second time to witness this event. First time was on Thanksgiving night. Same series of events. +2012-11-29,38.9822222,-94.6705556,Overland Park,KS,sphere,3,Orange sphere emitting orange light seen very high in sky, larger than an aircraft or shooting star, 3 seconds. +2012-11-29,40.4283333,-79.6977778,Murrysville,PA,unknown,180,Multiple flashing lights on unknown slient flying craft. +2012-11-29,47.5708333,-122.2208333,Mercer Island,WA,egg,600,Colorful object flying over Mercer Island. ((NUFORC Note: Sirius, or model airplane?? PD)) +2013-11-29,26.5625,-81.9497222,Cape Coral,FL,other,10800,Both of us woke up with lost time but what we recal are identical. +2013-11-29,41.85,-71.4666667,North Providence,RI,fireball,4,Bright, white, low object split second gone. +2013-11-29,46.2113889,-119.1361111,Kennewick,WA,triangle,1500,Triangle lights. Kennewick, WA, 11/29/13. +2013-11-29,33.9525,-84.55,Marietta,GA,changing,9000,Large caravan of UFO's appear in night sky over Marietta Ga. +2013-11-29,39.9977778,-76.3544444,Millersville,PA,light,10,Three strange lights dancing in the distance. +2013-11-29,30.1658333,-81.7066667,Orange Park,FL,circle,180,Orange Park Fl 3 minutes pulsating glowing red and orange orb seen by 4 family members. +2013-11-29,33.4330556,-79.1216667,Pawleys Island,SC,fireball,300,I was walking north on the beach from the Pearce Moser access. First object rose from the area of South Litchfield Creek traveling sout +2013-11-29,39.4141667,-77.4108333,Frederick,MD,formation,600,5 or 6 oranges objects seen flying over Frederick MD 11/29/2013 18:50. +2013-11-29,39.3258333,-77.3516667,Urbana,MD,circle,360,A group of orange lights moving south in Urbana, MD along the Ijamsville Rd/Villages of Urbana area. +2013-11-29,39.3258333,-77.3516667,Urbana,MD,disk,600,Orange dots moving to south in Maryland. +2013-11-29,33.9813889,-81.2363889,Lexington,SC,light,600,Orange lights. +2013-11-29,40.8813889,-82.6619444,Shelby,OH,chevron,15,3 crescent/Chevron shaped formations consisting of 8-12 lights. +2013-11-29,40.8813889,-82.6619444,Shelby,OH,formation,60,Multiple occurrences of several white lights in formation moving rapidly, moving quickly in and out of formation. +2013-11-29,39.2902778,-76.6125,Baltimore,MD,triangle,5,Triangle shaped and very bright moving at the same time. +2013-11-29,41.7,-71.6833333,Coventry,RI,sphere,1.5,Bright white light travels across the night sky and vanishes. +2013-11-29,41.8872222,-71.9625,Pomfret Center,CT,sphere,1200,Bright orange globes traveling east to west. +2013-11-29,42.4333333,-71.45,Maynard,MA,sphere,10,Flying lightbulb the size of a basketball over Maynard, MA. +2013-11-29,44.6780556,-69.9369444,Mercer,ME,fireball,120,Two glowing balls hovering over Mercer Maine. Shot off in unimaginable speeds after supersonic craft gets between them. +2013-11-29,41.7013889,-71.1555556,Fall River,MA,light,7,Shooting star object, much brighter that a star. +2013-11-29,29.5375,-95.1180556,Webster,TX,circle,120,Reddish orange "light" traveling in unison with two smaller white "lights" at 45 degree angle from each other. +2013-11-29,40.8066667,-74.1858333,Bloomfield,NJ,chevron,7,V shaped object heading south. No sound. Cloud color. Not lit up. Flew in a straight line visible for 7 seconds. +2013-11-29,35.8027778,-88.7747222,Medina,TN,cylinder,2,Vibrant green and white lights, cylindrical shaped object, fell straight down approximately 500 feet. +2013-11-29,38.6172222,-121.3272222,Carmichael,CA,oval,600,The craft was very close: fast; glowing fire red and it could cloack. +2013-11-29,40.8297222,-74.2405556,Verona,NJ,triangle,10,Perfect flying V but with lights, no birds or a plane. +2013-11-29,40.6583333,-74.3,Cranford,NJ,chevron,7,Large, silent V-shaped craft spotted traveling southeast quickly in a linear path. +1968-11-30,33.9075,-86.6152778,Locust Fork,AL,light,180,Smaller UFO comes from behind mountain and enters larger one. +1978-11-30,47.9544444,-117.4758333,Deer Park,WA,disk,300,My mother and father in-law, My wife,our two boys,(4th & 5th grade) and myself observed a very bright green light through the kitchen w +1981-11-30,41.1983333,-74.4836111,Vernon,NJ,triangle,240,Corrections Officer brother and sister have seperate events. I saw the triange 18 years ago! +1988-11-30,34.99,-91.7366667,Hickory Plains,AR,unknown,300,UFO encounter or high-tech military aircraft? +1990-11-30,26.1416667,-81.795,Naples,FL,other,5,A very large, black, silent, boomerang flying very very fast over Naples, Florida. +1990-11-30,40.2125,-78.9291667,Hollsopple,PA,disk,600,On way to work, parked car and upon exiting car observed a u.f.0. hovering at the far end of the parking lot ( no noise ). +1996-11-30,46.3313889,-120.09,Outlook,WA,light,3,1996 Nov. or Dec. coming in from a bad ice storm and snow. The Valley lit into day three times for about three seconds each time.. I +1996-11-30,26.2466667,-98.4811111,La Joya,TX,disk,120,South Texas migrant worker sees "flying disk" while deer hunting. +1996-11-30,32.525,-93.75,Shreveport,LA,unknown,30,IT WAS DARK I WAS DRIVING AND IT LOOKED LIKE A PLANE WITH A SMALLER OBJECT FLYING RIGHT UP TO IT AND ROTATING AROUND IT. +1996-11-30,34.8697222,-111.7602778,Sedona,AZ,light,900,Three round bright lights in triangle formation near Northern Slopes Foothills North. +1997-11-30,38.5816667,-121.4933333,Sacramento,CA,flare,30,I think we saw something simular as discribed on the Art Bell Show last night. A flair would be an accurate discription. Would have b +1998-11-30,42.2711111,-89.0938889,Rockford,IL,triangle,600,saw 2 very bright objects in western sky, one disappearing from view somehow (not sure where it went) the other object was huge, triang +1998-11-30,31.6277778,-110.3333333,Huachuca City,AZ,circle,30,At 0532 this morning, I was speaking to my best friend in the drivway of my home. We saw a bright circular object in the middle of the +1998-11-30,38.5597222,-120.9827778,Latrobe,CA,light,420,followed these lights down a dirt road from a distance of about a half mile. they went around a small foothill,as we came around the hi +1998-11-30,33.4483333,-112.0733333,Phoenix,AZ,light,600,Looked like landing lights on aircraft. Were brighter, iridescent, and twinkling. +1999-11-30,39.5538889,-83.2569444,New Holland,OH,disk,4500,Vivid green and red lights coming from an ovject East of Jupiter +1999-11-30,42.2458333,-84.4013889,Jackson (West Of),MI,fireball,3,I was going west on I94 at mile marker 174 when I looked up and seen a green fireball comeing through the clouds it was green and and h +1999-11-30,41.6611111,-91.53,Iowa City,IA,sphere,30,satellite dots in polar orbit but one grew very bright as it turned into line with first +1999-11-30,26.3180556,-80.1,Deerfield Beach,FL,circle,15,I was filming a sunrise when a object appeared. I have it on tape. It was round and I don't know what it was for sure +1999-11-30,33.8302778,-116.5444444,Palm Springs,CA,oval,180,I was traveling north by automobile when I observed an object traveling in a southernly direction at a very slow rate of speed. I stop +1999-11-30,47.3177778,-119.5525,Ephrata,WA,unknown,1200,Two craft 3 miles from each other close to the ground seen by two in Central Washington November 1999 +1999-11-30,39.0169444,-94.2813889,Blue Springs,MO,fireball,3,Greenish fireball in the northern sky falling toward the horizon. +1999-11-30,34.2072222,-84.1402778,Cumming,GA,circle,2,brilliant amber object trailing sparks moving from zenith to west horizon +2000-11-30,43.0186111,-74.0319444,Galway,NY,light,300,Two lights, just above the trees, moving in a circular motion for several minutes and then becoming erratic in their movemnets. +2001-11-30,31.5230556,-98.9797222,Indian Creek,TX,light,14400,lights that followed us for several hours. +2001-11-30,46.9422222,-122.6047222,Yelm (Mt.rainier),WA,light,600,USAF pilot on ground in Yelm sees hovering, moving orange light near Mt. Rainier. +2001-11-30,28.7166667,-81.7736111,Howey In The Hills,FL,unknown,1800,As I was looking up at the night sky, I saw flashing red, green, and either blue or white lights on a stationary object that would occa +2002-11-30,38.4191667,-82.4452778,Huntington,WV,changing,180,It started out as five lights, then went to one bright light, then the light turned into a ring, and then back into a ball. +2002-11-30,39.0997222,-94.5783333,Kansas City,MO,cylinder,600,ALSO MY STATE SECTION DIRECTOR YEAR 1998 ALSO SAW THE SAME THING I SAW YEAR 2002 +2002-11-30,34.364444399999996,-80.4361111,Cassatt,SC,circle,600,I was was approximately 5:30 pm when I noticed a ball of light slowly decending. I then called my daughter to come out and see it. Afte +2002-11-30,39.1405556,-121.6158333,Yuba City,CA,triangle,120,Three large lights in triangular formation spotted near Yuba City, CA on 11/30/02. +2002-11-30,39.3111111,-94.9222222,Leavenworth,KS,triangle,60,Dark, Silent triangular shape over Kansas +2002-11-30,34.7463889,-92.2894444,Little Rock,AR,chevron,15,Large, white/gray v-shaped object, flying silent.. +2002-11-30,37.2152778,-93.2980556,Springfield,MO,other,20,L-shaped and light-colored object(s) moving generally from NW to SE late at night. +2003-11-30,45.7858333,-92.3808333,Siren,WI,oval,3600,object was spoted two nights in a rowe south-east of siren wis.change shape,move from side to side and up and down fast. +2003-11-30,41.0391667,-96.3680556,Ashland,NE,disk,180,Film is seen by who knows how many hundreds of people and is considered to be authentic & has been determined that it is not a Hoax. +2003-11-30,41.0391667,-96.3680556,Ashland,NE,disk,300,LARGE DARK DISK SHAPED OBJECT WITH VERY BRIGHT LIGHT SEEN IN DAYLIGHT-HAVE VIDEO PROOF +2003-11-30,32.7152778,-117.1563889,San Diego,CA,circle,120,At 3:35 PM I went outside to feed the family of ravens who arrive/calling at that time. I went out onto my upstairs balcony to see how +2003-11-30,35.2619444,-81.1875,Gastonia,NC,other,10,WHITE SILVERY OBJECT NORTHWARD BOUND WITH GREAT SPEED, NO SOUND AND FLUTTERING MOTION. +2003-11-30,29.8547222,-89.9905556,Belle Chasse,LA,light,900,Bright light changing colors about 20-30 miles in the night sky. +2003-11-30,35.8808333,-84.5086111,Kingston,TN,triangle,180,Triangle shaped object with lights hovering at the side of our house. +2003-11-30,38.6272222,-90.1977778,St. Louis,MO,unknown,600,ufo with other strange goings on/ monster? +2003-11-30,33.9830556,-118.0958333,Pico Rivera,CA,changing,1200,Bright Red UFO Continues To Haunt Montebello +2003-11-30,42.2711111,-89.0938889,Rockford,IL,light,3600,Light hovered for at least an hour with colors of white, green and red. +2003-11-30,38.45,-91.0083333,Union,MO,light,1200,I was driving home and saw the moon out of the corner of my eye. Then, I noticed a bright yellow light to the left of the moon. I blew +2003-11-30,37.0808333,-119.4844444,Auberry,CA,light,3,Saucer w/ navy blue lights +2004-11-30,39.7136111,-82.5994444,Lancaster,OH,fireball,5,Bright blue fireball +2004-11-30,40.9252778,-74.2769444,Wayne,NJ,unknown,3,Loud Explosion Booms w / Earthquakes Heard all over North Jersey USA 11/30/2004 +2004-11-30,37.0808333,-119.4844444,Auberry,CA,light,120,Bright white light seen traveling N to S for 1-2 min., with apparent fighters in area immediately afterwards. +2004-11-30,33.4222222,-111.8219444,Mesa,AZ,other,90,"V" shaped object seen in Mesa, AZ 11/30/04 6:00pm +2004-11-30,45.6691667,-108.7708333,Laurel,MT,fireball,180,AMAZING !!! LARGER THAN USUAL BRILLIANT FIREBALL IN WSW MIDNIGHT MONTANA SKIES. +2005-11-30,38.2719444,-87.6877778,Owensville,IN,sphere,30,1 Lighted sphere in the sky transformed into 2 lighted sphere orbes. +2005-11-30,38.3552778,-87.5675,Princeton,IN,circle,1200,two round lights in NNW sky +2005-11-30,36.3155556,-99.7572222,Gage,OK,light,1800,11-30-05ᅃ:00 shattuck okla,lightᅎminutes,video shot from gage okla +2005-11-30,33.4355556,-112.3488889,Avondale,AZ,light,37800,5 bright moving lights +2005-11-30,40.2316667,-74.0258333,Wanamassa,NJ,fireball,2,red/orange fireball seen +2006-11-30,39.9019444,-75.3502778,Swarthmore,PA,flash,5,((HOAX??)) Massive bright green-blue flash over the Philadelphia sky. ((NUFORC Note: Possible hoax from Swarthmore College. PD)) +2006-11-30,33.3286111,-91.2816667,Lake Village,AR,triangle,180,two air craft one known the other? ((NUFORC Note: Report appears to be unrelated to UFO activity. PD)) +2006-11-30,32.3716667,-112.86,Ajo (And Southern Arizona),AZ,fireball,7200,Flying lights over Ajo and Southern, Arizona. +2006-11-30,32.3716667,-112.86,Ajo,AZ,light,900,Flying lights Over Garlic, Arizona. +2006-11-30,40.3355556,-75.9272222,Reading,PA,other,180,LARGE CRAFT SEEN OVER READING PENNSYLVANIA - SOME LIGHTS FLASHING RED SOME JUST RED AND ALSO WHITE LIGHTS ON CRAFT. CRAFT WAS HEADING +2006-11-30,44.9430556,-123.0338889,Salem,OR,light,240,Bright planet type light that went nova and shrunk to nothing. Hurt my skin and eyes. +2006-11-30,40.8713889,-73.4572222,Cold Spring Harbor,NY,chevron,180,Large, wide, low-flying, very light object with navigational lights observed over road. +2006-11-30,32.3716667,-112.86,Ajo,AZ,light,7200,Luces Voladoras Sobre Ajo, Arizona, Flying Light over Ajo, Arizona +2006-11-30,38.5816667,-121.4933333,Sacramento,CA,triangle,120,SEEN FRONT OF THE PICTURES HUTCHINSON KANSAS OCT 27 06 +2006-11-30,39.3583333,-93.4955556,Carrollton (Hwy. 65, Northbound),MO,other,120,new aircraft in super quiet and slow mode. +2006-11-30,39.4586111,-82.2319444,Nelsonville,OH,triangle,180,triangle shape object in night sky north of Nelsonville,Ohio +2007-11-30,47.8555556,-121.9697222,Monroe,WA,light,300,Bright starlike light seen hovering then speeding out of sight. +2007-11-30,26.8172222,-80.0822222,North Palm Beach,FL,other,7200,Two objects were observed moving eratically in the early morning sky, each multi-lighted. +2007-11-30,40.0227778,-82.4447222,Heath,OH,light,900,bright light being followed by jets, till it out flew them, and they left. +2007-11-30,40.0227778,-82.4447222,Heath,OH,unknown,900,jet planes after UFO +2007-11-30,31.0361111,-89.8047222,Sandy Hook,MS,other,2,strange brown shape in the daylight sky +2007-11-30,33.0341667,-83.9383333,Forsyth,GA,unknown,300,Like the headlights of a car hovering over the interstate +2007-11-30,40.8936111,-83.6502778,Arlington,OH,light,60,Dissappearing Orange Ball of Light +2008-11-30,37.6391667,-120.9958333,Modesto,CA,formation,60,10-12 white/shiny objects in changing formations over Modesto, CA +2008-11-30,34.2694444,-118.7805556,Simi Valley,CA,oval,60,Daytime sighting of craft over commercial jet in Simi Valley, CA +2008-11-30,44.2194444,-123.2044444,Junction City,OR,oval,180,((HOAX? Date is flawed.)) huge object in night sky while fliming two bright stars. +2008-11-30,29.3011111,-94.7975,Galveston,TX,light,600,We were leaving a place when we saw a bright light in the sky, it looked as if it could be seen miles away. We sat and stared at it and +2009-11-30,34.9491667,-83.7575,Hiawassee,GA,light,1800,SPEEDING LIGHT ACROSS THE SKY +2009-11-30,32.8994444,-105.9597222,Alamogordo,NM,sphere,420,Bright Orange Orb traveled fairly quickly across sky then hovered briefly and shot straight up. +2009-11-30,32.2216667,-110.9258333,Tucson,AZ,triangle,1200,Saw what appeared to be stars shooting "laser" lights down, also an object emitting other objects in to another +2010-11-30,38.7044444,-93.2280556,Sedalia,MO,triangle,240,Triangular space craft over fight club in sedalia, mo 11/31/10. +2010-11-30,33.7283333,-117.1455556,Menifee,CA,triangle,720,Huge black Triangle shape, all lit up,bright white lights, flying very low,slow speed and constant low humming sound +2010-11-30,33.3061111,-111.8405556,Chandler,AZ,rectangle,600,large object sillouted in sunset hovering over estrella mountain. +2010-12-01,33.9488889,-118.4447222,Playa Del Rey,CA,teardrop,2,Very Low Fast Flying Light Ball with White Jet Stream +2011-11-30,38.4405556,-122.7133333,Santa Rosa,CA,light,1800,Light then 3 of then, was not a plane and hovered and went up then down. Hard to explain +2011-11-30,39.6066667,-75.8336111,Elkton,MD,cigar,120,Tube shaped craft over elkton maryland +2011-11-30,25.7738889,-80.1938889,Miami (Kendall),FL,unknown,10,UFO over Kendall Florida. +2011-11-30,35.7719444,-78.6388889,Raleigh,NC,unknown,1200,Observed a non conforming craft south of Raleigh moving west to east and then circling north toward Raleigh center. +2011-11-30,44.0522222,-123.0855556,Eugene,OR,unknown,600,Bright white moving in circles, left then right, forward then back. +2011-11-30,36.5958333,-91.6455556,Koshkonong,MO,disk,5,Light green circular light seen in the sky on highway before moving South and disappearing within 3 seconds without a loss of view. +2011-11-30,39.3372222,-85.4836111,Greensburg,IN,triangle,600,Large triangular shaped object with 3 white lights and 1 blinking red light flew directly over us at very low speed and altitude. +2012-11-30,42.8711111,-97.3969444,Yankton,SD,light,10,repeated sighting of numerous lights that join together and then dissapear +2012-11-30,36.0305556,-75.6763889,Kill Devil Hills,NC,triangle,300,Large wedge shaped UFO. +2012-11-30,41.9505556,-93.665,Kelley,IA,diamond,120,I was driving west of Kelley, Iowa. The first sight was an extremely bright light fairly low in the sky. I was trying to de +2012-11-30,42.1102778,-88.0341667,Palatine,IL,circle,90,Bright red object moving slowly in the sky, changes color and direction and disappears. +2012-11-30,41.7588889,-70.4944444,Sandwich,MA,fireball,60,Orange silent fireball. +2012-11-30,34.5025,-84.9511111,Calhoun,GA,triangle,10,Triangular Jet-Propelled UFO Sighting 5x, Same Area. +2012-11-30,37.5958333,-122.0180556,Union City,CA,light,600,3 BEAUTIFUL ORANGE ORBS FLY PLAYFULLY IN THE DISTANCE FOR 10 MINUTES BEFORE MOTHERSHIP TAKES THEM IN. +2012-11-30,44.2022222,-88.4463889,Menasha,WI,changing,600,Sitting in Car for a few minutes before going into work near the Marcus theaters on Valley Rd in Menasha. Over the theater came a very. +2012-11-30,42.8141667,-73.94,Schenectady,NY,other,600,2 red objects in a diagonal form. +2012-11-30,31.0833333,-97.6594444,Harker Heights,TX,light,600,Very odd blue light in the sky caught my eye. +2013-11-30,34.4838889,-114.3216667,Lake Havasu City,AZ,chevron,300,4 to 6 shiny objects approached close to Lake Havasu City, AZ. +2013-11-30,28.0194444,-82.7719444,Dunedin,FL,fireball,180,Fiery object in sky over Dunedin, Florida on 113013 at dusk. +2013-11-30,44.28,-88.3183333,Little Chute,WI,sphere,60,Metallic sphere hovering over Hwy 41 Southbound Lane, just outside of Little Chute Wisconsin. +2013-11-30,37.5311111,-84.6619444,Stanford,KY,disk,1200,Seen round saucer in sky for about 20 mins then it just poofed and gone/ white bright lights all around it. ((NUFORC Note: Venus?? PD) +2013-11-30,42.3636111,-87.8447222,Waukegan,IL,oval,7200,Bright lites hover over waukegan southern westerly skies nov.30 about 5:30 to 7pm. +2013-11-30,33.9525,-84.55,Marietta,GA,changing,15660,Another Night of Large Sightings In Marietta Ga +2013-11-30,42.8744444,-71.1816667,Hampstead,NH,sphere,900,3 red spheres, low hovering over lake. Move slowly, then disappear after 15 minutes. +2013-11-30,44.9430556,-123.0338889,Salem,OR,rectangle,900,Rectangular space craft following me and basically stalking me it had looked like extraterrestrial creatures were inside. +2013-11-30,35.9516667,-95.6505556,Coweta,OK,other,5400,Bright light in the air. ((NUFORC Note: We suspect a sighting of Venus. PD)) +2013-11-30,37.9975,-121.7113889,Oakley,CA,fireball,600,7 fireball like objects. +2013-11-30,37.9975,-121.7113889,Oakley,CA,fireball,600,Four red-orange balls of light seen over Oakley, CA. +2013-11-30,33.7513889,-84.7477778,Douglasville,GA,oval,1200,Bright Amber lights hovering over Arbor Place Mall and Highway I-20. +2013-11-30,39.4452778,-83.8286111,Wilmington,OH,light,1800,Main light with several other red lights surrounding main light. ((NUFORC Note: Possible sighting of Venus?? PD)) +2013-11-30,42.7491667,-91.6711111,Arlington,IA,unknown,120,Bright orange light seen traveling NW to SE by 2 civilians in NE Iowa. +2013-11-30,26.9338889,-80.0944444,Jupiter,FL,unknown,480,A set of blinking lights simply turned around- not in the way an Airplane or Helicopter makes a u-turn. +2013-11-30,32.2216667,-110.9258333,Tucson,AZ,unknown,240,Unusual Lights Above Catalina Mountains in Tucson +2013-11-30,45.4463889,-122.6380556,Milwaukie,OR,fireball,90,Fireball like object flying in a inconsistent line completely disappears from sight. +2013-11-30,27.8425,-82.6997222,Pinellas Park,FL,flash,6,Fire in the Sky over Mac Dill AFB Tampa Fla. 30 Nov. 2013. +2013-11-30,35.3394444,-97.4863889,Moore,OK,other,120,5 lights in v formation - then began to move independently. Then lights out was how it disappeared. +2013-11-30,35.4675,-97.5161111,Oklahoma City,OK,sphere,180,2 Amber Orbs Above Lake Overholser Area +2013-11-30,26.7080556,-80.2308333,Royal Palm Beach,FL,circle,600,Circular orange dots moving across the sky and then fizzling out. +2013-11-30,38.2541667,-85.7594444,Louisville,KY,triangle,180,Black Triangle hanging in place over louisville street. +2013-11-30,40.4166667,-86.8752778,Lafayette,IN,cylinder,10,White light object cigar shaped turned off its lights and spun 360 degrees and headed north. +2013-11-30,40.9977778,-72.2930556,Sag Harbor,NY,fireball,180,Fireballs visit Long Island again. +2013-11-30,46.8722222,-113.9930556,Missoula,MT,oval,900,Bright whitish/gold orbs travelled south at tree level down Rattlesnake Creek in MIssoula, Montana +2013-11-30,42.2611111,-71.4638889,Ashland,MA,fireball,300,15-20 Bright Orange objects Seen just outside of Boston, MA (Ashland-Hopkinton Area). +2013-11-30,39.3880556,-77.8858333,Kearneysville,WV,fireball,300,5 or more orange lights. +2013-11-30,34.426944399999996,-77.5463889,Surf City,NC,sphere,300,Orange orbs over Topsail. +1975-01-13,42.0772222,-71.63,Uxbridge,MA,light,600,Was driving South on Route 146 through Uxbridge, MA (Approx. 5 miles N of the Rhode Island border.) I was alone. Observed a bright whit +1983-01-13,47.6063889,-122.3308333,Seattle,WA,sphere,600,An orange ball over Seattle left a stream of fluid along its path. Looking through the fluid the stars behind it were greatly magnified +1986-11-03,39.8027778,-105.0869444,Arvada,CO,sphere,60,3 large blue spherical objects spotted in Arvada, Colorado in late 1986 +1994-11-03,61.5997222,-149.1127778,Palmer (10 Miles North Of),AK,light,1200,No sound, traveled extremly fast. Appeared to dip down into the trees. It's incredible light made no reflection onto us or the groud. +1995-01-13,42.1605556,-84.2461111,Napoleon,MI,circle,120,what thats not a star I'm seeing. +1996-01-13,42.2791667,-123.6147222,Selma,OR,triangle,300,Sighting over Selma Oregon +1997-01-13,41.88,-88.0077778,Lombard,IL,fireball,1800,While my friend and I were out sledding by my house we saw a comet-like object and eventually nine other similar objects appeared. +1998-01-13,48.2325,-101.2958333,Minot,ND,fireball,5,I observed a large alien craft in the night sky... +1998-11-03,30.4505556,-91.1544444,Baton Rouge,LA,fireball,2,Bright Green Fireball followed by a tail of orange sparks +1998-11-03,39.7294444,-104.8313889,Aurora,CO,unknown,300,while driving to wal-mart notice a reflection of something silvery high in the sky was to high up to notice shape or size but notice it +1998-11-03,43.2488889,-70.5997222,Ogunquit,ME,sphere,1,GREEN illuminated sphere hurling through sky +1998-01-13,33.4352778,-112.3575,Goodyear,AZ,light,180,Two amber colored lights south of Estrella Mountain Ranch, W of Estrella Mtns. A cell phone call to my wife following in another car co +1998-11-03,33.4222222,-111.8219444,Mesa,AZ,fireball,600,Large yellow orange fireball gliding across the sky ejected a small fireball straight down beneath it. +1998-01-13,40.9622222,-82.8544444,New Washington,OH,unknown,30,bright flah then suddenly dropped to the ground +1998-11-03,37.5202778,-122.2747222,Belmont,CA,light,1,Saw a bright green fireball with yellow tail shooting directly downwards +1999-11-03,35.614444399999996,-88.8138889,Jackson,TN,light,30,heading eastbound I-40 about 2 miles west of Jackson and saw a red light that I thought was a meteorite, red in color. It came half way +1999-01-13,35.2333333,-106.6638889,Rio Rancho,NM,circle,3,Driving east from Rio Rancho into Albuquerque on Paseo Del Norte, I viewed a perfectly lit circle above the Sandia Mountains. The circ +1999-11-03,35.2219444,-101.8308333,Amarillo,TX,circle,1800,It was warm out at first it appiered to be a weatherballon (I thoughtdue the HIgh P.)My sister , mother and I pulled to eat in parking +1999-11-03,34.7008333,-87.5288889,Leighton (La Grange Mountain),AL,triangle,300,Three orange\red lights in triangular shape pulsating down from the stars but not moving,stayed stationary,then disappeared. +1999-01-13,38.8113889,-89.9530556,Edwardsville,IL,other,60,the object followed my cousins car for about 30 minutesthen my cosins car stopped and then it left with a bang. +1999-01-13,34.8863889,-92.3722222,Morgan,AR,light,10,the light appeared as a meteor at first then slowed and decended toward ground level. +2000-11-03,47.6063889,-122.3308333,Seattle,WA,light,3,Bright, star-like, floating object descending in western sky. +2000-01-13,30.3319444,-81.6558333,Jacksonville,FL,unknown,2,THEY WOKE ME UP, I am terrified and if the government IS involved I believe that reporting this puts my life in danger. +2000-11-03,36.2741667,-87.0641667,Ashland City,TN,triangle,120,I saw two huge triangular airships leaving thick contrails. +2000-11-03,43.3033333,-91.7855556,Decorah,IA,unknown,540,strange object seen over rural area twice in last month. viewed by many yet still unexplained. hoovering, darting, then vanishing. +2000-01-13,33.4483333,-112.0733333,Phoenix,AZ,circle,5,Silver ball, approx 500-1000 feet altitude, .5 to 1 mile N. of Freeway 101 @ 59th ave +2000-11-03,44.0583333,-121.3141667,Bend,OR,circle,300,Clear blue sky. Object was in the air hovering not moving. Round with a red steady light on the bottom of the craft. Black in color. +2000-11-03,39.1580556,-75.5247222,Dover,DE,triangle,180,11-03-2000: Large "Stealth" Style Craft Hovers Near Delaware Highway 113 (milemaker 46.5) +2000-11-03,39.1580556,-75.5247222,Dover,DE,triangle,180,"Stealth" +2000-11-03,33.6125,-117.7119444,Laguna Hills,CA,unknown,180,Unknown lights observed above Laguna Hills +2000-01-13,38.2541667,-85.7594444,Louisville,KY,fireball,120,We saw an object that glowed blue/orange/yellow, and flickered like a candle, yet it hovered within a half-mile of us, and disappeared +2000-11-03,40.5983333,-124.1561111,Fortuna,CA,oval,1800,Bright orange oval object, located over Hwy. 101, Fortuna, California +2001-11-03,36.8366667,-93.2516667,Chestnutridge,MO,circle,120,circles of flashing lights seen over ozark mountains +2001-11-03,39.6536111,-105.1905556,Morrison,CO,egg,30,EGG SHAPED CRAFT NEAR THE FOOTHILLS OF MORRISON +2001-01-13,41.85,-87.65,Chicago,IL,oval,360,I saw 3-4 gray oval-shaped objects moving in the morning sky; one blinking orangish lights. +2001-01-13,33.2480556,-100.5733333,Jayton,TX,diamond,600,Two diamond shaped objects on farm in Texas. +2001-11-03,39.5297222,-119.8127778,Reno,NV,diamond,1800,Balck Diamond UFO over my house!! +2001-11-03,36.175,-115.1363889,Las Vegas,NV,teardrop,1800,On Nov 3񫺑 me, my sister and my niece where getting of the freeway on sunset and we went towards the airport going to my other siste +2001-01-13,34.0522222,-118.2427778,Los Angeles,CA,sphere,60,White/metallic spheres circling each other above west Los Angeles +2001-11-03,47.6063889,-122.3308333,Seattle,WA,other,2,Glowing bright orange, looked as though it was gliding. +2001-11-03,38.9516667,-92.3338889,Columbia,MO,other,10,unusual speed and definition +2001-01-13,37.3488889,-108.5852778,Cortez,CO,light,300,Golden point of light traveling west to east as bright or slightly brighter than a jet liner . NO stobe effect to light . From east end +2001-11-03,44.0463889,-123.0208333,Springfield,OR,fireball,3,Going West to East I saw what was the beginning of a meteor breaking up and did not get a confirmation from my nearest airport as to a +2001-01-13,39.7294444,-104.8313889,Aurora,CO,light,1080,Four unusual lights flying over Colorado Skies +2001-01-13,39.2883333,-77.2041667,Damascus,MD,disk,120,A disc shaped craft with lights, other than a usual aircraft, was seen flying overhead during the night in damascus +2001-11-03,41.85,-87.65,Chicago,IL,other,60,rapid moving pacifier-shaped object +2001-11-03,41.0813889,-81.5191667,Akron,OH,changing,10800,Last night in my sisters back yard I video tape a large yellow/ white looking star, I have seen this star many times before, We have ma +2002-11-03,45.4944444,-122.8658333,Aloha,OR,other,15,TWO SILENT ORANGE DIMOND SHAPE UFO's STARTTLED MAN IN ALOHA OREGON +2002-01-13,42.1686111,-88.2575,Barrington Hills,IL,light,60,Unusually low, flying object, with bright lights hovering just above trees +2002-01-13,39.7391667,-104.9841667,Denver,CO,other,5,Daytime black wing-like configuration flying low and at rapid speed over Denver +2002-11-03,37.6819444,-121.7669444,Livermore,CA,unknown,180,Bright stationary object momentarily visible in late daytime sky behind drifting cirrus cloud in otherwise clear sky. +2002-11-03,34.2563889,-99.5163889,Chillicothe,TX,cylinder,240,Large white cylinder shaped object - stationary then accerated out of sight +2002-01-13,34.1083333,-117.2888889,San Bernardino,CA,sphere,45,Eastern part of the sky towards direction of brightest star in the sky.Dull orange colored orb.High altitude much higher than a +2002-01-13,40.7555556,-73.8858333,Jackson Heights,NY,sphere,45,10 spherical objects..traveling together..almost identcal... +2002-01-13,37.8144444,-82.8072222,Paintsville,KY,light,10,dont know if train/ufo was hoax, but do know there was something strange in the area that night +2003-11-03,33.7480556,-86.8086111,Morris,AL,diamond,7200,I saw what i thought was a star going super nova. +2003-11-03,47.9791667,-122.2008333,Everett,WA,circle,300,Large Bright Oarnge Ball shaped light and Dark shape above it and weird Star like thing in distance +2003-11-03,33.6741667,-94.1311111,Ashdown,AR,other,30,A bright light followed by a hazy tail, wider at the end, with a smaller bright light at the end, hovered in place then moved quickly. +2003-11-03,30.6941667,-88.0430556,Mobile,AL,triangle,60,a triangular bright white object seen out of store window in Mobile, AL with eratict motion.. +2003-11-03,34.1741667,-86.6163889,Holly Pond,AL,oval,9,On my way home from class this afternoon, I saw a very shiny object in the sky. It looked like a shiny egg lying on its side. +2003-11-03,40.8041667,-74.0125,North Bergen,NJ,other,2700,Star moving on a zig zag and cicular motion. +2003-11-03,25.7738889,-80.1938889,Miami,FL,other,1800,What thought to be stars that suddenly moved. +2003-11-03,35.2269444,-80.8433333,Charlotte,NC,triangle,30,Triangle shaped object with 3 round lights +2003-01-13,41.85,-87.65,Chicago,IL,unknown,6300,strange vertical lights over chicago +2003-11-03,37.2872222,-121.9488889,Campbell,CA,light,15,Pinpoint of light moving far too fast to be a satellite...Also not a meteor because there was no trail...... +2003-11-03,28.3505556,-80.7255556,Rockledge,FL,unknown,600,Lights like a plane, not exactly the same, and disappearing after trees blocked my view. +2004-11-03,41.3683333,-82.1077778,Elyria,OH,unknown,1200,Very bright lighted, small hovering object seen southeast of Ohio ((NUFORC Note: Venus. PD)) +2004-01-13,39.9258333,-75.12,Camden,NJ,egg,60,I woke up to go to the toilet as I was sitting on the throne I looked out the bathroom window,I saw these green egg shaped thing +2004-01-13,39.8494444,-75.3561111,West Chester,PA,triangle,15,2 Ufo's In Pennsylvania +2004-01-13,33.6888889,-78.8869444,Myrtle Beach,SC,light,10,UFO in Myrtle Beach, SC. +2004-11-03,34.565,-87.2266667,Chalybeate Springs,AL,unknown,300,going down a dark road between chalybeate springs and moluton me and my were goning down the road when i saw about 6 lights which at fi +2004-01-13,29.7630556,-95.3630556,Houston,TX,oval,600,5 Ships hovering near my home, attempting to communicate. 4 Silver and 1 White. +2004-01-13,33.6888889,-78.8869444,Myrtle Beach,SC,unknown,2,4 orange lights in a row with another one across from them, lights went out one by one. +2004-11-03,38.0466667,-97.3447222,Newton,KS,light,300,7 bright yellow stationary lights for four to five minutes that extinguished one by one observed over farmland. +2004-11-03,43.0480556,-76.1477778,Syracuse,NY,light,60,unidentified light source seen moving in rapid "zig-zag" motions across clear night sky +2004-11-03,43.0480556,-76.1477778,Syracuse,NY,light,180,light zig zags irradicaly in various directions at high rate of spead, (high altitude) +2004-11-03,40.805,-81.9352778,Wooster,OH,diamond,300,Large, diamond-shaped object in Wayne County Ohio +2004-11-03,47.9791667,-122.2008333,Everett,WA,chevron,5,A large boomerang object zig-zagging West to East, no lights, no sound lighter than the night sky. +2004-11-03,47.0380556,-122.8994444,Olympia,WA,unknown,30,Extremely loud sound like classic ཮s movie flying saucer, flying low over house with bright flashing lights. +2004-01-13,33.5091667,-111.8983333,Scottsdale,AZ,light,5,Erractic pinpoint of light observed in the night skies of greater Phoenix. +2004-11-03,43.0480556,-76.1477778,Syracuse,NY,formation,5,Two points of light in formation glide across the sky. +2004-11-03,40.8625,-76.7947222,Sunbury,PA,oval,1,Fastwalker over lunar disk Nov.3rd 2004 +2004-11-03,36.3486111,-82.2108333,Elizabethton,TN,light,60,large bright white light +2005-01-13,47.6419444,-122.0791667,Sammamish,WA,oval,300,The ufo was not quite circle, it had a bunch a blinking lights, and was moving slightly jerky in a circular motion. +2005-11-03,38.6786111,-121.7722222,Woodland,CA,unknown,10,Something lit up the sky in the early morning hour @ 4:00 AM +2005-01-13,43.0388889,-87.9063889,Milwaukee,WI,formation,20,There were wierd lights no sound and no explanation. +2005-01-13,43.0388889,-87.9063889,Milwaukee,WI,formation,20,a blue light that hovered for a few seconds and quickly disappeared +2005-01-13,43.0388889,-87.9063889,Milwaukee,WI,formation,15,3 crafts in a cluster with blinking lights on all 3. +2005-01-13,32.7833333,-96.8,Dallas,TX,other,180,Not a saucer. Many lights. Changed direction almost instantly. Very low and SILENT. +2005-11-03,35.4661111,-82.5166667,Arden,NC,fireball,10,Fireball seen after 10 shooting stars +2005-01-13,40.8,-96.6666667,Lincoln,NE,formation,600,moving constillation, plus +2005-11-03,34.1161111,-118.1494444,South Pasadena,CA,fireball,300,FIreball shaped object overhead, seen, then heard, then GONE without a trace. ((NUFORC Note: Possible a/c with contrail. PD)) +2005-11-03,37.3861111,-122.0827778,Mountain View,CA,other,90,Huge irregular craft slowly moving from west to east over the San Francisco Bay Area. ((NUFORC Note: Student report. PD)) +2005-11-03,38.7072222,-121.28,Citrus Heights,CA,sphere,60,Stationary sphere-with-a-flat-bottom with white lights turns on edge and zooms away. +2005-11-03,39.6402778,-106.3736111,Vail,CO,disk,6,MUFON COLORADO REPORT: Glowing disc seen below clouds. +2005-11-03,41.85,-87.65,Chicago,IL,fireball,3,A large, green ball of fire fell out of the sky over Chicago, viewed from just North of the city +2005-01-13,44.5236111,-89.5744444,Stevens Point,WI,light,120,Two nocturnal lights almost intersect - one becomes ten times brighter. +2005-11-03,26.1416667,-81.795,Naples,FL,other,7,A HUGE boomerang shaped object , silent, no lights, traveling EXTREMELY fast over the Naples Florida skies +2005-11-03,37.6833333,-87.9166667,Morganfield,KY,unknown,300,vertically blinking lights , some reddish in color and some bluish white in color moving at a steady SW direction. +2005-11-03,30.3494444,-97.37,Elgin,TX,light,600,Bright light in south-west sky from south Elgin. ((NUFORC Note: Possible aircraft w/ landing light, or a star? PD)) +2005-01-13,44.8813889,-124.0330556,Gleneden Beach,OR,flash,6,a bright orange light/flash intermittent at 11/2 second intervals, same level in sky 5 flashes in all +2005-11-03,42.2172222,-73.865,Catskill,NY,triangle,30,Mom and daughter see traiangular craft once agian over catskill new york. +2005-11-03,44.2194444,-89.8808333,New Rome,WI,fireball,120,orange orbs over Lake Petenwell with Jets +2005-01-13,64.8377778,-147.7163889,Fairbanks,AK,other,2700,Girded Structured UFO with many lights spends 45 minutes hovering over Fairbanks, Alaska on January 13, 2005 +2005-11-03,27.5155556,-97.8558333,Kingsville,TX,oval,15,we saw 1 ufo it had lights on it. it was going pretty fast and it looked like it was comeing down so we jumped off the truck then it wa +2005-11-03,37.4136111,-79.1425,Lynchburg,VA,other,20,V-shaped lights, very faint and moving amazingly fast....this was no man made aircraft!!! +2005-11-03,36.1988889,-115.1166667,North Las Vegas,NV,light,300,I was traveling south on I-15 at Mile Marker 66, just watching the road and looking up into the sky. I could see the Star or planet (i +2005-01-13,64.8377778,-147.7163889,Fairbanks,AK,other,2700,My UFO Sighting: CE II +2005-11-03,41.0036111,-80.3472222,New Castle,PA,fireball,5,Orange sphere witnessed streaking over New Castle Pa +2005-01-13,47.2033333,-122.2391667,Sumner,WA,other,120,Tiara shaped cluster of lights and a single light departing from it toward the ground. +2005-01-13,41.8088889,-88.0111111,Downers Grove,IL,light,10,Five red lights pass in formation over DuPage County IL, from North to South , on Jan 13 at 9:20 pm. +2005-11-03,40.1672222,-105.1013889,Longmont,CO,circle,2700,Three green spheres flew above us for nearly 45 minutes in Longmont, CO. ((NUFORC Note: Possible advertising lights?? PD)) +2005-01-13,41.9186111,-70.5666667,Manomet,MA,oval,120,Peculiar sound and random movement. +2005-01-13,33.1580556,-117.3497222,Carlsbad,CA,light,2700,two hazy lights circling in the sky, joining, and disappearing. +2005-11-03,39.7286111,-121.8363889,Chico,CA,triangle,600,Saw the Silent Balck Giant Triangle Flying Low..With so many sightings Its not a wonder why Uncle sam does not wanna tell us about the +2005-11-03,37.9780556,-122.03,Concord,CA,flash,2,Blinding flash in the sky lasting a second or two. +2006-01-13,40.7297222,-73.2108333,West Islip,NY,unknown,10,No sighting. Just an unexplainable swoosh of air as if a plane was going to crash. But then NOTHING! +2006-01-13,42.7647222,-71.4402778,Hudson,NH,unknown,600,several blinking lights, like fireflies in the southern sky at 4am, behind a cloud for several minutes. +2006-01-13,34.8416667,-118.8638889,Lebec,CA,unknown,3600,small streaks of light (or cloud) shooting out of huge cloud formation and returning in the cloud. +2006-11-03,41.7847222,-73.9336111,Hyde Park,NY,triangle,240,Quiet Flat Black triangle shaped aircraft +2006-11-03,38.8316667,-78.3166667,Bentonville,VA,fireball,180,Three orange-colored trails falling out of the sky. +2006-01-13,35.4602778,-94.7872222,Sallisaw,OK,fireball,1200,Huge Fireballs going east in the sky by Sallisaw Oklahoma! +2006-11-03,33.7205556,-116.2147222,Indio,CA,cigar,20,Multi-colored ball +2006-11-03,35.3413889,-89.8972222,Millington,TN,other,3600,Mysterious hovering craft over Millington, Tn. +2006-01-13,35.4602778,-94.7872222,Sallisaw,OK,fireball,600,orange fireballs with a streak moving very fast. +2006-11-03,40.3219444,-75.3283333,Telford,PA,circle,180,Two objects, look like stars,moving slowly side by side to the south . look to be as high as the stars. +2006-11-03,35.7138889,-81.4222222,Hildebran,NC,oval,600,4 very large disk shaped object moving slowly in coordinated formations one with streaming "sparks" emitted from the bottom. 11/3/06 +2006-01-13,38.7072222,-121.28,Citrus Heights,CA,triangle,480,Three lights in atriangle shape flew across the sky below the cluds heading northeast over Citrus Heights. +2006-11-03,29.2855556,-81.0561111,Ormond Beach,FL,circle,2,Large fizzy ball appears moving upwards and fades out +2007-11-03,33.4472222,-84.1469444,Mcdonough,GA,oval,1800,((HOAX??)) The ufo was very disturbing because i have never seen one before. +2007-01-13,29.4238889,-98.4933333,San Antonio,TX,triangle,600,Driving home my wife and I were driving west of FM471 in San Antonio Texas toward Medina Lake. We saw a craft that was very large with +2007-01-13,44.2133333,-71.9113889,Lisbon,NH,unknown,300,Beam of light appeared to be coming down out of the low clouds/mist, like a search light. No sounds. +2007-11-03,27.7519444,-98.0694444,Alice,TX,sphere,600,((HOAX??)) 2 white, shiny spheres. +2007-01-13,47.6063889,-122.3308333,Seattle,WA,light,2700,Brilliant chartreuse green flashing beam, within a ring of bright red lights in Puget Sound. ((NUFORC Note: Sirius?? PD)) +2007-11-03,37.775,-122.4183333,San Francisco,CA,other,1200,Bright Boomerang Object in the Sky in San Francisco on November 3th 500 Lights On Object0: Yes +2007-11-03,37.8066667,-100.3477778,Cimarron,KS,other,60,Wingless Aircraft Disappearing in Mid-Air at Low Altitude in Western Kansas. +2007-01-13,29.0488889,-82.4611111,Dunnellon,FL,light,120,Four spinning light beams moving in a circle traveling southeast. ((NUFORC Note: Advertising light? PD)) +2007-01-13,34.1808333,-118.3080556,Burbank,CA,cylinder,600,It appeared to be a white cylindrical object near Hollywood/Burbank airport. +2007-01-13,34.0522222,-118.2427778,Los Angeles,CA,circle,300,2 possible UFO's seen by Griffith Park Observatory 1/13/07 +2007-11-03,41.4119444,-83.8644444,Grand Rapids,OH,rectangle,10,Small white and blue rectangular object scares dog and boy. +2007-11-03,40.7141667,-74.0063889,New York City (Manhattan),NY,cylinder,480,High Altitude object that reflected the sun, yet emmitted a bright white changeing to red spot light +2007-01-13,32.2216667,-110.9258333,Tucson,AZ,unknown,30,ROW OF 4 MAGENTA LIGHTS LOW IN THE DARK SKY THAT SUDDENLY VANISHED +2007-11-03,45.5236111,-122.675,Portland,OR,unknown,240,Craft with tan "X" on the bottom. Seen on 5 different occasions in 5 months. +2007-11-03,35.3819444,-78.5488889,Benson,NC,triangle,1,I saw a very brief sighting, of what I would describe as a stealth craft. It was dark gray colored, and the best that I could tell, was +2007-11-03,33.8752778,-117.5655556,Corona,CA,other,120,bright ring shaped ufo over corona california +2007-01-13,37.9577778,-121.2897222,Stockton,CA,triangle,10,"V" shaped object with white or blue lights on the rear of the wings, traveling across the night sky +2007-11-03,26.6155556,-80.0572222,Lake Worth,FL,triangle,30,Triangle with lighted sides, no sound. Lake Worth, FL 11/03/07 08:40pm +2007-01-13,44.0605556,-70.3941667,Poland,ME,oval,180,orange light over mechanic falls maine,hovers and disappears +2007-01-13,47.1772222,-122.1852778,Bonney Lake,WA,light,1,White darting light in the sky over field in Bonney Lake, WA near old Sumner-Buckley highway. +2008-11-03,35.0844444,-106.6505556,Albuquerque,NM,rectangle,1200,Super fast neon rectangle being chased by Air Force jets. +2008-11-03,39.3555556,-84.2486111,Kings Mills,OH,light,3600,Red, blue, and white lights flashing in the sky and didn't move. ((NUFORC Note: Sirius. PD)) +2008-01-13,36.175,-115.1363889,Las Vegas,NV,circle,1,real UFO picture. {crystal clear} +2008-11-03,35.3627778,-84.2941667,Tellico Plains,TN,triangle,120,The Object/Object's flying very slow on it,s passing of into the distance dogs barking ,horses nahing.Heading North. +2008-01-13,37.775,-122.4183333,San Francisco,CA,light,2,I saw two "stars" shoot across the sky one after another - one vertically, the other at a 30 degree angle. +2008-01-13,40.9027778,-74.7094444,Stanhope,NJ,light,300,Two Flying Lights +2008-01-13,42.8744444,-71.1816667,Hampstead,NH,light,120,Bright Light In Sky Over Rockingham County, NH +2008-01-13,32.7458333,-96.9975,Grand Prairie,TX,rectangle,60,black box high in the NE sky 11:50 DFW area +2008-11-03,39.7555556,-105.2205556,Golden,CO,flash,900,Flashing metallic objects not exhibiting typical flight charactaristics of any known aircraft I or anyone else there has ever seen. +2008-01-13,42.675,-71.4833333,Dunstable,MA,light,60,Bright light hovers over trees then begins strobing and appearsr to intersect with plane while flying away. +2008-11-03,38.2541667,-85.7594444,Louisville,KY,light,1200,Bright object pulsing and dissapearing stationary in the sky +2008-11-03,32.2216667,-110.9258333,Tucson,AZ,triangle,40,Dark, triangular-shaped object traveling slowly to the south-east. +2008-11-03,36.0625,-94.1572222,Fayetteville,AR,rectangle,3,Satellite or Space Debris burns up over Fayetteville, AR, Nov. 3, 2008, 8:05 pm +2008-11-03,39.0769444,-84.1769444,Batavia,OH,light,240,Pulsing light in South-West Ohio (Clermont County) +2008-01-13,35.0886111,-92.4419444,Conway,AR,unknown,600,I-40 westbound between Minefee and Conway, AR. Followed tree top blinking lights for 5 to 10 minutes. +2008-11-03,33.9577778,-86.5622222,Fairview,AL,sphere,5,Giant green light appears ,drops and disappears. +2008-01-14,33.7669444,-118.1883333,Long Beach,CA,other,120,strange object's shapped somewhat like the number 8 sideways +2009-11-03,41.8775,-88.0669444,Glen Ellyn,IL,egg,3600,Bright sparkling egg shaped ufo in Glen ellyn, IL exploding with colors +2009-11-03,37.2152778,-93.2980556,Springfield,MO,disk,2,Green Glowing Saucer Shaped +2009-01-13,25.6788889,-80.3175,Kendall,FL,light,60,Kendall (Miami) Fl, Unexplained sighting!! +2009-01-13,25.6788889,-80.3175,Kendall,FL,light,45,About 25 Minutes after spotting and reporting the first sighting we heard a loud noise once again and when we went outside we witnessed +2009-01-13,41.1369444,-77.4472222,Lock Haven,PA,sphere,120,Large, orange sphere spotted 2 miles north of Lock Haven, PA +2009-01-13,40.7141667,-74.0063889,New York City (Manhattan),NY,other,900,Helicopter-like ship light belt +2009-01-13,33.6888889,-78.8869444,Myrtle Beach,SC,unknown,600,Bright Lights over the Atlantic Ocean +2009-01-13,37.775,-122.4183333,San Francisco,CA,sphere,180,I saw a metallic sphere very bright almost like a star, but it did not pulsate and it was daytime very clear skies.It appeared to be gl +2009-11-03,39.0991667,-76.8486111,Laurel,MD,sphere,20,Object Near Laurel MD +2009-01-13,29.9838889,-90.1527778,Metairie,LA,oval,5,Very large, shiny object hovering near the Lake Pontchartrain Causeway near New Orleans +2009-01-13,41.6627778,-88.5369444,Plano,IL,changing,30,stationary small bright chrome light appeared then increased intensity then dissapeeared. +2009-01-13,34.0291667,-98.9186111,Electra,TX,oval,7,Silver oval craft seen near Electra, Texas +2009-01-13,38.2541667,-85.7594444,Louisville,KY,egg,45,Rapid traveling balloon-shaped object travels up wind, and flies off after a 30-45 second show. +2009-11-03,35.4675,-97.5161111,Oklahoma City,OK,other,420,Possible booster streams in a state with launch sites I've been able to find. +2009-11-03,26.6583333,-80.2416667,Wellington,FL,disk,300,three circuler lights in trianguler form +2009-01-13,40.7536111,-86.0688889,Peru,IN,light,2820,This has cured me of my scepticisim +2009-01-13,33.5225,-117.7066667,Laguna Niguel,CA,circle,420,craft can do things beyond modern technology +2009-01-13,39.8308333,-77.2313889,Gettysburg,PA,triangle,60,My son & I were driving from Gettysburg, back home to Littlestown, PA. We saw 8 lights (very bright) in the sky. I asked him what that +2009-01-13,37.9063889,-122.0638889,Walnut Creek,CA,diamond,600,Diamond shaped object, very low in the sky. Went inside for half an hour, returned it was gone. +2009-01-13,31.1497222,-81.4916667,Brunswick,GA,circle,180,Very beautiful light on ufo that was giant +2009-01-13,33.825,-80.1094444,Gable,SC,light,25,1-13-09,gable sc 9;00pm-amber colored light shaped like window pane seem hooverin above phone tower +2009-01-13,33.7669444,-118.1883333,Long Beach,CA,triangle,60,Three orange circular objects flying in a triangular formation. +2009-01-13,45.5236111,-122.675,Portland,OR,egg,300,Three egg like ships on my street +2009-11-03,40.2141667,-77.0088889,Mechanicsburg,PA,other,120,X shaped object. +2010-01-13,40.3375,-79.8094444,White Oak,PA,triangle,30,Blinking lights on a rectanglar shaped object spotted in the sky in White Oak, PA. +2010-01-13,33.31,-89.1727778,Ackerman,MS,light,7200,A bright light hovering in the southwestern sky. ((NUFORC Note: Possible sighting of Sirius. PD)) +2010-11-03,45.5236111,-122.675,Portland,OR,sphere,10,White light traveling silently across the night sky in 8-10 secs, leaving no trail +2010-11-03,47.6105556,-122.1994444,Bellevue,WA,other,300,Students capture UFO shooting light beam on phone camera +2010-11-03,47.2044444,-121.9902778,Enumclaw,WA,rectangle,45,Mt. Rainier appearing & disappearing silverish object/ jet activity +2010-11-03,33.9616667,-118.3522222,Inglewood,CA,rectangle,240,Tumbling metallic object in clear sky photographed near Los Angeles International Airport. ((NUFORC Note: Balloons?? PD)) +2010-01-13,30.3569444,-87.1638889,Gulf Breeze,FL,unknown,240,Bright orange object, rapid speed and direction changes .. +2010-01-13,39.7391667,-104.9841667,Denver,CO,disk,10,large object hovering completely still, three lights in the center with a glowing rounded bottom. +2010-11-03,41.5291667,-120.1722222,Cedarville,CA,fireball,2700,Orange Yellow Glowing Ovals over 30 seperate sightings within one 1 hour +2010-01-13,42.4583333,-84.0844444,Gregory,MI,light,300,four lights in the sky. +2010-11-03,33.6305556,-112.3325,Surprise,AZ,light,120,Five lights seen at Loop 303 and Grand Avenue Interchange. +2010-11-03,34.4838889,-114.3216667,Lake Havasu City,AZ,light,60,Large amber lights, split in two, and disappeared +2010-11-03,44.6366667,-123.1047222,Albany,OR,triangle,10,triangle of lights moving across sky. +2010-11-03,45.2630556,-122.6913889,Canby,OR,flash,1,flash of light +2010-11-03,42.6525,-73.7566667,Albany,NY,light,10800,((HOAX)) I was hanging out with my friends. Suddenly, we saw something don't seems to be the stars. +2010-11-03,33.3527778,-111.7883333,Gilbert,AZ,unknown,120,object moved in circles and had green and red lights that created star burst or arrow looking signs moving slowly +2010-01-13,37.6391667,-120.9958333,Modesto,CA,other,60,A diamond shapped object dimly lit and moving silent through the night sky +2011-11-03,35.2269444,-80.8433333,Charlotte,NC,formation,60,Two orange orbs flying NW to SE over Douglas Int. Airport. +2011-01-13,42.8744444,-71.1816667,Hampstead,NH,circle,180,Round shiny extremely bright almost silver-looking object over day skies +2011-11-03,27.3361111,-82.5308333,Sarasota,FL,light,1200,Ten-fifteen lights, appearing and reappearing in a line. +2011-11-03,42.9027778,-73.6877778,Mechanicville,NY,other,300,3 fires hovering over the hudson river in a triangle formation. +2011-11-03,26.9616667,-82.3527778,Englewood,FL,circle,20,6 amber circles traveling horizontally, following each other in a straight line, then disappeared +2011-11-03,45.4983333,-122.4302778,Gresham,OR,light,300,Bright, high altitude white light makes a parabolic arc over Portland and Gresham Oregon +2011-11-03,44.9530556,-92.2911111,Woodville,WI,unknown,1209600,Red blinking objects similar to airplanes or stars that does not move newly appeared in sky two weeks ago. +2011-11-03,27.0994444,-82.4544444,Venice,FL,light,300,Orange-red lights out over Gulf near Venice, FL +2011-11-03,27.0994444,-82.4544444,Venice,FL,light,300,Fire Red color Light +2011-11-03,26.9616667,-82.3527778,Englewood,FL,light,300,Duplicating lights in Southwestern Sky above Rotonda West / Cape Haze Florida +2011-01-13,38.8069444,-78.7925,Basye,VA,diamond,120,1 craft shaped like a blackhawk plane, but the tails of the plane were much longer and were at 90 degree angle. had 3 lights long body +2011-11-03,26.9616667,-82.3527778,Englewood,FL,light,360,Bright orange lights in the sky over Englewood Florida +2011-11-03,33.4041667,-79.9219444,Saint Stephen,SC,flash,120,Flashes in the sky, brighter than stars, then no more, and they're not lightning bugs. +2011-11-03,29.7855556,-95.8241667,Katy,TX,triangle,30,Very large thin gliding grey triangular object with no lights and no sound. +2011-01-13,33.2613889,-97.2377778,Krum,TX,disk,600,2 orbs hovering just west of Krum Texas January 13, 2011. Observed at 10:45 PM for about 10 minutes +2011-11-04,35.3455556,-101.38,Panhandle,TX,unknown,1800,30 minutes. Pulsing lights, unknown shape. Texas +2012-11-03,35.0844444,-106.6505556,Albuquerque,NM,disk,10,Green orb like ufo new mexico albuquerque 11/3/12 +2012-11-03,35.0844444,-106.6505556,Albuquerque,NM,sphere,15,Green Orb +2012-11-03,39.6827778,-77.0444444,Silver Run (Westminster),MD,sphere,3600,2 spheres one red the other white silently moving around almost playful like then joined and shot off. +2012-11-03,41.3947222,-73.4544444,Danbury,CT,fireball,3,Fireball flew into woods +2012-11-03,35.9605556,-83.9208333,Knoxville,TN,circle,10,Circular oject floating in place for a few seconds then darting off into the distance +2012-11-03,34.1808333,-118.3080556,Burbank,CA,light,3600,A flashing red light to the right of the moon. motionless for 30 minutes then began to move west. Stopped motionless for 20 minutes the +2012-01-13,33.4483333,-112.0733333,Phoenix,AZ,changing,120,red ufo +2012-11-03,41.2586111,-95.9375,Omaha,NE,light,240,Two mysterious red lights hoovering across the providence. lasted about 4 minutes. +2012-11-03,27.8002778,-97.3961111,Corpus Christi,TX,cigar,90,Saw a shiny white bullet/cigar shape odject in the sky at a steady speed for a minute and half. +2012-01-13,40.8022222,-124.1625,Eureka,CA,changing,300,Uunusual orange bright light over eureka, california +2012-01-13,28.5380556,-81.3794444,Orlando,FL,sphere,1,Sphere appears on photo in Orlando, FL. +2012-11-03,33.2147222,-97.1327778,Denton,TX,disk,7200,They are bright silver and disk shape. They are too fast. It seems that they play around there. Its vertical and horizontal movement is +2012-01-13,33.8702778,-117.9244444,Fullerton,CA,egg,3,Vertically moving object that was glowing and accelerating quickly +2012-11-03,33.8675,-117.9972222,Buena Park,CA,fireball,300,Red lights seen over buena park apparently marked as sign of "apocalypse +2012-01-13,34.69,-77.98,Willard,NC,oval,180,Glowing red and orange ball that was above our heads and finally took off faster than any thing I have ever seen with no sound. +2012-11-03,45.7055556,-121.5202778,Hood River,OR,other,10,Fast bright white streak +2012-11-03,47.4158333,-120.2919444,East Wenatchee,WA,cone,5,I along with my aunt have witnessed a UFO it seemd like a bullet flying across the sky and it was decreasing rapidly as if possibly cra +2012-01-13,44.8486111,-74.2952778,Malone,NY,unknown,30,Strange glowing lights in triangle formation +2012-11-03,45.8208333,-120.8205556,Goldendale,WA,fireball,25,A bright white fireball with long tail was seen heading toward the outlying areas of Goldendale, WA. +2012-11-03,42.7847222,-85.1383333,Lake Odessa,MI,changing,900,At 7PM my husband was driving through town when he noticed a big flame shaped object (apparent size of an asprine) coming from the NW ( +2012-11-03,36.8688889,-94.3677778,Neosho,MO,rectangle,25,Red cigar rectangular light in Neosho, mo. +2012-01-13,30.2669444,-97.7427778,Austin,TX,diamond,480,Fleet of Flying Objects/Crafts - Austin, Texas - 01/13/2012 +2012-11-03,28.7027778,-81.3386111,Longwood,FL,sphere,180,UFO spotted hovering over Winn Dixie parking lot in longwood FL hovering very low. +2012-11-03,38.9886111,-78.3588889,Strasburg,VA,flash,600,My fiancee and myself witnessed several flashes which lit up the northern sky. Some flashes varied in color; mostly red or blue. Weathe +2012-11-03,40.8022222,-124.1625,Eureka,CA,rectangle,240,November 3, 2012 Time: approx. 7:50pm Eureka, CA UFO spotted travelling from East to West over Eureka. Large orange flickering object +2012-11-03,34.1486111,-118.3955556,Studio City,CA,disk,10,Bright green lights hover over Los Angeles then back down to earth. +2012-11-03,38.4088889,-121.3705556,Elk Grove,CA,sphere,3600,Orange Orbs +2012-11-03,42.5847222,-87.8211111,Kenosha,WI,light,10,Looking into the sky and seen a white light that flashed three times but moving very very fast and disapeared. no sound heard +2012-11-03,32.7938889,-79.8627778,Mount Pleasant,SC,circle,1800,SC coastal residents near Charleston witness single file orange lights at 8 PM moving slowly due North, eventually fading from sight +2012-11-03,41.2586111,-95.9375,Omaha,NE,other,300,Two mysterious red lights floating across the sky, it lasted about 4 minutes and suddenly dissapeared. +2012-11-03,30.7436111,-98.0552778,Bertram,TX,light,180,Round orange glowing light passed over Bertram,Texas. +2012-11-03,39.0275,-78.2808333,Middletown,VA,unknown,60,Simultaneous flashes of lights +2012-11-03,39.485,-80.1427778,Fairmont,WV,sphere,120,Illuminated spear viewed over Fairmont WV on 11-03-12 at 8:28 PM. +2012-01-13,29.7630556,-95.3630556,Houston,TX,sphere,300,Orange sphere seen for about 4 minutes +2012-11-03,34.1808333,-118.3080556,Burbank,CA,light,3600,Small motionless red flashing light. Then it moves very slowly to another position. There is no noise. +2012-11-03,35.91,-79.0755556,Carrboro,NC,triangle,3,Black Triangle jets silently over Carrboro NC +2012-11-03,31.8972222,-98.6033333,Comanche,TX,unknown,10800,Stationary craft with normal aircraft lighting, to far in the distance to make out a shape! +2012-11-03,45.3733333,-84.9552778,Petoskey,MI,fireball,120,Glowing orange fire ball floats across sky silently before fading away into the dark cloudy sky. +2012-11-03,41.9219444,-91.4166667,Mount Vernon,IA,triangle,300,My husband and I witnessed a large, very bright, amber colored light appear suddenly in the eastern sky. After hovering for a few momen +2012-11-03,42.9633333,-85.6680556,Grand Rapids,MI,formation,900,Orange lights in staggered formation over grand rapids michigan. +2012-11-03,38.7891667,-90.3225,Florissant,MO,sphere,120,AMBER LIGHTS SPOTTED IN FLORISSANT, MO +2012-11-03,26.6833333,-80.28,Loxahatchee,FL,other,4,UFO looking like it's on fire leaves with a sonic boom. +2012-01-13,37.9975,-121.7113889,Oakley,CA,fireball,300,Three large, glowing, orange lights flying in the night sky in Oakley California +2012-11-03,40.2455556,-74.8463889,Yardley,PA,light,10,Baseball sized light dropping from sky in front of me and shooting back up 11:11pm. +2012-01-13,38.545,-75.0894444,Ocean View,DE,formation,15,Formation of 4 aircrafts with glowing underbelly flying low and towards Atlantic Ocean +2012-11-03,39.8630556,-84.3605556,Clayton,OH,circle,120,Orange lights. I was seeing them through the tree line driving down my street at I was easing to the store. I drive faster to reach an +2012-11-03,41.6005556,-93.6088889,Des Moines,IA,fireball,600,3 Bright Red Lights in a Triangle Formation +2012-11-03,41.5619444,-73.6030556,Pawling,NY,changing,1800,Red, green multicolored object appeared in the sky moving freely and emitting beams. ((NUFORC Note: Possible twinkling star?? PD)) +2013-01-13,42.6055556,-83.15,Troy,MI,circle,120,Orange flame like orbs in the sky, turned triangular in shape and then disappeared. +2013-11-03,41.1338889,-81.4847222,Cuyahoga Falls,OH,sphere,3600,Strange lights in the sky, orb figure with interchanging from red, blue, green, yellow. white, & purple. ((Sirius??)) +2013-11-03,35.7883333,-83.5544444,Pigeon Forge,TN,light,480,3 Red Orange Objects with strange movements +2013-11-03,28.5380556,-81.3794444,Orlando,FL,cylinder,180,Orange glowing sphere in Orlando. +2013-11-03,47.1772222,-122.1852778,Bonney Lake,WA,light,5,Bright ball of light with a large flash that lit up the sky +2013-11-03,29.7944444,-98.7316667,Boerne,TX,circle,600,4 White lights above the clouds going in a circle. Disappeared in an instant one by one. +2013-11-03,36.0533333,-87.3125,Burns,TN,circle,600,2 orange balls of light. +2013-11-03,47.0344444,-122.8219444,Lacey,WA,formation,480,Bright star looks like snake. +2013-11-03,41.1411111,-73.2641667,Fairfield,CT,triangle,3600,As I was driving South from Milford to Fairfield on I95 at 5:00 PM I saw 2 triangular aircraft near each other VERY BRIGHTLY LIT (possi +2013-11-03,43.5883333,-72.6563889,Bridgewater Corners,VT,light,180,Single large bright orb hovering over Bridgewater corners vt. ((NUFORC Note: Venus? PD)) +2013-01-13,37.3822222,-89.6661111,Jackson,MO,other,180,Star replacement moved across sky at jet speed and twice positioned itself where it stay for remaining night. +2013-11-03,43.114444399999996,-71.1002778,Nottingham,NH,light,3600,Bright light being followed by Airplanes or Jets. +2013-11-03,35.5361111,-100.9594444,Pampa,TX,fireball,30,Whitish/green fireball was observed flying acrossing the sky +2013-11-03,27.9472222,-82.4586111,Tampa,FL,fireball,120,Orange and red pulsating ball traverses a small portion of the sky and vanishes +2013-11-03,42.9133333,-85.7052778,Wyoming,MI,light,300,Multiple (at least 15) small star looking lights, red and silver colors, flying in slow motion towards the northeast +2013-11-03,41.4047222,-81.7230556,Parma,OH,fireball,120,Orange ball dripping smaller balls and disappearing/reappearing in 2 places at once. +2013-11-03,44.2238889,-68.6780556,Deer Isle,ME,rectangle,3600,Several non man made objects in the northeastern sky flashing bright green blue and red lights.... ((NUFORC Note: Stars?? PD)) +2013-11-03,34.7302778,-86.5861111,Huntsville,AL,light,120,Reddish orang light. +2013-11-03,42.3266667,-122.8744444,Medford,OR,triangle,120,Hovering triangle shape, bright white light on each corner, silent, took off very fast. +2013-11-03,43.0638889,-77.2336111,Palmyra,NY,light,14400,My self and many other witness saw 3 to 4 white lights doing strange circular formations behind the clouds, +2013-11-03,35.6666667,-84.6647222,Ten Mile,TN,circle,420,Large light appeared over Watts Bar Lake.Light got bigger and become vertical oblong.Light was stationary for 3 minutes. Then s +2013-01-13,35.5363889,-82.6930556,Candler,NC,triangle,900,Black triangle with very bright white lights moving slowly flying low over western North Carolina +2013-11-03,35.198055600000004,-111.6505556,Flagstaff,AZ,changing,1200,Shape in sky disappearing and reappearing. +2013-01-13,37.0297222,-76.3455556,Hampton,VA,triangle,300,Strange, slow-moving object over Hampton Roads Bridge Tunnel. +2013-11-03,38.4191667,-82.4452778,Huntington,WV,cross,600,Red and white "T" shaped objects with small white lights falling from the white ones and all disappearing at the same point i +2013-11-03,43.9786111,-90.5038889,Tomah,WI,triangle,20,Triangular shape craft with 5 lights, 1 at each point and 1 in-between each side on front of craft. It almost seemed slightly transpar +2013-11-03,39.6133333,-105.0161111,Littleton (Roxborough),CO,chevron,7,Glowing gold specks in an arch shape moving quickly, silently across sky. +2013-01-13,28.1486111,-80.5886111,Indian Harbour Beach,FL,fireball,180,Reddish Orange Orb like sphere seen flying in different directions and then disappearing. +2013-11-03,29.7233333,-98.9355556,Pipe Creek,TX,sphere,300,4 white orbs just north of San Antonio,TX, making a circular flight pattern, all at the same fast speeds, as if following each other. +2013-11-03,39.4436111,-77.545,Middletown,MD,circle,5,Circular shimmering object shoots outn of cloud and then turns off like a light. Very high speed. +2013-01-13,37.8044444,-122.2697222,Oakland,CA,light,300,Blinking, stationary light. +2013-11-03,41.1669444,-73.2052778,Bridgeport,CT,rectangle,5400,Cellphone footage reveils objects are actually moving around a short distance and flashing multicolors +2013-11-03,38.9180556,-78.1947222,Front Royal,VA,light,120,Three bright whight ligts flying stright up fallowing each other like rockets +2014-01-13,40.6377778,-74.4513889,Watchung (Watchung Mountain; Viewed From),NJ,light,1,Big ball of bright yellow light. +2014-01-13,42.0694444,-72.6152778,Agawam,MA,light,1200,UFO, Agawam MA 1/13/14, white, blue, orange lights, slow moving, silent, impossible aviation moves, 3:10 am. +2014-01-13,42.0547222,-72.7708333,Southwick,MA,light,1200,Bright "twinkling" light appeared to be stationary and faded significantly during ~20 minutes of observation. +2014-01-13,37.1752778,-101.3491667,Hugoton,KS,flash,3600,((HOAX??)) Way bright light that does not move at all. Not even a bit. +2014-01-13,29.4238889,-98.4933333,San Antonio,TX,fireball,3,Two fast moving fireballs spotted over Medical Drive, San Antonio. +2014-01-13,33.8313889,-118.2811111,Carson,CA,sphere,60,Silver hovering sphrere over Carson, CA. +2014-01-13,38.7041667,-77.2280556,Lorton,VA,circle,2,Bright blue large fast moving circular object. +2014-01-13,42.5,-96.4,Sioux City,IA,circle,120,4 bright orange balls of light moving silently through the sky - about the height a helicopter would fly. +2014-01-13,35.5955556,-78.7316667,Willow Springs,NC,chevron,600,3 objects in formation looking stationary with no noise. At first looked like three bright lights. Then they appeared in a chevron sh +2014-01-13,42.0597222,-93.88,Boone,IA,triangle,240,Saw in S sky over town bright light thought was air craft lights turnd to blue and red dimmed. stoped at trafic light observed c +2014-01-13,36.0725,-79.7922222,Greensboro,NC,teardrop,180,Silent, bright white falling comet like object/light. Still then veering to the left. +2014-01-13,39.2386111,-77.2797222,Clarksburg,MD,cigar,4,A ball of orange light appeared in the night sky, may be a possible meteor. +2014-01-13,38.6402778,-92.1222222,Holts Summit,MO,changing,300,Its Baaaaaack !!!! 5th year same time same place. +1973-01-14,41.4088889,-75.6627778,Scranton,PA,rectangle,10,Rectangular object moving at a very high rate of speed with no noise. +1974-11-04,35.3619444,-86.2094444,Tullahoma,TN,disk,900,Up close and personal to a bright glowing disk while fishing at night +1977-11-04,43.2136111,-77.9394444,Brockport,NY,disk,480,Saucer craft moves slowly, hovers, tips up on angle, passes over town, lands in open field. +1977-01-14,31.7586111,-106.4863889,El Paso,TX,unknown,1800,Bright light deep in space moving very fast +1990-01-14,37.3869444,-120.7225,Livingston,CA,circle,30,I could feel vibrations from this bright circular light hovering above us! +1991-01-14,42.8805556,-71.3277778,Derry,NH,disk,120,strange object hovering over tree line over old railroad bridge. +1993-01-14,40.8938889,-72.8963889,Ridge,NY,unknown,120,A very large craft with 3 lights underneath flew slowly over the trees silently from east to west. +1994-01-14,40.6111111,-111.8991667,Midvale,UT,disk,60,In Midvale, Utah in the early morning +1994-01-14,34.2855556,-118.8811111,Moorpark,CA,sphere,300,Silver Sphere in Southern California +1997-11-04,47.6063889,-122.3308333,Seattle,WA,light,2,Seen in the SE sky over chuch, bright light too big to be a star,it was complety still. then in split second disappaered going SW at sp +1998-11-04,35.0844444,-106.6505556,Albuquerque,NM,oval,300,5 u.f.o objects seen in sky.One comes close to ground where i ride a bicycle .In daytime. +1998-11-04,45.010555600000004,-93.4552778,Plymouth,MN,fireball,2,Bright green fireball with long tail seen plummetting from overhead towards the Northwest. Seemed to fall to earth, and not continue o +1998-01-14,33.4933333,-112.3572222,Litchfield Park,AZ,triangle,900,AIR FORCE FIGHTER JETS CHASED UPSIDE TRIANGLE SHAPED CRAFT OVER ARIZONA SKIES +1999-11-04,47.5302778,-122.0313889,Issaquah,WA,triangle,120,Bright elongated arrow shaped obgect moving from No. to So. at a very high rate of speed. Passed over a 747 leaving Sea-Tac A.P. +1999-01-14,27.9011111,-81.5861111,Lake Wales,FL,fireball,1800,we have been video tapping strange craft here for the last three days they are yellow fireballs they appear in the sky and dont move fo +1999-01-14,48.0402778,-122.405,Langley,WA,formation,9000,Three bright, eliptical, white lights the size of a full moon, rotating in a circle then converging once every 20 seconds, 60 degrees a +1999-01-14,47.6063889,-122.3308333,Seattle (South, 8600 Block E Marginal Way South),WA,oval,4,light moving east to west +1999-01-14,48.0152778,-122.0625,Lake Stevens,WA,fireball,2,Fireball/meteor flying below clowd cover East to West +1999-11-04,47.3811111,-122.2336111,Kent,WA,disk,180,Observed three stationary/almost stationary UFO's emitting variety of colors in clear skies +2000-11-04,32.9125,-96.6386111,Garland,TX,unknown,15,red and greenish lights seen over Dallas, Texas viewed from Garland, Texas. +2000-11-04,34.0336111,-117.0422222,Yucaipa,CA,unknown,900,Very slow, low rumbling noise with no visible lights or shape, flew in an easternly direction over Yucaipa, CA at 2:40am on 11/04/00 +2000-01-14,48.4213889,-122.3327778,Mt. Vernon,WA,disk,15,strange red lighted craft, wobbling right to left then shooting straight up +2000-01-14,29.7630556,-95.3630556,Houston,TX,disk,120,Disk shaped object observed at close proximity by two adult females and one juvenile male. +2000-11-04,41.9291667,-72.6277778,Windsor Locks,CT,light,8,On saturday 11/4/00 at 13:45 I took my children to the new england air museum in Conn. I was filming the days events with my cam corder +2000-11-04,44.4130556,-69.7294444,Sidney,ME,circle,600,The thing was light lik agiant fireball and dropped little things from it then it landed in our back yard +2000-01-14,38.2541667,-85.7594444,Louisville,KY,light,3600,Traveling southeast on Bardstown road, light appeared to the Northeast, the light had an absolute vertical shape with a glow in the upp +2000-11-04,33.5091667,-111.8983333,Scottsdale,AZ,triangle,60,The back of our home looks south over Scottsdale and Phoenix. My wife and I were watching a movie on TV when we saw 3 very bright ligh +2001-01-14,47.1302778,-119.2769444,Moses Lake,WA,diamond,60,Early morning dimond light +2001-11-04,36.1658333,-86.7844444,Nashville,TN,light,900,very large greenish/white very bright diamond shaped object beside what appeared to be a star,which was much smaller, it was daybreak +2001-11-04,38.5816667,-121.4933333,Sacramento,CA,disk,180,I am reporting this event for my wife - who on November 4th - 2001 sometime between 12:00 and 1:30 in the afternoon, claims that there +2001-11-04,33.9022222,-118.0808333,Norwalk,CA,formation,600,looked like an attack formation, government knows about them just won't say +2001-01-14,39.6333333,-105.3166667,Evergreen,CO,light,600,Object was 10x bigger than an aircraft, hovered for approximately 10 minutes before it headed west +2001-11-04,40.0991667,-83.1141667,Dublin,OH,cigar,625,Two objects seen in sky; one oval with dim lights at front and rear, second traingular with pairs of dim lights at the tips. +2001-11-04,59.72,-154.8972222,Newhalen,AK,light,7200,Bright red light fills sky. +2002-01-14,37.8144444,-82.8072222,Paintsville,KY,disk,900,Train collision. ((NUFORC Note: Subsequent investigation by Center for UFO Studies, suggests possible hoax. PD)) +2002-11-04,37.5536111,-77.4605556,Richmond,VA,unknown,120,witnessed an object not far above the highway with steady green and red, and white lights near I95 in Richmond, VA +2002-11-04,27.8961111,-81.8433333,Bartow,FL,triangle,180,Re: Silent V-shaped aircraft +2002-01-14,38.9558333,-76.9458333,Hyattsville,MD,sphere,15,while driving along a highway i looked up at a cloud formation and saw moving slowly about 200 feet above the trees a gray metallic sph +2002-01-14,45.5236111,-122.675,Portland,OR,triangle,120,Red triangles of light that straightend into column. +2002-11-04,36.8527778,-75.9783333,Virginia Beach,VA,disk,300,Glowing UFO spotted around a military airstation +2002-01-14,31.3111111,-92.445,Alexandria,LA,formation,60,Row of lights over city +2002-01-14,48.22,-122.685,Coupeville,WA,unknown,1200,strange object appearing to hover turns from bright white to red. +2002-01-14,38.3363889,-75.0852778,Ocean City,MD,light,1200,Glowing 'orbs' dive into ocean after 15 minute hover +2003-11-04,47.6063889,-122.3308333,Seattle,WA,light,6,This was a meteor sighting. It was very bright, and broke in two after a few seconds. +2003-11-04,35.1258333,-117.985,California City (East Of),CA,light,300,5 large red/orange hovering lights east of California City +2003-01-14,43.6136111,-116.2025,Boise,ID,cigar,120,Early morning sighting left me dizzy +2003-01-14,30.4508333,-84.0880556,Capitola,FL,cylinder,300,blimp-like ufo seen 15 miles east of Tallahassee +2003-11-04,40.6263889,-80.0561111,Wexford,PA,cylinder,600,What ever it was it was not from this world. +2003-11-04,47.7361111,-122.6452778,Poulsbo,WA,circle,10,Saw a Circular Floursecent Green Object Hover and Disappear near Poulsbo +2003-11-04,37.9236111,-104.9297222,Rye,CO,circle,10,Circular Orange object +2003-01-14,43.6275,-89.7708333,Wisconsin Dells,WI,light,37800,We saw 10 or more, very bright, beautifully colored round lights, darting very fast back and forth across the sky. +2003-01-14,36.0397222,-114.9811111,Henderson,NV,cylinder,900,Tubular craft and delta shaped craft both leaving glowing red debris behind after several minute sightings. +2003-01-14,44.7702778,-90.5991667,Greenwood,WI,changing,3600,5-6 orange(bright) glowing balls appear, one at a time then flicker out. +2003-11-04,37.1272222,-90.45,Greenville,MO,light,60,THE TWO LIGHTS CAME ON THEN JUST WENT OUT WITH NO SOUND OR ANY THING . +2003-01-14,45.8152778,-122.7413889,Ridgefield,WA,sphere,5,Bright green ball of light moving from one direction to another, landing in river +2003-11-04,36.2686111,-76.5361111,Belvidere,NC,other,600,My family saw strange flying object making wild jerky movements while other objects hovered above in a circle +2003-01-14,41.4527778,-82.1825,Lorain,OH,light,900,Crazy light beams in west cleveland area +2003-01-14,40.7536111,-86.0688889,Peru,IN,light,900,big luminous yellow light in sky that fades and then produces 3 more that blink and fade out +2003-11-04,36.9341667,-90.7466667,Ellsinore,MO,light,30,First saw 3 large bright lights at treetop level. The lights were horizontal and evenly spaced. As we were looking at the three light +2003-11-04,32.2686111,-107.7580556,Deming,NM,disk,15,Orange glowing disk south west of Deming NM on night of 11/04/03 +2003-11-04,36.9902778,-86.4436111,Bowling Green (Plum Springs),KY,unknown,30,Stationary object appeared a little brighter than mars when it was visible a couple months ago. Obviously something low in the atmosph +2003-11-04,40.3977778,-105.0744444,Loveland,CO,oval,60,Oval ufo speeding SE to NW +2003-01-14,38.8858333,-94.5327778,Grandview,MO,oval,300,tracking me? +2004-11-04,47.6063889,-122.3308333,Seattle,WA,light,7200,Very unusual "star" to the SE Seattle sky ((NUFORC Note: Venus?? PD)) +2004-11-04,38.801944399999996,-94.4525,Raymore,MO,unknown,900,slim green-bue beam +2004-01-14,43.0672222,-98.5316667,Pickstown,SD,unknown,10,Meteorite-like object tracking across the entire sky from east to west moving at a tremendous speed. +2004-01-14,39.0997222,-94.5783333,Kansas City,MO,cigar,240,At 08:30 on wednesday 1/14/2004 I observed a burning object streaking over the skies of K.C.,Mo. on a security camera that was pointed +2004-11-04,30.6277778,-96.3341667,College Station,TX,triangle,7200,I saw a large possibly triangular shaped craft pass over me with two bright lights behind it. +2004-01-14,42.5047222,-71.1961111,Burlington,MA,fireball,10,green descending fireball with a tail +2004-11-04,33.6411111,-117.9177778,Costa Mesa,CA,triangle,15,Triangular craft seen over Orange County at high speed +2004-01-14,35.5780556,-108.3213889,Mariano Lake,NM,oval,600,A low flying oval shaped craft with no noise whatsoever just above the treeline in our vicinity. +2004-11-04,43.2166667,-123.3405556,Roseburg,OR,fireball,60,Bright yellow ball with abrupt movement +2004-11-04,25.9869444,-80.2325,Miramar,FL,triangle,15,Lights than formed triangle shape oblect flying overhead +2004-11-04,43.5377778,-89.3,Pardeeville,WI,flash,1200,strange mathimatical lights in the sky. +2004-11-04,41.5627778,-83.6538889,Maumee,OH,cigar,60,Object had no lights till it was gone moved horizontally. +2004-11-04,40.4863889,-86.1336111,Kokomo,IN,unknown,300,bright orange glow turned into six crafts and flew across the sky +2005-11-04,41.2888889,-72.6822222,Guilford,CT,unknown,10,Fast moving bright light that instantly disappeared with a trace. +2005-11-04,38.6702778,-89.9844444,Collinsville,IL,unknown,30,I had just gotten out of my car. The night was mild for November and clear. I paused to look up at the stars above the roof of my hou +2005-11-04,41.7955556,-86.0808333,Edwardsburg,MI,fireball,2,Bright greenish-white and small fireball appearing to fall into woods. +2005-11-04,39.2086111,-81.1575,Cairo,WV,triangle,180,Bright, triangle object in clear November sky over secluded ridge +2005-11-04,41.3366667,-75.5188889,Moscow (Near),PA,sphere,15,Metallic, sphere-shaped object briefly visible from car on I-380 South +2005-01-14,40.7583333,-82.5155556,Mansfield,OH,formation,30,Four round metallic pulsing objects high and fast flying,- flying lower than a jet plane. +2005-11-04,41.9902778,-70.9755556,West Bridgewater,MA,light,300,White light circles another bottom to top +2005-01-14,40.7536111,-86.0688889,Peru (Near),IN,light,15,level points of light that dissapeared. +2005-01-14,37.9886111,-84.4777778,Lexington,KY,unknown,3600,It was brighter than a star, but slower than an airplane +2005-11-04,47.2530556,-122.4430556,Tacoma,WA,circle,2,saw light blue small circular object moving fast towards the earth at 9:03 p.m. p.t. tacoma,wa +2005-01-14,29.7027778,-98.1241667,New Braunfels,TX,oval,60,Stumble upon unidentified craft out on country road. +2005-01-14,40.9502778,-72.8430556,Wading River,NY,sphere,900,Followed object in sky while driving, saw the colored lights as I got closer.... +2005-11-04,46.5927778,-112.0352778,Helena,MT,triangle,15,Low flying triangular shaped object quickly moving across the sky +2005-11-04,36.8252778,-119.7019444,Clovis,CA,fireball,1,Bright orange fireball traveling from due east to due west. Visible for a second, is all I witnessed. +2005-11-04,36.3008333,-119.7819444,Lemoore,CA,light,2,Falling star-like object that explodes with very bright white light. +2006-11-04,39.8680556,-104.9713889,Thornton,CO,triangle,90,Triangular Shaped Craft with a bright light on each tip +2006-01-14,31.9616667,-89.87,Mendenhall,MS,diamond,180,I saw about 30 winged lights and together made a diamond shape flying low in the sky and disappeared in seconds. +2006-11-04,38.7838889,-90.4811111,St. Charles,MO,formation,120,Two Orb- Like UFOs seen near Muggee Road in St. Charles, MO +2006-01-14,46.2830556,-96.0772222,Fergus Falls,MN,oval,120,UFO sighted near Fergus Falls MN. +2006-11-04,39.8544444,-75.0394444,Magnolia,NJ,cylinder,1200,at 17:00 hours while looking at the western hemosphere just above the tree lines i saw what was clearly a bright orange cylinder shape +2006-11-04,37.2752778,-107.8794444,Durango,CO,light,120,bright white light in night sky. +2006-01-14,32.9813889,-82.8102778,Sandersville,GA,unknown,30,My husband and I were driving on Linton Rd. headed south, when he said did you see that and I replied no see what? Then he pointed sout +2006-01-14,35.4305556,-82.5013889,Fletcher,NC,triangle,300,A large triangle object w/ 3 lights and a glowing center which made no sound. Flying below the full moon. +2006-11-04,29.7944444,-98.7316667,Boerne,TX,disk,120,It had Lights on the bottom and was huge and was making a erie noise. +2006-01-14,28.5491667,-81.7730556,Clermont,FL,circle,1800,The objects were not traveling at a normal aircraft speed or motion, I have never seen circular lights on a plan. +2006-11-04,34.0702778,-117.395,Bloomington,CA,light,3,While driving home in Bloomington, we turned westbound on Jurupa from Locust Ave. I noticed a green light in the sky directly in front +2006-11-04,38.0291667,-78.4769444,Charlottesville,VA,light,420,Bright orangish-reddish light, not flashing, traveling through the sky and then disappeared completely. +2006-11-04,46.6541667,-120.5288889,Selah,WA,circle,1200,stars on parade? +2006-01-14,45.5236111,-122.675,Portland,OR,circle,3,Large fast moving White Light headed Northeast in Portland, Oregon +2007-11-04,41.85,-87.65,Chicago,IL,light,2,Two UFO's clearly in background of Spielberg's Jaws movie. +2007-11-04,44.7538889,-108.7566667,Powell,WY,triangle,10,single triangle craft with four dim light rings spaced evenly on each side +2007-11-04,45.0052778,-122.7819444,Silverton,OR,triangle,600,A brightly light object hoovered over tree farm near Silverton, Oregon tree farm at 2 am. +2007-11-04,40.9113889,-73.7827778,New Rochelle,NY,light,300,extremely bright light that moved very slowly and disappeared in the opposite direction. +2007-11-04,29.4658333,-81.2580556,Bunnell,FL,other,120,Tall, ash gray in colr,hairless, unseen face, flash of oval shpaed light in one area after going out of sight +2007-11-04,31.5941667,-83.2505556,Ocilla,GA,flash,7200,I seen a white light w/red and blue lights at times that moved in a zig-zag pattern across the sky. +2007-01-14,38.3452778,-90.9808333,St. Clair,MO,flash,3600,Strange colorful flashes of light appearing during an ice storm +2007-11-04,39.9369444,-120.9461111,Quincy,CA,light,360,Circular light appeared instantly in the South, going East for 6 minutes +2007-11-04,28.2394444,-82.3280556,Wesley Chapel,FL,oval,10,Extremely bright object, moving very fast, clear/cloud free sky. +2007-11-04,42.5277778,-92.4452778,Cedar Falls,IA,circle,5,I want to believe..... +2007-11-04,44.9430556,-123.0338889,Salem,OR,cylinder,420,Vertical cylinder w/red round objects varying in number from 2 to 4 in center mixed with intense bright lights +2007-01-14,35.8455556,-86.3902778,Murfreesboro,TN,light,10,2 ORANGE BALLS OF LIGHT APPEARED IN THE SKY 30 SECS AFTER ONE ANOTHER AND SHOT OFF AS A GREEN STREAK LIGHT +2007-11-04,47.1555556,-122.4327778,Parkland,WA,rectangle,2700,Rectangle Object hovering over parkland. +2007-01-14,35.91,-79.0755556,Carrboro,NC,circle,1800,Flying object seen making darting and odd manuevers for 30 minutes. +2007-01-14,47.5675,-122.6313889,Bremerton,WA,formation,120,3 bright and colorfull objects hovering in formation over Sinclair Inlet (Bremerton WA) +2007-01-14,42.5777778,-121.865,Chiloquin,OR,circle,600,RED, BLUE, GREEN ROTATING LIGHTS IN NIGHT SKY. ((NUFORC Note: Sirius sighting. PD)) +2007-01-14,37.9063889,-122.0638889,Walnut Creek,CA,unknown,180,Unidentifiable Craft with three lights (non-standard lights for flying human aircraft) +2007-11-04,33.5777778,-101.8547222,Lubbock,TX,teardrop,4,SINGLE OVAL-TEARDROP SHAPE RED IN COLOR. COMING DOWN AT 30 DEGREE ANGLE FROM THE SOUTHWEST. LOST SITE AFTER PASSING BEHIND TREES. OBJEC +2007-11-04,33.5980556,-117.8722222,Corona Del Mar,CA,circle,480,Circular shaped bright lighted object flying over Corona del Mar, CA +2007-11-04,33.5980556,-117.8722222,Corona Del Mar,CA,oval,480,Oval shaped disc maneuvering over Corona del Mar, CA +2007-01-14,30.4013889,-86.8636111,Navarre,FL,triangle,1,Nighttime one second observation of low level black silent triangle with lights over Gulf coast +2007-11-04,33.8702778,-117.9244444,Fullerton,CA,fireball,600,I and friends observed a slow moving object which dropped other objects before disappearing from view. +2007-01-14,27.4986111,-82.575,Bradenton,FL,light,30,Fast moving light changing directions immediately +2007-01-14,37.8044444,-122.2697222,Oakland,CA,fireball,3,I saw a fireball drop rapidly in the sky in front of me then obviously shoot away and disappear. +2007-01-14,45.6388889,-122.6602778,Vancouver,WA,unknown,7200,We all saw 6 different crafts with lights. All were moving extremely slow. ((NUFORC Note: Possible twinkling stars??? PD)) +2008-01-14,32.2205556,-98.2019444,Stephenville,TX,disk,720,((HOAX??)) I saw the ufo it was about midnight on the farm I live on it hovered around the cows. +2008-11-04,35.2827778,-120.6586111,San Luis Obispo,CA,cylinder,180,Gold cylinder light hovering over freeway and then flashes as I got closer +2008-01-14,40.6083333,-75.4905556,Allentown,PA,sphere,15,3 small Strobing craft flew over PP&L building at great speed and headed over south mountain out of eye sight +2008-01-14,39.1502778,-123.2066667,Ukiah,CA,other,300,Object traveled east to west veered north was very bright and the weirdest thing is that it seemed split into 2 objects +2008-11-04,39.9611111,-82.9988889,Columbus,OH,sphere,4,I saw a white object with a black side in the air in the morning that dissapeared. +2008-01-14,34.4358333,-119.8266667,Goleta,CA,triangle,45,Object left Earths atmosphere within 5 seconds +2008-01-14,34.0552778,-117.7513889,Pomona,CA,circle,1200,Strange object high in the sky! +2008-01-14,30.3677778,-97.9913889,Lakeway,TX,disk,120,UFO seen flying over a lake in Austin, Texas. White streak directly below it above lake. +2008-01-14,28.7027778,-81.3386111,Longwood,FL,other,600,dark fixed object in sky over Longwood, Florida +2008-01-14,42.7261111,-87.7827778,Racine,WI,light,180,Intense, stationary light in western sky, then disappears. +2008-01-14,32.7252778,-114.6236111,Yuma (East Of),AZ,fireball,1800,Bright object in sky disappears and reappears. Seems to also emit smaller objects. +2008-11-04,34.5022222,-97.9575,Duncan,OK,light,15,Brilliant red light slowly descends from high in the sky and disappears behind buildings. +2008-01-14,46.7402778,-94.1752778,Swanburg,MN,fireball,3,white fireball seen falling Jan. 14, 2008 in north central Minnesota +2008-01-14,29.4236111,-95.2438889,Alvin,TX,cigar,2,Orange flash over Alvin, Texas +2008-11-04,37.7022222,-121.9347222,Dublin,CA,oval,600,Date: Nov 4, 2008 Time: 20:30 hours (Exact Time) Visibility: Clear night, unlimited vision Location: North bound I680 from Pleasanton +2008-01-14,28.6608333,-81.3658333,Altamonte Springs,FL,disk,2400,Red, green, and white lighted object moving horizontally and vertically with great speed, all while sorrounded by 5 helicopters. +2008-01-14,34.3461111,-83.11,Canon,GA,circle,21600,On Jan. 14, 2008, in Canon, Ga, numerous objects that were round in shape with flashing red, green and white lights appeared in the sk +2008-11-04,42.1275,-87.8288889,Northbrook,IL,unknown,10,The entire left side of my car appears to be scorched but no paint was removed. +2008-11-04,32.7152778,-117.1563889,San Diego,CA,triangle,60,NO noise glided/flew circular triangle shape w/ 3 red exhausts(?) +2008-11-04,44.0838889,-93.2258333,Owatonna,MN,cylinder,240,Stationary, but growing luminous cylindar shaped craft appear then dissapear. +2009-01-14,33.9925,-83.7202778,Winder,GA,cigar,180,No noise and following each other +2009-01-14,33.1211111,-97.1830556,Argyle,TX,disk,360,Slow moving object, hovering around highway, flashing lights, no noise low altitude +2009-11-04,39.9536111,-74.1983333,Toms River,NJ,unknown,120,silent floating lights with no sound +2009-11-04,37.6625,-121.8736111,Pleasanton,CA,other,2700,Odd lights of Noiseless Hovering Object seen gliding slowly over Pleasanton towards Livermore CA +2009-11-04,44.9430556,-123.0338889,Salem,OR,triangle,120,Triangular craft hovered over Wallace Road then took off towards other side of Salem +2009-01-14,39.8494444,-75.3561111,West Chester,PA,other,300,ufo sighting 1/14/2009 around 6:35 pm just slightly south of town of West Chester, Chester County, Pennsylvania. 3 Large red/orange lig +2009-01-14,46.8675,-122.2652778,Eatonville,WA,light,4500,Light in the sky hovers for 75 minutes, changes color then disappears! +2009-01-14,45.5236111,-122.675,Portland,OR,light,1800,Bright oscillating light in the SW sky. hovered at approximately 10k AGL, then left +2009-01-14,40.6422222,-116.9333333,Battle Mountain (South Of; On Hwy. 95),NV,oval,1800,TWO LIGHTS MOVING AT THE SPEED OF LIGHT FOLLOWED BY OVAL CRAFTS FLYING IN MID-SPACE BETWEEN A RURAL HWY AND A MOUNTAIN RANGE... +2009-01-14,39.2191667,-121.06,Grass Valley,CA,triangle,60,trianguler craft seen with bright yellowish lights on the corners.50 ft. long or so! +2009-11-04,32.6727778,-114.1461111,Wellton,AZ,light,180,Ski fireflys faster than any plane in southern Arizona +2009-01-14,35.1952778,-79.4697222,Pinehurst,NC,fireball,300,I took the dogs out and saw a light way too big to be a star in the direction of Fort Bragg. I then saw the lights of an aircraft besid +2009-01-14,33.7669444,-118.1883333,Long Beach,CA,circle,3600,Unexplained Lights in the sky over Long Beach, CA +2009-01-14,31.7319444,-84.1708333,Leesburg,GA,light,5,large bright light with orange glow around outside silently flew @ treetop level S.W.of hghwy 19S. +2009-01-14,39.6363889,-74.8027778,Hammonton,NJ,other,60,1 came from southwest it had red and clear lights in front of what appeared to be circular in shape but i never saw full shape it was m +2009-01-14,41.8386111,-94.1069444,Perry,IA,sphere,120,Red-orange light above horizon that rose slowly and zigzagged before disappearing. +2009-01-14,37.9872222,-122.5877778,Fairfax,CA,unknown,900,BRIGHT LIGHTS MARIN COUNTY NIGHTS +2009-01-14,40.9044444,-80.0466667,Prospect,PA,light,300,Strange bright pulsating light in the sky +2009-01-14,42.9275,-83.63,Grand Blanc,MI,light,120,Bright Orange Light over Grand Blanc, MI. +2010-11-04,36.175,-115.1363889,Las Vegas,NV,oval,7200,Circular object with blue/red/green flashing center lights and glowing edges seen over Las Vegas skies. ((NUFORC Note: Stars?? PD)) +2010-11-04,42.5,-96.4,Sioux City,IA,light,45,3 white lights turn to 1 and wobble in the sky +2010-11-04,35.1216667,-120.6202778,Grover Beach,CA,diamond,5,I have seen a UFO with no lights. UFO= Un-identified Flying Object +2010-11-04,38.7838889,-90.4811111,St. Charles,MO,other,180,White object moving in strange pattern vanishes into thin air. +2010-01-14,37.9886111,-84.4777778,Lexington,KY,fireball,240,HAVE PICTURES +2010-11-04,34.0975,-117.6475,Upland,CA,sphere,60,Spherical object with bright flashing light seen moving east to west at 300-500 mph; airplane crossed path 1-5 miles behind object. +2010-11-04,32.7152778,-117.1563889,San Diego,CA,sphere,360,2 round or sphere shaped objects floating then both disappearing from view at the same time +2010-11-04,33.9908333,-118.4591667,Venice,CA,sphere,600,Slow moving UFO over Los Angeles, very high up flashed several times. +2010-01-14,36.4852778,-93.7319444,Holiday Island,AR,triangle,600,Triangular patterned lights over Holiday Island, Arkansas marina. +2010-11-04,39.6005556,-77.8208333,Williamsport,MD,diamond,1224,Close encounter with a hovering craft. +2010-11-04,29.3213889,-103.6155556,Terlingua,TX,fireball,60,Slow moving fire ball over Big Bend National Park observed for 1 minute +2010-11-04,36.0583333,-90.4972222,Paragould,AR,cigar,600,Cigar shaped object with blinking lights drops glowing spheres +2010-11-04,39.5297222,-119.8127778,Reno,NV,formation,2,two light formations moving across reno, nevada +2010-11-04,40.1044444,-74.9516667,Bensalem,PA,teardrop,180,I looked out the window to see a saucer chasing a red teardrop. +2011-01-14,43.0805556,-88.2611111,Pewaukee,WI,unknown,600,An object is sighted hovering in place over my car for 10 min; during this time it shifts shape, color, makes a huge noise and leaves. +2011-01-14,35.9605556,-83.9208333,Knoxville,TN,sphere,300,Large, spherical, solid black craft emitting a blue beam, followed by black helicopters. +2011-11-04,30.6741667,-96.3697222,Bryan,TX,other,3,Strange lights in the sky, multiple crafts. +2011-01-14,34.0658333,-84.6769444,Acworth,GA,rectangle,60,viewed for one minute in acworth ga above treeline from bedroom window. +2011-11-04,43.3227778,-76.4175,Fulton,NY,unknown,60,dancing "star??" in morning sky... +2011-11-04,29.4569444,-94.6394444,Crystal Beach,TX,unknown,300,Strange, white, rotating object landing in Gulf. +2011-11-04,28.1458333,-82.7569444,Tarpon Springs,FL,sphere,2,NOT THE MOON NOT THE SUN +2011-01-14,38.6402778,-92.1222222,Holts Summit,MO,disk,120,3rd Sighting of same craft. +2011-01-14,27.3361111,-82.5308333,Sarasota,FL,triangle,60,I was driving on Fruitville road, not fare from Sarasota's airport, it was dark about 6 PM . I saw five bright lights in a triangle for +2011-11-04,47.2033333,-122.2391667,Sumner,WA,formation,120,15 orangey/red spheres in a 3/D circle/hexagon shape with each disaappearing within minutes of sighting. +2011-01-14,26.3180556,-80.1,Deerfield Beach,FL,oval,300,Three oval objects glowing red and orange - sail across the sky silently heading east to west +2011-01-14,38.545,-121.7394444,Davis,CA,triangle,120,Black craft in triangle shape in a big field between residential neighborhood and country. Approx 15-20 yards wide, about 150-200 ft up +2011-11-04,41.7758333,-72.5219444,Manchester,CT,sphere,120,watching object jump around sky for hours. ((NUFORC Note: Twinkling star. PD)) +2011-01-14,33.5805556,-112.2366667,Peoria,AZ,flash,1,Quick moving ball of light in NW Phoenix Valley +2011-11-04,33.9561111,-83.9880556,Lawrenceville,GA,cross,600,Slow, low flying object with two red and two white flashing lights that made no sound and changed directions. +2011-01-14,46.6633333,-123.8033333,South Bend,WA,sphere,3600,three Sphere like objects came from over a hill towards the water. +2012-11-04,46.6022222,-120.5047222,Yakima,WA,chevron,5,Bright crescent shaped craft quickly flying across the sky. +2012-11-04,40.015,-105.27,Boulder,CO,fireball,3,Boulder, CO, Fireball +2012-11-04,34.0975,-117.6475,Upland,CA,circle,10,Unusual faint white circle moving faster than a jet traveling south to northeast over Upland CA at approximately 09:10 am. +2012-01-14,35.8166667,-85.5669444,Quebeck,TN,triangle,5,Clear sky daytime sighting of black triangle moving at extreme speed with loud sound and no contrail. +2012-11-04,35.0844444,-106.6505556,Albuquerque,NM,unknown,10,I believe I saw a UFO today ...... small object, moving slowly at first, picked up speed, and then accelerated to a very high speed. +2012-11-04,33.6125,-117.7119444,Laguna Hills,CA,sphere,180,2 goups of 20+ haphazardly-moving spheres or obs circulating around each other +2012-11-04,34.1722222,-118.3780556,North Hollywood,CA,rectangle,120,Silvery and very distinct tail lights super fast +2012-11-04,34.1722222,-118.3780556,North Hollywood,CA,rectangle,120,Woman witnesses a very strange, rectangular object, which suddenly accelerates and zips off. +2012-01-14,35.4816667,-86.0886111,Manchester,TN,cigar,300,UFO - Solid White, Cigar Shaped, No Sound, Daytime Sighting with video! +2012-01-14,33.5225,-117.7066667,Laguna Niguel,CA,circle,1,Bright object / orb performs aerial gymnastics over pacific ocean before performing disappearing act into the water close to coast. +2012-01-14,44.5258333,-72.9455556,Underhill,VT,light,300,Cluster of unidentified orange-red lights seen in the northern Vermont sky. +2012-01-14,35.0072222,-80.9452778,Fort Mill,SC,light,480,Orange orbs moving in formation and 'winking out +2012-11-04,36.3586111,-105.6088889,Ranchos De Taos,NM,fireball,3,Large westward moving blue-white meteor 18:34 MT seen from Taos, NM +2012-11-04,41.6738889,-73.0736111,Thomaston,CT,light,1800,I witnessed multiple lights in the sky, some that moved and changed formation, some stationary. +2012-11-04,33.6888889,-78.8869444,Myrtle Beach,SC,formation,120,Bright orange lights in a formation, some seperation movement, then vanish in SC. +2012-11-04,28.8002778,-81.2733333,Sanford,FL,disk,120,Look up in sky was disc object loud humming sound had yellow lights circulating around it was moving away from us at slow rate of speed +2012-01-14,34.9494444,-81.9322222,Spartanburg,SC,light,2700,white light slowly meandering directly above in upstate South Carolina +2012-01-14,26.7052778,-80.0366667,West Palm Beach,FL,oval,180,Object bright no blinking lights moving fast +2012-11-04,61.2180556,-149.9002778,Anchorage,AK,light,300,3 orange "stars," brighter than reg stars in a hazy night sky. non-moving then fading out. triangle formation. +2012-11-04,40.015,-105.27,Boulder,CO,triangle,10,It moved fast and not easy to see .. +2012-11-04,27.9655556,-82.8002778,Clearwater,FL,light,2,Brilliant flash of light, possibly very small meteorite +2012-11-04,47.4830556,-122.2158333,Renton,WA,light,120,Ball of light but it wasn't a plane. +2012-01-14,32.7833333,-96.8,Dallas,TX,light,240,11 orange lights. Moving S to N slowly. Covered a good portion of the horizon east of Dallas. I got two videos on my smartphone. +2012-11-04,42.4380556,-73.0463889,Peru,MA,light,75,Bright orange light traveling across the sky seen by 2 people +2012-11-04,41.6330556,-81.4688889,Willowick,OH,other,300,Orange glowing objects in the sky +2012-11-04,39.2688889,-84.2638889,Loveland,OH,sphere,120,We saw a golden sphere in the night sky. It went from relatively low in the sky to really high and just disappeared. +2012-11-04,34.1013889,-84.5194444,Woodstock,GA,fireball,600,Woodstock Georgia 8:45pm 11/4/2012 several balls of fire in sky +2012-01-14,35.0977778,-98.4352778,Fort Cobb,OK,cigar,1500,Vertical strip of lights over Fort Cobb Lake +2012-11-04,40.4147222,-74.23,Matawan,NJ,light,2,Yellow, alternating lights that hovered in the sky for a few seconds then darted southward. +2012-01-14,47.5675,-122.6313889,Bremerton,WA,circle,2,Silverdale, WA: erratically moving white lights reflecting off clouds and moving at lightening speed.((NUFORC Note: Ad lights? PD)) +2012-01-14,41.0786111,-73.4697222,Darien,CT,fireball,120,Orange Fireball gliding in the sky over Darien, CT 1/14/12 @ 9:15 p.m. +2012-01-14,34.61,-112.315,Prescott Valley,AZ,light,600,Burning Light above ridge of Mingus Mountain +2013-01-14,43.0388889,-87.9063889,Milwaukee,WI,triangle,7200,((HOAX??)) Triangle ufo gang. +2013-01-14,33.7825,-117.2277778,Perris,CA,light,2,Blue light over the horizon. +2013-11-04,40.7519444,-80.3194444,Beaver Falls,PA,light,600,Red flashing unmoving light over the river not attached to anything that moved sharp down and right and went out. +2013-01-14,34.1063889,-117.5922222,Rancho Cucamonga,CA,sphere,300,January 14, 2013, at 7:00 a.m. UFO sphere with fire in Rancho Cucamonga, CA near Alta Loma High School. +2013-11-04,35.9938889,-78.8988889,Durham,NC,circle,180,Bright flashing white ball in broad daylight +2013-01-14,41.6738889,-73.0736111,Thomaston,CT,oval,120,Bright metallic, oval object. +2013-01-14,41.9555556,-71.7027778,Pascoag,RI,light,120,Glowing orange light larger than north star, located north, hovers and travels down past tree line. +2013-11-04,44.98,-93.2636111,Minneapolis,MN,other,3600,Bright light almost like a bright star with bright light luminating. ((NUFORC Note: Venus? PD)) +2013-01-14,33.5091667,-111.8983333,Scottsdale,AZ,fireball,3600,Reddish/orangish lights blinking turning off and reappearing at a modest altitude for an hour. +2013-01-14,42.3636111,-87.8447222,Waukegan,IL,other,90,Mom and 8 yr old daughter see a lighted star shaped object with trailing flames above tree in back yard. +2013-11-04,32.2986111,-90.1847222,Jackson,MS,unknown,300,4 fast crafts going different directions coming and going to a floating orb +2013-11-04,42.5972222,-82.8780556,Mount Clemens,MI,triangle,600,Triangular shaped light in the sky with a fourth orb following behind. +2013-11-04,39.0275,-83.9197222,Mt. Orab,OH,light,20,Observation of two circular unidentified lights not behaving like man made object +2013-11-04,38.2972222,-122.2844444,Napa,CA,circle,30,Three flying objects in a row, red and green lights. +2013-11-04,37.8044444,-122.2697222,West Oakland,CA,changing,1800,One brightly blinking light over Berkeley, CA. ((NUFORC Note: Sighting of Capella in the northeast sky? PD)) +2013-11-04,34.49,-77.4319444,North Topsail Beach,NC,unknown,240,Orange lights over the ocean then disappearing and reappearing multiple times +2013-11-04,35.0844444,-106.6505556,Albuquerque,NM,light,60,Falling lights. +2013-01-14,33.0580556,-112.0469444,Maricopa,AZ,light,1800,As many as 5 large, bright orange lights seen hovering near Ak-Chin Casino south of Maricopa, Arizona. +2013-11-04,40.7608333,-111.8902778,Salt Lake City,UT,circle,1800,Red glowing sphere that appears out of nowhere hovers, moves up +2013-11-04,33.1191667,-117.0855556,Escondido,CA,unknown,480,Saw a craft ejecting red flares over the night sky in Southern California +2013-11-04,38.9583333,-122.6252778,Clearlake,CA,triangle,360,I and three others saw three triangle objects with lights, silently fly north of my house in a V formation . +2013-01-14,44.1002778,-70.2152778,Lewiston,ME,light,30,Bright star like light disappears as it moves south. +2013-11-04,36.5297222,-87.3594444,Clarksville,TN,changing,7200,Changing shape, well lit type of slow moving aircraft. +2013-11-04,36.5297222,-87.3594444,Clarksville,TN,cigar,300,Blue/Red cigar shaped object with three lights hovering in southern sky for 5 minutes +2013-11-04,40.3933333,-82.4858333,Mt. Vernon,OH,oval,20,Long oval dark craft, moving silently with two long dimmed red lights going width of it,strait over me, west to east. +2013-01-14,43.2341667,-86.2483333,Muskegon,MI,circle,600,Round low flying object. White light. +2013-11-04,42.7797222,-73.8461111,Niskayuna,NY,other,120,The craft did not look or act like a plane and was silent as it first hovered then moved through sky just above the trees. +2013-11-04,46.7833333,-92.1063889,Duluth,MN,light,120,Red light appearing/disappearing and then moving into 3 different locations and disappearing. +2013-11-04,25.0861111,-80.4475,Key Largo,FL,triangle,2,Large bright white triangular shapes streaking across the sky coming to an abrupt stop, holding position for 10 sec. then disappearing +2013-11-04,34.0005556,-81.035,West Columbia,SC,cigar,300,I saw 5 or 6 light in the sky they were really bright and moving really rapidly it move side to side and then it stood still for a minu +2013-11-04,27.9655556,-82.8002778,Clearwater,FL,triangle,900,I first witness this with my father, a rumbling noise outside. the sound would last about 1 minute, then about 30 seconds later you cou +2013-01-14,41.865,-69.9916667,North Eastham,MA,light,420,Bright white light hovering above trees accompanied by loud noise, disappears suddenly. +2013-11-04,35.7719444,-78.6388889,Raleigh,NC,triangle,180,3 red lights on shadow outline of triangle shaped craft, slowly flying just above tree line silently. ((NUFORC Note: Venus?? PD)) +2014-01-14,33.6888889,-78.8869444,Myrtle Beach,SC,circle,5,Strobing orange circular lights in a line two sets of three lights over the ocean. +2014-01-14,41.5427778,-87.6847222,Flossmoor,IL,triangle,3600,Triangular Shaped UFOs with Lights Silently Hovering in the Western Sky in Illinois. +2014-01-14,29.1691667,-95.4316667,Angleton,TX,flash,3,Impact flash in brazoria county texas. +2014-01-14,31.7619444,-95.6305556,Palestine,TX,triangle,300,Long triangular, wing shaped, black aircraft, with two down facing, constant green lights and one flashing red light. +2014-01-14,37.8811111,-95.7330556,Yates Center,KS,light,600,Lights moving in a distinct pattern. +2014-01-14,33.6058333,-78.9733333,Surfside Beach,SC,unknown,30,While standing in my garage looked toward the ocean and quite a distance off and far above the ocean I seen one round orange light. A +2014-01-14,37.8238889,-96.2888889,Eureka,KS,other,240,Three vertical yellowish-orange balls lit up the Eastern night sky. +2014-01-14,37.5338889,-95.8263889,Fredonia,KS,light,240,Three people see orange lights in the western sky at night. One dims and re-lights in a horizontal row. 50 second video taken. +2014-01-14,37.2708333,-79.9416667,Roanoke,VA,light,120,Bright, reddish-orange light moving in the night sky above Roanoke, Va. +2014-01-14,21.35,-157.7208333,Waimanalo,HI,fireball,5,I saw an orange fireball with flames trailing as it shot diagonally across the sky and disappeared behind the nearby mountain range. +2014-01-14,47.6063889,-122.3308333,Seattle (Shoreline District),WA,light,45,Bright light, zig zagging eastward, visible from 98133. +2014-01-14,42.5338889,-114.3638889,Kimberly,ID,fireball,300,Several Fireball follwed by three red triangles. +1960-01-15,36.5963889,-82.1886111,Bristol,VA,disk,1200,BURNING disc sighting 1960 +1965-11-05,30.3319444,-81.6558333,Jacksonville,FL,light,1200,Bright light makes 90 degree turn. +1968-01-15,38.02,-80.6333333,Anjean,WV,oval,240,We were standing by our car parked at Anjean, WV waiting for my brother after a good day of ruff grouse hunting. The first saucer came +1969-11-05,34.1205556,-84.0044444,Buford,GA,disk,20,I was travelling home with two friends on Buford Hwy ,Leaving A small town named Flowery Branch after a birth day party ,Heading back h +1969-01-15,25.7738889,-80.1938889,Miami,FL,sphere,900,Sphere's appear in the room within touching distance and stay for a considerable amount of time. +1970-11-05,40.0175,-90.4241667,Beardstown,IL,light,240,1970 mysterious light in beardstown IL +1970-01-15,33.7475,-116.9711111,Hemet,CA,cylinder,3600,Large at least 20 feet metallic ball, blue grey (but it did change colors),like liquid metal, outside of my Mothers house just off the +1974-01-15,39.4666667,-87.4138889,Terre Haute,IN,disk,1200,UFO tampreing with comunication towers in Terre Haute, In +1975-11-05,35.0241667,-110.6966667,Winslow,AZ,fireball,180,SAW A BLUE FIREBALL CROSS THE HIWAY IN WINSLOW,ARIZONA IN 1977 +1975-01-15,42.2988889,-73.9988889,Cairo,NY,triangle,2100,Silent Triangle viewed for half an hour. +1975-01-15,44.0005556,-96.3172222,Pipestone,MN,sphere,300,1970's sighting of small UFO that hovered, maneuvered, split into two objects, then rejoined and flew off. +1975-01-15,25.7738889,-80.1938889,Miami,FL,light,180,1975 SIGHTING-CLOSER ENCOUNTER-2000 +1975-01-15,39.9305556,-75.3205556,Springfield,PA,unknown,20,Six or seven white lights in a row that turned red, then back to white and quickly flew away +1976-11-05,42.5830556,-83.3594444,Orchard Lake,MI,rectangle,20,rectangular light dull white +1976-01-15,34.1705556,-118.8366667,Thousand Oaks,CA,changing,60,was like a dot in the sky turn into a shape with a bird in the middle and faded to the ground +1977-01-15,41.8666667,-103.6666667,Scottsbluff County (Rural; Western),NE,chevron,30,Popped up over hill out of nowhere, bright lights flashing +1979-01-15,34.0522222,-118.2427778,Los Angeles,CA,fireball,30,Fireball passing through outer atmosphere about sunset. +1979-01-15,40.7608333,-111.8902778,Salt Lake City,UT,triangle,20,enormous triangle gliding silently overhead +1980-01-15,41.7894444,-90.2191667,Albany,IL,disk,300,saucer over corn field on a cold winter night. +1980-01-15,40.4405556,-79.9961111,Pittsburgh (North Of),PA,oval,900,Two glowing disks seen over an Interstate highway in Western Pennsylvania. +1981-01-15,41.5236111,-90.5775,Davenport,IA,cigar,1260,strange colered lights hovered before speeding away. +1981-01-15,33.7669444,-118.1883333,Long Beach,CA,triangle,15,5 dull red lights in V formation cruising over the coast of Long Beach +1985-01-15,40.8880556,-80.3383333,Wampum,PA,circle,1800,3 bright round objects hovering on side of road during bad snowstorm +1985-01-15,36.3433333,-81.225,Mcgrady (Wilkes County),NC,changing,360,On a clear, starry winter evening I observed a very unusual object in the night sky, my grandfather also saw the object. +1985-01-15,40.8625,-76.7947222,Sunbury,PA,unknown,420,Memory of UFO sighting in Sunbury Pennsylvania during mid 80's +1985-01-15,33.9547222,-118.2111111,South Gate,CA,cylinder,15,Large Object hovering over house with flashing lights that were turning. 500 Lights On Object0: Yes +1986-01-15,41.6666667,-70.1852778,South Yarmouth,MA,circle,7200,white,luminous, circular object encircled with colored lights hovering above neighbors house for over 2 hours. +1987-01-15,34.448055600000004,-119.2419444,Ojai,CA,unknown,2,In 1987 a UFO passed a few feet above our car near old Creek Road in Ojai, CA. +1988-01-15,34.7463889,-92.2894444,Little Rock (Northwest Of),AR,other,180,On this evening I saw what I thought was a halogen search light from a hovering helicopter. Something about the light did not seem righ +1988-01-15,39.3108333,-91.4883333,Vandalia,MO,triangle,600,The shape was a dark sharp triangle that made no noise and seemed transparent from directly below. +1989-01-15,47.4236111,-120.3091667,Wenatchee,WA,changing,180,Flying plane stops, changes shape, and then crashes +1990-01-15,42.7341667,-90.4783333,Platteville,WI,disk,900,Close encounter on the highway with a hovering craft / bright lights (white, red and orange). +1990-01-15,34.9491667,-83.7575,Hiawassee,GA,triangle,60,Hovering Black Triangle +1990-01-15,40.5675,-88.2477778,Melvin,IL,disk,900,Saucer shaped object with three layers, very close encounter, several witnesses, most memorable event in my life. +1991-01-15,40.0277778,-74.8694444,Willingboro,NJ,unknown,18000,Five and a half hour light show, first one then many. Hovering , moving fast and seemingly just flying around ...read on +1992-01-15,37.9788889,-75.5313889,New Church,VA,sphere,1800,WHITE LIGHTS BLINKING IN A SPHERICAL SHAPE, STATIONARY OVER FIELD. TRANSPARANT OR REFLECTING. WHEN IT MOVED, IT SPED SOUTH AT SPEEDS OV +1993-01-15,35.9127778,-100.3816667,Canadian,TX,triangle,900,It was triangular in shape, massive in size and eerily quiet. +1993-01-15,42.3211111,-85.1797222,Battle Creek,MI,light,900,The light showed bright through the dense snow storm. +1994-01-15,39.6302778,-106.0427778,Dillon,CO,sphere,18000,ufo activity at lake dillon,colorado +1994-11-05,46.7683333,-88.7530556,Alston,MI,triangle,3600,Triangular shaped UFO over house in Alston, Michigan +1994-01-15,34.47,-118.1958333,Acton,CA,unknown,1800,it was like they knew i was watching them. +1995-01-15,42.095,-89.9780556,Mount Carroll,IL,triangle,900,Triangle UFO with erratic movement early, slow approach, multi-colored lights to constant white lights. +1995-11-05,40.1947222,-92.5830556,Kirksville,MO,sphere,1200,3 UFO'S SPOTTED SHARING ENERGY PARTICALS IN MISSOURRI SKY +1995-01-15,40.1022222,-75.2747222,Plymouth Meeting,PA,rectangle,90,Bowling Pin object in sky spit it a large white lit rectangle that flew over head in mid 1990's in PA rt 476 +1995-01-15,32.3475,-97.3863889,Cleburne,TX,triangle,180,Two friends and I saw a triangular-shaped hovering aircraft which quickly sped away when we stopped to look at it. +1996-01-15,30.1763889,-85.8055556,Panama City Beach,FL,circle,15,Facing the gulf of mexico we noticed a luminescent circular object appear out over the gulf. It was translucent and glowing +1996-01-15,46.9933333,-93.5983333,Hill City,MN,oval,1800,Something odd scared the hell out of me and I swear to god it was real +1996-01-15,33.5205556,-86.8025,Birmingham (Huffman/Centerpoint),AL,teardrop,600,I was working security at a local hospital and was sitting in security truck, which had a monitor for the Birmingham Police Dept instal +1997-01-15,34.0005556,-81.035,Columbia,SC,light,4,Light in sky made 90 degree turn +1997-01-15,33.8905556,-78.5686111,Calabash,NC,oval,600,This was a round solid object like a chandelier with many tiny white lights +1997-01-15,39.6005556,-82.9461111,Circleville,OH,disk,180,Small(er) craft hovering over a small woods , possibly leaching power from large power lines +1997-01-15,40.5883333,-73.6583333,Long Beach,NY,egg,300,A bright luminesant egg shaped object aproached the beach from the south and hovered with out sound for three mins. +1997-01-15,38.5913889,-75.2916667,Millsboro,DE,triangle,7200,4 lights in square formation in sky and small triangular craft seen at close range +1997-01-15,41.4872222,-120.5413889,Alturas,CA,disk,180,pink/reddish glow with a gray round craft there was only one. It swayed back and forth and dissappeared.Jan. 15, 1997 approx. 5:30p +1997-01-15,46.9966667,-120.5466667,Ellensburg (? On A Pass Just Pass, Just East Of),WA,fireball,40,Orange orb +1998-01-15,40.5080556,-74.7305556,Neshanic Station,NJ,light,30,Bright Lights with No Visible Source or Sound or Tracks Come in Through the Window +1998-01-15,40.7141667,-74.0063889,New York City (Manhattan),NY,formation,10,One light emits multiple identical lights above Manhattan +1998-11-05,26.9294444,-82.0455556,Punta Gorda,FL,triangle,30,I saw 3 triangular craft in the night sky over my home in Florida. +1998-01-15,38.03,-107.3147222,Lake City,CO,light,30,An object the size and brightness of Venus appeared in southern sky for appoximately 30 seconds. It then gradually doubled and size a +1998-01-15,29.2105556,-81.0230556,Daytona Beach,FL,light,120,Two red lights manuevering both stationary and at very high rates of speed. Both performed unlimited climbs until disappering. +1998-11-05,34.1866667,-118.4480556,Van Nuys,CA,sphere,1,Two green luminous spheres moving straight towards the ground and disappeared behind a building. +1998-11-05,34.1808333,-118.3080556,Burbank,CA,fireball,1,Meteor Flash 90 degress down, at about 2000 feet. +1998-01-15,42.4391667,-123.3272222,Grants Pass,OR,triangle,60,Triangular Ship:Turning in midair +1998-01-15,46.8772222,-96.7894444,Fargo,ND,fireball,6,8 glowing red balls the size of quarters weaving in and out of each other, heading SW. +1999-11-05,40.8255556,-73.2030556,Hauppauge,NY,disk,1200,Strange hovering manuvuers of object over Long Island +1999-01-15,32.3666667,-86.3,Montgomery,AL,sphere,1200,Bright Metallic Object, stationary at first, then moving very slowly towards the NW then towards NE. It dissapeared behind a large clo +1999-01-15,30.0858333,-94.1016667,Beaumont,TX,unknown,900,Huge smoke trail in upper atmosphere. Cought on film. +1999-01-15,39.4194444,-76.7805556,Owings Mills,MD,other,300,Overflight of strange craft with chase plane +1999-01-15,41.9583333,-70.6677778,Plymouth,MA,triangle,1200,My wife and I have been seeing three kinds of unexplained objects in the Pltmouth, Ma ski's for the past few years. I am writing this +1999-01-15,38.4,-105.2166667,Canon City,CO,formation,5,while traveling east on Hwy 50 I spotted a cluster (6 or 7?) of red lights in the northeast sky app. 9:00 angle. They appeared to be co +1999-01-15,38.4,-105.2166667,Canon City,CO,light,3,Two eye witness saw this. One in a car, a second in a high rise apartment. 13th floor. The witness in the apartment said they landed +1999-11-05,37.3541667,-121.9541667,Santa Clara,CA,rectangle,600,On Friday Nov. 5, 1999 just before sunset, a gigantic metalic colored dominoe shaped object flew over the San Francisco Bay Area. +1999-11-05,35.7719444,-78.6388889,Raleigh,NC,disk,10,See Image attached to email, seen this while scanning some online live webcams. +1999-11-05,38.8186111,-95.6888889,Carbondale,KS,disk,300,Disk hovered in my field for about 5 min. wit no noise. Had red and clear lights on it. +1999-11-05,33.6408333,-117.6022222,Rancho Santa Margarita,CA,chevron,1800,Seen a Chevron shaped craft in clear skies with no lights or no noise. It moved very graceful, yet crossed the sky at such a fast pace. +1999-01-15,38.7216667,-76.6608333,Dunkirk,MD,other,30,Me and a friend viewed a craft. We turned around to see it again and it had vanished. +1999-01-15,34.698055600000004,-118.1358333,Lancaster (Near Edwards Air Force Base),CA,light,1200,Me and a friend were walking through a short field and we looked up and we saw a bright light that was moving rapidly from one directio +1999-11-05,37.2152778,-93.2980556,Springfield (14 Mi. S Of, Near Highlandville),MO,fireball,240,Two strobing white lights very close in the sky, followed by a low flying red fireball at approximately a 20% angle +1999-01-15,39.8666667,-74.1683333,Lanoka Harbor,NJ,diamond,300,craft moved in erratic speeds, with non liner motion. two high intensity white lights, constantly on. one blinking red light. +1999-01-15,42.0775,-78.43,Olean,NY,fireball,1,Green fire ball appearing to fall at very high velocity +1999-11-05,38.6447222,-121.2711111,Fair Oaks (Facing East Look Straight Up),CA,diamond,1560,I was out on the patio looking east admiring the stars, my gaze gradually shifted striaght up and I noticed a faint shimmer and a form. +1999-11-06,37.5741667,-122.3783333,Hillsborough,CA,oval,300,the report on this date listed in burlingame/ san mateo sounds very similar to what i saw and the date sounds right. driving home from +2000-11-05,33.5805556,-112.2366667,Peoria,AZ,circle,1500,The two orange balls were joined by another then the two turned into one red ball then broke into two again before ascending. +2000-11-05,26.1272222,-80.2333333,Plantation,FL,teardrop,5,craft that turned into a beam of light +2000-11-05,41.1305556,-85.1288889,Fort Wayne,IN,formation,600,A formation of aprrox. 15 objects were observed for 10 minues in broad daylight in a cloudless clear sky. +2000-01-15,32.5005556,-94.7402778,Longview,TX,cigar,120,I was standing on my patio looking around my back yard, I glanced up straight ahead. Not up to the sky.I saw two very large red lights +2000-01-15,38.6272222,-90.1977778,St. Louis,MO,unknown,420,flashing hot pink lights, no particular pattern, shooting across the sky, up and down, side to side just above the interstate. glowing +2000-01-15,29.7858333,-82.0316667,Keystone Heights,FL,circle,3600,Video taped approx. 3 minutes of stationary round object that darted on video screen. Numerous colours. +2000-01-15,44.765,-69.7197222,Skowhegan,ME,oval,300,Large UFO. Oval Shaped. Brilliant white lights around it with intense red light on top. +2000-01-15,29.7630556,-95.3630556,Houston,TX,triangle,15,triangle object bearly moving,then almost disappears,then dozens of aircraft start appearing and circling sky +2000-01-15,30.2263889,-93.2172222,Lake Charles,LA,light,2400,There was a UFO in Lake Charles, Louisiana in 2000. +2000-01-15,29.7758333,-95.1144444,Channelview,TX,unknown,3600,I was arriving home from work on the night of 1/15.I happened to look up to see two two large chemtrails crossing each other.I knew tha +2000-01-15,38.4344444,-82.1325,Milton,WV,light,600,A huge, bright , glowing light was seen in the sky above the hills of our property, making no sound whatsoever.... +2000-01-15,46.8772222,-96.7894444,West Fargo,ND,sphere,900,Bright glowing red orb. Did not emit any smoke, noise, or apparent heat. Moved at about 10 mph from northwest horizon to southeast hor +2000-01-15,42.2916667,-85.5872222,Kalamazoo,MI,circle,600,A spinning lighted low down circle UFO. +2000-01-15,44.3147222,-84.7647222,Houghton Lake,MI,flash,1200,Rendezvous of 2 white lights, followed by enormous, pulsing light rings. +2001-01-15,41.6611111,-91.53,Iowa City,IA,formation,420,A large flight of glowing discs sighted over Iowa City +2001-01-15,40.3063889,-121.2308333,Chester,CA,rectangle,180,Late evening I was cuting wood when a very bright light cought my attenson behind me I turnd around to see a light that was so bright I +2001-11-05,40.1005556,-74.8522222,Bristol,PA,disk,300,Two disc shaped objects were witnessed on the date seen above. The two objects were blackish and silver hovering over rowhomes on Garde +2001-01-15,45.6388889,-122.6602778,Vancouver,WA,changing,4500,Bright object seen in sky north of Vancouver Wa. +2001-01-15,34.0522222,-118.2427778,Los Angeles,CA,light,15,POSSIBLE UFO SIGHTING +2001-11-05,43.2166667,-123.3405556,Roseburg,OR,light,900,A red light to the north kinda a mass of light seen. leaves lots of people wondering +2001-11-05,42.0372222,-88.2811111,Elgin,IL,fireball,1,Neon Green Light Spoted in Elgin, IL. 60120 at 21:04 hours Monday, November 5th 2001 +2001-11-05,33.5386111,-112.1852778,Glendale,AZ,circle,6,UFO Sighting - Glendale, AZ +2001-11-05,47.8211111,-122.3138889,Lynnwood,WA,triangle,60,dark silent triangular object 500 ft above Lynnwood on cloudy night +2002-01-15,39.9522222,-75.1641667,Philadelphia,PA,disk,120,Pitch BLACK UFO STING RAY SHAPE NO LIGHT OR SOUND +2002-11-05,46.8605556,-68.0125,Caribou,ME,light,120,I went out into the backyard of my property with my dog at 04:00 hours. It was a clear night, without moonlight, to illuminate the nigh +2002-11-05,35.4675,-97.5161111,Oklahoma City,OK,other,40,Strange Strobing Lights +2002-01-15,27.7705556,-82.6794444,St. Petersburg,FL,oval,600,St. petersburg fl. Could not belive my eyes for the first time I saw UFO +2002-11-05,33.4936111,-117.1475,Temecula,CA,light,300,Bright lights over Pala Rd in Temecula +2002-01-15,27.9011111,-81.5861111,Lake Wales,FL,cylinder,180,Never seen this before +2002-01-15,27.9011111,-81.5861111,Lake Wales,FL,triangle,180,In the Florida sky 1/15/2001 +2002-01-15,28.3933333,-81.5388889,Lake Buena Vista,FL,light,120,Golden comet-like tail grows from orange light which changes into 3 colored lights that form a moving triangle. +2002-01-15,25.7738889,-80.1938889,Miami,FL,formation,300,Low flying UFO sighted in the Kendall Florida Area +2002-01-15,27.3361111,-82.5308333,Sarasota,FL,triangle,360,Triangle shape with light at each point. +2002-01-15,26.9758333,-82.0908333,Port Charlotte,FL,formation,300,1/16/2001 Formation of 3 objects in souther sky over Florida. Light beams, light bursts and seperation and departure. +2002-11-05,47.6419444,-122.0791667,Sammamish,WA,light,60.15,The object was bright red. +2002-11-05,38.2030556,-97.5188889,Moundridge,KS,light,1140,Two to Four bright yellow flame like lights side by side in the night sky. +2002-01-15,37.6688889,-122.0797222,Hayward,CA,light,300,Large bright red light hovers and shoots off before dropping smaller red/orange lights, one drops then moves at a right angle. +2002-01-15,39.7763889,-74.8627778,Jackson,NJ,fireball,5,Bright white/green light flying silently across horizon +2002-01-15,39.3330556,-82.9825,Chillicothe,OH,unknown,5,lights was dashing around in the sky very fast +2002-01-16,35.4872222,-80.6219444,Kannapolis,NC,unknown,35,2 red lights, side by side +2003-01-15,34.1808333,-118.3080556,Burbank,CA,light,900,yellowish/orange lights over Burbank / N. Hollywood Area. 4th sighting ! +2003-01-15,39.4019444,-75.0397222,Millville,NJ,circle,40,well, it was about 1am,i waslooking southeast,when i seen a bright light in the sky.i dont think we have planes that can go as fast,?i +2003-01-15,39.0638889,-108.55,Grand Junction,CO,light,3600,A friend and I were out in the desert foothills near the Bookcliffs.Around 1:15am we noticed a light on top of the Bookcliffs.T +2003-01-15,36.4072222,-105.5725,Taos,NM,unknown,1800,it was about 2:00 am. and i could not sleep so i went outside to the porch for some air. i was looking up at the sky when i noticed two +2003-01-15,34.2694444,-118.7805556,Simi Valley,CA,circle,259200,Small red globes going to and from a satellite to the earth. Satellite has since has disappeared. +2003-01-15,33.0461111,-96.9938889,Lewisville,TX,fireball,3,2 fast moving bright green spheres descending straight down on the horizon with green trails behind them. +2003-01-15,40.1738889,-80.2463889,Washington,PA,light,300,I live beside an airport and I seen airplanes before and this was no airplane it was a ball of light. +2003-11-05,34.9552778,-90.0347222,Horn Lake,MS,fireball,5,Totally unexpected, brilliant and very possibly a slightly curved course. +2003-01-15,39.7763889,-74.8627778,Jackson,NJ,disk,5,I WAS TAKEN ONTO A DISK LIKE SHIP AND EXAMINED. +2003-11-05,45.5236111,-122.675,Portland,OR,circle,300,Dear PD, On 11/5/03, my wife described a sighting to me that sounds very similar to one reported by a witness in your database for Port +2003-11-05,44.4758333,-73.2125,Burlington,VT,disk,60,On Nov.5th񫺓 at 12:20 P.M. our 12-year old son was home early from having only one half a day of school, I was home early from work +2003-01-15,42.5802778,-83.0302778,Sterling Heights,MI,egg,10,Sometime in early 2003, during the winter, I had been living in an apartment on the 2nd floor of an apartment complex in Sterling Heigh +2003-11-05,30.3155556,-89.2475,Pass Christian,MS,disk,1800,IT WAS ROUND AND FLAT LARGER THEN A HOUSE WITH RED LIGHTS ON THE SIDE AND WHITE LIGHTS UNDERNEATH. +2003-11-05,38.8047222,-77.0472222,Alexandria,VA,unknown,2,6-8 Bright lights, in a line. Moving slowly north. Over or near Old Town Alexandria/Potomac River. +2003-01-15,43.5325,-90.0025,Reedsburg,WI,fireball,30,I saw 6 bright orange fireballs appear slowly then dissappear over Wisconsin Dells. +2003-01-15,38.2972222,-122.2844444,Napa,CA,chevron,6,Dark chevron shape zooming across the night sky with no lights on it. +2003-11-05,27.5872222,-82.4252778,Parrish,FL,light,60,Strange cone-shaped beam of light moves through clouds over Florida. +2003-11-05,48.0841667,-121.9675,Granite Falls,WA,fireball,2,Brilliant green fireball was seen falling and trailing debris near Mt. Pilchuck +2003-11-05,32.3663889,-96.1005556,Mabank,TX,oval,5,It came up from the pasture and darted toward the car. It had a yellow glow around it. +2003-11-05,39.7686111,-94.8463889,St. Joseph,MO,other,300,2 ufo's with red lights on the sides and a large white light in the center came 50ft above my car on the higway shining light on me. +2003-01-15,38.6447222,-121.2711111,Fair Oaks,CA,circle,600,Glowing orange object +2004-01-15,36.3916667,-75.98,Barco,NC,disk,300,Disk shaped craft in North Carolina near Currituck +2004-11-05,28.8827778,-81.3088889,Debary,FL,oval,60,bright to dim light, with three smaller lights coming down.. +2004-11-05,38.3294444,-89.1908333,Ashley,IL,circle,10800,2 balls of light one large one small changing colors and there for hours. ((NUFORC Note: Venus and Jupiter. PD)) +2004-01-15,38.6272222,-90.1977778,St. Louis,MO,light,1800,UFO's over Saint Louis and Metro East Counties. +2004-11-05,39.9522222,-75.1641667,Philadelphia,PA,fireball,1800,2 bright lights spherical fireball type shape close together high up in the sky. ((NUFORC Note: Venus and Jupiter. PD)) +2004-11-05,42.0111111,-87.8405556,Park Ridge,IL,circle,2400,Two very bright, large stars/dots in sky very near O'Hare airport. ((NUFORC Note: Venus and Jupiter. PD)) +2004-01-15,41.8994444,-87.9402778,Elmhurst,IL,fireball,5,early morning green glowing ball of light +2004-11-05,45.4358333,-89.1833333,Elcho,WI,fireball,600,clear blue sky big fireball with lots of white smoke looked huge +2004-11-05,39.5538889,-104.9688889,Highlands Ranch,CO,disk,60,A floating rainbowed saucer with an erie sound. +2004-11-05,33.7455556,-117.8669444,Santa Ana,CA,oval,120,Appx. 15 UFOs spotted in Santa Ana, CA 11/5/04 moving slowly in unison/making different patterns/reflecting at different times in sun. +2004-01-15,21.4022222,-157.7394444,Kailua,HI,light,120,Two brightly reflective objects skimming only feet above the water and moving at a steady speed. +2004-11-05,47.6063889,-122.3308333,Seattle,WA,triangle,2,Triangle UFO in Seattle U-district +2004-11-05,37.7022222,-121.9347222,Dublin,CA,disk,180,Saucer spotted behind bright lights of car dealership +2004-11-05,42.0963889,-83.2919444,Flat Rock,MI,circle,600,We have never saw anything like that we hope they are not hostile. +2004-01-15,38.7302778,-82.8555556,Wheelersburg,OH,light,5400,Bright orange, red, blue, white light in the night sky +2004-11-05,34.2541667,-110.0291667,Show Low,AZ,cylinder,4,4 objects moving very rapid and lazer like decending, going strait, acending then disapearing. +2004-01-15,34.1141667,-116.4313889,Yucca Valley,CA,circle,4,a huge flash and then lights +2004-11-05,32.7458333,-96.9975,Grand Prairie,TX,unknown,3600,Two objects seen in the night sky above Dallas on each side of a three star configuration. ((NUFORC Note: Twinkling stars?? PD)) +2004-01-15,37.614444399999996,-93.4102778,Bolivar (North Of),MO,fireball,60,Green Fireball. +2004-11-05,35.2783333,-93.1336111,Russellville,AR,cylinder,8,cylinder object flying silent just above tree tops +2005-11-05,36.1988889,-115.1166667,North Las Vegas,NV,fireball,2,Crashing UFO in las vegas +2005-11-05,33.4483333,-112.0733333,Phoenix,AZ,light,420,Lighted cone shaped object floating silently overhead +2005-11-05,42.5791667,-84.4436111,Mason (Just North Of),MI,sphere,2,a large, very fast moving white sphere appears to land/crash just southeast of Mason, Michigan +2005-01-15,33.1136111,-94.1641667,Atlanta,TX,other,7200,STRANGE LIGHTNING +2005-01-15,36.2944444,-76.2513889,Elizabeth City,NC,other,120,Explosive corona.....Shooting Star becomes disk that hovers +2005-11-05,31.1497222,-81.4916667,Brunswick,GA,cylinder,300,Cylinder shape in the sky. It continued to change shape. +2005-01-15,35.4652778,-114.9188889,Searchlight,NV,other,7,Odd looking Nevada daylight sighting. +2005-01-15,44.775,-117.8333333,Baker City,OR,other,86400,Lessons learned +2005-11-05,40.1213889,-82.0108333,Dresden,OH,cylinder,30,Flyling Cylinder Shaped Object Spotted Novenver 5, 2005 East of Dresden, Ohio +2005-01-15,42.1741667,-83.1794444,Riverview,MI,rectangle,240,rectangular object that changed shape +2005-01-15,37.5536111,-77.4605556,Richmond,VA,sphere,45,3 Spheres trailing behind passenger airliner +2005-01-15,44.0886111,-87.6575,Manitowoc,WI,oval,60,Silver oval sitting still in sky +2005-11-05,48.7597222,-122.4869444,Bellingham,WA,disk,1200,I saw a military disc shaped craft hovering low over a house on Bennett Drive. +2005-11-05,29.9986111,-95.2619444,Humble,TX,light,120,Very bright light slowly moving north and then turned upward and faded. +2005-01-15,29.1869444,-82.1402778,Ocala (N And S Of),FL,triangle,12600,Multiple types of objects in night sky of central Florida witnessed for over 3 hours. +2005-11-05,36.0652778,-119.0158333,Porterville,CA,fireball,120,A bright red glowing light that was loosing altitude coming from the western sky and going east towards the horizon +2005-01-15,41.7758333,-72.5219444,Manchester,CT,disk,300,Bright, big, yellow glowing disk staying motionless in the night sky, then disappearing,,, in Manchester, CT +2005-11-05,34.1975,-119.1761111,Oxnard,CA,other,900,low gliding large object with red light at front and back over Oxnard +2005-11-05,27.2541667,-80.23,Jensen Beach,FL,unknown,20,We were watching a light we thought was a planet, but then the light shot off at great speed. +2005-11-05,43.6136111,-116.2025,Boise,ID,formation,600,red, white and blue lights +2005-01-15,33.4483333,-112.0733333,Phoenix,AZ,fireball,1500,Bright orange light, almost like a fireball over Phoenix on 1/15/05-Second sighting +2005-11-05,33.6305556,-112.3325,Surprise,AZ,circle,1500,seen circular objeccts with red,white and blue lights +2005-11-05,31.0786111,-97.6052778,Nolanville,TX,oval,20,5 lights moving at same speed and changing places without pattern or any noise +2005-11-05,33.9986111,-96.7194444,Kingston,OK,other,2,flying object, low, no sound, missile like yellow orange with a trail +2005-11-05,41.7797222,-71.4377778,Cranston,RI,unknown,600,we were inside our house and heard several loud jet like sounds that would stop and then start up agan (exactly like the noises posted +2005-11-05,40.5791667,-74.4119444,South Plainfield,NJ,light,10,We heard a loud high-low in and out alarm type sound (DO-do-DO-do) approach from behind our vantage point. Two of us looked up as the +2005-11-05,41.3113889,-105.5905556,Laramie,WY,light,2,I saw a white light flash out of my drivers window at about 35 degrees to my left in the night sky, like a beam of light. +2005-01-15,42.1705556,-88.0477778,Kildeer,IL,unknown,3,Electro camoflage military? +2005-11-05,36.3275,-119.6447222,Hanford,CA,fireball,60,Massive flash of light preceeding a large fireball falling to the earth +2005-01-15,33.5205556,-86.8025,Birmingham,AL,triangle,120,Craft puzzled by pilot... +2006-11-05,30.0969444,-95.6158333,Tomball,TX,formation,600,Formation of about 20 lights in the sky above NW Houston 12:30 am November 5th, 2006. ((NUFORC Note: Witness highly qualified. PD)) +2006-01-15,42.9047222,-76.8630556,Waterloo,NY,sphere,120,White spherical object and missing time +2006-01-15,39.4183333,-92.4380556,Moberly,MO,triangle,120,Slow moving black triangle. No sounds no lights. +2006-11-05,37.8736111,-122.4555556,Tiburon,CA,disk,300,11/05/06, Tiburon, Ca 11:45am, viewed flying disc for 5 minutes, it turned and banked slowly with bright reflection +2006-11-05,35.0844444,-106.6505556,Albuquerque,NM,light,60,Bright light moving south and dimming out. +2006-11-05,30.1586111,-85.6602778,Panama City,FL,circle,10,reddish ,orange light orb over bayou george panama city florida +2006-11-05,27.9011111,-81.5861111,Lake Wales (?),FL,light,3600,I was the first to see it. We were driving east bound on hwy 60 coming out of Plok count and on my right hand side in the air(south eas +2006-01-15,34.8697222,-111.7602778,Sedona,AZ,light,300,JAN, 06 VERY BRIGHT WHITE LIGHT, POSSIBLE TELEPATHIC CONTACT WITH RESPONSE +2006-11-05,32.7558333,-111.5541667,Eloy,AZ,formation,1800,Strange Lights in the Sky over Arizona City. +2006-11-05,33.8886111,-117.8122222,Yorba Linda,CA,disk,900,A saucer sighted in Orange County doing out of the ordinary manuevars including dropping or gaining several hundred feet in 1 second. +2006-01-15,38.525,-89.1333333,Centralia,IL,rectangle,300,Returning home from shopping with two other friends, we got out of the car with our packages and I noticed this extremly large rectangl +2006-01-15,28.5491667,-81.7730556,Clermont,FL,changing,3600,Christmas lights, spot lights through the clouds, cruising crafts, hovering crafts with lights showering down. +2006-01-15,43.3227778,-76.4175,Fulton,NY,circle,0.5,A white-circle objects flew by my window with no sound or anything! +2006-11-05,30.5402778,-88.6875,Vancleave,MS,light,7200,flashing erractic moving light in the sky +2007-11-05,35.4494444,-97.3963889,Midwest City,OK,cone,2700,Flashing lights over Oklahoma +2007-01-15,37.7058333,-122.4608333,Daly City,CA,circle,3600,strange lights hovering and flying over San Francisco bay. ((NUFORC Note: Possible twinkling star? Sirius?? PD)) +2007-01-15,34.6833333,-82.8375,Clemson,SC,oval,3,UFO Sighting On January 15, 2008 at 2:30 AM, South Carolina. +2007-11-05,41.5844444,-84.6055556,Montpelier,OH,light,1800,Hovering lighted object changed colors in the western sky. ((NUFORC Note: We suspect a celestial body. PD)) +2007-11-05,36.1075,-87.2208333,White Bluff,TN,unknown,25,2 silent objects moving in a north east direction over White Bluff, TN in the early am. ((NUFORC Note: ISS and Space Shuttle. PD)) +2007-11-05,36.1875,-106.5558333,Youngsville,NM,cigar,30,Nothern New Mexico AM Hunt +2007-11-05,36.9613889,-120.0597222,Madera,CA,light,180,Two lights in the sky,one seemed to follow the other as if in formation. ((NUFORC Note: Possibly the ISS and Space Shuttle?? PD)) +2007-11-05,38.8916667,-121.2919444,Lincoln,CA,sphere,300,2 sphere type yellow objs SE to NW with no streaks or flashing lights and fast moving in one dir.. ((NUFORC Note: ISS & Shuttle? PD) +2007-11-05,35.2225,-97.4391667,Norman,OK,other,240,Two very white and bright lights moving SW to NE w/out sound. ((NUFORC Note: ISS and Space Shuttle. PD)) +2007-11-05,37.3636111,-118.3941667,Bishop,CA,other,180,I saw two lights movingin tandum from west to east. ((NUFORC Note: ISS and Space Shuttle. PD)) +2007-01-15,28.9486111,-81.2988889,Orange City,FL,fireball,25,Like a falling star but much too close. Yellow, orange, and red. Falling fast flared up then faded to yellow +2007-11-05,39.1141667,-94.6272222,Kansas City,KS,circle,60,UFO +2007-11-05,41.8097222,-87.9005556,Western Springs,IL,other,3,heard strange high pitched noise. +2007-11-05,35.4736111,-81.2547222,Lincolnton,NC,cigar,300,cigar shaped ufo silver in color then flashed a bright light then vanished +2007-01-15,45.4872222,-122.8025,Beaverton,OR,changing,240,I was driving south on Murray Blvd at about 2:00pm in the afternoon. I was in a long line of traffic where Murray Blvd. Crosses over T +2007-01-15,42.0494444,-92.9077778,Marshalltown,IA,oval,240,They seemed to react to each other the way that mercury does in its liquid form. +2007-01-15,47.7086111,-91.9444444,Babbitt,MN,light,600,lights in the sky +2007-01-15,40.5694444,-77.4030556,West Mifflin,PA,sphere,300,A pulsating UFO people!! +2007-01-15,35.0525,-78.8786111,Fayetteville,NC,light,420,Two bright star like objects swooping down then hugging tree line.... +2007-11-05,48.4213889,-122.3327778,Mount Vernon,WA,circle,480,Red object seen high in sky over Western Washington +2007-11-05,39.8366667,-105.0366667,Westminster,CO,other,10,Light colored spot moving across sky +2007-11-05,39.8016667,-89.6436111,Springfield,IL,circle,10,Ball of light flicks out, reappears and explods into many balls of light that form a circle in the sky. +2007-01-15,34.1780556,-82.3791667,Abbeville,SC,light,3,1 bright green light that floated through the sky +2007-11-05,61.2180556,-149.9002778,Anchorage,AK,triangle,5,Triangular shaped UFO blocks out starlight Anchorage evening sky +2007-01-15,30.3319444,-81.6558333,Jacksonville,FL,unknown,3,Falling green object north of Jacksonville +2007-11-05,38.0672222,-117.2291667,Tonopah,NV,cigar,5,11/05/07 21:00p.m. 10 miles N of Tonopah Nev. Cigar shape with 3 bright red/orange circles inside instantly appeared and 5 sec. later i +2007-11-05,38.8338889,-104.8208333,Colorado Springs,CO,triangle,300,V shaped object spotted in night sky +2007-01-15,39.2461111,-94.4188889,Liberty,MO,unknown,120,Dark area in sky over Liberty, Missouri +2007-11-05,32.0833333,-81.1,Savannah (Wilmington Island),GA,formation,5,A V "formation" of five lights moved silently at a high rate of speed from East to West at 22:30 EST 5 Nov 07 +2007-11-05,38.8047222,-77.0472222,Alexandria,VA,triangle,20,A large black triangle passed over our house and into the west at night. +2007-11-05,43.6033333,-84.0697222,Auburn,MI,triangle,60,Triangle shaped with 3 bright white lights and one red on I-75 through Auburn +2008-01-15,41.4875,-82.1016667,Sheffield Lake,OH,oval,120,They never appeared there again. +2008-11-05,33.6863889,-117.66,Foothill Ranch,CA,flash,0.5,Bright Green Light over Foothill Ranch, CA - 11/5/08 +2008-01-15,40.5030556,-81.6411111,Sugarcreek,OH,triangle,900,3 large triangular aircraft in the skies over Sugarcreek, OH +2008-01-15,39.0838889,-77.1530556,Rockville,MD,triangle,2,Bright triangular shaped object moves at a rediculous speed across my window +2008-01-15,30.4977778,-94.9963889,Shepherd,TX,triangle,20,2nd appearance ofTriangular craft moving very slowly, approx .350 ft up .will have camera ready -now on. +2008-01-15,31.7036111,-98.1236111,Hamilton,TX,light,1200,Bright hovering light seen over Hamilton, Texas, with a smaller object with flashing lights alongside it. +2008-01-15,30.3458333,-91.7230556,Atchafalaya,LA,light,2100,Light seen over the Basin Bridge in La. +2008-01-15,33.0058333,-93.4666667,Springhill,LA,fireball,120,white ball traveling at high speed over Springhill, Louisiana +2008-01-15,36.1961111,-82.0705556,Roan Mountain,TN,cross,240,Low Flying UFO Over Roan Mountain ,Tennessee Changes Colors as it Returns a Greeting From Motorist! +2008-01-15,34.1283333,-117.2077778,Highland,CA,sphere,3,Silver sphere hovers above old Norton AFB, maneuvers quickly and stops. +2008-01-15,41.8388889,-89.4794444,Dixon,IL,unknown,30,Strange cyclical white noise heard, pulsed one second on, 2 off then faded. +2008-01-15,34.1083333,-117.2888889,San Bernardino,CA,circle,259200,Circular impression in back yard about 80 to 100 feet wide. +2008-01-15,30.6166667,-89.6525,Carriere,MS,other,60,4 lights in a row out front of 3 bright lights at rear flying low and slow (maybe 1000 ft) and no sound. +2008-01-15,35.9130556,-79.0561111,Chapel Hill,NC,triangle,120,Flying Triangle +2008-11-05,34.1477778,-118.1436111,Pasadena,CA,chevron,3,Chevron shaped object zips through Pasadena sky at 19:00 hrs. +2008-01-15,39.9783333,-86.1180556,Carmel,IN,circle,300,round,small no bigger than a van, red lights surrounding it, seen in dark sky,seemed to be falling at first. +2008-01-15,46.4694444,-96.8741667,Colfax,ND,disk,120,Lighted object on the ground in an empty snow covered field +2008-01-15,36.3983333,-78.1555556,Warrenton,NC,circle,10,Craziest thing ive ever seen +2008-01-15,40.7266667,-115.585,Spring Creek,NV,formation,120,light becomes bright then turns into group of objects and dissapears +2008-01-15,38.4,-105.2166667,Canon City,CO,disk,600,lingering orange lights spotted in sky over Canon City, CO near Prison Facilities +2008-11-05,28.9002778,-81.2638889,Deltona,FL,other,5,Two lights with tail descends rapidly into nothingness with a burst at the end. +2008-11-05,34.8525,-82.3941667,Greenville,SC,triangle,240,I saw something vividly that coincided with a previous report. +2008-01-15,38.6272222,-90.1977778,St. Louis,MO,circle,3600,((HOAX)) i was abducted +2008-01-15,33.8958333,-118.2191667,Compton,CA,fireball,3,On the 105 east fwy in Norwalk / Compton area. 1 Bright green ball with a white streak of light. Crash +2008-01-15,33.7669444,-118.1883333,Long Beach (Just South On The 405),CA,light,2,Two Lights +2009-01-15,39.0838889,-77.1530556,Rockville,MD,sphere,120,Large, floating metallic sphere with a single 'headlight' and atleast 3 red lights on its bottom-side +2009-11-05,40.8041667,-74.0125,North Bergen,NJ,disk,240,Huge bright blue slow speed flying disc shape object flew from Palisade Park to Seacaucus seen in NJ 00:45 am. +2009-01-15,38.7891667,-90.3225,Florissant,MO,changing,300,It was an unexplainable phenominon that had 1 explination, UFO's. +2009-01-15,35.8966667,-77.5361111,Tarboro,NC,sphere,120,Possible ufo sighting ; +2009-11-05,34.4436111,-118.6086111,Valencia,CA,light,300,A bright Orb with opaque trails at sunrise. +2009-01-15,41.6269444,-88.2038889,Plainfield,IL,circle,10,Yellow round shape object flying past our home ,never seen this before very weird +2009-01-15,33.6675,-84.0177778,Conyers,GA,unknown,10800,Me and my friends were partyings ands likes we's gots likes reallzyd drunk. mmk. soooo like we went outside and passed out and woke up +2009-01-15,33.2486111,-111.6336111,Queen Creek,AZ,circle,40,Semi-transparent white ball sighted in Queen Creek ,AZ +2009-01-15,34.7538889,-77.4305556,Jacksonville,NC,circle,10,I was sitting in my p/u in the Piney Green shopping center. +2009-01-15,29.7630556,-95.3630556,Houston,TX,other,3600,Multiple UFO Sightings Houston, Texas +2009-01-15,33.5205556,-86.8025,Birmingham,AL,light,2400,Strange light(s) in the sky over Birmingham, Alabama for 2 consecutive days +2009-11-05,42.5083333,-89.0316667,Beloit,WI,fireball,600,Two big, round balls of fire hovering over beloit, Wi near the South Beloit border +2009-01-15,44.7527778,-68.6794444,Holden,ME,rectangle,240,Saw a greyish black stretched cube with rounded corners with bright white windows on it +2009-01-15,41.35,-72.0788889,Groton,CT,diamond,3600,On the night in question the skies were clear, also two of the wittnesses had an experiences in the past with a UFO. +2009-11-05,30.4055556,-86.6188889,Fort Walton Beach,FL,triangle,15,Second triangle craft near Eglin AFB Spotted. +2009-11-05,32.9341667,-97.0777778,Grapevine,TX,light,300,Strange light in sky flared up, then split into four objects, then faded. +2009-01-15,41.7475,-74.0872222,New Paltz,NY,light,2700,A strange large light hovering and slowly descending until it disappears over the Shawangunk Mountains. +2009-11-05,25.9561111,-80.1394444,Aventura,FL,light,120,Bright light fly over, as bright as Jupiter, no sound. +2009-01-15,40.8427778,-73.2933333,Commack,NY,light,2,Bright green, meteor-like object travelling at high rate of speed over residential neighborhood. +2009-01-15,32.6055556,-83.2455556,Danville,GA,fireball,5,Bright green "fireball" seen overhead and headed towards woodline; no crash, whistle, or bang heard. +2009-11-05,36.1016667,-78.4583333,Franklinton,NC,fireball,4,amber in color single fireball with no tail effect traveling west, seemed to travel faster than all known aircraft. +2009-11-05,28.0183333,-82.1130556,Plant City,FL,other,120,((HOAX??)) a boomerang craft moved parralel to my house +2009-01-15,26.9294444,-82.0455556,Punta Gorda,FL,teardrop,2,sonic booms and a fiery teardrop shaped light +2009-11-05,30.4386111,-90.4413889,Ponchatoula,LA,fireball,1800,orange light appeared in the Eastern sky of Louisiana, it was dancing +2009-01-16,38.2541667,-85.7594444,Louisville,KY,disk,30,Disk shaped object sighted during Kentucky ice storm. +2010-01-15,33.1580556,-117.3497222,Carlsbad,CA,light,300,Bright light changes color from blue to red as it circles, hovers, dips, and rises up, only to eventually circle back down. +2010-01-15,35.3733333,-119.0177778,Bakersfield,CA,circle,600,Strange brightwhite w/red luminous &quot; ufo &quot; vanished right before me and leave's the strangest smoke ....... I've ever seen . +2010-11-05,39.3111111,-94.9222222,Leavenworth,KS,light,1800,Late night UFO excitement in the county +2010-11-05,39.3111111,-94.9222222,Leavenworth,KS,light,1800,Late night UFO excitement in the county +2010-11-05,39.3111111,-94.9222222,Leavenworth,KS,teardrop,15,((HOAX??)) Just a run of the mill UFO +2010-11-05,40.1672222,-105.1013889,Longmont,CO,chevron,15,V-shaped craft moving silently, one light at the front, two on either wing. +2010-01-15,36.0725,-79.7922222,Greensboro,NC,sphere,1200,Broad daylight multiple color changing spheres +2010-01-15,33.7669444,-118.1883333,Long Beach,CA,unknown,300,Loud cycling noise followed by multiple helicopters +2010-11-05,39.5994444,-88.6077778,Sullivan,IL,disk,300,3 disc shaped objects +2010-11-05,34.1975,-119.1761111,Oxnard,CA,fireball,600,UFO over Oxnard California Nov 5th 2010 +2010-11-05,34.1477778,-119.1941667,Port Hueneme,CA,fireball,300,Flying object on fire then glowing White in sky Over Ocean +2010-01-15,33.4147222,-111.9086111,Tempe,AZ,circle,300,Orange, glowing, floating circular object over Tempe. +2010-01-15,33.9791667,-118.0319444,Whittier,CA,disk,20,round saucer with bright lights circiling around it +2010-11-05,34.1705556,-118.8366667,Thousand Oaks,CA,oval,30,I was wondering if anyone in Ventura count saw this craft. At first, I thought it was fireworks display and then a missile +2010-11-05,35.715,-81.9311111,Nebo,NC,light,180,Brightly glowing orangish colored light flying too low to be "normal" aircraft. +2010-11-05,38.6822222,-104.7002778,Fountain,CO,chevron,30,V-Shaped that looked like a cluster of stars. +2010-11-05,41.35,-72.0788889,Groton,CT,triangle,2700,Large Triangle with lights object and three small objects +2010-01-15,35.7527778,-82.5466667,Flat Creek,NC,triangle,60,Triangle craft headed towards Mars Hill, NC +2010-11-05,38.3488889,-120.7730556,Jackson,CA,oval,30,Ovular shaped craft with 5 orange-red lights seen in sky at night. +2010-01-15,32.7252778,-114.6236111,Yuma,AZ,light,15,Three white round lights morphed into two, changed colors and then disappeared in the sky near Yuma, AZ. +2010-01-15,41.6744444,-72.8586111,Plainville,CT,rectangle,30,Rectangular object moving across the sky. +2011-01-15,33.5091667,-111.8983333,Scottsdale,AZ,circle,30,A glowing green circle gliding acoss the sky +2011-01-15,39.1619444,-84.4569444,Cincinnati,OH,cone,10,Shooting star like thing came down UFO appeard with a gold glow +2011-11-05,33.5508333,-81.8041667,Warrenville,SC,other,172800,Color changing, rotating, moving object/star seen more than once in night sky. ((NUFORC Note: Star?? PD)) +2011-01-15,42.9361111,-114.405,Shoshone,ID,light,1200,Saw strange light going in circles, then it shot up to space. +2011-01-15,30.2888889,-91.2341667,Plaquemine,LA,circle,1935,A bright white light that floats in the air with no aviation lights +2011-11-05,42.3583333,-71.0602778,Boston,MA,triangle,180,Dark triangular craft glided over Boston on 11-05-11 at 5 AM +2011-11-05,48.4377778,-93.0272222,Kabetogama,MN,light,7200,Lights in the sky - hunting opener - Kabetogama, MN +2011-11-05,33.7455556,-117.8669444,Santa Ana,CA,triangle,120,Blinkings lights with no structure or purpose, with little to no movement. +2011-11-05,38.5291667,-76.9755556,La Plata,MD,unknown,300,I was driving south 301 just coming out of LA PLATA MD before Preference Estates looked up and saw to the left of 301 slow moving firer +2011-11-05,39.7391667,-75.5983333,Elsmere,DE,diamond,5,Aircraft comes and disappears out of thin air. +2011-11-05,41.5766667,-75.2591667,Honesdale,PA,other,900,A cluster of orange lights in the sky spread out and one by one they disappeared +2011-11-05,41.4244444,-91.0430556,Muscatine,IA,light,900,Bright orange lights moving slow across the sky. +2011-11-05,40.5122222,-74.8597222,Flemington,NJ,formation,120,slow moving red and white lights +2011-11-05,37.0030556,-88.2344444,Grand Rivers,KY,fireball,120,fireball, silent, moving straight over top of town, too fast for balloon, too slow for aircraft, no clue, never seen anything like that +2011-01-15,30.5755556,-90.9530556,Watson,LA,triangle,180,Triangle craft in Watson, la. Traveling over a field and then crossed the hwy. and vanished. On January 15th at 8:00 pm I was he +2011-01-15,33.3527778,-111.7883333,Gilbert,AZ,circle,180,Four orange objects move across the sky in Gilbert, Arizona, before disappearing one by one. +2011-11-05,42.6055556,-83.15,Troy,MI,sphere,600,On 11/5 numerous orange-red orb lights seen travelling across the sky and disappearing in Troy, Michigan. +2011-11-05,26.1416667,-81.795,Naples,FL,fireball,600,Two objects that appeared to be fireballs coming from the North sky in Naples Florida +2011-11-05,42.065,-104.1811111,Torrington,WY,cigar,2,I was on a hill enjoying the sunset. I fell asleep, and I woke up because of a very bright light in the sky. It soared past, it was so +2011-11-05,33.4625,-117.6708333,Capistrano Beach,CA,fireball,60,Bright glowing ball huvering over the ocean,jerked to the right than down,than vanished!! +2011-01-15,44.1719444,-72.6513889,Northfield Falls,VT,fireball,600,Fireballs in the sky +2011-01-15,44.7677778,-93.2775,Burnsville,MN,oval,5,very fast. +2011-11-05,47.6063889,-122.3308333,Seattle,WA,sphere,5,2 orange balls traveling far faster than any jet in straight line with no sound. +2011-01-15,41.7519444,-87.9738889,Darien,IL,light,900,10+ orange lights following one another seen on the SW side of Chicago +2012-11-05,40.7266667,-115.585,Spring Creek,NV,disk,900,This wasn't just a normal sighting we had time to get a telescope and point it south over lamoille canyon (south). All four of us saw a +2012-11-05,26.1,-80.4,Weston,FL,fireball,1200,Amazing light show, with no answers! +2012-11-05,44.8830556,-68.6725,Orono,ME,circle,180,Bright red ball of light movong at rapid speeds and jets flying towards it +2012-11-05,40.6763889,-74.2911111,Kenilworth,NJ,unknown,600,Still hovering aircraft with loud noise that vibrated my body that swooped off after I recorded video of under a minute. +2012-01-15,28.5380556,-81.3794444,Orlando,FL,light,5,Rapid moving glowing oval craft moving across the night sky for 5 secs. so fast it seemed of alien origin. +2012-11-05,40.7608333,-111.8902778,Salt Lake City,UT,triangle,1200,((NUFORC Note: Witness provides no information. PD)) +2012-01-15,45.1977778,-93.3869444,Anoka,MN,disk,20,Huge and silent +2012-11-05,41.7797222,-71.4377778,Cranston,RI,sphere,60,3 spheres in Cranston, RI. +2012-01-15,41.9219444,-71.55,Smithfield,RI,triangle,300,Triangular lighted shape in the sky around 5 pm +2012-11-05,39.83,-75.4419444,Boothwyn,PA,cigar,600,4 bright amber cigar-shaped lights at a 45 degree angle like "/" at the PA/DE state line +2012-11-05,41.7122222,-72.6086111,Glastonbury,CT,changing,3,Greenish-bluish &quot;asteroid&quot; comes to dead stop in sky and simultaneously turns to red oval light. +2012-11-05,41.3972222,-73.6175,Brewster,NY,fireball,0.5,Greenish-Blue Fireball half the speed of a shooting star and clearly falling through the atmosphere. +2012-11-05,41.8463889,-71.8880556,Dayville,CT,fireball,3,While driving down the highway, I noticed a green fireball with an orange tail approximately 300 feet from the ground. The object was +2012-01-15,33.4222222,-111.8219444,Mesa,AZ,rectangle,240,Yellowish/orange sphere seen by Wife and Myself. +2012-01-15,33.4222222,-111.8219444,Mesa,AZ,oval,180,6 orange globes in the east valley sky +2012-11-05,41.2222222,-73.0569444,Milford,CT,fireball,600,Six Flaming Flying Objects - Identified - Case Closed +2012-11-05,45.5236111,-122.675,Portland,OR,fireball,120,Watched an Orange firery object in the sky. +2012-01-15,46.1880556,-123.83,Astoria,OR,other,2340,Fixed bright yellow light mass, emanating multiple sharp, pointed rays all around it. ((NUFORC Note: Venus?? PD)) +2012-01-15,41.3722222,-73.7338889,Mahopac,NY,light,60,Star like object moving flying over Mahopac NY +2012-11-05,37.6138889,-122.4858333,Pacifica,CA,circle,120,On pacifica beach we saw 4 orange objects hovering in the night sky. +2012-11-05,41.7141667,-72.6530556,Wethersfield,CT,formation,900,3 or 4 groups of 3 or 4 yellow/ orange small ojects traveling NNE to SSW, disappeared one by one +2012-11-05,33.6888889,-78.8869444,Myrtle Beach,SC,formation,12,Fleet Formation of 7 fireballs in a linear pattern. +2012-11-05,27.2155556,-81.8586111,Arcadia,FL,light,900,Flying in a Cessna 182 North of LaBelle VOR, encounter strange light not on radar. +2012-11-05,33.1958333,-80.0133333,Moncks Corner,SC,formation,7,On 11/5/12 seven lights were seen that appeared in a sequence, making a perfect line in the sky, and then disappeared. +2012-11-05,40.7488889,-74.2616667,South Orange,NJ,triangle,2,I was standing in my back patio looking out at a few planes in the distance, as it is very dark with the current power outage. I notice +2012-01-15,34.7369444,-82.2544444,Simpsonville,SC,triangle,20,Points of lights in the formation of a triangle spotted in Greenville county South Carolina. +2012-01-15,28.555,-82.3880556,Brooksville,FL,fireball,1800,Bright light in sky sitting still for at least 30 mins. +2012-01-15,44.5647222,-123.2608333,Corvallis,OR,light,600,3 red-gold lights, moving slowly and silently from west to east between low clouds and the treetops. +2012-01-15,36.4483333,-93.9738889,Garfield,AR,changing,4,Bright green fiery object with bent tail of fire speedily descending altitude vertically then in an arc from due south toward southwest +2012-01-15,37.7644444,-89.335,Murphysboro,IL,light,15,Pinkish light zig zags in sky. +2012-11-05,38.6947222,-120.8138889,Diamond Springs,CA,unknown,1800,The objects moved at different speed and then stopped +2012-11-05,32.9594444,-117.2644444,Del Mar,CA,triangle,10,Overhead we saw V or chevron shaped with four lights on each side, huge, silent, very fast moving southward along coastline,amazing. +2012-01-15,45.1475,-122.5758333,Molalla,OR,sphere,45,Orange orb seen in Molalla OR on 01/15/2012. Lasted 45 seconds. +2012-11-05,47.2530556,-122.4430556,Tacoma,WA,light,300,Single low flying/floating/gliding ORANGE light in sky +2012-11-05,36.1866667,-94.1286111,Springdale,AR,light,2,Light in sky shot off leaving trail of sparks +2012-11-05,43.6136111,-116.2025,Boise,ID,other,2.5,Supersonic, silent aircraft with multiple lights, and one extremely bright white flashing light. +2012-01-15,40.6083333,-75.4905556,Allentown,PA,triangle,300,Three lights, triangle shaped, not flashing, receding towards horizon very quickly. +2013-01-15,41.0388889,-73.8655556,Irvington,NY,unknown,1200,UFO with colored moving lights and symbols on it +2013-01-15,47.0380556,-122.8994444,Olympia,WA,fireball,2,White, turning to blue, fireball over Olympia airport. +2013-11-05,20.8783333,-156.6825,Lahaina,HI,flash,3,Saw a bright flash fall from the sky straight down to the ocean. Witnessed on Maui but object could have been over Oahu. +2013-01-15,42.4975,-94.1677778,Fort Dodge,IA,triangle,300,I was watching out my window as I usually do because I see them every night. We werewatching four bright lights apeard hot pink and we. +2013-11-05,33.4708333,-81.975,Augusta,GA,cigar,300,Silver cigar shaped object crosses Augusta, Ga, sky silently around 7:15am 11/5/2013 +2013-01-15,34.0561111,-78.8905556,Loris,SC,light,30,2 more pairs of light sightings over Myrtle Beach. +2013-11-05,42.3369444,-71.2097222,Newton,MA,circle,10,Star like object travels a course then disappears in day light. +2013-01-15,40.7583333,-82.5155556,Mansfield,OH,circle,300,A orange sphere in the sky. +2013-11-05,30.4288889,-90.5486111,Springfield,LA,circle,15,Ufo over springfield La. +2013-11-05,29.7630556,-95.3630556,Houston,TX,sphere,15,Round bright light. +2013-11-05,61.5813889,-149.4394444,Wasilla,AK,disk,120,One object flying east to west over Wasilla area...Well lit displaying bright white, green and red colors. Flying very erratically. +2013-01-15,34.0561111,-78.8905556,Loris,SC,other,60,5 lights seen above tree line NW of Loris, SC. +2013-11-05,40.2413889,-75.2841667,Lansdale,PA,circle,180,5 slow moving glowing objects in the sky. +2013-11-05,34.2541667,-110.0291667,Show Low,AZ,fireball,60,Bright ball in the southern sky then disappeared there was no clouds present. +2013-11-05,42.4391667,-123.3272222,Grants Pass,OR,fireball,20,Red orange fire ball northbound at a curve towards earth. +2013-11-05,44.9902778,-123.025,Keizer,OR,cylinder,240,Hovering Orange-ish light over Keizer, OR. +2013-11-05,38.1041667,-122.2555556,Vallejo,CA,triangle,12,Triangle shaped craft with orange lights flew quickly and silently. +2013-01-15,33.4483333,-112.0733333,Phoenix,AZ,light,3600,Pairs of orange lights. +2013-01-15,32.4366667,-111.2247222,Marana,AZ,light,300,Hovering orange lights over Marana AZ. +2013-01-15,29.4238889,-98.4933333,San Antonio,TX,unknown,600,Flashing blue lights on craft, flashed 2 different patterns and was not indicative of any aircraft in our area. +2013-11-05,33.5091667,-111.8983333,Scottsdale,AZ,other,15,Looked like a silver of a moon, or circular in shape. Very low and gliding. +2013-11-05,41.1383333,-81.8638889,Medina,OH,fireball,180,2 fireballs, same pattern, silent. +2013-11-05,40.1744444,-74.9230556,Langhorne,PA,circle,120,Solid orange lights arranged in the shape of the big dipper but with many more in the tail. They floated in sync with each other. +2013-11-05,34.9569444,-92.4272222,Mayflower,AR,triangle,1300,Bright light v shaped craft. +2013-11-05,30.1763889,-85.8055556,Panama City Beach,FL,fireball,600,Four glowing orange orbs were seen over the Gulf of Mexico in Panama City Beach, FL. +2013-11-05,38.3497222,-81.6327778,Charleston,WV,oval,60,Bright Amber light in the sky. +2013-11-05,42.1291667,-80.0852778,Erie,PA,other,480,Extremely bright white light!! +2013-11-05,41.1563889,-80.5694444,Hubbard,OH,triangle,7200,Bright orange lights in the shape of a triangle or star appear at night. +2013-11-06,30.5452778,-87.7516667,Silverhill,AL,cylinder,600,Odd vertical light hovers up and down, repeat sighting. +2014-01-15,20.9033333,-156.3694444,Paia,HI,sphere,120,On 1/15/14 I Saw a golden sphere shaped object hovering over the water on the North Shore at 3:30am. +2014-01-15,38.6858333,-121.0811111,El Dorado Hills,CA,light,1800,Bright blinking light very far away that moved right to left and vertically with 2 smaller object's leaving it. +2014-01-15,30.4380556,-84.2808333,Tallahassee,FL,teardrop,600,Multiple roundish or teardrop shape orbs seen during the daytime. +2014-01-15,35.8163889,-91.9091667,Pleasant Grove,AR,disk,15,The object was stationary, color of shiny brass, Gave me the feeling of being 'huge, and far away'. +2014-01-15,33.4669444,-117.6972222,Dana Point,CA,sphere,1200,Black object flew around coastal cloud, then flew into the cloud, cloud dissipated 20 min. later. +2014-01-15,32.9358333,-92.605,Spearsville,LA,triangle,2700,12-15 lights, rounded corner triangle shape, hovered & tilted fluidly, disappeared after 45 min, complete silence. +2014-01-15,33.5008333,-86.7522222,Mountain Brook,AL,light,120,Pulsing light hovering, stationary and moving slowly over busy rush hour traffic - NOT a helicopter. +2014-01-15,35.7111111,-78.6144444,Garner,NC,disk,300,7 Red Lights. +2014-01-15,33.5205556,-86.8025,Birmingham,AL,formation,60,Red and white lights appearing to be connected. Large string of lights. +2014-01-15,20.785,-156.4655556,Kihei,HI,circle,240,An orange hovering light moving very slowly, occasionally hovering, then moving north very fast. +2014-01-15,33.4041667,-79.9219444,St. Stephen,SC,sphere,720,Either 1 large craft or 6 objects, 4 escorting 2. +2014-01-15,33.6675,-84.0177778,Conyers,GA,formation,600,Massive/Quiet red and white light craft. +2014-01-15,33.89,-84.1430556,Lilburn,GA,changing,3600,Red and white/yellow stars formed a large, moving cluster then formed into a straight line moving northwest in the sky. +2014-01-15,34.6183333,-82.4780556,Williamston,SC,formation,180,A linear pattern of 12 reddish lights moving to the South. +2014-01-15,37.2872222,-121.9488889,Campbell,CA,fireball,240,Single fireball spotted over Silicon Valley. +2014-01-15,33.8388889,-83.9008333,Loganville,GA,light,120,5 to 7 aircraft in tight, yet scattered formation, with flashing red light, no noise. +2014-01-15,33.5966667,-83.8602778,Covington,GA,light,300,Weird. +2014-01-15,28.6772222,-99.8277778,Crystal City,TX,flash,5,Extremely bright bursts of white light moving at high speed approx. 200 feet above the ground. +2014-01-15,33.3966667,-84.5958333,Peachtree City,GA,sphere,20,3 lights in a straight line, 2 red and one white +2014-01-15,33.3966667,-84.5958333,Peachtree City,GA,sphere,20,3 lights in a straight line, 2 red and one white. +2014-01-15,43.3638889,-71.94,North Sutton,NH,unknown,600,Three unidentified smoke trails followed by super fast super high jets. +2014-01-16,22.1019444,-159.3086111,Kealia,HI,fireball,1200,Fireball w- chinese laturns and parade of triangles. +1970-01-16,27.9011111,-81.5861111,Lake Wales,FL,oval,900,I had a very close encounter with a ufo. It was almost on top of my truck. They were observing me and had forced me pull over. +1986-01-16,40.5888889,-73.6258333,Lido Beach,NY,circle,1200,The Object was above our car hovering. We didn't see it move towards us ...it was just there in an instance. +1989-11-06,35.1894444,-114.0522222,Kingman (North Of, Mt. Tipton Area),AZ,sphere,60,Bright green orb north off highway 93 north of Kingman, AZ +1992-11-06,39.12,-90.3283333,Jerseyville,IL,disk,600,saucer approached jerseyville boy only 60 feet away and 30f feet above ground. +1996-11-06,40.3055556,-89.6027778,San Jose,IL,formation,240,Coming home from voting in "96" my wife and I noticed 7-8 craft off to the west. Flying very erratically, almost looked like they were +1997-01-16,29.5686111,-97.9644444,Seguin,TX,fireball,5,San Antonio Express-News ran 3 stories on the 'UFO' that was found in a rancher's field.From San Antonio Express-News story, 2 witn +1997-01-16,38.5733333,-109.5491667,Moab,UT,other,180,Very bright stationary object approx. 30 deg.off horizon. Emitted triangular yellow greenlight, modulating from flood to spot beam. T +1997-11-06,42.8694444,-85.6447222,Kentwood,MI,other,60,Large, oval object with 2 small flashing red lights and 2 large steady white lights, 150 to 200 feet in air above a barn right next to +1998-11-06,47.7625,-122.2041667,Bothell,WA,oval,60,Saw 2 cylindrical and 4 oval objects slowly descend from clouds over the Wenatchee area. About 15 jets over area, but only 2 or 3 at a +1998-01-16,34.0005556,-81.035,Columbia (Near Ft. Jackson),SC,cone,40,Saw small cone shaped object near Fort Jackson army base. +1998-11-06,44.0583333,-121.3141667,Bend,OR,formation,20,5 objects in straight line following one another. 3 objects in front as bright as surrounding stars; 4th as bright as vega; 5th as brig +1998-11-06,47.8555556,-121.9697222,Monroe,WA,cylinder,3,On Novemberƾth񫺎,approximately 6:30pm, I was heading west on Hwy2, just out of Monroe,Wa. My girlfriend and I were just coming back +1998-11-06,35.1894444,-114.0522222,Kingman,AZ,fireball,120,Large bright circular light +1998-11-06,34.8986111,-117.0219444,Barstow (Near, On I-15 N),CA,fireball,2,Green fireball with a tail falls to earth near Barstow, CA +1999-11-06,42.9133333,-85.7052778,Wyoming,MI,light,3600,looked like a plane at first changing colors, blue, red, white, real brite. But moved to the south real slow. Not up like a star. Then +1999-11-06,38.9338889,-76.8969444,Landover,MD,circle,4,Myself and three others were enjoying the evening talking,One other then myself was standing in the same direction when we seen a light +1999-11-06,38.4,-105.2166667,Canon City,CO,light,2700,Observed one bright light initially changing colors from violet to red and changing size from slightly smaller than Venus to nearly moo +1999-01-16,32.7291667,-82.72,Wrightsville,GA,disk,1200,I saw what I first thought was a plane but it seemed to hover and then shoot up and down still hovering . We watched for aprox. 20 min +1999-11-06,40.6083333,-75.4905556,Allentown,PA,disk,300,We were sitting in a car and looking up at a singal engine plane. Suddenly a small disc craft went flying past it. It was very close to +1999-11-06,40.4147222,-74.23,Matawan,NJ,triangle,180,Unbelievably large triangular shaped craft with pale orange colored lights . +1999-01-16,34.4777778,-83.7736111,Clermont,GA,disk,3600,My husband we on our back porch, asked me what it was in sky, I looked & in not far distance saw bright lights w/occasional red, got bi +1999-11-06,46.5925,-90.8836111,Ashland,WI,disk,20,these three things flew across the horizon, apparently pretty far away, over Chequamegon bay, they were pretty dull, but glowing slight +1999-11-06,40.4405556,-79.9961111,Pittsburgh (Just South Of),PA,formation,10,I had observed 8-10 faint star-like lights. They were in a v formation (20ꯠ Ft. +) moving very quickly across the sky from West to E +2000-01-16,35.71,-86.3994444,Christiana,TN,rectangle,300,I witnessed a elongated, triangular shaped object glide/float across a nearly full moon. +2000-11-06,37.775,-122.4183333,San Francisco,CA,fireball,2,green fireballs +2000-01-16,45.3933333,-93.8766667,Becker (Approx. 5 Miles W Of, On Hwy 10 Towards St. Cloud),MN,triangle,10,Traveling east along Hwy 10 around dusk, triangular craft spotted between Hwy and power plant. +2000-01-16,38.545,-121.7394444,Davis,CA,circle,60,Observed bright object (mag. ~ 1) moving NE to SE. Assumed that it was a satellite until I noticed 2 blinking lights. +2000-11-06,39.3677778,-94.3619444,Kearney,MO,egg,21,Turquoise egg flickering over my neighbor's house materialized and flew over my house. +2000-01-16,39.6416667,-77.7202778,Hagerstown (Sww Of, On I81, Intersect.i70 &Amp; I81),MD,light,2,In west, brilliant point of light(larger than star or planet) & streak fell nearly vertical from sky. +2000-11-06,29.7630556,-95.3630556,Houston,TX,triangle,90,Delta winged object flies by as power goes out in Houston Texas. +2000-01-16,32.2041667,-82.3219444,Lyons,GA,light,10,Flash in the southern sky, according to others this was similar to the night of the meteor just off the east coast, except of course th +2000-11-06,41.6661111,-81.3397222,Mentor,OH,circle,120,Round object flying through the sky +2001-01-16,47.3811111,-122.2336111,Kent,WA,light,3600,Bright lights seen moving in the sky executing 90 degree turns, and flickering colors between red, blue, and bright white. +2001-01-16,42.4405556,-76.4969444,Ithaca,NY,sphere,300,I saw a brilliant sphere, that a search light came out of...the search light went out, and the sphere disappeared. +2001-11-06,33.5386111,-112.1852778,Glendale,AZ,oval,360,2 Objects seen next to the Moon at approx. 8:30am. +2001-11-06,41.5783333,-70.5591667,East Falmouth,MA,cigar,86400,I saw a cigar shaped UFO ovre a cranberry bog. +2001-11-06,40.1933333,-90.1408333,Bath,IL,disk,3600,5 minute video of ufo siting showing shape and lights +2002-01-16,43.0386111,-78.8644444,North Tonawanda,NY,formation,20,About 20 Metalic Objects (No Lights) Moving NE Changing Formation Moving Very Fast +2002-11-06,32.2216667,-110.9258333,Tucson,AZ,light,10,Two large bright glowing lights flying in the clouds in Tucson. +2002-11-06,32.2216667,-110.9258333,Tucson,AZ,oval,10,Bright glowing lights flying in the clouds in Tucson +2002-11-06,37.1241667,-77.2261111,Disputanta,VA,light,1800,Flashing, strobing lights filling all areas of the sky +2002-01-16,37.8044444,-122.2697222,Oakland,CA,light,1200,Stationary, bright white light blinking smaller, colored lights in eastern sky. +2002-01-16,30.4380556,-84.2808333,Tallahassee,FL,light,60,Large bright white light with a blue tail-roundish shaped but elongated. Dropping vertically from the sky. +2002-01-16,42.9908333,-71.1430556,Fremont,NH,light,600,Bright blending lights +2002-11-06,32.7938889,-79.8627778,Mount Pleasant,SC,flash,3,noticed huge flash towards the east then saw streaking fireball seconds later +2002-01-16,45.5236111,-122.675,Portland,OR,light,120,Red, fuzzy ball of light streaking across in front of the mountain. +2002-01-16,42.0547222,-72.7708333,Southwick,MA,disk,600,Octagon shaped object with bright red and white lights +2002-11-06,35.489444399999996,-120.6697222,Atascadero,CA,sphere,10,fast moving orb behind clouds +2003-01-16,34.2005556,-86.1663889,Boaz,AL,circle,300,round object appeared in the sky opend parichuted out thn turned into a small plane then vanished +2003-01-16,32.7833333,-96.8,Dallas,TX,sphere,5400,Object chased by Jets producing jagged contrails for over 30 minutes.... +2003-01-16,31.7586111,-106.4863889,El Paso,TX,cigar,20,Cigar shaped object in eastern sky. +2003-01-16,33.8544444,-84.2172222,Tucker,GA,chevron,30,Flying wing spotted in Atlanta +2003-01-16,43.3005556,-73.5863889,Hudson Falls,NY,disk,300,5 Disks spotted over Upper NY State +2003-11-06,45.1230556,-92.5363889,New Richmond,WI,oval,120,I was driving along on I94 about 25 miles from St. Paul, Mn. I seen an oval shape object moving south...it was approximately 1 mile awa +2003-11-06,45.5236111,-122.675,Portland (I-5/Lombard Exit),OR,sphere,180,Young woman reports witnessing F-15 fighter jets approach a peculiar sphere over Interstate 5. +2003-01-16,34.2694444,-118.7805556,Simi Valley,CA,cylinder,600,Extremely bright object moving very slowly at a extremely high altitude +2003-01-16,40.1302778,-75.5152778,Phoenixville,PA,circle,3,I was watching NASA TV on my computer and at 2:02pm EST time nasa was broadcasting a live closeup shot of the earth. i saw a round met +2003-01-16,48.6305556,-103.1838889,Wildrose,ND,triangle,1500,made a humming buzzing noise grey in collor got withen an 1/8 of a mile from it. +2003-01-16,44.8341667,-87.3769444,Sturgeon Bay,WI,light,1500,Two bright lights over Lake Michigan, one full of colors, the other still light, same distance above water. +2003-11-06,39.5297222,-119.8127778,Reno,NV,circle,60,Bright white disc of light the size of a full moon approximately shot straight up into the sky & disapeared in less than 1 sec. +2003-11-06,34.3916667,-118.5416667,Santa Clarita,CA,cigar,60,cigar shaped craft, huge in size with a number of red lights slowly crossed the moon lit sky with a small craft chasing after it. +2003-11-06,47.7361111,-122.6452778,Poulsbo,WA,fireball,10,Large Green lighted object falling from sky. +2003-01-16,33.1191667,-117.0855556,Escondido,CA,cone,600,Cone shaped craft +2003-11-06,31.1797222,-83.7891667,Moultrie,GA,other,2400,I wasted 40 minutes of my life gazing at flashing lights +2003-11-06,43.0880556,-70.7366667,Kittery,ME,cylinder,1200,BRIGHT LIGHTS NEAR NAVAL BASE +2003-01-16,38.0194444,-122.1330556,Martinez,CA,circle,10,It was going way too fast to be a jet and it made sudden changes in direction +2004-11-06,40.5583333,-85.6591667,Marion,IN,sphere,10,2-4 pale orange spheres appeared hovering 30 degrees above the western horizon and vanished instantly +2004-11-06,28.0391667,-81.95,Lakeland,FL,sphere,10,Gold object seen in the sky near Lakeland, FL, very early on November 6th. +2004-11-06,44.1636111,-93.9991667,Mankato,MN,fireball,60,round green fireball +2004-01-16,40.9483333,-74.6175,Lake Hopatcong,NJ,triangle,300,The object was shaped like a model of a molecule with loud rumbling and a star shape at the center. +2004-11-06,34.0233333,-84.6155556,Kennesaw,GA,egg,180,WHITE LIGHT CHANGING TO REDESS GLOW, THE LIGHT APPEARED AS LOOKING THROUGH A GLASS WINDOW. THIS THING PASSED OVER HOUSE ASIF ITWAS ON A +2004-11-06,40.7441667,-73.4825,Bethpage,NY,oval,12,Silver disc flies across the sky +2004-11-06,41.9558333,-78.6441667,Bradford,PA,fireball,15,Green Fireball +2004-11-06,47.4236111,-120.3091667,Wenatchee,WA,light,1,Momentary flash of 7 bright lights near Saddle Rock +2004-11-06,29.5894444,-96.9847222,Moravia,TX,light,60,Rapidly moving object. +2004-11-06,40.4166667,-86.8752778,Lafayette (35 Miles East Of),IN,light,240,Bright stationary orange lights spotted in the North Western sky 35 miles east of Lafayette +2004-11-06,40.4166667,-86.8752778,Lafayette (35 Miles East Of),IN,light,30,1 Bright orange light appeared in the sky. Faded out, and appeared elsewhere in the northwestern sky. Up to 3 or 4 lights at a time--Ra +2004-11-06,39.2022222,-83.6116667,Hillsboro,OH,triangle,120,3 triangular white lights a few hundred feet above treeline and relatively close distance +2004-01-16,34.1083333,-117.2888889,San Bernardino,CA,unknown,300,UNKNOWN HOVERING OBJECT +2004-01-16,40.2077778,-75.0730556,Ivyland,PA,circle,300,I saw the ufo's outride my bedroom window which faces the south corner of the house.There appeared to be 3 objects.The next mor +2004-11-06,40.3355556,-75.9272222,Reading,PA,light,300,While driving home from work there was a BRIGHT light blinking red,blue, and white stationary high above the "mountain". After being ho +2005-01-16,29.4238889,-98.4933333,San Antonio,TX,light,5,Two sets of falling object fell over the north part of San Antonio, seemed like two sets of car headlights racing towards the surface +2005-11-06,39.1619444,-84.4569444,Cincinnati,OH,other,60,large object seen north of Cincinnati, 9 lights grouped in 3's, 1 group broke away to follow us +2005-01-16,42.6072222,-83.9294444,Howell,MI,flash,5,blinding flash +2005-01-16,32.7152778,-117.1563889,San Diego,CA,circle,180,Two reddish dots appear in the sky, move around a bit and then fade out +2005-01-16,39.8366667,-105.0366667,Westminster,CO,circle,60,My friend and i where outside smoking and noticed that there was quite a few falling stars.I was facing to the north and he was facing +2005-01-16,34.051944399999996,-118.0458333,South El Monte,CA,disk,600,5 circular disk-like objects; one with a blue disk-like object affixed to it moving back and forth half way around it continuously. +2005-11-06,34.4436111,-118.6086111,Valencia,CA,formation,60,Flying aircraft being followed by small dark objects, behind the tail of the plan. +2005-01-16,29.7352778,-94.9772222,Baytown,TX,other,300,vertical and horizontal flares moving slowly in the sky ((NUFORC Note: Both photos are of contrails against a clear sky. PD)) +2005-11-06,30.1102778,-97.315,Bastrop,TX,light,900,Light high in the sky after dusk appeared to be satellite , but curved and changed speed +2005-11-06,36.9341667,-90.7466667,Ellsinore,MO,fireball,20,Fireball that split into 7 different objects +2005-11-06,42.8863889,-78.8786111,Buffalo,NY,fireball,3,Evening sky was partly cloudy. Driving on 290 to the thruway, not far from the University at Buffalo. A bright green light from NE to S +2005-11-06,42.9305556,-75.1130556,Cedarville,NY,fireball,30,red tail, white center blue, comet shape flaming, than disapeared, with in seconds. +2005-11-06,36.9955556,-91.0144444,Van Buren (East Of),MO,light,120,Strange Red lights, and a sparatic small light appear in sky... +2005-11-06,38.1302778,-121.2713889,Lodi,CA,fireball,120,My daughter and I in Lodi, California watched a Orange/yellow glowing object moving slowly over my house. +2005-11-06,47.8211111,-122.3138889,Lynnwood,WA,circle,10,Black orb dissapeared into clouds heading north along HWY 99 Lynnwood WA +2005-11-06,33.0197222,-96.6986111,Plano,TX,light,1800,fast moving white balls increased in size then disappeared +2006-11-06,39.1625,-76.625,Glen Burnie,MD,unknown,900,Returning from work my husband and I spotted a huge glowing, intense lights that resembled a fire, along the woods on 8th avenue, Glen +2006-11-06,27.5061111,-99.5072222,Laredo,TX,disk,120,Laredo Texas sighting November 2006 +2006-11-06,33.5205556,-86.8025,Birmingham,AL,teardrop,7200,Hanging object in Southeastern sky US 11-06-06 +2006-11-06,41.7858333,-88.1472222,Naperville,IL,sphere,180,bulbous metallic craft at low altitude moving north to south at speed much faster than blimp. +2006-11-06,34.0522222,-118.2427778,Los Angeles,CA,light,300,Very bright object moving from the Northwest to the Southeast viewed in Los Angeles, CA. +2006-11-06,42.4405556,-76.4969444,Ithaca,NY,sphere,7200,spherical bright light, radiating red, green and white colors, stationary in eastern horizon, then slowly moving south +2006-11-06,29.3836111,-94.9025,Texas City,TX,disk,13,Glowing ojbect drops below and returns to cloud cover +2006-01-16,43.8569444,-70.1036111,Freeport,ME,light,6300,Three lights form a triangle over Maine +2006-11-06,42.1391667,-87.9288889,Wheeling,IL,unknown,120,saw something from the norwest suburbs of chicago on Monday 11/06/06 +2006-01-16,41.4569444,-72.8236111,Wallingford,CT,oval,5,brightblue light decending at high speed it was the size of small car about 1/4 mile from my location and end was red it shocked me +2006-01-16,44.6377778,-69.5036111,Clinton,ME,circle,2,green object trailing haze +2006-01-16,33.2341667,-97.5858333,Decatur,TX,disk,60,1 night. 2 witnesses. 3 lighted disk. And a whole lot of confusion. +2007-01-16,45.9172222,-89.2441667,Eagle River,WI,unknown,600,i notice something that grabs my attention through the window, and i go outside for a look. as i exit my garage i notice everything ar +2007-11-06,36.9902778,-86.4436111,Bowling Green,KY,light,240,Bright white lights over southern KY. +2007-11-06,41.85,-87.65,Chicago,IL,disk,600,Dancing Dazzling Lights Up In The Sky +2007-01-16,44.5438889,-73.1483333,Colchester,VT,light,180,I saw an extremely bright light traveling in a perfectly straight line from West to East. +2007-11-06,38.2541667,-85.7594444,Louisville,KY,light,120,Louisville, Ky. 6 am. Two lights moving across the sky from horizon to horizon in about 2 min.. ((NUFORC Note: ISS & Shuttle. PD)) +2007-01-16,39.0838889,-77.1530556,Rockville,MD,disk,180,Flying silent metallic disk passes over my head +2007-01-16,27.9472222,-82.4586111,Tampa,FL,disk,3,video footage of USO/UFO ignored (brilliant). Say hello history channel...u will c the footage there....... +2007-11-06,28.5380556,-81.3794444,Orlando,FL,cylinder,60,5 white cylinder shaped objects flying together at a consistant pace in Orlando, FL +2007-11-06,39.1533333,-74.6933333,Sea Isle City,NJ,sphere,30,Lighted Sphere over ocean at Sea Isle City, NJ +2007-11-06,28.555,-82.3880556,Brooksville (10 Miles East Of),FL,unknown,40,Metallic object stationary over I-75. Instantly dissapeared. Streak across sky later. +2007-01-16,34.1808333,-118.3080556,Burbank,CA,disk,4,Silver disk seen in Burbank, CA 1/16/2007 at 5:50 pm PST +2007-11-06,41.8238889,-71.4133333,Providence,RI,light,60,Elongated yellowish bar of light which pulsated as it travelled +2007-01-16,41.5325,-85.2722222,South Milford,IN,light,120,I witnessed a bright light hover for a minute, then shoot straight up into the sky and disappear. +2007-01-16,34.6277778,-86.2744444,Woodville,AL,light,1800,My husband and I have been seeing a light on the western horizon right at about 6pm every night for a while now. We traveled west on Hw +2007-01-16,35.9555556,-80.0055556,High Point,NC,triangle,300,Driving under a strange hovering craft looking like a triangle plane. +2007-11-06,33.4352778,-112.3575,Goodyear,AZ,changing,5,Strange lights appear in night sky over Goodyear Arizona. +2007-01-16,38.6366667,-90.0255556,Caseyville,IL,triangle,7200,A triangle shaped low flying object was seen near Old Collinsville Rd in Caseyville, IL on January 16, 2007. +2007-11-06,34.1733333,-118.5530556,Tarzana,CA,flash,15,light over san fernando valley +2007-01-16,35.9555556,-80.0055556,High Point,NC,chevron,300,V-shaped craft hovering near High Point +2007-01-16,36.6777778,-121.6544444,Salinas,CA,oval,30,I was observing a small plane at night when I noticed dim lights behind first aircraft. +2007-01-16,33.1975,-96.615,Mckinney,TX,cigar,900,it kept moving in a circular path, like it was searching for something +2007-01-16,39.9791667,-76.2766667,Willow Street,PA,light,180,Large reddish pink light Decending from sky in southern lancaster county, Pennsylvania +2008-01-16,41.7013889,-71.1555556,Fall River,MA,flash,300,It was about 5:30 am at the time i spotted this object in the early morning sky... +2008-11-06,42.9758333,-76.5711111,Throop,NY,light,7200,It moved in an unreal manner. ((NUFORC Note: Probable star, we suspect. PD)) +2008-01-16,41.8975,-71.9630556,Pomfret,CT,triangle,240,Triangle with lights across the back +2008-01-16,36.2694444,-95.8544444,Owasso,OK,triangle,240,Huge triangle shape steady red and white lights not moving and low to the ground appeared many city blocks in length and width +2008-01-16,41.7625,-70.7222222,Wareham,MA,unknown,600,UFO fleet? Hundreds of sparkling lights +2008-01-16,41.6458333,-70.6188889,North Falmouth,MA,unknown,600,Very large silent strobing light object of indiscernible shape moving slowly over the horizon before dawn. +2008-11-06,29.5375,-95.1180556,Webster,TX,light,30,Stange tube like object with lights on it. +2008-01-16,33.6638889,-114.2291667,Quartzsite,AZ,flash,60,Bright Light, looked like Jupiter but too yellow, dimmed as it slowly moved South +2008-01-16,41.85,-87.65,Chicago,IL,circle,1800,Bright object seen over Lake Michigan. ((NUFORC Note: Sirius?? PD)) +2008-01-16,33.4483333,-112.0733333,Phoenix,AZ,circle,60,A floating platform was seen among the clouds while walking downtown. +2008-11-06,26.3013889,-98.1630556,Edinburg,TX,other,180,v shaped object floating in the sky in broed daylight for 3 minutes +2008-01-16,40.9169444,-72.6625,Riverhead,NY,unknown,120,UFO Spotted in Riverhead NY 01/16/08 +2008-11-06,27.9472222,-82.4586111,Tampa,FL,changing,300,odd shaped flying object +2008-11-06,35.0525,-78.8786111,Fayetteville,NC,fireball,5,It was a a yellow fire ball falling fast towards the noth of Fayetteville , NC +2008-11-06,39.0180556,-91.8969444,Auxvasse,MO,disk,60,Disk flying low, coming in for a landing. +2008-11-06,35.5961111,-78.1244444,Kenly,NC,unknown,1800,1 Craft with multicolors flashing rapidly stationary at high altitude for 30min. ((NUFORC Note: Sighting of star or planet?? PD)) +2008-11-06,32.5419444,-97.3205556,Burleson,TX,unknown,1200,strange lights in sky. ((NUFORC Note: Stars or planets?? PD)) +2008-01-16,41.5933333,-87.3463889,Gary,IN,triangle,300,Five black triangular ships sighted in Gary, Indiana city limits close enough for me to get a clear view of what they looked like +2008-01-16,40.8661111,-86.0775,Denver,IN,triangle,2700,My son was on the gravel road leading to our home. He saw lights that were hovering over our home. As he neared the lights (the light +2008-11-06,37.6391667,-120.9958333,Modesto,CA,triangle,6,Triangle shaped object speeding over town at night. +2008-11-06,38.8338889,-104.8208333,Colorado Springs,CO,triangle,1800,I was driving to work on November 06 2008. I stopped for Sonic to eat before work. I live very close to the back side of the locale air +2008-01-16,40.4147222,-74.3658333,Old Bridge,NJ,triangle,300,TRIANGULAR WITH 8 BRIGHT LIGHTS +2009-01-16,35.3733333,-119.0177778,Bakersfield,CA,formation,1200,2 ufo's parallel to each other descending,zooming diagonally,disppearing and reappearing, +2009-11-06,27.9472222,-82.4586111,Tampa,FL,cigar,600,Fighter jets circled the object +2009-01-16,34.1866667,-118.4480556,Van Nuys,CA,diamond,25,It got my attention by the reflection of the sun. +2009-11-06,30.2669444,-97.7427778,Austin,TX,cigar,90,Cigar shaped object seen over Austin, Texas flying from West to East +2009-01-16,32.2216667,-110.9258333,Tucson,AZ,light,1800,A red dot in the sky orbiting a white dot, while the white dot moves across the sky making circles. +2009-11-06,30.3958333,-88.8852778,Biloxi,MS,circle,300,Strange light seen in Biloxi, MS. +2009-11-06,40.1672222,-105.1013889,Longmont,CO,light,600,Three to four strobe-effect lights pass over Longmont, distinctly different from other aircraft in the area. +2009-01-16,35.0844444,-106.6505556,Albuquerque,NM,other,30,Three spheres of light connected in a club like shape, lower lights soft whitish, upper light yellowish orangish traveling silently. +2009-01-16,45.1719444,-93.8744444,Buffalo,MN,light,7200,Bright, white object with flashing red, yellow, green, and blue lights hovering in the night sky seen from Buffalo, Minnesota +2009-01-16,46.4163889,-117.0441667,Clarkston,WA,light,2100,It looked like a huge star, but far to close, and way to bright +2009-01-16,37.775,-122.4183333,San Francisco,CA,light,30,White orb turned pink, then red, then faded out as it moved across the sky. +2009-01-16,33.7488889,-84.3880556,Atlanta,GA,light,1200,My wife and I noticed a bright light in the direction west of Atlanta tonight that became very bright and then dim and repeated the sam +2009-01-16,33.8352778,-117.9136111,Anaheim,CA,disk,60,Flying disk over Anaheim Ca +2009-01-16,43.9808333,-84.4863889,Gladwin,MI,sphere,2700,Slow moving orange light that pulsates red flying at low altitude +2009-11-06,36.7280556,-108.2180556,Farmington,NM,disk,300,Strange saucer like object with red flashing lights decending slowly from moon +2009-01-16,42.6425,-73.7433333,Rensselaer,NY,triangle,180,Three white lights in triangle shape +2009-01-16,32.7152778,-117.1563889,San Diego,CA,light,180,Large groupings of 7-9 or more dark orange lights-not moving but did eventually fade away. No object seen-just lights +2009-01-17,32.7447222,-116.9980556,Spring Valley,CA,light,120,White ball of light crosses sky above and changes direction +2010-11-06,39.3111111,-94.9222222,Leavenworth,KS,light,60,Run of the Mill UFO +2010-11-06,39.3111111,-94.9222222,Leavenworth,KS,sphere,60,((HOAX??)) AT about 3:20 am I was leaving once again from a location with a high vantage point where I can see most of anything +2010-11-06,42.4083333,-71.0125,Revere,MA,light,600,Light spotted cavorting in the sky near Revere. ((NUFORC Note: Report submitted by experienced amateur astronomer. PD)) +2010-11-06,30.2669444,-97.7427778,Austin,TX,sphere,40,Silver metallic spherical object moving in the afternoon sky over Austin. Correction of date from 11/2 to 11/6/2010 +2010-11-06,42.3944444,-77.6969444,Arkport,NY,light,60,seen large bright orb in western sky +2010-11-06,39.7119444,-92.9480556,Marceline,MO,light,20,Multiple white orbs crossing the road at fencerow height in broad daylight. +2010-01-16,43.6136111,-116.2025,Boise,ID,changing,120,Red Light Above Boise Descends at Tremendous Speed, Stops to Hover, Emits Radiation - All filmed by Observer 01/16/2010 +2010-01-16,33.8752778,-117.5655556,Corona,CA,triangle,300,White lights on triangular object over corona +2010-01-16,33.8752778,-117.5655556,Corona,CA,unknown,180,CA, Corona White Flashing Lights +2010-11-06,32.6080556,-80.085,Kiawah Island,SC,oval,90,First Time sighting due South from Kiawah Island ocean front home -- Bright Orange +2010-01-16,42.0866667,-71.475,Bellingham,MA,light,120,Blinking light zig-zagging across the sky. +2010-01-16,39.2191667,-121.06,Grass Valley,CA,unknown,1,I saw a very bright, white light at a very high speed shoot diagonally upwards into the sky. +2010-01-16,36.0397222,-114.9811111,Henderson,NV,chevron,6,small stealth bomber shaped object flew overhead silently +2010-11-06,33.5980556,-117.8722222,Corona Del Mar,CA,light,1200,8-10 Flashing Lights moving in unison down the coast changing formation and dissappearing. They were higher than normal aircraft. +2010-11-06,33.8622222,-118.3986111,Hermosa Beach,CA,changing,5,5-7 looked like stars going across the sky in a "V" shape from West to East, in 3-5 seconds +2011-11-06,42.4666667,-70.95,Lynn,MA,fireball,2700,ufo lynn ma boston street towards western ave area +2011-11-06,43.1547222,-77.6158333,Rochester,NY,flash,1,Rochester NY lights in the sky two sightings +2011-11-06,37.7397222,-121.4241667,Tracy,CA,teardrop,5,Green ball of light in the sky floats and the vanishes within 3 seconds. +2011-11-06,31.2230556,-85.3905556,Dothan,AL,light,600,Short sighting in front of clouds dull natural colored light +2011-11-06,34.2283333,-118.5358333,Northridge,CA,oval,10,My wife and I saw what appeared to be an oval shaped chrome colored craft closely circle it’s way around a private jet that was ascendi +2011-11-06,40.3041667,-73.9927778,West Long Branch,NJ,rectangle,480,I was driving South on US Highway 36 in West Long Branch New Jersey when I saw in the distance a rectangular object floating along just +2011-11-06,42.7675,-78.7441667,Orchard Park,NY,disk,3,2 Unexplainable luminous or reflective objects filmed by chemtrails +2011-01-16,33.3941667,-104.5225,Roswell,NM,egg,3,I was on flight American Airlines 1924 on January 16, 2011. The pilot announced that we were on descent just over Nevada bordering New +2011-11-06,35.9605556,-83.9208333,Knoxville,TN,other,600,Over NW Knoxville TN, viewed from central Knoxville, appeard high over 10ꯠ ft?, one, perfectly elliptical opaque white with a bright +2011-11-06,41.76,-70.0833333,Brewster,MA,light,1200,Intense orange lights seen over Cape Cod Bay. +2011-11-06,39.9611111,-82.9988889,Columbus,OH,sphere,25,Rapidly moving night time sphere object, heading north with no lights or strobes or sound. +2011-11-06,40.2736111,-76.8847222,Harrisburg,PA,light,5,White light seen moving off in the distance at dusk +2011-11-06,38.3397222,-122.7,Rohnert Park,CA,fireball,300,One small orange orb or ball of fire that changed direction and drifted across the horizon +2011-11-06,38.2008333,-84.8733333,Frankfort,KY,chevron,7200,Observed two objects with pulsating lights that changed positions, 4 additional objects released. ((NUFORC Note: Capella? PD)) +2011-01-16,34.9488889,-85.2569444,Ft. Oglethorpe,GA,formation,4,a descending "set" of white airplane type lights visible for 3 or 4 seconds and then vanishing before reaching the horizon +2011-01-16,35.4347222,-87.3127778,Summertown,TN,light,5,Flat silver and red 'barber pole' flat object in northern sky +2011-01-16,41.2813889,-73.4986111,Ridgefield,CT,light,60,Intensely flashing light stationary at first for 30 or 40 seconds then began to move south/west at a steady pace then blinked out. +2011-11-06,35.9488889,-85.0269444,Crossville,TN,circle,300,My husband, mother-in-law and I were on our back deck and saw the red lights just above the tall trees in our backyard, they were not f +2011-01-16,39.1433333,-77.2016667,Gaithersburg,MD,circle,120,I was in the back seat of a moving vehicle in Gaithersburg, Maryland when I saw a bright, gold, circular object to the east +2011-11-06,45.5236111,-122.675,Portland,OR,formation,180,5-7 pulsating amber-orange orbs observed slowly moving below the clouds from west to east above Portland, OR. +2011-01-16,41.8786111,-71.3830556,Pawtucket,RI,circle,60,3 flying orange orbs. +2011-01-16,40.7141667,-74.0063889,New York,NY,light,300,Strangely moving orange lights appeared briefly over the East Side of Manhattan. +2011-11-06,34.9386111,-82.2272222,Greer,SC,changing,300,Orange flame looking object observed over Greer SC +2011-11-06,43.3897222,-71.0655556,Farmington,NH,light,20,Soundless white light moving horizontally just above tree line +2011-11-06,35.7452778,-81.685,Morganton,NC,light,180,Looked identical to a star, but it moved like crazy, and NOT a shooting star. +2011-01-16,37.6547222,-122.4066667,South San Francisco,CA,light,900,Blue light moving erratically over South San Francisco +2011-11-06,38.9783333,-76.4925,Annapolis,MD,light,25,Orb flashing red, blue, green seen over annapolis, MD +2012-01-16,33.3527778,-111.7883333,Gilbert,AZ,sphere,14400,A strange bright sphere was moving in all directions but in short bursts, a beam of light came out of the object and it dissapeared. +2012-11-06,44.9194444,-68.9322222,Kenduskeag,ME,fireball,4,Blue pulsing orb +2012-01-16,48.7597222,-122.4869444,Bellingham,WA,light,1,bright flash in bellingham area. +2012-11-06,48.6330556,-112.3252778,Cut Bank,MT,chevron,300,4-5 highly lit chevrons not moving or producing sign in southern and western sky. +2012-11-06,36.175,-115.1363889,Las Vegas,NV,disk,900,Saw small stationary clouds forming from thin air,later saw a saucer shaped craft fleeing the area. +2012-11-06,36.8744444,-94.8772222,Miami,OK,unknown,10,Shiny, reflective object +2012-11-06,43.8716667,-71.9147222,Wentworth,NH,formation,240,3 red lights linear moving slowly no noise. +2012-11-06,43.55,-96.7,Sioux Falls,SD,light,5,Bright rapid moving light +2012-11-06,40.015,-105.27,Boulder,CO,light,120,4 orange lights hovering above/near Rocky Flats former nuclear weapons plant. +2012-11-06,33.4330556,-79.1216667,Pawleys Island,SC,circle,20,On 11/06/2012 at 6:26 pm at Pawley's Island SC I observed 4 stationary red orange orbs of the same size in a straight horizontal patter +2012-11-06,41.5930556,-81.5269444,Euclid,OH,light,2,Seen over Route 2 freeway and when he acknowledged it seem to swoop down at his vehicle. +2012-11-06,41.6375,-70.9041667,Fairhaven,MA,light,5,Large circular orb appeared in the sky moving quickly in a south, southeast direction and disappeared after about four seconds. +2012-11-06,38.5766667,-92.1733333,Jefferson City,MO,circle,10,Perfectly circle lit up underneath +2012-11-06,32.7558333,-111.6702778,Arizona City,AZ,changing,300,Phoenix lights all over again +2012-11-06,39.3994444,-84.5613889,Hamilton,OH,circle,20,On November 06, 2012 we (five of us) at 7:30 pm saw seven to ten bright &quot;balls&quot; of light (orange in color) in the sky. +2012-11-06,46.2272222,-116.0283333,Kamiah,ID,unknown,120,A formation of 5 air crafts with rapid blinking red or green lights, one per vehicle flew overhead, very rapidly, no other lights. +2012-11-06,39.0997222,-94.5783333,Kansas City,MO,chevron,7200,Crescent shaped lights that emitted green light and then moved jerkily and then hovered in place +2012-11-06,45.5236111,-122.675,Portland,OR,changing,600,2-3 colored lights on one craft swooping gracefully in irregular pattern looking west/nw from North Portland, OR +2012-01-16,41.3958333,-72.8972222,Hamden,CT,fireball,300,Saw what I thought was a plane in sky but it seemed unusually close to trees. Bright yellow orange lights started slowly decending and +2012-11-06,42.4691667,-92.2808333,Evansdale,IA,unknown,120,Slow moving object with numerous large lights all synchronized (Honey Comb in shape),travels over interstate +2012-11-06,45.6797222,-111.0377778,Bozeman,MT,circle,900,Red flashing Lights following two solid white lights +2012-11-06,35.3672222,-92.4094444,Damascus,AR,rectangle,120,There have been silent ( what I thought where planes) flying very low but no noise, I looked night after night and one finally was at t +2012-11-06,41.6361111,-72.2130556,Lebanon,CT,unknown,600,Brilliant, strobe-flashing, orange lights in Lebanon CT +2012-11-06,40.4211111,-79.7883333,Monroeville,PA,fireball,2,A streak of light falling at a sharp angle toward the ground, no other craft nearby at the time. Small but bright and appeared much lo +2012-11-06,42.5630556,-114.46,Twin Falls,ID,sphere,60,Orange sphere. +2012-11-06,40.3355556,-75.9272222,Reading,PA,other,1500,Star Like Static Object Blinked (Red/Pink/White) randomly in Place for about 20min then Left once i drove to see it up close! +2013-11-06,35.3394444,-97.4863889,Moore,OK,cigar,180,Floating craft over my neighborhood. +2013-01-16,38.7291667,-89.8830556,Troy,IL,unknown,1200,Strange sounds in the Greater St Louis area. +2013-11-06,33.9791667,-118.0319444,Whittier,CA,light,10,Light moving faster and higher till it disappeared. +2013-11-06,34.0522222,-118.2427778,Los Angeles,CA,disk,1800,White illuminated disks over east Los Angeles mountains. +2013-01-16,32.9777778,-111.5169444,Coolidge,AZ,circle,600,I was driving home southbound on arizona blvd in Coolidge az looked to my right and saw 7 orange lights four on the bottom 3 on the top +2013-01-16,29.8944444,-81.3147222,St. Augustine,FL,triangle,900,Trail of strange orange lights moving over St Augustine. +2013-11-06,33.2888889,-117.2247222,Bonsall,CA,formation,3600,Side by side shaped Psi Psi symbol, horizontally togehter, green, red and white flashing lights. +2013-11-06,38.9011111,-77.2655556,Vienna,VA,fireball,900,Fireball seen in Northern Virginia. +2013-11-06,31.2230556,-85.3905556,Dothan,AL,circle,10,Unidentified flying object seen. +2013-11-06,33.7358333,-118.2913889,San Pedro,CA,flash,4,Fiery thick wide object flashes from sky towards l.a.harbor. +2013-11-06,33.1213889,-85.5663889,Wadley,AL,sphere,120,Four large orange lights that made no sound float directly over the local High School, one blinked out and one made a 90 degree turn. +2013-11-06,32.7152778,-117.1563889,San Diego County,CA,fireball,20,San Diego County lit up. +2013-11-06,33.7125,-115.4013889,Desert Center,CA,light,3,Huge Bright Light covering sky 5 miles east of desert center, 8 pm. +2013-01-16,47.0980556,-122.2030556,Orting,WA,light,3600,While sitting in our living room looking out the picture windows in the direction of Mt. Rainier in Washington S. ((Sirius??)) +2013-11-06,31.4636111,-100.4366667,San Angelo,TX,light,30,Light of "star" turns on and off in two different positions with no visible movement between the two sightings. +2013-11-06,40.8041667,-74.0125,North Bergen,NJ,disk,1800,Blinking red circular lights going in circle for almost an hour. +2013-11-06,38.9980556,-77.2886111,Great Falls,VA,circle,4140,CCTV camera records 2 fast traveling lights near Dulles Airport vicinity +2013-11-06,34.4208333,-119.6972222,Santa Barbara,CA,flash,10,3 circular lights with orange tail & sudden white flash over Santa Barbara. +2013-11-06,26.9338889,-80.0944444,Jupiter,FL,diamond,180,Ball of fire hovering over ocean near Jupiter. +2013-11-06,33.0197222,-96.6986111,Plano,TX,unknown,10,One hazy, glowing sideways diamond split into 2 smaller diamonds no noise at all. +2013-01-16,46.1880556,-123.83,Astoria,OR,chevron,600,Red Crescent like object hovered, glowing, and then coalesced into a ball and vanished. +2014-01-16,47.7558333,-122.3402778,Shoreline,WA,other,240,Their was no visual site due to very heavy fog. I believe this fog is on purpose to hide how huge these crafts are. +2014-01-16,45.7761111,-111.1761111,Belgrade,MT,unknown,60,Low frequentcy sound vibration...like a horn. +2014-01-16,38.4,-105.2166667,Canon City,CO,sphere,20,Bright, round object flashed brilliant white before climbing at a high rate of speed. +2014-01-16,26.2030556,-98.2297222,Mcallen,TX,teardrop,300,My mother and I were traveling South on Biccentennial, when we got to the stoplight of Dove and Bicentennial at approximately 18:15. W +2014-01-16,33.5205556,-86.8025,Birmingham,AL,formation,40,Rotating lights moving rapidly across the sky. +2014-01-16,35.7913889,-78.7813889,Cary,NC,triangle,600,6 Triangular hovering craft with synchronized lights. +2014-01-16,43.2444444,-73.8327778,Corinth,NY,light,300,My wife noticed several yellow/orange lights in a west/south west direction. After stopping the car, while using power lines as a refe +2014-01-16,36.685,-93.1197222,Forsyth,MO,fireball,180,Fire in the sky. +2014-01-16,35.9552778,-96.0086111,Glenpool,OK,rectangle,120,Several different colored lights in the sky. +2014-01-16,33.5683333,-83.3625,Buckhead,GA,triangle,3600,I was driving in Atlanta and saw a triangular craft with five lights circling the sky; lasted about 1 hour, was no plane I've ever seen +2014-01-16,40.5127778,-76.1047222,Shartlesville,PA,unknown,120,Red, blue, green flashing lights with intermittent bright white pinpoint lights quickly and randomly flashing. +2014-01-16,26.6833333,-80.28,Loxahatchee,FL,sphere,420,Round pure white glowing light moving back and forth up and down with speed and movements not capable by any helicopter or plane. +2014-01-16,28.5491667,-81.7730556,Clermont,FL,unknown,10,Flyby of an unknown object creating a very low frequency humming / pulsating sound. +2014-01-16,33.7283333,-117.1455556,Menifee,CA,sphere,180,Sphere light ball dimming out then pulsating an tranforming to plane lights an moving north west when noticed. +2014-01-16,39.0836111,-84.5086111,Covington,KY,circle,2,Saw 5-6 pulsing lights in a circular shape slowly moving across the sky low to the ground. +2014-01-16,25.7738889,-80.1938889,Miami,FL,other,30,Red round light, southeast of Kendall, saw it for 30 seconds it just vanish in front of My eyes, at 11:07 pm, for sure not an airplane, +2014-01-16,34.6916667,-89.9772222,Coldwater,MS,circle,240,White, ball-like objects hovering in sky. Glowing and shining after a few minutes, flew away slowly. +1970-11-07,35.925,-86.8688889,Franklin,TN,sphere,300,White globe above river at prehistoric indian site +1975-01-17,42.6525,-73.7566667,Albany,NY,light,600,Starlike objects +1981-01-17,39.5138889,-121.5552778,Oroville,CA,diamond,30,The craft was 250ft of the ground, moving north directly overhead slowly. There was no sound! Headed over town, made a left bank, and w +1984-11-07,33.58,-85.0766667,Carrollton (6 Miles West Of, On Garrett Circle),GA,other,720,For 10 minutes, moving from north to south 25 feet above the ground, moving at 1 to 2 miles an hour, a 150 ft tall, 30 ft wide vertical +1988-01-17,41.8908333,-80.6763889,Kingsville,OH,rectangle,15,Large Flat Bottom Boat / Lite, Green Lights / Awesome +1989-11-07,36.5869444,-93.9658333,Washburn,MO,circle,1200,As we observed the red sphere, it occured to us, that it appeared as if it were looking for something. +1989-01-17,41.3113889,-105.5905556,Laramie,WY,other,900,Silent lighted craft flies over house, witness later discovers body marks. +1994-01-17,34.0522222,-118.2427778,Los Angeles,CA,fireball,2,Fire ball after northidge quake . +1995-01-17,61.2180556,-149.9002778,Anchorage,AK,light,900,Empl. of KRUA radio station at Univ. of AK calls to report multiple UFO reports 2245 hrs. 17JA95 over inlet. +1996-11-07,47.6063889,-122.3308333,Seattle,WA,sphere,7,Dimly lit group of colored objects hovering over the Woodland Park Zoo emitting light beams similar to spotlights.I was walking my +1997-11-07,30.2669444,-97.7427778,Austin,TX,light,1800,A bright red light in E/SE. Did not move as long as we watched. +1998-11-07,33.3061111,-111.8405556,Chandler,AZ,fireball,2,Brief what appeared to be a shooting star, Bright green in color, and very close, and very brief. +1998-11-07,41.0380556,-74.2944444,Wanaque,NJ,fireball,2,My girlfriend saw an object fall to the ground it was bright and about half the size of a full moon. +1998-11-07,33.8702778,-117.9244444,Fullerton (From, Spotted 20 Deg. Abovew Horizon),CA,changing,300,My UFO skeptic Mom and level headed brother observed a very large boomerang shaped object. It traveled west to east, stopped, changed s +1998-11-07,34.5969444,-83.7633333,Cleveland,GA,light,60,We were driving alone Hwy 129 towards Cleveland when we saw a green ball of light come down from the northeastern part of the sky, and +1998-11-07,32.4708333,-100.4055556,Sweetwater,TX,changing,1800,It was weird and we didn +1998-11-07,32.7866667,-79.795,Isle Of Palms,SC,cone,720,We were looking towards the city of Charleston from the Isle of Palms when we noticed an extremely bight orange object moving slowly ac +1999-11-07,42.1275,-87.8288889,Northbrook,IL,diamond,300,On a trip to CHicago from my home in Glencoe, I witnessed a large black object that looked like a diamond floating in the sky in front +1999-11-07,42.9205556,-83.045,Almont,MI,light,600,object the size, brightness, and position of Jupiter traveked N. for 10 min. before fading out. +1999-11-07,40.3486111,-74.6594444,Princeton,NJ,unknown,300,On the night in question I observed 5 objects flying to the north. Their flight pattern was different than a normal flying object (plan +1999-01-17,39.6408333,-76.6594444,Parkton,MD,disk,240,Looking out the front window I noticed a what appeared to be a star changing colors, red, then blue, then white. I looked through bino +1999-01-17,31.5788889,-90.4405556,Brookhaven,MS,fireball,120,Appered to be shooting star at first. Stopped in mid air. Covered appx 5 miles in the sky in appx 2 seconds. Stopped again. Vanishe +2000-11-07,59.6425,-151.5483333,Homer,AK,other,5,dark road....felt strange.....triangle..... +2000-11-07,39.5297222,-119.8127778,Reno,NV,triangle,60,Large triangular craft with lights along the leading edge of the wing, silently traveling at a high velocity. +2000-11-07,40.3355556,-75.9272222,Reading,PA,light,10,Three bright objects, each made up of at least 3 lights in a horizontal row, zig-zagged slowly and climbed into the clouds. +2000-11-07,41.4819444,-74.9863889,Lackawaxen,PA,light,240,Bright White Light moving slowly to the Southeast with no sound being made by the object! Small aircraft moving in other direction! +2000-01-17,37.1027778,-85.3063889,Columbia,KY,unknown,600,IT WAS AROUND 4:30 IN THE MORNING AND I WAS AWAKENED INSTANTLY. I IMMEDIATLY NOTICE AN EXTREMELY BRIGHT LIGHT COMING THROUGH MY WINDOW, +2000-11-07,32.7833333,-96.8,Dallas,TX,disk,2,White Daytime disc in north Dallas on Election Day. +2000-01-17,39.9522222,-75.1641667,Philadelphia (South),PA,rectangle,6,I was visiting my mother. It was bitterly cold (approx. 15 degrees Far) And very windy. At appox.6: 02 PM I went out back into her smal +2000-01-17,39.5138889,-121.5552778,Oroville,CA,cone,30,saw a bright orange light with a cone of yellow light trailing +2000-01-17,45.8925,-111.5513889,Three Forks,MT,cylinder,10,WE WHERE DRIVING EAST ON HIGH 2 INTO 3FORKS MONTANA WHEN WE SAW AN OBJECT COME INTO SIGHT FROM THE N.W. IT WAS HEADING S.E. IT WAS A LO +2000-01-17,39.7475,-122.1952778,Orland,CA,triangle,600,Small triangular object flying low to ground flashing green then gold light. +2000-11-07,38.7522222,-121.2869444,Roseville,CA,triangle,15,V shaped object sighted in nightsky on 2000 U.S presidential election date +2000-01-17,40.4405556,-79.9961111,Pittsburgh,PA,light,300,At 10:15 PM a bright shining object was seen ,low in the sky,hovering,going back and forth,and then slowly flying away.It was shining i +2001-01-17,42.1227778,-72.2013889,Brimfield,MA,sphere,60,It was a hovering metallic object that vanished in an instant. +2001-11-07,30.3583333,-103.6605556,Alpine,TX,other,120,Silent, triangle +2001-11-07,38.8047222,-77.0472222,Alexandria,VA,fireball,5,Ball of light moves over heads of people in traffic - appears to head toward the ground but no sign of crash evident. +2001-11-07,32.7733333,-92.4055556,Farmerville,LA,light,2,I was smoking on my porch and i saw a bright light high up in the sky moving fast and it just disappeared suddenly. it may have been a +2001-01-17,42.3641667,-73.5952778,Chatham,NY,oval,15,The object was traveling north at a low altitude. The only ilumination appeared to be the flourescent blue green lights. +2001-11-07,47.6063889,-122.3308333,Seattle,WA,formation,30,V-Formation over West Seattle +2001-01-17,41.7,-71.4166667,West Warwick,RI,circle,240,Large, circular object with a ring of flashing red and white lights zigzag in night sky. +2002-11-07,41.2411111,-77.0013889,Williamsport,PA,sphere,15,NO CONTRAILS ,NO DOUNUTS .P/S I'VE BEEN AN SR-71 AND KNOW ALL AIR CRAFT & MOST BIRDS. +2002-11-07,41.2411111,-77.0013889,Williamsport,PA,unknown,20,if anyone seen classic string of pearles on tv you know what i saw, too fast for birds. +2002-11-07,31.3402778,-110.9336111,Nogales,AZ,triangle,300,Red glowing triangle shaped object flying away from the sun. +2002-11-07,31.315,-85.8552778,Enterprise,AL,chevron,3,2Chevron shapes in formation moving at great speed glowing red/orange at very high altitude. +2002-11-07,44.7225,-73.2927778,Grand Isle,VT,oval,900,It was an extremely huge object, with greenish lights on the bottom, a dome shape on top and very low, flew over lake and house. +2002-11-07,45.5608333,-94.1622222,Saint Cloud,MN,chevron,20,Dimly lit Boomerang shaped object in St. Cloud, Minnesota +2002-01-17,41.3580556,-93.5572222,Indianola,IA,light,5,i was sitting on my porch appx 950pm cst when i saw an object in the western sky zip past in the sky with no noise it was white in col +2002-01-17,44.9430556,-123.0338889,Salem,OR,triangle,600,triangle shape ufo N salem +2003-11-07,31.6925,-106.2069444,Horizon City,TX,light,180,Bright star like object +2003-11-07,45.6625,-110.5602778,Livingston,MT,fireball,5,Round green sphere, dropping beind the mountains, and landing. +2003-11-07,37.4791667,-82.5188889,Pikeville,KY,light,1800,Odd crying and electronic beeping from hills, odd creature seen during childhood. +2003-01-17,32.7866667,-79.795,Isle Of Palms,SC,light,420,very bright orange light moving steadily across the sky being pursued by an airplane +2003-11-07,33.5386111,-112.1852778,Glendale,AZ,triangle,10,Sitting outside with wife and witnessed a large triangular shaped object had no sound or lights. I got my wifes attention and she witne +2003-01-17,38.8338889,-104.8208333,Colorado Springs,CO,light,3,Strange light in vicinity of NORAD/Cheyenne Mountain Air Station. +2003-01-17,38.8338889,-104.8208333,Colorado Springs,CO,circle,10,Round object that glowed within it. +2003-01-17,34.1808333,-118.3080556,Burbank,CA,unknown,300,1/17/03 6:12 am unknow craft moving from west to east shooting from anterior side followed by explosions +2003-11-07,48.1183333,-123.4294444,Port Angeles,WA,fireball,600,Object with glowing, sparkling tail seen traveling across the sky, disappearing over mountains. +2003-01-17,41.6763889,-91.5802778,Coralville,IA,oval,300,Single hovering oval object in clear blue sky along with 2 commercial jets leaving exhaust trails. +2003-11-07,31.7586111,-106.4863889,El Paso,TX,sphere,45,round object moving very slowly has no kem trail while another obvious jet does dissapears then NASA's jets start flyin around. +2003-01-17,40.7838889,-76.2305556,Frackville,PA,circle,180,3 round objects +2003-11-07,33.6141667,-85.835,Oxford,AL,cylinder,60,Crystalline Object appears briefly near Mount Cheaha in the Talladega National Forest. +2003-01-17,31.3222222,-92.4341667,Pineville,LA,sphere,600,Sun light relecting off a metallic type surface. +2003-01-17,44.5236111,-89.5744444,Stevens Point,WI,oval,10,Four lights moving quickly in the sky. Ovals. +2003-11-07,26.9616667,-82.3527778,Englewood,FL,light,1800,A large bright light moved swiftly across the ocean after sunset suddenly stopped and didn't move any more. +2003-01-17,25.7738889,-80.1938889,Miami,FL,triangle,900,While aproaching home walking about 5 blocks from it I couldn't help noticing this light above nw 95 st and 27 ave blinking on and off +2003-01-17,47.9447222,-122.3033333,Mukilteo,WA,light,28800,Light moving slowly, haphazardly in the western/northwestern sky, nearly halfway up the horizon. +2003-11-07,44.6369444,-124.0522222,Newport,OR,other,300,This object was on the south beach area near the airport. I believe the object was partially behind a hill, so I wasn't able to get a +2003-01-17,44.6366667,-123.1047222,Albany,OR,light,300,red light in sky changed direction twice before stopping and 5-6 other small red lights fell from the bottom; one veering suddenly east +2003-01-17,29.9688889,-95.6969444,Cypress,TX,circle,180,Driving through neighbor-hood we observed a red glowing ball of light in the sky traveling at a slow speed. It appeared to be about 1/ +2003-01-17,34.0522222,-118.2427778,Los Angeles,CA,light,5,2 light green lights appeared and had synchronized patterns,...to fast to be a plane +2003-11-07,36.1538889,-95.9925,Tulsa,OK,formation,900,Hundreds of glowing white objects in dozens of formations silently traveled for 15-20 minutes over Tulsa, Ok., 10/31/03 or 11/7/03. +2003-01-17,38.5788889,-122.5786111,Calistoga,CA,triangle,600,I was working a swing shift and went outside for some air towards the shifts end and noticed what appeared to be an airplane but the fl +2003-01-17,34.2247222,-118.4488889,Panorama City,CA,circle,900,Brilliant red light above Panorama City, in the San Fernando Valley, California +2003-01-18,34.8661111,-92.11,Jacksonville,AR,circle,60,big bright object rising off the ground. +2003-01-18,32.8544444,-79.975,North Charleston,SC,unknown,900,Object with very large bright light chased by jet with rapid flashing red and green wing lights. +2004-11-07,33.6561111,-96.9066667,Whitesboro,TX,light,1200,Rotating Lights in the sky +2004-11-07,40.4166667,-86.8752778,Lafayette,IN,light,300,Tonight we witnessed two, very bright, orange colored, lights appeareing in the north east sky, side by side. One appeared on the left, +2004-11-07,39.7683333,-86.1580556,Indianapolis,IN,light,15,A series of 4 lights appearing and disappearing in night sky, one at a time, in a straight line formation. +2004-11-07,39.0436111,-77.4877778,Ashburn,VA,unknown,15,Lights and strange sounds awaken couple. Details defy an ordinary explanation. +2004-11-07,39.0991667,-76.8486111,Laurel,MD,light,20,An irregular flight pattern zig zagging then back and forth and up and down with a light as bright as a star +2004-11-07,32.5091667,-92.1191667,Monroe,LA,light,180,TWO BRIGHT LIGHTS TRAVELING IN OPPOSITE DIRECTIONS +2004-11-07,35.7697222,-91.6408333,Batesville,AR,triangle,600,shiny object hangs in sky 10 mintues. ((NUFORC Note: Venus?? PD)) +2004-11-07,40.7141667,-74.0063889,New York City (Manhattan),NY,disk,300,4 metallic silver, disc-shaped objects gliding over Manhattan... +2004-01-17,34.4263889,-117.3,Hesperia,CA,light,300,Fire like light moved like if gravity had no effect on it. Then it became a dot to hide but it acted the same way. +2004-11-07,42.3211111,-85.1797222,Battle Creek,MI,light,20,Bright light stays in one spot for a few seconds then dims and disappears within 3 sec. +2004-11-07,44.98,-93.2636111,Minneapolis,MN,cylinder,10,Silver cylindrical object; no wings; no vapor trail; no sound passing SE to NW just before sundown. +2004-11-07,38.5627778,-91.4711111,Swiss,MO,teardrop,1800,Tailless elongated comet visable for 30 or so minutes in the daylight to dusk. +2004-11-07,38.5627778,-91.4711111,Swiss,MO,teardrop,2100,Four of us saw a long term 30 minute daylight to night comet like object. +2004-11-07,40.7669444,-72.9966667,East Patchogue,NY,oval,360,Glowing white oval object on the horizon. Stationary,never moved.Disappearing and reappearing in the same location +2004-01-17,33.4222222,-111.8219444,Mesa,AZ,cigar,300,I WAS SITTING ON THE STEPS OF MY APARTMENT WHEN I OBSERVED A BLACK CIGAR SHAPED OBJECT TRAVLING +2004-01-17,37.5958333,-122.0180556,Union City,CA,changing,2700,Girating ,shape changing ufos bouncing in the Bay Area sky with military planes monitoring the situation. +2004-01-17,48.5569444,-113.0125,Browning,MT,formation,600,me and my family was driving home from cutbank MT when we saw a light that looked like a star but changing it proceeded to follow us +2004-01-17,34.4838889,-114.3216667,Lake Havasu City,AZ,light,3600,Weird Light fading out then brilliantly bright again. +2004-11-07,46.2947222,-108.9372222,Lavina (Near),MT,disk,3600,Many unusual lights on one object. ((NUFORC Note: Twinkling star?? PD)) +2004-01-17,44.0522222,-123.0855556,Eugene,OR,changing,420,large yellowish orange ball hovering in sky with lights bouncing around inside, slowly moving east then north +2004-11-07,44.7980556,-93.5266667,Shakopee,MN,other,120,On November 7th 2004 my friend and I seen two red lights blinking across the night sky moving very slowly. +2004-11-07,47.6063889,-122.3308333,Seattle,WA,triangle,5,Bizarre object observed during dramatic display of aurora borealis. +2004-11-07,47.6063889,-122.3308333,Seattle,WA,triangle,30,a clearly triangular thing with glowing circles on the bottom orange all around and perfect +2005-01-17,37.3394444,-121.8938889,San Jose,CA,fireball,10,Very bright cobalt blue fireball over highway 101 near Minetta San Jose Airport +2005-11-07,30.4211111,-87.2169444,Pensacola,FL,sphere,60,Saw Red/Orange circular glowing objects. +2005-11-07,41.6266667,-93.7119444,Urbandale,IA,fireball,120,Witnessed Large Fireball at dusk was the size of a 50 cent piece held at arms length in the west. +2005-11-07,30.4013889,-86.8636111,Navarre,FL,other,300,5 light formation over Navarre sounds similar to other sighting +2005-11-07,30.1102778,-97.315,Bastrop,TX,light,900,Seemingly very high altitude light/object moving at various speeds, and not in a straight line. +2005-11-07,30.4013889,-86.8636111,Navarre,FL,formation,900,The time was about 6:15 - 6:25 pm on 7 Nov 2005, after stoping at a Tom Thumb on Hwy 87/399 (East Bay Blvd) at about 6:10 pm walking ou +2005-11-07,35.4838889,-89.725,Brighton,TN,sphere,40,Very bright light, then sharp angle cruise toward North. +2005-11-07,30.4013889,-86.8636111,Navarre,FL,formation,300,5 bright lights in formation over florida +2005-11-07,30.4013889,-86.8636111,Navarre,FL,diamond,300,Five ship amber diamond formation (fifth above diamond at 10-11 o'clock postiotion) to 45 deg. hor. slant +2005-11-07,30.4013889,-86.8636111,Navarre,FL,light,600,Multiple AD USAF witnesses report formation of bright lights hovering over rural Santa Rosa County FL +2005-01-17,38.8813889,-94.8188889,Olathe,KS,light,1800,I observed an object with red, blue and white lights in the sky northwest of Olathe, KS, that did not move for a period of 30 minutes. +2005-11-07,30.4055556,-86.6188889,Fort Walton Beach,FL,light,600,Five bright amber lights form a "W" formation and hover 5 mins over NW FL sky 1840L Mon 7 Nov ཁ. +2005-11-07,30.4013889,-86.8636111,Navarre,FL,formation,600,Formation of five bright amber lights held a hover in "W" formation over NW FL Mon 7 Nov 1840L +2005-11-07,33.6888889,-78.8869444,Myrtle Beach,SC,light,120,Bright Orange Stationary Lights +2005-11-07,45.0725,-93.4555556,Maple Grove,MN,light,300,Very Bright object and I mean Very Bright! watched about 5 min. returned 15 min later gone +2005-11-07,30.4013889,-86.8636111,Navarre,FL,rectangle,480,THE LIGHTS WERE NOT MOVING,THEY WERE GREEN,BLUE,RED,WHITE LIGHTS IN THE SKY5-8MINS. +2005-11-07,30.4013889,-86.8636111,Navarre,FL,triangle,480,THE LIGHTS WAS RED, GREEN, BLUE,AND STAYED IN ONE SPOT. (U.F.O.) +2005-11-07,32.7502778,-81.6369444,Sylvania,GA,light,1800,Bright orange lights in the sky with no noise. +2005-11-07,33.425,-94.0475,Texarkana,TX,triangle,2700,they are here!!!!right now! ((NUFORC Note: Possible sighting of Mars, we believe. PD)) +2005-11-07,33.7536111,-79.4477778,Hemingway,SC,unknown,120,four lights that appeared one by one and then disappeared,followed by the fastest streak shooting across the sky I have ever seen +2005-11-07,40.0488889,-78.6444444,Schellsburg,PA,oval,120,I was halfway across Shawnee Lake looking towards Schellsburg ,The Mill Road area and saw this more round than oval bright light moving +2005-11-07,30.4866667,-90.9561111,Denham Springs,LA,disk,180,First sited around 21:27 moving at a very fast constant rate to the NW. Object appeared to be disk-shaped, but standing on edge. Periph +2005-11-07,41.2794444,-72.8155556,Branford,CT,unknown,300,branford police dept case number 05-19992 +2005-11-07,40.0488889,-78.6444444,Schellsburg,PA,oval,180,Large bright light that was pulsating traveling lower than airplanes and suddenly taken off at a tremendous speed. +2005-11-07,44.9133333,-93.5030556,Minnetonka,MN,light,300,Bright star-like light is seen staying in one spot, then quickly moves when witnesses try to investigate further. +2005-01-17,32.7152778,-117.1563889,San Diego,CA,light,120,bright speck of light moves in strange path in western sky of pacific beach +2005-11-07,40.2736111,-76.8847222,Harrisburg,PA,flash,3600,A strange objects flashing a color lights with an orangish fireball. +2005-01-18,44.5888889,-90.4611111,Granton,WI,unknown,600,Doing a U turn in a second and shooting up toward space ,with spectacular speed! +2006-11-07,36.8525,-121.4005556,Hollister (Southeast Of),CA,sphere,600,Stationary object with lights. ((NUFORC Note: Probable sighting the star Sirius?? PD)) +2006-11-07,38.0194444,-122.1330556,Martinez,CA,fireball,240,An orange glowing ("fireball' appereance) with falling burning embers followed by 2 jets. +2006-01-17,27.9563889,-97.9366667,Orange Grove,TX,rectangle,60,strange yellow 2 x 4 shaped object floating off the ground +2006-11-07,41.9633333,-87.9788889,Wood Dale,IL,circle,900,On November 7th, 2006, several unidentifed hovering objects were witnessed over O'Hare Intl. Airport. +2006-01-17,33.4483333,-112.0733333,Phoenix,AZ,other,90,long missile shaped object +2006-11-07,41.760555600000004,-88.32,Aurora,IL,unknown,30,Shiny Object near Aurora, IL +2006-01-17,38.6780556,-121.175,Folsom,CA,triangle,300,black government triangular shape hovering above Hwy 50 in Sacramento +2006-11-07,32.2216667,-110.9258333,Tucson,AZ,flash,15,I've seen a lot of lights in the sky, but never anything like this. +2006-11-07,44.8586111,-93.6613889,Victoria,MN,chevron,120,Unknown objects seen while traveling east on MN Hwy 7 near victoria road sign +2006-11-07,40.5852778,-105.0838889,Fort Collins,CO,rectangle,60,Bright blue rectangle ufo pass over +2006-11-07,42.2713889,-93.9269444,Stratford,IA,unknown,600,Huge spinning yellow orange lights in the Central Iowa sky. +2006-11-07,41.3113889,-105.5905556,Laramie,WY,rectangle,5,Fast moving, silent, black rectangle seen by military flight enthusiast and amateur astronomer in Laramie, WY. +2006-01-17,40.0891667,-75.3963889,King Of Prussia,PA,sphere,15,Small Spherical Object moving silently to the West +2006-11-07,34.4358333,-119.8266667,Goleta,CA,other,3,blue and green "burning object" - looked like a meteor, only (from my experience of meteors) too low, too slow and blue green, +2007-01-17,36.0997222,-80.2444444,Winston-Salem (S Of; Around Tyro?),NC,other,120,In the early hours of 1-17-07 I saw two unidentified flying objects within minutes of each other on US150E. +2007-01-17,25.7738889,-80.1938889,Miami,FL,light,120,Miami sky is now 2.00 AM full of hundreds of UFO +2007-11-07,43.0630556,-86.2283333,Grand Haven,MI,triangle,600,Giant UFO and an unidentified creature all within ten minutes. ((NUFORC Note: Perhaps not a serious-minded report??? PD)) +2007-01-17,32.9477778,-112.7161111,Gila Bend,AZ,sphere,45,3 glowing slightly flashing objects white/orange in color they appeared for about ten to twenty seconds. When the 3 large objects becam +2007-01-17,42.3444444,-88.0416667,Grayslake,IL,disk,60,Grayslake, Ill. Silver saucer/disk shaped object hovering in the sky completely motionless at about 6000 feet. +2007-01-17,33.5422222,-117.7822222,Laguna Beach,CA,sphere,120,Spheres off of Laguna coast +2007-11-07,37.3394444,-121.8938889,San Jose,CA,disk,60,Two Disks or Saucers seen gliding side by side before doing some acrobatic maneuvers. +2007-11-07,37.1305556,-121.6533333,Morgan Hill,CA,fireball,120,mysterious fire-streak across the mountains near Morgan Hill, CA. ((NUFORC Note: We suspect a contrail may have been the cause. PD)) +2007-01-17,32.9594444,-117.2644444,Del Mar,CA,sphere,480,Looked out on Pacific Ocean horizon while stanidng approx. 30 ft from 40ft. cliff above sea shore.saw 8 - 3" or so gold sphere ligh +2007-11-07,33.6408333,-117.6022222,Rancho Santa Margarita,CA,circle,60,Over Rancho Santa Margarita veiwed a circular object with moving blue lights way up in the sky./ +2007-01-17,33.6188889,-117.9280556,Newport Beach,CA,unknown,120,6 Lights hover above Ocean, then one by one, each descends & disappears +2007-01-17,39.8494444,-75.3561111,West Chester,PA,triangle,30,Triangle shaped, very large, silent, with about 12 to 14 grey divits on the outer edge that reflected what little light there was +2007-01-17,28.1611111,-81.6019444,Davenport,FL,light,5,Light traveling in an arc, at high altitude. +2007-11-07,44.8897222,-93.3497222,Edina,MN,disk,300,Low flying & FAST object with lights moved across the sky- and then abruptly stopped and hovered for minutes +2007-01-17,41.5261111,-87.8891667,Mokena,IL,triangle,180,Triangular craft with red lights in Mokena, IL +2007-11-07,39.9241667,-83.8088889,Springfield,OH,triangle,300,Triangular Craft Headed Toward Wright Patterson Air Force Base +2007-01-17,41.0180556,-75.9952778,Drums,PA,disk,120,((HOAX??)) Saw 4 lighted orbs about 200ꯠft. high chasing each other and going around in tight circles. +2007-01-17,39.6586111,-79.6413889,Bruceton Mills,WV,oval,30,Glowing object in sky soared across night sky then vanished. +2007-11-07,41.4019444,-74.3247222,Goshen,NY,triangle,60,Magenta Triangular phenomenon! +2007-11-07,45.2333333,-93.2911111,Andover,MN,light,600,Point of Light type heavenly body in the eastern sky showed significant movement in various directions on the evening of Nov. 7. +2008-11-07,38.5816667,-121.4933333,Sacramento,CA,rectangle,10,Steady moving narrow rectangle over Sacramento +2008-01-17,39.6416667,-77.7202778,Hagerstown,MD,triangle,300,i thought i was seeing stuff at first +2008-01-17,40.6983333,-74.4019444,New Providence,NJ,unknown,300,NJ 5 am 1/17/08 UFO Long, Low Flying, 2 Rows of 8+ White Flashing Lights, on Bottom, 2 Red Flashing Lights at Top, Fast Speed went SE +2008-11-07,28.5380556,-81.3794444,Orlando,FL,light,180,Three glowing blue lights traveling from North to South +2008-01-17,41.5033333,-74.0108333,Newburgh,NY,triangle,180,Early Morning Lights w/Methodical Flying Speed +2008-01-17,32.1330556,-96.2275,Kerens,TX,formation,15,UFO spotted at Possum Kingdom Lake,TX +2008-01-17,37.4636111,-122.4275,Half Moon Bay,CA,changing,10800,Orange lights and triangles over field south of Half Moon Bay. +2008-11-07,36.8655556,-87.4886111,Hopkinsville,KY,diamond,60,moving star while rest stayed there the rest of the night? +2008-01-17,34.1336111,-117.9066667,Azusa,CA,disk,900,Silver Reflecting Disk shape object over Azusa.CA +2008-11-07,33.4483333,-112.0733333,Phoenix,AZ,chevron,180,large chevron with blue and red solid light lights proceeding south to north at constant speed +2008-01-17,39.2902778,-76.6125,Baltimore,MD,triangle,1200,January 17, 2008-6:15pm. Triangular shaped object hovering over Belvedere Square in Baltimore, Maryland. +2008-01-17,34.5827778,-117.4083333,Adelanto,CA,triangle,1800,very strange and it looked very like a UFO. +2008-11-07,39.1619444,-84.4569444,Cincinnati,OH,fireball,1800,Radiating, pulsating, fiery object observed in the cincinati night sky! ((NUFORC Note: Probable sighting of Venus. PD)) +2008-01-17,43.7611111,-70.9969444,Effingham,NH,oval,900,Jan 17/2008 7:40 PM EFFINGHAM, NH. 2 crafts clearly hovered over my back yard for 10 min. DO THE RIGHT THING. Report what u saw. +2008-01-17,30.5619444,-81.8308333,Callahan,FL,cigar,300,Was outside walking around and saw a silver,cigar shaped object in the sky. Left no smoke trail, made no noise, had no wings, and had a +2008-01-17,29.6897222,-95.8994444,Fulshear,TX,other,120,A very large, lighted craft sighted in rural Texas in January, 2008 was sighted briefly and was not identifiable to the observer. +2008-11-07,44.8011111,-68.7783333,Bangor,ME,fireball,10,Fireball or "Flash-ball" maneuvers at low altitude - as seen and heard from backyard +2008-11-07,34.1397222,-118.0344444,Arcadia,CA,sphere,1800,A bright sphere rapidly changing color - blue, green and red, in one spot. ((NUFORC Note: Sighting of Sirius. PD)) +2008-01-18,41.6441667,-93.4644444,Altoona,IA,oval,120,strange oval mettalic ufo +2008-01-18,35.4675,-97.5161111,Oklahoma City,OK,formation,180,Group of orange glowing lights, flying and darting around in the sky, yet staying together in a group +2009-11-07,39.1619444,-84.4569444,Cincinnati,OH,diamond,180,4 lights shot across the sky - low - then hovered just above treeline - yellow/orange and one by one they dimmed &got bright &floated +2009-01-17,39.1502778,-123.2066667,Ukiah,CA,disk,15,We saw a big saucer coming down towards us and it went away fast. 500 Lights On Object0: Yes +2009-11-07,44.925,-93.4625,Hopkins,MN,light,3600,6 lights which looked liked stars but were moving like the UFP's seeon on TV +2009-01-17,32.7152778,-117.1563889,San Diego,CA,unknown,15,I was laying in balboa park looking at the early morning stars and at about four fifteen am i saw a very fast streak across the sky it +2009-01-17,37.835,-122.1286111,Moraga,CA,light,60,Bright red light seen only 100 yards at 0 angle eye level from my house 500 Lights On Object0: Yes +2009-01-17,39.2688889,-84.2638889,Loveland,OH,triangle,300,Triangular object flew overhead at about 20 to 30 mph just above the trees! +2009-11-07,39.9375,-77.6613889,Chambersburg,PA,circle,60,3 aircrafts and 2 with no wings, one dissapeared after about 30 seconds +2009-01-17,33.4483333,-112.0733333,Phoenix,AZ,fireball,1,Meteor like fireball witnessed on a clear sunny midafternoon. +2009-11-07,39.5297222,-119.8127778,Reno,NV,cylinder,2,flight from las vegas to reno - southwest airlines--made plane pitch, drop, and shutter for a few minutes ((Turbulence?? PD)) +2009-01-17,31.1169444,-97.7275,Killeen,TX,teardrop,300,A teardrop shaped object that flew over our house. +2009-11-07,39.0166667,-84.6008333,Erlanger,KY,unknown,300,Four lights in the sky; helicopter seen in close proximity +2009-01-17,29.7630556,-95.3630556,Houston,TX,changing,300,On video'ing, and photographing, UFO's are positioned in front of our view of both Venus & Sirius. ((NUFORC Note: We disagree. PD)) +2009-01-17,28.5380556,-81.3794444,Orlando,FL,light,480,Eastern sky, light over Orlando +2009-11-07,39.0594444,-84.5475,Ft. Mitchell,KY,light,600,Two African-American men see flying objects in Ft. Mitchell, KY. Never seen anything like this before. +2009-01-17,32.7152778,-117.1563889,San Diego,CA,flash,900,Bright human/diamond shape seen over the Pacific Ocean from San Diego area then disappeared +2009-11-07,35.1822222,-83.3816667,Franklin,NC,unknown,3600,2 group of lights in Eastern Sky about 11:00 PM. Lights turned colors, white, red, and blue. Sorry I couldn't see their shape. +2010-11-07,40.5594444,-79.9588889,Allison Park,PA,circle,3600,Strange Objects Near Orion's Belt +2010-11-07,42.9055556,-74.5722222,Canajoharie,NY,flash,3600,UFO object with flashing red, blue and green lights. ((NUFORC Note: We suspect a possible "twinkling" star. PD)) +2010-11-07,32.7252778,-97.3205556,Fort Worth,TX,other,1200,I saw a green circle with a red triangle under it and a round white circle off to the side dancing around in zig zag jurking munements +2010-11-07,35.2619444,-81.1875,Gastonia,NC,triangle,15,dim triangular lights headed south. +2010-11-07,37.9886111,-84.4777778,Lexington,KY,light,1800,Strange orange light over Lexington, KY +2010-01-17,48.0841667,-121.9675,Granite Falls,WA,light,20,Bright light coming from the sky with no noise. +2010-11-07,44.165,-93.8811111,Eagle Lake,MN,sphere,420,Bright airborne object that moved in extrodinary way. +2010-11-07,40.9355556,-74.1866667,Haledon,NJ,other,300,Blue/Green Orb accompianed with Triangle object over Haledon area. +2010-11-07,42.575,-71.9986111,Gardner,MA,sphere,420,Reflective bubble chased by several jets. +2010-01-17,46.8108333,-90.8180556,Bayfield,WI,light,15,at 6:30 pm i was playing outside with my daughter. We were running through the trails i shoveled through the snow. My daughter loves to +2010-11-07,34.6844444,-90.3827778,Tunica,MS,light,300,A Shooting star that Turned into a Moving Light +2010-11-07,39.6180556,-75.0761111,Franklinville,NJ,triangle,120,Low Flying Triangle Shaped Craft seen over Franklinville/Malaga Area. +2010-01-17,36.175,-115.1363889,Las Vegas,NV,other,20,Sighting of a Glowing Ring floating down then across and past our hotel window. 2 different sightings. +2010-01-17,25.7738889,-80.1938889,Miami,FL,rectangle,60,Bright lights and fast moving object! +2011-11-07,41.0241667,-80.615,Poland,OH,flash,1800,Red white green blue stat. light in SE sky on OH/PA border. Thru binoculars, really see color and flashing.((NUFORC Note: Sirius? PD)) +2011-11-07,39.9611111,-82.9988889,Columbus,OH,disk,15,low flying Silver disk ufo sighted in central ohio. Seen in broad daylight then became invisible +2011-11-07,30.3583333,-103.6605556,Alpine,TX,triangle,300,5 Triangle shaped with red and bright white lights. +2011-11-07,32.0833333,-81.1,Savannah,GA,light,30,it was silent and traveled much faster than any aircraft. +2011-11-07,34.2561111,-78.045,Leland,NC,circle,20,Two white lights above Leland (NC) moving towards Carolina Beach +2011-11-07,28.9669444,-98.4783333,Pleasanton,TX,circle,240,Black disc, Unidentified Flying Object just south of San Antonio, Tx +2011-11-07,38.4022222,-122.8227778,Sebastopol,CA,fireball,300,Orange fireball seen one thousand feet up in the sky by social worker and contractor. It continually rose but also changed direction an +2011-01-17,47.6777778,-116.7794444,Coeur D'alene,ID,circle,25,Circle moving fast left trail of light about twice the size of the full moon. +2011-11-07,34.4988889,-82.0144444,Laurens,SC,triangle,120,pulsating orange lights in a triangle formation +2011-01-17,40.5686111,-75.095,West Milford,NJ,fireball,120,Five orange orbs of fire/light dancing in sky in West Milford, NJ +2011-01-17,42.8666667,-106.3125,Casper,WY,sphere,21600,Multiple, white, sphericle craft pretending to be stars that stay still sometimes & move other times over Casper, Wy +2011-01-17,33.4147222,-111.9086111,Tempe,AZ,unknown,120,Loud pulsating "woor...woor" noise shook apartment complex walls and set off car alarms at night in Tempe AZ +2011-01-17,36.3047222,-86.62,Hendersonville,TN,triangle,120,BRIGHT LIGHTS IN TRIANGLE SHAPE OVER HOuse +2011-11-07,36.3133333,-82.3536111,Johnson City,TN,light,10,bright light gust of wind then it was gone. +2011-11-07,39.8813889,-83.0930556,Grove City,OH,triangle,5,V shaped object, or grouping of objects, flying low - completely silent - no lights. +2011-11-08,35.5066667,-97.7622222,Yukon,OK,disk,120,ufo seen in night sky with movment like nothing man made +2012-11-07,34.1486111,-118.3955556,Studio City,CA,light,60,Bright flash of light appears from deep space blackness 7 or 8 times and then suddenly disappears +2012-01-17,42.0527778,-124.2827778,Brookings,OR,light,300,Glowing Orange light seen in Sky over Brookings Oregon +2012-11-07,30.3672222,-89.0927778,Gulfport (Near),MS,changing,600,11:30am in gulfport ,MS cigar shape craft broke into two ships lasted 15 mins a plane couldn't land circled 3xs. +2012-01-17,32.7152778,-117.1563889,San Diego (On Mexican Border),CA,fireball,600,3 bright(star-like), orange fireballs with white swirly tails. +2012-11-07,35.0844444,-106.6505556,Albuquerque,NM,light,1200,A star, a planet? Can't possibly be. ((NUFORC Note: We suspect that the time may be flawed. PD)) +2012-11-07,28.4772222,-81.9061111,Bay Lake,FL,light,240,Three brightly glowing objects above sun during sunset + Fireball 2 hours later. +2012-01-17,47.9033333,-91.8669444,Ely,MN,chevron,5,5 lights in the sky formed one object. +2012-01-17,47.6472222,-90.6747222,Lutsen,MN,rectangle,20,A long shape with 4 to 5 lights that would go on and off in a row...then when lights were gone no shape in the sky...it was seen later +2012-01-17,39.1752778,-84.2944444,Milford,OH,other,60,I was driving home from work up SR 131 coming from Rt 50 in Milford. It was roughly 6:00pm. About a half mile up the road, I saw a br +2012-11-07,38.0672222,-117.2291667,Tonopah,NV,light,1200,Reentry followed by multiple lights hovering above city +2012-01-17,40.5866667,-122.3905556,Redding,CA,fireball,300,Orange Fireballs in the northern sky over Redding +2012-01-17,27.5061111,-99.5072222,Laredo,TX,unknown,30,Light traveling West to East across the sky. +2012-11-07,42.8125,-86.0186111,Zeeland,MI,triangle,300,All amber lights 16 total were grouped together hovering +2012-11-07,42.8666667,-106.3125,Casper,WY,sphere,20,Saw a green orb floating/flying object above me while driving. +2012-11-07,26.4611111,-80.0730556,Delray Beach,FL,other,60,Huge, boomerang shaped, unlit object flying over the cirrus clouds, N to S over Delray Beach, FL, 2 witnesses +2012-11-07,36.6061111,-118.0619444,Lone Pine (Mt. Whitney),CA,unknown,60,Encounter with et and being chased for 60 miles. +2012-11-07,41.0127778,-81.6052778,Barberton,OH,fireball,180,Fire in the sky on a crisp starry fall night. +2012-01-17,44.4686111,-71.1855556,Berlin,NH,light,60,3 lights in the sky +2012-11-07,28.5380556,-81.3794444,Orlando,FL,light,5,Bright dark green light flashed in western sky, increased in brightness 2-3 times then nose dived and disappeared. ((Meteor??)) +2012-11-07,47.4958333,-121.7855556,North Bend,WA,light,60,Large string of red lights. quarter to half mile long +2012-11-07,34.2255556,-77.945,Wilmington,NC,light,600,Two stationary orange lights in the sky flickering on and off, fading to a reddish color before dissapearing. +2012-11-07,42.9119444,-83.9847222,Durand,MI,light,600,Several scattered lights in sky slowly formed a single line. +2012-11-07,26.5625,-81.9497222,Cape Coral,FL,fireball,15,Super bright orangish red shooting flame across the sky in Cape Coral, FL +2012-11-07,32.7938889,-79.8627778,Mount Pleasant,SC,circle,300,Coastal residents near Mount Pleasant SC witness 5 bright orange round lights darting among each other at 9:00 PM on Wednesday, Nov-7th +2012-01-17,37.0808333,-119.4844444,Auberry,CA,fireball,60,Unusual fireball seen going across the sky +2012-11-07,32.2216667,-110.9258333,Tucson,AZ,triangle,45,Bright, orange, triangular light north of Tucson moving towards the south then turning east and disappearing +2012-11-07,41.1238889,-100.765,North Platte,NE,fireball,30,Fastest thing ever went from 10000 feet to 50000 feet .in 15 sec. +2012-11-07,44.8833333,-93.2827778,Richfield,MN,circle,5,Yellowish/Orange sphere traveling across the sky. +2012-11-07,41.2586111,-95.9375,Omaha,NE,fireball,30,Huge ball of light came up from the ground and shot into the atmosphere +2012-01-17,39.8494444,-75.3561111,West Chester,PA,triangle,600,Slow low flying unidentified craft +2012-11-07,43.5944444,-83.8888889,Bay City,MI,teardrop,5,Reddish orange object heading South near James Clements +2012-11-07,40.015,-105.27,Boulder,CO,triangle,5,Boulder CO Triangle/Chevron Object. +2013-11-07,29.7630556,-95.3630556,Houston,TX,formation,10,Two sets of lights in the night sky. +2013-11-07,42.8666667,-106.3125,Casper,WY,chevron,3,Unexplained over Casper. +2013-01-17,45.7202778,-123.8927778,Nehalem,OR,light,5,Bright white "light" performs extreme maneuvers at OR coast. +2013-11-07,40.9402778,-74.1322222,Fair Lawn,NJ,unknown,2,No Sound Saw four Lights as Driving down 208N +2013-11-07,38.7041667,-77.2280556,Lorton,VA,circle,30,Craft hovered overhead visible for about 30 seconds and then disappeared. +2013-01-17,30.2669444,-97.7427778,Austin,TX,circle,120,Round silver object appearing and disappearing twice in sky. +2013-11-07,38.8822222,-77.1713889,Falls Church,VA,triangle,5,Very large triangle of star lights gliding across sky. +2013-11-07,32.9808333,-80.0327778,Goose Creek,SC,diamond,1200,Diamond shaped with one side thinking back with LED like row of lights with circular lights in center +2013-11-07,30.6941667,-88.0430556,Mobile,AL,light,60,Bright and silent LED-light like object drifting through evening sky, lights fade and object eventually disappears. +2013-11-07,28.9538889,-95.3594444,Freeport,TX,light,300,It was a white light that kept getting bright then fading. Then, disappeared. ((NUFORC Note: Iridium satellite flare confirmed. PD)) +2013-01-17,48.1958333,-114.3119444,Kalispell,MT,circle,600,12 ufos flying together. +2013-11-07,42.865,-71.3744444,Londonderry,NH,triangle,60,3 bright white lights flying low towards Derry, NH. +2013-01-17,39.1855556,-78.1636111,Winchester,VA,light,1500,Many Red Lights Observed South of Winchester, VA. +2013-01-17,26.9758333,-82.0908333,Port Charlotte,FL,fireball,5,Fire/light ball in Florida night sky. +2013-01-17,40.2330556,-76.1375,Denver,PA,triangle,300,Triangular UFO hovering over Lancaster, PA. +2013-01-17,44.98,-93.2636111,Minneapolis,MN,formation,900,Orange/blue light-ball cluster over downtown Minneapolis 1/17/13. +2013-11-07,40.1672222,-105.1013889,Longmont,CO,sphere,10,Triangle pattern formed by three separate objects emitting light, adjusted formation and readjusted. +2013-11-07,21.8763889,-159.4538889,Poipu,HI,fireball,120,Husband and wife on vacation. Went outside to look at the moon and saw what I thought was an airplane. Realized it was traveling too sl +2013-11-07,36.1866667,-94.1286111,Springdale,AR,chevron,10,Chevron shape with an extra bend on each end, dark and completely silent. +2013-11-07,36.2830556,-92.4938889,Gassville,AR,light,7200,11pm cluster of lights seen in and over Mountain Home and Gassville Ar. ((NUFORC Note: Sirius?? PD)) +2013-01-17,41.8266667,-74.1266667,High Falls,NY,cigar,7200,Figures seen. +2013-01-17,29.5633333,-95.2858333,Pearland,TX,fireball,2,Green light moving fast across sky seen in pearland. +2013-01-17,40.0991667,-83.1141667,Dublin,OH,circle,120,Bright flashing objects appear and rapidly depart, after a brief visit. +2014-01-17,36.175,-115.1363889,Las Vegas,NV,light,180,Blue strobe light floating in red rock around 02:17am. +2014-01-17,28.5380556,-81.3794444,Orlando,FL,cylinder,300,Blue cylinder over east Orlando erratic flying/flashing inject. +2014-01-17,29.9838889,-93.1291667,Sweet Lake,LA,sphere,300,Bright "Star-Shaped" object, possibly out of the Atmosphere, that could move up, down and sideways, and Fade in and Out on B +2014-01-17,33.0580556,-112.0469444,Maricopa,AZ,sphere,1800,2 bright pulsating stars and three orange orbs. +2014-01-17,39.0638889,-108.55,Grand Junction,CO,light,1800,Four red lights slowly moving, high above. +2014-01-17,33.7125,-115.4013889,Desert Center,CA,sphere,300,Mystery objects seen over Desert Center Ca and disappeared thru a puff of smoke. +2014-01-17,39.1625,-76.625,Glen Burnie,MD,other,300,Boomerang shaped moving very fast, descending , from northwest to east then back west and then I lost sight of the object seem to be +2014-01-17,30.3116667,-95.4558333,Conroe,TX,sphere,7,Riding bus looked out window and saw a silver sphere. +2014-01-17,35.9552778,-96.0086111,Glenpool,OK,unknown,300,Two streams flying into each other. +2014-01-17,39.9205556,-105.0861111,Broomfield,CO,other,600,Three strange lights in triangular formation, one brighter than any aircraft I have ever seen; one passed overhead. +2014-01-17,47.0344444,-122.8219444,Lacey,WA,formation,120,Red and blue light formation seen by 6 people streak from north to south, then back north, hover, then dropped slowly beyond tree line. +2014-01-17,33.7455556,-117.8669444,Santa Ana,CA,light,120,Yellow light in the flight path of a 747 that quickly vanished as the plane got it it's sight over garden grove ca. +2014-01-17,35.7719444,-78.6388889,Raleigh,NC,circle,180,Orange light over North Raleigh. +2014-01-17,26.1416667,-81.795,Naples,FL,light,900,Orange and white lights traveling across the sky. +2014-01-17,40.0394444,-84.2033333,Troy,OH,sphere,180,A sphere with several red and white lights, hovering at first and then flew out of sight at lightning speed! +1972-11-08,32.2216667,-110.9258333,Tucson,AZ,triangle,900,Dark triangular object emitting "dread", searching for something, then challenges USAF base security. +1972-01-18,35.1211111,-81.5161111,Blacksburg,SC,light,7200,In the early 70's, four of us chased lights in the sky. ( we were in a vehicle ) +1974-01-18,44.7975,-69.8802778,Madison,ME,oval,30,Oval, Glowing Chartreuse / Green Craft with Rotating / Blinking Red to Yellow lights along the side +1977-11-08,39.0375,-120.9713889,Weimar,CA,other,420,i was 23 years old and had just given birth to my first child two days previous. my daughter was just hours old and i was marvelling a +1977-01-18,41.7672222,-71.3652778,Riverside,RI,oval,86400,UFO EXPERIENCE (PHENOMENA) TUESDAY JANUARY 18, 1977 +1988-01-18,34.6525,-96.5258333,Stonewall,OK,light,420,Strange light in the southern sky (Oklahoma, 1988). +1994-01-18,43.3247222,-95.1497222,Milford,IA,flash,3600,The objects hover to the west changing diffrent colors and disaprearing after 8:00 +1995-11-08,45.4833333,-118.8288889,Pilot Rock,OR,light,3600,Two brothers witness cluster of 4 bizarre blue-white lights ahead on highway. Strange effects. Drove 98.7 miles on 2 gal. gas. +1997-11-08,34.4113889,-118.5391667,Saugus,CA,other,1800,2 ships were spotted +1997-11-08,38.2541667,-85.7594444,Louisville,KY,changing,2700,No aircraft could have made these types movement through the air without stalling out of control and crashing to the ground. +1997-01-18,36.175,-115.1363889,Las Vegas (Se Of),NV,sphere,10,Luminous sphere (white) travelling due west at a very high velocity (it slowed down and then accelerated). It moved along a ridge of a +1998-11-08,34.0522222,-118.2427778,Los Angeles (Downtown),CA,fireball,5,a spectacular fireball moving horizontally from south to northeast.. approx. the same height as the regular helicopters and small aircr +1999-01-18,47.0380556,-122.8994444,Olympia,WA,unknown,15,A white light outside my south window was so bright it turned my blue curtains white. +1999-01-18,33.1433333,-117.1652778,San Marcos,CA,light,4500,I awoke suddenly at 2:00a.m. & looked out into the sky and saw what I thought to be a very bright falling star. It disappeard, & though +1999-11-08,43.1127778,-94.6827778,Emmetsburg,IA,unknown,480,I saw what appeared to be a star-like object towards the west. Upon observing the object for a period of time. I notice it had one blin +1999-11-08,41.6611111,-91.53,Iowa City,IA,egg,600,A white egg shaped object appears in the sky on a clear blue morning and thens grows in size and drifts slowly north. I watch it closel +1999-01-18,39.2902778,-76.6125,Baltimore,MD,light,45,Approximately 15 spheres of light traveling down and to the east. +1999-01-18,37.775,-122.4183333,San Francisco,CA,unknown,30,big bright light, shining backwards in the shape of a V, object was moving forward ver slowly. +1999-01-18,34.0522222,-118.2427778,Los Angeles,CA,light,600,There was a spotlight effect with flare of about 15 times the width of the light. +1999-11-08,37.775,-122.4183333,San Francisco,CA,light,600,I and the Bridge of The Uss Abraham Lincoln witness a U.F.O of the coast of Northern California.. +1999-11-08,44.3291667,-73.1111111,Hinesburg,VT,unknown,120,Aircraft engine noises were heard in the woods behind my house on 11\8\99. This noise was heard for a period of approx 2 minutes, at t +1999-11-08,30.2669444,-97.7427778,Austin,TX,unknown,1200,I witnessed an extremely bright, pulsing object at approx. 3000 ft, slowly descending and then accelerating - this object was completel +1999-11-08,45.3247222,-118.0866667,La Grande,OR,formation,15,I was west bound on I-84 just east of LaGrande, Oregon at about 2225, 11/8 when I obseverd three what I thought at first to be very bri +1999-11-08,45.3513889,-89.6663889,Irma,WI,other,10800,On way to gleason (Trout capital of the world) on Hwy J, spotted 2 or more lights in the southern sky. +2000-01-18,35.4005556,-119.4686111,Buttonwillow,CA,cylinder,20,Large glowing cylinder object don't know what it was, don't wanna know +2000-01-18,32.0866667,-100.3172222,Blackwell (08 Mi. North Of),TX,light,30,Light, like a star moving fast and staright. +2000-11-08,47.6105556,-122.1994444,Bellevue,WA,other,300,Strange object floating above the Bellevue Mall +2000-11-08,33.5091667,-111.8983333,Scottsdale,AZ,teardrop,5,Tear drop (shiny mercury) shaped object flew across sky, about the size of a tennis ball at arms length. Left a thin trail. +2000-01-18,41.7561111,-124.2005556,Crescent City,CA,fireball,300,Saw a bright light (looked like police chopper with spotlight). watched a few sec, noticed a blue tail of smoke??? Saw light beam g +2000-01-18,37.2266667,-121.9736111,Los Gatos,CA,other,900,A vibrant white cone of light that faded leaving a glowing blue phenomenon which persisted for many minutes and witnessed by three. +2000-01-18,39.2475,-114.8877778,Ely,NV,sphere,120,Me and my mom were driving along the road and as soon as we were passing the KOA campground in the corner of my eye I saw a rounded obj +2000-01-18,37.6625,-121.8736111,Pleasanton (35miles Due East Of Sfo),CA,light,330,Saw a Very Bright Light Moving slowly/silently for 30secs. it had a very large fan-like projection of light behind it. when it disappea +2000-01-18,34.1866667,-118.4480556,Van Nuys,CA,light,60,A light appeared in the sky over Van Nuys Golf Course, and then disappeared. +2000-11-08,33.3061111,-111.8405556,Chandler,AZ,circle,900,At 19:15 p.m., November 8, 2000 our daughter phoned to tell us "Bubba" was back and to go look towards her house in the northern sky. +2000-01-18,45.3,-122.7725,Wilsonville,OR,unknown,60,Pulsating (like a strobe light) object in the sky, traveling south to north, then turning east. +2000-11-08,38.5330556,-81.8936111,Winfield,WV,fireball,300,west virginia, winfield -fire in the sky +2000-11-08,40.2577778,-75.7266667,Douglassville,PA,other,300,Sparkling, multi-colored cresent shaped object heading east over Douglassville, Pa +2000-11-08,44.0522222,-123.0855556,Eugene,OR,light,8,What appeared to be a falling star , changed it's mind and made a hairpin u-turn and shot back up the way it came. +2001-11-08,42.1538889,-88.1361111,Barrington,IL,oval,300,shiny oval object the only thing in a clear sunset sky +2001-11-08,36.55,-85.5052778,Celina,TN,light,15,On 11-08-1001 at approx. 1615 hrs. I was looking up in the sky when traveling due North I saw a bright light traveling at an extremely +2001-11-08,41.85,-87.65,Chicago,IL,light,60,2 objects in the ski moving from north too south at a very high rate of spped no aircraft marking lights at all but when one object fla +2001-11-08,41.3205556,-75.8194444,Exeter,PA,egg,120,Triangle array of egg shaped objects. +2002-11-08,36.8655556,-87.4886111,Hopkinsville,KY,cylinder,300,Object seen over the skies of Kentucky. +2002-11-08,33.425,-94.0475,Texarkana,TX,light,120,flashing,then solid with bright flaring. +2002-11-08,35.1483333,-81.8611111,Chesnee,SC,other,300,it seemed to be like an mirror in the sky. +2002-11-08,42.2141667,-83.15,Wyandotte,MI,triangle,1200,My mom and I were driving to Subway for dinner. I looked out my window towards the Detroit River in the east. There were 3 different do +2002-11-08,30.6941667,-88.0430556,Mobile,AL,chevron,300,Alabama Delta Winged Craft with no sound +2002-01-18,40.7616667,-73.3297222,Deer Park,NY,light,180,Suspicious flying object on Long Island, January 18, 2002, 21:40 +2002-01-18,41.4019444,-74.3247222,Goshen,NY,fireball,3,orange ball of light moving fast - 1 hour north of NYC - lasted only 1-2 secs before it disappeared - no engine noise ! +2002-01-18,38.005,-121.8047222,Antioch,CA,fireball,120,Two orange objects seen one dropping smaller orange lights underneath it. +2003-11-08,43.5455556,-116.8122222,Marsing,ID,flash,120,While sitting in living room talking about the bible, a brillant flash came through the windows, ran outside seeing meteriors shooting +2003-01-18,32.9975,-87.63,Moundville,AL,changing,2700,this is the third time i have seen these objects in less than a month in this area after the first time i was so scared that i wasn't s +2003-11-08,34.5827778,-117.4083333,Adelanto,CA,other,60,something drew my eyes to it, as I do not always look in that particular direction when walking on my walkway +2003-11-08,44.0463889,-123.0208333,Springfield,OR,cigar,600,Two dark objects flying low without any sounds. +2003-11-08,48.6994444,-94.3427778,West Central,MN,oval,2,HBCCUFO CANADIAN REPORT: Object was oval in shape, turns to a vertical position and emits a red glow. +2003-01-18,32.8472222,-117.2733333,La Jolla (On I-5 At Gillman Road Exit),CA,unknown,120,u.f.o. siting in la jolla, california +2003-11-08,41.5380556,-72.8075,Meriden,CT,light,120,We saw the lunock light for about 2 min. the took off in the light! +2003-11-08,40.7141667,-74.0063889,New York City (Staten Island),NY,light,300,Three reddish orange star-like lights pass high in the sky. +2003-11-08,44.6336111,-121.1283333,Madras,OR,circle,900,At about 6:30 p.m. 11/08/03, our next door neighbor's litte girl came over, knocked on the door, and asked if we wanted to see a UFO. +2003-11-08,33.4483333,-112.0733333,Phoenix,AZ,flash,2,"Shooting star" below cloud layer +2003-11-08,38.8338889,-104.8208333,Colorado Springs,CO,other,60,Backlit by the nearly eclipsed moon, my husband and I saw a dark, fuzzy boomeranged shaped object moving slowly. +2003-11-08,48.7597222,-122.4869444,Bellingham,WA,unknown,2,Three orange streaks the time of the lunar eclipes. +2003-11-08,41.175,-76.075,Glen Lyon,PA,sphere,2,Took a series of photos of moon eclipse at five minute intervals and one captured lights in the sky. +2003-11-08,30.4211111,-87.2169444,Pensacola,FL,chevron,10,Another boomerage shaped craft during lunar eclispe +2003-11-08,42.5377778,-83.2330556,West Bloomfield,MI,fireball,6,I also saw a fireball on the Night of the 11/08/03 Lunar Eclipse! +2003-11-08,41.9444444,-71.2861111,Attleboro,MA,triangle,30,a very lowflying massive craft spotted during lunar eclipse +2003-11-08,34.7047222,-85.2819444,Lafayette,GA,changing,30,boomerang shaped, football field size, gliding silently, reflecting stars above it to the underside of it +2003-11-08,36.8527778,-75.9783333,Virginia Beach,VA,chevron,45,sighting during lunar eclipse +2003-01-18,34.1141667,-116.4313889,Yucca Valley (Rural),CA,diamond,900,I was feeding my dog when I saw it, the silver, dimond like craft with flames at the end. +2003-11-08,42.3316667,-71.1216667,Brookline,MA,other,240,hook shape of multiple small lights gliding silently at night during lunar eclipse +2003-11-08,40.4591667,-74.3613889,Sayreville,NJ,unknown,40,While watching the Luner Eclipes with a Meade Telescope, passing objects have been videotaped +2003-11-08,42.4222222,-88.6136111,Harvard,IL,triangle,300,Harvard, IL. 11/8/03 8:00 pm 5 minutes triangle shape no noise traveling to the south south east lights on side and rear +2003-11-08,40.8152778,-73.0455556,Holtsville,NY,other,10,V-shape object seen in backyard during lunar eclipse. +2003-11-08,28.5388889,-80.6722222,Merritt Island,FL,other,900,Moving stars underneath the lunar eclipse +2003-11-08,40.7141667,-74.0063889,New York City (Jamaica Area),NY,other,600,UFO SIGHTING DURING ECLIPSE NOVEMBER 7, 2003 +2003-11-08,40.7141667,-74.0063889,New York City (Manhattan),NY,formation,3600,Shape-changing formations above New York City during lunar eclipse +2003-11-08,40.7141667,-74.0063889,New York City,NY,changing,120,Strange Line Over Manhattan +2003-11-08,41.2916667,-72.3766667,Old Saybrook,CT,light,1800,Group of 6 to 8 luminous objects slowly moving form NE to SW in the direction of New York City. +2003-11-08,39.6269444,-74.3152778,Parkertown,NJ,other,3,while watching the lunar eclipse I observed a metallic object over the moon. +2003-11-08,39.9522222,-75.1641667,Philadelphia,PA,formation,120,A v-shaped line of lights moving in unison. +2003-11-08,27.0994444,-82.4544444,Venice,FL,flash,2,Two separate flashes across the sky on 11-08 lunar eclipse seen from our driveway around 8pm-8:30pm +2003-11-08,40.5363889,-80.1847222,Sewickley,PA,unknown,2,J shape by Moon +2003-11-08,41.6977778,-72.7241667,Newington,CT,other,20,I was in my backyard viewing the lunar eclipse when i noticed 15 objects flying just below the lunar eclipse at about 8:10pm, they were +2003-11-08,42.6608333,-77.0541667,Penn Yan,NY,chevron,90,Lunar Eclipse UFOS - Illuminated Geese +2003-11-08,40.7141667,-74.0063889,New York City,NY,triangle,60,Triange shaped object moving across the sky in New York City on a Lunar eclipse +2003-11-08,40.7141667,-74.0063889,New York City (Yonkers),NY,formation,2,Right half of arrow. +2003-11-08,44.3105556,-69.78,Augusta,ME,sphere,14,I went out side to look at the Lunar Eclipse, When i asked my Fiancee to come outside and look at the Lunar Eclipse. As I was looking a +2003-11-08,40.7141667,-74.0063889,New York City (Manhattan) (Upper East Side),NY,chevron,900,Two Chevrons over New York City +2003-11-08,40.7141667,-74.0063889,New York City,NY,disk,60,Dark, silent cylinder/worm shape over NYC the night of the eclipse +2003-11-08,40.6766667,-73.8441667,Ozone Park,NY,triangle,900,Sliver or Dark Grey Colored Boomerang With No Lights Or Sound +2003-11-08,40.7875,-73.8463889,College Point,NY,formation,10,Three large luminescent objects +2003-11-08,40.7141667,-74.0063889,New York City (Manhattan),NY,triangle,6300,"V" shaped light formations over manhattan during lunar eclipse +2003-11-08,43.6613889,-70.2558333,Portland,ME,other,4,I was watching the lunar eclipse out by Back Cove from a soccer field. I was alone, and pretty much freezing to death. I saw a shape mo +2003-11-08,38.0291667,-78.4769444,Charlottesville,VA,unknown,60,3 flashing objects moving , stopping flashing blue and red in the sky then disappearing in space +2003-11-08,40.8788889,-73.1572222,St. James,NY,triangle,300,this happened during the end of the luner eclips i would have put it on eairlier but i have been out any way this was around 9:00 i was +2003-11-08,35.5463889,-77.0525,Washington,NC,light,180,50-75' lights hover than streak away out of sight +2003-11-08,40.7141667,-74.0063889,New York City (Brooklyn),NY,chevron,900,V-shaped translucent object seen near the moon during the eclipse +2003-11-08,37.5536111,-77.4605556,Richmond,VA,triangle,20,A V-shaped formation of triangles moving across the sky +2003-11-08,42.3211111,-85.1797222,Battle Creek,MI,diamond,40,Silent UFO over Battle Creek MI on night of Eclipse. +2003-01-18,41.5036111,-84.4141667,Stryker,OH,rectangle,5,I saw something that at first I thought was a shooting star, but then noticed that it was too spread out and dim to be a shooting sar. +2004-01-18,39.7047222,-105.0808333,Lakewood,CO,formation,1200,Small, circular objects floating in a chevron pattern (12 formations total) in a NNE direction over the Lakewood, CO area. +2004-11-08,42.0188889,-87.8027778,Niles,IL,other,3600,I saw lights in the sky going all in one direction and all my friends saw it. +2004-01-18,34.2241667,-118.2391667,La Crescenta,CA,chevron,900,long pencil-like fast moving craft wtih steady green lights and a flashing red light +2004-11-08,39.0997222,-94.5783333,Kansas City,MO,triangle,180,Triangle Flyover Surprise. +2004-11-08,38.0291667,-78.4769444,Charlottesville,VA,other,120,At approxamitly 5:48 this morning I was getting ready to get into my car and I happened to look up in the sky to see a shooting star. +2004-11-08,39.1625,-76.625,Glen Burnie,MD,sphere,240,white/silver orb seen in Glen Burnie Md. following 2 high altitude jets leaving contrails. +2004-11-08,32.525,-93.75,Shreveport,LA,triangle,60,Something out of the ordinary..looked like a flying constellation to me..but not to him... +2004-11-08,38.8338889,-104.8208333,Colorado Springs,CO,oval,1500,Picture of possible craft traveling to Cheyenne Mountain in Colorado. +2004-01-18,28.9002778,-81.2638889,Deltona,FL,other,60,Bright White, Shaped like a boomarang, just disappeared ! +2004-11-08,26.9294444,-82.0455556,Punta Gorda,FL,light,30,A BALL OF LIGHT DECENDING FROM SOUTH TO NORTH +2004-11-08,30.3319444,-81.6558333,Jacksonville,FL,oval,4,Large bright oval object traveling 4 times faster than a jet. +2004-01-18,35.4769444,-76.8119444,Bath,NC,triangle,450,see washington daily news article-front page. washington, n.c. +2004-11-08,47.1275,-118.3788889,Ritzville (Near; On I-90),WA,triangle,600,triangular shaped object that had a bright blue/purple light that flashed +2004-11-08,44.3236111,-93.9577778,St. Peter,MN,light,900,3 glowing dual colored lights above southern Minnesota town +2004-11-08,42.2286111,-71.5230556,Hopkinton,MA,disk,120,Bright White Saucer Shaped Object Sighted At Tree Height +2004-11-08,41.6827778,-88.3513889,Oswego,IL,light,7200,Three red lights equally spaced one on top of another in Eastern Sky +2004-01-18,48.0402778,-122.405,Langley,WA,unknown,15300,Saw a circular bright spot on the ground with heavy swirling vapors and two mysterious lights above. +2004-11-08,40.4655556,-80.0658333,Mckees Rocks,PA,unknown,1425,Red, green and blue horizontal lights, up to five crafts - not in formation +2004-11-09,41.0813889,-81.5191667,Akron,OH,disk,0.6,disk in the sky in akron ohio +2005-11-08,42.0694444,-72.6152778,Agawam,MA,light,2,shooting star like till changed angle to giant question mark shape lasted 2sec never seen one change direction or last that long before +2005-01-18,45.5236111,-122.675,Portland,OR,circle,45,High altitude,large than any other aircraft,silent and no marker lights or st +2005-11-08,40.485,-106.8311111,Steamboat Springs,CO,unknown,90,Slow moving craft made no sound, had incredibly bright lights that didn't illuminate the trees or ground. 500 Lights On Object0: Ye +2005-11-08,31.315,-85.8552778,Enterprise,AL,light,10,Silent Moving Bright Light makes "impossible" 90 degree turn to the west +2005-01-18,33.6,-117.6711111,Mission Viejo,CA,sphere,30,Extremely bright object in the eastern sky in southern O.C. moving very slowly. ((NUFORC Note: Possible contrail?? PD)) +2005-01-18,33.9163889,-118.3516667,Hawthorne,CA,other,180,I was at work about 7:00 to 7:30 AM when a co worker said look at the U.F.O. at first I said "it was just a helicopter with two big lig +2005-11-08,43.2122222,-77.4302778,Webster,NY,egg,20,groups of white-ish silver shapes moving quickly from right to left in a horizontal line +2005-11-08,37.9716667,-100.8722222,Garden City (30 Miles East Of),KS,circle,60,Glowing object photographed in evening sky near Garden City Kansas +2005-11-08,39.6836111,-75.75,Newark,DE,light,120,Red-Orange light seen from the University of Delaware campus +2005-11-08,42.1538889,-88.1361111,Barrington,IL,flash,4,Quick flash in the sky +2005-11-08,37.948055600000004,-122.0597222,Pleasant Hill,CA,circle,3600,Circling translucent light in clockwise direction, within clouds, with no apparent light source from ground. ((Advertising light?? PD) +2005-11-08,37.948055600000004,-122.0597222,Pleasant Hill,CA,circle,3600,Circling translucent light in counter-clockwise direction, above clouds, with no apparent light source from ground. +2005-11-08,33.3416667,-111.9833333,Ahwatukee,AZ,fireball,1,white ball that fell into mountains +2005-11-08,38.005,-121.8047222,Antioch,CA,unknown,600,Lights above Antioch, CA. ((NUFORC Note: Witness remains anonymous. Possible advertising light, or hoax?? PD)) +2006-11-08,39.7391667,-104.9841667,Denver,CO,formation,30,4 Bright objects fly in formation over downtown Denver and the Platte River. +2006-11-08,33.9136111,-98.4930556,Wichita Falls,TX,light,30,I steady no blink Bright Plane Light goes one direction, sways back, then Drops and sways like a Z +2006-01-18,31.7605556,-93.0861111,Natchitoches,LA,light,2400,My friends and I witnessed 4 objects of orange light moving across the sky in formation for about 40 minutes. ((Advertising lights??)) +2006-11-08,32.2216667,-110.9258333,Tucson,AZ,other,300,A close view from Tucson, AZ +2006-11-08,32.2216667,-110.9258333,Tucson,AZ,other,300,A close view from tucson, AZ. +2006-11-08,32.2216667,-110.9258333,Tucson,AZ,triangle,600,Bright triangle shaped lights over Tucson skies +2006-11-08,33.7591667,-118.0058333,Westminster,CA,unknown,300,Small Translucent Reflecting Object +2006-01-18,26.8230556,-80.1388889,Palm Beach Gardens,FL,light,3600,White lights, slowly moving. Distinctly different from stars, meteors, and comets due to appearance and movement. To ensure that it was +2006-11-08,40.1786111,-122.2347222,Red Bluff,CA,triangle,600,AS i was going to work i saw a slow moviing triangular shaped object in the sky.It made no sound . Others must have seen it . Thi +2006-01-18,38.9783333,-76.4925,Annapolis,MD,oval,3,I was sitting in my truck at the stop light on Riva Rd waiting to cross under Aris T> Allen overpass and go up the ramp. Suddenly an ov +2006-11-08,32.2094444,-99.7963889,Tuscola,TX,light,600,Was out back with my mothe just talking, we saw a plane in the sky that was leaving a trail behind it like most planes do in the sky. S +2006-11-08,32.7152778,-117.1563889,San Diego,CA,light,1,Blue light/object sped across the sky- San Diego, CA +2006-11-08,36.6002778,-121.8936111,Monterey,CA,sphere,60,Yellowish sphere traveling at high speed with sudden sharp and well defined course changes +2006-11-08,39.9322222,-85.8480556,Fortville,IN,circle,180,Could not get camera in time...traveled too fast! +2006-11-08,33.9375,-117.2297222,Moreno Valley,CA,circle,5400,Our guard reported a ufo this morning I am sending this report on his behalf.He reported that last night around 1930 he saw some type o +2006-11-08,31.8455556,-102.3672222,Odessa,TX,disk,10,Additional info on round glowing white gliding object reported 11/06/2006 +2006-11-08,31.8455556,-102.3672222,Odessa,TX,disk,10,Silent Glowing white disc shaped object 100 foot off the ground +2006-01-18,39.3508333,-101.7097222,Goodland,KS,unknown,2700,Brief Orange Stationary Lights and Misc. Unusual White Lights +2006-11-08,29.7027778,-98.1241667,New Braunfels,TX,fireball,10,2 green fireballs following one another traveling northeast to southwest at high rate of speed with no contrail or sound +2006-11-08,26.0108333,-80.1497222,Hollywood,FL,diamond,120,three diamond shaped constatnt lights in asymetrical steday formation flying from north to south horizons +2006-11-08,39.7391667,-104.9841667,Denver,CO,triangle,15,Silent and Triangular shaped craft passes above Denver residence +2006-11-08,42.0147222,-89.3322222,Oregon,IL,formation,3600,lights moving in the sky. ((NUFORC Note: Possible sighting of the star Sirius?? PD)) +2007-01-18,40.7141667,-74.0063889,New York City (Queens),NY,light,2.5,Brilliant light streak across morning sky +2007-01-18,43.1547222,-77.6158333,Rochester,NY,circle,5,Bright Blue, Metallic Object seen over NYS Thruway around Roch, NY.... +2007-01-18,41.6577778,-72.3663889,Hebron,CT,light,300,A distant light moving straight up toward the sky. +2007-01-18,47.2955556,-93.4186111,Bovey,MN,light,240,Red light paces military jet over Minnesota +2007-11-08,33.4222222,-111.8219444,Mesa,AZ,other,900,Slowly moving and stopped craft barely over my home stayed for 15 minutes. +2007-11-08,29.7352778,-94.9772222,Baytown,TX,triangle,600,It wasn't all that bright but definitely a UFO, and it hadn’t had any wings like a plane either. +2007-01-18,32.7833333,-96.8,Dallas,TX,triangle,10,A triangular craft with three bright white lights on the front and two red bright lights on the back in the night sky. +2007-11-08,41.4994444,-81.6955556,Cleveland,OH,light,300,Private Pilot/Amateur Astronomer Witnesses Satellite-like Object Make 2 Course Corrections +2007-11-08,40.0377778,-76.3058333,Lancaster,PA,fireball,2,bright comet-like object with long tale traveling at high speed low to the ground +2007-11-08,38.9905556,-77.0263889,Silver Spring,MD,fireball,15,Falling object with strange green glow, like a meteor. +2007-11-08,41.4444444,-87.6313889,Crete,IL,flash,180,Stationary and repeated streaks of light in the sky. +2007-11-08,40.5394444,-75.4972222,Emmaus,PA,circle,2,Bright green circular object rapidly moving across the sky. ((NUFORC Note: Possible meteor?? PD)) +2007-11-08,40.2108333,-76.7913889,Highspire,PA,fireball,10,bright green ball with red tail crosses over southcentral Pennsylvania +2007-11-08,39.6836111,-75.75,Newark,DE,fireball,2,Bright BLUE/GREEN object streaked cross the sky from NE to SW. +2007-01-18,29.4238889,-98.4933333,San Antonio,TX,chevron,900,Two intense bright diamond shaped craft seen. +2007-11-08,30.6941667,-88.0430556,Mobile,AL,fireball,5,Green Fireball +2007-11-08,36.8222222,-107.9922222,Aztec,NM,fireball,3600,aztec crash?? +2008-01-18,31.4127778,-83.3291667,Enigma,GA,triangle,120,two crafts triangle shaped no sound bright orange lights +2008-11-08,33.6625,-117.5894444,Trabuco Canyon,CA,cigar,900,several UFOs sighted in trabuci canyon +2008-11-08,28.9022222,-82.5927778,Crystal River,FL,changing,300,Triangle over the power plany +2008-11-08,32.5888889,-96.685,Wilmer,TX,cigar,60,Cigar shaped craft seen hovering over Texas at noon +2008-11-08,36.4091667,-80.2061111,Danbury,NC,cylinder,360,cigar or cylinder shape object moving at a good rate of speed +2008-11-08,33.4669444,-117.6972222,Dana Point,CA,circle,30,I sent a message one week ago and this is really from someone I know who also says she saw the same foo fighter in the sky over Dana Po +2008-11-08,33.426944399999996,-117.6111111,San Clemente,CA,sphere,45,A very recent Foo Fighter following a small plane. Maybe pilot reported. +2008-11-08,47.8108333,-122.3761111,Edmonds,WA,light,780,In sequence two multi-colored rotating lights move North and East over South Whidby Island, approximately 5 minutes each, +2008-01-18,41.4108333,-74.4075,New Hampton,NY,circle,1200,three round shaped objects with red and yellow lights, hovering over trees for fifteen minutes no noise emitted. +2008-01-18,47.5302778,-122.0313889,Issaquah,WA,light,180,Blue-white light with lights attached or following made complete u-turn at slow steady speed. +2008-11-08,33.426944399999996,-117.6111111,San Clemente,CA,sphere,45,Foo fighters in San Clemente on 11-08-08, did you see something? +2008-11-08,39.8027778,-105.0869444,Arvada,CO,light,300,Bright, stationary lights, began to move slowly the accelerated and vanished +2008-01-18,42.7358333,-73.5619444,Brunswick,NY,unknown,2,Uncommonly fast moving light east of Albany, NY +2008-01-18,39.9008333,-76.6061111,Red Lion,PA,circle,900,The objects, one in a very luminous gold color and the others in a silvery color moved very fast and randomly from a starry dust. +2008-11-08,37.9886111,-84.4777778,Lexington,KY,disk,2,Craft with multiple lights, 1 red blinking light, in a saucer type shape in flight and hovering near a main road. +2008-01-18,40.9169444,-72.6625,Riverhead,NY,circle,5,I was driving on the LIE with my daughter heading west. The night was very clear. I looked up and saw a large bright round light just +2008-01-18,35.3786111,-81.3791667,Cherryville,NC,triangle,20,Triangle shaped object seen in NC sky +2008-11-08,47.2530556,-122.4430556,Tacoma,WA,formation,8,4 to 5 arrow shaped object race through the sky over Commencment Bay +2008-01-18,32.9658333,-97.6833333,Springtown,TX,circle,1800,((HOAX??)) Military helicopters escort UFO off to Fort Worth Miliary Base. +2008-01-18,32.9658333,-97.6833333,Springtown,TX,circle,1800,Military helicopters escort UFO off to Fort Worth Miliary Base. +2008-01-18,32.9658333,-97.6833333,Springtown,TX,circle,1800,NO HOAX +2008-01-18,47.0530556,-122.2930556,Graham,WA,triangle,60,Small triangle craft with lights observed hovering above tree top outside of home. +2008-01-18,38.545,-121.7394444,Davis,CA,circle,2,huge ball of light that seemed out of place with the given context of the sky when I looked up +2008-01-18,40.1791667,-75.1808333,Maple Glen,PA,light,1200,Spotlight like light seen in the sky +2009-01-18,32.5563889,-95.8630556,Canton,TX,other,52,Boomerang shape over Canton, TX +2009-01-18,32.5563889,-95.8630556,Canton,TX,other,53,On January 18, 2009 at approximately 0:50 a.m. in Canton, TX in Van Zandt county I spotted an unidentified flying object. I had just st +2009-01-18,37.725,-122.155,San Leandro,CA,rectangle,3,Large retangler object flamed out after 3 seconds traveling north east over northern california 3:32 AM +2009-01-18,37.2152778,-93.2980556,Springfield,MO,formation,900,3 light's clustered together north of I-44 from the Industrial Park on Kearny +2009-01-18,33.4483333,-112.0733333,Phoenix,AZ,circle,5,Still trying to convince myself I really saw it. +2009-01-18,43.7066667,-73.0286111,Pittsford,VT,oval,60,Large oval light from south traveling off into space +2009-11-08,36.1538889,-95.9925,Tulsa,OK,circle,4,Round, blue and fast +2009-01-18,34.0522222,-118.2427778,Los Angeles,CA,disk,3600,Glowing disk like object moving abot Los Angeles +2009-01-18,34.1841667,-118.9097222,Newbury Park,CA,triangle,120,Triangle UFO moving low across the sky a little before mid-day. +2009-01-18,27.5872222,-82.4252778,Parrish,FL,oval,5,single object, oval shaped, headed NE about 5 miles East of Parrish, white, 5 second duration +2009-11-08,33.9961111,-117.4047222,Rubidoux,CA,light,7200,Missing time and missing kids +2009-01-18,33.6694444,-117.8222222,Irvine,CA,fireball,2,Fireball with tail of sparks over Orange County skies +2009-01-18,33.6125,-117.7119444,Laguna Hills,CA,fireball,3,Broad fiery path of object moving at high rate of speed, very high in sky. +2009-01-18,33.8847222,-118.41,Manhattan Beach,CA,light,2,I saw a fast light moving across the sky and thought it was a shooting star. But I then thought to myself, how could i see a shooting +2009-01-18,37.5483333,-121.9875,Fremont,CA,fireball,3,Fireball in the sky falling near Mission Hills in background. Seemed to disappear.Don't know if it was a shooting star +2009-11-08,46.6022222,-120.5047222,Yakima,WA,light,3,light +2009-11-08,41.5733333,-87.7844444,Tinley Park,IL,light,1800,There back.................sighting in the east sky at 6"15 pm and I watched them Move close to each other and than in a straight f +2009-01-18,37.8716667,-122.2716667,Berkeley,CA,disk,2,Sighting is limited to photographic evidence, a single photograph taken pointing west from the Berkeley Hills (California). +2009-01-18,34.1066667,-117.8058333,San Dimas,CA,oval,600,Oval object, stationary at first, moved north to west at rapid speed after visual sighting. Craft not recognizable. +2009-01-18,37.775,-122.4183333,San Francisco,CA,light,10800,since januany 18, 09 i have been seen ligth in the sky fix and some others that move my video show diferent what my eye see dont know w +2009-01-18,33.7591667,-118.0058333,Westminster,CA,teardrop,30,An object in the sky, seemingly bell shaped and flying much lower than planes. It had a red steadily blinking light on the top and a ro +2009-11-08,42.3288889,-75.9680556,Whitney Point,NY,circle,7200,The object moved at high speed up and down and left and right in an oblong pattern. ((NUFORC Note: Probable celestial body. PD)) +2009-11-08,37.6305556,-122.41,San Bruno,CA,fireball,120,A bright red and white glowing fireball in the sky. +2009-01-18,38.5816667,-121.4933333,Sacramento,CA,flash,15,Flashing/colorful hovering light +2009-01-18,28.9825,-95.9691667,Bay City,TX,light,2,3 star colored lights traveling way faster than a commercial jet. +2009-01-18,33.8675,-117.9972222,Buena Park,CA,changing,900,I want some answers....................... +2009-11-08,40.3063889,-121.2308333,Chester,CA,other,240,helicopter like body, jet plane wings, miniature jet +2009-01-18,33.8444444,-117.7763889,Anaheim Hills,CA,oval,1200,Moon colored orb with red light inside and bright star light just outside the orb +2009-01-18,34.2175,-118.3694444,Sun Valley,CA,triangle,30,I saw a large black triangular shaped object hovering over my back yard. +2009-01-18,48.2413889,-122.3694444,Stanwood,WA,disk,1200,At approximately 9:00 pm, I noticed a large disk shaped light hovering low in the sky, west from my house. ((NUFORC Note: Venus? PD)) +2009-01-18,30.2944444,-81.3933333,Jacksonville Beach,FL,cigar,1200,Glowing cigar shaped object creates intense glow in sky and move across ocean. +2009-11-08,39.6294444,-79.9561111,Morgantown,WV,triangle,90,triangle shape with a light on each tip of the triangle. a red light on the top tip of the triangle. +2010-01-18,40.4405556,-79.9961111,Pittsburgh,PA,light,240,Three very intense pulses or flashes of light in the north suburbs of Pittsburgh,PA. 01/18/2010 1:30am. +2010-01-18,34.1686111,-80.0627778,Lamar,SC,cigar,300,Silver Cigar-shaped object at 7:38 am in Lamar, SC +2010-01-18,36.2597222,-86.6477778,Old Hickory,TN,changing,620,THE FACT THAT THEY WAS TAKEING WATER FOR SOME RESONE +2010-11-08,33.6602778,-117.9983333,Huntington Beach,CA,disk,600,2 disks seen and pics taking over the ocean in hb the day before the supposed missile over ca pacific ocean ! +2010-01-18,40.6725,-74.7477778,Oldwick,NJ,triangle,60,Triangular object with 40+ lights hovering over Oldwick, New Jersey. +2010-11-08,40.4847222,-78.0105556,Huntingdon,PA,unknown,60,Reflective object changed flight directions by 90 degrees and disappeared. +2010-11-08,41.525,-88.0816667,Joliet,IL,sphere,900,Orange sphere with a tail pointing up. +2010-11-08,29.7513889,-82.425,Alachua,FL,cross,600,X Shaped UFO With Clean Red Flame Along Underside; Underside lit up then it was gone. +2010-01-18,39.7391667,-75.2244444,Mullica Hill,NJ,other,5,I saw what I thought was a plane flying straight with headlights on, evolve into a bowtiw shape of light and shoot down to the ground. +2010-11-08,39.7683333,-86.1580556,Indianapolis,IN,disk,180,Saucer seen on W. Michigan Street and Porto Alegre +2010-11-08,38.7627778,-93.7358333,Warrensburg,MO,rectangle,120,A large sqaure object being escorted by fighter jets. +2010-01-18,45.2163889,-112.6366667,Dillon,MT,oval,5,I was setting in my livingroom reading a book. My dog was barking excessivly. I looked out the window and saw a very brilliant pure wh +2010-01-18,45.8708333,-112.0966667,Whitehall,MT,sphere,2,brightly glowing aqua-greenish sphere comes straight down and land 50 yards out in our horse pasture with no noise and disappears. +2010-11-08,35.6008333,-82.5541667,Asheville (Near),NC,light,300,blinking lights twirl and fly away +2010-01-18,47.6063889,-122.3308333,Seattle,WA,light,120,Bright, flickering orange light +2010-01-18,35.1186111,-120.5897222,Arroyo Grande,CA,light,1,Two bluish-green lights moving NNE over Arroyo Grande, CA at unbelievable speed. +2010-11-08,34.0922222,-117.4341667,Fontana,CA,fireball,5,Fireball over Jurupa Hills in South side part of Fontana Ca. San Bernardino County 11/08/2010 +2010-11-08,41.3088889,-97.6575,Silver Creek,NE,light,120,Red-blue light over Silver Creek Nebraska stopped and changed direction +2010-11-08,34.5794444,-118.1155556,Palmdale,CA,diamond,120,bright triangle shape falling +2010-11-08,43.7730556,-88.4469444,Fond Du Lac,WI,other,120,Red lighted, silent, bowl shaped craft seen floating near college in wisconsin +2010-11-08,40.1933333,-85.3863889,Muncie,IN,light,2700,Strobing "Star like" objects in the sky being observed by aircraft +2010-11-08,42.9977778,-84.1766667,Owosso,MI,light,900,Bright white light in the woods, emanating light blue color off of it. +2011-11-08,36.3291667,-80.4333333,Pinnacle,NC,light,2,Lights on & then shot straight across the sky at a slight downward angle & then gone w/ no fading of the light, within seconds, if that +2011-01-18,35.3186111,-82.4611111,Hendersonville,NC,sphere,210,UFO taking things from our environment +2011-01-18,47.6063889,-122.3308333,Seattle,WA,disk,30,UFO briefly hovers over Seattle, then disappears in a straight upward movement. +2011-11-08,47.6105556,-122.1994444,Bellevue,WA,other,240,Moon disappears for 4 minutes at 4:40 p.m. on 11/8/11 +2011-11-08,43.1008333,-75.2330556,Utica,NY,unknown,900,Three Objects in differant parts of the sky, All changing color and two that moved around. ((NUFORC Note: Twinkling stars? PD)) +2011-11-08,32.7213889,-109.1047222,Duncan,AZ,light,20,We were traveling North West on Hwy 70 from Lordsburg, NM to Duncan, AZ when my boyfriend and I both noticed a bright orange light in t +2011-11-08,39.4666667,-87.4138889,Terre Haute,IN,fireball,120,Fireball sighting in Terre Haute, IN on Nov. 8, 2011 at 6:30 pm est. time +2011-11-08,34.9852778,-80.5497222,Monroe,NC,light,5,Bright object fell from sky for 2-3 seconds, disappeared for 1 sec, then reappeared and fell 2-3 more sec. +2011-01-18,33.5386111,-112.1852778,Glendale,AZ,light,5,Green light streaked across the sky at a low level and then disappeared +2011-11-08,35.405,-97.1625,Newalla,OK,triangle,9,Triangle shaped no sound no light +2011-11-08,38.9227778,-76.6286111,Davidsonville,MD,triangle,120,Looking at field across from the house on 1520 Governors Bridge Rd where normal flight path is for BWI flights. It is a very clear Nigh +2011-11-08,43.3944444,-70.8513889,Lebanon,ME,cigar,300,Flashing red, blue lights around stat. obj. w/ white lights: seen Nov, 5, 6, & 8 in W sky of ME. ((NUFORC Note: Twinkling star?? PD)) +2011-01-18,40.3916667,-111.85,Lehi,UT,light,900,Two red lights fixed in the sky one of them started sendind or emiting white pulses downwards. +2011-11-08,40.7516667,-75.7927778,Andreas,PA,sphere,8,Big light traveling west in the sky. +2011-11-08,43.8569444,-70.1036111,Freeport,ME,light,5,Several of my friends and I were in a parking lot and we looks up because it was a nice clear night, and there was a greenish white-ish +2011-01-18,48.7411111,-117.4161111,Ione,WA,fireball,1.5,Redish-Orange object falling ne to sw in souther sky south of Sullivan Lake, Ione, Wa +2011-01-18,48.8466667,-122.5897222,Ferndale,WA,triangle,240,Triangle Shape, no noise, no lights +2011-11-08,35.7452778,-81.685,Morganton,NC,circle,10800,Bright white pulsating, top shaped object with intermittent red, green, blue, purple lights with tail. ((NUFORC Note: Stars? PD)) +2011-01-18,40.7244444,-81.5222222,Navarre,OH,oval,120,Cone like object near Navarre, OH +2012-11-08,38.2544444,-104.6086111,Pueblo,CO,fireball,120,Multicolored flashing ball of light (disco-ball). ((NUFORC Note: Possible observation of the star, Sirius, we suspect. PD)) +2012-11-08,40.9466667,-124.0994444,Mckinleyville,CA,circle,300,Orange floating light over McKinleyville +2012-01-18,34.4113889,-118.5391667,Saugus,CA,unknown,180,Plane behind strange lit object making no noise +2012-11-08,36.0997222,-80.2444444,Winston-Salem,NC,disk,60,2 discs. +2012-11-08,55.3422222,-131.6461111,Ketchikan,AK,light,20,White light flew across sky and then shot strait up faded to red and dissapeared +2012-01-18,44.8075,-74.7741667,Brasher Falls,NY,light,45,Series of 5 stationary horizontal lights evenly spaced apart fading in one at a time then fading out all at once. +2012-11-08,33.3869444,-84.2830556,Hampton,GA,triangle,300,Red balls of light in a triangular formation at low altitude. +2012-11-08,46.6541667,-120.5288889,Selah,WA,triangle,600,5 UFO's spotted, one in Selah that was very visible, and four in Yakima, Washington. +2012-11-08,30.5705556,-97.4091667,Taylor,TX,light,1800,2-4 bright lights hovering over Granger, TX. +2012-11-08,30.7175,-97.4425,Granger,TX,fireball,600,Balls of light in formation in the north west area. +2012-01-18,33.9561111,-83.9880556,Lawrenceville,GA,other,7200,Strange, unexplainable blue and red flahing lights with weird force around them. Over 20 seen. +2012-11-08,31.0980556,-97.3425,Temple,TX,light,180,I noticed two yellowish orange lights and I knew they weren't street lights they were much brighter and were moving. They would dissape +2012-11-08,30.6377778,-97.5405556,Jonah,TX,changing,60,My mom was driving N. on 1660 toward HWY 29. She saw 3 bright lights hovering for 30 sec and then there were suddenly only 2 lights. +2012-01-18,44.8486111,-74.2952778,Malone,NY,light,2,Flares +2012-11-08,28.1458333,-82.7569444,Tarpon Springs,FL,other,1,I was driving home from work after a few stops along the way. i was traveling northbound when a very fast object raced across the sky +2012-01-18,40.1416667,-75.2094444,Fort Washington,PA,unknown,600,Confirmation of two Philadelphia area sightings +2012-01-18,40.1416667,-75.2094444,Fort Washington,PA,unknown,600,Confirmation of two Philadelphia area sightings of same objects +2012-11-08,40.7186111,-74.5697222,Bernardsville,NJ,light,7200,11/08/12 and 11/09/12 lights in the sky +2012-11-08,34.0561111,-78.8905556,Loris,SC,oval,15,We were driving southeast towards the direction of North Myrtle Beach and saw 4 separate bright orange lights high in the sky. +2012-11-08,38.9419444,-105.1566667,Divide,CO,sphere,600,Two big bright spheres floating around over mountains +2012-01-18,32.9761111,-96.595,Sachse,TX,light,300,Object rapidly and forcibly is headed toward the ground but immediately makes a U turn then disappears. +2012-11-08,37.7808333,-90.4216667,Farmington,MO,fireball,120,Huge fireball type object with humanoid object in the center. +2012-01-18,33.8730556,-78.6144444,Little River,SC,triangle,1800,Someone else had to have seen this... +2012-01-18,33.8158333,-78.6802778,North Myrtle Beach,SC,fireball,240,Twinkling lights in triangle formation form straight line and light up like large fireballs +2012-11-08,30.3672222,-89.0927778,Gulfport (Near),MS,circle,60,Circular aircraft casting green spiral light flying north from the gulf. +2012-11-08,32.905,-80.6669444,Walterboro,SC,fireball,5,Green/orange fireball trailing black smoke. +2012-01-18,33.4041667,-79.9219444,St. Stephen,SC,flash,600,Activity, many crafts, in South Carolina..including Jets +2012-11-08,42.2411111,-83.6130556,Ypsilanti,MI,cylinder,60,Red low flying object over Ypsilanti. Low speed flight, with a climb then light went away +2012-11-08,27.2436111,-80.83,Okeechobee,FL,fireball,600,Three bright red lights over lake Okeechobee +2012-11-08,35.9555556,-80.0055556,High Point,NC,triangle,60,Slow moving Triangle made no noise +2012-01-18,37.595,-120.9566667,Ceres,CA,fireball,180,Floating fireball dripping what seemed like molten metal. +2012-11-08,33.6888889,-78.8869444,Myrtle Beach,SC,sphere,1200,Ten to 15 bright red orbs independently moving and blinking on and off over the ocean. +2012-11-08,42.1644444,-94.255,Paton,IA,formation,1200,A opening in space that formed a hole from which I could see many flying objects keeping the hole open. +2012-01-18,32.2216667,-110.9258333,Tucson,AZ,light,360,Orange/red ufo over Tucson blinks out +2012-11-08,34.3386111,-78.7033333,Whiteville,NC,fireball,5,I was driving down a rural Highway 701S leaving Clinton, NC going towards Myrtle Beach, SC. While in Whiteville, NC on 701S I witnessed +2012-11-08,33.425,-94.0475,Texarkana,TX,light,120,Dim blue/grey orb, at low altitude. +2012-01-18,38.8697222,-75.4233333,Lincoln,DE,light,180,i saw blinking lights in the sky, & think it was hovercrafts. +2012-11-08,44.0522222,-123.0855556,Eugene,OR,unknown,300,3 amber lights moving over Eugene slowly at 3000 ft. below clouds silently. +2012-11-08,40.5852778,-105.0838889,Fort Collins,CO,fireball,2,Neon Green Flash Crashes South of Fort Collins. +2012-11-08,33.3941667,-104.5225,Roswell,NM,flash,3600,Bright flashes in sky east of Roswell. Decended with not trail towards the ground. +2012-11-08,38.1361111,-81.0997222,Ansted,WV,light,15,Bright blue light near Jupiter, appeared and disappeared in a matter of seconds. +2012-11-08,39.9241667,-83.8088889,Springfield,OH,oval,60,Large oval fireball seen traveling rapidly out of sky and hits ground in cornfield. +2012-11-08,33.8352778,-117.9136111,Anaheim,CA,sphere,900,Ball of multicolored light in sky +2012-11-08,33.6888889,-78.8869444,Myrtle Beach,SC,flash,900,Flashing red and white looked like 4 or more flashing objects, bouncing back and forth in a pattern over the Atlantic Ocean. +2012-11-08,38.2544444,-104.6086111,Pueblo,CO,unknown,20,Huge smoke like trail going across the sky +2012-11-08,35.1716667,-103.7244444,Tucumcari,NM,flash,10,On Hwy 54 headed North, the entire sky lit up in a bright blue light beginning in the north horizon and encompassing entire 360 view. +2012-01-18,33.4708333,-81.975,Augusta,GA,triangle,60,Triangle of moderately bright white lights +2012-11-08,30.7908333,-89.8486111,Bogalusa,LA,disk,45,Craft emits no light or sound flys over just able to see reflection and blacked out stars as it passed +2012-11-08,40.1633333,-76.3952778,Manheim,PA,light,1200,White lights in sky doing weird moves +2012-11-08,35.8947222,-96.8719444,Agra,OK,unknown,60,Falling fire ball or stream +2012-01-18,35.2705556,-86.1280556,Estill Springs,TN,circle,7200,Spaceships sited in estillsprings tenessee wed. nite midnite. +2013-01-18,42.3636111,-87.8447222,Waukegan,IL,fireball,1,Bright orange fireball spotted. +2013-01-18,41.2975,-82.6055556,Milan,OH,light,180,WHITE FLASH, THEN WHITE ORB LIGHT AND THEN GREEN ORB LIGHT OBSERVED UP CLOSE. +2013-11-08,27.8533333,-82.3827778,Gibsonton,FL,fireball,4,I was standing outside my home finishing a cigarette(I know I need to quit) and admiring the night sky. I was looking up towards Orion' +2013-01-18,35.9938889,-78.8988889,Durham,NC,circle,180,Round Silver Object Seen In Durham, NC Following an Airplane and Then Flying in a New Direction and Disappearing. +2013-11-08,37.2708333,-79.9416667,Roanoke,VA,light,14400,Stationary light above Roanoke City Virigna From dusk to 9-10pm every night. +2013-01-18,38.8302778,-77.1966667,Annandale,VA,cigar,30,Fairfax, Annandale, VA - Black silhouette cigar / disk-like object w/rounded - blunted ends w/rotating & synced strobe lights. +2013-11-08,33.8125,-84.6344444,Austell,GA,light,360,very bright non moving light. +2013-11-08,38.9908333,-88.1625,Newton,IL,light,2700,multiple orange lights in a line. +2013-11-08,43.0805556,-88.2611111,Pewaukee,WI,rectangle,60,Huge box-shaped craft with circular light beam. +2013-11-08,30.0969444,-95.6158333,Tomball,TX,triangle,1080,Yellow lights in an triangle form seen by other people. +2013-11-08,40.5813889,-79.5666667,Apollo,PA,sphere,86400,Distant Lights Moving in Sky Day or Night. +2013-11-08,39.3638889,-76.4525,Nottingham,MD,light,120,Bright orbs traveling across the sky in triangular pattern. +2013-11-08,40.1302778,-75.5152778,Phoenixville,PA,rectangle,300,Bright light inside an orange object, floating slowly overhead and not affected by the wind. +2013-11-08,38.005,-121.8047222,Antioch,CA,light,1800,20 silent large reddish-orange lights over Antioch California shoot something out the bottom then fly off to the west towards Mt.Diablo +2013-11-08,35.2269444,-80.8433333,Charlotte,NC,circle,360,We saw about 13 bright reddish orange cirle lights with two diamond lights in between flying in a line formation. +2013-11-08,42.4775,-83.0277778,Warren,MI,light,600,2 Bright Lights in the sky, weird movements. +2013-11-09,36.0222222,-106.9577778,Cuba,NM,disk,120,Two propellor like motors w green revolving lights. Also red flashing light. +2014-01-18,40.9166667,-74.1722222,Paterson,NJ,light,480,Brilliant light coming and going Roaring noise. +2014-01-18,37.6922222,-97.3372222,Wichita,KS,light,5400,Bright white lights moving around south west Wichita just above cloud cover. +2014-01-18,39.7391667,-104.9841667,Denver,CO,light,120,Green light moving erratically over Stapleton at 3 am. +2014-01-18,33.6113889,-112.4263889,Waddell,AZ,light,120,Approximately 12 red lights staying in formation over white tank mountains around 8:45 p.m. Dissapearing one by one. +2014-01-18,37.1041667,-113.5833333,St. George,UT,sphere,60,High speed! Very colorful, chased by military helicopters a few minutes later. +2014-01-18,25.7902778,-80.1302778,Miami Beach,FL,other,600,I was walking in side my house with my girlfriend when we decided to go outside. so we go,walking as normal when we see this bright lik +2014-01-18,34.2522222,-118.2875,Tujunga,CA,sphere,300,Saw a reddish light move up from the little tujunga mountain on the south side. The object went up and down very quickly in a perfect a +2014-01-18,35.4105556,-80.8430556,Huntersville,NC,light,3,Strange light similar to meteorite suddenly turns in perpendicular direction. Seen again moving across sky and moving up. +2014-01-18,35.9938889,-78.8988889,Durham,NC,triangle,900,7-8 orange objects forming a triangle and V shape. Stationary position for several minutes. +2014-01-18,40.5772222,-74.2286111,Carteret,NJ,triangle,120,Black Triangle craft, very large, whites lights on end only. Helo on its tale, then craft disappeared. +2014-01-18,36.5297222,-87.3594444,Clarksville,TN,other,600,A camouflage cloaking invisibility technology. +2014-01-18,30.8372222,-91.2175,Jackson,LA,sphere,900,18 orange lights following same path making no noise and fading out after passing overhead. +2014-01-18,27.9472222,-82.4586111,Tampa,FL,sphere,900,Orange lights in the sky. +2014-01-18,39.4097222,-123.3544444,Willits,CA,fireball,480,Fireballs in the sky over Willits, Ca. +2014-01-18,38.4191667,-82.4452778,Huntington,WV,fireball,180,Was driving home from store and looked up and saw an orange fire ball in the sky at first i thought it was a meteor but then it hover a +2014-01-18,43.2166667,-123.3405556,Roseburg,OR,oval,7200,Slow moving orbs seen slow. +2014-01-18,43.5008333,-70.4433333,Saco,ME,fireball,60,Not a jet it stop in dead in the sky. +2014-01-18,39.2402778,-76.8397222,Columbia,MD,cigar,900,There ufos spotted over Columbia, MD. +2014-01-18,33.4483333,-112.0733333,Phoenix,AZ,fireball,300,Orange, flickering and flaming object moving on a very rapid and straight path heading southeast across at about constant speed. +2014-01-18,38.7741667,-76.0766667,Easton,MD,light,10,A big flash of white light by the moon followed by a very bright light that skipped across the sky then faded to black. +2014-01-18,34.4838889,-114.3216667,Lake Havasu City,AZ,fireball,300,Three bright orange balls moving silently at high speed. +2014-01-18,26.7080556,-80.2308333,Royal Palm Beach,FL,other,3600,About 9:pm on January 18th I was comming home from shoppping and I saw an unusual sight in the west of royal palm beach florida a row o +2014-01-18,34.4838889,-114.3216667,Lake Havasu City,AZ,fireball,300,3 bright orange, low flying objects at high speed. +2014-01-18,26.3583333,-80.0833333,Boca Raton,FL,formation,600,Saw 3 reddish orbs in a V formation, and 3 minutes afterwards saw 3 more orbs. +2014-01-18,40.1947222,-92.5830556,Kirksville,MO,circle,900,Late very clear night ,circular object ,red lights fading on and off ,huge,silent moving extremely slow! +2014-01-18,33.7591667,-118.0058333,Westminster,CA,light,60,Single craft bright red and green lights moving very fast and changing directions often. NOT helicopter RC? Too fast I say? +2014-01-18,41.8786111,-71.3830556,Pawtucket,RI,triangle,180,Saw a triangle ufo hovering over the the street. Started to come straight towards us and then took a sharp turn to the right and flew a +2014-01-18,47.2530556,-122.4430556,Tacoma,WA,light,20,Slow blinking white light hovering over port area then vanished. +1962-11-09,26.1944444,-98.1833333,Pharr,TX,chevron,40,V shaped glowing object splits up into six similar objects and quickly disperse. +1965-11-09,41.2916667,-72.3766667,Old Saybrook,CT,light,600,Cluster of red lights hovering at low altitude without sound during Great Northeast Black-out +1965-11-09,41.4458333,-74.4233333,Middletown,NY,sphere,1,Posssible UFO seen near Middletown, NY on the November night of the great northeastern black-out of 1965. +1973-11-09,33.7877778,-117.8522222,Orange County,CA,oval,2400,1973 A 40 Minute Daytime Viewing Of A BlackHole In Orange County California Skies +1975-11-09,42.5083333,-89.0316667,Beloit,WI,disk,30,a friend and i were walking north thru a field between afton road and and the kruger golf course to meet a third friend. the sky was cl +1977-01-19,41.7,-71.6833333,Coventry,RI,triangle,120,Huge wing craft - 1000 feet in width hovered over house, no noise or lights +1981-01-19,43.7647222,-95.8269444,Wilmont (South Of),MN,light,420,Coming home from a school event, I noticed a light in the northern sky. It was bright white with red flashes, moving slowly upward... +1984-11-09,32.2730556,-89.9858333,Brandon (Outside Jackson),MS,cylinder,300,I lived in Crossgates on the north end of the lake I woke up suddenly, got up out of bed and looked out the glass doors. Just above tr +1989-01-19,41.3113889,-105.5905556,Laramie,WY,disk,600,Witness is lured out of house, silent craft glides overhead, more body marks are discovered. +1994-01-19,45.3044444,-97.0361111,Summit,SD,disk,600,Large Silver Disk explodes over SD Antenna Field.... +1995-11-09,40.6638889,-74.2111111,Elizabeth,NJ,oval,90,While driving on Route 1&9 in Elizabeth Near Newark Airport I was looking at an airplane that was taking off on an upward incline. At t +1996-11-09,42.9275,-123.28,Canyonville,OR,disk,300,Disk-shaped craft spotted hovering in the sky +1996-11-09,41.3436111,-86.3097222,Plymouth,IN,triangle,120,3 Silent Black Triangles flying in a One Sided Formation with Dim Lights in the shape of a V on the bottom +1997-11-09,44.6369444,-124.0522222,Newport (Coast Range, East Of),OR,formation,10,A string of objects, could have been a deaying satellite or incoming space debris. There were about six in a row around the vicinity of +1997-11-09,30.7819444,-89.1380556,Perkinston,MS,cigar,420,Cigar shaped ufo sighting in southern mississippi. huge. at night. +1997-11-09,40.2247222,-105.2708333,Lyons,CO,unknown,2,My wife was woke out of sleep by a light shining in her face – but this time with no noise. Also, later on, a small lamp in our room ca +1998-11-09,42.5277778,-70.9291667,Peabody,MA,fireball,2,flash of light in sky. fireball coming down to earth at a 90 degree angle. +1998-01-19,32.2216667,-110.9258333,Tucson,AZ,other,180,a large glowing object shot across sky from se to nw but when it came out of clouds it stopped buzzed around a bit and had lights to bi +1998-11-09,37.6138889,-122.4858333,Pacifica (Rockaway Beach),CA,light,5400,First sigtht, large white light,when acknowledged, turned to flourescent green.2 large 6 small. Numerous sightings. +1998-11-09,32.7355556,-97.1077778,Arlington,TX,other,180,Standing in driveway, saw a strange craft; weird altitude for airplane. It made no sound, and moved with speed of the clouds...as if hi +1998-11-09,38.7522222,-121.2869444,Roseville,CA,light,300,Red light seen in the eastern sky with a likeness of of a laser pointer. It hovered, made a bobbing motion and then faded away. +1999-11-09,33.7488889,-84.3880556,Atlanta,GA,teardrop,25,Large green glowing light, size of the moon in the sky over Atlanta GA Travelling NW crossed GA-400 about 02:40 in the morning. Appear +1999-11-09,34.1075,-85.3363889,Cave Spring,GA,disk,180,SHINY DISK SOUTH THEN LIGHTING FAST TURNED N.E,OUT OF SITE,I KNOW IT WAS THEM. +1999-11-09,33.0888889,-96.8861111,The Colony,TX,flash,30,I saw a sudden flash on a nearby pond, looked up and saw a white light with a greenish tinge +1999-11-09,35.198055600000004,-111.6505556,Flagstaff,AZ,triangle,180,Large Triangle defined by white strobe lights, turning slowly to east. +1999-01-19,39.2797222,-89.8816667,Carlinville (From, Until Almost Carrollton),IL,cigar,1200,While driving at 1900 hours after a late evening social work appointment I observed a large cigar shaped object which appeared to be a +1999-01-19,40.2338889,-111.6577778,Provo,UT,sphere,2,Observed bright phosphorescent greenish tinted object fall in downward direction behind Maple Mountain which is east of Provo, Utah. G +1999-11-09,33.4483333,-112.0733333,Phoenix,AZ,light,5,I saw a light flying across the sky, from west to east, at an extraordinary speed. It flew in a straight line, slowed a bit then speed +1999-11-09,34.551944399999996,-77.9263889,Burgaw,NC,light,2,I was traveling south when I saw a blue-green light with an orange-yellow tail come from the sky in an east to west direction. It disap +1999-11-09,34.5325,-83.985,Dahlonega,GA,fireball,3,I saw a large green fireball like object with a red tail or streak. +1999-11-09,47.7291667,-102.6755556,Mandaree,ND,circle,300,many lights on bottom large that looked like windows +1999-11-09,40.5186111,-78.395,Altoona,PA,triangle,900,triangular,slow,low flying,no sound,dull/hazy red lights at each point and in between each point except for a bright flashing white lig +1999-11-09,37.8172222,-96.8619444,El Dorado,KS,light,3,A beam of RED light came out of the clouds, like a flashlight beam in the fog, only very bright and large beam. +2000-11-09,21.3069444,-157.8583333,Honolulu,HI,formation,1800,Formation flashing bright colored lights over Diamond Head Hawaii +2000-01-19,26.6155556,-80.0572222,Lake Worth,FL,egg,60,While walking to the corner store this morning, I saw a large object travelling north, actually bow-tie shaped, flitting along the sky +2000-01-19,29.4236111,-95.2438889,Alvin,TX,unknown,2,A SINGLE STREAK OF BLUE/WHITISH GLOW MOVED ACROSS THE SKY +2001-11-09,35.0613889,-106.1908333,Edgewood,NM,disk,900,I had been feeding my dogs an a blueish object caught my eye +2001-11-09,38.6272222,-90.1977778,St. Louis,MO,triangle,85,A triangular craft with red and white moving and pulsated only white and a contuous red beam surging along the back of the ship +2001-11-09,36.1027778,-79.5069444,Elon,NC,circle,180,brown dot reflective object hovering, then speeding off to the northwest, elon university. +2001-01-19,37.775,-122.4183333,San Francisco,CA,light,25,HOVERING white light. +2001-01-19,45.5230556,-122.9886111,Hillsboro,OR,fireball,2,Happened to glance over to the southwest part of the sky from my backyard and saw a very bright and very green fireball heading at an a +2001-01-19,45.6388889,-122.6602778,Vancouver,WA,fireball,120,Taking an evening walk facing west and saw a very bright, large orange fireball go overhead toward the west and then vanish. What was +2001-11-09,44.6213889,-86.0991667,Benzonia,MI,light,10,An object with white lights caught my eye, stopped in the sky and sped off +2001-11-09,28.9886111,-80.9025,Edgewater,FL,other,60,V-shaped aircraft, looked like a bird, in Edgewater Florida +2001-01-19,40.6913889,-73.8061111,Jamaica,NY,unknown,420,My girlfriend and I were on our way to her gradnmother's house and I saw something in the corner of my eye. So we stoped to get a bette +2002-11-09,38.8302778,-77.1966667,Annandale,VA,egg,5,Falling bright white object seen over Annandale, VA. area night of 11\9\02. WHO ELSE SAW IT!!?? +2002-11-09,25.7738889,-80.1938889,Miami,FL,rectangle,15,I was lying on a car hood, feet facing east, looking upward at the sky.The sky was crystal clear and darker than usual because the moon +2002-11-09,35.39,-120.6080556,Santa Margarita,CA,circle,60,red lignt +2002-11-09,27.5155556,-97.8558333,Kingsville,TX,cylinder,600,Silver Cylinder Observed Near Navy Jets Practice Dog Fight In Texas +2002-11-09,42.0427778,-101.0422222,Mullen,NE,light,10800,We have been witnessing some very brilliant lights moving at incredible speeds and doing some very strange movements. +2002-11-09,32.2216667,-110.9258333,Tucson,AZ,light,2,Flash of blue lights, then fast movement out of sight +2002-11-09,37.0619444,-97.0380556,Arkansas City,KS,triangle,60,Boomerang craft was silent, lightless, and big enough to block out the stars behind it. +2002-11-09,33.4147222,-111.9086111,Tempe,AZ,sphere,4,VERY BRIGHT BLUE/WHITE SPHERE SIGHTED TEMPE,AZ, HEADING 260 9NOV2002 2133 HRS. +2002-01-19,30.3502778,-89.1527778,Long Beach,MS,changing,900,saw it as one shape then changed to two moved too quickly to be a plane and changed direction of flight to abruptly +2002-11-09,45.6797222,-111.0377778,Bozeman,MT,fireball,2,Fireball in Montana +2002-11-09,35.0525,-83.1969444,Highlands,NC,flash,30,Strange lights over Queen Mountain +2003-11-09,42.1013889,-72.5902778,Springfield,MA,formation,120,November 8 Lights over Massachusetts +2003-01-19,35.0886111,-92.4419444,Conway,AR,light,3600,At times it would "split up" although the second light never moved very far from the initial one. +2003-11-09,41.85,-88.3125,Batavia,IL,sphere,300,4 object in daylight +2003-11-09,38.7908333,-121.2347222,Rocklin,CA,light,20,Brilliant white light that pulsated, enlarged, pulsated again, faded and moved away. +2003-11-09,37.6688889,-122.0797222,Hayward,CA,triangle,30,Trianglular object +2003-01-19,38.9016667,-107.9258333,Cedaredge,CO,light,600,A large bright round light, darting across the sky, after 10 minutes - the light just went out. +2003-11-09,39.9016667,-75.3288889,Rutledge,PA,other,1800,Eratic moving star - sphere with with crescent reflection. +2004-11-09,39.2616667,-121.015,Nevada City,CA,triangle,10,looked to the north and saw three white lights in triangular form, moving in unison accross the sky. +2004-11-09,48.2325,-101.2958333,Minot,ND,fireball,5,Green fireball near Minot, ND +2004-01-19,41.2888889,-72.6822222,Guilford,CT,circle,60,The round, white object move in a zig, zag fashion: aircraft nearby was smaller in comparison +2004-11-09,35.2602778,-85.7361111,Tracy City,TN,fireball,3,White light Plumb as though burning up on rentery. +2004-01-19,38.3686111,-93.7780556,Clinton,MO,light,3600,After an hour the slow moveing distant light became to distant to see & stayed above the horizon.((NUFORC Note: Possibly Sirius? PD)) +2004-01-19,44.98,-93.2636111,Minneapolis,MN,fireball,1,bright light falling from sky +2004-11-09,39.7872222,-77.3688889,Fairfield,PA,disk,900,3 craft with saucer like appearance within miles of underground pentagon. +2004-11-09,36.3486111,-82.2108333,Elizabethton,TN,disk,300,Several craft at one time +2004-11-09,40.0580556,-82.4013889,Newark,OH,oval,1500,Ufo sighting +2005-11-09,38.5816667,-121.4933333,Sacramento,CA,sphere,4,ovoid orange/whitish object seen sacto +2005-11-09,35.2225,-97.4391667,Norman,OK,triangle,20,Triangular shaped object with dim lights on all three sides, moved silently in a southwesterly direction. +2005-11-09,41.5033333,-74.0108333,Newburgh,NY,circle,1200,Fight paths were unnatural and closer than planes would safely fly near each other no sound of engine +2005-11-09,39.6133333,-105.0161111,Littleton,CO,unknown,3,Bright white object in Littleton, CO +2005-11-09,47.4741667,-122.2597222,Tukwila,WA,disk,219300,((HOAX??)) Appeared solid, silver metallic, soundless, moved quickly and with precision. +2005-11-09,38.4108333,-87.7613889,Mt Carmel,IL,unknown,300,Flahing lights from a huge object in a sky behind cloud cover +2005-11-09,38.6658333,-120.925,Shingle Springs,CA,circle,300,Large planet like object in southwest sky. ((NUFORC Note: Sighting of Venus. PD)) +2005-11-09,37.3822222,-89.6661111,Jackson,MO,teardrop,5400,Bright bell shaped object with pronounced light blue sphere shape encircling the bell with an amazing flying ability. ((Venus??)) +2005-01-19,30.3319444,-81.6558333,Jacksonville,FL,sphere,7200,These are accounts of several personal UFO and 'other' experiences. +2005-11-09,33.5169444,-83.6961111,Newborn,GA,triangle,600,I had gone outside of my ouse to get a case of cokes out of my car when i looked up and sall something moving incredibly fast, much fas +2005-01-19,38.7744444,-75.1397222,Lewes,DE,light,900,Heading south on Route 1 toward Lewes, Delware, I observed 4 solid red lights in a chevron formation. They did not move, remaining sta +2005-11-09,44.98,-93.2636111,Minneapolis,MN,light,30,Appearing As A Shooting Star +2005-11-09,35.6225,-117.67,Ridgecrest,CA,other,600,10 minutes of a orange orb floating under the clouds +2005-11-09,39.8402778,-88.9547222,Decatur,IL,fireball,5,Was approaching Illiopolis IL on Interstate 72 headed east. Object came straight down all the way to the ground. It was huge, as bright +2005-11-09,34.364444399999996,-80.4361111,Cassatt,SC,light,6,Bright lights in a line formation. +2005-11-09,28.2438889,-82.7194444,New Port Richey,FL,other,45,Y shaped aircraft flew down my street made no sound and had no lights on +2005-01-19,42.1694444,-75.1297222,Walton,NY,disk,2,Saucer shaped craft with green lights flies across highway +2005-01-19,29.1869444,-82.1402778,Ocala,FL,changing,1800,Four balls of white light dance in Ocala night sky. ((NUFORC Note: Possible sighting of advertising lights? PD)) +2006-01-19,36.4497222,-76.0158333,Currituck,NC,fireball,7200,the object would move up and down slowly, object appeered as a star flikering violently. sparks were visible every so often without a p +2006-11-09,34.4233333,-118.4711111,Canyon Country,CA,other,2700,Bright white lights in "Y" shape moving around in all directions in the sky like nothing we have ever seen. +2006-01-19,41.4372222,-71.5019444,Wakefield,RI,light,345,They appeared as stars and then they moved. +2006-01-19,42.1269444,-89.2555556,Byron,IL,triangle,120,One triangular craft observed over the Rock River during night time. Near a local saloon between Rockford and Byron. Object was seen b +2006-11-09,31.3075,-96.6316667,Kosse,TX,cylinder,1200,i saw a pen-shaped or oblong metallic shape puff out a cloud and then try to hide behind it but i could still see it. +2006-11-09,31.6502778,-95.0725,Alto,TX,light,300,White light lower than aircraft slowly moving across sky. ((NUFORC Note: Sighting of International Space Station. PD)) +2006-01-19,41.6016667,-75.1502778,Beach Lake,PA,triangle,1200,Movement of three from a delta pattern to a line of three. +2006-01-19,33.8358333,-118.3397222,Torrance,CA,other,180,square shaped object over Southern California +2006-01-19,29.9972222,-98.0983333,Wimberley,TX,triangle,300,A stationary bright light, which as it began to move and fly over us to the NE it appeared to be a triangle with many lights. +2006-11-09,42.3316667,-71.1216667,Brookline,MA,triangle,300,UFO over Harvard Street? +2006-11-09,37.3477778,-120.6080556,Atwater,CA,other,20,Black soundless trapazoid with small dim underside lights, seemed like camoflage. Gliding quickly. +2006-01-19,37.1305556,-92.2633333,Mountain Grove,MO,circle,900,Bright orange lights in sky over Mtn Grove Mo. +2006-11-09,26.6583333,-80.2416667,Wellington,FL,other,40,doughnut ufo +2006-11-09,44.0977778,-70.2316667,Auburn,ME,other,900,Bright eractic moving lights. +2006-11-09,38.9716667,-95.235,Lawrence,KS,cylinder,3,When driving down Lawrence Avenue from 9th street towards 6th, I looked to the left and saw an object full of light flying straight dow +2007-11-09,33.5602778,-81.7197222,Aiken,SC,cigar,900,Clearly visible metallic cigar shaped craft hovering above densely wooded area at night 75 yards away +2007-01-19,37.0513889,-122.0722222,Felton,CA,circle,120,Two bright lights moved in spurts then changed shape, color and direction. +2007-01-19,39.3958333,-101.0519444,Colby,KS,changing,45,Object changed shape and color. +2007-11-09,30.86,-100.6005556,Eldorado,TX,cigar,120,two cigar shaped objects slowly crossing over road +2007-01-19,37.7525,-83.0688889,Salyersville,KY,light,240,clear blue sky, sun already down, my dog was the one who brought our attention to object hovering and flying slowly through sky. It wa +2007-11-09,35.0766667,-80.6694444,Indian Trail,NC,light,2,a bright red light seen to grow in size and intensity, then vanish. ((NUFORC Note: Sighting of Iridium satellite flare?? PD)) +2007-11-09,30.3933333,-86.4958333,Destin,FL,rectangle,180,|Rounded,rectangular shape light hovers over bay,possible probe passes by it,and it decends down over the buildings on the horizion. +2007-01-19,37.2152778,-93.2980556,Springfield,MO,triangle,300,low flying triangle over springfield +2007-11-09,33.1505556,-96.8233333,Frisco,TX,chevron,30,Silent; two rows of 6-8 dull orange disks in a shallow V shape fixed to chevron-shaped (?) object. +2007-11-09,38.645,-82.8488889,Franklin Furnace,OH,light,5400,Amber lights. +2007-11-09,33.8491667,-118.3875,Redondo Beach,CA,formation,120,About a dozen red flashing lights passing quietly in the night. +2007-11-09,40.5347222,-95.3188889,Westboro,MO,flash,2,Very fast flash with trail of light coming from the rear. +2007-11-09,34.0522222,-118.2427778,Los Angeles,CA,formation,90,Flashing red lights in formation +2007-11-09,40.5866667,-122.3905556,Redding,CA,unknown,240,Burning object in Night Sky over Redding, CA 11/09/2007. +2007-11-09,35.2044444,-89.8738889,Bartlett,TN,chevron,120,"V" shaped ufo over Memphis. +2007-01-19,35.0419444,-89.6644444,Collierville,TN,triangle,60,flying triangle one blue light in the front and two red lights in each corner, made no sound +2007-01-19,40.29,-76.9341667,Enola,PA,formation,6,5 objects moving throught the air in unison and glowing slightly orange. +2007-01-19,41.2230556,-111.9730556,Ogden,UT,teardrop,180,((HOAX??)) The lights were really bright then they went really dim.....and dimmer....and dimmer +2008-11-09,40.7738889,-74.2738889,Maplewood,NJ,light,3600,An Orange/Red Light over Northern Jew Jersey +2008-01-19,38.2119444,-86.1219444,Corydon,IN,disk,17,I need to talk to the U.F.O. center asap. ((NUFORC Note: Possible hoax?? PD)) 500 Lights On Object0: Yes +2008-11-09,30.2419444,-93.2505556,Westlake,LA,sphere,60,It was not a STAR!!! +2008-11-09,39.2775,-74.575,Ocean City,NJ,circle,900,2ea. round multicolor objects in the southern skies from Ocean City, NJ not moving for 15 min. +2008-11-09,36.0838889,-87.7947222,Waverly,TN,light,1800,Intense light in the sky coming in and out of view changing from green to white for 30 minutes. +2008-11-09,30.2669444,-97.7427778,Austin,TX,other,480,Object was appearing in different places of the sky, changing magnitudes, and other bizzare behaviors. +2008-11-09,37.9794444,-96.1638889,Hamilton,KS,light,600,Slow Moving Shape Changing Flash +2008-11-09,37.3541667,-121.9541667,Santa Clara,CA,chevron,720,Dark, low-flying object over Silicon Valley. +2008-11-09,32.8341667,-97.2286111,North Richland Hills,TX,disk,6,3 amber colored disks flying W NW in a vertically stacked formation at 7000 feet - not glowing but illuminated.... +2008-01-19,40.0580556,-82.4013889,Newark,OH,light,180,A bright perfectly round ball shaped object hovering north of our location on a hilly street with a bunch of trees. +2008-01-19,39.0638889,-108.55,Grand Junction,CO,light,1800,Lights over Grand Junction Colorado +2008-01-19,34.1808333,-118.3080556,Burbank,CA,light,14400,A falshing red light. 500 Lights On Object0: Yes +2008-11-09,34.0005556,-81.035,Columbia,SC,triangle,40,I've built model aricraft for years, yet never saw anything like this.... +2008-11-09,33.4222222,-111.8219444,Mesa,AZ,circle,60,Three circular lights clearly not typical aircraft floating and moving away smoothly. +2008-11-09,32.6947222,-93.7416667,Benton,LA,light,3,Bliding Bluish Light... +2008-11-09,33.4472222,-84.1469444,Mcdonough,GA,other,2,Bright Blue Elongated ball. ((NUFORC Note: Student report. PD)) +2008-01-19,32.7677778,-117.0222222,La Mesa,CA,changing,120,Shape changing object sited in southeastern skies of La Mesa, Ca +2008-11-09,47.6063889,-122.3308333,Seattle,WA,fireball,40,((HOAX??)) Bight light seen northwest of downtown Seattle. +2008-11-09,33.6888889,-78.8869444,Myrtle Beach,SC,unknown,40,Plasma like pulsating energy ball +2009-01-19,47.9791667,-122.2008333,Everett,WA,sphere,7200,Slow moving flashing red, blue and white light(Flying cop car???) +2009-01-19,27.8658333,-82.3266667,Riverview,FL,light,10,green/blue lights, no sound, pulsating light +2009-01-19,33.9488889,-118.4447222,Playa Del Rey,CA,cigar,3600,Saw a shape shifting UFO half the size of the moon over LAX +2009-01-19,41.8238889,-71.4133333,Providence,RI,formation,380,Rhode Island, Providence, Nantucket, 19th January - formation flying craft of ther sky +2009-01-19,34.4208333,-119.6972222,Santa Barbara,CA,fireball,2,Fireball +2009-11-09,32.7558333,-111.5541667,Eloy,AZ,disk,900,Strange craft, military jets chase and plasma arcs in the AZ desert. +2009-11-09,39.5538889,-104.9688889,Highlands Ranch,CO,fireball,60,ball of fire over denver splits into 5 balls then suddenly disappeared and reapeared as one for a few sec. +2009-11-09,37.6805556,-92.6636111,Lebanon,MO,light,60,Strange lights in South Central Missouri Night Sky +2009-11-09,39.7047222,-105.0808333,Lakewood,CO,sphere,120,He could see a dome top with vertical lines, the object was slowly rotating, and the bottom was lit up. +2009-01-19,47.7180556,-116.9505556,Post Falls,ID,unknown,6,Anamoly in long exposure photo +2009-11-09,34.4263889,-117.3,Hesperia,CA,disk,5,Three pulsing lights, flying low and fast. +2009-01-19,35.3266667,-79.2555556,Cameron,NC,unknown,420,Me and two other witnesses have seen a medium sized red light in the sky just gliding along quietly above our residential neighborhood. +2009-01-19,47.9791667,-122.2008333,Everett,WA,circle,1800,Extremely bright light/object in the sky over Everett, Washington. +2009-01-19,47.0530556,-122.2930556,Graham,WA,circle,3600,Super Bright Object appears over Graham, Washington in the SW sky approximately 7:30PM on 1/19/2009. ((NUFORC Note: Venus. PD)) +2009-01-19,40.8680556,-77.7469444,Pleasant Gap,PA,triangle,180,V shaped lights flying across the night sky +2009-01-19,33.8491667,-118.3875,Redondo Beach,CA,sphere,600,As I was walking into my condo on the coast, I saw a bouncing/hovering, slow-moving, star like object off the coast of Redondo Beach. +2009-01-19,33.8936111,-117.7263889,Chino Hills,CA,oval,900,Oval object covered in white light, with a blinking red light at bottom, spotted in Southern California sky. +2009-11-09,38.7058333,-87.76,Bridgeport,IL,light,180,3 Lights +2009-11-09,48.55,-109.6833333,Havre,MT,fireball,600,Four short flashes of light in random areas of sky above Havre within short amount of time. +2009-11-09,47.6063889,-122.3308333,Seattle,WA,triangle,120,UFO in Seattle +2009-01-20,45.2630556,-122.6913889,Canby,OR,other,180,two balls of red light with a yellowish center,one red ball on top of another,with the yellow inbetween. +2010-01-19,41.9211111,-87.8091667,Elmwood Park,IL,flash,30,Two flashes quickly whisk into the sky and away +2010-11-09,37.2741667,-97.1686111,Oxford,KS,sphere,5,Blue/green orb that shot off and disappeared. +2010-11-09,38.9180556,-78.1947222,Front Royal,VA,oval,180,Hovering craft in sky +2010-11-09,43.4194444,-83.9508333,Saginaw,MI,disk,900,Blimp-like object, then missile-like object, then 3 transparent saucer-shaped objects. +2010-11-09,37.9886111,-84.4777778,Lexington,KY,unknown,180,Five objects, moving North and South with a rocket exhaust suddenly vanish +2010-11-09,33.2613889,-97.2377778,Krum,TX,triangle,240,Two red triangles slowly and silently fly single file over Krum, Texas +2010-11-09,38.9180556,-78.1947222,Front Royal,VA,fireball,20,Bright fireball\flash of light seen in sky +2010-11-09,35.2219444,-101.8308333,Amarillo,TX,cross,20,a crossed shaped UFO with orange dots +2010-11-09,36.6336111,-81.7838889,Damascus,VA,triangle,2700,My daughter and I saw a triangle shaped something with flashing red lights staying in the same place and not moving. Then there were 2 +2010-11-09,29.7630556,-95.3630556,Houston,TX,triangle,4,Outside playing basketball in driveway at night...saw a brightly lit craft that appeared to be a plane. Craft appeared to be moving v +2010-11-09,26.6402778,-81.8725,Fort Myers,FL,light,900,Bright flashing light moving in a no repetitive and non linear pattern +2010-01-19,34.1336111,-117.9066667,Azusa,CA,light,360,Red lights blinking or turning on/off in an estimated shape of a triangle. +2010-11-09,34.010555600000004,-95.5094444,Hugo,OK,rectangle,30,Very bright, mirror like, skewed rectangle shaped object over southeastern Oklahoma. +2010-11-09,30.4013889,-86.8636111,Navarre,FL,fireball,840,Orange Spheres Over Navarre/ Gulf Breeze, FL. Fade In and Out of Sight +2010-11-09,34.2063889,-118.2233333,Montrose,CA,other,60,"Star" flying South with purpose like an aircraft +2010-01-19,37.585,-79.0516667,Amherst,VA,unknown,300,Mother and daughter chase UFO to daughter's house +2011-01-19,27.9472222,-82.4586111,Tampa,FL,triangle,7200,somthing came out of the ocean and flew up with a boom, out of sight in seconds +2011-11-09,44.6366667,-123.1047222,Albany,OR,circle,30,Two bright orbs dropped from the sky and glided incredibly fast across the entire sky, going south over Oregon. +2011-11-09,33.1958333,-80.0133333,Moncks Corner,SC,formation,1800,lights cloud-like objects in the sky strange cloud formations and also when they left (ufo) jets where scrambled into the air +2011-01-19,38.7072222,-121.28,Citrus Heights,CA,triangle,5,saw 3 red lights going threw the sky in sacramento Ca. +2011-11-09,33.4483333,-112.0733333,Phoenix,AZ,light,600,3 white lights in a row over phoenix,az 3 army jets passed 30 minutes before the lights showed up +2011-11-09,33.7358333,-118.2913889,San Pedro,CA,sphere,2,White sphere heading west, disappeared into clouds +2011-11-09,39.8027778,-105.0869444,Arvada,CO,triangle,300,A triangular shaped object this a white light at each vertex and a red light in the center. +2011-11-09,47.0380556,-122.8994444,Olympia,WA,fireball,4,A fireball over Olympia, WA on 11/9/11. +2011-11-09,37.2294444,-80.4141667,Blacksburg,VA,oval,3,Large greenish glowing light moving very fast. +2011-11-09,34.0005556,-81.035,Columbia,SC,circle,5,Round metallic jellyfish-like craft with white blinking lights flies over car low & slow, Columbia, SC +2011-11-09,45.2847222,-111.3675,Big Sky,MT,other,180,Hover craft pointing green laser into the sky +2011-01-19,38.8575,-76.8897222,District Heights,MD,flash,3600,Last Tuesday night i was in my bedroom had the TV and listening to a gospel cd I brought on my computer when I heard this loud noise go +2011-01-19,35.0525,-78.8786111,Fayetteville,NC,oval,30,Orange bright light over fayetteville Nc +2011-01-19,30.4111111,-88.8277778,Ocean Springs,MS,circle,180,On or about 19 January of 2011, I was at my home in Ocean Springs, Ms. At close to 8:30 pm, I looked out the window and saw a disc-sha +2011-01-19,33.2486111,-111.6336111,Queen Creek,AZ,sphere,1,Blue streak moved east very fast, then darted other direction. +2011-01-19,43.3788889,-84.6597222,Alma,MI,sphere,3,Sphere in the sky above Alma +2011-01-19,42.7325,-84.5555556,Lansing,MI,fireball,3,The object was a glowing green stream of light that traveled quickly across the sky in Lansing, Michigan. +2011-11-09,47.4219444,-121.9716667,Hobart,WA,light,20,Strange Lights Above Hobart. +2012-11-09,40.5172222,-75.7777778,Kutztown,PA,unknown,40,Three orbs in Kutztown, gone within seconds. +2012-11-09,33.8694444,-101.5969444,Petersburg,TX,flash,2,Brite green flash in west texas sky lights up the night as if it was dawn for about 2 seconds. +2012-11-09,37.2152778,-93.2980556,Springfield,MO,unknown,78,White light and low pitched noise, Electric Doggy Door operated on it`s own. +2012-11-09,33.1958333,-117.3786111,Oceanside,CA,circle,20,Reddish circular UFO cruising south west in San Diego County. +2012-01-19,37.5419444,-77.9191667,Powhatan,VA,light,5,Approx 6:30am on MannikanTown Ferry Road. Looking west along power lines about 1/4 mile out and just above the power pole. A very bri +2012-01-19,32.7252778,-114.6236111,Yuma,AZ,other,600,It was 6:45am (stars/moon still out), walking my dog. As I stepped onto sidewalk, I looked up in a south/easterly direction, high in t +2012-01-19,35.8275,-83.9408333,Rockford,TN,oval,5,Giant oval shaped shadow flies by on ground and disappears. +2012-11-09,31.4722222,-90.8966667,Meadville,MS,cylinder,120,White cylinder shaped craft with no wings flies over Meadville MS on clear and cloudless day. +2012-11-09,33.9561111,-83.9880556,Lawrenceville,GA,other,900,Double Columns of light in lawrenceville, ga ((NUFORC Note: Possible contrails?? PD)) +2012-01-19,36.8663889,-83.8888889,Barbourville,KY,circle,10,Star looking object over ky! +2012-11-09,35.3733333,-119.0177778,Bakersfield,CA,circle,2,Circle shape with intense light coming from the back of it! +2012-11-09,39.2738889,-81.5730556,Belpre,OH,cone,600,Glowing cone shaped light over Belpre Ohio 45714 +2012-01-19,36.82,-79.5869444,Callands,VA,other,300,F lights... red with a band of white lights with a red light under that. Then what appeared to be about 100 yards on front of this arra +2012-11-09,34.4838889,-114.3216667,Lake Havasu City,AZ,sphere,60,One orange glowing ball hovered, then moved sideways, then upwards. Did not move at all like an aircraft. It moved in the sky much fast +2012-01-19,32.8405556,-83.6325,Macon,GA,rectangle,3600,Rectangular craft with mostly blue, some red and white brilliant moving flashing lights, and hovered high in the sky north of Macon GA +2012-01-19,28.5380556,-81.3794444,Orlando,FL,unknown,600,Large Orange light or fire ball over Orlando traveling E to W without falling and with no tail, then disappeared. +2012-01-19,40.2413889,-75.2841667,Lansdale,PA,light,600,Orange lights in the sky with aircraft flying around them +2012-01-19,43.6241667,-72.5188889,Woodstock,VT,fireball,300,Orange fireball over woodstock vermont following route 4 then turning on to route 12 +2012-01-19,37.1297222,-80.4091667,Christiansburg,VA,fireball,300,Orange fireballs over the New River Valley, Southwest Virginia +2012-11-09,35.3733333,-119.0177778,Bakersfield,CA,unknown,540,Red object displaying bizarre flight patterns before shooting directly upwards into space +2012-01-19,28.5997222,-81.3394444,Winter Park,FL,fireball,300,A rising or nearing bright yellow glowing rectangle stopped to create a fireball shape, dropped glitter-like substance, and disappeared +2012-01-19,28.0611111,-82.3025,Thonotosassa,FL,unknown,300,Saw a large light in the sky that seemed to have things coming off of it, then vanished out of the sky. +2012-01-19,28.0891667,-80.5658333,Indialantic,FL,light,300,As I was driving south on state road A1A I observed a red stationary light about 100ft off the ground over a strip mall. I pulled into +2012-01-19,26.5625,-81.9497222,Cape Coral,FL,disk,240,Flying disk with red and blue lights/ disapeared in sky like a light balb went out +2012-11-09,26.2708333,-80.2708333,Coral Springs,FL,sphere,120,Orange Spheres flying over Coral Springs. +2012-11-09,28.6986111,-81.3083333,Winter Springs,FL,sphere,900,Reddish orange sphere changed shaped them multiplies. +2012-01-19,28.2438889,-82.7194444,New Port Richey,FL,light,120,2 bright orange-red twinkling lights traveling in tandem, then climbed and faded away +2012-01-19,35.2463889,-92.9363889,Atkins,AR,triangle,120,ARKANSAS SIGHTING +2012-11-09,36.0725,-79.7922222,Greensboro,NC,sphere,600,What was in the skies over Greensboro Friday night, 11/09/12? +2012-11-09,55.3422222,-131.6461111,Ketchikan,AK,light,7200,Square formation of 4 lighthouse like beacons rotating in sequence clockwise. +2012-11-09,37.1316667,-80.5766667,Radford,VA,flash,1800,Saw two flashing lights, blue-green light fell from sky. Moving slow, many helicopers following. +2012-01-19,25.7902778,-80.1302778,Miami Beach,FL,fireball,3600,A fireball seeing over Miami for more than 1+ hours +2012-11-09,38.005,-121.8047222,Antioch,CA,light,900,3 BRIGHT ORANGE LIGHTS HOVERED IN SKY. +2012-01-19,33.4041667,-79.9219444,St. Stephen,SC,fireball,120,My wife and I were looking in the northeasterly sky when a green fireball fell. One would see it as a meteorite. It was falling strai +2012-11-09,44.1002778,-70.2152778,Lewiston,ME,light,300,White light moving across sky that stopped and stayed still. +2012-11-09,40.7719444,-80.7683333,Lisbon,OH,circle,600,Bright red circular craft in mid-air doing circles +2013-11-09,32.7355556,-97.1077778,Arlington,TX,cross,300,Cross-shaped ufo with white and red blinking bright lights that hovered over Arlington, Tx, near the ground. +2013-01-19,37.3402778,-95.2608333,Parsons (East Of),KS,circle,8,SE Kansas object to slow to be a falling star. Moving southeastern pattern bluish circle stayed lite until it disappeared in the. +2013-11-09,36.1155556,-97.0580556,Stillwater,OK,light,2700,I saw 7 or 8 balls of white light in clear sky at 9:00 AM that were flying in non linear fashion with a strange zigzag trajectory to NE +2013-11-09,44.1752778,-87.6491667,Shoto,WI,circle,180,Black disk over Shoto. +2013-11-09,34.0194444,-118.4902778,Santa Monica,CA,cylinder,30,Silver almost transparent looking objects over Santa Monica, CA 90401. +2013-11-09,27.9655556,-82.8002778,Clearwater,FL,unknown,660,Long hovering sound. +2013-01-19,40.015,-105.27,Boulder (Near),CO,other,120,A tight group of flashbulb-like lights glittering high up in a clear blue sky. +2013-01-19,39.7391667,-104.9841667,Denver,CO,disk,10,Small Metallic Disc Sighted in Denver, CO. +2013-11-09,41.4994444,-81.6955556,Cleveland (West Side Of),OH,other,180,butterfly shaped flying ufo low flying Cleveland, Ohio. +2013-11-09,40.7325,-73.4458333,Farmingdale,NY,fireball,600,Six orange fireballs in evening sky. +2013-01-19,33.8941667,-83.9558333,Grayson,GA,unknown,300,Amber colored lights appeared to be moving towards us when two alligned one on top of the other and then they hovered. +2013-11-09,19.9430556,-155.7902778,Waikoloa,HI,light,7200,Huge orange/white ball of light with mini lights speeding by it and exiting it. ((NUFORC Note: Sighting of Venus? PD)) +2013-11-09,39.9080556,-85.9227778,Mccordsville,IN,fireball,1200,Orange lights over geist. +2013-11-09,36.3955556,-80.7227778,Dobson,NC,light,180,30+ orange lights flying in formation. +2013-11-09,33.4222222,-111.8219444,Mesa,AZ,formation,600,Formation of moving lights split off and hover. +2013-11-09,28.8355556,-82.3305556,Inverness,FL,light,600,Lights in sky over Inverness, Florida UFO 11/9/2013 +2013-11-09,41.8975,-71.9630556,Pomfret,CT,light,600,11/09/13 Pomfret CT Light 10 minutes 6 bright absolutely silent orange/reddish pulsing lights moving east to west at low altitude +2013-11-09,28.8355556,-82.3305556,Inverness,FL,light,600,Numerous bright orange objects seen in sky over Inverness, Florida on 11/9/13. +2013-01-19,38.5725,-90.8819444,Augusta,MO,sphere,10,A previously stationary "star" suddenly moved and then vanished. +2013-11-09,38.9822222,-94.6705556,Overland Park,KS,fireball,300,One Fiery Red Orb ~Hovering~ Over Overland Park... That's twice now within 5 months! +2013-11-09,40.63,-79.9697222,Gibsonia,PA,formation,1800,Three yellow light shapes moving in erratic formations +2013-01-19,41.2794444,-72.8155556,Branford,CT,light,10,Series of flashing colorful lights and then took off and vanished within a second. +2013-01-19,64.8377778,-147.7163889,Fairbanks,AK,fireball,120,4 Balls of Fire Dance in The Northern Sky +2013-11-09,41.2052778,-96.0422222,Ralston,NE,chevron,10,Gray, low flying V object with no lights, no sound on a clear night with no clouds +2013-11-09,39.0702778,-76.5455556,Severna Park,MD,sphere,900,Silent red spheres moving in single file across the sky in Severna Park Maryland. +2013-11-09,39.3111111,-94.9222222,Leavenworth,KS,fireball,300,Slow moving fireballs going across sky in Leavenworth. +2013-01-19,40.3141667,-112.0061111,Eagle Mountain,UT,fireball,180,Saw 2 glowing balls of orange/red floating to the west of the Holiday in Eagle Mountain. +2013-01-19,35.2922222,-81.5358333,Shelby,NC,light,5,Green tailed light. +2013-11-09,45.6388889,-122.6602778,Vancouver,WA,oval,900,Orange lights over Vancouver, WA. +2014-01-19,42.4733333,-83.2219444,Southfield,MI,disk,900,Circular with colors. +2014-01-19,29.2672222,-97.7641667,Nixon,TX,circle,1620,Flashing object in Nixon, TX. +2014-01-19,34.5636111,-111.8536111,Camp Verde,AZ,fireball,7200,Very scary. +2014-01-19,26.0519444,-80.1441667,Dania Beach,FL,rectangle,300,Huge silver/gold object by I-95 in broad daylight. +2014-01-19,21.3069444,-157.8583333,Honolulu,HI,cigar,10,See above. ((NUFORC Note: The photos of interest show tiny, blurry objects. We suspect they are birds in flight. PD)) +2014-01-19,37.6625,-121.8736111,Pleasanton,CA,fireball,2,Firework like spark close to ground with an oddly high and long Chem trail behind it. +2014-01-19,29.9033333,-90.0772222,Harvey,LA,fireball,300,Red fireball observed above Harvey, La. moving from North to South direction. +2014-01-19,26.6583333,-80.2416667,Wellington,FL,light,240,Circular, very strong white light. +2014-01-19,39.6402778,-106.3736111,Vail,CO,flash,5,White flash came out of complete darkness in between a cluster of stars. +2014-01-19,33.1580556,-117.3497222,Carlsbad,CA,circle,300,Fireball in the sky over Carlsbad State Beach, California. +2014-01-19,34.61,-112.315,Prescott Valley,AZ,circle,4,A circular object with a trail of white light heading north. It looked as if the object left in a sideways u-parabola, disappearing. +2014-01-19,40.26,-74.2741667,Freehold,NJ,circle,420,Hovering light object underneath Orion's Belt. +2014-01-19,32.3122222,-106.7777778,Las Cruces,NM,light,300,Saw a large fast moving red and yellow light that came to a complete stop and slowly faded. Then one more right after the first one. +2014-01-19,34.54,-112.4677778,Prescott,AZ,fireball,10,Unidentified object object obscures radio. +2014-01-19,39.7391667,-75.5983333,Elsmere,DE,light,3,Greenish light splits into 2 with a yellowish glow. +2014-01-19,40.0505556,-74.9538889,Delanco,NJ,light,240,Formation of silent orange lights moving across clear sky. +2014-01-19,45.5236111,-122.675,Portland,OR,light,3,An odd white light streaked briefly overhead and then disappeared. Looked like it was on a diagonal path. Lasted only 3 seconds, but wa +2014-01-19,35.7719444,-78.6388889,Raleigh,NC,circle,45,Tonight me and my wife saw a Orangish Red Circle that emerge from over our house! We watched it for about 45 seconds and it appeared to +2014-01-19,27.8658333,-82.3266667,Riverview,FL,other,600,Dark undulating bubble or cloud with two hoola hoop type rings on either side standing vertical; muti-colored spinning lights. +2014-01-19,35.9797222,-78.51,Wake Forest,NC,formation,120,Line of 8 big lights. +1951-01-20,33.8302778,-116.5444444,Palm Springs,CA,cigar,3,01/20/51 Palm Springs CA light hour and a half bluish-white light of worm-like shape 04/09/06 +1963-01-20,42.2041667,-72.6166667,Holyoke,MA,disk,1200,6 massive ufo's parked on moon. old sighting +1969-01-20,27.9011111,-81.5861111,Lake Wales,FL,disk,300,The ufo used simulated police lights to pull me over and then just sat there apparently observing me. +1970-01-20,42.9125,-71.125,Danville,NH,egg,1200,sister ans i were sliding in the snow;when this egg object landed; +1978-01-20,31.9972222,-102.0775,Midland,TX,cigar,30,Large cigar shaped hovering craft with flashing lights. +1983-01-20,42.0569444,-94.7286111,Glidden,IA,light,180,Saw star like object fly stright horizontal and vertical lines with 90 degree angels at all turns. +1989-01-20,41.1416667,-87.875,Bourbonnais,IL,other,180,Large craft 2000 feet above ground +1991-01-20,41.005,-73.785,Scarsdale,NY,other,300,Guard dogs on the hunt +1993-01-20,29.6513889,-82.325,Gainesville,FL,light,900,A bright orange ball of light hovering approximately 500 feet above the tree line with no sound coming from it. +1993-01-20,34.5369444,-86.3944444,New Hope,AL,triangle,300,On that night it was very cold. I had carried the trash out and notice a bright light at the horizon. Being fascinated by all things in +1993-01-20,42.0652778,-74.4605556,Oliverea,NY,light,300,two lights hovering over remote area of Catskill Mountains, made no sound, turned a sharp angle, and sped away +1996-01-20,40.4077778,-74.9786111,Stockton,NJ,light,900,2 men saw craft appear as star and moved at lighting speed and disapear into another star. +1999-01-20,37.3386111,-92.9069444,Marshfield,MO,light,2400,Red pulsating light +1999-01-20,46.0038889,-112.5338889,Butte,MT,diamond,60,We were driving & just cleared the top of the Continental Divide when we spotted a huge light in the sky just ahead of the car. It was +1999-01-20,38.7308333,-88.0852778,Olney,IL,chevron,10,Stargazing, saw a dimly lit V-shape coming overhaed from west t east, thought it was geese, but to fast-dissapeared to east in 8-10 sec +1999-01-20,34.2647222,-118.5222222,Granada Hills,CA,other,120,Myself and 3 others were in a car on the freeway when we saw a vertically long flying object moving slowly approximately 4 months ago. +2000-01-20,39.2086111,-81.1575,Cairo,WV,circle,20,Rotating in circles and then disappeared after about 15 seconds. +2000-01-20,40.7608333,-111.8902778,Salt Lake City,UT,disk,600,Saucer, 15' diameter, nw direction, no sound +2000-01-20,45.2080556,-89.0238889,Bryant,WI,circle,4,I'm in Northern Wisconsin, object was seen in southern horizon going from east to west - 4 seconds from horizon to horizon, probably me +2000-01-20,39.9611111,-82.9988889,Columbus,OH,fireball,5,Yesterday, 1/20/00 at exactly 6:00p.m., I observed a "green meteor"? falling from north to south in Columbus, Ohio. My wife and son an +2000-01-20,33.78,-118.2616667,Wilmington,CA,light,5,I saw three lights come together and then split apart continously for 30 min. over S Los Angeles. ((NUFORC Note: Ad' lights?? PD)) +2000-01-20,27.4986111,-82.575,Bradenton,FL,fireball,60,Waiting for the lunar eclipse at Bishop planetarium,I noticed it in the sky due east and didn`'t realize it wasn't a plane at first. +2000-01-20,27.4986111,-82.575,Bradenton,FL,fireball,120,Bishop planetarium ,luner eclipse, telscopes were set on saturn,jupiter and the moon.We were sitting under a covered set of tables when +2000-01-20,41.4297222,-97.3680556,Columbus,NE,triangle,480,Triangular craft seen by three females. +2000-01-20,29.7630556,-95.3630556,Houston (Clear Lake Area),TX,triangle,15,Observed two triangular (side by side) profiled object during eclipse.. +2000-01-20,29.7630556,-95.3630556,Houston,TX,diamond,45,two diamond shaped 'craft' during eclipse +2000-01-20,35.1494444,-90.0488889,Memphis,TN,other,6,An arc-shaped object, moving at possibly a high rate of speed, was seen moving from overhead to south. The object was almost invisible, +2000-01-20,25.8572222,-80.2783333,Hialeah (561 W. 4th Ave.),FL,other,10,I saw a shooting star coming into earth and the light went off and this big object with two wings(not feathers) appear and all of the s +2000-01-20,39.4688889,-76.2336111,Belcamp,MD,triangle,120,While viewing the lunar eclipse I saw a triangle of 11 small dim lights pass between me and the moon. The formation traveled to the sou +2000-01-20,26.0027778,-80.2241667,Pembroke Pines,FL,light,45,At approximately 11:15 PM on January 20, 2000 my wife and I went out by our pool to watch the Lunar Eclipse. Just before returning int +2001-01-20,44.6369444,-124.0522222,Newport,OR,light,5,Two parellel luminescent lights decended from sky and vanished over ocean without sound. +2001-01-20,41.6088889,-73.6822222,Poughquag,NY,circle,300,Fast moving saucer like object over Dutchess County. +2001-01-20,40.8938889,-72.8963889,Ridge,NY,light,10,BLUE LIGHTS....shinning in my window +2002-01-20,30.2538889,-85.9569444,Hollywood Beach,FL,unknown,1200,Sightiings of 5 stationary objects, about 30 degrees obove horizon at Hollywood Beach, Florida, on a warm sunny afternoon. +2002-01-20,26.0108333,-80.1497222,Hollywood,FL,sphere,900,7 spheres sighted in broad daylightƻ in triangle shape formation.hollywood,fl. +2002-01-20,40.31,-75.1302778,Doylestown,PA,light,2,Strange meteor-like light, green and blue, long trail, very big +2002-01-20,61.2180556,-149.9002778,Anchorage,AK,unknown,60,A reddish star like object moved very fast across the sky before dissappearing half-way across. +2002-01-20,38.8047222,-77.0472222,Alexandria,VA,light,1,colorful, bright, fast light of line +2002-01-20,36.7544444,-79.4,Dry Fork,VA,light,5,ROUND GREEN / BLUE LIGHTED OBJECT @ 800' ELEVATION SEEN FOR ABT. 5 SECONDS +2002-01-20,36.175,-115.1363889,Las Vegas,NV,changing,50,We saw an odd-shaped object with a tilted oval bottom and what appeared to be a triangular sail pointing off to the side. +2003-01-20,39.9191667,-75.4919444,Glen Mills,PA,teardrop,240,I woke up at 7 this morning. We have windows in our house that are very large and everywhere. I got something to drink and sat on my co +2003-01-20,47.8211111,-122.3138889,Lynnwood,WA,triangle,20,triangle craft overhead, Big, Washington state 03' +2003-01-20,40.6805556,-122.3697222,Shasta Lake,CA,light,30,There was a white dot traveling very fast, zipping from one point to another very fast. +2004-01-20,42.5,-96.4,Sioux City,IA,fireball,60,I saw what looked like a fireball in the sky. +2004-01-20,29.2163889,-82.0577778,Silver Springs,FL,unknown,30,The UFO passed over some tall trees; turned on a search/spot light, and once it realized another vehicle was in the area; vanished. +2004-01-20,41.7658333,-83.6280556,Lambertville,MI,changing,965,1 ufo was circular with multiple colors, moved slowly 2 ufo was a bright white circular object that moved with relatively the samespeed +2004-01-20,47.4066667,-122.0375,Maple Valley,WA,other,600,A ROUND GOLF BALL SHAPED THING WITH MULTIPLE TWINKLING COLORS +2004-01-20,41.7797222,-71.4377778,Cranston,RI,unknown,3600,Loud noise like a jet engine that went off and on for an hour making strange sounds. +2004-01-20,37.6941667,-122.0852778,Castro Valley,CA,light,120,Object travels SLOWLY over Castro Valley, California +2004-01-20,42.3266667,-122.8744444,Medford,OR,other,5,At night, 2 close lights flying fast parrallel to the ground for 5 seconds with absolutely no sound. +2005-01-20,28.555,-82.3880556,Brooksville,FL,light,1200,Wierd light spotted in Brooksville, Florida ((NUFORC Note: Report is not inconsistent with a sighting of the star, Sirius. PD)) +2005-01-20,38.2283333,-120.5397222,Mountain Ranch,CA,triangle,2700,Triangular object w/o the bottom. Red then Green then Yellow white flashing. Hanged in the sky.((NUFORC Note: Possibly Venus. PD)) +2005-01-20,36.0397222,-114.9811111,Henderson,NV,triangle,180,The craft was high and large with a wind breaze as it just sits there.i was takeing out the trash and my hands were slippery and greacy +2005-01-20,45.6366667,-109.2513889,Columbus,MT,disk,60,Dark saucer-shape with human-like entities on board. ((NUFORC Note: Possibly not a serious report. PD)) +2005-01-20,41.4338889,-73.1172222,Oxford,CT,rectangle,60,This was a lit up object moving slowly, then jumping quickly and hovering above the woods and homes of CT.((NUFORC: Student rept..PD)) +2005-01-20,41.4338889,-73.1172222,Oxford,CT,rectangle,60,Fast moving object that was hovering over trees and houses +2005-01-20,35.6008333,-82.5541667,Asheville,NC,light,600,Bright White Light Moving Slower Then Normal Aircraft. +2006-01-20,37.0113889,-80.0497222,Callaway,VA,unknown,600,seethrough square with elongated pentagon shapes on all sides and long poles with lights surrounding object. +2006-01-20,32.4486111,-99.7327778,Abilene,TX,light,2,4 Round Orange Glowing Objects +2007-01-20,43.0925,-75.6516667,Oneida,NY,oval,10,Green, Red and Blue Ball of Light Seen in the Sky above Oneida, NY +2007-01-20,39.0633333,-81.3952778,Elizabeth,WV,circle,420,My friend and i where in a car at 1:30 and a bright white flashing light. +2007-01-20,41.9163889,-83.3977778,Monroe,MI,cigar,600,Bright light disapears 2 times then reveals an object +2007-01-20,35.4872222,-80.6219444,Kannapolis,NC,rectangle,300,UFOs that have humans coming out of them!!!! +2007-01-20,40.8022222,-124.1625,Eureka,CA,triangle,180,Single silent V-shaped ufo seen in southern sky over Eureka, Ca. at about 8pm on Jan. 20, 2007. +2007-01-20,47.2530556,-122.4430556,Tacoma,WA,sphere,300,Two UFO sighted over Tacoma's Commencement Bay +2007-01-20,33.8894444,-118.1588889,Paramount,CA,disk,600,Red/auburn lights on disc dhaped object over Paramount Ca +2007-01-20,27.9472222,-82.4586111,Tampa,FL,egg,1200,Bluish Egg Shaped craft with red and blue blinking lights over Tampa +2007-01-20,33.8894444,-118.1588889,Paramount,CA,light,600,Mysterious red light moving accross the Los Angeles sky! +2007-01-20,41.6105556,-86.7225,Laporte,IN,triangle,300,2 triangular shaped crafts hovering low with bright lights. +2007-01-20,38.3363889,-75.0852778,Ocean City,MD,other,20,orange light zig-zags over ocean city,maryland +2007-01-20,44.6669444,-93.6266667,Jordan,MN,triangle,20,Large lights +2008-01-20,35.1494444,-90.0488889,Memphis,TN,sphere,600,I saw a bright orange sphere that hung in the sky for nearly 10 minutes! +2008-01-20,33.6105556,-95.0525,Clarksville,TX,rectangle,1200,Two large Rectangular oblects with multicolored lights all around and one had a large red beam that either was transferring something o +2008-01-20,32.5480556,-82.8719444,East Dublin,GA,other,480,MUFON/GEORGIA FOLLOW-UP REPORT: Person witnesses peculiar pulsing light near his home. +2008-01-20,32.5480556,-82.8719444,East Dublin,GA,oval,420,Landing of a 3 lighted fairly large craft with pulsing red to amber lights. No sound at all. +2008-01-20,32.5480556,-82.8719444,East Dublin,GA,oval,420,MUFON/GEORGIA FOLLOW-UP REPORT: Landing of a 3 lighted, fairly large craft with pulsing red to amber lights. +2008-01-20,41.1013889,-81.4419444,Tallmadge,OH,disk,60,Dark colored (rounded off) disk (dome) came over a hillside near the fair grounds at RT 91 and zig zagged for a minute or so like a top +2008-01-20,39.7391667,-104.9841667,Denver,CO,changing,420,White object, ufo, changing shape, moving North of Denver +2008-01-20,38.6008333,-90.4327778,Des Peres,MO,circle,30,silver circle in st. louis +2008-01-20,29.4238889,-98.4933333,San Antonio,TX,light,60,the light streaked across and then another light appeared behind the car a was just hovering above +2008-01-20,44.5366667,-122.9058333,Lebanon,OR,sphere,5,Jan 20 2008 Seen a silver sphere in the air. +2008-01-20,47.2397222,-122.5147222,Fircrest,WA,unknown,420,Unexplained object high in the sky, bright lights - to barely unnoticable - to disappearing within 8-10 mins. +2008-01-20,37.1305556,-121.6533333,Morgan Hill,CA,other,180,Morgan Hill, CA, 3 min., white object tumbling down 200-300 feetƺ sets of lights, stops and flies horizontally. +2008-01-20,48.051944399999996,-122.1758333,Marysville,WA,circle,420,UFO with red, white, blue flashing lights moving like a strobe light at different angles rapidly. +2008-01-20,40.6213889,-79.1527778,Indiana,PA,unknown,300,Bright light in sky then disappears instantly after 5 minutes in the sky +2008-01-20,40.2966667,-120.5230556,Janesville,CA,triangle,12,Flashing light object that flew low to the ground, was quiet, and was not fast, nor slow. +2008-01-20,35.7697222,-91.6408333,Batesville,AR,diamond,180,Object Extremely quite and maneuverable; could have been inches above our heads at anytime unaware to us +2008-01-20,41.7108333,-87.7580556,Oak Lawn,IL,oval,20,2 oval shaped flying next to each other +2008-01-20,34.698055600000004,-118.1358333,Lancaster,CA,circle,90,huge bright light moving crazily in the sky and then disappearing in lancaster, california and have a video. +2008-01-20,34.2263889,-87.6213889,Haleyville,AL,triangle,720,Triangle seen in silhoutte against lunar disk. ((NUFORC Note: Exceptionally good report; object seen on edge of full Moon. PD)) +2008-01-20,33.2147222,-97.1327778,Denton,TX,chevron,2,Amber colored, glowing chevron shaped object flew by overhead. +2009-01-20,33.6675,-84.0177778,Conyers,GA,unknown,18000,i saw something in the sky +2009-01-20,40.7616667,-73.3297222,Deer Park,NY,disk,540,ufo over long island, new york +2009-01-20,24.7133333,-81.0905556,Marathon,FL,circle,300,Two cluster of lights stationary in sky 45 degrees off horizon +2009-01-20,32.3502778,-108.7080556,Lordsburg (East Of),NM,rectangle,2700,very strange object +2009-01-20,61.5813889,-149.4394444,Wasilla,AK,triangle,900,3 lights low on north horizon outside of Wasilla, AK 01/20/09 @ 7:15pm local time. +2009-01-20,37.6391667,-120.9958333,Modesto,CA,unknown,120,Slowly pulsing red light moving slowly in a south east direction over Modesto, Ca. +2009-01-20,42.5916667,-88.4333333,Lake Geneva,WI,light,1200,Bright light in Lake Genva sky-not a star or plane. ((NUFORC Note: If the witness was looking west, the object was Venus. PD)) +2009-01-20,34.5361111,-117.2902778,Victorville,CA,rectangle,30,Rectangular grid of orange lights hovering over Apple Valley, CA +2009-01-20,38.51,-89.6194444,Damiansville,IL,unknown,600,It had a bright light in the front that looked like a spotlight, then in the back there were multicolor lights. +2009-01-20,38.7430556,-94.8252778,Spring Hill,KS,light,480,Light, silent, made three stops and emitted red sparkling material from light to ground over a four minute span. +2009-01-20,37.6361111,-91.0016667,Goodland,MO,circle,25,looking sw in goodland,ks i saw three sucessions of orange circular lights +2010-01-20,42.4630556,-78.9361111,Gowanda,NY,fireball,5,((HOAX??)) very fast fireballs,very scared. +2010-01-20,41.4775,-95.2216667,Walnut,IA,flash,60,HUGE Flash of Pale Blue Light & Loud Cracking Sound in Walnut, IA. +2010-01-20,37.3394444,-121.8938889,San Jose,CA,disk,3600,I was in the back yard with grandkids,saw a bright light in the sky coming towards us,it stopped over my house,then i started taken vid +2010-01-20,41.4408333,-71.8816667,North Stonington,CT,light,1200,Strange Lights and booming noises in North Stonington CT +2010-01-20,43.1191667,-124.4072222,Bandon,OR,other,900,Close Encounter of the 5th Kind. ((NUFORC Note: Possibly not a serious-minded report. PD)) +2010-01-20,41.7002778,-73.9213889,Poughkeepsie,NY,disk,900,Alien ship appears near synagogue. +2010-01-20,35.7697222,-91.6408333,Batesville,AR,diamond,180,Craft Hovering extremly quite; could have easily been inches above our hear unless we looked we would have had no idea +2010-01-20,28.2438889,-82.7194444,New Port Richey,FL,fireball,120,Several orange orbs following eachother ACROSS the night sky, I witnessed about 6 of them, after calling my wife, she was able to see 3 +2011-01-20,29.9544444,-90.075,New Orleans,LA,light,1,Weird light shoots horizontally across sky around interstate I-10 headed east five minutes past Michoud exit before Irish bayou +2011-01-20,43.8013889,-91.2394444,La Crosse,WI,cigar,1800,We saw a white lighted, horizontally oriented object moving very slowly. +2011-01-20,33.5091667,-111.8983333,Scottsdale,AZ,light,900,Slow moving, red pulsing light in the sky +2011-01-20,43.6727778,-84.3805556,Sanford,MI,flash,30,the greenish object ?steaked down from the sky moving slower than a falling star looked like a injured aircraft but firey or glowing +2011-01-20,38.8338889,-104.8208333,Colorado Springs,CO,light,45,Yellow light in Colorado Springs +2012-01-20,41.12,-87.8611111,Kankakee,IL,fireball,5,Me and friend see a meteor-like UFO in the sky. +2012-01-20,42.2136111,-74.2191667,Hunter,NY,rectangle,60,Massive rectangular craft in between two mountains hovered for a minute and disappeared +2012-01-20,43.0202778,-78.8805556,Tonawanda,NY,other,600,Craft with 3 lights on belly of craft slowly traveling over tonawanda, new york +2012-01-20,26.1719444,-80.1322222,Oakland Park,FL,oval,900,Blinking light over fort lauderdale http://www.youtube.com/watch?v=rN9bMl0OyKA +2012-01-20,29.1758333,-80.9830556,Daytona Beach Shores,FL,unknown,600,Triangular formation off of coast +2012-01-20,27.3361111,-82.5308333,Sarasota,FL,light,900,Orange light seen in sky North of Sarasota, FL +2012-01-20,35.7452778,-81.685,Morganton,NC,triangle,3,Triangle object with blue lights traveling at speeds that could not be a plane or anything man-made in the sky above interstate I-40. +2012-01-20,42.9955556,-71.4552778,Manchester,NH,light,120,A bright light falling from the eastern sky over the Merrimack River in Manchester, NH. +2012-01-20,29.2105556,-81.0230556,Daytona Beach,FL,oval,300,6 red balls, and each ball had a microsized ball next it, red balls turned silver or grey then disappeared +2012-01-20,33.4483333,-112.0733333,Phoenix,AZ,unknown,180,I was getting mail...I saw two wide set lights gliding silently and moving forward much lower that a helicopter in a N.W. direction ... +2012-01-20,40.7833333,-75.1866667,Martins Creek,PA,light,900,Up to 12 red orbs changing in pattern of big dipper, orionsbelt, triangsles, etc. +2012-01-20,32.77,-108.2797222,Silver City,NM,changing,1200,Red/orange orb interacts with jets, chased by more jets, re-appears 4 days later. +2012-01-20,33.3061111,-111.8405556,Chandler,AZ,circle,1800,I was taking my two children to their mother’s house in Chandler for the weekend. My daughter is 14 my son is 11. It was 10:30 pm and w +2012-01-20,41.0813889,-81.5191667,Akron,OH,chevron,2,I was in bed on a second floor this stealth-like craft with large white lights (not sure of how many or if there were red ones also) he +2012-01-20,37.3041667,-77.2875,Hopewell,VA,unknown,3600,I heard strange sounds coming from the sky. +2013-01-20,26.0966667,-80.1275,Port Everglades,FL,circle,900,They seem to keep there light and shape as they rose. +2013-01-20,33.4483333,-112.0733333,Phoenix,AZ,circle,20,UFO +2013-01-20,38.9716667,-95.235,Lawrence,KS,other,900,2 brightly lit craft with banks of lights seen after dark within ten minutes of each other in similar flightpath. +2013-01-20,28.1486111,-80.5886111,Indian Harbour Beach,FL,fireball,300,Reddish Orange orb like sphere in the skies above Indian Harbour Beach. +2013-01-20,31,-87.2608333,Flomaton,AL,circle,600,3 orange lights in Alabama sky. +2013-01-20,38.8822222,-77.1713889,Falls Church,VA,light,180,Flickering light with the size of ping pong ball flew with constant speed over falls church virginia +2013-01-20,34.0522222,-118.2427778,Los Angeles,CA,cone,1800,Sighting and dreams. +2014-01-20,47.6588889,-117.425,Spokane,WA,triangle,10,What was that? +2014-01-20,33.7488889,-84.3880556,Atlanta,GA,cylinder,180,Two Bright Metallic Objects. +2014-01-20,32.7947222,-116.9616667,El Cajon,CA,other,1200,two friends in daytime view multiple statiopnary lights for more than 15 min in El Cajon, Califoria. +2014-01-20,44.2619444,-88.4152778,Appleton,WI,light,300,At first looked like set of car headlights soaring in the sky, Thought it was a plane at first. Got closer and the lights faded out.. +2014-01-20,36.2597222,-86.6477778,Old Hickory,TN,light,10,RED BALL OF LIGHT FOLLOWING AN AIRCRAFT. +2014-01-20,33.4933333,-112.3572222,Litchfield Park,AZ,oval,180,3 floating orange orbs in a V formation lasting about 3 minutes then diassapeard one after the other. +2014-01-20,36.1538889,-97.6252778,Marshall,OK,other,60,Humanoid figure sited crossing road near Marshall, Oklahoma. +2014-01-20,26.9338889,-80.0944444,Jupiter,FL,changing,420,Rising fireball, turned into rounded square with single rotating light around perimeter that started clockwise then reversed rotation. +2014-01-20,34.6991667,-86.7483333,Madison,AL,triangle,60,3 bright orange lights along side a bright white light. +2014-01-20,35.7452778,-81.685,Morganton,NC,circle,300,11 orange burning circles floating in sky! +2014-01-20,29.4238889,-98.4933333,San Antonio,TX,fireball,120,2 fireball like objects over Southern Bexar County in evening sky 1-20-2014. +2014-01-20,36.9355556,-90.2708333,Wappapello,MO,light,10800,Bright orange Lights/Fireballs. +2014-01-20,29.4238889,-98.4933333,San Antonio,TX,fireball,120,2 fireball like objects over Southern Bexar County in evening sky 1-20-2014. +2014-01-20,47.6480556,-121.9127778,Carnation,WA,triangle,15,An unusual triangular craft passed over our house tonight, traveling S.W., low & silent. +2014-01-20,38.5816667,-121.4933333,Sacramento,CA,triangle,120,Sacramento red and white lights in sky. +1963-12-10,34.2569444,-85.1647222,Rome,GA,oval,1200,An unmistakable sighting of a silent craft that followed us for 3miles, stopped hovered and accelerated out of sight straight up. +1965-12-10,29.8830556,-97.9411111,San Marcos,TX,light,60,What happened on that buss in 1965, in Texas +1968-12-10,34.1780556,-82.3791667,Abbeville (Lake Secession),SC,disk,300,I had a close incounter with a UFO/(saucer/disc). Craft hoovered about ten feet over my head, backed off, lowered to eye level, then r +1978-12-10,40.5375,-77.3536111,Mexico,PA,disk,3,Four silvery disk objects observed +1980-12-10,36.9786111,-76.4283333,Newport News,VA,other,60,Hexagon shape ufo's +1980-12-10,45.4236111,-91.4083333,Weyerhaeuser,WI,disk,900,one UFO meets 2 others +1982-12-10,36.2166667,-81.6747222,Boone (West Of),NC,chevron,20,I saw what appeared to be a large boomerang shaped craft with pale blue lights along the leading edge. +1989-12-10,38.935,-74.9063889,Cape May,NJ,sphere,300,Hard orange sphere seen over Deleware Bay winter of ྕ. The sphere dropped down to both sides of the ferry then departed. +1990-12-10,21.3069444,-157.8583333,Honolulu (Hawaii Kai),HI,flash,3600,In Hawaii Kai late 80's to early 90's over Kamehame Ridge one flash turns into hundreds and other multiples. +1991-12-10,42.9633333,-85.6680556,Grand Rapids,MI,other,3.5,hugh triangulation of lights,nine in all,traveling with stunning cooperation and velocity,all rotating,silently and quick! +1993-12-10,35.7452778,-81.685,Morganton,NC,circle,20,Red Object over my backyard. +1994-12-10,33.4936111,-117.1475,Temecula,CA,disk,240,Last night, while driving home from work I spotted an unusual looking flying object.The UFO traveled slowly like a blimp. It was t +1995-12-10,44.0805556,-103.2305556,Rapid City,SD,circle,15,It was very early morning and I was delivering papers. I heard a very large BOOM!!! and everything turned blue. I looked toward the noi +1996-12-10,35.1494444,-90.0488889,Memphis,TN,oval,300,around shape object in memphis.please this is no lie..... +1996-12-10,41.4138889,-73.3038889,Newtown,CT,teardrop,300,I was walking in my basement and I looked outside. About 300 yards away hovering right over the trees in my back yard was a strange sha +1996-12-10,30.3569444,-87.1638889,Gulf Breeze,FL,sphere,900,Three super bright craft emitting triangular light array. +1996-12-10,34.2163889,-119.0366667,Camarillo,CA,light,180,I saw a bright, white light moving very fast. It was about, maybe 2 or 3 miles away from me. I saw it outside of my window, and I saw a +1997-12-10,37.8044444,-122.2697222,Oakland,CA,triangle,30,I was looking at the night sky and noticed a few stars dissapear then reappear. At first I thought it was a little strange and almost a +1997-12-10,39.0541667,-84.0530556,Williamsburg,OH,diamond,20,4 dimond lights in ohio +1998-12-10,42.9697222,-77.2305556,Manchester,NY,fireball,3,green fire ball seen in the sky 3/4 the size of the moon. +1998-12-10,42.19,-87.9083333,Lincolnshire,IL,fireball,7,Red fireball travelling south to north with tail 4 or 5 times size of object. Lasted 7 seconds then winked out. +1998-12-10,38.4405556,-122.7133333,Santa Rosa,CA,light,70,Strange, projectile-firing light over northern california. +1998-12-10,38.1383333,-97.4311111,Hesston,KS,triangle,600,Triangle shaped with a very bright light on each corner with a flashing red beacon in the middle. +1998-12-10,41.9583333,-70.6677778,Plymouth,MA,diamond,600,i am 14 and was coming back from my football banquet in a car with my father going north when i noticed a very bright diamond shaped ob +1999-12-10,34.1511111,-118.4483333,Sherman Oaks,CA,other,300,A single small cloud moved from WNW to WSW over a 5 min. period in an otherwise clear sky. Faintly comet-shaped. Military rocket launch +1999-12-10,42.9633333,-85.6680556,Grand Rapids,MI,other,3.5,big triangle rotating counter clockwiseǁ triangulated mini-lights made the appearance of one big triangle,in cruising formation,silent +1999-12-10,47.7544444,-122.1622222,Woodinville,WA,light,10,Blue lights that appeared to be backlit in the clouds. Sort of in a line but some closer than others. Approximately eight - not sure +1999-12-10,38.9516667,-92.3338889,Columbia (East Of City),MO,triangle,240,Looked like Stealth Bomber but dropped from about 200 yards to 40 feet in seconds... +1999-12-10,40.5575,-74.285,Woodbridge,NJ,teardrop,180,On 3 separate occasions over a 3 minute span, we saw objects moving around and interweaving with each other at a high speed and they ap +2000-12-10,35.2783333,-93.1336111,Russellville,AR,unknown,300,I was awoke by a variable beeping noise,persistant and different from anything my husband and I have ever heard.It lasted approx. 5 min +2000-12-10,37.6658333,-77.5066667,Glen Allen,VA,oval,5,A glowing, riding lawn mower after a thunderstorm?!?! +2000-12-10,44.1636111,-93.9991667,Mankato,MN,other,45,Four dim lights in a row, flew over my head. One object or four seperate objects +2000-12-10,44.6688889,-90.1716667,Marshfield,WI,light,45,Flashing lights in Wood County, WI +2000-12-10,36.175,-115.1363889,Las Vegas,NV,triangle,7,We saw a totally dark, silent triangular (boomerang) shaped object flying over a casino in Las Vegas. +2000-12-10,28.7027778,-81.3386111,Longwood,FL,other,300,I filmed a craft for about 2 minutes moving in differing directions. Definietly not a helicopter or plane. +2001-12-10,43.0966667,-71.4655556,Hooksett,NH,disk,120,A few scary sighting by two seperate groups of people at two different times. +2001-12-10,33.8722222,-117.8694444,Placentia,CA,oval,300,orange saucer shaped misty looking object seen in placentia +2001-12-10,38.2972222,-122.2844444,Napa,CA,light,10,Single green fireball type object, hitting the ground north of Napa, CA. +2002-12-10,28.8022222,-81.6447222,Mount Dora,FL,circle,2700,My partner and I were working late one evening and arrived at our house at 3:00 am. Every night we put out cat food for the wildlife th +2002-12-10,38.2541667,-85.7594444,Louisville,KY,sphere,180,we saw a white sphere that had two whisker like thin rays on each side of our view . it was just up in the sky . it didnot move or make +2002-12-10,27.9472222,-82.4586111,Tampa,FL,diamond,1200,Pulsating Diamond Shaped object ejects two orbs of light towards the ground. +2002-12-10,34.4263889,-117.3,Hesperia,CA,oval,300,While parked in front of my childs school, waiting for the day care teacher to arrive in the school quad. My child and I saw a jet fly +2002-12-10,41.1222222,-80.3330556,New Wilmington,PA,egg,1380,Pennsylvania: New Wilmington +2002-12-10,42.8144444,-83.7825,Linden,MI,fireball,5,Large fireball with long bright tail streaking across southern sky +2002-12-10,40.2794444,-86.5108333,Frankfort,IN,sphere,900,3 glowing objects near Frankfort, IN, in Dec. 2002 +2002-12-10,25.8897222,-80.1869444,North Miami,FL,fireball,45,Small fireball like object hovering over a water treatment plant I North Miami, FL +2002-12-10,26.3583333,-80.0833333,Boca Raton,FL,fireball,60,Bright orange-yellow flare-like light traveled across the sky towards the south, breaking into two still-flaming pieces before disappe +2003-12-10,35.2163889,-109.3330556,Sanders,AZ,cigar,300,Cigar shaped black object spotted over Northern Arizona town +2003-12-10,34.54,-112.4677778,Prescott,AZ,fireball,10,Three orange-yellow lights flashed in a straight line in the sky, blinking on and off once before blinking out of view entirely. +2003-12-10,27.8002778,-97.3961111,Corpus Christi,TX,circle,2700,Bright hovering object. +2003-12-10,43.6136111,-116.2025,Boise,ID,unknown,600,This all happened very fast, it seemed like 3 seconds but when I went back in, it was ten minutes. +2003-12-11,35.4736111,-81.2547222,Lincolnton,NC,unknown,300,For the last two weeks,I have seen a light in the sky that appears to be landing lights on a aircraft,but the lights turn off and there +2004-12-10,34.0522222,-118.2427778,Los Angeles,CA,light,5,Small light heading north got brighter then flashed and headed south. +2004-12-10,37.8591667,-122.4841667,Sausalito,CA,disk,20,HUGE UNIDENTIFIED CRAFT SEEN IN BROAD DAYLIGHT BY 2 WITNESSES WITH AMAZING DETAIL OF CRAFT DESCRIPTION AND NO DOUBT ABOUT WHAT IT WAS. +2004-12-10,41.8975,-84.0372222,Adrian,MI,triangle,120,Silent black triangle moving very slowly about 75 feet off the ground. +2005-12-10,44.0522222,-123.0855556,Eugene,OR,circle,180,flying towards eachother… ((NUFORC Note: Possible satellites?? PD)) +2005-12-10,40.9572222,-73.9638889,Demarest,NJ,circle,120,circle object with 5 white lights, 2 red lights in center. +2005-12-10,33.4483333,-112.0733333,Phoenix,AZ,other,60,Close encounter of the third kind. +2005-12-10,42.125,-71.1027778,Stoughton,MA,changing,2700,An unknowm light in the southwest dark sky. +2005-12-10,41.2558333,-122.1383333,Mccloud,CA,unknown,3600,Huge flash of light and then 4 UFOs enter into our atmosphere +2005-12-10,36.8416667,-82.2252778,Dickensonville,VA,changing,1800,((Venus??)) The object appeared to be changing from a round to an oblong shape in a more or less regular manner. +2005-12-10,34.8666667,-92.4041667,Maumelle,AR,cigar,600,I own a on location skytracker searchlight service. I was looking in the sky at the beams..right at sundown...as this was a newer mac +2005-12-10,47.6113889,-119.2911111,Coulee City,WA,light,1800,we were on highway 2,driving 30 miles to ephata from coulee city.we noticed on the way a bright star in the sky out the windshield of t +2005-12-10,39.7475,-122.1952778,Orland,CA,light,90,bright multie,colors,flareing, and one light. ((NUFORC Note: Celestial body?? PD)) +2006-12-10,30.3319444,-81.6558333,Jacksonville,FL,other,10,I was outside after coming back from a dance. It was between 2:45am and 3:00am. I was outside because it was said that Mercury, Mars, +2006-12-10,40.5819444,-74.9594444,Pittstown,NJ,oval,1800,LARGE BRIGHT OBJECT HUNTERDON COUNTY NJ +2006-12-10,39.9611111,-82.9988889,Columbus,OH,circle,120,Shining Craft seen in the Columbus, Ohio area. Round in shape no noise about 5000ft above tree level. +2006-12-10,40.1933333,-85.3863889,Muncie,IN,disk,180,Two yellow disks adjacent with a silver white probe/extension from lead disk +2006-12-10,39.1502778,-123.2066667,Ukiah,CA,cigar,10,4 CYLINDER OR CIGAR SHAPED CRAFT WOVE AND DANCED A PATH TO THE SUNSET. +2006-12-10,35.5327778,-90.4205556,Marked Tree,AR,chevron,30,black chevron with at least 5 amber colored lights. +2006-12-10,35.6736111,-90.5072222,Trumann,AR,chevron,30,Black chevron with at least 5 amber lights seen on Hwy. 63N at 8 pm near Trumann, Arkansas +2006-12-10,39.6580556,-78.9286111,Frostburg,MD,flash,300,I was walking to the other side of campus to visit a friend. It was snowing and incredibly cold. I could hear a loud bell, almost lik +2007-12-10,32.7252778,-114.6236111,Yuma,AZ,other,7200,Driving west on I-8, looking north noticed unusual white object, very white. ((NUFORC Note: Possible high-altitude balloon?? PD)) +2007-12-10,39.1961111,-121.19,Penn Valley,CA,teardrop,360,High up in the sky we saw one teardrop, comet shaped object. The larger end closest to the ground, we guessed it might be several hundr +2007-12-10,43.8205556,-69.8152778,Phippsburg,ME,sphere,13,Burning bright orb with a plane above following it then it either burned up, crashed or just lit up when out of view +2007-12-10,38.6447222,-121.2711111,Fair Oaks,CA,rectangle,300,I saw really bright lights in the sky that was neither a plane or a helicopter. +2007-12-10,33.1102778,-86.5841667,Shelby,AL,circle,4800,Large round object with long and wide tail was seen moving slow in a northeast direction in evening sky. +2007-12-10,33.66,-86.8127778,Gardendale,AL,other,7200,Strange object over Alabama, cloudy and spherical in shape. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,30.4380556,-84.2808333,Tallahassee,FL,light,2700,Glowing cloud,like a comet over Northern Florida. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,31.2230556,-85.3905556,Dothan,AL,light,60,A comet type object in night sky. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,33.7947222,-83.7133333,Monroe,GA,cigar,4200,Mother ship and small craft above Atlanta Ga. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,42.7672222,-71.8127778,Greenville,NH,changing,120,Fuzzy trianglular patch of light in the night sky. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,35.72,-79.1775,Pittsboro,NC,cone,2700,Unexplained object moving SW to NE over North Carolina skies, tracked via refractor telescope. ((NUFORC Note: Missile fuel. PD)) +2007-12-10,37.5536111,-77.4605556,Richmond,VA,other,1200,December 10th object seen in Richmond, Virginia. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,33.8838889,-84.5144444,Smyrna,GA,other,1200,The fuzzy, comet-like object seen on December 10, 2007 across the East Coast was apparently a rocket stage from a classified satellite. +2007-12-10,42.6525,-73.7566667,Albany (Near),NY,cigar,2400,BRIGHT COMET LIKE OBJECT OVER NY SKY FOR @ 45 MINUTES. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,27.4463889,-80.3258333,Fort Pierce,FL,cigar,2700,December 10, 2007 quickly moving comet-like object in sky. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,29.9230556,-82.7138889,Ft. White,FL,cone,1200,cone of light moving north thru space or stratosphere over florida ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,35.9555556,-80.0055556,High Point,NC,other,1500,7:00 PM in the evening I noticed what looked immediately like a bright comet. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,35.1405556,-85.2327778,Hixson,TN,other,300,Comet looking object. Probably a Centaur rocket fuel dump. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,26.6155556,-80.0572222,Lake Worth,FL,other,300,((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,34.3875,-83.6663889,Lula,GA,unknown,900,Flashing object with tail directly above NE Georgia. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,25.7738889,-80.1938889,Miami,FL,light,2700,strange lights in the sky. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,36.8527778,-75.9783333,Virginia Beach,VA,fireball,300,Brilliant orange light seemed to be emitting from something above as if it were propulsion. +2007-12-10,29.3872222,-82.4469444,Williston,FL,other,2100,possible explosion above the earth's atmosphere. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,33.9925,-83.7202778,Winder,GA,cigar,600,Cigar shaped object with bright light zigzagging above Winder Georgia. +2007-12-10,44.3736111,-72.5502778,Worcester,VT,sphere,75,7:00 pm Dec. 10 2007 I am weather forecaster meteorologist with two decades plus of experience observing. I work for a radio station i +2007-12-10,35.8072222,-81.5319444,Baton,NC,other,1500,slow-moving comet like tail with single strobe over western north carolina. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,34.3697222,-83.2352778,Carnesville,GA,light,3600,Comet-like object moving across sky. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,30.1894444,-82.6394444,Lake City,FL,other,2700,Fuel Dump Spooks Nation! ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,25.7738889,-80.1938889,Miami,FL,cylinder,2700,A CYLINDER LIKE OBJECT WITH HAZY LIGHT SORROUNDING IT. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,37.6625,-121.8736111,Pleasanton,CA,rectangle,7200,UFO SIGHTINGS IN PLEASANTON,CA (12-10-2007) ((NUFORC Note: Celestial objects?? PD)) +2007-12-10,33.7319444,-84.9191667,Villa Rica,GA,unknown,2700,Yellow haze with 4 objects that are related to haze. +2007-12-10,33.7838889,-116.9577778,San Jacinto,CA,other,5,Black pointed Shadow Object Turns out lights and turns electronics off in truck. +2007-12-10,27.9472222,-82.4586111,Tampa,FL,cylinder,900,Comet like object with a crayon in the middle. ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,41.9,-71.0902778,Taunton,MA,unknown,1320,a mysterious cloud and 2 smokey streaks +2007-12-10,46.0927778,-88.6422222,Iron River,MI,unknown,1800,fuzzy object ((NUFORC Note: Missile venting fuel in space. PD)) +2007-12-10,41.6483333,-70.4816667,Mashpee,MA,triangle,120,triangular UFO spotted over cape cod and pursued by jet aircraft +2008-12-10,35.2219444,-101.8308333,Amarillo,TX,sphere,60,unknown ball of light appeared and then took off at a high rate of speed!!! +2008-12-10,38.7297222,-120.7975,Placerville,CA,cylinder,180,White cylinder seen in Placerville, CA disappeared quickly +2008-12-10,33.7091667,-117.1963889,Sun City,CA,formation,10,Enormous V-shaped formation consisting of inter-connecting puffy objects traveling very fast. +2008-12-10,47.8211111,-122.3138889,Lynnwood,WA,unknown,300,Teeny tiny bright light seen zig zagging across night sky +2008-12-10,38.1838889,-83.4327778,Morehead,KY,light,3,Eleventh Floor of Cartmell Hall at MSU Bright Red Orb 2 feet in width speeds by. ((NUFORC Note: Student report. Possible hoax. PD)) +2008-12-10,45.4469444,-122.5291667,Happy Valley,OR,fireball,9,Observed Meteir/Fireball +2008-12-10,38.8113889,-89.9530556,Edwardsville,IL,oval,2,Oval object flew over me very fast and made no noise never saw anything like it before. +2008-12-10,40.2736111,-76.8847222,Harrisburg,PA,fireball,60,Orange Glow in north west Harrisburg, Pa Sky +2008-12-10,48.7597222,-122.4869444,Bellingham,WA,unknown,300,Three white lights following me on my way home from work at night... +2008-12-10,42.8863889,-78.8786111,Buffalo,NY,triangle,120,Triangle shape object floating in air. +2009-12-10,38.6580556,-77.25,Woodbridge,VA,other,5,I saw a v shaped ,silent object moving very quicky in the night sky. +2009-12-10,38.4,-105.2166667,Canon City,CO,flash,5400,The objects appeared, disappeared then reappeared. The objects moved in a way that is very different than anything I have ever seen. +2009-12-10,38.8338889,-104.8208333,Colorado Springs,CO,disk,30,Mysterious series of lights and disk shape across southern Colorado Springs sky +2009-12-10,29.8236111,-90.475,Des Allemands,LA,sphere,1080,four round balls in the shape of a square moving speratically +2009-12-10,41.5963889,-73.9113889,Wappingers Falls,NY,light,20,about 30 points of light traveling in a rope like formation that was whipping back around itself +2009-12-10,35.7511111,-86.93,Spring Hill,TN,disk,300,Low flying,large object that made no sound, moved very slow and appeared to hover at times. +2010-12-10,41.4138889,-73.3038889,Newtown,CT,rectangle,60,5 lights 4 white 1 red rectangle +2010-12-10,45.5061111,-91.7380556,Rice Lake,WI,circle,420,A bright green glowing circle +2010-12-10,37.5536111,-77.4605556,Richmond,VA,cylinder,180,Flying craft climbing vertically until it passed the moon in the sky upon which it disappeared +2010-12-10,37.5536111,-77.4605556,Richmond,VA,disk,120,it was a bluish orb traveling west at a very fast rate of speed. It was about as large as a small SUV. Im almost positive it was a UFO +2010-12-10,37.2708333,-79.9416667,Roanoke,VA,disk,180,I was driving home from work and i took a shortcut on a country road and went about 5 miles down but it turned into a dead end. After t +2010-12-10,36.1658333,-86.7844444,Nashville,TN,disk,600,craft seen over old hickory dam holding a quarter at arms lenth object was 3 times the size of the quarter beams seen coming from the n +2010-12-10,29.7630556,-95.3630556,Houston,TX,disk,300,I was driving to work during the day and saw a shiny flying object, that camoflaged with the sky and disappeared instantly. +2010-12-10,43.1344444,-90.7052778,Boscobel,WI,circle,300,Over Boscobel, Wisconsin 3 blue and red flashing objects staying in one place in the sky +2010-12-10,39.9936111,-105.0891667,Lafayette,CO,disk,10,Saw a slow moving craft traveling North to South which had 3 lights (or highly reflective surfaces), 1 on top and 2 below. Had ridges +2010-12-10,36.1538889,-95.9925,Tulsa,OK,cigar,10,Moved very slowly looked like a cigar w/ rounde ends and a fin at back. +2010-12-10,38.3397222,-122.7,Rohnert Park,CA,sphere,60,black, shiny spheres over california +2010-12-10,27.9655556,-82.8002778,Clearwater,FL,fireball,900,Multi colored orbs with contrail...changed form and color often. +2010-12-10,42.9708333,-82.425,Port Huron,MI,light,60,Bright Star object, that began moving upwards and towards the north, faded out of sight in clear night sky +2010-12-10,21.3069444,-157.8583333,Honolulu,HI,flash,5,Vertical Falling Object disappears in a flash 100 ft above ground near Boat Harbor in Honolulu Hawaii. +2010-12-10,30.3580556,-90.0655556,Mandeville,LA,cigar,120,http://www.google.com/imgres?imgurl=http://4.bp.blogspot.com/_8RLOdlrA7l4/S0uGORphrhI/AAAAAAAAAUY/DJvZ0uoFg6E/s320/Bright-cigar-shaped- +2011-12-10,37.7241667,-89.8611111,Perryville,MO,triangle,10,2 triangle shape objects hovering very high above missouri bootheel perfectly clear fall day 2 observers. +2011-12-10,33.1444444,-116.1333333,Ocotillo Wells (Near),CA,light,10800,More "Ghost Lights" in Anza- Borrego +2011-12-10,34.1952778,-79.7627778,Florence,SC,unknown,180,Object Spotted over Florence SC - Bright Red and Blue Light +2011-12-10,38.8338889,-104.8208333,Colorado Springs,CO,unknown,30,It was in a T formation. +2011-12-10,39.9008333,-74.8238889,Medford,NJ,oval,1800,We noticed a white light with green and red flashing lights and was slowly moving. ((NUFORC Note: Twinkling star? PD)) +2012-12-10,41.2586111,-95.9375,Omaha,NE,sphere,900,Spuratic orange ball. +2012-12-10,43.8963889,-73.1002778,Salisbury,VT,triangle,1200,Seen with high magnification Binocs. +2012-12-10,34.1388889,-118.2130556,Eagle Rock,CA,disk,600,UFO over Eagle Rock, CA. +2012-12-10,34.1477778,-118.1436111,Pasadena,CA,unknown,600,Unknown object seen, reappeared three times, within 10 Mins. +2012-12-10,41.6005556,-93.6088889,Des Moines,IA,circle,180,White orb dissapears into night. +2012-12-10,33.8805556,-78.5125,Sunset Beach,NC,light,600,Lights (sparkling diamond shaped) appeared in the sky over Atlantic Ocean in North Carolina, 12-10-12. +2012-12-10,40.1672222,-105.1013889,Longmont,CO,fireball,240,3 Red, Orange & Yellow Fireballs appear in sky to family of 3. +2012-12-10,26.6402778,-81.8725,Fort Myers,FL,fireball,180,A fireball that looked like a bird that faded out. +2012-12-10,34.0561111,-78.8905556,Loris,SC,light,60,3 bright lights - triangular formation. +2012-12-10,34.345,-112.1583333,Spring Valley,AZ,light,1200,This is NO JOKE and I'm not making this up. It's for real and a little spooky. +2012-12-10,33.8730556,-78.6144444,Little River,SC,light,30,Approximately 8:00 pm on 12/10/12 three large glowing lights were seen over the direction of the ocean NEE of Little River SC. +2012-12-10,34.7513889,-95.0477778,Talihina,OK,light,30,Strange lights appeared to line up in the sky and then dimmed out. +2012-12-10,25.7738889,-80.1938889,Miami,FL,cigar,1,Big, bright, long light that shined bright for about 1 second. +2013-12-10,33.5336111,-82.1308333,Evans,GA,circle,4,Orange lights in evan gorgia where belair rd an i20 cross over each other. +2013-12-10,35.7511111,-86.93,Spring Hill,TN,light,3600,Traveling light to the south viewed from middle Tennessee near Nashville. +2013-12-10,29.9744444,-92.1341667,Abbeville,LA,light,1800,BRIGHT LIGHTS IN SKY. +2013-12-10,41.1669444,-73.2052778,Bridgeport,CT,oval,10,Ufo sighting closest ever seen. +2013-12-10,42.6566667,-83.7530556,Hartland,MI,sphere,4,I was driving down 59 getting on s23 bound heading home was stopped at a red light came this sphere beautiful green glowing light comin +2013-12-10,33.4502778,-82.1983333,Grovetown,GA,unknown,120,Glowing orange lights South of Augusta, GA. +2013-12-10,34.6086111,-98.39,Lawton,OK,triangle,180,V-shaped aircraft with bright white lights and little colored lights. +2013-12-10,33.4483333,-112.0733333,Phoenix,AZ,rectangle,15,EXTREMELY BRIGHT, WHITE, LARGE OBJECT FELL OVER WEST PHOENIX SKY & NEAR SOUTH MOUNTAIN. DOGS WERE HOWLING FOR FIRST TIME-19:06 12/10/13 +2013-12-10,37.2386111,-76.51,Yorktown,VA,fireball,240,Beautiful 2 orange fireballs traveling slow, west to east, second ball dissipated. +2013-12-10,38.8119444,-94.5316667,Belton,MO,light,180,Bright orange lights hovered then disappeared. +2013-12-10,38.8119444,-94.5316667,Belton,MO,sphere,240,Bright orange, steadily-glowing ball of light (Sphere) moving across the sky with sudden disappear/reappear before moving on. +2013-12-10,38.9822222,-94.6705556,Overland Park,KS,light,30,Two flickering lights seen above the eastern horizon of Overland Park. +2013-12-10,28.5380556,-81.3794444,Orlando,FL,light,60,Single and silent yellowish light, traveling southwest to northeast below cloud cover, seen in northwest Orlando, Florida +2013-12-10,33.4352778,-112.3575,Goodyear,AZ,light,600,At least 12 red non-flashing lights flying east to west in night sky then disappear at same linear point in the sky. +2013-12-10,47.3069444,-92.6030556,Zim,MN,circle,600,Northern Minnesota. ((NUFORC Note: Sightings of "twinkling" stars, we suspect. PD)) +2013-12-10,29.9838889,-90.1527778,Metairie,LA,light,300,I saw 2 Bright Orange Lights which seemed to stay in one place. +2013-12-10,64.8377778,-147.7163889,Fairbanks,AK,unknown,14,Brights orange lights flashing, and disappeared out of sky instantly +2013-12-10,61.2180556,-149.9002778,Anchorage,AK,light,180,Red light with yellow edges pulsating and stationary to the south of Anchorage just below overcast cloud cover which provided me with a +1996-12-11,30.3569444,-87.1638889,Gulf Breeze,FL,fireball,105,Large red firy orange balls in a figure approaching a triangle in shape40 years old , some graduate school, +1997-12-11,47.6063889,-122.3308333,Seattle,WA,light,3,Extremely rapid, silent, non-streaking bright light moving from north to south at probably 15 to 25 degrees along the eastern horizon a +1998-12-11,38.8338889,-104.8208333,Colorado Springs,CO,disk,900,In twilight a disk shaped object "about the size of a dime held at arms length was seen by a husband and wife. They grabbed field clas +1998-12-11,34.0211111,-118.3955556,Culver City,CA,light,5,While driving home I saw a light high in the sky, moving from east to west in a straight line, except at one point it acted like it wen +1998-12-11,30.4211111,-87.2169444,Pensacola,FL,fireball,240,illuminating firey red ball that slowly sunk over the bay between Pensacola and Gulf Breeze +1998-12-11,42.9761111,-71.6944444,New Boston,NH,light,2400,Hovering light with flashing blue and red; movement was irratic and non-airplane like. Appeared as large (moving) star. Another small +1999-12-11,38.4086111,-89.9919444,Smithton,IL,fireball,2,Driving home, Saw a white meteor falling in NW sky. Shortly afterward the entire electrical system in the car went dead for a split sec +1999-12-11,35.9380556,-77.7908333,Rocky Mount,NC,fireball,30,my son and myself looked up to see a bright flash of light,i thought it was a plane crashing.It streakrd across the sky changing shape +2000-12-11,34.0702778,-117.395,Bloomington,CA,oval,25,ORANGE OVAL LIGHT WITH RED LIGHT ORBITING ORANGE LIGHT. . . +2000-12-11,38.9594444,-84.3880556,Alexandria,KY,diamond,30,My father and I were leaving on our way to take me to shool. When my father stopped, pulled to the side of the road and pointed to a fo +2000-12-11,41.1175,-73.4083333,Norwalk,CT,unknown,180,object displaying what appeared to be flames appeared out of the north at 1200-1500 feet +2000-12-11,37.2152778,-93.2980556,Springfield,MO,fireball,15,Green fireball over Springfield,MO +2000-12-11,33.3527778,-111.7883333,Gilbert,AZ,light,5,third personal sighting, of big, red, low flying, ball of light over gilbert/higley area +2001-12-11,38.8338889,-104.8208333,Colorado Springs (40 Se),CO,triangle,15,Moving 3 Light Triangular Formation Eastern Sky @ FL330 +2001-12-11,36.8188889,-76.2752778,Chesapeake,VA,cigar,360,I saw 5 cigar shaped crafts in a V formation with lights. +2002-12-11,42.8475,-90.7105556,Lancaster,WI,triangle,420,My wife woke me to ask me what was in the sky,we could both see it without getting out of bed,it was a triangle with brite blueish whit +2003-12-11,33.635555600000004,-96.6086111,Sherman,TX,light,7,Who: Myself - Overnight Security What: Observed Light - exactly like in previous sighting in the area - green in color, no trail, movi +2003-12-11,42.32,-89.0580556,Loves Park,IL,triangle,1200,triangle object hovering above field next to me then dissappeared +2003-12-11,34.1477778,-118.1436111,Pasadena,CA,light,1800,Very bright stationary light in vicinity of LAX. +2003-12-11,29.7630556,-95.3630556,Houston,TX,light,600,The lights were long, slinder, fire orange in color, and pulsated in brightness. +2003-12-11,29.7630556,-95.3630556,Houston,TX,light,900,Two Suspened orange vertical lights in the sky in the east. +2003-12-11,38.9458333,-105.2888889,Florissant,CO,light,240,I do not care what you do with this, there has to be an explanation. +2003-12-11,34.0522222,-118.2427778,Los Angeles,CA,fireball,1,Blue object shot across the sky +2003-12-11,33.1841667,-90.4891667,Belzoni,MS,light,600,I was going home to Arkansas after attending a company meeting in Jackson, MS on 12/11/03. About 12 miles out from Belzoni, MS on Rout +2003-12-11,37.7797222,-119.0744444,June Lake,CA,circle,180,Bright White Round Light +2003-12-11,42.489444399999996,-83.1447222,Royal Oak,MI,triangle,180,Triangle with lights +2003-12-12,29.7630556,-95.3630556,Houston,TX,unknown,120,while playing a game my friends and i saw two cigar shaped golden orange objects in the horizon. +2004-12-11,26.2513889,-80.1791667,Coconut Creek,FL,diamond,300,this object looked like the north star was getting 20 times closer to earth. +2004-12-11,40.3302778,-73.9819444,Monmouth Beach,NJ,light,3,12 brilliant silver orbs surge from the cloud cover +2004-12-11,39.6416667,-77.7202778,Hagerstown,MD,flash,15,I saw this computer page and know I needed to write in. Every Saturday night my buddies and I make fruit cups and shoot the breeze, us +2004-12-11,39.1433333,-77.2016667,Gaithersburg,MD,other,2,Brilliant green comet or meteor +2004-12-11,38.7508333,-77.4755556,Manassas,VA,light,20,Huge glowing green object in Northern VA. ((NUFORC Note: Possible meteor. PD)) +2004-12-11,39.2902778,-76.6125,Baltimore,MD,fireball,4,Multicolored fireball in west Balitmore City near the county line +2004-12-11,38.9805556,-76.9372222,College Park,MD,fireball,2,Big Green Ball of Light Falling over College Park, MD on December, 11 2004 ((NUFORC Note: Possible meteor. PD)) +2004-12-11,33.2147222,-97.1327778,Denton,TX,triangle,15,Triangle of lights. Very large object west of Denton. Sat still for 10 seconds before fading from view. +2004-12-11,39.6005556,-77.8208333,Williamsport,MD,fireball,6,Green light emmitted from sky in Western Maryland ((NUFORC Note: Possible meteor. PD)) +2004-12-11,32.7252778,-97.3205556,Fort Worth,TX,light,60,Three lights in form of triangle in sky west of Fort Worth disappeared completely. Two were brilliant white & one orange. +2004-12-11,33.4213889,-96.5769444,Van Alstyne,TX,triangle,15,Triangular formation of lights seen in the western sky above Van Alstyne, Texas fade away into the ether. +2004-12-11,33.4213889,-96.5769444,Van Alstyne,TX,triangle,20,Triangular 3-light formation with "dimmer switch" +2004-12-11,33.1383333,-96.1105556,Greenville,TX,triangle,20,Triangle shaped lights slowly fade out and disappear. +2004-12-11,36.2805556,-80.3594444,King,NC,unknown,5,December ཀ - Bright meteor in NW North Carolina ((NUFORC Note: Possible meteor. PD)) +2005-12-11,41.85,-87.65,Chicago,IL,unknown,180,Spinning flat objects +2005-12-11,37.775,-122.4183333,San Francisco,CA,fireball,40,flew like no other, a fireball in the sky u can say.. +2005-12-11,38.0280556,-121.8836111,Pittsburg,CA,circle,600,IT WAS SEEN FLYING IN THE CLOUDS WHILE IN THE BACKYARD OF SOMEONES HOME THEN WE FOLLOWED IT TO THE FRONT YARD. AS WE WATCHED THE CRAFT +2006-12-11,41.8091667,-83.825,Riga,MI,other,600,We saw pyramid shaped objects in the sky. +2006-12-11,39.9611111,-82.9988889,Columbus,OH,cone,120,Two fat weiner-shaped objects traveling north-north-west. Maintained wide distance apart. Wind at near-by Bolton Field SE at 4 mph. Alt +2006-12-11,32.7252778,-114.6236111,Yuma,AZ,disk,3600,Disc object over Yuma, AZ and BIG red object seen from airplane. +2006-12-11,37.1330556,-113.6533333,Santa Clara,UT,circle,3,green ball of light streaking across the night sky +2006-12-11,48.1702778,-111.9452778,Conrad,MT,changing,1350,Two sightings, one occasion had three objects. shape changing. +2006-12-11,32.7152778,-117.1563889,San Diego,CA,light,2,white light +2006-12-11,32.7152778,-117.1563889,San Diego,CA,light,2,white light zips by silently +2006-12-11,40.3561111,-80.1102778,Bridgeville (Near Pittsburgh),PA,triangle,60,UFO flying above Bridgeville and Scott Twp, Pa +2006-12-11,43.3044444,-70.9761111,Rochester,NH,oval,4,Blue oval Light shoots threw sky +2007-12-11,39.7286111,-121.8363889,Chico,CA,fireball,15,I noticed a blue, smoking fireball fall from the sky. It had a smoke trail behind it. It disapeared befor it hit the ground. +2007-12-11,41.2294444,-73.9875,Stony Point,NY,disk,10,White disc object above Indian Point Nuclear Plant +2007-12-11,33.7455556,-117.8669444,Santa Ana,CA,light,180,Birght light being followed by helicopter slowly. +2007-12-11,30.4380556,-84.2808333,Tallahassee,FL,triangle,180,Strange lights overhead at dusk, possibly very quiet aircraft in close formation +2007-12-11,34.6991667,-86.7483333,Madison,AL,circle,540,Small , violet-blue, quiet u.f.o. moves and hovers around grocery store parking lot in Madison, Alabama. +2007-12-11,34.6991667,-86.7483333,Madison,AL,disk,300,Disc with 4 blue lights. +2007-12-11,35.5916667,-86.3541667,Bell Buckle,TN,light,60,High-flying light that grew brighter, then dimmer, showing a blinking red light. +2007-12-11,39.6,-75.9416667,North East,MD,unknown,60,((HOAX??)) My dog & I were in the driveway he began to bark wildly at the sky, I looked up to see three large lights/orbs. +2008-12-11,42.2458333,-84.4013889,Jackson,MI,triangle,60,Triangle with 3 white lights, fast moving west to east, no sound clear sky. +2008-12-11,31.3111111,-92.445,Alexandria,LA,circle,240,trail of golden lights in a straight line, lasted for 3-4 minutes in the louisiana sky +2009-12-11,36.8255556,-79.3983333,Chatham,VA,oval,120,Second appearence of oval objects to be seen in the Chatham Va. area +2009-12-11,44.8480556,-93.0425,Inver Grove Heights,MN,fireball,5,Looked like something about to crash. ((NUFORC Note: Possible meteor?? Other reports from MN for same date. PD)) +2009-12-11,33.1580556,-117.3497222,Carlsbad,CA,light,120,This UFO displayed a bright blue light when flying to the left and a bright red light when flying to the right, moved fast and circled. +2009-12-11,35.9152778,-82.0647222,Spruce Pine,NC,cylinder,30,Fast, silent, low flying cylinder in Blue Ridge Mtns of North Carolina +2009-12-11,30.4505556,-91.1544444,Baton Rouge,LA,light,360,Stranges Lights Around Baton Rouge River Center 12/11/09 +2009-12-11,42.3383333,-83.8886111,Dexter,MI,other,600,12/11/09 Dexter, Michigan 20:00 hr 4 lg brightly lit objects moved E to W across the N. horizen, NO SOUND able to turn instantaneously +2009-12-11,32.525,-93.75,Shreveport,LA,unknown,420,Small orange-white flickering light. +2009-12-11,39.7663889,-75.1447222,Sewell,NJ,light,30,Four lights next to one another flew acrossed the sky in a straight line. +2009-12-11,39.0838889,-77.1530556,Rockville,MD,triangle,7,6 orange colored triangular shaped craft moving at extream high speed and ultra high altitude +2009-12-11,44.9483333,-93.3477778,St. Louis Park,MN,oval,7,aqua/green bright oval shaped light, stop then blast off FAST +2010-12-11,39.2966667,-75.1769444,Newport,NJ,sphere,15,Bright lime green orb that appeared, hovered, and then quickly shot downward leaving green trail. +2010-12-11,27.4463889,-80.3258333,Ft. Pierce,FL,fireball,3,Red ball travels straight down and turns to green glow. +2010-12-11,33.4936111,-117.1475,Temecula,CA,cone,3600,Bright shape changing with colors on and off single object. ((NUFORC Note: Sighting of Venus. PD)) +2010-12-11,40.7355556,-74.1727778,Newark,NJ,other,15,it flew as if it was a jelly fish..but in the sky +2010-12-11,43.495,-72.0338889,Springfield,NH,triangle,120,Three white lights seen over I-91 in Springfield, NH +2010-12-11,27.2541667,-80.23,Jensen Beach,FL,light,120,V-shaped formation of red lights hovering in the night sky. +2010-12-11,35.0844444,-106.6505556,Albuquerque,NM,oval,120,Low in the ski with colored light then turned into big bright light moving towards me and then zipped across the ski. +2010-12-11,26.2708333,-80.2708333,Coral Springs,FL,light,25,Orange lights traveling Eastward from the Everglades over Northwest Broward County +2011-12-11,39.7944444,-87.3958333,Highland,IN,unknown,7200,Bright lights in the sky hovering for over hours. ((NUFORC Note: We suspect a star or planet. Probably not a genuine UFO. PD)) +2011-12-11,37.8227778,-121.2755556,Lathrop,CA,oval,300,Strange Star viewed under cloud cover... +2011-12-11,43.5008333,-70.4433333,Saco,ME,formation,600,The family packed up to see the tradition light in our area. I download my iPhone photos and to see my surprise I saw a cluster of 3 wh +2011-12-11,40.1811111,-74.6647222,Yardville,NJ,oval,60,Very fast moving orange oval shaped object +2011-12-11,41.5002778,-85.8280556,New Paris,IN,sphere,10,I saw what looked like to be two super bright huge stars fly towards each other, then circle & collide with each other VERY fast. +2011-12-11,41.5002778,-85.8280556,New Paris,IN,sphere,15,Two big white balls of light flying at high speeds at each other then spun around each other really fast. +2011-12-11,33.3427778,-118.3269444,Avalon,CA,light,10,It was a small bright light like a falling star but much larger than I have ever seen. +2011-12-11,36.4011111,-93.7377778,Eureka Springs,AR,light,300,8 Orange Lights moved South to North at a steady speed. +2011-12-11,38.8119444,-94.5316667,Belton,MO,light,120,Orange Light Seen Over Belton Neighborhood +2011-12-11,38.895,-77.0366667,Washington,DC,cylinder,4,Luminous object thought to be a star? +2011-12-11,41.2413889,-88.4194444,Mazon,IL,light,2,Bright green light shoots through sky before making sharp turn +2011-12-12,34.0336111,-117.0422222,Yucaipa,CA,light,90,Hovering red light dropping white objects +2012-12-11,44.4686111,-71.1855556,Berlin,NH,light,10,Bright light disconected our phones Berlin Nh. +2012-12-11,47.6733333,-117.2383333,Spokane Valley,WA,egg,600,Objects light up the sky like daylight before disappearing. +2012-12-11,40.7719444,-80.7683333,Lisbon,OH,sphere,3600,Glowing orb seen 3 days in a row in Ohio. +2012-12-11,35.7972222,-82.6841667,Marshall,NC,flash,10800,A steady heart beating strobe light filled the entire pre daybreak overcast cloudy sky that only faded with dawn. +2012-12-11,35.1186111,-120.5897222,Arroyo Grande,CA,triangle,45,((HOAX??)) I witnessed a craft flying over my house around 10:30at night . I called my friend told her what i had seen and she. +2012-12-11,40.7608333,-111.8902778,Salt Lake City,UT,flash,10,We saw the flash and we expected a loud explotion but there was nothing. +2012-12-11,38.5816667,-121.4933333,Sacramento,CA,changing,7200,Car dealership confused on what they all saw floating in the sky for 2 hours. +2012-12-11,42.2833333,-71.35,Natick,MA,circle,120,Silver orb hovering over town common. +2012-12-11,43.1880556,-97.8383333,Kaylor,SD,light,120,We were driving to Scotland, when I noticed 2 bright lights for about a sec in the northwest of the sky far away that moved fast like. +2012-12-11,38.0280556,-121.8836111,Pittsburg,CA,unknown,20,Small single light with no sound flying low and slow, chaning colors and even direction quickly. +2012-12-11,36.1658333,-86.7844444,Nashville,TN,light,3,Lights in sky. +2012-12-11,34.8697222,-111.7602778,Sedona,AZ,teardrop,15,Loud horseshoe shaped UFO with red, green and white lights that disappeared instantly. +2012-12-11,40.5291667,-74.3163889,Fords,NJ,diamond,300,Black diamond shape object with bright white light in the middle. Hovered for a few minutes and shot straight up into the sky. +2012-12-11,33.1869444,-91.5294444,Sunshine,AR,unknown,180,6 bright white flying objects that flew together in the shape of a triangle. +2013-12-11,47.4736111,-94.88,Bemidji,MN,diamond,900,One large object, one small object, orange green yellow and blue lights. +2013-12-11,61.2180556,-149.9002778,Anchorage,AK,fireball,2,Anchorage meteor ufo Spenard area. +2013-12-11,33.9166667,-117.8991667,Brea,CA,other,180,A small, very bright object was seen racing across the sky at extreme altitude and speed. +2013-12-11,43.2505556,-89.5013889,Dane,WI,formation,30,Stationary lights over field in formation. +2013-12-11,39.5297222,-119.8127778,Reno,NV,oval,1800,Bright Oval object moving slowly over Reno area Early December 2013 +2013-12-11,43.6852778,-71.1172222,West Ossipee,NH,formation,60,Multiple large orange lights form parallel lines in sky. +2013-12-11,43.8788889,-71.2202778,Chocorua,NH,formation,180,Three lights in formation hovered over highway, blinked off and on and moved away quickly. +2013-12-11,42.8666667,-88.3333333,Mukwonago,WI,light,120,Extremely bright light moving slowly then fading out. +2013-12-11,44.1916667,-88.6238889,Larsen,WI,teardrop,900,During a 15 minute episode I witnessed two large lights that were sunset red in color moving from the northeast to southwest. I believe +2013-12-11,42.5466667,-83.2113889,Birmingham,MI,cylinder,4,A cylindrical ship, blue in color, heading accross and down, and then dissapearing. +2013-12-11,44.7538889,-108.7566667,Powell,WY,chevron,10,Bright flashes in north sky... +2013-12-11,35.6527778,-97.4777778,Edmond,OK,other,5400,Almost fight been bright starlike crafts and some kind of government aircrafts!!!!! +2013-12-11,34.09,-117.8894444,Covina,CA,oval,90,THIS WAS SO CRAZY I FELT AS IF WE WHERE ABOUT TO BE ATTACKED IF NOT BEING STUDY FOR THE PERFECT ATTACK. +1956-12-01,39.9611111,-82.9988889,Columbus,OH,formation,240,A "V" shape set of lights either on one large, silent aircraft, or 5 different aircraft flying in formation. No noise heard. +1965-12-01,41.7002778,-73.9213889,Poughkeepsie,NY,triangle,300,Early evening encounter at intersection near Arlington High School with object hovering obove interestion, then quickly disappearing. +1970-12-01,40.6975,-74.2636111,Union,NJ,disk,1800,UFO over 5 Points, Union , NJ +1972-12-01,35.0455556,-85.3097222,Chattanooga,TN,circle,1800,Blue Circles & 1 Red Circle float in formation (Alt. 20K to 50K feet) +1972-12-01,44.8261111,-68.6938889,Eddington,ME,circle,60,Black circle dimly lit outside perimeter can stop dead in air +1974-12-01,35.3136111,-83.1766667,Cullowhee,NC,light,300,Dancing Lights over College Campus +1974-12-01,35.3136111,-83.1766667,Cullowhee,NC,sphere,300,In 1974 I was in Walker dorm on the 7th floor where I went to school at Western Carolina University, in the little mountain village of +1975-12-01,28.9886111,-80.9025,Edgewater,FL,fireball,3600,lg glowimg ball Florida 1975 S. of Edgewater after midnight maybe around 2:00 for an hr. jit looked floating ground level +1975-12-01,34.0983333,-118.3258333,Hollywood,CA,disk,60,Classic Saucer over Hollywood at Christmas Season 1975 +1975-12-01,38.2541667,-85.7594444,Louisville,KY,fireball,240,bright orange ,very high in space,going from south to the north--going a a fast speed! +1978-12-01,41.9452778,-74.9133333,Rockland County,NY,unknown,900,Dream of alien attack with "stun" tripod +1979-12-01,34.1513889,-89.6313889,Water Valley,MS,cigar,20,the strange object in the sky that I do not talk about but will always remember +1980-01-21,34.0522222,-118.2427778,Los Angeles,CA,diamond,120,Spinning metallic diamonds over Super Bowl +1980-12-01,35.925,-86.8688889,Franklin (5 Miles South Of),TN,rectangle,180,Close encounter/Franklin Tn. +1980-12-01,36.9786111,-76.4283333,Newport News,VA,disk,60,I could see directly into the craft because lights were ON inside. +1980-12-01,37.2397222,-96.9952778,Winfield,KS,light,30,A brief and disturbing encounter on the way to town some years ago. +1981-01-21,32.64,-117.0833333,Chula Vista,CA,other,300,Blimp shaped craft floating over I805 January 21, 1981, 5pm. +1981-12-01,35.0844444,-106.6505556,Albuquerque,NM,rectangle,600,Rectangular, checkmark shaped craft in NM near Albu. in Dec. 1981 +1981-12-01,28.5380556,-81.3794444,Orlando,FL,light,900,17 lights that appeared they were playing tag in the night sky. +1982-12-01,34.0902778,-96.7713889,Madill,OK,fireball,1800,Hwy 99, Madill Oklahoma toward Hwy 377 toward Texas state line +1983-12-01,43.073055600000004,-89.4011111,Madison,WI,unknown,150,Object moving slowly down a row of homes. Crossed boulevard and disappeared over warehouse. drove under it thinking it a police helicop +1984-12-01,32.3666667,-86.3,Montgomery,AL,fireball,2,Southeast toward Northwest, low, large, lighting up sky,red, with a tail which split off behind. May have entered Florida, crossed +1984-01-21,48.3077778,-112.2488889,Valier,MT,light,180,10-15 lights were seen in the sky south of Valier, MT +1986-12-01,29.1869444,-82.1402778,Ocala,FL,rectangle,600,rectangular, transparent, huge object with points of red lights at each intersection moving slowing and low through the night sky. +1989-12-01,29.4236111,-95.2438889,Alvin,TX,sphere,180,Big chrome balls +1989-12-01,39.0997222,-94.5783333,Kansas City,MO,other,300,On a december night head lights approached us. Then shot into the sky. +1989-12-01,30.5402778,-88.6875,Vancleave,MS,triangle,60,Triangle lights hover over pond +1989-12-01,36.0544444,-112.1386111,Grand Canyon (North Rim),AZ,formation,1800,Three positioned lights brightly moving slowly east over south rim of the Grand Canyon almost dark. +1989-12-01,39.0911111,-94.4152778,Independence,MO,triangle,180,Observed black triangular object with lights at points heades SSE at treetop level. +1991-12-01,41.0988889,-81.6447222,Copley,OH,light,10800,Rearview Lights +1993-12-01,42.8005556,-71.3047222,Windham,NH,other,60,Lights inside a cloud-like covering over a pond. 500 Lights On Object0: Yes +1993-12-01,32.7355556,-97.1077778,Arlington,TX,oval,600,Enormous UFO Arlington, Texas +1995-12-01,42.9977778,-84.1766667,Owosso,MI,light,5,Pilot, former FAA controller, sees 5 "pinkish" small lights in clear area of sky, arranged in precise staggered-V formation, streak. +1996-12-01,47.6063889,-122.3308333,Seattle (West),WA,triangle,120,My dad and I saw a UFO at night when we where looking at the stars. +1996-12-01,38.9516667,-92.3338889,Columbia,MO,light,600,Little ship circling Big ship. Over eastern,Columbia MO.Dember first I was traveling eastbound on Clark LN. When I noticed a bright +1997-12-01,41.7,-71.4166667,Warwick,RI,circle,3600,I was watching Deep Space Nine which airs at 12pm when a unusual bright object caught my eye I quickly got up and looked out my front w +1997-12-01,41.7858333,-88.1472222,Naperville,IL,oval,900,I was retiring for the nite and got into bed in my darkened bedroom and as I turned my head toward the two windows to my left that I co +1997-12-01,37.775,-122.4183333,San Francisco (Observed From),CA,other,20,Large sphere and cylinder space junk reentering atmosphere southeasterly of San Francisco probably in Central Valley or Nevada. +1997-01-21,36.8044444,-97.2825,Blackwell,OK,triangle,600,A gold triangular shaped object with a red "tail" was seen hovering in the air west southwest of Blackwell, OK. It hovered for at leas +1997-12-01,36.9741667,-122.0297222,Santa Cruz,CA,triangle,300,It was night and I saw large lights coming toward my house in Santa Cruz California. I was standing outside in my driveway when I saw +1997-12-01,37.3394444,-121.8938889,San Jose,CA,triangle,180,It was a clear starlit night when I noticed an object in the south-eastern sky. At a distance I assumed it was an airplane on the flig +1997-12-01,40.4780556,-85.9666667,Greentown,IN,cigar,20,Orange cigar shaped object +1997-12-01,40.9444444,-74.0758333,Paramus (Souh Of),NJ,fireball,120,Large white fireball over New York City +1998-12-01,26.625,-81.625,Lehigh Acres,FL,flash,2,wHITE STREAK AS IF A METEOR EXCEPT WENT FROM GROUND ELEVATION TO A 45 DEGREE ELEVATION CROSSED IN FRONT OF A AIRLINER WHICH HAD JUST TA +1998-12-01,44.7630556,-85.6205556,Traverse City (M-72 West Outside),MI,fireball,20,A flaming ball according to my dad and what I saw was a flash through the clouds. +1998-12-01,39.0263889,-122.7319444,Glenhaven,CA,cross,6,4 objects flying in close formation in a southwest direction at high speed, low altitude, making no sound accept the wind passing by th +1998-12-01,38.4730556,-77.9969444,Culpeper,VA,oval,300,While on patrol. Noticed an eye ball shaped object. that was very bright in the sky. +1998-12-01,40.0427778,-86.1275,Westfield (5 Miles North Of),IN,fireball,12,This was observed while driviing north on US 31. Object flying WNW from ESE app. 500 ft. alt., at 4-500 mph. Medium brightness yellowi +1998-01-21,35.3847222,-77.9930556,Goldsboro (North Of),NC,formation,600,strange lights in NC +1999-12-01,29.6908333,-95.2088889,Pasadena (Outside Houston),TX,flash,4,a very large bright flash that moved to the right very fast than got smaler then disapered. it was about 150 yards in the sky. +1999-12-01,46.2511111,-119.9005556,Grandview,WA,formation,300,Two groups of lights in formation +1999-12-01,38.9516667,-92.3338889,Columbia,MO,triangle,300,i saw 3 very bright lights coming toward us at very fast rate of speed. they were coming out of the south when it slowed down and dropp +1999-12-01,38.9516667,-92.3338889,Columbia,MO,triangle,300,Visiting with friends when I looked out the patio door and saw an unusually bright light coming from the west. +1999-12-01,43.073055600000004,-89.4011111,Madison,WI,formation,10,We saw 3 lights, as bright as stars in the city, move due south. They seemed to be 1000's of feet above us and moving quite fast. The v +1999-12-01,36.3547222,-79.6647222,Reidsville,NC,disk,600,i was trying to sleep and.... +2000-12-01,22.2119444,-159.4122222,Kilauea,HI,fireball,5,I witnessed a large blue-colored firefall with orange tail falling from the sky at a 35 degree angle, duration 5 seconds. +2000-12-01,22.2119444,-159.4122222,Kilauea,HI,fireball,10,As I lay conscious but half asleep with my eyes closed, I perceived an intensely bright bluish light illuminating the entire sky. It w +2000-12-01,21.9219444,-159.5094444,Lawai,HI,flash,2,Only witnessed A bright 2 second flash of light from inside the house and the house shook about 20-30 second thereafter. +2000-12-01,21.9219444,-159.5094444,Lawai,HI,unknown,300,An extremely bright light which flashed and a delayed rattling of home windows. +2000-12-01,21.9219444,-159.5094444,Lawai,HI,light,5,A bright light/flash with an explosion. +2000-12-01,42.9275,-83.63,Grand Blanc,MI,triangle,240,I have seen the same black/dark triangle shaped plane/ufo at a standstill at least 3 different times throughout the past 3-4 years. Th +2000-01-21,48.4111111,-114.3366667,Whitefish,MT,fireball,600,we witnessed a large ball of light decending from the sky. it had 2 streamers of bright fire trailing from the back. judging from the s +2000-12-01,48.1127778,-98.8647222,Devils Lake,ND,diamond,300,zig-zag moving craft, with four white lights, at a great speed +2000-01-21,42.1816667,-87.8002778,Highland Park,IL,unknown,60,I was driving with my daughter. I saw this fast moving object come from the behind the moon. I told my daughter,(she's 16), to look a +2000-12-01,41.6833333,-86.25,South Bend,IN,light,5,saw light/western sky/thought it was planet/mars?(red hue on white)/no movement/observed for four five seconds/looked away/back-gone +2000-12-01,41.4766667,-95.3377778,Avoca,IA,light,120,AT ABOUT 20:23 ON 1 DEC. 2000 (I BELEIVE) I was driving westbound in an 18 wheeler on I-80 at mile marker 60, near Avoca Iowa, when I +2000-12-01,28.7027778,-81.3386111,Longwood,FL,triangle,600,A bright, triangular series of white lights, which rose slowly, then suddenly accelerated and was gone. +2001-01-21,45.5236111,-122.675,Portland,OR,other,3,I saw a very low-flying and large craft without lights or sound in a northerly direction. +2001-12-01,20.8947222,-156.47,Kahului,HI,disk,7200,Bright Star or Planet when magnified turns out to be metallic saucer shaped object. +2001-01-21,27.7705556,-82.6794444,St. Petersburg,FL,changing,5,This is not an untrue personal statement as I witnessed what I believe to be an intelligent subset of life. +2001-12-01,34.0738889,-117.3127778,Colton,CA,formation,300,Sighting in Colton, CA +2001-12-01,41.7469444,-88.0502778,Woodridge,IL,triangle,120,Three large red lights, two rotating about each other, no sound, within 200 feet of tree line, moving slowly +2001-12-01,39.0997222,-94.5783333,Kansas City,MO,diamond,120,bright ufos travel arcoss sky at night, they broke into 30 brights globes. +2001-01-21,34.0522222,-118.2427778,Los Angeles,CA,triangle,20,Unidentified Craft Hovering Over Los Angeles Freeway +2001-12-01,38.9716667,-95.235,Lawrence,KS,formation,120,a huge flotilla of 50-200 glowing objects moving in formation +2001-01-21,40.6686111,-74.1147222,Bayonne,NJ,unknown,1800,Bright Light Over New Jersey +2001-12-01,32.8994444,-105.9597222,Alamogordo,NM,triangle,600,Witnessed a large object with lights, changing size, pausing in front of me, changing direction, then going down behind a mountain. +2001-12-01,32.77,-108.2797222,Silver City,NM,triangle,60,Trangular shaped translucent object with lights +2001-12-01,35.0844444,-106.6505556,Albuquerque,NM,fireball,600,5 blue-white spheres w/bright, glowing trails, traveling slowly from south to north over Albuquerque, 9:20 pm, 12/01/01 +2001-12-01,39.5186111,-104.7608333,Parker (Se Of),CO,formation,45,(please note - I don't believe in UFO's in the usual context of alian craft) My wife and I saw 2 bright lights traveling parallel to ea +2001-12-01,38.8338889,-104.8208333,Colorado Springs (Monument),CO,cylinder,540,GLOWING CIGAR/CYLINDER,SHAPED.THE SIZE OF A STRIP MALL X THREE!ALL TRAVELING IN-LINE!! +2001-12-01,35.6941667,-97.0630556,Wellston (Near To),OK,other,300,close stationary cluster of lights; strobes,solid,and beams,with No solid object noted. +2001-12-01,39.3508333,-101.7097222,Goodland (@10 Miles East Of),KS,unknown,120,Lights over I-70 in Western Kansas +2001-12-01,38.7183333,-95.0813889,Wellsville,KS,fireball,4,Unknown, big, spectacular explosion over Wellsville , KS. DEC 1, 2001. +2001-12-01,34.5525,-77.3975,Sneads Ferry,NC,disk,86400,Hello there I am 14 years old and I believe in UFO'S and Aliens.On December 2001 I was in my room and I started hearing some kind of no +2001-12-01,31.7586111,-106.4863889,El Paso (Outside),TX,rectangle,600,Observed a massive rectangular silent object with glowing red spears on either side about 150 ft off the ground for ten minutes +2001-12-01,38.9716667,-95.235,Lawrence,KS,formation,90,A formation of approx. 11 lights +2001-12-01,38.8813889,-94.8188889,Olathe,KS,other,180,Streaking, Slashing, formation of lights going slowly across sky +2001-12-01,36.1397222,-96.1086111,Sand Springs,OK,formation,300,Single light becomes multiple sustained lights moving from South to North across Northeast Oklahoma Sky. +2001-12-01,36.3919444,-94.8827778,Eucha,OK,formation,45,String of firey lights in formation moving across the NE corner of Okla. +2001-12-01,40.925,-98.3416667,Grand Island,NE,fireball,300,Fireballs in Sky +2001-12-01,32.6958333,-97.6019444,Aledo,TX,formation,60,Three craft, with red and white "tails", slower and larger than shooting strars were seen moving fron SW to Northeast. +2001-12-01,38.8813889,-94.8188889,Olathe,KS,light,180,Streaking firework-type lights going south to north over western Olathe KS +2001-12-01,34.9802778,-101.9183333,Canyon (Outside Of),TX,formation,240,the lights were traveling from the west side of canyon, tx. it looked like a an airplane taking off and being attacked by other small a +2001-12-01,30.8483333,-93.7572222,Newton,TX,fireball,3,Bright object appeared to be burning up in atmosphere as in re-entry. +2001-12-01,30.71,-101.2002778,Ozona,TX,cone,120,slow moving groups of lights with tails moving in cone shaped formation from west to east at a low altitude. +2001-12-01,32.948055600000004,-96.7294444,Richardson,TX,fireball,60,This encounter consisted of a brief sighting of several fireballs and related streaks seemingly flying in formation. +2001-12-01,43.0797222,-96.1752778,Sioux Center,IA,unknown,60,I WAS WATCHING TV WHEN I NOTICE 2 OBJECTS WITH BLUEISH@RED LIGHTS COMEING OVER THE ROOF OUTLINES OF THE HOUSES JUST SOUTH OF MY HOUSE. +2001-12-01,37.6922222,-97.3372222,Wichita,KS,formation,180,Formation of 18 to 20 bright objects leaving contrails in Wichita Kansas +2001-12-01,37.2397222,-96.9952778,Winfield,KS,cylinder,180,We saw an object made up of streaming light that was approximately 1 1/2 miles long that made no sound. +2001-12-01,42.5988889,-97.6452778,Bloomfield,NE,fireball,60,Looked like about ten pieces space junk reentering from the south heading east. +2001-12-01,39.0997222,-94.5783333,Kansas City,MO,other,60,Large area of bright objects with falling across the atmosphere from Southwest to Northeast in Missouri above Kansas City +2001-12-01,44.3236111,-93.9577778,St. Peter,MN,light,15,object with trail behind it slowly moves across sky to north and then abruptly shoots off in its continuing direction to the north. +2001-12-01,38.9716667,-95.235,Lawrence,KS,light,180,8 to 10 lights moving across the sky followed by streams of light of changing color +2001-12-01,35.5322222,-97.9547222,El Reno,OK,formation,300,One large cigar-shaped craft surrounded by hundreds of smammer crafts all with long trails. +2001-12-01,33.3491667,-95.3058333,Eureka,TX,fireball,10,Two lights w/firetail changed direction in sky at high rate of speed. +2001-12-01,39.2333333,-84.1613889,Goshen,OH,unknown,1800,Dark object flying around sky. +2001-12-01,35.9986111,-96.1138889,Sapulpa,OK,formation,120,At least 14 lights followed by an orange tail flew across the sky last night in formaiton, emitting no sound. UFOS? +2001-12-01,36.1880556,-94.5402778,Siloam Springs,AR,circle,5,11/01/2001-10:45pm Two blue green light trailed by fire or light, travelling north. +2001-12-01,32.7591667,-97.7969444,Weatherford,TX,formation,30,Serveral blue lights with long contrails travelling for 30 seconds from south to north in the western sky as viewed from Weatherford TX +2001-12-01,32.2502778,-101.4783333,Big Spring,TX,other,30,bright lights stream across sky and leave a bright orange tail then slowly fade out. +2001-12-01,40.4036111,-73.9919444,Highlands,NJ,circle,900,several strange lights and crafts over the Atlantic Ocean, red in color that bounced up and down. +2001-12-01,35.4675,-97.5161111,Oklahoma City,OK,formation,120,5 lights with orange trails +2002-12-01,47.7425,-121.9844444,Duvall,WA,other,900,Unexplained crescent-shaped objects seen in Southeast sky in the Pacific Northwest, 12/1/02, 4:30AM +2002-12-01,45.8191667,-122.8477778,Warren,OR,sphere,900,A bright glowing light changing from red, green, blue to white. Moved in different directions. Then was gone. +2002-01-21,39.1619444,-84.4569444,Cincinnati,OH,cigar,900,I was watching the moon from my daughter's bedroom window, this served as the monitor. My nieces and nephews were assigned an astronomy +2002-12-01,36.175,-115.1363889,Las Vegas,NV,unknown,2700,loud noise comes from cigar shaped cloud hovering over my house +2002-12-01,38.5816667,-121.4933333,Sacramento,CA,cigar,480,Cigar shaped craft high in the sky cruising from the west to the east,with a very loud deep hum. +2002-12-01,32.7763889,-79.9311111,Charleston (Edisto Island Just S.of),SC,teardrop,2,Bright, almost glowing irridecently, tadpole shaped object (oval with a tail) travelling West to East at a high rate of speed crossed a +2002-12-01,40.7141667,-74.0063889,New York City (Manhattan),NY,formation,60,Formation of moving lights over Manhattan +2002-12-01,27.3361111,-82.5308333,Sarasota,FL,sphere,60,Crome object seen on Siesta Key Beach, FL and Pic. +2002-01-21,32.3880556,-98.9788889,Cisco (Just Before),TX,circle,2,A red light hovered and vanished in the sky just outside of Cisco, TX at aprox. 6:55 pm. +2002-01-21,43.0947222,-71.7311111,Weare,NH,disk,2,NH Sighting - 01/21/2002 - 7:05 PM +2002-12-01,38.7891667,-77.1875,Springfield,VA,unknown,4,Bright Pale Blue Flash - No Sound - Street Lights Went Out +2002-12-01,41.0233333,-74.0669444,Woodcliff Lake,NJ,disk,10,The object flew very low to the ground, while watching it outside from hottub. +2002-01-21,38.9516667,-92.3338889,Columbia,MO,unknown,180,Stationary lights suddenly moved rapidly; stopped, moved again at a moderate pace +2002-01-21,45.8994444,-108.3008333,Huntley,MT,rectangle,3600,My friends and I were walking around town when I looked into the sky and saw the 3 rectangle crafts flying through the air one shot a w +2002-12-01,33.9172222,-102.3244444,Littlefield,TX,rectangle,900,Unidentified flying object @ least 300 yards long passes over Littlefield Tx. +2002-01-21,35.705,-89.9694444,Osceola,AR,fireball,480,Several objects seen in north sky. +2002-01-21,47.6816667,-122.2075,Kirkland,WA,circle,5,A circular ball of extremely bright white and red light was sighted moving from southeast to northwest at a rapid rate of speed. Objec +2003-12-01,36.3008333,-119.7819444,Lemoore,CA,light,600,Bright red light , moving upwards and at crazy angles +2003-12-01,46.8791667,-102.7891667,Dickinson,ND,triangle,10,Triangular UFO with lights on the exterior +2003-12-01,42.7244444,-83.0361111,Washington,MI,changing,7200,Observed for two hours a bright white light, with two chevrons of bright white light on one side move erratically in the sky. +2003-12-01,37.3394444,-121.8938889,San Jose,CA,other,180,Bright object seen in sky while driving to work. Shaped like an upside U. +2003-12-01,33.3527778,-111.7883333,Gilbert,AZ,circle,900,bright red circle almost like a flare but can stop and turn opposite direction can travel for miles then dissapears. +2003-01-21,41.7588889,-70.4944444,Sandwich,MA,oval,180,Strange white craft appears to go out of focus as if trying to engage faulty cloaking devise.... +2003-12-01,39.9547222,-82.8122222,Reynoldsburg,OH,cylinder,60,Cylinder shaped object moving east appearing behind jet contrails, reflecting daylight inconsistently. +2003-12-01,39.9091667,-74.1552778,Bayville,NJ,fireball,900,It was 3 huge fireballs.And it landed by my house +2003-01-21,40.7355556,-74.1727778,Newark,NJ,fireball,900,Five shifting fire ball objects heading west from New Jersey +2003-12-01,43.0388889,-87.9063889,Milwaukee,WI,light,3,Large, bright star-like object with no tail traverses the sky east to west; seen through city lights +2003-12-01,33.4222222,-111.8219444,Mesa,AZ,fireball,5,Bright red light east of Mesa. +2003-12-01,44.5236111,-89.5744444,Stevens Point,WI,light,600,Goldish orange light in the southeast sky. +2003-01-21,40.1108333,-77.0352778,Dillsburg,PA,formation,60,Formation of lights in a < shape that where visible for several minutes and then suddenly disappeared. +2003-01-21,47.1041667,-122.4333333,Spanaway,WA,diamond,600,Unidentified Flying Diamond shaped object with several red and amber colored lights on it no green wing light on left +2003-12-01,39.2902778,-76.6125,Baltimore,MD,chevron,2,I was walking back to my car at this time, as i work at a model shop in downtown Baltimore. I had parked on the uppermost roof level of +2003-12-01,41.3966667,-73.0763889,Seymour,CT,other,1800,At appoxiamately 10:15 I had stepped out on my back porch to smoke a cigarette. It was a very cold but clear night. I live at a high el +2004-12-01,33.9533333,-117.3952778,Riverside,CA,disk,2400,Floursent green "stars" that actually fly in the skies over So. Cal. +2004-12-01,33.0197222,-96.6986111,Plano,TX,fireball,2,Bright blue fireball of unusual size and distance; possible investigation. +2004-12-01,47.6063889,-122.3308333,Seattle,WA,cylinder,600,heading north to south, was a strobe light,dissapeared in clouds. +2004-01-21,32.9311111,-96.4594444,Rockwall,TX,other,120,January 2004 , two sigtings, 3 objects 9 ( correction 1st date was actually wrong) seen on 21st and 23rd +2004-01-21,36.175,-115.1363889,Las Vegas,NV,disk,180,We took photos of New York N.Y. Hotel, upon developing photo, disc shaped object appeared in picture. +2004-01-21,41.7019444,-72.3016667,Columbia,CT,cylinder,5,Missle seen heading South, over Connecticut, on a clear bright day. 8:35 am. +2004-12-01,40.0991667,-83.1141667,Dublin,OH,egg,5400,egg shaped craft +2004-01-21,43.3666667,-124.2166667,Coos Bay,OR,disk,37800,Three lighted objects over ocean ,big object blinked and manuvered: Other 2 stationary. +2004-01-21,45.4944444,-122.8658333,Aloha,OR,circle,180,This was no sattelite! +2004-01-21,40.4005556,-123.9488889,Redcrest,CA,light,2700,We live in Northern Californa in the small town of Recrest around 50 miles south of Eureka. My friend who was outside smoking a ciggare +2004-12-01,38.805,-87.4580556,Emison,IN,sphere,300,Yellow-Orange Lights in sky - Emison, Indiana +2004-01-21,39.4097222,-123.3544444,Willits,CA,fireball,30,bright fireball changing and flashing colors red to white to yellow to orange hovering for 30 minutes and then vanishing +2004-01-21,39.4097222,-123.3544444,Willits,CA,fireball,45,video footage of fireball and inside interior which contains a solid shaped craft moving and hovering +2004-01-21,39.4097222,-123.3544444,Willits,CA,fireball,45,video freeze framing reveals fireball turning into a rod of 11 connected smaller light balls and then going back into a fireball shape +2004-01-21,45.4077778,-122.5691667,Clackamas,OR,cylinder,120,7-9 Amber colored, zig-zag patern. I CANNOT be the only one that saw these! I took pix too. +2004-12-01,40.8,-96.6666667,Lincoln,NE,fireball,3,Massive fireball over Lincoln, Nebraska. +2004-12-01,33.015,-96.5386111,Wylie,TX,triangle,300,Pyramid-shaped craft with pulsating light seen emitting red flare. +2004-12-01,48.5052778,-111.8561111,Shelby,MT,fireball,5,fireball/meteor +2004-01-21,32.77,-108.2797222,Silver City,NM,fireball,120,Something explodes in the skies over Silver City, New Mexico +2005-12-01,34.0658333,-84.6769444,Acworth,GA,sphere,180,egg-shaped light blue object, fast speed and sphere-like camoflauged object, moving slow. +2005-12-01,37.9886111,-84.4777778,Lexington,KY,chevron,600,Lights over Lexington KY in a "V" shape formation. Heading North. +2005-12-01,32.2094444,-99.7963889,Tuscola,TX,light,600,Saw something, not sure exactly what it was ..but i'll tell you now it definately wasnt Venus or Mars ..I saw both the planets while I +2005-12-01,34.8297222,-82.6016667,Easley,SC,triangle,18000,Hovering triangle shaped aircraft that the military DID see no matter what they report to the public. +2005-01-21,29.1869444,-82.1402778,Ocala,FL,changing,600,Morphing white UFO +2005-12-01,34.0141667,-86.0066667,Gadsden (South Side Of),AL,other,37800,A ILLUMINATING LIGHT SHOW, WITH BLUE SPHERES, AND ONE BRIGHT LARGE TRIANLED LT. +2005-01-21,32.8580556,-113.2125,Sentinel,AZ,teardrop,300,saw space ship for 5 min! Got scared crapless!!!!!!!!!!!!!!!! happened in arizona +2005-12-01,39.0597222,-94.8833333,Bonner Springs,KS,light,600,Bright light about 10 miles North of Bonner Springs Kansas. +2005-01-21,41.865,-80.79,Ashtabula,OH,other,180,Star-Shaped Object With a Series of Lights +2005-01-21,34.426944399999996,-77.5463889,Surf City,NC,changing,60,Pulsing multicolored lights which appeared to outline a relatively large craft or crafts at low altitude at Topsail Island. +2005-12-01,32.7558333,-111.6702778,Arizona City,AZ,circle,1200,DURING THE MONTH OF DECEMBER, 2006, ON THREE CONSECUTIVE NIGHTS, I WITNESSED TWO BRIGHT ORANGE BALLS HOVERING IN THE SKY ABOVE ARIZONA +2005-12-01,30.4380556,-84.2808333,Tallahassee,FL,cigar,600,Large & close up viewing by 3 people of a cigar shaped object with 2 bright red glowing orbs at each end. +2005-12-01,35.6527778,-97.4777778,Edmond,OK,unknown,37800,3 motionless objects w/ blinking lights +2006-01-21,39.8208333,-84.0194444,Fairborn,OH,unknown,86400,3 foot humaniod on back porch, 10 foot or so dark metal triangle in woods, talking to a religious pastor. +2006-12-01,33.1580556,-117.3497222,Carlsbad,CA,unknown,1200,Object with rotating red and blue lights hovering over North County San Diego at 1:00 a.m. on December 1, 2006. +2006-12-01,33.9525,-84.55,Marietta,GA,circle,180,flashing blue-green lights in marietta,ga +2006-12-01,37.6086111,-77.3736111,Mechanicsville,VA,triangle,120,This craft covered about ten miles in about 2 or 3 seconds and is something that we don't have the technology to dupicate at this time. +2006-12-01,38.1141667,-82.6033333,Louisa,KY,disk,300,As we were out driving around the camp ground at Boone's Landing we observed an object moving in the sky from east to west while a noth +2006-12-01,32.6208333,-83.6,Warner Robins,GA,cigar,420,Slow-moving, cigar shaped, metallic object disappears +2006-01-21,39.7294444,-104.8313889,Aurora,CO,light,600,Apparent bright sundog, brilliant aqua green, yellow and pale orange +2006-12-01,39.4811111,-76.6441667,Cockeysville,MD,other,3600,v shaped greenlights seen in evening cloudy sky in baltimore +2006-12-01,32.9544444,-97.0147222,Coppell,TX,fireball,60,It looked on fire and left a wide long plume of smoke that ended in my sight. ((NUFORC Note: Student report. PD)) +2006-01-21,39.0236111,-94.6933333,Merriam,KS,other,300,Ax-shaped black and yellow U.F.O. seen over Merriam, Kansas. +2006-01-21,41.8458333,-71.0833333,Berkley,MA,other,10,I was driving north on rt.24 when I noticed what looked light lightning in a cloud formation. I enjoy watching thunderstorm so I am qui +2006-12-01,39.0483333,-95.6777778,Topeka,KS,triangle,6,Double aqua green corner cap lights to narrow triangle, brief sighting - but I know what I saw. +2006-12-01,33.4936111,-117.1475,Temecula,CA,rectangle,10,December 1st, 2006- While walking with a group of people to a Christmas parade, 2 rectangle objects flew by extremely fast! +2006-12-01,37.8044444,-122.2697222,Oakland,CA,disk,300,disk shaped figure with flashing lights in a pattern, at about 7:45pm on december 1st 2006, it hovered for about 5min then disapperared +2006-12-01,35.1494444,-90.0488889,Memphis,TN,other,30,Distant light went from left to right in western sky. Twinkled as it flew and then after a little while maybe ten or twenty seconds it +2006-12-01,38.9413889,-119.7486111,Gardnerville,NV,light,2160,Orange and Red object seen from Gardnerville Nevada 12/01/06. 6 Witnesses in Nevada/California +2006-01-21,33.6216667,-100.8361111,Dickens,TX,other,5,Small football-shaped object travels silently over neighborhood in Dickens, Texas. +2006-01-21,46.5705556,-123.2961111,Pe Ell,WA,unknown,1500,Brilliant blue light hovers and disappears near small forest town +2006-01-22,27.9472222,-82.4586111,Tampa,FL,unknown,1200,Comet like object seen over South Tampa emitting red spheroids. +2007-01-21,47.6816667,-122.2075,Kirkland,WA,oval,600,white lite moving over lake washington making red laser like flashes +2007-12-01,39.7597222,-121.6208333,Paradise,CA,sphere,120,circle of light at low altitude, low speed shot out reddish flourescent tube of light +2007-12-01,42.2538889,-79.5047222,Mayville,NY,teardrop,60,tear shaped ufo with purple trail +2007-12-01,44.1669444,-74.5383333,Tupper Lake,NY,circle,30,Formation of Military jet aircraft in area of larger round reflective object +2007-12-01,32.4608333,-84.9877778,Columbus,GA,formation,10,Like like kite shape object in day time sky, clear day and object did not seem to be moving but was very high up in sky ?? after i saw +2007-12-01,32.4608333,-84.9877778,Columbus,GA,formation,10,look like kite but it was to high up +2007-12-01,21.4022222,-157.7394444,Kailua,HI,changing,172800,Ongoing daily photography of UFO's invisible to naked eyes over Kaneohe, Hawaii . +2007-01-21,37.775,-122.4183333,San Francisco,CA,other,5,Blimp shape with red marking or door on the side? +2007-12-01,42.2538889,-79.5047222,Mayville,NY,teardrop,85,A tear shape object dancing in the air. +2007-12-01,33.9830556,-118.0958333,Pico Rivera,CA,disk,15,This object just smoothly coasted without a sound. +2007-12-01,39.0169444,-94.2813889,Blue Springs,MO,other,60,Being on a floating platform watching me from 25 feet away. +2007-12-01,34.0752778,-84.2941667,Alpharetta,GA,circle,30,alpharetta georgia. bright white light. 25-30 seconds. very far away looked like a star moving then became very bright and moved faste +2007-12-01,27.8002778,-97.3961111,Corpus Christi,TX,light,60,12/01/07 @1825 hrs. over Corpus Christi and Ingleside Texas, bright light at medium altitude , medium speed then dissapeared high speed +2007-01-21,40.3408333,-76.4116667,Lebanon,PA,light,5,Two dim yellow lights moving very quickly +2007-12-01,33.5538889,-117.2130556,Murrieta,CA,cigar,4,IT WAS FASTER THEN ANYTHING I HAVE EVER SEEN AND AS BRIGHT AS A FULL MOON +2007-12-01,41.1827778,-80.7655556,Niles,OH,other,300,To me, the most interesting thing about these orbs has always been their way of moving around, which was instantaneously. +2008-12-01,35.3858333,-94.3983333,Fort Smith,AR,light,3,Bright white light moved from SE horizon to WNW horizon in roughly 2-3 seconds. +2008-01-21,41.5033333,-74.0108333,Newburgh,NY,other,300,Huge object hovering over New York +2008-12-01,33.1433333,-117.1652778,San Marcos,CA,light,10800,Two light objects near where the Moon. ((NUFORC Note: Venus and Jupiter are near Moon. PD)) +2008-12-01,45.8261111,-92.9683333,Pine City,MN,light,10,Two lights north of Pine City, MN moving west. ((NUFORC Note: Venus and Jupiter are near Moon. PD)) +2008-01-21,38.6241667,-82.1647222,Ashton,WV,sphere,180,2 UFOs in rural WV town moving in motions impossible by normal aircraft. +2008-01-21,36.0397222,-114.9811111,Henderson,NV,cone,180,((HOAX??)) Fast moving UFO goes in the direction of Area 51. +2008-01-21,40.3916667,-111.85,Lehi,UT,oval,5,2 blue ovals 1 big blue light shot threw the ovals and a big light came and evrey thing vanished like nothing happend! +2008-01-21,42.1944444,-71.2,Norwood,MA,light,5,bright blue-white light moving to fast and then gone? +2008-12-01,32.9786111,-115.5294444,Brawley,CA,changing,600,3 small ships moved into clockwise and then counter clockwise +2008-01-21,37.6455556,-84.7722222,Danville,KY,other,3600,My wife and I noticed a strange flashing green light in the distance. ((NUFORC Note: We suspect object may have been Sirius. PD)) +2008-12-01,26.6402778,-81.8725,Fort Myers,FL,light,300,Light split into four and one sped acros the sky +2008-12-01,29.6183333,-95.5375,Missouri City,TX,oval,300,there were rapid flashing lights alternating from the left side of the craft to the right side whille being staionery. +2009-01-21,37.8716667,-122.2716667,Berkeley (Moraga),CA,sphere,1200,Unknown Streaks of Lights near Berkeley Hills/Moraga +2009-12-01,33.4222222,-111.8219444,Mesa,AZ,disk,240,Bottle cap shaped UFO with red glow underneath, clearly seen from back yard on December 1st, 2009 . +2009-12-01,39.1652778,-86.5263889,Bloomington,IN,fireball,3,When driving, a moderately large and bright fireball shaped object was seen falling from the sky. +2009-12-01,44.8486111,-123.2327778,Monmouth,OR,disk,180,Four rounded lights were located along the side , along with a luminating bottom on the craft and a rounded top and bottom. +2009-12-01,40.5575,-74.285,Woodbridge,NJ,rectangle,420,2:50AM - Woodbridge, NJ - UFO Spaceship sighting - 5 windows - bright light in windows. +2009-01-21,41.2333333,-80.4488889,Hermitage,PA,other,28800,there were strange vertical horizontal lights in the sky. +2009-12-01,45.6216667,-94.2066667,Sartell,MN,light,600,Appered to be a star for about 10 minutes then it took off like a bat out of _ell. +2009-12-01,25.7738889,-80.1938889,Miami,FL,oval,60,these crafts were not planes. +2009-12-01,70.1319444,-143.6238889,Kaktovik,AK,light,1800,Three lights dancing around each other +2009-01-21,39.6288889,-75.1597222,Monroeville,NJ,other,30,Moving star +2009-01-21,37.9747222,-87.5558333,Evansville,IN,unknown,4,A yellowish light shot through the sky like a meteor but arched and disappeared. +2009-12-01,37.6455556,-91.5358333,Salem,MO,fireball,15,Orange fireball thrusting across rural missouri inbetween cook station and Salem. +2009-12-01,37.5483333,-121.9875,Fremont,CA,triangle,300,Slow rotating triangle with three lights, one on each corner. +2009-01-21,43.1466667,-88.3066667,Merton,WI,light,60,Light in the distance that did not move, or blink, and in the blink of an eye it was gone. +2009-01-21,30.4211111,-87.2169444,Pensacola,FL,circle,3600,saw large bright light in wsw sky as well as 3 reddish orange pulsating orbs in southern sky +2009-12-01,37.6455556,-91.5358333,Salem,MO,fireball,2,three orange fireballs +2009-01-21,36.7477778,-119.7713889,Fresno,CA,rectangle,180,4 unknown flying crafts were following our car and another one hovered over our neighborhood when we got home. +2009-12-01,38.6522222,-85.6252778,Lexington,IN,flash,1200,Flashes followed by white and red lights +2009-12-01,39.6577778,-77.1747222,Taneytown,MD,other,1200,unusual objetcs in the nights sky! +2009-12-01,39.6577778,-77.1747222,Taneytown,MD,other,1200,Unusual objets in the nights sky. +2009-01-21,38.2544444,-104.6086111,Pueblo,CO,sphere,105,3 orange lights seen west of pueblo blvd and arkansas river +2009-01-21,40.8583333,-73.1,Centereach,NY,diamond,90,The object was diamond shaped, and flashed several different colors in a rapid manner. +2009-12-01,41.5894444,-88.0577778,Lockport,IL,light,1200,Bright Lights in SW suburbs of Chicago +2009-01-21,38.5491667,-75.2461111,Dagsboro,DE,changing,1800,7 Obects seen over Southern Delaware. +2009-12-01,27.9011111,-81.5861111,Lake Wales,FL,triangle,120,It initially resembled a large orange light ,but once I got closer, it looked like three orange lights in the shape of a triangle. +2009-12-01,36.7477778,-119.7713889,Fresno,CA,light,180,Lights In fresno form Pentagon by woodward park +2009-01-21,40.5983333,-124.1561111,Fortuna,CA,triangle,180,it was a clear night, me and a friend were outside, i looked up after hearing a large "jet" overhead, i pointed out to my friend that a +2009-12-01,38.2972222,-122.2844444,Napa,CA,light,300,Light observed hovering over Napa and then dropping something before disappearing. +2009-12-01,43.5197222,-85.08,Blanchard,MI,light,3600,They look like stars, but flicker! They accelerate very fast, & brake just the same! Move weird & come in 3's arranged in a triangle +2009-01-21,39.6363889,-74.8027778,Hammonton,NJ,circle,300,3 Circular UFO's seen +2009-01-21,36.1658333,-86.7844444,Nashville,TN,triangle,1800,Large silent object that landed and seemed to hover and make fast turns!! +2010-12-01,31.0558333,-97.4641667,Belton,TX,other,300,Large house size flat white light (similar to Christmas lights on house) just above horizon +2010-01-21,41.2883333,-93.8091667,Saint Charles,IA,other,900,Witness soundless flickering lights moving NE in the clouds above. +2010-12-01,34.7302778,-86.5861111,Huntsville,AL,other,15,My sister and I saw a 747 hovering in the air not moving forward or backward, just sitting still in the air about 1 mile away from the +2010-12-01,37.76,-89.0772222,Carterville,IL,triangle,180,this did NOT fly like a plane as the speed was to fast and stopped to suddenly then seemed to go stait up out to space it was clear +2010-12-01,35.3733333,-119.0177778,Bakersfield,CA,other,3600,A boomerang hovers in the sky over Bakersfield +2010-01-21,43.1547222,-77.6158333,Rochester,NY,circle,2400,"Flying Saucer" surrounded by 8 planes +2010-12-01,48.2413889,-122.3694444,Stanwood,WA,oval,7,Four Ovals looking like Liquid Mercury Cloaking like Clingons in Star Trek +2010-12-01,28.0833333,-80.6083333,Melbourne,FL,chevron,5,V shape craft in Central FL +2010-12-01,37.8772222,-122.1786111,Orinda,CA,triangle,180,Silent, triangle shaped craft, white light tipped, slowly moving over Easy Bay Area hills +2010-12-01,30.1577778,-95.4891667,The Woodlands,TX,sphere,120,two orange lights / spheres moving together across sky, then they danced and left into the stars. amazing +2010-01-21,29.4238889,-98.4933333,San Antonio,TX,sphere,0.5,comet looking object seen on NW side of San Antonio TX at 10:19pm 1/21/10 +2010-01-21,40.8066667,-74.1858333,Bloomfield,NJ,other,300,3 lights sighted not blinking, moving slow, duration 5 min not jet or blimp. +2011-12-01,40.7325,-73.4458333,Farmingdale,NY,light,420,Lights in the sky that came in from the north going south then southeast the +2011-12-01,48.9938889,-122.7458333,Blaine,WA,other,60,I got a feeling to take a picture and when I did I caught a craft entering my yard over the trees. +2011-12-01,47.6816667,-122.2075,Kirkland,WA,triangle,1800,Triangle shaped object with 3 circular lights and beams coming down spotted over Seattle, WA +2011-12-01,31.7605556,-93.0861111,Natchitoches,LA,triangle,5,Triangular aircraft with 3 lights slowly moving over Old Hwy 6 (now Hwy 3132) close to Interstate 49 Natchitoches LA� in a wooded +2011-01-21,36.5222222,-82.7136111,Church Hill,TN,circle,600,Flickericking red and green lights while hovering then quickly flew out of sight. +2011-01-21,42.4222222,-88.6136111,Harvard,IL,other,1800,Northern Illinois 2 lighted objects, one w/multiple bright lights, one spherical lowering in the sky +2011-12-01,37.3636111,-118.3941667,Bishop,CA,other,90,Orange dual sphere that slowed down turned and zig zaged off +2011-12-01,47.4736111,-94.88,Bemidji,MN,circle,120,Red light over bemidji mn slowly moving east +2011-01-21,31.9972222,-102.0775,Midland,TX,formation,150,2 Hovering orange orbs seen late at night. +2011-12-01,35.9938889,-78.8988889,Durham,NC,disk,30,Daylight sighting ufo with 2-4 spikes on top and haze betwean spikes possably spining object +2011-12-01,35.2619444,-81.1875,Gastonia,NC,fireball,1200,Looked like a slow moving object, burning up on entry and had a large orange tail moving south south west. +2011-01-21,41.7,-71.4166667,Warwick,RI,light,10,Blue ball of light arching in the sky in Warwick, Rhode Island +2011-01-21,41.865,-69.9916667,North Eastham,MA,fireball,5,bright green and red fast moving light +2011-01-21,42.15,-71.7633333,Sutton (South Worcester Co.),MA,triangle,10,Triangular craft over Rte 146 +2011-12-01,26.0625,-80.2333333,Davie,FL,circle,120,I was driving East bound on I595 in Davie Florida around 6:00pm December 1, 2011. I saw about 20 lights in the sky. At first I thought +2011-12-01,26.0625,-80.2333333,Davie,FL,circle,600,100 orange orbs traveling slowly and silently southbound, then fading out in Davie, Florida 12-1-11 18:10 Hrs. +2011-01-21,38.2972222,-122.2844444,Napa,CA,triangle,15,Triangle shape with orange white lights moved directly above me while driving. +2011-12-01,33.9133333,-78.3041667,Holden Beach,NC,egg,10800,Saw burst of bright orange lights in the sky over the ocean at holden beach nc 12/1/11 +2011-12-01,38.2541667,-85.7594444,Louisville,KY,light,60,Bright UFO lights over louisville sky +2011-12-01,36.3319444,-94.1183333,Rogers,AR,triangle,1200,Two triangular sets of lights seen over Rogers, Ark +2011-12-01,33.6888889,-78.8869444,Myrtle Beach,SC,formation,600,3 flashing lights changing positions very rapidly in Myrtle Beach, S.C.. +2011-12-01,38.7508333,-77.4755556,Manassas,VA,formation,180,3 lights hovering in Virginia +2011-12-01,33.8302778,-116.5444444,Palm Springs,CA,fireball,15,Six orange balls disappeared then six more over the mountains near chiriaco summit,,, somebody posted a picture on face boo +2011-12-01,38.7933333,-77.2719444,Burke,VA,triangle,60,Large, flat triangular craft with red lights right above the tree line. +2011-12-01,40.7141667,-74.0063889,New York City (Brooklyn),NY,other,30,It was a dark, V or boomerang shaped object with no really defined edges visible against the dark sky. +2012-01-21,33.7669444,-118.1883333,Long Beach,CA,sphere,1200,Orange Sphere dripping &quot;embers&quot; +2012-01-21,37.2752778,-107.8794444,Durango,CO,triangle,10,Strange object seen in Colorado sky +2012-12-01,47.6063889,-122.3308333,Seattle,WA,oval,60,Oval craft seen flying over lake washington towards Seattle. +2012-12-01,41.9902778,-70.9755556,Bridgewater,MA,rectangle,120,See the pics and decide for yourself. +2012-12-01,39.7588889,-84.1916667,Dayton,OH,formation,600,Formation of at least 9 flying vessels flying a unique precise pattern and flight path. Circular/Crown Shaped. +2012-12-01,39.7588889,-84.1916667,Dayton,OH,formation,600,9-12 objects in apparent formation black and firey orange circular on bottom/photos and video captured +2012-01-21,37.775,-122.4183333,San Francisco,CA,light,240,6-8 pinkish-red starlike objects sighted in San Francisco, California sky +2012-12-01,39.1580556,-75.5247222,Dover,DE,triangle,20,Four lights flying in triangle formation. +2012-01-21,28.5555556,-82.4505556,Spring Hill,FL,circle,300,FIRE IN THE SKY +2012-12-01,35.1494444,-90.0488889,Memphis,TN,fireball,40,There was a aura or haze around the fireball with a tail. +2012-12-01,36.8466667,-76.2855556,Norfolk,VA,fireball,300,Noticed 2 bright red lights in the sky. One appeared to be moving towards us and the other seemed to be stationary. The stationary obj +2012-12-01,28.0833333,-80.6083333,Melbourne,FL,fireball,120,Red fireball over my house. +2012-01-21,32.7558333,-111.5541667,Eloy,AZ,oval,900,White, bright lights east of Eloy, AZ. +2012-01-21,42.9955556,-71.4552778,Manchester,NH,circle,240,4 colored figures hover in the sky +2012-01-21,47.8411111,-120.0152778,Chelan,WA,disk,60,Pinkish/Grayish saucer shaped object over Lake Chelan, Washington +2012-01-21,30.3319444,-81.6558333,Jacksonville,FL,fireball,300,Numerous (I5-20) solid red-orange flare-like lights over Jacksonville in about a 2 minute period. +2012-12-01,27.9833333,-82.2758333,Seffner,FL,light,1800,Two lights seen one in the eastern sky and one over head. +2012-01-21,47.1555556,-122.4327778,Parkland,WA,sphere,120,Unidentified +2013-01-21,41.7636111,-72.6855556,Hartford,CT,fireball,45,Ball of fire falling from sky. +2013-01-21,42.8141667,-73.94,Schenectady,NY,light,2.5,Extremely Bright Ball of light streaming downward from sky behind tree tops and to the horizon around midnight in upstate NY. +2013-12-01,39.0319444,-76.5030556,Arnold,MD,circle,20,Red object over Arnold/Annapolis Maryland +2013-12-01,37.6922222,-97.3372222,Wichita,KS,rectangle,300,On the night of Nov. 30 and Dec. 1 at 4:30 in the morning I woke up and had to use the restroom. I am 70 years old so at my age I canno +2013-01-21,33.7488889,-84.3880556,Atlanta,GA,fireball,15,White ball of light seen by a truck driver off of I-20 west. +2013-01-21,34.5369444,-86.3944444,New Hope,AL,changing,600,Large and small objects change shapes and colors over New Hope, Alabama. +2013-12-01,37.5058333,-77.6494444,Midlothian,VA,diamond,1200,At or around 5:45pm, behind my house, we saw an object in the western sky, that appeared to hover. It appeared to be a cluster of ligh +2013-12-01,41.4538889,-75.3830556,Lake Ariel,PA,fireball,60,Four fireballs in the night sky. +2013-12-01,34.1511111,-118.4483333,Sherman Oaks,CA,light,10,Pin-point light in SoCal night sky suddenly increases speed until it disappears +2013-12-01,39.7683333,-86.1580556,Indianapolis,IN,unknown,600,My husband and I were driving home from a dinner out. I've never seen a UFO or any flying object like this. +2013-12-01,35.4675,-97.5161111,Oklahoma City (Near),OK,circle,600,Round +2013-12-01,27.8002778,-97.3961111,Corpus Christi,TX,sphere,60,Bright Red Orange Sphere Gliding at Tree Level +2013-12-01,40.3641667,-74.9516667,New Hope,PA,changing,60,Low and slow flying round fireball dissoved into a pinpoint of light then vanished. +2013-12-01,38.2544444,-104.6086111,Pueblo,CO,other,5,Was looking towards the east waiting for our dogs to come n. My fiance and I observed a cloudy shape moving from west to east, material +2013-12-01,35.3394444,-97.4863889,Moore,OK,formation,120,5 lights in V formation-no sound- it was dull as there was fog coming down it did not go out of formation. +2013-01-21,39.6619444,-75.5666667,New Castle,DE,circle,600,Fire in the Sky in New Castle Delaware if you seen this you will wonder if they are out there. +2013-12-01,48.7597222,-122.4869444,Bellingham,WA,light,10800,Bright yellowish/white aircraft hovering in circles above the Cascade Mountains east of Lake Whatcom. +2013-12-01,42.5222222,-83.3061111,Franklin,MI,flash,2,I saw what appear to be a shooting star. +2013-12-01,47.5002778,-111.3,Great Falls,MT,circle,30,Two orange spheres traveling on a due west heading. +2014-01-21,33.8188889,-108.9538889,Luna,NM,fireball,10,Orange fireball. +2014-01-21,47.8211111,-122.3138889,Lynnwood,WA,fireball,3,Lynnwood, WA meteor 1/21/14 5:30 am? +2014-01-21,34.1705556,-118.8366667,Thousand Oaks,CA,light,20,Unidentified, red and blue lights seen moving together at a high rate of speed and in random directions in Thousand Oaks, CA. +2014-01-21,46.5377778,-111.9319444,Montana City,MT,changing,180,A bright, white, scintillating, pencil-shaped light over the Elkhorn Mountains observed for 3 minutes. +2014-01-21,40.2113889,-74.7883333,Morrisville,PA,light,300,Many unexplained orange lights shooting across the sky. +2014-01-21,40.6461111,-111.4972222,Park City,UT,egg,45,Large white egg shaped light with another white light in center and two white lines (like chemtrails) on either side. +2014-01-21,37.7561111,-94.3058333,Milo,MO,sphere,600,Twin tails, changed trajectory. +2014-01-21,34.5325,-83.985,Dahlonega,GA,circle,15,Bright orange sphere. ((NUFORC Note: Source remains anonymous. Possible hoax, we wonder? PD)) +2014-01-21,37.485,-119.9652778,Mariposa,CA,circle,600,Two mulicolored Ufo's over Madera, California. +2014-01-21,37.9975,-121.7113889,Oakley,CA,disk,120,Craft over Oakley. +2014-01-21,34.1625,-112.85,Congress,AZ,light,30,We looked up in the northwest sky and saw a series of horizontal yellow/orange lights moving closer in the sky. There seemed to be from +2014-01-21,38.3566667,-121.9866667,Vacaville,CA,light,120,I saw 5 red lights hoovering/moving slowly in the sky that I'm convinced were not normal air crafts. +2014-01-21,40.8688889,-72.5180556,Hampton Bays,NY,light,900,2 others and myself witnessed lights in the southern sky over a 15 minute period. All traveling along the same in the sky. They seemed +2014-01-21,36.5433333,-114.4461111,Overton,NV,triangle,600,Very bright horseshoe shape orange lights all of a sudden appear and disappear just as quick. +1948-12-12,39.4575,-77.7491667,Sharpsburg,MD,circle,180,Small UFO at 100', airspeed less than 20mph, absolutely silent, saw crew, normal, white uniforms. +1950-12-12,37.4636111,-122.4275,Half Moon Bay,CA,other,600,3 blips on a military radar screen flew off the radar screen when military aircraft approached them. +1965-12-12,34.9494444,-81.9322222,Spartanburg,SC,oval,120,FLASH IN THE SKY, BRIGHT LIGHT IN THE WINDOWS OF THE OBJECT. THE NIGHT WAS CLEAR +1973-12-12,47.6816667,-122.2075,Kirkland,WA,triangle,180,MY WIFE AND I WERE DRIVING SOUTH ON I405 WHEN I SAW WHAT LOOKED LIKE A LARGE AIRCRAFT ON FIRE DESCENDING INTO THE SEATTLE AIR SPACE. IT +1986-12-12,36.2613889,-90.9711111,Pocahontas,AR,light,180,What appears to be 2 comets suddenly shoots overhead and turns into red, pulsating lights in a random formation; hovers 2-3 minutes. +1987-12-12,38.1986111,-92.6386111,Lake Ozark,MO,cigar,600,3 vehicles traveling NNE to SSW at 25 mph or less. Bright white light on fromt of each. Large lights on sides. Large green tail light. +1994-12-12,36.0725,-79.7922222,Greensboro,NC,oval,300,U.F.O. seen over Greensboro, N.C. , unbelievable sighting of a Bright glowing object in the sky. +1996-12-12,34.0975,-117.6475,Upland,CA,fireball,5,Early morning driving to work a beautiful bright green colored sphere moving very fast crossed my path about one quarter mile in front +1996-12-12,30.275,-98.8716667,Fredericksburg,TX,light,600,Lights appeared above Laredo +1998-12-12,33.1136111,-94.1641667,Atlanta (E Of, Near The La Border),TX,fireball,20,I was sitting in a stand hunting when I caught the reflection of a light on my glasses. I looked up and thought it was a planet which +1999-12-12,46.3238889,-120.0075,Sunnyside,WA,other,120,I saw a ufo whith two triangles. +1999-12-12,28.5380556,-81.3794444,Orlando,FL,diamond,600,On Sunday night December 12, 1999 I went outside on my patio and bend down to pick up my matches. When I lift my head up and was looki +1999-12-12,40.1672222,-105.1013889,Longmont,CO,triangle,60,Many small lights, boomerang formation, going due south. Saw same 3 weeks ago. +2000-12-12,37.323055600000004,-122.0311111,Cupertino,CA,unknown,1200,7-9 very bright yellow lights in equal spacing, some hoovering, very fast, no sound, cupertino +2000-12-12,35.7719444,-78.6388889,Raleigh,NC,disk,420,Close view of stationary disk, top and side visible, prior to rapid its acceleration and departure +2000-12-12,43.0880556,-70.7366667,Kittery,ME,light,900,Craft being chased west south west by 4 military aircraft on the Maine New Hamphire border on 12/12/2000 at 3:45 pm. +2000-12-12,25.7738889,-80.1938889,Miami,FL,unknown,1200,There was a big white light in the sky over the miami international airport tonight at first we thought it was a plane or a helicopter +2000-12-12,41.7711111,-81.05,Madison,OH,teardrop,90,We were just sitting outside back by the woods when I saw two different color lights which were red and green. They just streamed acros +2000-12-12,64.7511111,-147.3494444,North Pole,AK,unknown,600,Strange black craft that blocks out stars. +2000-12-12,43.2080556,-71.5380556,Concord,NH,circle,7,i was going to move the car in the driveway when i looked above me and saw a roundish green object with redish light around the edge of +2000-12-12,35.6125,-77.3666667,Greenville,NC,light,1800,Strange lights that hovered then moved rapidly, then stopped and moved rapidly again over great distances. +2001-12-12,34.1808333,-118.3080556,Burbank,CA,light,3600,three white globes going in circles then meeting in the middle then smashing togethre then seperating, again, they followed me all arou +2003-12-12,39.0838889,-77.1530556,Rockville,MD,changing,30,Object that acted like a rust colored balloon turned flat and sped away. +2003-12-12,40.2627778,-85.6758333,Alexandria,IN,teardrop,120,Look at that, what is it dad , my god what are they? +2003-12-12,29.7630556,-95.3630556,Houston,TX,other,600,Perfectly Straight Light Line in the Sky above the Cloud Level. Looked like a crack in Sky. +2003-12-12,37.2708333,-79.9416667,Roanoke,VA,light,600,ROANOKE LIGHT BALL OR CRAFT - DECEMBER 2003 +2003-12-12,39.2022222,-83.6116667,Hillsboro,OH,light,300,Orange-ish colored light balls appear (probably flares) +2003-12-12,38.1302778,-121.2713889,Lodi (Near; Central Ca; We Were Traveling),CA,circle,600,We saw a huge blue light about 30ᄰ feet up with a beam of ligh coming out from underneath it that reached all the way to the ground. +2003-12-12,39.1652778,-86.5263889,Bloomington,IN,other,5,it made a zip motion and disapeared before the horizon +2004-12-12,29.5291667,-95.2008333,Friendswood,TX,triangle,2700,Triangular shape craft seen from the Houston, Tx. area on 12/12/04 @ 2 a.m. +2004-12-12,47.1855556,-122.2916667,Puyallup,WA,sphere,300,orange glowing object that drops smaller glowing ojects. +2004-12-12,33.4483333,-112.0733333,Phoenix,AZ,sphere,120,glowing gold spere seen 10 am in nw phoenix -hovered then moved from s to n across west valley +2004-12-12,33.8936111,-117.7263889,Chino Hills,CA,oval,900,12/12/2004 Chino hills objects hoverin very far from Earth Vshape formation. +2004-12-12,34.3916667,-118.5416667,Santa Clarita,CA,sphere,1800,Bright red lights hoovering over Santa Clarita +2004-12-12,33.9158333,-112.1352778,New River,AZ,oval,60,Oval/almond shaped two blue lights dissapered. +2004-12-12,41.5733333,-87.7844444,Tinley Park,IL,flash,300,series of exploding white, green, orange lights in NE area of Tinley Park within 5 mins +2004-12-12,32.7833333,-96.8,Dallas,TX,formation,10,Two linear groups of maneuvering lights over Dallas, Texas 12/12/04 +2004-12-12,33.4222222,-111.8219444,Mesa,AZ,formation,10,a formation of 5 yellowish orange flexing noodles flying across the sky +2004-12-12,36.1658333,-86.7844444,Nashville,TN,light,1800,lights circling inside clouds over Nashville +2004-12-12,30.6277778,-96.3341667,College Station,TX,triangle,300,22 orange-yellow UFOs, flying low, fast and silently east to south over Texas A&M University 4 randomly moving followed by 18 in a line +2004-12-12,37.985,-103.5433333,La Junta,CO,light,2,Red light across the sky +2005-12-12,42.3683333,-83.3527778,Livonia,MI,sphere,60,Bright green sphere desendes rapidly and disappears +2005-12-12,34.5380556,-96.2183333,Coalgate,OK,light,900,Bright Light (White) seen above small rural South Eastern Oklahoma town +2005-12-12,40.0891667,-75.3963889,King Of Prussia,PA,other,60,White boomerang ,no lights shaped object. KING OF PRUSSIA,PA 18:30 followed by lots of helicopters +2005-12-12,38.9783333,-76.4925,Annapolis,MD,disk,600,Saucer shapped object with lights all around it in the sky in Annapolis +2005-12-12,45.2425,-113.8925,Carmen,ID,sphere,45,A very fast bright white ball +2005-12-12,47.6063889,-122.3308333,Seattle (University District),WA,light,300,Bright orange lights seen moving slowly below solid overcast. +2005-12-12,30.2669444,-97.7427778,Austin,TX,triangle,240,triangle over austin tx +2005-12-12,41.2683333,-110.9625,Evanston,WY,sphere,240,multicolored lights hover and fly over evanston,wy ((NUFORC Note: Probably a celestial body, we suspect. PD)) +2005-12-13,26.3583333,-80.0833333,Boca Raton,FL,triangle,240,It wasn't that late at night, the air craft was extremly big and had some unique colors coming from it. +2006-12-12,36.2675,-94.4844444,Gentry,AR,triangle,420,Silent triangle +2006-12-12,34.1486111,-118.3955556,Studio City,CA,disk,45,The disk was white. It was shaped like a normal saucer but it had a little dip at the bottom. It was able to gain altitude while remai +2006-12-12,41.6611111,-91.53,Iowa City,IA,light,4,extremely bright green lights that moved quickly across the sky and down to the horizon +2006-12-12,32.7152778,-117.1563889,San Diego,CA,light,600,San Diego Hovering/Moving Gold Light +2006-12-12,39.0997222,-94.5783333,Kansas City,MO,triangle,60,Triangular shape with dull red lights. +2007-12-12,39.8269444,-80.5666667,Cameron,WV,triangle,300,((HOAX??)) The objects were floating above a pond and continued to float there for around 5 minutes. +2007-12-12,34.4133333,-119.86,Isla Vista (Ucsb),CA,oval,120,Santa Barbara oval silver disk spotted at 9:30 am, over the sea. +2007-12-12,33.8358333,-79.0480556,Conway,SC,oval,900,((HOAX??)) We saw some weird shape flying over our house. +2007-12-12,32.8263889,-90.2594444,Benton,MS,cylinder,50,Very large and long rusty bolt type craft came through the clouds in broad daylight. +2007-12-12,34.0522222,-118.2427778,Los Angeles,CA,oval,180,BLIMP/UFO? in L.A. +2007-12-12,35.2269444,-80.8433333,Charlotte,NC,changing,600,it felw constant changing shapes +2007-12-12,40.29,-76.9341667,Enola,PA,unknown,900,Six lights in a "J" formation appeared/disappeared in sky. +2007-12-12,40.2736111,-76.8847222,Harrisburg,PA,light,4,3 large very bright lights in a line formation above I81 in harrisburg +2007-12-12,40.2858333,-76.6505556,Hershey,PA,formation,30,Driving North on Bullfrog Valley Rd. I saw a red and white light. This light turns into 8-10 lights of the same. They faded in and out +2007-12-12,40.3088889,-76.5936111,Palmyra,PA,other,300,Series of star -like bright lights that came on and formed an arc then disappeared. Saw 3 times. +2007-12-12,40.1633333,-76.3952778,Manheim,PA,unknown,10,Manheim, PA, bright white light that separated into smaller white lights travelling in a straight line left and right from center. +2007-12-12,40.2736111,-76.8847222,Harrisburg,PA,formation,600,Harrisburg, PA - 7 to 8 light formation in the sky shaped like a boomerang - appeared 7 times +2007-12-12,48.7597222,-122.4869444,Bellingham,WA,light,600,Red/orange light over Bellingham, Washington +2007-12-12,39.7155556,-82.9530556,Ashville,OH,circle,2,A bright, shiny, metalic looking object fell downwards in the sky. +2007-12-12,34.0522222,-118.2427778,Los Angeles,CA,unknown,60,The brightest red flashing lights I've ever seen in a delta formation over L.A. +2007-12-12,33.5205556,-86.8025,Birmingham,AL,cylinder,20,A cylinder of blue pulsing light and some sort of craft concealed in a thick low hanging cloud +2007-12-12,35.7719444,-78.6388889,Raleigh,NC,light,180,suspicious flashing light white light at Kemp Rd and Highway 98 +2007-12-12,33.0183333,-80.1758333,Summerville,SC,light,2,very bright and fast moving light traveling low in a westerly to easterly direction +2007-12-12,26.4611111,-80.0730556,Delray Beach,FL,circle,5,Circular Blue Object Shoots into Black hole +2008-12-12,37.9577778,-121.2897222,Stockton,CA,light,10,Lights in the sky ((NUFORC Note: Student report. PD)) +2008-12-12,31.2291667,-81.7894444,Waynesville,GA,triangle,30,On 12 Dec ང at approx. 0615 I was im my greenhouse looking for meteors. The moon was near full and at about 12 degrees above the wes +2008-12-12,41.0886111,-74.1441667,Mahwah,NJ,unknown,30,very bright illuminated white object flying across the ramapo mountains in nj +2008-12-12,33.6058333,-78.9733333,Surfside Beach,SC,light,600,UFO sighting over the Atlantic in Surfside Beach SC. +2008-12-12,33.6602778,-117.9983333,Huntington Beach,CA,light,120,Nighttime UFO Fleet Sighting - Orion - Huntington Beach-California - December 2008 +2008-12-12,42.45,-73.2458333,Pittsfield,MA,triangle,300,Triangular shaped craft with numerous colored lights seemed to float overhead. +2009-12-12,39.4013889,-76.6022222,Towson,MD,sphere,5,white sphere flew silently over the house +2009-12-12,35.4675,-97.5161111,Oklahoma City,OK,other,60,Craft with lights but no sound +2009-12-12,39.8680556,-104.9713889,Thornton,CO,triangle,60,three VERY BRIGHT RED lights shaped like three VERRY big stop lights +2009-12-12,39.8916667,-75.9219444,Cochranville,PA,fireball,10,I saw a brilliant and bright, bluish-green object crossing the sky on a southeast to northwest direction. +2009-12-12,41.3252778,-72.1936111,Niantic,CT,light,5,?green colored shooting star +2009-12-12,41.0886111,-74.1441667,Mahwah,NJ,fireball,5,N on route 287 near Mahwah NJ @ 5:51 pm: Obj. entered earths atmosephere headed NW at extreme speed; blue & green. ((Meteor??)) +2009-12-12,42.9875,-71.8130556,Francestown,NH,circle,5,Green spherical object travels downward from north to south +2009-12-12,38.7291667,-89.8830556,Troy,IL,circle,600,2 bright lights near St. Louis that flew in a circular, erratic pattern +2009-12-12,42.7469444,-73.7594444,Latham,NY,triangle,420,Multiple UFOs Flying in 2 Triangular Arrows (Like Geese Flying South) +2009-12-12,37.7058333,-122.4608333,Daly City,CA,triangle,1800,This is about as strange and bizzarre as it can get +2009-12-12,34.0194444,-118.4902778,Santa Monica,CA,formation,20,while coming back from the parking lot in the apartment complex we happened to look up at some clearing after a long day of rain,, we j +2009-12-12,39.9166667,-75.3880556,Media,PA,circle,5,One Blue "fireball" moved rapidly across the sky. +2009-12-12,33.7669444,-118.1883333,Long Beach,CA,unknown,360,12/12/09 between 22:30 and 23:00 numerous moving bright lights 50 - 60 in the sky moving in an easterly direction with bursts of speed +2009-12-12,40.7141667,-74.0063889,New York City (Staten Island),NY,circle,240,One circular object different color lights traveling north of Staten Island at a very slow pace at a low level went north for about 1 m +2010-12-12,27.4986111,-82.575,Bradenton,FL,other,600,Bradenton,FL 3 reddish dots in the eastern sky +2010-12-12,28.5380556,-81.3794444,Orlando,FL,circle,300,10 bright red, round light balls drifting through the sky, no sound +2010-12-12,40.0377778,-76.3058333,Lancaster,PA,sphere,5,I observed a solo object shaped like a metallic golf ball low on the horizon moving eastward over Willowstreet pike near Bookmiller par +2010-12-12,34.1063889,-84.0336111,Sugar Hill,GA,other,3,Plane like object flew about 50 feet above our house, made no noise, and vanished. +2011-12-12,39.7047222,-105.0808333,Lakewood,CO,disk,240,Bright light leveling off in to a bright sphere than headed off than disappearing suddenly. +2011-12-12,47.2530556,-122.4430556,Tacoma,WA,flash,1,Green flash with maybe a little red and white lights, it went by very fast +2011-12-12,48.4213889,-122.3327778,Mount Vernon,WA,light,7200,Mount Vernon's strange lights on the mountains. +2011-12-12,43.1547222,-77.6158333,Rochester,NY,fireball,3,Large bright green fireball sails from south to east (left to right) over Thruway trailing bright green sparks and disappears. +2011-12-12,42.4416667,-76.0325,Marathon,NY,fireball,5,Green fireball seen west of Marathon, NY. +2011-12-12,37.4419444,-122.1419444,Palo Alto,CA,cylinder,3,Cylinder craft with green light appeared and dissapeared over radar satelittle dishes by 280 freeway +2011-12-12,47.0344444,-122.8219444,Lacey,WA,light,2,On 12-12-11 at 8:11, I saws green light to the SE of Lacey. +2011-12-12,33.0183333,-80.1758333,Summerville,SC,other,2,Looking for shooting stars and saw a dull green pentagon shaped object made up of 6 orb-like spheres. +2012-12-12,35.1494444,-90.0488889,Memphis,TN,circle,120,I was watching Gemimids meter shower when i observed a circular object with white lights that did not flash and red, blue, and green. +2012-12-12,20.8911111,-156.5047222,Wailuku,HI,fireball,3,Fireball. Triangular craft, noiseless, hovering large. +2012-12-12,38.8002778,-90.6263889,St. Peters,MO,oval,600,2 UFOs Seen In St. Peters, MO. One was Oval and Huge Other was Cigar Shaped,Lasted 10 minutes and there was no Noise or exhaust. +2012-12-12,40.1377778,-79.8983333,Charleroi,PA,unknown,300,High speed aircraft flying in groups of two and singles at high altitudes spotted approximately 7:30 P.M. over the skies of southwester +2012-12-12,42.4105556,-88.0261111,Lindenhurst,IL,cigar,60,Shiny Silver object flying over farm field in Lindenhusrt Illinois. +2012-12-12,41.12,-87.8611111,Kankakee,IL,circle,37800,Large grayish circle/oval, two smaller yellow lights/circles and 15 streak lpoking things. +2012-12-12,38.4088889,-121.3705556,Elk Grove,CA,unknown,120,Saw a bright light in the blue sky during the afternoon and the light "turned" and I saw the side of &quot;it&quot; and the. +2012-12-12,44.3288889,-72.1694444,Peacham,VT,light,600,Bright yellowish light appears and disappears several times at regular intervals in the S-E from Vermont. +2012-12-12,46.1469444,-122.9072222,Kelso,WA,light,600,UFO near Kelso Airport. +2012-12-12,40.4405556,-79.9961111,Pittsburgh,PA,changing,180,Cluster of white lights above Pittsburgh. +2012-12-12,34.7513889,-95.0477778,Talihina,OK,fireball,80,Four orange fireballs witnessed hovering very close to ground in Oklahoma that beamed white light to ground. +2012-12-12,38.8097222,-82.2025,Gallipolis,OH,fireball,15,Three amber colored oval shaped lights, first time I've ever seen this. +2012-12-12,42.7652778,-71.4680556,Nashua,NH,sphere,120,Red Spheres above Nashua, NH, night,sky. +2012-12-12,39.4733333,-82.7394444,Laurelville,OH,unknown,20,Star like object traveling west to east at high speed suddenly makes an abrupt U-turn then turns north & vanishes. +2012-12-12,42.6727778,-88.5444444,Elkhorn,WI,other,600,Round object flashing different colors. ((NUFORC Note: We strongly suspect the witness was observing the star, Sirius. PD)) +2012-12-12,44.0536111,-71.1288889,North Conway,NH,cylinder,300,What I saw was extremely loud, extremely fast, and extremely bright, and it was not a plane. +2012-12-12,37.6941667,-122.0852778,Castro Valley,CA,light,720,10 separate red / orange lights - possible UFO - appear and disappear over an approximately 10 minute period. +2012-12-12,41.4847222,-81.9222222,Bay Village,OH,fireball,90,At 9:30 pm on 12/12/25 in bay village , ohio I saw a reddish orange light go from ENE to WSW at lower aircraft altitude. +2012-12-12,42.5791667,-71.4383333,Westford,MA,fireball,3,I looked up at the sky and saw a large fireball zoom from North to South. It left a trail. +2012-12-12,43.1913889,-71.6758333,Hopkinton,NH,circle,300,Very Frightening Event! 12/12/12 10:43 pm +2012-12-12,43.4138889,-71.9855556,New London,NH,chevron,180,Large craft with red lights followed/chased by very loud low-flying jets. +2012-12-12,43.2805556,-71.8172222,Warner,NH,unknown,300,Bright Red Object Dodging 2 Military Jets! +2012-12-12,29.0255556,-80.9272222,New Smyrna Beach,FL,fireball,120,Red flame- like substance with white tightly packed filaments protruding moving along New Smyrna Beach shoreline after 11:00. +2012-12-13,37.2152778,-93.2980556,Springfield,MO,cigar,900,8 crafts seen over springfield missouri. +2013-12-12,39.2902778,-76.6125,Baltimore,MD,other,60,2 vertical lights relatively low moving quickly across sky and then disappeared. Did not reappear, outside for 20mins. +2013-12-12,43.2166667,-123.3405556,Roseburg,OR,light,45,Light gliding across the sky +2013-12-12,35.2269444,-80.8433333,Charlotte,NC,changing,60,3 lights in sky, all moving very very fast. +2013-12-12,31.3463889,-89.26,Petal,MS,light,720,15 lights in sky in petal MS on 12/12/13 +2013-12-12,37.3394444,-121.8938889,San Jose,CA,formation,10,Bright triangle formation fading away slowly in day light. +2013-12-12,41.7,-70.7633333,Marion,MA,light,60,Bright bluish-white light visible for 30 seconds to 1 minute and then gone in less than second +2013-12-12,43.2166667,-123.3405556,Roseburg,OR,formation,30,4 crafts seen gliding slowly in the air +2013-12-12,39.7391667,-104.9841667,Denver,CO,sphere,180,4 lights over Denver. 2 turned into 4. As they dropped from the first 2, very bright flare trails seen ascending. +2013-12-12,39.7047222,-105.0808333,Lakewood,CO,rectangle,1200,Four lights viewed from Lakewood, CO. +2013-12-12,39.9205556,-104.8652778,Henderson,CO,sphere,240,Bright lights in triangle formation stationary in the sky +2013-12-12,43.6136111,-116.2025,Boise,ID,light,180,Fleet of Orange orbs over Boise Idaho link on you tube also. +2013-12-12,39.6261111,-84.3694444,Germantown,OH,light,3600,Bight white light floating in night sky. Appears daily after 6 pm and remains constantly floating for hrs. ((NUFORC Note: Venus. PD)) +2013-12-12,33.7738889,-117.9405556,Garden Grove,CA,light,3600,White light hovering over Garden Grove +2013-12-12,33.1958333,-80.0133333,Moncks Corner,SC,light,60,3 orange bright lights in straight line formation. Flashing and moving east to west. A lot of aircraft movement in the area. +2013-12-12,34.165,-84.8,Cartersville,GA,light,300,40+ strange lights over cartersville georgia +2013-12-12,33.685,-117.2722222,Canyon Lake,CA,circle,5,A large orange light. Bigger than a star, smaller than the moon at about a 30degree arc from the ground. It moved straight down for 5 +2013-12-12,33.4130556,-82.3852778,Dearing,GA,fireball,240,We were driving up the road on our property and, looking south, we noticed 2 orange glowing balls next to each other. We also noticed 2 +2013-12-12,43.0388889,-87.9063889,Milwaukee,WI,unknown,900,Craft with white and red lights hovering and slowly moving SE from Froedert Hospital past State Fair Park +2013-12-12,33.4502778,-82.1983333,Grovetown,GA,light,1200,Large group of blink or flashing lights, followed by a bigger and brighter orange light +2013-12-12,64.7511111,-147.3494444,North Pole,AK,flash,3,Dim flash of orange lasting a few seconds that came from above and illuminated 30 ft. trees. +2013-12-13,39.7391667,-104.9841667,Denver,CO,sphere,180,I'm not sure what I saw 4-5 lights fell from the sky over Denver it looked like shooting stars but they changed direction they went da +1989-12-13,35.9736111,-112.1258333,Tusayan,AZ,disk,240,It was saucer-shaped with multi-colored lights, it made no sound and appeared to be bigger than a large helicopter. +1989-12-13,31.3222222,-92.4341667,Pineville,LA,rectangle,300,rectangular, black metallic, hover, silent, huge, low to ground, two witnesses +1996-12-13,36.0725,-79.7922222,Greensboro,NC,light,60,Very large ball of light. Looked to me as if the sun were moving through town. +1996-12-13,34.2694444,-118.7805556,Simi Valley,CA,egg,240,A silver metallic object streaked across the sky in a northeast direction. It suddenly slowed to a complete stop before going straight +1996-12-13,40.9866667,-75.195,Stroudsburg (Stroud Township),PA,light,120,Blue light faded to red with electrical sounding hum and then repeating.The light traveled from behind our home to the side lighting th +1998-12-13,39.9936111,-105.0891667,Lafayette,CO,other,7200,Event was a meteor shower. 5 meteors spotted in one hour plus 6 regular shooting stars. +1998-12-13,38.8002778,-90.6263889,St. Peters,MO,light,600,Observed extremely bright object in the sky. +1998-12-13,41.7013889,-71.1555556,Fall River,MA,light,5,i seen a flash and looked in the sky,then i seen a green streak going from right to left for about five seconds. +1998-12-13,39.7391667,-104.9841667,Denver,CO,formation,600,A formation of a constant group of 1 dozen metallic/lights near DIA +1998-12-13,43.4930556,-124.2175,Hauser,OR,light,30,noticed a flash of light while driving looked up and saw nothing then a few seconds later a saw the a bright ball of light travelling a +1998-12-13,30.4505556,-91.1544444,Baton Rouge,LA,light,5,It was a long light, blue with a purpleish tint. Resembled a shooting star, but appeared and disappeared but ended before the horizon. +1998-12-13,39.7683333,-86.1580556,Indianapolis,IN,fireball,4,I saw a green-white fire ball moving west southwest. It looked like(size and shape) the HailBop comet but, moving much faster. +1998-12-13,39.3111111,-94.9222222,Leavenworth,KS,fireball,3,The ufo appeared as a falling star except that it was falling more straight down instead of arching across the sky. It was blue W/Blue +1998-12-13,36.4513889,-86.5380556,Cottontown,TN,other,1800,Many shooting stars spotted +1999-12-13,32.0833333,-81.1,Savannah,GA,unknown,2,About 530am I was up getting ready for work when I saw a streak of light that didn,t look like a shooting star it looked all togetther +1999-12-13,47.1855556,-122.2916667,Puyallup,WA,triangle,6,Was in back yard of a trailer,/drive way near street. Happen to turn to my right and facing upperward out of the side of my right eye I +1999-12-13,38.0666667,-103.2222222,Las Animas,CO,fireball,2,noticed 2, one folllowing the other, meteors, space junk... coming from the north of Las Animas going south. The first blew up, the sec +2000-12-13,39.0277778,-94.6555556,Mission,KS,triangle,10,3 lights in triangle configuration moving south to north,VERY FAST,NO SOUND. +2000-12-13,35.1594444,-84.8766667,Cleveland,TN,triangle,180,i was coming home from church ,on a country road iseen a v shaped ufo flying from the right, it flue over me and landed in a feild.it w +2001-12-13,39.0997222,-94.5783333,Kansas City,MO,fireball,600,falling satellite +2002-12-13,38.8338889,-104.8208333,Colorado Springs,CO,oval,15,There were four silver oval objects hovering near the radio twers over U.C.C.S; the objects dissapeared very fast. +2002-12-13,40.7086111,-113.1166667,Clive,UT,chevron,180,First, we thought it was Venus, next we thought it was a large jet with it's landing lights on...now, we don't have a clue. +2002-12-13,42.1741667,-83.1794444,Riverview,MI,cigar,7200,A buzzing cigar shaped object in the sky. +2002-12-13,29.7630556,-95.3630556,Houston,TX,triangle,10,V shaped lights over Houston +2002-12-13,39.7391667,-104.9841667,Denver,CO,triangle,60,It was 'V' shaped, large, and silent. +2002-12-13,31.7586111,-106.4863889,El Paso,TX,light,480,Coming through Anthony Gap heading towards Northeast El Paso at about 11:00PM going south I spotted a dim light fly down the mountain s +2002-12-13,38.8402778,-77.4291667,Centreville,VA,teardrop,120,Black teardrop ship over western part of centreville area +2003-12-13,33.8702778,-117.9244444,Fullerton,CA,oval,3,I saw it. +2003-12-13,38.8902778,-77.0844444,Arlington,VA,changing,6,oval shaped traveling fast and low +2003-12-13,38.8047222,-77.0472222,Alexandria,VA,fireball,5,Outside smoking a cigarette when I look up into the sky and see a green ball go across the sky very fast like a meteor, thought it to b +2003-12-13,42.5833333,-71.8027778,Fitchburg,MA,cylinder,120,Bright Rod shaped craft seen shortly after sunset, North Central Massachusetts; 10 to 1 length to width. +2003-12-13,38.3566667,-121.9866667,Vacaville,CA,fireball,30,Large red light appeared in the sky and descended directly down to the ground. +2004-12-13,38.8902778,-77.0844444,Arlington,VA,formation,2700,V, Shapes with trails, then lights at corner making out a square in the sky, ((NUFORC Note: Advertising lights, possibly. PD)) +2004-12-13,21.3069444,-157.8583333,Honolulu,HI,disk,180,I seen the windows around the saucer and I can draw exacly what I saw. +2004-12-13,42.3472222,-89.0388889,Machesney Park,IL,unknown,1200,15-20 minutes of Extreme light in the sky with very strange noises. +2004-12-13,32.2216667,-110.9258333,Tucson,AZ,fireball,3,I was watching the geminids towards about I think it was Venus ENE I am located in NE Tucson AZ The fireball was slow for other meteor +2004-12-13,35.1594444,-84.8766667,Cleveland,TN,unknown,900,Sporadic movement from light, with cross glare. +2004-12-13,46.2633333,-119.4866667,Benton City,WA,teardrop,3,bright blueish white fireball crossed the sky southward +2004-12-13,33.6888889,-78.8869444,Myrtle Beach,SC,light,60,Sonic boom in Myrtle Beach +2004-12-13,32.8744444,-95.7652778,Emory,TX,cone,20,I witnessed a cluster of extremely bright white, blue and red strobe type lights at a low altitude for about two hours. +2004-12-13,39.0169444,-94.2813889,Blue Springs,MO,disk,20,Two unidentified objects flying in left echelon formation over Kansas City, Missouri +2004-12-13,39.0169444,-94.2813889,Blue Springs,MO,oval,20,Blacked out craft (2) headed south crossing in controlled airspace in Blue Springs area. +2004-12-13,41.5775,-71.5380556,Exeter,RI,light,1,unusual light in sky +2004-12-13,40.5652778,-75.1,Upper Black Eddy,PA,circle,10,fast ball of light moving every which way +2004-12-13,33.0580556,-112.0469444,Maricopa,AZ,changing,2700,3 lights. Would change colors then circle each other then go on and off in a line. This went on for over 45 min +2004-12-13,36.8688889,-94.3677778,Neosho,MO,other,20,On the night of Dec. 13th while watching the meteor shower, I saw a large, silent, and completely dark object travel across the sky. +2004-12-13,36.8688889,-94.3677778,Neosho,MO,oval,20,An addendum to my report made in December 2004 for the sighting on Dec. 13, 2004. +2004-12-13,33.4858333,-79.7177778,Trio,SC,light,10,More night sky activity in Salters +2004-12-13,30.3958333,-88.8852778,Biloxi,MS,unknown,8,V shaped light formation travleing S/SW in Biloxi +2005-12-13,41.7002778,-73.9213889,Poughkeepsie,NY,other,120,object came from north to south very slowly, very low. Appeared to almost look like a rectanglular parachute. I tried to snap off a cou +2005-12-13,30.7916667,-85.6797222,Bonifay,FL,disk,1800,We have live uncut footage of it from a security camera digital, that was recently installed however the angle on one of the camera's w +2005-12-13,40.7447222,-73.9491667,Long Island City,NY,rectangle,1200,At 11:12 I was watching a construction sight across the street from my window on the 22nd floor of 1 Court Square. I saw a large dull b +2005-12-13,39.6477778,-104.9872222,Englewood,CO,circle,10,I was in the car looking at the sky at about 6:00 a.m. and I look over to see a gold light glowing across the sky for about two seconds +2005-12-13,38.2494444,-122.0388889,Fairfield,CA,other,10,the three light rotated and changed colors and shape +2005-12-13,40.2736111,-76.8847222,Harrisburg,PA,formation,900,A Line of Lights in The North Sky- In the Area of Paxtonia/Lingelstown and By Costco Got Cell Phone Video! +2005-12-13,30.1758333,-84.3752778,Crawfordville,FL,cigar,2,a long object full of light that disappeared behind the trees +2005-12-13,38.6861111,-76.535,Chesapeake Beach,MD,fireball,5,Green Fireball over Western Shore of Maryland. ((NUFORC Note: Possible meteor?? PD)) +2005-12-13,41.4047222,-81.7230556,Parma,OH,flash,2,it was a turquise ball moving extremely fast and low, across the horizon. ((NUFORC Note: Meteor?? PD)) +2005-12-13,34.0522222,-118.2427778,Los Angeles,CA,unknown,120,Fast Moving White Light Across Los Angeles +2005-12-13,41.965,-80.4075,East Springfield,PA,fireball,15,bright blueish white 2 foot diameter ball of light in Erie County . +2006-12-13,39.885555600000004,-104.9866667,Northglenn,CO,light,900,It was apx. 5am Wednesday morning.I work graveyard shift out on the oil fields. My boss and three other employees get a ride to and fro +2006-12-13,39.0541667,-84.0530556,Williamsburg,OH,unknown,900,Looks like a star but has red, green, and blue flashing lights when you look closer. ((NUFORC Note: Possible sighting of Sirius?? PD +2006-12-13,41.6661111,-70.6202778,Cataumet,MA,unknown,3600,NOAA Doppler sees streak across US. +2006-12-13,33.0738889,-106.0180556,Tularosa,NM,fireball,20,Flying Object Crash by Tularosa,NM around 18:00 hours +2006-12-13,40.5580556,-90.035,Canton,IL,fireball,1200,Loud stationary craft that would grow with what looked like fire and then it would drop a luminous "pod" +2006-12-13,39.2013889,-85.9213889,Columbus,IN,diamond,10,Witnessed Diamond Object with Light formations hover then move as it faded or dissappeared +2006-12-13,40.7966667,-81.5216667,Massillon,OH,circle,5,CIRCULAR TRANSLUCENT CRAFT WITH (3) BRIGHT GREEN HEXAGON SHAPES SEEN OVERHEAD & FOLLOWED BY TWO JETS & ONE HELICOPTER. +2006-12-13,36.3302778,-119.2911111,Visalia,CA,light,300,Two bright yellow/orange lightd moving slowly from south, south east to north, north west.No sound. Moved evenly appprox. 20 degree +2006-12-13,34.1952778,-79.7627778,Florence,SC,light,45,3 Lights Appear in Sky over Florence +2006-12-13,39.5775,-123.7736111,Newport,CA,disk,600,Young woman, and her boyfriend, witness a bizarre dis-shaped obj. hovering nearby. +2006-12-13,34.9577778,-90.1516667,Walls,MS,unknown,20,Dark amber colored object flying at a high rate of speed +2006-12-13,37.0433333,-93.2941667,Nixa,MO,sphere,180,I saw a greyish sphere with an orange stripe down the middle slowly move across my house. ((NUFORC Note: Student report. PD)) +2006-12-13,41.85,-87.65,Chicago,IL,unknown,2700,Very low and slow-flying aircraft +2006-12-13,40.6213889,-79.1527778,Indiana,PA,formation,10,5-6 Lights in a line on the rear of the object +2006-12-13,42.8863889,-78.8786111,Buffalo,NY,light,2,Yellow streak seen on Buffalo state college. ((NUFORC Note: Possible Geminid Meteor?? PD)) +2007-12-13,41.8108333,-78.28,Port Allegany,PA,unknown,900,I saw six orange balls floating then disappearing, two of them did it for like five minutes repeadily. +2007-12-13,30.3933333,-86.4958333,Destin,FL,triangle,180,Triangular vessel with 3 bubble-like shapes encompassed the bottom at each angle. No lights. No Sound. Floating easily low in sky. +2007-12-13,35.0455556,-85.3097222,Chattanooga,TN,diamond,600,6 Diamond shaped objects over Chattanooga, TN +2007-12-13,39.7475,-122.1952778,Orland,CA,triangle,15,Silent, Triangular shaped craft moving quickly with no lights or sound. +2007-12-13,38.5816667,-121.4933333,Sacramento,CA,cigar,1200,Skunk smell for over 10 miles while very large craft flew across the sky. +2008-12-13,41.3580556,-72.5641667,Killingworth,CT,fireball,5,bright green object flying really fast. +2008-12-13,39.0911111,-94.4152778,Independence,MO,circle,3600,Huge Black disk over Independece, strange lights, and strange events since sighting. +2008-12-13,42.7675,-78.7441667,Orchard Park,NY,sphere,3,A single, metalic, bright object that appeared and disappeared in a matter of a few seconds. +2008-12-13,45.0380556,-93.3863889,New Hope,MN,diamond,900,((HOAX??)) Appeared two times now, Very bright red,orage,maroon, Then shoots off across the sky. +2008-12-13,47.6588889,-117.425,Spokane,WA,light,1800,Really birght white light spotted southwest of Spokane WA. 12/13/08, 6 p.m. ((NUFORC Note: Sighting of Venus? PD)) +2008-12-13,37.2808333,-79.8972222,Vinton,VA,circle,180,the green colored objects formed a triangle shape +2008-12-13,39.8411111,-96.6469444,Marysville,KS,disk,5,Made me a believer!!!!!!!!!!!!!!!!! +2008-12-13,33.8722222,-117.8694444,Placentia,CA,light,30,orangeish light above the anaheim hills area. +2008-12-13,33.8358333,-118.3397222,Torrance,CA,unknown,2,i loked up and i saw this very tiny light in the distance and it flew away ridiculous. ((NUFORC Note: Student report. PD)) +2008-12-13,37.775,-122.4183333,San Francisco,CA,light,1,bright light shot down toward ground +2008-12-13,33.7669444,-118.1883333,Long Beach,CA,circle,1,Large white circle flew over Long Beach at a low elevation. +2008-12-13,34.0522222,-118.2427778,Los Angeles,CA,light,1200,15 Glowing orange orbs slowly travel across the los angeles sky then disapear +2008-12-13,34.1511111,-118.4483333,Sherman Oaks,CA,light,900,Slow moving bright orange lights. +2009-12-13,25.9561111,-80.1394444,Aventura,FL,light,600,12/13/09 Aventura florida 2 hours light 3 objects (12 to start) +2009-12-13,34.09,-117.8894444,West Covina,CA,triangle,3,Triangular and extremely bright; disappeared in an instant; probably military craft due to two osprey which preceded it. +2009-12-13,32.7252778,-97.3205556,Fort Worth,TX,other,300,strange zooming light over Fort Worth. +2009-12-13,34.0633333,-117.65,Ontario,CA,triangle,600,An observation of three et ships +2009-12-13,40.6955556,-73.3261111,West Babylon,NY,disk,1,I was outside having a cigarette at my friend's apartment (outside), then I saw a bright green disc zoom by, at about 220 degrees from +2010-12-13,41.8897222,-87.9888889,Villa Park,IL,fireball,1,green fireball falling in the sky +2010-12-13,47.4475,-122.4586111,Vashon,WA,flash,3600,Severe weather manipulation followed by 30 minutes of flashing lights above the bay. +2010-12-13,34.0522222,-118.2427778,Los Angeles,CA,changing,900,UFO impersonating a large jet aircraft, but had abnormal contrail appearance. +2010-12-13,44.2911111,-105.5016667,Gillette,WY,fireball,10,Large White/Green Object Descends over Gillette, Wyoming, No known Impact +2010-12-13,32.2216667,-110.9258333,Tucson,AZ,light,10,12/13/10 tucson az. lites lasted 6 to 10 sec. 4 lites south of tucson on 12/13/10 +2010-12-13,35.1405556,-85.2327778,Hixson,TN,light,180,light mooving near moon in start and stop pattern. +2010-12-13,31.8911111,-85.1455556,Eufaula,AL,light,600,Observed a stationary blinking light for 10 minutes in the constellation Orion on the night of Dec. 13, 2010. +2011-12-13,33.5016667,-117.6616667,San Juan Capistrano,CA,circle,30,3 orbs over Orange County Ca +2011-12-13,45.2630556,-122.6913889,Canby,OR,teardrop,30,Stars +2011-12-13,44.98,-93.2636111,Minneapolis,MN,circle,30,Craft over wells fargo building +2011-12-13,40.0580556,-82.4013889,Newark,OH,fireball,600,Five orange balls of light following each other coming from the ground about a minute apart. +2011-12-13,37.0236111,-94.7352778,Baxter Springs,KS,oval,300,Orange orbs floating across the western sky headed north, approx.15, several floating in groups of 4, in a long square . Flying low . +2011-12-13,31.8466667,-81.5961111,Hinesville,GA,sphere,1200,Two brightly lit yellow spheres hovering slowly through the treetops in the middle of the woods. +2011-12-13,39.7491667,-77.3833333,Carroll Valley,PA,rectangle,10,Dark rectangular object with pale orange and pale green steady lights - fast moving and silent. +2011-12-13,27.9472222,-82.4586111,Tampa,FL,fireball,2,Fireball swirling with black center shot thru sky in downward spiral heading west +2012-12-13,40.1205556,-75.1183333,Abington,PA,triangle,90,Triangular shaped object glided through the sky in Abington, Pa.. +2012-12-13,39.9777778,-85.6147222,Markleville,IN,light,1200,Several pairs of lights witnessed during the late hours of 12/13/2012. +2012-12-13,38.2541667,-85.7594444,Louisville,KY,formation,600,Perfect formation of 4 triangular crafts sighted in PRP, Louisville, Ky seen twice in two days. +2012-12-13,39.4013889,-76.6022222,Towson,MD,sphere,4,Green sphere over I-83 stops, hovers then takes off to the west. ((NUFORC Note: Possible hoax, we believe. PD)). +2012-12-13,37.7477778,-84.2947222,Richmond,KY,light,25,Bright light. +2012-12-13,45.2944444,-123.1752778,Carlton,OR,triangle,60,Triangle shaped craft with no noise. Very low. +2012-12-13,30.4525,-94.7686111,Rye,TX,oval,600,Oval shaped with strange tail of white and grey with yellow. +2012-12-13,30.4111111,-88.8277778,Ocean Springs,MS,egg,600,2 Red/White Egg Shaped Craft spotted +2012-12-13,41.85,-71.4666667,North Providence,RI,unknown,1320,I Julian Smith witnessed and others mutiple ufos speeding faster then the fighter jet plans and all other objects near 100miles in eyes +2012-12-13,27.8394444,-82.7913889,Seminole,FL,other,240,Thousands of Crows extradiminsional being abduction. +2012-12-13,42.0333333,-87.7333333,Skokie,IL,light,40,I was at parking lot and talking on cellphone, Suddenly saw a flying obj. with white light moving at a high speed and suddenly vanish. +2012-12-13,43.3872222,-87.8755556,Port Washington,WI,circle,20,Extremely large &quot;Pulsing&quot; light event. +2012-12-13,37.4947222,-120.8455556,Turlock,CA,light,30,Fast moving point of light. +2012-12-13,35.3858333,-94.3983333,Fort Smith,AR,circle,120,Seeing multiple round yellowish/whiteish colored orbs/ufo's in the night sky almost every night in Fort Smith, Arkansas. +2012-12-13,38.35,-104.7222222,Pueblo West,CO,circle,300,Red lights that were hovering in the north. 2 came first moving north to south. Appeared to hover in the sky. +2012-12-13,33.4716667,-86.8008333,Homewood,AL,light,3,Unexplained single bright light passes overhead in Alabama suburban neighborhood. +2012-12-13,34.8238889,-89.9936111,Hernando,MS,sphere,60,Bluish orb moving across sky at steady pace. +2012-12-13,43.9786111,-90.5038889,Tomah,WI,sphere,3,Bright green round falling object; seemed very close and disappeared behind tree line. ((NUFORC Note: Possible meteor. PD)) +2012-12-13,33.4483333,-112.0733333,Phoenix,AZ,light,900,20 white orbs with one blinking orb form triangle over sky harbor. +2012-12-13,45.7544444,-122.8763889,Scappoose,OR,circle,0.57,Black hawk chasing ufo. +2012-12-13,42.3369444,-71.2097222,Newton,MA,triangle,600,Triangle shaped craft 8:10 pm Eastern standard Time low flying green, red blinking lights. +2012-12-13,40.4591667,-90.6716667,Macomb,IL,triangle,180,3 orange lights in triangle moving in unison then disappearing. +2012-12-13,40.4591667,-90.6716667,Macomb,IL,triangle,240,TRIANGULAR CRAFT OVER MACOMB, IL. +2012-12-13,47.5002778,-111.3,Great Falls,MT,fireball,10,4 dull orange colored orbs heading SW split into pair formation. No sound. +2012-12-13,40.1213889,-75.3402778,Norristown,PA,triangle,600,Unusual triangular craft. +2012-12-13,42.2588889,-88.1391667,Wauconda,IL,disk,2,Light blue disk came from East to West and turned North. Very, very fast (5 times plane speed at least. +2012-12-13,34.551944399999996,-77.9263889,Burgaw,NC,triangle,30,On this night I was outside checking out the meteor shower from my backyard.. it wasn't very visible because i have a security light s +2012-12-13,41.7188889,-83.7130556,Sylvania,OH,disk,720,Bright colors flying very rapidly. +2012-12-14,32.9125,-96.6386111,Garland,TX,circle,2,Two of us saw large round light - donut shaped, I saw it as white/light blue, my friend saw it as being green. It was in the north sky, +2013-12-13,34.0658333,-84.6769444,Acworth,GA,fireball,180,Three minutes fireball. +2013-12-13,37.3661111,-81.1027778,Princeton,WV,circle,180,Light yellowish white circle of light looking like a full moon started moving, descending down behind trees of horizon. +2013-12-13,35.6527778,-97.4777778,Edmond,OK,triangle,300,The shapes drifted across the sky. They were triangle with an orange light center. They drifted across the sky then some turned black t +2013-12-13,41.5380556,-72.8075,Meriden,CT,cigar,45,Shocking. +2013-12-13,38.6825,-90.1569444,Madison,IL,light,120,Bright bluish white light slowly moves across sky and then disappears directly above me +2013-12-13,41.1327778,-73.7930556,Pleasantville,NY,diamond,300,Dimond shaped, very bright moving very fast across the sky. Definitely a UFO. +2013-12-13,42.6158333,-70.6625,Gloucester,MA,circle,45,Saw an orange light with a small streak behind it moving extremely fast either traveling out towards the ocean. +2013-12-13,42.5063889,-71.0733333,Wakefield,MA,circle,30,Bright white light that shot across the sky and then disappeared. +2013-12-13,43.9075,-72.1438889,Fairlee,VT,unknown,60,Orange, fiery lights in the sky that disappeared in perfect succession leaving only the clear night sky. +2013-12-13,37.7058333,-122.4608333,Daly City,CA,light,180,I was driving and saw this strange object in the dark sky moving very fast, making complete stops, changing directions in sharp angles. +2013-12-13,42.0805556,-70.9361111,Whitman,MA,circle,1800,It started off with one single orange glowing ball of light. At first it was stationary, but then began moving to the right at a slow p +2013-12-13,39.7047222,-105.0808333,Lakewood,CO,light,600,4 lights spotted in Lakewood Colorado on Kipling. +2013-12-13,28.6647222,-82.1130556,Bushnell,FL,light,5,Looking towards the west I saw a beam of white light with a blue green ball heading straight down. Was huge and really bright. Definite +2013-12-13,44.4288889,-71.8905556,Concord,VT,fireball,300,Outside facing southern sky at 1900pm several bright lit orange fire spots, no noise, in a row blinking off and on. +2013-12-13,27.9091667,-82.7875,Largo,FL,sphere,1,Bright orb traveling fast spotted 12/13/13 @ about 1900 hrs over home in largo fl falling from me sky heading towards Redington beach. +2013-12-13,28.0777778,-82.7638889,Palm Harbor,FL,light,30,I was looking towards the water and I saw a huge beam of light come out of the sky and go directly down into the direction of the water +2013-12-13,27.7705556,-82.6794444,Saint Petersburg,FL,fireball,60,Saint Petersburg, FL. +2013-12-13,28.0777778,-82.7638889,Palm Harbor,FL,light,15,Huge bright green/blue ball light travel through the sky. +2013-12-13,26.1416667,-81.795,Naples,FL,light,15,Bright green light zigzags over the Gulf of Mexico. +2013-12-13,29.8944444,-81.3147222,St. Augustine,FL,triangle,2,Blue teardrop or triangle shape fell from the sky lasted 10 seconds +2013-12-13,40.1672222,-105.1013889,Longmont,CO,fireball,60,3 Fireballs with a spark-like tail moving in a serpentine pattern with light fading on and off. +2013-12-13,37.775,-122.4183333,San Francisco,CA,diamond,600,Two virtually motionless synchronized lights about 600 feet up 100 Yds apart W. faceted vibrating and pulsating lights. of all colors. +2013-12-13,40.1672222,-105.1013889,Longmont,CO,fireball,300,Viewing from Longmont CO near 21st and Hover. In the east/south sky I noticed objects that appeared as fireballs seeming to interact wi +2013-12-13,47.4736111,-94.88,Bemidji,MN,light,900,My husband walked outside and on his way back in he saw up to 15 balls of light. He came inside and got me and told me to grab my camer +2013-12-13,43.6136111,-116.2025,Boise,ID,sphere,120,Yellow orange spheres. +2013-12-13,40.1672222,-105.1013889,Longmont,CO,fireball,60,Crazy fireballs zigzagging in the sky like they were being controlled +2013-12-13,39.9611111,-82.9988889,Columbus,OH,fireball,180,5 slow moving fireballs. +2013-12-13,44.0463889,-123.0208333,Springfield,OR,light,300,Orange Orb flies over Springfield. +2013-12-13,43.073055600000004,-89.4011111,Madison,WI,unknown,3,Madison, WI - Lasers illuminate me on 2 different occasions. Deafening wooshing sound. +2013-12-13,26.7052778,-80.0366667,West Palm Beach,FL,circle,30,Circle inside circle super fast no noise +1988-12-14,40.7713889,-84.6155556,Ohio City,OH,disk,600,Huge craft with lights moving slowly about 20-30 feet off the ground +1991-12-14,37.9513889,-86.7677778,Tell City,IN,circle,30,bright light lit up the woods 5am while hunting. ((NUFORC Note: Possible meteor?? PD)) +1994-12-14,41.2377778,-80.6644444,Vienna,OH,other,32400,HELP!Trumbull, Ohio, 1994, Local Authorities &NBC cite Mass UFO sighting, Gov./Military Denies Incident, flimsy, but effectiveCover UP +1995-12-14,34.0552778,-117.7513889,Pomona,CA,round,900,While delivering packages, man observes 16 round, or oval, tiny golden objs. overhead. Objs. maneuvered, suddenly disappeared. +1995-12-14,36.175,-115.1363889,Las Vegas (Western; I-40, Mm 264),NV,unknown,2,Saw thick blue beam of light come down out of the sky accross a field and then back up again. +1997-12-14,41.3669444,-85.0588889,Auburn,IN,sphere,120,We saw 3 unexplained, white orbs of light hovering over a church we were driving to. We saw them from our car, and they hovered over t +1997-12-14,39.7294444,-104.8313889,Aurora,CO,unknown,300,Object seen shooting across the sky at a very high rate of speed and the stopped and started blinking a white light. Object was moving +1997-12-14,34.61,-112.315,Prescott Valley,AZ,other,1800,In Arizona-A light attached to something floating. +1998-12-14,29.3113889,-96.1025,Wharton,TX,light,2,Driving in the country roads +1998-12-14,47.9447222,-122.3033333,Mukilteo,WA,formation,10,Saw formation of 5 translucent lights coming out of the south +1998-12-14,47.6588889,-117.425,Spokane,WA,fireball,4,I saw a greenball of light fall from the sky. +1998-12-14,40.5866667,-122.3905556,Redding,CA,fireball,5,MY BROTHER AND I WERE DRIVING SOUTH BOUND ON I5 ABOUT 1 1/2 MILES NORTH OF ANDERSON, CALIFORNIA. A HUGE WHITE/BLUEISH FIREBALL WAS SEE +1998-12-14,40.4841667,-88.9936111,Bloomington,IL,formation,30,walking my dog early in the a.m. just happened to look up and saw what looked like two stars at about that distance folllowing each ot +1998-12-14,47.6741667,-122.1202778,Redmond (Due East Of, Beyond Issaquah, Near Mtns.),WA,disk,60,Work at Microsoft Redwest, was crossing to Cafe for coffee break, and looked to east at Cascades, suddenly saw 2 objects coming north t +1998-12-14,38.7838889,-90.4811111,St. Charles,MO,fireball,30,Myself and my wife while sitting at a traffic light saw what looked like a green fire ball, slightly smaller than my pinky finger if he +1998-12-14,42.5375,-71.5125,Littleton,MA,disk,1,Faint disk travelling parallel to I495 southbound in Littleton MA. +1999-12-14,35.1936111,-97.9522222,Pocasset (6 Miles South Of, On Hwy 81),OK,other,60,I was driving north on highway 81,when I saw 3 round bright light's, triangle shape flying at about 200 feet high. Dropped down at a 45 +1999-12-14,30.3183333,-86.1302778,Seagrove Beach (Walton County),FL,light,2220,0504 cnt 5 bright,colorful lights at 230 deg to 250 deg Magnetic moving in many directions within degrees for 37 min. Ret. military wit +1999-12-14,36.9741667,-122.0297222,Santa Cruz,CA,light,30,I was looking at the North Western skies at approx 07.45 A bright light came from the South It seemed to hover for a moment then shoot +1999-12-14,37.2708333,-79.9416667,Roanoke,VA,teardrop,2,At 16:52 under partly cloudy skies I witnessed a luminescent(white hot) teardrop shaped object which appeared in the Notheast and moved +1999-12-14,33.7488889,-84.3880556,Atlanta,GA,fireball,5,Witnessed 5 fireballs streaking across the sky at a very rapid rate between 21:30 and 22:30 on 12/14/99 in the Atlanta area- from diffe +2001-12-14,33.7455556,-117.8669444,Santa Ana,CA,circle,20,I saw a rouned craft gliding across the sky over the mountains in Southern California. +2001-12-14,34.1397222,-118.0344444,Arcadia,CA,light,3600,Large, bright stationary light in sky over eastern LA county. +2001-12-14,35.2822222,-91.3652778,Augusta,AR,light,180,Bright fast moving light near the White River Bridge on Highway 64, Arkansas. +2002-12-14,35.2225,-97.4391667,Norman,OK,triangle,20,triangular object +2002-12-14,31.7586111,-106.4863889,El Paso,TX,unknown,120,Freeway Arc Light +2002-12-14,30.5066667,-88.2338889,Irvington,AL,light,300,High speed rotating lights flas across the sky. +2003-12-14,47.2530556,-122.4430556,Tacoma,WA,unknown,60,I was driving on SR-16 East bound (Nalley Valley) Tacoma, Wa.and a green streak of light raced across the sky from out of the N.W. goin +2003-12-14,47.3811111,-122.2336111,Kent,WA,circle,60,I saw another green object exactly 20 min. after the first sighting, while driving North on the Valley Freeway SR-167 @ 00:46AM it to w +2003-12-14,44.0522222,-123.0855556,Eugene,OR,unknown,120,Extraordinary set of 2 long lasting flashes light up the entire sky. +2003-12-14,38.6858333,-121.3711111,North Highlands,CA,circle,120,Three lighted, yellow circles rotating across the sky in a straight path. +2003-12-14,38.7908333,-121.2347222,Rocklin,CA,circle,1,My husband and I were driving eastbound on Interstate 80 between Rocklin and Auburn, California. A bright glowing blue light appeared f +2003-12-14,36.1988889,-115.1166667,North Las Vegas,NV,fireball,3,Green Fire Ball Falling From The Sky +2003-12-14,39.8044444,-120.1772222,Vinton,CA,fireball,2,large meteor like object surrounded by bright green light +2004-12-14,45.5236111,-122.675,Portland,OR,disk,10,Circular shaped space craft moved slowly in the sky, hovered, then shot off. ((NUFORC Note: Possibly not a serious report. PD)) +2004-12-14,32.9125,-96.6386111,Garland,TX,unknown,90,I saw a dim indeterminately shaped object that flew silently about 1.5 degrees per second whose only hint of its appearance was in the +2004-12-14,40.8436111,-81.7641667,Orrville,OH,other,300,3rd time seeing the most peculiar aircraft I have ever seen. +2004-12-14,34.2347222,-88.2586111,Tremont,MS,light,180,A strange sound appeared to be coming from something hovering over our house. As soon as it came it all of a sudden stopped. +2004-12-14,42.1058333,-84.2483333,Brooklyn,MI,light,120,Bright orange light flares, changes into tight cluster of blinking lights that moves erratically over Brooklyn, Michigan. +2004-12-14,33.4483333,-112.0733333,Phoenix,AZ,light,300,Light above South Mountain, Phoenix +2004-12-14,33.7877778,-117.8522222,Orange (Also Visable From Covina),CA,fireball,300,Saw Strange line of light due east of location in Orange, CA shortly before sun crested over horizon. Ran into house to get camera and +2004-12-14,34.4438889,-116.9669444,Lucerne Valley,CA,triangle,360,Large Triangle spotted In Lucerne Valley, CA on a clear cool night +2004-12-14,43.3316667,-83.7380556,Frankenmuth,MI,triangle,600,we saw an object that we know was not from earth +2005-12-14,27.4952778,-81.4411111,Sebring,FL,light,60,Light hangs mid-air then dashes across entire horizon before dissapearing +2005-12-14,42.5997222,-71.3677778,Chelmsford,MA,circle,5,Bright light covered distance in seconds. +2005-12-14,34.9702778,-78.9455556,Hope Mills,NC,cylinder,240,A cylindrical object drops from the air, stops, hovers to the right and disappears. +2005-12-14,48.3725,-114.1805556,Columbia Falls,MT,fireball,30,large firball falls behind columbia mountain +2005-12-14,42.7538889,-76.7027778,Aurora,NY,light,2400,Appearance of odd shaped bright white/red spherical light with rapid extreme random movements in night sky. ((Venus??)) +2006-12-14,36.1511111,-95.5091667,Inola,OK,circle,30,circle shape half way lite up with dim yellowish lights +2006-12-14,41.7880556,-87.8102778,Summit,IL,circle,7,Midway airport area, sphere or disc hovering and then accelerating rapidly +2006-12-14,40.1633333,-76.3952778,Manheim,PA,light,1200,There were 3 red lights sitting in the sky. They would stay lit for a minute and then fade away only to light up again minutes later. +2006-12-14,40.3294444,-76.5155556,Annville,PA,sphere,20,Grouping of 8 or more spherical lights hovered, and then disappeared a few at a time until they were all gone +2006-12-14,38.9822222,-94.6705556,Overland Park,KS,other,30,3 dots of light that changed formation and speed instantly +2006-12-14,35.3061111,-78.6091667,Dunn,NC,triangle,600,Triangle shaped craft seen +2006-12-14,37.9358333,-122.3466667,Richmond,CA,circle,300,This wasnt a Plane or Blimps . Lets get this straight +2006-12-14,42.3252778,-75.3127778,Unadilla,NY,disk,3600,breath taking view +2007-12-14,39.0061111,-77.4288889,Sterling,VA,unknown,180,Fast moving object zig zagging over Washington DC +2007-12-14,41.5733333,-87.7844444,Tinley Park,IL,triangle,300,Triangle Shape object over Tinley Park, IL +2007-12-14,40.7363889,-73.8783333,Elmhurst,NY,triangle,1800,large low altitude motionless and brightly lit triangular object appearing in overcast dawn sky over Elmhurst, NY +2007-12-14,30.7997222,-81.69,Kingsland,GA,triangle,900,((HOAX??)) It was a tringle with light on the ends and would fully brust in bright light. +2007-12-14,40.2736111,-76.8847222,Harrisburg,PA,other,600,Five points of light in a V formation over Susquehanna River +2007-12-14,34.1333333,-109.2852778,Springerville,AZ,light,20,Very much like an ordinary star, except that it moved quickly and erratically in the vicinity of a stationary "star" +2007-12-14,35.7913889,-78.7813889,Cary,NC,sphere,15,Large round bright object seen flying above tree line in Cary, NC +2007-12-14,40.5366667,-75.6316667,Breinigsville,PA,fireball,5,Fireball Sighting +2007-12-14,44.3061111,-71.7705556,Littleton,NH,unknown,900,Square pulsing glow +2008-12-14,40.2969444,-111.6938889,Orem,UT,light,1,white orbs flying at extreme speeds showing up out of thin air. +2008-12-14,33.6597222,-85.8316667,Anniston,AL,light,1200,1 bright light was seen North North west of location near 431/Bynum Leatherwood road. The light was motionless for about 18 min and the +2008-12-14,35.1472222,-107.8508333,Grants,NM,unknown,1800,2 orange flashing lights with 2 different color lights at bottom. The top light keep blinking. ((NUFORC Note: Star?? PD)) +2008-12-14,36.175,-115.1363889,Las Vegas,NV,light,25,Thought it was a shooting star, until it began to move horizontally and blink intermittingly +2008-12-14,40.7441667,-73.4825,Bethpage,NY,cigar,60,Cigar shaped UFO over Long Island NY December, 14 2008 +2008-12-14,40.7763889,-73.4677778,Plainview,NY,cigar,40,300 ft Cigar Shaped UFO traveling at Mach speed at approx. 15ꯠft above Grumman in Bethpage, NY +2008-12-14,38.7955556,-77.6141667,Gainesville,VA,disk,120,I wanted to report an interesting sighting that occurred at 13:00 hours(1:00pm) on December 14 2008 in the towns of Gainesville/Haymark +2008-12-14,37.9886111,-84.4777778,Lexington,KY,light,900,Starlike object gives dazzling light show. +2008-12-14,39.4561111,-77.9641667,Martinsburg,WV,triangle,300,Triagular object hovering overhead +2009-12-14,37.5072222,-122.2594444,San Carlos,CA,rectangle,300,Eerie rectangular shape in san carlos CA +2009-12-14,41.1844444,-73.1336111,Stratford,CT,circle,5,GREEN FIRE BALLS STRATFORD CT +2009-12-14,33.4936111,-117.1475,Temecula,CA,unknown,60,White round light moving very fast thru the nite sky over temecula,ca. +2009-12-14,42.1055556,-71.5527778,Mendon,MA,unknown,30,Red, Blue , Green , and White Lights Moving Slowly and Quietly on Horizon then quickly changed direction. +2009-12-14,40.7141667,-74.0063889,New York City (Manhattan),NY,cross,10,The UFO was a cross with nine lights and was seen in Mannhattan , New York. +2009-12-14,32.0575,-97.7491667,Walnut Springs,TX,light,120,A orange color light stationary, then another blinking on almost like car headlights but in the sky and big. The second light was the f +2009-12-14,39.3111111,-94.9222222,Leavenworth,KS,cylinder,900,Several constant beams of light spread out across the sky +2010-12-14,28.3641667,-82.6936111,Hudson,FL,cone,1800,Strange lights over the gulf near Hudson Beach, Florida +2010-12-14,35.3583333,-79.8947222,Troy,NC,sphere,600,Two orange spheres were flying together before they joined back together and accelerated straight up into the sky and out of sight. +2010-12-14,40.7608333,-111.8902778,Salt Lake City,UT,light,300,5 red lights over Salt Lake City +2010-12-14,41.9316667,-87.9888889,Addison,IL,light,900,Extremely bright light, starlike +2011-12-14,44.0977778,-70.2316667,Auburn,ME,circle,120,7 what looked like bright stars, moving same direction, upwards at times, no sound, faded away one by one +2011-12-14,38.5816667,-121.4933333,West Sacramento,CA,other,5,Apparent meteor that changed from white to a green glow just before it impacted....or near impact +2011-12-14,43.1413889,-95.1441667,Spencer,IA,sphere,30,Green light ufo +2011-12-14,38.7908333,-121.2347222,Rocklin,CA,formation,30,Nine lights ascending over Rocklin/Lincoln sky and then disappear. +2011-12-14,33.5602778,-81.7197222,Aiken County (Rural),SC,formation,120,Six hunters see peculiar cluster of lights descend to the ground, hover, then streak off. ((NUFORC Note: Case resolved; flares. PD)) +2011-12-14,42.525,-71.7602778,Leominster,MA,oval,60,I thought it was a plane going into the small airport in Leominster but realized this was way to big and low for that +2011-12-14,35.9605556,-83.9208333,Knoxville,TN,fireball,60,Orange flickering light in sky +2011-12-14,33.4483333,-112.0733333,Phoenix,AZ,disk,1200,Many amber colored spheres +2011-12-14,37.8716667,-122.2716667,Berkeley,CA,cigar,4,Fast moving craft in the Bay. +2011-12-14,35.2269444,-80.8433333,Charlotte,NC,sphere,2.5,On December 14th I was outside walking around my neighborhood with a friend of mine. Out of the corner of my eye, I saw a white circle +2012-12-14,38.6858333,-121.3711111,North Highlands,CA,triangle,30,Large, fast-moving, triangular object with orange lights spotted in Sacramento sky. +2012-12-14,35.0525,-78.8786111,Fayetteville,NC,disk,1200,Bright lights appeared then object came towards us. +2012-12-14,37.2152778,-93.2980556,Springfield,MO,light,1200,Fast moving red light making circles, zig zags, hovering, and changing brightness. +2012-12-14,38.6272222,-90.1977778,St. Louis,MO,diamond,45,Diamond Shaped Object with Three Distinct Circles over Saint Louis, MO during Geminid Meteor Shower +2012-12-14,29.9544444,-90.075,New Orleans,LA,flash,4,With a couple of hours in the New East Area i saw two different flaring objects in the sky moving at a extremly fast speed then vanish. +2012-12-14,34.1477778,-118.1436111,Pasadena,CA,sphere,3600,Floating sphere seen changing colors and changing directions over Pasadena Ca. twice this month! +2012-12-14,40.7141667,-74.0063889,New York City (Queens),NY,changing,180,We spot a UFO on the sky in Queens over the Long Island Expresway. +2012-12-14,39.1619444,-84.4569444,Cincinnati,OH,light,5,Bright orb "free falling." +2012-12-14,35.1494444,-90.0488889,Memphis,TN,circle,2700,Lights in sky. ((NUFORC Note: Possible advertising light?? PD)) +2012-12-14,42.2830556,-87.9530556,Libertyville,IL,fireball,60,5 orange fireball round flying spacecrafts in the sky in a line in Libertyville at 9:50 on 12-14-12. +2012-12-14,36.175,-115.1363889,Las Vegas,NV,sphere,180,Floating reddish/orange sphere appeared to fall and crash just North of North Las Vegas after floating for a few minutes. +2012-12-14,39.0180556,-77.2088889,Potomac,MD,triangle,2400,I and girlfriend noticed a bright object in the sky around 10:45. +2012-12-14,39.6294444,-79.9561111,Morgantown,WV,sphere,4,Orange sphere descends over Morgantown airport. +2012-12-14,38.8047222,-77.0472222,Alexandria,VA,light,60,Orange Flickering Light Moving and Motionless near Washington, D.C. +2013-12-14,34.0633333,-117.65,Ontario,CA,fireball,3,Green light falling from sky. ((NUFORC Note: Possible meteor from Geminid Meteor shower?? PD)) +2013-12-14,28.7497222,-82.2969444,Floral City,FL,cigar,20,Cigar shaped object moving north to south without sound. +2013-12-14,33.0580556,-112.0469444,Maricopa,AZ,circle,40,circular silver object moving slow almost hovering..sun reflected off it ..went straight up and disappeared within 5 secs clearblu sky +2013-12-14,40.6255556,-103.2072222,Sterling,CO,rectangle,15,Bright flashing red light moving north easterly.. +2013-12-14,44.7458333,-118.2011111,Sumpter,OR,light,240,Orange glowing lights rising. +2013-12-14,61.2180556,-149.9002778,Anchorage,AK,flash,2,Strange flash in the sky. +2013-12-14,35.0136111,-97.3608333,Purcell,OK,sphere,60,"Christmas Star" - Multicolored, pulsating sphere spotted on northern horizon. +2013-12-14,33.4483333,-112.0733333,Phoenix,AZ,fireball,5,Fireball seen 19th ave/Dunlap, Phoenix. +2013-12-14,30.3319444,-81.6558333,Jacksonville,FL,circle,60,At night I look up at the sky to admire the stars if I am walking home from work at night. This night in particular I was walking from +2013-12-14,26.6583333,-80.2416667,Wellington,FL,light,1200,17+ Orange balls of light moving from the Southeast to Northwest. +2013-12-14,25.7738889,-80.1938889,Miami,FL,light,300,Flashing light over Miami. +1945-12-15,33.3941667,-104.5225,Roswell,NM,sphere,60,Sphere in Roswell. Were aliens looking for thier dead ? +1954-12-15,40.3469444,-74.0647222,Red Bank,NJ,circle,300,Bright orange light, about the size of a pea at arms length, moving slowly from the west to NE. I was a soldier, stationed at Ft. Monm +1966-12-15,42.4694444,-93.8158333,Webster City,IA,sphere,120,Two silent and slowly moving red spheres suddenly accelerate and vanish. +1966-12-15,40.0969444,-75.47,Valley Forge,PA,sphere,360,Ball decending toward home about 50 yds. away and about 50 ft. high..Son panicked and ran into house thinking it was a plane about to c +1967-12-15,38.5291667,-76.9755556,La Plata,MD,circle,600,bright rotating colors, two objects, one large and one much smaller. +1969-12-15,30.2044444,-91.1972222,Glenmore,LA,circle,20,A very clear sighting on highway U.S. 165 in Louisiana north of Oakdale near the small town of Glenmora in 1969. +1973-12-15,47.0380556,-122.8994444,Olympia,WA,diamond,600,Diamond shaped object flying south from Seattle towards Portland with 1 light on each corner and a red beam rotating from underneath. +1974-12-15,30.0858333,-94.1016667,Beaumont,TX,cigar,3600,Watched star like object on the horizan go up in an arch and then approach me and fly close enough so I could see the pilot. +1976-12-15,39.0286111,-96.8311111,Junction City,KS,diamond,180,saw large diamond shaped craft fly almost directly over head at night (bright moon w/thin clouds) . Craft made humming sound that wasn' +1977-12-15,38.2855556,-85.8241667,New Albany,IN,disk,120,Flat black disc, no lights, spinning with a slight wobble, no sound +1977-12-15,34.3622222,-92.8127778,Malvern,AR,light,15,I saw a red dot dancing radically in the night sky.It was to the north of me and I watched it untill it shot,like a red streak of light +1978-12-15,44.2911111,-121.5480556,Sisters (Near),OR,other,5,neon multi-colored jellyfish type hovering object in Oregon late 70's -first report of this incident +1979-12-15,41.3572222,-88.4211111,Morris,IL,light,300,strange light from sky came down in field then back up again. +1982-12-15,28.8002778,-81.2733333,Sanford,FL,disk,60,I WAS COMING HOME IN DOWNTOWN SANFORD FL. WITH MY WIFE AT THE TIME, WHEN A LITTLE HISPANIC BOY WITH A DOG ON A ROPE CAME RUNNING AROUND +1982-12-15,36.5483333,-82.5619444,Kingsport,TN,triangle,30,Triangular craft with multicolored lights +1983-12-15,35.7111111,-78.6144444,Garner,NC,triangle,900,An in trouble triangle UFO seen hovering above tree top level in a residential neighborhood. +1985-12-15,32.6097222,-85.4808333,Auburn,AL,unknown,300,Bright lighted object 30 feet above me, rose, sped away, emitted shower of sparks in distance +1986-12-15,41.9444444,-71.2861111,Attleboro,MA,disk,120,large disc, no more than 80ft above our car, 4 witnesses, 2 full minute sighting +1988-12-15,35.8533333,-79.5719444,Liberty,NC,triangle,60,Large triangular object with white lights along the side. Silent +1990-12-15,38.3363889,-75.0852778,Ocean City,MD,oval,10800,2 hovering discs probing ocean water +1992-12-15,42.3563889,-73.2852778,Lenox,MA,disk,240,It came up through the trees and had red lights spaced around it. I could see it plain as day in front of me +1992-12-15,37.0505556,-80.4977778,Fairview (Scott County),VA,disk,480,Two saucer-like objects with lights floating along a valley seen by two witnesses, went up the mountain and disappeared. +1992-12-15,37.4430556,-93.0308333,Elkland,MO,oval,900,I was followed by an oval shaped object for several miles and it took off rapidly after I shined a spotlight on it. +1993-12-15,44.5191667,-88.0197222,Green Bay,WI,disk,120,Low circular light/flying object and multi-directional changing lights in the sky +1993-12-15,33.5422222,-117.7822222,Laguna Beach,CA,oval,45,1993 Observation of object moving at extreme angles and speed off Catalina Island +1993-12-15,41.8438889,-79.1452778,Warren,PA,triangle,900,I was about 10 years old at the time, I remember playing outside in the snow, and eventually laying on my back looking up at a clear, s +1994-12-15,41.0997222,-80.6497222,Youngstown,OH,teardrop,1800,U.F.O in Youngstown,Oh +1994-12-15,33.6469444,-117.6827778,El Toro,CA,light,180,Saw a light in the valley moving back and fourth directly over the El Toro Marine Corps Air Station. It left straight up when two F/A-1 +1994-12-15,40.9152778,-81.1061111,Alliance,OH,formation,1800,Brightly Colored Orbs Over Portage County +1994-12-15,39.7683333,-86.1580556,Indianapolis,IN,triangle,30,Ok, I was in 7th grade when this happend, but interested in UFO's. I was coming out of my middle school after a basketball game. Ther +1994-12-15,34.3988889,-119.5175,Carpinteria,CA,unknown,600,I lived on the beach in Carpinteria at the time of the sighting. The reason I am writing to you is that I have never heard of the type +1994-12-15,41.3208333,-93.1091667,Knoxville,IA,changing,7200,Hovering object seen high in night sky as a /\ (this should be like an arrowhead) changing or to a < or making a turn. +1995-12-15,39.2125,-76.7138889,Elkridge,MD,fireball,4,Late December 1995 green fireball with pale green tail flew over I-95 at around 7:30. Also spotted in Annapolis around the same time. +1995-12-15,37.9,-86.755,Hawesville,KY,changing,300,Strange orange light/craft hovering noiselessly overhead. +1995-12-15,42.55,-99.8622222,Ainsworth,NE,light,1800,Stationary light turns off then on then remains in sky for the entire next day, but nobody notices? +1996-12-15,41.4138889,-73.3038889,Newtown,CT,teardrop,60,Strange craft appeared in sky , then zoomed away +1996-12-15,35.2044444,-89.8738889,Bartlett,TN,other,5,On a December night񫺌, I saw a cresent shaped U.F.O. >>>>>>>> ) It was almost as bright as the moon but not as bright. I was looki +1997-12-15,48.1191667,-96.1808333,Thief River Falls,MN,disk,10,BRASS UPSIDE DOWN CUP AND SAUCER. GREEN AND WHITE LIGHTS. ANIMATED OBJECTS MOVING ABOUT. BUSINESS -LIKE. +1997-12-15,41.7858333,-88.1472222,Naperville,IL,disk,600,I was retiring for the night and got into bed. The room was dark and the window was slightly open. As I turned my head to the left as I +1997-12-15,37.7058333,-121.0838889,Salida,CA,light,10,Two lighted circular UFO's play follow the leader +1997-12-15,38.8344444,-88.6280556,Iola,IL,fireball,1200,((HOAX??)) A massive flaming/glowing eyeball floats by then min later a streak of light from space making a 60* angle above us. +1997-12-15,41.4088889,-75.6627778,Scranton,PA,circle,20,I looked outside my window and saw a circular object fly overhead. It had red and green lights in the front +1997-12-15,44.23,-69.7758333,Gardiner,ME,disk,900,Saw Disk-like object above trees. Hovering then doing a oval orbit. Watch for about 10-15 minutes. Disapeared behind tree line. +1997-12-15,43.3269444,-83.0802778,Marlette,MI,circle,180,A large solid noiseless object, possibly round, with four lights, passed slowly over a residential neighborhood in Marlette, MI. It ha +1998-12-15,42.7630556,-88.2141667,Waterford,WI,rectangle,300,silent Large slow moving rectangle shape close to ground . waterford wisconsin 1998 +1998-12-15,39.2902778,-76.6125,Baltimore,MD,disk,600,..An armada in formation flying over the Baltimore beltway +1998-12-15,38.2325,-122.6355556,Petaluma,CA,circle,1,Bright white disk, traveling rapidly in a straight line from Northwest to North toward the horizon. +1998-12-15,33.7488889,-84.3880556,Atlanta,GA,egg,120,On approach to downtown atlanta via automobile (traveling east on I-20) I noticed what I thought was a military helicopter or transport +1998-12-15,33.7488889,-84.3880556,Atlanta,GA,sphere,900,Shiny golden metallic sphere gliding across the skies of Atlanta, GA. December 15, 1998, 09:07am. +1998-12-15,34.3180556,-86.4958333,Arab,AL,sphere,2700,Bright orange sphere in southwest quadrant of sky which appeared to be at an altitude of approximately 40ꯠ feet close to Atlanta/Bir +1998-12-15,39.1619444,-84.4569444,Cincinnati,OH,egg,30,It was fast, at a very high altitude. It looked very small and had an odd contrail. Clear sky. +1998-12-15,39.9783333,-86.1180556,Carmel,IN,fireball,3600,I went outside to pick up the trash cans and i saw 10-15 jets heading in the same direction towards two fireballs. I remember thinking +1998-12-15,43.0830556,-73.785,Saratoga Springs (Crescent &Amp; Kaydeross Ave.),NY,sphere,120,Glowing,spinning rapidly,displaying quickly changing multi-colored patterns and repeating designs,hovering silently at 70ft.Videotaped. +1998-12-15,39.5138889,-121.5552778,Oroville,CA,light,1200,A pair of lights joined by another light. They separate back into pair and single. +1998-12-15,40.6883333,-75.2211111,Easton,PA,cigar,300,While driving home with family, heading south on 25th St. Saw a cigar shaped craft, with lights flying low, slow and heading east tow +1998-12-15,64.8377778,-147.7163889,Fairbanks,AK,formation,300,formation of brilliant amber-orange lights completely silent over Fairbanks, AK +1998-12-15,40.6258333,-75.3708333,Bethlehem,PA,triangle,240,Dark equilateral triangle outlined by lights, no noise, east to west movement, very slow speed. +1998-12-15,35.0844444,-106.6505556,Albuquerque,NM,cross,15,large cross shaped ship flew over the city . +1998-12-15,39.515,-84.3983333,Middletown,OH,circle,600,I was driving to work at approx.22:00p.m. going down rte.4 heading toward Middletown,Ohio from Dayton,Ohio where I reside. as I approac +1998-12-15,37.6738889,-80.8894444,Hinton,WV,light,300,Two lights at extremely high altitude and speed, travelling parallel to each other, in an Westerly direction. They first appeared to b +1998-12-15,28.5380556,-81.3794444,Orlando (Disney World Resort),FL,unknown,60,Three or four red lights int he shape of a squre or triangle way up in the sky moving at a rapid pace. +1999-12-15,36.2341667,-76.3266667,Woodville (From, To Weeksville (Approx. 16 Mi.)),NC,diamond,6300,I 1st saw it while heading no. on int. 17 in woodville and followed it all the way to weeksville...it was NOT a plane, OR a helicopter. +1999-12-15,29.7855556,-95.8241667,Katy,TX,fireball,8,looked like a really BIG .. long lasting.. blue/green shooting star. appeared from top of my windshield and vanished in the distance. +1999-12-15,41.2586111,-95.9375,Omaha,NE,circle,60,Dark brown circular object flew silently South-Southeast. +1999-12-16,43.1347222,-76.1302778,North Syracuse,NY,light,180,the object was stationary then moved horizotally and away at the same time across the night sky +2000-12-15,39.2655556,-123.2033333,Redwood Valley,CA,light,5,A soundless, bright blue light that moved very fast and felt as though it was not a thing but a person. +2000-12-15,32.7152778,-117.1563889,San Diego,CA,light,4,Fast flickering light over San Diego, CA +2000-12-15,38.6244444,-76.9394444,Waldorf,MD,light,10,A bright green fast moving light. +2000-12-15,37.4419444,-122.1419444,Palo Alto,CA,disk,60,Hovering bright disc +2000-12-15,63.6941667,-170.4788889,Savoonga,AK,disk,20,Looked like a spinning disk on apple computers when waiting for a program to load. +2000-12-15,40.7141667,-74.0063889,New York City,NY,changing,600,a report of the incident that occurred today, December 15th 2000 involving a siting of unknown flying objects over New York City. +2000-12-15,64.7511111,-147.3494444,North Pole,AK,sphere,3600,Bright Orange Sphere hovering low on horizon, rotating with "outer aurora" glow. Identical to objects reported in 09/24/98 and 02/10/99 +2000-12-15,40.6952778,-80.305,Beaver,PA,disk,600,A white strobe flashed on a short appendage, which was off to one side of the graphite-colored disk. +2000-12-15,40.6952778,-80.305,Beaver,PA,disk,600,The disk looked very black except for the small surface area being illuminated by its white strobe illuminated by its flashing strobe. +2000-12-15,34.3077778,-83.6336111,Gillsville,GA,fireball,3,white light traveling horizontal in the tree line +2000-12-15,32.2730556,-89.9858333,Brandon,MS,fireball,10,bright light that appears to be aircraft planning to land but then suddenly changes course and flies in opposite direction like a bulle +2001-12-15,60.5427778,-145.7575,Cordova,AK,sphere,600,the object hovered over the airstrip +2001-12-15,42.4391667,-123.3272222,Grants Pass,OR,triangle,300,Very large triangular shaped UFO siting, North-West, outlined in blinking red lights +2001-12-15,36.0725,-79.7922222,Greensboro,NC,triangle,300,Faint amber colored, Triangular shaped object with moving spheres within the structure +2001-12-15,41.6005556,-93.6088889,Des Moines,IA,triangle,240,I was driving to the store and when I turned onto county line road, I saw a huge triangle shape /_\ just like that,, In the middle ther +2001-12-15,33.9375,-117.2297222,Moreno Valley,CA,triangle,10,Triangular shaped craft sighted. +2002-12-15,33.2033333,-86.8616667,Maylene,AL,light,15,Light, orb sighting in middle Alabama, 2002 +2002-12-15,34.2283333,-118.5358333,Northridge,CA,circle,120,This is how the UFO Appeared/ +2002-12-15,41.5755556,-72.3325,Colchester,CT,cylinder,60,The object was cylinder shaped and had a light coming out of the bottom +2002-12-15,38.6580556,-77.25,Woodbridge,VA,chevron,240,Silver boomerang like objects moving in a vortex like dog fight and one would break in a straight line and the rest would catch up. +2002-12-15,36.175,-115.1363889,Las Vegas,NV,triangle,2,I didnt even notice the craft until I got home, Must have been crusing extremely fast. +2002-12-15,36.1475,-85.2683333,Monterey,TN,circle,60,Circular object with red, green, and white lights, about 100 feet above the trees +2002-12-15,33.6188889,-117.9280556,Newport Beach,CA,light,90,Just happened to be in the backyard looking up and saw a bright pinpoint of light. Very high up, probably above the atmosphere. It's +2002-12-15,34.0513889,-84.0713889,Suwanee,GA,light,45,Perfect ball of light moving at tremendous speed that made no sound. +2002-12-15,35.7972222,-82.6841667,Marshall,NC,oval,30,A friend and I saw a round shape/object filled with strong white light cross the sky in a descend leaving smoky trace +2002-12-15,47.6063889,-122.3308333,Seattle,WA,disk,30,We saw a row of different colored lights north of house, some distance away for at least an hour. +2003-12-15,38.0997222,-86.1586111,Central,IN,circle,120,My mom and me were coming up our drive way when she told me to look into the sky. A circular, glowing THING went across the sky in a wa +2003-12-15,43.0238889,-70.9141667,Stratham,NH,light,5,The object was stationed outside our house, glowed brightly in a blue/green mix for about 5 seconds, and then vanished just as fast. +2003-12-15,40.7061111,-83.8438889,Alger,OH,other,15,BANK OF LIGHTS IN THE SKY. +2003-12-15,34.5022222,-97.9575,Duncan,OK,changing,60,I was headed south on main st. in Duncan Okla.. I stopped at the red light and up in the sky to my southwest a bright red light caught +2003-12-15,31.3613889,-96.1438889,Jewett,TX,light,900,three bright lights motonless for minutes, then sped away +2003-12-15,38.2972222,-122.2844444,Napa,CA,circle,1800,At 6:00 pm, an unidentified "object" was shining very brightly in the western portion of the sky, more in a southerly direction to wher +2003-12-15,38.3605556,-75.5997222,Salisbury,MD,changing,900,Vacillating object seen through kitchen window +2003-12-15,29.6513889,-82.325,Gainesville,FL,light,10800,Stars flashing and moving +2003-12-15,28.3858333,-80.7422222,Cocoa,FL,fireball,4,A green ball of light in the south east sky moving in an arc like falling then dissapearing. +2003-12-15,31.7619444,-95.6305556,Palestine,TX,light,3600,Bright lights continually making the sign of the cross +2003-12-15,34.1722222,-118.3780556,North Hollywood,CA,fireball,2,white, blue, & green in the Valley +2004-12-15,30.3502778,-89.1527778,Long Beach,MS,light,300,It was 4:25 a.m. on Wednesday 12/15/04 and I was preparing to set out for work. I had taken some water outside to de-ice my truck winds +2004-12-15,37.4419444,-122.1419444,Palo Alto,CA,formation,2040,Several V-Shpaed Formations of Amber glowing craft float across the night sky +2004-12-15,38.5722222,-94.8788889,Paola,KS,triangle,120,3 traingle shaped objects, low to the gorund +2004-12-15,27.9472222,-82.4586111,Tampa,FL,rectangle,180,Huge rectangular object at 2:05 pm flying(or whatever) low and slow. +2004-12-15,39.9783333,-86.1180556,Carmel,IN,oval,240,Bright pinkish orange oval radiating light at 19:35 close to the horizon and about 15-29 degrees east of due north. +2004-12-15,31.3511111,-85.3422222,Headland,AL,unknown,900,Extremely bright light and no noise. +2004-12-15,36.9208333,-89.3505556,Charleston,MO,unknown,600,Low flying craft with no sound +2005-12-15,61.5813889,-149.4394444,Wasilla,AK,triangle,240,Stealth shapped silent object with no noise or vibration from north to south at slow sped and low altitude. +2005-12-15,35.2269444,-80.8433333,Charlotte,NC,light,8,I witnessed a rapid moving and stopping light in the sky. +2005-12-15,40.1222222,-102.7247222,Yuma,CO,other,30,At appro. 6:10 a.m.I noticed,in the eastern dawning skyƺ stars(1 moving).Object was very high in the sky as I probably was seeing sunl +2005-12-15,42.4333333,-71.6083333,Bolton,MA,light,15,2 Bright Lights in the Southwestern Sky before Dusk +2005-12-15,28.7394444,-81.1152778,Geneva,FL,formation,2700,3 Bright lites hovering 5ꯠ ft.above the water with no sound at 5pm on the 15th.of this month.AWESOM!! +2005-12-15,31.3111111,-92.445,Alexandria,LA,cigar,900,AFTER WE GOT BACK FROM DINNER TO THE HOTEL WE SAW A CIGAR UFO WE WERE IN FRONT OF THE HOTEL. +2005-12-15,38.4730556,-77.9969444,Culpeper,VA,flash,1,Culpeper, VA night sky lights up with silent green flash (like daylight through a green filter), followed by brief power outage. +2005-12-15,34.6125,-83.525,Clarkesville,GA,oval,5,They appeared in one picture, but not the other +2006-12-15,45.2102778,-123.1975,Mcminnville,OR,circle,1200,Big Metal Ball. Glowing. +2006-12-15,42.1711111,-87.8444444,Deerfield,IL,light,1800,Object with lights over Chicago on 12/15/06, with bright center light and lighted extensions from the center (spider like). +2006-12-15,42.29,-87.9033333,Green Oaks,IL,circle,3,Bright circle of light at very high speeds and an instant directional change. +2006-12-15,39.1619444,-84.4569444,Cincinnati,OH,light,10,Light traveled from the southwest to the northeast +2006-12-15,39.4352778,-84.2030556,Lebanon,OH,unknown,15,electrical shortage while driving, (1st time to happen while driving) time was in slow motion, calm.. and then electic was restored.. +2006-12-15,33.8572222,-84.02,Snellville,GA,unknown,10,Observed silver "top" in sky and then blinked out. +2006-12-15,61.5813889,-149.4394444,Wasilla,AK,oval,60,it is round and oval and its really fast. +2006-12-15,41.8136111,-71.3705556,East Providence,RI,circle,240,Round flying object travelling slowly with lights around the bottom +2006-12-15,39.6133333,-105.0161111,Littleton,CO,oval,60,Black oval / disk shaped craft banks around low white puffy cloud. +2006-12-15,41.8297222,-86.2541667,Niles,MI,cigar,420,Bright light, cigar shaped, two sets of wings, little sound just at dusk over my farm. +2006-12-15,41.1013889,-81.4419444,Tallmadge,OH,triangle,60,Triangle aircraft/UFO witnessed by pilot (ground observer) in Tallmadge Ohio +2006-12-15,33.2536111,-83.8986111,Flovilla,GA,light,60,White dot almost crashes into a plane +2006-12-15,30.3025,-93.1905556,Moss Bluff,LA,light,60,Ball of Light mirrors large plane over Moss Bluff +2006-12-15,39.4155556,-119.2236111,Silver Springs,NV,triangle,240,Triangular Object over Mustang, Nevada +2006-12-15,26.3583333,-80.0833333,Boca Raton,FL,light,180,i never believed in ufo's but this changed my point of view.... +2006-12-15,45.4316667,-84.9919444,Harbor Springs,MI,circle,10,Circular, florescent object appeared for approximately 10 seconds. +2007-12-15,40.4680556,-76.9322222,Halifax,PA,oval,10,Green meteor +2007-12-15,42.32,-89.0580556,Loves Park,IL,unknown,15,Four unmoving, wide blue beams of light at night from sky to ground, with no light source. +2007-12-15,41.2458333,-75.8816667,Wilkes-Barre,PA,light,600,Large light seen directly under moon +2007-12-15,37.9158333,-122.3105556,El Cerrito,CA,disk,240,Rotating dics-like object with raised dome center over El Cerrito, CA on 12/15/2007 +2007-12-15,37.2752778,-107.8794444,Durango,CO,light,120,bright white light slowing moving across night sky. +2007-12-15,39.6836111,-75.75,Newark,DE,circle,900,Two very bright lights seen in the sky before vanishing, one seen a second time in a different location several minutes later +2007-12-15,27.9011111,-81.5861111,Lake Wales,FL,sphere,5,It was shortly after 7 p.m. Saturday, Dec. 15, 2007, when I noticed a bright object in the sky. It was a bright light, not unlike a sat +2007-12-15,40.2652778,-76.7086111,Hummelstown,PA,circle,10,Possibly some sort of UFO space craft. +2007-12-15,36.1288889,-121.0194444,San Lucas,CA,sphere,20,I have NEVER seen anything like this large, bright, hovering sphere that changed colors. +2007-12-15,40.015,-105.27,Boulder,CO,circle,120,5 large orange circles (looked like fire) that formed circle, then two disappeared and 3 formed a triangle, then disappeared. +2007-12-15,40.015,-105.27,Boulder,CO,light,600,Seven orange lights in the north sky at night gradually faded away. +2007-12-15,30.6236111,-84.4147222,Havana,FL,triangle,900,Trianglar craft hovering in sky with light pattern changed. +2007-12-15,38.9430556,-84.5441667,Independence,KY,light,180,Two red lights that changed colors and began swirling around over tree tops +2007-12-15,34.0522222,-118.2427778,Los Angeles,CA,cylinder,10,12/15/07 22:07 Los Angeles, Ca Cylindrical 10 sec Object was completely silent heading S-W from the east. +2008-12-15,35.265,-116.0736111,Baker (20 Mi. Outside Of),CA,rectangle,10,orange rectangle runs across ground, turns into sphere and back again +2008-12-15,39.6477778,-104.9872222,Englewood,CO,unknown,60,Invisible aircraft +2008-12-15,42.7022222,-83.4027778,Waterford,MI,unknown,90,The second instance of seeing a being while coming out of a sleep for me. I awakened for an unknown reason while sleeping in my bed on +2008-12-15,39.0483333,-95.6777778,Topeka,KS,oval,300,It was shaoped like an oval. +2008-12-15,43.5391667,-89.4625,Portage,WI,formation,180,Lights in sky above field in Portage WI +2008-12-15,40.8861111,-73.2577778,Kings Park,NY,unknown,43,Something flying over the north shore of LI extremely loud and able to be stationary. +2008-12-15,38.5322222,-93.5219444,Windsor,MO,light,3,Strange flashing green light outside of Windsor on South 52 one mile from city limits +2009-12-15,36.7202778,-116.6716667,Ashton,NV,formation,120,I was driving South on US Highway 95 near Ashton,NV on 12/15/2009 at 6:44 P.M.. To the East and to the South East I noticed five lights +2009-12-15,38.9822222,-94.6705556,Overland Park,KS,unknown,10,Object seen over Kansas City during morning commute. Vanished 10 seconds after spotting it. Third time phenomenon observed. +2009-12-15,32.8158333,-97.2277778,Richland Hills,TX,triangle,600,Black triangular craft seen from below and side views with an array of lights +2009-12-15,38.8105556,-90.6997222,O'fallon,MO,unknown,480,Three lights, blinking in sequential order, Consistent disctance between lights, in a straight line. +2009-12-15,33.6602778,-117.9983333,Huntington Beach,CA,changing,60,4 shape shifting lights flies through the sky with planes and helicopters following it +2009-12-15,38.7125,-75.9102778,Preston,MD,light,300,2 horizontal lights over a field weaving in the air but seemingly still then the 2 lights began circle as if they were orbiting an obje +2010-12-15,43.7275,-69.9955556,Bailey Island,ME,flash,900,Flashing floating light over the Atlantic +2010-12-15,33.8302778,-116.5444444,Palm Springs,CA,changing,5,disc-shapped silver object changing form pulsed 3 xs from mountain level went straight up disappeared in seconds +2010-12-15,40.7141667,-74.0063889,New York City (Staten Island),NY,circle,2100,Bright circular object slowly changing shape covered with small lights over Staten Island, New York City +2010-12-15,30.5333333,-92.0813889,Opelousas,LA,chevron,30,Completely silent enormous V shaped craft +2010-12-15,41.3952778,-85.5483333,Kimmell,IN,unknown,300,DRIVING ON OLD ROAD 8 EAST OF US HIGHWAY 33 STOPPED AND WATCHED THREE LIGHTS MOVE SLOWLY OVER US(WE WERE AT A COMPLETE STOP)THEN THE MO +2010-12-15,37.2872222,-121.9488889,Campbell,CA,triangle,120,Triangle UFO over San Joes, CA 12/2010 +2010-12-15,47.6588889,-117.425,Spokane (Rural),WA,cylinder,900,I was sitting in my vehicle waiting for someone to come pick up a vehicle from our impound yard and I was watching a bright light move +2011-12-15,35.2269444,-80.8433333,Charlotte (S Of, On I-85),NC,light,15,My grandson and I was traveling south bound on I_85 from Charlotte, NC toward Atlanta, Ga on 12/15/11 sometime around 12:00 AM. O ur lo +2011-12-15,27.7705556,-82.6794444,St. Petersburg,FL,other,3,Bright blue very fast boomerang shaped light sighted over St. Petersburg, FL +2011-12-15,41.3113889,-105.5905556,Laramie,WY,changing,900,Large Orange UFO over Laramie, WY. +2011-12-15,43.7094444,-98.0294444,Mitchell,SD,light,45,Gold light in the sky that separates +2011-12-15,36.9902778,-86.4436111,Bowling Green,KY,light,300,Odd ship seen, with 3 lights formed into a triangle shape. +2011-12-15,33.1858333,-80.5758333,St. George,SC,light,2400,Strange white light in sky along with other aircraft +2011-12-15,28.0833333,-80.6083333,Melbourne,FL,light,15,Lantern looking light, hovered and shot up in sky. Other people noticed. With girlfriend. +2011-12-15,32.4580556,-83.7316667,Perry,GA,light,120,Bright light in middle Georgia moving extremely slow them disappearing into thin air. +2012-12-15,39.8397222,-74.1905556,Forked River,NJ,diamond,60,2 objects diamond shape, moved in Z pattern and took off one to right one to left sidewards. +2012-12-15,33.9525,-84.55,Marietta,GA,sphere,90,Bright orange sphere in the sky. +2012-12-15,34.8788889,-76.9016667,Havelock,NC,circle,1800,White glowing light fell from the sky and into the trees. +2012-12-15,40.3408333,-76.4116667,Lebanon,PA,unknown,120,Cluster of lights in the sky for aprox 2 minutes. didnt move then suddenly vanished. +2012-12-15,27.2936111,-80.3505556,Port Saint Lucie (Seen From),FL,light,300,14-15 orange lights traveling in w western direction, no noise, lights satggered over about one mile. +2012-12-15,41.9538889,-72.7891667,Granby,CT,light,120,Bright light high in sky moving extremely fast from West to East over Granby, CT. +2012-12-15,44.1002778,-70.2152778,Lewiston,ME,light,120,White Non-blinking light traveling fast. +2012-12-15,40.3355556,-75.9272222,Reading,PA,fireball,180,Fireballs in he sky. +2012-12-15,45.5236111,-122.675,Portland,OR,fireball,3,Fireballs seen south of Portland, OR area. +2012-12-15,42.375,-71.0397222,East Boston,MA,light,3,Light trail. +2012-12-15,35.2783333,-93.1336111,Russellville,AR,chevron,180,Black and Grey boomerang shaped UFO with no lights and no sound +2012-12-15,42.3763889,-71.2361111,Waltham,MA,sphere,5,I am a high school math teacher at a public school in Mass. I have thought that I have seen UFO's before but never as clearly. +2012-12-15,42.9955556,-71.4552778,Manchester,NH,circle,6,Saw very large blueish ball streaking through the sky. +2012-12-15,32.4486111,-99.7327778,Abilene,TX,light,900,High altitude light beams out of clouds in vertical pattern. +2012-12-15,40.6575,-73.5836111,Freeport,NY,circle,300,MY HUSBAND PULLED UP TO OUR HOUSE, 4 WERE HOVERING IN A STRAIGHT LINE. TWO GRADUALLY DISAPPEARED. THEN THE OTHER TWO DISAPPEARED. I PUL +2012-12-16,44.0805556,-103.2305556,Rapid City,SD,other,300,Boomrang object with neon colored lights. +2013-12-15,45.7344444,-93.7102778,Foreston,MN,other,15,Wide black line with pointed front moving across night sky in MN. +2013-12-15,30.2669444,-97.7427778,Austin,TX,light,600,Lights over downtown Austin. +2013-12-15,34.448055600000004,-119.2419444,Ojai,CA,cylinder,60,Silver/white cylinder object hovers then vanishes +2013-12-15,42.2625,-71.8027778,Worcester,MA,other,15,My son and I saw a very bright light swoop down, hover and then go straight up and disappear. +2013-12-15,27.0994444,-82.4544444,Venice,FL,fireball,300,15 objects flying in groups of 3-1. Appeared round with no sound. Flying from north to south. Phone photo confirmed color and shape. Di +2013-12-15,38.5816667,-121.4933333,Sacramento,CA,unknown,300,Observed 3 orange pulsating objects flying in strait formation then dropping suddenly then fading out of view. +2013-12-15,33.1191667,-117.0855556,Escondido,CA,sphere,180,Orange orb clearing sky multiplies into three, one goes back in the direction it came and the other two kept going. +2013-12-15,44.4111111,-72.1397222,Danville,VT,oval,180,Low in the sky, silent with three of the larger, brighter lights forming a triangle. +2013-12-15,38.5816667,-121.4933333,Sacramento,CA,changing,300,Glowing red light crosses night sky, stops, and then disappears into the moon. +1954-12-16,34.0336111,-117.0422222,Yucaipa,CA,oval,70,Luminous oval over Yucaipa, similar object reported by L.A. newspapers over Inyokern Air Base +1985-12-16,39.1325,-94.1983333,Buckner,MO,triangle,720,I saw a space object in December of 1985 near Buckner, Missouri. +1989-12-17,37.3688889,-122.0352778,Sunnyvale,CA,other,300,loud explosions by white star like light +1990-12-16,35.0613889,-95.5680556,Blocker,OK,cigar,600,6 Deputys at roadblock see object in level flight with large exhaust trail,explosion near nose of craft sends multiple smaller objects +1996-12-16,47.6588889,-117.425,Spokane,WA,diamond,360,rotating metallic chrome object shining-intense ruby light , diamond/flat cone shape, stationary high altitude +1997-12-16,34.1733333,-118.5530556,Tarzana (San Fernando Valley),CA,triangle,120,a sharp geometrical(triangular shape) large, low flying,bright lights and took place in san fernando valley- california 2:30 at night. +1997-12-16,40.5594444,-79.9588889,Allison Park,PA,hexagon,240,A long hexagon shaped object crossed the sky just north of Pittsburgh,PA, with heading northeast and moving at a speed that I estimate +1998-12-16,33.5777778,-101.8547222,Lubbock,TX,chevron,180,Object southbound, displaying three white lights, slowed, hovered, quickly accelerated and made a low, banking turn to the east and the +1998-12-16,30.3116667,-95.4558333,Conroe,TX,light,7,Fast point of light (no tail) decending rapidly towards the earth at a down angle of ~45 degrees of 45 degrees +1998-12-16,41.195,-87.1986111,Demotte (Viewed From),IN,teardrop,5,Green round glowing fireball with short glowing tail, fell slowly from below cloud cover to very near ground level, viewed at distance. +1998-12-16,35.3733333,-119.0177778,Bakersfield,CA,fireball,120,Orange glowing fireball with structures radiating from the light source +1998-12-16,26.9758333,-82.0908333,Port Charlotte,FL,disk,180,silent ship close enough to hit with a rock(but i didn't) +1999-12-16,36.1055556,-79.5425,Gibsonville,NC,sphere,120,Yellow-Orange soccer ball sized sphere photographed in my backyard. +1999-12-16,33.9830556,-118.0958333,Pico Rivera,CA,cylinder,300,cylindrical object flying slowly north to south at arox 2000 ft, we (two of us) watched until it disappeard over the san gabriel mounta +1999-12-16,36.0725,-79.7922222,Greensboro,NC,cylinder,600,a cylinder shaped object,say three miles away.heading into a cloud bank. a jet, it looked like millitary jetwas off to the right of it. +1999-12-16,43.1836111,-89.2136111,Sun Prairie (Token Creek),WI,light,120,A disk-shaped light travelling at an extremely fast rate of speed cut across the sky in a non-aircraft flight path from approx. 85º fro +1999-12-16,41.6258333,-74.5980556,Rock Hill,NY,light,120,Two lights following an aircraft +1999-12-16,40.7763889,-73.4677778,Plainview,NY,triangle,300,Saw triangular shaped object w/3 lights. +2000-12-16,47.0530556,-122.2930556,Graham,WA,light,5,I WAS OUT WALKING MY DOG WHEN I SAW A LIGHT GREEN ROUND OBJECT FALLING FROM THE SKY. IT WAS NORTHWEST OF ME. THE SKY WAS PARTLY CLOUDY. +2000-12-16,36.4175,-84.3141667,Pioneer,TN,light,45,sun-sized light after midnight +2000-12-16,32.2047222,-95.8552778,Athens,TX,light,60,We saw a light in the night sky which appeared to be a satellite, but was moving much too fast. +2000-12-16,37.9063889,-122.0638889,Walnut Creek,CA,cross,20,Moving lights on aircraft +2001-12-16,36.9786111,-76.4283333,Newport News,VA,disk,900,Fast glowing disc through the early morning sky. +2001-12-16,27.0438889,-82.2361111,North Port,FL,unknown,180,Craft Unknown +2001-12-16,33.8708333,-79.7555556,Lake City,SC,light,300,it was like a light just sitting in the air and it just went out and it light up in a zigzag pattern and the light just went out for a +2002-12-16,39.7683333,-86.1580556,Indianapolis,IN,circle,5400,Bright wheel looking light, changing colors and size +2002-12-16,26.2708333,-80.2708333,Coral Springs,FL,oval,180,Oval shaped, three engines side by side in the back, 2 fins pointing up on each side in the back. Moved slowly for a few minutes, then +2002-12-16,42.3802778,-72.5236111,Amherst,MA,other,120,Glowing boomerang shaped object, hovering for 2 1/2 minutes +2002-12-16,38.2008333,-77.5894444,Spotsylvania,VA,triangle,1800,Triangular shaped object floating above Rt. 3 was seen and followed for serveral minutes. +2003-12-16,36.9955556,-91.0144444,Van Buren,MO,other,420,red light with white yo- yoing light +2003-12-16,42.5583333,-70.8805556,Beverly,MA,teardrop,120,I was on a break at work when me and a bunch of my co-workers saw the 3 shapes in the sky. They were still for a minute, then took off +2003-12-16,29.7027778,-98.1241667,New Braunfels,TX,oval,20,oval shaped, various random colors, S like flight pattern, vanished. +2003-12-16,32.2344444,-97.755,Glen Rose,TX,triangle,300,Triangular shaped object spotted in Texas night sky +2003-12-16,37.7361111,-120.9344444,Riverbank,CA,other,10,Skyquake Central Valley, California +2003-12-16,41.0052778,-74.2911111,Pompton Lakes,NJ,disk,240,saucer w/red and green blinking lights +2003-12-16,40.7372222,-114.0366667,Wendover,UT,light,5,Beautiful, gold hovering lights. +2003-12-16,42.3316667,-71.1216667,Brookline,MA,light,5,fading object +2003-12-16,32.9622222,-108.6105556,Cliff,NM,light,7,Six bright orange lights appear exactly same distance apart, to be followed after 3 sightings by many twinkling lights. +2003-12-16,34.4436111,-118.6086111,Valencia,CA,circle,40,Both my wife and I saw a flying saucer craft directly over our back yard at an altitude of no higher than 75 feet. It was above us for +2004-12-16,40.1130556,-87.2625,Veedersburg,IN,light,300,At 12:15AM a large extremely bright object in the northern sky was slowly moving south. As it moved closer, its size appeared even gre +2004-12-16,40.0066667,-75.2858333,Ardmore,PA,unknown,600,Bright, randomly flashing, zig-zagging craft or object (possibly orb) off in the distance. +2004-12-16,34.5033333,-82.6502778,Anderson,SC,cigar,300,Silver cigar shaped object with no wings that stopped and changed direction in mid-air +2004-12-16,42.0986111,-75.9183333,Binghamton,NY,other,600,This may not be reportable, but I feel that I must publish it. While going east to west in Binghamton, I was watching what appeared to +2004-12-16,38.1427778,-83.5461111,Farmers,KY,light,300,very bright object in sky, no movement, 2 bright headlight shape with faint light in center. +2004-12-16,38.9636111,-84.0808333,Bethel,OH,triangle,300,MUFON/OHIO REPORT: Big white triangular UFO with flashing lights ... completely silent. +2004-12-16,33.8352778,-117.9136111,Anaheim,CA,fireball,3,large blue fireball moving very fast +2004-12-16,38.7508333,-77.4755556,Manassas,VA,triangle,10,Black Triangle seen low over town of Manassas ((NUFORC Note: Witness elects to remain totally anonymous. PD)) +2004-12-16,34.2683333,-85.5569444,Gaylesville,AL,rectangle,5,Enormous oval object with three lights flew just above tree tops and over my car. +2004-12-16,41.1616667,-112.0255556,Roy,UT,egg,5,Very bight light flashes across night sky. +2005-12-16,30.3319444,-81.6558333,Jacksonville,FL,light,120,small object thought of as a star started moving, changed direction then faded away +2005-12-16,35.7563889,-83.9705556,Maryville,TN,sphere,600,Strange hovering ball of light that floated over Maryville TN on 12/16/2005 at 8 p.m. +2005-12-16,42.3369444,-71.2097222,Newton,MA,chevron,5,Cheveron of light amber lights over 128 South in Massachusetts. I noticed them for about 5 seconds then they disappeared. +2005-12-16,33.8722222,-117.8694444,Placentia,CA,disk,240,To day12/16/2005 Friday at 7.15 pm; together with my wife we think we saw an ufo.The location is Valencia Avenue Placentia Ca 92870 USA +2005-12-16,47.6588889,-117.425,Spokane,WA,fireball,15,fireball fizzel out and resparks later from same spot +2006-12-16,38.1075,-122.5686111,Novato,CA,light,120,Two glowing lights sighted from backroads in Marin. +2006-12-16,39.2902778,-76.6125,Baltimore,MD,unknown,600,Sunlight in the dark. ((NUFORC Note: Missile launch from Wallops Island, VA. PD)) +2006-12-16,42.9708333,-82.425,Port Huron,MI,sphere,600,Observed bright white object heading west from the east, then abruptly turned to the north and climbed at an incredible speed and disa +2006-12-16,40.0161111,-80.7425,Bellaire,OH,fireball,120,bright slow moving light in haze with vapor trail seen ((NUFORC Note: Missile launch from Wallops Island, VA. PD)) +2006-12-16,40.5883333,-82.425,Butler,OH,unknown,30,Low light stops, grows to a very large msty light. ((NUFORC Note: Missile launch from Wallops Island, VA. PD)) +2006-12-16,40.2727778,-80.9969444,Cadiz,OH,changing,240,UFO 12/16/06 Cadiz Ohio , 7am .Hunting trip +2006-12-16,40.2727778,-80.9969444,Cadiz,OH,changing,300,Real UFO sited but denied (missile launch ,lol)NOT!! +2006-12-16,38.8461111,-77.3066667,Fairfax County,VA,circle,600,bright circle light in the sky (it was morning hours)...did not look like a light from a plane ((NUFORC Note: Missile launch. PD)) +2006-12-16,41.1,-80.8575,North Jackson,OH,cone,180,A cone shaped light hovered for about three minutes then disappeared. ((NUFORC Note: Missile launch from Wallops Island, VA. PD)) +2006-12-16,40.2452778,-75.65,Pottstown,PA,sphere,180,Extremely fast round metallic object with very erractic turns as it ascended. ((NUFORC Note: Missile launch from Wallops Island. PD) +2006-12-16,38.4219444,-77.4086111,Stafford,VA,unknown,300,Possible rocket launched from eastern shore of Chesapeke Bay. ((NUFORC Note: Missile launch from Wallops Island, VA. PD)) +2006-12-16,40.6747222,-79.9897222,Valencia,PA,unknown,120,At approximately 7AM I noted a spiral shaped or zigzag jet steam arising from the opposite horizon. ((NUFORC Note: Missile. PD)) +2006-12-16,39.9777778,-79.6147222,Dunbar,PA,sphere,60,Object seen from dunbar PA in th e sunrise ((NUFORC Note: Missile launch from Wallops Island, VA. PD)) +2006-12-16,41.7361111,-79.7633333,Centerville,PA,cylinder,360,Tube shaped object ((NUFORC Note: Missile launch from Wallops Island, VA. PD)) +2006-12-16,40.5544444,-81.9180556,Millersburg,OH,fireball,900,fireball left a glowing contrail as it went out and re- ignited ((NUFORC Note: Missile launch from Wallops Island, VA. PD)) +2006-12-16,40.7988889,-81.3786111,Canton,OH,sphere,1200,Odd hazey sphere apeared over the Akron/Canton area during sunrise. ((NUFORC Note: Missile launch out of Wallops Island, VA. PD)) +2006-12-16,37.6938889,-85.8591667,Elizabethtown,KY,light,3,Bright blue almost LED type light transversing the entire distance of the distant sky in 2-3 seconds. ((Missile launch.)) +2006-12-16,40.926944399999996,-83.0938889,Benton (North Of),OH,light,30,Bright lights that hovered then disappeared. ((NUFORC Note: Missile launch from Wallops Island, VA. PD)) +2006-12-16,28.6608333,-81.3658333,Altamonte Springs,FL,disk,30,weird saucers seen over wal-mart. ((NUFORC Note: Student report. Possible hoax. PD)) +2006-12-16,34.1808333,-118.3080556,Burbank,CA,formation,180,2 glowing objects that manuvered closely to each other then left in opposite diections rapidily +2006-12-16,40.7794444,-74.0241667,Union City,NJ,unknown,180,it was shape shifting or sevral hundred objects where moving in complete sycronized rythm but it was large who could have missed this. +2006-12-16,39.7391667,-104.9841667,Denver,CO,light,3600,Circling White bursts of light traving northbound in Denver, CO December 16, 2006 (6:45 pm to 8:00 pm) ((Advertising lights???)) +2006-12-16,35.9605556,-83.9208333,Knoxville,TN,unknown,180,Large object moving slowly without sound, close to ground, small light on front and flashing light at rear +2006-12-16,33.7747222,-84.2963889,Decatur,GA,light,30,5 Lights seen in sky by Atlanta Georgia, flew like a "school of fish" +2006-12-16,40.2858333,-76.6505556,Hershey,PA,cigar,300,four yellow lights in the sky over Hershey Pa +2006-12-16,30.2669444,-97.7427778,Austin,TX,light,600,Unknown Light over Austin, TX +2007-12-16,34.5022222,-97.9575,Duncan,OK,rectangle,300,Massive, rectangular-shaped craft with lights underneath +2007-12-16,38.6808333,-85.1794444,Carrollton,KY,light,240,2 Lights In Northern Kentucky Sky +2007-12-16,38.0291667,-78.4769444,Charlottesville,VA,light,1800,Wandering lights in the sky over Charlottesville, VA +2008-12-16,43.0480556,-76.1477778,Syracuse,NY,unknown,1800,A whirring sound above our house. +2008-12-16,34.0122222,-117.6880556,Chino,CA,fireball,240,2 NIGHTS, 2 OBJECTS, 2 LIGHTS OF UNEXPLAINABLE FLYING OBJECTS +2008-12-16,41.4458333,-74.4233333,Middletown,NY,triangle,180,Traingle shaped object +2008-12-16,44.5647222,-123.2608333,Corvallis,OR,fireball,120,Object with white tail moving N West to S East at an extreme high rate of speed falling into atmosphere +2008-12-16,42.4391667,-123.3272222,Grants Pass,OR,other,300,IT MOVED SLOWLY ALMOST IN A SMALL CIRCLE TO GET IN THE RIGHT SPOT, AND DROPED SOMETHING OUT TOWARDS THE GROUND. +2008-12-16,47.6105556,-122.1994444,Bellevue,WA,light,120,Three bright lights in formation hovered, then moved slowly northweast and disappeared through the trees. +2008-12-16,42.4391667,-123.3272222,Grants Pass,OR,triangle,1200,red lighted triangle with circling white light at top tip came across sky then hovered. +2008-12-16,32.7286111,-94.9422222,Gilmer,TX,light,1200,Bright light UFOs. Thought the UFO was going to crash into an airplane. Star-like UFOs. +2008-12-16,26.1416667,-81.795,Naples,FL,unknown,180,High altitude, stationary flashing light, 3 minutes in duration. +2008-12-16,42.7652778,-71.4680556,Nashua,NH,changing,240,intense goldish glowing giant star like light in the distance in the sky,changes appearance as it gets closer +2009-12-16,29.7286111,-99.7611111,Leakey,TX,oval,600,Glowing Light Seen Over Leakey Texas +2009-12-16,33.7825,-117.2277778,Perris,CA,disk,300,SPINNING SAUCER, WITH LIGHTS +2010-12-16,39.535,-119.7516667,Sparks,NV,disk,120,Looking out of the window of my house I saw a flying disc. It was white on top and metallic on the bottom. There was just one. It was t +2010-12-16,44.0583333,-121.3141667,Bend,OR,light,30,Lighted circular object over Bend, Oregon. +2010-12-16,37.3394444,-121.8938889,San Jose,CA,oval,300,Cigar shaped object, could be blimp, over east foothills of san jose,( calaveras reservoir area) during afternoon commute. +2010-12-16,40.5247222,-111.8630556,Draper,UT,circle,120,Large round light descending out of the sky onto Draper Parkway onto the cars and disappeared. +2010-12-16,31.8272222,-99.4261111,Coleman (Near),TX,circle,3600,Near Coleman, TX... Orange lights off and on, with no sound +2010-12-16,41.1008333,-74.1166667,Airmont,NY,light,600,3 lights zooming through the sky making loud buzzing sounds then vanishing. +2010-12-16,44.0522222,-123.0855556,Eugene,OR,light,60,slow moving of white orange colored light above eugene oregon airport at 3-5000ft vanished +2011-12-16,34.0702778,-117.395,Bloomington,CA,unknown,240,2 or more UFO's on video at sunrise +2011-12-16,37.3041667,-77.2875,Hopewell,VA,triangle,120,Triangle UFO spotted in Hopewell Virginia +2011-12-16,31.1275,-84.1519444,Pelham,GA,fireball,3,A green fire ball falling to the ground!!! +2011-12-16,42.525,-71.7602778,Leominster,MA,egg,120,Driving east on Rt. 2 just at the Rt.2/190 split in Leominster and saw three egg shaped lights hovering in the sky. +2011-12-16,43.7333333,-88.5686111,Lamartine,WI,flash,360,Incredibly bright, pulsating red and white lights in tandem +2011-12-16,45.0847222,-93.0097222,White Bear Lake,MN,triangle,300,Driving down highway 694 when i saw 3 lights in triangle shape with a red light in center hovering and moving at about 5 miles per hour +2011-12-16,41.4225,-87.9858333,Manhattan,IL,light,1200,A cluster of bright white lights sat in the sky until they moved away from one another in a hovering fashion +2011-12-16,47.6063889,-122.3308333,Seattle,WA,sphere,10,Orange Orb over Magnolia/Discovery Park +2011-12-16,41.7758333,-72.5219444,Manchester,CT,triangle,600,3 slow to fast moving red lights hovering over manchester +2011-12-16,36.7477778,-119.7713889,Fresno,CA,triangle,180,Orange bright lights appeared in the sky +2011-12-16,34.4838889,-114.3216667,Lake Havasu City,AZ,light,30,Red and blue low flying lights speeding through sky. +2011-12-16,47.6105556,-122.1994444,Bellevue,WA,light,5,Man witnesses a strange green lights streak vertically down in eastern sky. +2012-12-16,21.5902778,-158.1125,Haleiwa,HI,oval,3,Bright blue flash in sky 12/16/2012 1:00 am. +2012-12-16,46.3525,-124.0530556,Long Beach,WA,fireball,600,Reddish orange ovalish objects. silent. moving up fro behind a big church and then moving north west. +2012-12-16,33.9938889,-96.3705556,Durant,OK,formation,30,Line of lights. +2012-12-16,27.0994444,-82.4544444,Venice,FL,sphere,600,Orange spheres floating across sky in Venice, FL. +2012-12-16,35.3733333,-119.0177778,Bakersfield,CA,light,120,While facing north and waiting to turn left onto the corner of College and fairfax. I noticed light in the sky to my right (NE). +2012-12-16,43.6613889,-70.2558333,Portland,ME,fireball,180,I saw about 9 yellow/orange fireballs traveling slowly in sets of 3 each in triangular formation. +2012-12-16,44.6994444,-73.4533333,Plattsburgh,NY,triangle,420,Triangle shaped black object. +2012-12-16,28.5688889,-81.5441667,Ocoee,FL,oval,120,10-12 bright orange objects flying together for about 2 min, then suddenly disappeared. +2012-12-16,28.5997222,-81.3394444,Winter Park,FL,fireball,600,Fireball ufo flies south to north and stops. +2013-12-16,41.3116667,-81.5683333,Sagamore Hills,OH,formation,1800,Around 8-10 Lights were rotating counterclockwise and then some would converge at center. Sometimes 2 would cross and sometimes mos +2013-12-16,35.0525,-78.8786111,Fayetteville,NC,unknown,60,Vertical object with red strobes moved in the northern sky from west to east. +2013-12-16,28.5688889,-81.5441667,Ocoee,FL,light,20,Ocoee Fl light 10-15seconds size of a penny if held to the sky. Glowed orange and green with 2 second intervals. +2013-12-16,35.1494444,-90.0488889,Memphis,TN,unknown,360,As I stood outside on the telephone, I noticed something in the sky which at first seemed to look like a flock of birds. It seemed to +2013-12-16,31.1277778,-92.0661111,Marksville,LA,disk,120,I saw this disk and I know it was a ufo. +2013-12-16,38.5563889,-75.5716667,Laurel,DE,unknown,300,Strange lights. +2013-12-16,35.8233333,-78.8258333,Morrisville,NC,formation,60,2 waves of 25-50 silent glowing white spheres slowly flying in formation. +2013-12-16,48.22,-122.685,Coupeville,WA,sphere,90,One extremely bright, round, silent orange object. Moved in very fast, stopped, then moved up and away. +2013-12-16,19.7297222,-155.09,Hilo,HI,oval,300,Flame like object slowly floating 50 feet above us never falling shifted directions. +1977-12-17,43.185,-90.4430556,Muscoda,WI,triangle,20,I saw lights in a triangle shape decending straight down and a red light came on as it went behind the hills. +1989-12-17,36.1894444,-82.9586111,Mosheim,TN,oval,300,Red Oval object in the mountains of Tennessee +1994-12-17,44.7894444,-93.6019444,Chaska,MN,oval,180,Sphere above the horizon, ejecting smaller spheres +1996-12-17,48.7597222,-122.4869444,Bellingham,WA,egg,180,large egg shaped bubble, could see through it yet it was irredecent. About the size of a large pickup truck. Vibrating yet silent +1996-12-17,26.1336111,-80.1133333,Sunrise,FL,sphere,90,We saw a comet like shape heading west to east very fast, Suddenly the comet tail dissapeared, than ignited twice then disapeared.O +1996-12-17,30.775,-94.4152778,Woodville (Outside),TX,triangle,40,triangular shape, rounded on ends, 1 lg yellow/orange light on each corner of triangle +1996-12-17,33.4669444,-117.6972222,Dana Point,CA,light,10,We saw a pinkish light moving in a south to north direction. It traveled at a constant speed covering an approximately 110 degree arc +1997-12-17,29.1869444,-82.1402778,Ocala,FL,fireball,10,Midnight White Oval / Fireball UFO +1997-12-17,34.0983333,-118.3258333,West Hollywood,CA,unknown,600,i saw a glowing object moving from east to west, i noticed at about 25 degrees from horizon and followed it to 90 degrees where it appe +1997-12-17,44.4758333,-73.2125,Burlington,VT,diamond,180,Large object at above 50ꯠ feet: est speed around 3ꯠ kts: diamond design. no visable trail: est 300 x 300 feet. Have seen in ar +1997-12-17,44.5438889,-73.1483333,Colchester,VT,light,45,Saw bright green light, about 11:45 pass over head going to northeast. No sound but radio was out for about ten to fifteen seconds. W +1998-12-17,33.9319444,-117.9452778,La Habra,CA,fireball,5,First appeared as a huge meteor, but instead of burning out it exploded out; left a "dark hole" where it dissapeared followed by a stre +1998-12-17,34.6058333,-86.9833333,Decatur,AL,changing,600,Driving east just before dawn the sky was cloudless. Suddenly a cloud appeared very dence about the size of a football field. it was at +1998-12-17,33.1191667,-117.0855556,Escondido,CA,oval,1,I glanced up and saw a small white oval traveling very rapidly across the sky. I ran outside to get a better look as I had been looking +1998-12-17,32.5158333,-93.7319444,Bossier City,LA,circle,180,I was looking into the bright blue sky wathing a trail from a high speed us aircaft. When I was looking I saw a bright circular item s +1998-12-17,39.1369444,-76.6986111,Severn,MD,fireball,5,Observed green fireball in South sky falling straight down +1998-12-17,47.6063889,-122.3308333,Seattle,WA,light,4,Definitely a meteor, IMHO. steady white light, falling roughly parabolically ~ENE of me. Lasted about 3-4 seconds. +1999-12-17,33.9525,-84.55,Marietta,GA,light,420,Light in N/NE sky headed S/SW-VERY HIGH UP in atmosphere...had appearance of a star, moving relatively slowly and straight (much like a +2000-12-17,28.2438889,-82.7194444,New Port Richey,FL,other,1800,X-shaped object hovered above my house for 20-30 minutes. +2000-12-17,26.7052778,-80.0366667,Palm Beach,FL,triangle,8,at approx. 3:45, myself and a friend observed a triangular ufo traveling slowly above at stratosphere height +2000-12-17,45.8886111,-122.5130556,Fargher Lake (Wa Hwy. 503),WA,unknown,300,Large bright ball of light in the morning sun, appearing to come from a craft. +2000-12-17,38.4022222,-122.8227778,Sebastopol,CA,circle,900,Glowing yellow disc north of SF Bay. +2000-12-17,40.3772222,-105.5211111,Estes Park,CO,chevron,4,As a guest in a friends home, sitting in the living room in a corner chair, I happened to glance out the window to my left and observed +2000-12-17,41.6986111,-88.0683333,Bolingbrook,IL,light,2100,Bright twinkling light hovered for 35 minutes southwest of Chicago, IL. +2000-12-17,41.1383333,-81.8638889,Medina,OH,triangle,300,Black Triangle followed by Orange Orb. +2000-12-17,46.2113889,-119.1361111,Kennewick,WA,light,60,Two objects viewed in the night sky moved at a very high rate of speed from instant stop to a very fast new direction. +2000-12-17,30.4505556,-91.1544444,Baton Rouge,LA,light,300,3 "blinking" objects traveled at different times from the same side across the sky fairly fast. +2000-12-17,38.6272222,-90.1977778,St. Louis,MO,fireball,3,GREEN FIREBALL SIGHTED FROM APARTMENT WINDOW IN METRO SAINT LOUIS MO... +2001-12-17,32.8405556,-83.6325,Macon,GA,fireball,8,On my home from work I saw a large green fireball falling to earth over Macon GA. The ball was large/close enough that if it landed som +2001-12-17,33.4936111,-117.1475,Temecula,CA,sphere,3600,Three shperes +2001-12-17,48.7052778,-119.4383333,Tonasket,WA,other,1305,Strange unusual crafts emitting e.m.p blast then leaving at high speeds. +2001-12-17,30.4505556,-91.1544444,Baton Rouge,LA,triangle,150,triangle sighted 1000 feet up in baton rouge, la +2002-12-17,40.7141667,-74.0063889,New York City (Manhattan),NY,sphere,20,Small silver orbs moving among Manhattan skyscrapers, morning and evening events +2002-12-17,30.7847222,-83.56,Quitman,GA,triangle,1200,The Object came over and hovered above us and left at a fast pace when air force interference came into play. +2002-12-17,35.6047222,-91.2816667,Newport,AR,egg,60,Red Lights outline an object in the sky +2003-12-17,37.3394444,-121.8938889,San Jose,CA,diamond,20,Formation of 12 to 14 large birdlke objects going North to South over Downtown San Jose +2003-12-17,37.0113889,-95.935,Caney,KS,unknown,2,Steady red lights that appeared for a few seconds, vanished and then re-appeared elsewhere in the sky. +2003-12-17,30.4952778,-97.9230556,Jonestown,TX,light,240,There were 3 lights, 2 white and 1 red that strobed occasionally and no sound. +2003-12-17,33.8125,-84.6344444,Austell,GA,light,2700,Bright object in sw sky of austell, ga +2003-12-17,30.4952778,-97.9230556,Jonestown,TX,rectangle,180,A rectangle of lights that floated across the sky. +2003-12-17,40.8022222,-124.1625,Eureka,CA,fireball,420,Very large dancing fireball, 35-40 degrees above NE horizon, with additional small fiery lights emerging and descending toward horizon +2003-12-17,48.0152778,-122.0625,Lake Stevens,WA,unknown,1200,Appears like large star changing colors and shapes, moving in zig-zag pattern then remaining stationary. +2003-12-17,33.9533333,-117.3952778,Riverside,CA,circle,3600,a hexagon formation of moving, pulsating lights above our head +2003-12-17,37.6941667,-122.0852778,Castro Valley,CA,unknown,7200,it was fukin scarry +2004-12-17,40.7319444,-73.1861111,East Islip,NY,light,5,Incredibly fast moving bright light in an oscilloscope-like path +2004-12-17,34.0522222,-118.2427778,Los Angeles,CA,triangle,300,Huge +2005-12-17,45.7380556,-122.4858333,Hockinson,WA,triangle,120,Triangular, slow moving, quiet, brite from a distance, red lights, low to the ground. +2005-12-17,47.32,-114.0930556,St. Ignatius,MT,light,120,Huge bright light rotating recedes into distance and just fades out while I film. +2005-12-17,30.3319444,-81.6558333,Jacksonville,FL,triangle,180,Dark triangle shape with v-shaped lights over the St Johns River. +2006-12-17,41.9697222,-84.3083333,Manitou Beach,MI,fireball,2,Rescue attempt of three hikers on Mount Hood, Oregon. As a recovery of a hiker's body was being broadcast on CNN at 6:51pm ET a firebal +2006-12-17,31.2825,-86.2555556,Opp,AL,circle,7200,a nearly stationary bright illuminating object moving to different locations and becoming stationary again +2006-12-17,40.26,-74.2741667,Freehold,NJ,light,10800,If Orion had a foot, there is a "star"-like object making moves aerodynamically impossible. ((NUFORC Note: Sirius sighting. PD)) +2006-12-17,39.6005556,-77.8208333,Williamsport,MD,triangle,60,triangle UFO +2007-12-17,27.8002778,-97.3961111,Corpus Christi,TX,sphere,10800,12/17/07 Corpus Christi Tx Orange ball light comming at me 8 to 900mph when I shinned LED light at it. +2008-12-17,25.7738889,-80.1938889,Miami,FL,triangle,120,Red Triangle in the sky. +2008-12-17,43.073055600000004,-89.4011111,Madison,WI,triangle,5,i was driving north on hwy 12 towards middleton. i saw at least 6 to 8 red lights off in the distant sky in a V shape that seemed to be +2008-12-17,36.7477778,-119.7713889,Fresno,CA,triangle,300,I saw a black triangle shaped object about 300 ft in length with a dim red light at each point traveling slowly past over me. +2008-12-17,44.0747222,-89.2877778,Wautoma,WI,triangle,300,12/18/08 I reside in central Wisconsin. It is very rural about 70 miles east of Fort McCoy, a military training base. Last e +2008-12-17,40.6658333,-73.4886111,Seaford,NY,unknown,5,through it was a shooting star but was brighter and larger than usual. +2008-12-17,41.0533333,-73.5391667,Stamford,CT,light,2,A large blue light steaks acoss the sky, slows downs,a nd then excelerates. +2009-12-17,34.1333333,-109.2852778,Springerville,AZ,flash,1,U-Shaped, strobe like blue/white flash in the sky, with no aircraft seen. +2009-12-17,37.8716667,-122.2716667,Berkeley,CA,light,10,Two star-like lights chasing each other at an incredible speed +2009-12-17,38.8338889,-104.8208333,Colorado Springs,CO,triangle,15,Triangular shaped object with 6 to 8 orange colored lights, 3 on each side. +2009-12-17,41.9666667,-71.1875,Norton,MA,unknown,10,December 2009 UFO Crash in Norton/Attleboro, MA area During Snow Storm. +2009-12-17,38.0386111,-77.6391667,Partlow,VA,circle,900,Bright White Light in Partlow Sky !!!!! +2009-12-18,40.6219444,-74.245,Linden,NJ,unknown,2700,rocket type objects +2010-12-17,34.4436111,-118.6086111,Valencia,CA,unknown,300,Lights hovering over the 5 Freeway +2010-12-17,31.4713889,-110.9758333,Rio Rico,AZ,circle,720,UFO spotted in Rio Rico AZ +2010-12-17,44.3483333,-106.6983333,Buffalo,WY,disk,3,Black dinner plate size crab like object that moved on the ground. +2010-12-17,41.9569444,-84.7677778,Allen,MI,circle,30,2 seperate occurances at the same time. +2011-12-17,45.6230556,-106.6661111,Lame Deer,MT,other,600,Tear Drop UFO Sighting on the Northern Cheyenne Reservation +2011-12-17,36.0397222,-114.9811111,Henderson,NV,sphere,1,White object with blue aurora around it located near Henderson Nevada Airport +2011-12-17,38.0386111,-77.6391667,Partlow,VA,flash,60,Went out to have a smoke ....looking up to see if mars was out and and noticed a bright star in the north east .... Then what I thought +2011-12-17,42.3522222,-76.4811111,Danby,NY,egg,2,Green egg shaped object. (( +2011-12-17,32.4313889,-80.67,Beaufort,SC,unknown,2700,My wife and I went outside for a cigarette and saw a few green comets coming down… She then drove out to check where they landed. There +2011-12-17,38.6083333,-91.2188889,New Haven,MO,sphere,180,Large wight orb moving fast across night sky from south to north, when the light came close to a plane the light whent out. +2011-12-17,30.3319444,-81.6558333,Jacksonville,FL,fireball,3,Bright green small object traveling North to South. +2011-12-17,28.6119444,-80.8077778,Titusville,FL,light,10,12/17/11 Orange/green fireball streaking from south to north, East coast of Florida, 1810 hrs E.S.T. +2011-12-17,21.3069444,-157.8583333,Honolulu,HI,light,4680,Over the last two nights there has beena strange light over Diamonhead that will appear again tomorrow December 19 2011. +2011-12-17,21.3069444,-157.8583333,Honolulu,HI,light,4680,Strange light off Diamondhead +2011-12-17,27.0994444,-82.4544444,Venice,FL,light,1800,Numerous objects with steady white and blinking red lights launched over Gulf with high trajectory path to west over Venice jetty +2011-12-17,43.6666667,-92.9744444,Austin,MN,formation,480,20+ red to orange lights (formation) seen in southern Minnesota sky. Three witnesses, +2011-12-17,42.7469444,-73.7594444,Latham,NY,diamond,60,Large Strange Object in the Sky Above Trees +2011-12-17,39.7991667,-88.2830556,Tuscola,IL,light,3600,Small, very bright light hovering at maybe 4000 feet. Moving eratically. ((NUFORC Note: We suspect a star. PD)) +2011-12-17,35.1405556,-85.2327778,Hixson,TN,sphere,240,Bright object seen manuvering in night sky; bright white light changed to orange glow, then disappeared +2011-12-17,28.5388889,-80.6722222,Merritt Island,FL,fireball,15,Bright green fireball with yellow glowing trail moving low in the sky diagonally. Coming from south to north possibly toward N.A.S.A. +2011-12-17,41.8316667,-71.5877778,North Scituate,RI,light,300,I noticed 6 or 7 constant red/orange lights low on the horizon behind the trees. +2011-12-17,37.8044444,-122.2697222,Oakland,CA,light,2400,At least 3 lights seen moving/changing colors from Berkeley CA. +2011-12-17,41.9833333,-71.3333333,North Attleboro,MA,oval,300,Orange oval shaped like a fire in the sky - blurry +2011-12-17,33.9163889,-78.1613889,Oak Island,NC,light,2,At about 10:00PM on December 17th, 2011, two colleagues and I witnessed what we believe to be two UFOs fly from the western horizon to +2011-12-17,44.9444444,-93.0930556,Saint Paul,MN,fireball,300,A light/fireball passing overhead in Saint Paul, MN +2011-12-17,46.6022222,-120.5047222,Yakima,WA,unknown,90,One of two hoverring vehicles suddenly left the other plane and spead across the night sky at a rapid rate and with no sound. +2011-12-18,47.6741667,-122.1202778,Redmond,WA,light,90,Lights, four in circular moves each repeats in formation onto larger whole light in back atop in larger perimeter spaces for 3# hours. +2012-12-17,34.1975,-119.1761111,Oxnard,CA,circle,60,Silent circular Red glow moves slowly across the Oxnard sky lasting a minute or so. +2012-12-17,35.6397222,-101.6027778,Fritch,TX,circle,15,12-17-12 Circular object to the west 30 degrees up pulsing bright then dim. Duration, 15 seconds, 2 witnesses at 9:35 pm.Fritch tx. +2012-12-17,28.182222199999998,-81.8241667,Polk City,FL,fireball,180,Red glowing round object flew across the sky at a slow pace. +2012-12-17,42.0405556,-87.7825,Morton Grove,IL,oval,600,I saw 2 ovoid objects perhaps lower to the ground than I estimate moving silently and changing color from red to orange and back again. +2012-12-17,26.4611111,-80.0730556,Delray Beach,FL,fireball,300,2 fiery orange spheres moving west to east. +2012-12-17,39.0638889,-108.55,Grand Junction,CO,flash,3600,3 crafts flashing bright colors over western sky. +2013-12-17,25.9561111,-80.1394444,Aventura,FL,light,240,I SAW THREE BIG WHITE LIGHTS MOVING IN A TRIANGLE FORMATION.I TOKE PICTURES. +2013-12-17,33.5016667,-117.6616667,San Juan Capistrano,CA,sphere,300,A jet black circle hovering over the hill moved up and down, disappeared behind the hill, and shot into the sky. +2013-12-17,34.2866667,-78.7013889,Brunswick,NC,egg,5,White egg shape object spotted while working. +2013-12-17,38.7933333,-77.2719444,Burke,VA,triangle,300,Triangle shaped object over parking complex saw it for 5 minutes. +2013-12-17,28.2713889,-82.7197222,Port Richey,FL,unknown,120,Driving south on US19 at intersection to turn left at Regency Park Blvd. Port Richey FL. There were multiple power lines. +2013-12-17,36.175,-115.1363889,Las Vegas,NV,teardrop,600,Unknown crafts shadow passenger jet. +2013-12-17,25.7738889,-80.1938889,Miami,FL,cylinder,300,The object appeared cylinder shaped, almost like a rocket, very far away...however, fire was observed coming from the bottom of the spa +2013-12-17,44.9133333,-93.5030556,Minnetonka,MN,disk,3600,UFOs over Minnetonka. ((NUFORC Note: The 5:15 p.m. sighting may have been of Venus, we suspect. PD)) +2013-12-17,26.9758333,-82.0908333,Port Charlotte,FL,disk,300,Pulsating disk/saucer shape in Port Charlotte, FL. +2013-12-17,44.4583333,-87.5030556,Kewaunee,WI,formation,600,Perfectly spaced string of bright lights mid sky over the bay. +2013-12-17,37.3394444,-121.8938889,San Jose,CA,light,45,2 orange lights moving slowly/oddly fading out one at a time. +2013-12-17,27.8394444,-82.7913889,Seminole,FL,changing,540,Pear shape fiery orb with black entities ascending and descending from nearby building. +2013-12-17,34.1013889,-84.5194444,Woodstock,GA,fireball,10,Looked like a meteor hitting the atmosphere but brighter and large light show like fireworks. +2013-12-17,32.4580556,-83.7316667,Perry,GA,fireball,1,Bright green light flashed and then fell to the ground like a flare. ((NUFORC Note: Possible Geminid meteor?? PD)) +1975-12-18,39.8097222,-86.3225,Clermont,IN,disk,600,Disk-shaped saucer over house w/ a lazer light focused on home +1993-12-18,34.4436111,-118.6086111,Valencia,CA,oval,300,Sighting: Valencia, Ca @ I-5 and 126 interchange. Object in cloud hovers/manuevers then lightening bolt strikes at same location. +1995-12-18,40.7141667,-74.0063889,New York City,NY,triangle,300,Over 28th & Lexington Ave, A Huge, hovering, triangleish shape hovering probably over 1000 feet above crowd including 4 NYC Cops +1995-12-18,32.3413889,-90.3216667,Clinton,MS,triangle,300,Trinagular Object +1996-12-18,44.0522222,-123.0855556,Eugene,OR,light,3600,Father and son saw a light at high altitude perform zig-zags, abrupt starts and stops, and 90 degree turns.I am 18. I was going to +1996-12-18,30.1577778,-95.4891667,The Woodlands,TX,light,300,Saw bright orange light (size of Venus) with diffuse and changing orange haze 1/2 size of moon around central light. +1997-12-18,34.1975,-119.1761111,Oxnard,CA,cigar,30,Huge cigar shaped craft followed our power lines, continuing west out to sea. +1998-12-18,48.1183333,-123.4294444,Port Angeles,WA,diamond,600,Night time sighting, 3 large gold lights on corners, one red light on nose of diamond, couldn't see any body but heard FAINT JET ENGINE +1998-12-18,43.1008333,-75.2330556,Utica,NY,light,45,two very bright lights in southern sky descended slowlyand dimmed to gray then back to bright and disappeared. +1998-12-18,40.2141667,-77.0088889,Mechanicsburg,PA,unknown,1200,Craft of undetermined shape with a single strobe light hovered in the area. One had a white strobe, which turned red, then white again. +1998-12-18,26.7486111,-82.2622222,Boca Grande,FL,disk,300,Football field size saucer with blinking white lights, made no sound as it traveled across the sky near Boca Grande, FL +1998-12-18,46.2858333,-119.2833333,West Richland,WA,unknown,3600,I saw 2 lights settled in a constellation, which appeared to be stars, but had a sudden abnormal movement. One below the belt of orion +2000-12-18,47.6588889,-117.425,Spokane,WA,light,7200,We have actually seen a light very bright on three different occasions all three times have been at night. The first time we watched fo +2000-12-18,37.4108333,-94.7047222,Pittsburg,KS,triangle,15,The trianlular object flew over my car +2000-12-18,34.2541667,-110.0291667,Show Low,AZ,light,2,Object races across the night sky at a high rate of speed +2001-12-18,39.1269,-92.4399,Harrisburg,MO,formation,2400,4 circular cloud-like lights moving in a circular motion , rotating methodically, then meeting in the center +2001-12-18,33.2,-117.2416667,Vista,CA,oval,25,helicopter shaped craft, many lights, no chopper blades, 10pm san diego california. 12-18-01. +2002-12-18,31.6313889,-93.6438889,Zwolle,LA,other,1260,I have an entire armada of different type crafts appear in a short time and it is almost overwhelming! +2002-12-18,47.3811111,-122.2336111,Kent,WA,triangle,25,Black Triangle over Kent, WA +2003-12-18,36.1538889,-95.9925,Tulsa,OK,unknown,3,I observed an bright object on a clear night streak across Tulsa,Okla. from east to west. It lit up as it entered the atmosphere, leavi +2003-12-18,44.9194444,-123.3158333,Dallas,OR,other,780,I heard a strange noise, suffered a physical and emotional response to it, military jets "chased" it away. +2003-12-18,32.3536111,-89.6544444,Morton,MS,light,10,When driving to work on I-20 east bound, saw bright orb-like object to the north of an east bound high flying jet. Jet approx. 150ft i +2003-12-18,37.2861111,-108.0388889,Hesperus,CO,cigar,900,large, low flying object with two lights flying east over Hesperus, Co. +2003-12-18,48.0841667,-121.9675,Granite Falls,WA,fireball,2,Green fireball fell south and east of Granite Falls, WA +2003-12-18,38.0291667,-78.4769444,Charlottesville,VA,light,900,Spot of honey-colored light, spherical- barely 3x larger than stars- seen from car +2003-12-18,47.6063889,-122.3308333,Seattle,WA,fireball,3,Fireball falling from the sky. Could have been a plane crashing. +2003-12-18,40.8022222,-124.1625,Eureka,CA,light,360,Bright, strobing light, dimmed to a pulsing amber light. Then smaller lights witnessed moving erratically around larger light. +2003-12-18,34.1013889,-84.5194444,Woodstock,GA,disk,10,saucer seen with many witnesses +2003-12-18,40.8,-96.6666667,Lincoln,NE,oval,5,Bright bluish white light moving north, then east, leaving bluish trail behind, rolling over and disappeared.... +2004-12-18,37.775,-122.4183333,San Francisco,CA,light,2700,UFO hiding in star constellation +2004-12-18,34.1705556,-118.8366667,Thousand Oaks,CA,disk,1500,The object or light would move quickly from right to left, and move in a circular motion vertically. ((NUFORC: Possibly Venus?? PD)) +2004-12-18,33.425,-94.0475,Texarkana,TX,circle,3600,I saw a UFO without a doubt a UFO! +2004-12-18,38.2722222,-92.7194444,Rocky Mount,MO,circle,240,Object with lights. +2004-12-18,34.0194444,-118.4902778,Santa Monica,CA,cone,2400,Unknown object over Santa Monica, CA. +2004-12-18,47.6741667,-122.1202778,Redmond,WA,sphere,5,Driving East on 520 freeway, off of NE 148th blue sphere traveling very fast about the size of a basketball appearing to head downwards +2004-12-18,39.7625,-87.2291667,Rockville,IN,fireball,60,Glowing Disk Craft hovering over high power wires with fast strobing light on top and bottom , +2004-12-18,47.2530556,-122.4430556,Tacoma,WA,fireball,5,Brite white ball with tail ..same as one in china seen by 700 or more people +2004-12-18,32.6858333,-117.1822222,Coronado,CA,flash,10,it flashed for three or four seconds and disapered. +2005-12-18,34.1866667,-118.4480556,Van Nuys,CA,flash,600,First one oval bright light was flashing at a steady rate and rose to a hight of about 20ꯠ ft when it turned into two bright lights +2005-12-18,41.2958333,-86.625,Knox,IN,triangle,300,3:00am humming and craft for 5 minutes +2005-12-18,41.7,-71.4166667,Warwick,RI,triangle,360,we were in our car when we saw a 2 object with lights the lights were red +2005-12-18,41.6302778,-87.8538889,Orland Park,IL,light,900,Big Huge Bright Light Seen Over By My Cousin's House In Orland Park +2005-12-18,41.2619444,-95.8608333,Council Bluffs,IA,triangle,180,Traveling from Omaha to Des moines I witnessed a triangle object near interstate +2005-12-18,39.1580556,-75.5247222,Dover,DE,diamond,6,Low flying extremely fast dull yellow/white diamond shaped object heading South. Dover De. +2005-12-18,41.2958333,-86.625,Knox,IN,disk,180,saucer shaped craft hovering in the my farm field about 50 feet in the air, no sound, red and blue light, then flew off to the west +2006-12-18,34.0027778,-84.1447222,Duluth,GA,fireball,3,comet like ball of fire seen falling from sky in Duluth GA +2006-12-18,42.3255556,-83.3311111,Garden City,MI,flash,120,flashing lights saucer flying away +2006-12-18,44.1202778,-69.2405556,Warren,ME,cylinder,120,Cylinder shaped craft with bright diamond shaped light above +2006-12-18,37.9736111,-122.53,San Rafael,CA,changing,8,clouds chasing each other,orbs, cresents and circular shapes with consistancy of clouds. +2006-12-18,40.9011111,-74.5147222,Rockaway,NJ,fireball,60,As I was driving on interstate 80 I noticed a glowing bright above the distant mountain and as took a snapshot from my cameraphone it d +2006-12-18,41.6361111,-70.9347222,New Bedford,MA,circle,300,Circle shaped craft over new bedford, MA 12 lights lite up around it and 2 blinking ones on top. +2006-12-18,27.9655556,-82.8002778,Clearwater,FL,light,300,UFO Sighting in Clearwater, Florida +2006-12-18,33.7738889,-117.9405556,Garden Grove,CA,light,120,Unusually large star catch's my baby's attention.. +2006-12-18,34.1347222,-116.3122222,Joshua Tree,CA,light,240,White lights in a row that came one one at a time and went out all together +2006-12-18,35.7325,-78.8505556,Apex,NC,triangle,120,I was down at jordan lake playing guitar and it was a clear night and i could see all the stars. I saw one light off in the distance c +2007-12-18,26.625,-81.625,Lehigh Acres,FL,other,10,Green orb over lehigh +2007-12-18,42.3786111,-97.3566667,Randolph,NE,formation,5,Two witnessees saw 3 bright incandescent colored balls of light in NorthEast Nebraska. +2008-12-18,26.1219444,-80.1436111,Fort Lauderdale,FL,circle,2,Neon Blue UFO +2008-12-18,32.2216667,-110.9258333,Tucson,AZ,light,5,plane like object descended too fast. +2008-12-18,33.9533333,-117.3952778,Riverside,CA,sphere,1200,It almost looked like a star, and it was reflecting the sun,but moving from south to north. I was able to watch it till it was out of s +2008-12-18,26.2708333,-80.2708333,Coral Springs,FL,circle,7,ROUND OBJECT PLATNIUM SILVER IN COLOR SEEMED TO CREATE HAZE AS IT MOVED IN A EVEN PATH HAD A VAPOR TRAIL ATTACHED TUBULAR IN SHAPE +2008-12-18,27.1972222,-80.2530556,Stuart,FL,light,30,bright light over +2008-12-18,26.1219444,-80.1436111,Fort Lauderdale,FL,fireball,5,Fort Lauderdale streaking light. +2008-12-18,26.1219444,-80.1436111,Fort Lauderdale,FL,circle,1.6,Brilliant Blue object seen by dozens @ low altitude. Appeared to me to be in U.S. Airspace +2008-12-18,26.8172222,-80.0822222,North Palm Beach,FL,formation,300,Streak of light then object moved across the sky +2008-12-18,26.6583333,-80.2416667,Wellington,FL,sphere,2,Sphere shaped object crashing to earth +2008-12-18,44.1336111,-89.5230556,Hancock,WI,triangle,900,Yellow and Blue flashing lights that made the shape of a huge triangle +2008-12-18,26.1416667,-81.795,Naples,FL,other,1200,UFO siting on Allegator Alley +2008-12-18,33.3766667,-79.2947222,Georgetown,SC,unknown,2700,12/18/08 Georgetown, SC Search for downed plane blamed on meteor shower +2008-12-18,28.6119444,-80.8077778,Titusville,FL,unknown,900,flashing light seen and vidoe taped over Titusvlle florida for approximately 45 minutes. ((NUFORC Note: Sighting of Sirius. PD)) +2008-12-18,26.2375,-80.125,Pompano Beach,FL,cylinder,1,Strange blue cylindrical lights flying in from Ocean +2009-12-18,39.8658333,-123.7130556,Leggett,CA,oval,4,Stationary object flashes pure bright white light. It was like it was taking pictures. +2009-12-18,39.7391667,-104.9841667,Denver,CO,disk,240,We saw three objects, one big circular with bright lights moving fw and spinning, one and two much smaller ones flying with it. +2010-12-18,33.4705556,-95.2136111,Bogata,TX,disk,360,it was right above the tree line +2010-12-18,36.3319444,-94.1183333,Rogers,AR,unknown,15,Two unknown unidentifiable flying craft apparently hovering in a vacant field. +2010-12-18,40.5291667,-74.3163889,Fords,NJ,light,600,Very Bright Light +2010-12-18,37.775,-122.4183333,San Francisco,CA,fireball,240,I was walking east up Steiner st. in the Lower Haight district of San Francisco at about 11:59, when something to my left caught my eye +2010-12-18,28.7027778,-81.3386111,Longwood,FL,light,600,3 orbs of light seen circling over Longwood FL skies +2010-12-18,26.1719444,-80.1322222,Oakland Park,FL,disk,600,67 red orange lights seen moving west to east one triangle all ojects dissappeared going strait up +2011-12-18,35.6008333,-82.5541667,Asheville,NC,light,14400,Star sized color changing lights moving in weird patterns, white and orange balls falling from sky. +2011-12-18,32.7947222,-116.9616667,El Cajon,CA,light,1800,Bright Amber Orange Light, Multi-Colored Object, Rapid Changing Lights. +2011-12-18,41.9166667,-88.1975,Lakewood,IL,oval,15,Was walking my dog 05:30 am. Could not get your reporting format to accept this time. Was looking at the ground and noticed a strobe fl +2011-12-18,39.7222222,-94.6413889,Easton,MO,triangle,300,Triangle shape craft with headlights, three tiny lights in rear. +2011-12-18,44.0216667,-92.4697222,Rochester,MN,triangle,2700,Sunday – December 18, 2011 at 5:30 PM A UFO was observed for aprox. 45 minutes in SouthWest Rochester around the Meadow Lakes Golf Cour +2011-12-18,36.9786111,-76.4283333,Newport News,VA,flash,180,Flash very bright and saw it for a couple of minutes +2011-12-18,42.0072222,-87.9402778,Elk Grove,IL,formation,1200,Bright lights in the sky changing formations, triangles 500 Lights On Object0: Yes +2011-12-18,45.6680556,-91.2438889,Exeland,WI,light,300,"Satellite" stopped in the sky +2011-12-18,34.7741667,-77.1508333,Stella,NC,unknown,3600,Blinking multi colored object hovers and moving slightly in all 4 directions +2011-12-18,26.6833333,-80.28,Loxahatchee,FL,fireball,180,We so a shape like sun or round shape orange going to east coast to west doing perfect line same shape en color. No sound no to high be +2011-12-18,40.7683333,-73.5255556,Hicksville,NY,light,10800,2 disk shaped objects with rapidly changing colors from blue purple and green. +2011-12-18,43.0513889,-83.3188889,Lapeer,MI,triangle,5,Two bar lights on sides, boat like bottom. Flew by similar to shooting star only much lower. +2011-12-18,32.2216667,-110.9258333,Tucson,AZ,sphere,1200,Bright purple orb dancing in clouds in tucson +2011-12-18,33.6888889,-78.8869444,Myrtle Beach,SC,triangle,3600,I have never believed in ufo but seeing the amber triangle shape lights blinking and moveing very slow and sometimes not at all. Saw li +2011-12-18,38.5816667,-121.4933333,Sacramento,CA,cross,1200,Slow moving bright yellow-orange light in plus-sign shape moves west to east to southwest in 20 minutes towards Jupiter. +2011-12-18,40.7141667,-74.0063889,New York City (Astoria; Queens),NY,other,600,Two aircraft wider than jumbo jets, no lights, flying North to South, in the vicinity of LaGuardia Airport. +2012-12-18,36.6083333,-83.7166667,Middlesboro,KY,fireball,30,12/18/12 extremly slow moving fireball with fire trail that lasted 30sec then just very suddenly disappered. +2012-12-18,28.9002778,-81.2638889,Deltona,FL,flash,1800,Flashing light over Volusia County, Florida. +2012-12-18,36.1538889,-95.9925,Tulsa,OK,other,20,A large metallic cigar/blimp like object that hovered in the air for 15 to 20 seconds and then shrunk into dispearnace in 1.5 seconds. +2012-12-18,35.0255556,-76.8258333,Arapahoe,NC,fireball,60,Two fire balls floating in the sky. +2012-12-18,35.489444399999996,-120.6697222,Atascadero (101 Freeway),CA,circle,0.1,Blue almost electrical circle of blue light close to the ground maybe 5 feet above my vehicle. +2012-12-18,34.0216667,-86.0886111,Attalla,AL,light,30,Light in daytime sky that faded away. +2012-12-18,33.9488889,-118.4447222,Playa Del Rey,CA,disk,3,BRIGHT Silver Sphere appears in sky 1-3 seconds and disappears into clouds over LOS ANGELES AREA. +2012-12-18,33.4477778,-96.7472222,Gunter,TX,light,180,I saw a bright light in the northern sky moving east to west faster than a normal aircraft & making fast and slow turns. +2012-12-18,37.5072222,-122.2594444,San Carlos,CA,circle,10,Large ball of light low in the sky streaking at high speed towards ground. +2012-12-18,28.0833333,-80.6083333,Melbourne,FL,fireball,20,Orange spheres and slow moving stars. +2012-12-18,37.614444399999996,-93.4102778,Bolivar,MO,triangle,600,Two craft chase over Bolivar. +2012-12-18,41.6005556,-93.6088889,Des Moines,IA,light,360,Unusual flight pattern of a squadron of aircraft that defy gravity and G-force manuverability. +2012-12-18,40.7297222,-73.2108333,Islip,NY,light,10,Red Orange Objects Flying V Formation In Sky Above Long Island New York. +2013-12-18,35.0844444,-106.6505556,Albuquerque,NM,unknown,7200,My fiancé and I began to hear a resonating loud humming noise. The hum was omni directional. +2013-12-18,41.2888889,-91.5522222,Ainsworth,IA,triangle,180,TRIANGLE OBJECTS HOVERING IN CORNFIELD. +2013-12-18,38.8047222,-77.0472222,Alexandria,VA,fireball,600,Drones? +2013-12-18,43.7094444,-98.0294444,Mitchell,SD,formation,480,Four lights moving east then suddenly west. +2013-12-18,33.7838889,-116.9577778,San Jacinto,CA,formation,240,Orange lights. +2013-12-18,34.698055600000004,-118.1358333,Lancaster,CA,cylinder,60,Hwy 14. Submarine shaped black, no visible windows, reflective bottom, top 3/4 green fog like coloring. Made no sound, did not move. W +2013-12-18,39.8522222,-75.0683333,Runnemede,NJ,triangle,21600,triangular crafts with bright lights and no sound. +2013-12-18,40.8611111,-79.8955556,Butler,PA,fireball,600,Fireball hovering in the sky. ((NUFORC Note: We suspect a sighting of Venus. PD)) +2013-12-18,38.6272222,-90.1977778,St. Louis,MO,light,120,Just watch the video. +2013-12-18,33.0897222,-82.0158333,Waynesboro,GA,fireball,6000,Two different types: one that flashes ...it almost looks like a star that's really close that appears and disappears, moves up and down +2013-12-18,33.6888889,-78.8869444,Myrtle Beach,SC,light,300,Strobe-like objects flying with no sound. +2013-12-18,42.0347222,-93.6197222,Ames,IA,changing,180,3 lighted, circular objects flying over city on a clear night, 1 appears to expand and descends to outskirts of town. +2013-12-18,20.785,-156.4655556,Kihei,HI,fireball,420,5 ORANGE GLOWING ORBS LOOKING OF FIRE , IN PERFECT FORMATION, LASTING FOR SEVERAL MINUTES. +2013-12-18,42.0644444,-72.5130556,East Longmeadow,MA,circle,300,5 bright navigating objects in night sky +2013-12-18,38.4405556,-122.7133333,Santa Rosa,CA,light,30,UFO sighting in Santa Rosa, California. +1993-12-19,41.0041667,-92.3736111,Ottumwa,IA,formation,10,1993 Evening Ufo sighting over Ottumwa, Iowa. Singular object splits in two, lights fly across sky. +1995-12-19,41.525,-88.0816667,Joliet,IL,oval,600,2 objects seen in clear sky hovering. seen while driving E on US 30. Object 1 appeared to 'float' around object 2. Glint from top of on +1996-12-19,35.1858333,-86.1122222,Winchester,TN,triangle,3600,This was the most usual sight I have ever seen, I swear to God. +1998-12-19,30.2091667,-95.7505556,Magnolia,TX,light,3000,I am located about 35 miles slightly northwest of downtown Houston, TX and about 12 miles directly east of Magnolia, TX. I observed tw +1998-12-19,33.4483333,-112.0733333,Phoenix,AZ,fireball,180,I saw a green fireball in the sky and there was definitely an aircraft behind the ball of light. +1998-12-19,42.9511111,-123.3630556,Riddle,OR,light,15,Was looking at the night sky on a clear night and noticed an object about the brightness of the North star moving West across the sky. +1999-12-19,29.7630556,-95.3630556,Houston,TX,disk,300,I spoted a copper/amber colored object moving from the se to the west. Observed it through a telescope. Seen a cluster of 15 to 20 disk +1999-12-19,35.6869444,-105.9372222,Santa Fe,NM,circle,10,UFO floats over, truck stops, distributor is stuck to inside of roof, magnetized. +1999-12-19,35.7511111,-86.93,Spring Hill,TN,changing,120,ONE LEAD - FOUR MIDDLE - TWO BACK. DIAMOND SHAPE FOLLOWING A WATER LIKE WAVE. DARK BROWN TO A ORANGE GOLD COLOR +1999-12-19,47.3811111,-122.2336111,Kent,WA,oval,90,two objects passed east to west at an altitude of about 1000 feet. No noises and no lights. propulsion method not obvious. objects dark +2000-12-19,27.0438889,-82.2361111,North Port,FL,changing,45,Plate like object of unique color disappears into air with a convergence of light. +2000-12-19,42.0583333,-71.25,Foxboro,MA,circle,15,I WAS HAVING MY OIL CHANGED, SINCE THE NEW ENGLAND PATRIOTS PLAY ACCROSS THE STREET AND ARE BUILDING A NEW STADIUM, I TOOK MY CAMCORDER +2000-12-19,42.0583333,-71.25,Foxboro,MA,oval,15,Blimplike object over Foxboro Mass stadium at sunset illuminated by sun. Out of season and disappeared too fast +2000-12-19,28.5380556,-81.3794444,Orlando,FL,triangle,360,Craft was flat black, noiseless and massive and boomerang in shape all smoothe in detail outline. +2000-12-19,38.6786111,-121.7722222,Woodland,CA,light,1200,Yolo county: 3 Orange lights with wings? +2001-12-19,37.5297222,-122.0391667,Newark,CA,unknown,900,Bright remoted object at same location; brightness changed several times +2001-12-19,40.9477778,-90.3711111,Galesburg,IL,triangle,15,Triangular object with dim lights traveling quietly north to south at unusal speed and course. +2001-12-19,41.5580556,-73.0519444,Waterbury,CT,other,120,I DREW A PICTURE OF WHAT I SAW. +2001-12-19,40.7761111,-87.7363889,Watseka,IL,triangle,900,Triangular-shaped object seen near Watseka, IL +2002-12-19,39.9625,-76.7280556,York,PA,other,16,Photographic Evidence of Small, Black, Anomalous Formation moving away from direction of wind +2002-12-19,29.7855556,-95.8241667,Katy,TX,chevron,30,Low and slow in the Houston night sky. +2002-12-19,39.945,-105.8166667,Fraser,CO,sphere,420,a jet was chasing a yellow,orange object. the jet didnt have a chance!! +2002-12-19,31.3180556,-95.4563889,Crockett,TX,chevron,300,orange lights large chevron void in skyview (stars planets) +2002-12-19,39.0255556,-77.0766667,Kensington,MD,chevron,60,chevron of lights resembling small v-formation of geese; silent; observation lasted approx 1 minute +2003-12-19,25.4683333,-80.4777778,Homestead,FL,cigar,30,The cigarshaped object moved from overhead towards the southeast at an incredible speed! +2003-12-19,30.2669444,-97.7427778,Austin,TX,changing,45,2 blue-lit conicle objects rotate around each other and then "morph" into 1 object and disappear. +2003-12-19,31.7077778,-111.0638889,Amado,AZ,triangle,3600,Sighted 10 UFO's who appeared to be mining. +2003-12-19,47.2530556,-122.4430556,Tacoma,WA,circle,2,Saw white circle larger than a meteor but it left no trail. +2003-12-19,32.2686111,-107.7580556,Deming,NM,oval,600,Double Ovoid object photographed NE of Deming, NM +2003-12-19,30.2669444,-97.7427778,Austin,TX,unknown,2,Gliding silver object there one second, gone the next +2003-12-19,34.5036111,-93.055,Hot Springs,AR,other,0.2,THE OBJECT WAS LONG LIKE A AIRPLAIN , BUT HAD NO WINGS, ONLY SMALL PROTRUTIONS. IT WAS ALL BLACK , WITH NO LIGHT REFLECTION. NO SOUND. +2003-12-19,43.6136111,-116.2025,Boise,ID,cigar,240,This object has well defined colored square lights that moved across back and forth along a horizontal plane. It's upper and lower se +2003-12-19,42.8858333,-87.8630556,Oak Creek,WI,fireball,2,green fireball shooting across sky +2004-12-19,33.6888889,-78.8869444,Myrtle Beach,SC,chevron,300,Went out to walk dogs. Clear, starry night. Looked up at sky at airplane and then my vision was blocked by a huge, black, chevron sha +2005-12-19,41.85,-87.65,Chicago,IL,fireball,2,Bright white object in sky of north side Chciago traveling west at a fast speed. +2005-12-19,41.5894444,-88.0577778,Lockport,IL,circle,660,Multicolored large, bright object in Southeast sky over Lockport, IL. ((NUFORC Note: Probably the star, Sirius, we suspect. PD) +2005-12-19,33.7488889,-84.3880556,Atlanta,GA,cylinder,600,dark, smokestack like objects jutting above clouds, seen from an airplane +2005-12-19,31.2516667,-89.8375,Columbia,MS,fireball,900,Object's light looks like a meteor falling in Earth;s atmosphere +2005-12-19,43.0125,-83.6875,Flint,MI,triangle,5,flying triangles +2006-12-19,36.5297222,-87.3594444,Clarksville,TN,diamond,300,We saw 3 diamond shaped crafts, one was hovering then took off, 2 others were behind going slower. +2006-12-19,42.9005556,-78.6705556,Lancaster,NY,light,30,no sound just lights +2006-12-19,39.5219444,-119.6275,Mustang,NV,triangle,240,This is an update on the Lyon County UFO I have the correct date and time I had written it down sorry for guessed time and date i was c +2006-12-19,35.6225,-117.67,Ridgecrest,CA,fireball,300,Ball of fire was dancing around in the sky above Ridgecrest, Ca at exactly 8:40 p.m. +2006-12-19,44.7972222,-106.9555556,Sheridan,WY,light,300,Bright light in southeastern sky emitting red, green, and white light. Moved in unequal intervals. +2007-12-19,31.7586111,-106.4863889,El Paso,TX,fireball,3600,Well about the 19 of december 2007 I saw a "bright light"moving toward me ,then to the right ,left, right and then solidifies to a squ +2007-12-19,42.5802778,-83.0302778,Sterling Heights,MI,flash,900,Many flashing objects moving in an oval pattern at high speeds. +2007-12-19,33.6694444,-117.8222222,Irvine,CA,circle,1200,Ring of blue light flying in physics-defying pattern around Irvine Spectrum. +2008-12-19,25.7738889,-80.1938889,Miami,FL,sphere,120,Tamiami Executive airport, bright star moving at irregular speeds. +2008-12-19,33.4483333,-112.0733333,Phoenix,AZ,other,120,12/19/08 Phoenix AZ curved shape 2 minutes It was just sitting still in the sky lights coming down,then gone from rear view +2008-12-19,35.4913889,-92.0311111,Heber Springs,AR,light,120,Very bright, extremely fast, and silent +2008-12-19,39.5538889,-104.9688889,Highlands Ranch,CO,triangle,5,Large, silent, slow, triangular UFO with 6 bright white lights traveling approximately 4 stories off the ground near Denver...06:30 +2008-12-19,37.4283333,-121.9055556,Milpitas,CA,egg,2700,appearing and reappearing lights. moving side to side +2008-12-19,28.3644444,-82.1961111,Dade City,FL,circle,60,Dozens of orbs clearly seen cruzing in Pasco County, Florida. +2009-12-19,37.2872222,-121.9488889,Campbell,CA,unknown,600,Two mutli colored lights appearing to be outside atmosphere moving very slow then fading away +2009-12-19,35.1475,-105.9763889,Stanley,NM,sphere,14400,stanley and edgwood ufo seen low and obveous +2009-12-19,37.775,-122.4183333,San Francisco,CA,circle,60,a round spinning object stood in the sky for a minute and took off going up at incredible speed. +2009-12-19,33.4483333,-112.0733333,Phoenix,AZ,light,1215,sitting outside on a bench observing the wierd girations of these objects +2010-12-19,40.7141667,-74.0063889,New York City (Queens),NY,light,2700,Round ball of light hovers over Queens, 30min+ ((NUFORC Note: Sighting of Venus?? PD)) +2010-12-19,29.2769444,-89.3547222,Venice,LA,light,300,Two bright objects suddenly appear in the Pre-dawn sky and then rapidly accelerate out of sight. +2010-12-19,20.8947222,-156.47,Kahului,HI,disk,1200,it beamed a light upwards. For about 15 minutes everyone was trying to take a picture and no ones camera worked. Some people thought it +2010-12-19,37.6922222,-97.3372222,Wichita,KS,oval,30,Green round ball flying through the sky +2010-12-19,37.6922222,-97.3372222,Wichita,KS,oval,30,((HOAX??)) Green round ball flying through the sky +2011-12-19,34.7369444,-82.2544444,Simpsonville,SC,changing,1200,Bright light, appearing like a star then slowly dimming and then reappearing bright again, moving across the sky +2011-12-19,30.4980556,-86.1361111,Freeport,FL,fireball,5,Green fireball sighting near Eglin Air Force Base. +2011-12-19,27.5469444,-81.8116667,Wauchula,FL,rectangle,180,Large ufo shaped like a rectangle was observed while riding a motorcycle in the broad daylight. +2011-12-19,45.7833333,-108.5,Billings,MT,light,7,Ball of light at high velocity and frightning rate of descent. +2011-12-19,44.4758333,-73.2125,Burlington,VT,fireball,180,3 fireballs seen over Burlington Vermont +2011-12-19,41.3163889,-73.0936111,Shelton,CT,fireball,4,Green light traveling fast +2011-12-19,41.4569444,-72.8236111,Wallingford,CT,circle,5,A big circle greenish object out my window randomly dissapeared and it was low +2012-12-19,37.9608333,-120.2363889,Tuolumne,CA,light,18000,Fast moving light object. +2012-12-19,41.7694444,-71.1291667,Somerset,MA,circle,180,75+ lights swarmed the sky in Massachusetts. +2012-12-19,59.6425,-151.5483333,Homer,AK,fireball,300,Saw reddish orange circles in the sky over the bay in Homer, AK. +2012-12-19,42.7344444,-71.325,Pelham,NH,other,5,Glowing moon-sized object moves across the sky, only to leave an orange streak behind it before it dissapears. +2012-12-19,42.6388889,-83.2911111,Pontiac,MI,other,240,Strange Orange Cloud formation moving very slow, when i looked closer i noticed objects were moving, then accelerated very quickly. +2012-12-19,35.3052778,-76.7888889,Aurora,NC,circle,600,4 bright orange circles in the sky with a small trail of smoke above each one. +2012-12-19,37.1297222,-80.4091667,Christiansburg,VA,rectangle,240,Driving on 460 towards christiansburg from blacksburg. passing the peppers ferry road exit. Saw 4 white lights shape of a box. hover +2012-12-19,34.1138889,-83.4316667,Nicholson,GA,circle,10,Round outline, lights completely around it, going East, low, load, and slow. +2012-12-19,25.7738889,-80.1938889,Miami,FL,circle,300,Eight red unidentified objects soared the Miami sky emitting no sound at all. +2012-12-19,42.2833333,-71.35,Natick,MA,triangle,15,Huge triangle shaped craft with bright dome on top gliding, no noise - scary! +2012-12-19,41.2586111,-95.9375,Omaha,NE,sphere,900,2 ufo's following black car down I-80. +2012-12-19,40.1741667,-75.0441667,Southampton,PA,sphere,300,Mysterious red orb falling from the sky +2013-12-19,30.6033333,-87.9036111,Daphne,AL,unknown,3600,Multiple objects, none were visible but revealed on photographs. +2013-12-19,28.5380556,-81.3794444,Orlando,FL,unknown,7200,Strange Deep-pitched Droning Sound and Loud, Muffled Booms. +2013-12-19,35.2427778,-81.0375,Belmont,NC,light,900,Star that appeared to move around in the sky. +2013-12-19,61.2180556,-149.9002778,Anchorage,AK,circle,300,Two large, bright red, circular objects falling out of the sky over Elmendorf AFB. +2013-12-19,37.7808333,-90.4216667,Farmington,MO,other,30,Three horizontal bright white lights hovering in southwest sky at night. +2013-12-19,36.9902778,-86.4436111,Bowling Green,KY,rectangle,60,Santa Claus?...really not intentional hoax, Santa sled is only way i can explain it. +2013-12-19,33.4352778,-112.3575,Goodyear,AZ,circle,60,My friends and I were enjoying an evening cocktail when we noticed a bright orange sphere traveling from northwest to southeast. It wa +2013-12-19,42.7261111,-71.1913889,Methuen,MA,sphere,300,Eleven bright, orange colored orbs. First four in a formation type pattern, the next seven in a straight line. +2013-12-19,37.9577778,-121.2897222,Stockton,CA,light,35,Observed a bright brilliant red light sitting low and still in the night sky. The community that it was hovering over was Weston Ranch. +2013-12-19,33.6888889,-78.8869444,Myrtle Beach,SC,light,15,Orange lights over Myrtle Beach. +2013-12-19,31.4713889,-110.9758333,Rio Rico,AZ,light,5,Lights in the sky. +2013-12-19,33.8158333,-78.6802778,North Myrtle Beach,SC,flash,900,Strange lights over the beach, 2 dozen or more. +2013-12-19,37.9747222,-122.5605556,San Anselmo,CA,circle,180,Bright orange light moving away, then returned and disappeared. +2013-12-19,40.7608333,-111.8902778,Salt Lake City,UT,flash,1,Bright green flashes. ((NUFORC Note: Possible power failure, possibly caused by an exploding transformer?? PD)) +2013-12-19,34.3541667,-119.0583333,Santa Paula,CA,light,1800,Silent orange lights in the sky. +2013-12-19,27.0994444,-82.4544444,Venice,FL,oval,1800,Saw 15 or more red UFO.s over Venice Florida moving over the Gulf of Mexico. +2013-12-19,47.0344444,-122.8219444,Lacey,WA,oval,60,UFO realized it had been spotted. +2013-12-19,33.9730556,-78.3861111,Shallotte (Hwy 17),NC,flash,5,3 orange lights spotted. +2013-12-19,41.3197222,-81.6269444,Brecksville,OH,circle,2700,5-6 dim lights moving oddly in a circle, than intertwine/meet in the middle. ((NUFORC Note: Advertising lights?? PD)) +1950-01-02,40.7141667,-74.0063889,New York City,NY,oval,900,good and true info. 500 Lights On Object0: Yes +1976-01-02,39.7588889,-84.1916667,Dayton,OH,other,172800,I knew well a retired air force.man who reveiled he was a doctor present at the examination of bodies at Dayton, Ohio. +1997-01-02,30.2669444,-97.7427778,Austin,TX,light,1800,While viewing M42 through telescope, we witness 3 anamolous moving lights, two with scope, one with naked eye, approx. 10-15 min. apart +1999-01-02,47.6063889,-122.3308333,Seattle,WA,light,4,Walking around Greenlake on paved trail. Saw bright white light on a 3deg downward path across lake from south to north. Approx 1500ft +1999-01-02,45.6388889,-122.6602778,Vancouver,WA,fireball,10,We were driving on sr500 when we saw a green fireball streak accross the sky +1999-01-02,47.9663889,-116.8675,Spirit Lake (Rural),ID,light,3600,while looking toward the east we noticed a bright starand upon further examination we noticed that it changed colors from red to green +2000-01-02,30.3319444,-81.6558333,Jacksonville,FL,rectangle,7200,A rectangle shape object like a cigar box (maybe three times the size) touched down in my back yard. ((NUFORC Note: Hoax?? PD)) +2000-01-02,33.4222222,-111.8219444,Mesa,AZ,oval,300,golden orb's flying about. +2000-01-02,33.5538889,-117.2130556,Murrieta,CA,fireball,3,From intersection of Las Alamos and Hancock, looking east I witnessed a single whitish object break into 3 or 4 pieces across the sky +2000-01-02,46.2113889,-119.1361111,Kennewick,WA,light,10,Northern angle of sight 30-45 degree angle from ground Bright light came down zig zaged then straight down and fizzeled out. Saw same +2000-01-02,39.5138889,-121.5552778,Oroville,CA,light,600,These lights(egg shape)put on a dazzling show they would go in a long oval circle probably a football field in length the egg shape lig +2000-01-02,34.1486111,-118.3955556,Studio City (San Fernando Valley),CA,rectangle,2,BRIGHT BLUE RECTANGLE FLYING LOW AND "QUICK" FROM NORTH TO SOUTH. +2000-01-02,33.8444444,-117.7763889,Anaheim Hills,CA,light,90,We witnessed 3 green and 1 pink light flying in formation +2000-01-02,34.0555556,-117.1816667,Redlands,CA,fireball,180,Flaming Green Fireball reported over mountains in San Bernardino County Sunday Jan. 2, 2000. +2000-01-02,33.4936111,-117.1475,Temecula,CA,fireball,8,White light, changing to green, trailing flame, disintegrated, probably a meteorite. +2000-01-02,34.2438889,-116.9105556,Big Bear Lake,CA,other,7,I seen a object low on the eastern sky traveling to the south almost horizonal maybe 5 degrees down the object was blueish front trali +2000-01-02,33.6633333,-116.3091667,La Quinta,CA,formation,10,4 lights in diamond shape formation +2000-01-02,36.7080556,-119.555,Sanger,CA,other,10,SAW OBJECT IN SKY , BLUE FLAME TAILING BEHIND ,HUGE +2000-01-02,33.2,-117.2416667,Vista,CA,disk,3,We saw a disk from the side so it appeared like a cigar. It was bright, "neon" green with a bright orange, firey trail running behind i +2000-01-02,34.1616667,-118.0519444,Sierra Madre,CA,fireball,60,While traveling east on Grandview St. and approaching Santa Anita Ave. I saw..a green object...at first I thought it was a pyrotechnic +2000-01-02,33.7458333,-117.8252778,Tustin,CA,light,15,I saw a bright blue stream of light with a long trail behind it directly compass north of my home. It flew level accross the horizon fr +2000-01-02,34.1161111,-118.1494444,South Pasadena,CA,chevron,10,Boomerang with 6 lights passed directly over my head. +2001-01-02,44.4511111,-90.8411111,Merrillan,WI,light,120,Saw a very bright light in the north eastern sky. +2001-01-02,36.0241667,-93.3644444,Ponca,AR,triangle,300,Citing of a triangle shaped craft on the river. +2002-01-02,39.7908333,-77.1097222,Whitehall,PA,other,60,Dark spider-shaped objects seen flying over store - no sound, no lights +2002-01-02,38.1502778,-92.6177778,Osage Beach,MO,cigar,600,Cigar shaped object seen near Lake of the Ozarks, MO +2002-01-02,70.6369444,-160.0383333,Wainwright,AK,light,90,Bright light in the Alaska night sky, moving south-north at extreme speed +2002-01-02,21.3069444,-157.8583333,Honolulu,HI,triangle,120,Very bright, firm triangular formation of lights -- solid, hanging and moving silently, 100 feet above the building. +2003-01-02,40.1108333,-77.0352778,Dillsburg,PA,diamond,30,one diamond shaped object with blue, green, red & yellow flashing lights, then we lost our power for several hours. +2003-01-02,33.7877778,-117.8522222,Orange County,CA,light,900,bright white light in sky, stationary for 10 min. moved straight up and to the right and sat there for 15 min. too big to be a plane, s +2003-01-02,37.3394444,-121.8938889,San Jose,CA,triangle,600,San Jose, CA Jan 2񫺓 2 black triangles flying above 30ꯠ feet. Hovering very slowly. heading east, then west. +2003-01-02,34.0522222,-118.2427778,Los Angeles,CA,cigar,300,HUGE flying craft with 3-5 blindingly bright horizontal lights flying low overhead +2003-01-02,43.7677778,-94.1655556,Winnebago,MN,disk,37800,We saw a disk shape craft with lights that circled around the craft changing colors from white,to red, green,and blue +2004-01-02,19.8875,-155.1236111,Wailea,HI,circle,600,A Bright Orange Pulsating Orb +2004-01-02,33.9191667,-118.4155556,El Segundo,CA,triangle,2,Bright shiny triangular object droped from the sky then vanished +2004-01-02,33.1477778,-81.8980556,Shell Bluff,GA,light,120,We saw this bright object on a cold night while hunting. +2004-01-02,38.8461111,-77.3066667,Fairfax County,VA,other,900,I was shopping in the Crossroads Shopping Center in Fairlax County on Route 7 (between Alexandria and Falls Church). I saw an object wi +2005-01-02,37.9319444,-121.6947222,Brentwood,CA,light,180,Three red lights float across the sky and disappear..no sound. +2005-01-02,43.3755556,-116.5280556,Melba,ID,egg,120,This object was a dark color and had white flash lights with a green color left behind it as it flew +2005-01-02,47.6063889,-122.3308333,Seattle,WA,light,2700,Two objects with pulsating lights in Seattle over Puget Sound. +2005-01-02,40.5983333,-124.1561111,Fortuna,CA,light,1,A bright green light streeked from the sky down to a mountain. +2005-01-02,47.6063889,-122.3308333,Seattle,WA,light,240,white light similar to satellite traveling high over Seattle +2005-01-02,41.8786111,-71.3830556,Pawtucket,RI,circle,300,sphere hummed overhead while flashing red and blue - slowly departed to the east, into South Attleboro / route 95 +2005-01-02,33.2961111,-86.8436111,Helena,AL,unknown,120,craft traveling VERY VERY FAST. Red flashing lights. Tried to track with telescope,craft much to fast to do so. +2006-01-02,42.2708333,-83.7263889,Ann Arbor,MI,changing,300,Probable HOAX: 5 ufos, silent black objects, moving slowly +2006-01-02,34.2983333,-108.1341667,Pie Town,NM,diamond,10800,14 dimond shaped objects cought on NRAO website cam +2006-01-02,27.0994444,-82.4544444,Venice,FL,circle,300,Small black object seen over Venice, Fl +2006-01-02,26.1902778,-97.6958333,Harlingen,TX,cone,420,Cone shape that changed to circle seen over Tamaulipas Mexico from Harlingen Texas. +2006-01-02,37.0052778,-89.1763889,Cairo,IL,light,600,This is a follow up on my last report, one more witness. strange pulsating lights in cloud, over alex. and pulaski counties in so. il. +2006-01-03,38.3030556,-77.4608333,Fredericksburg,VA,light,120,clear sky looked like a star 10:00 am in the morning. west in the sky went left the right then it was still and then disapeared. +2007-01-02,47.6063889,-122.3308333,Seattle,WA,fireball,30,((HOAX)) it was really fast, faster then any airplane. It was red, made a microwave sound. Thats it, because I was drunk. +2007-01-02,41.85,-87.65,Chicago,IL,formation,120,Triangle shaped formation comprised of three fast moving balls +2007-01-02,36.4744444,-81.805,Mountain City,TN,disk,180,Witness reports that he was stopped at a traffic light on Hwy 421 in Mountain City, Tn. this morning. As he waited for the light to cha +2007-01-02,40.7988889,-81.3786111,Canton,OH,disk,120,A large disc in the sun was photographed from a cell phone at 1 pm eastern standard time about 5 mi. south of Akron/Canton Airport near +2007-01-02,40.948055600000004,-79.7430556,Chicora,PA,sphere,10,immobile gray sphere, far off, but appeared rather large in size +2007-01-02,41.5733333,-87.7844444,Tinley Park,IL,light,60,Solid White Ball of Light Drifting across the sky +2007-01-02,40.2986111,-83.0680556,Delaware,OH,light,240,I had two sightings last night in the city of Delaware, Ohio. I usually walk the dog twice after work. The first sighting was around 5: +2007-01-02,33.4955556,-88.4272222,Columbus,MS,light,60,A bright, unblinking green light streaked across the sky at a high rate of speed. +2007-01-02,47.6761111,-120.2072222,Entiat,WA,light,300,My friends and I stepped outside to smoke a cigarette when we observed a light that was floating across the sky. We thought it might b +2007-01-02,47.6063889,-122.3308333,Seattle,WA,light,2400,Random White Lights circling over West Seattles Admiral District. ((NUFORC Note: We suspect advertising lights. PD)) +2007-01-02,33.6188889,-117.9280556,Newport Beach,CA,unknown,600,UFO spotted over Newport Beach suburb of Corona del Mar, CA at 19:00 Jan. 2, 2007 by 2 witnesses +2007-01-02,39.2386111,-77.2797222,Clarksburg,MD,light,1200,lights in the sky over clarksburg +2007-01-02,41.9536111,-73.5111111,Millerton,NY,light,10800,Clear night, full moon. Was driving home when noticed something very bright in the sky. ((NUFORC Note: Sirius? PD)) +2007-01-02,41.5005556,-94.6433333,Adair,IA,circle,45,3 orange donut shaped objects +2007-01-02,42.2625,-71.8027778,Worcester,MA,fireball,10,a green fireball that moved quickly down and up and then across the sky before it disappeared. +2007-01-02,40.3672222,-76.9313889,Dauphin,PA,other,180,Jan.2ᄷ we seen bright lites and a huge air craft flying over our house it was gray and moving slowly and not making much of a sound. +2007-01-02,41.1572222,-85.4883333,Columbia City,IN,light,60,Two orange-yellow lights quietly and quickly from east to west over town +2007-01-02,40.7266667,-73.6347222,Garden City,NY,changing,180,((HOAX??)) One Enflamed craft and large craft above feild. +2008-01-02,39.7402778,-94.2408333,Cameron,MO,light,45,Lights caught on cell phone camera stop in sky and take off after flooding pasture in a hue of light +2008-01-02,32.6536111,-83.7597222,Byron,GA,light,420,solid white/yellow light traveling south to north at slower speed and low altitude +2008-01-02,33.94,-118.1316667,Downey,CA,formation,900,we are not alone in the universeI really do understand how embarrassed it using solid propellant rocket for propulsion. +2008-01-02,40.3061111,-121.0047222,Westwood,CA,diamond,600,second sighting by son and I within a week in lassen/plumas county ca. +2008-01-02,35.405,-97.1625,Newalla,OK,fireball,8,Blue-Green Fireball spotted, oklahoma city area. +2008-01-02,40.5152778,-107.5458333,Craig,CO,light,7200,it was a light that changed colors and hovered in the sky for quite sometime ((NUFORC Note: Possibly Sirius. PD)) +2008-01-02,31.3269444,-89.2902778,Hattiesburg,MS,other,300,Strange craft covered in lights split into two parts +2008-01-02,38.6244444,-76.9394444,Waldorf,MD,circle,600,Very hard to explain, the movement, the actions, and the speed...very wierd. +2008-01-02,41.8994444,-87.9402778,Elmhurst,IL,other,60,orang/brownish ship with small blue lights and yellow-white larger lights with blue exhaust +2008-01-02,40.0505556,-77.5205556,Shippensburg,PA,triangle,240,Around the evening of January 2nd, 2008 I was driving home from my girlfriend's house in the countryside surrounding Shippensburg Penns +2009-01-02,43.4911111,-83.3969444,Caro,MI,cigar,5,White cigar-shaped object dissappears after being sighted. +2009-01-02,31.7380556,-99.9469444,Ballinger,TX,other,5400,Several UFO's sighted near the big dipper. +2009-01-02,35.6505556,-78.4566667,Clayton,NC,egg,180,((HOAX??)) 4 egg shaped lights, one takes off very rapidly. +2009-01-02,47.8211111,-122.3138889,Lynnwood,WA,other,3600,All witnessed the sighting through the telescope. ((NUFORC Note: Given that the object was seen on two nights, we suspect Venus. PD)) +2009-01-02,44.9444444,-93.0930556,St. Paul,MN,light,3,Fast shooting light through the clouds over Lake Owasso +2009-01-02,40.9627778,-74.1333333,Glen Rock,NJ,fireball,2,We saw a green flash with a firey tail in the sky +2009-01-02,67.0138889,-146.4186111,Venetie,AK,circle,300,southeast of venetie,alaska 99781 object setting about 500 feet above the ground with red and green light for about 5 minutes in one pl +2009-01-02,26.1272222,-80.2333333,Plantation,FL,fireball,600,6 ORANGE LIGHT WERE MAKING A FORMATION IN MY BACK YARD AND THEN MOVED W TOWARDS THE EVERGLADES. +2009-01-02,26.0625,-80.2333333,Davie,FL,light,300,UFO"S OVER DAVIE FLA. +2009-01-02,40.7141667,-74.0063889,New York City,NY,disk,120,((HOAX??)) round,high,orange.manhattan +2010-01-02,33.7877778,-117.8522222,Orange,CA,light,360,Point of light in daytime sky over Orange, CA +2010-01-02,33.4483333,-112.0733333,Phoenix,AZ,rectangle,10,A bright light in Phoenix hovered above houses in broad daylight, then vanished +2010-01-02,38.5816667,-121.4933333,Sacramento,CA,triangle,240,Triangle shaped object spotted over Sacramento River. +2010-01-02,30.0686111,-81.8605556,Middleburg,FL,sphere,600,I was on my way out the door of my house , when i stepped into the drive way of my house i noticed a redish/orange moon it was straight +2010-01-02,34.9244444,-80.7436111,Waxhaw,NC,sphere,60,red glow/flame over waxhaw, nc +2010-01-02,34.6991667,-86.7483333,Madison,AL,triangle,120,Triangle shaped craft with orange-yellow lights that hovered very low near Redstone Arsenal in Madison, Al +2010-01-02,40.3977778,-105.0744444,Loveland,CO,cross,300,extremely bright light over tree in loveland, CO +2010-01-02,33.7488889,-84.3880556,Atlanta,GA,fireball,3,glowing red spaceship flys at car +2011-01-02,33.9375,-117.2297222,Moreno Valley,CA,disk,2940,I woke up and went in the window of my room, were 3 34 am. I looked sideways and saw something that did not budge. I found it strange a +2011-01-02,30.515,-87.4738889,Seminole,AL,teardrop,172800,Why come in such large numbers for any other reason than attack? +2011-01-02,40.8758333,-81.4025,North Canton,OH,other,300,We saw a UFO +2011-01-02,25.4683333,-80.4777778,Homestead,FL,unknown,120,Large fire shape in Homestead Florida sky. Haze around object seen in photo. +2011-01-02,33.4483333,-112.0733333,Phoenix,AZ,diamond,900,Many lights moving in close formation. then going in differnt directions. VERY bright red lights +2011-01-02,43.3380556,-89.3802778,Arlington,WI,triangle,300,While driving home, we saw a low flying triangular shaped aircraft, with lights that hovered, changed directions, and moved silently. +2011-01-02,41.7561111,-124.2005556,Crescent City,CA,sphere,300,a burning orange sphere of light moving up towards the stars +2011-01-02,40.8847222,-79.5380556,Adrian,PA,circle,300,There was a green light and a round circle hanging over us. +2012-01-02,45.3869444,-93.3591667,Saint Francis,MN,changing,1800,I saw around 3 unknown objects dancing in the sky. +2012-01-02,38.8338889,-104.8208333,Colorado Springs,CO,light,30,Observed a solid white light moving at great speed in a south east direction. +2012-01-02,34.1975,-119.1761111,Oxnard,CA,rectangle,2400,I was walking and conversing with the UFO crafts wile walking on the beach blasting the ocean water in coming wave increasing height +2012-01-02,37.775,-122.4183333,San Francisco,CA,unknown,75,A light in the sky flying in a zigzag formation that disappeared after a minute or so. +2012-01-02,39.5297222,-119.8127778,Reno,NV,changing,2400,Craft changing color and direction over Reno,NV. +2012-01-02,33.8358333,-118.3397222,Torrance,CA,unknown,120,Flying object with flashing lights , traveling at great speed, observed flying NW and returning to point of origin. +2012-01-02,20.785,-156.4655556,Kihei,HI,light,120,Bright amber lights seen over Kalama Park in Kiehi, Maui +2012-01-02,32.2958333,-81.2355556,Rincon,GA,triangle,300,A large, black boomerang shaped air craft (no engine noise) with 3 light yellow lights, was hovering over Southern Rincon 3 to 5 minut +2012-01-02,40.0175,-90.4241667,Beardstown,IL,triangle,240,There was a triangular shape with three red/orange lights hovering over Beardstown on the west end, seemed to be moving very slow, no s +2012-01-02,42.0986111,-75.9183333,Binghamton,NY,oval,600,Unknown craft moving over Binghamton +2013-01-02,48.0402778,-122.405,Langley,WA,chevron,120,Shiny Boomerang shape flying over Langley +2013-01-02,47.6063889,-122.3308333,Seattle,WA,light,900,Glowing light hovering over north Seattle. +2013-01-02,39.0166667,-84.6008333,Erlanger,KY,cylinder,180,Cylindrical object in the sky over Northern Kentucky +2013-01-02,40.7469444,-73.8605556,Corona,NY,other,300,2 Bright Lights seen in Queens, NY +2013-01-02,41.7758333,-72.5219444,Manchester,CT,circle,30,3 Bright Lights over Manchester Connecticut +2013-01-02,39.5297222,-119.8127778,Reno,NV,sphere,7200,7+ spherical craft south/southwest of Reno, NV. ((NUFORC Note: Sighting of Sirius, which is located below Orion. PD)) +2013-01-02,39.7286111,-121.8363889,Chico,CA,circle,45,UFO over Chico, Ca, about 10:45pm on 1/2/13 +2014-01-02,47.3075,-122.2272222,Auburn,WA,light,60,Lights in the sky. +2014-01-02,34.1733333,-118.5530556,Tarzana,CA,light,180,Bright green light hovering in the sky that suddenly descended rapidly in a zig zag formation until it dropped out of my line of sight. +2014-01-02,33.9533333,-117.3952778,Riverside,CA,sphere,600,I was on the corner of Blaine and Massachusetts Ave and myself and many others saw a red sphere flying westward high in the sky. It the +2014-01-02,30.2669444,-97.7427778,Austin,TX,circle,1800,Light on top left of moon, followed by white lights and jets. +2014-01-02,32.2216667,-110.9258333,Tucson (North Of),AZ,circle,1200,Red and orange orb over the foothills in Tucson, Arizona. +2014-01-02,27.0994444,-82.4544444,Venice,FL,egg,1200,Floating, glowing objects that at one point formed a triangle. +2014-01-02,41.6005556,-93.6088889,Des Moines,IA,unknown,7,In Des Moines Iowa white/red light, shot up like a firework, stopped, then zoomed away. +2014-01-02,31.7711111,-84.7894444,Cuthbert,GA,light,300,Very bright "Spotlight" like light & 2 very dim lights. +2014-01-02,42.8711111,-97.3969444,Yankton,SD,fireball,600,Orange fire ball that made a weird humming noise. +2014-01-02,26.5625,-81.9497222,Cape Coral,FL,light,300,Orange light hovering and then moving horizontal in Cape Coral, Florida. +2014-01-02,30.2669444,-97.7427778,Austin,TX,light,60,Reddish orange bright lights traveling very quickly then disappearing. Completely silent. +2014-01-02,37.8716667,-122.2716667,Berkeley,CA,light,7200,THREE BRIGHT ORANGE LIGHTS OVER OAKLAND AND A SHOOTING STAR. +2014-01-02,40.3791667,-87.6686111,Rossville,IL,light,600,3 orange lights seen hovering and then made a triangle formation. +1959-12-20,34.0522222,-118.2427778,Los Angeles,CA,disk,600,Silent, Extreme Bright White Disc of Light, approx. 100 foot diameter Hovered approx. 10 minutes then "Switched Off". Small white ligh +1968-12-20,58.301944399999996,-134.4197222,Juneau,AK,other,900,Earliest encounter, half-moon shaped object shot paralyzing light beam through bedroom window. +1968-12-20,58.301944399999996,-134.4197222,Juneau,AK,other,900,Strange half-moon shaped thing shoots light into room, causes paralysis and other effects. +1970-12-20,41.5380556,-72.8075,Meriden,CT,unknown,600,My parents & I just sat down for dinner when my Aunt came over to say she see's a funny thing in the sky . itm was dark already because +1975-12-20,37.3688889,-122.0352778,Sunnyvale,CA,light,900,large blue light with no sound; was unable to move +1978-12-20,33.9816667,-118.2241667,Huntington Park,CA,disk,1200,My Father and I watched a silver object, shaped like a diamond on its side. It hovered overhead then slowly moved to the right, then d +1978-12-20,47.6063889,-122.3308333,Seattle,WA,disk,600,UFO Sighting in December 1978 in Seattle, WA. +1978-12-20,40.3766667,-74.425,Helmetta,NJ,circle,2,It hovered , sprinted across the sky. Hovered again. Disappeared. +1979-12-20,46.1261111,-67.8408333,Houlton,ME,triangle,180,I was sitting in a parking Lot,when I noticed this triangular shaped object fly directly over head +1980-12-20,39.8402778,-88.9547222,Decatur,IL,unknown,60,During a raging snowstorm, I saw a dark object flying at about 5 MPH in the middle of the road between the trees, using a bright search +1985-12-20,41.7055556,-70.2291667,West Yarmouth,MA,diamond,3600,Unmoving object, diamond shaped with lights on top, bottom and around center. +1987-12-20,36.175,-115.1363889,Las Vegas (60-70 Miles North-East Of, Interstate 15 North),NV,light,240,Viewed pairs of red strobing lights extended across wide area of Nevada desert and watched as two F-15 fighter aircraft tried to interc +1990-12-20,47.5002778,-111.3,Great Falls,MT,light,3600,i was looking out window doing laundry and cooking dinner in kitchen ,i lived by malstrom airforce base, i thought wow first time i see +1991-12-20,32.8405556,-83.6325,Macon,GA,disk,120,saucer shaped soundless object hovering with rectangular lights going around; as soon as on would go off, the other would come on, +1993-12-20,41.2411111,-77.0013889,Williamsport,PA,triangle,600,A triangular shape moving northeast,, non transparent, silent, it had three blue/white lights and a red light . +1994-12-20,41.9,-71.0902778,Taunton,MA,other,30,A humming object,that put me in a trance like experience flying over Taunton,MA +1996-12-20,46.7163889,-122.9530556,Centralia,WA,unknown,30,Mysterious Red Light Seen Right Outside Bedroom Window +1996-12-20,41.0036111,-80.3472222,New Castle,PA,cylinder,60,I looked up in the sky and there it was +1997-12-20,37.3394444,-121.8938889,San Jose,CA,triangle,15,IT WAS ABOUT 2:20 IN THE MORNING I SEEN A DARK OBJECT ABOUT 40-45 FEET IN THE AIR.IT PASSED RIGHT ABOVE MY HEAD FLYING ABOUT THE PA +1997-12-20,34.54,-112.4677778,Prescott (North Of),AZ,sphere,180,While driving through Arizona My wife and I witnessed a white object in the sky. +1998-12-20,32.7763889,-79.9311111,Charleston,SC,sphere,3,Green flaming ball streaking from north to south with tail behind +1998-12-20,26.7052778,-80.0366667,West Palm Beach,FL,triangle,10,Triangle UFO sighting +1999-12-20,41.2794444,-72.8155556,Branford,CT,light,600,very high altitude.made several stops and direction changes. +1999-12-20,42.1583333,-71.1452778,Canton,MA,circle,300,While driving to Canton, near Stoughton, MA, my son and I both saw a very bright round shape which emmitted a bright, strong beam of li +1999-12-20,33.5538889,-117.2130556,Murrieta,CA,light,420,group of red/orange objects over plateau followed car down road +1999-12-20,41.3525,-73.0088889,Woodbridge,CT,formation,180,three different crafts. Each comprised of 3 very bright making a triangular formation. It made like a low whirring or humming sound. +1999-12-20,38.6055556,-89.6819444,Trenton,IL,light,300,My friend and I were coming home from seeing The Green Mile when I noticed a brilliant light changing colors in northern sky. +2000-12-20,38.7522222,-121.2869444,Roseville,CA,triangle,300,Triangle shaped object seen in No. Calif +2000-12-20,36.2944444,-76.2513889,Elizabeth City,NC,chevron,10,Chevron shaped object, alternating dark/white pattern, 10 sec duration, moderate speed, disappeared. +2000-12-20,32.8647222,-84.8541667,Pine Mountain,GA,fireball,900,I saw two objects hovering and move in a strange manner from a park overlook at 21:00pm. they sped away when an aircraft approached. +2000-12-20,37.9780556,-122.03,Concord,CA,fireball,1,Fluoresent-green short lived fireball over Concord, Ca +2000-12-20,41.3325,-73.2077778,Monroe,CT,triangle,300,Big, triangular craft with 3 large lights flying quickly across the sky and joines two similar objects to form a huge triangular format +2001-12-20,41.6638889,-83.5552778,Toledo,OH,cylinder,120,cylider shaped object over Toledo OH +2001-12-20,47.6794444,-97.9877778,Aneta (By/Near),ND,circle,15,Coming from Grand Forks going west on highway 15. We were looking at Christmas lights when we noticed 5 white lights to the south of us +2001-12-20,36.323055600000004,-86.7133333,Goodlettsville,TN,fireball,10,slowly arching light brightens into flame then trails into oblivion +2001-12-20,38.8302778,-77.1966667,Annandale,VA,light,180,two bright blinking lights +2001-12-20,33.94,-118.1316667,Downey,CA,circle,900,Slow moving bright white circular craft moving from Long Beach CA . to LAX with bright scanning light pointing upward. +2002-12-20,26.9294444,-82.0455556,Punta Gorda,FL,disk,10800,My boyfriend and I were sitting up late last night and I looked over to the left of me and notice a really weird object( which I thoug +2003-12-20,40.4863889,-86.1336111,Kokomo,IN,disk,900,I was just getting home from a friends and notice the hair standing on my arm when I was putting my jacket on to get out of the car bec +2003-12-20,34.6988889,-76.7405556,Atlantic Beach,NC,sphere,3,sphere shaped craft over ocean +2003-12-20,32.905,-80.6669444,Walterboro,SC,disk,600,circular disc with oberservation windows floating in the sky. +2003-12-20,41.4169444,-81.6061111,Garfield Heights,OH,other,120,Boomerang shaped object 100-200ft in size at 250 to 300ft altitude with a speed of 25 to 40 mph directly overhead. +2003-12-20,37.3769444,-77.5061111,Chesterfield,VA,circle,3600,strange blinking light(s) +2003-12-20,40.51,-80.0947222,Emsworth,PA,unknown,120,3 Similar Slow Moving Crafts In The Sky. +2003-12-20,35.0525,-78.8786111,Fayetteville,NC,circle,10,The figure was moving then stopped and disappeared. +2003-12-20,37.9747222,-87.5558333,Evansville,IN,egg,5,bright light falling from sky, southwest to northeast. descending at 90 degree angle +2003-12-20,33.4708333,-81.975,Augusta,GA,disk,300,One disc streaks in contacts another disc, both speed off. +2003-12-20,37.6938889,-85.8591667,Elizabethtown,KY,light,5,Unexplained Light over Hardin County. +2004-12-20,40.4166667,-86.8752778,West Lafayette,IN,oval,20,2000 mph metalic oval with con trail in day time sky over Indiana. +2004-12-20,36.1538889,-95.9925,Tulsa,OK,unknown,20,It was a bright light that was desending , then a big burst of something and then sped upward and out of sight +2004-12-20,33.7811111,-113.6138889,Salome,AZ,circle,300,Three motionless orange lights appear, disappear, then reappear above Salome, Arizona. +2004-12-20,64.8377778,-147.7163889,Fairbanks,AK,unknown,1800,A Cluster of Fixed White Lights Hovering Over Fairbanks Alaska is Seen From Wal~Mart. +2004-12-20,39.7683333,-86.1580556,Indianapolis,IN,disk,1800,Drove directly underneath a UFO in Indianapolis, saw the underside and inside of the UFO. +2005-12-20,34.1808333,-118.3080556,Burbank,CA,unknown,30,2 tight grouping's of lights going West to East about 30 mph at about 1000 ft and 100 ft . +2005-12-20,37.5644444,-97.3519444,Haysville,KS,fireball,120,They were both very big I think the 2 witneses thought the same thing as me it was the most awsome and frightening night of my LIFE!! +2005-12-20,39.7555556,-105.2205556,Golden,CO,light,120,MUFON/COLORADO REPORT: 9 obj's that appeared to be bright hovering lights, then lit up, dimmed, moved to the E and began blinking. +2005-12-20,42.7069444,-71.1636111,Lawrence,MA,oval,120,15 glowing Objects Moving North To South +2005-12-21,41.0413889,-79.5033333,Rimersburg,PA,changing,180,it was tringular had three lkights 2 green 1 red the turn into a round shape and was red then stoped and was yello +2006-12-20,41.9211111,-87.8091667,Elmwood Park,IL,light,600,luminous object traveling very slowly heading eastbound probably estimatied at 30mph, had a light making a weird noise passing the sout +2006-12-20,38.2119444,-86.1219444,Corydon,IN,light,20,White ball of light, erratic movement, sudden dissapearence. +2006-12-20,33.0183333,-80.1758333,Summerville,SC,light,60,A powerfull light in the sky. +2006-12-20,19.4975,-154.9508333,Pahoa,HI,egg,2,Egg shapped orange Moon object over Hawaii neighborhood. +2007-12-20,36.7477778,-119.7713889,Fresno,CA,disk,10,I don't know what to do,I try to not think about it , but now,I don't know what to think about, US. +2007-12-20,43.6725,-111.9141667,Rigby,ID,fireball,180,A little line of light riggiling up to space. +2007-12-20,36.8744444,-94.8772222,Miami,OK,diamond,300,Black Diamond shape object over Miami, Oklahoma +2007-12-20,27.7705556,-82.6794444,St. Petersburg,FL,triangle,10800,I am ex-USAF. This was no conventional craft, triangular, darted in all directions. +2007-12-20,33.3527778,-111.7883333,Gilbert,AZ,unknown,5,huge blue comet like light falling to earth +2007-12-20,41.4958333,-87.8486111,Frankfort,IL,oval,600,UFO seen over Harlem Ave. +2007-12-20,27.8769444,-97.3236111,Portland,TX,light,20,I saw a light coming towards the ground and shot due west and then disappear. I know others saw the same thing, they were all pointing +2007-12-20,38.6272222,-90.1977778,St. Louis,MO,triangle,10,December 20, 2007 at 10:06 P.M. in thick fog a tiangle box shaped air craft was seen over the Mississippi River in South St.Louis City. +2007-12-20,38.6272222,-90.1977778,St. Louis,MO,triangle,10,triangular object three light on three corners sighted in st. louis city MO. +2008-12-20,33.6608333,-95.5552778,Paris,TX,other,3,An arc of about 7 white lights at a very high altitude moving West at a very high rate of speed +2008-12-20,34.0522222,-118.2427778,Los Angeles,CA,fireball,1,OK so i was at work and i got a little drunk but not to the max. i dunno if this limints my credibility. I went to little ceasers while +2008-12-20,34.0522222,-118.2427778,West Los Angeles,CA,fireball,900,Red fireball over the sky of the West Los Angeles area. +2008-12-20,41.6611111,-91.53,Iowa City,IA,unknown,2,Bright opal colored flash in the sky oround Iowa City, Iowa on Dec. 20th 2008. +2008-12-20,29.4238889,-98.4933333,San Antonio,TX,rectangle,3600,A RECTANGLE BLACK OBJECT STATIONARY IN MID -AIR ABOUT AN HR. WITNESSES ON HAND. +2008-12-20,30.505,-97.82,Cedar Park,TX,light,4,I observed a brillian, white, ball of light flying at tremendous speed from West to East. +2009-12-20,45.6216667,-94.2066667,Sartell,MN,light,600,star took off after watching it +2009-12-20,36.8525,-121.4005556,Hollister ( Lone Tree Road),CA,disk,1200,Unidentified Flying Object in Lone Tree Rd. San Benito County, Hollister +2009-12-20,33.1580556,-117.3497222,Carlsbad,CA,light,120,Single object. Bright blue light flying to the left, bright red flying to the right. 2nd sighting over same spot as 12/11/09 sighting. +2009-12-20,37.6658333,-77.5066667,Glen Allen,VA,unknown,10,Unpatterned group of 6-8 objects travelling NE to SW at high speed and high altitude. +2009-12-20,34.2694444,-118.7805556,Simi Valley,CA,cross,600,Cool blue fast flying cross shaped machine doing unbelievable gymnastics in the low sky at sunset. +2009-12-20,44.5191667,-88.0197222,Green Bay,WI,circle,30,Orange ball above Green Bay, WI +2009-12-20,32.64,-117.0833333,Chula Vista,CA,circle,1800,Circular moving objects viewed over the sky of San Diego from my Chula Vista backyard. +2009-12-20,36.6777778,-121.6544444,Salinas,CA,triangle,2400,30 - 40 min interaction with triangle craft +2009-12-20,33.8702778,-117.9244444,Fullerton,CA,other,600,UFO above seven eleven w/ fast lights +2010-12-20,39.0911111,-94.4152778,Independence,MO,circle,600,weird aircraft over independence missouri ((NUFORC Note: Sighting of Venus?? PD)) +2010-12-20,20.8947222,-156.47,Kahului,HI,disk,1200,but what was funny is that it beamed a light upwards.For about 15 mins everyone was trying to take a pix and no ones camera worked.Some +2010-12-20,40.7355556,-74.1727778,Newark,NJ,light,600,Rolling strobe lights over Newark +2011-12-20,40.2522222,-105.8225,Grand Lake,CO,light,1200,We saw a half circle light beam that had no explanation +2011-12-20,48.2413889,-122.3694444,Stanwood,WA,oval,5,Solid light, whistling and accelerated to disappear behind a close 500 Lights On Object0: Yes +2011-12-20,42.7652778,-71.4680556,Nashua,NH,changing,120,Looked like a big white plastic bag, but it slowed and changed shape.then it went into the sun and I never saw it again. +2011-12-20,48.5344444,-123.0158333,Friday Harbor,WA,light,1200,Two light orbs spotted making irregular movements. +2011-12-20,47.4980556,-97.3241667,Mayville,ND,light,900,Slow moving Ball of White Light with several different other colors attached above small town in ND +2011-12-20,37.775,-122.4183333,San Francisco,CA,unknown,240,Flame-like orange light, moved in a straight line, curved slightly, came to a complete stop, and then after a ew seconds, disappeared. +2011-12-20,36.8466667,-76.2855556,Norfolk,VA,light,2,Bright and super fast spot of light traveled 45 deg and then right straight up in the sky +2011-12-20,35.2619444,-81.1875,Gastonia,NC,light,480,UFO SIGHTING THAT MADE ME A BELIEVER & THERES MORE +2011-12-20,35.3394444,-97.4863889,Moore,OK,light,900,Lights in the sky SE of Moore - hovering and moving around. +2011-12-20,30.1452778,-95.7133333,Stagecoach,TX,cigar,210,Four cigars flashing and spinning in mid air. +2011-12-20,32.7152778,-117.1563889,San Diego,CA,other,120,Flying, dripping red-orange globs over San Diego +2012-12-20,34.185,-83.9252778,Flowery Branch,GA,flash,3,Flash in sky +2012-12-20,42.0083333,-91.6438889,Cedar Rapids,IA,light,1200,Astonishing Sound and Changing Lights Seen North Of Cedar rapids, Iowa on December 20th 3:15 A.M. + +2012-12-20,41.2372222,-82.12,Lagrange,OH,triangle,300,Triangle craft with lights in each corner and a large light in the center seen up close. +2012-12-20,36.1538889,-95.9925,Tulsa,OK,light,1,MORE PEOPLE HAD TO HAVE SEEN THIS AND NEED TO REPORT TO TULSA NEWS. +2012-12-20,39.3291667,-82.1013889,Athens,OH,light,424,Three strange orange lights Athens, Ohio. +2012-12-20,38.2366667,-76.4975,Great Mills,MD,oval,600,It seems both objects hovered over the elementary and high school that day, which are approx. 2 miles. +2012-12-20,32.8338889,-109.7069444,Safford,AZ,other,3600,WWII era plane slowly and silently floated across sky fallowing hw 191 south and killed camera batteries attempting pictures +2012-12-20,43.9961111,-70.0611111,Lisbon Falls,ME,oval,90,Lisbon Falls, Maine shiny oval object +2012-12-20,43.9961111,-70.0611111,Lisbon Falls,ME,oval,90,Lisbon Falls, Maine UFO Sighting during the Day +2012-12-20,36.1538889,-95.9925,Tulsa,OK,other,120,Large airplane flying low to ground stopping in mid-air hovering for a few seconds then continuing to fly. +2012-12-20,34.0005556,-81.035,Columbia,SC,light,5,Greenish blue light +2012-12-20,47.5675,-122.6313889,Bremerton,WA,diamond,14400,Large object in a possibly diamond shape emitting bright orange-yellow lights on the horizon over Puget Sound. +2012-12-20,31.5686111,-111.0516667,Tumacacori,AZ,light,300,Bright & Big Stationary Pale Amber Light Just North of Tumacacori AZ, Fades & Departs with Dim Red Lights +2012-12-20,38.9783333,-76.4925,Annapolis,MD,light,1800,http://edgewater.patch.com/articles/video-massive-power-outages-in-anne-arundel#video-12661183 This is video that one of us took of the +2012-12-20,35.6616667,-97.1952778,Luther,OK,sphere,180,Big ball of yellow light in Central NE Oklahoma +2012-12-20,31.8294444,-86.6177778,Greenville,AL,triangle,20,Triangle shaped object - 2 witnesses +2012-12-20,46.9422222,-122.6047222,Yelm,WA,oval,420,Oval Craft With Funnel Bottom and Bright Magnificent Blue Light racing through night sky +2012-12-20,26.2375,-80.125,Pompano Beach,FL,fireball,300,Red fireball observed moving north. +2012-12-20,39.2805556,-80.3447222,Clarksburg,WV,disk,30,Silver glowing disk hovering in the sky above Clarksburg, WV. +2012-12-20,30.2538889,-85.9569444,Hollywood Beach,FL,oval,10,Witnessed soundless, orange lights/orbs traveling paralel to the beach but heading a bit east toward the ocean. They traveled in pairs, +2012-12-20,30.8530556,-96.9766667,Cameron (Near, On Highway),TX,diamond,300,Viewed a 5-6 shaped ufo, with pulsating lights hovering above my vehicle on highsway 36 near Cameron Texas. +2012-12-20,30.8530556,-96.9766667,Cameron,TX,other,600,Octagon shaped bright grayish ship in sky, near Cameron, Texas on highway 36. Blinking. Fast. Scary +2013-12-20,33.2441667,-86.8163889,Alabaster,AL,fireball,10,3 balls of fire like lights rotating counter clockwise 20-30 feet in diameter, elevation 200-300 feet in alabaster,al. +2013-12-20,27.0438889,-82.2361111,North Port,FL,formation,120,Three flame red flickering points of light in the sky, moving indep. of one another in triangle formation, then fading out. +2013-12-20,42.8708333,-85.865,Hudsonville,MI,flash,60,Flashing Lights Hudsonville Michigan +2013-12-20,41.0933333,-75.0022222,Bushkill,PA,light,3600,One big light pulsating and moving in small, random circles and one small light staying still but slowly blinking. +2013-12-20,42.0680556,-72.6791667,Feeding Hills,MA,fireball,3,It was high in the sky shooting over Provin mountain, it was bright red with a red trail. +2013-12-20,40.5,-111.95,West Jordan,UT,flash,300,Bright blue flashing towards the top of the Wasatch mountains +2013-12-20,27.9472222,-82.4586111,Tampa,FL,light,120,On my drive home I was looking into an otherwise clear sky, with the exception of what I thought was a plane. I watched the plane with +1962-12-21,40.7141667,-74.0063889,New York City,NY,cigar,900,the ufo I saw on dec, 21, 1962 in NYC has never appeared on any website I could find +1970-12-21,27.9011111,-81.5861111,Lake Wales,FL,oval,300,Pulled over by a ufo using police lights +1975-12-21,41.9833333,-71.3333333,North Attleboro,MA,sphere,900,Outline of the craft clearly seen, rotating lights, no noise, slowly moving south +1997-12-21,38.4494444,-78.8691667,Harrisonburg,VA,light,60,five stationary lights in a row in the southeastern sky +1998-12-21,33.6888889,-78.8869444,Myrtle Beach,SC,disk,30,Spotted Medium Speed moving object heading NNW, below the clouds. +1998-12-21,40.7583333,-82.5155556,Mansfield,OH,sphere,30,Pewter spheres over interstate +1998-12-21,42.6191667,-113.6763889,Rupert (5 Miles North Of),ID,disk,600,Dark night, craft "sliding" erraticly from NW to SE, bright white lights spaced around in circle with millions of "sparklers" inbetween +1999-12-21,47.4538889,-122.3205556,Seatac,WA,sphere,30,Metalic silver sphere at a height of about 500-700 ft. up roughly 6-8 miles from me over the area of Southcenter Mall near Seatac airpo +1999-12-21,45.5236111,-122.675,Portland,OR,light,180,Bright light hanging in sky then zig-zagging downward and disappearing. +1999-12-21,39.7047222,-105.0808333,Lakewood,CO,disk,1200,i was driving home with my sister and in the north there was a brightly colored, and changing colors disk-type thing hovering over the +2000-12-21,33.3527778,-111.7883333,Gilbert,AZ,chevron,45,Thursday afternoon, 12/21 at app. 4:15 pm mst., I spotted an object that made me grab my binoculars with great haste. Upon a quick obse +2000-12-21,35.0525,-118.1730556,Mojave,CA,triangle,240,It was something I can't explain! +2000-12-21,33.3527778,-111.7883333,Gilbert,AZ,circle,1155,I LIVE SOUTH OF GILBERT IN CHANDLER, ARIZONA JUST NORTH OF MY YARD A RED BRIGHT LIGHT APPEARED JUST ABOVE THE HOUSE BEHIND ME. IT WAS A +2000-12-21,48.7597222,-122.4869444,Bellingham,WA,sphere,30,I saw the moon, too low in the sky, disappear into a purple glow, followed by an illuminated trail. +2001-12-21,40.0944444,-75.1491667,Wyncote,PA,sphere,45,8 to 11 spherical objects in a straight line moved southeasterly. +2001-12-21,43.3344444,-75.7483333,Camden,NY,circle,180,Bright, motionless, Orange Circle decended very fast vertically towards the ground behind the tree line. +2001-12-21,41.1366667,-95.8905556,Bellevue,NE,sphere,180,A orange coilored sphere hovered over western horizon by Air Force base. +2002-12-21,29.6908333,-95.2088889,Pasadena,TX,light,60,Bright Light travelling over Houston Ship Channel, with Red and Blue Lights flashing around the perimeter, making Que-ball turns. +2002-12-21,43.0794444,-75.7511111,Canastota,NY,unknown,300,bright light +2002-12-21,41.5386111,-75.9469444,Tunkhannock,PA,other,600,hovering craft takes off quickly, loss of time +2002-12-21,27.3361111,-82.5308333,Sarasota,FL,fireball,5,Bright fireball travelling S - N leaving a trail +2002-12-21,42.135555600000004,-71.9705556,Charlton,MA,other,600,lights moving at constant speed east to west with stars moving slower behind them +2003-12-21,42.0416667,-70.6727778,Duxbury,MA,sphere,2,Pale glowing orange, low flying, spherical object +2003-12-21,28.2916667,-81.4077778,Kissimmee,FL,light,120,Bright Orange light, moved towards us and then to the right on the same horizontal axis, then faded and finally disapered. +2003-12-21,27.7705556,-82.6794444,St. Petersburg,FL,unknown,191,Object flaming towards earth; changes direction +2003-12-21,47.0530556,-122.2930556,Graham,WA,circle,420,BROGHT RED/ORANGE BALL MOVING ,FIRST EAST, STOPPED AND RESUMED MOVING NORTH +2003-12-21,34.1161111,-88.7116667,Shannon,MS,light,18000,2 objects w/Red green/blue white light in sky for hours, started east last I seen almost south +2003-12-21,38.9780556,-122.8383333,Kelseyville,CA,circle,18000,I was on my back deck ,which over looks Clearlake (Soda Bay), when I saw two spheres of circling each other for approximately one +2003-12-21,38.7508333,-77.4755556,Manassas,VA,circle,180,I looked up and saw what looked like a column of discs flying silently in formation as I arrived home around 10:pm 12/21/03. +2003-12-21,32.7666667,-96.5988889,Mesquite,TX,unknown,5,Solid grey object moving fast over house +2004-12-21,25.8897222,-80.1869444,North Miami,FL,oval,90,I have never seen anything that could move that quick and make a 90 degree turn, then go backwards!! +2004-12-21,35.5138889,-82.3961111,Fairview,NC,changing,7200,UFO sightings in the eastern sky. +2004-12-21,33.1433333,-117.1652778,San Marcos (Escondido, Rancho Bernardo),CA,other,1200,enormous size blue ufo followed over 3 cities +2004-12-21,39.3330556,-82.9825,Chillicothe,OH,changing,3600,Uncle and nephew have encounter with strange entity from glowing globe. +2004-12-21,33.8158333,-78.6802778,North Myrtle Beach (Cherry Grove),SC,circle,300,Every thing was a very bright gold color. +2004-12-21,47.4236111,-120.3091667,Wenatchee,WA,fireball,2,Large shooting star over eastern sky +2005-12-21,37.1055556,-80.6855556,Dublin,VA,unknown,300,Anomalous light seen above well traveled highway in early morning hours +2005-12-21,33.4052778,-86.8113889,Hoover,AL,other,900,slow moving Fireball in the sky. ((NUFORC Note: Possible contrail, we suspect. PD)) +2005-12-21,43.1380556,-75.5711111,Verona,NY,disk,180,ufo sighting in central ny +2005-12-21,40.4180556,-79.6258333,Export,PA,flash,5,Green flashes of light, several, without sound, that lit up the sky +2005-12-21,30.6325,-97.6769444,Georgetown,TX,circle,7200,Expanding/retracting spherical object sighted in southwestern sky. ((NUFORC Note: We suspect a celestial body, possibly Venus. PD)) +2006-12-21,43.1547222,-77.6158333,Rochester,NY,cylinder,600,I seen a caft over the dorms at RIT in rochester for about 10 mins hovering I think i saw another car pull over .my girl friend was wi +2006-12-21,33.2486111,-111.6336111,Queen Creek,AZ,cigar,10,White streak with and object dropping out of it and then flying nort +2006-12-21,32.4366667,-111.2247222,Marana,AZ,unknown,120,((HOAX?? Note dates. PD)) 1-3 objects seen North of Tucson +2006-12-21,39.6536111,-105.1905556,Morrison,CO,other,300,Fuzzy black box hovering mid day on winter solstice at Red Rocks caught on video. +2006-12-21,41.5769444,-73.4088889,New Milford,CT,cigar,1020,There was a blinding flash and they disapeared. +2006-12-21,33.0580556,-112.0469444,Maricopa,AZ,light,600,Stationary Orange Lights. ((NUFORC Note: Possible military flares?? PD)) +2006-12-21,40.9405556,-73.9972222,Dumont,NJ,unknown,40,flashing lights changing directions and hovering and changing colors +2007-12-21,39.6291667,-75.6586111,Bear,DE,triangle,120,Multiple sightings of a perfect circle of light that is replaced by three dimmer lights in an equilateral triangle. +2007-12-21,26.7052778,-80.0366667,West Palm Beach,FL,unknown,600,high speed cloud shape changing direction +2007-12-21,29.7630556,-95.3630556,Houston,TX,flash,15,Flashes of Greenish/Blue light over Clear Lake +2007-12-21,21.3069444,-157.8583333,Honolulu,HI,unknown,120,On the evening of December 21, 2007, I was driving on Interstate H-1 on the island of Oahu. The incident occurred at approximately 7:1 +2007-12-21,32.7919444,-115.5622222,El Centro,CA,unknown,7,It was around nine thirty at night. I began to walk out of my car that I had parked in front of my house. As I began to walk the stretc +2007-12-21,40.7652778,-73.8177778,Flushing,NY,triangle,60,Triangle shaped object with red lights in New York +2008-12-21,33.79,-118.2969444,Harbor City,CA,unknown,180,UFO Sighting in Harbor City, CA area +2008-12-21,36.2572222,-115.6419444,Mt. Charleston,NV,diamond,5,On our way back home from our ski trip [dad and I], I decided to record the scenery one last time. We didnt notice the peculiar object +2008-12-21,31.0905556,-88.2280556,Citronelle,AL,sphere,30,Chrome Sphere and mind control? +2009-12-21,35.1475,-105.9763889,Stanley,NM,circle,3600,hot spot for activity ufos every night. +2009-12-21,44.5736111,-68.7961111,Bucksport,ME,triangle,300,Triangular shaped craft over rt 46 +2009-12-21,26.4611111,-80.0730556,Delray Beach,FL,egg,600,2 Fiery glowing objects over Delray Beach, FL +2009-12-21,40.8688889,-72.5180556,Hampton Bays,NY,other,10,Black, cresnet shaped object with four dim lights raced across the sky. ((NUFORC Note: Student report. PD)) +2009-12-21,33.2075,-92.6661111,El Dorado,AR,egg,10800,Six egg shaped or actually appeared like they had two parts appeared in the night sky. ((NUFORC Note: Celestial bodies?? PD)) +2009-12-21,27.6383333,-80.3975,Vero Beach,FL,fireball,300,2 amber burning objects seen off the coast of Vero Beach +2010-12-21,38.0291667,-121.9605556,Bay Point,CA,oval,480,bright orange ball of light drifts noislessly and slowly over my neighborhood, then fades into clouds. +2010-12-21,40.6441667,-97.45,Exeter,NE,sphere,10800,In a rural area, a rotating sphere with red, green, and other colored lights was sighted about 700 feet above the ground in the SW sky. +2010-12-21,38.6272222,-90.1977778,St. Louis,MO,changing,90,Floating morphing, color changing object. +2010-12-21,34.8697222,-111.7602778,Sedona,AZ,cone,300,Two Cone craft, 1 emitted beam, hovered over felid and pasture, then shoot back up +2010-12-21,40.1288889,-75.3725,Jeffersonville,PA,oval,180,Saw 5 or 6 crafts, two ascended very very quickly upward-- All were fast, a couple may have been planes (but only one made noise) +2010-12-21,40.5005556,-75.0730556,Erwinna,PA,light,900,6 or so red lights that traveled eastward across the Delaware River from Erwinna, and then dissipated into thin air. +2011-12-21,27.9472222,-82.4586111,Tampa,FL,formation,3600,Two white lights that looked like stars followed by a third that moved away at a rapid speed. +2011-12-21,48.5127778,-122.6113889,Anacortes,WA,diamond,7200,Dimond Shaped craft seen whizzing by the sky near Anacortes, WA followed by what looked to be military activity +2011-12-21,44.0583333,-121.3141667,Bend,OR,changing,1200,Like lights over phoenix, az +2011-12-21,41.0594444,-124.1419444,Trinidad,CA,fireball,90,3 glowing lights in diamond formation over Trinidad California +2011-12-21,48.7597222,-122.4869444,Bellingham,WA,sphere,1800,Bright star-like object, thought it was a star until jet seemed to engage.... +2011-12-21,28.1758333,-80.5902778,Satellite Beach,FL,formation,5,3 barely visible Dark brown lights in triangle formation heading NE across Sat Bch Florida. +2012-12-21,36.1538889,-95.9925,Tulsa,OK,other,600,UFO over Tulsa, Oklahoma at 12:58am 12/21/12 +2012-12-21,29.5375,-95.1180556,Webster,TX,changing,5400,24 amber orbs hovering in Houston sky at 2AM 12.21.12 +2012-12-21,48.4213889,-122.3327778,Mount Vernon,WA,triangle,600,It was flashing red,blue,white and green then all of a sudden it shot into the sky really fast then it was gone. But the shape was a tr +2012-12-21,28.0183333,-82.1130556,Plant City,FL,fireball,240,Fireball-like craft seen flickering in the sky. +2012-12-21,44.9238889,-92.9591667,Woodbury,MN,changing,600,I was driving to work today in Woodbury, Minnesota and the sky was crystal clear. It was about 7:45am central time, and I was on freewa +2012-12-21,32.9975,-87.63,Moundville,AL,sphere,900,Hovering and bouncing object seen in alabama sky +2012-12-21,32.5797222,-84.5508333,Geneva,GA,triangle,2,Triangular shaped, possibly bright white, flashing lights was seen over west central Georgia, USA +2012-12-21,34.0522222,-118.2427778,Los Angeles,CA,sphere,10,3 White Sphere over the City Of Angels. +2012-12-21,30.2091667,-95.7505556,Magnolia,TX,other,60,Took pictures of lighted object shooting something towards Earth during daylight. +2012-12-21,34.0522222,-118.2427778,Los Angeles,CA,triangle,335,2 UFOS over the 405 Freeway in Los Angeles. +2012-12-21,43.0388889,-87.9063889,Milwaukee,WI,other,300,I happened to look up in the sky' It was dark and the street lights were out. The objects appeared to be far away but our eyes can not +2012-12-21,32.5419444,-97.3205556,Burleson,TX,light,10,Red/orange Light in sky above Burleson, Texas 12-21-12. +2012-12-21,37.6775,-113.0611111,Cedar City,UT,fireball,300,Large fireball like light hovering in place. +2012-12-21,29.6194444,-95.6347222,Sugar Land,TX,fireball,2100,Multiple sightings of bright, round orange objects within 30 minutes (at different locations). +2012-12-21,33.4483333,-112.0733333,Phoenix (Ahwatukee),AZ,unknown,300,9 orange lights seen in Phoenix, Arizona 12-21-12 +2012-12-21,35.0525,-78.8786111,Fayetteville,NC,cross,120,Unearthly craft over Fayetteville/ Lumberton NC area. +2012-12-21,46.2752778,-122.9063889,Castle Rock,WA,circle,420,Bright Red/Orange Glowing Lights Moving in Specific NW Direction, No Sound +2012-12-21,35.0844444,-106.6505556,Albuquerque,NM,cylinder,180,BRIGHT ORANGISH, solid object; no noise, increased and decreased speed. STOPPED ABOVE MY HOUSE for 1 minute and disappeared/vanishsed! +2012-12-21,35.0844444,-106.6505556,Albuquerque,NM,cylinder,300,Single orangish rectangle with rounded corners, no blinking. Took a smooth route and was very fast, and would decrease speed.; Vanished +2012-12-21,45.6797222,-111.0377778,Bozeman,MT,fireball,3600,My husband and I were driving home from dinner and I looked out the window and noticed 5-6 glowing red/orange fireballs. My first reac +2012-12-21,45.6797222,-111.0377778,Bozeman,MT,light,1200,7 to 8 white oval lights spotted overhead in Bozeman +2012-12-21,44.0522222,-123.0855556,Eugene,OR,fireball,240,4 sets of 3 (12) separate flying orbs/fireballs, orange, headed northwest in straight line. +2012-12-21,44.0522222,-123.0855556,Eugene,OR,fireball,60,3 sets of 3 orangy flickering flying objects completely quiet and in perfectly spaced apart from one another. then they disappeared. +2012-12-21,45.5236111,-122.675,Portland,OR,light,300,Approx. 11 pm, A friend and I were walking on Se Morrison on 28th when We noticed a hovering orange light in the sky slowly descending +2012-12-21,42.8263889,-84.2194444,Perry,MI,light,360,2 UFO's spotted in Perry, MI. +2013-12-21,20.785,-156.4655556,Kihei,HI,sphere,300,Silent orb w/white-blue central light w/numerous encircling red lights in a translucent green glowing bubble, flew, hovered, descended +2013-12-21,44.9430556,-123.0338889,Salem,OR,triangle,10,We saw 3 lights in the sky!!! +2013-12-21,29.4238889,-98.4933333,San Antonio,TX,disk,20,Saucer Craft moving above highway. +2013-12-21,45.5236111,-122.675,Portland,OR,flash,1,Streaking Bright Flash Witnessed over Portland, Oregon. +2013-12-21,28.7077778,-96.2172222,Palacios,TX,cylinder,300,UFO in Palacios, TX, plzz turn head to left or turn screen to left i recorded in landscape mode so u can see it better. +2013-12-21,47.6063889,-122.3308333,Seattle,WA,oval,300,On the date and time stated above, I had just come from the grocery store and was exiting my vehicle. While walking across the parking. +2013-12-21,34.1808333,-118.3080556,Burbank,CA,light,300,Orange Lights seen near the 5 fwy in Burbank, CA. +2013-12-21,45.5236111,-122.675,Portland,OR,oval,240,Large orange light. +2013-12-21,37.9358333,-122.3466667,Richmond,CA,triangle,30,White dots forming triangle with one trailing dot. Silent propulsion. +2013-12-21,36.1197222,-80.0738889,Kernersville,NC,light,60,Two very silent and steady red lights at relatively low altitude with individual paths pass directly overhead in the night sky. +2013-12-21,39.535,-119.7516667,Sparks,NV,circle,3,On a crystal clear winter night, I watched a bright blue ball descend at about a 35-degree angle west of our house. +2013-12-21,40.2969444,-111.6938889,Orem,UT,light,120,About 7 Solid orange lights forming a circle and vanishing. Event time was about 2 minutes. +2013-12-21,29.8241667,-83.595,Keaton Beach,FL,flash,2,High speed flashing objects +1970-01-22,37.5630556,-122.3244444,San Mateo,CA,sphere,30,Schools kids witness UFO +1978-01-22,41.5380556,-72.8075,Meriden,CT,diamond,600,amazing diamond shape craft at low altitude seeminly moving too slow to stay aloft +1988-12-02,19.7297222,-155.09,Hilo,HI,light,10800,7 lights observed around Mauna Kea, HI +1995-01-22,48.7052778,-119.4383333,Tonasket,WA,rectangle,600,Man awakened on farm by noise from animals. Sees huge, square object hovering. Tries to shoot. Physiological effects, upset. +1996-01-22,33.8702778,-117.9244444,Fullerton (Xxxx W.commonwealth Ave.),CA,triangle,360,OBJECT MOVED IN A WAY THAT NOTHING CAN!IT APPEARED TO SPIN AND TUMBLE AT THE SAME TIME,BUT THE MOTION LOOKED LIKE "STOP ACTION",SO THAT +1997-12-02,43.2508333,-83.7941667,Birch Run,MI,disk,60,Craft was smaller than light aircraft was flying very low and seemed it was decending. It had 5 very bright lights 4 being red on the o +1997-12-02,43.2508333,-83.7941667,Birch Run,MI,chevron,300,I went to the door to put my dog out. I saw red and green lights coming across Birch Run Rd toward my house through the trees. I watch +1998-12-02,39.9611111,-82.9988889,Columbus,OH,disk,300,It was a round/disk shaped object that reflected the sunlight. It was hovering at an angle. I say hovering cause it moved like that, no +1999-12-02,39.8208333,-84.0194444,Fairborn,OH,unknown,600,There were intensely bright lights about the height of stadium lights in a place where no stadium existed. +1999-01-22,47.6447222,-122.6936111,Silverdale (Bangor Submarine Base),WA,light,5,Orange ball of light at Bangor Submarine Base, WA 1/22/99 @ 0703 Hr. +1999-12-02,47.6063889,-122.3308333,Seattle (Univ Of Wa),WA,light,30,Two lights moving eratically over Lake Washington traveling South +1999-12-02,38.9341667,-77.1777778,Mclean,VA,unknown,30,Craft which looked to by cylendrical with one moderatly bright, bluesh light on the front and a dimmer, redish light on the back flew o +1999-12-02,47.3811111,-122.2336111,Kent,WA,circle,10,Between 9 pm and 10 pm an amber colored circle passed over my house +2000-12-02,32.7425,-117.0305556,Lemon Grove,CA,cross,100,two oddly shaped craft flew over me & my house +2000-01-22,32.6975,-113.9527778,Tacna,AZ,triangle,180,Iseen three objects coming out of the south at 11;30 a.m. about the 22 of jan. 2000one of the craft flying in the center was about 100 +2000-12-02,42.6158333,-70.6625,Gloucester,MA,light,300,White light bobbing around sporadically for several minutes. +2000-01-22,32.7152778,-117.1563889,San Diego,CA,changing,7200,As I was walking at the La Jolla cove, I saw 3 star like objects at the horizon. They stayed there for about 10 minutes and then change +2001-12-02,33.5805556,-112.2366667,Peoria,AZ,fireball,1800,A flying object appeared to be on fire, South of the West Phoenix Valley. +2001-12-02,38.8516667,-94.3436111,Greenwood,MO,changing,60,My brother and I saw something strange burning into the atmosphere +2001-01-22,44.5647222,-123.2608333,Corvallis,OR,fireball,2,Fireball ? +2001-12-02,35.0844444,-106.6505556,Albuquerque,NM,formation,2700,Formation - White Triangle, String of Lights, and Large Red Glow +2001-12-02,39.9241667,-83.8088889,Springfield,OH,light,5,Offset "X" Formation Below Mars +2001-01-22,38.5172222,-75.2352778,Frankford,DE,light,2400,Very very bright light. ((NUFORC Note: We will await further information. Possible advertising light?? PD)) +2001-01-22,43.5838889,-71.2077778,Wolfeboro,NH,circle,900,very very bright light;it keep speeding away and then would speed back to original position;the light would also fade in and out;we hav +2001-01-22,48.2766667,-116.5522222,Sandpoint,ID,light,300,Large flickering light low in the night sky that faded slowly away, but did not move. +2001-12-02,40.2969444,-111.6938889,Orem,UT,cigar,300,I saw a bright cigar shaped object changing colors in the sky, it was beautiful! +2002-12-02,40.5733333,-76.6916667,Wiconisco,PA,circle,3,A blue round light that had a blue tail and moved extreamly fast. +2002-12-02,38.8405556,-79.8755556,Beverly,WV,fireball,60,A momentary sighting of a large bright circular object flying through the sky. +2002-12-02,40.1183333,-77.1902778,Mt. Holly Springs,PA,fireball,7,Was at computer facing toward window, when my attention was drawn to an extremely bright electric blueish light (similar to a welding a +2002-12-02,39.9858333,-78.7730556,New Baltimore,PA,triangle,2,"Silent" Triangular Craft with two white and two reddish/orange plumes illuminating mountain sides in darkness. +2002-12-02,39.3341667,-76.4397222,Middle River,MD,flash,1,A large green flash of light. +2002-12-02,38.9905556,-76.1580556,Queenstown,MD,circle,120,I usually get up very early to take our dogs out in the AM, usually around 5:15 to 5:30AM. It was still dark, moon was partially cover +2002-12-02,40.2805556,-76.14,Blainsport,PA,fireball,5,The fireball was below the clouds +2002-12-02,30.2263889,-93.2172222,Lake Charles,LA,light,30,I only observed a single point of light. It was traveling north to south. It was located north of the handle of the big dipper. Then +2002-01-22,41.7861111,-85.8677778,Union,MI,fireball,600,Two stars ascend on and follow two young men for seven miles +2002-01-22,38.3605556,-75.5997222,Salisbury,MD,fireball,20,...a very BRIGHT FIREBALL that cast a shadow upon myself and my family +2002-12-02,33.9533333,-117.3952778,Riverside,CA,changing,120,I was getting home on a very clear sky night. I was with a friend , we were standing at the front of my house and talking when I looked +2002-12-02,30.4380556,-84.2808333,Tallahassee (Off Of I-10),FL,light,7200,Sighting in Tallahassee +2002-12-02,34.0522222,-118.2427778,Los Angeles,CA,oval,60,4 unidentified flying objects streak across the night sky at high velocities being chased by military aircraft. +2002-01-22,27.7205556,-82.4333333,Ruskin,FL,light,60,It was a cloud of light, hovering over the cow field next door. +2003-01-22,40.4463889,-74.1786111,Union Beach,NJ,circle,300,2 Sets of 4 dancing lights +2003-12-02,41.0830556,-73.9205556,South Nyack,NY,egg,600,It was a bright light that just hung in the same place in the sky and then moved slowly +2003-12-02,36.5297222,-87.3594444,Clarksville,TN,other,30,Multiple cluster of lights (more than eight) in an arc appear momentarily for roughly 30 seconds at night. +2003-12-02,39.9536111,-74.1983333,Toms River,NJ,disk,300,all my friends witnessed it too, Im not cazy +2003-12-02,34.0961111,-118.105,San Gabriel,CA,circle,60,Comet looking object appears and fades over southern California sky. +2003-12-02,39.9955556,-82.6744444,Pataskala,OH,unknown,600,I was bowhunting before dawn and the field in front of me was suddenly illuminated from an unknown source. +2003-12-02,40.5186111,-74.4125,Edison,NJ,oval,180,Rotating oval object hanging in the sky +2003-01-22,44.9430556,-123.0338889,Salem,OR,cylinder,120,"A U-F-O HAS BEEN SPOTTED OVER THE SKIES OF SALEM." +2003-12-02,34.0194444,-118.4902778,Santa Monica,CA,light,30,Slow-moving comet-like object +2003-12-02,32.7152778,-117.1563889,San Diego,CA,circle,600,Three dull yellow lights in the sky!!! +2003-12-02,36.5211111,-86.0263889,Lafayette,TN,unknown,15,Two large Red Lights and a whistle sound. +2003-01-22,38.3605556,-75.5997222,Salisbury,MD,light,10,several orange lights pulsating (like flares), then totally disappeared then reappeared in a different part of the sky. +2003-01-22,42.8805556,-71.3277778,Derry,NH,disk,300,It was very small and it looked like the shape of a frizzbe +2003-01-22,40.0411111,-86.8744444,Crawfordsville,IN,unknown,1560,FOR 26 MINUTES I OBSERVED WHAT APPEARED TO BE A BELL WITH 4 LITES +2003-01-22,33.0580556,-112.0469444,Maricopa,AZ,light,900,Amber/Orange Lights +2003-12-02,42.5,-70.8583333,Marblehead,MA,fireball,900,fireballs flew in randon directions and vanished after a large flash of light +2003-01-22,34.1975,-119.1761111,Oxnard,CA,circle,3360,it whent back and forth it was red in color and emited shower of lite and we caught it on video and will call on hot line. +2003-12-02,40.7672222,-74.2052778,East Orange,NJ,light,3,a bright green illuminust object darted across the sky at an unbelievable rate of speed,larger than a plane! +2004-12-02,36.9741667,-122.0297222,Santa Cruz,CA,circle,4,Three objects traveling west..very cold clear evening. thought were shooting stars, no trails, gold in color moveing so fast, very very +2004-01-22,47.8569444,-121.6958333,Gold Bar,WA,flash,1,Blue flash lights up sky in Gold Bar +2004-01-22,34.0233333,-84.6155556,Kennesaw,GA,teardrop,180,I saw a big tear shaped ship flying through the sky at unspeakable speeds it pulled off some pretty manuverable stunts for a big craft +2004-12-02,35.2480556,-93.0488889,Pottsville,AR,triangle,600,lights,qiuet,slow drift,,"whats all theses strang lights flying around". +2004-01-22,35.0844444,-106.6505556,Albuquerque,NM,other,900,In my car on Juan Tabo and Central Ave, at 12:45 I noticed an object flying from an auto car dealership and a silver object that looked +2004-12-02,36.9902778,-86.4436111,Bowling Green,KY,diamond,1200,I am a graduate student at Western Kentucky University in Bowling Green. I was on my way to an evening class. I exited Cumberland Par +2004-01-22,40.7616667,-73.3297222,Deer Park,NY,unknown,120,A bright Globe obeserved in the south west sky would streak across making a contrial, then both disappear. +2004-01-22,41.8088889,-88.0111111,Downers Grove,IL,light,30,Object decellerated, stopped, hovered, and then accellerated upward at fantastic rate of speed. +2004-12-02,38.5736111,-97.6741667,Lindsborg,KS,unknown,1920,West of Lindsborg Kansas is a Military bombing range. These craft have been seen on many Occasions, especially when bombing practice is +2004-12-02,37.2138889,-105.5638889,San Acacio,CO,light,20,The lights seem to make some what of a large triangle +2004-01-22,38.8813889,-94.8188889,Olathe,KS,triangle,120,Lighted triangular craft flying low and slow over traffic on I35. +2004-12-02,35.1494444,-90.0488889,Memphis,TN,triangle,30,Pure machine- If it was ours it will be on Memphis approach radar or be given clearance to enter TCA for MEM. +2004-01-22,30.8461111,-93.2888889,Deridder,LA,triangle,900,Yea........... around 750pm on 1-22-04 i spotted something weird over Deridder,louisiana ...some might call me crazy but for me and my +2004-12-02,36.9466667,-76.5608333,Carrollton,VA,light,3600,ZIG-ZAGGING STARLIKE OBJECT +2004-01-22,39.6477778,-104.9872222,Englewood,CO,light,240,Too bright to be a star, so I grabbed my Handicam and started shooting. +2004-12-02,29.3625,-100.8963889,Del Rio,TX,other,180,On Dec 2nd two strange lights appeared around 9:30 - 9:45 pm coming from north- east going south-west +2004-01-22,33.9411111,-84.2136111,Norcross,GA,light,5,As we looked for the helicoptor that was raddling our windows, we saw the "star" that was seemingly being chased. +2004-12-02,40.1672222,-105.1013889,Longmont,CO,light,900,Strange lights hovered low in the sky then accelerated quickly from Longmont CO to Boulder. +2004-01-22,37.3769444,-77.5061111,Chesterfield,VA,egg,180,saw egg shaped object in southern sky. Reddish in color. hovered for a moment then speed off in southern direction. all three witness' +2004-01-22,33.9375,-117.2297222,Moreno Valley,CA,circle,2,it left at a high speed and it was not that far from the ground, like height of a BIRD +2005-12-02,32.3666667,-86.3,Montgomery,AL,rectangle,10,Montgomery AL Rectangle Object with no sound flew West to East 10 Seconds +2005-01-22,34.1063889,-117.5922222,Rancho Cucamonga,CA,formation,5,Four shiny disc shaped objects flying in formation above the moutains and then disappeared. +2005-12-02,42.9666667,-88.3711111,Genesee Depot,WI,cigar,120,Linear, brightly lit, series of 5 or so round lights in sky, moved sloly if at all. +2005-12-02,37.9886111,-84.4777778,Lexington,KY,circle,60,A roundish disk encircled with blue lights and two larger red lights over my car; I couldn't believe it even when I was looking at it. +2005-01-22,34.165,-84.8,Cartersville,GA,circle,2400,IT WAS A CLOUDY NIGHT WHEN 7 PEOPLE SAW SEVERAL DOZEN OR MORE DOTS IN THE SKY FLYING FROMEAST TO WEST IN PATTERNS AND RANDOMLY OVER NO +2005-12-02,36.6102778,-88.3147222,Murray,KY,light,600,four fuzzy light chasing each other in a circle. angels? +2005-01-22,47.0380556,-122.8994444,Olympia,WA,light,600,My husband and I witnessed 4 spinning white lights,which changed to 1 spinning light while traveling north at tree top level . +2005-12-02,40.8825,-121.6597222,Burney,CA,triangle,2700,Thousands of strange objects streaking across the night sky +2005-01-22,37.6775,-113.0611111,Cedar City,UT,other,7200,3 of us photographed multiple red, blue, green white obj.s in night sky for about 2 hrs then toward the W a huge moon-like object. +2005-12-02,38.545,-121.7394444,Davis,CA,formation,45,Y or V shaped light formation seen moving from South to North over Davis, California. +2005-12-02,42.3583333,-71.0602778,Boston,MA,light,10,Fleet of Star-like objects witnessed over Boston. +2005-01-22,47.2530556,-122.4430556,Tacoma,WA,fireball,60,bright orange light shooting through sky +2006-12-02,35.3883333,-82.5669444,Mills River,NC,sphere,45,Glowing yellow sphere seen around midnight +2006-12-02,42.2411111,-83.6130556,Ypsilanti,MI,cone,600,Dream of UFO. Woke up to bright light. Heard door shut down down stairs. Saw shadows in woods. +2006-12-02,40.3077778,-75.9658333,Shillington,PA,circle,60,small silver object following jet +2006-01-22,38.6580556,-77.25,Woodbridge,VA,oval,120,Tan and Shiny object +2006-12-02,30.8530556,-88.0561111,Satsuma,AL,oval,120,Daytime object caught on video +2006-12-02,35.18,-120.7308333,Avila Beach,CA,diamond,420,UFO near Diablo Canyon Power Plant California! +2006-12-02,43.5277778,-71.4708333,Laconia,NH,light,300,Large groups of white lights seen moving above the clouds +2006-01-22,42.3211111,-85.1797222,Battle Creek,MI,sphere,120,1 sphere almost like a big star. moved from one side of the sky to the other in about 2 min. moving in all diretions and then dissapear +2006-01-22,43.9144444,-69.9658333,Brunswick,ME,unknown,2400,I'm 35yrs old and love to look at the stars. Tonight however I saw something extremely weird. 3 UFO's that where flying hoovering abo +2006-12-02,33.6188889,-117.9280556,Newport Beach,CA,disk,120,one disk with lights underneath it observed by myself for 2 minutes in the sky stationary as well as moving across sky. +2006-12-02,33.6188889,-117.9280556,Newport Beach,CA,other,10,8 of us saw a massive, dark object floating low and silently from the beach to the oceans horizon casting a shadow across the water. +2007-12-02,47.6588889,-117.425,Spokane,WA,triangle,120,Solid, triangular object with 3 lights on top and bottom spotted by Spokane, Washington. Make two turns; one sharp and one slow. +2007-12-02,35.9986111,-96.1138889,Sapulpa,OK,circle,10800,crafts over Sapulpa Oklahoma +2007-12-02,36.2230556,-93.5297222,Metalton,AR,oval,120,relatively small 28 inch diameter golden oval disc crossing a rural county road +2007-12-02,34.0522222,-118.2427778,Los Angeles,CA,other,300,Massive Object Seen Over 110 North Freeway In Los Angeles, 12/2/07 +2007-01-22,25.7738889,-80.1938889,Miami,FL,disk,300,I saw various small flying disks traveling together and that looked very much like toys. +2007-12-02,36.1397222,-96.1086111,Sand Springs,OK,light,45,looked like satelite that changed colors. +2007-01-22,27.4952778,-81.4411111,Sebring,FL,fireball,4,Four gold fireballs moving across the sky in a line over Highlands County, FL +2007-01-22,33.8816667,-118.1161111,Bellflower,CA,formation,900,Three sphere shapes hovering in triangle formation, that dropped flames and disappeared. +2007-12-02,27.2936111,-80.3505556,Port Saint Lucie,FL,unknown,2700,Christmas tree colored sparkling lights hovering over the southeastern sky in Florida +2007-01-22,45.4469444,-122.5291667,Happy Valley,OR,light,420,Bright pulsing light moving at fast speeds over Milwaukie, Oregon +2008-12-02,33.2558333,-116.3741667,Borrego Springs,CA,disk,60,Disc-shaped object tumbles from starry sky, then bolts. Had faintly illuminated geometric pattern on at least one side. +2008-01-22,32.5788889,-97.3622222,Crowley,TX,light,60,Bright green light at 2am. +2008-01-22,35.0525,-78.8786111,Fayetteville,NC,unknown,600,Brilliant amber light in sky near Fayetteville NC +2008-01-22,42.9766667,-78.5922222,Clarence,NY,fireball,180,((HOAX??)) I saw a huge, bright spacecraft hovering over my forest that looked as though it was directly looking at my house. +2008-12-02,40.4419444,-79.9627778,Oakland,PA,disk,300,flying object hovered then began to glide across the sky without any noise +2008-12-02,39.7391667,-104.9841667,Denver,CO,changing,600,Pulsed Contrail +2008-12-02,38.0163889,-89.6186111,Percy,IL,unknown,120,Orange/peach object in the southern sky just past dusk. +2008-01-22,41.85,-87.65,Chicago,IL,diamond,120,Bright light seen over the city of Chicago. +2008-01-22,39.4277778,-86.4283333,Martinsville,IN,circle,30,The circular object was as bright as the moon on a clear night and appearance was bigger than a star because of its closeness. +2008-12-02,39.7041667,-86.3994444,Plainfield,IN,light,300,Two bright lights in the sky. +2008-01-22,39.6136111,-86.1066667,Greenwood,IN,fireball,10,String of orange lights appeared in southern sky. +2008-12-02,41.4788889,-87.4547222,Schererville,IN,triangle,180,Triagular shapped objest with red lights moving fast, stopped, then disappeared +2008-12-02,37.7397222,-121.4241667,Tracy,CA,light,5,Saw a orange light traveling at a high rate of speed. +2008-12-02,41.4169444,-87.3652778,Crown Point,IN,triangle,120,large, triangle shaped craft in the sky +2008-01-22,40.015,-105.27,Boulder,CO,circle,7,I saw a UFO +2008-12-02,43.2380556,-76.1411111,Brewerton,NY,disk,30,A U.F.O. landed in my small suburban town. +2008-12-02,42.9633333,-85.6680556,Grand Rapids,MI,triangle,180,Triangle in sky hovered for several minutes, moved overhead and flew away within seconds +2008-12-02,33.6602778,-117.9983333,Huntington Beach,CA,light,600,Orange orb moves east then west over Huntington Beach +2009-12-02,33.8358333,-118.3397222,Torrance,CA,triangle,300,Silent Black Silvery Triangular Object with red light visible undernearth to 1 of 3 witnesses vanishes 12/1/2009 +2009-12-02,30.3311111,-92.4955556,Iota,LA,light,300,I saw four shimmering objects that slowly dimmed away. +2009-12-02,47.6063889,-122.3308333,Seattle,WA,fireball,10,Bright hot object leaving trail over Seattle in early morning of December 2nd, 2009 +2009-01-22,37.5686111,-84.2963889,Berea,KY,unknown,2400,A red glow came from the bottom of this craft. +2009-12-02,39.4666667,-87.4138889,Terre Haute,IN,light,2,MULTIPLE WHITE LIGHTS ORBITING FULL MOON +2009-12-02,39.2191667,-121.06,Grass Valley,CA,disk,30,Saucer with three yellow lights 50 feet from the porch +2009-01-22,27.9472222,-82.4586111,Tampa,FL,oval,60,metallic silver object clearly seen hovering in the afternoon over tampa and after a minute of observing vanished without a trace. +2009-12-02,34.1066667,-117.8058333,San Dimas,CA,oval,600,Object of animated lights off 210 free in California. +2009-01-22,30.3855556,-88.6116667,Gautier,MS,fireball,600,an orange fireball in the sky then 2 oblong forms with orange rotating lights, within a 10 minute time frame +2009-12-02,38.4494444,-78.8691667,Harrisonburg,VA,formation,180,Three lights in formation over city and a decending fireball that burnt up before impact. +2009-01-22,30.4111111,-88.8277778,Ocean Springs,MS,light,180,Strange lights - NO Way a man-made craft +2009-01-22,34.185,-83.9252778,Flowery Branch,GA,unknown,600,Three lights moving quickly over north Georgia +2009-01-22,36.175,-115.1363889,Las Vegas,NV,diamond,30,a diamond shape with four lights ufo definitely not a plane of jet +2009-12-02,33.9686111,-112.7288889,Wickenburg,AZ,cigar,900,Four cigar shapped lights appeared in a fire orange color, one then three more then changed formation and moved NNE bound. +2009-12-02,35.7063889,-81.2188889,Conover,NC,light,180,white light hovering, glowing, and disappearing. +2009-01-22,32.7866667,-79.795,Isle Of Palms,SC,flash,7200,Large ball of light changing color and 4 small flashing lights all in separate areas in the sky +2009-12-02,32.2216667,-110.9258333,Tucson,AZ,circle,2,Huge light, in the size of a 747, seen in cloudy skies +2010-01-22,40.0322222,-74.9577778,Riverside,NJ,light,900,2 lights apear and the others shoots across sky when a plane flys by. ((NUFORC Note: Student report. PD)) +2010-12-02,33.7369444,-85.0325,Temple,GA,other,300,Very Shiny, Possible V shape and traveled very slow. +2010-01-22,43.6136111,-116.2025,Boise,ID,changing,25,33' Wide White Object seen over Boise, ID, emitting Screeching/Shrill Noise (01/22/10) +2010-12-02,35.0844444,-106.6505556,Albuquerque,NM,flash,360,Flash over desert turing green and red in color flying supersonicly. +2010-12-02,33.7369444,-85.0325,Temple,GA,other,300,Very Shiny, Possible V shape and traveled very slow. +2010-01-22,40.8,-96.6666667,Lincoln,NE,disk,900,((NUFORC Note: Student report. PD)) I am a firm believer in aliens, being 16 years old, I know people usually don't take me seriously. +2010-12-02,39.1141667,-94.6272222,Kansas City,KS,oval,360,Two orange, flashing oval craft hovering low in sky +2010-12-02,35.6225,-117.67,Ridgecrest,CA,disk,300,It looked to be a very large craft. +2010-12-02,38.9905556,-77.0263889,Silver Spring,MD,other,900,four large clusters of lights flying in close proximity +2010-01-22,34.0583333,-106.8908333,Socorro,NM,light,1200,Silent red lights over Socorro, NM. ((NUFORC Note: Witness experienced in the field of astronomy. PD)) +2010-12-02,44.2722222,-71.5394444,Twin Mountain,NH,fireball,300,1 FIREBALL OBJECT FLEW VERY SLOWLY FROM NORTH TO SOUTH AT APPOX 100 FEET ABOVE MYSELF AND A FRIEND. NO SOUND WAS HEARD.WE VIEWED TH +2010-12-02,38.9905556,-77.0263889,Silver Spring,MD,circle,300,Five to eight orange circles in the sky. +2010-12-02,29.3625,-100.8963889,Del Rio,TX,light,1800,Bright light in the night sky, changes colors from red/green/yellow. ((NUFORC Note: Possible sighting of a star, or Venus?? PD)) +2010-12-02,39.9,-79.7166667,Uniontown,PA,triangle,300,I was taking my girlfriend home when we saw a bright light shinning about 20 feet higher than the telephone poles. As I slowed down to +2010-01-22,42.075,-72.0338889,Southbridge,MA,triangle,420,Wedge shaped, Unusual lights, severe ozone smell +2010-01-22,30.0797222,-95.4169444,Spring,TX,sphere,2400,This is a true story, told just as it happened. One night (Approximately January 15th, 2010, at 8:30 PM) while taking my 19 year ol +2010-01-22,41.29,-73.9208333,Peekskill,NY,unknown,30,Flashing amber light flying very low over the Hudson River. +2010-12-02,40.8175,-73.0005556,Medford,NY,other,5,4 Star like objects moving east to west in the southern sky on Dec. 2nd @ 11:22PM +2011-01-22,37.5552778,-86.0322222,White Mills,KY,triangle,2100,Sighting of 2 triangular shaped flying objects +2011-12-02,45.5236111,-122.675,Portland,OR,other,25,Orange glowing bell shaped object moving from east to southeast. +2011-12-02,35.2269444,-80.8433333,Charlotte,NC,changing,600,The object was orange in color, rectanglar in shape at first but, yet transparent, I could see trees through it. +2011-01-22,32.4608333,-84.9877778,Columbus,GA,teardrop,3600,Bright light over Ft. Benning!!! +2011-12-02,46.6022222,-120.5047222,Yakima,WA,light,152,Was just getting ready to pull out of parking lot to go get breakfast when i noticed a star like light +2011-01-22,39.5358333,-76.3486111,Bel Air,MD,light,60,two lights beside eachother shooting upward str8 into the sky at various speeds +2011-12-02,39.9555556,-86.0138889,Fishers,IN,circle,300,Two Orange colored objects. +2011-12-02,40.5866667,-122.3905556,Redding,CA,light,10,Brilliant light with controlled vertical descent. +2011-12-02,35.4086111,-80.5797222,Concord,NC,fireball,12,Huge white Fireball meteor +2011-01-22,29.9688889,-95.6969444,Cypress,TX,triangle,15,A single Triangle UFO flew quickly and silently over Cypress, Texas, at night. +2011-01-22,41.1013889,-81.4419444,Tallmadge,OH,cigar,180,Extremely bright cigar shaped craft over Tallmadge, Ohio. +2011-12-02,39.7136111,-82.5994444,Lancaster,OH,diamond,60,Diamond shaped object seen in ohio +2011-12-02,35.6708333,-80.4744444,Salisbury,NC,unknown,10,Low flying light emits blue neon trail and vanishes +2011-01-22,29.9688889,-95.6969444,Cypress,TX,formation,60,V-formation of approximately 10 UFOs flying East to West at a high rate of speed and at an altitude of ~20ꯠ feet. Hazy/ white color +2011-01-22,34.6080556,-82.1136111,Gray Court,SC,oval,600,Fast moving object from east to west which vanished for a while then appeared much farther away. +2011-01-22,38.8119444,-77.6366667,Haymarket,VA,disk,3,Four very fast red disks in formation over Virginia +2011-12-02,39.5358333,-76.3486111,Bel Air,MD,chevron,60,Near invisible blue wing, silent, ever so subtle glow. +2011-12-02,26.2375,-80.125,Pompano Beach,FL,circle,3600,Bright oval light hovering over Ft. Lauderdale on Dec. 2, 2011 +2011-01-22,44.0216667,-92.4697222,Rochester,MN,unknown,180,Black line over moon moves, then vanishes. +2011-12-02,42.5936111,-83.5994444,Milford,MI,rectangle,300,Internally illuminated, slow moving craft passing by at 3-400 feet. +2011-12-02,43.2397222,-73.0097222,East Dorset,VT,light,240,A Dec 2, 2011, So. Vermont pm sighting of a VERY bright, solid, slow moving, silent. light, that appeared 2 stop and changed direction. +2011-12-02,42.3266667,-122.8744444,Medford,OR,circle,600,Orange glowing orb seen by 3 adults +2011-12-02,40.1933333,-85.3863889,Muncie,IN,fireball,3600,1 orb hovering in sky and exploding in a ball of blue light before disappearing. +2011-12-02,24.7705556,-80.9122222,Duck Key,FL,other,10,Massive Horse-Shoe Shaped Object, 7 Gold Lights, No Sound, Low and Slow over Duck Key, FL. +2012-12-02,39.3,-85.2222222,Batesville,IN,oval,60,Oval Shaped Object with orange lights hovering above neighbors field. +2012-12-02,45.5236111,-122.675,Portland,OR,formation,5,I saw a flock of bird shaped objects, about 23, fly within a 5 second period and disappear in the open sky. +2012-12-02,36.175,-115.1363889,Las Vegas,NV,triangle,35,Small "V" shape, black object seen as dusk in Northwest Las Vegas, Nevada. +2012-12-02,33.32,-87.9027778,Gordo,AL,fireball,30,Two bright round objects in Gordo, AL. +2012-01-22,28.5380556,-81.3794444,Orlando,FL,oval,300,Orlando sighting of dark grey oval craft on Jan.22񫺜 at 6:10 pm. +2012-01-22,29.1869444,-82.1402778,Ocala,FL,circle,1200,WITNESSED 5 REDDISH ORBS FLYING IN FORMATION EAST TO WEST DIRECTION AT ABOUT 5000FT ELEVATION. APPROX 5 MIN LATER, WITNESSED 2 MORE OF +2012-01-22,36.3133333,-82.3536111,Johnson City,TN,circle,300,I've never seen circles in the night sky like this before +2012-01-22,61.2180556,-149.9002778,Anchorage,AK,unknown,600,5 orange/red balls equally apart moving south in Ancorage AK at 815ish pm on 1/22/2012 +2012-01-22,39.1619444,-84.4569444,Cincinnati,OH,fireball,300,9 red fireball-like objects hovering in line formation up and down and at angles accelerating quickly and descending slowly. +2013-01-22,39.9608333,-89.7238889,Athens,IL,disk,300,A grey disk/saucer hovering over a empty field at midnight. +2013-01-22,27.9655556,-82.8002778,Clearwater,FL,rectangle,5,It was fast and just dissapeared. +2013-12-02,35.3991667,-78.8161111,Lillington,NC,circle,3,A quick green light. +2013-01-22,32.7355556,-97.1077778,Arlington,TX,triangle,240,I live in Arlington, Tx. Is the norm to hear planes all the time. DFW Airport is just north of us and only 20 min away. +2013-12-02,37.9975,-121.7113889,Oakley,CA,chevron,10,Stepped out on my balcony & looked up to see a silver head of a shovel shaped/ufo object with a blue horse shoe shaped fluorescent tube +2013-12-02,42.1391667,-87.9288889,Wheeling,IL,unknown,4,Dark object moving VERY FAST, north to south, Wheeling, IL +2013-12-02,28.5380556,-81.3794444,Orlando,FL,fireball,360,3 dots floating down and dissapearing. +2013-01-22,34.6080556,-82.1136111,Gray Court,SC,light,600,Bright light over Gray Court, SC aound 630 am on 1/22/13. +2013-01-22,39.7391667,-104.9841667,Denver,CO,circle,60,Silver blue metallic spheres with glowing orange centers,under intelligent control./Denver. +2013-12-02,45.5236111,-122.675,Portland,OR,light,10,Three bright white lights in a triangular formation. +2013-12-02,28.6119444,-80.8077778,Titusville,FL,circle,300,Observed brilliant white circular light emitting a bright blue lazer like beam from each side. +2013-12-02,38.005,-121.8047222,Antioch,CA,circle,56000,((HOAX??)) BIG circular ball of light flashes across sky at a super fast speed. +2013-12-02,32.7677778,-117.0222222,La Mesa,CA,sphere,600,Unidentified rapidly ascending sphere. +2013-12-02,34.1705556,-118.8366667,Thousand Oaks,CA,changing,20,Bluish light that turned into four over Thousand Oaks, CA. +2013-12-02,34.0522222,-118.2427778,Los Angeles,CA,fireball,300,Morphing fireball craft, Pico/Robertson area LA. +2013-12-02,38.2541667,-85.7594444,Louisville,KY,fireball,180,4 Glowing Orbs/Fireballs in NE Louisville. +2013-12-02,31.8275,-107.6394444,Columbus,NM,other,60,Nine small balls of light with tails in arrow formation. These were flying horizontally across the sky. Color was greenish orange. +2013-01-22,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,7,Three orange fireballs that appeared and then dissappered. Also son heard an unusual noise before seeing object. +2013-01-22,33.6888889,-78.8869444,Myrtle Beach,SC,flash,7,It was either a ball of light or ball of fire or a flash. +2013-12-02,30.2669444,-97.7427778,Austin,TX,fireball,60,I was driving on the highway when I noticed a rather large green 'star' in the sky. They started as small green balls and traveling qui +2013-12-02,39.1619444,-84.4569444,Cincinnati,OH,light,900,star-like light moving left and right, wiggley +2014-01-22,28.7555556,-82.095,Lake Panasoffkee,FL,sphere,25,Dull white sphere moving slowly but steadily through a clear morning sky. Walked away for about 10 sec. When I returned it was gone. +2014-01-22,26.1336111,-80.1133333,Sunrise,FL,other,2,Loud boom followed by the ground shaking. +2014-01-22,34.0513889,-84.0713889,Suwanee,GA,rectangle,120,Square and flat with red and green lights-made a buzzing sound-hovered and took off over treetops. +2014-01-22,39.0436111,-77.4877778,Ashburn,VA,light,30,Highly reflective object over Ashburn, VA, not bird, balloon, aircraft. +2014-01-22,39.1458333,-121.5902778,Marysville,CA,circle,3600,Seven balls of light towards Sacramento, California. +2014-01-22,33.5091667,-111.8983333,Scottsdale,AZ,light,1800,2 Red Orbs hovering over Scottsdale. +2014-01-22,46.1383333,-122.9369444,Longview,WA,light,10,Zigzaging bright white light leaving atmosphere quickly. +2014-01-22,27.880277800000002,-80.5005556,Micco,FL,circle,20,Falling circles dance together then leave. +2014-01-22,29.7027778,-98.1241667,New Braunfels,TX,teardrop,5,Some sort of craft blew up probably when entering earth's atmosphere. +2014-01-22,29.7630556,-95.3630556,Houston,TX,circle,15,Small white ball over Houston. +2014-01-22,25.8572222,-80.2783333,Hialeah,FL,light,60,Red light in NW sky appeared to be star but moving Southward and vanished. Not a Shooting star. +2014-01-22,40.8022222,-124.1625,Eureka,CA,light,90,White light being followed by red blinking light, moving slowly across sky. +1965-12-22,29.7630556,-95.3630556,Houston (West Of),TX,formation,180,45 of us were on the Bus, standing to see the objects, then flash, and everyone was in their seats again +1988-12-22,38.4405556,-122.7133333,Santa Rosa (23 Km. South Of),CA,changing,7200,First off, I am a very skeptical person. At the time of the sighting, I was a California Highway Patrol Officer for 6 years and very g +1989-12-22,43.1755556,-76.1197222,Cicero,NY,light,300,bright lite making fast moves and complex +1996-12-22,39.5297222,-119.8127778,Reno,NV,other,3,I saw a HUGE ball like flash grow and then'erupt' while looking out of my windowfacing SE. It was not lightening. I love towatch the we +1996-12-22,41.4047222,-81.7230556,Parma,OH,other,120,We just finished lunch and went back to work at the corner of Sarasota and Sun Haven Rd. Looking up in the sky, I noticed what appeared +1998-12-22,39.7391667,-104.9841667,Denver,CO,oval,6,Going to work, ahead of me at a stop light I saw a small object moving at a fast rate. It was crossing my direction of travel at an est +1998-12-22,45.3194444,-93.2022222,East Bethel,MN,unknown,300,Well, i just recently looked at a picture that was taken late last year. Now, I don't know if it's a jet, or a ufo. i was hoping some +1998-12-22,33.4483333,-112.0733333,Phoenix,AZ,sphere,900,three sphere shaped lights in a trianlge formation above camleback mt. +1998-12-22,39.7683333,-86.1580556,Indianapolis,IN,circle,0.5,Appx. 1/4 mile east of SR135 8 miles South of Indianapolis a green ball appx. the size of 1/16 of a thumbnail at arms' distance traveli +1998-12-22,34.2569444,-85.1647222,Rome (Ga)/Cedar Bluff (Al),GA,changing,9000,At 9PM, in Cherokee, AL while leaving my lakehouse, I saw the first one hovering, then moving. I used perspective to ensure movement. +1999-12-22,30.3319444,-81.6558333,Jacksonville,FL,disk,10,driving west on I-10 drizzeling rain, low clouds, passing a well lited lot I noticed a small cloud reflecting the lots lights. behind t +1999-12-22,39.6569444,-87.3980556,Clinton,IN,light,420,Amber light hovered and visible for seven minutes. +1999-12-22,43.3733333,-89.6233333,Merrimac,WI,diamond,14400,7:00pm went to pick my son up from work.glanced to my right in the sky seen a object rotating red,green,white strobe in middle.it was m +1999-12-22,40.7608333,-111.8902778,Salt Lake City,UT,formation,420,three gold lights in the shape of a triangle , the lights dimmed and disappeared then reappeared in an inverted v. the v shape then had +1999-12-22,34.5036111,-93.055,Hot Springs,AR,flash,120,I have been seeing a light above Hot Springs as I drive from Malvern Avenue to Bath House Row. It flashes very fast, stobelike, not lik +1999-12-22,40.7141667,-74.0063889,New York City (Brooklyn),NY,unknown,2400,large objects hovering over n.y. city unbeleiveable how can this go un seen radars had to pick these objects up. +1999-12-22,41.4819444,-74.9863889,Lackawaxen,PA,triangle,15,Since the first sighting of this craft, my son has seen it on a number of other occasions. Each time it was traveling in the same gener +1999-12-22,32.3808333,-106.4788889,White Sands,NM,light,120,A starlike object descended vertically for 2 minutes changing color from a very bright white to gold the closer it got to the ground. +1999-12-22,30.4505556,-91.1544444,Baton Rouge,LA,other,12,Green object appears in digital camera shots of the Moon taken on the night that the Moon was at it's brightest. +2000-12-22,36.0083333,-119.9608333,Kettleman City,CA,light,1200,Red/Orange glowing light near powerlines. +2001-12-22,46.1880556,-123.83,Astoria,OR,sphere,300,Eight small, silver- colored spherical objects over Columbia River +2001-12-22,41.2888889,-72.6822222,Guilford,CT,oval,15,Three white ovals were seen floating in sky over cul-de-sac. +2001-12-22,34.6172222,-79.685,Bennettsville,SC,sphere,900,This was no plane,It was metallic,no lights and it did not move till it was ready. +2002-12-22,43.0388889,-87.9063889,Milwaukee,WI,triangle,15,My friend and i were parked by Mitchell International Airport watching the planes land when my friend saw a triangle shaped craft comin +2002-12-22,45.5236111,-122.675,Portland,OR,disk,300,Black saucer wobbled slowly as it gained altitude. +2002-12-22,37.5586111,-122.27,Foster City,CA,light,2,Looking SE towards Orion, 4 orange lights suddenly appeared and streaked westward across the sky and disappeared. +2003-12-22,34.5794444,-118.1155556,Palmdale,CA,changing,60,Object was moving west to east when first sighted +2003-12-22,30.2263889,-93.2172222,Lake Charles,LA,chevron,1200,A small silver - blue chevron shaped object moved across the parking lot of closed restaurant. +2003-12-22,19.4975,-154.9508333,Pahoa,HI,circle,240,Unusal black round object manuevering strangely in afternoon sky near Pahoa-town. +2003-12-22,40.5866667,-122.3905556,Redding,CA,light,2,dimming light +2003-12-22,43.073055600000004,-89.4011111,Madison,WI,other,20,Shape -changing brown "tarp" +2003-12-22,47.5405556,-122.635,Port Orchard,WA,fireball,3,Fireball that just disappears +2003-12-22,38.6358333,-77.4380556,Independent Hill,VA,triangle,300,Followed by Triangle +2004-12-22,40.2413889,-75.2841667,Lansdale (On Highway),PA,unknown,2,Craft was speeding along at an insane speed and then stopped on the dot, hovered then flew back at an insane speed. +2004-12-22,45.5236111,-122.675,Portland,OR,unknown,600,Loud object with three lights. +2004-12-22,36.1538889,-95.9925,Tulsa,OK,unknown,300,strange noises in the night time sky of tulsa. ((NUFORC Note: Please see note. Sound probably related to aircraft activity. PD)) +2005-12-22,43.3772222,-73.6136111,Queensbury,NY,fireball,300,Giganticly huge glowing object. Very high in the sky, moving at high speed. Observed in night sky. +2005-12-22,36.8055556,-114.0663889,Mesquite,NV,changing,600,when below the clouds, object appeared to change shapes, looked black, and something was emitted or dropped from object or craft, +2005-12-22,34.4963889,-118.3247222,Agua Dulce,CA,egg,3,This is the second time in two weeks. Driving north on 14 Fwy, looked to right and saw an egg shape object fall from the sky. The +2005-12-22,38.8683333,-107.5913889,Paonia,CO,circle,7200,orb pulsating changing colors and stationary for extended hours and vanished later. Second night. +2005-12-22,41.0247222,-89.4111111,Lacon,IL,unknown,600,Four to six EXTREMLY fast moving lights, "played" around 5 stable, glimmering vertical "stars". +2005-12-22,41.0338889,-93.7652778,Osceola,IA,triangle,900,WHILE I STEPPED OUT OF MY MOTEL ROOM I SAW A LARGE TRIANGLER OBJECT THAT DRIFTED IN THE SKY. +2006-12-22,40.4163889,-120.6519444,Susanville,CA,light,7200,Now I believe +2007-12-22,41.22,-74.8716667,Dingmans Ferry,PA,light,180,quick flash of saucer shape light +2007-12-22,35.5322222,-97.9547222,El Reno,OK,changing,1800,COLOR CHANGING STROBE LIGHT OVER EL RENO, OK +2007-12-22,32.7152778,-117.1563889,San Diego,CA,light,300,Orange/yellow lights seen from Ocean Beach, San Diego, rising till no longer visible. +2007-12-22,32.7152778,-117.1563889,San Diego,CA,light,180,We saw two lights that went across 40 plus degrees of sky, while watching I got my telescope and tried to see them, which the two lig +2007-12-22,40.6533333,-80.0797222,Warrendale,PA,sphere,7,stationery white sphere with dark band extended past both sides, with wrap around dark rectangles. +2007-12-22,40.1488889,-79.5413889,Mount Pleasant,PA,triangle,300,I WAS DRIVING HOME ON RT 31, INTO MOUNT PLEASANT PA.I SAW A LARGE LIGHT IN THE SKY ABOUT A FOOTBALL FIELD UP. IT HAD A RED LIGHT ON TH +2007-12-22,32.7152778,-117.1563889,San Diego,CA,light,300,It was a clear night in San Diego and as I came up the back stairs I saw two large reddish orange lights, very bright, hovering in the +2007-12-22,33.5805556,-112.2366667,Peoria,AZ,unknown,300,5 white dots racing upwards from downtown Phoenix area, moving at different speeds, then fading in to the night +2008-12-22,35.4675,-97.5161111,Oklahoma City,OK,oval,240,Large oval or triangular metallic object hovering in OKC +2008-12-22,39.5297222,-119.8127778,Reno,NV,unknown,5,A turquoise light appeared and then there seemed to be a creature appearing from the spacecraft +2008-12-22,46.5436111,-87.3952778,Marquette,MI,fireball,180,Green Fireball-Upper Peninsula of Michigan +2008-12-22,47.6063889,-122.3308333,Seattle,WA,circle,60,Today’s date is 12/22/2008. At 4:25 pm. I observed ‘three’ flying objects from my kitchen window. The first object flew by, from Sou +2008-12-22,42.2458333,-84.4013889,Jackson,MI,triangle,60,3 light triangular craft at tree top level. Moving soundlessly SE direction +2008-12-22,39.6363889,-74.8027778,Hammonton,NJ,triangle,300,I was driving up Bellview ave. downtown Hammonton early evening and noticed two bright white lights resembling stars but very low slowl +2008-12-22,33.6602778,-117.9983333,Huntington Beach,CA,light,720,At approximately 6:45pm on December 22, 2008 I went into my back yard to smell the fresh air. I looked up and noticed some clouds and s +2008-12-22,42.4375,-122.8577778,White City,OR,light,360,Red light that seemed to drop falling embers over White City, Oregon +2009-12-22,44.5736111,-68.7961111,Bucksport,ME,triangle,300,My husband and I were driving down Route 46 in Bucksport in December of 2009 when we saw something in the distance that looked strange. +2009-12-22,39.7327778,-78.8505556,Wellersburg,PA,light,30,small light moving in perfect sync +2009-12-22,35.8238889,-80.2536111,Lexington,NC,light,600,Slow moving White lights moving from north to south. +2010-12-22,29.7630556,-95.3630556,Houston,TX,changing,120,strange black object over Houston TX on 12/22/10 +2010-12-22,40.5583333,-85.6591667,Marion,IN,sphere,600,Looking south I seen a formation of amber colored lights of 3-4 in one group. Another group of 4 to the west other lights was not in f +2011-12-22,39.0061111,-77.4288889,Sterling,VA,fireball,600,There is One bright floating object RIGHT NOW over Dullas international airport being circled by a police helecopter. eyes can not see +2011-12-22,43.6136111,-116.2025,Boise (Downtown Area),ID,light,120,Red Light SO FAST N SILENT! Now there are Helicopters flying all over the place? +2011-12-22,39.2902778,-76.6125,Baltimore,MD,cigar,120,Rotating circular object with blinking lights hovers over I-95 in Maryland +2011-12-22,48.3636111,-120.1211111,Twisp,WA,sphere,21600,Close encounter with Big bright sphere above road, Shape of object noticable in lightsphere +2011-12-22,33.6694444,-117.8222222,Irvine,CA,other,600,Triangle, Diamond shaped star that moves in different directions, 3 spikes coming out one side with retracting line of lights. +2011-12-22,39.4402778,-84.3622222,Monroe,OH,light,780,Two Brilliant blue lights darting around with rapid speed. +2011-12-22,40.1797222,-76.1791667,Ephrata,PA,sphere,300,Orange spherical glowing circles of lights flying over Ephrata, PA., USA. +2011-12-22,43.6136111,-116.2025,Boise,ID,circle,1200,Five orangish orbs flying up into sky in between Boise and Arrowrock Reservoir dissapear into sky +2011-12-22,45.8405556,-119.2883333,Hermiston,OR,light,180,Orange light flying over Hermiston, Oregon +2011-12-22,41.9541667,-72.3027778,Stafford Springs,CT,triangle,60,9 orange lights hovering above the trees +2012-12-22,45.0547222,-97.3294444,Florence,SD,light,10,Two bright lights seen while driving +2012-12-22,32.7833333,-96.8,Dallas,TX,light,3600,Bright round light in sky that moved left to right then up with colorful lights. ((NUFORC Note: Possile sighting of Sirius? PD)) +2012-12-22,41.8463889,-71.8880556,Dayville,CT,fireball,120,Fireball UFO seen by two witnesses in Dayville, CT +2012-12-22,45.1630556,-93.0555556,Centerville,MN,sphere,1800,Several orange light spheres following same path then vanishing at same location in sky +2012-12-22,40.6994444,-99.0811111,Kearney,NE,oval,10,RED BALL OF LIGHT HOVERING IN SKY. +2012-12-22,41.0391667,-74.8091667,Fredon,NJ,unknown,240,Slow moving object w/ 2 red EXTREMELY bright lights at low altitude - no motor/rotor noise heard +2012-12-22,33.4483333,-112.0733333,Phoenix,AZ,fireball,120,Red light, left the atmosphere +2012-12-22,45.4313889,-122.7702778,Tigard,OR,unknown,600,7 - 8 Bright Lights Seen in Night Sky over Tigard, Oregon 12/22/12 +2012-12-22,34.0336111,-117.0422222,Yucaipa,CA,circle,180,Fire-ball looking craft moving east to west ; disappearing by shooting straight up into the night sky. +2012-12-22,42.5636111,-84.8358333,Charlotte,MI,oval,900,Five billowy oval reddish lights passing west to east at 18:55 EST over Charlotte, MI on 12/22/12 +2012-12-22,43.4891667,-71.5827778,Sanbornton,NH,triangle,600,Silent triangular craft in Central NH +2012-12-22,37.5536111,-77.4605556,Richmond,VA,oval,300,Three bright lights in the sky making a triangle. +2012-12-22,43.5977778,-84.7675,Mt. Pleasant,MI,triangle,300,Five yellow/orange lights, no sound traveling east. +2012-12-22,33.4483333,-112.0733333,Phoenix,AZ,light,120,Phoenix, AZ -- 9 orange lights in the southeast horizon for approximately 2 mins Dec. 22, 2012, 8:20pm +2012-12-22,26.3583333,-80.0833333,Boca Raton,FL,fireball,180,Fireball flying fast east over West Boca Raton. +2012-12-22,37.2152778,-93.2980556,Springfield,MO,light,120,Bright orange light travels soundlessly across sky at low altitude +2012-12-22,39.7091667,-84.0633333,Beavercreek,OH,light,300,Red light objects flying over Dayton +2012-12-22,39.9955556,-82.6744444,Pataskala,OH,sphere,300,Spheres flying in formation, that faded out to nothing. +2012-12-22,25.8572222,-80.2783333,Hialeah,FL,fireball,240,Fireball inside a circle viewing over Hialeah on 12/22/12 at approx 2200 hrs. !!!! +2012-12-22,44.0805556,-103.2305556,Rapid City,SD,unknown,180,Seen a fleet of 15 to 30 craft independently flying in formation very high in NW sky over Raid City, most white lights, some red some g +2012-12-22,47.6063889,-122.3308333,Seattle,WA,oval,180,Orange glowing oval of light +2012-12-22,32.5263889,-96.8861111,Ovilla,TX,light,2700,Strobing light in the sky over Ovilla, Texas. +2013-12-22,37.9736111,-122.53,San Rafael,CA,light,600,Not sure what this group of lights were? +2013-12-22,37.8044444,-122.2697222,Oakland,CA,triangle,120,Triangular black object with red lights seen over Alameda +2013-12-22,36.8527778,-75.9783333,Virginia Beach,VA,egg,3600,12/22/13 08:45 Virginia Beach VA white egg shape object hovered for 1 hour and dissappeared after cloud cover came in. +2013-12-22,60.4877778,-151.0583333,Soldotna,AK,light,1,Orange flashes of light in different areas. +2013-12-22,36.7280556,-108.2180556,Farmington,NM,sphere,900,Sphere with solar type squares. +2013-12-22,42.9994444,-83.6163889,Burton,MI,flash,0.5,Pulling into Kroger parking lot on Bristol road sky lit up blue and red , nothing like I've ever seen before, we exited truck to see it +2013-12-22,47.8125,-116.8955556,Rathdrum,ID,light,120,Object was orange in color , moving very slowly in a N.E. direction. Object made a sudden easterly turn, and seemed to slowly extingui +2013-12-22,44.0463889,-123.0208333,Springfield,OR,light,900,Circular vague light traveling at high speeds in jerky circles... very strange. +2013-12-22,32.2216667,-110.9258333,Tucson,AZ,formation,120,Little dots in a formation of orange. Some red. One fell out of the sky on fire the others faded away. +2013-12-22,32.2216667,-110.9258333,Tucson,AZ,formation,300,Multi-colored light formation in the shape of constellation, one burst into flames. +2013-12-22,30.3319444,-81.6558333,Jacksonville,FL,fireball,600,5 possible meteors traveling in single file. +2013-12-22,26.8172222,-80.0822222,North Palm Beach,FL,fireball,120,2 large fireballs traveling SE to NW. +2013-12-22,35.9986111,-96.1138889,Sapulpa,OK,light,60,Massive craft with 4 large lights ,masked in fog, moving over Sapulpa, OK. +1969-12-23,41.5622222,-72.6511111,Middletown,CT,fireball,120,i was 9 or 10 years old and i was slideing down my driveway as i got up from my sled and started to walk back up the driveway a firebal +1969-12-23,41.5622222,-72.6511111,Middletown,CT,circle,60,i think the year was 1969 and im possitive it was in the winter because i was slideing down our driveway. i have been trying to find in +1975-12-23,32.3263889,-109.4863889,Bowie,AZ,oval,600,This goes back a long way to December 1975. For obvious reasons I never reported it. Traveling cross country from Houston TX, to San Di +1978-12-23,30.8325,-83.2786111,Valdosta,GA,chevron,90,Warm December night two days before Christmas, while standing in my landlords backyard watching the goings on in the chickencoupe with +1978-12-23,39.7683333,-86.1580556,Indianapolis,IN,disk,120,Two disk-shaped craft hovering over city night , forms defined by red, successive lights illuminating edges, suddenly shoot skyward +1987-12-23,29.1869444,-82.1402778,Ocala,FL,triangle,120,Strange transparent objec t with red lights at joints seen around 10 pm moving northeast very slowly. +1988-12-23,43.0058333,-84.3716667,Ovid,MI,formation,360,3 spherical object formationwatched in night sky. +1989-12-23,39.7875,-75.6969444,Hockessin,DE,sphere,300,We all know we saw the same circular glowing object that night +1991-12-23,40.9675,-99.0861111,Pleasanton,NE,sphere,420,Small orange fluorescent object seen S in distance, disappears, then rushes vehicle in northerly direction, narrowly missing windshield +1993-12-23,34.4408333,-118.6055556,Castaic Junction,CA,oval,180,Update for report of sighting on 12/02/93 +1994-12-23,41.1544444,-74.1933333,Sloatsburg,NY,unknown,30,Bright white light too big to be a helicopter hovering over trees, in a blinks eye it shot up into sky. +1995-12-23,42.2125,-72.1916667,Warren,MA,unknown,300,A large beam of light in the back yard +1997-12-23,41.76,-70.0833333,Brewster,MA,unknown,3,While looking at the stars on a clear night, I saw an object, yellow/orange, travel from North to South (nearly 0 to 180 degrees almost +1997-12-23,41.9836111,-71.9777778,East Woodstock,CT,oval,5,My brother and i were going down a road with my mother driving the car, when we happened to slow down to go around a sharp curve. my br +1998-12-23,36.0544444,-112.1386111,Grand Canyon,AZ,other,45,a friend and I were waiting for the sunset at the far west observing area when I watched a stingray shaped craft cruise in from the sou +1998-12-23,25.7738889,-80.1938889,Miami,FL,circle,180,Big round red pulsating, plasma like ball in S. FL heading west & disappearing from view +1998-12-23,44.0886111,-87.6575,Manitowoc,WI,chevron,1200,We were looking out in the easterly direction when we saw a chevron shaped object hovering above the lake +1999-12-23,47.1302778,-119.2769444,Moses Lake (West Of, I-90),WA,other,300,large umbrella shape of a Strob light emitting a light every 5-8 seconds apart +1999-12-23,35.2225,-97.4391667,Norman,OK,sphere,40,Seen 4 yellow balls of light lower than airplanes usually fly coming very fast from Northwest to Southwest. They looked to be the size +1999-12-23,33.614444399999996,-93.8133333,Fulton,AR,triangle,300,Triangle Black Object too Big, Quiet, and Fast. +2000-12-23,32.4183333,-88.5069444,Toomsuba,MS,oval,120,A silent solid red oval shaped craft with no blinking lights is sighted in Toomsuba, MS. +2000-12-23,44.2941667,-92.6688889,Zumbrota,MN,cigar,30,Silver cigar shaped object travelling low, and at great speed on US 52 in SE Minnesota. +2000-12-23,33.3061111,-111.8405556,Chandler,AZ,light,37800,southbound,az.ave from US60ᅓdegrees above,bright light,unmoving, then was gone +2000-12-23,33.3061111,-111.8405556,Chandler,AZ,light,600,I was outside the front door , looked toward the East and saw a red pulsing light. +2001-12-23,48.7597222,-122.4869444,Bellingham,WA,formation,20,Approx. 20:27 hours, under a clear sky and the moon out, I noticed something moving across the sky. It caught my attention in the south +2001-12-23,47.7625,-122.2041667,Bothell,WA,cone,1020,Seemed to fade into sky, and left the same way, slowly fading out. +2001-12-23,27.4986111,-82.575,Bradenton,FL,circle,120,A round orange lite. +2002-12-23,38.8402778,-77.4291667,Centreville,VA,teardrop,300,teardrop/pear, black/blue, wings(?), 25Ft (rough), headed west, five min. before left. +2002-12-23,38.7208333,-75.0763889,Rehoboth Beach,DE,disk,1800,fACING TO THE sOUTHEAST A VERY BRIGHT OBJECT HIGH IN THE SKY HOVERING OVER PROBABLY THE OCEAN AND i WATCHED IT MOVE HIGHER IN THE SKY D +2002-12-23,33.8702778,-117.9244444,Fullerton,CA,triangle,40,This triangled-shaped aircraft was very large and made a very loud buzzing sound and it also had a green glow. +2002-12-23,35.3313889,-92.0811111,Rose Bud,AR,other,5,bright green light falling from the sky +2002-12-23,38.8055556,-123.0161111,Cloverdale (North Of),CA,oval,1200,Two lights in sky seemed to play "tag" +2002-12-23,40.8022222,-124.1625,Eureka,CA,light,300,Two bright orange lights rotating over Eureka +2003-12-23,35.6677778,-101.3969444,Borger,TX,other,5,Boomerang object, no sound +2003-12-23,43.1991667,-78.5763889,Gasport,NY,light,10800,Bright light shot across the sky from the horizon up. Made several right angle movements. +2003-12-23,39.9527778,-105.1680556,Superior,CO,triangle,10,Triangle shaped object with 4 different colored lights across Denver sky... +2003-12-23,32.1838889,-86.5802778,Hayneville,AL,light,1080,blue,red , green lights flickering from the object. i observed this while walking to my hunting spot 5:11 in the a.m. +2003-12-23,48.2766667,-116.5522222,Sandpoint,ID,unknown,5400,light streak in the morning sky that seemed to fall to the earth leaving a spectacular funnel like plume reaching high altitude. +2003-12-23,33.9022222,-118.0808333,Norwalk,CA,light,480,Bright red light crashed to ground over Los Angeles County Area +2003-12-23,41.2958333,-86.625,Knox,IN,circle,300,flash light was there flash was close flash even closer flash the light was here +2003-12-23,33.7591667,-118.0058333,Westminster,CA,circle,300,Bright object breaks up over Orange County sky +2003-12-23,33.8444444,-117.7763889,Anaheim Hills,CA,light,120,red lights in the sky +2003-12-23,35.6469444,-117.8116667,Inyokern,CA,circle,2,While driving west on I178 at approx. 10:50pm, My wife and i observed a green glowing circular object appear in the clear night sky, th +2004-12-23,34.7658333,-84.77,Chatsworth,GA,diamond,60,i came out an looked cuze of my dogs noise and there it wuz over the mountain +2004-12-23,37.4419444,-122.1419444,Palo Alto,CA,formation,15,V shaped formation floats across sky, +2004-12-23,41.0027778,-95.585,Malvern,IA,light,5,shooting star which stopped and suddenly shot upward +2004-12-23,32.4486111,-99.7327778,Abilene,TX,oval,10,The shiny hovering object sat there, then it was suddenly gone. +2004-12-23,35.8455556,-86.3902778,Murfreesboro,TN,sphere,2,Bright orb of fiery red light seen beneath cloudy overcast in southern sky. +2004-12-23,39.9547222,-82.8122222,Reynoldsburg (East Of),OH,light,120,The bright white light moved at high speed from the sky down to the horizon and then horizontally across the treeline. +2005-12-23,40.3275,-80.0397222,Bethel Park,PA,oval,1200,4 oval lights going in a fast circular path in the clouds above my house. ((NUFORC Note: Probably advertising lights, rotating. PD)) +2005-12-23,30.2238889,-92.0197222,Lafayette,LA,fireball,2,fireball seen in morning then bright light seen in same area later in the day. +2005-12-23,38.9536111,-94.7333333,Lenexa,KS,other,300,WHILE I WAS SITTING ON MY DECK AT MY HOUSE I SAW A WEIRD OBJECT WAY UP OVER THE TREES. +2005-12-23,32.2216667,-110.9258333,Tucson,AZ,disk,1200,saucer shaped craft s landed in tucson arizona"s open range cattle farm. +2005-12-23,36.7097222,-81.9775,Abingdon,VA,other,1800,at first,looked like a big bright star,after zooming in with my camer...looked like a mucial note,or a lopsides v +2005-12-23,38.1838889,-83.4327778,Morehead,KY,circle,600,Strange light seen west of Morehead, Kentucky on December 23, 2005. +2005-12-23,34.7047222,-81.2144444,Chester,SC,light,1200,My son and i were out side walking and looked up and saw a light moving in the sky,it was white and was moving from south to north. It +2005-12-23,37.1236111,-82.6013889,Pound,VA,changing,900,Very odd. Electric blue color. Shape changing. Seemed to land. Very good perspective. +2005-12-23,32.7763889,-79.9311111,Charleston,SC,unknown,900,While I was in my front yard I saw a strange object above my house. +2006-12-23,37.6625,-121.8736111,Pleasanton,CA,circle,120,Saw a silver round object high in the sky, unsure what it could be. +2006-12-23,45.0158333,-95.2383333,Raymond,MN,unknown,3600,Object in the Sky +2006-12-23,38.5788889,-122.5786111,Calistoga,CA,changing,40,unidentified aerial entity / lifeform, shape changing, smoke colored / reflective / transparent, 40 seconds observation. +2006-12-23,39.6005556,-77.8208333,Williamsport,MD,triangle,180,Giant triangle UFO spotted. +2006-12-23,34.2783333,-119.2922222,Ventura,CA,light,3,Dark spherical shape glowing brilliant lime-green, leaving a glowing green trail. +2007-12-23,38.4494444,-78.8691667,Harrisonburg,VA,other,600,Strange lighted craft flies low in Grassy Creeks. +2007-12-23,36.6797222,-79.3733333,Blairs,VA,circle,5,a long dash of light across the with an unusual color of light behind it attached to the end which was a blinding white circle objec +2007-12-23,34.0522222,-118.2427778,Los Angeles,CA,circle,900,I was taking picture of a bright round object in the southern sky I think it was venus when I looked at the pictures a green round bal +2007-12-23,36.175,-115.1363889,Las Vegas,NV,circle,120,Bright object in the sky with what appeared to be modules on it. +2007-12-23,34.1213889,-118.1055556,San Marino,CA,diamond,900,In daylight, Slow moving object rotated above reflecting off sun for 15 minutes until I lost sight of it. +2007-12-23,41.85,-87.65,Chicago,IL,disk,180,12/23/2007 13:30 Chicago Il.darkish disc shaped amongst the cloud staying still I got a 3 min. rec.shot of it. +2007-12-23,34.0522222,-118.2427778,Los Angeles,CA,circle,180,Steady bright light over Los Angeles +2007-12-23,34.7444444,-120.2772222,Los Alamos,CA,unknown,180,Strange helicopter craft on 101 near Los Alamos +2007-12-23,37.2933333,-80.055,Salem,VA,sphere,3,Green sphere visible over I-81 North in Roanoke County, Virginia at about 18:30 on December 23rd. +2007-12-23,39.0066667,-76.7794444,Bowie,MD,disk,4,disc shaped, blue /white light UFO flying low and fast +2007-12-23,39.0066667,-76.7794444,Bowie,MD,light,5,Bluish white light UFO flying low at high speed above Baltimore Washington Pky, Dec 23, 2007 +2007-12-23,34.8905556,-80.9566667,Lesslie,SC,disk,5,I saw a bright blue disc flying through the sky south of Charlotte, NC. +2007-12-23,37.085,-121.6091667,San Martin,CA,unknown,180,4-5 tight circle red-white-green-blue BRIGHT lights over Morgan Hill +2007-12-23,33.7458333,-117.8252778,Tustin,CA,disk,300,Large flat object hovering with bright lights. +2007-12-23,40.8894444,-111.88,Bountiful,UT,formation,600,Stationary lights in formation above the Great Salt Lake. +2007-12-23,39.9955556,-82.6744444,Pataskala,OH,triangle,60,Triangle-shaped craft hoverig low over a house in Pataskala Ohio +2008-12-23,40.1741667,-75.0441667,Southampton,PA,unknown,120,String of lights over the PA Turnpike +2008-12-23,37.3394444,-121.8938889,San Jose,CA,sphere,30,San Jose, CA. Fourth Floor of Valley Fair Mall where the food court doors are. +2008-12-23,39.8027778,-105.0869444,Arvada,CO,triangle,9,silent v shape craft , no light's, moving west to east, circles on bottom from center and two down the "wings" +2008-12-23,41.0016667,-74.3675,Kinnelon,NJ,formation,600,Five motionless hovering lights in a formation, just above treetops of a wooded area, slowly moved over a nearby field , then vanished. +2009-12-23,47.2530556,-122.4430556,Tacoma,WA,cigar,240,Long cigar shaped object that flashed through the night sky +2009-12-23,39.7286111,-121.8363889,Chico,CA,light,180,Bright- non blinking, then dissapearing, lights observed flying over Chico ca area 12/22-12/23 2009. +2009-12-23,40.0725,-74.7211111,Columbus,NJ,oval,30,2 Oval Craft split into 4 Craft Nearby Ft. Dix / McGuire AFB Broad daylight! +2009-12-23,30.9997222,-93.6677778,Burkeville,TX,other,60,light & object moving caught on camera +2009-12-23,39.7136111,-82.5994444,Lancaster,OH,triangle,5,My nephew and I saw a large craft that was not identifiable and flying very low. +2009-12-23,42.3583333,-71.0602778,Boston,MA,triangle,10,large V shape ufo responded to my calls. ((NUFORC Note: We cannot be certain that this is a serious report. PD)) +2009-12-23,30.4505556,-91.1544444,Baton Rouge,LA,light,300,white lights moving in staggered formation +2010-12-23,31.2436111,-90.4530556,Mccomb,MS,cylinder,2631600,Have you there been any reports from mississippi if not there should be? +2010-12-23,41.2505556,-87.8313889,Manteno,IL,egg,300,((HOAX??)) Saw egg shaped craft on the ground in felid, then it turned a blue-ish color and took off, +2010-12-23,37.6941667,-122.0852778,Castro Valley,CA,disk,600,Saucer flying low with bright flickering lights. +2010-12-23,41.2505556,-87.8313889,Manteno,IL,egg,60,((HOAX??)) Saw Egg shaped craft taking off from a felid, it was blue, flew for about 500 ft then diseparred. +2010-12-23,41.3322222,-87.7852778,Peotone,IL,egg,120,((HOAX??)) Was driving in the country side, saw a blue egg shaped craft flying very low. +2010-12-23,41.42,-87.7416667,Monee,IL,egg,30,((HOAX??)) Egg shaped Craft, Red, Very Fast, Flying North East. +2011-12-23,46.6022222,-120.5047222,Yakima,WA,formation,600,Eight bright silent pulsating UFOs move over Yakima WA neighborhood and hover for 10 minutes then disappear. +2011-12-23,30.3116667,-95.4558333,Conroe,TX,rectangle,300,Rectangle shape the size of a football field, width of about 30 feet, entire ship outline in white neon like a vehicle from tron. +2011-12-23,27.2936111,-80.3505556,Port Saint Lucie,FL,light,180,Four independent pulsating lights that formed a triangle shape then flew off. +2011-12-23,40.8336111,-75.7141667,Lehighton,PA,light,2,Unexplained lights over lehighton Pa +2011-12-23,47.6588889,-117.425,Spokane,WA,fireball,1800,Bright orangish spheres traveling slowly from east to west then ascending until gone. +2011-12-23,32.7152778,-117.1563889,San Diego,CA,sphere,180,Two beautiful color changing light spheres danced thru the sky. +2011-12-23,47.6588889,-117.425,Spokane,WA,fireball,10,Fireball?? +2011-12-23,47.6588889,-117.425,Spokane,WA,light,4,Bright green light, fast moving. +2011-12-23,43.0480556,-76.1477778,Syracuse,NY,sphere,2400,Bright white light in the shape of a huge sphere over Onondaga County/Syracuse and moved very fast in all four directions. +2011-12-23,48.1958333,-114.3119444,Kalispell,MT,unknown,4,Object emitting Green and or Red light fell 1 mile away at 700 mph. +2011-12-23,28.5380556,-81.3794444,Orlando,FL,light,900,Multiple orange colored lights moving towards downtown Orlando, then ascended upwards and vanished. +2011-12-23,33.9525,-84.55,Marietta,GA,fireball,90,Fireball over Marietta, Ga +2011-12-23,26.1416667,-81.795,Naples,FL,other,300,Seven bright points of orange lights in a loose string formation @8:45 pm +2011-12-23,34.5794444,-118.1155556,Palmdale,CA,other,120,Because of my past history inside the craft (s) & (MILABS) this could be related to U.S. UFO/FLAP!!! +2011-12-23,39.2191667,-121.06,Grass Valley,CA,other,540,Red lights shining on a black or invisible flying/stationary object. +2012-12-23,37.2438889,-77.4105556,Colonial Heights,VA,triangle,1800,Three Bright Red Triangles sighted Twice in Colonial Heights +2012-12-23,40.0991667,-83.1141667,Dublin,OH,light,3,White Light Drops Behind Trees Quickly After Being Stationary In The Sky +2012-12-23,37.614444399999996,-93.4102778,Bolivar,MO,light,480,Bright reddish and yellow lights west of Bolivar. +2012-12-23,39.5752778,-76.9961111,Westminster,MD,circle,300,Pin-point Red lights, flying in somewhat formation, close to each other +2012-12-23,44.2619444,-88.4152778,Appleton,WI,fireball,300,5-6 fireball shaped object floting across the sky +2012-12-23,31.2825,-86.2555556,Opp,AL,light,5,Brief star like light to the left of sun +2012-12-23,42.8238889,-72.1816667,Troy,NH,disk,600,Troy NH disk shaped ufo sighting overlooking cemetery facing east driving on rt12 south. +2012-12-23,38.7358333,-85.38,Madison,IN,triangle,120,Triangle flying object with 2 lights on the back switching one to the other never at the same time. +2012-12-23,39.5752778,-76.9961111,Westminster,MD,triangle,3600,Triangular shaped with flashing red and blue lights that was stationary at 9:30 pm +2012-12-23,27.0994444,-82.4544444,Venice,FL,fireball,300,Bright red ball of fire moving slowly across the sky, stopped and transformed into a red halo. +2012-12-23,41.76,-70.0833333,Brewster,MA,flash,1500,Two possible crafts sighted from Greenland Pond, Brewster Ma +2012-12-23,39.6291667,-75.6586111,Bear,DE,fireball,240,15+ orange fireballs sequentially moving north at a moderate speed in Bear, DE. +2012-12-23,40.7694444,-74.0208333,Weehawken,NJ,other,4,12/23/12 - Large Object with Red Lights falls Extremely Fast from Sky To Hudson River (Weehawken) with ZERO explosion/noise +2012-12-23,30.3933333,-86.4958333,Destin,FL,fireball,1800,I live in Destin, FL and I, along with my wife and neighbors, have seen floating lights several times. The lights will last as long a +2012-12-23,33.4502778,-82.1983333,Grovetown,GA,triangle,60,Triangular shape with 3 very bright white/yellow lights moving slowly approximately 75 feet over the trees and was silent. It was sight +2012-12-23,48.5344444,-123.0158333,Friday Harbor,WA,light,10,At 21:30 hrs. on 12/23/12 I saw two red stationary lights in the night sky over Friday Harbor, San Juan Island, Washington State. It wa +2012-12-23,36.8466667,-76.2855556,Norfolk,VA,triangle,60,White lights, V-formation jetted thru sky then turned left and disappeared +2013-12-23,26.5625,-81.9497222,Cape Coral,FL,circle,3600,White orange circle. ((NUFORC Note: Possible contrails, reflecting rising sun?? PD)) +2013-12-23,47.7180556,-116.9505556,Post Falls,ID,light,300,Light with irregular flight pattern inconsistent for plane, sattelite or helicopter. +2013-12-23,37.3394444,-121.8938889,San Jose (??),CA,light,60,Helicopter pursues/escorts ufo. +2013-12-23,38.6244444,-76.9394444,Waldorf,MD,triangle,300,Triangular craft followed by multiple conventional planes. +2013-12-23,43.8261111,-111.7888889,Rexburg,ID,flash,3600,My family and I witness bright blue flashes lighting up the night sky. +2013-12-23,45.0083333,-96.4172222,Marietta,MN,light,60,Flickering orange "star" becomes transitory, races across the sky. +2013-12-23,33.7877778,-117.8522222,Orange,CA,circle,30,Orange light pulses then disappears. +2013-12-23,43.8261111,-111.7888889,Rexburg,ID,flash,300,Blue, red and green flashes seen above east Idaho. +2013-12-23,33.415,-111.5488889,Apache Junction,AZ,fireball,120,4 people witness a total of 4 orange glowing balls fly and disappear over a two night period. +2013-12-23,36.1658333,-86.7844444,Nashville,TN,triangle,300,We noticed about twenty lights outlining a triangular shaped objects, suddenly, the lights all disappeared at once. +2013-12-23,28.2486111,-81.2813889,Saint Cloud,FL,fireball,60,The object appeared to be a low flying rocket-like aircraft in level flight, flying west to east across Osceola County, FL. +2013-12-23,40.4277778,-74.4163889,East Brunswick,NJ,light,60,Orange Glowing ball of light hovering over the town. +2013-12-23,33.2486111,-111.6336111,Queen Creek,AZ,light,180,Light appearing two nights in the same week during December in Queen Creek, AZ Identical in occurence. +2013-12-23,61.5813889,-149.4394444,Wasilla,AK,fireball,10,Orange fireball looking object moving fluidly across sky over Wasilla moving fast enough to appear propelled. Stopped and then disappea +2013-12-23,46.44,-122.8455556,Toledo,WA,light,300,Radiant glowing indigo orb seen dancing near I-5 in southern Washington state, 12/23/13. +2013-12-23,20.6566667,-156.0586111,Kipahulu,HI,cylinder,180,Red/orange object streaks, then floats for three minutes across the sky. +2013-12-23,61.2180556,-149.9002778,Anchorage,AK,light,300,stationary amber/orange colored lights over Anchorage. +2013-12-23,61.2180556,-149.9002778,Anchorage,AK,circle,10,At least 40 round red orbs hovering in formation above the hillside, disappeared quickly. +1947-12-24,42.4394444,-83.7438889,Whitmore Lake,MI,cigar,1200,Dec. 24, 1947 cigar shaped lighted object above the trees near Ann Arbor, Michigan +1965-12-24,40.2269444,-78.9366667,Davidsville,PA,light,300,I personally witnessed this sighting while hitchhiking back home while in the Navy. It was a clear night while walking within 4 miles +1970-12-24,39.7911111,-74.9294444,Berlin,NJ,cylinder,300,Cylinder shape, not fast moving like you see in all the usual sightings. Like i could feel it observing me. +1972-12-24,38.8338889,-104.8208333,Colorado Springs,CO,disk,120,A DISK SHAPPED UFO SIGHTED OUTSIDE COLORADO SPRINGS CHRISTMAS EVE 1972 +1977-12-24,32.2986111,-90.1847222,Jackson,MS,unknown,120,it was xmas eve, we decided to take a different routte when we went through the town phocahuntis... we stopped at this stop sign when t +1977-12-24,44.1544444,-75.7091667,Philadelphia,NY,oval,20,multi colored +1981-12-24,37.3341667,-79.5233333,Bedford County (Stewertsville Area),VA,disk,3600,close encounter of the second kind, 15 feet from disk shaped craft. +1986-12-24,29.1869444,-82.1402778,Ocala,FL,triangle,120,Approximately 10:00 pm, saw a very large triangular (for lack of better word) shaped object traveling from southwest to northeast. The +1987-12-24,41.5775,-71.5380556,Exeter,RI,rectangle,60,UFO seen Christmas Eve 1987. Made sudden "L" shape turn unlike any known aircraft. +1989-12-24,44.7311111,-68.8269444,Orrington,ME,triangle,900,Large dark triangular object with two round lights on either end and smaller circular lights in the middle +1990-12-24,40.485,-106.8311111,Steamboat Springs,CO,unknown,15,Sporadic flashes of intense blue light +1991-12-24,43.3361111,-85.8108333,Grant,MI,circle,180,There was one circle shaped object in the sky by a tree in the back yard, It had lights all around it. I left the room to get my husba +1992-12-24,39.1619444,-84.4569444,Cincinnati,OH,triangle,300,Our sighting was a classic triangle type U.F.O though it seemed more phoenix shaped to us,It was christmas eve we just finished ourlate +1992-12-24,32.5091667,-92.1191667,West Monroe,LA,disk,7200,Documented. The firefighters, State Police, and Sheriffs Office were called out to investigate a strange object in sky. +1993-12-24,39.0066667,-91.355,Bellflower,MO,light,300,Strange glowing lights hover and then streak across the night sky in Bellflower, MO +1994-12-24,47.6063889,-122.3308333,Seattle,WA,light,20,Man witnesses very bright, multi-colored object pass overhead very fast. Disappeared to the north in 20 sec.. +1994-12-24,34.1511111,-118.4483333,Sherman Oaks,CA,triangle,300,Triangular, silent object, descends through clouds then ascends upwards, followed by helicopter. +1995-12-24,34.795,-90.9911111,Moro (Lee Co.) And Brinkley (Monroe Co.) (Between),AR,triangle,1800,Star like light followed our car, changed to a triangle shape, changed back, followed airplane. +1995-12-24,37.1297222,-80.4091667,Christiansburg,VA,triangle,120,4 adults see 2 conventional mil. aircraft "pursuing" a 3rd "triangular craft w/ tiny red lights." 4th a/c approaches at high speed. +1995-12-25,29.6908333,-95.2088889,Pasadena,TX,light,600,THE OBJECT WAS A LARGE RED BALL OF LIGHT. IT WAS DESCENDING SLOWLY, STRAIGHT DOWN. +1996-12-24,40.2736111,-76.8847222,Harrisburg,PA,triangle,300,Triangle w/ 1 light on each point. +1996-12-24,34.7463889,-92.2894444,Little Rock,AR,light,600,No Noise, No nothing except blurry lights,an extremly large object with such speed andmanuvirabilty,stopping and starting, hooveringfor +1998-12-24,38.8461111,-77.3066667,Fairfax,VA,unknown,1.5,I was ouyside my cousin's home smoking a cig. before getting ready to go to work at Dulles airport as a aviation mechanic. I was watchi +1998-12-24,30.3494444,-92.6713889,Hathaway,LA,cylinder,300,It was Christmas Eve "98. My girlfriend was leaving my house and I walked her outside to her car. All of a sudden, we both saw a cylind +1999-12-24,47.4927778,-112.3913889,Augusta,MT,oval,600,A small,brilliant light low in the sky, when observed thru binoculars was seen to have a shimmering,unstable quality. Slowly drifted d +1999-12-24,25.7738889,-80.1938889,Miami,FL,circle,120,Large circular object, glowing red in color with an aura around it..moved much faster than an airplane across the sky north to south di +1999-12-24,41.0997222,-80.6497222,Youngstown,OH,triangle,10,3 TRIANGULAR SHAPED OBJECTS MOVING IN FORMATION +1999-12-24,35.9297222,-86.1816667,Milton,TN,triangle,900,The object appeared to be a very large star. From underneath it appeared to be triangular with lights around the base with a vapor trai +2000-12-24,34.4838889,-114.3216667,Lake Havasu City,AZ,egg,1200,Egg shape UFO on Christmas Eav. over Western Arizona +2000-12-24,40.5983333,-124.1561111,Fortuna,CA,circle,120,Circle shaped orange object sighted in southeast over Fortuna CA with two black dots in circle and no trail or tail +2000-12-24,37.9747222,-87.5558333,Evansville,IN,fireball,120,while driving home from pre christmass dinner, OUr family began to pay attention what we thought was an airplane. However, the object a +2000-12-24,40.9955556,-82.6672222,Plymouth (Rural),OH,fireball,5,my husband and i were returning from son's home, heading northeast on state route 598, around l0 p.m. when i saw a bright green firebal +2001-12-24,36.175,-115.1363889,Las Vegas,NV,rectangle,120,I saw a large rectangle of bright white light. It stayed in one place for about a minute and then turned into one small light that look +2001-12-24,35.2847222,-81.2841667,Bessemer City,NC,cigar,25,I walked out on my deck on a clear sunny afternoon,I looded up at the sky to see if they had been spraying chemtrails.There was no chem +2001-12-24,34.0633333,-117.65,Ontario,CA,disk,25,Sationary black dots giving off smoke puffs(exhaust) for at least half an hour. +2001-12-24,39.9611111,-82.9988889,Columbus,OH,triangle,600,Triangle hovering near freeway. +2001-12-24,45.6388889,-122.6602778,Vancouver,WA,light,5,Falling light outside of Vancouver +2001-12-24,33.8816667,-118.1161111,Bellflower,CA,light,480,dramatic movements by red object in sky captured on video +2001-12-24,45.5236111,-122.675,Portland,OR,light,3600,a flickering light, that changed color, and greww larger and started to throb when airplanes came near. +2002-12-24,42.2222222,-71,Braintree,MA,oval,1200,Braintree light in morning sky +2002-12-24,40.6975,-74.2636111,Union,NJ,unknown,600,Bright light during the night -- like day time --- sounded like popcorn popping +2002-12-24,41.8238889,-71.4133333,Providence,RI,sphere,120,A cold winter evening. I was walking the dog through the woods when all of the sudden I saw 3 sphere like shapes floating about 10 yds +2002-12-24,40.4163889,-120.6519444,Susanville,CA,light,180,North Eastern Calif. Fiery object emits fire like objects that float down to ground. +2002-12-24,46.9005556,-102.045,Hebron,ND,light,300,bright white light took off away from my location at increadible speed. +2003-12-24,34.1808333,-118.3080556,Burbank,CA,triangle,300,Gold light with red lights emitting sparks and sound above Burbank, CA +2003-12-24,30.2383333,-90.92,Gonzales,LA,triangle,120,The Silent Trianlge Helicopter +2003-12-24,47.4236111,-120.3091667,Wenatchee,WA,formation,900,On Christams Eve my Mother, Me and 5 other witness saw orange balls of light N. of Wenatchee +2003-12-24,34.0522222,-118.2427778,Los Angeles,CA,sphere,2,Floating sphere outside LAX on Xmas. +2003-12-24,39.885555600000004,-104.9866667,Northglenn,CO,light,600,Three strange lights move slowly and interact with one another in the night sky. +2003-12-24,37.775,-122.4183333,San Francisco,CA,oval,4,Oval object crossing the sky at incredible speed turned bright red-orange then went straight up & out +2004-12-24,39.9522222,-75.1641667,Philadelphia,PA,disk,120,clear view of a flying saucer,hovering, and beaming down a light. +2004-12-24,39.2402778,-76.8397222,Columbia,MD,other,3600,object looked like a star, but the color changed back and forward +2004-12-24,38.8133333,-82.7269444,South Webster,OH,sphere,3,Blue Green Falling Star-No Trail +2004-12-24,47.5708333,-120.6027778,Peshastin,WA,light,300,Slow Moving , Gold in Color,Started to Flash and Dropped a Light same in color as the object continued slow without any noise +2004-12-24,38.9011111,-77.2655556,Vienna,VA,fireball,1,Bright BLUE/GREEN object streaked cross the sky from NE to SW. +2004-12-24,26.1902778,-97.6958333,Harlingen,TX,other,1200,Large Blue Light-1st Snow in 105 years. +2004-12-24,36.9613889,-120.0597222,Madera,CA,light,180,i saw lights blinking in weird formation and it was hovering next to the car. ((NUFORC Note: Student report. PD)) +2005-12-24,34.0752778,-84.2941667,Alpharetta,GA,other,120,Incredibil fast lights..... +2005-12-24,34.2694444,-118.7805556,Simi Valley,CA,unknown,1200,lights over simi valley and +2005-12-24,39.9522222,-75.1641667,Philadelphia,PA,triangle,60,V SHAPE (5 LIGHTS) FLYING OBJECT IN THE WEST PHILADELPHIA AREA ON 12/24/05 17:35. STEALTH? +2005-12-24,34.1169444,-83.5725,Jefferson,GA,egg,120,3 objects with speeds unimaganable. +2005-12-24,26.1272222,-80.2333333,Plantation,FL,fireball,90,Bright Orange / Red Light with no strobe lights +2005-12-24,32.7733333,-92.4055556,Farmerville,LA,sphere,120,bluish white lights over the trees just outside of farmerville, louisiana +2005-12-24,34.9244444,-80.7436111,Waxhaw,NC,disk,60,Disc-shape object hovering 30 ft above house - lights blinking with siren-like sound. Object left very quickly within seconds. +2006-12-24,41.8005556,-73.1216667,Torrington,CT,triangle,240,Bright triangle object drops flares out of the sky to the earth +2006-12-24,39.7683333,-86.1580556,Indianapolis,IN,unknown,15,Ultra-fast fly-by of 2 ufo's with associated light, noise, energy, electrical interference, UV radiation +2006-12-24,37.7975,-121.215,Manteca,CA,oval,2700,((HOAX??)) 12-24-06 to 01-03-07 UFO sighting at least 50 seen over a 10 day period. +2006-12-24,37.7975,-121.215,Manteca,CA,disk,2700,Chirstmas eve 2006 sighting in Manteca California 3:35am. +2006-12-24,41.6213889,-72.7461111,Berlin,CT,triangle,180,Two orange lights swirled around eachother and flew off side by side to the north northeast. +2006-12-24,35.6869444,-105.9372222,Santa Fe,NM,diamond,18,bright orange lights spliting into multiple objects over Santa Fe, NM. +2006-12-24,42.4644444,-83.3763889,Farmington,MI,triangle,300,Strange triangular object gliding across the sky in Farmington Michigan. +2006-12-24,43.6727778,-84.3805556,Sanford,MI,rectangle,900,We watched a large, rectangle object w/double green lights, moving fast from S/E, stopped, changed to red lights and proceeded N/W. +2006-12-24,38.6786111,-121.7722222,Woodland,CA,light,300,We observed and orange light appear move north and south and then vanish. +2006-12-24,39.7683333,-86.1580556,Indianapolis,IN,fireball,60,Large Red Orb on Highway +2006-12-24,40.0377778,-76.3058333,Lancaster,PA,formation,120,A triangular formation of 6 white orbs flew together, then separated and reformed formation again. +2007-12-24,25.9013889,-97.4972222,Brownsville,TX,light,240,Nighttime headlight looking objects on the road doing a 90 degree turn in front of my truck (twice). +2007-12-24,34.1866667,-118.4480556,Van Nuys,CA,formation,780,Turquoise lights floating in triangular formation. +2007-12-24,34.1222222,-117.5972222,Alta Loma,CA,circle,100,UFO below the Moon from California +2007-12-24,40.7141667,-74.0063889,New York City,NY,unknown,12,something dull, fast, wingless, and bl streaks due north from manhattan / lower hudson valley +2007-12-24,41.5008333,-90.4441667,East Moline,IL,triangle,600,triangular shape caught my attention. +2007-12-24,37.1811111,-79.6175,Moneta,VA,unknown,3600,The four of us saw a orange light that shifted around the moon. +2007-12-24,28.4952778,-81.535,Windermere,FL,changing,60,Bright stationary light in sky in lighted, rectangular, grid shape. Moved to NW, vansihed, then flashed brightly and vanished again. +2007-12-24,39.7047222,-105.0808333,Lakewood,CO,light,900,Unusually bright light seen next to very bright full moon +2007-12-24,40.1672222,-105.1013889,Longmont,CO,unknown,300,Two very bright sparkling objects seen while driving; one disapeared while the other one moved off slowly out of sight. +2007-12-24,35.1494444,-90.0488889,Memphis,TN,unknown,10,Four bright orange lights in a perfect square that was slowly drifting before separating and disappearing. +2008-12-24,37.8044444,-122.2697222,Oakland,CA,circle,1,Strange mirage disturbance flying through the sky at high speed over Oakland California. +2008-12-24,44.98,-93.2636111,Minneapolis,MN,fireball,3,A large, green, glowing ball of light moved from West to east in a sharp downward angle across the southern horizon. +2008-12-24,33.9533333,-117.3952778,Riverside,CA,cigar,75,Two white, cigar shaped objects, pulsing with light. +2008-12-24,28.8355556,-82.3305556,Inverness,FL,circle,75,A multi colored brightly shining star it was not! +2008-12-24,35.4675,-97.5161111,Oklahoma City,OK,light,15,I saw a light in the sky then another light eminated from it and fell to the earth when it reached earth the object in sky went out. +2008-12-24,43.1547222,-77.6158333,Rochester,NY,other,120,Christmas Eve object with bright spotlight near Rt. 441 in Wayne County near Rochester, New York like a helicopter with no sound +2008-12-24,42.6875,-83.2341667,Auburn Hills,MI,flash,5,Blue-green flash of light in Auburn Hills, MI +2009-12-24,38.8461111,-77.3066667,Fairfax,VA,other,300,Red/white lights on rotating box hovering, changed to green/blue lights as well when comes close and then flys away at surprising speed +2009-12-24,47.9130556,-122.0969444,Snohomish,WA,egg,30,After a second i realized that light that i saw in the sky was flashing and slowing down getting brighter as it descended. +2009-12-24,33.8352778,-117.9136111,Anaheim,CA,formation,180,3 multicolored lights in triangular formation hovering and then rising up. It changed formation and moved on a curve several times. +2009-12-24,42.2208333,-70.9402778,Weymouth,MA,other,300,Dozens of little red lights seen on christmas eve in the skys of weymouth Ma. +2010-12-24,42.3916667,-71.0333333,Chelsea,MA,triangle,10,on cristmas eve around 7 pm i went outside to smoke a cigarette i always look to the sky since an unexplained experience i had back in +2010-12-24,38.7955556,-77.6141667,Gainesville,VA,circle,900,16 orange "fireballs" of light seen on Christmas Eve, 2010. +2010-12-24,39.5297222,-119.8127778,Reno,NV,light,120,Strange lights over Reno on Christmas eve +2010-12-24,38.8875,-83.6144444,Cherry Fork,OH,light,300,Three red lights in triangle formation no sound but movement. +2010-12-24,40.0336111,-76.5047222,Columbia,PA,light,180,Lights hovering over the field. +2010-12-24,42.3086111,-83.4822222,Canton,MI,light,120,3 bright lights traveling south, Canton MI. +2010-12-24,26.4611111,-80.0730556,Delray Beach,FL,light,7200,Object ,Yellowish orange appeard at cloud level 5000 feet hoverd and moved about.Looking west from Delray beach house. +2010-12-24,40.5291667,-75.3936111,Center Valley,PA,fireball,1200,I was working last night in a group home and witnessed this while talking on the phone on the front porch of the home. I called my cowo +2010-12-24,37.9513889,-91.7711111,Rolla,MO,sphere,900,Christmas Eve UFO 4 whiteness. +2010-12-24,30.4505556,-91.1544444,Baton Rouge,LA,oval,180,Red orb spotted over Shenendoah Subdivision - Baton Rouge +2010-12-24,42.4666667,-70.95,Lynn,MA,light,900,5 Amber Lights over Northshore MA +2010-12-24,36.175,-115.1363889,Las Vegas,NV,diamond,180,diamond shaped craft from north to south, crossed orion constellation 2230 12/24/2010 +2011-12-24,27.0591667,-80.1366667,Hobe Sound,FL,light,3600,A very bright light about three to four times the size of a star in the sky that appeared closer like not in space move in circle. +2011-12-24,64.8377778,-147.7163889,Fairbanks,AK,sphere,3600,Bright Orb/Sphere with pulsating blue and red lights hovering with jerky motion. ((NUFORC Note: Sighting of Sirius?? PD)) +2011-12-24,37.725,-122.155,San Leandro,CA,other,30,A quiet, dark and large floating arc moving from south to north towards downtown Oakland at 4:40 a.m. +2011-12-24,27.4986111,-82.575,Bradenton,FL,changing,1800,Saw it Again to the West this time.Large Colorful Pulsating Light. +2011-12-24,27.4986111,-82.575,Bradenton,FL,changing,300,Large Pulsating Colorful Light over Eastern Manatee County +2011-12-24,33.4483333,-112.0733333,Phoenix,AZ,unknown,900,Bright Blue & Red Object in North Valley +2011-12-24,38.5788889,-122.5786111,Calistoga (2 Miles Outside),CA,oval,2,A grey, oval-shaped object in the sky appears in a photograph taken on this date (but not actually witnessed at the time) +2011-12-24,40.5308333,-112.2975,Tooele,UT,light,180,3 red non- blinking lights seen from Tooele over Salt Lake Valley +2011-12-24,39.1530556,-77.0672222,Olney,MD,light,3,Fast moving very small circular or disk shaped bright bluish-white object moving SW over Olney, MD 5:45 PM +2011-12-24,41.9902778,-70.9755556,Bridgewater,MA,unknown,120,2 stationary lights in the southwest sky from Bridgewater, MA, highly visibly at dusk when nothing else visible in the sky except the . +2011-12-24,36.5925,-78.6163889,Henrico,VA,oval,10,Neon blue oval shape zipping across the sky +2011-12-24,47.6419444,-122.0791667,Sammamish,WA,fireball,20,VERY Bright yellow/red object moving across sky, seen from Sammamish at about 6:30 pm 12/24/11. +2011-12-24,41.4927778,-75.7,Clarks Green,PA,unknown,120,Slightly orange round lights moving in the sky. +2011-12-24,39.2719444,-76.7322222,Catonsville,MD,sphere,120,Orange spheres in the sky +2011-12-24,38.6272222,-90.1977778,St. Louis,MO,triangle,90,6 lights spanning across the street , a triangle shaped object hovering and spinning, silent +2011-12-24,39.0638889,-108.55,Grand Junction,CO,other,300,Large red ball of light with trail of white/yellow lights seen over Grand Junction, CO +2011-12-24,40.1741667,-75.1072222,Hatboro,PA,other,15,We were at my inlaws house for christmas eve dinner. I went outback to have a smoke. When i looked up to see the stars I noticed a craf +2011-12-24,28.0338889,-82.6652778,Oldsmar,FL,oval,180,I was leaving my parents house when my Dad said, "What is that?". My Mom and I looked up and we saw a red oval craft in the sky. It w +2011-12-24,47.1041667,-122.4333333,Spanaway,WA,formation,90,This is my second confirmed, and somehow knew it was about to take place!!?? +2011-12-24,40.5,-111.95,West Jordan,UT,fireball,600,4 red orbs over West Jordan, UT. on Christmas Eve 2011 +2011-12-24,33.6694444,-117.8222222,Irvine,CA,triangle,300,Irvine CA, 8:05 PM Dec. 24 2011. V Shaped light formation 4 lights on each side which pulsated extreamly bright white. +2011-12-24,40.2258333,-76.3027778,Brickerville,PA,formation,30,3 glowing orange orbs over the PA Turnpike on Christmas Eve. +2011-12-24,30.4547222,-90.5419444,Pumpkin Center,LA,light,600,Red-Orange Silent Bright Light near Hammond La +2011-12-24,26.9758333,-82.0908333,Port Charlotte,FL,changing,900,Serpentine UFO over Port Charlotte, FL Christmas Eve +2011-12-24,40.2066667,-75.1,Warminster,PA,other,60,A long Bar like shaped craft with lights all along it witnessed by 2 people in Bucks County PA +2011-12-24,40.155,-74.8291667,Levittown,PA,circle,1500,Glowing orange lights floating in the sky that lite up and disappeared. +2011-12-24,39.1433333,-77.2016667,Gaithersburg,MD,circle,600,Lights over Gaithersburg, MD +2011-12-24,43.6136111,-116.2025,Boise,ID,light,1500,Red Pulsating Light Seen in Boise on Christmas Eve +2011-12-24,40.7141667,-74.0063889,New York (Long Island),NY,fireball,900,6 fireballs ascended in formation and vanished one after another. +2011-12-24,35.2333333,-106.6638889,Rio Rancho,NM,circle,180,Rio Rancho, New Mexico UFO spotted on Christmas Eve +2011-12-24,43.6136111,-116.2025,Boise,ID,circle,1800,Bright red star at about 30 degrees above eastern horizon. ((NUFORC Note: Possibly Sirius? PD)) +2011-12-24,39.6133333,-105.0161111,Littleton,CO,circle,300,Saw four orange-red circles sitting still in the sky south-east of Littleton Christmas Eve about 10 pm. Two faded out and a while late +2011-12-24,30.4211111,-87.2169444,Pensacola,FL,fireball,900,Looked like a fiery fiery snowglobe. +2011-12-24,26.525,-80.0666667,Boynton Beach,FL,fireball,300,Orange fireball/light seen on christmas eve Boynton Beach Florida +2011-12-24,47.6816667,-122.2075,Kirkland,WA,light,900,Odd light seen from Kirkland facing west. +2011-12-24,37.7988889,-82.2869444,Lenore,WV,changing,120,I saw what looked like an aircraft at first. It was flying east to west, slowly. As it came over me, I realized one of the lights wa +2011-12-24,33.4483333,-112.0733333,Phoenix,AZ,other,900,Purple light dances around sky while disappearing and reappearing. +2011-12-24,38.6822222,-104.7002778,Fountain,CO,light,20,Glowing Light Above Norad in Colorado Springs +2011-12-25,40.8175,-73.0005556,Medford,NY,circle,180,20+ amber circles ( star appearence) shaped like a "reversed" Big Dipper. In minutes, circles appeared to dim or vanish +2012-12-24,35.7719444,-87.7838889,Lobelville,TN,unknown,300,Awoke at 3 am, electricity out, home shaking, loud humming sound, bright green lights and witnessed a humanoid figure outside window. +2012-12-24,30.1313889,-94.0152778,Vidor,TX,unknown,180,Star Like Craft +2012-12-24,44.9430556,-123.0338889,Salem,OR,circle,180,Observed one bright red/orange light at first, then saw three more identical objects following it forming a triangle shape as soon as t +2012-12-24,42.2125,-88.1525,Lake Barrington,IL,triangle,480,8 Triangular Orange Lights Moving North to South on 12/24/12 @ 5:15pm CST in Lake Barrington, IL +2012-12-24,27.6383333,-80.3975,Vero Beach,FL,sphere,120,Lone flaming orb shoots back and forth across the sky +2012-12-24,44.0547222,-70.7133333,Bridgton,ME,light,300,Several different orange red pulsing lights ball shaped, things with 5 witnesses that none of us could explain. +2012-12-24,41.385555600000004,-72.4361111,Deep River,CT,fireball,120,4 red glowing orbs in the southern sky ,,they didnt move then just disappered +2012-12-24,42.5875,-72.6,Greenfield,MA,light,2700,Ufo dogfight over pioneer valley +2012-12-24,27.1972222,-80.2530556,Stuart,FL,fireball,240,Fireball over south Stuart Fl. traveling east/northeast. No lights except for what looked like an orange fireball. +2012-12-24,44.3377778,-72.7566667,Waterbury,VT,circle,300,Red/orange ball moving then disappeared. +2012-12-24,29.6513889,-82.325,Gainesville,FL,light,60,Five lights fly in straight line. +2012-12-24,42.2458333,-122.7875,Talent,OR,light,420,Red/Yellow orb West of Medford, Oregon, Christmas Eve. +2012-12-24,41.0333333,-74.6388889,Sparta,NJ,light,60,5 large glowing red/white lights traveling close together +2012-12-24,45.5608333,-94.1622222,St. Cloud,MN,circle,20,Orange, shiny object, 8 p.m., in the night sky (St. Cloud, MN), came closer and closer until gradually fading away. +2012-12-24,33.1958333,-117.3786111,Oceanside,CA,other,60,This object had a bright orange light that was steady and not moving +2012-12-24,43.6136111,-116.2025,Boise,ID,light,900,Red light over Boise dropping other red lights out of it toward the ground +2012-12-24,39.535,-119.7516667,Sparks,NV,light,300,Three separate bright orange lights in the western sky traveling at very high rates of speed. ((NUFORC Note: Law enforcement report.)) +2012-12-24,38.2494444,-122.0388889,Fairfield,CA,circle,240,4 red lights-seen 2 at a time. +2012-12-24,33.9830556,-118.0958333,Pico Rivera,CA,fireball,60,Glowing ball of fire... +2012-12-24,38.4405556,-122.7133333,Santa Rosa,CA,triangle,120,Three bright orange triangular lights seen by elementary school teacher on Christmas Eve-Not Santa's sleigh. +2012-12-24,27.9472222,-82.4586111,Tampa,FL,fireball,60,A fiery round craft headed north at low altitude followed by an identical craft a few seconds behind. +2012-12-24,27.9472222,-82.4586111,Tampa,FL,fireball,60,Two fire ball like flying objects seen following each other in Tampa On Christmas Eve +2013-12-24,36.9102778,-121.7558333,Watsonville,CA,chevron,300,6 orange circles holding formation in sky. +2013-12-24,38.6402778,-92.1222222,Holts Summit,MO,disk,120,It is back, once more, early, and dropping "drones." +2013-12-24,41.1175,-73.4083333,Norwalk,CT,circle,120,We were driving home and out of the corner of my eye i spot 3 circular lights moving in strange patterns. 2 more flew up in the same st +2013-12-24,41.1572222,-85.4883333,Columbia City,IN,cylinder,120,Was looling at a double rainbow that was out side of my house then saw a strange silver craft hovering by it i kept watching it till it +2013-12-24,33.1958333,-117.3786111,Oceanside,CA,fireball,600,Four fireballs changing directions. +2013-12-24,42.7261111,-71.1913889,Methuen,MA,light,20,Yellow/orange light over route 93 near Methuen. +2013-12-24,46.0688889,-87.1658333,Rock,MI,changing,1200,Very bright, white ball exploding, reappearing and shape-shifting travelling slowly past Michigan +2013-12-24,37.2638889,-122.0219444,Saratoga,CA,sphere,180,Orange ball of light. +2013-12-24,41.4813889,-73.2136111,Southbury,CT,oval,120,Orange star in sky. +2013-12-24,40.3275,-80.0397222,Bethel Park,PA,circle,180,5 Red pulsating lights in the sky over Bethel Park, PA on Christmas Eve 2013. +2013-12-24,43.6630556,-116.6863889,Caldwell,ID,circle,600,9 orange lights hovering Northwest of Caldwell +2013-12-24,36.0625,-94.1572222,Fayetteville,AR,formation,300,Two waves of orange/yellow orbs with 'afterburner' like emissions visible from the rear upon passing overhead. +2013-12-24,41.176944399999996,-112.0030556,Riverdale,UT,flash,2,Reddish/orange flash of light. +2013-12-24,44.26,-72.5758333,Montpelier,VT,cylinder,360,I saw what I initially believed to be a bright star, but quickly noticed it was much too bright and more importantly, bright orange. +2013-12-24,33.5386111,-112.1852778,Glendale,AZ,formation,600,Red lights in formation. +2013-12-24,44.2619444,-88.4152778,Appleton,WI,sphere,240,Three of us saw eight illuminated orbs hovering near us in a moving vehicle for a few minutes. +2013-12-24,43.6136111,-116.2025,Boise,ID,circle,600,4, red, orenge, lights, in, the, sky. +2013-12-24,46.7313889,-117.1786111,Pullman,WA,circle,300,Orange orb. +2013-12-24,43.5208333,-88.2288889,Kewaskum,WI,formation,300,I saw 5 orange-red lights traveling in a line from S to N at about the speed of an airplane, though completely silent. +2013-12-24,47.6063889,-122.3308333,Seattle,WA,sphere,240,Orange spheres/orbs over Seattle. +2013-12-24,36.0725,-79.7922222,Greensboro,NC,sphere,60,Multiple lights seen in diamond-shaped formation. +2013-12-24,40.7988889,-76.8625,Selinsgrove,PA,light,60,Very small but bright (equal in luminosity to polaris) red/orange flickering light, appeared to resemble a burning out solid rocket. +2013-12-24,45.8119444,-118.4894444,Athena,OR,cross,1800,THERE'S SHIPS UP THERE. +2013-12-24,43.6136111,-116.2025,Boise,ID,sphere,300,Bright red light dropped a flashing red orb or light +2013-12-24,43.0125,-83.6875,Flint,MI,light,300,White/orange light hovers then drops out of sight from an extreme altitude by flint mi. +2013-12-24,32.7252778,-114.6236111,Yuma,AZ,cross,300,Lone star-shaped ufo sighted over Yuma, Az on Christmas Eve, 2013. +2013-12-24,41.6716667,-72.9497222,Bristol,CT,diamond,180,orange lights over rt. 69 Bristol. +2013-12-24,35.0844444,-106.6505556,Albuquerque,NM,changing,60,Saw a kite-life UFO floating through the sky on Christmas Eve. +2013-12-24,42.3694444,-71.9486111,Rutland,MA,circle,600,Unexplained saucerlike aircrafts in Massachusetts +2013-12-24,40.3769444,-111.795,American Fork,UT,light,120,Large red and orange light in Utah's western sky +2013-12-24,35.0844444,-106.6505556,Albuquerque,NM,cone,1800,Christmas Eve 2013 headed South leaving Albuquerque, saw a craft that looked like a spinning top with rings spinning around it, +2013-12-24,30.7619444,-86.5705556,Crestview,FL,sphere,120,Round orange red base sphere silent about 30 feet diameter light was lumenated from object no single light NAV type. +2013-12-24,42.4666667,-70.95,Lynn,MA,formation,300,Four orange/red spheres in rotating formation. +2013-12-24,47.7180556,-116.9505556,Post Falls,ID,circle,600,3 orange balls moving silently across the sky, and changing direction. +2013-12-24,30.0797222,-95.4169444,Spring,TX,unknown,120,Approx. 10 amber colored objects flying in formation in a clear night sky. +2013-12-24,33.7738889,-117.9405556,Garden Grove,CA,teardrop,300,Two white teardrop lights drop or were propelled from an orangish red sphere southwest of Garden Grove, California. +2013-12-24,30.3319444,-81.6558333,Jacksonville,FL,circle,90,Bright red flashing moving slow from NNW to the SSE +2013-12-24,29.9544444,-90.075,New Orleans,LA,sphere,180,Three dull orange spheres flying silently in succession. +2013-12-24,30.4752778,-90.1008333,Covington,LA,circle,600,Low flying bright orange circular appearing objects in the sky. +2013-12-24,44.0805556,-103.2305556,Rapid City,SD,cylinder,2400,Flying something's? +2013-12-24,27.9455556,-82.2580556,Valrico,FL,light,600,Strange group of lights over Lithia, Florida. +2013-12-24,30.275,-89.7811111,Slidell,LA,light,1500,Confirmed 9 orange separate lights. +2013-12-24,33.4222222,-111.8219444,Mesa,AZ,unknown,300,3 orange lights lined up, went to grab my phone came back and they were gone. +2013-12-24,27.6383333,-80.3975,Vero Beach,FL,fireball,20,Fireball in the night sky +2013-12-24,32.7152778,-117.1563889,San Diego,CA,circle,1200,Slow low movng then rise, hover. south west sky over ocean. +2013-12-25,41.1016667,-80.7647222,Austintown,OH,triangle,300,Red Lights. +1966-12-25,42.2711111,-89.0938889,Rockford,IL,unknown,60,Close encounter experience. 500 Lights On Object0: Yes +1971-12-25,34.1975,-119.1761111,Oxnard,CA,sphere,2,big blue fireball very low +1975-12-25,27.9472222,-82.4586111,Tampa,FL,triangle,300,Zig Zagging Star Over Tampa Florida +1976-12-25,44.5469444,-69.6216667,Winslow,ME,disk,180,two disks edge on with light on botom flying in formation. +1982-12-25,39.0997222,-94.5783333,Kansas City,MO,circle,2400,It came upon a light,on christmas morn. +1982-12-25,35.9555556,-80.0055556,High Point,NC,light,240,Object appearing to fly in formation with airliner before radically maneuvering away from it. +1985-12-25,41.2813889,-73.4986111,Ridgefield,CT,circle,60,Massive circular object hovering in the night sky, year 1985. +1994-12-25,38.4191667,-82.4452778,Huntington,WV,unknown,360,Kanawha River West Virgina 1994 +1994-12-25,39.1619444,-84.4569444,Cincinnati,OH,circle,300,On Christmas day we saw an orange ball of light with a ring surrounding it in the sky. +1996-12-25,60.1041667,-149.4422222,Seward,AK,light,30,it was green hovering +1997-12-25,35.2269444,-80.8433333,Charlotte,NC,light,30,Similar UFOs sighted exactly a year apart +1997-12-25,34.0522222,-118.2427778,Los Angeles (Eagle Rock),CA,disk,7200,12-25-97 a disk shaped U.F.O. - top half silver, bottom black - hovered over Eagle Rock from 9am to 11am. +1998-12-25,39.0997222,-94.5783333,Kansas City,MO,chevron,300,On Christmas Day 1998 we saw a boomerang north of Kansas City. +1998-12-25,33.6116667,-111.7166667,Fountain Hills,AZ,sphere,10,We saw a spherical, metallic object in the west. Moving extremely fast to the west. No way to determine the size of the craft as we d +1998-12-25,40.7608333,-111.8902778,Salt Lake City (South Of),UT,circle,4,We were traveling south on I-15 to Utah County from Salt Lake county and to the right as I watched incoming airplanes from the south I +1998-12-25,41.4847222,-80.4377778,Jamestown,PA,light,120,I saw what I thought was a planet because it was in the ecliptic plane. Further observations concluded no lights or becons, no sound a +1999-12-25,36.1658333,-86.7844444,Nashville,TN,light,3600,Viewed a UFO through bedroom window on Christmas Eve, as its bright lights woke me up; kept me awake for over an hour as it moved slowl +1999-12-25,40.7583333,-82.5155556,Mansfield,OH,other,360,on christmas day morning(Dec.25) 1999,upon my wife and I waking up,I was using the restroom when she said "come here and look at this +1999-12-25,41.1688889,-82.2180556,Wellington,OH,oval,10,Two UFO's were spotted ofer the Wellington airport by my father and myself. +1999-12-25,33.6680556,-117.3263889,Lake Elsinore,CA,triangle,600,orange light moving west to east, then made sharp turn to the south then broke up into 5 orange lights, faded to the south +1999-12-25,28.9669444,-98.4783333,Pleasanton,TX,cigar,120,going outside to say goodbye to family when I looked into the sky and seen two lights one front of the other. Knowing to myself it look +1999-12-25,41.7002778,-73.9213889,Poughkeepsie,NY,chevron,35,While standing on the deck of my home, I happened to look up to the NE and saw a large chevron/boomerang object moving from the north t +1999-12-25,38.7430556,-94.8252778,Spring Hill,KS,triangle,4,I looked up and saw an object fly over my house from south to north, it was triangular shaped, but the points looked rounded. +2000-12-25,25.7738889,-80.1938889,Miami,FL,egg,600,it muve slow to the southwest it pass an airplane it was silver and a 1/4 of the airplane. +2000-12-25,32.2216667,-110.9258333,Tucson,AZ,cigar,4,Shiny silver object that reflected the sun emerged in the south sky moving east to west then abruptly disappeared. +2000-12-25,42.3086111,-83.4822222,Canton,MI,fireball,300,we saw a fireball in the sky while we were eating christmas dinner. +2000-12-25,42.8863889,-78.8786111,Buffalo,NY,formation,180,On 12/25/00 I witnessed a boomarang shaped object traveling quite fast in the sky, it's shape defined only by it's glowing white light +2000-12-25,38.6786111,-121.7722222,Woodland,CA,fireball,420,two fireballs moving swiftly then just hovering in the sky too bright and big and steady for an airplane then disappeared. +2000-12-25,39.5144444,-76.4113889,Fallston,MD,changing,2700,iT IS A VERY BRIGHT WHITE, BRIGHTER THAN ANY STAR, AND IT has LONG PROBES THAT JUT OUT FROM IT WHICH APPEAR TO HAVE RED LIGHTS ON THE E +2000-12-25,33.7488889,-84.3880556,Atlanta (Dunwoody),GA,light,2,An orange/gold ball of light hovered for a second then shot off at incredible speed directly over I-285 from west to east. +2001-12-25,41.6302778,-87.8538889,Orland Park,IL,rectangle,120,There was a bright hovering object in the midnight sky +2001-12-25,41.0263889,-73.6288889,Greenwich,CT,unknown,300,Christmas Eve lights over Greenwich, CT +2001-12-25,41.5563889,-95.8875,Missouri Valley,IA,other,180,This is the follow-up investigation by Iowa MUFON State Director,Beverly Trout, of a sighting reported to NUFORC on 12/26/2001 at 12:36 +2001-12-25,37.9283333,-79.3194444,Brownsburg,VA,rectangle,180,It was quiet but it moving slowly across the sky. +2002-12-25,38.4277778,-82.4572222,Chesapeake,OH,light,30,green lights changing to blue floor vibrating +2002-12-25,38.6272222,-90.1977778,St. Louis,MO,other,1,Did not see object until after picture was taken and picture downloaded to computer.Picture file being sent is snow barn objec +2002-12-25,43.2813889,-83.5297222,Millington,MI,cone,60,it was big look like a building it was dark 200ft long 50 ft long +2002-12-25,40.6975,-74.2636111,Union,NJ,unknown,60,BOUNCING LIGHTS ON THE DRIVEWAY, AND BRIGHT LIGHTS IN THE SKY +2002-12-25,34.0522222,-118.2427778,Los Angeles,CA,light,3,Blue/green comet like object leaves orange trail +2002-12-25,32.3908333,-110.9658333,Oro Valley,AZ,light,150,It was Christmas at about 9:00am and my mom and dad were taking me to go visit my grandparents when I noticed a row of about 6 lights I +2002-12-25,42.1083333,-91.285,Anamosa,IA,light,10,small version of Orion's Belt. +2002-12-25,33.4483333,-112.0733333,Phoenix,AZ,light,900,Lights above the Estrella Mountains (Phoenix, AZ) +2003-12-25,61.2180556,-149.9002778,Anchorage,AK,sphere,300,black sphere with bright orange spotlight appears on x-mas eve in Alaska. +2003-12-25,39.6552778,-106.8280556,Eagle,CO,other,2,Shooting star was leaving our atmosphere instead of falling to earth +2003-12-25,35.4602778,-94.7872222,Sallisaw,OK,other,7200,A BRIGHT ORANGE WHITE STEADY LIGHT THAT GETS SMALLER AND BIGGER BUT NEVER FLASHES OR BLINKS. WE SEE IT EVERYNIGHT AND IT LANDS. +2003-12-25,41.3080556,-72.9286111,New Haven,CT,fireball,600,comet in sky? +2003-12-25,39.7683333,-86.1580556,Indianapolis,IN,other,360,Gathering of six objects with pulsating red and white lights, no sound, broke into 2 groups of 3 traveling in different directions. +2003-12-25,41.4825,-73.41,Brookfield,CT,light,3600,Hovering light Christmas Eve over Brookfield Connecticut 2003 +2003-12-25,40.1497222,-77.1286111,Boiling Springs,PA,triangle,900,slow moving light just above tree top level. comes closer and the light goes out. then back on once over mountain +2004-12-25,40.9133333,-77.7786111,Bellefonte,PA,formation,180,Three bright lights flying in a v formation that were following a smaller yellow-white light. +2004-12-25,39.8908333,-75.0733333,Audubon,NJ,unknown,60,Star? Moving Rapidly Across the sky maintaining altitude. +2004-12-25,35.265,-116.0736111,Baker,CA,light,45,Fireball in Desert near Baker, Ca. +2004-12-25,44.0522222,-123.0855556,Eugene,OR,changing,300,After exiting my garage on my way to the car, my eye caught something odd in the night sky. I observed what seemed to be an object with +2004-12-25,40.7266667,-73.6347222,Garden City,NY,light,4,I saw a white light in the sky flare brightly, then dim, then flare again, less brightly, then disappear. +2004-12-25,33.7669444,-118.1883333,Long Beach,CA,triangle,180,On Dec 25th , 2004 I was heading east on stearns going towards cal state long beach on my way home for christmas dinner. As I made a ri +2004-12-25,30.2238889,-92.0197222,Lafayette,LA,fireball,300,CHRISTMAS NIGHT, OBJECT IN SKY GLOWING RED AND ORANGE. +2004-12-25,42.6158333,-70.6625,Gloucester,MA,changing,300,2 triangles split apart to many stars and hovered near Orion. +2005-12-25,42.9958333,-77.6458333,Rush,NY,cigar,15,dull grey craft spotted flying fast and low with no sound then seemed to dissapear +2005-12-25,35.7063889,-81.2188889,Conover,NC,triangle,5,Stealth-like transparent triangular object makes incredible maneuver and disappears +2005-12-25,30.4391667,-97.6197222,Pflugerville,TX,light,15,A brilliant, slow moving light, sped up and disappeared! +2005-12-25,61.2180556,-149.9002778,Anchorage,AK,light,300,ufo was traveling above the clouds, over east Anchorage +2006-12-25,42.7977778,-83.705,Fenton,MI,other,600,Colorful ligts and made of steel. +2006-12-25,36.0397222,-114.9811111,Henderson,NV,sphere,120,shiny spherical object accompanies jet leaving McCarran airport. +2006-12-25,36.0652778,-119.0158333,Porterville,CA,light,300,orange glow that droped what looked like fireworks twice and the fadded away +2006-12-25,43.0522222,-92.9483333,Rockford,IA,circle,900,Dec. 25, 2006 8:45 P.M. Rockford, Iowa A round with blue and red lights slowly moved across the sky. +2006-12-25,30.1586111,-85.6602778,Panama City,FL,oval,15,Black Oval Shaped Halo Moving in the Christmas Night Sky +2007-12-25,40.7758333,-74.6011111,Mendham,NJ,triangle,2400,9 UFO's seen over a hill in Mendham, NJ. 500 Lights On Object0: Yes +2007-12-25,30.4211111,-87.2169444,Pensacola,FL,light,120,Blinking red light +2007-12-25,29.5425,-90.3380556,Cut Off,LA,circle,180,Christmas night, Cut Off, Louisiana had a extra special christmas gift that night. +2007-12-25,41.85,-87.65,Chicago,IL,triangle,10,One large triangular shaped object, seen by two children from an apt building kitchen window facing east, comming from the direction of +2007-12-25,34.1808333,-118.3080556,Burbank,CA,unknown,180,3 incredibly bright amber lights seen over Burbank,CA on Christmas night 2007. +2008-12-25,37.8144444,-82.8072222,Paintsville,KY,fireball,2,red hot fire ball with long tail in kentucky-Christmas2008 +2008-12-25,47.5675,-122.6313889,Bremerton,WA,fireball,60,This was no aircraft +2008-12-25,47.5675,-122.6313889,Bremerton,WA,fireball,10,These were not man made objects!!! +2008-12-25,39.8722222,-75.3375,Woodlyn,PA,circle,3,Thought it was a shooting star but it was way too low to be one +2008-12-25,30.2669444,-97.7427778,Austin,TX,disk,60,over austin flying +2008-12-25,40.0502778,-105.0494444,Erie,CO,circle,120,Bright light has been in the sky for 2 months, noticed it moved position, then it took off. +2008-12-25,27.3361111,-82.5308333,Sarasota,FL,fireball,300,Two light objects sighted flying south off the west coast of Sarasota, FL +2008-12-25,44.4669444,-73.1713889,South Burlington,VT,light,1800,flashing light in sky. ((NUFORC Note: Possible sighting of Sirius? PD)) +2009-12-25,29.5638889,-95.0252778,Seabrook,TX,unknown,5,A rather large yellow laser beam tracked from 20 feet behind my truck over my truck and down the hood. +2009-12-25,46.1469444,-122.9072222,Kelso,WA,sphere,180,Saw an orange object flying low silently from the west going north. Appeared for about 3 minutes then just disappeared. +2009-12-25,32.3475,-97.3863889,Cleburne,TX,triangle,300,Huge, silent aircraft seen under 500 feet Xmas night by trained observer for 4 to 5 minutes +2010-12-25,42.4666667,-70.95,Lynn,MA,unknown,480,5 bright orange lights disappeared in mid air +2010-12-25,42.6555556,-70.6208333,Rockport,MA,unknown,60,Looked like a satelite, blue in color, speed was regular then slowed down, zig zagged changing colors,(don't remember the colors exactl +2010-12-25,47.8108333,-122.3761111,Edmonds,WA,sphere,180,At approximately 7:50pm PST my family and I witness 10 to 12 spherical orange/yellow objects traversing the western sky over Puget Soun +2010-12-25,47.8108333,-122.3761111,Edmonds,WA,light,1200,Likely explanation for 12/25/10 Edmonds WA sighting +2010-12-25,40.8841667,-72.39,Southampton,NY,light,120,Spotted 3 red lights (UFOs) over Southampton, NY +2011-12-25,36.3319444,-94.1183333,Rogers,AR,light,120,Sighting from near Pinnacle Hills Mall in Rogers, Ark.  Four orange lights hovering off to our west, southwest, near Northwest Arkansas +2011-12-25,44.8547222,-93.4705556,Eden Prairie,MN,other,3,Comet-like object flying across sky +2011-12-25,40.5,-111.95,West Jordan,UT,fireball,300,Red Horizontal Lights in the Sky +2011-12-25,39.9283333,-75.2741667,Upper Darby,PA,unknown,27,Orange glowing light unidenified flying object +2011-12-25,37.9175,-76.4725,Heathsville,VA,sphere,30,Silent orange glowing ball seen in sky over heathsville +2011-12-25,44.7133333,-93.4225,Prior Lake,MN,light,240,Two red lights over Prior Lake, MN +2011-12-25,45.5827778,-122.3522222,Washougal,WA,unknown,420,Bright red light with yellow/orange lights fading in and out as if rotating around red light +2011-12-25,38.6635,-90.8184,Defiance,MO,circle,90,Took my dogs out to go to the bathroom, neighbors pointed out 10-15 circular orbs hovering vertically of one another. +2011-12-25,26.2375,-80.125,Pompano Beach,FL,circle,120,LARGE BRIGHT ORANGE OBJECT. ((NUFORC Note: Report from 16ꯠ-hour pilot. PD)) +2011-12-25,40.5,-111.95,West Jordan,UT,light,2400,Bright stationary light above Oquirrh mountains – seen for 30-40 minutes +2011-12-25,35.9605556,-83.9208333,Knoxville,TN,sphere,600,7 orange orbs flew across the sky one at a time in the same path, appeared out of nowhere, and faded away. +2011-12-25,27.4986111,-82.575,Bradenton,FL,triangle,1800,Bright orange triangle shaped lights over Bradenton, Florida +2011-12-25,40.8122222,-73.0788889,Holbrook,NY,light,600,Four Yellow/ golden lights alligned perfectly in the sky. None were moving except for one. +2011-12-25,48.4758333,-122.3241667,Burlington,WA,triangle,600,Triangle fire-like ball over Burlington +2011-12-25,38.3497222,-81.6327778,Charleston,WV,circle,3600,Very bright circular object hovering over the town of Charleston, WV on Xmas night! ((NUFORC Note: Star or planet?? PD)) +2011-12-25,42.1130556,-70.8125,Hanover,MA,circle,3600,More than 30 orange lights in Massachusetts +2011-12-25,26.4611111,-80.0730556,Delray Beach,FL,fireball,600,Wife and I saw 6 flare like objects take off from north and proceed west. ((NUFORC Note: Witness is former USMC. PD)) +2011-12-25,28.565,-81.5863889,Winter Garden,FL,triangle,90,Very Large Triangle shaped object with multiple colored lights. I ran to get my wife and kid they saw the lights but did not see the s +2011-12-25,42.0083333,-91.6438889,Cedar Rapids,IA,fireball,50,I saw a large fireball pass over my house at about 1000 feet --no noise, traveling about 15mph. +2011-12-25,46.5927778,-112.0352778,Helena,MT,fireball,120,Orange ball in the night sky +2011-12-25,27.3361111,-82.5308333,Sarasota,FL,triangle,12,A la 9:15 salgo ala llarda de mi amigo amiral las estrella con su hija y mi amigo estoy localisando el lusero I me percato tres luces r +2011-12-25,41.7344444,-87.7313889,Hometown,IL,unknown,20,High speed white light !!!!!!!!!!!!! +2011-12-25,35.7330556,-81.3413889,Hickory,NC,sphere,120,Red orbs over lake-no sound-spark falls from one to another +2011-12-25,39.6133333,-105.0161111,Littleton,CO,cylinder,30,3 yellowish lights forming a triangle with a bright beam of light pointing down in the center. +2011-12-25,43.4138889,-71.9855556,New London,NH,light,180,3 red dots, form from a triangle into a line, then combine into 1 dot, which contined moving east. +2011-12-25,40.6836111,-73.5105556,Wantagh,NY,fireball,60,Four orange lights +2012-12-25,27.495,-82.7111111,Holmes Beach,FL,circle,120,White blinking light over Gulf of Mexico - not moving for a long period of time. +2012-12-25,26.7052778,-80.0366667,West Palm Beach,FL,light,600,Red lights over west palm beach 12/25/12 +2012-12-25,28.8002778,-81.2733333,Sanford,FL,light,60,2 orange lights disappearing in the air +2012-12-25,40.095,-75.6172222,Chester Springs,PA,disk,7200,2 UFOs sighted in Chester Springs, PA Christmas Day 2012 +2012-12-25,26.0108333,-80.1497222,Hollywood,FL,fireball,120,Misterious ball of fire and smoke over Hollywood FL on 12-25-2012 @ 13:33 +2012-12-25,64.8377778,-147.7163889,Fairbanks,AK,oval,120,2 oval shaped bright reddish with yellow to white leading light fire balls in sky over fairbanks. +2012-12-25,43.4802778,-72.3852778,Windsor,VT,formation,300,V shared orange/firey formation +2012-12-25,38.7933333,-77.2719444,Burke,VA,sphere,180,Bright orange spheres hovering and moving. +2012-12-25,38.7933333,-77.2719444,Burke,VA,sphere,180,Was driving, thought it was glare, so rolled down the window. Got out, observed for a bit, then found the other people and asked them i +2012-12-25,30.2394444,-81.3858333,Ponte Vedra Beach,FL,cylinder,30,8 green/white objects flying over ponte vedra beach, fl. +2012-12-25,26.4611111,-80.0730556,Delray Beach,FL,fireball,300,Solid orange glow that got bigger and blurry when falling then rose, got smaller and headed North East. +2012-12-25,34.3916667,-118.5416667,Santa Clarita,CA,fireball,180,A yellow/orange fireball/orb like object hovering then dissapearing about 20 stories high of the ground in Santa Clarita, California. +2012-12-25,45.3869444,-92.7475,Shafer,MN,light,300,Dozens of orange-red lights in northeast sky. +2012-12-25,44.9430556,-123.0338889,Salem,OR,oval,420,7 glowing &quot;orbs&quot; floating from W. Salem OR from the west headed north. Stopping mid flight then up into the clouds. +2012-12-25,42.3683333,-83.3527778,Livonia,MI,sphere,720,Ten spheres flying in a line from north to south in the western sky. +2012-12-25,41.6833333,-86.25,South Bend,IN,unknown,40,Two orange objects set apart in the sky more than four moons apart moved in tandem then one disappeared shortly followed by the other. +2012-12-25,42.9783333,-78.8,Amherst,NY,light,180,Silent orange lights, initially traveling horizontally, and then rose vertically till they disappeared. +2012-12-25,27.13,-80.8938889,Buckhead Ridge (Okeechobee),FL,light,360,Bright diamond light over lake Okeechobee followed by double sonic boom +2012-12-25,44.8011111,-68.7783333,Bangor,ME,fireball,900,Five yellow/orange orbs flying across sky at low altitude over 15 minute period seen by 5 people. +2012-12-25,40.2736111,-76.8847222,Harrisburg,PA,circle,3,Large bright light shooting across the sky in a high to low trajectory. I believe it was too large to be a shooting star. +2012-12-25,41.7694444,-71.1291667,Somerset,MA,light,300,Unusual orange lights. +2012-12-25,38.9338889,-76.8969444,Landover,MD,light,25,Five witnesses in the car saw 5 orange lights traveling together side by side. +2012-12-25,41.6080556,-74.2994444,Pine Bush,NY,formation,60,Y shaped formation of red lights on 302 in Pine Bush NY christmas night 2012. +2012-12-25,30.3341667,-81.3988889,Atlantic Beach,FL,sphere,720,Red fireballs, not like flares, moving straight north; 12 objects in a single line path over 12 minutes. +2012-12-25,40.0891667,-75.3963889,King Of Prussia,PA,oval,1200,Three oval shaped objects in the sky around the King of Prussia, PA area on I-76. +2012-12-25,41.6080556,-74.2994444,Pine Bush,NY,circle,900,Orange orbs seen flying across the sky on Dec.25, 2012 in Pine Bush, N.Y. +2012-12-25,28.5152778,-82.5730556,Weeki Wachee,FL,fireball,240,Three orange lights flying silently. +2012-12-25,40.8716667,-111.8913889,Woods Cross,UT,disk,1425,Disc, white lights, triangle moving pattern. +2013-12-25,34.0522222,-118.2427778,Los Angeles,CA,unknown,600,Irregular flashing light near the star Betelgeuse in Orion, slowly moving in various directions. +2013-12-25,38.7316667,-82.9977778,Portsmouth,OH,light,300,3 Orange/red Orbs in the sky early morning Christmas Day 2013 in Portsmouth, Ohio. +2013-12-25,25.7738889,-80.1938889,Miami,FL,fireball,30,Two red orange flying orbs seen at about 1am in Miami on 12/25/2013. +2013-12-25,38.6272222,-90.1977778,St. Louis,MO,triangle,300,Triangular craft with solid red, blue and green lights at the corners and a bright white light in the middle over hwy 40 and 170 +2013-12-25,40.0377778,-76.3058333,Lancaster,PA,light,900,Bright orange light with I pointy front no sound no flashing lights. +2013-12-25,26.9758333,-82.0908333,Port Charlotte,FL,sphere,60,Red sphere in SW Florida Sky. +2013-12-25,45.9266667,-116.1213889,Grangeville,ID,sphere,30,7-8 orange orbs moving in the southwest sky. +2013-12-25,39.6291667,-75.6586111,Bear,DE,circle,300,Orange light somewhat bright. Moing slower than airplane two together went backin house to check on I pone app. Not a planet or star . +2013-12-25,40.4330556,-74.2,Keyport,NJ,other,300,Rotating lights. +2013-12-25,26.2708333,-80.2708333,Coral Springs,FL,light,600,Saw 3 orange lights hovering over broward county FL at 10:25pm Christmas eve. +2013-12-25,38.3030556,-77.4608333,Fredericksburg,VA,egg,120,Bright orange object in the night sky over Fredericksburg, VA. +2013-12-25,37.3394444,-121.8938889,San Jose,CA,light,300,White point of light. +2013-12-25,43.9680556,-88.9433333,Berlin,WI,fireball,900,On christmas day at 5:10 pm I went out for a cigarette and happen to look to the south direction when I noticed an orange light moving +2013-12-25,34.1577778,-118.6375,Calabasas,CA,circle,900,The brightest light I've ever seen sat in the north western sky and appeared to set as the sun would. I have no idea what that was but +2013-12-25,38.8338889,-104.8208333,Colorado Springs,CO,triangle,120,I saw 3 red or orange sphere shaped lights aligned in a triangle like shape there were very low so I knew it wasn't a airplane and it w +2013-12-25,28.8002778,-81.2733333,Sanford,FL,fireball,300,My wife and I saw a large fireball in sky on Christmas day just west of Sanford Florida over the Rock Springs run state preserve. +2013-12-25,38.2319444,-81.5377778,Belle,WV,triangle,5,Something in the sky in Belle, WV. +2013-12-25,43.2547222,-73.0991667,Dorset,VT,light,300,Husband and wife witness approximately 7 red-orange orbs over route 7. +2013-12-25,40.5,-111.95,West Jordan,UT,light,60,2 orange lights in sky over Utah. +2013-12-25,37.6688889,-122.0797222,Hayward,CA,light,120,High flying craft, multicolor with immediate impossible direction change. +2013-12-25,40.3977778,-105.0744444,Loveland,CO,oval,600,Orange lights in the sky over Loveland, CO. +2013-12-25,33.0580556,-112.0469444,Maricopa (City Of),AZ,light,300,Two orange balls of light from Phoenix Area. +2013-12-25,39.9080556,-85.9227778,Mccordsville,IN,sphere,300,Several illuminated spheres moving with the air currents from west to east across the sky. +2013-12-25,35.7883333,-83.5544444,Pigeon Forge,TN,oval,300,Balls of fire. +2013-12-25,38.4016667,-122.3597222,Yountville,CA,triangle,120,Long bright red triangle. +2013-12-25,37.5058333,-77.6494444,Midlothian,VA,triangle,180,Three red rights shaped like a triangle. +2013-12-25,28.5380556,-81.3794444,Orlando,FL,fireball,300,Very bright fire ball visible moving from north to south at approximately 300 feet above the ground. +2013-12-25,28.5380556,-81.3794444,Orlando,FL,light,600,Three individual red lights flying over East Orlando. +2013-12-25,42.0027778,-71.5152778,Woonsocket,RI,fireball,180,3 orange fireballs. +2013-12-25,38.5816667,-121.4933333,Sacramento,CA,fireball,120,Red/Orange Fireballs in the Sky. +2013-12-25,26.1,-80.4,Weston,FL,circle,90,Circular flashing orb in red crossing sky in about a minute of clear site. Never seen anything like it! +2013-12-25,33.6602778,-117.9983333,Huntington Beach,CA,light,600,Five strange red lights moved silently over Orange County on 12/25/13 at around 8:40 p.m.. +2013-12-25,26.9758333,-82.0908333,Port Charlotte,FL,sphere,40,Bright reddish-orange sphere in southern night sky. +2013-12-25,40.8538889,-74.8294444,Hackettstown,NJ,light,300,3 orange lights in sky. +2013-12-25,28.2713889,-82.7197222,Port Richey,FL,light,600,Red light or ball at low altitude moving at the speed of a helicopter but with no sound whatsoever. +2013-12-25,35.0844444,-106.6505556,Albuquerque,NM,cone,3000,Bright cone with rings spinning around it, hovering for 50 minutes. +2013-12-25,35.2427778,-81.0375,Belmont,NC,light,120,Four bright orange lights traveling in a fixed pattern across the sky in a north west direction followed by another single light with n +2013-12-25,39.7091667,-84.0633333,Beavercreek,OH,cone,120,Four lights above intersection of Interstate 675 and State Route 35 tonight. Could not tell the altitude, but they appeared to be less +2013-12-25,44.9444444,-93.0930556,Saint Paul,MN,light,35,Red and Green light bars seen at low elevation. +2013-12-25,42.0372222,-88.2811111,Elgin,IL,cylinder,180,A cylinder shaped object with a reddish glow and yellow fireball clusters moves slowly across the sky. +2013-12-25,38.5816667,-121.4933333,Sacramento,CA,triangle,120,3 red lights over Sacramento. +2013-12-26,44.7319444,-93.2175,Apple Valley,MN,circle,30,4 flying orange bright ball shape objects that I filmed at night. I have never seen anything like it before. +1961-12-26,33.5330556,-97.5563889,Forestburg,TX,sphere,120,Round brilliant white object hovered and then slowly descended behind a hill in a remote area without making a noise. +1997-12-26,33.1433333,-84.7419444,Primrose,GA,light,86400,SINGLE WHITE LIGHT JUMPING AROUND IN WEST SKIES OVER GEORGIA, STAYING IN A SMALL AREA. +1997-12-26,33.5772222,-96.1780556,Bonham,TX,unknown,180,Red object moving west to east, person looking southward. Appear as large as airplanes approaching Dallas/Ft.Worth airport but travel +1997-12-26,38.6369444,-77.3113889,Dale City (Interstate 95),VA,triangle,45,3, medium blue, grapefruit-sized lights in a triangular formation in the sky. It moved rapidly a short distance and then stopped in th +1998-12-26,61.3213889,-149.5677778,Eagle River,AK,oval,900,Girlfriend and I, were driving down a remote road, and we wittnessed a oval shaped craft land on top of a mountain. It was a very clea +1998-12-26,37.6391667,-120.9958333,Modesto,CA,rectangle,30,On Saturday night 2 other persons and myself observed 4 primary targets in a parallel formation, traveling in the eastern horizon at ab +1999-12-26,40.625,-76.0608333,Deer Lake,PA,light,7200,4 Unidentified AirCraft , 1 blinking a bright red , 3 others blinking a blueish green in a quad formation +1999-12-26,38.4191667,-82.4452778,Huntington,WV,unknown,15,At ~6:45 a.m. on 12-26-99, I watches a football shaped light approached from the S/West and travel N/East,it remained as constant starl +1999-12-26,39.535,-119.7516667,Sparks,NV,triangle,360,It was triangular in shape, two sides were bright orange the color of the sun, but the bottom and inside was transparent. +1999-12-26,45.6388889,-122.6602778,Vancouver,WA,unknown,15,Fast flying lighted object from North to South, lights dimmed, then went out and object was then not perceivable. +1999-12-26,37.2152778,-93.2980556,Springfield (South Of),MO,light,40,Crew of B757 at FL330 passed on south side by white light making at least 200 knots more than we were. We were at .80 Mach and G/S of +1999-12-26,26.3583333,-80.0833333,Boca Raton,FL,light,2700,it all started when my neighborwas trying out his new telescope.as we were waiting for him to locate a star so we could check it out,my +1999-12-26,29.9544444,-90.075,New Orleans,LA,light,20,ufo streaked across the sky, like to know what we saw. +1999-12-26,40.7266667,-115.585,Spring Creek,NV,unknown,10800,Almost looked like a colorful lightning bolt traveling up and down, side to side- never losing it's lined shape +1999-12-26,45.5236111,-122.675,Portland,OR,unknown,120,Fast moving object with multicolored lights crossing east to west. +1999-12-26,32.7152778,-117.1563889,San Diego,CA,triangle,10,Three lights in a triangular formation,one at the "nose",one at each "wing tip" flying very fast directly overhead from the north east +2000-12-26,43.0794444,-72.4263889,Walpole,NH,fireball,5,Neon green fireballs over Cheshire County, New Hampshire. +2000-12-26,43.0794444,-72.4263889,Walpole,NH,fireball,5,Neon green fireballs streak across southwestern New Hampshire skies. +2000-12-26,44.1119444,-72.8563889,Warren,VT,fireball,5,meteor like object flashes upon impact with earth +2000-12-26,39.8877778,-75.3086111,Prospect Park,PA,oval,45,PROSPECT PARK PA OVAL LIGHTS APPEAR ABOVE +2001-12-26,40.9252778,-73.0477778,Port Jefferson Station,NY,unknown,7,Dark object at very low altitude traveling at a high rate of speed with no sound. +2001-12-26,36.1658333,-86.7844444,Nashville,TN,triangle,300,Triangular Craft seen in Nashville Tennessee +2001-12-26,21.3069444,-157.8583333,Honolulu,HI,other,15,Slow moving 'star' flys across Honolulu skyline. +2001-12-26,40.9252778,-73.0477778,Port Jefferson Station,NY,sphere,6,I was heading out to my van for some more tools, {contractor by trade} I heard to helicopter flying overhead about two or three o'clock +2001-12-26,30.3880556,-95.6961111,Montgomery,TX,triangle,15,hello Sir/Mam, On the night of 12/26/01 (the night after x-mas) @ 11:53 zulu . Let me tell you a little about myself, I grew up on mil +2002-12-26,32.7252778,-97.3205556,Fort Worth,TX,light,900,Around Carswell AFB Ft. Worth, TX,,red lights in the sky,,video taped them +2003-12-26,38.7072222,-121.28,Citrus Heights,CA,unknown,240,Orange Triangle or Orange flames? +2003-12-26,43.9747222,-75.9111111,Watertown,NY,formation,420,Five Objects Seen in Sky over Watertown, New York +2003-12-26,39.7091667,-84.0633333,Beavercreek,OH,changing,1800,We saw 3 extremely bright objects that left contrails straight out of the sky then suspended in place and shifted positions +2003-12-26,39.7091667,-84.0633333,Beavercreek,OH,disk,1800,Saucer rims were seen near Beavercreek, Ohio on December 26, 2003 +2003-12-26,42.0502778,-90.4138889,Preston,IA,oval,900,Blue oval shaped transparent light w/o an apparent source with red lights flashing around it. +2003-12-26,38.3397222,-122.7,Rohnert Park,CA,light,3600,A light dancing and shooting in the sky , lots of diferent fast movements, changing in diameter. +2003-12-26,26.5625,-81.9497222,Cape Coral,FL,circle,2,second (more recent) sighting of bright star like object moving at impossible speed +2003-12-26,38.0194444,-122.1330556,Martinez,CA,sphere,300,2 orange colored lights moving thru the sky at a great distance. A smaller blue light moved away from the two. +2003-12-26,37.0058333,-121.5672222,Gilroy,CA,fireball,600,In the northeast sky while star gazing, myself and two buddies overlooked a bright orange light which we first assumed was jupiter. F +2004-12-26,28.5997222,-81.3394444,Winter Park,FL,changing,2187,3 Multi colored objects hovored over my calm lake... +2004-12-26,34.7694444,-92.2669444,North Little Rock,AR,other,7200,I remember being dropped off into my house. I was so exhausted when I "fell" into my bed. +2004-12-26,27.3361111,-82.5308333,Sarasota,FL,cylinder,240,Two silver white cylinders moving way to fast for a blimp +2004-12-26,43.8441667,-88.96,Green Lake,WI,light,37800,Very bright object low in the evening sky that seemed to spin while emitting light in many different colors. +2004-12-26,41.176944399999996,-75.4183333,Tobyhanna,PA,light,5,Red light in the Sky +2005-12-26,46.7163889,-122.9530556,Centralia,WA,oval,180,Sighted what appeared to be two meteors entering the atmosphere and another object of unkown origin. +2005-12-26,44.3097222,-73.2613889,Charlotte,VT,unknown,60,Stationary large bright yellowish light with orange flickering lights. Lights in a triangle pattern. +2006-12-26,41.0936111,-89.8647222,Toulon,IL,flash,300,A white light pulsing at a 2 second interval in illinois. +2006-12-26,28.5380556,-81.3794444,Orlando,FL,rectangle,15,Rectangular object in the sky above Orlando, Florida. +2006-12-26,35.7719444,-78.6388889,Raleigh,NC,changing,10,Daylight sighting of a star-shaped object +2006-12-26,37.1041667,-113.5833333,St. George,UT,fireball,5,A UFO was sighted by two people in St. George on 12/26/06 +2006-12-26,30.2238889,-92.0197222,Lafayette,LA,triangle,5,Dark fast-moving triangular object +2006-12-26,35.4675,-97.5161111,Oklahoma City,OK,flash,120,A bright white light flashed in the sky, and a dark object flew away from where the light source had been. +2007-12-26,42.4391667,-123.3272222,Grants Pass,OR,light,420,Light in South eastern sky. Looked like a VERY Bright star. Very Bright for 2 minutes then dims and disappears. Stays dark for several +2007-12-26,36.8252778,-119.7019444,Clovis,CA,other,10,Very dim round light moving fast +2007-12-26,33.6694444,-117.8222222,Irvine,CA,other,180,Ring of Blue Lights that moved similar to a jelly fish seen from 405 Freeway in South Orange County California. +2008-12-26,38.9541667,-119.7647222,Minden,NV,changing,300,A strange orange light big enough to be enough to be plane moved across the sky but soon stopped and soon phased out +2008-12-26,28.0219444,-81.7330556,Winter Haven,FL,circle,1800,flickers multiple, bright colors not moving +2009-12-26,33.9533333,-117.3952778,Riverside,CA,formation,180,Orange balls of light over Riverside, California. +2009-12-26,29.5438889,-98.9227778,Mico,TX,formation,900,Formation around cloud over lake that disappeared and emitted small bright light. +2009-12-26,39.5297222,-119.8127778,Reno,NV,unknown,2,Faint object seen shooting over Cold Springs Valley in Reno, Nevada +2009-12-26,47.2530556,-122.4430556,Tacoma,WA,light,900,3 bright lights in triangle pattern hovering in sky +2009-12-26,45.6388889,-122.6602778,Vancouver,WA,light,20,brilliant light not a star +2009-12-26,60.7922222,-161.7558333,Bethel,AK,disk,90,Large fireball-like red/orange disc low in the sky and moving slowly right to left. Soundless. Clear night. +2010-12-26,26.1219444,-80.1436111,Fort Lauderdale,FL,other,5,Some kind of sonic boom followed by rumble. +2010-12-26,37.8044444,-122.2697222,Oakland,CA,fireball,45,Fireball in Oakland California +2010-12-26,32.7266667,-113.7544444,Mohawk,AZ,cylinder,3000,Bright stationary object in sky north of Mohawk, AZ +2010-12-26,36.7477778,-119.7713889,Fresno,CA,sphere,15,Myself and three others viewed a blue orb like sphere stream across the sky. +2010-12-26,39.5297222,-119.8127778,Reno,NV,circle,5,12/26/2010 17:08 Reno Nevada circle 5 seconds moved across sky from west to east +2010-12-26,33.8352778,-117.9136111,Anaheim,CA,triangle,5,three lighted triangular object +2011-12-26,39.0286111,-96.8311111,Junction City,KS,diamond,180,Big red lights flying low +2011-12-26,28.555,-82.3880556,Brooksville,FL,changing,900,Multi Colored/Shape Shifting Bright lighted UFO sighting on 12/26/11 in Brooksville , FL +2011-12-26,47.6063889,-122.3308333,Seattle,WA,fireball,180,3 orange orbs or fireballs fly in formation over Seattle (Capitol Hill/Madison Valley) on December 26, 2011 at around 2:17 AM. +2011-12-26,42.6525,-73.7566667,Albany,NY,oval,3,Brightly reflecting oval shape drew my attention when I stepped outside around 3:30 pm this afternoon in Albany, New York +2011-12-26,29.7630556,-95.3630556,Houston,TX,light,30,Stationary white light hovering in southwest region of Houston, Texas. +2011-12-26,26.1416667,-81.795,Naples (About 70 Miles East Of),FL,diamond,30,Diamond-square shape hovering over I75 in Florida, tips illuminating blue! +2011-12-26,34.1722222,-118.3780556,North Hollywood,CA,light,120,Bright flashing red light moving south in sky +2011-12-26,43.8736111,-116.4983333,Emmett,ID,light,180,4 red/orange lights moving towards the next in line upwards untill all disappearing one at a time +2011-12-26,39.6927778,-77.745,Maugansville,MD,formation,60,While walking my dog, I noticed several orange/red lights in the sky. The number is an approximate guess as a row of townhouses was i +2011-12-26,43.3772222,-73.6136111,Queensbury,NY,circle,180,2 red flying circles fade away and reappear +2011-12-26,42.8863889,-78.8786111,Buffalo,NY,formation,10,Four dimly lit triangular objects whistle as they pass low over Buffalo, NY +2011-12-26,35.7452778,-81.685,Morganton,NC,circle,300,4 Red and orange pulsating circle objects slowly ascending till disapear. +2011-12-26,42.4605556,-83.6516667,South Lyon,MI,triangle,15,Big Iso-triangular craft 3 bright white lights tight up front, flashing center red, several bright whites in a row in back, slight hum +2012-12-26,43.8338889,-87.82,Howards Grove,WI,fireball,480,8 witnesss, soundless, constant speed/velocity, redish orange in color, 8-10 balls, about 800-1000ft up in the sky. +2012-12-26,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,1200,Disc shaped UFO sighted in New York. +2012-12-26,44.4375,-73.0686111,Williston,VT,other,120,Hovered very close to the ground for about a minute then disappeared. +2012-12-26,45.5947222,-121.1775,The Dalles,OR,other,600,((HOAX??)) Whirring black object off our front porch. +2012-12-26,41.995,-88.1855556,Bartlett,IL,fireball,300,Slow moving amber colored ball meets up with others and disappears. +2012-12-26,35.0988889,-120.6113889,Oceano,CA,rectangle,5,Huge rectangle crossed the sky. +2013-12-26,32.8786111,-82.4738889,Bartow County (Hwy 20; Near Wilderness Camp Rd.),GA,circle,60,Ultra bright bluish circle hovered then shot to the ground on north side of Lake Allatoona. +2013-12-26,38.6272222,-90.1977778,St. Louis,MO,circle,15,Let my dog outside, when trying to get dog back inside Green object with blinking green light and white lite did nose dive and then van +2013-12-26,34.7463889,-92.2894444,Little Rock,AR,cigar,180,Large white cigar shaped ufo. +2013-12-26,33.2558333,-116.3741667,Borrego Springs (Near),CA,sphere,20,Sun glare reveals craft. +2013-12-26,47.1855556,-122.2916667,Puyallup,WA,other,180,4 bright objects in the sky above downtown puyallup. +2013-12-26,38.8105556,-90.6997222,O'fallon,MO,cigar,45,bright green light traveling high speed south west sky. +2013-12-26,39.1836111,-96.5713889,Manhattan,KS,fireball,4,North bound fireball in Thursday evening twilight sky. +2013-12-26,38.7838889,-90.4811111,St. Charles,MO,oval,10,Neon UFO Decent. +2013-12-26,38.9516667,-92.3338889,Columbia,MO,light,45,Falling light with flames/color surrounding it. +2013-12-26,34.0752778,-84.2941667,Alpharetta,GA,circle,1200,Four orange circular objects with triangle and lights at the top. +2013-12-26,39.0916667,-104.8722222,Monument,CO,fireball,780,Fireball-like objects over Monument, Colorado. +2013-12-26,61.2180556,-149.9002778,Anchorage,AK,unknown,300,Orange light in sky approaching from southeast. Steady trajectory. +2013-12-26,41.1383333,-81.8638889,Medina,OH,changing,8,Four lights in square shape moving quickly formed into a straight line and disappeared. +2013-12-26,39.9611111,-82.9988889,Columbus,OH,fireball,180,5 balls of fire in the sky flying in formation. +2013-12-26,40.9252778,-74.2769444,Wayne,NJ,triangle,20,3 Lights rotating fixed to each other that split up and flew off fast. +2013-12-26,34.0522222,-118.2427778,Los Angeles,CA,cigar,1,Green short line falling down really fast in night sky. +2013-12-26,40.66,-111.9955556,Kearns,UT,circle,120,Two circular objects red/orange above SLC moving north bound 9:25pm thursday 12-26-13. +2013-12-26,26.525,-80.0666667,Boynton Beach,FL,circle,90,While walking Westbound I saw a large bright orange round object at roof top level moving upward at about a 60° angel in a south by sou +2013-12-26,30.4063889,-87.6836111,Foley,AL,diamond,300,Lights flying east in formation non recognized light displayed, flashing red greens with one steady burn white light leading, nostrobs +2013-12-26,34.3113889,-89.9441667,Batesville,MS,unknown,600,Mysterious Lights seen over field; Caught on Video. +2013-12-26,39.1625,-76.625,Glen Burnie,MD,circle,180,I saw a round, orb-shaped object last night. It was dark, with stars out last night, clear sky. It had a lot of red flashing lights. +2013-12-26,33.8958333,-118.2191667,Compton,CA,fireball,90,1 Bright Orange Fireball Looking Sphere In The Night Sky. +1986-12-27,40.4405556,-79.9961111,Pittsburgh,PA,triangle,900,It was trianbular in shape. It was in Plum Boro Pennsylvania. Not really a ufo hot spot. I hovered there until we left after 15 minutes +1997-12-27,47.6588889,-117.425,Spokane,WA,light,7200,ultra-violet sphere hovered two hours no sound 200 yd.s away 100Ft in air +1998-12-27,43.0238889,-70.9141667,Stratham,NH,rectangle,30,I saw a rectangular shape in the sky. One blueish light in the center, one "pearl" colored light at each end. No lights were flashing b +1998-12-27,41.7688889,-87.8577778,Hodgkins,IL,light,300,Several co-workers and I were at work by the quarry in Hodgkins, IL and saw something in the sky. +1999-12-27,43.2344444,-70.81,South Berwick,ME,light,1800,Object with a white and red light appeared to be "dancing" in the sky. At times it would make quick moves up/down and diagonally, and +1999-12-27,25.8572222,-80.2783333,Hialeah,FL,other,350,I WAS WALKING TOWARD MY COMPANY TRUCK, WHEN I HAPPEN TO LOOK UP AT THE HORIZON. WHAT I SAW LOOKED LIKE A JETS VAPOR TRAIL BUT MORE COND +1999-12-27,39.5297222,-119.8127778,Reno,NV,sphere,240,Sphere with Spikes +1999-12-27,44.9430556,-123.0338889,Salem,OR,diamond,7200,Standing in my kitchen window I noticed a multi colored light flashing in the Southeast about 3 or 4 miles up. Shaped as a diamond and +2000-12-27,34.3541667,-119.0583333,Santa Paula,CA,light,30,I observed a light move across the sky traveling northeast, at a very high rate of speed. I am possitive it was not a satelite or meteo +2000-12-27,43.5008333,-70.4433333,Saco,ME,triangle,180,It was hudge and had 7 lights on its under side and one big one in the front of it, there was no tail to this craft !!!!!! +2001-12-27,44.7736111,-85.4038889,Williamsburg,MI,triangle,40,Completely focused on the object I coudnt figure out what it was. +2002-12-27,44.9741667,-93.5063889,Wayzata,MN,light,900,A small lights that moved fast and vanished in to the sky. +2002-12-27,29.1894444,-98.8622222,Natalia,TX,other,600,A bank of 2 rows of lights hangs in the night sky just above town for a witnessed ten minutes +2002-12-27,38.6411111,-75.6113889,Seaford,DE,unknown,300,Strange lights in the sky +2002-12-27,33.4483333,-112.0733333,Phoenix,AZ,chevron,60,Nine bright white lights forming a chevron +2002-12-27,37.5155556,-92.1388889,Roby,MO,flash,600,Dancing Lights.... +2003-12-27,43.1863889,-77.8041667,Spencerport,NY,triangle,600,Triangle figure with 3 bright lights flying low at almost 6AM +2003-12-27,33.6888889,-78.8869444,Myrtle Beach,SC,disk,600,Two circular object with morphing interchangeable colors, definetly discs,emanating blue green light. +2003-12-27,34.3697222,-83.2352778,Carnesville,GA,circle,180,20+ circular objects seen over Georgia +2003-12-27,34.1283333,-117.2077778,Highland,CA,triangle,155,I had just gotten home from HXXX DXXXX and was pulling stuff out of my truck when something cought my eye. At first I thought it was ba +2003-12-27,40.31,-75.1302778,Doylestown,PA,fireball,3600,looking to my west towards a setting sun, I saw a large fireball leaving a wide trail of white smoke. It was moving slowly, easy to see +2003-12-27,34.0027778,-84.1447222,Duluth,GA,fireball,1800,Very bright red fireball with a long tail, seemed to change to disc depending on angle sited. +2003-12-27,36.2063889,-81.0038889,Roaring River,NC,oval,1200,Large object seen in the air joined by other objects. +2003-12-27,42.1816667,-88.3302778,Lake In The Hills,IL,light,2,Flashes of light +2003-12-27,42.5277778,-70.9291667,Peabody,MA,light,600,Bright object disappears. +2003-12-27,21.3069444,-157.8583333,Honolulu,HI,sphere,300,The object was a slightly illuminated brownish/orange sphere, barely visible in the night sky. +2003-12-27,38.8794444,-82.9969444,Lucasville,OH,unknown,3600,MUFON/OHIO REPORT: The unknown obj hovered in the vic of the Portsmouth Reg Airport for 90 min.. +2003-12-27,38.8794444,-82.9969444,Lucasville,OH,unknown,3600,The unknown object hovered in the vicinity of the Portsmouth Regional Airport for a hour to a hour and half. It had blue, red, and whi +2003-12-27,40.9252778,-74.2769444,Wayne,NJ,cone,2400,Brightly colored cone shaped object +2004-12-27,44.0583333,-121.3141667,Bend,OR,triangle,30,I am an employee of the Oregon Dept. of Transportation. I possess a Bachelor of Science degree with minors in Speech Communication and +2004-12-27,38.6591667,-87.1727778,Washington,IN,other,30300,Strange Day of Sightings +2004-12-27,27.4952778,-81.4411111,Sebring,FL,circle,30,Bright white light appeared in clear blue sky for about 30 seconds around 9 A.M. +2004-12-27,47.4236111,-120.3091667,Wenatchee,WA,chevron,240,bright lights forming a giant chevron formation +2005-12-27,38.5816667,-121.4933333,Sacramento,CA,teardrop,15,Strange light in the shape of a teardrop, slightly orange in color +2005-12-27,38.8461111,-77.3066667,Fairfax,VA,sphere,12,A Neonish Red Sphere Appeared in the Night Sky +2005-12-27,39.2402778,-76.8397222,Columbia,MD,unknown,2,Small reflection moving at 45 degree angle. +2005-12-27,34.8897222,-82.9766667,Salem,SC,triangle,3600,Five lights created a triangular shape that darted and bounced around for about one hour. +2005-12-27,41.88,-88.0077778,Lombard,IL,unknown,60,3 Lights stopped and turned on a level plane +2005-12-27,39.1836111,-96.5713889,Manhattan,KS,cross,180,Long shaft, two glowing at the base, green tractor beam from Star Trek. Viewed from Chrysler Sebring in Manhattan. +2005-12-27,33.0197222,-96.6986111,Plano,TX,sphere,3,BRIGHT LIGHT FALLING FAST TOWARDS THE GROUND +2005-12-27,26.625,-81.625,Lehigh Acres,FL,triangle,15,Question over what i saw. +2005-12-27,35.0875,-84.0347222,Murphy,NC,light,30,One star appeared to get larger in diameter and was coming straight down. +2006-12-27,35.8938889,-80.5616667,Mocksville,NC,circle,120,Bright white object seen with one bright white missile-like object shooting out from the bottom +2006-12-27,32.7152778,-117.1563889,San Diego,CA,light,600,Exploding light in San Diego! +2006-12-27,38.4222222,-83.7338889,Flemingsburg,KY,diamond,300,Diamond-shaped craft/configuration of lights transforms into rectangular low-flying lights +2006-12-27,37.5536111,-77.4605556,Richmond,VA,unknown,1,UFO looses cloak while traveling. +2006-12-27,32.4580556,-83.7316667,Perry,GA,egg,900,Unusual objects moving parallel to I-75 +2006-12-27,37.1041667,-113.5833333,St. George,UT,fireball,7,the object moved at speed from one place to enother,then stop exploited with green light +2006-12-27,33.6083333,-117.7444444,Aliso Viejo,CA,circle,120,round object hovering over city with upper and lower row of lights +2006-12-27,32.9536111,-96.89,Carrollton,TX,triangle,1085,Large group high flying lights +2007-12-27,32.9125,-96.6386111,Garland,TX,disk,600,Dark Gray smokey shaped saucer above the highway +2007-12-27,33.4483333,-112.0733333,Phoenix,AZ,rectangle,2880,Shape shifting black object at sunset hovering south east in sky +2008-12-27,34.0522222,-118.2427778,Los Angeles,CA,sphere,1800,Star/sphere like object moving back and forth. +2008-12-27,33.9533333,-117.3952778,Riverside,CA,formation,300,Oval object with 5 or 6 smaller spheres +2008-12-27,45.5608333,-94.1622222,St. Cloud,MN,triangle,3600,((HOAX)) triangle in the sky 12/27/08 800pm just south of st cloud betwen I94 and 75 +2008-12-27,33.5225,-117.7066667,Laguna Niguel,CA,triangle,45,triangle vertical +2008-12-27,28.5555556,-82.4505556,Spring Hill,FL,cigar,2,ufo over springhill florida +2008-12-27,33.6125,-117.7119444,Laguna Hills,CA,diamond,180,fast, unusual light movement +2008-12-27,26.3583333,-80.0833333,Boca Raton,FL,formation,10,Soundless rectangular object with many light glides quickly across the night sky +2008-12-27,33.94,-118.1316667,Downey,CA,other,2,Funny shooting star. +2008-12-27,38.7072222,-77.0233333,Fort Washington,MD,disk,1200,Twinkling multicolor "star" that moved across the sky after being idle for over 10 minutes or more +2009-12-27,39.8744444,-76.8661111,Spring Grove,PA,rectangle,300,Sighting in Spring Grove PA -Revised +2009-12-27,39.8744444,-76.8661111,Spring Grove,PA,rectangle,45,My dog awaken me at 5:45am in the morning, as I was getting out bed I glanced outside the window and seen an object moving across the s +2009-12-27,26.0027778,-80.2241667,Pembroke Pines,FL,light,60,Craft shoots across evening sky on edge of the Everglades +2010-12-27,34.0522222,-118.2427778,Los Angeles,CA,other,1200,looked like a jelly fish tumbling foward with yellow,red,blue lights in sequence then turned green edges clear. +2010-12-27,33.2441667,-86.8163889,Alabaster,AL,circle,1800,2 ufo's seen over mall in Alabaster, Alabama +2010-12-27,34.09,-117.8894444,West Covina,CA,sphere,120,Oblong shaped UFO with glowing underbelly sighted over Los Angeles area – no explanation. +2010-12-27,37.5483333,-121.9875,Fremont,CA,triangle,1200,UFO was observed as a triangle shaped object with a glowing green light below, Craft lowered to 1000 feet, hovered w/ no sound . +2010-12-27,32.2216667,-110.9258333,Tucson,AZ,other,120,Bright orange solid lights hanging stationary over city. +2011-12-27,38.4405556,-122.7133333,Santa Rosa,CA,circle,20,Two orange globes rising straight up in the sky next to one another +2011-12-27,38.3697222,-90.3783333,Imperial,MO,fireball,15,Saw two reddish orange orbs or objects come down from the clouds in Imperial, MO while driving north on I-55 +2011-12-27,33.8491667,-118.3875,Redondo Beach,CA,triangle,7,Triangle UFO flys low over Redondo Beach +2011-12-27,39.9166667,-75.3880556,Media,PA,flash,45,Sky flashed bright blue and red +2011-12-27,38.8966667,-121.0758333,Auburn,CA,sphere,60,Large and orange amber colored sphere hovering in the sky over Auburn, CA +2011-12-27,38.7583333,-104.7425,Security,CO,chevron,20,Lights hovering in sky over Security, Colorado. +2011-12-27,47.1855556,-122.2916667,Puyallup,WA,other,3,I was upstairs cleaning out a closet and my husband was sleeping; the kids were downstairs and started screaming as they loudly ran up +2011-12-27,39.645,-106.5936111,Edwards,CO,light,300,3 ufo"s 10-15 miles apart looked like stars crisp light changing color moving slow and steady west south west +2012-12-27,40.1438889,-75.1161111,Willow Grove,PA,flash,5,Blue lights over PA. +2012-12-27,39.7458333,-75.5469444,Wilmington,DE,oval,1810,It sparkled and quickly zipped above the trees. +2012-12-27,32.7152778,-117.1563889,San Diego,CA,unknown,300,Sparkling comet or fireball that split in mid air. +2012-12-27,36.175,-115.1363889,Las Vegas,NV,triangle,900,Lighted hovering object above the hotel. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2012-12-27,40.7141667,-74.0063889,New York City (Manhattan),NY,fireball,30,12/27/12- newyork, ny - 5:15pm reddish orange fireball just sitting there as i looked north toward empire state bldg - duration= 20secs +2012-12-27,30.4063889,-87.6836111,Foley,AL,light,240,Two sets of orange lights seen over Foley, Alabama. +2012-12-27,43.385555600000004,-84.8355556,Riverdale,MI,light,2700,Bright light in sky. +2012-12-27,36.0247222,-78.4747222,Youngsville,NC,formation,300,At 8:30pm red flashing lights appeared in the sky above the tree lines, making different formation patterns. +2012-12-27,28.6416667,-81.1236111,Chuluota,FL,fireball,600,I saw multiple red-orange orbs over Orlando, FL that were in landing formation then one at a time went straight up in the clouds. +2012-12-27,47.6588889,-117.425,Spokane,WA,oval,900,Lights seen onve Spokane. +2012-12-27,26.2375,-80.125,Pompano Beach,FL,fireball,300,Fireball. ((NUFORC Note: Report from pilot. PD)) +2012-12-27,33.4708333,-81.975,Augusta,GA,light,120,Star like light moving slow with some impossble movement. +2013-12-27,39.4408333,-78.9741667,Keyser,WV,flash,120,red and white lights tjat telaported across the sky moving with strange angels. +2013-12-27,46.5927778,-112.0352778,Helena,MT,unknown,3,green ball of light fallin outta the sky in HELENA, MT. +2013-12-27,42.2958333,-71.7133333,Shrewsbury,MA,light,300,Bright light heading east. No sound. Just after dusk. +2013-12-27,45.0083333,-96.4172222,Marietta,MN,light,120,"Star" glows orange and spins in vortex, flies off at great speed. +2013-12-27,38.9605556,-89.0936111,Vandalia,IL,light,600,"Star" moves after being stationary. +2013-12-27,40.6083333,-75.4905556,Allentown (East Side),PA,sphere,1200,A formation of 4 reddish orange speares moving in formation, one after the other. +2013-12-27,45.0083333,-96.4172222,Marietta,MN,light,120,Orange lights emit beams and a massive white light pulses with radiant haloes in a race across the sky. +2013-12-27,27.2936111,-80.3505556,Port Saint Lucie,FL,oval,600,Craft was darting around with no sound. +2013-12-27,40.7038889,-105.0080556,Wellington,CO,changing,1500,Unusual moving lights over the Fort Collins area. +2013-12-27,42.7761111,-71.0777778,Haverhill,MA,cigar,60,It was not far above the tree line, 200 feet?.....cruising along at the speed of a plane....but it had a different look than a plane... +2013-12-27,32.2216667,-110.9258333,Tucson,AZ,fireball,120,Looked like a bright orange fire flying across the sky of Tucson. +2013-12-27,33.2,-117.2416667,Vista,CA,triangle,600,Low flying triangular objects changing colors 10 minutes apart San Diego North County. +2013-12-27,33.9525,-84.55,Marietta,GA,fireball,600,Red hazy sphere. Pure red, no blinking light. Went out of sight vertically. +2013-12-27,34.2083333,-77.7966667,Wrightsville Beach,NC,other,600,Orange colored object in the eastern sky over the ocean near Wrightsvillle Beach, NC. +2013-12-27,44.8877778,-94.3694444,Hutchinson,MN,diamond,120,Slow moving diamond shaped flame. +2013-12-27,27.9091667,-82.7875,Largo,FL,sphere,3600,Many orbs in sky over Largo FL 12/27/13, 7 PM. +2013-12-27,39.0061111,-77.4288889,Sterling,VA,light,660,10 Redish orange lights not blinking near Dulles Airport Sterling VA. 20:25 till 20:34 12/27/13. +2013-12-27,36.6777778,-121.6544444,Salinas,CA,light,600,For the past couple of days starting December 22, 2013 I have seen a distant object in the sky that moves speratically up, down, side t +2013-12-27,33.3763889,-117.2502778,Fallbrook,CA,light,60,Red light. +2013-12-27,33.5602778,-81.7197222,Aiken,SC,light,30,Very bright red light moving across the sky, disappears. Another one of the same comes back 30 minutes later. disappears. +2013-12-27,46.8722222,-113.9930556,Missoula,MT,light,300,Chinese paper lanterns at 9pm or UFO's? +2013-12-27,40.4416667,-75.3419444,Quakertown,PA,light,300,Fire balls with no strobes moving very slowly. +2013-12-27,38.4405556,-122.7133333,Santa Rosa,CA,formation,8,Diamond formation, two red, two green lights. +2013-12-27,44.0216667,-92.4697222,Rochester,MN,light,7200,Red/White Flashing Hovering Light. +2013-12-27,26.9758333,-82.0908333,Port Charlotte,FL,triangle,180,V or diamond shaped object, 100 to 200 feet up, stationary, then Southbound and vanished, LARGE, others on road taking pics. +2013-12-27,33.8905556,-78.5686111,Calabash,NC,formation,120,Slow moving light formation. +2013-12-27,45.3338889,-96.7627778,Corona,SD,light,5,3 triangular light forms. White, blue, green. Flashed across sky silently, and quickly. Another report on fb stated location. +1925-12-28,41.4208333,-90.015,Atkinson (6 Miles North Of),IL,disk,60,Young boy witnesses disc in sky above Illinois farmland in December 1925. +1957-12-28,43.073055600000004,-89.4011111,Madison,WI,cigar,3600,My mother and i worked as telephone swithcboard operators.Dec. 28?񫹥 YOUR BOX DATE WONT TAKE THE DATE I PUT IN.I was in College. We +1957-12-28,43.073055600000004,-89.4011111,Madison,WI,cigar,3600,My mother and i worked as telephone swithcboard operators. I was in College. We worked from 4pm-12 midnight. I went and got the car and +1966-12-28,41.5833333,-87.5,Hammond,IN,triangle,60,Triangle shaped object with flashing lights, Hammond Indiana ( Hessville ) 1966 or 1967 +1977-12-28,42.2625,-71.8027778,Worcester,MA,disk,15,We observed a 60-80 ft diameter metalic craft (disk shaped- flat on top)move by us at 70 ft high & 100 yards of dista-nce. +1996-12-28,32.8233333,-97.1702778,Hurst,TX,light,1,I saw a brilliant white ball of lightmoving roughly straight downward very fastprobably about 1 mile away. It disapearedbehind trees. +1996-12-28,42.2711111,-89.0938889,Rockford,IL,triangle,1200,Black Triangle about 75 feet width. +1998-12-28,32.7591667,-97.7969444,Weatherford,TX,light,900,Our dog was barking so I went to investigate. While watching the dogs outside I noticed a very bright light that seemed to be coming to +1998-12-28,28.5997222,-81.3394444,Winter Park (Just Outside Orlando),FL,fireball,3,Large green fireball seen through clouds falling diagonally for 3 seconds and terminating in a flash of white light. +1998-12-28,33.9966667,-77.9075,Kure Beach,NC,cone,300,Craft approached as a star in the night sky - zig zaged extemely fast side to side. Hovered over ocean,motionless suspended for approx +1998-12-28,42.6605556,-78.0858333,Silver Springs,NY,sphere,600,in the S by SW sky 3 fingers held at arms lenght above the horizon. This orange light ball moved erratically to the west maintaining al +1999-12-28,32.7833333,-96.8,Dallas,TX,unknown,120,Saw very large object emerge from behind a hill in front of me on 408 Spur. Long row of lights too bright for me to see shape of craft +1999-12-28,41.7886111,-89.6961111,Sterling,IL,disk,1200,Limited contact with ufo and aliens. +1999-12-28,41.5102778,-112.0147222,Brigham City,UT,fireball,1800,going out side for a smoke we looked to the southwest and seen what we thought to be a plane but after looking at the lights for a time +1999-12-28,28.0391667,-81.95,Lakeland,FL,fireball,60,12/28/99 lakeland florida orange ball +2000-12-28,47.5675,-122.6313889,Bremerton,WA,other,8100,Comet-like geo-stationary objects in vicinity of Ursa Major +2000-12-28,48.55,-109.6833333,Havre,MT,disk,300,Toy top looking saucer +2000-12-28,32.5630556,-97.1413889,Mansfield,TX,flash,6,Quick Flash +2000-12-28,29.7630556,-95.3630556,Houston,TX,light,660,Bright, burning, descending small, narrow oval shaped light over s/sw sky in Houston, late afternoon/Dec 28, 00 +2000-12-28,42.2041667,-72.6166667,Holyoke,MA,diamond,45,We saw a diamond shaped craft hovering over the dark valley in between Holyoke and Springfield, Mass +2000-12-28,33.8313889,-118.2811111,Carson,CA,disk,30,Red disc shaped object over Los Angeles +2000-12-28,34.1477778,-118.1436111,Pasadena,CA,fireball,2,Bright green fireball travelling east to west over Pasadena, California at 7PM Pacific on 12/28/00 +2001-12-28,32.2216667,-110.9258333,Tucson,AZ,disk,2700,I was running a night shift in the middle of the desert,using a track hoe to feed an incinerator.I am a 4 year vetran of the army and m +2001-12-28,31.6830556,-92.1336111,Jena,LA,cigar,1200,cigar shaped craft north sky, very large moving slow then fast also coming to a dead stop, very bright silver. +2001-12-28,29.7630556,-95.3630556,Houston,TX,light,10,Bright Light High in sky moving north to south +2001-12-28,32.948055600000004,-96.7294444,Richardson,TX,triangle,180,Triangular shape ship with red light on bottom moving a circular motion. Went very slowly. +2002-12-28,43.2505556,-89.5013889,Dane,WI,formation,120,five lights moving in formation +2002-12-28,41.0602778,-111.9702778,Layton,UT,unknown,10,At approximately 1845, I walked out of my house in Layton, Utah to go to the store. It was very dark out, an overcast of thin clouds w +2003-12-28,34.7463889,-92.2894444,Little Rock,AR,triangle,10,Triangler lights spotted 15 miles south of Little Rock +2003-12-28,40.9275,-73.9977778,Bergenfield,NJ,other,30,Fast moving Vshaped 5 lighted craft seen moving north from the south +2003-12-28,42.4927778,-92.3427778,Waterloo,IA,other,3,Very fast, silent, moving craft enveloped by vapor, @ about 8000 feet AGL traveling SW to NW then W +2003-12-28,47.2530556,-122.4430556,Tacoma,WA,other,30,The object was long and straight, it was dark colored and moved in a forward motion. +2003-12-28,40.7616667,-73.3297222,Deer Park,NY,egg,30,it was egg shaped and had an orange glow on the entire underside heading sw to ne at 20:00 12/28/03 +2003-12-28,47.3052778,-68.1525,Grand Isle,ME,changing,600,A cluster of lights moved silently from north to south changing shape to a triangle, straight line and shallow arc of lights. +2003-12-28,47.3052778,-68.1525,Grand Isle,ME,triangle,600,silent arch of pulsing lights. +2003-12-28,38.5280556,-81.6311111,Sissonville,WV,light,180,Three lights, perfectly spaced apart, moving irratically through the trees and then disappearing. +2003-12-28,41.85,-87.65,Chicago,IL,unknown,15,UFO Sighting in downtown Chicago +2003-12-29,37.2938889,-87.1233333,Central City,KY,fireball,20,I saw a large red object with a halo around it in western kentucky. +2004-12-28,39.5491667,-76.0919444,Havre De Grace,MD,unknown,3600,the object looked like a star and appeared to get brighter at times as it moved up and down across the nights sky +2004-12-28,39.4666667,-87.4138889,Terre Haute,IN,light,900,I SEEN A LIGHTS HOVERING IN MORNING ABOVE HIGHWAY, THEN WENT UP INTO SKY. +2004-12-28,34.005,-118.8091667,Malibu (Just W Of, On Pacific Crest Highway),CA,triangle,60,I witnessed triangle craft being chased by military planes near NAS Pt.Mugu Dec.2004 +2004-12-28,40.5133333,-79.88,Fox Chapel,PA,triangle,90,Thsi not one of the UFOs I see before. +2004-12-28,40.1302778,-75.5152778,Phoenixville,PA,triangle,1200,Light along the sides with a shape of a triangle +2005-12-28,38.3497222,-81.6327778,Charleston,WV,circle,180,blueish and white orb +2005-12-28,42.8744444,-71.1816667,Hampstead,NH,sphere,1200,2 ballon shaped objects came close and then seperated and took off in seperate directions +2005-12-28,30.2669444,-97.7427778,Austin,TX,triangle,300,Triangluar Object very low to the point of seeing detail hanging over the city. +2005-12-28,28.5380556,-81.3794444,Orlando,FL,light,30,Noticed "star" moving across sky...it stopped...continued moving, and changed color...streaked away in a second. +2005-12-28,40.5852778,-105.0838889,Fort Collins,CO,light,5,Circular lights ran pattern over and over in sky +2005-12-28,36.8744444,-94.8772222,Miami,OK,light,300,UFO MISSOURI INVESTIGATOR GROUP REPORT: I looked out the window of our pick-up and noticed a large orange "star" or so I thought… +2005-12-28,39.1433333,-77.2016667,Gaithersburg,MD,light,10,SAW FLYING OBJECT AND IT DISSAPPEARD RIGHT BEFORE MY EYES! +2005-12-28,42.6658333,-74.31,Schoharie,NY,egg,60,Egg shaped vessel lit by some means not of this earth. +2006-12-28,30.1763889,-85.8055556,Panama City Beach,FL,formation,2160,Red and green flashing hoovering lights three witnesses +2006-12-28,34.0027778,-84.1447222,Duluth,GA,unknown,3,comet like ball of fire seen falling from sky in Gwinnet Co (GA) +2006-12-28,40.6213889,-79.1527778,Indiana,PA,formation,3600,this formation has been flying around in a circular motin for about 1 hr. it is a hazy circular form and the objects are flying in a ci +2006-12-28,33.6602778,-117.9983333,Huntington Beach,CA,circle,300,Diagnol Upward Moving Star Like UFO's +2006-12-28,35.3733333,-119.0177778,Bakersfield,CA,sphere,360,Bright round orange object observed above above northern horizon. +2006-12-28,40.3969444,-79.1519444,Bolivar,PA,light,1200,12/28/06 three lights circling at different speeds. ((NUFORC Note: Possible advertising lights?? PD)) +2006-12-28,40.5813889,-79.5666667,Apollo,PA,circle,7200,Circular craft can be seen at the intersection of Cherry Lane and Shellhammer Rd.. ((NUFORC Note: Possible advertising lights?? PD)) +2006-12-28,41.8633333,-84.2363889,Clayton,MI,circle,2,12-28-06 Blue white ball of light over rural area in southern Mi lasting seconds. +2006-12-28,38.2325,-122.6355556,Petaluma,CA,diamond,600,Bright white lights seen in Northeastern Sonoma County Skies on 28 Dec 2006 +2007-12-28,28.1758333,-80.5902778,Satellite Beach,FL,sphere,7200,Naked eye watching early morning sky finds Mars planetary movement vs. an unidentifiable object hovering like a helicopter. +2007-12-28,31.6033333,-94.6552778,Nacogdoches,TX,unknown,4,What might this be? +2007-12-28,28.9825,-95.9691667,Bay City,TX,triangle,900,Sightings of object in Bay City, Texas +2007-12-28,40.3061111,-121.0047222,Westwood,CA,diamond,300,silent diamond shape w/ four blue/white lighs and a large red light in center of bottom. +2007-12-28,41.2586111,-95.9375,Omaha,NE,circle,2,Green speedy circle over 100th Street and I-80 in Omaha, NE travelling east bound +2008-12-28,45.8202778,-88.0658333,Iron Mountain,MI,light,30,Four unexplained lights seen near highway in the Upper Peninsula of Michigan +2008-12-28,39.3,-85.2222222,Batesville,IN,unknown,1,Green explosion/flash lighting up the whole sky for an instant similar color to the Alaskian northern light green +2008-12-28,46.7722222,-67.8344444,Fort Fairfield,ME,other,15,I saw a star like object shoot stright up and dissiapere +2008-12-28,40.6936111,-89.5888889,Peoria,IL,other,600,Odd shaped aircraft seen over Peoria IL +2008-12-28,38.8402778,-97.6111111,Salina,KS,circle,10,Sighted a round metallic object hovering above I-70. +2008-12-28,43.5977778,-88.2788889,Campbellsport,WI,sphere,5400,Circular orb hangs in sky and while the naked eye sees only a bright light, the video camera revealed some amazing details. +2008-12-28,26.0625,-80.2333333,Davie,FL,sphere,180,Six orange orbs plague the skies of Publix in Davie. +2008-12-28,26.0625,-80.2333333,Davie,FL,sphere,180,Six red-orange orbs appear over Davie skies. +2009-12-28,41.4133333,-75.4936111,Mount Cobb,PA,circle,12,my grandson and i were going home on the exspressway route 84 we were east bound. we were almost at the mt cobb exit 8 when we saw thi +2009-12-28,32.4486111,-81.7833333,Statesboro,GA,disk,300,saucer shaped craft hovering above tree tops,multiple witnesses. +2009-12-28,48.2933333,-122.6419444,Oak Harbor,WA,fireball,300,balls of light over Puget Sound +2009-12-28,34.9247222,-81.0252778,Rock Hill,SC,chevron,3600,Colorchangin Light over Rock Hill, SC 12/28/2009 +2010-12-28,42.9908333,-71.1430556,Fremont,NH,triangle,120,Around 5:30 a triangle shaped craft was moving south-south west. There wasn't a sound in the air. +2010-12-28,41.1175,-73.4083333,Norwalk,CT,fireball,6,closeby fireball with tail streaked across sky towards earth +2010-12-28,39.0211111,-76.4155556,Skidmore,MD,light,4,Flash of light +2010-12-28,40.0336111,-76.5047222,Columbia,PA,circle,4,Fast moving, very bright light flying low and silently that suddenly disappeared. +2010-12-28,39.2144444,-122.0083333,Colusa,CA,light,5400,The object appeared to the west of the constellation Orion and was amber-orange in color. +2011-12-28,41.5047222,-73.97,Beacon,NY,diamond,40,Huge and hanging right over the bridge entrance +2011-12-28,38.2683333,-90.38,Herculaneum,MO,cylinder,60,Teen daughters saw cylindar shape object with landing legs protruding from bottom, with silver metallic reflection. +2011-12-28,35.0455556,-85.3097222,Chattanooga,TN,light,1800,Four family members witnessed some 14-18 bright yellow/orange lights move slowly over city +2011-12-28,35.0455556,-85.3097222,Chattanooga,TN,fireball,1200,Four glowing orange orbs float over the city +2011-12-28,33.0580556,-112.0469444,Maricopa,AZ,fireball,2700,I saw 3 objects that hung around for the full time, It affected my car gauges. +2011-12-28,35.9380556,-77.7908333,Rocky Mount,NC,formation,1200,Four orange light formation moving slowly across the sky in eastern north carolina. +2011-12-28,39.0483333,-95.6777778,Topeka,KS,triangle,60,A triangle shape object flew across the sky while I was taking my dog outside. +2012-12-28,39.6847222,-83.9297222,Xenia,OH,circle,4,I WAS WAITN TO PICK UP NEWSPAPERS FOR DELIVERY,I was looking at the moon as there was a giant halo around it that morning when i notice +2012-12-28,46.4166667,-117.0166667,Lewiston,ID,circle,300,Large floating object spotlighting house and shed. +2012-12-28,43.885555600000004,-70.3322222,Gray,ME,other,45,Small and huge object with star shaped light converge and take off at high speed. +2012-12-28,47.4236111,-120.3091667,Wenatchee,WA,circle,300,Reddish Orande Lights Above Wenatchee. +2012-12-28,47.4236111,-120.3091667,Wenatchee,WA,circle,300,Reddish Orange Lights Above Wenatchee. +2012-12-28,47.4236111,-120.3091667,Wenatchee,WA,light,300,Dozens of lights in East Wenatchee. +2012-12-28,34.2283333,-118.5358333,Northridge,CA,teardrop,1500,White teardrop object with lights going on then off with helicopter very close by +2012-12-28,30.7108333,-94.9327778,Livingston,TX,light,600,Bright lit clouds on pitch dark night. +2012-12-28,40.7458333,-89.7441667,Edwards,IL,light,6,A small red light ascended then disappeared. +2012-12-28,38.8697222,-75.4233333,Lincoln,DE,formation,420,5 red lights hovering low two dissappeared and remaining 3 formed triangle pattern. +2012-12-28,38.9125,-75.4283333,Milford,DE,light,1200,Pulsating orbs 2-8 over Milford. +2012-12-28,38.3363889,-75.0852778,Ocean City,MD,triangle,3,A triangle of orange lights when looking north on Ocean City Beach towards DE. Later at 12:30 a.m. a bright flash of white lights (appr +2012-12-28,47.4869444,-120.4169444,Monitor,WA,light,900,Two red lights converge in the sky and drip other red lights. +2012-12-28,33.4483333,-112.0733333,Phoenix,AZ,sphere,420,Orange Orbs Sighted over North Phoenix 12/28/2012 @ 20:50. +2012-12-28,32.9855556,-80.11,Ladson,SC,light,600,A cluster of red lights in the sky in Ladson, SC. +2012-12-28,26.6402778,-81.8725,Fort Myers,FL,fireball,120,8-10 fireballs floating through the air in a strange formation moving North. +2012-12-28,26.6402778,-81.8725,Fort Myers,FL,fireball,300,Walking my dog on 12/28/12 at 11pm and saw in the sky 5 to 6 orange lights. On the form I chose fireball as my description but it was m +2012-12-28,47.6063889,-122.3308333,Seattle (Fremont District),WA,sphere,1800,Standing in Fremont one street up from the Canal as I came out of my store I noticed an orange glowing object in the sky over Queen Ann +2013-12-28,39.7683333,-86.1580556,Indianapolis,IN,cylinder,300,There were 2 aircraft. One has lights. The other did not. The one without lights was massive. Both craft were at a high altitude. +2013-12-28,39.9611111,-82.9988889,Columbus,OH,sphere,7200,1 bright white and four smaller orange orbs. +2013-12-28,39.9508333,-86.2619444,Zionsville,IN,circle,2,While driving a unidentifiable white light flew West and was out of sight as fast as it appeared. +2013-12-28,40.7988889,-81.3786111,Canton,OH,sphere,1200,I could only see one sphere while I was taking pictures but caught lots on video and pictures. +2013-12-28,33.9375,-117.2297222,Moreno Valley,CA,light,5,Flash of light. +2013-12-28,43.0347222,-83.5180556,Davison,MI,flash,3,An unusual flash of light permeated our entire bedroom for 2-3 seconds. It came from outside the house. +2013-12-28,39.1638889,-119.7663889,Carson City,NV,diamond,600,Flaming craft falling; got video. +2013-12-28,42.3758333,-82.9375,Grosse Pointe Park,MI,circle,300,Orange colored circular objects flying in a line in Grosse Pointe, Michigan. +2013-12-28,40.5061111,-74.6205556,Hamilton,NJ,formation,7,5 dots of white light seen after noon spotted 3 days after Xmas 2013 West of the Hamilton NJ train station. +2013-12-28,41.8238889,-71.4133333,Providence,RI,teardrop,900,White bright streak like teardrop shape in clear blue sky. +2013-12-28,36.9975,-79.8922222,Rocky Mount,VA,changing,600,Black hovering object seen in daylight hours. +2013-12-28,35.1083333,-77.0444444,New Bern,NC,light,120,Fluidly, floating, white light. +2013-12-28,39.9347222,-75.0311111,Cherry Hill,NJ,light,120,Super Bright Silent Light Cruising Slowly Across South Jersey - 100% Not a Plane or Meteor. +2013-12-28,33.6888889,-78.8869444,Myrtle Beach,SC,sphere,300,Two bright orange colored balls of light, appearing just north of the Apache pier in Myrtle Beach, SC. +2013-12-28,37.6391667,-120.9958333,Modesto,CA,sphere,300,Saw 4 red glowing spheres floating upward and then flying East until they disappeared. +2013-12-28,29.5072222,-95.0947222,League City,TX,light,300,Orange lights and dark objects over League City, Texas. +2013-12-28,34.1486111,-118.3955556,Studio City,CA,circle,60,Two red circles in Studio City. +2013-12-28,40.4197222,-79.8502778,Forest Hills,PA,unknown,300,An evenly-spaced line of 3 bright fireballs traveled northwest, some emitting sparkling droppings. +2013-12-28,37.2266667,-121.9736111,Los Gatos,CA,flash,2,Bright blue flash seen speeding across the night sky from the left to the right. +2013-12-28,33.9866667,-118.1844444,Maywood,CA,formation,1800,Formation Flight of UFOs. +2013-12-28,28.5380556,-81.3794444,Orlando,FL,unknown,1800,Peculiar movements of an object with green (and some white) lights. +2013-12-28,44.2736111,-69.3677778,Washington,ME,other,2,A clear bright line in the sky. With a beginning and an end. +2013-12-28,41.4530556,-72.4616667,East Haddam,CT,circle,600,White circular objects for 10 minutes. +2013-12-28,40.0377778,-76.3058333,Lancaster,PA,circle,7200,Several orange/red glowing objects were in the sky. +2013-12-28,33.0580556,-112.0469444,Maricopa,AZ,light,10,Bright orangish light moving fast and silent right over the house. +1994-12-29,43.4463889,-85.2741667,Lakeview,MI,light,300,Man stopped on highway to watch bizarre lights moving in night sky. Other cars stopped to watch them, too. +1995-12-29,32.7152778,-117.1563889,San Diego,CA,cross,300,Driving North on the 805 frwy just north of the 8 frwy, saw four very bright white lights in the northern sky moving towards me, one of +1996-12-29,32.7561111,-91.8722222,Bastrop,LA,light,3600,due south of bastropA bright light was seen in the sky, and was thought to be a star until it started moving. It moved back and for +1999-12-29,29.3302778,-99.2794444,D'hanis,TX,unknown,1200,5 miles South of D’Hanis, Texas on Farm to Market Road (FM) 2200 December 29, 1999 approx. 5 AM I stepped out of the back door and stoo +1999-12-29,39.7391667,-104.9841667,Denver,CO,chevron,600,I was driving home down 13th street, I saw a object hovering over 13th street very low, at first I could not tell how low as I was appr +1999-12-29,38.4191667,-82.4452778,Huntington,WV,light,15,Watched a bright luminous light approach low over city From the S/W. Made no sound as it moved at a slow steady rate speed. As it came +2000-12-29,33.7738889,-117.9405556,Garden Grove,CA,light,420,Observed high altitude single white light traveling from south to north over Orange County, California +2000-12-29,29.9727778,-98.7205556,Sisterdale,TX,diamond,300,Diamond shaped object that huvered above with a very brite glow.(not lights) +2000-12-29,33.7738889,-117.9405556,Garden Grove,CA,chevron,6,Sharp V shape object, heading from Zenith toward West horizon, dim gray with evenly spaced white lights, appeared large at high altitud +2000-12-29,43.4441667,-71.6477778,Franklin,NH,disk,120,Erratically moving object in sky 12/29/00 +2000-12-29,41.0144444,-75.6013889,Albrightsville,PA,other,600,Two bright lights could be seen in distance over the mountain. +2000-12-29,34.8525,-82.3941667,Greenville,SC,unknown,600,high bright light travelling west, then stopped. +2000-12-29,35.2872222,-95.5822222,Eufaula,OK,disk,1200,UFO sighting southeast Oklahoma +2001-12-29,40.7447222,-73.9491667,Long Island City (Queens),NY,other,300,Many moving star balls +2001-12-29,47.5002778,-111.3,Great Falls,MT,triangle,240,Large triangular craft observed over Great Falls Montana. +2001-12-29,48.1183333,-123.4294444,Port Angeles,WA,changing,300,Large, black object(s) seen in the clouds above Port Angeles +2001-12-29,48.1183333,-123.4294444,Port Angeles,WA,other,600,Hugh black object(s) in sky +2001-12-29,39.2672222,-76.7986111,Ellicott City,MD,fireball,4,A green fireball going parllel to the horizon at about 20 degrees. It then seemed to burnout. I immediately thought of it as just a sho +2001-12-29,40.7447222,-73.9491667,Long Island City (Queens),NY,other,600,Darting lights over NYC on 12/29/01 +2002-12-29,30.3319444,-81.6558333,Jacksonville,FL,fireball,5,A FIREBALL SIGHTING FROM THE SKY LOOKED LIKE A UFO +2002-12-29,36.175,-115.1363889,Las Vegas (Near),NV,fireball,300,A comet shaped object, with a bright tail vanishing to a spot +2002-12-29,37.5202778,-122.2747222,Belmont,CA,fireball,5,Large fireball seen near San Mateo Airport +2002-12-29,38.4405556,-122.7133333,Santa Rosa,CA,circle,6,Something like a falling star to the north at quite a distance then suddenly in front of me and to the East a round blue object that mo +2002-12-29,37.3688889,-122.0352778,Sunnyvale,CA,circle,300,We were riding a 15 passenger van south on HWY 101 and noticed a fast ball of light moving at great speed. Lights on the object went on +2003-12-29,26.6155556,-80.0572222,Lake Worth,FL,oval,8,It was a dark and clear sky, and i was on my usual U.F.O. nightly watch when i saw a ovel mysterious object crusing over me. It had re +2003-12-29,38.8461111,-77.3066667,Fairfax,VA,fireball,4,1 fireball going east just above tree level very bright and orange burned out in 4 sec. no sounds +2003-12-29,32.7947222,-116.9616667,El Cajon,CA,unknown,60,UFO heard above El Cajon neigborhood on 12/29/03 at 00:30 in the morning +2003-12-29,46.5927778,-112.0352778,Helena,MT,sphere,5,On my way to work at 0410, I witnessed a pulsating, green orb descend diagonally in front of me. +2003-12-29,30.9036111,-84.5755556,Bainbridge,GA,triangle,180,I went out to check my mail box. Something caught my eye and I looked up and I saw a craft moving no more than 10 miles per hour. It +2003-12-29,47.8555556,-121.9697222,Monroe,WA,light,60,2 lights circling each other in sky, then suddenly vanish, and aircraft appears soon thereafter +2003-12-29,44.9430556,-123.0338889,Salem,OR,circle,5,Fast Moving Bright Light +2003-12-29,38.8047222,-77.0472222,Alexandria,VA,fireball,1,Green Fireball decends around Fort Belvoir Virginia +2004-12-29,30.1894444,-82.6394444,Lake City,FL,circle,720,Seven brite dots seemed to hover for 12 minutes, then vanished instantly. +2004-12-29,43.12,-85.56,Rockford,MI,oval,15,While heading south on Ramsdell going to a local Deli to pick up dinner, I was coming to a stop sign onto Cannonsburg Road, I was almos +2004-12-29,38.4038889,-96.1813889,Emporia,KS,other,10,Amber lights in the shape of the number 7 or a backward capital F gliding silently across the Kansas night sky. +2004-12-29,42.5583333,-71.2694444,Billerica,MA,circle,7200,Large White circles of light racing in circles at fast speed above the clouds in Billerica, Ma +2004-12-29,29.6513889,-82.325,Gainesville,FL,light,300,I COULDN'T BELIEVE MY EYES +2005-12-29,33.5386111,-112.1852778,Glendale,AZ,light,30,Light dropping other lights +2005-12-29,42.0411111,-87.69,Evanston,IL,light,2,Red laser light beam in Evanston, Illinois +2005-12-29,33.1191667,-117.0855556,Escondido,CA,sphere,120,3 objects were seen in formation cross in other with quick movements. After about 2 minutes of viewing, they just disappeared. +2005-12-29,37.1141667,-89.1977778,Mounds,IL,unknown,900,lights in clouds, 4 witnesses for sure +2005-12-29,33.0183333,-80.1758333,Summerville,SC,triangle,60,While driving down Dorchester Road just before Old Orangeburg Rd. my son pointed out strange lights in the sky. As i looked up i though +2006-12-29,40.8325,-115.7622222,Elko,NV,sphere,900,Spherical object at great height moving at high rate of speed from south to north +2006-12-29,41.7075,-86.895,Michigan City,IN,triangle,5,Cluster of large triangle lights drops from the sky +2006-12-29,39.5916667,-89.7463889,Auburn,IL,circle,9000,December 2006, Bright object, precision movement, flashing lights, two and a half hours. ((NUFORC Note: Twinkling star? PD)) +2006-12-29,34.8638889,-84.3241667,Blue Ridge (Close To),GA,circle,120,Large round craft with lights all around on Georgia mountain top. +2007-12-29,33.2,-117.2416667,Vista,CA,light,480,A curved hovering object with bright halogen shaped lights seen in Vista +2007-12-29,39.13,-94.5619444,North Kansas City,MO,triangle,300,Triangle shaped object seen near North Kansas City Missouri. +2007-12-29,33.0197222,-96.6986111,Plano,TX,sphere,10,A large glowing white orb of light the size of a car shot through the sky parralell to the earths surface. +2007-12-29,33.1580556,-117.3497222,Carlsbad,CA,triangle,120,Dimly lit triangular shaped object moves slowly high above Carlsbad State Beach Sat. evening 12/29/07 +2007-12-29,38.7744444,-92.2569444,Ashland,MO,oval,30,Big Bright ovals being fired into night sky faster than Jet +2007-12-29,47.6447222,-122.6936111,Silverdale,WA,triangle,300,Large, triangular/diamond shaped, shiny metal, low flying silent object near Bangor naval base. +2007-12-29,41.6441667,-93.4644444,Altoona,IA,unknown,300,strange pulsing light over Altoona Iowa +2008-12-29,40.4233333,-104.7086111,Greeley,CO,triangle,180,Dark triangular form appeared, flew at a steady pace a few blocks over the treeline in Greeley, Colorado and then dissapeared. +2008-12-29,35.1952778,-79.4697222,Pinehurst,NC,light,60,A brilliant flashing white light was beaming into one of my bedroom windows for about 1 minute. This has happened sporadically down thr +2008-12-29,41.1702778,-76.8772222,Montgomery County (Location Unspecified),PA,oval,10800,Spinning rounded triangle with red,blue,green, and purple lights; over 3 hrs long. ((NUFORC Note: Probable sighting of Sirius. PD)) +2008-12-29,35.2147222,-80.0025,Mt. Gilead,NC,oval,5,Saw what I believe were 3 UFO's in sky over Lake Tillery,NC on morning of 12/29/08 about 5am. +2008-12-29,42.1166667,-71.8652778,Oxford,MA,triangle,20,viewed 6 bright lights in a huged triangle formation +2008-12-29,33.4483333,-112.0733333,Phoenix (Outside Of),AZ,unknown,60,Strange craft seen from air plane traveling fast and low over Arizona desert +2008-12-29,64.8377778,-147.7163889,Fairbanks,AK,unknown,2,the light was very bright and had a very large vapor trail +2008-12-29,63.3366667,-142.9855556,Tok (30 Miles Nw Of),AK,other,1500,erratic vapor trail accompanied by an explosion was witnessed by me in my SE sky at around 15:10 AST +2008-12-29,35.7077778,-79.8138889,Asheboro,NC,disk,30,As I was in the car, I saw a white object in the sky which wasn't moving, just hovering there. It had distinct sharp ends on each side, +2008-12-29,39.7536111,-76.5916667,Stewartstown,PA,unknown,18000,Round Shape Possibly 3-4 hrs 3 very bright lights at different parts of the sky. ((NUFORC Note: Venus, Jupiter, and Mercury? PD)) +2008-12-29,35.8825,-80.0822222,Thomasville,NC,other,15,White light zipped though the sky. +2008-12-29,45.4872222,-122.8025,Beaverton,OR,triangle,10,Black Triangle Fly-Over (Beaverton, OR) +2008-12-29,40.9008333,-73.3436111,Northport,NY,light,10,Unexplainable bright light in the sky in Long Island Ny. +2008-12-29,34.7538889,-77.4305556,Jacksonville,NC,chevron,45,Boomerang object with no sound seen in night sky +2008-12-29,44.0605556,-70.3941667,Poland,ME,fireball,3,Meteor streaks from Newgloucster, over Poland towards Oxford. (Maine) +2008-12-29,42.4083333,-71.0125,Revere,MA,circle,2,Spearmint colored object flys extremely fast in the sky then dissappears completely leaving only green trail +2008-12-29,39.7294444,-104.8313889,Aurora,CO,triangle,180,3 triangle craft, 2 red and one yellow/amber +2008-12-29,44.0886111,-87.6575,Manitowoc,WI,diamond,300,Horizontal line of bright white lights accompanied by very small, red lights zig zaging around the object. +2009-12-29,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,300,Odd light in sky over North Brooklyn, New York. +2009-12-29,34.0005556,-81.035,Columbia,SC,light,5,Driving on the highway and saw something fall out of the sky. +2009-12-29,30.8325,-83.2786111,Valdosta,GA,unknown,2,Constant green light, flying south over Gerogia. +2009-12-29,35.9938889,-78.8988889,Durham,NC,fireball,5,Blue-white fire ball over Durham +2009-12-29,43.6705556,-121.5025,La Pine,OR,disk,420,Crafts seen in Oregon~No question U.F.O's +2009-12-29,39.56,-76.0716667,Perryville,MD,circle,10,Dark round shadow blocks light from moon +2010-12-29,44.9369444,-91.3927778,Chippewa Falls,WI,oval,1200,A large oval craft with four large (house sized) yellow lights coming out of the side. +2010-12-29,40.5866667,-122.3905556,Redding,CA,other,20,Dark, V-shaped figure with 7 lights seen above Redding, CA through thin clouds, making drastic movements. +2010-12-29,29.3011111,-94.7975,Galveston,TX,changing,20,Seen unidentified lighted object +2010-12-29,47.6063889,-122.3308333,Seattle,WA,light,900,Bright Light with Tail SSE travel over N.W Region US 7:40 AM 12/29/2010 +2010-12-29,41.8994444,-87.9402778,Elmhurst,IL,sphere,30,Bright white spherical object flying low over Roosevelt Road near Elmhurst, IL +2010-12-29,47.4236111,-120.3091667,Wenatchee,WA,light,600,The low altitude and slow speed of objects is what caught my attention +2010-12-29,40.125,-79.8666667,Belle Vernon (Westward),PA,circle,5,ball of light vanished +2010-12-29,38.8541667,-77.5722222,Catharpin,VA,diamond,15,Diamond shaped object flying over Virginia and changing into numerous different colors. +2010-12-29,34.8877778,-79.3663889,Wagram,NC,triangle,1200,The object was floating over the highway just above the tree line with red, blue, and yellow lights on the bottom of a dark surface +2010-12-29,26.1,-80.4,Weston,FL,circle,30,5 lights above me at about 9:30 p.m +2010-12-29,47.7361111,-122.6452778,Poulsbo,WA,oval,3,a golden oval, appeared to be lit up, skimming the sky above Poulsbo, heading towards Silverdale Wa. +2010-12-29,32.2216667,-110.9258333,Tucson,AZ,light,120,Three, then four lights moving unnaturally fast, stopping abruptly then going straight up unnaturally fast; all with no sound. +2011-12-29,37.5058333,-77.6494444,Midlothian,VA,circle,1200,Ball of lights very far out in the AM sky over 23112 +2011-12-29,30.2669444,-97.7427778,Austin,TX,fireball,30,Have green have red ball of light for 30 seconds +2011-12-29,30.2669444,-97.7427778,Austin,TX,cigar,45,Rotating Object Moves Across the Austin Sky +2011-12-29,34.1486111,-118.3955556,Studio City,CA,triangle,30,3 Orange round spheres, with hot white looking centers with what appeared to be a shutter, they flew in triangular formation. +2011-12-29,30.3319444,-81.6558333,Jacksonville,FL,light,2700,A light hovered in the sky two nights, moving back and forth. +2011-12-29,43.0716667,-70.7630556,Portsmouth,NH,light,300,Moving groups of lights +2011-12-29,42.5277778,-92.4452778,Cedar Falls,IA,light,900,Bright golden light seen twice on the same road to home. +2011-12-29,42.0541667,-71.74,Douglas,MA,light,3,Green light crosses sky at very fast pace. +2011-12-29,34.1397222,-118.0344444,Arcadia,CA,light,2,Green flash of light over Arcadia, California. +2011-12-29,34.0522222,-118.2427778,Los Angeles,CA,unknown,60,Flickering amber mass with erratic darting movements. +2011-12-29,33.1958333,-80.0133333,Moncks Corner,SC,light,2,A bright point of white light in the night sky that shot off into the horizon faster than anything I've ever seen. +2011-12-29,35.8233333,-78.8258333,Morrisville,NC,light,60,Ball of blue light moving very quickly +2012-12-29,34.8652778,-120.435,Orcutt,CA,fireball,10800,A red & yellow fire ball dancing from here and there directly over head. And tben zipped off east over the mountains. +2012-12-29,33.0183333,-80.1758333,Summerville,SC,triangle,300,V shaped crafts, 3 of them in a Triangle formation VERY Close. +2012-12-29,37.6922222,-97.3372222,Wichita,KS,light,60,Red lights over wichtia 12/29/2012. +2012-12-29,28.5380556,-81.3794444,Orlando,FL,light,60,Large "ball" of light separates into three smaller light objects. +2012-12-29,21.5027778,-158.0236111,Wahiawa,HI,formation,300,Formation of lights move quickly across the night sky in hawaii. +2012-12-29,44.8513889,-123.1855556,Independence,OR,unknown,300,Two bright red/orange lights moving straight up, they were not in line but moving at the same speed and distance from each other. +2012-12-29,42.4927778,-92.3427778,Waterloo,IA,sphere,180,3 seen, 1 Orange globe coming from north, made sharp turn to east. Fast and quiet. +2012-12-29,35.7077778,-79.8138889,Asheboro,NC,light,0.05,Single bluish white downward arc of fast moving single light. +2012-12-29,36.175,-115.1363889,Las Vegas,NV,unknown,180,10 objects, circular, deep orange color (see description). +2012-12-29,30.8461111,-93.2888889,Deridder,LA,fireball,4,Never before seen. +2012-12-29,35.6527778,-97.4777778,Edmond,OK,circle,40,Around 15-20 orange lights in sky first make a snowflake shape but then a "W" shape; start to move NE towards Guthrie, OK. +2012-12-29,38.595,-90.5461111,Ballwin,MO,fireball,180,It was red, orange and yellow. It made no noise. I followed it and it disappeared right in front of me.My phone took ok pictures bu +2012-12-29,45.6797222,-111.0377778,Bozeman,MT,light,600,Its a clear night Just seen what I thought was abright star constilation cause they looked just like stars I thought I was lookig at th +2012-12-29,34.4625,-78.1013889,Currie,NC,other,180,Bright U F O Sighting East Coast Area NC +2013-12-29,29.7194444,-82.1394444,Orange Heights (Near),FL,other,300,Strange blinking lights and a huge triangle shaped craft. +2013-12-29,38.9625,-119.9388889,Stateline,NV,rectangle,60,Rectangular flashing lights above stateline Nevada! +2013-12-29,39.5994444,-110.81,Price,UT,sphere,300,Mars like object traverses night sky. +2013-12-29,26.9677778,-80.1288889,Tequesta,FL,fireball,120,Orange fireball traveling SW to NE at a constant speed and altitude. Stayed visible till it went out of sight in the NE. +2013-12-29,41.2586111,-95.9375,Omaha,NE,circle,300,Bright light traveling southeast over downtown Omaha. Thought maybe it was a Chinese lantern but it stopped and reversed course. +2013-12-29,27.3361111,-82.5308333,Sarasota,FL,fireball,300,I am wondering if anyone reported the sighting of any UFO, December 29񫺝, at approximately 6:20 p.m. I was jogging in my neighborho +2013-12-29,30.3086111,-89.33,Bay Saint Louis,MS,fireball,420,Orange pulsating orb over downtown. +2013-12-29,35.1594444,-84.8766667,Cleveland,TN,sphere,180,At 7:00pm we saw five reddish orange spheres moving slowly across the sky. When we first saw them they were in a straight line. +2013-12-29,40.4233333,-104.7086111,Greeley,CO,circle,180,While driving west on highway 34 business at about 65 Ave., we saw two identical lights flying together. They crossed our path in fro +2013-12-29,26.6583333,-80.2416667,Wellington,FL,sphere,600,30 UFOs. +2013-12-29,38.2775,-85.7372222,Jeffersonville,IN,circle,600,Seven silent round orange flying objects watched and observed in Jeffersonville, Indiana. +2013-12-29,48.1172222,-122.7591667,Port Townsend,WA,other,120,5 red "stars" visible in NE sky, no other stars visible in that area, slowly moved and faded. +2013-12-29,26.1416667,-81.795,Naples,FL,circle,30,Glowing orange light silently moving across sky in naples Florida 22:30 December 29, 2013. +2013-12-29,30.3319444,-81.6558333,Jacksonville,FL,fireball,60,I could not have described what me, my husband and daughter witnessed than the description that was posted by someone in St. Cloud, Flo +2013-12-29,47.7627778,-120.6561111,Plain,WA,circle,360,Bright Orange Circular discs - 6 to 8 appearing and disappearing-very random North Cascades, WA. +1959-12-30,35.1322222,-118.4480556,Tehachapi,CA,fireball,30,White fireball hitting ground. +1967-12-30,28.5544444,-81.1066667,Bithlo,FL,disk,25200,On the evening of December 30, 1967, shortly after dusk, I observed along with two other witnesses, a circular craft, approximately 40 +1980-12-30,42.1486111,-72.6083333,Chicopee,MA,diamond,300,Black diamond with green lights lands on porch roof +1991-12-30,43.3719444,-83.5833333,Vassar,MI,circle,30,zigzag beeping object +1994-12-30,34.0522222,-118.2427778,Los Angeles,CA,light,120,Three adults in car north of L.A. observed large, bright, orange ball of light move west. Left luminous tail. +1995-12-30,45.6625,-110.5602778,Livingston,MT,fireball,10,Close fireball flying at approx. 2000 mph flies over Interstate 90. +1997-12-30,34.5361111,-117.2902778,Victorville (East Of),CA,circle,5,glowing circular object about 30 degrees above the southwestern horizon. Was moving slowly down and had no trail like a meteorite. Ob +1997-12-30,30.6322222,-87.0397222,Milton (North Of),FL,triangle,60,Saw triangle craft with 5 white lights on front and 1 red light on bottom. elev approx 500-1000 ft, moving approx 50 mph in a SW direct +1998-12-30,39.0825,-74.8241667,Cape May Court House,NJ,sphere,30,Driving home from my girlfriend's house during the winter break for Christmas I noticed a sphere-like object, silvery/chrome/reflective +1998-12-30,47.6588889,-117.425,Spokane,WA,fireball,5,extremely bright light appearing to the south of our location moving straight down from upper atmoshpere to ground was not moveing hori +1999-12-30,35.6833333,-85.77,Mcminnville,TN,unknown,45,JUST PAST MIDNIGHT I LOOKED OUT MY LIVING ROOM WINDOW AND SAW A LOW FLYING FLASHING LIGHT GOING EAST ONLY ABOUT 150' TO 200' OFF THE GR +1999-12-30,43.1961111,-73.6522222,Gansevoort,NY,sphere,5,While driving home with a friend, we both simultaneously witnessed a sort of dull greenish ball or sphere with a yellowish center cross +2000-12-30,34.2694444,-118.7805556,Simi Valley,CA,formation,610,2 lights flashing in some sort of pattern moving rapidly across the sky making sharp turns +2000-12-30,37.775,-122.4183333,San Francisco,CA,formation,30,triangle formation, up to twenty objects headed north west over city to pacific- silent, fast +2000-12-30,37.775,-122.4183333,San Francisco,CA,triangle,8,Four of us witnessed a large triangular formation of lites moving westerly directly overhead. +2001-12-30,40.7441667,-73.4825,Bethpage,NY,light,2700,bright light being followed by fighter jet repeatedly for approx 45 minutes +2001-12-30,32.3413889,-90.3216667,Clinton,MS,triangle,300,Triangle with lights on each corner. +2001-12-30,36.5858333,-79.3952778,Danville,VA,triangle,1200,A strange object hovered in the sky for approximately 10 minutes with a bright white light that pulsed fery slowly. +2001-12-30,39.2902778,-76.6125,Baltimore,MD,sphere,1800,9 glowing orbs over Baltimore MD +2002-12-30,36.3047222,-86.62,Hendersonville,TN,disk,120,the red lights +2002-12-30,33.8358333,-118.3397222,Torrance,CA,changing,90,at 5:47 pm walking back to the house looked up at what i thought was a evry bright star and it flickered ad changed in size looked muc +2002-12-30,33.8958333,-118.2191667,Compton,CA,other,15,STRANGE TUBE UFO SEEN ACROOS SKY +2002-12-30,36.2977778,-119.2058333,Farmersville,CA,light,480,Neon red light seen traveling north at slow speed. +2002-12-30,28.5380556,-81.3794444,Orlando (Outside),FL,unknown,1200,Three lighted objects flying in formation. +2003-12-30,37.6305556,-122.41,San Bruno,CA,sphere,360,It was very very black +2003-12-30,38.8047222,-77.0472222,Alexandria,VA,light,900,3 objects with a trail of smoke attached hovered together in the sky over the expressway +2003-12-30,38.8047222,-77.0472222,Alexandria,VA,light,900,While on I-495 S. towards Richmond, VA, heading home from work, I sat in very slow traffic and observed what I thought was airplane smo +2003-12-30,39.9288889,-85.3702778,New Castle,IN,light,1800,Was on back porch. I looked up into the sky, and there was a bright object that lookes like a star but it was moving very slowly. It wa +2003-12-30,43.1547222,-77.6158333,Rochester,NY,disk,600,Happened in rochester ny lasted 10 minutes 3 lights in a horazontal line moved slowly made no sound +2003-12-30,35.5363889,-82.6930556,Candler,NC,light,300,Bright light faded to nothing +2003-12-30,33.2569444,-103.3172222,Tatum,NM,circle,45,hovering object,circle of lights,in field that shot straight up and stopped 2 times then lights went out and object vanished +2004-12-30,41.575,-87.2388889,Lake Station,IN,changing,300,Intense blue light filling room, and a baby nine months later +2004-12-30,33.9616667,-118.3522222,Inglewood,CA,circle,120,Possible International Space Station Siteing +2004-12-30,27.4952778,-81.4411111,Sebring,FL,circle,30,Bright white light appeared in clear blue sky for about 30 seconds around 9 A.M. +2004-12-30,33.8702778,-117.9244444,Fullerton,CA,oval,1200,Hovered up and down and side to side +2004-12-30,61.2180556,-149.9002778,Anchorage,AK,light,900,Two hovering lights above Anchorage, Alaska +2004-12-30,42.1219444,-77.9483333,Wellsville,NY,fireball,180,Bright orange glowing object that hovered, moved across the sky and down, then disappeared. +2005-12-30,38.364444399999996,-98.7644444,Great Bend,KS,fireball,900,Flash of light in night sky leads to missing time in Central Kansas +2005-12-30,33.0461111,-96.9938889,Lewisville,TX,light,90,Bright light moving silently, west to east +2005-12-30,33.0197222,-96.6986111,Plano,TX,fireball,5,Flaming green object fell from sky. ((NUFORC Note: Possible meteor. PD)) +2006-12-30,37.9736111,-122.53,San Rafael,CA,unknown,300,I am now very scared to go to bed at night. +2006-12-30,40.2736111,-76.8847222,Harrisburg,PA,light,60,Lights in the sky and a shiny object that went behind a cloud, cloud disappeards after a while +2006-12-30,33.9908333,-118.4591667,Venice,CA,formation,6,This was one half of a V formation (like migrating ducks and geese) --- the 5 lights or reflectors were seen flying at an angle going f +2006-12-30,39.7391667,-104.9841667,Denver,CO,light,2400,Colorado Southeastern sky. ((NUFORC Note: Possible sighting of the star, Sirius?? PD)) +2007-12-30,40.5066667,-74.2658333,Perth Amboy,NJ,unknown,1800,Unidentified crafts and light beam. +2007-12-30,47.6588889,-117.425,Spokane,WA,light,300,15 degree`s west of downtown spokane from a third floor apartment, Note : due west is Fairchild Air-force Base and Spk International Ai +2007-12-30,38.4405556,-122.7133333,Santa Rosa,CA,other,4,B2 shaped UFO observed in the sky +2007-12-30,33.2,-117.2416667,Vista,CA,other,600,Pale object hovering over heighbor's house, with two dangling search lights up front, and 3rd light at tail. +2007-12-30,26.9616667,-82.3527778,Englewood,FL,circle,25,circular ufo hits a plane!!!!!!!!! +2007-12-30,38.8402778,-97.6111111,Salina,KS,disk,5,One white circurlar spotting +2007-12-30,28.555,-82.3880556,Brooksville,FL,disk,600,It was crazy and at first I didnt know it was real but it was!! +2008-12-30,39.9955556,-82.6744444,Pataskala,OH,disk,60,Moving as fast as an airplane with a humming sound around 300 yards away. +2008-12-30,35.614444399999996,-88.8138889,Jackson,TN,cylinder,15,very fast, silent cylinder seen with swirling red lights on its ends. +2008-12-30,38.8813889,-94.8188889,Olathe,KS,disk,40,When I opened the sunroof my eyes were facing forward and then it was suggested to me to look straight up and I saw the UFO. +2008-12-30,38.5788889,-122.5786111,Calistoga,CA,disk,180,Black Ops or UFO? +2008-12-30,34.1952778,-79.7627778,Florence,SC,sphere,2700,Bright spherical light hovering for long period of time and then suddenly moving very quickly. ((NUFORC Note: Venus. PD)) +2008-12-30,35.6177778,-82.3213889,Black Mountain,NC,light,2400,We have 5 minutes of video we took of a three dimentional white light that would morph into a six sided web shape +2008-12-30,34.4113889,-118.5391667,Saugus,CA,triangle,4,Noiseless triangular craft with orange glow seen flying at extremely high speed at night - the silence was weird. +2008-12-30,34.4113889,-118.5391667,Saugus,CA,triangle,4,Noiseless triangular craft with orange glow travels at high speed overhead at night - it made no sound. +2009-12-30,28.325,-81.5333333,Celebration,FL,triangle,30,Traingle over Celebration Florida a few minutes past Midnight +2009-12-30,41.5380556,-72.8075,Meriden,CT,fireball,3600,seen it three times +2009-12-30,40.9027778,-74.7094444,Stanhope,NJ,light,60,Pair of lights seen hovering, or slowly cruising, over Route 80 West. +2009-12-30,43.6136111,-116.2025,Boise,ID,light,10,Bright white light moving downward south of Boise then leveling off. +2010-12-30,38.2972222,-122.2844444,Napa,CA,circle,240,Flashing light in the sky outside my bedroom window. Circular in shape & lights falshed as it spun. +2010-12-30,33.7488889,-84.3880556,Atlanta,GA,oval,120,Large, firey oval object over Atlanta, GA +2010-12-30,35.4427778,-120.8911111,Cayucos,CA,oval,10,It was a large, round, glowing object, the flew silently, & then stopped, changed direction, to go into light speed in a second. +2010-12-30,35.7325,-78.8505556,Apex,NC,other,600,unexplainable air craft +2011-12-30,38.2119444,-86.1219444,Corydon,IN,triangle,900,Multiple triangular aircraft, white red and orange lights. low flying, super quiet, not fast +2011-12-30,64.7511111,-147.3494444,North Pole,AK,triangle,480,Triangle shaped, orange and yellow light. moving in erratic behavior for about 8 min. +2011-12-30,30.6483333,-91.1563889,Zachary,LA,other,360,4 low hovering changing lights in the sky +2011-12-30,41.1288889,-74.7286111,Augusta,NJ,formation,1200,Orange and some red object in some formation, quickly disappearing into the atmosphere +2011-12-30,28.5380556,-81.3794444,Orlando,FL,fireball,300,Red-Orange fireball passing over Orlando on Dec 30th 2011 +2011-12-30,34.0469444,-116.58,Morongo Valley,CA,fireball,1,A big bright ball of fire traveling at low altitude in the mid-evening. +2011-12-30,42.8711111,-97.3969444,Yankton,SD,triangle,180,5 lights seen to the north of Gavin's Point Dam near Yankton. group of 3 joined by 2 additional +2011-12-30,35.0525,-78.8786111,Fayetteville,NC,light,600,Reddish/orange object in sky in Fayetteville, NC +2011-12-30,37.775,-122.4183333,San Francisco,CA,sphere,60,Red orb light hovers over couple in San Francisco, CA 12/30/2011 +2011-12-30,37.7477778,-84.2947222,Richmond,KY,cigar,30,Two solid lights about 100 feet in the air over a field. +2012-12-30,44.0583333,-121.3141667,Bend,OR,circle,240,Two objects flying from the north headed south then disappeared +2012-12-30,44.8816667,-72.9433333,Sheldon,VT,circle,300,One large slow moving light that was silent and seemed to drop down then move horizontal, then drop down again and continued moving slo +2012-12-30,33.6694444,-117.8222222,Irvine,CA,unknown,30,White object moving from left to right and took off quickly. +2012-12-30,43.2344444,-70.81,South Berwick,ME,teardrop,300,Two orange objects flying over Dow Highway in So Berwick, ME +2012-12-30,34.0038889,-117.0611111,Calimesa,CA,sphere,3600,Red orbs over my local mountains +2012-12-30,38.8138889,-76.9458333,Temple Hills,MD,formation,30,Formation of 8 to 10 lights seen by Mother and Daughter +2012-12-30,36.7080556,-105.4055556,Red River,NM,sphere,20,Brilliant Blue Orb over Red River, New Mexico - Stunning Movements. +2012-12-30,39.2902778,-76.6125,Baltimore,MD,sphere,2700,Glowing orbs over Baltimore MD 12/30/2012. +2012-12-30,36.6844444,-121.8011111,Marina,CA,light,420,Seem to be flashing multiple colors, hovering and moving in an odd manner. There was no noise coming from that direction and seem to be +2012-12-30,27.3361111,-82.5308333,Sarasota,FL,fireball,10,Fireball. +2012-12-30,37.3394444,-121.8938889,San Jose,CA,light,30,Witnessed 2 orange lights in the sky. +2013-12-30,39.0638889,-108.55,Grand Junction,CO,unknown,1800,Bright orange glow illuminating south Douglas Pass north of grand Junction, CO. +2013-12-30,47.7544444,-122.1622222,Woodinville,WA,rectangle,900,Possible Drone flying type object around apartment community +2013-12-30,42.0527778,-124.2827778,Brookings,OR,other,600,Orange balls. +2013-12-30,32.7152778,-117.1563889,San Diego,CA,fireball,600,Fireballs over San Diego. +2013-12-30,42.6525,-73.7566667,Albany (Near),NY,triangle,60,My friend and I were driving back home to NYC on interstate 87 when I noticed what I thought was an airplane hovering in the sky. How +2013-12-30,32.7152778,-117.1563889,San Diego,CA,circle,300,My son, his friends, and I saw three bright lights hovering in the sky which then came together to form a triangular shape. +2013-12-30,32.7152778,-117.1563889,San Diego,CA,fireball,300,Three lights appearing separately looked like rockets or comets coming down. +2013-12-30,42.1861111,-86.3083333,Coloma,MI,formation,180,Three orange orbs seen in night sky that moved fast and then disappeared. +2013-12-30,41.5102778,-112.0147222,Brigham City,UT,other,600,5 Orange-Gold light flying around and hovering. +2013-12-30,36.9038889,-76.9,Ivor,VA,light,40,Low flying UFO in the country. +1975-12-31,33.9472222,-90.3441667,Webb,MS,disk,300,My wife and myself were traveling to a friends house for a new years party. We started from Coffeville Missisippi on State Road 32 via +1975-12-31,41.8011111,-88.0747222,Lisle,IL,light,120,December 31st, 1975. It was maybe around 10:30 pm. My husband (noW ex-husband) and I had been working in Westmont. We were headed to hi +1978-12-31,40.3891667,-74.7622222,Hopewell,NJ,disk,1800,December 31, 1978 at 12:30AM - Object hoovered over my parked car for about 10 minutes and was about 100-150 ft above my car. Estimate +1979-12-31,39.0997222,-94.5783333,Kansas City,MO,circle,120,Large light blue sphere, made no sound, and no light reflected off of it. +1979-12-31,34.9494444,-81.9322222,Spartanburg,SC,circle,900,UFO IN SC LOOKED JUST LIKE A PLANES FLASHING LIGHTS IN THE NIGHT SKY +1983-12-31,38.0291667,-78.4769444,Charlottesville,VA,disk,60,I now write about the saucer I saw in the 80's near Charlottesville, Va. +1986-12-31,21.4180556,-157.8036111,Kaneohe,HI,cigar,5,A large, dark cigar shaped craft w/ lights +1986-12-31,29.7630556,-95.3630556,Houston,TX,formation,20,Formation of four star like lights appearing and reappearing. +1987-12-31,38.6580556,-77.25,Woodbridge,VA,sphere,5,Basketball sized neon orange/yellow spinning sphere no sound hovering on road and moved vertically in front of my windshield. 500 L +1989-12-31,29.1869444,-82.1402778,Ocala,FL,triangle,600,TRIANGULAR CRAFT MADE 90 DEGREE TURNS +1992-12-31,36.5963889,-82.1886111,Bristol,VA,other,3600,Explosion of lights appear upon request +1994-12-31,34.0922222,-117.4341667,Fontana,CA,light,600,Man, wife, and neighbors witness strange, bright red light overhead. Video-taped for 8-9 min... Obj. ascended, departed. +1995-12-31,48.0152778,-122.0625,Lake Stevens,WA,fireball,15,RED LIGHT HOVERING LAKE STEVENS AREA MADE NO SOUND +1996-12-31,32.2216667,-110.9258333,Tucson,AZ,disk,900,Craft was spotted hovering over the city. +1996-12-31,42.575,-71.9986111,Gardner,MA,circle,30,I looked up and saw four circular objects flying in and out of each other. Then they all lined up in a row and took off quickly and dis +1997-12-31,30.3672222,-89.0927778,Gulfport,MS,triangle,60,Triangle UFO near Gulfport, MS 12/31/97 +1997-12-31,29.4569444,-94.6394444,Crystal Beach,TX,circle,300,ROUND WITH RED AND WHITE LIGHTS FLASHING VERY,VERY RAPIDLY AND MOVING AROUND. +1997-12-31,38.7508333,-77.4755556,Manassas,VA,formation,30,observed a formation of approx fifty craft in upper atmosphere traverse night sky. formation was traversing sky fromwest to east and h +1997-12-31,41.2375,-80.8186111,Warren,OH,other,15,Gigantic wing, with 12 blue orbs across the rear, flys across the sky over highway. +1997-12-31,18.4136111,-66.0822222,Puerto Nuevo (Puerto Rico),PR,cross,210,While visiting relatives in Puerto Rico in December, we witnessed a UFO in Puerto Nuevo, PR. I have been searching all over the interne +1998-12-31,39.9347222,-75.0311111,Cherry Hill,NJ,light,300,I just arrived home. It was about 7-7:30 PM. I was taking some items out of my van. I was facing north, stand at the back of my van. I +1998-12-31,36.175,-115.1363889,Las Vegas,NV,disk,300,I was standing on top of Parking Garage, looked up at sky, so.east, and saw to look like 12-15 disk, silver in color, and perfectly cir +1998-12-31,32.2411111,-92.7158333,Jonesboro (Near),LA,changing,180,Slow pink blob +1998-12-31,42.9097222,-73.8955556,Burnt Hills,NY,light,120,3 bright white objects slowly flying, then hovering, with small orange sparks falling from each +1998-12-31,44.2619444,-88.4152778,Appleton,WI,teardrop,60,I was at a party waiting for 1999 I saw 6 crafts which formed a triange. +1999-12-31,36.175,-115.1363889,Las Vegas,NV,circle,600,New years eve 1999 I went to work and parked on the very top of the parking garage at work at Caesars Palace. Iwalked to the elavators +1999-12-31,38.7891667,-90.3225,Florissant (St. Louis),MO,unknown,300,Origin in vicinity of Orion. Orange glow, fairly bright. Definitely no blinkers. Moved slowly, about east to west. Several observers. +1999-12-31,27.9938889,-82.2197222,Dover,FL,circle,10,SMALL ROUND FOLLOWED BY STEALTH +1999-12-31,42.32,-89.0580556,Loves Park,IL,circle,60,Orange ball-shaped object soaring fast across the sky in a NE direction. Had no sound or blinking lights +1999-12-31,42.2711111,-89.0938889,Rockford,IL,light,300,3 orange lights hovering in the sky east of Rockford, IL, on the outskirts of town toward Belvidere, IL. +1999-12-31,32.8383333,-116.9730556,Santee,CA,formation,60,After having just watched a video tape a friend had recently taken of lights above Cowels Mountain (looking south from Santee) I saw th +1999-12-31,33.8816667,-118.1161111,Bellflower,CA,fireball,960,n amber colored star. It moved under a lot of clouds often seeming to stop cmpletely or to 'bob' up and down. Thank You. +2000-12-31,35.1427778,-120.6402778,Pismo Beach,CA,oval,1200,GLOWING LIGHT OVER PIZMO BEACH PIER ON NEW YEAR'S EVE. +2000-12-31,35.1427778,-120.6402778,Pismo Beach,CA,oval,1200,THIS WAS NOT A PLANE OR HELICOPTER/ +2000-12-31,43.3138889,-89.5263889,Lodi,WI,unknown,3600,Strobing star +2000-12-31,61.2180556,-149.9002778,Anchorage,AK,changing,21600,We could observe red lights dancing across the underside red lights were very bright and very active. +2000-12-31,36.9752778,-121.9522222,Capitola,CA,triangle,120,large triangular shape white lights on sides very high unimaginabley fast off to the south toward Big Sur. +2000-12-31,33.6116667,-111.7166667,Fountain Hills,AZ,unknown,15,Low flying black craft flies over my house, no lights, and seemed to be too low for comfort. +2000-12-31,43.4222222,-95.1019444,Spirit Lake,IA,disk,120,Flash of light +2001-12-31,32.7833333,-96.8,Dallas,TX,circle,120,Perfect Circle UFO Spotted at 30ꯠ Feet +2001-12-31,29.6908333,-95.2088889,Pasadena,TX,rectangle,1,Large rectangular craft seen New Year's Eve +2001-12-31,43.3058333,-100.6577778,Mission,SD,unknown,180,T WAS SHAPED LIKE NOTHING IVE EVER SAW, AND IT WAS SCARY AND COOL AT THE SAME TIME. +2001-12-31,36.1538889,-95.9925,Tulsa,OK,light,600,Slowly moving red (then orange) flickering light joined for a time by a faster moving white light. +2002-12-31,38.7933333,-77.2719444,Burke,VA,other,30,morphing spheres in a chem trail. +2002-12-31,33.8675,-117.9972222,Buena Park,CA,disk,60,I observed a silvery/opulesant colored disk hovering in an upwards position - leveled out and moved quickly south-east +2002-12-31,33.4483333,-112.0733333,Phoenix,AZ,other,600,A silent, silver bell-shaped metallic object which emitted an orange glow was observed in the afternoon by 3 persons in Phoenix, AZ. +2002-12-31,30.2669444,-97.7427778,Austin,TX,light,5,A single eyewitness observed from a third-story balcony (west facing) 80 degrees from the normal plane and approximately 30 degrees nor +2002-12-31,37.4283333,-121.9055556,Milpitas,CA,light,30,Sighted two alternating evenly spaced white blinking lights traveling south east ,no sound was heard, dogs began barking. +2002-12-31,47.4236111,-120.3091667,Wenatchee,WA,formation,600,3 lights suspended over Wenatchee just before midnight Dec 31 lasting at least 8 mins +2002-12-31,47.4236111,-120.3091667,Wenatchee,WA,light,1800,Three adults and four children viewed nine star-like orange-yellow lights in the eastern horizon moving in random directions with +2002-12-31,47.4236111,-120.3091667,Wenatchee,WA,oval,1800,Near midnight I heard our local radio station announce that there were strange lights in the sky. I looked out my launddry room window +2003-12-31,33.8352778,-117.9136111,Anaheim,CA,diamond,3600,The most best thing that I seen in my life +2003-12-31,42.2791667,-123.6147222,Selma,OR,flash,2,green flashes +2003-12-31,41.9575,-88.0808333,Bloomingdale,IL,cigar,180,Silent balloon shaped object +2003-12-31,34.9616667,-89.8294444,Olive Branch,MS,disk,300,A disk shaped copper colored object passed overhead as we were watching hawks flying above. The craft slowly flew past seemingly eratic +2003-12-31,37.6305556,-122.41,San Bruno,CA,triangle,30,Please don`t think I am paranoic or lier.I just yesterday left report about UFO, and today strange thing happened again. From the same +2003-12-31,40.9911111,-72.5347222,Mattituck,NY,triangle,3,a white triangular object flying through the sky during the day on new years eve. +2003-12-31,45.1666667,-68.845,Lagrange,ME,cigar,1200,while driving home at dusk,noticed pinkish-orange object in sky.it was cigar shaped and lengthwise to the sky at tree level.object was +2003-12-31,32.6208333,-83.6,Warner Robins,GA,oval,600,There was 3 round circular objects, one was Red, they first appeared to be stars, it was 4:45 in the afternoon, there were no others. +2003-12-31,38.5816667,-121.4933333,Sacramento,CA,oval,10,Bright oval shaped object, flameing center, large tail, varying magnitude, moving across sky rapidly. +2003-12-31,43.1302778,-77.4758333,Penfield,NY,light,180,I saw a bright light or very shiny matialic light moving at very high speed, & change of direction like nothing i ever seen befor +2003-12-31,33.685,-117.2722222,Canyon Lake,CA,cross,7200,objects flew up thousands of ft., dissappearred,re-aprd, touched eachother, very fast, yet floated at times. +2003-12-31,38.9716667,-95.235,Lawrence,KS,formation,5,New Year, New Sighting. +2003-12-31,44.6366667,-123.1047222,Albany,OR,formation,300,Albany, OR Lights in the sky. +2003-12-31,47.4236111,-120.3091667,Wenatchee,WA,light,1800,Generally agreeing with other reports posted for this event. Have never seen anything like this; approx. nine yellow-orange lights in +2003-12-31,32.7677778,-117.0222222,La Mesa,CA,circle,900,Saw a red cluster or fire ball hovering in the eastern sky. It blinked on and off and suddenly went out. +2004-12-31,33.9202778,-80.3416667,Sumter,SC,light,180,Point of light +2004-12-31,29.5291667,-95.2008333,Friendswood,TX,triangle,900,Saw orange light appear and dissapear on different parts of the sky for alteast 10 minutes +2004-12-31,41.88,-88.0077778,Lombard,IL,disk,180,saucer shaped object in the sky glows white and fades three times in sky +2004-12-31,32.7152778,-117.1563889,San Diego,CA,circle,180,2 brilliant, pulsating, Red lights over Mission Bay / Pacific Beach : Red objects accelerated at a very high speed . +2004-12-31,32.7152778,-117.1563889,San Diego,CA,light,180,2 red lights in San Diego New Years eve (around 11:55pm - till midnight) +2005-12-31,39.9369444,-120.9461111,Quincy,CA,sphere,180,White orb seen over Quincy, California at 6 PM December 31st, 2005. Duration: 2 to 3 minutes. +2005-12-31,32.4869444,-114.7813889,San Luis,AZ,light,1200,Red Objets over the desert sky of San Luis Arizona +2006-12-31,32.8111111,-115.3794444,Holtville,CA,circle,180,very bright object very strange and fast moving speed up by clouds. +2006-12-31,40.7141667,-74.0063889,New York City,NY,sphere,900,small, glowing spheres over new york city, during the day on new year's eve +2006-12-31,40.1244444,-87.63,Danville,IL,unknown,120,Far away stationary object seen then suddenly disappeared +2006-12-31,44.1119444,-72.8563889,Warren,VT,other,30,It looked like a big mirror about 1000 ft above the ski area. saw it for 30 sec then it went behind the mountain. +2006-12-31,33.4152778,-111.6572222,East Mesa,AZ,fireball,900,White fireball in NE Mesa New Year's Eve +2006-12-31,43.0388889,-87.9063889,Milwaukee,WI,egg,30,while cooking steaks on 12/31/06 at 1730 hours i looked to the south west skys on a 45 degree angle and noticed tew egg or football sha +2006-12-31,39.0202778,-120.8169444,Foresthill,CA,circle,2,It was dusk, and I saw a large, glowing object moving in the sky, & took a photo of it as quickly as I could get my camera out. It sort +2006-12-31,40.1786111,-122.2347222,Red Bluff,CA,light,240,Regular appearence of straight traveling lights +2006-12-31,35.2577778,-96.9363889,Tecumseh,OK,light,40,Bright light flying past in the night. ((NUFORC Note: Witness is former member of USAF. PD)) +2006-12-31,39.9522222,-75.1641667,Philadelphia,PA,unknown,600,3 lights in the sky +2006-12-31,64.8377778,-147.7163889,Fairbanks,AK,fireball,240,We were on the porch the orange object went from east to west across the town sat on the west side for 45 seconds then went into space. +2006-12-31,32.9786111,-115.5294444,Brawley,CA,circle,120,Strange object left hole in the cloud +2006-12-31,28.5388889,-80.6722222,Merritt Island,FL,circle,120,Orange ball hovering over a river south of the Space Center in Florida +2006-12-31,33.8894444,-118.1588889,Paramount,CA,light,120,Five Lights Sighted Over LA Area on New Year's Eve. +2006-12-31,33.9791667,-118.0319444,Whittier,CA,circle,300,The sighting happend in the front of my neighbors house,everyone was outside and we were all celebrating new years eve.My neighbors dad +2007-12-31,38.005,-121.8047222,Antioch,CA,circle,300,Multiple red llights in a row sighted from my home in Antioch , Calif. +2007-12-31,31.8541667,-110.9930556,Green Valley,AZ,other,900,Group of 2 or 3 colored lights attached to a triangle in a square shape. +2007-12-31,30.8772222,-84.2013889,Cairo,GA,circle,900,A light fades in and out in the sky. +2007-12-31,32.7152778,-117.1563889,San Diego,CA,sphere,600,Strange Lights over San Diego, California sky could have been weather ballons +2007-12-31,34.0522222,-118.2427778,Los Angeles,CA,rectangle,60,Floating large rectangle near Highland Park/Pasadena CA +2007-12-31,33.1975,-96.615,Mckinney,TX,light,300,Conspicuous Lights seen in Night Sky over McKinney, Texas +2007-12-31,37.7430556,-81.1230556,Daniels,WV,light,1800,18:20 hours, 235 degrees southwest twinkling and moving object seen. +2007-12-31,35.1322222,-82.9341667,Lake Toxaway,NC,oval,10,White streak with firey tail traveled horizonally from western horizon to eastern horizon in 10 seconds +2007-12-31,37.6211111,-90.6402778,Pilot Knob,MO,light,1200,Huvering amber lights over mountain ridge, several accounts, sometimes fade away or just decend behind mountain. +2007-12-31,32.7152778,-117.1563889,San Diego,CA,light,2700,red and yellow lights off the coast by the Ocean Beach Pier in San Diego +2007-12-31,29.9480556,-93.9169444,Groves,TX,other,120,Slopw moving orange glowing object, then a single light and extremely fast moving +2007-12-31,32.9536111,-96.89,Carrollton,TX,sphere,120,3 Orange Spheres moving West to East over Carrollton TX. +2007-12-31,37.5072222,-122.2594444,San Carlos (Of San Diego),CA,light,120,A well definied red light, that looked electronic, drifted overhead and disappeared right above us. +2007-12-31,29.5847222,-81.2080556,Palm Coast,FL,other,10,I spotted a white light with a wavy tail that vanished midsight as I was watching it. +2007-12-31,34.0194444,-118.4902778,Santa Monica,CA,other,120,Rapidly moving rings of light in the sky over Santa Monica, California on New Year's Eve. +2007-12-31,33.6888889,-78.8869444,Myrtle Beach,SC,egg,25,Large ghostly shape like a stacked hamburger almost transparent and extremely large prodominantly white. +2008-12-31,32.7947222,-116.9616667,El Cajon,CA,unknown,300,http://www.youtube.com/watch?v=NkXK__OA2ho link to my video +2008-12-31,34.0522222,-118.2427778,Los Angeles,CA,light,600,Bright light moving quickly over Los Angeles, CA +2008-12-31,41.2230556,-111.9730556,Ogden,UT,sphere,300,Large spherical craft with 2 lights rotating around the object +2008-12-31,47.5675,-122.6313889,Bremerton,WA,circle,20,Saw black ball-shaped object floating overhead. A helicopter flew across it's path underneath it. +2008-12-31,40.9477778,-90.3711111,Galesburg,IL,unknown,60,Small black obect, pointed at end flying in a striaght line, no exhaust or sound emitted. +2008-12-31,38.2541667,-85.7594444,Louisville,KY,light,300,White Light Object appears in the sky and speeds away below the horizon +2008-12-31,38.7627778,-93.7358333,Warrensburg,MO,disk,1800,2009 UFO SIGHTING-CLOSE ENCOUNTER-NEAR WARREN AIR FORCE BASE,Warrensburg,Mo. 500 Lights On Object0: Yes +2008-12-31,30.0797222,-95.4169444,Spring,TX,light,180,over 20 objects moving at different speeds some in triangle patterns to the norhtwest +2008-12-31,33.7669444,-118.1883333,Long Beach,CA,formation,1200,A formation of lights hovering above the Long Beach Harbor. +2008-12-31,26.1219444,-80.1436111,Fort Lauderdale,FL,fireball,180,Orange Fire Balls headed East over Atlantic Ocean +2008-12-31,41.8833333,-70.7630556,Carver,MA,unknown,20,2 fast moving objects 15 seconds apart travelling low and on the same flight path. Extremely fast! +2008-12-31,38.6272222,-90.1977778,St. Louis,MO,formation,120,Formation of 9-12 points of light with another object in the middle covered with five lights in a diamond pattern. +2008-12-31,29.7855556,-95.8241667,Katy,TX,light,240,Orange light over Katy, TX seen 12/31/08 +2009-01-01,30.3152778,-93.6616667,Starks,LA,fireball,2,slow looking meteor with a tail +2009-12-31,32.7425,-117.0305556,Lemon Grove,CA,circle,600,Three red lights in formation on New Years Eve right at midnight +2009-12-31,31.6797222,-96.4819444,Mexia,TX,egg,4,I saw a blue light apear in the sky and it moved around then disapeared! +2009-12-31,35.7511111,-86.93,Spring Hill,TN,disk,360,Three yellowish/white hovering, then quickly disappearing in a blink/strange shaped air craft +2009-12-31,30.3580556,-90.0655556,Mandeville,LA,light,60,3 orange lights New Year's Eve +2009-12-31,30.275,-89.7811111,Slidell,LA,sphere,180,Two lighted translucent spherical craft traveling slowly on a parallel course towards New Orleans, LA +2009-12-31,30.275,-89.7811111,Slidell,LA,sphere,180,Two clearly visible, internally lighted spheres, flying in formation toward New Orleans +2009-12-31,30.3580556,-90.0655556,Mandeville,LA,disk,2700,1 orange colored craft moved around sky,then blinked out.Then saw about 8 orange craft streak across outer atmosphere in a staggered li +2009-12-31,30.0969444,-95.6158333,Tomball,TX,circle,120,An orange object in the sky that got smaller as it moved was spotted in Tomball,Tx. +2009-12-31,45.4647222,-98.4861111,Aberdeen,SD,formation,240,Orange balls shooting into the air and forming a check mark formation. +2009-12-31,43.3238889,-88.1666667,Jackson,WI,light,10,Very fast and bright light crosses sky in less then 10 seconds. +2009-12-31,26.6155556,-80.0572222,Lake Worth,FL,circle,120,orange sphere. no sound at all. +2009-12-31,30.5019444,-90.7477778,Livingston,LA,unknown,6312000,The 12 UFO we seen brite yellow like a street light +2009-12-31,38.6272222,-90.1977778,St. Louis,MO,circle,180,Orange, glowing jelly fish-like object. +2009-12-31,34.09,-117.8894444,Covina,CA,light,480,Solid orange light appears near Covina, ca. +2009-12-31,30.2669444,-97.7427778,Austin,TX,disk,300,New Years Eve Unkown object in the sky above Downtown Austin Texas +2009-12-31,32.7947222,-116.9616667,El Cajon,CA,triangle,600,Three hanging lights in the sky, in triangle formation, with no sound at midnight, New Year's Day 2010. +2010-12-31,48.1988889,-122.1238889,Arlington,WA,formation,600,3 pairs of glowing red/orange light formations New Years eve 2011 at midnight +2010-12-31,47.3075,-122.2272222,Auburn,WA,triangle,120,AT 12:57 AM 12/31/10 I WATCHED A V SHAPED CRAFT TRAVEL FROM THE SOUTH EAST IT WAS ORANGE IN COLOR AND IT NEVER MA +2010-12-31,21.3069444,-157.8583333,Honolulu,HI,light,300,Fast Moving Object Circles Diamond Head Crater Honolulu Hawaii +2010-12-31,37.5536111,-77.4605556,Richmond,VA,sphere,1800,4 shining spheres spotted over river for 20 minutes +2010-12-31,44.0522222,-123.0855556,Eugene,OR,oval,60,The Great Northwestern Christmas UFO 2010 +2010-12-31,47.6063889,-122.3308333,Seattle,WA,circle,120,This U.F.O. was similar to other reported ufo'swas extremely +2010-12-31,42.525,-71.7602778,Leominster,MA,light,2,very bright object low flying streak across the sky +2010-12-31,26.3583333,-80.0833333,Boca Raton,FL,flash,600,Flashing egg shape on it's side with 1/4 lit up resebling a cockpit flashing white light gliding straight 300feet then hovers in one sp +2010-12-31,61.2180556,-149.9002778,Anchorage,AK,light,300,Two small orange lights flying over Anchorage +2010-12-31,40.4533333,-111.7772222,Alpine,UT,flash,600,While walking up Alpine Cemetery to go sledding, a group of us saw a flashing light in the sky, the light started to dim and then quic +2010-12-31,33.4936111,-117.1475,Temecula,CA,fireball,240,Seven bright, orange, round lights on New Year's Eve 2010 +2010-12-31,61.5813889,-149.4394444,Wasilla,AK,sphere,120,Two red/orange lights suddenly appeared over our neighborhood New Years Eve, hovered for a few minutes, then dimmed and were gone. +2010-12-31,35.6008333,-82.5541667,Asheville,NC,other,60,a very bright slow moving large object with no sound, awsome! +2010-12-31,33.7669444,-118.1883333,Long Beach,CA,light,240,Saw 3 bright lights flying and then they stopped, forming a triangle. +2010-12-31,32.7252778,-97.3205556,Fort Worth,TX,fireball,360,I went outside to sit and smoke a cigarette. A few seconds after lighting it, I looked over to the North and saw three glowing orange o +2010-12-31,46.2113889,-119.1361111,Kennewick,WA,circle,1800,Three bright, orange objects moving across the sky. +2010-12-31,47.5963889,-120.6602778,Leavenworth,WA,light,600,At approximately 11:00 PM PST on New Year's Eve, 2010, my wife and I both observed two orangish objects in the night sky, approximately +2010-12-31,40.9644444,-76.8847222,Lewisburg,PA,fireball,240,Saw unexplained fireball in PA on New Years eve +2010-12-31,34.0230556,-84.3616667,Roswell,GA,cylinder,3,Atlanta New Years Eve 2010 object. ((NUFORC Note: Highly qualified witness. PD)) +2010-12-31,40.7608333,-111.8902778,Salt Lake City,UT,triangle,180,Triangular shape, multi colored flashing lights hovered over our car, 3 witnesses, no sound, radiant heat from undercarriage. +2010-12-31,30.3319444,-81.6558333,Jacksonville,FL,circle,120,2 orange balls traveling over Jacksonville Florida +2010-12-31,25.7738889,-80.1938889,Miami,FL,circle,180,Once again it happened..At the same time,the same heading.This time only I could see three of them,instead of more than that the first +2010-12-31,41.1702778,-76.8772222,Montgomery,PA,fireball,60,Multiple witness Fireball sighting with animal reaction +2010-12-31,29.1333333,-98.1558333,Floresville,TX,unknown,180,On this New Year eve at midnight, we were popping fireworks,myself,my wife and our daughter when from the eastern sky a bright orange o +2011-12-31,48.051944399999996,-122.1758333,Marysville,WA,light,900,6 orange lights south of marysville, Wa. +2011-12-31,47.6588889,-117.425,Spokane,WA,fireball,120,2 fireball like lights,silent.south to north. +2011-12-31,40.3294444,-74.0619444,Shrewsbury,NJ,circle,15,Reddish-orange light that slowly disappeared +2011-12-31,37.9158333,-122.3105556,El Cerrito,CA,light,15,Dancing triangular light formations over California Bay Area +2011-12-31,44.7719444,-85.5013889,Acme,MI,sphere,180,Five orange orbs seen 6:30 pm 110 miles north of Traverse City MI +2011-12-31,34.2180556,-80.2486111,Bishopville,SC,diamond,14400,Strobe-like blue,white, green, and red lights east of SC, MP108 I-20. ((NUFORC Note: Possible sightings of stars or planets?? PD)) +2011-12-31,37.9158333,-122.3105556,El Cerrito,CA,triangle,10800,Triangular and two-light formations seen over the California Bay Area. +2011-12-31,48.051944399999996,-122.1758333,Marysville,WA,fireball,10800,Bright orange object in the northern sky moved and was joined by another similar object; both moved away after 3+ visits. +2011-12-31,34.8333333,-81.9922222,Moore,SC,diamond,120,Bright glowing object appearing as if it was on fire moving slowly and very low in the sky +2011-12-31,38.8966667,-121.0758333,Auburn,CA,sphere,10,Two large orange colored lights over the Auburn skies at night +2011-12-31,42.5847222,-87.8211111,Kenosha,WI,fireball,3,Fireball descends and Pops over Kenosha +2011-12-31,34.1708333,-80.7944444,Elgin,SC,light,60,Bright orange light moving slowly across sky in SC. +2011-12-31,42.3266667,-122.8744444,Medford,OR,unknown,300,Orange-red ball of light with jerky movements going North, then South, then West and vanishing over the skies of Medford, OR. +2011-12-31,38.7838889,-90.4811111,St. Charles,MO,light,300,MO INVESTIGATORS GROUP: All of a sudden about 6 more appeared and were flying in the same dir. as they were following the other 5. +2011-12-31,33.5091667,-111.8983333,Scottsdale,AZ,disk,45,Scottsdale +2011-12-31,43.4686111,-71.2325,Alton Bay,NH,sphere,120,7 orange spheres seen flying South East from Alton to Seacoast +2011-12-31,38.9016667,-107.9258333,Cedaredge,CO,sphere,7,A large, greenish swirling light moved east to west across the night sky, disappearing behind Grand Mesa. +2011-12-31,32.7947222,-116.9616667,El Cajon,CA,circle,1200,A white bright, close by light hovering in the sky. They are still there right now. +2011-12-31,32.6727778,-114.1461111,Wellton,AZ,fireball,10,Blue Green Glow +2011-12-31,34.7391667,-112.0091667,Cottonwood,AZ,fireball,2,A large green ball of light with a yellow then white tail then nothing, appeared low in the sky. +2011-12-31,35.0844444,-106.6505556,Albuquerque,NM,diamond,10,Cyan color diamond shape glowing object outskirts west of Albuquerque NM. +2011-12-31,34.8697222,-111.7602778,Sedona,AZ,triangle,45,I was facing N NE 34 51’52.16N 111 47’38.39W elevation 4436 ft The object came from the NE directly NW till it was gone +2011-12-31,35.198055600000004,-111.6505556,Flagstaff (South Of),AZ,sphere,5,New Year's Eve 2011 UFO sighting around 8:30 pm south of Flagstaff, Arizona +2011-12-31,38.3969444,-111.5888889,Lyman,UT,unknown,5,Bright green flying light +2011-12-31,33.5205556,-86.8025,Birmingham,AL,circle,15,Red circular object travelling at high rate of speed +2011-12-31,35.0166667,-81.8041667,Cowpens,SC,fireball,10,Fireball over sc +2011-12-31,32.8997222,-94.5561111,Avinger,TX,oval,120,We witnesed a reddish, paper lantern shaped object moving through the sky, about 20 degrees above the horizon. +2011-12-31,33.2486111,-111.6336111,Queen Creek,AZ,oval,4,Oval object, fast moving with a light green tail. also radiating a white halo, came from the eastern sky and flew westward +2011-12-31,37.775,-122.4183333,San Francisco,CA,light,15,New years eve UFO sight over San Francisco +2011-12-31,43.2166667,-123.3405556,Roseburg,OR,light,180,Three lights were seen, forming a triangle. +2011-12-31,30.3941667,-91.2536111,Brusly,LA,teardrop,120,Orange, out of the ordinary shape object in the sky, lasting a few minutes and looks like nothing I have ever seen before! +2011-12-31,27.2541667,-80.23,Jensen Beach,FL,light,15,Three red dots in triangle formation +2011-12-31,28.5380556,-81.3794444,Orlando,FL,light,300,Around 3 groups of 4 light pale lights, just like small stars, doing some formation and disappearing in a dark sky +2011-12-31,44.0522222,-123.0855556,Eugene,OR,fireball,30,One orange glow traveling west at a steady speed +2011-12-31,28.2713889,-82.7197222,Port Richey,FL,fireball,600,Bright Orange Sphere wobbling while Bright White Led Looking Light remains constant nearby. +2011-12-31,43.5780556,-70.3222222,Scarborough,ME,light,60,Witnessed 4 orange lights, 3 equidistant apart and the 4th light set apart and all travelling low/slow in the night sky and dissapeared +2011-12-31,27.2936111,-80.3505556,Port Saint Lucie,FL,oval,1500,Bright Orange Flame like Orbs in the sky over Port Saint Lucie Florida +2011-12-31,26.6583333,-80.2416667,Wellington,FL,formation,600,Orange Lights - 13 in formation over Lake Wellington +2011-12-31,43.7152778,-72.3083333,Norwich,VT,teardrop,300,Tear drop lights sighting in Pompanoosic/Norwich, VT, area New Year's Eve. +2011-12-31,43.3838889,-70.5452778,Kennebunk,ME,light,180,2 bright orange irregular lights moving slowly, with no sound, into a fog bank over the ocean. +2011-12-31,35.5847222,-80.8102778,Mooresville,NC,light,90,Four lights traveling south with two lights flying between them. +2011-12-31,36.1694444,-75.7555556,Duck,NC,oval,45,3 red globes entered sky from northwest,hovered appprox 15 seconds, rapidly disappeared into south sky +2011-12-31,29.6513889,-82.325,Gainesville,FL,circle,300,15 disc shaped, silent, slow moving , orange lighted craft slowly changing formation was seen by 10 witnesses 12/31/2011 11:45pm +2011-12-31,27.3361111,-82.5308333,Sarasota,FL,oval,600,Orange-Red spherical oblong shaped craft flying in formation above DUI checkpoint shortly before New Year's eve. +2011-12-31,47.6063889,-122.3308333,Seattle,WA,circle,300,8-10 orange UFO's sited New Years Eve, just before midnight in Seattle. +2011-12-31,34.1477778,-118.1436111,Pasadena,CA,circle,300,Two orange bright circular objects kept going back and forth in the sky, then disappeared, when the clock hit 12 and it was new years. +2011-12-31,27.0994444,-82.4544444,Venice,FL,oval,300,Right before the firework display started at the beach we(my kids and I) were looking up in the sky from the peer at the stars and we s +2011-12-31,38.3697222,-90.3783333,Imperial,MO,oval,1200,Three glowing lights and one trianguler craft +2011-12-31,33.4222222,-111.8219444,Mesa,AZ,circle,300,Mulitple lights seen over Mesa, Az New Years 2012 +2011-12-31,40.4483333,-122.2966667,Anderson,CA,formation,600,Orange orbs seen in Anderson, CA. +2011-12-31,40.4483333,-122.2966667,Anderson,CA,light,420,Moving lights that changed colors and sped away at a high rate of speed. +2012-12-31,37.775,-122.4183333,San Francisco,CA,oval,120,Five lights over San Francisco fade away high over head NYE. +2012-12-31,35.1477778,-114.5675,Bullhead City,AZ,circle,6,Brillant white disk shoots through night time sky in Bullhead City, AZ. +2012-12-31,20.0827778,-155.4725,Honokaa,HI,circle,120,A large orange glowing object traveled slowly across the night sky. +2012-12-31,38.7522222,-121.2869444,Roseville,CA,rectangle,120,Orange-amber light hovering over Roseville, California. +2012-12-31,31.1430556,-90.4586111,Magnolia,MS,circle,600,Bright, round orange-red object flying across sky New Years Eve 2012 7:00 pm. +2012-12-31,32.9855556,-80.11,Ladson,SC,triangle,240,Craft with red light above Ladson, SC, on New Years Eve. +2012-12-31,32.4072222,-87.0211111,Selma,AL,changing,7200,Sphere shaped object flashing multiple colors and changing shape. ((NUFORC Note: Possible sighting of Sirius. PD)) +2012-12-31,48.0797222,-123.1005556,Sequim,WA,other,1,3 high speed illuminated objects observed. +2012-12-31,43.4666667,-112.0333333,Idaho Falls,ID,unknown,300,5-6 Shapeless floating lights. +2012-12-31,38.2541667,-85.7594444,Louisville,KY,light,90,Bright Orange Light... +2012-12-31,38.4405556,-122.7133333,Santa Rosa,CA,sphere,60,Just now my son and his friends came running in yelling that there are two red ufos out front.I ran out to the back yard because it was +2012-12-31,26.5625,-81.9497222,Cape Coral,FL,fireball,240,Three fireballs sitting in a row hovering over us for 4 minutes Cape Coral, FL this evening. +2012-12-31,33.5805556,-112.2366667,Peoria,AZ,fireball,600,12/31/12 20:32 Peoria AZ Orange Burning Orb. +2012-12-31,28.5380556,-81.3794444,Orlando,FL,circle,120,2 orange balls of flickering light moving slowly, in a line across the night sky, at low altitude, moving without making a sound. +2012-12-31,48.5127778,-122.6113889,Anacortes,WA,fireball,120,3 orange fire like, round objects moving south in night sky. +2012-12-31,28.8827778,-81.3088889,Debary,FL,sphere,900,Orange Spheres Observed Over Volusioa County Florida. +2012-12-31,35.8825,-80.0822222,Thomasville,NC,formation,10,Red orangish dot with a red streak behind it moving faster than a falling star. +2012-12-31,43.4666667,-112.0333333,Idaho Falls,ID,light,180,6-7 Balls of orange lights. +2012-12-31,29.6513889,-82.325,Gainesville,FL,other,600,12 red lights in the sky with no sound. +2012-12-31,33.5386111,-112.1852778,Glendale,AZ,fireball,120,Bright orange sphere that turned into a star in less than a second. +2012-12-31,26.6402778,-81.8725,Fort Myers,FL,sphere,180,Orange fireball flying slow at low altitude over Fort Myers, Florida, on New Year's Eve. +2012-12-31,28.7572222,-81.3394444,Heathrow,FL,light,180,Unexplainable lights in formation over Heathrow/Lake Mary; 12/31/12. ((NUFORC Note: Report from former U. S. Army aviator. PD)) +2012-12-31,34.5008333,-117.185,Apple Valley,CA,teardrop,600,2 Red and 2 yellow teardrops seen "playing" over Apple Valley, CA. +2012-12-31,34.8525,-82.3941667,Greenville,SC,light,120,10-12 points of light flying in the sky in formation. +2012-12-31,42.865,-71.3744444,Londonderry,NH,light,180,UFO's over Londonderry, New Hampshire. +2012-12-31,44.9444444,-93.0930556,St. Paul,MN,sphere,300,Orange fireball looking UFO. +2012-12-31,35.1477778,-114.5675,Bullhead City,AZ,fireball,180,While on Patrol at Laughlin Ranch homeowners association 4 orange glowing light were seen by me and a second person...we both called th +2012-12-31,41.595,-72.6458333,Cromwell,CT,fireball,300,Five Orange Fireballs over Cromwell, Ct. +2012-12-31,43.2166667,-123.3405556,Roseburg,OR,circle,480,They came from the ground and went up at a same rate of speed. All the same color red and yellow. +2012-12-31,40.0083333,-79.0783333,Somerset (Western Pa; Highway 76),PA,oval,600,Orangish/Reddish Oval shaped craft. Hovering above Interestate 76. Was like looking up into a burning cauldron of fire. +2012-12-31,43.6136111,-116.2025,Boise,ID,fireball,180,Orange objects that looked like fireballs sighted in Boise then disappear. +2012-12-31,44.0583333,-121.3141667,Bend,OR,light,180,Two bright red/orange star-like lights that appeared stationary, possibly moving upward as they disappeared +2012-12-31,35.9827778,-86.5186111,Smyrna,TN,sphere,180,Orange/yellow sphere seen in middle tn area. +2012-12-31,44.0463889,-123.0208333,Springfield,OR,triangle,2,Triangle light formation with faces in the lights +2012-12-31,45.6797222,-111.0377778,Bozeman,MT,fireball,300,4 lights/fireballs travelling from north to east, moving slowly. No sound. +2012-12-31,32.7152778,-117.1563889,San Diego (South Park),CA,light,90,4 Amber Colored Lights Seen From San Diego (South Park) California on New Year's Eve December 31, 2012 +2012-12-31,44.1969444,-72.5025,Barre,VT,fireball,300,Prange fireball no tail. +2012-12-31,37.8716667,-122.2716667,Berkeley,CA,fireball,900,Blazing red UFO spotted in the Northern California sky Dec 31, 2012. +2012-12-31,30.3580556,-90.0655556,Mandeville,LA,sphere,2700,Redish/Orange orbs/sphere shaped objects floating by home in sets of two +2012-12-31,41.0241667,-80.615,Poland,OH,light,30,Red, round objects moving west to east in possible formation with no sound. +2012-12-31,43.6136111,-116.2025,Boise,ID,sphere,300,Series of orange orbs. +2012-12-31,26.6402778,-81.8725,Fort Myers,FL,formation,300,Strange formation of lights in western sky over Fort Myers, FL. +2012-12-31,44.5433333,-68.42,Ellsworth,ME,fireball,120,4 Orange Spheres flying in diamond formation. +2012-12-31,25.8191667,-80.3555556,Doral,FL,fireball,900,Flickering 3 soundless red and orange fireball looking balls over the Everglades side of the Turnpike. They shined for 15 minute interv +2012-12-31,31.8455556,-102.3672222,Odessa,TX,circle,300,Orange lights on sky. Lights were going slow and then vanished. It was about 8 lights in a line and vanished one by one. +2012-12-31,33.4147222,-111.9086111,Tempe,AZ,fireball,1800,Fireball shaped object flying from east to west then took a sharp turn south before heading back east then just disappears into the sky +2012-12-31,21.4447222,-158.19,Waianae,HI,circle,300,Strange hoovering, pulsating red/orange light. +2012-12-31,34.1336111,-117.9066667,Azusa,CA,triangle,240,Azusa lights. +2012-12-31,27.9472222,-82.4586111,Tampa,FL,diamond,240,LOW FLYING UFO STOPPED IN MID AIR OVER TAMPA, FL. THEN VANISHED! +2012-12-31,37.6391667,-120.9958333,Modesto,CA,light,120,Orange red flickering object moved steadily overhead in central California. +2012-12-31,47.4705556,-122.3455556,Burien,WA,oval,300,Amber colored oval shape floating/hovering west of Burien. +2012-12-31,34.0005556,-81.035,Columbia,SC,fireball,90,Respecfully i dont have time to type a full report,but tonight my family and i saw a object moving in a straight line at a speed around +2012-12-31,32.0833333,-81.1,Savannah,GA,triangle,600,Orbs spotted over savannah and s.c.. +2012-12-31,39.0436111,-77.4877778,Ashburn,VA,fireball,600,Some appeared out of nowhere, 1 hovered for several minutes and 2 change direction and then get back into formation. +2012-12-31,34.0983333,-118.3258333,Hollywood,CA,fireball,300,6 Beautiful red orb geometric formation fleet hovering over the Hollywood hills. Los Angeles, CA. +2012-12-31,46.5897222,-111.9147222,East Helena,MT,oval,30,Orangy colored aircraft with faceted lights and traveling the pace of an airplane but disappeared vertically into the sky after 30 sec. +2012-12-31,46.9102778,-117.0747222,Palouse,WA,light,60,At New Years, I observed two orange-red colored lights moving inline before turning straight upwards and disappearing into the clouds. +2012-12-31,36.0397222,-114.9811111,Henderson,NV,fireball,60,Square cube on fire hovering above the horizon for about a minute very close and then disappeared. +2012-12-31,38.5816667,-121.4933333,West Sacramento,CA,fireball,1800,30-35 Orange bright lights fly silently in line across Sacramento sky and disappear in same place - New Years Eve +2013-01-01,44.0583333,-121.3141667,Bend,OR,oval,180,www.youtube.com/watch?v=zE3H1q8yo9k I reported seeing bright red/orange lights on December 31, 2012 in Bend, OR. I later found this u +2013-12-31,37.3769444,-77.5061111,Chesterfield,VA,oval,2102400,Collection of orbs, rods and discs sighted in Virginia. +2013-12-31,36.175,-115.1363889,Las Vegas,NV,circle,120,4 red/Orange balls in a kite tail formation over the road. +2013-12-31,42.8508333,-72.5583333,Brattleboro,VT,fireball,900,Orange or flew 100 miles an hour at least and then disappeared in to spaces at least at speed some 20ꯠ mph. +2013-12-31,28.6608333,-81.3658333,Altamonte Springs,FL,sphere,600,After the family gathering on 12/31/13 and about 12:30 after midnight, family members were leaving my house and we all got outside to w +2013-12-31,64.8377778,-147.7163889,Fairbanks,AK,light,600,Six orange lights three differnt times from New Years Eve 11 pm to New Years Day 12:30 am. +2013-12-31,28.7027778,-81.3386111,Longwood,FL,sphere,120,Looked like slow-moving embers in a circular shape rising, leveling off, flying in straight line, then fading out. +2013-12-31,36.4072222,-105.5725,Taos,NM,triangle,900,3 very large red triangle shaped obkject. +2013-12-31,44.98,-93.2636111,Minneapolis,MN,other,900,I was standing near the corner of Washington and Oak St in Minneapolis, MN and noticed a long perfectly straight beam of like about 50m +2013-12-31,44.8622222,-93.5305556,Chanhassen,MN,triangle,300,Driving down the highway and saw two objects both having white triangular lights beneath with a red pulsating light in the middle. +2013-12-31,41.7636111,-72.6855556,Hartford,CT,unknown,900,UFO over State Capitol. +2013-12-31,38.4022222,-122.8227778,Sebastopol,CA,light,600,Unusually bright orange oblong blip in low western sky similar to Mars sighting but much brighter and slightly elongated. +2013-12-31,37.6138889,-122.4858333,Pacifica,CA,light,360,4 orange bright lights appear from the west, hoover and then they all dissapear. +2013-12-31,42.9855556,-72.6563889,Newfane,VT,unknown,120,Five orange sphere in night sky in Newfane, VT. +2013-12-31,46.4163889,-117.0441667,Clarkston,WA,fireball,540,Red/Orange fireball-type light moves east, then west, then ascends and dims out. +2013-12-31,32.7152778,-117.1563889,San Diego,CA,chevron,30,Firey object crossed the sky. +2013-12-31,26.525,-80.0666667,Boynton Beach,FL,sphere,480,2 glowing red spheres spaced 7 minutes apart traveling across Boynton Beach, FL. +2013-12-31,36.9741667,-122.0297222,Santa Cruz,CA,fireball,300,Reddish/Orange ball of light seen over Monterey Bay. +2013-12-31,46.6541667,-120.5288889,Selah,WA,fireball,900,4 fireballs in night sky. Shape seen. +2013-12-31,37.6625,-121.8736111,Pleasanton,CA,unknown,45,Orange glow. +2013-12-31,38.8966667,-121.0758333,Auburn,CA,circle,180,Illuminated large spher object, completely silent, sighted over Auburn, CA December 31, 7:58pm. Not fireworks..and we don't drink! +2013-12-31,45.6797222,-111.0377778,Bozeman,MT,other,600,Balloon-shaped, illuminated floating object in the night sky. +2013-12-31,41.9902778,-70.9755556,Bridgewater,MA,unknown,60,Red and green flashing lights from a flying object we couldn't make out or hear. +2013-12-31,33.3763889,-117.2502778,Fallbrook,CA,circle,180,Intense slow moving white light, size of medicine ball: no noise, no trail. +2013-12-31,30.0686111,-81.8605556,Middleburg,FL,sphere,420,4 Red Balls/Speres floating over Clay county Florida. +2013-12-31,28.2438889,-82.7194444,New Port Richey,FL,disk,1200,Orange balls of light zoomed in are orange pulsating hexagonal shaped discs. +2013-12-31,39.7391667,-104.9841667,Denver,CO,light,1800,Bright white orbs or points of light in cloud. +2013-12-31,61.3213889,-149.5677778,Eagle River,AK,other,360,Orange lights hovering in v formation, change formation and fade away over the Glenn Hwy. +2013-12-31,44.6366667,-123.1047222,Albany,OR,circle,900,New Years Eve 2013 sighting of four orange lights in Albany Oregon. +2013-12-31,45.3038889,-93.5669444,Elk River,MN,sphere,180,Two red pulsating spheres traveling in offset formation. +2013-12-31,47.7769444,-117.0938889,Newman Lake,WA,fireball,300,At 20:30, 12/31/2013, I spotted a light in the air above Newman Lake,WA, nearing Stateline Idaho. It was round and emitted orange light +2013-12-31,32.8472222,-117.2733333,La Jolla,CA,light,360,Orange balloon-like fireballs traveling upwards and slightly south from the Pacific Ocean and disappearing. +2013-12-31,32.5158333,-93.7319444,Bossier City,LA,circle,300,Bright white light traveling fast. +2013-12-31,26.1219444,-80.1436111,Fort Lauderdale,FL,circle,180,Strange reddish sphere w/bright yellow lights in center moving slowly, then hovering, then moving west again. +2013-12-31,26.8230556,-80.1388889,Palm Beach Gardens,FL,fireball,600,Two fireballs seen over Palm Beach Gardens, Florida. +2013-12-31,45.5236111,-122.675,Portland,OR,fireball,180,Just about ready to pull into my driveway when I spotted three orange fireball like objects west of our location. I told my wife what +2013-12-31,20.8366667,-156.3366667,Pukalani,HI,sphere,600,Orange Ball Over Maui. +2013-12-31,34.2255556,-77.945,Wilmington,NC,circle,30,Unknown light. +2013-12-31,44.0522222,-123.0855556,Eugene,OR,light,60,Orange light moving slowly then hovered then faded to pin sized dot and headed West. +2013-12-31,38.2541667,-85.7594444,Louisville,KY,sphere,45,Single bright light-orange orb moving from southwest to northeast at 9:15 PM on 12/31/13 in the 40207 ZIP Code of Louisville, KY. +2013-12-31,33.7222222,-116.3736111,Palm Desert,CA,diamond,600,Reddish/Orange "Top" shaped flashing spacecraft 12-31-13, Palm Desert, CA. +2013-12-31,34.4263889,-117.3,Hesperia,CA,light,600,Bright orange lights in the sky. +2013-12-31,45.4313889,-122.7702778,Tigard (Near),OR,fireball,3600,Large orange fireball witnessed on New Year's Eve near Tigard, OR +2013-12-31,45.5236111,-122.675,Portland,OR,fireball,10,Bright white object turned reddish-orange and switched direction at 45 degree angle at high altitude and speed. +2013-12-31,34.4208333,-119.6972222,Santa Barbara,CA,light,30,Orange ball of light. +2013-12-31,33.4222222,-111.8219444,Mesa,AZ,fireball,172800,I'm reporting very concerning sightings of non identifiable objects that are being launched into the sky. +2013-12-31,33.3041667,-96.9858333,Aubrey,TX,fireball,900,7 fireball orb type object over N TX on 12/31/13. +2013-12-31,34.0005556,-81.035,Columbia,SC,other,300,Big red orb hovering above treeline. +2013-12-31,35.7330556,-81.3413889,Hickory,NC,formation,120,I was taking my daughter to a friend's house when we saw several orange lights above the lake. They looked to be several thousand fee. +2013-12-31,39.3825,-77.2697222,New Market,MD,sphere,240,3 orange spheres (flame-like) objects seen traveling in the sky. +2013-12-31,28.2486111,-81.2813889,Saint Cloud,FL,fireball,300,Flickering fireball with no sound or tail. +2013-12-31,32.2216667,-110.9258333,Tucson,AZ,cross,240,Five bright amber lights in the Northwest over Tucson. +2013-12-31,43.6136111,-116.2025,Boise,ID,light,120,Strange Orange Light over Boise, ID. +2013-12-31,35.9555556,-80.0055556,High Point,NC,light,300,I am blown away about what I saw tonight, I live in the country and watch stars all the time and that is not what I saw tonight. +2013-12-31,40.7091667,-112.1008333,Magna,UT,circle,2700,Amber light, moving in wierd ways. +2013-12-31,40.8325,-115.7622222,Elko,NV,fireball,180,Three orange fireballs spotted by witness in Elko Nevada. +2013-12-31,45.6797222,-111.0377778,Bozeman,MT,sphere,2700,UFO's over Bozeman, MT? 12-31-2013. +2013-12-31,40.5186111,-74.4125,Edison,NJ,triangle,600,Four confirmed triangular bright orange objects travel and then dissappear above Edison, NJ USA. +2013-12-31,33.0580556,-112.0469444,Maricopa,AZ,sphere,180,Big bright orange yellow ball moving from north to south, got smaller then disappeared. +2013-12-31,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,600,While on vacation, I saw one medium sized orange circular fireball smoothly gliding in the air over the ocean, yet it turned in differe +2013-12-31,34.051944399999996,-118.0458333,South El Monte,CA,sphere,300,Abnormal red sphere moving fast stoping and fading away into nothing. +2013-12-31,40.5122222,-74.8597222,Flemington,NJ,light,600,Bright Orange lights over Hunterdon and Mercer Counties. +2013-12-31,39.1619444,-84.4569444,Cincinnati,OH,other,120,2 Strange lights that disappeared. +2013-12-31,64.8377778,-147.7163889,Fairbanks,AK,light,120,Orange light floating in night sky. +2013-12-31,34.7302778,-86.5861111,Huntsville,AL,changing,240,Orange lights then triangle. +2013-12-31,27.9472222,-82.4586111,Tampa,FL,sphere,600,Glowing purple sphere remained stationary and then moved up and down until disappeared below tree line. +2013-12-31,44.5647222,-123.2608333,Corvallis,OR,circle,60,2 amber lights dimming as ascending into sky. Moving then stopping. +2013-12-31,32.7938889,-79.8627778,Mt. Pleasant,SC,light,600,New Years eve ufos in Charleston, SC. +2013-12-31,27.9091667,-82.7875,Largo,FL,circle,180,Bright orange circular craft, silent and fast. +2013-12-31,37.9577778,-121.2897222,Stockton,CA,formation,300,Stockton UFO 2014. +2013-12-31,39.8208333,-84.0194444,Fairborn,OH,other,10,Three UFO's in triangle formation over the WPAFB sky. +2013-12-31,27.8425,-82.6997222,Pinellas Park,FL,light,900,Many orange and red lights traveling in formation. +2013-12-31,27.3361111,-82.5308333,Sarasota,FL,light,60,4 Strange lights fly across sky in Sarasota 12/31/13 just before midnight. +2013-12-31,34.9202778,-82.2963889,Taylors,SC,fireball,120,3 reddish-orange lights in the sky. +2013-12-31,30.6086111,-89.9,Bush,LA,light,480,New Year's Eve UFO. +2013-12-31,20.785,-156.4655556,Kihei,HI,circle,10,Orange orb traveling in a straight line with a south east direction. Happened above Kihei, Hawaii just before new year. Object disapp +2013-12-31,32.3122222,-106.7777778,Las Cruces,NM,other,1200,5 orange glowing orbs forming triangles and lines. +2013-12-31,37.775,-122.4183333,San Francisco,CA,sphere,900,5 pink/orange lights rising over Bernal Hill in San Francisco. +2013-12-31,37.775,-122.4183333,San Francisco,CA,light,180,A group of tiny fiery red star-sized lights. +1968-12-03,38.6694444,-91.56,Gasconade,MO,unknown,1800,Colored fog on ground. Mom wouldn't let me go outside to see what it was. I am a Nuc. Engr.Sisters & Person not yet born then has see +1973-12-03,41.4766667,-95.3377778,Avoca,IA,unknown,3600,Stationary bright white light that turned red and appeared to envelope the object once it started to move at a high speed. +1976-12-03,41.2222222,-73.0569444,Milford,CT,disk,7200,Saw five craft and observed signaling after work. +1976-12-03,39.5788889,-86.4822222,Monrovia,IN,triangle,1200,after being followed by a ufo, a beam of light shown down on my sister +1980-01-23,36.8527778,-75.9783333,Virginia Beach,VA,cylinder,1200,A "cylinder [shaped] object” that had a “white light with a red dot” and was “over roof top” and then “went behind the houses." +1984-01-23,45.6797222,-111.0377778,Bozeman,MT,cigar,600,Driving on I-90 East toward Bozeman at 6:45 a.m. over the mountains a huge cigar shaped white object (looked like sun reflecting off of +1985-12-03,41.5611111,-74.1888889,Walden,NY,oval,300,A brief account of the sighting that I hadon the evening of Tuesday, 3 December 1985,in Walden, NY. +1990-01-23,37.5536111,-77.4605556,Richmond,VA,triangle,60,The huge, silent craft seemed not use aerodynamics like planes; too huge, too slow to remain aloft. +1997-01-23,41.55,-71.4666667,North Kingstown,RI,triangle,180,1/23/97: Huge black triangle w/ rearguard heli, sighted over deserted Rte.1A in RI, drifts overhead & out to Sea. +1998-12-03,31.1955556,-98.7177778,San Saba County,TX,formation,2400,Glowing amber lights hovering in formation and morphing from 1 to 5 +1998-01-23,47.0016667,-114.4725,Alberton,MT,circle,3600,Seen blinking in and out, over the mountains overhead. No sound came from it. It stayed in the air for about an hour moving around. +1998-12-03,47.6816667,-122.2075,Kirkland,WA,triangle,60,I saw a wedged shaped craft with very bright lights, approx. 150 feet above the street near my home on December 3񫺎 at 11:30 pm. +1998-12-03,47.6816667,-122.2075,Kirkland,WA,triangle,60,On Thursday night, December 3, 1998, I was driving alone toward my home. At approximately 11:30 pm, I turned right onto Slater Street, +1999-12-03,38.1905556,-116.3691667,Warm Springs (Approx. 15mi. East Of 6),NV,sphere,2,Object came into view 135 above horizon white sphere streaking down near verticle seeming to have a tail. At 25 degrees above horizon +1999-01-23,41.85,-87.65,Chicago (1 Hours South Ofoff I 57),IL,disk,900,I tried to post this yesterday but could not get to the site so I wrote it all down on a wp so i would not get anything wrong +1999-01-23,29.1869444,-82.1402778,Ocala,FL,triangle,120,bright lights in front of the dark body of the object with perhaps windows over the lights +1999-12-03,34.3916667,-118.5416667,Santa Clarita,CA,circle,0.5,Streak across the sky moving from SE to NW, color was teal/silver irredescence. Holding out hand, size was thumb nail, above cirrus clo +1999-12-03,38.1302778,-121.2713889,Lodi,CA,fireball,145800,Strange fireballs on Dec. 03, 1999 on the West side of Lodi. They hung around for about four hours, and military planes flew over. +1999-01-23,42.6780556,-75.4988889,Sherburne,NY,oval,30,Witness a oval/diamond shaped object 40 feet in front of us that was pink and appeared to flash. +1999-01-23,37.5536111,-77.4605556,Richmond,VA,chevron,10,I was driving west on Grove Ave.in town,fog+low clouds above me.Suddenly+silently a triangular brightly lit craft passed over me at app +1999-12-03,36.9886111,-121.8052778,Corralitos,CA,disk,5,flying disk with erratic stop and go movement +2000-01-23,38.2325,-122.6355556,Petaluma,CA,disk,180,Object moved from South to North, at the speed of a plane.Appeared metallic. Saucer shaped, but about as tall as wide.About pea-sized, +2000-01-23,35.2333333,-106.6638889,Rio Rancho,NM,sphere,10800,Black object hanging in the sky possible cause of geese flock disappearance +2000-12-03,33.4483333,-112.0733333,Phoenix,AZ,disk,2700,large stationary saucer-shaped object visible from I-10. At some point, a military plane flew over it. Object at least 10 times larger +2000-01-23,34.09,-117.8894444,Covina,CA,oval,180,a lighted object moving across the sky... west to east... no sound, in a cloudy sky... +2000-01-23,34.0922222,-117.4341667,Fontana,CA,disk,300,The UFO was completely illuminated by light and spunned extremely fast. It's shape was of a saucer and it hoovered slowly over the cit +2000-12-03,41.1305556,-85.1288889,Fort Wayne,IN,other,5,Black boomerang moving north to south at 3000' with very faint amber lights below and made no sound at all. +2000-12-03,32.7833333,-96.8,Dallas,TX,light,2,what i saw could only be descibed as a green laser beam coming from the sky and it had a red "flame" coming from the back as it shot do +2000-12-03,37.9780556,-122.03,Concord,CA,circle,1500,Large bright light and circular disk shaped object that hovered for nearly 25 min and disapeared with out a trace. +2000-12-03,47.4066667,-122.0375,Maple Valley,WA,formation,300,3 LIGHTS SEEN IN FORMATION ABOVE MAPLE VALLEY, WA. (USA) ON 12/3/00 @ 11:20PM. +2000-12-03,38.6272222,-90.1977778,St. Louis,MO,cylinder,5,STRANGE DARK METTALIC OBJECT REFLECTS LIGHTS OF THE CITY ON BOTTEM OF SURFACE! +2001-01-23,40.8680556,-73.4261111,Huntington,NY,diamond,2700,Spotted a bright light, observed it for 1 to 2 hours at 10 minute intervls, the last time I went to look it was gone. +2001-12-03,33.4147222,-111.9086111,Tempe,AZ,light,2400,Star-like light visible with the sun risen +2001-01-23,30.4380556,-84.2808333,Tallahassee,FL,light,1200,UFO sighted in downtown Tallahassee, Fl, boomerang shaped, scalloped, made of light... +2001-12-03,32.6761111,-97.9405556,Brock,TX,fireball,300,What was over Texas 5-3-01 +2001-01-23,40.6080556,-74.2780556,Rahway,NJ,light,15,Two stationary lights shone then faded out in the evening sky near Venus. +2001-01-23,42.8597222,-89.5380556,Belleville,WI,sphere,30,blue spherical light traveling very fast +2001-12-03,28.8022222,-81.6447222,Mount Dora,FL,disk,120,i saw what i thought was a orange glowing haze or mist , so i ran and grabbed my binoculars, the object seemed to be close as i saw red +2001-12-03,37.5630556,-122.3244444,San Mateo,CA,sphere,300,A spherical craft shot into the air from a large patch of intensely bright light. +2001-12-03,28.3858333,-80.7422222,Cocoa,FL,sphere,1200,We saw a bright oval object with rings in the night sky slowly moving, with no sound. +2001-01-23,38.0194444,-122.1330556,Martinez,CA,light,600,Light in sky that constantly dulled and brightened while moving. +2001-12-03,34.0005556,-81.035,Columbia,SC,fireball,3,I saw a flaming object falling from the sky at a tremendous rate of speed. +2001-01-23,35.6708333,-80.4744444,Salisbury,NC,disk,60,The saucer hovered directly above and kept pace with my car ((NUFORC Note: No date indicated. Possible hoax. PD)) +2001-01-23,35.6708333,-80.4744444,Salisbury,NC,disk,60,I felt a strange presence around me as I was driving and looked up to see a saucer directly above my car. +2001-12-03,38.6038889,-89.8072222,Lebanon,IL,light,900,Bright Ball of light viewed from Lebanon Il. at 10:50pm originating from Southwest and exiting in the Northeast visible for 15 minutes +2001-12-03,39.9402778,-82.0133333,Zanesville,OH,triangle,360,3 friends and i saw 2 triangular crafts appear from the northwest sky. +2002-01-23,42.0805556,-70.9361111,Whitman,MA,other,30,Gaseous masses in the sky +2002-12-03,37.6819444,-121.7669444,Livermore,CA,light,300,Strange light that shrunk and disapeared +2002-01-23,32.7355556,-97.1077778,Arlington,TX,light,240,Sllver-White stationairy light viewed through 10 x 50 hand held binoculars +2002-12-03,40.7280556,-74.0780556,Jersey City,NJ,sphere,5,Single white orb appeared out of nowhere, hovering for a moment before shooting out of sight. +2002-12-03,40.7325,-73.4458333,Farmingdale,NY,triangle,10,A large triangle or boomerang shaped craft, making no sound glided over my house. +2002-01-23,33.9255556,-116.8755556,Banning,CA,chevron,600,A structure of lights, resembling the Phoenix Lights, appeared near Banning & Morongo, California on 01/23/02 at 1910 hrs. +2002-12-03,33.4483333,-112.0733333,Phoenix,AZ,triangle,5,at aprox.2030hrs i saw what appered to be a triangular shaped object,that appeared to be red orange moving at a very high rate of speed +2003-12-03,38.0863889,-83.1263889,Sandy Hook,KY,oval,2,crying sound bright lights overhead +2003-01-23,44.7488889,-92.8019444,Prescott,WI,unknown,120,Helicopter like object shoot across the sky like a meteroid, as it was chased by Military Aircraft, and left a strange trail. +2003-01-23,44.4372222,-90.9111111,Alma Center,WI,chevron,120,I was coming home from work. It was very cold and the night or morning sky was clear. For the past two mornings just before sunrise I +2003-12-03,35.9216667,-81.1766667,Taylorsville,NC,unknown,54000,Two Clouds moving at the speed of Light +2003-01-23,34.1808333,-118.3080556,Burbank,CA,light,240,Amber colored lights over burbank i saw 6 new years day and have been seeing more since then. +2003-12-03,39.6172222,-104.9502778,Greenwood Village,CO,circle,10,Object disappeared after changing color +2003-12-03,41.9902778,-70.9755556,West Bridgewater,MA,unknown,45,Large gray object viewed for approx 30-45 sec +2003-12-03,34.1347222,-79.94,Timmonsville,SC,other,240,LOng cloud like object races across the sky +2003-12-03,32.9411111,-97.1338889,Southlake,TX,oval,600,Oval with a red light at the bottom. Flying at an angle. +2003-12-03,38.3433333,-120.5111111,Rail Road Flat,CA,unknown,2700,Multi Colored Object seen in Calaveras County,CA +2003-12-03,42.4394444,-83.7438889,Whitmore Lake,MI,unknown,2700,Crafts with multi-color lights shift speeds and hover in place and move in different directions; flashes of light hop around theobjects +2003-12-03,25.7738889,-80.1938889,Miami,FL,flash,3,Bright Blue/Greenish White flash in the Eastern sky falling to the SE +2003-01-23,33.3527778,-111.7883333,Gilbert,AZ,light,660,I saw an orange halogen colored light hovering in the southwest horizon over the Chandler area. +2003-12-03,39.6416667,-77.7202778,Hagerstown (South Of, On I-81),MD,triangle,60,I-81 south of Hagerstown MD, we saw what appeared to be a large, triangular object hovering just above the trees. +2003-12-03,29.1894444,-98.8622222,Natalia,TX,sphere,5400,1 illuminated orb.Stationary near watertower on hillside.90 min. of video taken. +2003-12-03,33.6888889,-78.8869444,Myrtle Beach,SC,light,30,Series of lights, lighting in sequence from right to left, and fading out in same sequence. +2003-01-23,38.2972222,-122.2844444,Napa,CA,changing,3,Orange glowing glob of light shifting shapes like a lava lamp one night while driving. +2004-01-23,48.62,-122.34,Alger,WA,egg,3,Large bright egg shaped flash +2004-12-03,39.9625,-76.7280556,York,PA,other,900,Strange glows appeared in sky, moving about in realativly close range. +2004-01-23,40.2113889,-76.1236111,Reamstown,PA,formation,45,Lights in the sky +2004-01-23,32.9311111,-96.4594444,Rockwall,TX,other,120,January 2004 , two sigtings, 3 objects +2004-01-23,41.0338889,-73.7633333,White Plains,NY,triangle,15,Strange Flying Triangled shaped object +2004-12-03,37.9886111,-84.4777778,Lexington,KY,sphere,120,Twenty white objects spotted hovering over University of Kentucky campus +2004-12-03,41.4819444,-81.7983333,Lakewood,OH,cigar,3,Cigar shaped ufo along with heavy military air traffic in the area +2004-12-03,32.9341667,-97.0777778,Grapevine,TX,fireball,2,Bright Blue flash seen in the N.W. sky. +2004-01-23,33.4966667,-81.2794444,Springfield,SC,oval,300,amazing colors, not an airplane something totally different +2004-12-03,34.0522222,-118.2427778,Los Angeles,CA,triangle,60,Huge triangle with red lights +2004-01-23,38.4405556,-122.7133333,Santa Rosa,CA,light,300,bright light - high altitude crossing sky at high velocity, (no collision beacons). +2004-12-03,33.9022222,-118.0808333,Norwalk,CA,cigar,30,While taking my dog out for a potty call last night, i happened to look up in the eastern region of the sky and saw a very unusual UFO. +2004-12-03,41.1586111,-101.0022222,Hershey,NE,rectangle,300,Spinning and sliding sideways group of light that were Rectanglure in shape +2004-12-03,40.9730556,-117.7347222,Winnemucca,NV,triangle,10,Viewed a large V shaped pattern of square lights moving quickly overhead from NE to SW. +2004-12-03,42.0969444,-79.2355556,Jamestown,NY,formation,3600,horizontal ovular formation of white lights rippling through clouds +2004-12-03,38.5816667,-121.4933333,Sacramento,CA,disk,10,Saucer orbiting the moon very close to its surface. +2005-12-03,32.7961111,-108.1497222,Fort Bayard,NM,light,3,Like a big star the biggest one !!! i was at work around 3 am and it was hot in the unit so i went out for a moment and i sow this calm +2005-12-03,33.9561111,-83.9880556,Lawrenceville,GA,light,300,A UFO over Lawrenceville, GA travelling due South which faded as it crossed the sky, followed by an aircraft. +2005-01-23,41.85,-87.65,Chicago,IL,other,2700,I saw something strange in the sky today. I was facing north in chicago next to the lake. A bright object which you would think was a +2005-12-03,40.4416667,-74.1302778,Keansburg,NJ,light,3600,Large Bright stationary object over the atlantic gets attention from other aircraft. +2005-12-03,42.4405556,-76.4969444,Ithaca,NY,light,5400,Bright round light, getting smaller then larger, sometimes with a red light within it +2005-12-03,37.775,-122.4183333,San Francisco,CA,triangle,20,Two large Triangle shaped objects that flew over San Francisco Bay Area near Mt. Davidson +2005-12-03,27.0438889,-82.2361111,North Port,FL,circle,14400,one object, like large, overly bright star, circular, emitting flashes of color, moving slowly to SW from Latitude N 27.0917 Long W 82 +2005-12-03,33.9022222,-118.0808333,Norwalk,CA,light,300,Pulsating Magenta light over L.A. County +2005-12-03,38.6780556,-121.175,Folsom,CA,formation,5,I was in my backyard the night of 12/3/05, admiring my landscaping. There was a formation of 4 lights rapidly moving from west to north +2005-12-03,37.2705556,-76.7077778,Williamsburg,VA,light,10800,4 dancing lights AGAIN IN VIRGINIA!! THIS TIME DISAPEAR WITH A HUGE SONIC BOOM!! +2006-12-03,40.3077778,-75.9658333,Shillington,PA,circle,120,two objects in western sky +2006-12-03,39.5491667,-76.0919444,Havre De Grace,MD,fireball,210,((HOAX??)) CRESENT SHAPED FIRE OBJECT SEEN IN WOODS. +2006-12-03,39.0330556,-84.4519444,Highland Heights,KY,other,3000,Fireball vapor ships observing us from the sky +2006-12-03,37.1388889,-88.4033333,Smithland,KY,cylinder,180,It looked like an airplane without wings or tail. +2006-12-03,37.6194444,-84.5780556,Lancaster,KY,cigar,60,I witnessed the exact same object as the guy from smithland. It was reflecting the sun, but from what I could perceive, it was silvery +2006-01-23,37.0113889,-80.0497222,Callaway,VA,light,15,Round bright lights moving rapidly seen over mountain in Callaway Virginia January 2007 +2006-12-03,36.0544444,-112.1386111,Grand Canyon,AZ,light,30,Very bright light flying through sky, very fast. ((NUFORC Note: Possible hoax, we believe. PD)) +2006-12-03,39.1405556,-121.6158333,Yuba City,CA,unknown,600,While walking my dog on the feather river levee at night, I noticed a floating light bar on the oppisite side (east) of the river. At f +2006-12-03,34.0522222,-118.2427778,Los Angeles,CA,circle,3,Bright Green Light Moving Quickly Across Sky +2006-12-03,41.31,-122.3094444,Mount Shasta,CA,oval,14400,Pulsating, rotating lights at approx 40-50deg. angle, ESE of Mt. Shasta, at least 2-4 hrs. ((NUFORC Note:Possibly Sirius? PD)) +2006-01-23,31.9972222,-102.0775,Midland,TX,light,300,Strange flashes of light near Sirius. +2007-01-23,47.2997222,-96.515,Ada,MN,teardrop,2520,Teardropped shaped objects floating in the sky heading southwest out of ADA minnesota +2007-12-03,40.4258333,-89.7791667,Manito,IL,formation,300,Bright orange spheres over central illinois +2007-01-23,39.2902778,-76.6125,Baltimore,MD,triangle,60,Silver dots in triangle shape at noon on Saturday +2007-12-03,35.9152778,-94.9697222,Tahlequah,OK,circle,180,Four silver "dots" flying perfectly in synch with one another over Oklahoma. +2007-12-03,35.0844444,-106.6505556,Albuquerque,NM,unknown,10,saw a blue meteor falling in eorth east ski burnning out twenty seconds later saw bright lite in sky the light fadded out then dissapea +2007-01-23,40.7141667,-74.0063889,New York City (Staten Island),NY,circle,1010,((HOAX???)) 3 Bright silver circlur objects hover over our home !!!!!!!!!!!!! +2007-12-03,37.7741667,-87.1133333,Owensboro,KY,light,15,Bright light passing over slowly overhead to the south then dissapears slightly north. +2007-12-03,36.1102778,-105.7261111,El Valle,NM,sphere,240,Bright spherical object turning from white/yellow/orange/red moving NE across sky - just disappeared. +2007-01-23,45.8152778,-122.7413889,Ridgefield,WA,light,600,eating dinner and noticed a light hovering 5 miles away. It was not moving it just hovered thier. +2007-12-03,35.0844444,-106.6505556,Albuquerque,NM,circle,600,Bright Round Shape directly above heads.... +2007-12-03,35.0844444,-106.6505556,Albuquerque,NM,unknown,15,Observed extremely high altidude single bright round light go from bright to dim and slowly float away. ((NUFORC Note: Irisium?? PD)) +2007-01-23,30.5619444,-81.8308333,Callahan,FL,light,60,Light Formation. ((NUFORC Note: Advertising lights?? PD)) +2007-01-23,36.6775,-76.9227778,Franklin,VA,triangle,300,Three big orange lights in triangle formation +2007-12-03,33.1958333,-117.3786111,Oceanside,CA,circle,1200,Glowing Orange Ball In Sky, Maneuvering Capabilities, Have Photos witnessed by 4 people +2007-01-23,47.6063889,-122.3308333,Seattle,WA,light,4,Two red balls of light heading East to West over Seattle on converging paths. +2007-01-23,39.7491667,-77.3833333,Carroll Valley,PA,fireball,900,orange round object in field +2007-01-23,33.4052778,-86.8113889,Hoover,AL,triangle,120,Triangle shaped, white lights on the side, red light in middle. hovered over trees for a couple min. +2007-01-23,39.1580556,-75.5247222,Dover,DE,triangle,300,Silent, triangular craft hovering over a field within one mile of airforce base +2007-12-03,20.785,-156.4655556,Kihei,HI,light,10,Two mysterious silent lights flying along the shorline with very fast,precise, sporatic movements !!!!!!!! +2008-12-03,35.9938889,-78.8988889,Durham,NC,diamond,900,Have a picture of digital photo/ UFO. 500 Lights On Object0: Yes +2008-12-03,29.4238889,-98.4933333,San Antonio,TX,oval,2,I witnessed a bright blue object that appeared to move downwards and vanish in about 2 seconds +2008-12-03,35.9938889,-78.8988889,Durham,NC,diamond,2,Have a picture of digital photo/ UFO. +2008-01-23,47.6063889,-122.3308333,Seattle,WA,teardrop,180,Teardrop-shaped, pulsating, hovering object seen over water +2008-01-23,37.4283333,-121.9055556,Milpitas,CA,circle,1200,small winking light traveled across sky, then stopped and hovered +2008-01-23,42.3369444,-71.2097222,Newton,MA,disk,60,I took my dog out and saw a lit up saucer shaped space craft for about 1 min in the sky and then it just turned off like a lightbulb +2008-01-23,41.5261111,-87.8891667,Mokena,IL,triangle,180,While waiting in my vehicle at my daughter's bus stop in -4 degree weather, we both witnessed a very large object in the northern part +2008-01-23,27.4463889,-80.3258333,Ft. Pierce,FL,light,2,Florida I-95 Brief, hard to explain sighting +2008-12-03,32.2216667,-110.9258333,Tucson,AZ,sphere,30,One spherical silver object was sighted for 15 seconds in the central Tucson skies below a plane with contrails heading East . +2008-01-23,37.1041667,-113.5833333,St. George,UT,other,1200,3 objects hanging above St. George +2008-12-03,47.3225,-122.3113889,Federal Way,WA,unknown,25,lights by boeing feild +2008-01-23,40.3872222,-75.1469444,Plumsteadville,PA,diamond,300, My girlfriend, her sister, my little sister, and myself were coming back from running errands on Friday 1/23/09. We were coming back +2008-01-23,40.8558333,-73.2011111,Smithtown,NY,disk,900,3 gold objects in a triangle formation all move in seperate directions during a full moon and one disappears and comes back. +2008-12-03,44.5366667,-122.9058333,Lebanon,OR,circle,120,Bright, amber object in the sky with brilliant, glittering, colored lights throughout. 500 Lights On Object0: Yes +2008-01-23,28.665,-80.845,Mims,FL,other,120,lighted object(s) moved from north to south, southwest while in a vertical position +2008-01-23,28.665,-80.845,Mims,FL,other,180,3 unidentified craft/yellow lights/totally silent/observed 3 minutes/ flying SSW 19:17 hrs towards Orlando +2008-01-23,36.8083333,-76.7444444,Windsor,VA,light,10,two lights shoot from East to West in Virginia +2008-12-03,38.7208333,-75.0763889,Rehoboth Beach,DE,other,10,Odd panel of four orange lights spotted above Atlantic Ocean before quickly fading out. +2008-01-23,30.2669444,-97.7427778,Austin,TX,disk,120,Bright Stange Lights and Dissapeared +2009-01-23,28.9002778,-81.2638889,Deltona,FL,sphere,10,Spherical object hovers 20 feet above road +2009-01-23,42.5802778,-83.0302778,Sterling Heights,MI,light,35,Home and Yard Lit up By Solid White Light, Surrounded By Colored Lights 500 Lights On Object0: Yes +2009-01-23,40.29,-76.9341667,Enola,PA,triangle,60,Large triangle of lights near Enola, PA +2009-01-23,41.8791667,-73.4772222,Sharon,CT,triangle,420,Conn. silent object +2009-12-03,37.1041667,-113.5833333,St. George,UT,light,10,Flashed like igniting twice then sped off super sonicly. +2009-01-23,30.2238889,-92.0197222,Lafayette,LA,formation,600,I saw a triangle formation in the sky of eight bright red lights. +2009-01-23,42.1013889,-72.5902778,Springfield,MA,light,2,Bright green light above the mass pike. Fell to ground then disappeared. +2009-01-23,40.2694444,-74.5236111,Hightstown,NJ,triangle,60,Sighting in Hightstown UFO! +2009-12-03,27.0438889,-82.2361111,North Port,FL,unknown,5,Something falling out of the sky, dimming my skylight, followed by a loud explosion heard throughout the neighborhood. +2009-12-03,47.1855556,-122.2916667,Puyallup,WA,sphere,60,A silent orange orb flew south and east of my position. Very hard to identify. +2009-01-23,40.3872222,-75.1469444,Plumsteadville,PA,diamond,360,Large unidentified object located only 100-150 ft. above us, diamond shape, four dominant lights +2009-01-23,41.6005556,-93.6088889,Des Moines,IA,oval,360,object first appeared to be aircraft with search lights on. ((NUFORC Note: Venus?? PD)) +2009-01-23,30.275,-89.7811111,Slidell,LA,sphere,7200,Bright red, green , white and blue sphere shaped object. ((NUFORC Note: We suspect Sirius or Venus. PD)) +2009-01-23,48.6969444,-122.9041667,Eastsound,WA,light,7200,Very bright light that we thought was a planet at first, moved north/south dimmed and brightened. ((NUFORC Note: Venus. PD)) +2009-01-23,31.1238889,-97.9027778,Copperas Cove,TX,changing,1200,Shift and Light Shifting object high over Copperas Cove, Texas. ((NUFORC Note: Venus?? PD)) +2009-12-03,41.995,-88.1855556,Bartlett,IL,light,600,Light followed by military next day. +2009-01-23,32.5888889,-96.3086111,Kaufman County,TX,light,1800,My wife and I were returning home when we saw a bright light in the western sky ((NUFORC Note: Venus. PD)) +2009-01-23,41.8458333,-70.95,Lakeville,MA,circle,10,white light with green haze around it +2009-01-23,29.4238889,-98.4933333,San Antonio,TX,light,3600,Bright Light Fading in and Out in Southwestern part of the sky. ((NUFORC Note: Venus. PD)) +2009-12-03,27.6383333,-80.3975,Vero Beach,FL,light,30,Slow-moving amber light heading east over ocean. Then disappeared. +2009-01-23,38.1141667,-82.6033333,Louisa,KY,triangle,120,The object shot across the sky then suddenly came to a stop in mid air. +2009-01-23,42.3583333,-71.0602778,Boston,MA,cigar,1800,Two cigar shaped craft spotted lowering object into the boston side of the charles river. 500 Lights On Object0: Yes +2009-01-23,36.7477778,-119.7713889,Fresno,CA,triangle,180,red glowing lights form triangle +2009-01-23,29.9938889,-90.2416667,Kenner,LA,light,1200,Three lights travelling in a clockwise pattern behind my home. +2010-01-23,28.6119444,-80.8077778,Titusville,FL,triangle,3,this triangle ufo was transparent and able to disappear +2010-01-23,39.5297222,-119.8127778,Reno,NV,cigar,300,bright beam of light may have landed in reno, nevada +2010-01-23,39.1638889,-119.7663889,Carson City,NV,light,6,3 blue lights over carson city in the vicinity of E 5th st. +2010-12-03,32.6727778,-114.1461111,Wellton,AZ,sphere,15,neon blue sphere came by moving slow until two jets came over the mountain then slowed way down got behind it for a moment then the sph +2010-12-03,32.948055600000004,-96.7294444,Richardson,TX,oval,1200,bright light following an airplane, then stoped in mid air. +2010-01-23,36.6177778,-121.9155556,Pacific Grove,CA,light,480,Observed 17 small light moving below the moon at 15:20PST on Saturday 1/23/10. +2010-12-03,38.6272222,-90.1977778,St. Louis,MO,other,480,bright long shaped object in sky illuminated by circling spotlight. ((NUFORC Note: Possible sighting of Venus?? PD)) +2010-12-03,29.1869444,-82.1402778,Ocala,FL,teardrop,600,Saw a shiny, tearshaped object that was at first stationary and then moving slowly in a downward arc. +2010-12-03,33.1191667,-117.0855556,Escondido,CA,light,300,Pulsing light seen in South Escondido, CA was very fast and like nothing I have ever seen. +2010-12-03,34.1705556,-118.8366667,Thousand Oaks,CA,fireball,120,Yellowish Light or fireball seen Zig-Zagging over Thousand Oaks, possible earthquake light? +2011-12-03,35.0525,-118.1730556,Mojave,CA,disk,120,UFO Transported from Edwards Base to Area 51 +2011-01-23,34.8697222,-111.7602778,Sedona,AZ,cone,600,2nd Encounter. Two Cone Shapped Craft Spotted over Same Pasture and felid as last time. Again, one emitted beam over Felid. Then shot b +2011-12-03,38.6272222,-90.1977778,St. Louis (Afton),MO,circle,180,Round craft on a heading at about 340* over St. Louis, Missouri +2011-01-23,35.1322222,-118.4480556,Tehachapi,CA,light,1800,Bright light over Tehachapi, Ca +2011-12-03,38.8138889,-76.9458333,Temple Hills,MD,unknown,3600,((HOAX??)) UFO Activity - Likely Associated with reports submitted between 11/18 /2011- 11/21/2011 +2011-12-03,36.2497222,-81.1158333,Hays,NC,light,60,I saw this on 12/03/11 at right around 6:45 pm on Airport Rd. in Hays, NC. I was driving and the light caught my eye I thought it was a +2011-12-03,39.5522222,-84.2333333,Springboro,OH,triangle,240,Bright light turns into three lights and a triangle shape craft +2011-12-03,33.3458333,-84.1091667,Locust Grove,GA,rectangle,3,Green glowing rectangular object falls at angle. ((NUFORC Note: Several other reports about this event. PD)) +2011-12-03,33.8388889,-83.9008333,Loganville,GA,light,4,Green light seen going across sky heading east +2011-12-03,39.515,-84.3983333,Middletown,OH,formation,300,Triangular formation over Middletown, Ohio +2011-12-03,39.5522222,-84.2333333,Springboro,OH,fireball,60,Unlike anything I have ever seen. 3 bright lights almost in a row and very large. +2011-12-03,39.7588889,-84.1916667,Dayton,OH,light,300,Two pilots spot three UFOs south of downtown Dayton, Ohio. +2011-12-03,35.6969444,-82.5608333,Weaverville,NC,circle,600,Me and 3 friends saw two weird orbs of speeding light to the north and south of weaverville. 500 Lights On Object0: Yes +2011-12-03,41.2377778,-80.6644444,Vienna,OH,light,5,Blue/Green light seen by 2 people. Myself and my husband which he is a AF Reservist. +2011-12-03,30.2944444,-81.3933333,Jacksonville Beach,FL,triangle,15,Upon leaving out condo I was compelled to look up. I immediately looked up and saw something either solid black or something of no mas +2011-12-03,38.2855556,-85.8241667,New Albany,IN,triangle,120,Large, hovering, triangular shaped object(s) in New Albany, Indiana. +2011-12-03,45.3566667,-122.8388889,Sherwood,OR,light,360,A bright indistinguishable light that emitted another object, and then both disappeared. +2012-12-03,25.7738889,-80.1938889,Miami,FL,light,180,Red lights flying over Miami, Florida, December 3rd 2012. +2012-12-03,34.1705556,-118.8366667,Thousand Oaks,CA,flash,1800,Loud sound and a search light coming from sky - definitely not a helicopter. +2012-12-03,33.5205556,-86.8025,Birmingham,AL,sphere,180,Luminated orb. +2012-01-23,42.3369444,-77.3180556,Bath,NY,light,900,Lights over Bath, NY +2012-12-03,29.9688889,-95.6969444,Cypress,TX,other,15,Light with trail and a flash in the sky over Cypress, Texas. +2012-12-03,30.4211111,-87.2169444,Pensacola,FL,light,60,Bright white light in day sky. +2012-12-03,42.0986111,-75.9183333,Binghamton,NY,light,600,Bright reddish lights over town, during rush hour. +2012-12-03,34.7463889,-92.2894444,Little Rock,AR,cigar,15,Cigar shaped light bulbs in the sky. +2012-12-03,42.0666667,-71.3286111,Wrentham,MA,teardrop,180,White Glowing teardrop shaped object Way way up , flashes off and on- changed shape. Higher than commercial jet. +2012-12-03,38.3030556,-77.4608333,Fredericksburg,VA,changing,300,White-yellow luminous object seen ascending and leaving area. +2012-01-23,19.7297222,-155.09,Hilo,HI,oval,120,Amber light over Hilo +2012-12-03,40.66,-111.9955556,Kearns,UT,light,600,Oberserved multiple orange ascending upwards and faded away. +2012-01-23,61.2180556,-149.9002778,Anchorage,AK,sphere,120,Red lights in line formation coming over the mountains in Anchorage Alaska. +2012-01-23,32.7833333,-96.8,Dallas,TX,fireball,60,Orange Fireball in the sky +2012-12-03,41.4019444,-74.3247222,Goshen,NY,fireball,20,Orange Fireball fell from sky on angle towards south west seen from Goshen NY. +2012-12-03,42.1958333,-70.7263889,Scituate,MA,light,2700,Wife and I saw bouncing red white and blue light in the sky. What's making swaying motions and bouncing. Same crap that we had witnesse +2013-01-23,42.865,-71.3744444,Londonderry,NH,rectangle,50,My Location - Londonderry, NH . The object was in the direction above Derry, NH - unexplainable. +2013-12-03,42.9708333,-82.425,Port Huron,MI,sphere,7200,Round white light with odd circular travel pattern in eastern sky near Canadian/US border. +2013-12-03,41.0352778,-111.9377778,Kaysville,UT,sphere,180,Seemed to have four lights illuminating from each side of the sphere. +2013-01-23,40.8372222,-81.2597222,Louisville,OH,circle,2,I was driving to work and saw a bright orange light high in the sky. I initially thought airplane but it was only orange light no red. +2013-01-23,46.2113889,-119.1361111,Kennewick,WA,oval,30,Object appeared in the early morning sky, was seen by more than one person, and affected the power in the immediate area. +2013-12-03,30.19,-98.0863889,Dripping Springs,TX,cigar,480,Intense bright white light that turned into cigar-shaped object seen in daylight outside of Austin, TX. +2013-12-03,29.6513889,-82.325,Gainesville,FL,light,120,Very strange and interesting. +2013-12-03,37.5536111,-77.4605556,Richmond,VA,light,2,Green and Red lights in the sky around 5:15 PM, Richmond,VA.on I-64 +2013-12-03,26.625,-81.625,Lehigh Acres,FL,fireball,900,Comet Like fire ball turned into craft disappeared into cloud the emerged with another craft behind it. +2013-12-03,28.0391667,-81.95,Lakeland,FL,light,420,saw one craft with horizontal jet stream come to a stop then split into two crafts with tear dropped orb surrounding them then began to +2013-12-03,26.6155556,-80.0572222,Lake Worth,FL,fireball,180,Main craft strange plume. Two fireballs split off. +2013-12-03,26.6155556,-80.0572222,Lake Worth,FL,fireball,60,Main craft, strange plumes, 2 'fireball-like' objects broke away from main object +2013-12-03,26.2375,-80.125,Pompano Beach,FL,changing,360,a large object entering the atmosphere from NW to SE followed by a very bright trail I estimate the altitude of 10ꯠ ft when the obje +2013-12-03,26.6155556,-80.0572222,Lake Worth,FL,formation,300,Fiery orange object splits into 3 silver objects. +2013-12-03,28.1805556,-82.6819444,Trinity,FL,fireball,60,Fireball in the sky over Wesley Chapel, Florida. +2013-01-23,42.4905556,-71.2766667,Bedford,MA,light,5,Bright Light in sky sped away at incredible speed. +2013-01-23,42.7652778,-71.4680556,Nashua,NH,fireball,3,Bright green fireball seen falling across sky in Nashua, NH. ((NUFORC Note: Possible meteor?? PD)) +2013-12-03,26.7080556,-80.2308333,Royal Palm Beach,FL,teardrop,180,Everyone that saw admitted never seen anything like it +2013-12-03,39.1111111,-76.9327778,Burtonsville,MD,light,1800,Bright, very slow moving light with blue sparkles seen by 5 for 30 minutes above Silver Spring, MD. +2013-12-03,27.8161111,-80.4708333,Sebastian,FL,fireball,180,fireball in sky +2013-01-23,29.3683333,-94.9711111,La Marque,TX,cigar,30,Glowing, pulsating, orange neon tube in the sky. +2013-12-03,26.625,-81.625,Lehigh Acres,FL,fireball,60,Strange lights cause separate vapor trails. ((NUFORC Note: Possible contrails, we wonder. PD)) +2013-12-03,32.7355556,-97.1077778,Arlington,TX,sphere,2700,Large white orb with glow around it in south west Texas sky. ((NUFORC Note: Possible sighting of Venus? PD)) +2013-12-03,26.5216667,-82.1894444,Captiva,FL,fireball,20,13TH SIGHTING OF AN ORANGE “FIREBALL. THIS ONE WAS SMALL AND CHANGED COLORS, THEN SPLIT IN TWO. +2013-12-03,28.5491667,-81.7730556,Clermont,FL,circle,120,UFO traveling from north to south near Clermont, FL area; went down, then up, and then disappeared across sky. +2013-12-03,32.2216667,-110.9258333,Tucson,AZ,light,5,Three large orange lights in a row. +2013-12-03,42.2458333,-122.7875,Talent,OR,unknown,60,I live in Southern Oregon along Interstate 5. I was out throwing a ball for my dog tonight, it was super dark and very cold, so per +2013-12-03,42.3266667,-122.8744444,Medford,OR,circle,1800,Multi-color lights flashing a pattern. ((NUFORC Note: Probable sighting of star, Sirius. PD)) +2014-01-23,39.8438889,-74.7105556,Tabernacle,NJ,unknown,240,Object in eastern sky in south New Jersey. +2014-01-23,34.7302778,-86.5861111,Huntsville,AL,triangle,120,Large Aircraft int he shape of a triangle, with each end having 1 red light. Flying very low, and very fast. Extremely loud. +2014-01-23,35.7719444,-78.6388889,Raleigh,NC,disk,3,4 Clear Disk-shaped UFOs over Raleigh, N.C.. +2014-01-23,42.7647222,-71.4402778,Hudson,NH,circle,1200,Hudson, NH, ufo sighting. +2014-01-23,40.4213889,-79.9436111,Greenfield,PA,light,180,((NUFORC Note: Source of report provides no information. PD)) +2014-01-23,39.0175,-122.0566667,Arbuckle,CA,sphere,1200,Quiet floating balls. Reflecting sun light. +2014-01-23,40.9805556,-111.8866667,Farmington,UT,oval,240,Bright orange object, seemed to be heading north/west, moving fast. +2014-01-23,31.6038889,-89.1955556,Ellisville,MS,triangle,120,7 objects flying in a straight line all 7 had 3 triangular red lights. +2014-01-23,43.4194444,-83.9508333,Saginaw,MI,triangle,120,There were at least 5 lights and 1 to 2 red beacon lights. No sound, no movement. +2014-01-23,33.0580556,-112.0469444,Maricopa,AZ,unknown,1200,2 unmoving orange lights seen SW of Maricopa, Az. +2014-01-23,42.3694444,-71.9486111,Rutland,MA,oval,240,Oval aircraft 100 yards away flying over tree line then flying away Green flashing lights on bottom. +2014-01-23,33.4483333,-112.0733333,Phoenix,AZ,circle,1500,Looking from North Valley which seemed in direction of Deer Vally Airport I saw 3 flashing balls appeared to have multiple colors and +2014-01-23,33.7811111,-113.6138889,Salome,AZ,light,120,4 pairs of lights in Sky in path of Helicopter. +2014-01-23,28.6697222,-81.2083333,Oviedo,FL,fireball,180,Bright orb that accelerated very quickly. +2014-01-23,27.6383333,-80.3975,Vero Beach,FL,fireball,60,Looks like a fire ball. +2014-01-23,45.4077778,-122.5691667,Clackamas,OR,light,300,Small lights in the sky over Clackamas, Oregon. +2014-01-23,33.6675,-84.0177778,Conyers,GA,sphere,5,Small red light floating in my yard. +2014-01-23,25.7738889,-80.1938889,Miami,FL,fireball,60,Red "plasma" ball of light traveling south to north over the Everglades, complete with tail/corona. +2014-01-23,43.0063889,-108.8816667,Fort Washakie,WY,light,3600,Observed a still standing white silver red light blinking. +2014-01-23,40.0455556,-86.0086111,Noblesville,IN,triangle,300,Large Dark Triangular shape with lights. +1974-01-24,41.8786111,-71.3830556,Pawtucket,RI,disk,3600,R.I. sphere shaped object landed on flat top three door garage. 1974 .the beams still show cracks that developed from the weight +1974-01-25,41.8786111,-71.3830556,Pawtucket,RI,disk,3600,I reported the UFO sighting in Pawtucket R.I.of 1974 that you have on your website. +1984-01-24,42.0925,-88.8511111,Kirkland,IL,circle,1200,((HOAX??)) Dammed scared and we all went home. Noone believed us and we just didnt talk about it anymore +1984-12-04,41.5113889,-78.2355556,Emporium,PA,circle,3600,three lights over emporium pa +1989-12-04,28.6647222,-82.1130556,Bushnell,FL,triangle,300,I saw a slow moving triangle shaped craft moving northward. It's perimeter was light up a burgundy color. +1994-01-24,34.0522222,-118.2427778,Los Angeles,CA,disk,300,my friend and Isaw saucer craft -silent -eight glowing orbs underneath-with colors-traveled overhead +1995-12-04,32.2686111,-107.7580556,Deming,NM,changing,3600,Driving I10 west of Las Cruces NM a random shape object visable for more than 60 mins seem to follow my U-Hall truck. +1995-12-04,47.6063889,-122.3308333,Seattle,WA,light,2,Man reports a brief power failure, looks outside and witnesses a luminous obj., size of star, streak from W to E in southern sky. +1997-01-24,40.5888889,-111.6372222,Alta,UT,other,10800,A "moving star" similar to a satellite stopped, hovered, and darted around for over 3 hours. A telescope revealed a round shape.I +1998-01-24,21.4180556,-157.8036111,Kaneohe,HI,triangle,18000,Saw a very large (size of a school bus) bright light wide triangular shape in the sky hovering above a nearby mountain. Then second cra +1998-01-24,34.1083333,-117.2888889,San Bernardino,CA,sphere,1800,Around 9:30 p.m. 1/24/98 I open my front door, to let my Son in. I notice behind him 3 huge balls of lights coming toward us. (They we +1998-01-24,30.5786111,-97.8527778,Leander,TX,cylinder,1200,Day time UFO in Leander-TX seen by 5.. +1998-01-24,32.2216667,-110.9258333,Tucson,AZ,light,360,5 lights maneuvering around each other, all caught on video, and seen on the news +1998-01-24,30.1658333,-81.7066667,Orange Park (Outside Jacksonville),FL,unknown,60,Strange light doing 3 90 degree turns. +1998-01-24,26.5625,-81.9497222,Cape Coral,FL,diamond,2400,2 glowing objects seen in the sky with many lights; dimond shaped. Seen for at least for 30 minutes with photographs taken. +1998-12-04,37.4241667,-122.165,Stanford,CA,light,15,I am a senior in college, and was walking northwest in a campus parking lot. I looked up and noticed a very distinct formation of light +1999-12-04,32.2686111,-107.7580556,Deming,NM,changing,3600,Driving I10 west of Las Cruces NM a random shape object visable for more than 60 mins seem to follow my U-Hall truck. +1999-12-04,40.7141667,-74.0063889,New York City (Bronx),NY,light,120,I was looking up at the sky and saw what appeared to be a very very fast moving star like object moving very fast from west to east +1999-01-24,45.5236111,-122.675,Portland,OR,oval,120,Huge UFO passing between opening over the city of Portland, Oregon +2000-12-04,40.6677778,-75.6075,Schnecksville,PA,teardrop,15,Very scary +2000-01-24,37.6486111,-118.9711111,Mammoth Lakes,CA,disk,60,Two white craft, flying in close formation. +2000-12-04,47.3075,-122.2272222,Auburn,WA,unknown,3,OBJECT SIGHTED NEAR CHEMTRAILS AGAIN +2000-12-04,45.4872222,-122.8025,Beaverton,OR,triangle,20,Triangle shaped, 3 lights, at night, gliding over the city, seemed transluscent in a way +2000-12-04,36.8672222,-91.9141667,Pomona,MO,flash,1200,I saw pinpoints of light that flashed, disappeared and appeared again and another time, a large, metallic disc. +2000-12-04,43.0386111,-78.8644444,North Tonawanda,NY,other,900,lighted stealth-like craft with white searching beam sighted flying low near Erie Barge canal, North Tonawanda +2001-12-04,40.7141667,-74.0063889,New York City (Staten Island),NY,light,2,Tonight is a clear night, I was in my backyard looking up at the stars when I saw 4 faded red lights in a half V formation streak acros +2001-12-04,33.8352778,-117.9136111,Anaheim,CA,formation,20,Triangular formations over Anaheim, CA +2001-01-25,64.7511111,-147.3494444,North Pole,AK,disk,10,ufo by an air force base +2002-01-24,42.0986111,-75.9183333,Binghamton,NY,light,240,We saw what appeared to be five or six craft, moving fast and changing color. +2002-01-24,32.9594444,-117.2644444,Del Mar,CA,disk,180,Five silver disks produce five different messages in the sky on a clear bright Sunday afternoon. +2002-12-04,29.6513889,-82.325,Gainesville,FL,egg,40,Large egg shaped object motionless in sky +2002-01-24,48.895,-105.1627778,Whitetail,MT,flash,3,While driving home my sister and I witnessed a streak of light travel across the horizon and dissapear. +2002-01-24,35.198055600000004,-111.6505556,Flagstaff,AZ,triangle,600,Three strange crafts seen over Flagstaff, Arizona later attaching themselves to each other +2002-01-24,37.775,-122.4183333,San Francisco,CA,formation,2,Huge, moving, bright formation of lights seen very close to buildings around Lower Pacific Heights, in San Francisco, CA +2002-01-24,39.8005556,-75.46,Claymont,DE,circle,300,We were leaving a friends house to go home. When we went out the door my son said Mom there's the big dipper as I looked up a group o +2002-01-24,39.7338889,-90.2288889,Jacksonville,IL,diamond,20,Bright Orange Light appearing & disappearing +2002-01-24,34.3622222,-92.8127778,Malvern,AR,triangle,2100,Saw at least three triangle shaped craft hovering over a field and the surrounding woods. Then saw another fly accross the road. +2002-12-04,39.7930556,-76.7305556,Glen Rock,PA,other,600,crescent lights +2002-01-24,37.5697222,-85.2527778,Lebanon,KY,triangle,600,Triangular craft, one light in center, low and slow. +2003-01-24,37.6391667,-120.9958333,Modesto (West Of),CA,other,1200,very bright light on other side of the mountain, hovering craft with bight light on top and red lights flickering along bottom +2003-12-04,40.6152778,-74.7708333,Whitehouse Station,NJ,circle,2,Bright round yellow UFO spotted on 3 different occasions +2003-01-24,61.2180556,-149.9002778,Anchorage,AK,circle,1800,My brother and I were going to school on mid-hillside walking toward the west when we saw lights in the sky to the south. The object pa +2003-12-04,32.2686111,-107.7580556,Deming,NM,other,2700,Black stationary object seen south of I-10 in New Mexico at dusk +2003-01-24,42.8005556,-71.3047222,Windham,NH,unknown,30,IT WAS SO STRANGE! +2003-01-24,35.3858333,-94.3983333,Fort Smith,AR,circle,60,Red light in sky +2003-01-24,31.7605556,-93.0861111,Natchitoches,LA,light,300,Starlight object sparkels as star, drifts and travels awkwardly northeast, then fades and loses all light.... +2003-12-04,33.5091667,-111.8983333,Scottsdale,AZ,cigar,7200,The object was first observed in the southern sky at 23:15 hours. It then moved to the south eastern sky where it remained static for a +2003-12-04,31.5341667,-97.4427778,Crawford,TX,other,600,Glowing Lights Over President Bush's Ranch +2003-01-24,37.9736111,-122.53,San Rafael,CA,triangle,120,Triangular Object Hovers Over Marin County +2004-12-04,40.4405556,-79.9961111,Pittsburgh,PA,light,60,Glowing orange orb moving at high speed and changing direction over city of Pittsburgh, PA +2004-12-04,34.0194444,-118.4902778,Santa Monica,CA,light,900,Two white, pinpoint lights at approximately 20ꯠ feet for 15 minutes +2004-01-24,36.0725,-79.7922222,Greensboro,NC,disk,180,Bright disc shaped object seen over the Greensboro airport during clear conditions in the early afternnoon with many airplanes visible +2004-01-24,32.7152778,-117.1563889,San Diego,CA,cigar,300,Bright green mass of light +2004-12-04,40.4802778,-86.3947222,Burlington (South Of),IN,triangle,1200,Orange flashes followed by appearance of objects +2004-12-04,42.2711111,-89.0938889,Rockford,IL,diamond,120,A diamond shaped object was found near Rockford Illinois. +2004-12-04,38.6555556,-92.7797222,Tipton,MO,light,1800,Two lights observed in north sky +2004-01-24,34.5361111,-117.2902778,Victorville,CA,unknown,10,At approx. 9pm,as I sat outside,looking towards the southern horizon, I saw a small bright object,seemingly traveling slowly towards th +2004-12-04,25.8572222,-80.2783333,Hialeah,FL,oval,2,A small oval white light shape going through a part of the sky from east to west then turns to north +2004-12-04,41.8994444,-87.9402778,Elmhurst,IL,light,900,Bright flashing point of light +2004-01-24,39.9611111,-82.9988889,Columbus,OH,oval,20,5-7 objects flying in formation +2004-12-04,39.0997222,-94.5783333,Kansas City,MO,other,180,Convoy crosses Kansas City sky. +2004-12-04,42.9741667,-95.4972222,Sutherland,IA,light,1800,A quiet light apeared to observe us as we were coon hunting near the river. +2004-12-05,41.1544444,-96.0419444,Papillion,NE,other,3,At 9:30 pm a whiteish blue light swiftly flew over my car, and it was to low to be an aircraft, and it made no noise +2005-12-04,33.4222222,-111.8219444,Mesa,AZ,light,3,Bright light traveling across sky near Phoenix, AZ faded to black and kept traveling. +2005-01-24,41.4138889,-73.3038889,Newtown,CT,circle,10,Classic cartoon flying saucer over Newtown woods +2005-01-24,35.7563889,-83.9705556,Maryville,TN,other,40,AUG 1989 +2005-12-04,34.0522222,-118.2427778,West Los Angeles,CA,light,3600,3 pts of Lights, later just 1 hiding in the Sun's Coronoa +2005-01-24,35.4661111,-82.5166667,Arden,NC,light,45,Bright light, moving faster than the planes close by!!! +2005-01-24,27.9011111,-81.5861111,Lake Wales (East Of ),FL,disk,600,We Saw Disc-Like Object, Flashing Bright Lights and Smaller Lights Dotting The Sky +2005-01-24,27.9011111,-81.5861111,Lake Wales (East Of),FL,formation,480,Couple Spots Huge Lighted Object In Sky With Smaller Lights Dancing In Sky Around It +2005-12-04,40.1794444,-74.8555556,Fairless Hills,PA,chevron,45,Chevron shaped objects, multiple lights, heading northwest to southeast at high rate of speed. +2005-01-24,29.9972222,-98.0983333,Wimberley,TX,light,2,Bright greenish blue light dropping down(southern horizon) and gone. I expected to hear a big bang, but alas, it was silent. +2005-01-24,29.4238889,-98.4933333,San Antonio,TX,light,2,Large green light dropping over San Antonio +2006-01-24,48.2413889,-122.3694444,Stanwood,WA,light,5400,UFO spotted twice in one month (January 2006.) Exactly like what was reported in 2003 in Snohomish. +2006-01-24,40.9397222,-123.6302778,Willow Creek,CA,light,120,Bright light into the bedroom window woke us up. +2006-12-04,34.0522222,-118.2427778,Los Angeles,CA,rectangle,900,hovering rectangle over santa monica +2006-12-04,36.5297222,-87.3594444,Clarksville,TN,oval,120,A bright UFO jumps out of a wormhole/portal and possibly abducts a young man +2006-12-04,33.415,-111.5488889,Apache Junction,AZ,disk,900,ufos emerge from three small geometric clouds. +2006-12-04,40.7683333,-73.5255556,Hicksville,NY,other,15,multicolored over Hicksville, NY, made alarms go off and left a cloud of bluish fog +2006-01-24,30.5994444,-98.4097222,Sunrise Beach Village,TX,unknown,120,Upon examining digital photos taken from my plane, I discovered an unexplained object in the picture. I first thought it was a spot on +2006-01-24,35.2269444,-80.8433333,Charlotte,NC,light,60,BRIGHT WHITE TO BLUE LIGHT +2006-01-24,37.4555556,-91.2094444,Bunker,MO,triangle,30,MISSOURI INVESTIGATORS GROUP Report: Over the hill to the North there were weird looking strobing lights.... +2006-12-04,30.945,-95.3752778,Trinity,TX,circle,30,Was a circle of bright light, it was yellow and it didnt move. All of the sudden it just vanished. ((NUFORC Note: Possible hoax. PD)) +2006-01-24,40.1738889,-80.2463889,Washington,PA,disk,900,ufo I seen in washington pa. +2006-01-24,40.7141667,-74.0063889,New York City (Staten Island),NY,diamond,3600,Blue, red and yellow lights flashing. It was moving back and forth very low. ((NUFORC Note: Possible sighting of Sirius? PD)) +2006-01-24,39.5138889,-121.5552778,Oroville,CA,teardrop,45,Object seen in Kelly Ridge +2007-12-04,34.1808333,-118.3080556,Burbank,CA,light,5,Firey blue light speeds toward the ground behind the mountains. +2007-12-04,36.175,-115.1363889,Las Vegas,NV,unknown,2,Streak of Fire in Las Vegas Sky +2007-12-04,36.1988889,-115.1166667,North Las Vegas,NV,fireball,4,inside of car lit up white for a sec. looked out side and saw a blue/green/yellow ball. very bright and then took off and left trail of +2007-12-04,29.4238889,-98.4933333,San Antonio,TX,unknown,3600,Green spec of light flys right over me +2007-01-24,34.7786111,-82.3102778,Mauldin,SC,fireball,5,A desending greenish fireball , falling from the sky really fast. +2007-12-04,32.3511111,-95.3008333,Tyler,TX,unknown,600,light that looked like a star moved from below the moon to above the moon in ten minutes +2007-01-24,47.2530556,-122.4430556,Tacoma,WA,triangle,120,((NUFORC Note: Vessel on surface. PD)) Photographed triangular obj. moving slowly 30'-50' over Tacoma Narrows, heading N, 2min dur. +2007-01-24,35.9608333,-78.2538889,Bunn,NC,cigar,300,large bright white, cigar shaped objected moving right to left while heading southeast on Old Halifax Road, near Bunn, NC +2007-01-24,47.6588889,-117.425,Spokane,WA,triangle,60,January 24, 2007, flying West to East over Spokane, WA, 7 elongated triangles following a bright sphere flew over with no sound. +2007-01-24,47.6588889,-117.425,Spokane,WA,triangle,60,On January 24, 2007 approximately 4:48 PM, a series of 8 silent UFO's, one sperical and seven elongated triangles flew over Spokane +2007-01-24,32.7252778,-97.3205556,Fort Worth,TX,triangle,1800,I saw a dark object that at times had a triangular appearance. No noise was detected and there were no lights at all. +2007-12-04,35.6805556,-109.0519444,Window Rock,AZ,oval,5,Blue oval shaped light with tail above Window Rock traveling east to west. +2007-01-24,42.9813889,-70.9483333,Exeter,NH,changing,900,Just after sunset,my wife and I observed a large,round,glowing white orb with blue,green,and purple blinking lights in the middle. +2007-01-24,35.6008333,-82.5541667,Asheville,NC,unknown,14400,Large Sighting of Green Lights Seen In WNC During Night Of Jan 24th, +2007-12-04,35.3736111,-83.2261111,Sylva,NC,triangle,10,Triangle shaped object in WNC +2007-01-24,35.2980556,-111.0055556,Leupp,AZ,changing,3300,Driving home saw lights circle vehicle soundlessly for about ten miles +2007-01-24,34.8525,-82.3941667,Greenville,SC,light,5,01-24-2007 Greenville SC --------- light green light falling down +2007-01-24,36.8188889,-76.2752778,Chesapeake,VA,fireball,30,WE WERE WAS STOPPED AT THE RED LIGHT, AT THE INTERESECTION OF DOMINION BLVD. AND MOSES GRANDY TRAIL..(FACING WEST) AND WE SAW A FIREBAL +2007-01-24,35.2269444,-80.8433333,Charlotte,NC,other,3600,UFO spotted over NC & SC. +2007-01-24,35.1822222,-83.3816667,Franklin,NC,fireball,3,Green ball of light over Western NC +2007-01-24,34.8525,-82.3941667,Greenville,SC,light,10,A Bright COlor Changing Light over Southern NC and Upstate SC is seen and reported by Thousands. +2007-01-24,35.655,-82.6963889,Leicester,NC,circle,120,Green ball of light falls from the sky +2007-01-24,47.6105556,-122.1994444,Bellevue,WA,other,300,Bright Lights Over Bellevue, WA +2007-12-04,30.3319444,-81.6558333,Jacksonville,FL,teardrop,3,Bright blue orb with a tail +2007-12-04,33.7475,-116.9711111,Hemet,CA,triangle,60,Three lights in shape of triangle in Southern California. +2007-12-04,30.3319444,-81.6558333,Jacksonville,FL,fireball,1015,While driving west on a major highway,JTB, just a few miles from the beach, a green fireball wisked by really fast, going W-SW. It wa +2007-12-04,31.4675,-97.1144444,Robinson,TX,light,3600,Bright colored lights that stayed fixed in one location for more than an hour! ((NUFORC Note: Sighting of Sirius?? PD)) +2007-12-04,32.2216667,-110.9258333,Tucson,AZ,unknown,3600,Last night I went out to see if I could spot the comet. Instead I noticed that there was a “star” that seemed to be moving. It would +2007-12-04,40.5530556,-79.7575,Lower Burrell,PA,light,3,I was driving along a rural road, when I noticed a blinding white light in my rear view mirror. +2007-12-04,36.3133333,-82.3536111,Johnson City,TN,triangle,240,Triangler, stopped in mid air, took off and disappeared. +2008-01-24,41.3358333,-71.9063889,Stonington,CT,other,120,Bright sparkle in the north eastern sky that hovered and went below the treeline into the horizon +2008-01-24,26.6402778,-81.8725,Fort Myers,FL,light,600,Three white lights in triangular form hovering over lake in Fort myers Florida +2008-12-04,33.9411111,-84.2136111,Norcross,GA,rectangle,180,50 x 100 ft. rectangular flat object moving east to west in Norcross, Ga. at 2 pm on Dec. 4, 2008 +2008-12-04,46.1880556,-123.83,Astoria,OR,sphere,20,This is simply a sighting of strange object in our local evening sky sky +2008-12-04,43.4152778,-118.5772222,Crane,OR,oval,180,oval object moved horizontally across mesa, then vanished +2008-01-24,41.0338889,-73.7633333,White Plains,NY,oval,1200,While proceeding north on Route 684 from White Plains to Wingdale, NY a flyinf craft disguised in a cloud was following my car on the s +2008-01-24,41.5833333,-87.5,Hammond,IN,unknown,600,Silent craft with 4 bright lights one red on top that floated then excelerated far and high in seconds. +2008-01-24,37.6688889,-122.0797222,Hayward,CA,oval,180,Unknown Red Oval in the sky over the San Francisco Bay Area +2008-01-24,28.8525,-81.6855556,Eustis,FL,unknown,1200,This would have to be said and identified on all details of craft and lights seen by my Son and Daughter-n-Law only by them. I personal +2008-01-24,41.5833333,-87.5,Hammond,IN,unknown,180,Evening clear sky air ship with two bright lights turning on two more total four with red flasher on top. +2008-01-24,32.8186111,-85.1794444,Valley,AL,fireball,8,It appeared to be a meteorite and it fizzled out before it landed. +2008-01-24,44.864444399999996,-75.2044444,Waddington,NY,light,180,3 orange light appeared in a arched shape lasted 2 to 3 mins. then disappeared, no noise. +2008-01-24,32.5402778,-82.9038889,Dublin,GA,fireball,1.5,Bright Green Flash of Light Seen for Brief Period in Night Sky +2008-01-24,33.8594444,-84.6838889,Powder Springs,GA,light,900,bright light "fell" from northeast sky, where a circle of lights hovered for 15 minutes +2008-12-04,40.2988889,-75.1813889,New Britain,PA,triangle,90,bright, trianglular, glowing caft hovered above town and then sped away super fast! +2008-01-24,36.175,-115.1363889,Las Vegas,NV,oval,5,Object obseved for a few seconds...Then Disappeared! +2008-01-24,36.9786111,-76.4283333,Newport News,VA,disk,90,Green-Ringed Saucer 14 feet away +2008-12-04,42.9033333,-78.755,Cheektowaga,NY,light,2,Bright light curves upward, disapears +2008-12-04,48.051944399999996,-122.1758333,Marysville,WA,other,120,While driving my daughter and I saw a batwing shaped large hovering object flying over Marysville, Washington. +2008-01-24,30.3880556,-95.6961111,Montgomery,TX,disk,180,A disklike object with two very large, bright yellow lights seen approx 2-3 minutes in Lake Conroe Forest, Montgomery, Texas. 500 L +2008-01-24,41.8427778,-87.8230556,North Riverside,IL,light,4,Attempted abduction [?] of 2 people in Suburban Bike Trail by a U.F.O. 500 Lights On Object0: Yes +2008-01-24,34.7997222,-87.6772222,Florence,AL,teardrop,10,A free-fallin teardrop shaped neon green object vanished right before crashing into the ground. +2009-01-24,40.2680556,-96.7466667,Beatrice,NE,disk,14400,4 hours in the sky.....same location.....colored lights +2009-01-24,37.9916667,-92.0936111,Dixon,MO,circle,300,bright object lands near forest. +2009-01-24,37.9916667,-92.0936111,Dixon,MO,circle,300,Description: bright object lands near forest +2009-12-04,44.4591667,-69.6780556,Vassalboro,ME,light,300,circular light/orange craft out running a pursuing military helicopter +2009-12-04,38.9594444,-84.3880556,Alexandria,KY,triangle,3,huge triangle shaped aircraft flying low that flew fast but made NO NOISE at all. +2009-12-04,43.9791667,-71.1208333,Conway,NH,light,240,moving lights and screaming cats~!!! +2009-12-04,37.7819444,-75.6538889,Parksley,VA,triangle,2700,We encountered a large triangular shaped object with pulsating lights that hovered silently in the sky. +2009-12-04,40.2777778,-80.0841667,Mcmurray,PA,cylinder,6000,Vertical pinkish light shaft pulsing brighter and duller in night sky for almost 2 hours +2009-12-04,42.8863889,-78.8786111,Buffalo,NY,light,1200,Red/green lights seen over Buffalo New York from Fort Erie, Canada. +2009-01-24,64.8377778,-147.7163889,Fairbanks,AK,oval,604800,Bright light high above my town, very peculiar looking when viewed through a telescope. ((NUFORC Note: Venus?? PD)) +2009-01-24,44.3352778,-85.215,Lake City,MI,triangle,7200,Bright light in sky that never moved for 75 minuted and then moved quickly. ((NUFORC Note: Venus?? PD)) +2009-12-04,41.025,-80.7611111,Canfield,OH,circle,900,Strong white lit object seen over Canfield, OH for 15 minutes. +2009-01-24,41.9888889,-88.6866667,Sycamore,IL,light,3600,Bright star like object moved erratically, turned bluish at times, and pulsed brighter at times. +2009-12-04,44.1522222,-72.0377778,Woodsville,NH,triangle,180,Bright glowing lights, triangular shaped, ejecting something over town +2009-01-24,43.1636111,-73.0727778,Manchester,VT,unknown,60,((HOAX??)) DISTINCT SIMULTANEOUS FEELING BY INHABITANTS OF CAR WE WERE BEING TACKED OR WATCHED. +2009-12-04,41.0997222,-80.6497222,Youngstown,OH,formation,180,I saw 9- 12 craft in formation traveling from the ground uo 2500 ft and then disappearing one by one +2009-01-24,29.7233333,-98.9355556,Pipe Creek,TX,light,1800,light with red flame from the bottom appeared in the western sky and hovered for long time southwest of San Antonio Tx. +2009-01-24,46.7638889,-89.0861111,Mass City,MI,light,480,light with reddish glows appeared stationary 5-8 min. then moved west & disappeared +2009-12-04,36.5858333,-79.3952778,Danville,VA,oval,300,Oval shaped object over Dan River Mills, Danville Va. 1st sighting +2009-01-24,40.1794444,-74.8555556,Fairless Hills,PA,oval,30,Faint reddish-orange oval with one red light revolving around it. Extremely smooth travel that was viewed for approximately 30 sec. +2009-01-24,40.7966667,-74.4819444,Morristown,NJ,triangle,20,A triangular object with a light on each corner flies across the highway in a straight line while spinning around. +2010-12-04,29.9688889,-95.6969444,Cypress,TX,unknown,180,Possible Abduction Attempt in Cypress, Texas +2010-12-04,35.4447222,-78.4272222,Four Oaks,NC,light,1200,UFO SIGHTING NEAR FOUR OAKS NC OVER MY HOUSE NO NOISE JUST A LIGHT IN THE SKY THAT MOVED REAL SLOW STOPPED AND TOOK OFF. +2010-12-04,33.9616667,-118.3522222,Inglewood,CA,light,3000,4 spinning/rotating light spreading apart and coming together as one in Hawthorne. ((NUFORC Note: Advertising lights?? PD)) +2010-01-24,27.9472222,-82.4586111,Tampa,FL,circle,360,Multi-colored illuminated circular object hovers near and crosses over busy interstate highway. +2010-12-04,40.4405556,-79.9961111,Pittsburgh,PA,unknown,3600,On Decemeber 4th񫺚 at 8 P.M in Pittsburgh, Pa, 14 unknown silent aircrafts flew over head and vanished. +2010-12-04,35.0302778,-91.9502778,Ward,AR,triangle,600,Triangle in the North West sky. +2010-12-04,33.5805556,-112.2366667,Peoria,AZ,unknown,900,String of lights in Phoenix area +2010-12-04,40.4975,-74.4888889,Somerset,NJ,light,1800,Four powerful white lights circling in a circular manner. ((NUFORC Note: Advertising lights?? PD)) +2011-01-24,33.5805556,-112.2366667,Peoria,AZ,formation,120,((NUFORC Note: No information provided by witness. PD)) +2011-01-24,43.6377778,-70.5194444,Buxton,ME,other,180,Event: I was driving from Portland into Buxton and I noticed a light. I thought it was a star but it was blinking, so I kept a close. +2011-12-04,41.7758333,-72.5219444,Manchester,CT,other,120,Huge bright orange semi-circle hovering over house +2011-01-24,45.1805556,-89.6833333,Merrill,WI,oval,1800,UFO over central Wisconsin seen while snowmobiling +2011-12-04,33.8358333,-118.3397222,Torrance,CA,light,600,Amber redish light over southern california +2011-01-24,39.8027778,-105.0869444,Arvada,CO,other,600,bright orb seen flying over arvada, colorado +2011-01-24,37.8172222,-96.8619444,El Dorado,KS,light,180,White light observed for about 3 minutes,( no noticable airplane lights) steady glow +2011-01-24,29.7630556,-95.3630556,Houston,TX,rectangle,30,flew by it, 300 meters away, it was floating not moving at 15000 ft, looked directly across at it. +2011-01-24,34.698055600000004,-118.1358333,Lancaster,CA,unknown,600,3 amber/orange lights with loud rumble sound move through Lancaster CA +2011-12-04,36.9752778,-121.9522222,Capitola,CA,other,180,Orange light in the sky +2011-12-04,38.8047222,-77.0472222,Alexandria,VA,light,120,Husband drew my attention to object outside our window. Object was bright (looked almost like it was on fire, fluttering light) Obje +2011-01-24,32.7833333,-96.8,Dallas,TX,flash,5,Yellowish Orb appears and vanishes within seconds at high speed +2011-12-04,35.6125,-77.3666667,Greenville,NC,light,8,Dec. 04th, 2011. Driving along the highway back to my house with my roommate, we both noticed a flying circular bright light. F +2011-12-04,38.1494444,-79.0719444,Staunton,VA,flash,3,Fast moving lighted object traveling at high velocity going upwards, no sound +2011-12-04,61.2180556,-149.9002778,Anchorage,AK,light,2,Point of light appears to fall, maneuvers, vanishes +2012-12-04,39.6836111,-75.75,Newark,DE,unknown,120,Silent aircraft blinking white light six-flash increments. Followed by jet. Near Kirkwood Hwy and Polly Drummond Hill Rd. +2012-01-24,32.5344444,-92.7883333,Simsboro,LA,unknown,3600,Multicolored lights seen in Eastern sky in North Louisiana. ((NUFORC Note: Possible sighting of Sirius, we would guess. PD)) +2012-12-04,35.0844444,-106.6505556,Albuquerque,NM,diamond,1800,Black diamond shaped ufo seen over hovering about 300-400 feet over city. +2012-12-04,40.5347222,-95.3188889,Westboro,MO,disk,1800,A blue, flat, hovering object and a red-ish flash in the sky appear over our town. +2012-12-04,44.8994444,-97.1147222,Watertown,SD,other,300,Unidentified aircraft flying through South Dakots air space. +2012-12-04,41.7697222,-87.9358333,Willowbrook,IL,light,180,Three shining circular objects evenly spaced motionless in the sky. +2012-12-04,41.7688889,-87.8577778,Hodgkins,IL,light,25,My dream sorta came true. +2012-01-24,36.8188889,-76.2752778,Chesapeake,VA,unknown,600,Two intense, multi-colored, pulsating lights/objects aloft in vicinity of Chesapeake, VA +2012-12-04,27.8002778,-97.3961111,Corpus Christi,TX,light,900,1 bright white light and slowly diminished followed by a larger orange light that turned white and slowly diminished in same spot +2012-12-04,39.3111111,-94.9222222,Leavenworth,KS,fireball,2,It streaked low in the sky right above the horizon like a falling star moved just as fast.I saw it streaked downward at a slight angle +2012-01-24,33.9383333,-78.7333333,Longs,SC,triangle,1200,At 7 pm i recieved a phone call from a friend 30 mi. to the S and informed me he was looking at a craft above his home. +2012-12-04,40.7036111,-104.7802778,Nunn,CO,triangle,240,Three lights in a triangle that flew off in opposite directions at an amazing speed in Northern Colorado. +2012-12-04,41.6175,-74.0763889,Plattekill,NY,circle,10800,Disc with pink light flashing on top & multicolored round craft with tail..bright light morphing into HUGE orb. +2012-12-04,44.9444444,-93.0930556,St. Paul,MN,light,300,Lights in the sky. +2012-12-04,43.9561111,-89.8180556,Adams County (On Co. Hwy. D),WI,fireball,120,3-5 Yellowish-orangish sphere/orbs seen by retired police officer in central Wisconsin +2012-01-24,33.4708333,-81.975,Augusta,GA,triangle,60,Three bright lights appear in the shape of an equilateral triangle. +2012-12-04,42.4169444,-88.0738889,Lake Villa,IL,triangle,2,BIG Triangle shape craft with red and yellow combined lights with no noise over north il +2012-12-04,40.1933333,-85.3863889,Muncie,IN,circle,7200,At one point I centered on the object. It was light grayish blue with a dark circular center. +2012-01-24,33.4483333,-112.0733333,Phoenix,AZ,light,900,Pulsating Purple Object in North Phoenix 1-24-2012 +2012-12-04,42.7261111,-87.7827778,Racine,WI,triangle,15,Triangle shaped craft in the night sky. +2012-01-24,33.6,-117.6711111,Mission Viejo,CA,circle,360,Bright Yellow object picking up speed until losings its brightness until gone. +2012-01-24,33.4483333,-112.0733333,Phoenix,AZ,light,300,It was a blue, purple light that faded in and out and danced around the sky to the west. +2012-12-04,40.5347222,-95.3188889,Westboro,MO,sphere,5,Translucent light blue sphere with orange electrial bolts apearing inside and tail trailing behind. +2012-12-04,33.6602778,-117.9983333,Huntington Beach,CA,oval,300,Orange UFO over Huntington Beach, CA. +2012-12-04,41.1305556,-85.1288889,Fort Wayne,IN,diamond,240,Bright light, hovering, close to ground, about the size of a car. +2012-12-04,41.8097222,-89.965,Morrison,IL,unknown,20,Aircraft of some sort flying violently as if it was about to crash that wiped out power throughout a city for 15 seconds +2012-01-24,48.4213889,-122.3327778,Mount Vernon,WA,flash,1,Ultra-bright flash seen in night sky over south Skagit Co. on 01/24/2012. +2012-01-24,42.5847222,-87.8211111,Kenosha,WI,sphere,15,Five circle-shaped, green objects flew across the sky, making my car lights flicker. +2012-01-24,29.8944444,-81.3147222,St. Augustine,FL,light,4,Glowing white lite shoots across sky and makes sudden U turns and spirals. +2012-12-04,38.2775,-85.7372222,Jeffersonville,IN,sphere,840,5 decent sized "UFOs" rotating shining bright. +2013-12-04,35.7719444,-78.6388889,Raleigh,NC,light,1500,Two lights. One bright white light & a dim blue one (appearing & disappearing). Ground level & moving closer. +2013-01-24,35.9380556,-77.7908333,Rocky Mount,NC,circle,10,Small silvery round object fades away from sight in seconds. +2013-12-04,30.3319444,-81.6558333,Jacksonville,FL,cigar,600,Some type of rocket launch. +2013-01-24,38.4416667,-81.9169444,Scott Depot,WV,changing,1200,Small red/orange balls of light seemed to rise from behind the trees floating slowly up in the air and hovering changing shape several. +2013-12-04,47.3225,-122.3113889,Federal Way,WA,unknown,480,Zero Noise. Flashing lights odd shape. No wings or helicopter blades. +2013-12-04,41.5444444,-73.2094444,Woodbury,CT,oval,180,Rounded lighted object seen over Woodbury, CT. +2013-01-24,26.9758333,-82.0908333,Port Charlotte,FL,light,600,Round red light with blinking yellow lights on the back. +2013-12-04,42.0427778,-88.0797222,Hoffman Estates,IL,flash,180,Giant bursts of light fill sky. +2013-01-24,43.0716667,-70.7630556,Portsmouth,NH,unknown,300,3 stationary lights w/ possible light structure below viewed near Pease Tradeport in Portsmouth NH. +2013-12-04,42.045,-71.9305556,Dudley,MA,circle,120,Bright white blinking light. ((NUFORC Note: Sighting of Venus. PD)) +2013-01-24,27.9769444,-82.8280556,Clearwater Beach,FL,sphere,900,Three Orbs spotted out around 5-7 miles of Clearwater Beach Florida while flying in our Cessna 172. +2013-12-04,39.6569444,-87.3980556,Clinton,IN,diamond,7200,Round lights in similar patterns fly faster than the space shuttle which I have watched. +2013-12-04,32.2216667,-110.9258333,Tucson,AZ,fireball,180,3 +2013-12-04,32.2216667,-110.9258333,Tucson,AZ,light,180,3 bright orange lights seen over east Tucson +2013-12-04,42.7244444,-83.0361111,Washington,MI,unknown,45,We witness a silent object traveling from south to north, at night, with no conventional aircraft type lighting. +2013-01-24,39.4277778,-86.4283333,Martinsville,IN,disk,30,UFO in indiana. +2013-12-04,26.9758333,-82.0908333,Port Charlotte,FL,formation,15,A bunch of pinprick lights quickly moved across the sky. +2013-01-24,46.1469444,-122.9072222,Kelso,WA,circle,3,On January 24, 2014 at 8:00pm heading North on I5 at exit 40 I witnessed an 6 unidentified flying crafts. I know what I saw that night +2013-01-24,40.9622222,-82.8544444,New Washington,OH,circle,300,It was slowly moving over our pastures going about 2 mph, It was probably 20-30 feet off the ground. We stopped the car turned everythi +2013-12-04,38.545,-80.0361111,Valley Head,WV,light,1200,Fleet of 30 UFO's crossing E/W and N/S - very high blinking white red green in square. +2014-01-24,41.5627778,-83.6538889,Maumee,OH,circle,120,Bright white light floating across sky. It did not blink and there was no noise. +2014-01-24,47.6733333,-117.2383333,Spokane Valley,WA,light,300,My young son and I were at 16th and Bowdish. We saw what we thought was a small plane perhaps losing an engine. It lit up then we saw +2014-01-24,37.2872222,-121.9488889,Campbell,CA,other,30,Blue U-Shaped UFO moving extremely fast with a lot of activity after. +2014-01-24,46.1469444,-122.9072222,Kelso,WA,sphere,300,Driving to Kelso Exit 39 thought it was paper lanterns in the sky. Orange in color. Moving higher in elevation growing brighter and th +2014-01-24,38.9341667,-77.1777778,Mclean,VA,formation,120,I saw an object with 7 or more lights that was traveling very fast in an area near Washington, D.C. +2014-01-24,33.0461111,-96.9938889,Lewisville,TX,light,10,UFO with bright white tail almost crashed on highway but vanished just before impact. +2014-01-24,47.6063889,-122.3308333,Seattle,WA,light,3600,Object appeared near the Orion; cycling through a number of colors. ((NUFORC Note: Probably Sirius? PD)) +2014-01-24,35.8144444,-94.6283333,Stilwell,OK,light,60,Light hovers then shoots straight up out of sight. +2014-01-24,29.8830556,-97.9411111,San Marcos,TX,disk,720,I was heading toward downtown from my house on the southwest side of town. I was heading east northeast depending on the direction of t +2014-01-24,33.8730556,-78.6144444,Little River,SC,light,300,Blinking/pulsing Lights. +2014-01-24,34.8238889,-89.9936111,Hernando,MS,circle,30,I saw 3 oval bright white object go up and leave our atmosphere. They left a trail like shootings stars going up instead of down. It wa +2014-01-24,21.3069444,-157.8583333,Honolulu,HI,light,300,Small red light, first stationery then in fast motion over Waikiki observed from Ala Wai harbor. +2014-01-24,33.5777778,-101.8547222,Lubbock,TX,light,180,Star that moves, fades, changes into multiple lights. +2014-01-24,43.6630556,-116.6863889,Caldwell,ID,formation,180,Orange orbs traveling over Marsing, below inversion layer +2014-01-24,46.1469444,-122.9072222,Kelso,WA,formation,240,12-14 bright orange lights that formed a line and than around each other and than left in a hurry. +2014-01-24,45.5230556,-122.9886111,Hillsboro,OR,formation,120,Red stationary lights in sky. +2014-01-24,47.6063889,-122.3308333,Seattle,WA,light,60,Spot of light zig-zagging over Seattle. +2014-01-24,39.5538889,-104.9688889,Highlands Ranch,CO,fireball,300,Fire orange orbs. +2014-01-24,35.0705556,-91.8794444,Beebe,AR,triangle,900,Triangle UFO observed for 15 min over Arkansas interstate 67 just past mile marker 29. +2014-01-24,40.7258333,-73.5147222,Levittown,NY,unknown,20,Three sets of lights seen over nassau county New York. +2014-01-24,38.2008333,-84.8733333,Frankfort,KY,triangle,300,Triangular shaped object with red and blue lights hovering. +2014-01-24,45.5236111,-122.675,Portland,OR,unknown,3600,Red flashing dots witnessed by 5 people 2 in Hillsboro. lasted over a hour and is still going on as if 2:03 AM.. +1964-01-25,41.2586111,-95.9375,Omaha,NE,sphere,300,Observing the first orbits of Echo 2 radar-reflective satellite through a 50 power telescope, I saw a "lesser light" perhaps spherical, +1970-12-05,35.0844444,-106.6505556,Albuquerque,NM,other,120,1970 Sighting over Kirtland Airforce base in New Mexico. +1973-12-05,34.4555556,-92.7294444,Glen Rose,AR,light,1200,Followed by a bright light . +1974-12-05,46.6811111,-68.0163889,Presque Isle,ME,other,120,cigar shaped lights pass over Presque Isle and disappear over airport (when closed) +1983-12-05,47.3811111,-122.2336111,Kent,WA,unknown,1,An object shot across the sky, came to a stop, continued on and burned out. Looked just like a shooting start except that it stopped. +1991-12-05,34.1733333,-118.5530556,Tarzana,CA,sphere,210,ྗ, SF Valley. 5 small, bright, low-flying red spheres, followed fwy traffic: melded together from 5-3-1-2-4 total. West-to-East +1992-01-25,40.0591667,-74.1375,Bricktown,NJ,disk,180,A disk hoovered above the house I was staying at and then shot quickely out of sight. +1993-12-05,41.7002778,-73.9213889,Poughkeepsie,NY,unknown,600,Five lights over my car in the Catskills. +1994-12-05,33.9202778,-80.3416667,Sumter,SC,circle,600,Large object no engine noise, hovering 75 yards away. producing a light that made no shadows. after short hover time began climbing at +1995-12-05,47.4958333,-121.7855556,North Bend,WA,chevron,240,Two adults, 7 children, witness "an orangey light, like an 1/8th moon," hover, move south, then hover again in clouds. No sound. +1995-01-25,39.9522222,-75.1641667,Philadelphia,PA,triangle,300,saw object out of second floor window. +1996-12-05,38.9488889,-83.4058333,Peebles,OH,light,3600,My hunting buddies and I witnessed this while camping in a sparsely populated area of Ohio. +1997-12-05,27.9769444,-82.8280556,Clearwater Beach,FL,oval,1800,UFO encounter at Clearwater Beach, during meteor shower +1997-01-25,44.6708333,-88.8891667,Marion,WI,triangle,120,On a camping trip 3 triangle shaped objects were seen by myself and 7 other campers slowly drifting over, almost surveying the landscap +1997-12-05,48.8466667,-122.5897222,Ferndale,WA,unknown,360,The last night of the eight planets lining up. Huge craft flew over. NO SOUND. Thought it was a shooting star, went really fast then +1998-12-05,33.7488889,-84.3880556,Atlanta,GA,fireball,1.5,Atlanta "meteor" fireball, December 5th 1998, approx. 03:00am Image computer recreation of event mailed to 'images site'. +1998-12-05,33.5386111,-112.1852778,Glendale,AZ,other,60,Object appeared from behind mesa, ascended at about a 70 degree angle, taking maybe a minute to ascend 8-10ꯠ ft, passing into cloud. +1998-12-05,36.175,-115.1363889,Las Vegas,NV,unknown,10,Bright light shining directionally out of a cloudy shape or object, got bright and smoky and then disappered. +1998-01-25,34.7297222,-88.9505556,Ripley,MS,light,1233,Looked like a star then started moving slowly. After a few minutes it streaked off as if it where the speed of light. +1998-12-05,36.2083333,-115.9830556,Pahrump,NV,circle,60,enroute to las vegas I observed a green orb from my rearview mirrior and the in my windsheild. It made a slight change of directions +1999-12-05,32.9777778,-111.5169444,Coolidge,AZ,triangle,40,I saw a truangle shape thing in the sky with 4 light one each on the ege and the othe in the center .the center one looked red. +1999-01-25,37.775,-122.4183333,San Francisco (Ocean Side Of),CA,sphere,240,Moon shaped, reddish-orange sphere (sligtly obscurred by clouds) object quickly descended into the ocean water in the horizon in front +1999-12-05,35.4816667,-86.0886111,Manchester,TN,light,10,At around 04:00hrs while stopping a traffic violator the complete southern sky lit up bright blue. This event illuminated the entire ar +1999-12-05,33.5205556,-86.8025,Birmingham,AL,sphere,5,HUGE BALL OF LIGHT, FALLING DIAGNOL, THROUGH THE CLOUDS. LIT UP THE SKY AS IF IMMEDIATELY DAYLIGHT. APPEARING TO MAKE IMPACT SEVERAL MI +1999-12-05,33.0163889,-86.3122222,Weogufka,AL,fireball,7,((Witness reports fireball over Alabama. Many other reports.)) +1999-12-05,33.4486111,-86.48,Sterrett (15 Miles South Of Birmingham),AL,disk,5400,4:30 AM Sunday morning December 5, 1999. I witnessed a light that lit up my entire back yard and then an explosion sound followed. I a +1999-12-05,34.8980556,-86.7336111,Toney,AL,fireball,3,There was a bright fireball in the southern sky that was so intense that it not only illuminated the ground but also hurt your eyes to +1999-12-05,34.7697222,-84.9702778,Dalton,GA,circle,15,A bright yellow object traveling from west to east, ending in a bright flash +1999-12-05,35.9605556,-83.9208333,Knoxville,TN,fireball,10,Green fireball falling from sky +1999-12-05,34.2447222,-84.8522222,Cassville,GA,cone,60,round bright light,made sky like daylight, going s on I75 on right, saw it come from sky as a comet, then went over low trees, could se +1999-01-25,33.2441667,-86.8163889,Alabaster,AL,fireball,900,at about sun set to the west,they look like jets at first but after five min.,there was no movement,this is the second time we have see +1999-12-05,32.3361111,-81.3916667,Guyton,GA,circle,1,Circular 2D light "thing" appears up close range out of nowhere after dark, travels to the east. +1999-12-05,37.2455556,-88.3605556,Burna,KY,unknown,5,WHILE DRIVING EAST BOUND APPROX. 3/4 MILE EAST OF BURNA, KY AT APPROX 6:30 PM 4 BEAMS OF LIGHT SUDDENLY APPEARED ON THE HIGHWAY DIRECTL +1999-01-25,40.7619444,-80.6988889,West Elkton,OH,light,900,> We saw three large lights in the sky----from West Elkton, moving >towards Northern Road, heading for Hamilton. My son and I both +1999-12-05,35.7330556,-80.6772222,Cleveland,NC,circle,600,it was an orange glowing circle +1999-12-05,28.1508333,-82.4616667,Lutz,FL,light,20,The witness saw the object obove the tree line, in the distance which he could not determine and it moved from NE to NW at 8 degrees ab +1999-12-05,32.7152778,-117.1563889,San Diego,CA,fireball,7,saw a fireball go N. to S. with tail, the coyotes started howling in the canyon right after event. +2000-12-05,38.5922222,-89.9111111,O'fallon,IL,triangle,360,Watched Triangular Object Hover Over My Barn For At Least 5 Minutes +2000-12-05,48.2555556,-121.6002778,Darrington,WA,other,2,Three Super Load Sonic Booms +2000-12-05,44.5647222,-123.2608333,Corvallis,OR,fireball,1200,A bright spherical object moved across the sky in daylight, then appeared to split into multiple bright lights. +2000-12-05,45.5236111,-122.675,Portland,OR,light,120,Object was motionless and did not emit sound while motionless in the western sky. +2000-12-05,45.0941667,-93.3561111,Brooklyn Park,MN,triangle,60,2 people witnessed a large, low flying, triangular object with 3 dim, non-blinking lights moving to the North East. +2000-12-05,34.1741667,-97.1433333,Ardmore,OK,unknown,240,a deep sound flying over to the SW +2000-12-05,34.4838889,-114.3216667,Lake Havasu City,AZ,other,120,We saw a silent object with multiple lights that changed colors and a bright flash that appeared to be a 2nd object ejecting. +2000-01-25,47.8569444,-121.6958333,Gold Bar,WA,cigar,14,((deleted)) saw it before I did. It was a cigar-shaped thing. It was moving at a high rate of speed through the mtns. It glowed on one +2001-01-25,39.8877778,-75.3086111,Prospect Park,PA,light,1800,Ball of flashing, sparkling multicolored light +2001-12-05,34.2611111,-116.8441667,Big Bear City,CA,triangle,45,A triangular shape flys overhead and hovers over trees. +2001-01-25,33.4355556,-112.3488889,Avondale,AZ,light,7200,A very bright stationary light,not an aircraft. +2001-01-25,36.0652778,-119.0158333,Porterville,CA,disk,120,I watched a ufo cruise by my house at 21:00 at low altitudes, noiselessly with ferriswheel lights wit a strangesaucer shape. +2001-01-25,43.8955556,-83.0036111,Filion,MI,diamond,1920,dimond shaped object in michigans huron county sky. +2001-12-05,36.9227778,-80.0136111,Ferrum,VA,oval,60,It was amazing and scary. +2001-01-25,40.2841667,-84.1555556,Sidney,OH,sphere,180,Sphere that emitted blue & red flashes & disapered without a trace. +2001-12-05,35.4675,-97.5161111,Oklahoma City,OK,light,420,Large slow moving cluster of fire balls with orange tails. +2001-01-25,47.6063889,-122.3308333,Seattle,WA,fireball,1,While driving noth on I-5 I observed the white fireball dropping out of the sky as I looked in the direction over northeast Seattle. I +2001-01-25,30.5619444,-81.8308333,Callahan,FL,formation,600,it was in a formation, like six lights ligned up, silent, bright, huge and it was featured on unsolved mysterious many times. +2001-01-25,42.3472222,-89.0388889,Machesney Park,IL,triangle,900,COULD SEE HIGH INTENSITY LIGHTS (3) FROM 2 MILES. TOO HIGH TO BE STREET LIGHTS AND TOO LOW TO BE AIRPLANE. TRIANGLE 1 WHITE LIGHT ON +2002-12-05,29.7352778,-94.9772222,Baytown,TX,other,900,It was black blending with the night sky. It moved very slowly for the time I watched it. It was shaped like a squared off boomerange o +2002-01-25,35.4119444,-99.4038889,Elk City,OK,cigar,300,Another sighting in Western Oklahoma +2002-12-05,32.948055600000004,-96.7294444,Richardson,TX,unknown,90,daytime stationary black dot aloft showing a brilliant white light +2002-01-25,39.9252778,-76.1983333,New Providence,PA,cylinder,300,The craft was a charcoal colored cylinder that hovered approx.100' above the ground and appeared to be about 50 feet in length. +2002-01-25,41.2411111,-77.0013889,Williamsport,PA,triangle,600,Triangular object seen passing over Lycoming Mall in Williamsport, Pennsylvania +2002-01-25,32.4427778,-93.9727778,Greenwood,LA,sphere,14400,Glowing Orb Flashes and Hovers For three hours in smalltown in north Louisiana. +2002-12-05,38.6780556,-121.175,Folsom (Over/Cameron Park),CA,triangle,300,I saw a large triangular craft with three large white lights on the tips and dimmer light in the center. +2002-01-25,35.0011111,-92.6297222,Bigelow,AR,triangle,120,Slow moving triangle craft above clearcut field in rural Arkansas +2002-01-25,36.4877778,-87.8383333,Dover,TN,other,240,Dropping lights catch the eye. +2002-01-25,33.4355556,-112.3488889,Avondale,AZ,light,4,seven or eight white and red lights wink out starting at outer edges till it was gone. +2002-01-25,34.2011111,-118.5355556,Reseda (San Fernando Valley),CA,unknown,60,object moving at great speed, stopping as if at the end of a pendulum, and then swung back, repeating the same movement many times. +2003-12-05,42.2011111,-85.58,Portage,MI,egg,3600,It would follow us. +2003-12-05,33.1958333,-117.3786111,Oceanside,CA,fireball,1200,Fireball +2003-12-05,34.8788889,-76.9016667,Havelock,NC,circle,900,copies of 8mm footgae and computer discs of phjotos on their way to you. +2003-12-05,38.4219444,-77.4086111,Stafford,VA,light,300,Zipping White Light. +2003-12-05,36.5827778,-92.6758333,Theodosia,MO,other,9,IT LOOKED LIKE A ONE WAY STREET SIGN WITH A SMALL ARROW IN THE FRONT AND A LARGER ARROW IN THE FRONT. +2003-12-05,41.9294444,-88.7502778,Dekalb (Outside Of),IL,circle,3,red light darting across the sky, oddly spaced +2003-12-05,41.9141667,-88.3086111,St Charles,IL,light,4,No outline visible other than the bright light. +2003-01-25,40.0377778,-76.3058333,Lancaster,PA,cylinder,120,cylindrical shaped craft hovering next to Amish farm house +2003-12-05,43.0388889,-87.9063889,Milwaukee,WI,light,30,two "star-like" objects in southern sky, right light flashed brightly then disappeared, left light started to "fall" then did the same. +2003-12-05,35.7913889,-78.7813889,Cary,NC,cigar,10,A flash of light then a unclipped silver cigar shaped craft slowly glided with blue flames coming out then another flash,it was gone +2003-01-25,34.1866667,-118.4480556,Van Nuys,CA,egg,300,Object floating above the Van Nuys area. Did you see it? +2003-12-05,34.8697222,-111.7602778,Sedona,AZ,disk,360,Elongated sphere with red/white strobing lights seen hovering over Airport Mesa in Sedona +2003-12-05,36.8744444,-94.8772222,Miami,OK,light,15,As I stepped off my front porch I looked to the northern sky and seen a very bright light, much brighter than the stars around it. I co +2003-01-25,34.1808333,-118.3080556,Burbank,CA,light,120,One single reddish light dropping same colored particles +2003-01-25,39.1588889,-108.7283333,Fruita,CO,unknown,600,Craft of unknown description.… +2003-12-05,38.52,-89.9838889,Belleville,IL,other,30,Dull white starlike object traveling east to west +2004-12-05,39.4666667,-87.4138889,Terre Haute,IN,chevron,5,FOUR LIGHTED CHEVRON SHAPE SILENTLY GLIDES SOUTHWARD! +2004-12-05,40.9994444,-75.1816667,East Stroudsburg,PA,light,5,object in the vacinity of the airplane that appeared to be a bright orange light, similar to what you would see as the sun rise reflect +2004-12-05,27.9472222,-82.4586111,Tampa,FL,other,900,CYLINDRICAL OBJECT REVOLVING WITH ONE END GLOWING +2004-01-25,37.6688889,-122.0797222,Hayward,CA,egg,180,I just read the other Hayward report on your site. Sound like the same thing I saw this weekend. It was along the Hayward hills, near t +2004-01-25,35.0866667,-89.81,Germantown,TN,cigar,5,cigar shaped, white, green spot at rear, seemed to be gradually falling +2004-01-25,33.9611111,-116.5008333,Desert Hot Springs,CA,rectangle,120,The roaring repeating humming noise was eerie. In 58 years, I have never heard such a low heartbeat sound EVER +2004-12-05,28.5380556,-81.3794444,Orlando,FL,light,8,A bright green, flourescent light that traveled at a very rapid speed leaving a trail and changed direction rapidly before disappearing +2004-12-05,28.7811111,-82.6152778,Homosassa,FL,sphere,30,Florescent / Irridecent Green Sphere +2004-12-05,42.2933333,-75.4797222,Bainbridge,NY,disk,120,I was driving West on NY state I88 when I spotted a UFO in the shape of a disk/saucer hovering above a field. It was silver/gray with b +2004-12-05,27.4463889,-80.3258333,Fort Pierce,FL,triangle,300,Three bright lights over Fort Pierce, Florida. +2005-01-25,34.6888889,-82.1958333,Fountain Inn,SC,light,30,Bright white light ,non flashing,leading in front of two airliners. +2005-12-05,40.7161111,-73.8505556,Forest Hills (Queens),NY,teardrop,30,Strange lights seen flying low in the NYC metro-area +2005-01-25,38.9697222,-76.8802778,New Carrollton,MD,light,2,Observed burst of bluish light at cloud level at 0632 on 25 JAN 05. +2005-12-05,42.2411111,-83.6130556,Ypsilanti,MI,other,600,Boomerang style crafted spotted with no sound only lights on the craft. +2005-01-25,43.7097222,-71.4608333,Center Harbor,NH,unknown,30,My girlfriend and I were driving down a country road that I live on when we both saw a group of VERY bright lights in the sky at or abo +2005-12-05,33.7455556,-117.8669444,Santa Ana,CA,oval,20,An object flew across the face of Saddleback Mountain twice, and vanished in plain sight both times. +2005-01-25,40.7141667,-74.0063889,New York City (Brooklyn),NY,cylinder,60,Craft above field outside NYC, black torpedo glowing lights, flashed then disapeared. +2005-12-05,46.2858333,-119.2833333,Richland,WA,triangle,30,Triangle over Richland, WA +2005-12-05,34.1063889,-117.5922222,Rancho Cucamonga,CA,light,600,Light (s) routinely spotted from East to West during the past one an half years +2005-01-25,47.5002778,-111.3,Great Falls (14 Miles North Of),MT,fireball,2,falling star that exploded into green sparks +2005-12-05,34.47,-118.1958333,Acton,CA,fireball,60,Driving north on 14 Freeway, 5 miles south of Escondido Drive, bright clear skies as I was driving north on the side of the mountain I +2005-12-05,40.7927778,-90.7797222,Smithshire,IL,other,60,Craft flies very low over our heads!! +2005-12-05,41.14,-104.8197222,Cheyenne,WY,unknown,5,An orange object viewed intermmitantly in the night sky heading east at a relatively slow speed. +2005-01-25,61.2180556,-149.9002778,Anchorage,AK,light,780,Bright Orange light moving slowly across the sky +2005-12-05,39.5791667,-104.8763889,Centennial,CO,fireball,3,Circular glowing object falls and the disappears. +2005-12-05,46.7163889,-122.9530556,Centralia,WA,circle,4,3 craft a faint white heading ne. makeing a full circle as they flew 4 seconds later thy were gone! i know what i saw! +2006-12-05,40.7013889,-75.7072222,Germansville,PA,unknown,300,Very strange jet like noise, as if it were pulsing or waving in and out. ((NUFORC Note: Student report. PD)) +2006-01-25,41.3175,-81.3455556,Aurora,OH,other,1200,Aurora, Ohio, string of lights deep in the woods at 2 in the morning hovering above the ground, revolved and whistled. 20 min. +2006-01-25,38.6580556,-77.25,Woodbridge,VA,light,1800,Bright white, slightly flickering light that "wobbled" slightly, but VERY rapidly and wastoo bright and big for a star or planet. +2006-12-05,35.0844444,-106.6505556,Albuquerque,NM,disk,300,UFO Sampling Jets Contrail at 39ꯠ feet +2006-12-05,38.2494444,-122.0388889,Fairfield,CA,other,600,9 People see a "red star" in the sky at midnite!! - My first sighting please contact +2006-12-05,33.8158333,-78.6802778,North Myrtle Beach,SC,light,60,3 orange lights or orbs over the atlantic ocean 6pm 12/05/06 north myrtle beach sc 23rd ave. south +2006-12-05,36.7280556,-108.2180556,Farmington,NM,light,5,Brilliant White Object Parallels the southern horizon. +2006-12-05,34.3788889,-117.6891667,Big Pines,CA,diamond,5,Huge Black Object with no Lights hovering around Mountians near Mt Whitney +2006-01-25,41.85,-87.65,Chicago,IL,oval,600,UFO over the Midway airport in Chicago. +2006-12-05,34.8761111,-83.9583333,Blairsville,GA,light,120,Drifting pair of solid and flashing red lights over north Georgia mountains. +2006-01-25,38.7083333,-121.3288889,Antelope,CA,triangle,90,while driving on a country road we observed a large triangle with many blinking lights hovering at a very low altitude. +2006-12-05,41.1305556,-85.1288889,Fort Wayne,IN,other,300,Unknown object floating across a city airspace +2006-01-25,38.525,-89.1333333,Centralia,IL,rectangle,15,large rectangular dim lighted object low flying visable for 10 to 15 secs on 1/25/06 9:30 PM +2006-12-05,37.9063889,-122.0638889,Walnut Creek,CA,disk,30,((HOAX??)) Saucer object with rotating colored lights hovering in sky. +2006-12-05,40.8066667,-74.1858333,Bloomfield,NJ,disk,30,What we saw was a hovering silent disc shaped craft with many lights emitting to the ground +2006-01-25,40.1933333,-85.3863889,Muncie,IN,fireball,2,Bright lights in the sky over Muncie Indiana +2006-12-05,38.2919444,-122.4569444,Sonoma,CA,light,300,Bright red pulsating light that remained motionless for a long duration, ascended and moved rapidly, red droplets falling from object +2006-12-05,37.6458333,-98.1133333,Kingman,KS,light,300,White light over Kingman, KS +2007-01-25,36.175,-115.1363889,Las Vegas,NV,light,1200,Bright, multicolored light seen west of Las Vegas +2007-12-05,42.2597222,-72.2402778,Ware,MA,circle,10800,Strange lights seen over Ware, MA, skies. ((NUFORC Note: Possible sighting of Venus?? PD)) +2007-01-25,39.2191667,-121.06,Grass Valley,CA,flash,1,Flash of light in Northern Sky near big dipper on Thursday 1/25/07 seen by two people. +2007-12-05,29.6483333,-81.6377778,Palatka,FL,oval,10,I saw a large oval shaped alternating dar & light gray object approximately 1/2 mile away. +2007-12-05,39.3061111,-102.2688889,Burlington,CO,flash,5,An ear-splitting almost explosion-type burst that left the whole horizon a luminous semi-circle of purple +2007-01-25,34.2072222,-84.1402778,Cumming,GA,sphere,60,MUFON GEORGIA REPORT: MUFONGA Investigation-Glowing Orb Flies Low Pass Over School Bus +2007-01-25,46.7586111,-122.0297222,Ashford,WA,triangle,3600,white/clear triangle Mt. Rainier hovered over my cabin burned the needles/cones off a fir tree 70' off ground missing time 500 +2007-01-25,39.7294444,-104.8313889,Aurora,CO,light,30,2 balls of light "chasing" each other at high rate of speed +2007-12-05,37.9452778,-104.8347222,Colorado City,CO,light,10,Bright halogen colored light. +2007-01-25,21.3069444,-157.8583333,Honolulu,HI,fireball,3600,strange fireball with tracers lasting 1+hrs. changing directions +2007-01-25,40.2794444,-86.5108333,Frankfort,IN,fireball,900,Stationary orange lights in sky NE of Frankfort, Indiana on 2/25/07 +2007-01-25,34.1841667,-118.9097222,Newbury Park,CA,light,2,Bright white light seen decending into the hills of Newbury Park, Ca. Jan. 25th, 2007. +2007-01-25,40.4905556,-87.0963889,Otterbein,IN,circle,180,bright orange circle of light that appeared and reappeared in a different location several times +2007-01-25,40.7616667,-73.3297222,Deer Park,NY,fireball,5,Fireball-like light looked as if it was crashing into near by Harbor (Long Island, NY) +2007-01-25,42.3266667,-122.8744444,Medford,OR,cone,300,A cone shaped object with a long strip of lights that changed color, seen over Medford +2007-01-25,36.1658333,-86.7844444,Nashville,TN,triangle,20,two trangular space craft with two lights on all sides seen in Nashville Tn. +2007-12-05,48.1172222,-122.7591667,Port Townsend,WA,fireball,3,A very bright object was seen moving rapidly in the western sky +2007-01-25,41.1888889,-81.6363889,Bath,OH,egg,240,Egg shaped object ringed with red and green lights observed rising into a clear night sky with no sound. +2007-01-25,35.4675,-97.5161111,Oklahoma City,OK,light,120,zig-zagging red light in the clear night sky +2007-12-05,43.5977778,-84.7675,Mount Pleasant,MI,triangle,120,Very large black triangle with red and white lights at night, seen again in morning with blue and white lights. +2007-01-25,35.1483333,-81.8611111,Chesnee,SC,unknown,240,UFO sighted on 1/25/07 +2007-01-25,29.7630556,-95.3630556,Houston,TX,sphere,60,Falling Bluish-White sphere, with yellowish-orange sparks emitting from the back. Then white flash explosion +2007-12-06,27.8394444,-82.7913889,Seminole,FL,fireball,1800,Bright white hoovering object 10ꯠ ft. high, stationary..then moving north very slowely...decreases in altitude to about 5ꯠ ft. mo +2008-12-05,44.7133333,-93.4225,Prior Lake,MN,sphere,120,A bright light that went from moving slowly to extremely fast to stationary and then gone with no sound or acceleration. +2008-12-05,34.2255556,-77.945,Wilmington,NC,triangle,5,Triangular Orange Glowing Lights Seen Over Wilmington, NC +2008-01-25,34.0658333,-84.6769444,Acworth,GA,fireball,4,Fiery light, dog acting mad +2008-12-05,47.2530556,-122.4430556,Tacoma,WA,other,1200,Christmas Bell Shaped Lit Objects in sky with Red and White lights that seemed blurry or hazy. +2008-12-05,45.2630556,-122.6913889,Canby,OR,sphere,180,Silver/chrome round object paralleled my bus for about three minutes. +2008-01-25,38.545,-121.7394444,Davis,CA,fireball,180,from my direction it was over to the west. ((NUFORC Note: Possibly not a serious report. PD)) +2008-12-05,41.6258333,-71.2138889,Tiverton,RI,cylinder,6,Brilliantly lighted cylindrical object seen in northern sky moved at a high rate of speed and vanished. +2008-12-05,40.8822222,-74.0836111,Lodi,NJ,formation,120,very dim grouping that still may have been geese, flying in a stright line in the south direction +2008-01-25,47.2530556,-122.4430556,Tacoma,WA,oval,10,Yellow oval UFO exits cloud bank above Snolqualmie Forest foothills and disappears in cloud to South. +2008-12-05,32.7833333,-96.8,Dallas,TX,chevron,120,20:05 hrs., Dallas, TX , wedge shaped object passing approximately 150 feet above house, moving NW to SE at approx 15 mph. +2008-12-05,40.5852778,-105.0838889,Fort Collins,CO,triangle,1800,3-4 intensifying lights, under telescope; triangles with color-changing and cycling lights +2008-01-25,31.1711111,-84.7333333,Colquitt,GA,disk,600,Giant Light With Dish Shaped Object Above It +2008-01-25,35.5755556,-81.2119444,Maiden,NC,circle,900,Strange Object/Light over Maiden, NC Area +2008-01-25,35.0844444,-106.6505556,Albuquerque,NM,light,10,high bright red light that disappeared +2008-12-05,43.8127778,-70.8780556,South Hiram,ME,teardrop,5,Green light over ice skating rink in south hiram Maine +2008-01-25,29.2891667,-82.1119444,Anthony,FL,disk,30,SAW A WHIT DOT TAKE SHAPE OF A SAUCER FLOAT THERE FOR A SECOND AND THEN TAKE OFF INTO THE CLOUDS +2008-12-05,30.2669444,-97.7427778,Austin,TX,light,2,bright light drops and disappears +2008-01-25,28.865,-82.0391667,Wildwood,FL,flash,2,Green, oval shaped, flash of light, no sound +2009-01-25,36.0725,-79.7922222,Greensboro,NC,unknown,9,High Explosion-Loud Hish-Ground-shaking Boom +2009-01-25,40.7988889,-81.3786111,Canton,OH,light,600,vertical streams of light, one light began changing colors +2009-01-25,33.4222222,-111.8219444,Mesa,AZ,light,2400,objects far up in the sky, pretending to be stars, a bit more yellow than actual stars, moving in all directions +2009-12-05,34.010555600000004,-95.5094444,Hugo (Southeast Ok),OK,unknown,10,((Report retracted.)) Dark human-like figure that was glowing orange around it and floating. +2009-12-05,40.3058333,-88.0211111,Gifford,IL,circle,300,a orange/red ball of light flew in east central illinois [champaign county] followed by low flying jets in the same pattern. +2009-01-25,38.5925,-90.3572222,Webster Groves (St. Louis),MO,other,2,estimated 200ft above ground actual shape was two cylinders attached by a wing-like "thing" one cylinder was larger than the other. W +2009-12-05,33.4936111,-117.1475,Temecula,CA,circle,600,UFO or ? +2009-01-25,25.9327778,-80.1627778,North Miami Beach,FL,oval,300,BOTH MY WIFE AND I HAVE NOTICED THE SAME U.F.O FOR THE PAST 2 WEEKS.LAST NIGHT WAS THE 5TH TIME WE HAVE SEE IN. AT FIRST WE THOUGHT +2009-12-05,33.4483333,-112.0733333,Phoenix,AZ,light,2,White orbs over Phoenix, Arizona. +2009-12-05,33.4936111,-117.1475,Temecula,CA,circle,60,me and my husband heading to south in 215 merging to 15 freeway when we saw this circle object hovering over us not to far from us beca +2009-01-25,41.1263889,-73.7144444,Armonk,NY,unknown,45,U.F.O Spotted Rising from the trees in Armonk New York! +2009-12-05,36.6102778,-88.3147222,Murray,KY,rectangle,30,Rectangular shaped object with two rows of light formations traveling erratically, using 90 degree turns and hovering in the sky. +2009-12-05,33.7283333,-117.1455556,Menifee,CA,circle,60,hovered slowy over us then took up speed. +2009-01-25,46.6022222,-120.5047222,Yakima,WA,other,1200,3 or 4 lights going in circular motions & then meeting as 1. ((NUFORC Note: Consistent with advertising lights. PD)) +2009-01-26,33.8752778,-117.5655556,Corona,CA,cigar,1,blue and green light surrounding cigar shaped object +2010-01-25,48.0152778,-122.0625,Lake Stevens,WA,unknown,900,Monday the 25th and the 26th. I am up at 4:45am every morning, went out to have a smoke. The skys were clear, both mornings, I saw what +2010-12-05,40.8258333,-74.2094444,Montclair,NJ,oval,40,Brite white oval shaped object that grew briter and disappeared +2010-12-05,40.8258333,-74.2094444,Montclair,NJ,unknown,420,bright shiny craft moving slowly at over 30K feet then jetted off quickly +2010-01-25,25.7738889,-80.1938889,Miami,FL,other,2,Watching the 5:30 news here in Miami on channel 7 the anchor described how someone found inside a dumpster a framed pic of the space sh +2010-01-25,19.6255556,-155.0416667,Keaau,HI,light,120,Golden round light flying quietly, small side balls blinked +2010-01-25,26.1416667,-81.795,Naples,FL,light,60,Amber light floats over Naples UFO or ??? +2010-12-05,45.6388889,-122.6602778,Vancouver,WA,triangle,60,UFO sighting Vancouver, WA December 5th, 2010. +2010-01-25,35.6505556,-78.4566667,Clayton,NC,light,3,1 light ver fast then gone +2010-12-05,42.0255556,-88.1783333,Streamwood,IL,triangle,10,Triangular shaped object illuminated bright white with one circualr white light at each corner. +2010-01-25,35.7719444,-78.6388889,Raleigh,NC,sphere,300,I have one picture of green spheres near the moon. Eight to twelve objects the same size. Plane green spheres +2010-12-05,41.2222222,-73.0569444,Milford,CT,circle,30,Driving down the street thinking " did something just fall out of the sky?" +2011-12-05,29.0936111,-97.2888889,Cuero,TX,light,180,I was driving home from work at approx. 1:00 am Monday morning. It was raining and i noticed a blue object to my left a short distance +2011-12-05,33.6125,-117.7119444,Laguna Hills,CA,disk,900,Green and red lights on craft very high in the sky. +2011-12-05,45.7833333,-108.5,Billings,MT,sphere,60,Bright light in east, falling, the bouncing horizontally along the horizon, then making a circle and shot up. +2011-12-05,28.5380556,-81.3794444,Orlando,FL,light,30,LIGHT BLUE & PURPLE LIGHT MOVING VERY ERRATIC +2011-01-25,37.78,-121.9769444,San Ramon,CA,light,900,Three bright objects seen over the San Ramon/Dublin/Pleasanton/Livermore, CA sky. +2011-01-25,39.9205556,-105.0861111,Broomfield,CO,formation,1200,Three lights in row. +2011-12-05,38.2680556,-77.1847222,King George,VA,triangle,30,UFO seen between US Army Fort AP Hill/Caroline and King George County on US-301 Southbound +2011-01-25,33.9533333,-117.3952778,Riverside,CA,triangle,1,Extremely fast black triangle +2011-12-05,39.5358333,-76.3486111,Bel Air,MD,oval,1200,Flying oval objects +2011-12-05,28.0680556,-80.5605556,Melbourne Beach,FL,diamond,180,At 9:00 pm a series of lights appeared aprox 1/2 mile off shore. They were stationary and seemed to represent one big object. The light +2011-01-25,34.61,-112.315,Prescott Valley,AZ,formation,20,UNUSUALLY BRIGHT, SEQUENTUALLY ILLUMINATING, YELLOW LIGHTS. +2011-12-05,47.4830556,-122.2158333,Renton,WA,light,240,Bright orb like light over sea tac dec 5 2011 21:00 +2011-12-05,36.6002778,-121.8936111,Monterey,CA,flash,2700,Moving orange lights and a bright flashing light very close to ground. +2012-12-05,35.6838889,-82.0094444,Marion,NC,light,5,Blue orb in WNC mountains. +2012-12-05,39.0347222,-76.9077778,Beltsville,MD,formation,360,Three flickering lights at first slow and then really fast until gone +2012-01-25,32.3794444,-81.6633333,Brooklet,GA,unknown,120,Very Odd event. +2012-12-05,38.9686111,-77.3413889,Reston,VA,changing,30,Red/orange, round, glowing object moving slowly and southeast at 1:45AM on 12/05/12. +2012-12-05,38.8402778,-97.6111111,Salina,KS,unknown,1200,Fast moving object that stops instantly with flashing lights +2012-12-05,47.4830556,-122.2158333,Renton,WA,fireball,30,I was leaving this morning 12/05/12 at 0615. I was walking out to my car and I focused my eyes towards the eastern sky. It was still da +2012-12-05,38.7877778,-90.2158333,Spanish Lake,MO,other,5,Swooping curved bluish light intered clouds then vanished +2012-01-25,26.2125,-80.25,Tamarac,FL,sphere,300,Spherical or slightly ovoid, stationary object observed, 5 minute time-frame 1/25/2012 +2012-12-05,39.9205556,-105.0861111,Broomfield,CO,other,60,Object with four flashing lights swoops over Broomfield houses. +2012-01-25,41.0241667,-80.6630556,Boardman,OH,fireball,15,Fame in the Sky over Boardman ohio +2012-12-05,42.8863889,-78.8786111,Buffalo,NY,flash,300,Tiny flying dot doing loops in the air and flashing colors. +2012-12-05,39.6836111,-75.75,Newark,DE,light,20,Green glowing silent orb moving S at 30&#730; down from the horizon looking east near Kirkwood Hwy and Polly Drummond Hill Rd in Newark +2012-01-25,37.775,-122.4183333,San Francisco,CA,cigar,835,Rotating dark object that climbed in altitude and traveled southeast +2012-01-25,27.5955556,-81.5063889,Avon Park,FL,fireball,15,Fireball UFO- Avon Park, FL. +2012-12-05,41.3775,-71.8277778,Westerly,RI,fireball,0.5,Intense yellowish white fireball with greenish tint. +2012-12-05,34.2255556,-77.945,Wilmington,NC,light,15,Orange light in sky Wilmington NC. +2012-01-25,38.8338889,-104.8208333,Colorado Springs,CO,cigar,180,Four blue lights seen blinking in what seems like morse code by two kids. +2012-01-25,37.7644444,-89.335,Murphysboro,IL,circle,7200,At 6:22 pm Me and my friend where standing out side looking at the planet x that is close by then I spotted a very bright light that ca +2012-12-05,39.2930556,-83.9888889,Blanchester,OH,fireball,10,Three orange spheres about 15 degrees above the horizon appeared and then 10 seconds later disappeared in the southeastern sky. +2012-12-05,39.3238889,-83.815,Martinsville,OH,circle,120,My family was traviling down st rt 28 heading toward new vianna and right at the flashing lights in martinsvill off to the right. +2012-12-05,39.4013889,-83.9813889,Clarksville,OH,unknown,120,Bright Lights in the Eastern Sky. +2012-01-25,36.0397222,-114.9811111,Henderson,NV,triangle,1800,Red and White lights over Henderson, NV...very fast and quickly changing directions. +2012-12-05,41.2427778,-73.2011111,Trumbull,CT,light,2,Ball of light moving downward quickly. Went behind clouds that seemed to possibly in the Newtown or Monroe area. +2012-01-25,45.4208333,-122.6694444,Lake Oswego,OR,light,300,Three large yellow/red lights travelling northeast at a rapid consistent rate. +2012-01-25,41.7886111,-89.6961111,Sterling,IL,formation,300,5 orange and red flashing lights flying west in a formation +2012-12-05,33.6888889,-78.8869444,Myrtle Beach,SC,light,180,2 yellow-orange star-like objects. +2012-01-25,37.6922222,-97.3372222,Wichita,KS,formation,1200,About 25 bright red lights west of Wichita +2012-01-25,36.7755556,-81.4125,Sugar Grove,VA,unknown,300,Object with 2 bright red lights, moving at low altitude, and low speed. +2012-01-25,38.005,-121.8047222,Antioch,CA,light,180,Red lights in triangle form flying in sky +2012-01-25,38.005,-121.8047222,Antioch,CA,light,300,4 lights in the sky in a formation +2012-01-25,38.005,-121.8047222,Antioch,CA,light,300,4 ufo witnesses antioch ca +2012-12-05,30.3880556,-95.6961111,Montgomery,TX,unknown,1800,Hovering Circular Object With Three Bright Lights in a Row and Multiple Flashing Red and Green Lights +2012-12-05,40.0891667,-75.3963889,King Of Prussia,PA,oval,900,Saw 3 brightly lit oval whitish-green craft flying in line formation over King of Prussia at night. One very fast. +2012-12-05,39.7697222,-74.8877778,Atco,NJ,light,30,2 directions star-like moving object. 2 speeds. +2012-12-05,38.52,-89.9838889,Belleville,IL,formation,300,3-4 orange lighted over belleville. +2012-01-25,47.5675,-121.8875,Fall City,WA,oval,1800,Flashing oval object sighted in Fall city +2013-01-25,38.4088889,-121.3705556,Elk Grove,CA,chevron,240,2 Craft seen in Elk Grove, Ca. Defying inertia and gravity with no sound. Seen by USMC Scout/Sniper. +2013-12-05,39.5297222,-119.8127778,Reno,NV,triangle,300,s meadows ufo sighting. +2013-01-25,42.8141667,-73.94,Schenectady,NY,flash,10,On Friday morning, January 25, 2013, I witnessed what I thought was a shooting star or firework. ((NUFORC Note: Meteor?? PD)) +2013-01-25,42.6658333,-74.31,Schoharie,NY,fireball,10,Big fireball burns out near Schoharie, NY. ((NUFORC Note: Possible meteor?? PD)) +2013-12-05,34.2694444,-118.7805556,Simi Valley,CA,sphere,300,Flock of geese disappears after being approached by a small white sphere. +2013-01-25,29.4238889,-98.4933333,San Antonio,TX,disk,180,Low altitude disc shaped Unidentified Phenomena fly's into cameras range of view, in and out of dimension, executes two U-turns! +2013-01-25,28.5380556,-81.3794444,Orlando,FL,other,240,Silver objects falls in orlando sky 1/25/13 +2013-12-05,55.3422222,-131.6461111,Ketchikan,AK,light,960,Light stayed over airport and slowly went left to right. Then it got really bright and dimmed and was gone. +2013-01-25,44.265,-69.1594444,Hope,ME,triangle,60,Triangle-shaped group of lights static above a hilltop, it moved, slowly and without apparent noise, in a N/NE direction. +2013-01-25,42.8711111,-97.3969444,Yankton,SD,formation,3600,Large metal structure suspended in the air and fleet of aircraft around it and interacting with it, and beaming light to the ground. +2013-12-05,45.0761111,-93.3325,Brooklyn Center,MN,disk,300,Car chased by shape shifting, airplane imitating, UFO at night. +2013-01-25,38.5816667,-121.4933333,Sacramento,CA,light,600,7 red lights floating upward over Sacramento 1/25/13. +2013-01-25,37.4947222,-120.8455556,Turlock,CA,changing,600,Golden-orange bright star fell from the sky & changed into flat black floppy object, landed in tree then flew away. +2013-12-05,45.6388889,-122.6602778,Vancouver,WA,circle,120,There were two lighted circle objects flying parallel west to east then shot straight up in the sky and disappeared I got a picture of +2013-01-25,43.6613889,-70.2558333,Portland,ME,formation,120,6 solid but U shaped objects, flying at high speed in a formation, 2 side by side in front, 2 with one behind the other, 2 in rear +2013-01-25,20.9316667,-156.6972222,Kaanapali,HI,circle,300,4 bright orange orbs soundlessly moving in a northerly direction at a slow place. +2013-01-25,30.2669444,-97.7427778,Austin,TX,light,900,Small maneuverable craft w/ two blue-white lights over Austin, TX. +2014-01-25,42.4805556,-83.4755556,Novi,MI,light,10,Bright green light illuminates room at night. +2014-01-25,44.9430556,-123.0338889,Salem,OR,flash,5400,Brilliant colorful flashing lights moving in a very unconventional way @ 1:30am on January 25, 2014 in Salem Oregon. +2014-01-25,33.9611111,-116.5008333,Desert Hot Springs,CA,diamond,1800,Scared you can tell those things are not planes realize we are not alone. +2014-01-25,39.5791667,-104.8763889,Centennial,CO,triangle,1800,3 residents of Centennial Colorado massive UFO due west of Centennal hoving bright multi color lights howing for over 30 minute plus. +2014-01-25,44.81,-68.9138889,Hermon,ME,triangle,120,VERY clear, close triangle object with pulsing lights and no sound directly overhead just 100 yards away. +2014-01-25,35.7719444,-78.6388889,Raleigh,NC,diamond,2,Diamond-shaped object glowing in morning sky. +2014-01-25,36.9741667,-122.0297222,Santa Cruz,CA,light,120,I watched three red/orange glowing lights in the sky in a triangle formation. Then one faded and disappeared. The the other two separ +2014-01-25,47.3811111,-122.2336111,Kent,WA,changing,300,Reddish orange glowing lights in an orb shape. +2014-01-25,34.0233333,-84.6155556,Kennesaw,GA,unknown,20,Single blinking red light, then green light, then disappeared completely. +2014-01-25,26.5625,-81.9497222,Cape Coral,FL,light,600,Adult male describes witnessing an estimated 20-25 orange lights move across the night sky. +2014-01-25,33.6694444,-117.8222222,Irvine,CA,triangle,40,Large Triangular translucent craft flew over the house while star gazing the width of 2 full moons. I was 100% silent with no lights. +2014-01-25,26.8230556,-80.1388889,Palm Beach Gardens,FL,circle,360,6 Orange Orbs Travel West to East Across the Northern Sky in South Florida. +2014-01-25,44.3730556,-71.6105556,Whitefield,NH,sphere,300,3 Orange spheres seen moving very slow in formation. +2014-01-25,45.7761111,-111.1761111,Belgrade,MT,diamond,60,Diamond shaped object with multiple lights spies over belgrade montana. +2014-01-25,36.8525,-121.4005556,Hollister,CA,sphere,180,Four randum colored lights that change colors with randum movements East of Hollister, CA. +2014-01-25,42.6105556,-71.2347222,Tewksbury,MA,light,4,Green and red falling light over walgreens resembling a flare +2014-01-25,27.6383333,-80.3975,Vero Beach,FL,other,2400,The speed that it went from a stand still to moving was fast. We did not here any engine sounds. +2014-01-25,27.6383333,-80.3975,Vero Beach,FL,other,60,Red/orange object. +2014-01-25,43.1788889,-122.1377778,Diamond Lake,OR,light,180,Big red orb flying over Diamond Lake, Or. +2014-01-25,28.0391667,-81.95,Lakeland,FL,diamond,180,Silent, strong pyramid form with goldfish orangish lights. +2014-01-25,48.4111111,-114.3366667,Whitefish,MT,fireball,300,Orange ball of light over Whitefish, MT. +2014-01-25,26.1336111,-80.1133333,Sunrise,FL,fireball,180,Orange fireballs spotted over South Florida, traveling alongside a plane. +2014-01-25,26.9338889,-80.0944444,Jupiter,FL,sphere,80,Low altitude red glowing sphere, 500 feet overhead. +2014-01-25,47.2891667,-101.0286111,Washburn,ND,light,600,Slow Moving Light West of Washburn. +1952-12-06,41.85,-87.65,Chicago,IL,other,45,Radar siting near Chicago- Dec. 1952. Object moved about 10 miles per second. +1967-12-06,41.3138889,-81.6852778,Broadview Heights,OH,light,20,Saw descending star-shaped object, slow, bright, no trails, no explosion, twice in 15 years. +1976-12-06,26.0625,-80.2333333,Davie,FL,changing,2400,I have checked your log report and found that the sighting I reported shortly after December 6, 1976, was not filed. I am dismayed but +1984-01-26,37.9513889,-91.7711111,Rolla,MO,light,120,Strange yellowish lights seen southeast of Rolla, Missouri +1994-12-06,37.7808333,-90.4216667,Farmington,MO,chevron,120,No lights, no sound, and HUGE. Quite an ironic sighting. +1995-01-26,48.5394444,-121.745,Concrete,WA,light,3300,Seattle City Light empl. reports several strange lights, which "bob" below horizon, then reappear. +1997-01-26,35.198055600000004,-111.6505556,Flagstaff,AZ,light,360,It traveled at about the same speed we were going and continued along with us for about five to seven miles. +1998-12-06,29.7063889,-96.5394444,Columbus,TX,fireball,4,Was heading back to Houston Tx, when I saw a green fireball streak across the sky from west to east. Only it sorta dashed across like s +1998-12-06,34.2569444,-85.1647222,Rome,GA,fireball,7,NE to NW Very fast and low flying, White light changing to Bright blue, then blueish red glow, turning to red, then turning solid yello +1998-01-26,26.2513889,-80.1791667,Coconut Creek,FL,circle,60,I SAW A GLOWING ORB OF LIGHT FLOAT OVER AN AREA OF TREES. IT FLOATED THEN SPED OFF AT A HIGH RATE OF SPEED TOWARDS THE NORTH +1998-12-06,36.175,-115.1363889,Las Vegas,NV,triangle,300,Came over Mountain to East which has Antenni and banked to South and flew just below broken cloud cover. It had no running lights but +1998-12-06,33.4483333,-112.0733333,Phoenix,AZ,cylinder,45,While working security I seen a object enter earths atmosphere, then glide over mountains east of Phoenix. +1998-12-06,38.4405556,-122.7133333,Santa Rosa,CA,light,900,Pale red light, approx. 1000 foot altitude, very slowly elevated to 1500 feet,then proceded towards our direction, so we continued driv +1998-12-06,38.4730556,-77.9969444,Culpeper County (Location Unspecified),VA,circle,1500,See Full description ((Police officer reports sighting of a "bright ball of light.")) +1998-01-26,36.175,-115.1363889,Las Vegas,NV,sphere,3,witnessed glowing bright green orb in the north west Las vegas sky. shot straight down at incredible speed and was gone. +1998-12-06,40.8963889,-78.2208333,Philipsburg,PA,disk,14400,Last evening my wife first saw 3 craft with red and white strobe lights flying horizontal and vertical in the clear sky outside my son' +1998-12-06,33.7877778,-117.8522222,Orange (W/B Sr-22, Garden Grove Fwy, @ Main St.),CA,fireball,1,While driving on the freeway at 2358 hours on a Sunday night, I observed a green fireball with an orange tail shoot straight down. +1999-12-06,39.1230556,-93.1966667,Marshall,MO,fireball,10,BLUE LIGHT IN SKY SEEN, THEN TOOK OFF SIDEWAYS AND LEFT STREAK LIKE LIGHTNING. +1999-12-06,33.6411111,-117.9177778,Costa Mesa,CA,unknown,120,Extremely brillent object glinting in the mid-day sun seemed stationary and then took off straight up and was out of sight in 1 or 2 se +1999-12-06,32.7152778,-117.1563889,San Diego,CA,unknown,300,short,bright contrail,west over ocean.heading north and descending approx 45deg.gone. reappeared parallel to horizon. reversed directio +1999-01-26,29.9986111,-95.2619444,Humble,TX,formation,300,Around 8:00pm EST, I went outside my home and saw what I thought was a satalite, but noticed several lights (approximately 8-10) parall +1999-01-26,37.505,-105.0072222,La Veta,CO,other,1200,Aircraft looked like a 747 three times its size. At each wing tip were much smaller aircraft. A probe went to the ground from the bell +2000-12-06,40.1294444,-86.6066667,Thorntown,IN,unknown,30,I don't know if I saw something or not! It was coming in my direction in the sky. It startled me when I saw it because is was coming +2000-12-06,43.0202778,-78.8805556,Tonawanda,NY,light,1500,Three bright, distinct objects, each "bouncing around". Near object had fainter white and red pulses around it. Observed 25 minutes. +2000-01-26,41.0041667,-92.3736111,Ottumwa,IA,disk,600,Daylight sighting of domed disk near Ottumwa +2000-12-06,38.2544444,-104.6086111,Pueblo,CO,unknown,15,Fast moving object in middle of day +2000-12-06,33.3941667,-104.5225,Roswell,NM,triangle,360,Helicopter into a triangle at Roswell +2000-12-06,47.9505556,-124.3841667,Forks,WA,cigar,420,Two paralell light were jolting back and forth around the moon. +2000-01-26,33.7591667,-118.0058333,Westminster,CA,light,240,I observed an unusually bright pure red light by itself, it was the size of a pea held at arms length. It was coming from the South Wes +2000-01-26,47.6063889,-122.3308333,Seattle,WA,fireball,15,Driving to a meeting in Seattle Capitol Hill area, s. bound I-5 exited at Roanoke, I was stopped at light to turn, very clear winter ni +2000-12-06,38.4344444,-82.1325,Milton,WV,light,60,Two lights collided and made one. They shot off like in star trek. +2000-01-26,27.5872222,-82.4252778,Parrish,FL,triangle,300,Two witnesses saw six lights like domino dots for the six domino, but it was in a triangular or boomerang shape above the tree line,per +2000-01-26,41.2586111,-95.9375,Omaha,NE,teardrop,15,Saw a black object move from eastern horizon to the western horizon that seemed to be decending at approx. a 30 degree angle +2001-01-26,32.4313889,-80.67,Beaufort,SC,diamond,1800,Three silent objects seen in Beaufort, SC for nearly thirty minutes +2001-01-26,33.1958333,-117.3786111,Oceanside,CA,triangle,30,25 mph, 50 ft. in diameter, 300 ft. above, dark-camo-green, shaped like a tall slice of pie. Two 10' white pods underside. +2001-01-26,41.2794444,-72.8155556,Branford,CT,egg,180,shiny object in the sky +2001-12-06,33.9561111,-83.9880556,Lawrenceville,GA,diamond,360,Their where two diamond-shaped UFO's going the same speed and same direction,not going up or down until they turned up like bullets. +2001-12-06,38.2544444,-104.6086111,Pueblo,CO,light,300,Stange cluster of lights in SouthWestern Sky of Pueblo Colorado +2001-01-26,32.9027778,-96.5636111,Rowlett,TX,unknown,7,burnt-orange, amber colored luminescent object traveling at high rate of speed makes instant 90 degree turn +2001-01-26,41.7561111,-124.2005556,Crescent City,CA,light,120,There was a very bright orangish light out over the Pacific Ocean gradually moving to the north...it was accelerating up and down... +2001-01-26,42.6583333,-71.1375,Andover,MA,disk,60,Hi Folks- All I can tell you is that I am very well versed on aircraft...I live 15 mi from Logan Logan Airport..I see approaches all th +2001-12-06,33.9136111,-98.4930556,Wichita Falls,TX,other,180,weird thing in texas +2001-01-26,47.8108333,-122.3761111,Edmonds,WA,oval,180,Large bright white oval ball of light hovering over lynnwood or edmonds on 1/26/01 around 10:30 pm +2002-12-06,40.9508333,-115.4519444,Halleck (Near),NV,unknown,20,Top secret "X-craft" flights may be occurring in remote, rural areas well outside test facilities. +2002-12-06,33.9830556,-118.0958333,Pico Rivera,CA,changing,3600,Weird looking bright star +2002-12-06,31.5491667,-97.1463889,Waco,TX,other,420,I WAS OUTSIDE SMOKING A CIGAR EARLY IN THE MORNING WHEN I NOTICE WHAT I THOUGHT WAS A VERY BRIGHT STAR. THIS STAR WAS JUST TO THE LEFT +2002-12-06,41.85,-87.65,Chicago,IL,disk,240,UFO appeared in the sky of Michigan Lake in Chicago recently +2002-12-06,35.2269444,-80.8433333,Charlotte,NC,circle,2,A white circle about the size of my thumb at arm's length. +2002-01-26,42.4405556,-76.4969444,Ithaca,NY,cylinder,180,Cylinder crosses sky without any vapor trail. +2002-12-06,34.2783333,-119.2922222,Ventura,CA,changing,600,Abruptly maneuvering black object hovers over Ventura County, CA, displaces cloud formations 12/06/02 +2002-01-26,38.005,-121.8047222,Antioch,CA,fireball,30,Fireball Frequesntly Seen In Antioch CA +2002-12-06,48.1988889,-122.1238889,Arlington,WA,fireball,1,A green fireball going towards Granite Falls +2002-12-06,48.1183333,-123.4294444,Port Angeles (5.5 Miles East Of),WA,disk,60,VERY reliable second hand information as follows: On the night of Friday, Dec. 6, 2002 at 7:30 pm, a friend was driving home from work +2002-12-06,48.4213889,-122.3327778,Mt. Vernon,WA,fireball,7,Bright white fireball, Washington State. +2002-12-06,42.5777778,-121.865,Chiloquin,OR,sphere,2700,6 rotating,flashing spheres of colored light,in night sky above Chiloquin Ridge, Oregon +2002-01-26,37.3058333,-89.5180556,Cape Girardeau,MO,circle,60,Circular object appears to "float" over city +2002-12-06,32.7152778,-117.1563889,San Diego,CA,chevron,60,In Mission Valley: Black V-shaped object with faint glowing "dots" like stars on undersurface +2002-01-26,41.4875,-82.1016667,Sheffield Lake,OH,changing,1020,HOVERING UFO STARTLED AS IT WAS DISCOVERED +2002-12-06,34.2083333,-77.7966667,Wrightsville Beach,NC,circle,3,12/6/02 10:55 pm EST. Bright blue ball appears and moves quickly through the sky. +2002-12-06,36.9066667,-82.7819444,Appalachia,VA,light,600,3 orange crafts land? +2002-12-06,32.7763889,-79.9311111,Charleston,SC,fireball,5,This was an amazing fireball! +2003-12-06,38.525,-89.1333333,Centralia,IL,other,600,Two red circles of light growing brighter ,then slowly dim ,go out and ,then reappear. +2003-01-26,34.1511111,-118.4483333,Sherman Oaks,CA,changing,1200,Two white-appearing, glowing orbs moving out of the West to the East, moving slowly (appx 30ꯠft) in parallel formation, then stoppin +2003-01-26,34.1866667,-118.4480556,Van Nuys,CA,disk,8,4 Disk Shaped Objects sighted flying in formation over Van Nuys, Ca. +2003-01-26,30.7636111,-88.0747222,Chickasaw,AL,other,300,V shaped object witnessed in Chickasaw,Alabama Ƽ very bright lights,very large in size,moving at different speeds and even standing st +2003-12-06,31.6741667,-83.6375,Sycamore,GA,teardrop,900,We saw 2 large objects in the sky and the colors were fascinating! +2003-01-26,32.3663889,-96.1005556,Mabank,TX,triangle,3600,Triangle lights that move side to side. +2004-12-06,43.8447222,-82.6513889,Harbor Beach,MI,unknown,7200,it was large and blinking kind of haveing a fierce glow around it , there was things dropping off of it. +2004-01-26,37.775,-122.4183333,San Francisco,CA,changing,20,odd lower trajectory over crowded metropolitan area - morphed from single engine aircraft to irregular lighting pattern +2004-01-26,29.4238889,-98.4933333,San Antonio,TX,other,180,ON 1-26-04 6:12PM SAW A ROUNDBALL WITH ORANGE/YELLOW GLOW INCENTER. HAD 2 TRAIL LINES TO IT AS CAME CLOSER ORANGE/YELLOW ( S/W DIREC +2004-12-06,41.3683333,-82.1077778,Elyria,OH,light,600,The lorain county airport is literally in my back yard. the object that i saw was a pulsing light of a full spectrum of colors. the o +2004-01-26,33.4483333,-112.0733333,Phoenix,AZ,light,360,The light continued to pulsate very slowly, completely disappearing, and then turning back on. +2004-12-06,34.2275,-83.8844444,Oakwood,GA,light,1,A beam of light like a firefly makes but at a way larger scale +2004-01-26,27.9472222,-82.4586111,Tampa,FL,fireball,30,I saw a green fireball over the city of Tampa Fl. +2005-01-26,36.4072222,-83.0055556,Rogersville,TN,fireball,10,Red light in sky Moving Quickly and Disappeared. +2005-12-06,32.7355556,-97.1077778,Arlington,TX,light,60,Was taking out the trash at 6:00 a.m.. I live near the dfw airport so there are always lights in the sky. I know what a plane in the da +2005-12-06,33.9533333,-117.3952778,Riverside,CA,oval,420,I thought it was a blimp that just happened to be lit, but it was moving too fast to be a blimp. +2005-12-06,34.5794444,-118.1155556,Palmdale,CA,triangle,900,Giant triangle stealth like craft hovering over California dessert +2005-01-26,34.7022222,-82.4647222,Piedmont,SC,light,20,Stationary light with increasing brightness - then dimming and moving away to the west. +2005-12-06,33.9533333,-117.3952778,Riverside,CA,egg,2400,Lime Green Egg-Shaped UFO Over Riverside,Ca +2005-12-06,48.4213889,-122.3327778,Mount Vernon,WA,unknown,120,Dark object with three lights on the bottom arranged in a triangle +2005-01-26,36.2138889,-83.295,Morristown,TN,triangle,900,MUFON report /Trucker reports hovering triangle over Interstate +2005-01-26,41.8275,-80.8719444,Saybrook,OH,rectangle,1800,Rectangular Cloud? +2006-01-26,42.9097222,-85.7630556,Grandville,MI,sphere,7200,Colorful sphere moving in theMichigan sky above US 131 +2006-12-06,39.7391667,-104.9841667,Denver,CO,oval,30,Oval object travelling west over Denver skyline flanked by two jets +2006-12-06,38.2541667,-85.7594444,Louisville,KY,disk,180,As we turned the saucer shaped thing disappeared. It blinked out and was gone. +2006-12-06,40.2491667,-75.1344444,Warrington,PA,triangle,180,Possible triangle shaped object with 3 amber/purple colored lights surrounding a large pulsating white light +2006-01-26,41.8661111,-88.1069444,Wheaton,IL,sphere,120,Big sphere blasts off +2006-12-06,41.5611111,-74.1888889,Walden,NY,triangle,10,I saw a trainagle with light that were like red on every angle and one red in the center. +2006-12-06,32.3291667,-96.625,Ennis,TX,light,36000,The obj. never moved, the lights never stopped rotating, and was still there in the morning. ((NUFORC Note: Sighting of Sirius?? PD) +2006-12-06,27.9472222,-82.4586111,Tampa,FL,rectangle,120,Pale green pulsing light with dark rectagular core +2006-12-06,33.0580556,-112.0469444,Maricopa,AZ,triangle,1500,Orange lights in the sky. +2006-12-06,33.4483333,-112.0733333,Phoenix,AZ,triangle,3600,8 bright individual pulsing lights yellow orange in color forming one large triangle then winked out one at a time and would come back +2006-12-06,30.925,-88.59,Lucedale,MS,triangle,300,Large trianglar object with blue lights on the underside hoovering over the northwest side of Lucedale, MS at 20:45 p.m. on 12/06/06. +2006-12-06,33.4483333,-112.0733333,Phoenix,AZ,formation,600,Two craft, disappear and reappear, one of the crafts gains more lights and begins flashing. +2006-01-26,40.2330556,-76.1375,Denver,PA,circle,1200,Six Bright Lights in Static Formation +2006-12-06,37.775,-122.4183333,San Francisco,CA,disk,300,Circlulating lights, pulsating yellow squares +2006-01-26,41.0036111,-76.4552778,Bloomsburg,PA,diamond,600,Diamond-shaped flying object with lights at the corners, near Bloomsburg, PA, travelling NNW, lasted from about 23:00 to 23:10. +2007-12-06,33.5966667,-83.8602778,Covington,GA,light,1200,Bright light and flashing in covington ga +2007-01-26,41.8388889,-89.4794444,Dixon,IL,disk,45,orange disc +2007-01-26,40.7141667,-74.0063889,New York City,NY,oval,6,Silver, round globes, moving due East in New York City +2007-01-26,27.1958333,-82.4905556,Osprey,FL,circle,300,Flashing circular object consisting of concentric circles of varying colors of light observed. +2007-01-26,35.9380556,-77.7908333,Rocky Mount,NC,other,60,Huge combination of shapes, lit up with individual white, bright light +2007-01-26,34.0522222,-118.2427778,Los Angeles,CA,light,600,Star like object moving across the sky very slowly and stops moving. +2007-01-26,44.489444399999996,-68.8575,Stockton Springs,ME,light,2,Fiery orange object descended rapidly through the sky, appeared to strike earth. ((NUFORC Note: Possible space debris or meteor?? PD) +2007-01-26,40.2338889,-111.6577778,Provo,UT,light,30,White light, glides silently across the night sky… ((NUFORC Note: Possible sighting of a satellite?? PD)) +2007-12-06,41.7,-71.4166667,West Warwick,RI,circle,60,Me and my father's girlfriend were walking back form the store when what we seen what we though was an airplane flying extrmely close t +2007-12-06,26.525,-80.0666667,Boynton Beach,FL,rectangle,180,Extremely low-flying narrow rectangular, billboard-sized craft with round white lights all across front +2007-12-06,41.8741667,-80.1319444,Edinboro,PA,disk,6,Four dull silver crafts seen doing aerial maneuvers +2007-01-26,31.2836111,-90.4683333,Summit,MS,unknown,300,2 large bright orange lights +2007-01-26,36.3047222,-86.62,Hendersonville,TN,light,600,Two sets of triad-lights, hanging in the sky then dropping below ridge line +2007-12-06,47.3088889,-122.0019444,Black Diamond,WA,light,1800,Very slow moving bright white light, multiple colors illuminated like fire flames popping out between the black object and the white li +2008-01-26,45.5236111,-122.675,Portland,OR,circle,300,Stationary yellow-white ball of light over Portland, OR, emitting colors and no sound. +2008-12-06,33.6602778,-117.9983333,Huntington Beach,CA,light,300,12/06/08 3:15 am I saw the Orange light again. It was straight out from my front porch low in the sky, just above the power lines. I +2008-01-26,39.2902778,-76.6125,Baltimore,MD,cigar,300,Four stationary light objects at Sunrise in the Eastern sky +2008-12-06,32.4366667,-111.2247222,Marana,AZ,sphere,20,Saw a silver shiny sphere twice while driving north on Cortaro before Silverbell in Marana, AZ. +2008-01-26,36.3133333,-82.3536111,Johnson City (Near),TN,oval,900,Interesting object in Transport on Interstate 81 heading north in Tennessee. +2008-01-26,39.7391667,-104.9841667,Denver,CO,sphere,600,Distant white spheres seen by crowd on college campus +2008-12-06,30.3677778,-97.9913889,Lakeway,TX,rectangle,600,Cigar shaped craft floating over Lakeway Texas Decemeber 6th 2008 2:07 PM under clear skies +2008-01-26,26.6402778,-81.8725,Fort Myers,FL,disk,40,Silver Disk Sighting Near Fot Myers Florida Airport. +2008-12-06,34.1063889,-117.3694444,Rialto,CA,circle,900,Just before walking into the house I looked straight up and saw a small white object which was moving very slowly in a N-NW direction. +2008-12-06,25.7738889,-80.1938889,Miami (Downtown),FL,cylinder,1200,Long, red/orange, cylindrical object floats over Biscayne Bay, FL +2008-12-06,34.8666667,-92.4041667,Maumelle,AR,fireball,180,Fireball craft spotted in Maumelle, Arkansas heading South East. +2008-12-06,33.7444444,-118.3861111,Rancho Palos Verdes,CA,triangle,300,at 530 on sunday12-6-08we saw a long black triangle float into the sky above the clouds about 50 thousand feet. +2008-12-06,35.1216667,-120.6202778,Grover Beach,CA,fireball,10,I thought I saw a shooting star, then maybe a rocket launch, then maybe a plane crashing.....but itjust disappeared! +2008-01-26,33.8352778,-117.9136111,Anaheim,CA,fireball,120,While Driving West bound on the 91 freeway around the State College exit. I thought I saw a falling star, but when they started to fly +2008-01-26,33.8702778,-117.9244444,Fullerton,CA,fireball,300,Two bright fireballs seen in the northeastern sky above Fullerton, California. +2008-01-26,33.8722222,-117.8694444,Placentia,CA,oval,180,Two oval orange disks leaving a trail & turning on and off intermittently over Yorba Linda Boulevard in Placentia, CA. +2008-01-26,33.8886111,-117.8122222,Yorba Linda,CA,fireball,600,What fell from the sky Jan. 26th, 2008? +2008-01-26,33.8886111,-117.8122222,Yorba Linda,CA,fireball,600,Fireball falling to earth, stops mid fall, hovers and then engages in horizontal movement, disappearing and then reappearing. +2008-01-26,33.8886111,-117.8122222,Yorba Linda,CA,light,900,Large bright white objects falling from sky with a tail of fire, then hovering and moving laterally over LA county California 1/26/08 +2008-01-26,34.0522222,-118.2427778,Los Angeles,CA,rectangle,300,1-28-08 5 Large burning pieces entering atmosphere over Los Angeles +2008-01-26,37.7886111,-79.8838889,Low Moor,VA,unknown,7,Low, large, fast, maneuvering aircraft with strange glow and configuration over I-64W. +2008-12-06,35.3186111,-82.4611111,Hendersonville,NC,light,1800,Star-like objects fade in and out, and move in patterns unusual for conventional aircraft +2008-01-26,41.7038889,-79.0358333,Sheffield,PA,circle,60,hi, this just happened 2oo ago. I was wal;king my dog just after sundown. It was dark. I heard a deep rumnbling that seemed to come +2008-01-26,35.2269444,-80.8433333,Charlotte,NC,formation,1800,5 bright flashing lights hovering horizontally in Charlotte NC sky at night +2008-01-26,33.5386111,-112.1852778,Glendale,AZ,oval,120,Hoovering red light in the north sky near Phoenix, AZ +2008-12-06,32.7833333,-96.8,Dallas,TX,light,8,Green light +2008-12-06,34.0522222,-118.2427778,Los Angeles,CA,light,1200,2 light shapes moving in a pattern at incredible speed. +2008-12-06,38.9180556,-78.1947222,Front Royal,VA,teardrop,10,I was leaving work and approaching my vehicle in the parking lot of Target in Front Royal VA, and saw a strange green light that seemed +2008-12-06,39.3280556,-120.1822222,Truckee (Near Donner Lake),CA,light,1.5,Sudden appearing bright light flew incredibly fast straight down until out of sight. +2009-12-06,47.3075,-122.2272222,Auburn,WA,unknown,180,Two low flying craft flying very slowly over HWY 167 southbound, one with two white blinking lights second two green lights. +2009-01-26,43.0605556,-88.1063889,Brookfield,WI,unknown,1200,Bright light shows another bigger object that blended into the sky but flashed. 500 Lights On Object0: Yes +2009-12-06,34.9202778,-82.2963889,Taylors,SC,other,21600,Airplane shaped aircraft motionless in the air. +2009-01-26,33.7455556,-117.8669444,Santa Ana,CA,light,1800,several objects seen over Central Orange County (Santa Ana College Area) +2009-01-26,36.2694444,-95.8544444,Owasso,OK,triangle,600,The u.f.o. was a triangle and it had lights!!!!! +2009-01-26,41.9733333,-74.2125,West Shokan,NY,fireball,1,Daytime ball of light flies at ground level only to disappear +2009-12-06,41.4958333,-87.8486111,Frankfort,IL,formation,1200,Triangle formation in the sky +2009-12-06,33.4936111,-117.1475,Temecula,CA,disk,180,object had no sound , and it hover in mid air. +2009-12-06,42.7352778,-76.1486111,Preble,NY,light,5,Light in the sky on rt. 81 S near Preble NY. +2009-01-26,41.005,-73.785,Scarsdale,NY,disk,45,Large, saucer-shaped object with three bright lights flying very fast and low to the ground +2009-01-26,40.9166667,-74.1722222,West Paterson,NJ,circle,2,Someone dropped the moon in West Paterson +2009-01-26,30.4055556,-86.6188889,Fort Walton Beach,FL,triangle,9,Black triangle flying low over northwestern Florida. +2009-01-26,40.9483333,-74.6175,Lake Hopatcong,NJ,light,900,Three red lights seen from Lake Hopatcong, NJ on january 26 +2009-12-06,28.665,-80.845,Mims,FL,light,120,Lights moving in the sky +2009-01-26,40.8219444,-74.4491667,Cedar Knolls,NJ,circle,120,Object that looked like a large moon...it moved and then dropped off sight. +2010-12-06,32.9813889,-82.8102778,Sandersville,GA,cigar,120,I would like to know what I saw. +2010-01-26,30.2669444,-97.7427778,Austin,TX,other,120,Two objects over Austin +2010-12-06,34.0522222,-118.2427778,Los Angeles,CA,cigar,1800,A possible UFO cigar-ed shaped is moving and hovering in the air for about 20 minutes while airplanes land and take off LAX airport. +2010-12-06,47.5277778,-113.7097222,Condon,MT,light,2,Unexplained bright light traverses back in tree line along a logging trail +2010-12-06,45.6388889,-122.6602778,Vancouver,WA,triangle,300,Triangular Space Craft by Stapleton Rd. Vancouver +2010-12-06,26.6833333,-80.28,Loxahatchee,FL,rectangle,480,Rectangular Gowing Object +2010-12-06,42.3211111,-85.1797222,Battle Creek,MI,sphere,7200,Glowing sphere seen in the day time sky over Battle Creek, Michigan. +2010-12-06,33.8936111,-117.7263889,Chino Hills,CA,light,3600,White Lights Over Inland Empire CA +2010-01-26,25.7738889,-80.1938889,Miami,FL,light,2,Saw first magnitude pinpoint moving south to north around 7:00 pm EST near Polaris from Miami +2010-12-06,47.4830556,-122.2158333,Renton,WA,circle,120,Helicopter/airplane follows a fireball? +2010-01-26,47.6116667,-122.7091667,Chico,WA,triangle,180,Two lights joined by a third to form a triangular shape hovering ESE of Chico, Washington. +2011-12-06,36.8288889,-83.7702778,Flat Lick,KY,oval,30,My electricity had went out roughly around a quarter til midnight last night and i sat around for a few minutes and went to look outsid +2011-01-26,32.9477778,-112.7161111,Gila Bend,AZ,formation,900,Formation of Yellow Fireballs tracking location and perspective during 80mph interstate travel, possible fighter intercept at end. +2011-01-26,40.7141667,-74.0063889,New York City (Brooklyn),NY,fireball,180,randomly looking outside of my window and noticing something strange +2011-12-06,34.1425,-118.2541667,Glendale,CA,flash,3,I'm walking to work and there was a white ball flashing and falling down as if it was a New Years Eve ball from the countdown. +2011-12-06,34.2011111,-118.5355556,Reseda,CA,triangle,20,Triangle-shape with three smaller triangles at each corner glowing fuzzy Orange. +2011-12-06,40.8022222,-124.1625,Eureka,CA,oval,300,Yellowish orange oval south of Eureka,CA on December 5 at 6:30 am December 6 at 6 pm +2011-12-06,42.7325,-84.5555556,Lansing,MI,light,180,Orange orbs over downtown Lansing - Dec. 6 2011 +2011-01-26,40.3916667,-111.85,Lehi,UT,formation,600,3 red light moving slowly in formation, droping bright white lights. +2011-01-26,40.3769444,-111.795,American Fork,UT,light,1200,Three red lights in sky over American Fork +2011-01-26,40.3769444,-111.795,American Fork,UT,light,360,Strange lights dropping sparkley substances are seen by many above American Fork Utah 1-26-11. +2011-12-06,36.7477778,-119.7713889,Fresno,CA,unknown,20,My first sighting of a UFO +2011-01-26,37.775,-122.4183333,San Francisco,CA,fireball,300,Set of Orange Lights in the sky in San Francisco +2012-01-26,35.7913889,-78.7813889,Cary,NC,unknown,60,I was driving down 40 on my way home from work. It was about midnight. The clouds seemed to be moving independently of eachother. Ex +2012-12-06,34.1205556,-84.0044444,Buford,GA,unknown,300,Strange non-alian aircraft above buford ga. +2012-12-06,39.9522222,-75.1641667,Philadelphia,PA,chevron,60,Dark, silent, boomerang shaped object seen by 3 in Philadelphia. +2012-01-26,33.3527778,-111.7883333,Gilbert,AZ,rectangle,600,Amber in color Very bright at times Spark like objects falling from the object Moved smoothly and slowly +2012-01-26,36.6061111,-118.0619444,Lone Pine (Highway 395 South Of),CA,triangle,3,Silent Matt black triangle craft seen alongside my car then disapears across dry lake at speeds in excess of 10ꯠ mph +2012-12-06,33.9830556,-118.0958333,Pico Rivera,CA,triangle,5,Propeller shaped object rights itself and then vanishes in broad daylight. +2012-12-06,36.0397222,-114.9811111,Henderson,NV,sphere,300,Glowing red sphere that pulsated with light then dimmed, making it seem like it ascended to greater altitude. +2012-12-06,43.4366667,-71.1727778,New Durham,NH,disk,120,Large disk with lights on each side of craft seen over New Durham +2012-12-06,42.9055556,-74.5722222,Canajoharie,NY,chevron,30,1 Large Chevron Object Flies Directly Overhead In Early Evening. +2012-12-06,39.2775,-74.575,Ocean City,NJ,other,300,Four blinking lights formed a "V"in the sky. +2012-12-06,33.2147222,-97.1327778,Denton,TX,light,15,Five glowing fiery lights seen looking north from U. of North Texas campus before slowly vanishing. +2012-12-06,36.9911111,-91.4925,Birch Tree,MO,fireball,1200,Red/orange lights moving and leaving flickering trails. +2012-12-06,40.5580556,-90.035,Canton,IL,fireball,600,Orange fireballs in the sky. +2012-12-06,40.0455556,-86.0086111,Noblesville,IN,triangle,6,Triangle shaped object outlined in blue/green lights, was big and fast. +2012-01-26,37.0208333,-93.2058333,Ozark,MO,fireball,30,Orange ball of light +2012-12-06,33.7069444,-117.2441667,Quail Valley,CA,triangle,120,I WENT OUT TO SMOKE A CIGARETTE AND SAW A BRIGHT RED LIGHT WAY HIGH MOVING SLOW STEADY IN A TRIANGLE SHAPE WITH 3 FLARES OUT EACH PEAK +2012-12-06,34.345,-112.1583333,Spring Valley,AZ,light,900,Object appeared to be satellite but did not conform to any orbital characteristics that I'm aware of. +2012-01-26,38.71,-105.1394444,Victor,CO,unknown,900,Two strobe like lights flying in unison in southern sky over Victor, CO +2012-01-26,40.5866667,-122.3905556,Redding,CA,oval,30,White light, rotating blue lights on it in the night sky Redding Ca +2012-12-06,44.8513889,-123.1855556,Independence,OR,light,5,Bright light over house and yard. 500 Lights On Object0: Yes +2012-12-06,27.3361111,-82.5308333,Sarasota,FL,light,120,Red lights traveling in a v formation. +2012-12-06,47.0075,-122.9080556,Tumwater,WA,oval,20,Blinking objects in formation. +2012-12-06,26.0391667,-97.5561111,Rancho Viejo,TX,teardrop,30,Very distinct bright golden light. moved in swerves. +2012-12-06,39.6836111,-75.75,Newark,DE,triangle,30,Noisy aircraft travelling slowly S. Low in the sky; lights on each corner of triangle. Near Kirkwood Hwy and Polly Drummond Hill Rd. +2012-12-06,28.3858333,-80.7422222,Cocoa,FL,unknown,600,Silent Storm UFO Pictured. +2012-01-26,30.0858333,-94.1016667,Beaumont,TX,triangle,120,3 white lights flashing in sequence over Beaumont, Texas +2012-01-26,30.3116667,-95.4558333,Conroe,TX,circle,6,Large red circular object with a black center appeared went in a downward right angle then disappeared. +2012-12-06,42.2625,-71.8027778,Worcester,MA,rectangle,5,UFO floating still, then speeding off incredibly fast. +2012-12-06,47.4830556,-122.2158333,Renton,WA,fireball,120,((HOAX??)) Male alleges to have witnessed approximately a dozen orange "fireballs" seen above Renton. +2013-12-06,34.2561111,-78.045,Leland,NC,changing,5,Silent ball of light traveling at extremely fast speed, witnessed by 3 people. +2013-12-06,36.1538889,-95.9925,Tulsa,OK,circle,900,During the snow fall on Friday night, I stepped out for a cigarette. I heard a strange sound that seemed to be a mix between very dista +2013-01-26,26.3583333,-80.0833333,Boca Raton,FL,triangle,10,Silent, single gold light flying very quickly. Changes direction several times. +2013-12-06,42.2788889,-87.8341667,Lake Bluff,IL,circle,60,Two bright yellow balls over Rte. 41 danced, twisted, and took off in two opposite directions! Less than 1 Minute! Both GONE! +2013-12-06,30.3319444,-81.6558333,Jacksonville,FL,flash,10,I'm only reporting this because now it happened a second night in a row and my husband saw it this time too and the helicopters and pla +2013-01-26,33.9608333,-83.3780556,Athens,GA,egg,180,Two black objects that moved vertically, sideways in the same area for couple minutes +2013-12-06,33.3627778,-112.1686111,Laveen,AZ,fireball,978,Fire Orb By North Star In Phoenix +2013-12-06,35.6833333,-85.77,Mcminnville,TN,unknown,30,Blinding white light and loud boom - thought it to be thnder/lightning, but no other flashes/rumbles were heard before/after occurrence +2013-01-26,39.8525,-95.5355556,Hiawatha,KS,disk,900,I was leaving my house and saw a Bright Orange light while headed into town then 3 more appeared. They were evenly behind one another. +2013-12-06,32.9911111,-117.2702778,Solana Beach,CA,light,300,Driving south on I/5 in slow traffic. To the East were three orange glowing lights forming a triangle together hovering silently over t +2013-12-06,21.3822222,-157.9336111,Aiea,HI,circle,180,Orb On Oahu, Hawaii Friday December 6th About 1900hrs seen going East and West Then Military Follow. +2013-01-26,35.6838889,-82.0094444,Marion,NC,light,600,Crazy light show that we have never seen and can not be explained it was so captivating and scary at the same time. +2013-12-06,26.9758333,-82.0908333,Port Charlotte,FL,circle,20,Orange light, possibly circle shaped moved slowly in the night sky before fading out. +2013-12-06,20.8911111,-156.5047222,Wailuku,HI,light,1800,Large white light that changed speed and direction viewed over land wailuku maui. +2013-01-26,42.0372222,-88.2811111,Elgin,IL,changing,300,At 8:00pm a cluster of orange lights appeared to be headed eastward to the northwest of Elgin. +2013-12-06,40.7608333,-111.8902778,Salt Lake City,UT,light,60,5 orange-gold lights ascend and disappear. +2013-12-06,33.0888889,-96.8861111,The Colony,TX,circle,60,Blue and green circular light seen above texas ice storm. +2013-12-06,35.6216667,-86.5925,Unionville,TN,cone,240,Huge red cone shape glowing. +2013-12-06,39.7683333,-86.1580556,Indianapolis,IN,unknown,15,Hovering craft with strobe lights about the Indianapolis Airport. +2013-01-26,27.2541667,-80.23,Jensen Beach,FL,sphere,600,Red/orange sphere flew for about 3 mins. 3 seperate times then disappeared. captured whole thing on video. +2013-12-06,32.8472222,-117.2733333,La Jolla,CA,other,1200,Many scattered yellow lights in sky above ocean, San Diego. +2013-12-06,30.1763889,-85.8055556,Panama City Beach,FL,changing,60,Round orange slow moving object that changed its shape into an upside down candy cane or J. No sound. Changed back to round shape and d +2013-12-06,27.9091667,-82.7875,Largo,FL,circle,300,Saw a flashing light move strait up,stop still in the sky & strait sideways & then lower down slow +2013-12-06,26.2708333,-80.2708333,Coral Springs,FL,unknown,180,4 red lights seen in the clear night sky lined up in order traveling up and disappeared. +2013-12-06,41.926944399999996,-73.9977778,Kingston,NY,light,300,Kingston, NY Two brilliant red stationary lights accelerate quickly in coordinated fashion and disappear. +2013-12-06,45.5236111,-122.675,Portland (Southeast Of),OR,light,60,Strange constant set of lights moving East to West over inner SE portland skyline +2014-01-26,32.5436111,-86.2119444,Wetumpka,AL,sphere,60,Saw at first one pulsating sphere. Then a secound. Both moving very aratctly. +2014-01-26,48.9466667,-122.4508333,Lynden,WA,flash,3,Bright downward Strike of light of green and red. Beautiful and vivid . +2014-01-26,36.0305556,-75.6763889,Kill Devil Hills,NC,triangle,600,Multiple sightings over the past few weeks on the OBX. +2014-01-26,40.7683333,-74.1458333,Kearny,NJ,oval,70,Red light emitting from a cloud +2014-01-26,46.1469444,-122.9072222,Kelso,WA,fireball,180,Saw a fireball flyover Longview WA from Kelso WA. +2014-01-26,33.426944399999996,-117.6111111,San Clemente,CA,circle,120,Two bright orange/red orbs sighted over Pacific Ocean. +2014-01-26,35.0844444,-106.6505556,Albuquerque,NM,egg,1125,The craft was no any commercial or military aircraft I've ever seen. +2014-01-26,38.9694444,-77.3863889,Herndon,VA,sphere,120,Orange/reddish slow moving flying objects over Herndon. No noise. +2014-01-26,40.7883333,-74.1336111,North Arlington,NJ,fireball,1200,Red circle hovering. Started moving slowly than took off and disappeared. +2014-01-26,40.7883333,-74.1336111,North Arlington,NJ,triangle,30,Low altitude high velocity no sound at all. dark triangles. +2014-01-26,30.3319444,-81.6558333,Jacksonville,FL,disk,360,Bright disc spotted over east Jacksonville near 295, with aircrafts following. +1975-12-07,30.3319444,-81.6558333,Jacksonville,FL,triangle,300,WHILE WALKING ON ATLANTIC BOULEVARD IN JACKSONVILLE I WITNESSED A BOOMERANG SHAPED OBJECT ALMOST COLLIDE WITH A COMMERCIAL AIRLINER +1985-01-27,45.8405556,-119.2883333,Hermiston,OR,other,45,Me and my buddies were out camping, when we heard a muffled bang. We looked up and there was three bright flashes of blue light, then 3 +1995-01-27,47.4538889,-122.3205556,Seatac,WA,light,120,Two witnesses see red blinking and solid white light moving over the Cascade Mountains. +1995-12-07,28.0338889,-82.6652778,Oldsmar,FL,light,4,Six witnessed very bright obj. streak from N to S in E sky. 1/4 size of full moon. Blue head, short orange/blue tail. Silent. +1997-12-07,38.7744444,-92.2569444,Ashland (Right Over Highway 63),MO,triangle,60,Triangle shaped object with lights on each corner. Bright strobe lights leading in direction it was going. Going very slow and then sto +1997-12-07,32.7938889,-79.8627778,Mount Pleasant,SC,unknown,180,At 8:16pm on 12/07/97 An oblect with three bright lights was stoped in the road. When I tried to get out of my car to look...I don't kn +1998-12-07,33.0197222,-96.6986111,Plano,TX,circle,0.5,On tape, I have cicular objects moving across screen to fast to be an airplane. Defenatly not a weather ballon. +1998-12-07,41.1383333,-81.8638889,Medina,OH,fireball,10,Red/Orange fire ball, Baseball size with sparks, smoke, and trail. +1998-01-27,32.3122222,-106.7777778,Las Cruces (On Interstate 10,west Of),NM,disk,7200,Driving west on I-10 in N.M. we watched a HUGE object hover without moving for about 2 hours. +1998-01-27,45.9047222,-122.7427778,Woodland (6 Miles From Town),WA,triangle,120,Triangular shaped craft glowing alternately red/orange then dimming; with a teal colored light at each point flew from the South hover +1998-01-27,47.7544444,-122.1622222,Woodinville (North East),WA,sphere,240,My younger sister came to me saying that she saw a bright, round glowing object in the far South East sky outside of our home in Woodin +1998-01-27,25.7738889,-80.1938889,Miami,FL,light,20,As I walked into the backyard of my house in Miami, I noticed a sort of amber /white light moving in the sky. +1998-01-27,33.8444444,-117.7763889,Anaheim Hills,CA,light,3,Bright bluegreen light streaking across sky from South to North. +1999-01-27,30.6941667,-88.0430556,Mobile,AL,light,20,MY WIFE AND I WERE LOOKING AT MOON AND YELLOWISH PLANET BELOW IT WONDERING IF SATURN..THEN A LIGHT APPEARED CLOSE TO MOON AND SLOWLY MO +1999-12-07,34.4211111,-84.1191667,Dawsonville,GA,triangle,600,the object just floated across the road in front of us, and suddenly just "blinked-off" / it disappearred in front of our eyes! +1999-12-07,30.0472222,-90.6897222,Gramercy (On Hwy. 61),LA,triangle,300,I SAW A TRIANGULAR SHAPED OBJECT WHICH TRAVERSED THE SKY WEST TO EAST. IT HAD SEVEN BRIGHT LIGHTS ARRANGED IN A TRIANGLE OF THREE FORW +1999-12-07,43.9716667,-70.6097222,Naples,ME,light,3600,My dad told me to come look at the sky, when I went outside I saw several bright lights moving around, some would blink, they didnt app +1999-12-07,43.9786111,-90.5038889,Tomah,WI,chevron,120,Saw a Chevron type of object with green and white lights on it. It flew very slowly across the interstate by Tomah. Witnessed by 5 o +1999-12-07,32.8744444,-95.7652778,Emory,TX,sphere,3,Earlier event Your log 9/8/98 2130 observed again. Was watching a very faint satellite track south to north when it reflected sun extr +1999-12-07,39.9611111,-82.9988889,Columbus,OH,light,3600,It was big, it was bright and a huge light. Kinda like a white railroad light but triple the size and gave off a floating effect to it +2000-12-07,34.0983333,-118.3258333,Hollywood,CA,sphere,1200,Shimmering daylight orb casually traveled in a north-west direction near the Hollywood Bowl in December 2000 +2000-12-07,39.8494444,-75.3561111,West Chester,PA,sphere,5,Small, spherical white light object traveling rapidly [horizontally] with no noise. +2000-01-27,34.09,-117.8894444,Covina,CA,light,10,WHILE LOOKING UP, I SAW A LIGHT TRAVELLING FROM NORTH TO EAST. IT LOOKED LIKE A STAR, IT DIDN'T HAVE BLINKING LIGHTS LIKE AN AIRPLANE. +2000-01-27,47.5963889,-120.6602778,Leavenworth,WA,fireball,600,It was an orange ball, circle type, it glowed somewhat. It seemed to be a circle with something above it that seemed to be either carry +2000-01-27,40.7452778,-86.7647222,Monticello,IN,light,1200,Golden/Amber bright star like light glows for 3-5 seconds and fades. Reappears 10-15 seconds in another location. 3 jets scramble the +2001-01-27,41.9102778,-88.0716667,Glendale Heights,IL,light,2700,Saw a bright, soundless light hovering for 45 min., that slowly moved off to the north. +2001-01-27,39.5297222,-119.8127778,Reno,NV,unknown,180,An object with lights blinking in succession moving very slowly over Reno Nevada Saturday night, January 27, 2001. +2001-01-27,38.5816667,-121.4933333,Sacramento,CA,light,600,Light seen pulsating from white to completely red then completely orange and back to white seen west of Sacramento +2001-01-27,41.3308333,-94.0136111,Winterset,IA,fireball,3,look like a crashing ship +2001-12-07,43.2080556,-71.5380556,Concord,NH,rectangle,10,looked like cessna without any navigation lights except no shadow/blackness where body should have been. +2001-01-27,41.6005556,-93.6088889,Des Moines,IA,other,5,Grenn trailing orb seen in Iowa woods! +2001-12-07,40.2422222,-74.5816667,West Windsor,NJ,chevron,30,In Wes Windsor NJ, a glowing, undulating roughly V-shaped line of light moved across the sky just under the Orion Constellation. +2002-12-07,36.175,-115.1363889,Las Vegas,NV,light,60,Two white lights in the daytime sky +2002-01-27,39.1530556,-77.0672222,Olney,MD,diamond,10,Observed a High Speed flight of a Fast moving object +2002-01-27,38.7891667,-77.1875,Springfield,VA,circle,1800,5-6 Round Silvery Objects at 40K feet and Rocket Like Objects +2002-12-07,35.14,-93.9213889,Booneville,AR,unknown,30,The object did not look anything like a hilocopter or airplane...never seen anything like it before. +2002-01-27,34.2477778,-88.9986111,Pontotoc,MS,triangle,1500,I saw a v shaped craft come straight up out of the west it took about 5 mins to rise to around 2000 ft it stopped for a couple of mins +2002-12-07,41.2333333,-80.4488889,Hermitage,PA,cigar,172800,STRANGE EXPERIENCE +2002-01-27,42.325,-72.6416667,Northampton,MA,light,2,Bright flying light in sky at night, Northampton Massachussetts - Jan 27th 2002 +2002-12-07,43.55,-96.7,Sioux Falls,SD,teardrop,1.5,12/7/02 - Tear shaped white light that shot straight up out of sight. +2002-12-07,43.55,-96.7,Sioux Falls,SD,teardrop,1.5,Have seen numerous objects over sky north of Sioux Falls in past few months. +2003-01-27,41.9163889,-83.3977778,Monroe,MI,triangle,7200,triangles and balls of light appeared in monroe MI 3 carloads of whitnesses the were by the power plants and the cory's +2003-12-07,42.1102778,-88.0341667,Palatine,IL,other,3600,A warning from another galaxi +2003-01-27,40.31,-75.1302778,Doylestown,PA,changing,10800,Watched an object for three hours as it traveled to a spot, corrected itself, and took an east to west orbit. +2003-12-07,39.9536111,-74.1983333,Toms River,NJ,unknown,1440,doesnt stop moving, stays in the sky hoovering then spinning around many colors +2003-12-07,40.3772222,-105.5211111,Estes Park,CO,unknown,5400,Light beam and white round semitransparent objects of unknown origin +2003-12-07,41.2402778,-75.945,Plymouth,PA,disk,300,This is an updated report for sighting that occurred on 12/07/03 +2003-12-07,41.2402778,-75.945,Plymouth,PA,sphere,300,Saw 2 ufo's moving in clockwise pattern and traveling in northeasterly direction simultaniously. +2003-12-07,37.7447222,-105.0708333,Farisita,CO,fireball,1200,Bright ball of light hovering, then 2 smaller ones darting around it +2003-01-27,45.4983333,-122.4302778,Gresham,OR,flash,10,Three bright flashes appeared in the north sky within a 10 second period +2004-01-27,27.8002778,-97.3961111,Corpus Christi,TX,circle,1800,It was blinking. ((NUFORC Note: Possible description of Sirius? PD))((NUFORC Note: Possible description of Sirius? PD)) +2004-01-27,40.7141667,-74.0063889,New York City,NY,triangle,120,Scary Situation Over The Hudson. +2004-12-07,32.7252778,-97.3205556,Fort Worth,TX,cigar,2,Gold Cigar shaped object seen moving away from Carswell AFB. Object was moving very fast. I thought it was an Aircraft ditching into La +2004-01-27,31.6797222,-96.4819444,Mexia,TX,fireball,180,flaming ball of fire +2004-12-07,21.3822222,-157.9336111,Aiea,HI,circle,120,Two seperate sightings On oahu +2004-12-07,32.2216667,-110.9258333,Tucson,AZ,cylinder,2,Phasing Cigar UFO over NE Tucson AZ +2004-12-07,35.0455556,-85.3097222,Chattanooga,TN,fireball,10,Fireball observed Tuesday, Dec 7, 2004 in Chattanooga, Tennessee +2004-12-07,33.5983333,-79.8516667,Salters,SC,light,30,Saw the same lights again tonight that we saw on October 20, 2004. +2004-12-07,33.6888889,-78.8869444,Myrtle Beach,SC,unknown,10,White lights, in unison, left to right, not change in velocity, direction, or speed, much too large for a normal A/C +2004-01-27,33.4222222,-111.8219444,Mesa,AZ,formation,600,3-4 UFO's forming a pyramid formation in a Mesa Arizona Desert. +2004-12-07,31.3111111,-92.445,Alexandria,LA,formation,15,While driving a friend ogf mine and I both saw random glowing lights appear in the sky then formed a strait line and dissapear +2004-12-07,36.5483333,-82.5619444,Kingsport,TN,diamond,1500,A large amount of UFO's in the sky, including a low flying one that was nearly silent and a sort of diamond shape with 5 lights. +2004-01-27,43.2488889,-70.5997222,Ogunquit,ME,circle,1200,I go out at night on our porch to look at the stars. They are usually very bright here. The skys are very clear. when I first looked u +2004-12-07,26.3583333,-80.0833333,Boca Raton,FL,other,7200,Strange Streak Across Sky December 7, 2004 Picture located on NASA’s ‘Astronomy Picture of the Day’ December 7, 2004 On the evening +2004-01-27,42.1686111,-92.0233333,Vinton,IA,light,180,BRIGHT LIGHTS FAST MOVING IN THE SKY +2005-01-27,41.7858333,-88.1472222,Naperville,IL,other,30,Silent Translucent U shaped craft, Slow moving, Full moon, light Snowy night , Fast jet after +2005-12-07,42.5847222,-87.8211111,Kenosha,WI,other,3600,Curved slightly backwards string of lights 2-3 times size plane? no sound, hovers/ flies slow,silent 3 sightings, 3 objects +2005-12-07,36.1583333,-81.1477778,North Wilkesboro,NC,fireball,15,Odd, slow moving dull red fireball leaving a trail. +2005-01-27,39.4622222,-76.2794444,Abingdon,MD,light,300,object emitting a brilliant solid white light beam in a reverse triangle pattern +2005-01-27,33.4483333,-112.0733333,Phoenix,AZ,light,900,Leaving my girlfriend's grandparents house, noticed a blinking whitish light moving to the northwest. Thought that it was a plane, but +2005-01-27,41.1811111,-79.2025,Corsica,PA,oval,300,Extremely bright oblong object sighted in sky, 7:30 pm, in rural area, viewed app. 3", moved away pulsing +2005-01-27,40.7933333,-77.8602778,State College,PA,diamond,2400,6 Diamond shaped crafts with lights that flashed from red to blue to white on each tip. +2005-12-07,40.8577778,-74.4263889,Parsippany,NJ,other,300,Boomerang shaped, hovering lights that veered left, then sped right +2006-01-27,32.4486111,-99.7327778,Abilene,TX,light,120,Strange lights in Abilene +2006-01-27,28.5380556,-81.3794444,Orlando,FL,unknown,9,Radiating lights changing from color to another filling the sky +2006-12-07,28.1508333,-82.4616667,Lutz,FL,triangle,5,Black Triangular Object +2006-12-07,27.9472222,-82.4586111,Tampa,FL,triangle,720,Triangler shaped object seen flying Towards Tampa +2006-12-07,28.2333333,-82.1813889,Zephyrhills,FL,triangle,180,RE:... Triangler shaped object seen flying Towards Tampa ....It was a stealth bomber! my son and I saw the same thing. just 2 mins. beh +2006-12-07,33.6058333,-78.9733333,Surfside Beach,SC,light,20,Strange lights +2006-12-07,37.6280556,-89.3366667,Pomona (Wolfe Lake),IL,triangle,10800,Triangel shaped object with planes +2006-12-07,39.1502778,-123.2066667,Ukiah,CA,circle,120,At least 6 large circular craft hovering in thin cloud cover move across the western sky. +2006-12-07,40.2736111,-76.8847222,Harrisburg,PA,formation,30,4 stationary lights shift position, move and disappear. +2006-12-07,36.7477778,-119.7713889,Fresno,CA,circle,300,BIG red blinking circle above Fresno,CA +2006-01-27,34.7788889,-92.5575,Ferndale,AR,unknown,7200,Strange cloud with pulsating greenish lights moving in a circular pattern within that cloud. +2006-01-27,42.5083333,-89.0316667,Beloit,WI,other,180,a row of white lights, red flashing lights, no sound +2006-12-07,39.5186111,-104.7608333,Parker,CO,cigar,30,Line Of light +2006-01-27,42.5583333,-71.2694444,Billerica,MA,light,1,Extremely fast bright blue light +2006-12-07,39.7683333,-86.1580556,Indianapolis,IN,circle,25,Witnessed 15-18 lights in a V formation move from northeast to southwest across the north side of Indianapolis. Lights moved about 90 +2006-12-07,32.7152778,-117.1563889,San Diego,CA,triangle,600,I have never heard of anyone discribe what I saw and possibly it was just my eyes playing tricks on me but.....it was a large triangle +2006-01-27,41.9847222,-72.2894444,Stafford,CT,disk,180,Slowly moving silent craft with red and white lights. About 100 feet off the ground. +2007-01-27,42.5294444,-83.7802778,Brighton,MI,unknown,18000,Foreign lights in the sky. ((NUFORC Note: We suspectthat the witnesses were not viewing UFO's. Possible celestial bodies. PD)) +2007-01-27,32.9125,-96.6386111,Garland,TX,light,18000,Hazy light circling eradically overhead at 3:00 a.m. in an ever-changing mostly eliptical course, above the clouds. +2007-01-27,40.29,-76.9341667,Enola,PA,triangle,600,Triangle craft with rotating becaon seen twice in 10 mins +2007-01-27,38.2008333,-77.5894444,Spotsylvania,VA,fireball,5,Bright, Green ball of light flying at high speed at mid day. +2007-01-27,47.6063889,-122.3308333,Seattle,WA,disk,1200,Black disk with red lights flys over the seattle area. +2007-12-07,32.4608333,-84.9877778,Columbus,GA,cigar,180,8 Objects in the sky over Columbus, Georgia. +2007-01-27,33.9311111,-117.5477778,Norco,CA,light,120,Single blue-white light traveling westbound at high rate of speed banking turns above Santa Ana river. +2007-01-27,44.9430556,-123.0338889,Salem,OR,triangle,600,A triangle shape of 3 rapidly flashing blue-white lights moving slowly over downtown Salem, OR +2007-12-07,41.8438889,-79.1452778,Warren,PA,light,60,ufo,sighted,as a big bright slow moving low flying,moving satr,going n to e,about 5000-10000 feet,in nwpa,then vanished moving e +2007-12-07,32.7833333,-96.8,Dallas,TX,light,20,Two converging, then disappearing moving lights. +2008-01-27,36.4541667,-83.5694444,Tazewell,TN,light,10,A light shot across the sky heading north, it was the fastest thing I ever saw. +2008-01-27,39.2672222,-76.7986111,Ellicott City,MD,other,20,Dumb bell shaped UFO over Ellicott City +2008-12-07,39.7169444,-123.3522222,Dos Rios,CA,other,900,Two very odd and different flying machines with evedence of more! +2008-12-07,29.1869444,-82.1402778,Ocala,FL,changing,780,THREE ROUND CRAFTS AT 10:30 AM IN OCALA FL IN A TRIANGLE FORMATION STATIONARY AT FIRST THEN ALMOST HIT A PLANE +2008-01-27,41.4338889,-73.1172222,Oxford,CT,other,60,Gentleman phones air traffic control tower to inquire as to what he saw. +2008-12-07,42.6583333,-83.15,Rochester Hills,MI,other,180,UFO Flying Wing - Shape shifting +2008-01-27,29.7255556,-84.9833333,Apalachicola,FL,changing,120,((HOAX??)) On January 27񫺘, i saw an UFO while i sat in my own backyard with 3 other family members. +2008-01-27,29.7255556,-84.9833333,Apalachicola,FL,unknown,120,i don't know what shape it was, it looked sort of hour glass shape. it must have swayed for a moment because i saw a big flash of what +2008-01-27,42.2119444,-88.2380556,Cary,IL,disk,5,It was a disc shaped craft with red, blue, and green lights that hovered too low to be a plane and was out of eye sight in 5 seconds. +2008-01-27,35.6163889,-119.6933333,Lost Hills,CA,fireball,15,Blue streak that split into two, seen over 5 freeway in Kern County +2008-12-07,44.2194444,-123.2044444,Junction City,OR,oval,300,unknow object in sky no color or sound no running lights +2008-01-27,32.7152778,-117.1563889,San Diego,CA,flash,10,Bluish white and incredibly fast object witnessed over San Diego between cloud cover. +2008-01-27,33.8752778,-117.5655556,Corona,CA,light,15,Very bright brilliant white object flying low altitude at an absurdly stunning speed. +2008-12-07,37.0986,-93.8185,Mount Vernon,MO,light,300,UFO Report 12/7/2008 6:54:19 PM Incident Report: Date: Sunday, December 07, 2008 Time: 18:37 hours Location of sighting: Lat: 37Deg +2008-12-07,32.7152778,-117.1563889,San Diego,CA,light,120,Motionless Red and Orange Flickering Light in the sky that appeared and slowly faded away (No Movement) +2008-12-07,38.9777778,-77.0077778,Takoma Park,MD,formation,7,String formation of five reddish lights flew south over DC area on a clear, cold December night (11PM); too fast to be aircraft. +2008-01-27,34.8297222,-82.6016667,Easley,SC,circle,8,Very bright white light, alarming speed and a change of direction. +2009-12-07,24.5552778,-81.7827778,Key West,FL,other,15,4 horizontal lights ( white-red-white-red) traveled from horizon to horizon in 15 seconds. +2009-12-07,45.4872222,-122.8025,Beaverton,OR,formation,25,A fleet of UFOs coming from the moon were seen entering our airspace over Beaverton, Oregon. +2009-01-27,37.1297222,-80.4091667,Christiansburg,VA,triangle,60,Low flying triangle obeject moving at a slow speed +2009-01-27,40.5,-111.95,West Jordan,UT,disk,2,UFO seen in West Jordan, UT +2009-01-27,44.98,-93.2636111,Minneapolis,MN,light,3600,Very bright light under clouds that isn't moving. ((NUFORC Note: Venus, sighted through overcast? PD)) +2009-12-07,38.010555600000004,-77.9088889,Mineral,VA,oval,30,I was walking outside of my house, when I was looking up to see moon, when I saw a oval shaped thing about 10 times the size of a star. +2009-12-07,24.7133333,-81.0905556,Marathon,FL,fireball,360,Positively not a flare, meteor,aircraft or satellite. +2009-01-27,27.5061111,-99.5072222,Laredo,TX,unknown,60,Large object producing a large bright stream of light dissapear from the sky like a flash !!! +2009-12-07,32.54,-85.0986111,Smiths Station,AL,diamond,300,paryt,saw ship,freaked out,didnt say a word. +2009-01-27,34.8227778,-118.9438889,Frazier Park,CA,teardrop,10,A glowing white and orange that was falling the sky. +2009-01-27,44.8352778,-69.2744444,Newport,ME,oval,300,Strange U.F.O. space craft spotted over Newport Maine. +2010-01-27,36.0725,-79.7922222,Greensboro,NC,sphere,1200,Round object maybe 5 miles away with an altitude about the same as a plane and has been stationary for about 20 min so far. +2010-12-07,32.8383333,-116.9730556,Santee,CA,oval,300,Bright light in the pre-dawn sky. +2010-01-27,40.5852778,-105.0838889,Fort Collins,CO,light,480,Very Bright in due West, Hovered about 2 min's, then accelerated very fast stright up. +2010-12-07,45.5236111,-122.675,Portland,OR,triangle,40,2 sightings of a ufo in a 3 month time frame in PDX +2010-01-27,33.9472222,-118.0844444,Santa Fe Springs,CA,sphere,180,UFO manuvering directly in LAX final approach +2010-12-07,42.4152778,-71.1569444,Arlington,MA,flash,60,red white light descending initially like a plane. As it is descending completely changed direction of descent and zipped across space +2010-01-27,35.2269444,-80.8433333,Charlotte,NC,fireball,60,Weird object goes across sky and boards a sationary object. ((NUFORC Note: Student report. PD)) +2010-12-07,40.8677778,-86.8788889,Monon,IN,fireball,60,I noticed a bright orange fireball shaped object in the N/NW sky, it was stationary and then disappeared. +2011-01-27,32.7947222,-116.9616667,El Cajon,CA,unknown,60,Pinkish red light +2011-01-27,30.4211111,-87.2169444,Pensacola,FL,triangle,480,Black Triangle/Pyramid shape craft. had three lights each corner with a dull red light glowing in center. Slight humming noise. +2011-12-07,46.3580556,-94.2005556,Brainerd,MN,triangle,120,Large triangular shaped craft with white light in front and two red in back. +2011-12-07,38.4,-105.2166667,Canon City,CO,diamond,5,Strange orange lights over canon city co +2011-12-07,41.31,-122.3094444,Mount Shasta,CA,circle,300,Please help i dont wanna go to jail but i wanna show what i found +2011-01-27,36.9102778,-121.7558333,Watsonville,CA,disk,5,Circular or disc shaped flying object with flashing lights, light in color, silent and leaving instantly. +2011-12-07,38.6272222,-90.1977778,St. Louis,MO,triangle,4,I was sitting in my kitchen and I saw a bronze-ish, gold looking, see thru craft come thru my window and vanish. It sort of resembled a +2011-12-07,40.3266667,-78.9222222,Johnstown,PA,unknown,180,Strange flashing colored lights over johnstown pa +2011-12-07,38.2872222,-89.8172222,Lenzburg,IL,other,900,Craft hovering over strip pit in south New Athens, Illinois witnessed by 3 males. +2011-01-27,28.7811111,-82.6152778,Homosassa,FL,light,300,a small little yellow light fliying over homosassa fl +2011-01-27,34.0522222,-118.2427778,Los Angeles,CA,light,4,Four white lights zigzagging across Los Angeles +2011-01-27,35.3097222,-91.5677778,Bald Knob,AR,circle,15,Out on run at 7:45PM, looked up and saw 5-10 objects in the sky moving like a group of fireflies. A red cloud formed sighting. +2011-12-07,45.7111111,-91.8063889,Sarona,WI,light,3600,Flashing colored object seen hovering,moving,and landing +2011-01-27,25.7738889,-80.1938889,Miami,FL,flash,1,At 9:21 pm E.S.T. the entire south eastern sky lit up with a bright green flash, twice in a one minute period about 30 seconds apart. +2011-01-27,44.5647222,-123.2608333,Corvallis,OR,fireball,300,Bright orange light traveling North and turning toward southwest. Light slowly dimmed and disappeared. +2011-12-07,39.9666667,-82.8855556,Whitehall,OH,fireball,30,White strip of light that turned blue then disappeared +2011-12-07,40.3266667,-78.9222222,Johnstown,PA,light,240,Indigo/blue bright light hovering above mountain for 3 or 4 min. could not see source of light, too bright. +2011-01-28,38.9669444,-76.8622222,Lanham,MD,disk,120,I was taking random pictures while on the bus going around Landover Mall and saw what appears to be a UFO in two of them in the 4:21 PM +2012-12-07,38.8338889,-104.8208333,Colorado Springs,CO,fireball,5,Fast moving yellow/green glowing fire ball with comet trail in Colorado Springs, "lands" at Air Force Academy. +2012-12-07,34.1808333,-118.3080556,Burbank,CA,light,6,Bright light disappeared with no trace; blue flash following. +2012-01-27,42.8255556,-78.8236111,Lackawanna,NY,unknown,1200,Heard a very high pitch sound hovering above of the house then moving slowly to each side of the house. +2012-01-27,37.6688889,-122.0797222,Hayward,CA,diamond,180,Diamond shape object seen next to Hayward CA airport +2012-12-07,41.5875,-109.2022222,Rock Springs,WY,disk,120,Male witness reports seeing a red disc, seen ahead of, and pacing an airliner. +2012-12-07,29.7630556,-95.3630556,Houston,TX,unknown,2,A flash of green light, fire trail in the sky and no reports on the news of a plane exploding, etc. +2012-12-07,36.9702778,-80.9497222,Max Meadows,VA,light,360,White sphere, unbelieveable size, watched for 5-6min,max meadows,virginia +2012-12-07,44.0583333,-121.3141667,Bend,OR,formation,120,Grouping of 3 objects each with large, bright red-orange lights in Bend, OR +2012-12-07,39.1638889,-119.7663889,Carson City,NV,unknown,120,Flickering white lights flying in formation? +2012-12-07,41.6580556,-90.5844444,Eldridge,IA,light,240,Five orange lights, like stars in the cloudy sky, hovered motionless over a small city in Iowa. +2012-01-27,46.9961111,-123.5105556,Brady,WA,fireball,5,Fireball with long conical tail +2012-12-07,32.4063889,-97.2113889,Alvarado,TX,circle,60,I went to my back yard to have a cigarette and in the sky I noticed an object that I assumed was an aircraft. As I observed the object +2012-01-27,45.43,-122.3736111,Boring,OR,oval,5,Orange ball, moving vey fast West to east +2012-12-07,40.1672222,-105.1013889,Longmont,CO,fireball,150,3 UFOs seen over Longmont Colorado 12/7/12. +2012-12-07,40.1672222,-105.1013889,Longmont,CO,light,60,Lights with spark trails maneuvering over Longmont Colorado. +2012-01-27,45.5947222,-121.1775,The Dalles,OR,unknown,60,Saw a large bright ball of light, low, fast and quiet, +2012-01-27,45.2897222,-122.3325,Estacada,OR,oval,3,A yellowish- orange round oval object on edge glided at 300 feet above street level. On a coarse from west to east. The event last +2012-12-07,27.8775,-97.2113889,Ingleside,TX,fireball,120,Red fireball light in night sky. +2012-12-07,40.1672222,-105.1013889,Longmont,CO,fireball,300,Three dancing, erratically moving sparkling fireballs observed from a short distance. +2012-01-27,31.3380556,-94.7288889,Lufkin,TX,light,1200,Object hovering over defunct industrial factory +2012-12-07,35.1472222,-107.8508333,Grants,NM,other,180,Large C-shaped craft slowed & angled off, followed minutes later by 4 jets. +2012-01-27,35.8027778,-88.7747222,Medina,TN,sphere,60,Bright, fast moving white light with red/orange pulsating edges moving over Medina Tennessee. +2012-01-27,40.3769444,-111.795,American Fork,UT,disk,360,Blue U.F.O. over American Fork Utah. +2012-01-27,40.3916667,-111.85,Lehi,UT,disk,1800,A floating blue object with a pulsating red light in the center, it was moving slowly horizontally for a while, then it stopped and is +2012-12-07,33.1191667,-117.0855556,Escondido,CA,rectangle,3,LARGE Ship of some sort. +2012-12-07,41.926944399999996,-73.9977778,Kingston,NY,light,300,Two Lights seen over Hudson River in Kingston, NY on 32 South. +2012-12-07,26.6583333,-80.2416667,Wellington,FL,oval,30,Orange orb over Wellington, FL. +2012-01-27,47.5675,-122.6313889,Bremerton,WA,triangle,900,My children saw a triangle of bright white lights flashing. Then they separated. As they separated they changed color between red and +2012-01-27,28.7586111,-81.3180556,Lake Mary,FL,fireball,600,Orange fireballs over central Florida +2012-12-07,32.1425,-97.3969444,Blum,TX,triangle,3600,Triangle multicolored lights and bright white orbs in sky for several months now. Recently had even closer encounter. ((Sirius?? PD)) +2012-01-27,37.4136111,-76.5258333,Gloucester,VA,unknown,60,Large white light +2012-12-07,39.6411111,-85.1411111,Connersville,IN,cylinder,1740,December 7, 2012 Cylinder shaped, transparent object appeared, hazy gray color slow/fast movement. +2013-12-07,41.3113889,-105.5905556,Laramie,WY,sphere,1800,Bright orange sphere sitting in same spot for long time. +2013-12-07,33.5422222,-117.7822222,Laguna Beach,CA,circle,3,At 2:22 I was looking up at sky light, a big bright ball of light with entrails heading Northwest flew past at very fast speed, it was +2013-12-07,32.7763889,-79.9311111,Charleston (James Island),SC,other,60,It looks like a beefed (or bulky)up amazon drone, 30-50mph, 4small roaders surrounding a central body, all black, and deffintly unmaned +2013-12-07,26.3583333,-80.0833333,Boca Raton,FL,fireball,120,Orange fireball or rocket. +2013-12-07,42.9633333,-85.6680556,Grand Rapids,MI,circle,1,Circle craft captured in 2 of 3 pictures, near Grand Rapids, MI. +2013-12-07,42.6111111,-71.575,Groton,MA,light,300,Lights changing direction and disappeared +2013-12-07,47.0380556,-122.8994444,Olympia,WA,other,480,Fast moving light with trail, like a comet but not a comet. +2013-12-07,25.7738889,-80.1938889,Miami,FL,fireball,60,Orange fireball flared out to a white dot east to west southern sky. +2013-12-07,43.6105556,-72.9730556,Rutland,VT,circle,180,The object changed from orange to white light then back to orange. +2013-12-07,38.3566667,-121.9866667,Vacaville,CA,sphere,1360,Four military planes monitoring three UFO's hovering diagonally in stationary position. +2013-12-07,26.3394444,-81.7788889,Bonita Springs,FL,light,15,Several orange colored lights in west sky of Bonita Springs, there 1 moment and gone the next +2013-01-27,39.7047222,-105.0808333,Lakewood,CO,triangle,60,Triangular, dimly-lit craft that made no noise and flew slowly. +2013-12-07,39.5138889,-121.5552778,Oroville,CA,formation,300,4 large wing span aircraft flying slowly in straight line eqidistance apart with flashing red and white lights. +2013-12-07,40.5058333,-75.6658333,Mertztown,PA,fireball,600,Orange slow moving lights in sky coming in and out of organized formation. +2013-12-07,42.2833333,-71.35,Natick,MA,unknown,2700,A big UFO flashed in red and green lights floating in the sky far away in the southeast direction probably over south Boston. There wer +2013-12-07,40.155,-74.8291667,Levittown,PA,light,1200,ON DEC 7, 2013 SAW SEVERAL WHITE LIGHTS NO NOISE. TRAVELING IN GROUPS UP TO 13. +2013-12-07,30.3319444,-81.6558333,Jacksonville,FL,flash,2,A flash of light that went into a cresent shape before disappearing was seen heading south bound @10:03 pm approx 20 seconds later the +2013-12-07,33.3527778,-111.7883333,Gilbert,AZ,light,600,Object streaking across sky similar to falling star, It stopped and dropped 4 other objects that moved in formation. +2013-12-07,33.7738889,-117.9405556,Garden Grove,CA,light,600,I was driving east on Highway 22 at Beach Blvd. It was hovering over the Brookhurst area it all of a sudden flew over highway 22 in an +2013-01-27,46.1469444,-122.9072222,Kelso,WA,other,120,Strange humanoid encounter. No crafts seen. +2013-01-27,41.4088889,-75.6627778,Scranton,PA,light,3,Solid dull white light with a small trail traveling across the sky. +2013-12-07,42.4133333,-89.0091667,Roscoe,IL,circle,5,Orange globe moving in the sky. +2013-12-07,39.1405556,-121.6158333,Yuba City,CA,circle,300,West of Yuba City multiple witnesses scene 4 orange circular objects hovering in the sky for approximately 5 min.. +2013-01-27,35.5463889,-77.0525,Washington,NC,disk,60,An incredible sight of a saucer flying through the night sky with a reddish/orange vapor trail that dissappeared. +2013-12-07,26.9338889,-80.0944444,Jupiter,FL,diamond,120,Fiery red-orange diamond shaped object over Jupiter, Florida. +2013-12-07,38.2972222,-122.2844444,Napa,CA,light,300,4-5 lights flying slowly in a straight line. +2013-01-27,40.4147222,-74.3658333,Old Bridge,NJ,light,5,Greenish/Blue light object in the sky. +2013-12-07,35.0525,-78.8786111,Fayetteville,NC,circle,50,I was watching a movie on my smartphone, suddenly the movie stopped playing to buffer. As I was waiting for it to continue I noticed 3 +2013-01-27,33.7669444,-118.1883333,Long Beach,CA,light,60,3 Whitish-yellow lights in the shape of a triangle at 1st glance i thought it was a shooting star but it kept going fast and silent. +2013-01-28,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,1800,Disc-light 30 minutes. (picture) +2014-01-27,35.4427778,-84.5930556,Athens,TN,oval,45,Oval shaped, bright lights, brighter then street lights, disappeared as fast as appeared. +2014-01-27,37.7652778,-122.2405556,Alameda,CA,diamond,5,Bright white elongated diamond shape in night sky. +2014-01-27,26.9616667,-82.3527778,Englewood,FL,changing,5,Orangish oval shape that slowly disappeared in sky seen by two friends. +2014-01-27,27.3361111,-82.5308333,Sarasota,FL,fireball,180,6-7 red fireballs, seen moving through the sky over Sarasota, Florida. +2014-01-27,39.3330556,-82.9825,Chillicothe,OH,circle,90,White round object followed by 2 fighter jets. +2014-01-27,46.1383333,-122.9369444,Longview,WA,fireball,180,Driving home just after sundown I drove around a corner to see a number of lights (9-12), red-orange in color, ascending to the sky. Af +2014-01-27,36.2613889,-94.3575,Highfill,AR,triangle,900,Triangular craft 3 green lights visible. +2014-01-27,40.6111111,-111.8991667,Midvale,UT,other,5,At 20:00 hrs (8:00 mst just to be sure on time accuracy), I was told by wife to go get gas in her vehicle. I came upon the stop sign co +2014-01-27,32.2216667,-110.9258333,Tucson,AZ,other,120,Flew low over Tucson from the north to the south Below flying aircraft bright red and absolutely no noise. No flashing. Just steady red +1973-01-28,34.1361111,-117.8644444,Glendora,CA,disk,600,An illuminated Saucer hovers over my back patio. The Object rises beyond a neighboring house to the South. After hovering for five min' +1979-12-08,35.0844444,-106.6505556,Albuquerque,NM,circle,600,The night when I saw the disk UFO! +1986-01-28,34.4872222,-78.6563889,Clarkton,NC,cigar,7,Low flying, large cigar shaped craft close-up view the day of the Challenger disaster in 1986. +1992-12-08,42.9813889,-70.9483333,Exeter,NH,diamond,2,I saw three diamond shaped lights in Exeter NH back in the 90's. +1994-12-08,44.9111111,-116.0977778,Mccall,ID,fireball,10,Couple awakened by bright lights illuminating home. Neighbors saw same obj. hovering overhead. Power failure reptd. +1996-12-08,38.8533333,-91.3058333,Jonesburg,MO,light,600,My wife and I were driving up Hwy. I-70 on our way back from St.Louis. Half way home, (around Warrenton) we spotted a strange white lig +1997-12-08,47.4158333,-120.2919444,East Wenatchee,WA,light,300,It was a ball of light that was orange in the center with a red haze around it. When it passed overhead it broke in two and continued o +1997-12-09,47.4236111,-120.3091667,Wenatchee,WA,light,300,Our newspaper did a story on this site and picked out stories from our area. One incident caught my attention as I believe that it was +1998-12-08,32.1108333,-98.5355556,De Leon,TX,light,300,my daughter and I were returnung from town which is about six miles from our house when we saw three round orange colored lights in the +1998-12-08,35.0838889,-92.2077778,Vilonia (Just South Of),AR,circle,300,I was talking to some friends outside. I saw an arch of light shaped object moving south slowly, I had to use binoculars to see the arc +1998-01-28,47.0016667,-114.4725,Alberton,MT,oval,300,Seen Oval in the sky hovering over the mountain. Then started to move from east to south. On the sides it had blue,white and red blin +1998-12-08,38.8119444,-94.5316667,Belton (5mi South On Sr Y),MO,fireball,2,Green fire ball with orange sparkles trailing behind +1999-01-28,33.5091667,-111.8983333,Scottsdale,AZ,triangle,4,Dark triangular shape against the darking sky. The object had great speed and no sound or light was evident. +1999-12-08,47.6063889,-122.3308333,Seattle,WA,light,5,intense blue light travelling se across entire sky +1999-12-08,42.7672222,-71.8127778,Greenville,NH,triangle,60,Trianglular object, lights at each apex, larger diameter light in center, travelling south to north. +1999-12-08,38.8986111,-92.1233333,Millersburg,MO,chevron,300,On the date shown, two search lights from an aircraft seen a few times before since 1995 were observed from the aircraft which was at a +1999-01-28,34.9333333,-95.7694444,Mcalester,OK,other,1,On the above approx. date & time, I was watching an airplane traveling north in the night sky. Suddenly, there was a thin orange streak +1999-12-08,38.9516667,-92.3338889,Columbia,MO,triangle,300,My wife, Daughter and her friend were traveling East on Rt. HH when the object was observed at the intersection of HH and Kircher Rd. +2000-01-28,45.4177778,-122.4577778,Damascus (Boring),OR,fireball,2,Massive green appearing fireball, appeared to have slammed into the earth, somewhere South of Damascus (Boring) Oregon. +2000-01-28,45.4872222,-122.8025,Beaverton,OR,cylinder,1200,AS we left our home I spotted two large bright shapes in the southwestern sky. With outstretched arm the two shapes were lentil size. B +2000-12-08,33.3527778,-111.7883333,Gilbert,AZ,oval,1080,Red oval shaped ufo known as Bubba appeared over Mesa/Gilbert, Az. last night 12/08/00 +2000-01-28,38.3397222,-122.7,Rohnert Park,CA,light,15,Brite white light with a downward tail +2000-12-08,39.0305556,-82.8244444,Beaver,OH,light,7200,Three bright objects would appear and disappear covering great distances in the night sky. +2000-01-28,34.61,-112.315,Prescott Valley,AZ,circle,360,Large bright yellow-orange object moving NNW to SSE; turned South towards Phoenix +2000-01-28,33.5225,-117.7066667,Laguna Niguel,CA,sphere,30,I was lying down, and I look in the sky. I see a sphere and I thought it was a plane. I look closely, but I see it is not like a plane +2001-12-08,34.1477778,-118.1436111,Pasadena,CA,light,7,white ball of light streaks to earth; makes a 90 degree turn and streaks out of sight +2001-01-28,41.8136111,-71.3705556,East Providence,RI,other,240,2 VERY BRIGHTLY lit craft were observed flying in clear, sunny skies, and one became stationary; both were at high altitude. +2001-12-08,47.4736111,-94.88,Bemidji,MN,triangle,360,Black, triangle, split into 4 smaller triangles, speed/shape of normal aeroplane. +2001-01-28,33.9925,-117.5155556,Mira Loma,CA,egg,300,I rolled my telescope out to look at venus against a Light/Dark Blue dusk Sky.I panned the scope to Venus. About 10 seconds later an Eg +2001-12-08,38.9536111,-94.7333333,Lenexa,KS,light,420,Bright light belived to be a comet or metior. +2001-01-28,28.5380556,-81.3794444,Orlando,FL,cigar,1845,Look at the superbowl replay if you saw it or not ask the take they will show the score board and juste at the left of it a fearly fast +2002-12-08,40.0872222,-74.9038889,Croydon,PA,triangle,300,Triangle Shaped Object 3 White lights Red in Middle at times And Silent +2002-12-08,31.8455556,-102.3672222,Odessa,TX,oval,2,Object traveling at a very fast rate +2002-12-08,44.5191667,-88.0197222,Green Bay,WI,triangle,60,Triangular Pattern of lights over Lambeau Field 12/8/02 +2002-12-08,41.2591667,-80.4722222,Sharpsville,PA,egg,259200,Western Pennsylvania +2002-12-08,41.2591667,-80.4722222,Sharpsville,PA,cigar,1200,TWO UFOS OBSERVED +2002-12-08,35.7211111,-77.9158333,Wilson,NC,disk,900,UFO SEEN HOOVERING IN A NEARBY FIELD +2002-12-08,38.4325,-82.0202778,Hurricane,WV,triangle,300,UFO Sighting - Black Triangle. Close Up View Of Object. West Virginia 2002 +2002-12-08,48.7597222,-122.4869444,Bellingham,WA,other,180,The lights display wasnothing like i'd ever seen but the SOUND..Everyones dogs were howling crazy +2002-12-08,48.7597222,-122.4869444,Bellingham,WA,other,600,The Sound..was incrediable,the dogs went crazy,the light display was amazing +2002-12-08,35.8966667,-77.5361111,Tarboro,NC,disk,120,UFO spotted in my neighborhood. +2002-12-08,41.2377778,-80.6644444,Vienna,OH,cigar,300,Vienna, Ohio +2002-12-08,35.7211111,-77.9158333,Wilson,NC,cigar,1800,We tracked a large cigar shaped object accross town until it went out of view over the treeline. +2002-01-28,30.3319444,-81.6558333,Jacksonville,FL,circle,60.3,Bright red light in the sky turns into U.F.O. with circular shape and rotating lights. +2002-12-09,35.698055600000004,-92.7383333,Chimes,AR,chevron,60.3,Boomerang shaped objects in Arkansas +2003-12-08,47.5675,-122.6313889,Bremerton,WA,fireball,60,Firery ball +2003-12-08,39.4005556,-81.4483333,Williamstown,WV,circle,3,Large Ball of White Light Falling Slowly from Sky +2003-01-28,44.0583333,-121.3141667,Bend,OR,disk,900,A single, stationary fairly large saucer/disc with rotating lights that changed colors from red to green, blue and white that hovered f +2003-01-28,39.4194444,-76.7805556,Owings Mills (Area),MD,formation,90,Three lights surrounded by smoke +2003-01-28,30.3319444,-81.6558333,Jacksonville,FL,circle,900,1 WAS SITTING ON AN OCEANFRONT BALCONY LOOKING AT THE VAPOR TRAILS OF PASSENGER JETS ARRIVING FROM EUROPE. OVER A 45 MIN. TIME SPAN AT +2003-01-28,32.6780556,-117.0983333,National City,CA,unknown,60,strange lights over san diego +2003-01-28,35.7325,-78.8505556,Apex,NC,light,10,I saw a bright reflection from something on the eastern horizon. It was moving fast at a 45 degree angle then suddenly shot straight do +2003-12-08,33.6888889,-78.8869444,Myrtle Beach,SC,light,1800,Bright orange light lasts 3-5 seconds over ocean, accompanied by multiple strobe lights +2003-01-28,28.1758333,-80.5902778,Satellite Beach,FL,rectangle,600,glowing square shaped object hovered over airforce base ,shortly after president 's state of the union address captured on video. +2003-12-08,41.4644444,-81.5088889,Beachwood,OH,unknown,1200,massive sound that shook the house +2003-01-28,45.4872222,-122.8025,Beaverton,OR,sphere,120,saw a couple of strange air craft +2004-01-28,34.4716667,-120.2138889,Gaviota,CA,other,600,2 giant crafts over Point Conception +2004-12-08,33.6888889,-78.8869444,Myrtle Beach,SC,chevron,10,Orangish - Reddish Glow moving in a zig zag pattern about midnight! +2004-01-28,40.3547222,-98.1383333,Deweese (South Of),NE,other,30,My brother and I were raccoon hunting. We hunt out in the country where there are no houses and the roads are dirt. We came over this h +2004-12-08,33.7122222,-84.1052778,Lithonia,GA,light,5,A bright green light with a quick burst of speed infront of my car while I was driving +2004-01-28,29.9544444,-90.075,New Orleans,LA,sphere,30,They were flying in a tight fomation like fighter jets do, but they were no fighter jets. +2004-12-08,41.2225,-74.2947222,Greenwood Lake,NY,other,15,3 lights moving very fast from east to west. First 2 lights merged then moved out of sight. +2004-01-28,36.175,-115.1363889,Las Vegas,NV,unknown,300,The humming hearbeat sound engulfed the entire over head area. +2004-12-08,38.9488889,-83.4058333,Peebles,OH,light,90,Orions belt, Brighter than I ever saw anything, then two aircrafts departed in opposite directions from it. +2004-01-28,29.9544444,-90.075,New Orleans,LA,light,300,Satellite in sky over New Orleans? +2004-12-08,33.6058333,-78.9733333,Surfside Beach,SC,light,1200,Orange lights with many strobes over ocean in Surfside. +2004-01-28,33.4222222,-111.8219444,Mesa,AZ,oval,600,Lights over Phoenix again& again. +2004-01-28,42.5758333,-73.9644444,Clarksville,NY,triangle,420,As I was watching, it slowly began to move off to the left, above the tree tops. +2004-01-28,42.5758333,-73.9644444,Clarksville,NY,triangle,420,Three bright lights in triangle formation hovered ststionary above trees over empty house in complete silence, then slowly moved on. +2004-01-28,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,2,fast moving green light then disappearing +2004-01-28,33.4483333,-112.0733333,Phoenix,AZ,fireball,1800,single large fireball hovered +2004-01-28,37.6391667,-120.9958333,Modesto,CA,chevron,15,My girlfriend, her friend, and myself were standing and talking out on my back porch looking briefly up at the stars, when we all saw w +2004-12-08,40.7797222,-97.8119444,Henderson,NE,formation,6,3 gold colored connected lights very large moving East to West +2005-12-08,44.1916667,-88.6238889,Larsen,WI,diamond,3600,It was a bright amber to reddish in color, it moved straight up and down and sideways and hovered around in the Northwest sky. +2005-12-08,46.6622222,-122.9627778,Chehalis,WA,oval,2400,Hovering light moving in the distance randomly at high speeds, no abduction this time. +2005-01-28,41.5475,-86.5822222,Hamlet,IN,other,480,A bug shaped flashing craft. +2005-01-28,21.4447222,-158.19,Waianae,HI,triangle,1,Hi, when i did take the photograph from my window in a clear early morning,I couldn't see anything unusual.Only after the film had +2005-12-08,39.9166667,-75.3880556,Media,PA,fireball,14400,Meteor like object falling to earth very slowly in midaftenoon. +2005-12-08,36.175,-115.1363889,Las Vegas,NV,circle,60,Large, circular object hovering over mountain. It was visible directly forward while travelling on the I-15 southbound. +2005-01-28,45.1608333,-93.2347222,Blaine,MN,unknown,10,red and blue alternating lights, hovering then moving at an incredible speed then gone +2005-12-08,41.2794444,-72.8155556,Branford,CT,light,5,Fast moving bright light observed over Branford Ct 12/7/2005 +2005-12-08,34.0555556,-117.1816667,Redlands,CA,changing,600,large glowing object that changed shape and color +2005-12-08,30.1758333,-84.3752778,Crawfordville,FL,light,5,I was driving home I saw the object first about 7 miles from my house and it quickly disappeared the about a mile from my house i saw i +2005-01-28,42.9075,-71.7669444,Lyndeborough,NH,other,1200,The object was flashing and could not be seen with the naked eye +2005-01-28,33.4222222,-111.8219444,Mesa,AZ,triangle,1800,3 red triangle lights over mesa arizona moving at a slow rate of speed. +2005-12-08,34.0555556,-117.1816667,Redlands,CA,changing,600,((Venus??)) Observed a very large, half circle object with faint lights on top that reshaped into a circle and changed color. +2005-01-28,33.4222222,-111.8219444,Mesa,AZ,light,1200,red rotating lights that drop +2005-01-28,33.4222222,-111.8219444,Mesa,AZ,triangle,1800,red lights over mesa arizona +2005-01-28,33.4222222,-111.8219444,Mesa,AZ,other,300,This was not a balloon, known aircraft,spotlight,,flair ,star, or planet. What in our world was it? +2005-01-28,44.7433333,-92.8522222,Hastings (Or Winona),MN,oval,240,Oval shaped object performs remarkable aerial feats over Hastings, MN +2005-01-28,33.4222222,-111.8219444,Mesa,AZ,light,600,Bright red light floating almost overhead in western Mesa, AZ - just to the SE a little. Floated/moved slowly until it vanished. +2005-01-28,31.1797222,-83.7891667,Moultrie,GA,triangle,180,the 3 triangles flew around in geometric forms and just vanished leaving a hazy image across the western horizion. +2006-01-28,33.7475,-116.9711111,Hemet,CA,disk,60,((POSSIBLE HOAX)) ufo in the orange groves. +2006-01-28,34.4208333,-119.6972222,Santa Barbara,CA,light,300,some stars are ufos..... +2006-12-08,41.2586111,-95.9375,Omaha,NE,sphere,80,Silver ball hovering over street/ shot up +2006-01-28,36.9647222,-89.0891667,Wickliffe,KY,oval,15,Oval shaped UFO disapeared into the first of two long clouds in clear blue skies. +2006-01-28,33.6488889,-85.5875,Heflin,AL,triangle,2,Low flying angular object seen near Hollis Crossroads. Heflin, Alabama. Jan. 28 2006 +2006-12-08,38.9516667,-92.3338889,Columbia,MO,fireball,2,bright meteor +2006-12-08,41.3455556,-88.8425,Ottawa,IL,fireball,5,Driving west along Interstate 80, outside (west) of LaSalle/Peru, IL. Saw round green light object with a trail of light behind to the +2006-12-08,37.8338889,-93.3002778,Pittsburg,MO,unknown,3,Dec. 8th 2006 7:30 PM saw bright object go down over immediate horizon then flashed like it might have impacted something. ((Meteor??)) +2006-12-08,38.7272222,-90.3830556,St. Ann,MO,fireball,2,While traveling W on St. Charles Rock Rd I saw what looked like a ball of fire fly across the sky.((NUFORC Note: Possible meteor??PD)) +2006-12-08,36.175,-115.1363889,Las Vegas,NV,cylinder,120,Cylinder shaped object was illuminated inside, contained figures within and left at the speed of light. +2006-12-08,33.6188889,-117.9280556,Newport Beach,CA,disk,120,one disk with lights underneath it observed by myself another adult and 3 kids for a few minutes in the sky stationary as well as movin +2006-12-08,39.6477778,-104.9872222,Englewood,CO,triangle,5,3 lighted triangle thing disappeared to the dark sky in seconds +2006-12-08,34.7994444,-106.6997222,Valencia,NM,rectangle,5,rectangular bright white object falling from night sky +2006-12-08,38.2386111,-81.9894444,Griffithsville,WV,cylinder,45,I am a "Line Servicer" for a large power conpany with 30 yrs. of service. While investigating an outage, ( unrelated to UFO activity), +2007-01-28,47.6761111,-122.3861111,Ballard (Seattle),WA,chevron,7,Chevron shaped craft turning at low altitude to intercept a jet in Seattle +2007-12-08,38.8813889,-94.8188889,Olathe,KS,light,900,K and C were driving down the street after receiving a phone call from a friend about a strange light appearing above his house. K and +2007-01-28,39.4736111,-118.7763889,Fallon,NV,circle,10800,Fallon, NV 1/27/2007 2AM - 5 AM Spheres appear nightly now and divide and seperate, come to desert floor and stay longer thanbefore +2007-12-08,39.3061111,-102.2688889,Burlington,CO,flash,5,Nearing Burlington, CO predawn on Dec 8, 2007 the entire horizon lit up in a huge semi-circular flash of purple +2007-12-08,37.8502778,-122.0311111,Alamo,CA,formation,600,UFOs hovered in low-lying clouds near my apartment this December! this sounds crazy, but I SAW THEM!!! +2007-01-28,43.0347222,-83.5180556,Davison,MI,circle,599,A black circle appears on helmet cam footage. +2007-12-08,47.6588889,-117.425,Spokane,WA,rectangle,600,Brightly-lighted, box-like stationary craft. Looked like a scaffold or a playground "jungle Gym" (maybe a space station) First sighti +2007-01-28,45.8152778,-122.7413889,Ridgefield,WA,light,1200,light seen ((NUFORC Note: Possible landing light on distant aircraft?? PD)) +2007-12-08,44.5647222,-123.2608333,Corvallis,OR,triangle,6,Dark, triangular-shaped, single object with no lighting, making no sound, moving rapidly across sky +2007-01-28,47.6063889,-122.3308333,Seattle,WA,oval,2,UFO streaks across the night sky +2007-01-28,41.6819444,-85.9766667,Elkhart,IN,other,30,Random lights at low altitude taking shape of triangle. +2007-01-28,33.4222222,-111.8219444,Mesa,AZ,light,4,Unknown light in picture of the arizona sky in january +2007-01-28,36.5297222,-87.3594444,Clarksville,TN,unknown,1,Silent bright blue flash disrupts electrical service in neighboorhood near military installation. +2007-12-08,44.9430556,-123.0338889,Salem,OR,light,7,Two Parallel Lights Moving At Very High Speed Along An Unusual Path +2007-12-08,45.5236111,-122.675,Portland,OR,unknown,900,Drifting silent object estimated size of helicopter at 1000ft with bright flamelike intermittent flashes in night sky +2007-12-08,37.775,-122.4183333,San Francisco,CA,light,60,Steady light, stopping, and changing direction in the sky. +2007-12-08,38.8813889,-94.8188889,Olathe,KS,light,3,On the night of December 8th, 2007, two people (K and C) witnessed a neon green light passing overhead. They were pulling into K's driv +2008-12-08,39.2902778,-76.6125,Baltimore,MD,light,3600,((HOAX??)) white lights over baltimore.. +2008-01-28,46.6811111,-68.0163889,Presque Isle,ME,fireball,120,Huge fireball emitting a white light that lit up the entire sky, falling at amazing speeds then dissapearing. +2008-01-28,32.7666667,-96.5988889,Mesquite,TX,unknown,10,Loud FAST aircraft over Mesquite, Texas last night shortly after midnight! +2008-12-08,30.3319444,-81.6558333,Jacksonville,FL,diamond,360,3 dimensional diamont craft ,in front yard,quarter mile from University of jacksonville FL. +2008-12-08,39.0833333,-78.2183333,Stephens City,VA,teardrop,10,I also just previously logged my first sighting. I was not going to document anything until I seen what I had seen tonight.( I had +2008-12-08,36.8527778,-75.9783333,Virginia Beach,VA,fireball,1200,Craft that was bright and looked like it was on fire was 300 yards away and came closer and I put a light on it, and it came closer. +2008-01-28,26.1219444,-80.1436111,Ft. Lauderdale,FL,cylinder,180,On January 28, 2008 at approxmently 0955, I was driving north on A1A from Sunrise Blvd to 2100 block of Ft Lauderdale, Fla. It is a cl +2008-01-28,29.8944444,-81.3147222,St. Augustine,FL,sphere,60,HUGE Sphere-like craft spotted while driving S on Interstate I-95 near St. Augustine, FL (NOT A BLIMP!!) +2008-01-28,32.5841667,-88.1872222,Livingston,AL,cigar,120,shiny cigar object in sky in daylight, with airplane keeping pace +2008-01-28,35.9380556,-77.7908333,Rocky Mount,NC,other,15,Witnessed a bright stationary object seen next to passing jet travelling at cruise altitude. +2008-01-28,43.0008333,-73.8494444,Ballston Spa,NY,circle,1410,Object seems to be in Orbit twinkling, but through binoculars many very bright lights in patterns. +2008-01-28,42.2711111,-89.0938889,Rockford,IL,triangle,10,triangular shaped crafts in northern illinois +2008-01-28,40.6677778,-81.2575,Waynesburg,OH,triangle,10,Amber triangular craft seen in Northeast Ohio +2008-12-08,37.2386111,-76.51,Yorktown,VA,sphere,3,Witnessed a fast moving blue / Teal sphere with a halo streak from overhead east accross the horizon. +2008-12-08,46.1383333,-122.9369444,Longview,WA,diamond,2700,Object close to ground with erratic color and shape patterns. ((NUFORC Note: Possible sighting of Sirius. PD)) +2008-01-28,37.7791667,-97.4669444,Maize,KS,other,300,Dark Figure Flying Over Maize Kansas +2009-01-28,30.3488889,-94.1777778,Silsbee,TX,light,1800,orange-yellowish bright light that just disappeared +2009-01-28,38.2541667,-85.7594444,Louisville,KY,cone,300,Black cone seen in broad daylight in Louisville, KY +2009-01-28,38.8047222,-77.0472222,Alexandria,VA,other,1200,a video tape of a ufo but when played back nothing. +2009-01-28,31.4713889,-110.9758333,Rio Rico,AZ,cigar,120,u.f.o's in rio rico AZ +2009-01-28,38.3397222,-122.7,Rohnert Park,CA,disk,120,Reddish brown disc, where the moon would rise but wrong time; according to the almanac. +2009-01-28,33.7413889,-118.1038889,Seal Beach,CA,light,480,Drifting Red Light escorted by 3 helicopters over Orange County +2009-01-28,43.5408333,-116.5625,Nampa,ID,light,100,Interesting light in sky, definitely space-object, behaved like satellite, but was momentarily very, very bright +2009-12-08,36.73,-93.51,Cape Fair,MO,rectangle,180,Elongated dark colored object hovering 50 ft above ground with white lights flooding the ground, no sound +2009-01-28,42.5158333,-73.6105556,Nassau,NY,light,1200,Bright Light on Meadowbrook State Parkway +2009-12-08,33.6188889,-117.9280556,Newport Beach,CA,disk,14400,UFO posing as 'bright' star in newport beach california. ((NUFORC Note: Sighting of Jupiter, perhaps. PD)) +2009-01-28,33.5458333,-82.3161111,Appling,GA,triangle,900,Two triangular objects just above the tree line. +2009-01-28,40.5577778,-90.6733333,Good Hope,IL,fireball,3,Green Fireball Sighted in Western Illinois +2009-01-28,42.6338889,-73.5541667,Averill Park,NY,light,3,((HOAX??)) they looked like stars but were moving in all different directions. +2009-01-28,44.3486111,-70.0666667,Wayne,ME,light,300,Amphibious light in Wayne, Maine. +2009-12-09,42.0897222,-76.8080556,Elmira,NY,changing,120,It was fast and there was a lot of dots, all blue/ silver. +2010-12-08,34.2083333,-77.7966667,Wrightsville Beach,NC,light,5,Four orbs of light, in no particular formation as if one craft, moving very fast south of wrightsville beach moving south. +2010-01-28,41.6833333,-86.25,South Bend,IN,triangle,20,triangle over south bend +2010-01-28,39.1213889,-81.7477778,Reedsville,OH,light,1200,Strange rotating bright light appears, disappears, and re-appears +2010-01-28,33.7455556,-117.8669444,Santa Ana,CA,sphere,5,Two white spheres flying over an orange county freeway +2010-01-28,29.7630556,-95.3630556,Houston,TX,circle,45,2 spheres flying around each other, on a rotating axis +2010-01-28,33.7825,-117.2277778,Perris,CA,triangle,600,Large black triangle hovering between 1500-2500 high then slowly crept northward at 50-80mph. +2010-12-08,38.2494444,-122.0388889,Fairfield,CA,circle,600,Me and my 65 year old mom were on her front porch when I saw 3 red lights low in the night sky, they were stationary at first, then the +2010-01-28,39.6019444,-74.8430556,Folsom,NJ,sphere,30,reflective object leaves light trail, disappears +2010-01-28,45.0563889,-92.8058333,Stillwater,MN,light,900,Bright lights over St. Croix River/Bayport area Minnesota +2010-12-08,36.0397222,-114.9811111,Henderson,NV,light,2,Blue light screaming across the Nevada skyline +2010-12-08,41.6080556,-74.2994444,Pine Bush,NY,light,120,2 lights hovering over Pine Bush +2010-12-08,41.5033333,-74.0108333,Newburgh,NY,changing,300,15-20 tiny points of light moving over Newburgh, NY. +2010-12-08,39.3325,-76.6930556,Gwynn Oak,MD,triangle,21,It was a sight to see, +2011-12-08,32.3969444,-82.0602778,Metter,GA,triangle,300,White triangular formation in the night sky over Metter, GA +2011-12-08,40.0063889,-75.7036111,Downingtown,PA,circle,10,It looked like a bright white star... +2011-12-08,42.3583333,-71.0602778,Boston,MA,fireball,5,I was looking up at the sky real quick and i noticed a green flaming ball shape object with a blueish and green like flame coming out o +2011-12-08,38.5816667,-121.4933333,Sacramento,CA,cross,720,The orange cross over sacramento +2011-12-08,44.3294444,-74.1316667,Saranac Lake,NY,sphere,30,Multiple large, yellowish orbs appeared and disappeared in the sky +2011-01-28,41.76,-70.0833333,Brewster,MA,other,60,Strange craft emitting large beams spotted in Brewster MA. +2011-12-08,32.7455556,-80.9280556,Early Branch,SC,triangle,180,2 aircrafts headlight on,headlights disappeared 3 sparking lights all 3 corners of triangle shaped object observed +2011-12-08,37.9136111,-89.8219444,Chester,IL,triangle,900,Triangle larger then a football field +2011-01-28,33.0369444,-117.2911111,Encinitas,CA,triangle,20,triangle of lights fly over Swami's point in the evening +2011-01-28,34.8555556,-86.7508333,Harvest,AL,unknown,180,Unidentified lights hovering above empty field in Harvest, Alabama +2011-01-28,47.8211111,-122.3138889,Lynnwood,WA,unknown,45,small fire ball moving at very slow speed +2011-01-28,42.2886111,-85.4180556,Galesburg,MI,triangle,10800,I saw what looked to be a nearly stationary private jet in mid-air, and an aircraft 3 hours later that I can not identify. +2011-12-08,33.8158333,-78.6802778,North Myrtle Beach,SC,light,600,Dancing amber lights over the Atlantic in North Myrtle Beach +2011-12-08,35.2269444,-80.8433333,Charlotte,NC,fireball,3,Fluorescent green teardrop fireball falling to earth. +2011-12-08,34.2072222,-84.1402778,Cumming,GA,sphere,600,Bright light in sky. Made odd erratic movements not like any aircraft. I have seen. ((NUFORC Note: Possible star?? PD)) +2012-12-08,43.4366667,-71.1727778,New Durham,NH,triangle,1800,Looked out at a long time at a bright light close to our lake - when I zoomed in on the images I took, I noticed that it was a v shape. +2012-12-08,45.3141667,-91.6508333,Chetek,WI,light,900,Star size blinking/fast moving white lights- about a dozen +2012-12-08,41.6005556,-93.6088889,Des Moines,IA,light,2,Fast moving silver light +2012-01-28,33.4477778,-96.7472222,Gunter,TX,unknown,900,Large weird Smoke Ring near Gunter, Texas. +2012-01-28,39.9405556,-76.3466667,Conestoga,PA,teardrop,10,Saw a teardrop craft moving fast, trail of bird followed. +2012-01-28,40.2413889,-75.2841667,Lansdale,PA,oval,30,Awesome spectaular +2012-12-08,43.1905556,-112.3441667,Blackfoot,ID,circle,90,10 bright lights in pairs sitting motionless partially obscured by clouds in what looked like a formation lasting 90 seconds. +2012-12-08,43.1905556,-112.3441667,Blackfoot,ID,light,300,Saw orange glowing balls in the sky, created a formation and disappeared. 500 Lights On Object0: Yes +2012-01-28,32.2216667,-110.9258333,Tucson,AZ,circle,900,6 objects Over Tucson +2012-12-08,21.3069444,-157.8583333,Honolulu,HI,cone,45,Coned shaped with 3 lights above Koko Head Goes directly over our car. +2012-12-08,35.36,-81.9294444,Spindale,NC,circle,300,Strange reddish/orange lights over Spindale, NC 12/8/2012. +2012-12-08,33.6888889,-78.8869444,Myrtle Beach,SC,light,600,15-20 red lights spotted in the sky, which moved rapidly in a linear fashion and formed triangles. +2012-01-28,38.1302778,-121.2713889,Lodi,CA,light,1200,Strange bright light over Lodi, CA 1/28/2012 8:00 - 8:30pm. ((NUFORC Note: Possibly Venus. PD)) +2012-01-28,46.9494444,-91.7788889,Knife River,MN,sphere,720,Red Spheres seen heading over Lake Superior. +2012-12-08,31.8455556,-102.3672222,Odessa,TX,fireball,15,On Saturday night, at around 8:30 p.m CST on Dec. 8, 2012, I saw what appeared to be a shooting star or a meteor. +2012-12-08,47.6733333,-117.2383333,Spokane Valley,WA,changing,240,Explainable red lights in the sky. +2012-12-08,47.6733333,-117.2383333,Spokane Valley,WA,changing,480,Unexplained light show over Spokane Valley, Wa. +2012-12-08,47.6733333,-117.2383333,Spokane Valley,WA,fireball,900,FIREBALLS SEEN BY ENTIRE FAMILY OVER THE SPOKANE VALLEY...VIDEO EVIDENCE TOO!! +2012-01-28,33.2075,-82.3919444,Wrens,GA,diamond,360,Was not a plane and lights where extremely bright. +2012-01-28,36.595,-82.1888889,Bristol,TN,triangle,15,Silver, flying object with several green lights hovering slowly over the highway. +2012-01-28,35.2225,-97.4391667,Norman,OK,circle,900,Sightings of red orbs in Norman +2012-12-08,28.5152778,-82.5730556,Weeki Wachee,FL,fireball,1200,15-20 orange bright lights moving slowly. +2012-12-08,28.6697222,-81.2083333,Oviedo,FL,light,600,20 bronze lights in the sky crossing in the same path ..the came in 3 lights at a time. +2012-01-28,43.6794444,-70.4447222,Gorham,ME,disk,25,Bright light flashes in sky follwed by a flying disk in Gorham,Me. +2012-01-28,42.8922222,-76.1055556,Lafayette,NY,teardrop,4,Bright light from the sky to the ground +2012-01-28,43.7069444,-116.6191667,Middleton,ID,other,180,Five red-orange lights, three of which were in triangle formation, over Middleton, ID +2012-12-08,35.7719444,-78.6388889,Raleigh,NC,light,600,Two large red/orange lights travel across Raleigh sky. +2012-01-28,38.5816667,-121.4933333,Sacramento,CA,circle,1500,ORANGISH RED ORBS HOVERING OVER NATOMAS AND HWY 99 NORTH +2012-01-28,38.6272222,-90.1977778,St. Louis,MO,triangle,900,Two separate instances of three orange lights moving west to east. +2012-01-28,29.9438889,-82.11,Starke,FL,light,1,While camping an orange light was seen through tree line which was sitting still and then accelerate towards the ground. +2012-01-28,29.8944444,-81.3147222,St. Augustine,FL,triangle,3,2 triangle shaped crafts with 5 lights seen with night vision goggles zooming north over the coast of Florida. +2012-12-08,47.573055600000004,-117.6811111,Medical Lake,WA,light,1800,Orange/white ball of light seen bouncing like a ping pong ball north of Fairchild Airforce Base Washington. +2013-01-28,43.5966667,-85.1447222,Remus,MI,teardrop,5,We spotted an large bright light. +2013-12-08,27.9472222,-82.4586111,Tampa,FL,circle,180,UFO spotted from a distance, round or almost pear/diamond shaped object, white in color, and absolutely no sound came from it. +2013-12-08,39.8547222,-76.5647222,Felton,PA,disk,10800,Bright object in sky, almost boomerang in shape which I have never seen before. +2013-12-08,45.5230556,-122.9886111,Hillsboro,OR,unknown,120,3 large orange/red lights in Eastern sky NO sound then vanished one by one. +2013-12-08,28.1758333,-80.5902778,Satellite Beach,FL,fireball,900,Was out back grilling and my wife and I witnessed approx 15 silent round amber/fireall looking objects scattered across the sky coming +2013-12-08,36.0397222,-114.9811111,Henderson,NV,triangle,45,Shadow like triangle, no lights or sound, larger and faster than a commercial jet. +2013-12-08,38.6402778,-92.1222222,Holts Summit,MO,light,1800,Weeks later, its back again... +2013-12-08,29.0386111,-95.6983333,Sweeny,TX,sphere,3600,Very bright blue UFO hovering over the Tx Country Sky! +2013-12-08,28.7811111,-82.6152778,Homosassa,FL,light,900,Unidentified Super Bright Light Ball. +2013-01-28,44.3683333,-100.3505556,Pierre,SD,light,60,THE UFO RECOGNIZED SOMEBODY WAS WATCHING AND IT STOPPED, HOVERED FOR A MINUTE BEFORE BLASTING OFF TO SPACE. +2013-12-08,47.5405556,-122.635,Port Orchard,WA,fireball,180,A bright orange looking star that moved In impossible ways and speeds. +2014-01-28,37.6688889,-122.0797222,Hayward,CA,oval,60,I was looking out my kitchen window looking at the sky as i washed dishes and i saw a light i thought it was a plain until it got close +2014-01-28,39.4866667,-74.8361111,Mizpah,NJ,diamond,600,Triangle shaped craft white lights(no blinking) slow moving pace with a green light dropped out of it low altitude heading S-SW 2:45am +2014-01-28,33.1625,-96.9372222,Little Elm,TX,triangle,120,3 red lights moving slowly and making a humming sound. +2014-01-28,37.9736111,-83.8419444,Jeffersonville,KY,triangle,360,First me and a friend watch the sky light blue, then a triangle shape of 10 to 12 crafts were moving in the stanton direction! cant exp +2014-01-28,27.7705556,-82.6794444,St. Petersburg,FL,flash,2,Bright white flash of light. +2014-01-28,26.9294444,-82.0455556,Punta Gorda,FL,light,40,Two lights over Punta Gorda, Florida. +2014-01-28,30.3933333,-86.4958333,Destin,FL,light,120,17:15 Destin, Fl, Sphere 2 minute duration orange sphere Light fading in and out and big then small and big again. +2014-01-28,36.9902778,-86.4436111,Bowling Green,KY,fireball,5,Shooting, burning star. +2014-01-28,36.0625,-94.1572222,Fayetteville,AR,flash,3,Streak of Green Light. +2014-01-28,36.5455556,-119.3391667,Sultana,CA,circle,30,Rapid circle in the clouds that turn triangular green and disappears. +2014-01-28,36.175,-115.1363889,Las Vegas,NV,light,10,White light ball speeds off and leaves colored trail. +2014-01-28,38.4088889,-121.3705556,Elk Grove,CA,flash,3,Bright object flashes then shoots across the sky. +2014-01-28,33.1805556,-94.7438889,Omaha (Texas, Not Nebraska),TX,formation,15,3 lights with no sound heard, traveling N to S in straight line formation. +1965-12-09,40.4405556,-79.9961111,Pittsburgh,PA,unknown,5,HBCCUFO CANADIAN REPORT: I Saw The Kecksberg UFO! +1965-12-09,47.9930556,-122.8647222,Fairmont,WA,other,10,In 1965 i was 9 years old and me and mt sister saw a fire ball craft tha looked like a acorn shaped craft somewhat like a bell with sim +1965-12-09,39.7938889,-75.1725,Mantua,NJ,cigar,120,an object like an airplane fusilage without wings flames from it were going up not, i repeat, not trailing the object +1965-12-09,41.9761111,-72.5922222,Enfield,CT,circle,120,Charting a UFO and identifying its points of origin. +1965-12-09,41.9761111,-72.5922222,Enfield,CT,circle,120,Coincidence with later Sighting in 1982 in Great Falls, Montana that seems to have been totally removed from the publics view. +1965-12-09,41.9761111,-72.5922222,Enfield,CT,fireball,120,Giant FireBall streams across the evening sky of Enfield Connecticut, was Hartford responsible, was Mark Twain given a final send -off! +1965-12-09,41.9761111,-72.5922222,Enfield,CT,fireball,300,Possible sighting of the Kecksburg UFO +1965-12-09,41.5622222,-72.6511111,Middletown,CT,fireball,120,fireball the size of the house on 12/29/1965 about 5:00 pm +1965-12-10,39.9866667,-75.4013889,Newtown Square,PA,fireball,6120000,DEC 1965 NEWTOWN SQUARE PENN FLAMING BURNING OBJECT MOVING ACROSS THE SKY VERY LOW AND SLOW +1968-01-29,34.3988889,-119.5175,Carpinteria (Santa Barbara County),CA,sphere,600,witnesses watched 3 large sphere move slowly to the West, hover and then each disappear. +1978-12-09,41.1133333,-74.2458333,Ringwood,NJ,triangle,180,Triangular aircraft sighted from Virginia to NY State in ྊ +1980-12-10,34.0194444,-118.4902778,Santa Monica,CA,disk,600,It said U.s. and eighter Air For or something official. It was official looking nontheless. +1986-01-29,46.4166667,-114.1491667,Victor,MT,circle,300,large light and expelled 2 smaller round lightsƺ sm descended to the ground the large moved slow over the barn and moved out into the +1987-01-29,36.175,-115.1363889,Las Vegas,NV,disk,10800,TWO UFO'S SPEND NIGHT ON MOUNTAIN, SEEN THE NEXT DAY IN PLAIN DAYLIGHT +1989-01-29,41.7305556,-88.3458333,Montgomery,IL,unknown,5,This happened 15 years ago. I had just finished helping my girlfriend move into her new home, and was heading home myself. I was travel +1990-12-09,32.5563889,-95.8630556,Canton,TX,other,300,Bright Huge Object Changing Shapes and Colors +1994-12-09,42.9083333,-94.0736111,Lu Verne,IA,light,5,Large orange ball of light moving slowly across sky. +1997-12-09,47.3811111,-122.2336111,Kent (Auburn, Over S. King Co. Valley),WA,circle,300,Circular, bright metallic object hovering, seemingly dissapearing and reapearing in the same place high in the sky in South King County +1997-12-09,39.5297222,-119.8127778,Reno,NV,light,1800,I was driving home on the freeway going north and i looked out the drivers side window and i saw a bright red light over down town Reno +1997-12-09,39.5297222,-119.8127778,Reno,NV,light,300,Bright red light over Reno, NV +1997-12-09,39.5297222,-119.8127778,Reno,NV,light,1090,Stationary bright red light, simular to jupiter in brightness but red eventuily moved to the south of reno and dimed.and Flashed Three +1997-12-09,39.5297222,-119.8127778,Reno,NV,circle,1800,I was driving home on freeway going north and looked out drivers side window when i see a bright red round object in the sky right over +1997-01-29,41.6602778,-71.4563889,East Greenwich,RI,disk,300,I witnessed a UFO which may be of the Lazar"Sport Model" variety when I was leaving work to drive home.The UFO was circular in shap +1998-12-09,42.2916667,-85.5872222,Kalamazoo,MI,light,60,a little ball of light making little circles in the sky +1998-12-09,37.4694444,-105.8694444,Alamosa,CO,oval,45,I am a police officer in alamosa colorado. on the date and time above, i was on routine patrol, i was traveling northbound along a coun +1998-12-09,39.12,-90.3283333,Jerseyville (North Of),IL,light,60,A moving, brightly lit object was about the cross the highway in front of my but vanished. +1998-12-09,40.8022222,-124.1625,Eureka (Sighted From),CA,teardrop,900,Looking out window of house and saw a massive object descending in a straight path to earth near the horizon in the far distance. +1998-12-09,33.4483333,-112.0733333,Phoenix,AZ,circle,20,strange light moving at high speed +1998-01-29,41.7,-71.6833333,Coventry,RI,disk,300,Shiny metal ship with row of blinking red lights. Classic saucer shape w/ dome. +1998-12-09,41.4361111,-81.3866667,Chagrin Falls,OH,light,10,I was outside looking up at the western night sky at 8:43:30pm est, at about 2 o'clock high. I saw a small point of light move from the +1998-01-29,38.7816667,-95.7383333,Scranton,KS,fireball,45,My son and I saw a something slowly falling out of the sky. It looked like a VW on fire very bright and moving very slowly downward. +1999-01-29,35.0588889,-119.4,Maricopa (4 Miles West Of, On Hwy 166),CA,disk,1800,Saw an object to the left rear of a contrail left by a commericial aircraft that was heading towards Los Angeles. Object was two to thr +1999-12-09,39.5297222,-119.8127778,Reno,NV,disk,5,Saucer visible from University of Nevada, Reno looking to the east. Color was silver with golden glow, possibly reflected sunlight. A +1999-12-09,47.3891667,-122.6241667,Purdy,WA,fireball,2,PALE GREEN LIGHT MOVING VERY FAST FROM NE TO SW. SIGHTED BETWEEN CLOUDS. APPEARED TO BE DROPPING INTO THE BAY IN THE DIRECTION OF OLYM +1999-12-09,45.6961111,-121.285,Lyle,WA,fireball,0.01,Incredible...full moon sized bright orange fireball in the North sky near Mt.Adams..fell straight down and exploded..2 small fire-balls +1999-01-29,32.0033333,-80.9738889,Wilmington Island (Savannah),GA,diamond,120,A low flying craft over Spencer Grayson Bridge changed from diamond pattern to a circle of white lights rotating +1999-12-09,33.5091667,-111.8983333,Scottsdale,AZ,changing,120,At 10 minutes to 10 PM on 12/9/99 in Scottsdale, Arizona I saw something that I have never seen before. Traveling North West above the +1999-12-09,42.6191667,-113.6763889,Rupert,ID,light,120,HBCCUFO CANADIAN REPORT: Cluster of lights formed one large object. +1999-12-09,32.2502778,-101.4783333,Big Spring,TX,light,1200,The first appeared from the south as a light. I first thought it was a meteor, but then it turned east, and then went west. It slowly w +2000-01-29,47.4538889,-122.3205556,Seatac,WA,fireball,300,Fireball streaking in southeast direction, looked at first like a gigantic meteorite burning up in the atmosphere. +2000-01-29,45.4872222,-122.8025,Beaverton,OR,cylinder,900,Traveling from Portland to Beaverton Saturday afternoon our family again spotted a laeger white object in the southwestern sky. It lef +2000-12-09,32.4205556,-104.2283333,Carlsbad,NM,light,45,We saw two very fast-moving objects take off. +2000-12-09,33.4222222,-111.8219444,Mesa,AZ,light,900,Red Light over east valley of Phoenix +2000-12-09,40.6952778,-80.305,Beaver,PA,triangle,90,Like a red traffic light, behind the trees, it flew in unison with a light too, bright to be an approaching plane. +2001-12-09,37.2152778,-93.2980556,Springfield,MO,triangle,30,Two triangluar/chevron-shaped objects flew from zenith to horizon in less than 30 sec. +2001-12-09,41.88,-88.0077778,Lombard,IL,chevron,180,Huge Black Transparent Silent Chevron +2001-12-09,39.1619444,-84.4569444,Cincinnati,OH,unknown,4500,Red flashing lights on loud large hovering thing which stayed in the sky for over an hour +2001-01-29,33.6083333,-117.7444444,Aliso Viejo,CA,triangle,90,THESE OBJECTS APPERRED OVER ALISO VIEJO CA JUST 10 MIN. AGO. THEY WERE SILET AND LOOKED LIKE FLOATING HOUSES AND THEN THE 3 OF THEM SHO +2001-01-29,21.5027778,-158.0236111,Wahiawa,HI,other,300,Unique shaped object in Wahiawa sky...did anyone else see this thing? +2001-12-09,38.5788889,-122.5786111,Calistoga,CA,unknown,1800,Erratic movement of single light which split into two and back to one again repeatedly, as well as hovering. +2001-12-09,35.198055600000004,-111.6505556,Flagstaff,AZ,triangle,120,I saw a triangle craft that had many lights then flew away a high speed. +2001-01-29,34.510555600000004,-89.9397222,Como,MS,triangle,15,A rounded shape triangle with bright florscent lights. +2001-01-29,29.7630556,-95.3630556,Houston,TX,diamond,600,Diamond Shaped UFO in Houston +2002-12-09,42.1041667,-72.3194444,Monson,MA,light,14400,Moving star-like lights witnessed in early AM in sky over ruran massachusetts town +2002-12-09,40.1672222,-105.1013889,Longmont,CO,light,5,An accelerating streak of light moving upwards through the sky. +2002-01-29,38.005,-121.8047222,Antioch,CA,formation,1200,Witnessed three glowing objects in sky in a perfect isoceles triangle and watched two accelerate into the distance very, very fast. +2002-12-09,45.0322222,-93.3383333,Robbinsdale,MN,diamond,7200,Diamond +2003-12-09,39.5236111,-87.125,Brazil,IN,circle,120,it was round with huge red lights +2003-12-09,37.18,-89.655,Chaffee,MO,other,30,alien / monster +2003-01-29,34.7227778,-76.7263889,Morehead City,NC,circle,900,jan.29 2003 about 0100 Morehead city,no.carolina heavy cloud cover.winds west to east about 15 mph. object appeared to look like except +2003-12-09,38.2544444,-104.6086111,Pueblo,CO,light,300,This object was definitely like nothing I have ever seen, and I observe the night sky nightly. +2003-12-09,33.6,-117.6711111,Mission Viejo,CA,triangle,300,Bright yellow-ish triangle object seen hanging low in the sky. +2003-01-29,34.1336111,-117.9066667,Azusa,CA,triangle,600,Triangular Shaped Formation Flying in an unexplainable pattern. +2003-12-09,34.2163889,-119.0366667,Camarillo,CA,light,1800,strange light above air base in southern California +2003-01-29,33.6694444,-117.8222222,Irvine,CA,chevron,600,Triangular shape +2003-12-09,38.7291667,-87.6816667,Lawrenceville,IL,circle,60,orange object in sky +2003-12-09,39.4666667,-87.4138889,Terre Haute,IN,triangle,300,Slow moving silent triangle defined by pale yellow chevron and a single bright center light with moving north in southern Vigo Co. +2003-12-09,34.9386111,-82.2272222,Greer,SC,disk,5,saucer like object across the horizon 8:15pm southern sky, south carolina +2003-01-29,43.2919444,-85.5177778,Sand Lake,MI,chevron,600,A boomerang shaped large craft with aprox. 9 separate lights was hovering in the night sky . +2003-01-29,33.9533333,-117.3952778,Riverside,CA,disk,180,spinning, orange, glowing object disappears and reappears in a different area within seconds +2003-01-29,33.5441667,-84.2338889,Stockbridge,GA,oval,600,Five darting lights seen briefly on a winter's night in Georgia. +2003-01-29,34.0522222,-118.2427778,Los Angeles,CA,egg,30,5 red orange lights coming together, forming a circle, and rising up out of sight. +2003-01-29,47.1219444,-88.5688889,Houghton,MI,diamond,420,Diamond shaped craft luminating yellow/green w/ periodic purple pulses moving in tiny circular path to southeast by astronomy students +2003-01-29,35.4675,-97.5161111,Oklahoma City,OK,light,10,sounded like a really loud helicopter with just 1 bright pink light....was moving really fast in zig zag pattern and some smoke beh +2004-01-29,29.7630556,-95.3630556,Houston,TX,light,10800,fairly bright lights 8 or 9 circling chaoticly yet defined forming a line once north to south another time west to east exactly given +2004-12-09,39.7286111,-121.8363889,Chico,CA,triangle,5,Observed flying triangle with five orange lights as it flew silently and slowly in an eastwardly direction over city. +2004-12-09,37.485,-119.9652778,Mariposa,CA,light,10800,Strange Lights over Mariposa California. +2004-12-09,36.5297222,-87.3594444,Clarksville,TN,other,180,In the night sky I saw an object that looked like the pontoons on a pontoon boat, except that one was aligned ahead of the other. +2004-12-09,38.1761111,-88.9675,Nason,IL,light,600,moving vanishing star +2004-01-29,35.198055600000004,-111.6505556,Flagstaff,AZ,light,120,Red and Blue lights moving across they sky in the shape of a crecent moon +2004-12-09,33.7222222,-116.3736111,Palm Desert,CA,other,600,Saw a luminous yellow-green color craft, with external white lights. It was quite large. It was low on the horizon, so low that it wa +2004-01-29,40.3355556,-75.9272222,Reading,PA,disk,5400,Disk, blue and red lights, stationary in the southeast for 90 mins. Disappeared when aircraft approached +2004-01-29,40.155,-74.8291667,Levittown,PA,triangle,1800,bright lights in the sky +2004-12-09,29.5072222,-95.0947222,League City,TX,triangle,2,I saw a triangular shaped craft outlined in lights hovering over the highway that I was traveling on low & in front of me. +2004-01-29,33.6888889,-78.8869444,Myrtle Beach,SC,light,120,Three big orange lights sat in the sky then vanished +2004-01-29,39.9561111,-75.0583333,Pennsauken,NJ,triangle,180,suspicious moving lights no sounds in the sky to close to the ground +2004-12-09,36.595,-82.1888889,Bristol,TN,triangle,25,Triangular object photographed +2004-01-29,42.4791667,-71.1527778,Woburn,MA,cigar,300,At approximately, 23:30 hrs several fighter jets where heard in the area, apparently they were tracking an object out of the south west +2005-01-29,33.8313889,-118.2811111,Carson,CA,unknown,300,Reddish object produced flashes of light, discharged a gaseus material, dissappeared, reappeared and dissapeared again. +2005-12-09,35.6233333,-95.9602778,Okmulgee,OK,cigar,180,white cylinder, cigar shape,traveling south to north,about 1500'to 2000. black band about 1/3 from front. 75' to 100' long. +2005-01-29,34.0522222,-118.2427778,Los Angeles,CA,disk,240,We saw a subject size if a helycopter, round and it had a whole in the midle, it looked like a donut,block and you cood see sky throoh +2005-01-29,38.6786111,-121.2247222,Orangevale,CA,triangle,5,Vee shaped red/orange lights moving east to west over Sacramento. +2006-12-09,45.1719444,-93.8744444,Buffalo,MN,rectangle,180,Large rectangular shape- gray in color. +2006-12-09,36.8297222,-84.8491667,Monticello,KY,sphere,1800,I observed a shimmering white orange and mostly red object the size of a close star in the western sky slightly above the horizon. Obje +2006-12-09,32.7252778,-114.6236111,Yuma,AZ,light,36000,Large white spinning ball omiting many colors. ((NUFORC Note: Sighting of a celestial body, perhaps? Possibly Sirius? PD)) +2006-12-09,30.4380556,-84.2808333,Tallahassee,FL,triangle,30,triangular ufo spotted on I10 on dec 9, 2006. +2006-01-29,35.4991667,-80.8488889,Davidson,NC,other,120,Large Silver Dome: Sunday, January 29, 2006 2:35 PM Going north on I-77, crossing Lake Norman from Cornelius, NC toward Davidson. +2006-12-09,33.3333333,-111.845,Cedar Ridge,AZ,oval,14,Grand Canyon UFO? +2006-01-29,31.7586111,-106.4863889,El Paso,TX,circle,900,50 UFO spotted at the same time performing geometric movements +2006-12-09,35.4105556,-80.8430556,Huntersville,NC,rectangle,600,Box shape(ie a book) flat black all aroundƺ large white lights no windows or exhaust slow & silent. +2006-12-09,33.9213889,-78.0205556,Southport,NC,light,240,Star-like object, flying fast toward the Eastern Seaboard, slowed, then resumed fast flight due north. +2006-01-29,37.7975,-79.7913889,Iron Gate,VA,circle,60,Light approached town , low on horizon, increased in size and intensity, then disappeared. +2006-01-29,34.5577778,-115.7436111,Amboy,CA,cigar,60,driving in the desert saw lights moving rapidly, and saw the craft on the ground. +2006-12-09,30.1125,-85.2005556,Wewahitchka,FL,fireball,60,Bright red "fireball" lasting about a minute then faded out, seconds later a white "shooting star"??? came into the area and then disap +2006-01-29,32.7558333,-111.5541667,Eloy (Arizona City),AZ,disk,1800,VERY LARGE DISK SHAPED OBJECT WITH MULTIPLE LIGHTS SLOWLY MOVING ABOVE ELOY TRUCKSTOPSINTO S.E DESERT +2006-12-09,44.9444444,-93.0930556,Saint Paul,MN,chevron,120,UFO in Minnesota, witnessed by three people. +2006-12-09,36.0725,-79.7922222,Greensboro,NC,light,180,Space Shuttle presumed sighted in NC after recent night launch +2006-01-29,41.1219444,-75.365,Mount Pocono,PA,light,1,Very large and bright flash at treeline - directly in front of me +2006-12-09,31.2133333,-82.3541667,Waycross,GA,fireball,8,Comet like light seen over Waycross GA +2006-12-09,41.5244444,-90.5155556,Bettendorf,IA,triangle,8,9:45 PM 12/09/06 huge triangle defined by white light pattern motionless about 7 miles south of Bettendorf IA +2006-12-09,42.5377778,-83.2330556,Bloomfield,MI,diamond,1,It was a diamond shaped object with a round dot in the center. That shap was masked by a bright flash in a square or rectangle glow +2006-01-29,36.3302778,-119.2911111,Visalia,CA,egg,1800,Orange objects in the sky +2007-12-09,40.6913889,-73.8061111,Jamaica,NY,oval,600,A bright white-yellow object hovering and then moving in NY. +2007-01-29,39.1502778,-123.2066667,Ukiah,CA,rectangle,3,High velocity craft flying parallel to freeway. +2007-01-29,42.2416667,-70.8041667,Cohasset,MA,light,600,Bright lights, worm shaped light +2007-01-29,33.3527778,-111.7883333,Gilbert,AZ,unknown,420,Strange objects traveling through sky +2007-01-29,41.9575,-88.0808333,Bloomingdale,IL,light,60,Strange white lights seen on object in sky. +2007-12-09,36.5433333,-119.3861111,Dinuba,CA,unknown,180,Lights over Central Valley California +2007-01-29,47.5405556,-122.635,Port Orchard,WA,light,600,Single Red light slow and straight from west to east. +2007-01-29,47.5675,-122.6313889,Bremerton,WA,light,1200,A red light traveling at a slow speed was visible for 20 mintes and was seen to hover four times. +2007-01-29,33.4330556,-79.1216667,Pawleys Island,SC,light,2400,Two Orange Lights Over the Water +2007-01-29,40.4405556,-79.9961111,Pittsburgh,PA,fireball,180,Driving North on Route 60, near the Pittsburgh International Airport. Above the airport, and a little north, there was a bright reddish +2007-01-29,48.1988889,-122.1238889,Arlington,WA,sphere,300,I was having a smoke, I looked up into the sky and saw an unusual light East North East, from where I live in Arlington, the UFO ap +2007-12-09,45.5394444,-122.3861111,Troutdale,OR,light,300,Very bright red, green and blue light causing the SSE sky to glow. +2007-01-29,41.85,-87.65,Chicago,IL,light,5,Green light over Chicago +2007-01-29,41.575,-87.2388889,Lake Station,IN,disk,600,red light shadowy craft saucer no movement blue yellow light flash craft gone +2007-12-09,38.8813889,-94.8188889,Olathe,KS,light,10800,ball of changing light floating just below the clouds. +2007-01-30,28.2916667,-81.4077778,Kissimmee,FL,disk,60,I am a member of the internet forum Above Top Secret (ATS) I started a thread today about the members going and filming the skies aroun +2008-01-29,43.4422222,-71.5894444,Tilton,NH,formation,300,shape of a w with bright orange lights with a blinding middle light +2008-12-09,34.0522222,-118.2427778,Los Angeles,CA,light,180,Bright object that slowly disappeared. +2008-01-29,35.1555556,-89.7761111,Cordova,TN,unknown,5,One object moving very fast at night with one light then straight up in to the atmophere +2008-12-09,30.1313889,-94.0152778,Vidor,TX,cone,900,3 cone shaped crafts the color of a rainstorm +2008-01-29,32.8722222,-116.4175,Mt. Laguna,CA,circle,10,it was in one picture and not the other frame +2008-01-29,42.3583333,-71.0602778,Boston,MA,cylinder,120,Large cylinder moving north at great speed without sound over logan airport. ((NUFORC Note: Possible contrail?? PD)) +2008-01-29,33.015,-96.6127778,Murphy,TX,flash,120,A bright object barely visible due to its distance slowly streaked across the sky and then dissappeared. +2008-01-29,41.3405556,-87.6213889,Beecher,IL,light,1800,BRIGHT lights, some fading in and out, forming a V on one night +2008-01-29,34.9802778,-101.9183333,Canyon,TX,sphere,300,I went outside to smoke with my wife and saw a round object that was bright white. It was stationary and then started to move. It moved +2008-01-29,41.6333333,-72.1638889,North Franklin,CT,cross,25,amazingly low flying silent craft witnessed ct +2008-01-29,34.1808333,-118.3080556,Burbank,CA,formation,180,Invisible/cloaked craft with three (3) blinking amber lights travels over Burbank, CA. +2008-01-29,37.6194444,-84.5780556,Lancaster,KY,triangle,10,Triangular shaped craft that seemed to mirror the night sky. +2009-01-29,32.9536111,-96.89,Carrollton,TX,circle,180,4 circle shaped objects, very huge and bright lights over HWY 121. +2009-01-29,33.9925,-83.7202778,Winder,GA,unknown,14400,horrible +2009-12-09,31.0558333,-97.4641667,Belton,TX,other,600,Square flying object with light on each corner flying very low and very slowly. +2009-01-29,31.7091667,-98.9908333,Brownwood,TX,triangle,900,Unidentified object appears in sky with lights appearing and then vanishing 5 times as it moved. +2009-01-29,32.2094444,-99.7963889,Tuscola,TX,unknown,600,I just saw this about 15 minutes ago at first 2 orange lights appeared and as quickly as they appeared they dissapeared ..then it came +2009-12-09,38.2872222,-89.8172222,Lenzburg,IL,circle,5,bright blue light with a beam and circler craft +2009-12-09,38.2872222,-89.8172222,Lenzburg,IL,circle,5,bright light with a beam and craft +2009-01-29,41.7122222,-72.6086111,Glastonbury,CT,circle,3,I looked east and saw a rather large circular pale blue light in the sky and then it just streaked off with the speed of a fireball +2009-01-29,32.2136111,-98.6702778,Gorman,TX,unknown,600,Orange lights Southwestern Sky, Gorman Texas +2009-01-29,32.4013889,-98.8172222,Eastland,TX,light,900,Lights appearing in succession. +2009-01-29,40.4861111,-74.4522222,New Brunswick,NJ,light,120,Five red lights in a line over rt 287south +2009-01-29,40.8066667,-74.1858333,Bloomfield,NJ,formation,360,5-6 pulsating red dots over Bloomfield, NJ 1/29/09 8:01 PM- 8:07 PM +2009-01-29,33.9791667,-118.0319444,Whittier,CA,fireball,240,Fast moving Fireball over Whittier, CA +2009-01-29,38.6272222,-90.1977778,St. Louis,MO,diamond,120,St. Louis County Sky Object +2009-12-09,33.3702778,-112.5830556,Buckeye,AZ,light,1200,Hovering ligths over Buckeye. Viewed from Miller and Baseline road. Two seperate craft. +2009-12-09,41.0180556,-75.9952778,Drums,PA,light,10,circle of light in my neighborhood +2010-01-29,40.9436111,-78.9711111,Punxsutawney,PA,light,900,Large white light surrounded by flashing red/green lights +2010-01-29,36.3852778,-79.9597222,Madison County,NC,diamond,60,I was driving down the road came to a stop sign. As i slowed i saw a bright flash of red and white light to my right. I then noticed in +2010-12-09,33.6411111,-117.9177778,Costa Mesa,CA,flash,800,the Object flashed me 2 times +2010-01-29,39.3619444,-77.5319444,Jefferson,MD,oval,120,Oval shaped object sighted hovering over a field +2010-12-09,37.3394444,-121.8938889,San Jose,CA,oval,7,Two Oval Shaped Craft Flying Low and Extremely Fast in Tandem Formation Over San Jose California! +2010-12-09,38.4455556,-121.8222222,Dixon,CA,unknown,240,Object entering atmosphere, moving lights. +2010-12-09,43.5416667,-119.5027778,Riley,OR,fireball,900,We were traveling from Riley Or. to Bend Or., mile 70 aprox. ,whe this fire balls showed in the middle of the storm, but the most amazi +2010-01-29,26.3013889,-98.1630556,Edinburg,TX,cigar,300,At about 7:40pm a cigar shaped object at a great distance started doing zig-zags, before joining 5 or more objects. +2010-12-09,33.8752778,-117.5655556,Corona,CA,triangle,240,V-shaped craft observed at low altitude moving swiftly from north to south over Corona California +2010-12-09,39.9205556,-105.0861111,Broomfield,CO,light,45,Bright light in the sky approximately 1/2 the size of a full moon; then a lightning streak and it was gone. +2010-12-09,34.2783333,-119.2922222,Ventura,CA,teardrop,180,December 9, 2010 Just after 8:00pm Ventura, California I was driving home from a business meeting on the northbound 101 freeway when I +2010-12-09,32.9430556,-94.2480556,Kildare,TX,other,600,Two bright lights above the trees +2010-12-09,28.8105556,-81.8780556,Leesburg,FL,other,7200,Space station or Space craft? +2010-12-09,38.0291667,-78.4769444,Charlottesville,VA,chevron,7200,((HOAX??)) alien acrobat, or new government plane? you tell me. +2011-12-09,33.9383333,-78.7333333,Longs,SC,other,20,Orange/Red glowing objects in diamond-like formation. +2011-01-29,39.3772222,-76.54,Parkville,MD,light,120,This wasnt just a star...it was something more +2011-12-09,47.6794444,-122.8969444,Brinnon,WA,circle,1200,Brown, blue and orange --he was by himself -standing in the street , +2011-12-09,27.3361111,-82.5308333,Sarasota,FL,disk,120,Sarasota UFO sighting late night, Siesta Drive. +2011-01-29,25.8191667,-80.3555556,Doral,FL,unknown,900,Unusual flight patterns and missile like objects in Doral Flo. ((NUFORC Note: We have looked at the photos, and suspect contrails +2011-12-09,39.8402778,-88.9547222,Decatur,IL,sphere,900,Very bright glowing object in the sky, then vanishes. +2011-01-29,39.405,-114.7777778,Mcgill,NV,oval,60,Bright green light, oval, and quick +2011-12-09,27.7519444,-98.0694444,Alice,TX,other,1200,Strange beam of smoke miles long in the moonlight of south texas..........… +2011-01-29,36.0988889,-78.3013889,Louisburg,NC,oval,10,Dimly-lit objects seen racing over north carolina sky +2011-12-09,45.7325,-107.6113889,Hardin,MT,triangle,7200,BIG star like object with lights of all colors seen over Southeastern MT. ((NUFORC Note: Possible twinkling star?? PD)) +2011-01-29,41.6744444,-72.8586111,Plainville,CT,fireball,3,Huge fireball with a firey tail shooting across the sky. ((NUFORC Note: Possible meteor. PD)) +2011-12-09,42.3583333,-71.0602778,Boston,MA,fireball,180,Orange blurry fireball observed flying over Boston during the early evening. Flying South over Allston. +2011-12-09,29.4238889,-98.4933333,San Antonio,TX,circle,60,White lights around a large circular object moving down from the dark sky behind some trees +2011-12-09,42.0583333,-70.1791667,Provincetown,MA,sphere,300,White bright glowing orb moving in a weird way with a weird color electricity coming out of the top of it. +2011-01-29,42.6041667,-72.7397222,Shelburne Falls,MA,circle,7,WHITE DESCENDING BALL OVER WESTERN MASSACHUSETTS +2011-01-29,42.6361111,-71.9083333,Ashburnham,MA,unknown,60,bright white ball of light flying at rapid speed over house at about 100 ft above ground level. +2011-01-29,34.0122222,-117.6880556,Chino,CA,triangle,60,60 freeway upside down white triangle. +2011-12-09,27.3361111,-82.5308333,Sarasota,FL,unknown,300,Large Red Pulsing light over Sarasota, Florida. December 9, 2011. +2011-12-09,27.3361111,-82.5308333,Sarasota,FL,light,300,Large red pulsing light over Sarasota, Florida. Sitting on my sofa watching TV, I noticed a very bright red light in the sky. It wa +2012-01-29,47.0344444,-122.8219444,Lacey,WA,flash,3600,Momentary, multiple bright flashes in the sky. +2012-12-09,40.6669444,-111.8872222,Murray,UT,light,3,Bright green light lit up the sky. +2012-12-09,42.6158333,-70.6625,Gloucester,MA,oval,1800,Glowing, fiery, hovering orb, lasting 30 minutes. +2012-12-09,33.66,-86.8127778,Gardendale,AL,light,90,My wife and oldest son were out on our porch,approx. 9:55pm.NorthWestern sky a light,odd shaped,like an egg. moving in a erratic pa +2012-12-09,42.6333333,-71.3166667,Lowell,MA,triangle,90,Triangular cloud maker during daylight. +2012-12-09,44.4375,-73.0686111,Williston,VT,circle,600,Hovering over church where 7 lights in the sky one in the front and the rest scattered in the back. +2012-12-09,33.7488889,-84.3880556,Atlanta,GA,light,15,Light seen over Atlanta, GA 12/09/12. +2012-12-09,41.5580556,-73.0519444,Waterbury,CT,triangle,90,Triangular Shape aircraft, with square cutout in rear. Silent, no lights, slow moving. Large. +2012-01-29,38.895,-77.0366667,Washington,DC,other,10,A group of darting/revolving round white lights moving together at a very high speed across the sky. +2012-12-09,26.0625,-80.2333333,Davie,FL,fireball,900,Saw four round yellow/amber fire balls in the western sky in Davie Florida. +2012-01-29,32.9102778,-96.1352778,Quinlan,TX,formation,300,"Y" Shaped Golden light formation stationary in the sky. +2012-01-29,42.5875,-72.6,Greenfield,MA,unknown,300,I had just got back from the store. I got out of my car walked up the sidewalk with a bag and a box of frozen pizza. As I was walking,I +2012-01-29,42.7261111,-87.7827778,Racine,WI,triangle,600,Extra Terrestrial +2012-01-29,42.5530556,-87.9333333,Pleasant Prairie,WI,triangle,600,Me and my brother saw suspicious, hazy blue lights over Lake Michigan. +2012-01-29,42.5847222,-87.8211111,Kenosha,WI,triangle,420,There were three blue hazy dots in a form of a triangle. +2012-01-29,30.8938889,-102.8788889,Fort Stockton,TX,flash,420,Looks to be three lights in a diamond shape with a strobing light going from l to r. ((NUFORC Note: Star or planet?? PD)) +2012-12-09,35.9605556,-83.9208333,Knoxville,TN,diamond,15,4 bright white lights, house-size formation - on South Knoxville ridge. Stationary, then moving west along the entire ridge. +2012-12-09,37.775,-122.4183333,San Francisco,CA,fireball,180,Fireballs over San Francisco. +2012-01-29,35.2225,-97.4391667,Norman,OK,unknown,10,An oval light appeared over the moon, shined a beam of light over Lake Thunderbird, and then streaked off. +2012-01-29,43.3219444,-70.5813889,Wells,ME,fireball,5,Green Fire ball with an Orange nose falling at a 45-degree angle from West to East. +2012-01-29,42.2430556,-84.7530556,Albion,MI,unknown,7200,AMAZING FOOTAGE OF STRANGE LIGHTS / OBJECTS / MOTHERSHIP IN THE EAST SKY. ALBION,MI 1-29-12 +2013-12-09,39.8680556,-104.9713889,Thornton,CO,circle,180,Was driving home from a friends house. seen 4 lights in the sky that were flying west in a flashing red, and orange.. they disappeared +2013-01-29,30.3319444,-81.6558333,Jacksonville,FL,triangle,10,Large gray triangular aircraft following florida air gaurd jet. +2013-12-09,47.9252778,-97.0325,Grand Forks,ND,triangle,300,Black triangle-shaped object over Grand Forks, ND. +2013-12-09,36.8572222,-88.3502778,Benton,KY,cigar,30,Bright lights, cigar shape. +2013-12-09,42.5588889,-88.0491667,Bristol,WI,circle,60,Orange glowing objects sighted north of Sun Prairie 12092013 after dusk +2013-12-09,40.3933333,-82.4858333,Mount Vernon,OH,rectangle,600,Orange light pattern in the sky. +2013-12-09,39.4152778,-81.455,Marietta,OH,egg,120,Egg-shaped craft hovered over tree line, fantastic white lights. +2013-12-09,44.3483333,-106.6983333,Buffalo,WY,light,1800,Re-occurring for last month hovering light with 30 min duration, descends below mnt horizon . ((NUFORC Note: Venus?? PD)) +2013-12-09,37.5483333,-121.9875,Fremont,CA,light,2700,A low hovering star bright light that descends quickly but lingers in the sky. +2013-01-29,30.0083333,-97.1591667,Smithville,TX,other,30,What was that? +2013-12-09,39.8016667,-89.6436111,Springfield,IL,triangle,60,Trianglular shaped craft over I-55 near Springfield, IL. +2013-12-09,45.4983333,-122.4302778,Gresham,OR,other,60,Bright purple light over a busy intersection. +2013-12-09,40.5186111,-74.4125,Edison,NJ,sphere,10,A low flying blue orb perfecly maintaining altitude and speed silently zooming acorss the sky. +2013-12-09,64.7511111,-147.3494444,North Pole,AK,flash,5,Bright orange flashes lasting only a few seconds in North Pole, Alaska. +2013-12-09,33.8491667,-118.3875,Redondo Beach,CA,changing,180,Four yellowish lights moving slowly in different shapes. +2013-01-29,29.8944444,-81.3147222,St. Augustine,FL,circle,300,Low, orange, bright, fast, quiet, ambient, ufo. +2013-12-09,30.6941667,-88.0430556,Mobile,AL,other,120,Object appeared under the moon and proceeded towards the bay at a brisk pace high over the tree tops,it looked like two bright or +2013-01-29,39.6416667,-77.7202778,Hagerstown,MD,light,3000,Unusal lights were observed in one location (not moving) then simply went out. +2014-01-29,39.7219444,-86.09,Beech Grove,IN,triangle,120,Low flying slow moving, had red and white lights. +2014-01-29,26.8230556,-80.1388889,Palm Beach Gardens,FL,disk,900,Located about ESE , about 3 miles distance from the ocean, obvious stationary above the ocean .Round bright whitish- not moving for a +2014-01-29,33.3416667,-111.9833333,Ahwatukee,AZ,light,1200,Flaming lights in the sky over Ahwatukee +2014-01-29,42.8363889,-71.0952778,Plaistow,NH,sphere,300,Yellowish - Red Orbs seen from my car. One of the orbs traveled towards me. +2014-01-29,40.1672222,-105.1013889,Longmont,CO,disk,2,Fleet of disc shaped objects discovered in photograph taken in Longmont CO. +2014-01-29,40.1002778,-79.5872222,Scottdale,PA,triangle,300,Red lights changing to white on triangular craft +2014-01-29,40.1002778,-79.5872222,Scottdale,PA,triangle,300,Red lights on fast moving triangular UFO. +2014-01-29,34.3916667,-118.5416667,Santa Clarita,CA,circle,600,Several orange-pinkish lights in sky looking east that moved in sky and then began to fizzle out. +2014-01-29,41.1305556,-85.1288889,Fort Wayne,IN,light,30,Two white lights seen stationary, then &quot;parted&quot; and traveled out of sight. +2014-01-29,42.8141667,-73.94,Schenectady,NY,triangle,900,Orange lite over city. +2014-01-29,38.8808333,-77.3011111,Oakton,VA,diamond,10,Hovering octagonal (diamond) shape object with flashing lights in the night sky. +2014-01-29,41.1305556,-85.1288889,Fort Wayne,IN,triangle,60,3 lights in the shape of a triangle hover and then travel S, SW. +2014-01-29,40.1447222,-84.2425,Piqua,OH,light,60,Bright white light seen moving over I-75 in Piqua, OH. +2014-01-29,35.4675,-97.5161111,Oklahoma City,OK,disk,30,Nearby nighttime viewing of brightly lit saucer in South Oklahoma City. +2014-01-30,40.5630556,-80.2086111,Leetsdale,PA,light,180,Star-like bright white light moving slowly across the morning sky. +1968-01-30,39.7588889,-84.1916667,Dayton,OH,disk,600,Very large white saucer, chased by B-52 near Wright Patterson Air force base. +1974-01-30,32.7152778,-117.1563889,San Diego,CA,unknown,10,Something very large and silent passed overhead - heard but not seen. ((NUFORC Note: Possibly the sound of wing vortices. PD)) +1987-01-30,40.7138889,-73.5594444,East Meadow,NY,changing,1020,ON 03/18107 photos of a black ufo, that changed shape as it went from west to east, were taken by my webcam. +1987-01-30,60.5544444,-151.2583333,Kenai,AK,light,5,Light quickly grows in intensity and then fades to nothing. +1995-01-30,43.0344444,-76.4483333,Elbridge,NY,other,240,copper colored-top shaped UFO sighted in elbridge,ny +1998-01-30,32.7833333,-96.8,Dallas,TX,light,210,Time: 1850 CST; location: 40nm SSW Dallas; altitude: 6000feet I am a pilot. I was flying into the DFW metroplex on the evening of Janua +1998-01-30,34.8697222,-111.7602778,Sedona (5 Miles W. Of),AZ,light,18000,Stationed on a small hilltop situated between the Secret Mountain Range and Mingus Mountain, near the Bradshaw Ranch, six people witnes +1998-01-30,39.6536111,-91.7344444,Monroe City (3 Miles East Of),MO,fireball,2,Saw what I believe was a shooting star or space debris. It came down from North to South. Yellow/ Gold in color with a sparkling gold t +1999-01-30,33.8302778,-116.5444444,Palm Springs,CA,sphere,10,Got up early to see the waning moon and how close Venus was to it. Sky is very clear in the desert - no lights near because we are in t +2000-01-30,41.1222222,-80.3330556,New Wilmington,PA,circle,120,An airplane like object was witneesed in the sky but the lights were positioned incorrectly. Upon slowing down to get a better look th +2000-01-30,37.775,-122.4183333,San Francisco (Farallon Island),CA,triangle,15,Encountered large triangular object while night fishing off Farlon Island and fired 100 rounds of 22 ammo at it. +2001-01-30,29.0255556,-80.9272222,New Smyrna Beach,FL,fireball,10,HALF-MOON FIREBALL,NOT MOVING,DISSAPEARED AFTER 10 SEC +2001-01-30,36.8527778,-75.9783333,Virginia Beach,VA,cylinder,120,A silver cylinder hovering in the sky near Oceana Naval Air Station. +2001-01-30,44.9902778,-123.025,Keizer,OR,triangle,60,While observing a cluster of "stars" three stars swooped down and headed south at a great rate of speed. +2001-01-30,37.2241667,-95.7080556,Independence,KS,light,1800,Giant white 'Sparkler' wedged in tree during snowstorm +2002-01-30,35.9,-109.0333333,Navajo,NM,triangle,180.39,Four triangle objects hovering over Navajo, New Mexico. +2002-01-30,41.6986111,-88.0683333,Bolingbrook,IL,oval,600,glowing oval above my house +2002-01-30,40.5983333,-124.1561111,Fortuna,CA,circle,900,Bright orange object once again seen over Fortuna, CA +2002-01-30,27.2927778,-81.3630556,Lake Placid,FL,light,30,Bright object noted in sky, abruptly disappeared without a trace. +2003-01-30,43.6794444,-70.4447222,Gorham,ME,unknown,10,strange, strange sound im scared +2003-01-30,34.5036111,-93.055,Hot Springs,AR,circle,45,This sighting was probably not worth reporting except for the Shuttle disaster happening so soon after. +2003-01-30,40.115,-111.6541667,Spanish Fork,UT,formation,5,There was a beautiful, sparkling, highly maneuverable craft flying gracefully and very quickly over Spanish Fork, Utah. +2003-01-30,41.4644444,-81.5088889,Beachwood,OH,chevron,30,V-shaped light formation over Beachwood, OH +2003-01-30,28.6802778,-81.5097222,Apopka (Orlando),FL,sphere,360,Bright flashing light high in the sky moving fast +2003-01-30,39.9611111,-82.9988889,Columbus,OH,teardrop,30,A glowing object past over the columbus zoo late at night +2004-01-30,38.005,-121.8047222,Antioch,CA,light,600,A bright round yellow/orange pulsing object that moved slowly and silently. +2004-01-30,42.2625,-71.8027778,Worcester,MA,chevron,60,Chevron shape on side and very shiny but not blinding. +2004-01-30,46.6622222,-122.9627778,Chehalis,WA,light,780,Bright light above fields to east of Interstate 5, which did not move while watched for 13 minutes. +2004-01-30,47.7883333,-122.3075,Mountlake Terrace (Seattle),WA,diamond,3600,One very bright light in one location moving from slightly from side to side for about an hour then faded out +2004-01-30,55.3422222,-131.6461111,Ketchikan,AK,light,4,Explosive light over Alaska skies +2004-01-30,37.305,-93.4283333,Willard,MO,sphere,1200,We saw a slow moving orage sphere moving across the sky in figure eight patterns. It disappeared completely after 15 minutes. +2005-01-30,46.9422222,-122.6047222,Yelm,WA,triangle,30,Well My boyfriend (nathan) and I were driving on Yelm highway which is in the boonies. There are no street lights and the road is surro +2005-01-30,37.1305556,-121.6533333,Morgan Hill (12 Mi. North Of On 101),CA,light,120,Stationary object off US 101, blinding lights flashing and then disappeared. +2005-01-30,39.36,-84.31,Mason,OH,changing,120,Triangular Cluster of white lights with flashing white lines. +2005-01-30,37.6391667,-120.9958333,Modesto,CA,chevron,10,5 white lights arranged in chevron pattern, silent +2006-01-30,27.3361111,-82.5308333,Sarasota,FL,fireball,300,Fireball in the evening sky +2006-01-30,33.4483333,-112.0733333,Phoenix,AZ,light,300,Three Lights reappearing over the NW valley...again! +2007-01-30,38.6780556,-121.175,Folsom,CA,unknown,30,An object was seen in the night sky like a star, moved slowly then shot up & dissapeared. +2007-01-30,39.0838889,-77.1530556,Rockville,MD,cylinder,300,Disk shape over 270N Rockville MD +2007-01-30,42.3533333,-88.0933333,Round Lake,IL,disk,1200,THE SMALLER OBJECT SLOWLY MERGED WITH A LARGER OBJECT AND THEY DISAPPEARED, IN 1 SECOND IT WENT FROM APROX.1 MILE FROM EARTH INTO SPACE +2007-01-30,44.0216667,-92.4697222,Rochester,MN,unknown,300,long row of lights with red light under, hovered, flew to west, dropped down below tree level, popped back up and flew faster than a nm +2007-01-30,39.9369444,-120.9461111,Quincy,CA,cylinder,120,Tri-colored cylinder shaped object at about 500 feet disappears into mountains 5-10 miles away. +2008-01-30,38.0525,-84.73,Versailles,KY,sphere,360,((HOAX)) It seems that these objects must have created alot of radiation to dry the grass. +2008-01-30,38.4405556,-122.7133333,Santa Rosa,CA,teardrop,6,Siteing of two Craft traveling in formation Arc Shaped no sound black in color. +2008-01-30,39.4111111,-94.9013889,Weston,MO,changing,900,Three Lights off of 45 highway near Weston and over Bluff Road. +2008-01-30,40.8861111,-73.2577778,Kings Park,NY,triangle,600,Triangle shaped object moving slowly in the night sky. +2008-01-30,35.4675,-97.5161111,Oklahoma City,OK,flash,3,My daughter and me both saw a couple of flashed that coincided with the transit of the space station. +2008-01-30,31.1238889,-97.9027778,Copperas Cove,TX,unknown,180,I was driving home at night and saw two lighted crafts flying faster than anything normal. +2008-01-30,29.1869444,-82.1402778,Ocala,FL,circle,30,a bunch of beaming lights flying at top speed 50 ft about the ground +2008-01-30,35.9411111,-80.4094444,Advance,NC,other,14400,Organized movement of mulitple lights/objects....in a circular pattern. ((NUFORC Note: +2008-01-30,26.5625,-81.9497222,Cape Coral,FL,oval,10800,Flashing LED lights and such illumination of blue, green, and short spurts of yellow. +2008-01-30,33.6888889,-78.8869444,Myrtle Beach,SC,sphere,900,Possible UFO siting, in the southern skies of Myrlte Beach, SC. One Object, mostly stationary but finally moved at a rapid pace away +2009-01-30,34.2572222,-118.4661111,Mission Hills,CA,light,15,Points (2) stop, hover, then fade away +2009-01-30,32.7152778,-117.1563889,San Diego,CA,disk,60,At about nine o’clock on a clear sunny day when I looked out the window of the train and saw two silver disks side by side very close t +2009-01-30,47.0344444,-122.8219444,Lacey,WA,sphere,2400,silver shape object that moved then stayed in one spot +2009-01-30,47.015,-114.2288889,Frenchtown,MT,disk,1200,Color and size changing object over the skies of Frenchtown, MT. ((NUFORC Note: Possibly Venus. PD)) +2009-01-30,39.3641667,-74.4233333,Atlantic City,NJ,triangle,7,Space Shuttle Shape traving very fast, faster then its sound. +2009-01-30,29.8830556,-97.9411111,San Marcos,TX,triangle,1500,object flew over me, in triangle shape with red/orange/white lights erratically moving. ((NUFORC Note: Student report. PD)) +2009-01-30,32.5563889,-95.8630556,Canton,TX,light,240,Weird light in the sky next to an airplane tower +2009-01-30,36.7436111,-84.4808333,Marshes Siding,KY,other,60,Bar ligths equal distance projected on ground. +2009-01-30,30.5880556,-91.1680556,Baker,LA,light,600,There was a very bright Crescent shape light as wide as a house that faded into a smaller red/orange light. +2010-01-30,43.345,-70.5027778,Kennebunk Beach,ME,cylinder,600,Tall white colum of extremely bright light appearing suddenly off Kennebunk beach +2010-01-30,37.8044444,-122.2697222,Oakland,CA,triangle,10,Three transluscent, reddish-colored, orbs in a perfect triangular pattern fly overhead at a constant speed. +2011-01-30,41.448055600000004,-90.1541667,Geneseo,IL,light,300,Lights over Geneseo. +2011-01-30,41.0533333,-73.5391667,Stamford,CT,flash,2,huge green/blue flash coming from the horizon from Stamford downtown area it looked like aurora borealis, it covered a wide section of +2012-01-30,33.8905556,-78.5686111,Calabash,NC,circle,3600,It first appeared to be a glittering star drifting left to right and then upward. +2012-01-30,45.2444444,-123.1136111,Lafayette,OR,light,20,I was outside this morning and my eye was caught by a moving light. I then saw more lights and they joined up in a line formation and t +2012-01-30,42.4788889,-87.8236111,Winthrop Harbor,IL,formation,120,Glowing zig zags lowering to the ground. 500 Lights On Object0: Yes +2012-01-30,36.175,-115.1363889,Las Vegas,NV,rectangle,120,A brown box craft located north of Las Vegas. +2012-01-30,43.2966667,-87.9875,Cedarburg,WI,light,1800,Single bright white/yellow flickering light that at first appeared to be a star, but it was too bright and seemed to be weaving and bob +2012-01-30,48.5569444,-113.0125,Browning,MT,light,30,Two white lights traveling in unison die out +2012-01-30,37.3394444,-121.8938889,San Jose,CA,light,10,Solid white sphere/light +2012-01-30,41.4569444,-72.8236111,Wallingford,CT,light,2400,Greenish blue ball of light flys over Wlfd, CT , 3rd time this month 30-40 min duration +2012-01-30,27.9655556,-82.8002778,Clearwater,FL,sphere,60,Orange ball over clearwater beach +2012-01-30,43.6794444,-70.4447222,Gorham,ME,disk,180,Disk shaped object with a band of orange and white lights seen with my binoculars! +2012-01-30,42.3763889,-71.2361111,Waltham,MA,triangle,30,Triangular non moving craft making no noise with red and white flashing lights and a beam of light pointing down at police +2013-01-30,30.1313889,-94.0152778,Vidor,TX,changing,60,Strange moving star like object seen in Vidor Texas. +2013-01-30,34.2561111,-78.045,Leland,NC,other,180,Flashing Parallel lights. +2013-01-30,38.3397222,-122.7,Rohnert Park,CA,sphere,420,Sighted just below where the Orion Nebula would be. +2013-01-30,27.0591667,-80.1366667,Hobe Sound,FL,circle,60,Orange obj. with fiery trail flying fast, in a straight line, S, along FL coastline, over Hobe Sound. ((NUFORC Note: Missile. PD)) +2013-01-30,27.0591667,-80.1366667,Hobe Sound,FL,circle,60,"UFO; over Hobe Sound identified as NASA launch. +2013-01-30,28.2916667,-81.4077778,Kissimmee,FL,triangle,300,We saw a Orange triangle shaped flying towards us then flew off. ((NUFORC Note: Cape Canaveral missile launch. PD)) +2013-01-30,29.5847222,-81.2080556,Palm Coast,FL,disk,300,Orange orb over treeline in Palm Coast, FL seen by 2 witnesses driving South on highway 1/30/13 at 8:50. +2014-01-30,38.7041667,-77.2280556,Lorton,VA,unknown,10,Sounded like an incoming jet, looked like ambulance or firetruck lights +2014-01-30,39.1855556,-78.1636111,Winchester,VA,unknown,3600,Strange light shooting down from the sky and staying around. +2014-01-30,32.5997222,-110.6302778,San Manuel,AZ,light,300,Slow light that turns and is out of sight in seconds. +2014-01-30,45.4441667,-84.7866667,Alanson,MI,disk,1200,((HOAX??))I was walking by the sliding glass door of my house when something caught the corner of my eye out in the snow covered field. +2014-01-30,33.7877778,-117.8522222,Orange,CA,diamond,300,Orange vibrating diamond hovering. +2014-01-30,43.315,-71.6213889,Boscawen,NH,circle,300,Three lighted circular or smooth triangle shape object. +2014-01-30,35.7563889,-83.9705556,Maryville,TN,chevron,300,Two bright red lights appeared from the west on a clear cold Thursday night just a couple of miles from my home. +2014-01-30,48.9466667,-122.4508333,Lynden,WA,other,480,Huge white light blinked out and was a square object with 4 lights and NO sound. +2014-01-30,35.2269444,-80.8433333,Charlotte,NC,unknown,600,4 bright orange balls with 3 smaller red balls with one of the bright balls flashing as if igniting. +2014-01-30,38.9180556,-78.1947222,Front Royal,VA,sphere,180,Orange looking spheres about 20 of them, moving very slow and disappeared after about 3 minutes. There was no sound. +2014-01-30,41.24,-81.4408333,Hudson,OH,circle,1500,2 Milky White Bright Orbs Dancing in the Sky over Hudson, Ohio. +2014-01-30,34.6080556,-82.1136111,Gray Court,SC,other,60,Triangle and cigar shaped "stealth" aircraft at night in gray court. +2014-01-30,34.8525,-82.3941667,Greenville,SC,triangle,300,Triangle of 3 lights seen from I-85 hovering over Mauldin Rd area. +1974-01-31,18.0130556,-66.6144444,Ponce (Puerto Rico),PR,sphere,900,The spaceship was shaped like two spheres attached by a cylinder curiously resembling dumbbells. +1979-01-31,29.7630556,-95.3630556,Houston,TX,rectangle,600,I saw a grey rectangular patch against blue sky, thru binoculars. +1987-01-31,39.7969444,-105.4933333,Black Hawk,CO,sphere,300,spheroid, leading edge shimmering red, main body whitish yellow, low altitude +1996-01-31,33.6488889,-85.5875,Heflin (Talladega National Forest At Oak Level),AL,light,10800,Parked at hunting spot appx 2 a.m. with vehicle facing west. saw bright light moving north to south at speeds not humanly possible the +1996-01-31,27.13,-80.8938889,Buckhead Ridge,FL,light,330,I observed an object apparently making a controlled reentry or entry into the atmosphere. It was the size of a medium sized star and +1998-01-31,18.4744444,-66.7161111,Arecibo (Just S Of, Rural Central Pr),PR,disk,900,One-two hours after driving away from Arecibo observ. on small, rural roads (former Spanish footpaths), saw still silent disk hovering +1998-01-31,40.8013889,-72.8680556,Shirley,NY,disk,120,4 sequentially blinking white lights. Appeared in Southwestern sky, arched almost across my zenith and faded out in the Notheastern sky +1999-01-31,43.025,-108.3794444,Riverton,WY,fireball,5,We were driving westbound on Hwy between Riverton and Fort Washakie at 1930 hours. Sky was clear and cold with a full moon behind us j +1999-01-31,30.2263889,-93.2172222,Lake Charles,LA,triangle,600,I WAS DRIVING TO MY HOUSE WITH TWO OF MY FRIENDS AT 22:02 WHEN ALL THE SUDDEN I NOTICED THIS TRIANGULAR CRAFT HOVERING ABOUT 50 FEET OF +2000-01-31,28.4055556,-80.605,Cape Canaveral,FL,light,60,Glowing green light came up right side of moving ship, stayed even then made sharp right turn 90 degrees, took off. +2000-01-31,33.1191667,-117.0855556,Escondido,CA,circle,480,approx 22:21 saw a bright light hovering just east of my front driveway. No noise. The brightness would intensify then subsided then in +2001-01-31,34.1066667,-117.8058333,San Dimas,CA,oval,1800,Unusual objects videotaped over San Dimas, Ca +2001-01-31,38.4405556,-122.7133333,Santa Rosa,CA,circle,240,It was 12:00 noon I was walking with my friend at lunch time. I was about a block away from the building I worked in when I notice som +2001-01-31,37.2708333,-79.9416667,Roanoke,VA,formation,600,Unusual cloud-like formations with precise activity from at least three moving lights +2001-01-31,42.7241667,-114.5177778,Jerome,ID,formation,60,four lights, amber colored, faded out one at a time from right to left in the southwest sky of southern idaho +2001-01-31,35.5463889,-77.0525,Washington,NC,circle,1200,Three rotating round orange lights in the south-southeastern sky. +2002-01-31,36.6002778,-121.8936111,Monterey,CA,unknown,180,I saw a craft-like object, huge bright light in the middle, surrounded by blinking red lights, hanging in the sky for 1 1/2 min. +2002-01-31,39.1619444,-84.4569444,Cincinnati,OH,cross,30,On January 31st, 2002, my Pinto broke down as I was driving home from work. I got out of the car, unhooked the bungee cord holding my h +2002-01-31,29.7630556,-95.3630556,Houston,TX,light,4,Bright fast moving light, no sound and no "tail" like a meteor, moving across the horizon. +2002-01-31,35.4675,-97.5161111,Oklahoma City,OK,cone,30,SPACE DEBRIS??? +2002-01-31,31.2180556,-96.7822222,Reagan,TX,light,5,Bright blue light crosses Texas sky on a clear January night. +2002-01-31,32.8341667,-97.2286111,North Richland Hills,TX,sphere,20,ran very very fast and was bright, intill you could not see it in the sky +2002-01-31,29.5777778,-98.6894444,Helotes,TX,sphere,30,Blue Sphere moving at high rate of speed +2002-01-31,33.1505556,-96.8233333,Frisco,TX,unknown,15,Rocket like object lights up sky as it streaks across North Texas sky. +2002-01-31,32.8138889,-96.9486111,Irving,TX,diamond,8,as i was driving down i-30 east towards dallas my friend noticed something in the sky,as i looked up coming from north to south we noti +2003-01-31,27.8425,-82.6997222,Pinellas Park,FL,sphere,5,Large glowing object descending at a steep angle crashes into Gulf of Mexico, West of Tampa Bay,FL +2003-01-31,39.2494444,-77.9588889,Summit Point,WV,other,5400,The object was conical, changing colors and hung motionless in the sky. +2003-01-31,28.9002778,-81.2638889,Deltona,FL,circle,60,JAN.31-2003 ROUND FIRE ORANGE RED OBJECT JET PLANE +2003-01-31,39.6133333,-105.0161111,Littleton,CO,formation,180,three star-like objects moving in a straight line over Denver area +2003-01-31,39.9611111,-82.9988889,Columbus,OH,other,40,On Jan. 31st 2003 I believe what I saw classifies as an unidentified flying objects that was hovering over the top of trees in fron +2003-01-31,41.7197222,-72.8325,Farmington,CT,sphere,10,Object moved slowly and extremely fast seemingly at will, object lit sky up a flourescent green "brighter than day", object left trails +2004-01-31,34.5058333,-109.3602778,Saint Johns (15 Miles Ne Of),AZ,sphere,300,Refractive mirror like Sphere observed in isolated NE Arizona :Via Jeff Rense +2004-01-31,37.78,-121.9769444,San Ramon,CA,other,60,Object seen moving in a west-bound direction, stopped, faded in and out as shifting angles, vanished... +2004-01-31,36.595,-82.1888889,Bristol,TN,egg,45,MUFON/TENNESSEE REPORT: Dark oval object photographed in daytime. +2004-01-31,37.9061111,-122.5438889,Mill Valley,CA,circle,900,Very high altitude object hovered in the eastern sky at very high altitude. Moved rapidly south and again remained stationary for a few +2004-01-31,44.0977778,-70.2316667,Auburn,ME,light,900,A bright light hovering in one place over the western sky for a long time it than it was gone. +2004-01-31,34.3675,-77.7108333,Hampstead (Near Wilmington),NC,fireball,5,FIREBALL LIKE OBJECT (LOOKS LIKE FLARE) Spotted in North Carolina +2004-01-31,43.5838889,-71.2077778,Wolfeboro,NH,light,600,our house faces a strand of large pine trees...my mother was sitting on the right had side of our living room i was sitting across the +2004-01-31,33.8886111,-117.8122222,Yorba Linda,CA,unknown,60,Large craft with 5 bright white lights on the front "edge" with trailing "structure" appeared flat. +2004-01-31,37.9261111,-91.9775,Jerome,MO,rectangle,600,Witness telephoned me at the radio statio where I was on duty. He and his friends and realitives had seen this object in the Jerome, M +2004-01-31,26.6402778,-81.8725,Fort Myers,FL,cigar,600,1 object was flying east southeast, cigar shape ,were small plane are. this had no strobe light. It stoped turned on a brite white ligh +2005-01-31,30.4380556,-84.2808333,Tallahassee,FL,sphere,120,Sphere, Shiny, disapear +2005-01-31,41.6,-87.9380556,Homer Glen,IL,unknown,180,Low flying quiet with lights flashing +2005-01-31,39.1961111,-121.19,Penn Valley,CA,other,300,VERY Large Craft silently flys overhead slowly to the east, accompanied by large electric blue explosion +2005-01-31,40.8427778,-73.2933333,Commack,NY,chevron,30,boomerang shaped object moving steady and quietly +2005-01-31,41.1572222,-85.4883333,Columbia City,IN,triangle,180,Object hovers and melts frozen pond. +2005-01-31,47.1855556,-122.2916667,Puyallup,WA,light,420,Nighttime UFO sighting in east Pierce County, wa +2006-01-31,45.5236111,-122.675,Portland,OR,flash,2,A bright light that raced across the sky and suddenly shot upward and dissapeared. +2006-01-31,30.3319444,-81.6558333,Jacksonville,FL,sphere,3,GLOWING GREEN SPHERE STREAKING ACROSS THE SKY +2006-01-31,33.8169444,-81.1011111,Gaston,SC,light,5,Large Green Ball(?) of Light Plummeting towards Ground +2007-01-31,40.8075,-91.1127778,Burlington,IA,triangle,720,Three bright lights in the form of a triangle with pin point lights emitted at corners. +2007-01-31,25.7738889,-80.1938889,Miami,FL,light,900,Miami Florida Jan 31/2006 On Wednesday January 31, 2006 at around 2:00 pm Eastern Standard time, while I was eating lunch outside a re +2007-01-31,33.5172222,-82.0758333,Martinez,GA,triangle,180,Martinez GA 3 minuites a changing color triangle hovering over martinez,ga with 3 lights +2008-01-31,43.3058333,-100.6577778,Mission,SD,disk,21600,Very scary experience that ever happened to me. +2008-01-31,38.4219444,-77.4086111,Stafford,VA,cylinder,300,Strange sighting in Stafford, Va. +2008-01-31,41.8011111,-88.0747222,Lisle,IL,light,10,A solid light that changed sizes instantly and then disappeared. +2008-01-31,35.2269444,-80.8433333,Charlotte,NC,unknown,2700,Two lights in the sky as the sun came up +2008-01-31,33.6680556,-117.3263889,Lake Elsinore,CA,oval,240,White oval object in the skies above Lake Elsinore. +2008-01-31,33.6680556,-117.3263889,Lake Elsinore,CA,sphere,240,Spinning round object over Lake Elsinore +2008-01-31,39.3583333,-81.3083333,Willow Island,WV,circle,120,Round silver ball above the Ohio river. +2008-01-31,39.9611111,-82.9988889,Columbus,OH,sphere,300,Silent round black object moving opposite the wind direction - Columbus, OH +2008-01-31,34.4838889,-114.3216667,Lake Havasu City,AZ,other,10,Bright light moved moderate speed stoped and went oppsite direction +2008-01-31,39.5752778,-76.9961111,Westminster,MD,other,600,Strange Helicopters Over Development +2008-01-31,33.6694444,-117.8222222,Irvine,CA,circle,3600,Two objects seen in sky near Irvine, California. +2008-01-31,32.2047222,-95.8552778,Athens,TX,other,4,Two mound looking shapes moving in the air above road. +2009-01-31,39.6502778,-79.0425,Avilton (Frostburg),MD,formation,20,Long strand of equally spaced red lights that disappear to the center, then come out again. +2009-01-31,36.3047222,-103.9725,Gladstone (Near; Hiway 56, Mile Marker 56),NM,light,2400,Extremely close large object hovering over side of road with immense lighting in unworldly strobe motion suddenly object was miles away +2009-01-31,40.8325,-115.7622222,Elko,NV,light,1200,Two stationary red lights spotted by multiple persons flashing over Elko Nevada. +2009-01-31,41.8666667,-103.6666667,Scottsbluff,NE,changing,120,Black, liquid mercury, shape changing object which can move at amazing speed, stop at amazing speeds to hover +2009-01-31,38.7838889,-90.4811111,St. Charles,MO,other,60,All silver perfect circle moving 30 times afaster than any plane in the sky. +2009-01-31,32.5091667,-92.1191667,West Monroe,LA,sphere,180,Whil on the way home My daughter and I saw something +2009-01-31,33.6602778,-117.9983333,Huntington Beach,CA,sphere,1200,White/Silver Object Over Huntington Beach, California +2009-01-31,33.6602778,-117.9983333,Huntington Beach,CA,changing,1200,Blue/Green Translucent Worm Over Huntington Beach +2009-01-31,41.1305556,-85.1288889,Fort Wayne,IN,circle,3600,Red, blue, green, and white lights flashing from a circular craft. ((NUFORC Note: Object may have been Sirius. PD)) +2009-01-31,32.4486111,-99.7327778,Abilene,TX,unknown,2,Was lights in the sky over Abilene +2009-01-31,33.94,-118.1316667,Downey,CA,sphere,600,3 separate pairs and one single object, separate but similar movements and trajectories. +2009-01-31,29.9958333,-93.3419444,Hackberry,LA,other,240,Observatory in the Sky +2009-01-31,29.9438889,-82.11,Starke,FL,unknown,3600,Very Bright White light w/several smaller red, blue lights. Seen several nights for over an hour each time +2009-01-31,42.7758333,-114.7033333,Wendell,ID,light,900,Bright red/orange lights move into diagonal formation +2009-01-31,29.875,-98.2622222,Canyon Lake,TX,fireball,4,Green firball in sky, brighter than any star, li up, appeared then fell staight down behind trees, remained same color and brightness +2009-01-31,33.8352778,-117.9136111,Anaheim,CA,triangle,10,Triangle shape U.F.O. flying by overhead +2009-01-31,34.1722222,-118.3780556,North Hollywood,CA,cylinder,6,A bluish-green capsule crossed the sky in about 6 seconds heading due west +2010-01-31,43.0388889,-87.9063889,Milwaukee,WI,light,360,Very large, bright moving searchlight, but no plane or helicopter in sight to be making it. +2010-01-31,33.8080556,-84.1702778,Stone Mountain,GA,triangle,70,Triangular object hovers, darts away, then disappears over Stone Mountain +2010-01-31,26.4611111,-80.0730556,Delray Beach,FL,egg,900,The most memorable part of the experience was the lack of sound and the fluidity of its motion. +2011-01-31,30.3341667,-81.3988889,Atlantic Beach,FL,triangle,600,Hovering triangle cratf with orange/white red lights +2011-01-31,38.5816667,-121.4933333,Sacramento,CA,unknown,1200,Three UFOS over 1-5 in Sacramento +2011-01-31,28.0194444,-82.7719444,Dunedin,FL,sphere,5,White and a red sphere over Clearwater FL +2011-01-31,30.3319444,-81.6558333,Jacksonville,FL,fireball,7,A meteor like object falling from the sky with a smoke trail that stops instantly and appears to be a green light hovering then gone. +2011-01-31,36.2841667,-82.1727778,Hampton,TN,light,20,Saw Bright orange light moving slowly along a mountian ridge. The Light would stop, hover awhile then move somemore. +2011-02-01,40.0063889,-75.7036111,Downingtown,PA,circle,262,Lage ball of white light as though a massive spotlight suddenly appeared and shot across the sky at very high speed. +2012-01-31,33.4483333,-112.0733333,Phoenix,AZ,formation,900,UFO sighting over Rose Mofford Park in West Phoenix, AZ on 01-31-2012 at 3:30pm ... formation of 6 muted color Orbs, cloaked. +2012-01-31,40.8152778,-73.1127778,Ronkonkoma,NY,flash,4,One big spot of white-fluorescent light flying from west to east: light faded while object made a U-turn. +2012-01-31,40.801944399999996,-72.8413889,Mastic,NY,circle,5,Bright circle object with dark spot in the middle very fast. +2012-01-31,44.9583333,-124.0166667,Lincoln City,OR,fireball,180,Round ball of flashing light in sky +2013-01-31,37.3394444,-121.8938889,San Jose,CA,unknown,300,Strange increasingly loud noise over East San Jose that is indescribable. +2013-01-31,32.8277778,-86.1111111,Nixburg,AL,sphere,300,I saw 1 very white/bright sphere slowly moving from the NW to SE making no sounds. +2013-01-31,47.1855556,-122.2916667,Puyallup,WA,changing,600,Daylight sighting of shape-shifting UFO. +2013-01-31,37.4716667,-121.1286111,Patterson,CA,triangle,120,Triangle shape object, followed by 2 lights, 1 very bright and the other about the brightness of a star. +2013-01-31,35.0844444,-106.6505556,Albuquerque,NM,light,180,Unexplainable steady light moves horizontally then disappears. +2013-01-31,40.1022222,-75.1525,Glenside,PA,triangle,180,2 Triangular Low Flying Craft in Glenside PA. +2013-01-31,35.2263889,-92.1238889,Mount Vernon,AR,disk,600,Extremely large with large bright strobe lights hovering just above the horizon, disappearing instantly. +2013-01-31,36.6002778,-121.8936111,Monterey,CA,flash,1500,While videoing at the Orion area I saw some large flashing lights don't no what they are. No airplanes! +2013-01-31,34.4838889,-114.3216667,Lake Havasu City,AZ,circle,900,What are these bright orange orbs in the sky here over Lake Havasu City, AZ???? +2013-01-31,31.105,-87.0722222,Brewton,AL,flash,2700,Fireballs flashing like fireworks on the Florida/Alabama state line 1/31/13. +2013-01-31,26.1416667,-81.795,Naples,FL,light,30,Large Ball of orange light with no sound. +2014-01-31,36.3547222,-79.6647222,Reidsville,NC,other,30,Triangular cab with a long body, almost like a 'tail', many flashing lights. +2014-01-31,37.8405556,-88.6091667,Galatia,IL,unknown,540,Very low and very loud hum over my head at 3:45 am.. +2014-01-31,44.0522222,-123.0855556,Eugene,OR,changing,900,Southern sky, heavy clouds. First one appeared to be a hangglider, but too high never descended. A silver-gray Stealth fighter jet sha +2014-01-31,44.9430556,-123.0338889,Salem,OR,unknown,35,Formation of glowing red objects +2014-01-31,44.9430556,-123.0338889,Salem,OR,sphere,60,Approx. 7 orange orb that looked in formation of the Big Dipper then disappeared and faded away. +2014-01-31,33.7747222,-84.2963889,Decatur,GA,triangle,300,Triangle of lights, spinning counterclockwise, in sync. hovering. no sound. center lit up. +2014-01-31,35.7452778,-81.685,Morganton,NC,light,600,Lights seen over Freedom High School. +2014-01-31,38.8047222,-77.0472222,Alexandria,VA,light,2,Galling white light in Alexandria, VA. +2014-01-31,25.4683333,-80.4777778,Homestead,FL,formation,120,Three orange lights in triangular formation seen over South Dade Senior High. +2014-01-31,39.7458333,-75.5469444,Wilmington,DE,light,2,Green streaking light at low altitude. +2014-01-31,26.0625,-80.2333333,Davie,FL,circle,600,Fleet of Ornage UFO's crossing into FLL airport aproach pattern. +2014-01-31,40.7933333,-77.8602778,State College,PA,fireball,180,Orange light looked like a small plane on fire moving slowing across the sky, a piece of the fire broke away, the main part continued. +2014-01-31,39.535,-119.7516667,Sparks,NV,light,60,Right orange lights appearing to get closer. There was no sound. Then all of a sudden after about a minute the light got smaller then d +2014-01-31,39.1855556,-78.1636111,Winchester,VA,triangle,120,We saw 6 lights that formed 2 symmetrical triangles hovering over Winchester or east of Winchester. They were close. +2014-01-31,61.2180556,-149.9002778,Anchorage,AK,cylinder,900,Bright orange lights, moving slowly up from the ground, hovering and moving away to the SW. +2014-01-31,39.9405556,-76.3466667,Conestoga,PA,formation,240,Orange lights moving slowly across the sky in formation +2014-01-31,30.4866667,-90.9561111,Denham Springs,LA,light,4,Glowing green light appeared for a few seconds over interstate 12 glided downward and disappeared. +2014-01-31,39.3772222,-76.54,Parkville,MD,triangle,300,Parkville, MD, ufo sighting. +2014-01-31,38.0672222,-117.2291667,Tonopah,NV,oval,5400,We seen 1-3-4-5 Egg/Oval Shaped with very bright lights in the sky, and heard voices at night. +2014-02-01,39.1855556,-78.1636111,Winchester,VA,formation,180,Red lights, appeared stationary in sky over Valley Avenue, Winchester,Va +1984-01-03,35.0525,-78.8786111,Fayetteville,NC,fireball,810,I stood there watching as the sun finally started to show its face throughthe sky, a light blinded me. Then.... it was gone. +1990-01-03,41.9291667,-72.9144444,Barkhamsted,CT,unknown,2700,light s out side my window that changed color +1994-01-03,35.0844444,-106.6505556,Albuquerque (30-60 Miles West Of City),NM,triangle,240,Saw triangular craft approaching from horizon from the N.W., approached slowly, silently, and low to the ground. Passed directly over +1995-01-03,48.051944399999996,-122.1758333,Marysville,WA,triangle,120,Young man sees large triangular ship w/ blue & white lights moving slowly in night sky. Streaks off to north. +1996-01-03,37.6688889,-122.0797222,Hayward (Next To Hawyard Airport In; I Was In Airport),CA,unknown,6,I was with my brother at the airport fuleing up a plane. After that we drove the turkback to the fule center. I was looking toward the +1999-01-03,47.6105556,-122.1994444,Bellevue,WA,light,300,Orange light seen in Northeast sky moving slowly upward, then stopping and then moving to right (south) - approx altitude 25ꯠ feet +2000-01-03,32.7919444,-115.5622222,El Centro,CA,other,600,To date I am still quite upset of what I (and later my mother) saw. I was standing at a nearby corner, looking up at a no-longer-in-us +2000-01-03,36.4241667,-89.0569444,Union City,TN,cigar,240,me and a friend were target shooting and saw saw this thing in the sky +2000-01-03,38.6880556,-83.6094444,West Manchester,OH,light,60,Flashing white light approx. tree top level. +2000-01-03,39.5297222,-119.8127778,Reno,NV,light,3,At 22:43 Jan 03, 2000 I observed in the night sky, a bright white object traveling at a very high rate of speed from north to south. It +2001-01-03,38.2494444,-122.0388889,Fairfield,CA,other,120,Thought at first it was a falling star ??????????????????? +2001-01-03,33.426944399999996,-117.6111111,San Clemente,CA,light,5400,3 lights close to horizon, 2 lights fade slowly, one very bright, until it vanished. +2001-01-03,45.5236111,-122.675,Portland,OR,sphere,20,As my daughter and I were headed home from the store it was dark, cloudy, and raining hard. We turned a corner and right ahead but not +2002-01-03,35.7416667,-86.6497222,Eagleville,TN,sphere,600,UFO hovers over tree line sending out smaller crafts. +2002-01-03,39.6133333,-105.0161111,Littleton,CO,light,20,Two fixed star-like objects in Littleton, CO +2002-01-03,42.5005556,-90.6644444,Dubuque,IA,disk,86400,The UFO had light blue flashing lights, it was saucer-shaped and had a dome-like top on it and it acted like it wanted us to stop. +2002-01-03,43.1186111,-83.695,Mt. Morris,MI,circle,300,We were walking into our house and in the northwestwest sky we observed a circular orange color mass with flames that appeared to be fl +2002-01-03,34.3033333,-112.1661111,Cordes,AZ,cylinder,900,Three cylenders sighted near Cordes, AZ. from I-17 flying eratticly. +2003-01-03,44.0686111,-99.4375,Ft. Thompson,SD,light,900,freaky mann........................................... +2003-01-03,42.1944444,-71.2,Norwood,MA,other,300,Sighting and message from an alien commander +2003-01-03,36.175,-115.1363889,Las Vegas,NV,teardrop,120,6 taerdroped shaped ufos flew over are house at 10:11 and hovered over the mountains till" 10:13 +2004-01-03,41.5580556,-73.0519444,Waterbury,CT,chevron,240,large, v-shaped craft spotted on a farm in waterbury, ct +2004-01-03,39.5297222,-119.8127778,Reno,NV,other,21600,the sky looked to me, to be alive with fireants. +2004-01-03,41.4858333,-73.0511111,Naugatuck,CT,unknown,1814400,live to talk about it. +2004-01-03,39.0991667,-76.8486111,Laurel,MD,flash,4,Green Meteor +2004-01-03,47.0380556,-122.8994444,Olympia,WA,circle,60,Olympia, WA 01/03 UFO's +2004-01-03,41.4169444,-87.3652778,Crown Point,IN,rectangle,180,Floating object over our backyard +2005-01-03,32.835,-116.7655556,Alpine,CA,light,1200,cluster of 5 circular white lights +2005-01-03,35.2269444,-80.8433333,Charlotte,NC,light,600,Amber/Orange lights hover in Charlotte sky +2006-01-03,33.6633333,-116.3091667,La Quinta,CA,light,240,Abnormally bright object moved across the night sky at very low altitude in a slow, momentumless "surging" fashion. +2006-01-03,26.5863889,-80.0522222,Lantana,FL,unknown,120,Red pulsating light seen in Lantana, Florida +2006-01-03,38.6822222,-104.7002778,Fountain,CO,unknown,300,Object hovered low over homes, we followed it for several minutes. +2006-01-03,34.1480556,-117.9980556,Monrovia,CA,rectangle,240,Two mysterious rectangle objects. +2006-01-03,39.7391667,-104.9841667,Denver,CO,fireball,120,A flash of light hovering over a lake. +2007-01-03,43.9075,-72.1438889,Fairlee,VT,unknown,600,one of the weirdes nights of my life +2007-01-03,43.51,-76.0025,Altmar,NY,light,300,((HOAX??)) Orange/yellow light in bedroom rushes out screen window. +2007-01-03,42.3219444,-83.7688889,Barton Hills,MI,diamond,120,hoovering mirror in the sky. +2007-01-03,42.2411111,-83.6130556,Ypsilanti,MI,light,8,light high up in sky suddenly moved at strange angle at speed beyond our technology +2007-01-03,35.0455556,-85.3097222,Chattanooga,TN,unknown,10,object appears to be flying slightly above and almost parallel to jet +2007-01-03,42.9036111,-88.2522222,Vernon,WI,oval,60,Green Flash +2007-01-03,37.085,-121.6091667,San Martin,CA,circle,180,bright light strait up in clear blue sky,did not move or blink,very noticeable. +2007-01-03,35.2269444,-80.8433333,Charlotte,NC,light,1800,Slow moving then became still light in the sky over Lake Wylie 01/03/07 5:30pm +2007-01-03,38.9102778,-91.4480556,New Florence,MO,other,120,UFO over central Missouri +2007-01-03,39.9402778,-82.0133333,Zanesville,OH,other,180,V shaped object w/red lights +2007-01-03,36.0955556,-79.4380556,Burlington,NC,circle,60,The object was bright and made a left turn then started to ascend and pick up speed and shot upward and disappeard from view. +2007-01-03,29.7630556,-95.3630556,Houston,TX,other,300,I-10 & Cambell Road, Houston TX UFO Sighting +2007-01-03,37.9722222,-81.1488889,Oak Hill,WV,formation,180,3 solid red lights in v formation(appeared at least 100ft wide)coming from the south. Slow moving no noise +2007-01-03,33.7358333,-118.2913889,San Pedro,CA,disk,3600,Unidentified Celestial Object over San Pedro, CA. ((NUFORC Note: Sighting of the star, Sirius. PD)) +2007-01-03,41.4169444,-87.3652778,Crown Point,IN,cone,3,Cone shaped object with bright lights all around it zipped up into the clouds at a speed faster than ANYTHING I have ever seen! +2007-01-03,39.2063889,-93.4425,Grand Pass,MO,fireball,4,muti-color fireball with exploding head +2007-01-03,34.2694444,-118.7805556,Simi Valley,CA,unknown,540,Simi Valley, CA Bright red light high in the sky moved for a while then stopped and it changes color-red to white.. +2007-01-03,38.5580556,-91.0119444,Washington,MO,light,2,While going toward Washington, MO., saw a streak of light with a green tail traveling southwest, very fast, angling down +2007-01-03,38.5069444,-95.6375,Melvern,KS,unknown,4,Blue-white light traveling northwest in Osage county +2007-01-03,34.2563889,-90.2719444,Marks,MS,disk,7200,Lighted objects silently flew in from S to N, many in northern sky, no more than few hundred feet up +2007-01-03,34.1205556,-84.0044444,Buford,GA,rectangle,180,4 craft in Buford, Georgia +2007-01-03,39.9375,-77.6613889,Chambersburg,PA,cylinder,180,Cylindrical aircraft with two bright, white lights at either end and a red light strobing between them +2007-01-03,36.2758333,-99.8808333,Shattuck,OK,fireball,3,It was a fast blue, green and white ball of flame shooting from east to north, that then just was gone. +2008-01-03,33.4936111,-117.1475,Temecula,CA,circle,3,blue circle over the skys of temecula flashed and never seened again +2008-01-03,35.1111111,-81.2266667,Clover,SC,unknown,600,Craft sighting in SC. Complex lighting system and lack of conventional engine noise. +2008-01-03,40.7069444,-81.5983333,Brewster,OH,other,5,It was loud and fast and had lights spinning around it. +2008-01-03,41.0036111,-76.4552778,Bloomsburg,PA,unknown,600,I saw a set of lights in the sky that hovered above the road and then dissapeared +2008-01-03,47.3222222,-97.7219444,Hope,ND,unknown,120,Large bright orange light moving to the south changed to green and disappeared into the northern black sky. +2008-01-03,41.7,-71.4166667,West Warwick,RI,unknown,1200,Sighted three white to bluish lights that came to a stationary halt -watched for 15 min. & fell asleep. +2008-01-03,47.6063889,-122.3308333,Seattle,WA,unknown,300,Abduction +2008-01-03,41.5386111,-75.9469444,Tunkhannock,PA,light,7200,Flashing colors appeared to be spinning +2008-01-03,40.2736111,-76.8847222,Harrisburg (In General Area Of),PA,oval,600,Pink aura flying below cloud cover. +2008-01-03,38.9516667,-92.3338889,Columbia,MO,triangle,300,Triangular craft with three lights seen at night on Broadway Blvd. in Columbia MO +2008-01-04,45.6797222,-111.0377778,Bozeman (Gallatin Range),MT,oval,60,Flash of light stops above the Gallatin Range hovers and then disappears to the south +2009-01-03,39.9936111,-105.0891667,Lafayette,CO,triangle,10,I completed a report on your site over a year ago and it was very brief and not as descriptive as I should have been in my initial repo +2009-01-03,39.9936111,-105.0891667,Lafayette,CO,triangle,7,I was at a friend’s house in Lafayette Colorado to watch the predawn Meteor Showers at 4:00am. We were standing outside having a smoke +2009-01-03,43.4261111,-73.7127778,Lake George,NY,formation,180,I have on video a bright light above French Mountain that hovered for several minutes of which I have few minutes on video. The bright +2009-01-03,27.7705556,-82.6794444,St. Petersburg,FL,oval,300,we were watching the east sky from my st. Pete home over the trees but far, we assume it was planet mars, it was not moving then, it wa +2009-01-03,41.3158333,-72.3294444,Old Lyme,CT,circle,180,spots in the sky that appear suddenly and disappear just as suddenly ... photographed +2009-01-03,36.5211111,-86.0263889,Lafayette,TN,cylinder,900,Three UFO's appear out of thin air for 15 minutes then vanish. +2009-01-03,34.5644444,-92.5866667,Benton,AR,light,2,Bright lit aircraft descends, and vanishes without a trace. +2009-01-03,38.7955556,-77.6141667,Gainesville,VA,light,900,Spectacular Lights seen to separate in Virginia outside Washington DC +2009-01-03,39.1855556,-78.1636111,Winchester,VA,formation,3600,Strange Formation +2009-01-03,40.2141667,-77.0088889,Mechanicsburg,PA,unknown,600,Bright flashing object moves silently above Mechanicsburg, PA, with erraitc cursive-like motions. +2009-01-03,41.6819444,-85.9766667,Elkhart,IN,diamond,300,A red red sphere folllowing a blinking diamond shaped thing. +2009-01-03,26.0625,-80.2333333,Davie (Shenandoah Area),FL,fireball,60,Three dark orange or reddish colored objects flying in a triangular pattern over Davie +2009-01-03,40.8466667,-73.5355556,East Norwich,NY,oval,1,High speed object with bright green light over Nassau County NY +2010-01-03,39.36,-84.31,Mason,OH,circle,1200,didnt move like a plane or helicopter, too close to be a star. +2011-01-03,47.4830556,-122.2158333,Renton,WA,flash,1,flash of light moving toward lake washington +2011-01-03,40.8663889,-73.0361111,Selden,NY,light,45,at 5:30 on 1/3/11 , i was walking my dog faceing north when i saw a flash in the sky.I saw a star moving from north to south .as it mov +2011-01-03,40.1794444,-74.8555556,Fairless Hills,PA,unknown,360,1 Bright white dot, eventually ended up being 6 in 2 same shaped triangles +2011-01-03,40.2994444,-109.9880556,Roosevelt,UT,disk,1200,Glowing disk in night sky +2011-01-03,29.7855556,-95.8241667,Katy,TX,other,30,looked like a satellite with two lights spead apart to be a large object. +2011-01-03,29.6513889,-82.325,Gainesville,FL,triangle,30,((HOAX??)) Camouflaged UFO +2011-01-03,41.4372222,-71.5019444,Wakefield,RI,disk,1.5,A large disc shaped craft entered my field of vision and disappeared before i could observe further details. +2011-01-03,46.9811111,-123.8880556,Hoquiam,WA,light,60,red/orange light zig zagging east to west +2011-01-03,63.6941667,-170.4788889,Savoonga,AK,light,15,Didn't see the object it was very cloudy but it had a beam of light sort of like spot light aimed to the ground & traveled about 60yds +2011-01-03,32.6780556,-117.0983333,National City,CA,fireball,300,Fireball looking object floated over national city then dissapeared +2012-01-03,43.3005556,-73.5863889,Hudson Falls,NY,sphere,180,Sphere like object flashes and shoots straight up. +2012-01-03,31.8911111,-85.1455556,Eufaula,AL,light,420,Blinking light in the southern sky +2012-01-03,40.31,-75.1302778,Doylestown,PA,circle,5,Over Doylestown,Pa. a Large red fireball moving west to east in the sky, no sound, +2012-01-03,40.7258333,-73.5147222,Levittown,NY,unknown,10,Bright lights in a single row. Flying over Long Island, New York. +2012-01-03,42.0986111,-75.9183333,Binghamton,NY,fireball,180,Round fireball object witness in Binghamton, NY +2012-01-03,41.865,-80.79,Ashtabula,OH,rectangle,180,As large as the mall it came from the south and went north it had no lights and no sound it was right over the 40/60 foot trees i seen +2012-01-03,33.7430556,-117.1083333,Homeland,CA,oval,3600,Multi-colored object sighted in night sky +2012-01-03,36.0213889,-80.3822222,Clemmons,NC,circle,300,Hovered, grew brighter then disappeared. +2012-01-03,36.9102778,-121.7558333,Watsonville,CA,disk,300,Large gray craft in Watsonville CA. +2012-01-03,41.6827778,-88.3513889,Oswego,IL,sphere,3600,Oswego, IL lights in sky, possible disc +2012-01-03,26.7052778,-80.0366667,West Palm Beach,FL,circle,30,It's now 521pm: 10 minutes ago while walking my schnauzer baron, I saw a dark disc that looked completely out of place. +2012-01-03,38.4327778,-90.3775,Arnold,MO,circle,3,A single bright white dot appeared, remained stationary for fraction of second, then shot off at incredible speed in a stream of light +2012-01-03,36.7005556,-95.6377778,Nowata,OK,light,240,Blueish white ball seen by me . +2012-01-03,41.5380556,-72.8075,Meriden,CT,diamond,1800,Bright flickering star shaped UFO over Meriden,CT ((NUFORC Note: Star or planet?? PD)) +2012-01-03,42.2486111,-88.6083333,Marengo,IL,unknown,300,6-10 lights moving in the distance +2012-01-03,32.9438889,-103.3480556,Lovington,NM,other,3600,Rectangle boxes in form of a train, varrying colors. Red and white hovering dots above and on the sides. Suddenly dissapears in 1hr. +2012-01-03,34.1205556,-84.0044444,Buford,GA,unknown,900,My husband was leaving to run an errand around 7:30 p.m. and noticed this bright light in the sky that was not moving. At first he tho +2012-01-03,32.8472222,-117.2733333,La Jolla,CA,circle,300,Orange glow in the night sky turns out to be a round grey saucer once the glow went out +2012-01-03,26.1,-80.4,Weston,FL,fireball,120,Orange fireball in the north sky +2012-01-03,41.2619444,-95.8608333,Council Bluffs,IA,light,7200,Lights moving in a circular motion +2012-01-03,38.6402778,-92.1222222,Holts Summit,MO,disk,60,2 sightings same craft as many times previously, one year apart. +2012-01-03,38.0147222,-87.0363889,Chrisney,IN,oval,60,Gray metallic looking object with multiple colors around the edges & a transparent red haze around it, moving rapidly 1/3/12 @10:30p +2012-01-03,32.8794444,-111.7566667,Casa Grande,AZ,sphere,600,I was about 2 miles from the Casa Grande Airport. I was facing West and that's when I noticed these lights bouncing around in the dark. +2012-01-03,36.2944444,-76.2513889,Elizabeth City,NC,triangle,240,Out for a smoke, noticed the triangluar shaped craft about a mile up in sky that made sudden turns and reversed unlike any aircraft . +2013-01-03,40.6638889,-74.2111111,Elizabeth,NJ,unknown,1500,Extremely loud noise hovering over our house for over 20 minutes. +2013-01-03,36.1397222,-120.3591667,Coalinga,CA,disk,3600,A saucer shape object that seemed lilted & it was hovering in place & sometimes it seemed small then it would get bigger at times. +2013-01-03,41.2041667,-73.6441667,Bedford,NY,triangle,180,Football sized UFO over the town of Bedford +2013-01-03,39.1361111,-103.4694444,Hugo,CO,light,180,Star Like Lights +2013-01-03,37.0563889,-78.6386111,Charlotte Court House,VA,light,180,Orange light moved slowly across sky and then disappeared +2013-01-03,35.6505556,-78.4566667,Clayton,NC,cylinder,300,Flashing red and blue lights with white lights in center of cylinder object +2013-01-03,35.4116667,-89.5327778,Mason,TN,light,7200,In the sky, just down from the Big Dipper, was a light that darted side to side, up and down, and then would hover in the same position +2013-01-03,42.2711111,-89.0938889,Rockford,IL,disk,60,Large object with many bright lights. +2013-01-03,42.8711111,-97.3969444,Yankton,SD,circle,5,8 orange lights appear and disappear within 3 to 5 seconds west of Yankton. +2013-01-03,40.7311111,-122.9408333,Weaverville,CA,sphere,7,Night sighting and not a convential aircraft +2013-01-03,37.9872222,-122.5877778,Fairfax,CA,sphere,1200,Saw a brightly glowing object in the sky that was pulsating red, blue, green and white light and was completely soundless. ((Sirius?)) +2013-01-03,38.6447222,-121.2711111,Fair Oaks,CA,oval,300,5 ufo's very bright then turned dark and flew directly over us having no sound. +2013-01-03,44.3530556,-121.1766667,Terrebonne,OR,unknown,180,A red, ribbon-like moving shape flying next to the butte in Terrebonne, OR. +2014-01-03,33.9802778,-118.4508333,Marina Del Rey,CA,light,180,Orange light coming my way very high, made sudden moves to my left for awhile then dissapeared. +2014-01-03,40.6127778,-89.4591667,Morton,IL,other,900,Id wokend up and stept out side. For a smoke. Thats win I seen sevral brite lites pirsing strayt up in pers. There were a lot of stars +2014-01-03,37.1305556,-121.6533333,Morgan Hill,CA,cigar,5,Strange noise, observed a long, spindle shaped, silver cigar object with greenish exhaust. +2014-01-03,35.8880556,-106.3063889,Los Alamos,NM,other,60,Lights in the sky above Santa Clara/San Ildefonso. +2014-01-03,33.6602778,-117.9983333,Huntington Beach,CA,light,300,Single orange orb spotted in Huntington Beach, CA. +2014-01-03,36.0227778,-95.9680556,Jenks,OK,circle,300,Fire-orange orb flying over Jenks faster than a jet and stopping before disappearing. +2014-01-03,38.6272222,-90.1977778,St. Louis,MO,chevron,240,5 boomerang lights over STL on 1/3/2014. +2014-01-03,41.8758333,-72.8016667,Simsbury,CT,triangle,300,A slow moving and hovering triangular shaped object with multiple bright white lights and one red light. +1975-01-04,29.7630556,-95.3630556,Houston,TX,disk,60,Witnesses saw a bluish-white-light emitting spherical object on the ground a few feet from the edge of a feeder road alongside IH45 So. +1994-01-04,41.9433333,-75.6,Susquehanna,PA,triangle,300,Large white light moving fast above car turns into Triangular UFO and hovers over car for 5 minutes +1995-01-04,41.4213889,-76.0588889,Noxen,PA,unknown,300,Young man hears, then witnesses, strange ship at treetop level travel north over town of Noxen. Good rept. +1997-01-04,29.6708333,-83.3877778,Steinhatchee,FL,cigar,300,It was orangish reddish in color as if it were passing through the atmosphere.A craft at this height must have been massive. +1997-01-04,38.4405556,-122.7133333,Santa Rosa,CA,disk,900,A brief encounter with a circular looking object that appeared to be on fire...A neighbors house down the street a circular looking +1998-01-04,36.1658333,-86.7844444,Nashville,TN,circle,300,I was going south on hwy 41 just before Briley pkwy exit. saw circular craft with row of lights on leading edge slowly drift across hwy +1999-01-04,32.5005556,-94.7402778,Longview,TX,circle,10800,Saw two "hovering" objects in the sky that had different colored lights on them. +1999-01-04,40.5866667,-122.3905556,Redding,CA,triangle,600,I went to get in my car. I looked up and SE while getting into the car. I saw an object with two red lights and one green light. Thes +1999-01-04,42.9383333,-73.6536111,Stillwater,NY,changing,960,Three low,silent craft hovering,looping over each other,flaring huge,bright,then fly head-on near-collision course.Videotaped +2000-01-04,38.45,-91.0083333,Union,MO,triangle,3600,Trangluar Craft over Union, MO Jan. 5th 2000. ((NUFORC Note: Report from law enforcement officer. PD)) +2000-01-04,41.3438889,-75.7388889,Duryea,PA,oval,10,The UFO was a perfect blue oval. +2000-01-04,33.5091667,-111.8983333,Scottsdale,AZ,light,10,Emerging, pivoting array of lighted objects. +2000-01-04,31.8272222,-99.4261111,Coleman,TX,fireball,1800,Light in the sky - much larger than a star, and looking like a flare gun's flare, but suspended in place. Would flicker out and then r +2000-01-04,38.5161111,-90.2102778,Dupo,IL,triangle,300,A delta shaped craft slowing moving within a few miles of downtown St. Louis, Mo. Within hours of a similar craft reported by police. +2001-01-04,33.7488889,-84.3880556,Atlanta,GA,changing,900,Strange Light emiting object changing shape and intensity of light, caught on video +2001-01-04,28.4005556,-97.7480556,Beeville,TX,flash,5,A star turned very bright and then fade away in the southern early mourning sky. +2001-01-04,34.5033333,-82.6502778,Anderson,SC,cigar,1200,White large object without wings,above 30ꯠ feet moving very slowy toward the NNW +2001-01-04,33.9325,-114.005,Bouse,AZ,light,300,While going to feed animals, I saw flashing blue lights rise out of the desert floor and stationary amber lights appeared +2001-01-04,35.7719444,-78.6388889,Raleigh,NC,light,120,Blinking light zig-zags and merges with a star. +2003-01-04,43.2938889,-72.2608333,Unity,NH,circle,900,Huge Bright White Circular Light Divides Into Four & Manuvers Over New Hampshire Skies +2003-01-04,32.5447222,-94.3672222,Marshall,TX,light,7200,Bright light, moved quickly but stayed in the same area. Something like meteors fell around it. The light reached the ground. +2003-01-04,26.7163889,-98.4536111,San Isidro,TX,oval,4500,The oval shaped objects number 12 and they moved in the sky for well over an hour. +2003-01-04,39.1666667,-90.7808333,Elsberry,MO,flash,2,flash and then rapid acceleration of light through mid level cloud cover +2003-01-04,35.1055556,-83.0966667,Cashiers,NC,sphere,4,I was outside in the snow one afternoon when the snow clouds subsided for a moment, and I noticed a sliver of orange behind a rogue clo +2003-01-04,32.64,-117.0833333,Chula Vista,CA,circle,600,Bright object moved slowly across the sky in clear daylight and in formation with at least 10 other objects. +2003-01-04,39.5752778,-76.9961111,Westminster,MD,sphere,300,strange bright lights fly over rural Maryland +2003-01-04,40.7383333,-73.0511111,Bayport,NY,cone,258,Two glowing objects chasing, swirling, dancing in the nite sky. +2003-01-04,41.1383333,-81.8638889,Medina,OH,light,420,January 4 2003-lights in rearview mirror +2004-01-04,24.7133333,-81.0905556,Marathon (Fiesta Key),FL,triangle,60,Lights on black object over road in FL Keys. +2004-01-04,37.6688889,-122.0797222,Hayward,CA,egg,300,3 egg shapes over Hayward, CA area +2004-01-04,42.2041667,-72.6166667,Holyoke,MA,oval,3,2 oval objects that can travel at extreamly high speeds +2004-01-04,26.6402778,-81.8725,Fort Myers,FL,disk,60,A silver disk with a bulge on one face, maybe 30 feet across, reflected sunlight and bobbed around at 3-5000 feet. +2004-01-04,41.6638889,-83.5552778,Toledo,OH,changing,600,it was black and seemed to get smaller +2004-01-04,35.4447222,-78.4272222,Four Oaks,NC,disk,600,Very large hovering object that appeared to be lighted from within as well as flashing lights on the outside +2004-01-04,39.7555556,-105.2205556,Golden,CO,other,20,Light formation in sky over Golden,CO 01/04/04 +2004-01-04,34.5794444,-118.1155556,Palmdale,CA,oval,300,oval shape craft,very bright,many blinking lights. +2005-01-04,47.6105556,-122.1994444,Bellevue,WA,sphere,120,SMALL SPARKLY WHITE SPHERICAL UFO--CLOSE PROXIMITY TO HOUSE 2AM 4 JANUARY 2005 SILENT +2005-01-04,37.3688889,-122.0352778,Sunnyvale,CA,sphere,360,Sphere like objects in rainbow seemed to "cloak" or "chamelon" colors of the spectrum then vanish +2005-01-04,34.1577778,-118.6375,Calabasas,CA,light,2,Lights in Calabasas, California +2005-01-04,47.6419444,-122.0791667,Sammamish,WA,fireball,2,Bright ball of light falling from the ski in Sammamish looking East towards the mountians. +2005-01-04,37.6941667,-122.0852778,Castro Valley,CA,light,30,Object moving across CA sky Jan 4th 2005 7:10PM +2005-01-04,44.9194444,-123.3158333,Dallas,OR,circle,600,Buring orange sphere burning out over Salem Oregon +2005-01-04,47.5675,-122.6313889,Bremerton,WA,diamond,60,I was hooking up my tractor/trailer at my company's yard in West Bremerton, Wa. (West Hills), I happened to look out toward the Northwe +2005-01-04,35.3236111,-80.6561111,Harrisburg,NC,diamond,120,Extremely brilliant multi-colored symmetrical light source no sound hovering 1.5 minutes low in sky moving off at moderate velocity +2006-01-04,47.9252778,-97.0325,Grand Forks,ND,light,3,The sky turned green and electricity went haywire! +2006-01-04,30.1658333,-81.7066667,Orange Park,FL,oval,2,Look like a bright star flying very fast with no trail behind it. +2006-01-04,45.6366667,-109.2513889,Columbus,MT,fireball,60,Fireball over, and landing or hitting somewhere north of Columbus Mt, in stillwater county +2006-01-04,39.9686111,-77.5875,Scotland,PA,light,105,Small, white, light in the northeast sky...disappeared +2006-01-04,32.7938889,-79.8627778,Mt. Pleasant,SC,oval,45,Two stainless-steel oval shaped objects hover over Mt. Pleasant, SC +2006-01-04,34.7463889,-92.2894444,Little Rock,AR,oval,6,Solid, orange ,oval shaped object seen moving through the sky. No noise or after effect accompanied it. +2006-01-04,35.4305556,-82.5013889,Fletcher,NC,oval,45,Small Very Black Oval Moving Oddly At High Rate Of Speed Over Horizon +2006-01-04,30.3569444,-87.1638889,Gulf Breeze,FL,fireball,600,Navarre / Gulf Breeze birght orange fireballs horizontally aligned +2006-01-04,34.0522222,-118.2427778,Los Angeles,CA,fireball,2,Bright falling light over Passadina +2006-01-04,33.6680556,-117.3263889,Lake Elsinore,CA,oval,3,Large semi transparent green flash +2006-01-04,34.0194444,-118.4902778,Santa Monica,CA,light,3,fast green light shooting down from sky +2006-01-04,33.6083333,-117.7444444,Aliso Viejo,CA,other,20,Aliso Viejo, CA 1/6/06 10:50pm square shape in sky w/ dim lights in corners flying erratically all directions above neighborhoods. +2007-01-04,34.0861111,-84.9875,Taylorsville,GA,light,15,blinking white lights and moved out of sight in a half second with no sound +2007-01-04,40.2858333,-75.9847222,Mohnton,PA,light,4,Bright light descends above Reading, PA +2007-01-04,45.8566667,-111.3316667,Manhattan,MT,fireball,15,Orange flame colored comet-like object travelling North to South over Manhattan, Montana. Silent. +2007-01-04,39.8027778,-105.0869444,Arvada,CO,cylinder,15,Large Cylinder shaped object, going very slow from North to South, below the moom +2007-01-04,34.6505556,-111.745,Rimrock,AZ,other,120,IT WAS AMBER IN COLOR WAS FIRST IN AN S SHAPE POINTING DOWN (VERTICLE)THEN WENT UP INTO A HORIZONAL POSITION SIMILAR TO SANTAS SLEIGH 1 +2007-01-04,40.1672222,-105.1013889,Longmont,CO,formation,35,On the way to work I noticed what looked alot like a band of meterites falling onto the earth but with the exception that they were fly +2007-01-04,34.4208333,-119.6972222,Santa Barbara,CA,disk,1,ufo was captured during a family picture at the end of santa barbara pier. ufo is present on the upper left corner. +2007-01-04,30.5080556,-97.6786111,Round Rock,TX,changing,3600,Bright multi-colored appearance with irratic movements. ((NUFORC Note: Sighting of the star, Sirius? PD)) +2007-01-04,42.45,-73.2458333,Pittsfield,MA,light,15,Two fast-moving, silent, amber lights subdued with haze moving southeast over Pittsfield, MA at 19:15. +2007-01-04,38.005,-121.8047222,Antioch,CA,fireball,120,Bright red flash of light hovering over Fairfield/Antioch area +2007-01-04,47.2530556,-122.4430556,Tacoma,WA,light,240,Strange lights over McChord AFB, Tacoma WA +2008-01-04,39.7683333,-86.1580556,Indianapolis,IN,triangle,3600,Multiple Triangle shaped UFO's in V formation, then slowly follow interstate in Indianapolis +2008-01-04,31.3405556,-93.8466667,Hemphill,TX,rectangle,15,These are real. +2008-01-04,29.7630556,-95.3630556,Houston,TX,triangle,1800,Family has had several encounters over years with possible explanations regarding agenda, bovine blood use, and bdellium collection. +2008-01-04,44.3033333,-70.12,Leeds,ME,triangle,60,It was flashing different colors such as blue green and red. The lights were in the shape of a triangle and when looked at through a te +2008-01-04,35.0766667,-80.6694444,Indian Trail,NC,disk,21600,Two UFOs almost crash into each other, one is gone, the other sits and glides, then sits, then glides. +2008-01-04,41.6611111,-72.78,New Britain,CT,diamond,1248,Diamond-shaped craft with two orange lights hovering in the sky before fading and vanishing. +2008-01-04,38.1838889,-83.4327778,Morehead,KY,light,10800,Strange flashing lights in the sky in South East Kentucky. ((NUFORC Note: Possibly Sirius?? PD)) +2008-01-04,30.9777778,-96.6736111,Calvert,TX,fireball,300,falling star or so i thought that did a u-turn& filling of weightlessness +2009-01-04,41.2019444,-77.2647222,Jersey Shore,PA,sphere,5,A bright orange sphere sighted in central Pennsylvania. +2009-01-04,39.7391667,-104.9841667,Denver,CO,sphere,420,Two orbs,,,one in Denver,,,,one in San Diego +2009-01-04,39.7036111,-121.5211111,Yankee Hill,CA,light,300,Thought it was a bright star at first. Then the light moved down close to the trees. It moved around the mountains for about 4 to 5 m +2009-01-04,34.698055600000004,-118.1358333,Lancaster,CA,other,40,object moved in matter of seconds from east side of the sky to west side of the sky a distance of 2miles +2009-01-04,37.3394444,-121.8938889,San Jose,CA,circle,1,It was 1 : 30 pm me and my wife where standing outside of our apartment when we see 3 flying object very high in the sky we stayed wa +2009-01-04,34.2783333,-119.2922222,Ventura,CA,chevron,1200,A slow rising black boomerang shaped object, it had no trail and no lights. +2009-01-04,37.9780556,-122.03,Concord,CA,triangle,120,Red blinking black triangle spotted over highway 24 downtown plesant hill/ geary exit CA +2009-01-04,35.1477778,-114.5675,Bullhead City,AZ,sphere,40,emtying the trash looking west over our western mountain range i saw what i thought was a jet departing from laughlin airport. as i +2010-01-04,41.4786111,-74.8138889,Glen Spey,NY,flash,2100,colorful flashing craft hovers for 30mins & then flashes violet, followed by dashing to the right & disappearing +2010-01-04,37.8419444,-76.2761111,Reedville,VA,changing,3600,Spherical flashing lights, hovering in the northwestern sky, no sound. ((NUFORC Note: Possible sighting of celestial body?? PD)) +2010-01-04,33.9791667,-118.0319444,Whittier,CA,light,3,Thick bright light travels across southern California then disappears? +2010-01-04,32.4458333,-95.7036111,Ben Wheeler,TX,light,180,Very bright light, flying lower than a jet; appeared to be tracking another light. ((NUFORC Note: Satellites?? PD)) +2010-01-04,37.9622222,-122.3444444,San Pablo,CA,unknown,14400,Extremely high, hovering object blinking various colors with red light on top seen from San Pablo. ((NUFORC Note: Sirius?? PD)) +2010-01-04,42.0083333,-91.6438889,Cedar Rapids,IA,light,900,Two very bright white lights come close together in the northwest sky and one dissapears... +2011-01-04,36.1397222,-96.1086111,Sand Springs (West Of),OK,circle,45,Orange glowing round object seen in the sky just 2 miles of Lake Keystone, Sand Springs, Oklahoma +2011-01-04,37.6805556,-92.6636111,Lebanon,MO,other,10,it was very fast yet vivid +2011-01-04,38.6772222,-87.5286111,Vincennes,IN,triangle,180,I witnessed a short-duration, triangle-shaped UFO in Vincennes, IN on Tuesday 01/04/11 at 2:50 a.m. +2011-01-04,42.075,-72.0338889,Southbridge,MA,light,20,Went outside before dawn, was watching the sky and noticed an object the exact shape of a star traveling across the sky into the dark. +2011-01-04,41.8569444,-93.9216667,Woodward,IA,fireball,300,Orange/gold lights that seemed to "leap frog" across the north western Iowa sky. +2011-01-04,38.6402778,-92.1222222,Holts Summit,MO,disk,240,Heard it 11-25-10 Saw it 1-4-11. +2011-01-04,39.0483333,-95.6777778,Topeka,KS,oval,2400,Two different air-ships that traveled through a city and traveling so low and making no noise at all. +2011-01-04,31.1797222,-83.7891667,Moultrie,GA,disk,600,Orange, hazy light that was moving very quickly then dissaperd. +2011-01-04,42.5536111,-88.2944444,Powers Lake,WI,fireball,300,Three large fireballs hovering in the sky for at least 5 minutes, then raced to the south. +2011-01-04,37.7622222,-84.8433333,Harrodsburg,KY,triangle,8,Bright Triangular lights seen over Harrodsburg, KY. +2011-01-04,33.7069444,-117.0836111,Winchester,CA,sphere,300,two stars rotating tightly together as they fell slowly not a min later the direction slightly changed and it looked as if it projected +2011-01-04,39.0083333,-75.5783333,Felton,DE,triangle,900,Three triangular objects with rotating, colored lights appear in the western night sky over a mid-Atlantic town. +2012-01-04,36.2702778,-121.8063889,Big Sur,CA,unknown,900,Slow moving, silent large blinking red light less than 1/2 mile from me heading south over Pacific Ocean. +2012-01-04,32.525,-93.75,Shreveport,LA,oval,660,1st at 6:13 a.m., Shreveport, LA. 2nd 6:15 a.m., 3rd sighting, 6:19 a.m. Slow moving, no noise, oval, we think, red & white lights +2012-01-04,43.2561111,-88.1938889,Richfield,WI,unknown,900,Thought I was photographing Chemtrails.Then comes the 90 degree turn. Wild This was over South East Wi. Toward Mitchel field around +2012-01-04,27.8316667,-81.5225,Babson Park,FL,circle,720,8 round objects with all yellowlights rising straight up in a diagional formation +2012-01-04,46.8733333,-113.8636111,Bonner,MT,unknown,15,Light seen moving north east over I-90 at cloud level between Bonner and Potomac. +2012-01-04,33.9375,-117.2297222,Moreno Valley,CA,light,120,Solid light traveled across the night sky over Moreno Valley, CA. +2012-01-04,38.4327778,-90.3775,Arnold,MO,other,7200,Static UFO deploying multiple UFO 'Scouts'? +2012-01-04,40.2966667,-120.5230556,Janesville,CA,unknown,120,Object with red, white and blue lights underneath craft flashing in random order hovered over mountain top observed for 2 minutes. +2012-01-04,40.8663889,-73.0361111,Selden,NY,diamond,900,Triangular hovering unknown "tracked" by multiple craft +2012-01-04,42.9336111,-72.2786111,Keene,NH,cone,14400,Light blue craft floating in circle in keene nh with orangish craft sited +2012-01-04,42.5327778,-90.4344444,Hazel Green,WI,circle,180,White lights over Wisconsin. +2012-01-04,37.7597222,-78.8711111,Lovingston,VA,light,5,Glowing green UFO in Virginia +2012-01-04,37.6922222,-97.3372222,Wichita,KS,light,900,Red light dropping balls of light. +2013-01-04,42.1227778,-72.2013889,Brimfield,MA,circle,300,Four spheres darting in the sky. ((NUFORC Note: Possible advertising lights? PD)) +2013-01-04,41.6580556,-90.5844444,Eldridge,IA,unknown,900,Craft hovered for approx 10-15 mins.; seemed to.change shape occasionally and also color from, green, red, blue, and white. +2013-01-04,34.0522222,-118.2427778,Los Angeles,CA,light,10,Two bright objects slowly moving and disappearing together. +2013-01-04,27.2155556,-81.8586111,Arcadia,FL,other,600,2 large orange lights from southeast to northwest route, absolutley no sound. +2013-01-04,26.8833333,-82.2902778,Rotonda,FL,other,1800,Object over Rotonda, Florida. +2013-01-04,43.55,-96.7,Sioux Falls,SD,disk,300,4 or 5 saucers flying in the same direction of a dark orange color. +2013-01-04,40.3980556,-80.1858333,Oakdale,PA,light,600,Small red and blue dot working its way across the sky in slow circles. +2013-01-04,36.2,-86.5186111,Mount Juliet,TN,fireball,180,Bright orange light with rays and beams coming out flying over, hovering and then disappeared straight up. +2013-01-04,45.4463889,-122.6380556,Milwaukie,OR,light,900,Red light moving slow from afar almost thought was a star but as we noticed its color and speed and comparing to planes it was not. +2013-01-04,44.0216667,-92.4697222,Rochester,MN,cross,300,Five bright orange lights (cross shape upon closer inspection) hovering over Rochester, MN. +2014-01-04,47.1719444,-122.5172222,Lakewood,WA,cone,45,Cone shaped vertical flight path. +2014-01-04,40.5186111,-78.395,Altoona,PA,fireball,120,Fireball object falling from the sky. +2014-01-04,36.0725,-79.7922222,Greensboro,NC,teardrop,180,9 Orange Globes traveling in a V formation, not sound no blinking lights on a perfectly clear night. +2014-01-04,36.0305556,-75.6763889,Kill Devil Hills,NC,sphere,3,Orange orb the color of fire lights up, expands in size, then shrinks back to nothingness and disappears, like an explosion in space. +2014-01-04,33.9375,-117.2297222,Moreno Valley,CA,fireball,180,Five orange &quot;fireball&quot; UFOs seen at 6:10pm Moreno Valley, Ca. +2014-01-04,38.8966667,-121.0758333,Auburn,CA,formation,120,4 UFO's seen over Auburn heading West toward Sacramento. +2014-01-04,39.051944399999996,-82.6366667,Jackson,OH,fireball,5,Early morning fireball going east to west. +2014-01-04,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,20,I was standing on my balcony smoking a cigarette and all of a sudden I saw a white object come out of the clouds. It glided from the di +2014-01-04,44.3,-120.8333333,Prineville,OR,oval,2,Took photos with new camera (FujiFilm HS50EXR)at close to full zoom (approx 800mm). ((NUFORC Note: Mourning dove in flight? PD)) +2014-01-04,39.0436111,-77.4877778,Ashburn,VA,sphere,120,Highly reflective sphere hovers near chemtrail, shrinks away rapidly, section of chemtrail evaporates. +2014-01-04,35.9488889,-85.0269444,Crossville,TN,light,300,The first one I seen, seemed to be a plane at first and I noticed it was traveling downward very quickly with a red stream of light, I +2014-01-04,29.8991667,-90.1002778,Marrero,LA,light,2700,Two Blue Lights/ Unidentified Flying Objects seen in the sky over Marrero, LA. +2014-01-04,36.8466667,-76.2855556,Norfolk,VA,circle,1800,~50 bright tiny light steadily moving to same direction NE to SW. +2014-01-04,41.0783333,-80.5994444,Campbell,OH,triangle,600,I was outside smokeing and looked up and seen 4 lights in the sky that were moving/huvering in the sky, the 1 was on the left of the ot +2014-01-04,32.5447222,-94.3672222,Marshall,TX,sphere,10,5 distinct blue spheres flashed across the sky, pausing and chaning direction slighly. +2014-01-04,45.3575,-122.6055556,Oregon City,OR,unknown,900,Saw what appeared to be a star, but had some red and blue colors too, and moves zig zag, & up, and down. +2014-01-04,41.3661111,-81.8544444,Berea,OH,fireball,4,Red fire in the sky 1 or 2. +2014-01-04,44.4138889,-68.5872222,Blue Hill,ME,fireball,60,Appeared to be a green fireball with a tail shooting from the east towards the southwest into Blue Hill Bay. +2014-01-04,33.7669444,-118.1883333,Long Beach,CA,light,420,LONG BEACH, CA.. interacted with a UFO while stargazing and using a Green high output laser beam. +2014-01-04,45.5236111,-122.675,Portland,OR,light,90,Slow moving red orb, multidirectional. +2014-01-04,47.2530556,-122.4430556,Tacoma (Port Of),WA,other,1800,Strange crafts hovered formation lights not like aircraft or drones vedeo shows same. +2014-01-04,42.4666667,-70.95,Lynn,MA,circle,30,Three bright lights dove straight down only to disappear. +2014-01-04,33.4483333,-112.0733333,Phoenix,AZ,other,120,Large, bright red ill defined light flying over then disappearing straight up. +2014-01-04,40.7141667,-74.0063889,New York City (Queens; Flushing),NY,oval,120,Orange stingray-shaped object, followed by 2 orange globes +2014-01-04,26.6402778,-81.8725,Fort Myers,FL,unknown,900,Red orbs launch one after another. +2014-01-04,33.5091667,-111.8983333,Scottsdale,AZ,chevron,120,Orange glowing light over Scottsdale, AZ. +2014-01-04,28.5491667,-81.7730556,Clermont,FL,triangle,15,Very low slow triangular craft with bright white lights. +2014-01-04,33.2097222,-87.5691667,Tuscaloosa,AL,sphere,2,Black orb spotted over Interstate 20/59. +1970-01-05,43.0777778,-71.2772222,Candia,NH,light,60,I was taking a late night walk on a cold calm January night. I passed between a barn and house following an old tote road used by snowm +1972-01-05,41.8258333,-103.66,Gering,NE,light,180,Fast moving light, darting then hovering in sky; emitted beam of light. +1978-01-06,41.7,-71.4166667,Warwick,RI,sphere,300,Warwick, Rhode Island Jan/Feb 1978 Red Orb +1989-01-05,39.9522222,-75.1641667,Philadelphia,PA,cigar,600,An object followed my car parallel to me then stopped when I stopped & observed me for 5 minutes. +1995-01-05,47.6063889,-122.3308333,Seattle,WA,light,5,MUFON member witnesses very bright light during daylight hours for 5 sec.. Appears 2nd time, disappears. +1995-01-05,43.9005556,-85.2580556,Evart,MI,unknown,600,Mother & son witness very bright light while driving. Stop car. Obj. splits into two "headlights," approaches car. +1995-01-05,47.2033333,-122.2391667,Sumner,WA,disk,40,ship flew almost over my head and it was comming in for a landing. I was shook up and would,nt go after it and this is why. est 250ft l +1995-01-05,48.5052778,-111.8561111,Shelby,MT,unknown,120,USAF officer at Malmstrom AFB relays sighting rept. from Shelby, MT. Two obj. which moved silently. +1995-01-05,47.2033333,-122.2391667,Sumner,WA,disk,8,Saucer comming in for landing at tree top and I was allmost under it. aprox 250X35 the ship had two doors that was black in color the r +1997-01-05,21.5902778,-158.1125,Haleiwa,HI,triangle,7200,January 1977 1:00 am Haleiwa Hawaii Two craft (like power boats) at 5000 feet Exchanging power beam 1-2 hour duration +1998-01-05,34.1283333,-117.2077778,Highland,CA,other,240,Mr. S.C. was proceeding to pull out of a driveway into traffic on Del Rosa Ave. in Highland (east of San Bernardino) when he looked to +1998-01-05,34.4261111,-117.5713889,Phelan,CA,other,1200,Mr. D.F. was outside in his yard when he looked up and noticed a huge, slow moving, black cigar-shaped object with wings coming from th +1998-01-05,42.2527778,-73.7913889,Hudson,NY,triangle,300,One night going to a friends house,I was walking. Then I seen something very bright,i could not reconize it. +1999-01-05,45.5236111,-122.675,Portland,OR,oval,18000,portland oregon 01/05/99 0200 +1999-01-05,47.6063889,-122.3308333,Seattle (North),WA,fireball,1,single very bright light green colored fireball traverses 40 degrees of the sky on south, downward-slanted trajectory, moved quite fast +1999-01-05,47.6063889,-122.3308333,Seattle,WA,teardrop,3,The object was approximatly equal in size to 1/4 full moon. It was travelling from NW to SE approximately 500 feet over Lake Union. Th +1999-01-05,47.5675,-122.6313889,Bremerton,WA,circle,3,I was walking and saw a white circle of light shoot across the sky in a south east direction. The sky was partially clear and it was a +1999-01-05,40.3772222,-105.5211111,Estes Park,CO,circle,60,UFO caught on film over Colorado Rockies +1999-01-05,32.8994444,-105.9597222,Alamogordo,NM,disk,900,LARGE BRITE WHITE SAUCER SPED ACROSS THE SKY; STOPPED HOVERED APROX.5 MIN. SHOT STRAIGHT UP;DISSAPEARED. +2000-01-05,38.7891667,-90.3225,Florissant,MO,rectangle,10,Dark Rectangle sighting in heavly populated St. Louis county flying low and silent +2000-01-05,38.7891667,-90.3225,Florissant,MO,rectangle,5,two story rectangle flys low and silent over the city of Florissant +2000-01-05,38.6366667,-90.0255556,Caseyville,IL,other,3600,high altitude glitering streak-too red orange 40' high ball lookig like jap riseing son of ww2,tree high . +2000-01-05,38.8113889,-89.9530556,Edwardsville,IL,triangle,45,I SEEN LIGHTS IN THE SKY IN A TRIANGLE SHAPED PATERN THE OBJECT HOVERED LESS THAN 1 MINUTE OVER THE EAST SIDE OF EDWARDSVILLE GOING TO +2000-01-05,38.6272222,-90.1977778,St. Louis (Mo)/Columbia (Il),MO,unknown,10,January 5th, 2000, 5 Dupo lights. +2000-01-05,42.2494444,-71.0666667,Milton,MA,triangle,90,I noticed a very bright light in the western sky at 5 AM while taking in my morning paper. At first, I thought it might be a star, but +2000-01-05,40.0288889,-75.6211111,Exton,PA,cylinder,6,3 cylinder objects moving east to west, 9:50 am, no sound, white with two rings in black on each craft. No wings visible. +2000-01-05,32.2836111,-83.4722222,Hawkinsville (3 Miles North, 100 Miles South Atlanta),GA,triangle,300,Object with 3 large spotlights making absolutely no noise as it flew over us. +2000-01-05,33.0416667,-116.8672222,Ramona (Ne San Diego),CA,light,120,Bright lights seen in Ramona mountains, California +2000-01-05,42.3286111,-88.1988889,Lakemoor,IL,triangle,600,a brite lite in the east moveing southwest two rows of 3 lites under craft high rate of speed when overhead a flash of lite then craft +2001-01-05,40.8052778,-74.2041667,Glen Ridge,NJ,oval,60,Transparent, glowing sphere soon followed by glowing oval. +2001-01-05,26.9294444,-82.0455556,Punta Gorda,FL,light,2700,Somthing in the eastern sky off SW FLORIDA And it is not the airforce.Toomany people to know +2001-01-05,46.4111111,-86.6477778,Munising,MI,triangle,1800,triangular UFO seen in munising, mi +2001-01-05,36.175,-115.1363889,Las Vegas,NV,circle,300,after a few second, I was dreadfully surprised. That big figure moved little bit, then suddenly disappeared!! +2001-01-05,34.7744444,-96.6780556,Ada,OK,fireball,360,While driving home in the evening I saw four objects I can't easily explain away moving fast in the western sky and then were gone. +2001-01-05,47.6063889,-122.3308333,Seattle,WA,sphere,60,I was walking home from work, and was within a block from home. I looked up and saw a object, very quiet, and I was wondering what kind +2001-01-05,42.9116667,-73.8686111,Ballston Lake,NY,teardrop,180,Teardrop shaped, small craft hovering about 50 ft from the road above Route 50 in Saratoga County on a snowy evening January 5, 2001. +2001-01-05,29.7352778,-94.9772222,Baytown,TX,cigar,900,LARGE OBLONG CIGAR SHAPED WINGLESS BRIGHT OBJECT MOVING EAST TO WEST OVER HOUSTON TEXAS +2001-01-05,47.1694444,-92.4761111,Cotton,MN,unknown,60,A stationary red light accerated incredibly fast and changed to orange color and traveled away at a high rate of speed +2001-01-05,42.2458333,-84.4013889,Jackson,MI,light,330,Very bright light from east, shoots off in to north sky? +2001-01-05,33.3061111,-111.8405556,Chandler,AZ,light,1200,red light ,hovering in north east sky .blinked on and off many times before going out . many airplane fly by during event. +2001-01-05,33.3527778,-111.7883333,Gilbert,AZ,light,780,Red light floating very high in the sky +2001-01-05,32.7152778,-117.1563889,San Diego,CA,light,300,A hovering bright red light which blinked off and on. It appeared to be a cluster of red lights which iluminated a triangle. +2001-01-05,32.7677778,-117.0222222,La Mesa,CA,circle,480,Bright red light in the night sky.Sometime later separate fluorescent white light falls from the sky to the ground. +2001-01-05,32.7677778,-117.0222222,La Mesa,CA,circle,480,I was sitting on my terrace when I saw a bright red light in the sky.At first I thought it was an aeroplane but I noticed that it didn' +2001-01-05,44.9444444,-93.0930556,St. Paul,MN,light,30,small airplane like, light, all of a sudden turn hugh and then speed off like a shooting star. +2001-01-05,38.4166667,-95.8527778,Lebo,KS,triangle,1200,I was outside on my back porch having a cold one with my friend when we heard some loud kind of poping noise and we looked up in the so +2002-01-05,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,15,Single hat shaped disk sighted at 8:40 a.m. for 15 seconds in sky towards the east +2002-01-05,34.4208333,-119.6972222,Santa Barbara,CA,disk,420,2 Fling Discs Seen In Santa Barbara 1-5-02 +2002-01-05,39.2902778,-76.6125,Baltimore,MD,light,600,2 light-shaped...things seen in Baltimore County one year ago, I report on it now +2003-01-05,32.905,-93.6966667,Plain Dealing,LA,light,3240,lights under clouded sky. red, blue, and green. no sounds. moved up,down,side to side, and stoped to hover at times no fast movement +2003-01-05,45.5236111,-122.675,Portland,OR,light,120,Red light above Portland +2003-01-05,43.8194444,-84.7686111,Clare,MI,disk,300,i saw a strange, steady light about 300 ft about the ground just east of us-127. i first noticed it just passed the clare exit headed +2004-01-05,47.7544444,-122.1622222,Woodinville,WA,triangle,360,Triangle with flashing white lights, red corners and red center light hovering over Woodinville, WA. +2004-01-05,35.3255556,-112.8766667,Seligman (Near),AZ,cigar,600,Cigar Shaped objects east of Seligman, AZ on I40 East +2004-01-05,35.3255556,-112.8766667,Seligman (40 Mi East Of),AZ,light,2100,Mysterious red lights hover at great speeds and preform unheardof manuvers over mt. range in northern Arizona. +2004-01-05,31.5747222,-111.3316667,Arivaca,AZ,disk,3600,high traffic area in Arivaca, S.E. Arizona numerous sightings of up to six objects at a time and low altitude chase +2004-01-05,38.9822222,-94.6705556,Overland Park,KS,fireball,300,Orange/Amber fireball that periodically "flares up" +2004-01-05,41.0747222,-73.7755556,Valhalla,NY,circle,2,BLACK CIRCULAR DISC +2005-01-05,47.4830556,-122.2158333,Renton,WA,circle,120,Hovering, circular UFO over Lake Washington, Renton WA, Early January 2005 +2005-01-05,34.1747222,-86.8436111,Cullman,AL,triangle,540,Me and a few friends were outside working on my fathers truck when we looked up and saw all saw a black triangular craft hover over us. +2005-01-05,26.6583333,-80.2416667,Wellington,FL,oval,960,i WAS TAKING SUNSET PICTURES ((NUFORC Note: One of several reports from same source. PD)) +2005-01-05,44.9194444,-123.3158333,Dallas,OR,cigar,120,UFO in Dallas Oregon - Hellicopters - Cigar shaped - Shooting sparks from the bottom! +2005-01-05,34.0522222,-118.2427778,Los Angeles,CA,fireball,10,I saw a green fireball travelling across the night sky towards earth. +2005-01-05,33.7877778,-117.8522222,Orange,CA,formation,120,9 lights in changing formation moving steadily southward +2005-01-05,36.0969444,-80.4194444,Lewisville,NC,triangle,600,OBJECT WAS 3 LIGHTS IN THE SHAPE OF A TRIANGLE WITH BEAMS OF LIGHT ((NUFORC Note: Student report. PD)) +2005-01-05,42.8863889,-78.8786111,Buffalo,NY,light,15,Two sets of red lights loop around the sky before disappearing. +2006-01-05,33.6188889,-117.9280556,Newport Beach,CA,circle,37800,strange bright object observed at noon over southern california +2006-01-05,33.7455556,-117.8669444,Santa Ana,CA,teardrop,37800,A statonary Round Metallic Object, Hovering at High Altitude over Central Orange County, CA. in early January 2006 +2006-01-05,36.0927778,-88.0055556,Chestnut Hill,TN,light,120,Two bright red lights above English Mountain +2006-01-05,40.2338889,-111.6577778,Provo,UT,triangle,8,details above +2006-01-05,33.3941667,-104.5225,Roswell,NM,flash,1,Unknown flash of light, High altitude +2006-01-05,32.9627778,-117.035,Poway,CA,light,1200,Two bright objects floating in the sky, all of the sudden dim and fly away. +2007-01-05,39.0997222,-94.5783333,Kansas City,MO,cylinder,16,I was taking my dog out at 2:23 AM on 01/05/07 and while looking to the East toward Liberty Missouri I saw the weirdest thing I have ev +2007-01-05,42.6433333,-86.2005556,Douglas,MI,other,240,Walking out to the peir on Oval beach north.Its about 8/10 a mile from the parking lot to the peir. Full moon very clear. The big dippe +2007-01-05,42.1102778,-88.0341667,Palatine,IL,chevron,120,((HOAX??)) We were walking home from blockbuster when we heard a huge roar over our heads. +2007-01-05,31.3058333,-82.2422222,Blackshear,GA,fireball,10,Big glow of neon green falling from the sky +2007-01-05,34.1083333,-117.2888889,San Bernardino,CA,triangle,3600,very bright white triangler. ((NUFORC Note: We suspect a sighting of one, or more, celestial bodies. PD)) +2007-01-05,34.54,-112.4677778,Prescott,AZ,teardrop,4,The object didn't appear to be a meteor, yet we didn't hear an explosion that would indicate an airplane crash. +2007-01-05,34.7302778,-86.5861111,Huntsville,AL,light,2,Rapidly moving object looks like it might impact ground +2007-01-05,32.7152778,-117.1563889,San Diego,CA,light,1,Green light appears in front of my brother and I and takes off across the sky away from us. +2008-01-05,40.1016667,-76.0855556,New Holland,PA,light,1200,shadowy light ending as sphere +2008-01-05,40.215,-104.8222222,Platteville,CO,chevron,300,3 sets of 2 long lights in chevron shape +2008-01-05,40.1811111,-74.6647222,Yardville,NJ,circle,120,Circle of light with a bright light in the center seen in New Jersey. +2008-01-05,35.8613889,-97.9313889,Kingfisher,OK,unknown,10,Large craft moving slowly, low to ground similar to Stephenville, TX +2008-01-05,29.7630556,-95.3630556,Houston,TX,light,1,Bright, light is stationery in the sky, then rapidly falls toward horizon +2008-01-05,30.155,-95.2111111,New Caney,TX,circle,3,Blue Circle UFO North Sky Texas +2009-01-05,33.9022222,-118.0808333,Norwalk,CA,sphere,420,Single craft that changed color and direction before disappearing into space. +2009-01-05,47.5405556,-122.635,Port Orchard,WA,flash,20,Bright flashes of changing color light filled the sky. +2009-01-05,41.5733333,-87.7844444,Tinley Park,IL,light,3600,3 balls of different lights, slowly rotating in a triangular formation were seen tonight over tinley park, il. +2009-01-05,34.3738889,-80.0736111,Hartsville,SC,light,720,Very high altitude object makes sharp 90 degree left turn then disappears +2009-01-05,40.7141667,-74.0063889,New York City,NY,unknown,900,Orbs over Manhattan +2009-01-05,40.8244444,-74.4175,Whippany,NJ,formation,240,Red lights in triangular formations seen for several minutes in Whippany (Morris County), NJ +2009-01-05,40.8216667,-74.4813889,Morris Plains,NJ,circle,1200,5 bright gold an red colored lights in arrow formations. Seen near Morristown, NJ +2009-01-05,43.9561111,-89.8180556,Adams,WI,triangle,600,((HOAX??)) ufo broked my car +2010-01-05,38.3552778,-87.5675,Princeton,IN,disk,15,Flying Saucer hovering above ground. +2010-01-05,32.64,-117.0833333,Chula Vista,CA,oval,10,One Oval Spining above Chula Vista +2010-01-05,40.5744444,-74.3025,Colonia,NJ,unknown,900,loud aircraft that could be heard for up to 15 minutes at its lowest rummble. +2010-01-05,40.6366667,-74.9102778,Clinton,NJ,cigar,1814400,Traveling to Pennylvania. +2010-01-05,41.7475,-74.0872222,New Paltz,NY,triangle,45,Black Triangular Aircraft w/ Three White Lights Flying Low in New Paltz, NY +2010-01-05,35.5511111,-80.4066667,Rockwell,NC,cigar,40,Brilliant silver/white silent object flew into sight, slowed, paused then faded from sight. +2010-01-05,34.5033333,-82.6502778,Anderson,SC,light,420,Orange light that set down in woods, got brighter, then left +2011-01-05,38.6858333,-121.3711111,North Highlands,CA,sphere,60,Red light shooting red objects down to earth. +2011-01-05,36.6827778,-101.4811111,Guymon,OK,circle,180,green and red lights in a shape of a circle close to the ground +2011-01-05,37.775,-122.4183333,San Francisco,CA,triangle,300,Black silent triangle hovering over a field. +2011-01-05,27.8002778,-97.3961111,Corpus Christi,TX,light,30,Lights in the Sky +2011-01-05,37.7477778,-84.2947222,Richmond,KY,light,60,I just pulled in to my drive way when i saw a light high in the sky. It was moving at a steady speed across the sky. It was a constan +2011-01-05,64.7511111,-147.3494444,North Pole,AK,triangle,1200,It was dark and we noticed six circular lights in a triangular formation pretty high up in the sky moving pretty slow from the south we +2012-01-05,41.4138889,-73.3038889,Newtown,CT,light,2400,Hovering, flickering light in the sky that moved erratically +2012-01-05,44.8555556,-85.8558333,Maple City,MI,egg,2400,I saw a round object, come over the top of my house, making a strange humming sound and the object was bright white, with a yellow dot +2012-01-05,36.9483333,-81.085,Wytheville,VA,triangle,10,Low flying object with alot of lights. +2012-01-05,45.5236111,-122.675,Portland,OR,fireball,3,Huge ufo breaks thru cloud break on its course to? +2012-01-05,43.3838889,-70.5452778,Kennebunk,ME,sphere,3,Green orb fell from sky. Seen while traveling down 95S by the kennebunk exit. ((NUFORC Note: Possible meteor?? PD)) +2012-01-05,35.2333333,-106.6638889,Rio Rancho,NM,unknown,120,A long beam of light extending from a light in the sky towards the earth, which disappears suddenly. +2012-01-05,44.0583333,-121.3141667,Bend,OR,light,10,Green light with blue glare moving steadily from south west to west. +2012-01-05,33.7630556,-81.245,Pelion,SC,fireball,300,2 Orange/Red Balls, Flying Low, No Sound +2012-01-05,38.0963889,-94.3608333,Rich Hill,MO,light,600,MO INVESTIGATORS GROUP REPORT: We had set about an hour and i noticed a strange light above the tallest hill in the river bottoms. +2012-01-05,41.1855556,-88.3097222,Gardner,IL,light,480,Unexplained bliking lights in Illinois. +2012-01-05,41.6763889,-71.9155556,Plainfield,CT,light,1200,Eastern CT - orange lights in the sky +2013-01-05,42.0083333,-91.6438889,Cedar Rapids,IA,circle,480,2 star like lights traveling slowly across cedar rapids sky. +2013-01-05,47.6063889,-122.3308333,Seattle,WA,circle,5,Lights over Aurora. +2013-01-05,40.3977778,-105.0744444,Loveland,CO,oval,900,The appearance of the object in the sky, its shape and ability to hover; the military jets suggested the gov't saw the object as well. +2013-01-05,33.6602778,-117.9983333,Huntington Beach,CA,triangle,300,4 glowing, orange, small, triangular lights. +2013-01-05,33.7091667,-117.9527778,Fountain Valley,CA,formation,1200,Cluster of glowing ufos in formation over Fountain valley at 5:45 PM Jan 5 2013. +2013-01-05,40.7988889,-81.3786111,Canton,OH,light,120,Multiple red lights moving across the sky. +2013-01-05,41.9533333,-73.7925,Milan,NY,fireball,2,A bright green firework/comet-like object descended to the ground at a 45-degree angle. ((NUFORC Note: Possible meteor?? PD)) +2013-01-05,34.0194444,-118.4902778,Santa Monica,CA,circle,10,Red glowing orb vanishes in to thin air. +2013-01-05,32.3344444,-96.1511111,Gun Barrel City,TX,circle,60,Red/Orange Orb Over East Texas 1-5-13. +2013-01-05,43.6613889,-70.2558333,Portland,ME,circle,240,2 glowing orbs silently flew over Portland. +2013-01-05,40.7883333,-74.1336111,North Arlington,NJ,fireball,180,Red fireball.. +2013-01-05,42.2666667,-72.6694444,Easthampton,MA,fireball,300,Witnessed a fireball pass perpendicularly over I-91 overpasses, lost sight, drove about a mile then took video. +2013-01-05,43.7072222,-88.99,Markesan,WI,triangle,300,Rock/triangle shaped objects in the sky +2014-01-05,40.7583333,-82.5155556,Mansfield,OH,oval,180,Very bright, reflective, gold, oval object low in the night sky. +2014-01-05,38.9516667,-92.3338889,Columbia,MO,light,25,MISSOURI INVESTIGATORS GROUP REPORT: Director witnesses strange, bright white light pass overhead. +2014-01-05,37.6625,-121.8736111,Pleasanton,CA,oval,5,Yellowish oval like object descend from sky and land. +2014-01-05,38.1302778,-121.2713889,Lodi,CA,rectangle,12,Heard an aircraft heading northbound, but, noticed it was moving slow and low over the houses and did not sound like a helicopter or an +2014-01-05,47.6588889,-117.425,Spokane,WA,sphere,900,Shiny spherical object traveling across sky SE-NW direction, hovers for 10 mins in NW, then leaves in N-S direction. +2014-01-05,33.8752778,-117.5655556,Corona,CA,other,300,Flock of "birds with headlights" glide over valley in Southern California. +2014-01-05,41.8136111,-71.3705556,East Providence,RI,light,600,Orange lights formation speed fast low multiple ufo. +2014-01-05,40.7608333,-111.8902778,Salt Lake City,UT,light,240,Red light not flashing moving slow and hovering then disappeared. +1978-01-06,39.6358333,-123.7819444,Westport (About 10 Miles North Of, Us Hwy.1),CA,other,900,Three humongus craft with about 30 saucers about them loading and unloading something. +1990-01-06,29.9544444,-90.075,New Orleans,LA,disk,1200,I was flying a Pan American A-300B4 (Airbus) from New York to Mexico City. Our route took us directly over Biloxi, Mississippi and the +1998-01-06,34.2163889,-119.0366667,Camarillo,CA,other,180,Multiple lights decend in formation, stop and form a swarm, then form two bright lights and mimic cessna and dissapear over horizon. +1999-01-06,32.8572222,-116.9213889,Lakeside,CA,flash,180,On Tuesday night at my job at the Barona indian reservation in Lakeside, Ca. another officer and I saw three white strobe-like craft ra +1999-01-06,32.7833333,-96.8,Dallas,TX,fireball,30,green fieball shoots across sky. +2000-01-06,39.9625,-76.7280556,York,PA,cigar,15,Daytime UFO siting in York, Pennsylvania by two witnesses at place of employment. +2000-01-06,37.775,-122.4183333,San Francisco,CA,chevron,240,translucent, silvery boomerang shape, totally silent, with short, feathering discharge from the back edge +2000-01-06,39.2988889,-96.8305556,Riley County,KS,teardrop,5400,Saw 2 craft white in color. 5 small jets were circling crafts. saw third craft half hour later. one jet following aircraft. +2000-01-06,33.8125,-84.6344444,Austell,GA,fireball,6,bright blue or white fireball flying at a high rate of speed. me and my boyfriend were heading to work when we saw the object in the sk +2001-01-06,47.2502778,-122.2925,Edgewood,WA,sphere,300,two orangeish red orbs floating slowly west +2001-01-06,45.6388889,-122.6602778,Vancouver,WA,diamond,20,2 diamond shaped craft, each with 6 glowing red "lights" on the bottom of the craft were viewed for approx. 20 seconds +2001-01-06,44.0783333,-116.9327778,Payette,ID,light,2700,Flashing light moving erratically for sustained period of time. +2001-01-06,44.0783333,-116.9327778,Payette,ID,light,3600,Third consecutive night of sighting. Very active tonight. +2001-01-06,38.4177778,-82.5863889,South Point,OH,sphere,600,the object had a bright white center and a weblike bright white formed structure forming the bottom, could not be a star because it van +2001-01-06,36.1538889,-95.9925,Tulsa,OK,light,10,Quick moving light that faded out. +2002-01-06,30.0797222,-95.4169444,Spring,TX,sphere,30,Silver sphere/rectangle object seen in clear blue sky above Spring, Tx. +2002-01-06,30.0969444,-95.6158333,Tomball,TX,triangle,120,Triangular Craft with bright white, red and green llights. +2002-01-06,34.1141667,-116.4313889,Yucca Valley,CA,disk,259200,1991 Yucca Valley, California These vessels are round and saucer shaped, plain with no identifying marks/a drab silver grey in color an +2002-01-06,33.3763889,-117.2502778,Fallbrook,CA,light,30,About 9.30pm I was walking my dog when I heard a military jet aproaching from the southeast, I saw a light which apeared to be a jet be +2002-01-06,32.8269444,-93.845,Gilliam,LA,cigar,300,object was 25-26 miles north, by north west of Shreveport la, moving in a north by north west direction. No noise or sound, four lights +2003-01-06,32.9975,-87.63,Moundville,AL,egg,109800,twp egg shaped objects with lights moving in z pattern...batteries and lights on our vehicles stooped when object approched us. +2003-01-06,32.7152778,-117.1563889,San Diego,CA,light,300,Three lights in the sky, moving in a snake-like pattern, appearing to follow ea. other. The first had 4 moving lights on it. +2003-01-06,34.0775,-117.6888889,Montclair,CA,fireball,10,burning or bright object not falling to earth but moving back to space moving from east horizon to west horizon less 10 sec. +2003-01-06,37.775,-122.4183333,San Francisco,CA,formation,20,I saw 3 formated UFOs. They changed formation slightly and were moving to the east. +2003-01-06,35.2269444,-80.8433333,Charlotte,NC,triangle,3600,3 independent bright lights form a triangular pattern...2 UFOs speed off and leave 1 that comes and goes...we have pics and video! +2003-01-06,48.7597222,-122.4869444,Bellingham,WA,cigar,165,High strangeness report - luminous UFO with possible satellite objects +2003-01-06,25.7738889,-80.1938889,Miami,FL,light,10,A light that looks like a star, then becomes brilliantly bright white light then disappears within a wink of an eye. . . +2003-01-06,38.5733333,-109.5491667,Moab,UT,fireball,30,2 fireball objects followed by U.S aircraft +2004-01-06,33.4483333,-112.0733333,Phoenix,AZ,light,900,Large bright white light over downtown Phoenix +2004-01-06,40.7705556,-74.2330556,West Orange,NJ,triangle,4500,UFO Triangular flying objects with red flashing lights in Northern New Jersey +2004-01-06,41.2888889,-72.6822222,Guilford,CT,triangle,300,A triangle shaped UFO rose straight up in the air, nose up, then stopped, straighted out so the nose was pointing at us and flew away. +2004-01-06,34.4263889,-117.3,Hesperia (Sse Of),CA,disk,420,Orange, non-blinking hovering object seen at approx 9:45 pm 1/6/2004 for approx 7 mins in Southern California (Hi Desert area) +2005-01-06,29.7630556,-95.3630556,Houston,TX,other,5400,A Comet or plane like object & twin tail (not paralell) visible for 90 minutes is SW sky near Houston at 6:00pm - 7:30pm. +2006-01-06,29.7630556,-95.3630556,Houston,TX,light,7200,Two lights in the sky with orbs surrounding them. +2006-01-06,32.2266667,-95.2252778,Whitehouse,TX,disk,300,1/6/06 a round silver object in Whitehouse ,TX +2007-01-06,33.4483333,-112.0733333,Phoenix,AZ,changing,2700,Night time Object seen over Phoenix, Az.. Changing shapes and colors. ((NUFORC Note: Sighting of a celestial body?? PD)) +2007-01-06,42.1816667,-87.8002778,Highland Park,IL,circle,14400,Bouncing circular light stays around the same position on every clear night. ((NUFORC Note: Sighting of a Sirius?? PD)) +2007-01-06,41.4138889,-73.3038889,Newtown,CT,circle,30,Bright round metalic object, so fast that I know it was no plane. (Lighting speed) it was disturbing to me. +2007-01-06,37.1261111,-122.1211111,Boulder Creek,CA,other,900,Bight point of light drifting slowly over the Monterey Bay 1/6/07 +2007-01-06,45.52,-123.1094444,Forest Grove,OR,sphere,4,Big Blue Orb Flying low near Forest Grove Oregon, USA. +2007-01-06,33.0894444,-80.8141667,Smoaks,SC,fireball,600,object was seen above tree line and was very bright.object was hovering and was slowly dropping lower on the horizon.got into my car wi +2007-01-06,41.7002778,-73.9213889,Poughkeepsie,NY,unknown,4,7-9 dull red balls of light seen in high speed chevron shape +2007-01-06,25.7738889,-80.1938889,Miami,FL,oval,240,2 UFOs Over Miami 1/6/07 +2007-01-06,42.1083333,-72.0791667,Sturbridge,MA,cylinder,900,It shot up into the sky and was gone in seconds. ((NUFORC Note: Student report. PD)) +2007-01-06,39.7402778,-94.2408333,Cameron,MO,cone,7200,7 cone-shaped crafts illuminated in pink light. ((NUFORC Note: Perhaps not a serious report. We cannot be sure. PD)) +2007-01-06,33.4222222,-111.8219444,Mesa,AZ,circle,30,A brilliant orb hung motionless then moved directionally side to side, up/down turned west - could see aircraft was circular. +2007-01-06,33.4222222,-111.8219444,Mesa,AZ,circle,60,Brilliantly glowing object could move directionally anyway, silent and houvered in a circular pattern and was a circular shape. +2008-01-06,41.6475,-77.6605556,Germania,PA,triangle,600,UFO lands in Pa. Slowly tipping side to side manuvers under power lines & around a pine tree & gone. +2008-01-06,32.4486111,-99.7327778,Abilene,TX,light,10,Two lights moving west to east +2009-01-06,28.3197222,-80.6077778,Cocoa Beach,FL,other,4,Slow moving shooting star with unnatural light. +2009-01-06,37.4308333,-79.1233333,Madison Heights,VA,light,18000,all are welcome +2009-01-06,35.0427778,-120.475,Nipomo,CA,other,900,Unknown fiery object off coast in Nipomo, CA. ((NUFORC Note: Possible sighting of Venus? PD)) +2009-01-06,34.1063889,-117.5922222,Rancho Cucamonga,CA,light,1380,Two star like bright lights moving in oppostie directions and one changing directions in the clear morning skies of Rancho Cucamonga +2009-01-06,34.5794444,-118.1155556,Palmdale,CA,light,1800,Abnormaly bright light hovering above the western horizon for 20 min. Very strange, piqued my curiosity. ((NUFORC Note: Venus. PD)) +2009-01-06,35.2219444,-101.8308333,Amarillo,TX,triangle,120,Two, maybe three, possible ufos of triangle shape- one of which was moving slowly. +2009-01-06,30.4852778,-92.8505556,Kinder,LA,teardrop,600,Sighting in rural Louisiana, teardroped object rising and falling about 100 yards in the sky. +2010-01-06,32.7152778,-117.1563889,San Diego,CA,light,1200,Unusual silent, orange glowing light stopping changing direction and discharging sudstance. +2010-01-06,34.0480556,-118.5255556,Pacific Palisades,CA,teardrop,300,I was at home in my condo at night.My condo faces the back of the 16 unit building. +2010-01-06,35.2505556,-91.7361111,Searcy,AR,disk,3600,disc shape hovering above Searcy, AR +2011-01-06,42.6608333,-77.0541667,Penn Yan,NY,flash,180,erratic bright white flashes, silent, lighting up the sky near south shore of Lake Ontario +2011-01-06,41.0144444,-80.4369444,Edinburg,PA,fireball,1800,A single strange redish-orange light in the sky. +2011-01-06,38.4147222,-78.9388889,Dayton,VA,other,15,Spotted a large meteor heading west +2011-01-06,44.0522222,-123.0855556,Eugene,OR,triangle,240,huge triangle with 3 lights +2011-01-06,36.3983333,-78.1555556,Warrenton,NC,chevron,1200,Bright lights and craft within a week. +2011-01-06,38.4147222,-78.9388889,Dayton,VA,unknown,15,Large meteor passes earth +2011-01-06,41.6611111,-91.53,Iowa City,IA,triangle,10,Triangular aircraft with white and red lights. +2011-01-06,33.5988889,-117.2791667,Wildomar,CA,fireball,180,a ball of light that looked like a metor then broke into three objects ((NUFORC Note: Suspected parachute jumpers. PD)) +2011-01-06,33.5988889,-117.2791667,Wildomar,CA,fireball,60,A falling large fireball that broke into 3 hovering pieces before vanishing. ((NUFORC Note: Suspected parachute jumpers. PD)) +2011-01-06,33.5988889,-117.2791667,Wildomar,CA,fireball,120,Large ball of glowing light with glittering tail breaks into three pieces, hovers in mid air and then vanishes without a trace. +2011-01-06,33.5538889,-117.2130556,Murrieta,CA,triangle,240,Object with 3 very bright lights that made no sound in a triangle shape ((NUFORC Note: Suspected parachute jumpers. PD)) +2011-01-06,30.5763889,-94.1761111,Fred,TX,unknown,120,Bright orange/red glow in the sky +2011-01-06,33.7283333,-117.1455556,Menifee,CA,fireball,120,Fireball west of Menifee Ca, split into 3 balls then hovered. ((NUFORC Note: Suspected parachute jumpers. PD)) +2011-01-06,33.5538889,-117.2130556,Murrieta,CA,fireball,300,Fireball splits into 3 balls and hovers ((NUFORC Note: Suspected parachute jumpers. PD)) +2011-01-06,33.6680556,-117.3263889,Lake Elsinore,CA,disk,180,Three craft arranged in triangle formation that hovered and then dissappeared. ((NUFORC Note: Suspected parachute jumpers. PD)) +2011-01-06,33.5538889,-117.2130556,Murrieta,CA,fireball,180,I saw 3 falling balls of fire that turned into three bright white triangle lights.((NUFORC Note: Suspected parachute jumpers. PD)) +2011-01-06,33.4936111,-117.1475,Temecula,CA,fireball,300,Falling fireball that split into three then disapeared. ((NUFORC Note: Suspected parachute jumpers. PD)) +2012-01-06,36.7958333,-89.9577778,Dexter,MO,circle,120,White, Blue and Red Flashing Light In Sky Over Dexter, MO +2012-01-06,35.7330556,-81.3413889,Hickory,NC,cigar,900,Large cigar shaped craft floating over Hickory. +2012-01-06,32.2216667,-110.9258333,Tucson,AZ,light,10,In Tucson Az I saw a point of light moving over the Catalina Mountains. It appeared to be rotating or tumbling. It was about 9:05 Am, +2012-01-06,32.2216667,-110.9258333,Tucson,AZ,oval,10,Pure white oval object seen at the Catalina Mountain Range, Tucson, Az. 01/06/12 +2012-01-06,42.2408333,-83.2697222,Taylor,MI,fireball,120,Red fiery object witnessed by 3 adults. +2012-01-06,41.5611111,-74.1888889,Walden,NY,other,20,Silent rotating dazzling object in low altitude with spiral trail. +2012-01-06,40.7141667,-74.0063889,New York City (Queens),NY,fireball,15,While standing on the broad channel train station platform looking north i observed 40 -50 ufo's (fireballs) traveling in military like +2012-01-06,40.1063889,-75.1088889,Rydal,PA,triangle,180,Low flying triangle over Valley Road in Rydal, PA. +2012-01-06,35.2244444,-96.6702778,Seminole,OK,circle,200,Silver ball shaped object near jet, moved in opposite direction of jet, blinked like a star, heavy jet traffic +2012-01-06,37.1041667,-113.5833333,Saint George,UT,other,240,Lights followed by massive, round silhouette. +2012-01-06,42.1944444,-71.2,Norwood,MA,triangle,120,Strange Object Flying Over Norwood +2012-01-06,40.4058333,-79.9122222,Homestead,PA,light,10800,UFO sighting lasts three hours followed by air force jets and black silent no light helicopters. +2012-01-06,36.175,-115.1363889,Las Vegas,NV,light,45,Light west of Las Vegas, NV +2012-01-06,38.2883333,-78.9133333,Weyers Cave,VA,triangle,3600,Triangle Aircraft With Bright Lights +2012-01-06,31.2655556,-82.6605556,Millwood,GA,disk,60,Two objects over millwood georgia . They were lit up with several distinct orange lights. They disappeared with no trace for about ten +2012-01-06,27.0438889,-82.2361111,North Port,FL,circle,2400,Possible UFO landing in North Port Floria +2012-01-06,38.9736111,-92.7430556,Boonville,MO,unknown,600,...the red lights were actually hovering over the truck stopped in the middle of Hwy 87. +2012-01-06,39.1588889,-108.7283333,Fruita,CO,light,900,Saw 5 lights or glowing orange yellow and red orbs lights you could say for about 15 mins +2012-01-06,32.3413889,-90.3216667,Clinton,MS,flash,180,UFO"s are real but MUFON is not +2012-01-06,42.7294444,-94.4475,Gilmore City,IA,disk,900,Red/blue flashing disc in se sky. about 65 degrees just sitting there. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2012-01-06,35.9797222,-78.51,Wake Forest,NC,light,300,5 red/orange lights high up in the sky moving east above target in wake forest nc +2012-01-06,35.2269444,-80.8433333,Charlotte,NC,light,120,3 Glowing Orbs glide across the night sky in triangle shape. +2012-01-06,48.1958333,-114.3119444,Kalispell,MT,rectangle,600,Sighting of three craft over Kalispell MT, in a triangle flight pattern. +2012-01-06,33.4222222,-111.8219444,Mesa,AZ,sphere,120,3 orange globes hovering in the sky +2012-01-06,45.6388889,-122.6602778,Vancouver,WA,fireball,720,2 then 1 fireball that changed from white to yellow, orange, red, & blue moving over battle ground to washougal and on to Mt. Hood. +2012-01-06,34.7391667,-112.0091667,Cottonwood,AZ,light,720,MYSTERIOUS LIGHT over southern portion of MINGUS MT +2012-01-06,37.7477778,-84.2947222,Richmond,KY,unknown,60,Encounter of the third kind. 500 Lights On Object0: Yes +2012-01-06,42.1013889,-72.5902778,Springfield,MA,rectangle,420,What looked like a group of stars I beilive to be a UFO. +2013-01-06,34.2011111,-118.5972222,Canoga Park,CA,light,60,Very bright white light, even glowing object, the size was about two 747 airplaines nose to tail. +2013-01-06,29.875,-98.2622222,Canyon Lake,TX,triangle,300,First a triangle bright no sound then transformed into a circular object. No movement then progressed quietly. +2013-01-06,41.2230556,-111.9730556,Ogden,UT,cigar,60,Possible UFO Sighting On the 6 th of January I decided to get a new wallpaper photo for my phone. It was a sunny and cold day. +2013-01-06,25.7738889,-80.1938889,Miami,FL,formation,120,White dots flying in V formation. +2013-01-06,36.3125,-95.6158333,Claremore,OK,light,720,Very bright light, changed shapes, flashing lights, went straight up in sky, had smoke coming out. +2013-01-06,39.8016667,-89.6436111,Springfield,IL,circle,120,Two circular red glowing orbs. Not pulsating. +2013-01-06,38.5130556,-90.4358333,Fenton,MO,light,1200,I & two others were driving westbound on highway 44 towards Fenton Missouri. I was sitting in the rear of the car when I happen. +2013-01-06,42.0083333,-91.6438889,Cedar Rapids,IA,light,600,5 bright orange lights moving together, hovering, then disappearing quickly - no sound. +2013-01-06,48.4111111,-114.3366667,Whitefish,MT,other,120,Spotted being seen by don k chevrolet and glacier bank right in town headed torward glacier park four leaf clover shaped ship lots of +2013-01-06,39.8466667,-75.7119444,Kennett Square,PA,unknown,1800,Flashing light hovers in sky. +2013-01-06,32.9975,-87.63,Moundville,AL,triangle,600,3 adults witnessed 7 lighted flying objects moving in a straight line the last one falling. +2013-01-06,33.2147222,-97.1327778,Denton,TX,circle,10,Circular orange light fell from sky then disappeared. +2013-01-06,40.3875,-75.79,Oley,PA,circle,2700,Numerous red orbs above Oley. +2013-01-06,41.6527778,-70.2833333,Hyannis,MA,oval,2700,UFO seen in downtown Hyannis on two occasions within the hour of January 6, 2013. +2013-01-06,36.8188889,-76.2752778,Chesapeake,VA,triangle,900,Dark triangular craft with bright yellow light and smaller red and blue lights moved at pace of 25-30 mph. +2014-01-06,42.2458333,-84.4013889,Jackson,MI,unknown,2400,Object originally thought to be airplane skipped half of the sky while surrounded my columns of light. +2014-01-06,36.8188889,-76.2752778,Chesapeake,VA,disk,90,A large white disk shaped object hovering or floating in sky on a clear morning and then it vanished. +2014-01-06,41.3572222,-88.4211111,Morris,IL,disk,240,Have photos, clear day!!! +2014-01-06,36.676944399999996,-82.7422222,Clinchport,VA,cylinder,30,Day time solid white cylinder craft 1300 ft away hovering over mountain top next to VA interstate 23. +2014-01-06,40.2883333,-75.2094444,Chalfont,PA,disk,60,Disk seen following fighter jet and intercepted by second fighter jet. +2014-01-06,40.2413889,-75.2841667,Lansdale,PA,sphere,300,Silver sphere following plane two occasions in 5 minutes, broad daylight, obviously a structure of sort +2014-01-06,40.0888889,-75.7722222,Glenmoore,PA,formation,60,Orange lights that flew in formation. +2014-01-06,38.2097222,-84.5588889,Georgetown,KY,circle,30,Two orange lights moving due south to due north combining as one then disappearing with no sound. +2014-01-06,37.8016667,-80.4458333,Lewisburg,WV,triangle,1200,((NUFORC Note: Witness provides no information. PD)) +2014-01-06,32.7152778,-117.1563889,San Diego,CA,light,20,White round light, high in northwest sky. Brighter than Jupiter. Slowly shrank to the size of satellite, then moved to the northwest. +2014-01-06,26.5625,-81.9497222,Cape Coral,FL,light,180,Two lights moving rapidly in two circular patterns that intersected. +2014-01-06,37.1305556,-121.6533333,Morgan Hill,CA,light,30,1/6/14, 22:00, Morgan Hill, CA, sky lit up in a huge brilliant green light from the ground up, behind possibly several miles of hills. +2014-01-06,36.5858333,-79.3952778,Danville,VA,unknown,1200,White Lights no sound. +2014-01-06,37.9736111,-122.53,San Rafael,CA,light,180,8 bright, star-like objects in formation in the night sky. +2014-01-06,37.775,-122.4183333,San Francisco,CA,changing,300,Bright orange ball over San Francisco changed shape and repeated. +2014-01-06,43.6230556,-96.9422222,Hartford,SD,other,420,Orange glowing planet sized object on horizon. +1980-01-07,35.4675,-97.5161111,Oklahoma City,OK,other,600,Man repts. football-shaped obj., 30-40' long on N side of I-240. "Skin" appeared to " rotate" around 2 axes (!). +1990-01-07,61.7113889,-148.8941667,Sutton,AK,changing,420,Well it hoovered about 200 feet above us for about 7 minutes then flew off in to space at about 150 degrees, going at about 300mph. +1995-01-07,40.5186111,-74.4125,Edison,NJ,fireball,120,On the mentioned date, I was with a friend of mine at a local overlook area called Washington Rock. It was shortly after sunset. We w +1996-01-07,43.6136111,-116.2025,Boise,ID,triangle,300,Huge triangle shaped object seen hovering over Boise Idaho +1997-01-07,39.0283333,-84.2177778,Amelia,OH,light,300,We saw a large "spotlight" at about 100-150 ft directly above us. It had one flashing red light above the spotlight and two white light +1998-01-07,47.4830556,-122.2158333,Renton,WA,sphere,300,I was watching TV in my brothers room when something in his window caught my eye. At first it looked like a balloon in the far off dis +1998-01-07,40.7141667,-74.0063889,New York City (Brooklyn),NY,diamond,60,Me and my friend were playing soccer and then we saw a big diamond shape with 3 huge lights.Then the shape flashed into the sky. +1999-01-07,35.2269444,-80.8433333,Charlotte,NC,triangle,300,3 dark in color triangular type objects moving in a loose formation N. As other aircraft flew above from local airport, objects seemed +1999-01-07,34.2572222,-118.6002778,Chatsworth,CA,light,3,SMALL GREEN DOT,QUITE HIGH ALTITUDE,TRAVELING NORTH TO SOUTH AT EXTREMLY HIGH SPEED.WAS NOT METEOR OR SHTNG.STAR.IT JUST FLEW OVER THE +1999-01-07,41.2411111,-77.0013889,Williamsport,PA,other,240,2 lights flying in "formation" blinking white/yellow, then green/blue, then red then joined and other white lights came in quickly to c +1999-01-07,30.4380556,-84.2808333,Tallahassee,FL,diamond,180,3 minute video-two objects in sky-1st very large bright white saucer shapedlight with four legs-descends below house behind sub-2nd obj +1999-01-07,30.4380556,-84.2808333,Tallahassee,FL,diamond,180,White and red objects in sky videotaped over Tallahassee, Fl is a no go. The local police report a business in the area has been shinin +2000-01-07,47.2502778,-122.2925,Edgewood,WA,sphere,600,two very bright amber colored orbs on a trajectory +2000-01-07,41.5094444,-90.5786111,Rock Island,IL,circle,2,Green fireball in the ENE, visible from about 40 degrees above the horizon to about 5 degrees, seemed to fall straight toward the groun +2000-01-07,36.175,-115.1363889,Las Vegas,NV,unknown,600,hypersonic arcraft entering Nevada Test Site airspace +2000-01-07,38.7072222,-121.28,Citrus Heights,CA,unknown,900,We saw 6 lights that seemed to hover in like a triangular formation. They seemed to be suspended in air. When they moved they all seeme +2000-01-07,41.9438889,-85.6325,Three Rivers,MI,fireball,10,The night of January 7th I spotted a very bright lime green firebal? streaking past our living room window. Irt was between 1st and 3rd +2000-01-07,40.3061111,-121.0047222,Westwood (Los Angeles),CA,formation,40,Saw, sitting in the garden, 4 star like dots, similar to satellite but moving much faster,heading in V formation (no leader) East-West +2000-01-07,32.3666667,-86.3,Montgomery,AL,triangle,300,low slow bright light, no sound +2001-01-07,37.2147222,-93.8397222,Miller (Outside Of),MO,triangle,60,a wild night after work +2001-01-07,47.6063889,-122.3308333,Seattle,WA,light,120,Ravena St and I5 two men were looking at the sky and pointing up, i believed they were bird watching,but i realized they were pointing +2001-01-07,39.4152778,-81.455,Marietta,OH,light,5,Bright light go's threw 1/2 the sky and over the horizen in 5 sec. +2001-01-07,26.6636111,-80.7163889,South Bay,FL,cone,3600,THE OBJECT WAS AS BRIGHT AS FIVE STARS WHICH ATTRACTED MY ATTENTION AND CAUSED ME TO STOP ROLL DOWN MY WINDOW AND TAKE A DIGITAL PICTUR +2002-01-07,29.7630556,-95.3630556,Houston,TX,light,180,January 7, 2002 Monday, I was going to work at 6:30 a.m. outbound on 45. When I was past the beltway I saw a huge light in the sky to m +2002-01-07,35.5938889,-105.2233333,Las Vegas,NM,other,1800,bye bye footage +2002-01-07,34.8525,-82.3941667,Greenville (Near),SC,other,300,Cluster of 15-25 objects moving in a SSW direction, with 3 of the objects making distinct manouvers suggesting some kind of intelligenc +2002-01-07,37.5536111,-77.4605556,Richmond,VA,fireball,2,Green fireball visible thru thick, low clouds. +2002-01-07,38.8902778,-77.0844444,Arlington,VA,fireball,2,Bright green light seen through cloudcover which lasted only a second or two, with no sound or sonic boom. +2002-01-07,37.5536111,-77.4605556,Richmond,VA,light,2,My coworker saw the blueish light too!!! +2002-01-07,37.5536111,-77.4605556,Richmond,VA,light,3,horizontal moving bluish green light +2002-01-07,39.5358333,-76.3486111,Bel Air,MD,egg,5,Flourscent Green blue centered egg shaped object crossed our field of vision in a curved path and instantly disappered +2002-01-07,39.2902778,-76.6125,Baltimore,MD,sphere,5,Streaking white light that turned blue and accelerated at incredible speed +2002-01-07,38.5402778,-76.5847222,Prince Frederick,MD,light,3,Bright green light seen in sky for few seconds moving to the South in the southern maryland / chesepeake bay region. +2002-01-07,38.7072222,-77.0233333,Fort Washington,MD,teardrop,2,Luminous green, white outlined tear shaped object moving quickly accross the sky in a dwonward curve. +2002-01-07,29.6908333,-95.2088889,Pasadena,TX,light,2700,multiple lights bring on heavy air traffic from militray base +2002-01-07,37.4947222,-120.8455556,Turlock,CA,circle,10,5 White luminescent objects were seen in single file, equally spaced, East to West path and covered 115 degrees of sky in 10 seconds. +2003-01-07,39.9522222,-75.1641667,Philadelphia,PA,disk,180,Sting Ray Shaped UFO Over Philadelphia , PA +2003-01-07,41.6680556,-87.7963889,Palos Heights,IL,cross,600,An X shaped object coming from south-west, hovering in sky and quickly left to the east. +2003-01-07,40.9466667,-124.0994444,Mckinleyville,CA,unknown,1800,An object was seen over the ocean flashing many different colored lights and moving in a quick, unpredictable fashion. +2003-01-07,32.64,-117.0833333,Chula Vista,CA,light,1800,20 Minutes +2003-01-07,40.4405556,-79.9961111,Pittsburgh,PA,diamond,60,I was walking to the local Drug store when i looked in the sky and saw a huge diamond shape craft giong acoss the sky extremely fast. I +2003-01-07,29.7630556,-95.3630556,Houston,TX,light,600,Bright light in the sky +2003-01-07,35.3658333,-120.8488889,Morro Bay,CA,sphere,120,A round orb with flashing lights near Highway 1 coming into Morro Bay. +2003-01-07,47.7180556,-116.9505556,Post Falls,ID,teardrop,14400,Several teardrop shaped fading lights, emmited soft sighing sound. It felt like 10 minutes, but lasted 4 hours. +2004-01-07,41.7658333,-83.6280556,Lambertville,MI,changing,1705,Changed shape from a white ball of bright light to a triangle looking object. Only colors were bright white. Unearthly type speed. +2004-01-07,40.6936111,-89.5888889,Peoria,IL,unknown,20,A bright light in the sky, mid-afternoon, moved unbelievably fast and was gone. +2004-01-07,33.9191667,-118.4155556,El Segundo,CA,sphere,15,High speed ball follows jet, and becomes two smaller objects. +2004-01-07,34.4358333,-119.8266667,Goleta,CA,triangle,30,Saw 3 lights in a triangle shap and a still position in the night sky. +2004-01-07,34.0027778,-84.1447222,Duluth,GA,triangle,300,MUFON/GEORGIA FOLLOW-UP REPORT: Large Dark Triangle +2004-01-07,41.7636111,-72.6855556,West Hartford,CT,triangle,600,2 Trangular Craft Seen +2005-01-07,35.3733333,-119.0177778,Bakersfield,CA,sphere,180,sphere flying over traffic congestion in Bakersfield Ca January 05 +2005-01-07,40.7141667,-74.0063889,New York City (Manhattan),NY,cylinder,300,The objects moved slowly from east to west +2005-01-07,42.6583333,-71.1375,Andover,MA,chevron,120,Stationary Chevron Shaped Object visible above tree top level... +2005-01-07,41.9427778,-79.9847222,Waterford,PA,unknown,120,Floating Craft zooms away as I stop to look at it, weird! +2005-01-07,25.7738889,-80.1938889,Miami,FL,disk,10,Location: Miami, Florida. The incident occurred between 8:51 and 8:53pm Eastern Time. The observers cannot be more precise about the +2005-01-07,25.7738889,-80.1938889,Miami,FL,other,10,Unusual object traveled at rapid speed across Miami nighttime sky +2005-01-07,37.5536111,-77.4605556,Richmond,VA,fireball,2,A light outside Richmond, Virginia. +2006-01-07,33.4483333,-112.0733333,Phoenix,AZ,sphere,4,2 Women Witness Falling green shere in Phoenix @ 2AM on Dunlap Avenue; unusually desolate +2006-01-07,35.9555556,-80.0055556,High Point,NC,fireball,3,Bright green streak falling towards earth +2006-01-07,40.7011111,-74.2305556,Hillside,NJ,cigar,180,i was looking up at the clouds and noticed a white cigar shapped object. it looked like it had two little fins on each side. it was mov +2006-01-07,38.1666667,-80.9119444,Mt. Lookout,WV,cigar,20,cigar shaped object disappeared in the sky +2006-01-07,42.3508333,-73.8033333,Coxsackie,NY,triangle,30,Triangular flying craft with red lights on points and on triangle framework, flying low, silent, traveling quickly in Hudson Valley, NY +2006-01-07,39.6427778,-84.2866667,Miamisburg,OH,rectangle,180,QUIET, LIGHTED, TRIANGULAR SHAPED OBJECT +2006-01-07,32.9313889,-95.8711111,West Point,TX,light,120,white light moving rapidly across night sky, got brighter/faded then reversed direction, West Point, Tx +2007-01-07,41.4994444,-81.6955556,Cleveland,OH,unknown,7200,Strange lights over Cleveland +2007-01-07,33.94,-118.1316667,Downey,CA,fireball,300,Bright Fire Object moving over city in Downey, California +2007-01-07,33.5833333,-95.9097222,Honey Grove,TX,circle,120,01/07/07 abt. 6:30am. Honey Grove, Tx. Circle 2 min.A circle of light just above the horizon/ stationary then moved east. +2007-01-07,46.7163889,-122.9530556,Centralia,WA,circle,5,GREEN BALL FLYING FAST WITH NO SOUND +2007-01-07,29.615,-99.5266667,Utopia,TX,other,5,It looked like a bright star was towing another lesser star by a faint line of light. +2007-01-07,40.6083333,-75.4905556,Allentown,PA,other,30,bright round white-ish object north of allentown PA +2007-01-07,38.5816667,-121.4933333,Sacramento,CA,teardrop,1,Very fast moving, dark grey teardrop-shaped object flies over Sacramento CA. +2007-01-07,28.9886111,-80.9025,Edgewater,FL,circle,3600,red moving circle and glowing circle that followed me. +2007-01-07,46.7163889,-122.9530556,Centralia,WA,circle,5,GREEN BALL FLYING FAST WITH NO SOUND +2007-01-07,47.9130556,-122.0969444,Snohomish,WA,light,360,One large bright hovering twinkling light that separated into three dimmer lights that twinkle and then extinguished one by one. +2007-01-07,47.0075,-122.9080556,Tumwater,WA,light,300,A very bright yellow/white light hovering or perched on the Black Hills. +2007-01-07,35.3272222,-96.925,Shawnee,OK,light,120,Bright object with red light flashing across the sky in Shawnee, Oklahoma +2008-01-07,25.4683333,-80.4777778,Homestead,FL,oval,1800,I saw small objects arranged around one larger object, both emitting bright light. +2008-01-07,32.8338889,-109.7069444,Safford,AZ,cross,900,"T" shaped red object formation +2008-01-07,41.7797222,-71.4377778,Cranston,RI,circle,240,round golden glowing orb with spike shaped projections +2008-01-07,48.7597222,-122.4869444,Bellingham,WA,light,300,Moving, unblinking, fading from very bright to dull silvery-white light (about three times a planet's size) +2008-01-07,39.9522222,-75.1641667,Philadelphia,PA,triangle,60,A triangular craft flew from east to west.The craft had bright white lights and one red light and was flying very low.There was no soun +2008-01-07,38.6369444,-77.3113889,Dale City,VA,flash,10,circel deep blue flash light in Dale city +2008-01-08,32.2205556,-98.2019444,Stephenville,TX,disk,2700,Thought you might want to know about this in case you haven't already. +2009-01-07,34.61,-112.315,Prescott Valley,AZ,unknown,120,This unknown object my husbands car turn off. +2009-01-07,33.4661111,-94.2883333,Hooks,TX,light,1800,3 UFO's sighted, two wittnesses, happened only a few hours ago +2009-01-07,34.1063889,-117.5922222,Rancho Cucamonga,CA,light,600,Second sighting of a bright light moving from left to right high up in the clear blue sky early morning in Rancho Cucamonga, ca +2009-01-07,34.0522222,-118.2427778,Los Angeles,CA,other,1800,black ufo over los angeles +2009-01-07,34.0577778,-79.7533333,Effingham,SC,oval,30,Yellow/orange lights turning on one by one in a semi circle - looked like it was spinning. Saw 6 lights before I looking away... +2009-01-07,29.0488889,-82.4611111,Dunnellon,FL,light,7200,Bright large object over dunnellon florida lasting about 2 hrs from 7:00pm / 9:00 that I know of ((NUFORC Note: Probably Venus. PD)) +2009-01-07,36.0113889,-91.3988889,Calamine,AR,unknown,10,Silent object near house at low altitude and considerable speed with lights. +2009-01-07,34.3991667,-118.9172222,Fillmore,CA,light,1800,several flickering bright objects sometimes moving rapidly +2009-01-07,33.8572222,-84.02,Snellville,GA,triangle,30,4 bright round white lights - Triangle formation Southbound - Snellville GA +2009-01-07,32.4977778,-88.8458333,Collinsville,MS,light,1500,Group of people see, photograph, a bright object in sky. ((NUFORC Note: We have requested more information. PD)) +2010-01-07,40.8841667,-72.39,Southampton,NY,formation,30,7 dim lights triangular formation 30 sec easterly direction off long island ny +2010-01-07,42.0333333,-71.2194444,Mansfield,MA,light,180,Bright lights aligned with Castor and Pollux +2010-01-07,41.3888889,-70.5138889,Edgartown,MA,circle,50,UFO Sighting 01/07/12010 My wife and I were sitting in our hot tub when we saw it. It was almost overhead traveling from west to eas +2010-01-07,42.8005556,-71.3047222,Windham,NH,light,2,Bright white flash on the southwestern horizon +2010-01-07,42.3916667,-71.7041667,West Boylston,MA,light,1,Bright Florissant-green, circular light arching downward with a trail of the same color. ((NUFORC Note: Possible meteor? PD)) +2010-01-07,41.2852778,-72.4480556,Westbrook,CT,triangle,180,Very large (747ish), low flying, slow moving (30-50 mph), and absolutely silent triangular object w/3 lights. +2011-01-07,34.9386111,-82.2272222,Greer,SC,fireball,180,I was standing on my porch looking and as soon as I looked in the sky I saw an orange fireball. It appeared as though it was there befo +2011-01-07,33.7211111,-85.1455556,Bremen,GA,other,7200,Extremely bright white light with red light that went on and off and very distinct large beams eminating from it that glowed green. +2011-01-07,33.2,-117.2416667,Vista,CA,egg,240,Zig sagged light in sky +2011-01-07,26.5625,-81.9497222,Cape Coral,FL,light,300,4 red lights in Cape Coral FL +2011-01-07,29.5569444,-95.8083333,Rosenberg,TX,other,150,an octangular object was flying above highway 59. +2012-01-07,39.0911111,-94.4152778,Independence,MO,sphere,120,Blue sphere in northern sky.went south at hi speed changing to a greenish color and vanished.the moon was bright and seemed to have a b +2012-01-07,33.4222222,-111.8219444,Mesa,AZ,light,900,They looked like the Brazil UFO on January 3 video on YouTube. A cluster of around 12. +2012-01-07,39.6416667,-77.7202778,Hagerstown,MD,triangle,1800,Triangle shape white light in southern sky over Hagerstown, Md. +2012-01-07,39.7155556,-82.9530556,Ashville,OH,sphere,10,At 3:30 on January 7, 2012 I was hunting on my fathers farm just South of Ashville, Ohio. I was looking up at the sky and all of a su +2012-01-07,25.9561111,-80.1394444,Aventura,FL,fireball,5,Whatever this was, we've never seen anything like it +2012-01-07,37.3861111,-122.0827778,Mountain View,CA,chevron,10,Chevron shaped craft near Moffett Field Airbase +2012-01-07,41.4813889,-73.2136111,Southbury,CT,other,180,Orange light travelling with intent in sky, no fuseage, just light. +2012-01-07,34.4838889,-114.3216667,Lake Havasu City,AZ,sphere,2700,UFO Caught on Tape January 7th 2012 +2012-01-07,27.5872222,-82.4252778,Parrish,FL,light,600,Redish Orange light floating over Parrish FL. Changes from Orange to Grey and floats in one spot. +2012-01-07,43.55,-96.7,Sioux Falls,SD,formation,180,Eight lights in southeast Sioux Falls +2012-01-07,20.785,-156.4655556,Kihei,HI,formation,600,Seriously Large bright lighted crafts about 8 in perfect formation over the Kihei sky's tonight . +2013-01-07,42.1013889,-72.5902778,Springfield,MA,light,240,((HOAX??)) Young man and woman are awakened by a loud humming sound; they are pressed down in their bed. +2013-01-07,34.8697222,-111.7602778,Sedona,AZ,unknown,600,Weird loud engine noise flying over my house sounded like a slow garbage disposal +2013-01-07,39.2902778,-76.6125,Baltimore,MD,circle,900,I was in the car; all of a sudden there was a bright orb that emitted another orb and it looped or twisted. +2013-01-07,36.1658333,-86.7844444,Nashville,TN,sphere,600,Three spheres in the N.E. sky departing in sequence on 1/7/2013. +2013-01-07,43.073055600000004,-89.4011111,Madison,WI,fireball,120,Red light hovering in sky over Lake Mendota, too high and could not be tower as it was over the lake, constant red light (no blinking) +2014-01-07,33.4222222,-111.8219444,Mesa,AZ,unknown,120,Three lights orange in color and wide spread. lights went out one at a time and then were gone. +2014-01-07,32.0833333,-81.1,Savannah,GA,light,7,Light trail Near Crossroads Parkway and Jimmy DeLoach in Savannah, GA. +2014-01-07,43.4941667,-88.5447222,Mayville,WI,light,15,Row of 4 orange lights both moving and stationary. +2014-01-07,32.2216667,-110.9258333,Tucson,AZ,unknown,60,4 Orange Lights Illuminating In Succession. +2014-01-07,37.3661111,-81.1027778,Princeton,WV,cylinder,3600,UFO? over Princeton/Oakvale, WV. +2014-01-07,46.8722222,-113.9930556,Missoula,MT,sphere,45,Powerful blue light flying around and changing color. +2014-01-07,37.0297222,-76.3455556,Hampton,VA,light,120,Beams of light full length of the sky moving horizontal like a helicopter blade would. +2014-01-07,37.9736111,-122.53,San Rafael,CA,formation,300,Seven high altitude flashing lights over San Rafael. +1946-01-08,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,300,Huge round silver disk hovering over neighbors house, writing on disk and roaring fire from disk +1968-01-08,32.2216667,-110.9258333,Tucson,AZ,disk,5,driving home from old tucson w/ parents looked out window(night)to left saw a round shape with dif. colored lites around come up above +1969-01-08,40.4405556,-79.9961111,Pittsburgh,PA,other,300,Flat black color, 6-legged, toy jack shaped, basketball-sized object on the ground melting snow in a squall +1976-01-08,36.1658333,-86.7844444,Nashville,TN,triangle,2,1976 bronze triangle seen in nashville, tn +1984-01-08,37.1041667,-113.5833333,St. George,UT,formation,60,Eight lights all different colors traveling accross the sky in a uneven V formation with small vapor trails. +1997-01-08,41.7880556,-71.9502778,Brooklyn,CT,disk,2,Flat, round object heading rapidly SE horizontally.I was on my way home from work on roads I've travelled at this time of day for t +1997-01-08,41.9083333,-71.3625,South Attleboro,MA,disk,7,At dusk on perfectly clear night saw large, blue bright disk fly vertically down and skim out over the earth. As it pulled out of its d +1997-01-08,42.6522222,-78.8972222,Eden,NY,light,60,Circular light image moving in an arc downward. Brightly lit, white-yellow with warmer tones flaring out on the bottom. It's size was +1998-01-08,45.3733333,-84.9552778,Petoskey,MI,light,12,Blueish-Green "light" appears & then accellerates in another direction. +1998-01-08,64.8377778,-147.7163889,Fairbanks,AK,oval,3,A large phlorescent green oval shaped object moving at a strange speed desending on the horizon ended in a large flash +1999-01-08,45.5236111,-122.675,Portland,OR,sphere,600,From airplane saw orange glowing craft. Oily substance emited from craft and the stars behind the oily substance became greatly magnifi +1999-01-08,40.5866667,-122.3905556,Redding,CA,unknown,30,i think i heard the loud ufo that the people on art bell are talking about. +1999-01-08,36.9613889,-120.0597222,Madera (17 Mi. E. Of, Near Hensley Lake),CA,unknown,180,Extreemly loud, like a ram-jet, very large moving slowly from NW to SE. Could not see shape because of high fog. Live in canyon and ha +1999-01-08,61.5997222,-149.1127778,Palmer,AK,flash,120,At abt. 10:45 PM Alaska;A Flash of light (like a flash from a camera)lighted up the sky; then I would say about a minute after a boom s +1999-01-08,61.5813889,-149.4394444,Wasilla,AK,flash,30,Widely reported event was an exploding meteor. ((NUFORC Note: Suspected meteor, but difficult to know for sure. PD)) +1999-01-08,32.0872222,-93.6205556,Carmel (I-49),LA,light,60,i was driving on i49. when my tractortrailor started to vibrate vilently i stop the truck to see what was wrong. after i stoped i got o +2000-01-08,35.9605556,-83.9208333,Knoxville,TN,cigar,900,2 Cigar shaped ships flying over Knoxville TN +2000-01-08,28.6275,-81.3633333,Maitland,FL,formation,60,Formation of lights of varying degree. Yellow to orange. Moving slowly from west to east above all airplane traffic. Have video from +2000-01-08,28.6275,-81.3633333,Maitland,FL,light,2700,20 to 30 bright lights, star like, flying wnw (?) , in formation, one red, the others were white, flying very fast, but due to distanc +2001-01-08,35.6869444,-105.9372222,Santa Fe,NM,cigar,900,large cigar shaped craft +2001-01-08,33.3527778,-111.7883333,Gilbert,AZ,other,60,The object was the shape of a sombero saucer, bigger than an airplane very quiet but moving it had all the same size and shaped lights +2001-01-08,44.2911111,-105.5016667,Gillette,WY,changing,5400,Bright light follows me. +2001-01-08,47.7741667,-96.6077778,Crookston,MN,other,2,At approx 2100 hrs. local I was southbound on US Highway 75 approx 8 miles north of Crookston, MN. I was heading almost due south. I no +2001-01-08,33.614444399999996,-93.8133333,Fulton,AR,oval,5400,I was watching this oval object from my house on a full moon night and the sky was clear as it appeared to change to red and green. +2002-01-08,44.8175,-73.2897222,North Hero,VT,cigar,900,Cigar-shaped craft flew slowing and at a low level directly over the back road I was traveling and right over my me. +2002-01-08,36.175,-115.1363889,Las Vegas,NV,other,900,Red Sphere with Silver Ring moving over Las Vegas Strip in Broad Day Light +2002-01-08,34.2477778,-88.9986111,Pontotoc,MS,other,30,i saw a wedge shaped craft at about 6:40 pm it was heading in an east to south direction i would say that it was at about 2000 feet it +2002-01-08,37.5058333,-77.6494444,Midlothian,VA,other,300,On the evening of January 8th, 2002 my girlfriend and I were coming back from my brothers house that lives in Mosely, Va. ( approximate +2002-01-08,34.2477778,-88.9986111,Pontotoc,MS,other,60,Large, low-flying rectangular object sighted 11/19 at 9:45 PM3 wedged shaped they had red green white &yellow lights no sound appro +2002-01-08,40.2969444,-111.6938889,Orem,UT,fireball,45,Two fireballs seen in UT +2002-01-08,40.2338889,-111.6577778,Provo,UT,fireball,40,Two fireballs streaked across the sky +2003-01-08,39.1619444,-84.4569444,Cincinnati,OH,unknown,3,UFO heard fly over teens house and teen hears voices in braces. +2003-01-08,34.4208333,-119.6972222,Santa Barbara,CA,changing,30,Reflective metal craft seen high over mountains +2003-01-08,41.9125,-88.1347222,Carol Stream,IL,light,120,Stationary object like very bright large star shimmering in clear blue daytime sky. +2003-01-08,30.4752778,-98.1561111,Spicewood,TX,cylinder,180,Saw cylinder shaped object with lights that disappeared abruptly. +2003-01-08,39.0541667,-84.0530556,Williamsburg,OH,other,600,Ufo shaped like a plane that could hover levitate and back up. +2003-01-08,47.7883333,-122.3075,Mountlake Terrace (Seattle),WA,circle,3,Green ball of light (10 to 20' in diameter) traveling west at about 200-mph, altitude 500', towards Edmonds. +2003-01-08,41.5875,-109.2022222,Rock Springs,WY,light,3600,It was like an airport becon that was rotating with red, green, and white lights. +2003-01-08,37.6922222,-97.3372222,Wichita,KS,flash,900,Flashing light keeps pace with commercial aircraft going dark and light again like a sparkler or roman candle. +2003-01-08,37.5958333,-122.0180556,Union City,CA,unknown,120,Object enter triangular light, then light pinch shut. +2004-01-08,33.9533333,-117.3952778,Riverside,CA,light,600,Jan 8th 2004, there was a cirlce of bright red, green, and yellowish orange lights just sitting still in the dark skies. +2004-01-08,36.0397222,-114.9811111,Henderson,NV,cylinder,720,Cylindrical luminescent craft seen hovering over Henderson, Nevada January 08, 5:15 AM +2004-01-08,39.6402778,-106.3736111,Vail,CO,light,4,A fast moving red orange light flew in a straight line for about 3 or 4 seconds, then dissapeared +2005-01-08,41.9666667,-71.4333333,Cumberland,RI,triangle,10,Triangular craft hovered for awhile, then shot off northward +2005-01-08,41.85,-87.65,Chicago,IL,light,600,Light moving fast over Chicago +2005-01-08,37.6941667,-122.0852778,Castro Valley,CA,light,120,Fast moving bright Light leaves contrail +2005-01-08,32.7833333,-96.8,Dallas,TX,circle,5,UFO seen over north Dallas +2006-01-08,39.7294444,-104.8313889,Aurora,CO,light,30,An aircraft that is so close and no noise? +2006-01-08,48.0797222,-123.1005556,Sequim,WA,other,60,January 8, 2006 I first observed a vertical rectangular dark colored object that looked to be hanging about 500 feet or so above the w +2006-01-08,28.5380556,-81.3794444,Orlando,FL,unknown,1200,Possible "Triangle" shaped craft w/3 flashing white lights seen North of Orlando. +2006-01-08,26.0027778,-80.2241667,Pembroke Pines,FL,triangle,2400,triangular object with flashing red, blue and white lights. +2006-01-08,33.8302778,-116.5444444,Palm Springs,CA,rectangle,22,Large Rectangle object traveling south to north, no sound,over Palm Springs. +2006-01-09,30.1763889,-85.8055556,Panama City Beach,FL,sphere,10800,We were Hurricane evacuees,...it was at this point that we knew it was something extraordinary,.. +2007-01-08,47.2344444,-119.8513889,Quincy,WA,oval,60,2/8/07 6:30 quincy wa 60 sec i was talken to my grilfriend as i looked up and saw a golen +2007-01-08,41.4588889,-93.0355556,Otley,IA,sphere,30,Observed unusual aircraft between Pella and Otley westbound on highway 163 around mile marker 36 viewed at a 45 degree from vehicle. Ai +2007-01-08,27.8002778,-97.3961111,Corpus Christi,TX,sphere,3000,OUT IN THE FIELD RIGHT BEHIND THE CORPUS CHRISTI NATIONAL AIRPORT ABOUT 5:OO PM. IT HOVERED IN THE AIR FOR ABOUT ABOUT 45:00 to 55:00 M +2007-01-08,34.2783333,-119.2922222,Ventura,CA,sphere,300,Flashing orb +2007-01-08,36.175,-115.1363889,Las Vegas,NV,light,3600,Red light stayed in sky for over 1 hour +2007-01-08,34.0522222,-118.2427778,Los Angeles,CA,fireball,2,Three lights or fireballs over Los Angeles, one was green, purple and blueish/white, at 7:40pm 1/8/07. Exact incident in Singapore +2007-01-08,33.3697222,-80.8372222,Rowesville,SC,fireball,5,FIREBALL TRAVELING NE TO SW .ORANGE WITH RED AND GREEN AND GREY SMOKE TRAIL. ((NUFORC Note: Meteor? PD)) +2007-01-08,32.59,-81.5041667,Newington,GA,light,6,Strange glowing green object falling from the sky. +2007-01-08,34.2575,-88.7033333,Tupelo,MS,circle,15,About 11:00 PM on 1-8-07 a ball of light about 4-5 times bigger than a star steadily rose upward slowly in the west sky and disappeared +2007-01-08,44.7444444,-68.8375,Hampden,ME,fireball,120,I was driving home when I saw a bright, yellowish, orange orb in the night sky. The object moved at a slow rate and hovered +2008-01-08,32.2205556,-98.2019444,Stephenville,TX,oval,120,Large craft object in the sky. ((NUFORC Note: Several other reports. Wide news coverage of this sighting. PD)) +2008-01-08,29.9544444,-90.075,New Orleans,LA,circle,60,I saw what I saw +2008-01-08,34.7697222,-84.9702778,Dalton,GA,unknown,4,large column of non-translucent light -- Could have been solid +2008-01-08,42.1013889,-72.5902778,Springfield,MA,formation,120,1 large light center, 3 lights on either side 1 additional light off to right side, width of 5 c-5 aircrafts side by side. +2008-01-08,25.7738889,-80.1938889,Miami,FL,flash,300,Frequent lights in the sky sightings in Miami Florida +2008-01-08,39.9625,-76.7280556,York,PA,teardrop,3600,A Redish purple teardrop shape ufo. +2008-01-08,34.0522222,-118.2427778,Los Angeles (Lax),CA,changing,1200,I work for a comany near LAX. This morning one of the mangers came out of his corner office overlooking LAX and told me to "come here, +2008-01-08,29.4238889,-98.4933333,San Antonio,TX,fireball,2700,Large fireball across the sky +2008-01-08,34.9158333,-85.1091667,Ringgold,GA,formation,120,SMALL CHROME OR SILVER (VERY SHINY) OBJECTS (10-16) FLYING IN V FORMATION, NORTH GA +2008-01-08,32.2205556,-98.2019444,Stephenville,TX,rectangle,180,Flashing strobes, silent, flames out the back side and jets chashing it! ((NUFORC Note: Several reports. Extensive news coverage.PD)) +2008-01-08,32.2205556,-98.2019444,Stephenville,TX,oval,600,1MILE LONG BY 1/2 MILE WIDE TRAVELING AT EST 3ꯠ MPH BEING CHASED BY MILITERY AIRCRAFT. +2008-01-08,33.7222222,-116.3736111,Palm Desert,CA,triangle,2700,Numerous lighted triangular craft observed simultaneously in different quadrants of sky over Palm Desert, CA +2008-01-08,30.9469444,-97.5383333,Salado,TX,formation,420,very immense in size. maybe related to stepheville sighting +2008-01-08,32.2205556,-98.2019444,Stephenville,TX,oval,900,Summary of Radio news coverage for Stephenville, TX sightings 1-8-08. ((NUFORC Note: Several reports. Extensive news coverage.PD)) +2008-01-08,30.6647222,-97.9222222,Liberty Hill,TX,other,1260,Bright Lights over Williamson County, Tx +2008-01-08,28.5380556,-81.3794444,Orlando (70 Miles North Of),FL,light,5,FAA Report: Pilot of commercial radios report to Miami ARTCC regarding sighting of very strange, amber-colored object. +2008-01-08,44.8508333,-93.7866667,Waconia,MN,triangle,7,3 seemingly connected translucent white dots moved accross entire sky in 5 to 7 seconds. +2008-01-08,30.6647222,-97.9222222,Liberty Hill,TX,unknown,3600,Bright Orange lights appear and reappear +2008-01-08,37.3394444,-121.8938889,San Jose,CA,triangle,7200,Triangular crafts appear nightly in the Almaden Valley of South San Jose CA. +2008-01-08,32.895,-97.5455556,Azle,TX,circle,240,Possible sighting North of Stephenville TX +2009-01-08,28.6905556,-95.9672222,Matagorda,TX,other,900,15 minutes of darting and dodging ,, flashing ,, on tape, Matagorda TX +2009-01-08,34.1063889,-117.5922222,Rancho Cucamonga,CA,light,1800,Third sighting of a bright star like light changing colors blue and white moving across the morning sky in Rancho cucamonga +2009-01-08,44.0247222,-88.5425,Oshkosh,WI,light,300,((HOAX??)) Glimering lights stationary in formation same as what was on the news in New Jersey. +2009-01-08,38.6175,-90.3491667,Brentwood,MO,rectangle,60,I watched one dark grey, silent rectangular object move across my field of vision from south to north very fast on 1/8/09 at 18:09. +2009-01-08,33.8169444,-81.1011111,Gaston,SC,sphere,105,This is the second time I have seen the same or very simmalar object over local landfill in a 16 year period. +2009-01-08,34.3188889,-78.5002778,Lake Waccamaw,NC,disk,240,5 unexplainable objects circling in the sky, moving rapidly and the lights were changing. +2009-01-08,39.3716667,-121.205,Dobbins,CA,unknown,3600,Brilliant star but too low and moved back and forth behind trees as other vehicles approached. +2009-01-08,35.4736111,-81.2547222,Lincolnton,NC,light,2700,Bright light in western sky that did not look normal. ((NUFORC Note: Probable sighting of Venus, we suspect. PD)) +2010-01-08,32.7252778,-97.3205556,Fort Worth,TX,chevron,1200,Colorful and bright huge objects in sky. +2010-01-08,30.0969444,-95.6158333,Tomball,TX,unknown,15,Four straight ,horizontal lights on one 40-60' structure, 150-200 ft in the air just above the tree line (Tomball TX) +2010-01-08,27.2936111,-80.3505556,Port Saint Lucie,FL,fireball,180,Red ball surrounded by fire surrounded by a blue green circle over Port Saint Lucie Florida +2010-01-08,40.015,-105.27,Boulder,CO,triangle,40,A trangular craft with several, large, bright lights flew low and quick over the neighborhood +2011-01-08,26.3013889,-98.1630556,Edinburg,TX,oval,120,Gracefully floating orange orb in Texas +2011-01-08,26.5625,-81.9497222,Cape Coral,FL,cone,1800,BIG, like a white floodlight, BRIGHT as a star, around this was a glass-like green bowl shape, with red spinning lights. hovering. +2011-01-08,29.1380556,-80.9958333,Port Orange,FL,oval,10,UFO clearly appears on digital image in sky over a Port Orange home. +2011-01-08,58.301944399999996,-134.4197222,Juneau,AK,light,600,Bright silent object seen traveling in night sky +2011-01-08,26.5625,-81.9497222,Cape Coral,FL,changing,14400,Looks like a star, but its not. Its green,blue, red spining lights, then formed 4 white balls around it. ((NUFORC Note: Sirius. PD)) +2011-01-08,39.3638889,-76.4525,Nottingham,MD,formation,180,3 bright objects in sky fly in formation over White Marsh MD +2011-01-08,35.0525,-83.1969444,Highlands,NC,fireball,2,Fireball in North Carolina Mountains. +2012-01-08,29.1869444,-82.1402778,Ocala,FL,circle,3600,Bright light/object hovering over ocala, fl +2012-01-08,34.5861111,-94.2394444,Mena,AR,light,30,MENA ARKANSAS LOTS OF SIGHTINGS. SOMEONE NEEDS TO START TALKING ABOUT WHAT IS GOING ON HERE. +2012-01-08,35.2783333,-93.1336111,Russellville,AR,cylinder,120,Huge craft above nuclear plant. +2012-01-08,35.8455556,-86.3902778,Murfreesboro,TN,changing,4,3 extremely BRIGHT lights in a straight line. +2012-01-08,41.3775,-71.8277778,Westerly,RI,fireball,300,Four Reddish-orange fireballs-changed direction-disappeared. +2012-01-08,45.5727778,-93.2241667,Cambridge,MN,triangle,120,Three lights in a triangular formation +2012-01-08,37.9508333,-78.2466667,Troy,VA,light,30,I was taking my evening walk down our driveway and I saw an orange light in the sky. I was thinking it is to big to be a planet – it +2012-01-08,28.3858333,-80.7422222,Cocoa,FL,circle,300,Two glowing orange orbs moving east to west. +2012-01-08,43.5680556,-71.0305556,Wakefield,NH,triangle,120,Triangular shape ufo seen by 3 in New Hampshire. +2012-01-08,39.195,-94.6819444,Parkville,MO,light,120,Orange balls in sky. +2012-01-08,38.3566667,-121.9866667,Vacaville,CA,sphere,120,Travis Air Force Base vicinity Orange Orbs +2012-01-08,41.4825,-73.41,Brookfield,CT,light,5,Large, bright blueish light. +2012-01-08,41.1544444,-96.0419444,Papillion,NE,light,900,20-25 floating lights lasting about 10-15 minutes +2012-01-08,41.1669444,-73.2052778,Bridgeport,CT,fireball,420,Orange Reddish Orbs/Stars +2012-01-08,35.1997222,-87.0308333,Pulaski,TN,fireball,600,Fireball craft with multiple sightings. +2012-01-08,41.1669444,-73.2052778,Bridgeport,CT,fireball,1200,Four fire balls one catching up to another and smelled like fire in the air, which seems impossible seeing the distance they appear to +2012-01-08,41.6977778,-72.7241667,Newington,CT,oval,25,Hovering thin red oval suddenly shoots across sky leaving amazing red beam of light in its trail. +2012-01-08,40.8558333,-73.2011111,Smithtown,NY,light,2,Large green light flying over Western Smithtown, Suffolk County Long Island +2012-01-08,43.1775,-83.7341667,Clio,MI,formation,600,Was bizarre, like nothing I've ever witnessed. +2012-01-08,44.2508333,-72.7613889,Moretown,VT,diamond,600,Driving home after work and saw a large low-flying object with several yellow lights fly over my head. +2012-01-08,43.1633333,-87.9644444,Brown Deer,WI,triangle,180,Triangular shaped craft, bright lights moving low, slowly and quiet over Green Bay Road. +2012-01-08,38.5816667,-121.4933333,Sacramento,CA,fireball,240,Red glowing light climbs above Sacramento, CA on 1-08-12 +2012-01-09,35.7477778,-95.3694444,Muskogee,OK,unknown,1800,3 Dead Batteries +2013-01-08,43.55,-96.7,Sioux Falls (Outskirts Of),SD,triangle,30,Triangular, 30- 40 seconds, multiple bright lights moving away slowly with no sound at all. +2013-01-08,34.0211111,-118.3955556,Culver City,CA,disk,1800,Colorful UFO seen swooping and ascending at top speeds and disappearing and reappearing in West LA area +2013-01-08,36.1055556,-79.5425,Gibsonville,NC,triangle,300,Huge big lights on front. +2013-01-08,37.3058333,-89.5180556,Cape Girardeau,MO,cigar,180,Strange Sight About Cape +2013-01-08,44.9341667,-68.6458333,Old Town,ME,light,1500,Bright green light suddenly appeared in the middle of the sky and shot straight downward as fast as a shooting star. +2013-01-08,34.9247222,-81.0252778,Rock Hill,SC,fireball,900,5 small balls of Orange light in a cluster. +2013-01-08,33.9383333,-78.7333333,Longs,SC,light,300,Three bright red lights seen moving together. +2013-01-08,40.8894444,-111.88,Bountiful,UT,fireball,1133,Several orange fire balls, some caught on video +2013-01-08,31.1997222,-83.8736111,Funston,GA,unknown,30,Orange lights suspended in the sky +2013-01-08,42.085,-76.0541667,Vestal,NY,triangle,180,Triangle aircraft in Vestal, NY. +2013-01-08,44.9902778,-123.025,Keizer,OR,changing,360,A round shape with dome cover and changing lights hovering over homes making a humming noise and moving fast. +2014-01-08,39.9611111,-82.9988889,Columbus,OH,other,1800,Unusual cloud formation I had never seen before low in the sky south of the city of Columbus, Ohio. +2014-01-08,42.9802778,-88.6311111,Rome,WI,light,300,White lights appearing, disappearing and reappearing in Adams County, Wisconson +2014-01-08,43.7730556,-88.4469444,Fond Du Lac,WI,formation,90,I was taking the dog out to the backyard. I was standing on the deck which faces due North while waiting for the dog to do his thing. +2014-01-08,43.8441667,-88.96,Green Lake,WI,unknown,37800,3 fading orange lights and small, white, sparkler lights west/southwest of Green Lake, WI. +2014-01-08,43.8836111,-89.4933333,Westfield,WI,light,300,Bright lights came out of no-where and were extremely loud. +2014-01-08,40.6366667,-74.9102778,Clinton,NJ,cigar,120,Dark black, cigar shape object, only thing visible were several small lights...could not make out what it was +2014-01-08,43.4277778,-89.15,Doylestown,WI,light,120,5 yellow lights flash in sky then disappear with 3 reappearing approx. 4.5 miles later moving NE. +2014-01-08,43.073055600000004,-89.4011111,Madison,WI,formation,120,3 orange glowing lights hovering moving slowly to the Northeast near Madison/ Deforest WI +2014-01-08,43.5197222,-114.3144444,Hailey,ID,sphere,300,Several orange spheres hovering over Hailey, Idaho. +2014-01-08,34.1222222,-117.5972222,Alta Loma,CA,circle,300,3 Bright Orange Lights forming triangle. +2014-01-08,33.0369444,-117.2911111,Encinitas,CA,changing,1200,3 Lights over Encinitas. +1974-01-09,41.5736111,-75.5022222,Carbondale,PA,circle,60,A circular object flew across the sky and fell into a pond. The water was bubbling and a strange blue/green color. Police and militar +1978-01-09,34.2572222,-118.6002778,Chatsworth,CA,circle,180,One night I looked up and saw one "star" slowly move into another. 3 days later I saw a 15 foot wide orange circle. +1978-01-09,34.1705556,-118.8366667,Thousand Oaks,CA,circle,60,I awoke at 4:30 a.m. and was lying awake in bed looking out the window. I saw a large round yellow glowing object close to the ground +1979-01-09,24.5552778,-81.7827778,Key West,FL,disk,300,A small unexplainable hovering object I spotted as a child of 10 while walking home from school one day in the 70s +1988-01-09,41.9038889,-72.4702778,Ellington,CT,triangle,180,Large triangular craft aprox. 200-300 ft wide , hovering approximately 150 ft above ground, and making little or no sound +1998-01-09,40.2452778,-75.65,Pottstown,PA,triangle,5400,multiple craft of various shapes. All with red & white lights, some pulsing, some strobe. Silent. Eventually chased off by jets. Moveme +1998-01-09,26.5625,-81.9497222,Cape Coral,FL,light,120,a white object was traveling in the eastern sky when we saw a huge blue and red burst of flame speed up the object and travel very fast +1999-01-09,29.8897222,-98.425,Spring Branch,TX,fireball,3,Green Fire ball from E. to W. Most likely a meteorite with some copper in it's composition. +1999-01-09,38.6272222,-90.1977778,St. Louis (30 Miles South Of),MO,light,300,a light appeared in the sky then slowly dissipated into nothing... exact same shape appears approx 2 mins. later and does the same thin +1999-01-09,27.4122222,-82.6591667,Longboat Key,FL,light,360,Pulsing light over the Gulf of Mexico changing color, frequency, and intensity moved in an erratic pattern across the clear sky. The m +2000-01-09,34.0522222,-118.2427778,Los Angeles,CA,sphere,120,The object was was a cross between a sphere and a disk. It was very bright. It omitted a very bright orange like color, that seemed a +2000-01-09,32.3361111,-81.3916667,Guyton,GA,circle,3,Glowing circle flying east->west twice the speed of a jet. +2000-01-09,39.0638889,-108.55,Grand Junction,CO,fireball,2,1 BLUE/GREEN FIREBALL WITH A TAIL FELL STRAITHT DOWN TO THE RIGHT A LITTLE BIT. IT WAS IN THE DUE EAST SKY IN FORNT OF THE GRAND MESA( +2000-01-09,43.4391667,-70.7747222,Sanford,ME,light,3,i saw a fast bright object streak towards the earth, with no explosion or fire visible. +2001-01-09,41.2411111,-77.0013889,Williamsport,PA,cone,300,The object my friend and I saw was two huge red ball like objects with a long neon blue trail. +2001-01-09,43.3727778,-95.1236111,Arnolds Park,IA,sphere,30,silver sphere, cars shut off that drove under it +2001-01-09,45.1230556,-92.5363889,New Richmond,WI,changing,1200,Four lights in a row, in the sky, faded and flew off in the same direction. +2002-01-09,40.8263889,-74.1072222,Rutherford,NJ,circle,300,UFO sighting in North Jersey +2002-01-09,34.2827778,-84.7452778,White,GA,circle,110,round spinningobject flashing white,red,green lights. Did not move for 2 hrs. then in 10 minutes went behind tree line&gone +2002-01-09,40.0580556,-82.4013889,Newark,OH,cigar,120,Large Cigar shaped object (newark Ohio) +2002-01-09,42.2347222,-88.9488889,Cherry Valley,IL,oval,180,I was driving home from work about 6:35 pm, going W. on State Street in Cherry Valley,(small town just east and a bit south of Rockford +2002-01-09,42.2966667,-89.6211111,Freeport (North Of),IL,light,1200,Orange lights in stephenson co. Illinois +2002-01-09,44.0463889,-123.0208333,Springfield,OR,teardrop,45,Rain drop shaped with windows. +2003-01-09,29.5613889,-98.2266667,Cibolo,TX,teardrop,600,The gold glow and size of the object was distinct and could never have been a commercial or private craft. +2003-01-09,34.7730556,-80.3919444,Pageland,SC,sphere,8,Observation was on hwy 9 going east about 10 miles from Pageland SC. Area is very rural. First thought was a low flying jet fighter, +2003-01-09,27.7177778,-82.3519444,Sun City Center,FL,light,5,Twice, sighted stationary bright star in the blue day time sky +2003-01-09,48.55,-109.6833333,Havre,MT,fireball,600,Fireball object with long, flowing tail +2003-01-09,47.9130556,-122.0969444,Snohomish,WA,light,32400,Over hours of continuous blinking light in the sky, occasionally moving rapidly, as if circling. +2003-01-09,40.8788889,-73.1572222,St. James,NY,cylinder,120,it was a circle with power fill lights and let out 2 other objects +2003-01-09,38.7316667,-82.9977778,Portsmouth,OH,cigar,5,oblong glowing blue light in the north, then the north east +2004-01-09,32.9544444,-97.0147222,Coppell,TX,light,2,Light object flying toward ground +2004-01-09,40.8358333,-78.8766667,Smithport,PA,unknown,2700,Bright light in sky, with red and green flashes. ((NUFORC Note: Possible twinkling star? PD)) +2004-01-09,34.4263889,-117.3,Hesperia,CA,triangle,180,orange triangle with 4 lights +2004-01-09,46.0038889,-112.5338889,Butte,MT,formation,600,Unusual formation of lights entrances witnesses +2004-01-09,33.6125,-117.7119444,Laguna Hills,CA,light,21600,Revolving light seen under moon two nights in a row. +2005-01-09,42.2625,-71.8027778,Worcester,MA,egg,1,Eggs in the sky +2005-01-09,34.8697222,-111.7602778,Sedona,AZ,circle,150,the circle shaped cloud sat still for about 2.5 minutes then dissappered +2005-01-09,39.7155556,-82.9530556,Ashville,OH,formation,5,A stunning display of 6 objects,incredibly fast,no plane can move out and back in formation like that. +2005-01-09,37.8772222,-122.1786111,Orinda,CA,fireball,2,a fireball that moved very quickly in a straight line across the night sky +2006-01-09,41.9375,-70.0333333,Wellfleet,MA,other,30,I noticed two bright stars to the right of the moon. They were stationary and side by side. I was on the cell phone and described how t +2006-01-09,33.9191667,-118.4155556,El Segundo,CA,fireball,10,Rotating fire ball moving very fast, few hundred feet above the ground, south east end of LAX +2006-01-09,33.8847222,-118.41,Manhattan Beach,CA,unknown,15,I was standing at the top floor of our home lookng south, a fire ball passed over our home and disapeared over the neighbors roof tops +2006-01-09,33.4222222,-111.8219444,Mesa,AZ,triangle,10800,Black Triangle glides over the night sky +2007-01-09,39.2038889,-94.5544444,Gladstone,MO,other,240,green and white lights on an object that followed us then dissapeared when we reached a public place +2007-01-09,42.6388889,-83.2911111,Pontiac,MI,sphere,1200,..It split into two halves-like a "Pac-Man" mouth. +2007-01-09,38.1838889,-83.4327778,Morehead,KY,circle,10,Metallic Disk Flying Over Morehead +2007-01-09,25.7738889,-80.1938889,Miami,FL,flash,120,Bright white object . +2007-01-09,37.8172222,-96.8619444,El Dorado,KS,triangle,30,We saw the same object coming home from the grocery store, triangular lights that hovered just below the treeline. +2007-01-09,40.7138889,-73.5594444,East Meadow,NY,unknown,30,My wife and I were getting ready to sleep and both of us heard this strange noise. At first it was loud almost like an aircraft engine +2008-01-09,36.1538889,-95.9925,Tulsa,OK,unknown,120,I was walking home from my local bar and I was looking at Mars because it can be seen so well right now. And I saw A light blinking red +2008-01-09,28.835,-95.6644444,Sargent,TX,circle,180,Bright planetlike object moved NW to SE until it changed direction and moved South to the horizon. +2008-01-09,45.3841667,-122.7627778,Tualatin,OR,light,120,Two Pairs of Stationary Lights over Tualatin seen near a Helicopter +2008-01-09,30.8325,-83.2786111,Valdosta,GA,diamond,10,lights in the sky in vertical line +2008-01-09,38.9458333,-105.2888889,Florissant,CO,other,10800,Not an Aircraft, very large, leading edge firy bright , irregular shape, duration of observation -three minutes. +2008-01-09,37.6819444,-121.7669444,Livermore,CA,cylinder,60,Twin cylinder object in broad daylight over California +2008-01-09,40.6408333,-74.3111111,Clark,NJ,oval,15,bright flash lights up the sky and vanished +2008-01-09,35.1494444,-90.0488889,Memphis,TN,circle,120,Gigantic round object with intense bright light moving thounsands of MPH +2008-01-09,35.6233333,-95.9602778,Okmulgee,OK,cigar,300,Sighting of the same mile long object that was witnessed by many in Texas. on Jan. 8, 2008 +2008-01-09,29.4238889,-98.4933333,San Antonio,TX,disk,2,((HOAX??)) Saw a 40 long by 12 ft tall saucer shoot up straight up into the air. +2008-01-09,34.698055600000004,-118.1358333,Lancaster,CA,light,300,They were spaced evenly and formed a Horizontal line. +2008-01-09,40.0483333,-86.4691667,Lebanon,IN,other,360,Odd lights appear over our head making impossible turns and making no sound. +2008-01-09,43.0797222,-78.0641667,Byron,NY,unknown,300,Flying object observed with very erratic movement and speed unlike any normal aircraft +2008-01-09,40.4841667,-88.9936111,Bloomington,IL,triangle,600,two lights hovering, then turning into 4 lights in a triangle pattern +2009-01-09,34.0522222,-118.2427778,Los Angeles,CA,light,120,The skies were clear and the stars were very visible. I was walking into Griffith Park in Los Angeles and happened to look up. Directly +2009-01-09,34.7302778,-86.5861111,Huntsville,AL,other,240,A "parked" 737 in the sky accompanied by an orb +2009-01-09,26.7052778,-80.0366667,Palm Beach,FL,light,30,Sliver of light in the sky +2009-01-09,29.5916667,-82.0875,Hawthorne,FL,unknown,5,An aircraft reflecting the sun light went behind the moon and disappeared +2009-01-09,34.9888889,-90.0125,Southaven,MS,formation,1200,5 BRIGHT WHITE ORBS THAT CHANGED IN FORMATION +2009-01-09,39.9522222,-75.1641667,Philadelphia,PA,other,60,2 stars moving together separated by a distance of about 8 inches. +2009-01-09,34.6294444,-92.4411111,Alexander,AR,flash,900,A Flashing strobe light occured before complete dawn. It grew brighter in size brightness and then would suddenly decrease in size and +2009-01-09,34.3380556,-84.3766667,Ball Ground,GA,circle,60,Possible saucer like shape sighted over Ball Ground, GA, USA with one bright and one dim white light, and one red light. 1/2 mile long. +2009-01-09,40.4155556,-74.1913889,Hazlet,NJ,diamond,60,bright diamond light in the north sky, turned towards the east and lights went out into a small red light and vanished. +2009-01-09,45.5236111,-122.675,Portland,OR,light,1800,Point of light traveling at high altitude with intervals of "flaring". +2009-01-09,33.5386111,-112.1852778,Glendale,AZ,light,120,Strange lights over Glendale, Arizona. +2010-01-09,44.1994444,-87.7213889,Francis Creek,WI,light,3600,multi-colored pulsating UFO, round white object falls out of it straight down toward the ground +2010-01-09,40.5575,-74.285,Woodbridge,NJ,light,540,Saw two lights that were not planes. +2010-01-09,47.6063889,-122.3308333,Seattle,WA,cylinder,60,Reviewing my photos I came across a suspicious object in the upper right corner and it way flying at an odd angle. Too steep for a plan +2010-01-09,33.9472222,-118.0844444,Santa Fe Springs,CA,sphere,6,Sphere like glowing objects hovering and then traveling in an incredibly fast speed then vanishing. +2010-01-09,42.1666667,-83.7816667,Saline,MI,formation,6,Southeast sky early in the evening, Blue, Green and Red Lights. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2010-01-09,42.8863889,-78.8786111,Buffalo,NY,light,2,Fast moving light curves in sky +2010-01-09,37.0833333,-88.6,Paducah,KY,unknown,2700,I went outside for nightly smoke break and to gaze at the night sky. I noticed something that seemed like an out of place star only to +2011-01-09,44.3530556,-121.1766667,Terrebonne,OR,circle,109800,2 UFOs sighted above our back pasture... +2011-01-09,35.7211111,-77.9158333,Wilson,NC,circle,4,several unidentified objects where seen on this day from my home in Wilson, NC +2011-01-09,48.4213889,-122.3327778,Mount Vernon,WA,flash,1800,Multi color flashing lights in sky. +2011-01-09,37.9319444,-121.6947222,Brentwood,CA,light,30,Bright Light fades away within 30 seconds. +2011-01-09,34.7463889,-92.2894444,Little Rock (South Of),AR,circle,180,Round black silent object +2012-01-09,39.3641667,-74.4233333,Atlantic City,NJ,unknown,10,A small bright green object was flying towards the ground at an extremely low altitude and then disappeared within a 10 seconds. +2012-01-09,40.7791667,-72.9158333,Brookhaven,NY,circle,60,I saw a star like object moving in swearls with light on and off +2012-01-09,41.4825,-73.41,Brookfield,CT,triangle,30,Small craft taking off and shooting off very fast!! +2012-01-09,30.4211111,-87.2169444,Pensacola,FL,disk,360,Three red disk shaped lights seen in Pensacola. +2012-01-09,35.6225,-117.67,Ridgecrest,CA,unknown,15,Three to four whitish/yellowish lights lit up sequentially over southern sky of Ridgecrest, California seen by 4 observers +2012-01-09,39.9611111,-82.9988889,Columbus,OH,triangle,180,Craft rotating in an arch with 3 bright, rapid blinking lights. +2012-01-09,41.4813889,-73.2136111,Southbury,CT,fireball,600,Driving down 67 towards New Milford. Just passed Transylvania road. My wife and I saw a fireball like shape in the sky. It was bright o +2012-01-09,42.8122222,-114.8977778,Hagerman,ID,light,900,Yellowish white lights brighter than the north star about 10 miles over the hills in Hagerman Idaho. +2012-01-09,31.5783333,-84.1558333,Albany,GA,sphere,3000,Spherical stationary object with flashing green and red lights. ((NUFORC Note: Sighting of the star, Sirius. PD)) +2013-01-09,34.1808333,-118.3080556,Burbank,CA,disk,10,Flying Saucer in my back yard. +2013-01-09,45.7763889,-92.6825,Grantsburg,WI,unknown,600,Hovering Blinking Dot and Red flashes on the ground +2013-01-09,43.0116667,-88.2313889,Waukesha,WI,disk,120,Hovering object, then took off fast. +2013-01-09,41.8316667,-90.8380556,Wheatland,IA,light,420,Large bright multicolored twinkling light just above western horizon. +2013-01-09,41.8316667,-90.8380556,Wheatland,IA,light,420,Observed large multicolored twinking light hovering in western horizon which disappeared after 7 minutes. +2013-01-09,42.3266667,-122.8744444,Medford,OR,unknown,120,Sighting that seemed to be red balloons but was clearly not due to the spacing of the orbs? and behavior. +2014-01-09,28.8002778,-81.2733333,Sanford,FL,unknown,900,Loud noise heard. +2014-01-09,45.3575,-122.6055556,Oregon City,OR,circle,5,White round light or object with a haze hovered for a short moment then moved quickly across sky at an arched angle, then disappeared. +2014-01-09,25.9327778,-80.1627778,North Miami Beach,FL,other,120,Red star streaked through the sky coming from the atlantic ocean which is east towards the west then headed upwards in a nw direction +2014-01-09,27.9472222,-82.4586111,Tampa,FL,unknown,300,Weird brownish manmade looking object in sky. +2014-01-09,34.0522222,-118.2427778,Los Angeles,CA,other,600,Hovering object that changed colors from green red and white.. +2014-01-09,39.8208333,-84.0194444,Fairborn,OH,fireball,120,Strange fireball floated into sky and shot up and dissapeard near wpafb in fairborn +2014-01-09,33.0183333,-80.1758333,Summerville,SC,sphere,300,I am submitting a photo that I took of this sighting, orange color with blue like lines running through it like veins. When you are obs +2014-01-09,29.9838889,-90.1527778,Metairie,LA,triangle,10,High flying jet that has no contrails. +2014-01-09,33.7358333,-118.2913889,San Pedro,CA,sphere,2,Approximately at 4:50 pm, siting on my porch I observed a military fighter jet headed north west. Fixated on the speeding jet, I notice +2014-01-09,40.8894444,-111.88,Bountiful,UT,diamond,30,I was watching a very bright light that was heading aprox 350 deg - almost a northern heading- the diamond shaped light vanished. Altit +2014-01-09,33.5091667,-111.8983333,Scottsdale,AZ,light,900,Three bright, large, orange orbs over Scottsdale. +2014-01-09,33.4483333,-112.0733333,Phoenix,AZ,sphere,300,Second time spotting three orange fire orbs flying over Phoenix, Az, in formation. +1952-02-10,42.0986111,-75.9183333,Binghamton,NY,disk,900,1952 UFO disk outside Binghamton, NY Girls' Club stops for a look at teenage females +1966-02-10,41.1536111,-81.3580556,Kent,OH,disk,120,A scout ship sighting followed by a mother ship sighting that lasted well over an hour. . +1970-02-10,34.0522222,-118.2427778,Los Angeles,CA,disk,600,I sighted a disc shaped object hovering above the trees in a residential area of southwest Los Angeles in early 1970 +1973-02-10,29.7630556,-95.3630556,Houston,TX,rectangle,120,Skin burns and bad health for all of us. +1979-02-10,46.5927778,-112.0352778,Helena,MT,disk,300,Saucer shaped object hovering on ridge between two mountain peaks..about 300 yds out. +1979-02-10,35.4105556,-80.8430556,Huntersville,NC,oval,300,UFO near switchyard of nuclear power plant. +1984-02-10,43.1158333,-72.1975,Marlow,NH,fireball,45,Orange fireball with strange movement +1989-02-10,39.8441667,-77.5586111,Mont Alto,PA,oval,120,Huge oval shaped craft which had an amber glow quietly flew at tree top level over my friend and I. +1994-02-10,46.4166667,-117.0166667,Lewiston (Near),ID,triangle,300,Triangular craft hovering over bridge then moving downriver. +1995-02-10,33.94,-118.1316667,Downey,CA,circle,1200,Saw 3 large cloud like hollow circles in the very clear night sky. +1996-02-10,41.31,-122.3094444,Mount Shasta,CA,fireball,10,Driving on the road which ascends Mt. Shasta, first mile in. Object seen above and to front of car. +1997-02-10,34.0522222,-118.2427778,Los Angeles,CA,triangle,7,object passed overhead.no sound no exhaust +1997-02-10,36.0330556,-86.7827778,Brentwood,TN,light,120,changing bright orb +1998-02-10,37.3688889,-122.0352778,Sunnyvale,CA,other,10,Green flames, same color as traffic lights. Flames were horizontal but otherwise looked like flames in a fireplace. Lasted only about 1 +1998-02-10,41.3947222,-73.4544444,Danbury,CT,cylinder,10,While taking an evening walk i saw what i thought was a shooting star. It stopped in the sky and just hovered there. It was cylander s +1998-02-10,33.5225,-117.7066667,Laguna Niguel,CA,sphere,20,I witnessed a red object aprox 300-500 yards off a comercial airliners left wing, it kept the same speed for about 20 sec, then it vani +1998-02-10,32.0766667,-111.3130556,Three Points (Kitt Peak Observatory),AZ,unknown,600,pulsing light to north of kitt peak +1998-02-10,41.7672222,-75.0566667,Callicoon,NY,oval,1200,In the sky a little to my right(1 or 2 :O'clock position) was an object. Oval and glowing. It was huge. +1998-02-10,42.865,-71.3744444,Londonderry,NH,light,45,Driving down the road, saw a greenish light in the sky, slowed down to look at it,then it shot off into the sky +1999-02-10,32.2216667,-110.9258333,Tucson,AZ,unknown,300,A possible jet contrail ot other. +1999-02-10,34.7302778,-86.5861111,Huntsville,AL,light,30,HBCCUFO CANADIAN REPORT: Object buzzes aircraft. +1999-02-10,64.7511111,-147.3494444,North Pole,AK,sphere,1200,At about 2040 AKST North Pole Alaska area toward the NorthEast my wife and I witnessed a bright "Orange Sphere" hovering low on horizon +1999-02-10,34.0122222,-117.6880556,Chino,CA,cigar,20,I was looking to the south at 2300 houres and saw a small orange glow looking closer I could see it was the front of a large black craf +1999-02-10,32.7152778,-117.1563889,San Diego (PeÑAsquitos),CA,fireball,45,Brilliant orange/gold fireball moving EXTREMELY slowly - almost inperseptably at first, west to east, with a trail, for about 45 second +2000-02-10,47.6816667,-122.2075,Kirkland,WA,other,8,Driving to work at 4:20 am I saw a green light and trailing left wingtip angle over my car at 200 mph & 100-200 ft altitude. +2000-02-10,27.8713889,-81.7152778,Alturas (Se Of),FL,fireball,480,We saw two bright lights traveling SE of Alturas. Both bright orange-yellow lights, bigger than a plane, almost as big as a the moon, +2001-02-10,47.6063889,-122.3308333,Seattle,WA,circle,5,Looking straight up, I saw a rectangular object with only a faint outline travelling East to West, no noise, no flashing lights but dim +2001-02-10,32.7152778,-117.1563889,San Diego,CA,fireball,600,Object was more bright and circular than any we had seen before, swaying in the beginning. +2001-02-10,30.4783333,-90.0375,Abita Springs,LA,triangle,180,The widely seen BLACK TRIANGLE UFO +2001-02-10,37.9513889,-86.7677778,Tell City,IN,disk,4500,75 minute film close up of ufo +2001-02-10,42.2711111,-89.0938889,Rockford,IL,formation,2700,9-11 orange-red lights in formation appear twice in 1 hour which can remain perfectly still then travel exceedingly fast. +2001-02-10,42.2711111,-89.0938889,Rockford,IL,formation,900,It was a formation of 9 lights that were changing position relative to each other (about the size of the big dipper or bigger) +2001-02-10,42.2711111,-89.0938889,Rockford,IL,circle,600,Saw nine yellow lights in groups of three, moving slowly in diagonal formation on my way to work. +2001-02-10,42.2711111,-89.0938889,Rockford,IL,fireball,180,Eight golden/orange objects hovering above Rockford. +2002-02-10,34.698055600000004,-118.1358333,Lancaster,CA,disk,10,Saucer in one position in sky, all of a sudden jets off and leaves a long trail of yellow behind it and disappears +2002-02-10,34.698055600000004,-118.1358333,Lancaster,CA,disk,10,I went camping in the middle of the desert and in the middle of the night I decided to stargaze. After seeing many stars, I saw this br +2002-02-10,32.7252778,-97.3205556,Fort Worth,TX,fireball,300,We saw fireball like objects coming from the earth into the sky. +2003-02-10,47.6794444,-122.8969444,Brinnon,WA,unknown,2400,pulsating lights in southern sky +2003-02-10,45.9266667,-116.1213889,Grangeville,ID,light,300,3 separate lights, 1moved in "S" design, stop mid flight and start again, another colorful and curved flight also stopped +2003-02-10,44.6336111,-121.1283333,Madras,OR,sphere,180,Spherical metallic object seen about 7 miles NE of Madras, OR +2003-02-10,29.9477778,-85.4180556,Mexico Beach,FL,cylinder,120,There were 4 craft - 2 sets of 2 - They looked like F16s only meatier - I was driving towards two of them, and when I got near them I n +2004-02-10,34.1083333,-117.2888889,San Bernardino,CA,other,60,SHAPE IN THE CLOUDS NO LITE OF OBJECT. +2004-02-10,40.7583333,-82.5155556,Mansfield,OH,other,3,THE OBJECT WAS STREAKING, THEN VANISHED +2004-02-10,37.3602778,-90.6975,Annapolis,MO,sphere,900,Orange Spheres and strange activity in the sky +2004-02-10,36.0525,-95.7905556,Broken Arrow,OK,chevron,300,Three huge, low flying, slowly moving chevron shaped objects with lights along the underneath sides. +2004-02-10,37.6438889,-98.7372222,Pratt,KS,circle,900,color changing spherical object, moving slowly over the night horizon +2004-02-10,43.2369444,-94.0411111,Titonka,IA,teardrop,60,We saw 3 white teardropped shape unidentified objects hovering in the sky for 45 sec to 1 min. on 2-10-04 22:30. +2004-02-10,40.7141667,-74.0063889,New York,NY,disk,1200,((HOAX??)) The ship was quik as a flash +2005-02-10,33.0197222,-96.6986111,Plano,TX,cigar,300,Cigar shaped object with bright lights. +2005-02-10,35.2269444,-80.8433333,Charlotte,NC,cigar,15,Cigar shaped object observered in daytime traveling at a high rate of speed at high altitude. +2005-02-10,40.7141667,-74.0063889,New York City,NY,light,20,out my window in nyc i saw two very distinct small white lights in the sky moving like butterflys together +2005-02-10,42.4452778,-94.1255556,Coalville,IA,changing,3,Never saw a shape ,just three bright large lights . +2005-02-10,39.5297222,-119.8127778,Reno,NV,fireball,5,Blue-white fireball comes down on Reno, Nevada +2005-02-10,38.6786111,-121.7722222,Woodland,CA,circle,3600,Dog barking just before I went to bed...I looked out the bedroom window. ((NUFORC Note: Sighting of Sirius?? PD)) +2005-02-10,45.6388889,-122.6602778,Vancouver,WA,egg,4200,Bright white and blue light with red lights flashing around it. ((NUFORC Note: Possible sighting of Sirius, we suspect. PD)) +2005-02-10,43.0116667,-88.2313889,Waukesha,WI,sphere,10,Observed an orange sphere/light low in the northern sky, discussed with friend as to what it may be, then it was gone. +2006-02-10,36.0330556,-86.7827778,Brentwood,TN,sphere,120,I was at a Waffle House in Brentwood T.N. on the corner of Old Hickory B.L.V.D. and Franklin Pike Circle. Across the street of Franklin +2006-02-10,47.6063889,-122.3308333,Seattle,WA,unknown,120,Object with rows of very bright, clear lights around perimeter hovering silently 1-2 minutes before exiting. +2006-02-10,47.6063889,-122.3308333,Seattle,WA,cylinder,120,Cylindrical object with 3-4 rows of bright lights & vapor between ground & object hovering silently at 500-1000' above ground. +2006-02-10,43.9525,-73.7288889,North Hudson,NY,formation,30,Saw a string of white lights extending into the sky at 45-75 degree angle above mountains in Essex county. +2006-02-10,32.7847222,-85.3058333,Cusseta,AL,light,900,4 lights going in circle pass through each other. ((NUFORC Note: Advertising lights?? PD)) +2006-02-10,40.155,-75.8902778,Morgantown,PA,formation,360,large birds? flying at a very high altitude in a circle- couldn't have been birds, they glowed in the dark and traded light- it looked +2006-02-10,40.5791667,-74.4119444,South Plainfield,NJ,formation,420,Bright lights in a triangular formation that did not move +2007-02-10,35.3991667,-78.8161111,Lillington,NC,circle,120,wird light +2007-02-10,26.525,-80.0666667,Boynton Beach,FL,light,30,a ufo was orbiting mars!!! ((NUFORC Note: Student report. PD)) +2007-02-10,40.6936111,-89.5888889,Peoria,IL,light,1800,glowing light in sky +2007-02-10,36.8527778,-75.9783333,Virginia Beach,VA,sphere,20,Metallic sphere floating 20 feet in air in Virgina Beach +2007-02-10,40.4405556,-79.9961111,Pittsburgh,PA,disk,180,I saw three black disk shaped UFOs moving at a constant speed during the day and they were at a very low altitude and moving very slow. +2007-02-10,39.2072222,-86.2511111,Nashville,IN,triangle,600,BRIGHT LIGHTED OBJECT, CLEARLY VISIBLE WITH THE NAKED EYE, HOVERING LESS THAN 100 YARDS ABOVE THE GROUND. +2008-02-10,39.2666667,-81.5616667,Parkersburg (Outside Of),WV,triangle,120,2 Witness's Saw A Stationary Object Hovering Near A Cell Phone Tower. "Object was Hugh" Changed from Red To Amber Color "No Sound" +2008-02-10,35.615,-87.0352778,Columbia,TN,light,6,Ball of light spotted over HWY 43 in Columbia, TN. +2008-02-10,33.8752778,-117.5655556,Corona,CA,egg,109800,Admitted Brilliant Blue Light Stationary Over 3 Hours +2008-02-10,33.6608333,-95.5552778,Paris,TX,cigar,5,After stepping outside for a short ciggerette break I noticed a vapor trail that I thought was much too close to the ground. Feeling th +2009-02-10,40.0427778,-86.1275,Westfield,IN,unknown,30,two extremely bright pulses of white light followed by brief power outage +2009-02-10,33.4222222,-111.8219444,Mesa,AZ,disk,180,Private pilot and passenger witness UFO in flight in northern Arizona Skies +2009-02-10,47.7741667,-96.6077778,Crookston,MN,circle,15,Round, silver UFO hovers over house, disappears in broad daylight +2009-02-10,36.2558333,-77.9361111,Hollister,NC,cigar,600,Brilliant silver vertical cigar shaped object moving slowly which suddenly disappeared followed by a big flash. +2009-02-10,35.1216667,-120.6202778,Grover Beach,CA,egg,900,oval/disc shaped object with red, green, and white neon lights blinking going slowly over central coast ca +2009-02-10,37.7044444,-91.8663889,Edgar Springs,MO,light,1200,BRITE WHITE LITE HOVERING OVER EGDAR SPRINGS MO +2009-02-10,29.7933333,-100.6744444,Carta Valley,TX,fireball,90,Atmospheric reentry of two vehicles above Carta Valley, Texas. +2009-02-10,42.0358333,-91.6819444,Hiawatha,IA,other,5,Silent, colorless, tranluscent and of very large size flying at a elevation of 5000 feet. +2009-02-10,36.1536111,-83.7825,Corryton,TN,triangle,45,triangular object appearing at low level in the outskirts of Knoxville, TN +2009-02-10,34.0522222,-118.2427778,Los Angeles,CA,oval,2,Neon green UFO over Los Angeles +2009-02-10,34.1336111,-117.9066667,Azusa,CA,circle,300,orange ball over Azusa california +2010-02-10,42.5091667,-84.6558333,Eaton Rapids,MI,other,3,About 3:00 am I got up to use the bathroom. As I entered the room, I looked out the window and saw four round baseball sized objects i +2010-02-10,36.2522222,-85.9516667,Carthage,TN,light,10800,A small yellowish-white light was hovering in the sky outside my window. +2011-02-10,46.6022222,-120.5047222,Yakima,WA,unknown,60,Big bright star moving east over yakama indian reservation. +2011-02-10,40.8647222,-74.2586111,North Caldwell,NJ,triangle,120,Large, Still, Silent, Hovering Triangular Craft. 19 Miles West of New York City +2011-02-10,44.0216667,-92.4697222,Rochester,MN,egg,30,a shiny saucer or egg shaped object in the sky at Walmart store +2011-02-10,42.4436111,-82.9069444,Grosse Pointe Woods,MI,circle,5,One circular very bright/shiny object swiftly flying over Grosse Pointe +2011-02-10,30.5080556,-97.6786111,Round Rock,TX,oval,20,Aluminum colored oval object completely still in sky vanishes. +2011-02-10,36.7477778,-119.7713889,Fresno,CA,light,25,10-12 lights - Swarm/Formation +2011-02-10,36.1658333,-86.7844444,Nashville,TN,sphere,900,First Military Planes, Then Comes The UFO. +2011-02-10,33.3316667,-105.6725,Ruidoso,NM,light,300,shimmering light appears/disappears/reappears followed by plane and an apparent air force jet +2011-02-10,38.6302778,-82.6675,Pedro,OH,formation,120,Two lights 300-500ft apart you could fit a few football fields in between them]one was red and one was blue. +2011-02-10,30.2944444,-81.3933333,Jacksonville Beach,FL,sphere,180,Orange and red glowing sphere over Jacksonville Beach, FL +2011-02-10,35.3733333,-119.0177778,Bakersfield,CA,cylinder,60,Giant 55 gal. silver drum +2011-02-10,33.5422222,-117.7822222,Laguna Beach,CA,other,60,Located about 40/50 deg, up from the hor. in the sw sky from my vantage point in Laguna Beach. ((NUFORC Note: Jupiter?? PD)) +2012-02-10,47.1719444,-122.5172222,Lakewood,WA,unknown,1800,Faint noise and pressure change. +2012-02-10,26.7052778,-80.0366667,West Palm Beach,FL,triangle,120,Brown triangle ufo WPB fl +2012-02-10,59.2358333,-135.445,Haines,AK,diamond,1800,A bright multi-color flashing object soared across night sky, until it made an abrupt stop, only to roam around in any direction +2012-02-10,27.8658333,-82.3266667,Riverview,FL,light,600,Two orange lights moving slowly in unison across the sky. +2012-02-10,37.3394444,-121.8938889,San Jose,CA,light,30,Bright lights in the sky taking on a V shape formation +2012-02-10,30.3583333,-103.6605556,Alpine,TX,light,300,Silent fast moving light, no sound at all. +2012-02-10,27.7705556,-82.6794444,St. Petersburg,FL,oval,900,Skipper and crew of fishing boat witness a very bright light pass near their vessel; aircraft may have followed it. +2012-02-10,37.0583333,-120.8488889,Los Banos,CA,light,120,It just seems out of place +2013-02-10,37.6688889,-122.0797222,Hayward,CA,sphere,300,3 bright orange lights appear and disappear in succession. +2013-02-10,34.2625,-118.4261111,Pacoima,CA,circle,600,Pulsating circular object +2013-02-10,41.3705556,-81.0652778,Parkman,OH,sphere,420,7 orange/red orbs in formation over Ohio +2013-02-10,30.3319444,-81.6558333,Jacksonville,FL,oval,2,Oval shaped craft with blunt ends no lights, completely black. +2013-02-10,26.9338889,-80.0944444,Jupiter,FL,fireball,300,Hovering/disappearing and reappearing large orange pulsating fireball Jupiter Florida +2014-02-10,42.8886111,-88.0383333,Franklin,WI,rectangle,1800,Bright rectangle shape over Franklin, WI. +2014-02-10,33.5508333,-79.0416667,Murrells Inlet,SC,other,45,Supersized airship that resembled a X-wing fighter from star wars. +2014-02-10,41.6088889,-73.6822222,Poughquag,NY,diamond,120,Very slow moving object with bright lights that caused me to pull over to examin it. +2014-02-10,34.2255556,-77.945,Wilmington,NC,triangle,300,((HOAX??)) Huge traingle craft with 3 light and a bright red light in the middle that did not make any noise just floated. +2014-02-10,41.5933333,-73.0858333,Oakville,CT,triangle,180,2 triangular shaped crafts flying in tight formation. +2014-02-10,41.8994444,-87.9402778,Elmhurst,IL,fireball,300,About 20 orange/red fireballs were seeing in the sky in Elmhurst on Route 83. +2014-02-10,42.6344444,-71.2463889,North Tewksbury,MA,unknown,600,Three objects with red and white blinking lights all on the same flight path and none made any noise. +2014-02-10,36.175,-115.1363889,Las Vegas,NV,fireball,1800,42 fireballs seen over n las vegas in 30 min, with fighter jets present. +2014-02-10,36.175,-115.1363889,Las Vegas (North Of),NV,sphere,120,3 orange spheres over north Las Vegas floating and make a formation. +2014-02-10,37.5736111,-113.7183333,Enterprise,UT,oval,15,It was dark outside but it was right above the E hill and there were big yellow lights flashing there were 5 lights it seemed to be ova +1976-02-11,28.6488889,-81.3513889,Fern Park,FL,unknown,15,Beam, Column of light from overhead, no sound +1983-02-11,36.175,-115.1363889,Las Vegas,NV,circle,2,First encounter happened some time in the early 1980's. My boyfriend (at that time)and i were leaving Las Vegas and had entered the des +1989-02-11,41.85,-87.65,Chicago,IL,other,8100,February 1989 Roger's Park Chicago Northside 10PM -12:15AM Very Bright Lights/Bell Shape Craft +1997-02-11,33.4483333,-112.0733333,Phoenix,AZ,cigar,600,I waked out my back door and saw something that looked like the Hindenberg zepplin. +1998-02-11,42.42,-76.8491667,Burdett,NY,other,60,saw group of lights (one craft) over top of trees...when I got past trees, it was gone +1999-02-11,37.6941667,-122.0852778,Castro Valley,CA,teardrop,30,Me and my wife were traveling on center street in catro valley.when we saw a strange object approaching us at lightning fast speed.I im +1999-02-11,38.8486111,-76.9241667,Suitland,MD,unknown,1800,I went out to enjoy the night sky,but saw this bright orangish white object through the tree line above a neighbors house. It slightly +1999-02-11,38.0280556,-121.8836111,Pittsburg,CA,fireball,300,Green Fireball along side auto. Changed direction, and seemed to accelerate at great speed and dissappear within seconds.Sighting corr +1999-02-11,38.3269444,-122.7061111,Cotati,CA,fireball,10,I was driving north on HWY 101 over the hill from Peteluma to Cotati when I saw a green/blue orb pass in front of my car in the upper p +2000-02-11,32.2216667,-110.9258333,Tucson,AZ,unknown,900,A series of 4 or 5 lights, blinking and moving in a westward direction. No pattern at all to the lights. +2000-02-11,42.2711111,-89.0938889,Rockford,IL,light,1200,Orange lights, flying low. Fire balls shooting out of one. Another flew off into space. +2000-02-11,42.2711111,-89.0938889,Rockford,IL,formation,900,Saw 5 orange lights in the sky viewed them for awhile they formed the big dipper then dimmed out +2000-02-11,42.2711111,-89.0938889,Rockford,IL,fireball,900,While out for a family night we observed five orange glowing objects three times larger than visible stars flying in formation and doin +2000-02-11,29.7630556,-95.3630556,Houston,TX,other,120,Silver thin ribbon like thing going slowly south. Seen in Houston at 10:00 pm. It was spotted in early nov. 2000. +2001-02-11,39.0997222,-94.5783333,Kansas City (Suburb Of),MO,triangle,120,DRIVING HOME SAW A BRIGHT LIGHT IN SKY THOUGHT IT WAS PLANE AS IT HAD FLICKERING RED AND GREEN LIGHTS BUT MORE WHITE LIGHT THAN ANYTHIN +2001-02-11,30.3569444,-87.1638889,Gulf Breeze,FL,oval,300,I was driving home I pullued into my driveway when I noticed several bright lights at tree top level.I thought it was someone shooting +2001-02-11,43.0008333,-73.8494444,Ballston Spa,NY,light,3600,It looks like a star , it looks like a planet but its moving across the sky above our heads. +2001-02-11,36.8255556,-79.3983333,Chatham,VA,sphere,120,A silver, perfectly shaped, sphere was spotted. +2001-02-11,36.8527778,-75.9783333,Virginia Beach,VA,diamond,90,Solid diamond shaped craft moving incredibly slow and silent E/SE in VA Beach on 2-11-01 +2002-02-11,34.09,-117.8894444,Covina,CA,other,1800,Without sound, and very well lit-up, it sparatically moved left to right, at times glidding downward at a right angle. +2002-02-11,33.6230556,-95.6991667,Brookston,TX,unknown,3,traviling north to south very fast just above tree line no sound orange blue lights +2002-02-11,45.5236111,-122.675,Portland,OR,disk,30,Oregon UFO Review Case: Disk w/dull reddish glow. +2002-02-11,47.6063889,-122.3308333,Seattle,WA,fireball,1,Falling Object +2002-02-11,38.4344444,-82.1325,Milton,WV,cylinder,900,Inverted Cylinder flying the night sky near Milton WA +2003-02-11,41.4827778,-87.3327778,Merrillville,IN,other,600,i was almost abducted ALONG WITH ME AND MY FRIENDS I THINK WE ARE ALL FEARED FOR OUR LIFE. +2003-02-11,47.6063889,-122.3308333,Seattle,WA,other,3,Blue beam of light in my face....from the sky. +2003-02-11,41.8088889,-88.0111111,Downers Grove,IL,other,600,two different dark color objects flying from west to north east of downers grove no lights no sound +2003-02-11,42.3583333,-71.0602778,Boston,MA,rectangle,180,Above the Mugar Field I saw a square object with 2 lights hovering over the field. This field runs paralell with Storrow Drive and I do +2003-02-11,38.2680556,-76.0680556,Bishops Head,MD,circle,300,A circle or wheel shape, with what looked like fire around it, and a firey web shaped center. +2004-02-11,36.7477778,-119.7713889,Fresno,CA,light,300,I saw a bright red light in the far distance that moved slightly, faded in and out slightly, and a piece broke off and fell. +2004-02-11,26.7052778,-80.0366667,West Palm Beach,FL,disk,1800,UFO here in florida. 4 witnesses no BS. +2004-02-11,39.205,-76.6530556,Linthicum,MD,cigar,5400,I live near the bwi airport. Was in the my basement and heard a very low bass sounding noise for 30mins. I decided to take a look outsi +2004-02-11,42.325,-71.0958333,West Roxbury (Subtown Of Boston),MA,light,300,((NUFORC Note: Possible sighting of planets?? PD)) Unusual pre-dawn sighting. +2004-02-11,33.7797222,-116.4644444,Cathedral City,CA,circle,150,bright round shape object traveling from south to north same area three times at diferen dates around the same hours. +2004-02-11,41.52,-81.4888889,Lyndhurst,OH,cigar,10,silver metallic wing less cigar rapidly moved north while presenting side on view and dissapeared. +2004-02-11,33.6694444,-117.8222222,Irvine,CA,egg,120,An object that disappeared in the clear blue sky +2004-02-11,40.6686111,-74.1147222,Bayonne,NJ,oval,120,I saw something flying that I just can't explain! +2004-02-11,39.9675,-87.2775,Kingman,IN,fireball,900,Orange slightly red balls motionless in the distant horizone. +2004-02-11,27.1188889,-82.4444444,Nokomis,FL,unknown,3600,The object appeared to be over the Gulf of Mexico in the Nokomis FL area. At first there were 3 lights with rays of light above and bel +2004-02-11,40.6936111,-89.5888889,Peoria,IL,oval,21600,Red, white and blue unmoving orb. +2004-02-11,41.7625,-70.7222222,Wareham,MA,light,1200,strange bright orange light hovering in sky, fading in and out , same spot on multiple occasions, darted across sky +2004-02-11,41.7355556,-122.6333333,Yreka,CA,other,15,observed ufo traveling south to north, high altitude, v-shape, 7 maybe 8 lights in a v shaped pattern +2005-02-11,47.2152778,-123.0994444,Shelton,WA,sphere,1200,3 spheres with each with a bright light, couldnt believe what I was seeing!! +2005-02-11,38.3980556,-85.755,Sellersburg,IN,flash,5,Could it have really been a UFO? +2005-02-11,33.5805556,-112.2366667,Peoria,AZ,triangle,5,At approximately 0515 hrs. on the 11 of Feb. while traveling south on the 101 coming up Thomas Road in the west valley I observe what a +2005-02-11,31.1497222,-81.4916667,Brunswick,GA,sphere,25,Sphere/oval lighted object traveling slow making no sound to the south no lights on object. +2005-02-11,34.010555600000004,-95.5094444,Hugo,OK,formation,20,Three oval lights were seen in 45 degree angle line (NW Sky), displayed for about 10 seconds and vanished. +2005-02-11,28.9002778,-81.2638889,Deltona,FL,triangle,5400,triangle craft in deltona fl +2006-02-11,46.8722222,-113.9930556,Missoula,MT,sphere,1500,I think I saw the same object of the report posted for the same date. Video if same thing. +2006-02-11,40.5005556,-75.0730556,Erwinna,PA,light,3600,A bright light just above the tree line with scanning red lights. ((NUFORC Note: Possible sighting of a celestial body? PD)) +2006-02-11,46.8722222,-113.9930556,Missoula,MT,formation,1800,A color changing circle with wavy edges and a beam coming out the bottom. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2006-02-11,30.2669444,-97.7427778,Austin,TX,other,3600,2/11/06 6:40am NOW - UFO Sighting in eastern sky in Austin Texas. ((NUFORC Note: Possible sighting of Venus, we believe. PD)) +2006-02-11,45.6797222,-111.0377778,Bozeman,MT,fireball,15,Fireball of green/orange seen above SW Montana. +2007-02-11,41.4169444,-87.3652778,Crown Point,IN,light,1200,Shaft of pulsing light in Crown Point, Indiana +2007-02-11,34.1975,-119.1761111,Oxnard,CA,light,4,Strange light seen above South Oxnard +2007-02-11,39.7491667,-77.3833333,Carroll Valley,PA,light,30,bright white round light disappears +2007-02-11,47.4830556,-122.2158333,Renton,WA,unknown,900,LIGHT OVER SEA-TAC WITH PERTICULAR SHAPE AND PATTERN CAUGHT ON TAPE +2007-02-11,47.9791667,-122.2008333,Everett,WA,chevron,1500,Bright red light in the sky over Everett! ((NUFORC Note: Possible landing lights on a/c?? PD)) +2008-02-11,33.9791667,-118.0319444,Whittier,CA,light,2400,3 lights in the sky stationary. uniform horizontally +2008-02-11,39.1619444,-84.4569444,Cincinnati,OH,oval,4,Dark object falling rapidly downward from the sky with bright orange flames emanating from it +2008-02-11,41.6411111,-88.4472222,Yorkville,IL,changing,10800,Bright round shaped ufo that shot straight up into the sky for about 3 weeks. +2008-02-11,28.0341667,-80.5888889,Palm Bay,FL,unknown,10,((HOAX??)) ((FROM AREA CODE ASSOC. WITH NUMEROUS PRANKS)) I was going home on a warm Florida knight and saw a weird object in the sky. +2008-02-11,40.0377778,-76.3058333,Lancaster,PA,unknown,120,Strange object in the sky on clear, cold day in Lancaster. +2008-02-11,34.1808333,-118.3080556,Burbank,CA,sphere,240,Formation of 5 spheres above Burbank. +2008-02-11,42.5030556,-83.1836111,Berkley,MI,unknown,360,Contrail of object falling to Earth +2008-02-11,40.9866667,-75.195,Stroudsburg,PA,unknown,6,bright green light in the sky near the highway that within seconds moved, paused, and vanished. +2008-02-11,40.6366667,-74.9102778,Clinton,NJ,light,10,Lights over rt. 78 +2008-02-11,41.9211111,-73.0605556,Winsted,CT,sphere,5,Bright blue sphere traveling incredibly fast. +2008-02-11,37.0758333,-94.6394444,Galena,KS,light,5,3 lights in southwest sky. Molten fire dripped from one and the other shot out red streaks. +2008-02-11,40.6766667,-95.8588889,Nebraska City,NE,circle,600,Large UFO circular in shape with a crescent-like glow spotted for 10 mins, 1 mile west of Nebraska City. +2009-02-11,36.2466667,-77.9569444,Essex,NC,cigar,30,Clear daylight sighting of a bright object which rapidly accelerated and disappeared. +2009-02-11,39.1619444,-84.4569444,Cincinnati,OH,cylinder,120,Grey with slight sheen, right-circular cylinder with flat ends, aspect ratio 43, seen only in two photos. +2009-02-11,39.7683333,-86.1580556,Indianapolis,IN,triangle,14400,Triangle shape with spinning circle on bottom, no sound, southside of Indianapolis, saw more on eastside. +2009-02-11,47.4236111,-120.3091667,Wenatchee,WA,oval,60,Pulsating lights +2009-02-11,40.015,-105.27,Boulder,CO,other,420,strange hovering white light that eventually descended slowly +2009-02-11,35.0975,-98.7461111,Mountain View,OK,light,3600,A bright light which seems to be stationary and changes colors before lowering and diminishing from sky. ((NUFORC Note: Venus?? PD)) +2009-02-11,35.7511111,-86.93,Spring Hill,TN,light,5400,5 lights moving at a high speed with no apparent order but naked to the eye +2009-02-11,32.2216667,-110.9258333,Tucson,AZ,unknown,3,Object seen to apparently explode-minutes later 2 large military helicopters in area +2009-02-11,32.4608333,-84.9877778,Columbus,GA,changing,60,A UFO was seen overhead changing shape and making my cellphone turn off. +2009-02-11,46.1469444,-122.9072222,Kelso,WA,light,20,A bright white flash of light and a red then white light that vanished. +2009-02-11,40.0580556,-82.4013889,Newark,OH,triangle,3,triangle shaped craft with 3 dimming lights +2009-02-11,38.5891667,-121.3016667,Rancho Cordova,CA,light,960,Little army of star like lights pass over Sacramento County!Quite a scare. +2010-02-11,42.2208333,-70.9402778,Weymouth,MA,triangle,120,At approx. 8:35 pm I was out on my deck having a smoke when I looked up I saw a Very Large Triangle shaped craft..It had lights of some +2011-02-11,27.9655556,-82.8002778,Clearwater,FL,other,60,ufo on clearwater beach +2011-02-11,64.8377778,-147.7163889,Fairbanks,AK,unknown,1200,UFO's sighted Fairbanks/Murphy Dome Feb.11, 2011 8:00am +2011-02-11,38.5816667,-121.4933333,Sacramento,CA,sphere,10,No sound and invisible +2011-02-11,30.5080556,-97.6786111,Round Rock,TX,sphere,300,White Circular UFO +2011-02-11,33.8536111,-118.1330556,Lakewood,CA,circle,180,Circular UFO sighted above Lakewood/Cypress area +2011-02-11,32.7152778,-117.1563889,San Diego,CA,sphere,60,Metallic round object hovering above the air show +2011-02-11,33.9166667,-117.8991667,Brea,CA,light,3600,Star-like abject moving randomly across the sky. +2011-02-11,33.4933333,-112.3572222,Litchfield Park,AZ,circle,180,6-7 reddish orange lights in the sky that dimmed and went out after a couple of minutes. +2011-02-11,41.6827778,-88.3513889,Oswego,IL,light,5,I was coming out of the Best Buy in Oswego, IL . I put my two kids into their car seats , and looked up to stretch my back and from NW +2011-02-11,31.9972222,-102.0775,Midland,TX,sphere,300,Fast moving lights splitting off and converging again +2012-02-11,32.7152778,-117.1563889,San Diego (North Coastal Area),CA,circle,5400,Seemed to have random courses and altitudes; as if piloted. Some had camera phones (not I). +2012-02-11,42.1211111,-88.2577778,Carpentersville,IL,triangle,60,Unlit Triangular Flying Object in Night Sky +2012-02-11,64.8377778,-147.7163889,Fairbanks,AK,light,900,We saw 6-7 craft move from SE to NW, with very bright orange/yellow lights and no sound. +2012-02-11,36.8466667,-88.2391667,Fairdealing,KY,unknown,45,Single object with 4 white lights flashing in right to left sequence in somewhat straight line +2012-02-11,27.2541667,-80.23,Jensen Beach,FL,circle,120,Strange slow moving low glowing orange balls over US 1 Jensen beach +2012-02-11,43.3044444,-70.9761111,Rochester,NH,light,900,Strange orange lights in sky over Rochester, NH +2012-02-11,43.0716667,-70.7630556,Portsmouth,NH,light,600,Reddish circular lights spaced equally apart in a line, slowly moved across the night sky. +2012-02-11,41.2863889,-96.2341667,Elkhorn,NE,other,2,Bright blue light in the night sky traveling at terrific speed +2013-02-11,35.6752778,-83.7558333,Townsend,TN,formation,240,Objects spotted in the sky over Cades Cove Cemetary area. +2013-02-11,41.0858333,-79.8336111,Hilliards,PA,circle,180,Saw a perfictly round shadowmoving toward my home +2013-02-11,38.2972222,-122.2844444,Napa,CA,light,480,2 Crafts were moving slowly along the top of the hill heading from north to south. One craft continued south while the other stopped ov +2013-02-11,40.5430556,-74.3636111,Metuchen,NJ,triangle,30,fast moving orange lights in triangle fomation flying with one point facing backward, two points forward +2013-02-11,34.7369444,-82.2544444,Simpsonville,SC,other,7,Lots of yellowish lights with red flashing lights at the end. +2014-02-11,43.4925,-70.4538889,Biddeford,ME,circle,2700,CIRCULAR OBJECT HOVERING 2 HOURS WITH WHITE LIGHTS. +2014-02-11,32.2686111,-107.7580556,Deming,NM,changing,3600,Shape-shifting/color changing object. +2014-02-11,38.6272222,-90.1977778,St. Louis,MO,cigar,180,Long cigar object, 3 lights in back one in front. loud humming sound as it moved slowly. +2014-02-11,36.0102778,-84.2697222,Oak Ridge,TN,chevron,180,Brightly lit chevron. +2014-02-11,43.4697222,-111.9658333,Ammon,ID,triangle,10,I was outside, the shape was triangular.. It was moving so quickly. it disappeared behind some trees… I just ran inside. i never hea +2014-02-11,42.8666667,-88.3333333,Mukwonago,WI,sphere,300,Red and green flashing lights on hovering sphere object. +2014-02-11,33.0197222,-96.6986111,Plano,TX,light,60,We saw a light approaching that changed direction and velocity and went away very fast. +2014-02-11,37.9747222,-87.5558333,Evansville,IN,cylinder,300,Aircraft in Evansville? +2014-02-11,39.3622222,-86.0847222,Nineveh,IN,triangle,30,Triangle unidentified aircraft with 3 lights along the back instead of the usual triangle pattern, light in middle was brighter. +2014-02-11,37.6775,-113.0611111,Cedar City,UT,sphere,900,Seven bright orange glowing spheres appeared for 15 seconds then disappeared. +1946-02-01,37.3022222,-120.4819444,Merced,CA,sphere,10,Three luminescent chartreusse spheres moving "in trail" in a wide arc (34 mi) across the Valley sky. +1954-02-01,64.8377778,-147.7163889,Fairbanks,AK,unknown,1140,RADAR INTERCEPT OF UFO BY USAF PILOT IN ALASKA 1954. +1960-02-01,44.9444444,-93.0930556,St. Paul,MN,cigar,3,A cigar-shaped UFO glided down towards the earth at a 45 degree angle, but was lost in the ground clutter. +1960-02-01,34.3527778,-82.9322222,Hartwell,GA,cigar,45,My father explained an event of a large cigar-shaped object in perfect flight +1966-02-01,41.0327778,-81.2486111,Randolph,OH,oval,10,extremely fast UFO stopping dead still in mid air with two smaller similar UFO's following t +1971-02-01,32.6833333,-84.7383333,Waverly Hall,GA,circle,3000,saw bright circular object almosr directly overhead and moving down to hover 200 yds to our right and about 100 ft above ground. Ist th +1971-02-01,44.3877778,-71.1736111,Gorham,NH,light,300,Bright lite seen moving eraticaly over mountains with no noise. +1973-02-01,21.3069444,-157.8583333,Honolulu,HI,sphere,300,I was standing on the shore looking out towards the water when I saw a blue sphere coming toward the shore . It was at about a 45 degr +1973-02-01,29.4802778,-89.6938889,Port Sulphur,LA,circle,3,Drag Racing UFO's +1978-02-01,42.9075,-72.0630556,Dublin,NH,triangle,1200,I was with five friends at prep school in Dublin NH (Dublin School a private school) we were on the "Upper FIeld" which was a soccer fi +1979-02-01,34.2483333,-117.1883333,Lake Arrowhead,CA,circle,180,My husband, 3 children, and I moved to LK Arrowhead in 1971. We were both Fine Artists. We wanted to get away from Los Angeles, the sch +1985-02-01,45.5236111,-122.675,Portland,OR,light,900,multiple points of light hovering? over the west hills of Portland that could disapear one at a time while I was watching them +1987-02-01,33.0841667,-96.5763889,Lucas,TX,other,120,Car in the clouds. +1989-02-01,38.6244444,-76.9394444,Waldorf,MD,oval,3600,very large oval -mushroom shaped metallic object,moving up and down very fast, then up close moving very slow,with a tube looking obj +1990-02-01,39.41,-74.365,Brigantine,NJ,unknown,600,Light hovering over beach, went dim, moved and became bright again due to my approach. +1992-02-01,42.4391667,-123.3272222,Grants Pass,OR,light,600,Going across sky. Thought it was airplane at first...until it started melting. +1996-02-01,32.5355556,-93.4108333,Doyline,LA,triangle,180,TRIANGLER CRAFT NEAR BARKSDALE +1996-02-01,42.7341667,-90.4783333,Platteville,WI,circle,900,circle of lights passed over head +1997-02-01,42.8566667,-85.3802778,Alto,MI,triangle,600,Triangular Craft Hovered, then Zoomed overheard. +1997-02-01,28.6986111,-81.3083333,Winter Springs,FL,cone,300,We were jumping on the trampoline and we see a top-looking shape in the air hovering above us with no sound. it had lights surrounding +1997-02-01,40.6638889,-74.2111111,Elizabeth,NJ,sphere,30,Spheres in New Jersey +1998-02-01,34.1841667,-118.9097222,Newbury Park,CA,chevron,600,It was the largest thins I've ever seen well over a mile in length, and it hovered near the navel base. +1998-02-01,34.0238889,-118.1711111,East Los Angeles,CA,triangle,300,Long thin gray or black leading edge. Could not tell if I saw the rest of the craft or mirror image of clouds above object, which was m +1999-02-01,35.198055600000004,-111.6505556,Flagstaff,AZ,chevron,600,Lights seen above Flagstaff AZ similar to "Phoenix Lights" +1999-02-01,28.1508333,-82.4616667,Lutz,FL,flash,2,At dusk I looked up just in time to see a strange green light dip beneath the clouds then take off quickly in another direction. The ne +1999-02-01,45.1475,-122.5758333,Molalla,OR,disk,30,Lights and glowing craft seen by several people in several cars, which stopped on the road to observe. Object was seen decending into a +1999-02-01,29.1869444,-82.1402778,Ocala,FL,triangle,1800,We saw a light in the sky moving rapidly in almost a circular motion We then started to drive towards the object and ended up parking a +1999-02-01,39.8027778,-105.0869444,Arvada,CO,flash,5,it was a flourescent green with red on the front and a long tail. +2000-02-01,34.0469444,-87.5497222,Lynn,AL,triangle,900,In February of 2000, I was on routine patrol at approx. 0230 hrs CST. As I drove behind the local High School, I observed three lights +2000-02-01,43.7977778,-123.0583333,Cottage Grove,OR,triangle,60,black silent triangle flighs over dorena lake ruinning my fishing trip +2000-02-01,29.7630556,-95.3630556,Houston,TX,chevron,30,2 boomarangs high and fast over houston on night of lunar full eclipse +2000-02-01,40.7141667,-74.0063889,New York City (Bronx),NY,other,900,spaceship,like a football,flying low,over a park, no sound, detail of the ship was veary good. +2000-02-01,47.7086111,-91.9444444,Babbitt,MN,other,600,Opaque white beams of light that repeatedly hit a lamp, turning it on and off... +2000-02-01,35.198055600000004,-111.6505556,Flagstaff,AZ,unknown,4,Huge cloaked UFO over Flagstaff +2001-02-01,36.2961111,-119.1411111,Exeter,CA,triangle,40,FLOATING LARGE CRAFT AROUND 100 FT. LONG +2001-02-01,47.6105556,-122.1994444,Bellevue,WA,circle,3600,3 hovering lights above Lake Washington +2001-02-01,42.7883333,-71.2013889,Salem,NH,disk,600,4-5 silvery objects weaving in and around clouds. +2001-02-01,36.9902778,-86.4436111,Bowling Green,KY,diamond,600,I am responding to your recent new web posting of a "bizarre object" sighting by the Aerospace Engineer on Wednesday afternoon of July +2001-02-01,38.3497222,-94.5888889,Amsterdam,MO,formation,900,Bright light coming from Southeast to Northwest, then returning partway and dissappearing, anyone else seen this tonight? +2001-02-01,36.9902778,-86.4436111,Bowling Green,KY,fireball,600,Fireball Light Seen +2002-02-01,35.18,-120.7308333,Avila Beach (Diablo Canyon Nucular Power Plant),CA,cigar,360,Craft sighted at a nucular power plant +2002-02-01,37.7416667,-121.1233333,Ripon,CA,triangle,120,Unidentified dark triangular object stationary in the sky over Ripon, CA. +2002-02-01,39.6066667,-75.8336111,Elkton,MD,light,1800,BRIGHT WHITE STROBE LIKE LIGHT WITH A BEAM SHINING DOWN, VERY, VERY LOUD +2002-02-01,41.5647222,-72.1544444,Fitchville,CT,oval,60,clear night about 2000 to 3000 feet in the sky two beams emitted from craft beam lenght uncertian but very bright smaller beam disappe +2003-02-01,34.1808333,-118.3080556,Burbank,CA,fireball,10,3rd sighting of fireballs over So Cal skies +2003-02-01,39.0916667,-104.8722222,Monument,CO,light,1500,A star that shined like a crystal moving around like a fruitfly +2003-02-01,38.3488889,-122.5097222,Eldridge,CA,fireball,120,Large slow moving ball of fire. +2003-02-01,32.7833333,-96.8,Dallas (Near??),TX,formation,2,CNN video shows more than just the Space Shuttle Columbia. +2003-02-01,32.7833333,-96.8,Dallas,TX,sphere,5,Early news video of Shuttle decent clearly shows a silvery globe like object trailing the shuttle, keeping speed, then gone. +2003-02-01,40.2986111,-83.0680556,Delaware,OH,sphere,60,MORNING TIME SHIP FLY BY +2003-02-01,41.4169444,-87.3652778,Crown Point,IN,oval,3,The CNN Film footage of the Shuttle Before the Break up. +2003-02-01,34.9530556,-120.4347222,Santa Maria,CA,sphere,3,the bright white star like object speed in an arch from east to west into the horizon in the black of night. +2003-02-01,37.3861111,-122.0827778,Mountain View,CA,changing,30,flock like formation of faint stars movind across the sky. started off strong and wound up fadding off. There where 35 to 40 faint st +2003-02-01,47.6588889,-117.425,Spokane,WA,disk,2700,saucer craft emitted blueish light beams into the night sky pointing to stars +2003-02-01,47.6588889,-117.425,Spokane,WA,disk,1200,Black disk seen near Airway heights, near Spokane Washington, while doing time-exposures of N. Lights. +2004-02-01,41.6833333,-86.25,South Bend,IN,unknown,3600,We saw some object in the sky move very slowly that was not a plane or a star. +2004-02-01,33.5205556,-86.8025,Birmingham,AL,chevron,15,Large dark chevron, silently passing overhead in early AM hours, only seen because against star fields. +2004-02-01,34.0522222,-118.2427778,Los Angeles,CA,triangle,120,2 strange craft over downtown and greater los angeles basin +2004-02-01,28.5997222,-81.3394444,Winter Park,FL,flash,1800,The light was white with a hint of orange in it in the east. Then, another light flashed right next to it and the were burning at the s +2004-02-01,34.9594444,-84.9527778,Cohutta,GA,disk,120,Filmed Unidentified Flying Objects ! +2004-02-01,33.9163889,-118.3516667,Hawthorne,CA,light,660,Two white round star objects moving very slowly over Los Angeles during daytime bright blue skies.skies +2004-02-01,35.8455556,-86.3902778,Murfreesboro,TN,other,2700,Three round ivory-colored single objects and two groups of 5 objects +2004-02-01,35.2619444,-81.1875,Gastonia,NC,sphere,30,Round metallic object flying high in sky with no sound and no vapor trial. +2004-02-01,44.8944444,-71.4963889,Colebrook,NH,light,37800,bright white light that exploded into a green light and small tendrils coming down to ground +2005-02-01,27.8425,-82.6997222,Pinellas Park,FL,formation,15,Invisible craft hovered, disturbing bushes and grass, annd then left. +2005-02-01,40.0697222,-81.8825,Adamsville,OH,formation,1500,formation of 5 disk like moving very slowly , spread across horizon moving towards same location +2005-02-01,47.3811111,-122.2336111,Kent,WA,sphere,180,This was a spherical object adjacent to an airplane contrail +2005-02-01,40.0697222,-81.8825,Adamsville,OH,formation,1500,5 shiney objects first resembled airplanes with short trails, all 5 identicle in size, shape, tail, altitude and distance apart. Sprea +2005-02-01,40.0697222,-81.8825,Adamsville,OH,formation,900,5 identicle slow moving large disks took 20 minutes to drift across sky +2005-02-01,33.4936111,-117.1475,Temecula,CA,oval,10800,Two pulsating lights changing from white to blue to red ((NUFORC Note: Possible sighting of star, Sirius. PD)) +2005-02-01,41.4886111,-75.7088889,Clarks Summit,PA,triangle,120,Triangle craft that split up into three speeding crafts with white lights and little to no sound +2005-02-01,33.5225,-117.7066667,Laguna Niguel,CA,light,3600,Looks like a normal star, but moves around. No other star around it does that. +2005-02-01,34.9552778,-90.0347222,Horn Lake,MS,triangle,900,Triangle shaped ship with white lights , moving silently threw the sky 500 Lights On Object0: Yes +2006-02-01,33.6680556,-117.3263889,Lake Elsinore,CA,light,300,Grouped Lights / No noise / No body +2006-02-01,47.3294444,-122.5788889,Gig Harbor (Olalla),WA,unknown,10,bright green lights in olalla, wa +2007-02-01,41.3686111,-81.6380556,Independence,OH,triangle,45,Huge dark triangle-shaped craft 100 yards wide, 3 white non-blinking lights (1 at each point) gliding silently from south to north. +2007-02-01,34.9247222,-81.0252778,Rock Hill,SC,cigar,20,Bright silver cigar-shaped object, about 100 feet long, moving noiselessly to the north on a clear day at 1ꯠ feet altitude. +2007-02-01,44.01,-69.8988889,Bowdoinham,ME,triangle,30,An eqilateral triangle, lit at the tips, hovering just off I95 between Brunswick, and Bodoinham ME at approximately 6:45pm. +2007-02-01,34.0522222,-118.2427778,Los Angeles,CA,fireball,45,Large fireball headed to land just off the coast of L.A. on the S edge of malibu. ((NUFORC Note: Other repts. Possible meteor?? PD)) +2007-02-01,43.6727778,-84.3805556,Sanford,MI,triangle,30,Low flying triangle with 3 dull white lights in corners and a 4th larger dull white light in the center, viewed for less than 1 minute +2007-02-01,47.2372222,-93.53,Grand Rapids,MN,fireball,3,Saw bright blue ball travel across sky. +2007-02-01,42.6458333,-85.2908333,Hastings,MI,triangle,600,Strange Triangular UFO +2007-02-01,35.2269444,-80.8433333,Charlotte,NC,oval,3,a very high, fast, orange UFO over Charlotte NC +2008-02-01,28.5380556,-81.3794444,Orlando,FL,triangle,600,WE WERE ON THE HIGHWAY AND THERE WAS ONLY 2 MORE CARS WITH US. ONE IN THE FRONT AND ONE IN THE BACK.(I DONT KNOW IF THEY SAW IT TOO, I +2008-02-01,29.9911111,-93.9583333,Port Neches,TX,cigar,300,A single neon-blue, glowing, pill-shaped object, suspended in air, then shot (not dropped) downward out of sight. +2008-02-01,28.8002778,-81.2733333,Sanford,FL,other,300,02-01-2008 fast moving star like object moving due east out toward ocean with 2 other blinking(red/green) heading quickly after it +2008-02-01,33.4222222,-111.8219444,Mesa,AZ,light,1800,Very bright light drops off smaller light & flies upward & disappears +2008-02-01,47.0380556,-122.8994444,Olympia,WA,rectangle,120,Large rectangular craft following the freeway just above tree level in Olympia-Lacey, WA area. +2008-02-01,33.415,-111.5488889,Apache Junction,AZ,triangle,120,Object was spotted at the southern tip of Superstition Mountain as I was driving East on U.S. 60. Object appeared metallic in nature. +2008-02-01,33.7738889,-117.9405556,Garden Grove,CA,light,30,Bright Turquoise light moving in the sky then completely disapeared +2008-02-01,33.7738889,-117.9405556,Garden Grove,CA,light,6,((HOAX??)) A green light flashing and moving around in the sky. +2008-02-01,28.8525,-81.6855556,Eustis,FL,changing,360,2 glass balls and acylinder between pulsating whatlooked like lava +2009-02-01,29.9022222,-90.3880556,Boutte,LA,unknown,600,A slow moving object with rotating lights in the early morning sky, 10 miles southwest of New Orleans. +2009-02-01,32.5563889,-95.8630556,Canton,TX,other,1800,about five moving "stars", not a meteor shower no shooting stars, to slow, airplanes apeared afterward. +2009-02-01,27.9655556,-82.8002778,Clearwater,FL,egg,60,Went outside to have a smoke, noticed a metallic, egg-shaped object very very high up moving very fast, disappeared after a minute. +2009-02-01,35.1427778,-120.6402778,Pismo Beach,CA,cylinder,60,White light, Cylinder shape over the beach. Spotted in the corner of my eye. took a picture. The object hovered and quickly disapeared. +2009-02-01,27.9472222,-82.4586111,Tampa,FL,oval,5,UFO spotted on TV right before the Superbowl +2009-02-01,27.79,-97.6686111,Robstown (North Of; On Ih 37),TX,cigar,360,viewed 1-4 cigar/disc shaped dark spots emitting no light nor sound for approximately 6 minutes +2009-02-01,38.3397222,-122.7,Rohnert Park,CA,sphere,300,Reddish spheres spotted in Northern Califonia. +2009-02-01,37.8044444,-122.2697222,Oakland,CA,light,4,Oakland, CA bright silver white light traveling north west downward toward the San Francisco Bay +2009-02-01,37.8716667,-122.2716667,Berkeley,CA,sphere,1500,Light-distortion moved methodically across San Francisco Bay to above Treasure Island, dropped, returned along same path. +2009-02-01,41.4958333,-87.8486111,Frankfort,IL,teardrop,1800,Very bright lights in the sky that would stop, rotate, fly away, come back...almost like they were playing in the sky. +2009-02-01,37.715,-76.6944444,Jamaica,VA,unknown,900,4 bright red lights parallel to ground in a row +2009-02-01,30.5080556,-97.6786111,Round Rock,TX,changing,3600,Bright lights in triangle from moving and changing over Round Rock, TX +2009-02-01,39.0061111,-77.4288889,Sterling,VA,circle,10,30 to 40 lights foming a V shape flying at high speed, observed over Sterling VA on Super Bowl night 2009 +2010-02-01,34.0583333,-106.8908333,Socorro (West Of, On Hwy 60),NM,rectangle,300,Followed by at very close range, rectangular shape, orange lights approximately 75-85 mph +2010-02-01,36.8252778,-119.7019444,Clovis,CA,sphere,180,A bright gold light that zoomed toward me when I acknowledged it. +2010-02-01,41.3461111,-73.0794444,Ansonia,CT,oval,120,Oval hovering disk +2010-02-01,32.4366667,-111.2247222,Marana,AZ,light,180,Orange lights in night sky. +2010-02-01,42.7758333,-114.7033333,Wendell,ID,light,1200,Amber lights moving in a diagnal angle seen south of wendell idaho +2011-02-01,34.4838889,-114.3216667,Lake Havasu City,AZ,sphere,120,Orange and Blue orbs....regular visitors. +2011-02-01,36.1658333,-86.7844444,Nashville,TN,oval,28800,It was a blue glowing orb made from a membrane material that looked like it had an embro inside it +2011-02-01,32.2216667,-110.9258333,Tucson,AZ,other,25,Chinook helicopters escort strange object over Tucson AZ +2011-02-01,45.6388889,-122.6602778,Vancouver,WA,formation,20,My friend and girlfriend were with me at my house, just spending time. We decided to go out and smoke a cigarette, so we did. We come o +2011-02-01,48.0983333,-122.5716667,Greenbank,WA,light,300,bright white light moving horizontally and vertically over Puget Sound +2012-02-01,39.1111111,-76.9327778,Burtonsville,MD,oval,600,Bright orange oval shape traveling slowly through sky near burtonsville and olney maryland at 1:30am feb 1st 2012 +2012-02-01,41.6475,-88.0894444,Romeoville,IL,changing,120,Extremely bright light moving upward in the sky, light disappears, and a triangular aircraft with red/white lights is visible +2012-02-01,42.8508333,-72.5583333,Brattleboro,VT,circle,20,Bright White Solid Light Observed by Police Officer in sky over southern Vermont USA ((NUFORC Note: ISS confirmed. PD)) +2012-02-01,29.1869444,-82.1402778,Ocala,FL,light,120,This is a repeat report from Feb.2,just a few things Id like to add.The objects I seen looked like 2 little moons very close to each ot +2012-02-01,36.175,-115.1363889,Las Vegas,NV,rectangle,180,Feb 1st 2012 10:41 am sighting of large tan/ beige triangler craft flying fast out over the eastern direction of Las Vegas NV +2012-02-01,38.4327778,-90.3775,Arnold,MO,triangle,37800,My neighbors and I spotted 3 small orange lights that were formed into a triangle to the northwest. +2012-02-01,47.6063889,-122.3308333,Seattle,WA,unknown,5,Falling Unidentified metallic object with trail +2012-02-01,33.3647222,-92.7247222,Smackover,AR,sphere,300,Glowing spheres in thunder storms. +2012-02-01,31.7586111,-106.4863889,El Paso,TX,circle,7200,Strange circular aircraft in the sky +2012-02-01,37.1655556,-76.9736111,Spring Grove,VA,changing,10800,4 the last two wks a glowing obj. descends t0 the tree t0p line ((NUFORC Note: Possibly Venus, which is in the SW, currently. PD)) +2012-02-01,31.0547222,-95.1255556,Groveton,TX,circle,30,Object looks as if on fire and crashing, then flies back into the sky, glowing orange and green. +2012-02-01,38.4405556,-122.7133333,Santa Rosa (45 Min. E Of; Hwy. 12),CA,teardrop,50,Fast flameing object spotted. +2012-02-01,29.1869444,-82.1402778,Ocala,FL,circle,60,White dots over Ocala, Fl. +2012-02-01,30.505,-97.82,Cedar Park,TX,fireball,35,Greenish Fireball: Cedar Park, TX. ((NUFORC Note: Probable meteor, we suspect. Video suggests a meteor to us. PD)) +2012-02-01,30.2669444,-97.7427778,Austin,TX,fireball,10,Bright green fireball with long bright green tail streaks across the sky. ((NUFORC Note: We suspect a meteor. PD)) +2012-02-01,48.0111111,-122.7675,Chimacum,WA,fireball,300,10-12 orange-red spheres seen hovering above Chimacum WA then instantly disappeared +2012-02-01,30.0969444,-95.6158333,Tomball,TX,circle,2,I was traveling north on hwy 290 into Tomball, TX. I saw a round, green object just above the horizon travelling west to east. I didn't +2012-02-01,32.4458333,-95.7036111,Ben Wheeler,TX,sphere,30,Orange, spherical object viewed over east texas by retired physician. +2012-02-01,32.7355556,-97.1077778,Arlington,TX,light,10,Bright light zooms across Arlington, TX +2012-02-01,43.2616667,-70.8658333,Somersworth,NH,light,120,Weird group of red lighted flying objects that appeared to be in a formation. +2012-02-01,34.0738889,-117.3127778,Colton,CA,fireball,240,I believe this objects are defending humanity from other force +2012-02-01,38.3363889,-75.0852778,Ocean City,MD,formation,10,An evenly spaced, straight line of lights appear in the sky, dance in a worm-like pattern and fade away. +2012-02-01,44.0522222,-123.0855556,Eugene,OR,unknown,360,I went outside to put the garbage and recycling containers back by the side of my house and as i was doing that i looked up over the to +2012-02-01,33.8702778,-117.9244444,Fullerton,CA,fireball,300,Orange ball of light moves slowly across the sky, then disappears in a flash of white. +2013-02-01,32.9855556,-80.11,Ladson,SC,unknown,180,The Lights Were Very Bright, Yellowish, Almost Like Very Large Headlights Very Close Together. As I Watched The Bright Lights, Waiting +2013-02-01,41.9294444,-88.7502778,Dekalb,IL,disk,1,Original sent to me that I in turn enhanced. Picture taken with a cell phone while someone was on break at the DeKalb Forge Company. +2013-02-01,45.6722222,-118.7875,Pendleton,OR,unknown,3600,Very odd sounds comming from the upper nite sky ! very wierd +2013-02-01,39.0638889,-108.55,Grand Junction,CO,triangle,3600,2 bright orbs of light. +2013-02-01,40.2969444,-111.6938889,Orem,UT,fireball,900,Red fireballs over Orem, Utah +2013-02-01,33.9730556,-78.3861111,Shallotte,NC,light,60,Total 4 orange light spheres, no noise at all, disappeared in a minute or so. +2013-02-01,29.7855556,-95.8241667,Katy,TX,circle,300,10 identical objects flying same path caught on video. +2013-02-01,39.0638889,-108.55,Grand Junction,CO,cone,900,Cone object with Red and Green lights found near Grand Junction desert. +2014-02-01,36.8188889,-76.2752778,Chesapeake,VA,circle,600,Two flashing round orbs in the sky flashing red orange green blue N white. +2014-02-01,33.5213889,-84.3538889,Jonesboro,GA,light,600,Strange lights on the Southside. ((NUFORC Note: We suspect that the object may be a twinkling star. PD)) +2014-02-01,28.5666667,-81.2083333,University Park,FL,triangle,420,Sighting: (ongoing) Couple of week’s duration on daily bases (required condition clear sky or few clouds).Location in the early mo +2014-02-01,38.5816667,-121.4933333,Sacramento,CA,formation,45,Fleet of silver UFO trio fly north at high speed. +2014-02-01,36.7477778,-119.7713889,Fresno,CA,other,60,Blackish odd shape over north Fresno, CA. +2014-02-01,42.125,-71.1027778,Stoughton,MA,fireball,60,Wow, Was That Strange. +2014-02-01,29.8944444,-81.3147222,St. Augustine,FL,circle,3600,I have a picture of a craft in the sky and you can see the markings on the craft. Dub it the "Neville Pic." +2014-02-01,35.7511111,-86.93,Spring Hill,TN,fireball,300,Two orange fireball-type flying craft within 5 minutes of each other. +2014-02-01,45.4983333,-122.4302778,Gresham,OR,fireball,150,10 silent red "fireballs," zoomed together, configured themselves and disappeared +2014-02-01,47.3811111,-122.2336111,Kent,WA,sphere,90,Three circular red objects in triangular formation +2014-02-01,25.7738889,-80.1938889,Miami,FL,other,40,Saw 2 green star looking objects slowly traveled across entire sky in under 40 seconds +2014-02-01,36.8055556,-114.0663889,Mesquite,NV,sphere,180,Large white sphere on the Mesa in Mesquite, Nevada. +2014-02-01,40.3708333,-80.235,Mcdonald,PA,light,3600,Bluish-white objects playing tag in McDonald, PA +2014-02-01,43.0202778,-123.2919444,Myrtle Creek,OR,light,600,several lights shaped in an s pattern moving slowly with a flashing light redish in color.Dont know if what I saw was a ufo or somrthin +2014-02-01,40.7141667,-74.0063889,New York City (Brooklyn),NY,circle,8,Red green UFO or drone sighting Brooklyn +2014-02-01,40.4494444,-80.2447222,Imperial,PA,light,3600,2 lights circling/chasing each other +2014-02-01,38.4191667,-82.4452778,Huntington,WV,fireball,1236,Outside smoking a cigarette seen it goes straight up went over to the last for about 10 miles until we couldn't see it anymore then sta +2014-02-01,34.09,-117.8894444,Covina,CA,light,300,Fleet of multiple pulsating color spheres. +2014-02-01,43.4636111,-114.2597222,Bellevue,ID,fireball,900,Six orange lights with no sound in formation over Bellevue, Idaho. +2014-02-01,30.0686111,-81.8605556,Middleburg,FL,unknown,300,2 object reddish white hovering in the sky. +2014-02-01,45.5236111,-122.675,Portland,OR,light,3,White light moved across the sky at an unbelievable speed. +2014-02-01,40.7608333,-111.8902778,Salt Lake City,UT,light,600,Orange hovering lights above salt lake city. +2014-02-01,26.1719444,-80.1322222,Oakland Park,FL,light,540,"Armada" of Strange Lights Over Fort Lauderdale Area. +2014-02-01,43.6136111,-116.2025,Boise,ID,circle,3,Low, fast flying, round, very bright light, no sound, moving east to west over Boise Idaho. +2014-02-01,32.7763889,-79.9311111,Charleston,SC,formation,600,I walked out into my yard downtown Charleston at 11:50 PM. I was with another witness that is ex-military\veteran & ex-fire (he stated +1981-02-12,35.198055600000004,-111.6505556,Flagstaff,AZ,cigar,120,the craft was cigar shaped looking kind of like a large blimp, was at night, white looking, with veins of some sort on the outside of t +1982-02-12,40.4775,-104.9008333,Windsor,CO,triangle,360,Upside Down Black Metalic Pyramid with non-defracting lights +1989-02-12,42.5847222,-87.8211111,Kenosha,WI,other,600,Three large white lights on the underside of an mini van sized ufo at approximately 150 feet away for about ten minutes. +1997-02-12,29.4238889,-98.4933333,San Antonio,TX,triangle,15,My girlfriend and I report seeing 7 lights in a boomerang shape object going east flying very slowly. The object was about 100 yards up +1998-02-12,47.9130556,-122.0969444,Snohomish,WA,oval,1200,I saw it when I was watching the sunrise. It moved very quickly across the sky. it moved back and forth and up and down several times e +1998-02-12,41.2330556,-80.4936111,Sharon (To Brookfield, Oh),PA,changing,600,Object seen as round light initially, changed colors white to yellow, orange-red, yellow, white, then split into 2 white lights with re +1999-02-12,64.7511111,-147.3494444,North Pole,AK,fireball,45,White/Blue fireball object fell from the sky. +1999-02-12,39.7941667,-91.5230556,Palmyra,MO,sphere,10,Bright green sphere with red trail +1999-02-12,30.4097222,-86.6630556,Mary Esther,FL,cylinder,60,I walked outside my garage and saw a ufo in the sky coming towards me with white flashing lights +1999-02-12,35.0844444,-106.6505556,Albuquerque,NM,sphere,600,object hovered due east.flickering brightness.disapeared.reappeared in different but close proximity C130's landing . +1999-02-12,41.8975,-84.0372222,Adrian,MI,oval,2,It was silver golwing and was rotating. +2000-02-12,26.1219444,-80.1436111,Fort Lauderdale,FL,fireball,3,i was wallking back to the car and i saw a light off to my right in the night sky at about 45 degrees. it was greenish yellow in color +2000-02-12,42.2711111,-89.0938889,Rockford,IL,sphere,900,my wife and I saw a bright orange ball decending out of the east then leveling off then going about half a block then turning to the no +2001-02-12,42.3266667,-122.8744444,Medford,OR,triangle,2400,Bright flickering light in southwestern sky. +2001-02-12,41.0255556,-81.73,Wadsworth,OH,triangle,900,Red lights on a triangular object with 2 others hovering paralle +2001-02-12,47.0380556,-122.8994444,Olympia,WA,light,1200,Light hovers over western Olympia, WA for over 10 minutes. +2001-02-12,43.7977778,-123.0583333,Cottage Grove,OR,disk,420,they were glowing disk shaped objects +2002-02-12,32.8888889,-80.8533333,Sniders Crossroads,SC,unknown,60,object above the treeline with no sound +2002-02-12,36.175,-115.1363889,Las Vegas,NV,light,5,UFO +2002-02-12,39.7661111,-105.0766667,Wheat Ridge,CO,other,420,A white horizontal line appeared in the west and moved slowly north until moving behind some dark clouds. +2002-02-12,47.7180556,-116.9505556,Post Falls,ID,light,1200,POST FALLS IDAHO SIGHTING 2/12/02 +2002-02-12,41.4527778,-82.1825,Lorain,OH,disk,120,UFO near Cleveland Ohio, evening of 2/12/02. +2002-02-12,35.4086111,-80.5797222,Concord,NC,light,240,I saw a moving light that disappeared into thin air on a clear night. +2002-02-12,40.7719444,-73.9305556,Astoria,NY,light,20,i saw three ufo's that reminded me of fireflyes moving anyway at any speed. +2003-02-12,44.3633333,-98.2138889,Huron,SD,triangle,120,A triangular shape light that hovered for about 2 min and then just faded away. +2003-02-12,40.4991667,-77.7416667,Mcveytown,PA,other,45,daylight sighting,no wind, crescent-shaped object +2003-02-12,47.6063889,-122.3308333,Seattle,WA,cylinder,15,2-12-03 orange fiery/glowing circular object flying above tree level watched for about 10 seconds in Shoreline Washington +2003-02-12,40.6536111,-97.2858333,Friend (Hwy 15, Approx. 4 Miles Se Of),NE,light,120,We were not sure if it was 1 large craft with 3 individually moving lights in a triangle formation or 3 individual crafts. But we were +2004-02-12,36.0872222,-81.9275,Newland,NC,triangle,3,Fast trianglar craft +2004-02-12,48.1183333,-123.4294444,Port Angeles,WA,changing,45,Ball/Cylinder shaped metallic object hovering over Port Angeles, Wa +2004-02-12,38.0330556,-122.2658333,Rodeo,CA,circle,90,I WAS SIITING AT HOME LOOKING AT THE LINDA VESTER NEWS ON FOX NEWS CH..WHEN IT APPEARED IN THE BACK GROUND OF THE SHOW.PLEASE TAKE LOOK +2004-02-12,34.0005556,-118.1588889,Commerce,CA,light,900,star like object race across the sky +2004-02-12,47.4236111,-120.3091667,Wenatchee,WA,light,120,Bright light approz 2x the size of Venus in western sky above ridge of foothills. I pulled over to see what it might be, or if it was +2004-02-12,47.7180556,-116.9505556,Post Falls,ID,formation,3,2 lights travelled from North to South in about 3 seconds @ 7:30 pm on 2-12-04. +2004-02-12,44.98,-93.2636111,Minneapolis,MN,rectangle,240,Long rectangular vertical shaped object with several bright white strobbing lights +2004-02-12,33.4483333,-112.0733333,Phoenix,AZ,sphere,1800,Large luminous object appearing easterly from Phoenix, appears stationary. +2005-02-12,42.0866667,-71.475,Bellingham,MA,circle,4,Circle of light traveling horizonal along a road +2005-02-12,41.4286111,-90.4608333,Coal Valley,IL,circle,180,I was on my way to work, when I spotted a VERY low flying air craft with very bright lights traveling quite slowly across the sky. +2005-02-12,39.7683333,-86.1580556,Indianapolis,IN,rectangle,300,As I was driving aprox. 10:00, I saw a white inverted rectangle in the overcast sky being intersepted by two aircraft (contrails). +2005-02-12,43.0116667,-88.2313889,Waukesha,WI,changing,60,Very bright white, round object repeatedly expanding and minimizing to nothing in the clear blue sky. +2005-02-12,44.6669444,-93.6266667,Jordan,MN,sphere,900,Very bright "wing span" lights too large to seem like a plane with about 5 green lights in circular pattern in back on 2 very low pla +2005-02-12,34.9530556,-120.4347222,Santa Maria,CA,light,10,Three objects flew from one cloud to the other leaving a "c"ish opening where the cloud appeared to have been disturbed. +2005-02-12,42.9205556,-83.045,Almont,MI,light,120,2 objects observed traveling across one quarter of the sky past the position of Saturn +2005-02-12,32.7152778,-117.1563889,San Diego,CA,egg,2,Craft lands straight down over Miramar base at out of conrol speed. +2005-02-12,36.5297222,-87.3594444,Clarksville,TN,unknown,900,thought i was looking at laser light show in heavy cloud cover and then it started moving away down the road like craft of some kind. +2005-02-12,32.6875,-83.3466667,Jeffersonville,GA,cigar,5,Flying glo-stick +2005-02-12,37.6141667,-88.7080556,Stonefort,IL,sphere,2,Big yellow ball in a hurry... +2007-02-12,39.8016667,-89.6436111,Springfield,IL,circle,300,((HOAX??)) Witnessed a bright, disk shaped object seen flying from the sky to the ground at at close range. (Photos Taken) +2007-02-12,30.2452778,-85.6483333,Lynn Haven,FL,disk,15,Platinum colored disk hovering silently above houses just across the street. +2007-02-12,28.5380556,-81.3794444,Orlando,FL,light,5,Bright, distinct, orb moved quickly west over the horizon. Not a plane, helicopter, or shooting star +2008-02-12,44.6369444,-124.0522222,Newport,OR,triangle,10800,newport,oregon ufo +2008-02-12,31.4883333,-94.9397222,Wells,TX,light,1200,This is a report of a UFO event in the town of Wells,Texas +2008-02-12,33.5091667,-111.8983333,Scottsdale,AZ,unknown,20,I saw what appeared to be a star that blew up and faded away in seconds +2008-02-12,31.7586111,-106.4863889,El Paso,TX,light,900,Bright sphere, flashing light, changes in intensity and patterns. Not consistent with weather balloon. +2008-02-12,39.7661111,-105.0766667,Wheat Ridge,CO,chevron,180,Ten to twelve crafts spotted in Wheat Ridge CO at dusk February 12, 2008 +2008-02-12,38.8055556,-123.0161111,Cloverdale,CA,disk,120,2/12/08, 18:45, on nightly walk spotted disk in sky that appeared to be the size of a football field moving slowly across the sky. +2008-02-12,33.4486111,-84.455,Fayetteville,GA,chevron,5,chevron, formation, evening, slow-moving +2008-02-12,47.5675,-122.6313889,Bremerton,WA,light,1200,Stationary red light over the Seattle area viewed from Bremerton,Wa +2008-02-12,42.9072222,-85.7919444,Jenison,MI,triangle,600,Strange, slow moving black triangle seen. +2008-02-12,32.7591667,-97.7969444,Weatherford,TX,formation,300,Light formations seen near Weatherford, Texas +2008-02-12,37.2266667,-121.9736111,Los Gatos,CA,circle,2,"Shooting Star" that made immediate 90 degree turn +2009-02-12,33.6694444,-117.8222222,Irvine,CA,diamond,300,3 diamond shaped light configurations in the northwest corner of the sky towards Newport Beach, CA +2009-02-12,34.0522222,-118.2427778,Los Angeles,CA,circle,30,Silver object over Los Angeles clear skies. +2009-02-12,33.7513889,-84.7477778,Douglasville,GA,other,60,Around noon, Feb. 12, 2009, under a partly cloudy sky with chemtrails, I photographed a white dot moving slowly westward in the sky. +2009-02-12,33.7488889,-84.3880556,Atlanta,GA,disk,60,I was driving home Feb 12th 2009 at around 14:35 (2:35PM) EST. While North on I-85 I noticed a craft in the sky. The best way that I ca +2009-02-12,32.7152778,-117.1563889,San Diego,CA,fireball,300,Balls of light +2009-02-12,32.7152778,-117.1563889,San Diego,CA,cigar,3600,Confirm a report dated 02/12/09 in San Diego at approx 20:00 hrs. +2009-02-12,32.7152778,-117.1563889,San Diego,CA,light,3600,Extreemly bright UFO "orb" over San Diego for over an hour, 8:00pm, February 12, 2009. ((NUFORC Note: Venus. PD)) +2009-02-12,34.2141667,-80.9741667,Blythewood,SC,oval,2,White translucent object with a tail moved north to south slower than a shooting star and much faster than any aircraft. +2009-02-12,39.2402778,-76.8397222,Columbia,MD,light,1800,Very bright orange colored light NNW of MD, USA. ((NUFORC Note: Possible sighting of Venus. PD)) +2009-02-12,42.8794444,-88.4741667,Eagle,WI,oval,1500,A large, bright, stationary white light in the W sky, not a star or plane, observed for nearly 30 min.. ((NUFORC Note: Venus. PD)) +2009-02-12,35.2783333,-93.1336111,Russellville,AR,triangle,60,Russellville, AR, triangle lights west of nuclear power plant. ((NUFORC Note: See addenda from reader, and source of report!! PD)) +2009-02-12,39.9611111,-82.9988889,Columbus,OH,oval,1200,Luminous blue Cloud-Orb spotted over the Sky area of Buffalo NY from Columbus, OH same time as crash of Aircraft +2009-02-12,31.1227778,-85.4527778,Rehobeth,AL,triangle,120,Triangle Shaped UFO spotted by six in rural Alabama +2009-02-13,47.4019444,-122.3230556,Des Moines,WA,fireball,3,my wife saw a huge object in roughly the same location as i did in the past. it was too slow to be a meteor. it happened south of us. t +2010-02-12,47.6063889,-122.3308333,Seattle,WA,triangle,10,I saw a dark triangular object with lights around it and there was golden light emerging from the craft +2010-02-12,29.4238889,-98.4933333,San Antonio,TX,light,900,star like object +2010-02-12,43.7844444,-72.4547222,Sharon,VT,light,45,Airplane-like light which seemed to spawn larger, brighter, stationary lights as it moved. +2010-02-12,46.6022222,-120.5047222,Yakima,WA,fireball,15,Bright ball of light heading north very fast. +2010-02-12,47.6063889,-122.3308333,Seattle,WA,light,45,Blue Green object streaking across the sky +2010-02-12,38.4972222,-122.9655556,Santa Nella,CA,formation,60,Two low flying green lights near Hwy. 5 disappear in mid-air! +2010-02-12,32.9808333,-80.0327778,Goose Creek,SC,flash,900,Brillant flashes of light +2010-02-12,26.2772222,-98.5633333,Sullivan City,TX,formation,240,Red flashing lights in Sullivan City, TX. +2010-02-12,39.0483333,-95.6777778,Topeka,KS,unknown,172800,bright star like light, moves unlike nothing ive ever heard about +2010-02-12,39.4458333,-123.8041667,Ft. Bragg,CA,cross,30,T shaped, twinkeling lights, and then vanished. +2011-02-12,38.935,-74.9063889,Cape May,NJ,light,5,i fast moving red light, turned to blue, changed direction then turned white and it was gone!!!! +2011-02-12,42.2458333,-84.4013889,Jackson,MI,light,10800,Light in sky. ((NUFORC Note: Venus?? PD)) +2011-02-12,43.0944444,-79.0569444,Niagara Falls,NY,sphere,60,It was a stationary, hovering globe of light that illuminated the night sky. +2011-02-12,35.6011111,-98.1183333,Calumet,OK,egg,3600,Egg shaped Orb west of Okc +2011-02-12,40.7608333,-111.8902778,Salt Lake City,UT,formation,300,Two horizontal rows of 4-5 shimmering spots or lights in formation - it rumbled +2011-02-12,33.1580556,-117.3497222,Carlsbad,CA,flash,5,very large strobe light-like flash moving at excessive speed +2011-02-12,36.8252778,-119.7019444,Clovis,CA,flash,180,Two flare like lights seen in the sky..then rapidly rising into the air and speeding north creating a haze around them +2012-02-12,36.8813889,-81.7622222,Saltville,VA,sphere,4,Green sphere seen in saltville virginia and mountain city Tennessee +2012-02-12,34.1952778,-79.7627778,Florence,SC,fireball,13,I was waiting for my wife to get off work and I looked out the driver side window of my car and I saw a fireball with a green tail fall +2012-02-12,39.9830556,-75.8241667,Coatesville,PA,light,10,Bright orange-red light hovers between trees moves west and disappears. 500 Lights On Object0: Yes +2012-02-12,26.1416667,-81.795,Naples,FL,light,300,Formation of 8 orange lights, in sky hovering about 8:30pm in South Naples near Copper Cove. +2012-02-12,39.6236111,-89.6488889,Glenarm,IL,diamond,480,Red/whi/blu diamon shaped disc hovers over Glenarm, Illinois +2012-02-12,35.2872222,-95.5822222,Eufaula,OK,oval,8,Faint oval shape with moving lights at bottom....but very large 1/2 mile long oval shaped +2012-02-12,41.7297222,-93.6055556,Ankeny,IA,triangle,30,Flying triangle really low to ground not making any noise, not an airplane or a helicopter +2012-02-12,40.2880556,-109.8538889,Ft. Duchesne,UT,egg,600,Glowing egg or oblong shaped flyiing object rose up from the ground and went east. +2013-02-12,40.1202778,-123.8222222,Redway,CA,unknown,45,Super bright flash +2013-02-12,38.8461111,-77.3066667,Fairfax,VA,light,18000,Flashing red light in night sky for several hours. +2013-02-12,45.7008333,-111.7855556,Harrison,MT,diamond,120,Harrison MT UFO +2013-02-12,41.3208333,-93.1091667,Knoxville,IA,triangle,600,3 medium bright lights in a triangular shape. Large circular light in center lit up and object moved, seemingly instantaneously to the +2013-02-12,34.8480556,-114.6133333,Needles,CA,formation,300,Floating red lights over Needles, CA. +2013-02-12,26.1336111,-80.1133333,Sunrise,FL,circle,180,Ten small orange lights in random formation, moving slowly north in western sky of Sunrise, Florida at 22.45 +2014-02-12,39.8208333,-84.0194444,Fairborn,OH,other,7200,Black tube descending from sky to ground. +2014-02-12,43.8286111,-72.2466667,Thetford Center,VT,other,600,My husband and I came outside for a cigarette around 8 pm on the sixth of February I looked up and noticed this very large very bright +2014-02-12,46.8722222,-113.9930556,Missoula,MT,fireball,300,8 flaming red lights moving across the sky +1966-02-13,35.3733333,-119.0177778,Bakersfield,CA,disk,600,Sighting in Bakersfield of Saucer with multiple colored beams of light ... +1967-02-13,41.2294444,-73.9875,Stony Point,NY,unknown,180,appeared over barn with vaacum sound. about 150 ft. long. disappeared quietly into space +1979-02-13,38.8047222,-77.0472222,Alexandria,VA,light,120,white light over Alexandria at night grew in intensity-took three pictures +1997-02-13,39.7047222,-105.0808333,Lakewood,CO,teardrop,600,Hovering object...quiet crack...then vanished +1998-02-13,37.9963889,-105.6991667,Crestone,CO,light,7200,Large amber light at the top of the Sangre De Cristo range. About 10ꯠ feet up the mountain. +1999-02-13,37.9063889,-122.0638889,Walnut Creek,CA,unknown,600,Aircraft from SSW to E at extremely high altitude at extremely high speed, crossing visible horizon in 8 minutes, so high that shape wa +1999-02-13,33.89,-84.1430556,Lilburn,GA,light,15,At dusk, a slowly moving bright orange / yellow light silently exploded leaving visible smoke and sparks trailing toward the ground. +2000-02-13,44.9430556,-123.0338889,Salem,OR,circle,600,Orange orb +2000-02-13,48.2766667,-116.5522222,Sandpoint (Ne Of),ID,light,45,Bright light moving from west to east, which went from the horizon to directly overhead in less than a minute, with no sound. +2001-02-13,42.3583333,-71.0602778,Boston,MA,light,120,Jet's Chasing Lights in Sky Over Boston +2001-02-13,43.1547222,-77.6158333,Rochester,NY,light,30,Red and white lights moving in unison at high speed with very quick zig zag directional movements ((90 degrees). +2001-02-13,44.0463889,-123.0208333,Springfield,OR,circle,60,I viewed a moving object, traveling southwest and it split-up into two moving objects, exchanging a red light beam. +2001-02-13,32.2216667,-110.9258333,Tucson,AZ,oval,600,the ovel shape went faster then the jets , and could do moor movements of flight +2001-02-13,42.2275,-75.9186111,Castle Creek,NY,other,10800,two glowing balls that seemed to stay still and then move abroutly place too anouther +2002-02-13,35.4491667,-86.7888889,Lewisburg,TN,oval,900,It was 1:00a.m. on 2/12/02 and 2/13/02 that my husband and I noticed a strange light in the sky. We got our binoculars and looked thr +2002-02-13,46.1311111,-92.8672222,Sandstone,MN,rectangle,300,It is very hard to explain +2002-02-13,42.6236111,-85.7602778,Hopkins,MI,fireball,5,Meteor sighted Hillards Febuary 13th 8pm +2002-02-13,42.6072222,-83.9294444,Howell,MI,fireball,2,At 8:03 pm Tuesday, February 13, 2002, I was driving east on Marr Rd. near the intersection of Fischer Rd., which is about 3 miles nort +2002-02-13,39.2902778,-76.6125,Baltimore County,MD,light,2,Blue ball of light flashed across the sky in Northwestern Baltimore County, Maryland. +2002-02-13,45.2630556,-122.6913889,Canby,OR,light,180,Two white lights traveling north at a highe rate of speed, hovering =, then continuing north +2002-02-13,42.6669444,-84.1741667,Webberville,MI,light,300,Bright light hovering over Williamston Michigan +2003-02-13,32.8544444,-79.975,North Charleston,SC,chevron,15,Very large triangle craft that was only lit on leading edges, silent and not actually visiable against night sky +2003-02-13,47.6063889,-122.3308333,Seattle (Outside),WA,triangle,1980,Unexplained time loss, on the road, blinded by blue light from triangle object, automotic phonomenon. +2003-02-13,34.6391667,-87.1916667,Hillsboro,AL,other,600,Floating bell shaped object with pure white lights tinged with silver angel or ufo? +2003-02-13,59.5469444,-139.7272222,Yakutat,AK,changing,1200,ALASKA UFO, 2003, YAKUTAT, ALASKA. +2003-02-13,34.0005556,-81.035,Columbia,SC,unknown,60,The three craft where flying with very little sound, low and slow. +2003-02-13,44.2236111,-70.5138889,South Paris,ME,sphere,14400,Lots of sightings in and around South paris Maine. +2003-02-13,40.8558333,-73.2011111,Smithtown,NY,light,780,Light Hovers in the NY sky... and it's not the first time... +2004-02-13,42.5802778,-83.0302778,Sterling Heights,MI,light,36,The object moved faster, lower and the lights were brighter than an airplane. +2004-02-13,47.6063889,-122.3308333,Seattle,WA,fireball,45,Fireball near the beach on Vashon Island +2004-02-13,36.1344444,-80.6597222,Yadkinville,NC,sphere,300,Spherical, shiny object hovering over wooded area near Yadkin County, N.C. +2004-02-13,47.4625,-92.5397222,Eveleth,MN,light,15,Two large lights above the treetops about 150 feet from our car that radiated light that affected my wife and I +2004-02-13,40.5472222,-86.5244444,Flora,IN,circle,45,Three round, orange objects in the sky +2004-02-13,30.4055556,-86.6188889,Fort Walton Beach,FL,triangle,60,Craft was hovering over an area at the edge of Eglin Air Force base runway. Craft was triangle with bright lights at bottom and maneuv +2004-02-13,42.4527778,-75.0641667,Oneonta,NY,unknown,3600,Strange moving, multi-colored light, not a plane satellite or star. ((NUFORC Note: Possibly the star, "Sirius?" PD)) +2005-02-13,25.9013889,-97.4972222,Brownsville,TX,circle,10,shiny chrome metallic craft +2005-02-13,42.2972222,-71.075,Dorchester,MA,disk,600,UFO Sighting in Massachusetts +2005-02-13,34.2783333,-119.2922222,Ventura,CA,other,15,Pill-shaped, swiftly moving solid object spotted through small telescope +2006-02-13,32.3666667,-86.3,Montgomery,AL,unknown,5400,Unknown flying object in Alabama +2006-02-13,41.6411111,-88.4472222,Yorkville,IL,oval,300,15, bright orange, fire looking, U.F.O's sighted +2006-02-13,29.7630556,-95.3630556,Houston,TX,light,30,Luminous Point Lights Spiral in the Texas Sky +2006-02-13,37.2644444,-88.2441667,Salem,KY,other,600,Not a UFO, but a strange black helicopter. +2006-02-13,34.1683333,-118.605,Woodland Hills,CA,sphere,600,Amber objects performing high speed maneuvers; overing +2006-02-13,39.6333333,-105.3166667,Evergreen,CO,light,2700,This is the third time this week I've seen a lighted object (maybe lit by the sun?) hovering and moving slowly west of Evergreen. This +2006-02-13,41.6411111,-88.4472222,Yorkville,IL,other,300,looked like a line with a small head at the end of the direction it was going and looked like the air crafts were surrounded in fire +2006-02-13,33.5016667,-117.6616667,San Juan Capistrano,CA,light,45,While driving home to Carlsbad Ca on the 5 freeway I saw what looked like 6-8 weird blue lights almost the color of blue dimonds moving +2006-02-13,34.2163889,-119.0366667,Camarillo,CA,circle,2,Driving north on Woodcreek Road, passed Mission Oaks Blvd, I looked and saw a circle in white flash in a downwards motion. This is a t +2006-02-13,36.2808333,-83.515,Rutledge,TN,circle,120,we knew these werent aircraft, nor stars, nor satellites. +2006-02-13,30.2669444,-97.7427778,Austin,TX,other,120,Floating "Veil" Austin, TX +2007-02-13,33.9241667,-84.3786111,Sandy Springs,GA,light,600,Bright light with no FAA lights spotted over Sandy Springs area. +2007-02-13,44.9591667,-70.1544444,Kingfield,ME,light,7200,Multiple sightings of lights in Franklin County, Maine. +2007-02-13,47.8108333,-122.3761111,Edmonds,WA,triangle,60,A triangle craft spotted in Edmonds washington. 500 Lights On Object0: Yes +2007-02-13,40.7608333,-111.8902778,Salt Lake City,UT,flash,60,Odd flash of bluish-green light +2008-02-13,46.4913889,-122.9366667,Winlock (On Interstate 5),WA,light,120,Bright oval shape moving faster than any plane, making erratic right angle turns in the clear morning sky. +2008-02-13,25.7902778,-80.1302778,Miami Beach,FL,triangle,180,2 Silent, Motionless objects over causeway to Miami Beach +2008-02-13,33.4483333,-112.0733333,Phoenix,AZ,light,780,Two lights traveling at irrational speeds, sometimes seeming to not move at all. +2008-02-13,41.4286111,-90.4608333,Coal Valley,IL,light,60,Ball of Light Moving at Extreme Speeds +2008-02-13,39.5297222,-119.8127778,Reno,NV,other,300,they been traveling quickly around peavine mountain to quick to be any plane jet or helicopter, same type of thing i saw the last few y +2008-02-13,36.6941667,-91.3991667,Alton,MO,oval,180,Eye shaped object, just above the treetops, orangish in color, slowly blinking, then disappeared. +2008-02-13,36.175,-115.1363889,Las Vegas,NV,cigar,360,Object seen 2/13/2007 +2008-02-13,26.5625,-81.9497222,Cape Coral,FL,light,30,White light moving across the sky, very fast, and then vanishing. +2008-02-13,32.9536111,-96.89,Carrollton,TX,other,120,The object was moving pretty fast, going North East, Boomarang shape, No Lights on at all, Made NO Sound! +2008-02-13,26.5625,-81.9497222,Cape Coral,FL,light,60,3 balls of light, moving in a weird triangle formation. +2008-02-13,35.6327778,-99.3813889,Hammon,OK,light,300,the blue object moved like no other object i ever saw in my life. +2008-02-13,35.4725,-77.4158333,Ayden,NC,oval,3,Unexpected UFO Sighting +2009-02-13,38.385555600000004,-81.8363889,St. Albans,WV,fireball,2,A green ball of gas, somewhat resemblant of a meteor, fell through the sky 2 days ago and disappeared after approximately 2 seconds. +2009-02-13,24.9238889,-80.6280556,Islamorada,FL,other,5,viewing photo taken in Florida Keys shows unknown objects +2009-02-13,33.8025,-85.1886111,Buchanan,GA,triangle,120,Triangular Shaped Object in Daylight Hours +2009-02-13,36.7477778,-119.7713889,Fresno,CA,circle,3,Glowing bluish- green ball of light flying west to east at rapid rate of speed. ((NUFORC Note: Possible meteor?? PD)) +2009-02-13,39.7908333,-77.1097222,Whitehall,PA,other,300,WHEN ALL OF THE SUDDEN THIS HUGE BLACK STING RAY SHAPED OBJECT WITH A VERY, VERY FAINT GLOW AROUND IT WAS MOVING ABOVE. +2009-02-13,40.7141667,-74.0063889,New York City (Ridgewood; Queens),NY,light,1200,a strange steady ligth. +2009-02-13,35.5138889,-82.3961111,Fairview,NC,oval,180,White light rose vertically from ground, oval craft hovered over trees then flew over house and ascended. +2009-02-13,33.2858333,-96.5725,Melissa,TX,other,1800,Red orb, no noise, stationary for about 30 minutes, above farmland with horses & cattle, black choppers in the same area next day. +2009-02-13,40.3427778,-80.8183333,Bloomingdale,OH,triangle,1200,it was not moving +2009-02-13,39.605,-83.3955556,Bloomingburg,OH,cross,6,THE OBJECT LIT UP THE SKY LIKE A SMALL MOON +2009-02-13,37.7341667,-83.5475,Campton,KY,unknown,60,heard a BIG explosion, then sounds of flames +2009-02-13,38.3325,-82.9486111,Grayson (Near),KY,disk,3,Large disk or saucer shaped object sighted, size of full moon, light lime green in color with darker ring on outer edge, no sound. +2009-02-13,38.4783333,-82.6380556,Ashland,KY,sphere,10,White Sphere in sky Over Ashland, KY 29th street BP. +2009-02-13,37.7622222,-84.8433333,Harrodsburg,KY,light,10,Green light lit up the entire sky and a small light moved horizontally before fading out +2009-02-13,42.4097222,-74.1527778,Oak Hill,NY,light,25,Serious Frequent UFO Sightings the past 3 weeks..... +2009-02-13,40.31,-75.1302778,Doylestown,PA,triangle,10,3 lights (triangular) entered the sky like a shooting star, faded away and repeated this process til out of sight +2010-02-13,34.1083333,-117.2888889,San Bernardino,CA,fireball,600,I saw three orange lights that came at different times and went out like a flame on a candle at different times. +2010-02-13,41.5236111,-90.5775,Davenport,IA,light,2,Bright concentrated lights in two bursts, electrical disturbances, magnetic signs. +2010-02-13,34.0522222,-118.2427778,Los Angeles,CA,circle,1200,5 white circular things in the L.A. sky on the day before valentine's day... +2010-02-13,31.6033333,-94.6552778,Nacogdoches,TX,formation,20,ufo spotted Nacogdoches tx. bright silver with a short smoke tail 2-13-2110 @5:45pm main st. area +2010-02-13,37.3688889,-122.0352778,Sunnyvale,CA,formation,15,witnessed formation of 30-40 dim objects fly in south direction over Sunnyvale, Ca +2010-02-13,28.0833333,-80.6083333,Melbourne,FL,sphere,60,Three orange lights on top and four yellow lights on the bottom. Shaped like an oval or sphere. +2011-02-13,38.7130556,-90.4297222,Maryland Heights,MO,unknown,5,Two unidentifiable objects flying quickly and in an unusual path. +2011-02-13,39.5180556,-76.5597222,Jacksonville,MD,triangle,40,Since I'm a hunter (waterfowl) when I was what looked like snow geese circling I started to watch close. The sighting was about 1/2 mil +2011-02-13,39.9355556,-91.4097222,Quincy,IL,triangle,10,High flying, high speed, bright white triangular object observed in full daylight and clear sky +2011-02-13,41.4958333,-87.8486111,Frankfort,IL,teardrop,600,3 lights (teardrop shape) in a triangle pattern. ((NUFORC Note: Possibly landing lights of aircraft?? PD)) +2011-02-13,37.5536111,-77.4605556,Richmond,VA,light,240,Bright craft in sky over Richmond, VA +2011-02-13,34.1083333,-117.2888889,San Bernardino,CA,fireball,900,Five amber red balls. 3 disappear and 2 combine into one over San bernardino ca. +2012-02-13,36.9786111,-76.4283333,Newport News,VA,light,30,Bright red light scanning across my house and patio area. +2012-02-13,39.5138889,-121.5552778,Oroville,CA,changing,21600,Sighting in Norcal video footage scary! +2012-02-13,39.5138889,-121.5552778,Oroville,CA,fireball,21600,Amazing footage of ufo in nor cali ((NUFORC Note: We have not seen the footage, but we a star or planet. PD)) +2012-02-13,34.0983333,-118.3258333,West Hollywood,CA,formation,60,Formation of lights over West Hollywood, CA. +2012-02-13,43.0733333,-75.2880556,New Hartford,NY,changing,120,Two lights separated into three, then four, as they flew overhead. +2012-02-13,41.3072222,-111.9594444,North Ogden,UT,sphere,300,Weird moving ball of light/craft? +2012-02-13,44.0805556,-103.2305556,Rapid City,SD,triangle,60,Blue and red triangle above Rapid City +2013-02-13,40.6638889,-74.2111111,Elizabeth,NJ,unknown,10800,For several nights, for the last 2 weeks, there has been a craft hovering over the City of Elizabeth. The noise of the craft gets loude +2013-02-13,29.7630556,-95.3630556,Houston,TX,light,300,2/13/2013 19:20 tx 5 minutes satellite looking object with crazy turns +2013-02-13,41.6269444,-88.2038889,Plainfield,IL,circle,240,Red ball object seen in plainfield glowed bright dimmed flew off +2013-02-13,35.2619444,-81.1875,Gastonia,NC,sphere,300,Orange/Reddish objects traveling at constant slow speed with no sound. +2013-02-13,39.2655556,-123.2033333,Redwood Valley,CA,light,180,Pulsing Red Light (orb?) stayed still then moved across the sky and faded away in Redwood Valley +2013-02-13,26.7052778,-80.0366667,West Palm Beach,FL,sphere,300,At dusk 2 pulsating spheres started slowly moving towards us +2013-02-13,34.7019444,-80.895,Fort Lawn,SC,light,420,Four crafts with four or more red lights. +2013-02-13,45.2102778,-123.1975,Mcminnville,OR,sphere,600,Large bright ball of light moving slowly. +2013-02-13,34.9808333,-79.2244444,Raeford,NC,other,300,Octogon shaped object with lights in the night sky travelling silently westward. +2013-02-13,41.1305556,-85.1288889,Fort Wayne,IN,light,1500,Fleet sighting in Indiana. +2013-02-13,33.3805556,-84.7997222,Newnan,GA,light,15,One red light moving across sky. +2014-02-13,36.6777778,-121.6544444,Salinas,CA,changing,10800,Large egg-like craft with bight lights observed for 2 hours at a time by 2-4 people for 7 days in a row! +2014-02-13,36.3122222,-87.1413889,Chapmansboro,TN,other,900,On the morning of 02/13/2014, I woke up to go to the restroom. Afterward, I decided I wanted a cigarette. It was just before daybreak w +2014-02-13,44.9430556,-123.0338889,Salem,OR,circle,5,Bright light, then disappeared. +2014-02-13,26.2708333,-80.2708333,Coral Springs,FL,oval,600,Large bright object in South Florida +2014-02-13,38.8338889,-104.8208333,Colorado Springs,CO,sphere,30,Clear spheres (50+) with something silver inside moving quickly in a group. +2014-02-13,35.925,-86.8688889,Franklin,TN,fireball,300,Slow moving flame, 700-1000 feet away. +2014-02-13,41.0047222,-88.8916667,Long Point,IL,light,300,White light moveing fast and out of normal flight patterns. +2014-02-13,25.7738889,-80.1938889,Miami,FL,light,60,Two star-like objects, bright, appear then disappear. +2014-02-13,34.15,-114.2883333,Parker,AZ,light,180,Large bright orb near the Colorado River +2014-02-13,46.0038889,-112.5338889,Butte,MT,light,900,Multiple white flying objects flying in night sky. +2014-02-13,46.0038889,-112.5338889,Butte,MT,light,900,White/organge lights moving in night sky +2014-02-13,25.6788889,-80.3175,West Kendall,FL,circle,4,As I was walking back into my apartment, I saw a round white light appear from nowhere and move across the sky super fast. +2014-02-13,38.7072222,-121.28,Citrus Heights,CA,oval,120,Two lights traveling north in the western sky without sound that stop and fade out. +1974-02-14,36.7222222,-80.8230556,Woodlawn,VA,fireball,10,Meteor or Otherwise? Blue Fireball Impacted SouthWestern Virginia Valentines Day 1974 +1976-02-14,43.0125,-83.6875,Flint,MI,rectangle,20,Spinning White 2'x 4' - No Lights? +1976-02-14,35.1494444,-90.0488889,Memphis,TN,disk,120,Mothership Sighting over Memphis Tennesee on February 14, 1976 +1990-02-14,41.5236111,-90.5775,Davenport,IA,triangle,1800,Three bright lights in a huge triangle shaped pattern over I-80 moving to the East from Iowa into Illinois +1991-02-14,36.5708333,-119.6111111,Selma,CA,rectangle,60,02/1991 Selma CA, shape Other, Lasted for 5 minutes traveling slow accross high winds. +1992-02-14,35.3272222,-96.925,Shawnee,OK,cigar,1200,Huge cigar shaped, right above the trees, port holes and very bright light that had a peace affect. +1994-02-14,37.7525,-83.0688889,Salyersville,KY,triangle,60,i was driving into salyersville from south to north maybe an 1/8 of a mile from rt.7 and u.s. 460 intersection, when a dark gray triang +1996-02-14,46.1530556,-95.3286111,Parkers Prairie,MN,circle,1200,UFO chases car 8 miles. 4 witnesses. Several sightings afterward. 500 Lights On Object0: Yes +1996-02-14,39.5922222,-74.4513889,New Gretna,NJ,changing,300,Spherical white lights in a moving semi circular pattern. +1996-02-14,46.0441667,-95.2911111,Miltona,MN,circle,1200,Circular object follows car, 4 witnesses. +1997-02-14,36.175,-115.1363889,Las Vegas,NV,formation,300,Formation of balls of light travelling across the sky, one behind the other, early in 1997. +1997-02-14,29.2855556,-81.0561111,Ormond Beach,FL,chevron,12,Large Chevron shaped ufo floats over Ormond Bch. Florida +1998-02-14,33.1958333,-117.3786111,Oceanside,CA,chevron,8,A row of 10 lights shaped in a chevron shape moved very fast from the West about 300 deg. to the East. they moved right over my Condo. +1998-02-14,39.1625,-76.625,Glen Burnie,MD,oval,300,I observed a light that I thought was a airplane. As I followed it for a few minutes I looked away few 1 second max. .And when I looked +1999-02-14,41.0997222,-80.6497222,Youngstown,OH,light,698,While heading west on I-80, between Youngstown and Cleveland, we encountered something we can't explain... +1999-02-14,44.4258333,-69.0069444,Belfast,ME,sphere,5,Wife and daughter observed bright green sphere out east window, arcing south to north towards ground. +2000-02-14,42.2458333,-84.4013889,Jackson,MI,diamond,1800,never going hunting alone!!! +2000-02-14,33.4463889,-92.1738889,Hermitage,AR,sphere,60,Small white bright object observed while using scope on day moon--object split into two and disappeared. +2001-02-14,30.2669444,-97.7427778,Austin,TX,changing,1800,two others and I saw a number of lights in the sky +2001-02-14,40.9113889,-73.7827778,New Rochelle,NY,diamond,4,UFO Flying through New Rochelle, NY at Hyperspeed at 4:00am February of 2001 with a witness. (taxi driver and passenger) +2001-02-14,36.8255556,-79.3983333,Chatham,VA,other,1200,It was beautiful +2001-02-14,40.9586111,-74.0372222,Oradell,NJ,other,1.5,Huge white spotlight moving behind clouds; no object or light source visible +2001-02-14,40.5983333,-124.1561111,Fortuna,CA,light,600,An orange light, circled by two planes, then moves up and out of the sky and vanishes. +2001-02-14,32.9786111,-115.5294444,Brawley,CA,triangle,60,Indiviual green lights that made a triangle , traveling at a good rate of speed. +2001-02-14,34.175,-82.0241667,Ninety Six,SC,light,60,A flash of light went across the lake +2002-02-14,30.6236111,-84.4147222,Havana,FL,light,2,Bright white light streak over Gadsden Co. Fl made sharp left turn. +2002-02-14,40.5594444,-83.8352778,Roundhead,OH,sphere,30,Two glowing objects +2002-02-14,42.5175,-123.4186111,Merlin,OR,circle,1200,strange light that changed all colors in the sky +2002-02-14,42.5175,-123.4186111,Merlin,OR,sphere,1200,Multi colored light in the sky ......... +2002-02-14,40.805,-81.9352778,Wooster,OH,disk,600,uknown shaped object with lights flashing below, hovers , thens eases away. +2002-02-14,33.4483333,-112.0733333,Phoenix,AZ,light,360,7 Unknows Objects - Estrella Mountain's - Phoenix AZ +2002-02-14,34.1975,-119.1761111,Oxnard,CA,disk,5,I thought it was a shooting star.......but boy was i mistaken! +2003-02-14,35.4797222,-79.1805556,Sanford,NC,egg,600,Oval shape object with big bright light on the top and a ring of colored lights around it. +2003-02-14,34.1808333,-118.3080556,Burbank,CA,light,600,Strange orange light over Burbank Ca, it appeard to land in one of my sightings. +2003-02-14,39.2902778,-76.6125,Baltimore,MD,cigar,900,My brother clock stoped working and then look out his window and saw a Ufo. +2003-02-14,27.9375,-82.2861111,Brandon,FL,fireball,1800,a ufo with what appers to be a sheild around it +2003-02-14,25.7738889,-80.1938889,Miami,FL,oval,1920,saw oval shape, time-21:54, after what seemed like 2 seconds time was 22:26. dont know what happend. +2004-02-14,40.77,-85.4533333,Majenica,IN,flash,3,Green light falling in distance +2004-02-14,40.7141667,-74.0063889,New York City (Brooklyn),NY,circle,10,I t was 3:18 pm on Valentines day that I have witnessed an object in the sky. I am in Brooklyn. I realize that this is Valentines D +2004-02-14,42.2661111,-89.2411111,Winnebago County (West Of),IL,light,1800,bright light with an even brighter light on its left side sorta hoovering for a while then began to rappidly move faster. +2004-02-14,40.7141667,-74.0063889,New York City (Brooklyn),NY,sphere,3,whitish neon-green orb of light with a tail +2004-02-14,40.7141667,-74.0063889,New York City,NY,fireball,5,huge blue shooting star +2004-02-14,35.4602778,-94.7872222,Sallisaw,OK,disk,7200,3 bright lights hovering with colored aura moving back and forth and up and down one landed. ((NUFORC Note: Venus??)) +2004-02-14,40.7563889,-73.6452778,Williston Park,NY,fireball,60,Blue-green ball of light +2004-02-14,40.1522222,-75.2666667,Blue Bell,PA,circle,2,Pale green glowing round object flew across the sky followed by a long tail of light +2004-02-14,40.2291667,-74.9372222,Newtown,PA,oval,2,Glowing Green Light streaking accross sky +2004-02-14,40.8455556,-74.0883333,Wood-Ridge,NJ,circle,10,Driving at night, me and my boyfriend noticed a bright glowing green object in the sky, which then sped off and disappeared. +2004-02-14,40.7141667,-74.0063889,New York City (Staten Island),NY,oval,2,Blue Orb +2004-02-14,36.1538889,-95.9925,Tulsa,OK,formation,900,Three adults allegedly witness three formations of "points of light" pass overhead at high speed. +2004-02-14,45.8563889,-96.92,New Effington,SD,unknown,2,Explosion in the sky +2004-02-14,47.4508333,-122.8261111,Belfair,WA,light,2,fast moving zigzaging light. +2004-02-14,40.8577778,-74.4263889,Parsippany,NJ,light,1,Round Green light flew over my house in Parsippany +2004-02-14,42.8666667,-106.3125,Casper,WY,triangle,600,4 triangular orange and red lighted in casper, wyoming +2004-02-14,37.5072222,-122.2594444,San Carlos,CA,triangle,3600,Red Triangles Near San Francisco Bay Area Northern Sky +2004-02-15,47.7625,-122.2041667,Bothell,WA,triangle,15,Upside down triangle, solid, dark color, one object, no lights, traveling at a steady pace and movement. +2005-02-14,39.2902778,-76.6125,Baltimore,MD,light,1200,I went to take my break from work and I walked out on a balcony for a smoke and looked up in the sky to see if the predicted weather w +2005-02-14,35.3858333,-94.3983333,Fort Smith,AR,unknown,1800,it was like nothing of earth and it scared me shitless +2005-02-14,29.2363889,-89.9872222,Grand Isle,LA,triangle,10,Triangular shaped craft seen on beach +2005-02-14,48.5344444,-123.0158333,Friday Harbor,WA,circle,3,I saw a round object in a controlled fall from the sky, the object went behind some clouds and did not reappear in it's fall. +2005-02-14,42.3583333,-71.0602778,Boston,MA,other,300,Black Helicopter. +2005-02-14,44.2727778,-121.1727778,Redmond,OR,sphere,360,The object was silverish, due to the sun was shinning on it. It stayed in one spot for about 4 min. Then it moved from point A to point +2005-02-14,47.3177778,-119.5525,Ephrata,WA,cylinder,240,it was silver metalic shiny and wa a cylender with light across and up it +2005-02-14,28.0202778,-97.0541667,Rockport,TX,light,3600,several unexplained, fast moving lights in the Rockport, Texas sky disappear after black laser beam is shot into sky +2005-02-14,47.1302778,-119.2769444,Moses Lake,WA,light,3,flash of light +2006-02-14,37.9297222,-114.4513889,Pioche,NV,disk,3600,getting used to seeing strange hovering (things) in the sky here in Nevada +2006-02-14,38.3555556,-98.5805556,Ellinwood,KS,unknown,900,bright lights in the sky 4 of them paraell when i took a picture they disappeared no sound at all +2006-02-14,41.6266667,-93.7119444,Urbandale,IA,teardrop,60,Object re-entering atmosphere...slowly +2006-02-14,42.2988889,-73.9988889,Cairo,NY,triangle,60,caught craft on digital camara that i use to scan the skys every day.after months of nothing .isaw this craft on playback..enlarging th +2006-02-14,38.3708333,-97.6638889,Mcpherson,KS,other,1500,Two seperate sets of muliple stationary lights. +2006-02-14,37.78,-98.0194444,Pretty Prairie,KS,light,1800,Amber colored lights that slowly faded and dissapeared around Pretty Prairie, Kansas starting at about 7:45 central time. +2006-02-14,37.8072222,-98.4263889,Turon,KS,light,180,We saw two yellow lights hovering above the horizon. +2006-02-14,44.8041667,-93.1666667,Eagan,MN,rectangle,1800,I let my dog out to go to the bathroom. Across the street was a huge brilliant cluster of light. Not moving, just perfectly still abo +2007-02-14,33.4483333,-112.0733333,Phoenix,AZ,other,45,quiet amber lights over glendale nothing like the phx lights at all +2007-02-14,39.1141667,-94.6272222,Kansas City,KS,triangle,300,A large, triangular object with two banks of very large, bright white lights on the front two sides, hovering motionless near I-435. +2007-02-14,33.8080556,-84.1702778,Stone Mountain,GA,disk,240,Happened during rush hour late afternoon +2007-02-14,42.2175,-78.2755556,Cuba,NY,light,600,Stationary Pulsing White Lights in the Night Sky +2007-02-14,41.35,-72.0788889,Groton,CT,other,2700,very obvious light in the sky not a plane or helicopter changes color often. +2007-02-14,40.0288889,-75.6211111,Exton,PA,fireball,2700,two glowing fireballs changing colors outside Philadelphia. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2008-02-14,33.4222222,-111.8219444,Mesa,AZ,sphere,1200,All electronics died when aircraft was seen directly above myself. +2008-02-14,42.2916667,-85.5872222,Kalamazoo,MI,changing,1,((HOAX??)) A white circular light changed into an oval and was traveling very fast.. +2008-02-14,36.9786111,-76.4283333,Newport News,VA,disk,30,saucer shaped craft at extreme close distance +2008-02-14,47.3794444,-94.6038889,Cass Lake,MN,disk,7200,i seen the ufo and have it in my garage +2008-02-14,39.7763889,-74.8627778,Jackson,NJ,light,300,Jackson sighting on 2/14/08 connected with Wall Sighting on same date +2008-02-14,39.5183333,-80.3038889,Rachel,WV,light,40,Moving light gets swallowed up by the moon. +2008-02-14,42.0527778,-124.2827778,Brookings,OR,other,40,My Saint Valentine Day Singthing 2008 +2008-02-14,40.3294444,-76.5155556,Annville,PA,diamond,5,Two sets white red white parallel and moving west to east at a very hi speed. +2008-02-14,39.9522222,-75.1641667,Philadelphia,PA,sphere,6,witnessed a bright green sphere and the colors was moving in motion +2009-02-14,40.9866667,-75.195,Stroudsburg,PA,light,10800,I observed a light in sky on January 30th it moves slowly from left of my home up down right left. ((NUFORC Note: Sirius?? PD)) +2009-02-14,33.5386111,-112.1852778,Glendale,AZ,circle,180,large clear ball shaped orb in Glendale.. day time sighting +2009-02-14,33.4483333,-112.0733333,Phoenix,AZ,disk,1200,White light wit red color in middle. Moved from north west sky to North Eastern sky. Started at about around jet liner cruising height +2009-02-14,47.4236111,-120.3091667,Wenatchee,WA,changing,300,Black object over Wenatchee, WA. +2009-02-14,38.9822222,-94.6705556,Overland Park,KS,circle,300,Black dot in sky breaks into 4 pieces--then collapses back into a single dot. Then disappears. +2009-02-14,41.7141667,-72.6530556,Wethersfield,CT,light,10,very bright yellowish light flased bluish light twice, very low, very fast,no sound, 5 to 10 seconds in line of sight, +2009-02-14,47.6447222,-122.6936111,Silverdale,WA,triangle,9,Triangular shape moved in the sky from my right to my left very quickly, and seemed to have appeared from mid-air. +2009-02-14,41.85,-87.65,Chicago,IL,light,180,red flashing object moving over chicago +2010-02-14,32.4486111,-99.7327778,Abilene,TX,changing,1800,My friend took pictures with night vision camera lights and craft matched stephensville photos +2010-02-14,39.7697222,-74.8877778,Atco,NJ,light,180,Strange light seen over Atco, NJ. +2010-02-14,35.7063889,-81.2188889,Conover,NC,circle,20,several round objects moving real fast across the sky. +2010-02-14,25.7738889,-80.1938889,Miami,FL,unknown,240,Unknown red light objects in the sky observed in Miami, Florida +2010-02-14,27.9375,-82.2861111,Brandon,FL,fireball,5,Green Fireball streaking acros the sky from ESE to WNW. +2010-02-14,40.5866667,-122.3905556,Redding,CA,circle,420,Round ball of light type object floating silentley over the trees around the river. +2010-02-14,30.3855556,-88.6116667,Gautier,MS,formation,120,Four yellow and red objects in the night sky for several hours. +2011-02-14,35.2619444,-81.1875,Gastonia,NC,circle,2100,Unknown blue object sighted in the southern sky , south of Gastonia, N. C. USA ((NUFORC Note: Sighting of Sirius? PD)) +2011-02-14,45.8202778,-88.0658333,Iron Mountain,MI,circle,300,A large glowing orange light that rose from behind the trees and disappeared into the sky. +2011-02-14,39.1072222,-76.5713889,Pasadena,MD,other,900,Unexplainable extra large smokey full moon disapears into thin air . +2011-02-14,36.1961111,-86.6225,Hermitage,TN,fireball,600,Orange Glowing Light. +2011-02-14,40.9502778,-73.8277778,Tuckahoe,NY,teardrop,3,About 50 degree weather with sunny skies, driving along Tuckahoe road, all of a sudden up in the sky infront of us we saw 1 (one) brigh +2011-02-14,40.4405556,-79.9961111,Pittsburgh,PA,circle,300,Circular object hovering over Route 60 +2011-02-14,36.4072222,-105.5725,Taos,NM,light,4,A light dropped vertically, hesitated, then travelled horizontally at 5000 mph. +2011-02-14,44.1108333,-88.7125,Winneconne,WI,light,30,Possible UFO over east central Wisconsin +2011-02-14,41.785,-73.6944444,Millbrook,NY,teardrop,180,I saw a triangular hovering object in the night sky. +2011-02-14,34.61,-112.315,Prescott Valley,AZ,other,30,3 lights and another one came from the 3 lights went towards the left then came back to the 3 lights and they all dissapeared +2011-02-14,42.9375,-70.8394444,Hampton,NH,sphere,300,Bright spherical &quot;starlike&quot; object +2011-02-14,34.4838889,-114.3216667,Lake Havasu City,AZ,unknown,10,Orange, Pulsating Lights Near Lake Havasu City +2012-02-14,33.8352778,-117.9136111,Anaheim,CA,fireball,300,Yellow glowing object that shone like a star but distinct from either stars , human craft, meteor +2012-02-14,34.8697222,-111.7602778,Sedona (Outside Of),AZ,unknown,1,Me and My wife live outside of Sedona Arizona. It was just after Midnight, when outside there was a VERY BRIGHT Silver Flash. When i we +2012-02-14,42.1083333,-72.0791667,Sturbridge,MA,light,600,Bright, glowing, sometimes stationary objects in the Sturbridge sky! +2012-02-14,37.1041667,-113.5833333,St. George,UT,changing,2700,Very odd hovering object, multiple colors continuously morphing. +2012-02-14,41.3072222,-111.9594444,North Ogden,UT,unknown,300,Sighted a unknown craft in the clouds daytime and took photo. +2012-02-14,39.3036111,-102.7425,Vona,CO,oval,4,4 bright orange lights that slowly faded away in Eastern Colorado +2012-02-14,35.2244444,-90.7866667,Wynne,AR,other,240,Odd flashing lights +2012-02-14,40.2338889,-111.6577778,Provo,UT,fireball,120,Slow moving silent fireball captured on video over Provo, Utah +2013-02-14,35.9605556,-83.9208333,Knoxville,TN,sphere,10,Half Red / Half Orange Sphere hovering in Knoxville TN +2013-02-14,41.6802778,-108.785,Point Of Rocks,WY,circle,5,Driving to work a co-worker and I saw a green light going across the sky. +2013-02-14,44.0522222,-123.0855556,Eugene,OR,light,600,I saw several orange lights traveling east and then turning south as I was driving west from Springfield to Eugene, OR right by I-5. +2013-02-14,47.6588889,-117.425,Spokane,WA,sphere,420,3 spheres in sunset sky +2013-02-14,36.8527778,-75.9783333,Virginia Beach,VA,chevron,60,Very distinct flash in the eyes beam of light directing me towards the &quot;star&quot; object darting through sky +2013-02-14,36.1658333,-86.7844444,Nashville,TN,fireball,300,Orangish bright "fireball" low altitude flying through Nashville. +2013-02-14,42.4391667,-123.3272222,Grants Pass,OR,light,4,Driving north on New Hope Rd. south of Grants Pass I saw a light brighter than a regular meteor directly due north of my location appro +2013-02-14,36.3883333,-86.4466667,Gallatin,TN,sphere,300,Launching bright red pulsing lights, that tracked across the sky +2013-02-14,34.1477778,-118.1436111,Pasadena,CA,changing,300,Hovering red orb disappears then reappears as grey-white oval before disappearing again. +2013-02-14,35.4491667,-86.7888889,Lewisburg,TN,unknown,5,A Large white light appearing to come out of the atmosphere and changing directions. +2013-02-14,35.3613889,-86.8397222,Cornersville,TN,light,10,Green orb of light descending vertically at high rate of speed +2013-02-14,39.6411111,-85.1411111,Connersville,IN,light,20,I do not have anyway to capture video or good quality pictures. +2013-02-14,34.1722222,-118.3780556,North Hollywood,CA,formation,120,Red blinking lights over Los Angeles, Thurs. Feb 14th, 2013. +2013-02-14,33.9561111,-83.9880556,Lawrenceville,GA,light,5,Moving green light split into two then disappeared +2013-02-15,41.6941667,-72.5341667,East Glastonbury,CT,formation,180,4 or 5 orange orbs sighted moving across sky +2014-02-14,45.5236111,-122.675,Portland,OR,circle,240,Three orange glowing lights in the eastern sky. +2014-02-14,35.1483333,-81.8611111,Chesnee,SC,cigar,180,the most unbelievable night of my life. +2014-02-14,39.8494444,-75.3561111,Chester,PA,light,3600,Light over the Delaware. +2014-02-14,34.5025,-84.9511111,Calhoun,GA,triangle,2400,UFO object followed us over 5 miles and then when I returned home was seen again across from home. +2014-02-14,45.9933333,-123.9213889,Seaside,OR,disk,2,Bright spinning disk like with windows on top part. +2014-02-14,38.8158333,-76.75,Upper Marlboro,MD,sphere,20,Two White Spherical Objects +2014-02-14,34.0005556,-81.035,Columbia,SC,oval,60,3 light blue lights and an oval shaped craft hovering over columbia sc interstate 26. +2014-02-14,39.0833333,-78.2183333,Stephens City,VA,light,2700,Orange lights changing to red lights. Seemed to interact at times. +2014-02-14,38.2544444,-104.6086111,Pueblo,CO,fireball,300,8 orange, bright lights seen in Pueblo, Colorado, skies. +2014-02-14,28.5997222,-81.3394444,Winter Park,FL,other,600,2 Sets of 3 Amber Lights In Triangle Formation Over Winter Park, FL. +2014-02-14,33.5336111,-82.1308333,Evans,GA,sphere,120,5 orange orbs and 1 red orb seen in evans over evanston subdivision. +2014-02-14,32.2216667,-110.9258333,Tucson,AZ,light,900,4 orange glowing light orbs seen low in the sky. +2014-02-14,38.6911111,-121.4475,Rio Linda,CA,circle,50,7 orange lights apperaing, moving in a formation across the sky, then 2 more lights appearing. +2014-02-14,35.6225,-117.67,Ridgecrest,CA,unknown,180,Silent Blue Light. +2014-02-14,40.3977778,-105.0744444,Loveland,CO,unknown,60,Hovering aircraft 3 bright white lights. +2014-02-14,39.1405556,-121.6158333,Yuba City,CA,light,2700,Five blinking white lights flying slowly in one small area of the sky. One light stayed in the center. Observed for 45 min. +2014-02-14,34.9144444,-84.2766667,Mineral Bluff,GA,cigar,7200,((HOAX??)) I saw 3 cigar figures floating 2ꯠ ft over me. They flew away and came back 5 min. later. They were there for 2 hours! +2014-02-14,35.7719444,-78.6388889,Raleigh,NC,sphere,180,Two silent, pulsating red orbs slowly moving due north near downtown Raleigh at low altitude. +2014-02-14,36.9741667,-122.0297222,Santa Cruz,CA,unknown,600,Balls of bright orange lights seen hovering over city and disappearing up into sky from Santa Cruz Lighthouse. +2014-02-14,40.0288889,-75.6211111,Exton,PA,unknown,600,Strange objects over Route 30 Bypass in Exton Pa. +2014-02-14,33.6188889,-117.9280556,Newport Beach,CA,fireball,180,fire ball in sky moving like an aircraft high in sky but then floated southwards and burned out. +2014-02-14,39.9522222,-75.1641667,Philadelphia,PA,fireball,300,Saw 4 objects like bright fireballs coming from east flying toward west didn't have make a sound like a helicopter or airplane then dis +2014-02-14,40.7608333,-111.8902778,Salt Lake City,UT,fireball,420,Object seemingly on fire hovering over salt lake airport. +2014-02-14,37.775,-122.4183333,San Francisco,CA,light,900,Red lights in NW San Francisco sky. +2014-02-14,47.6816667,-122.2075,Kirkland,WA,circle,60,Circular, glowing orange/reddish orange, no sound, speed was slow and consistent, heading north, the background....night time, clear sk +2014-02-14,40.3408333,-76.4116667,Lebanon,PA,fireball,300,Bright fireball sighted and followed, then minutes later it dissapeared. +1931-02-15,40.5844444,-102.3019444,Holyoke (6-8 Miles Southwest Of),CO,oval,60,In the winter of 1931, I saw a flying machine (UFO) as I was riding on a horse in the draw of a pasture. +1951-02-15,34.0522222,-118.2427778,Los Angeles,CA,disk,2700,I was only 8yrs old but I remember it clearly. While at my grandmother's house, my mother sent me to our car to get a sweater for her. +1954-02-15,40.8825,-121.6597222,Burney,CA,disk,1800,Observance of one large and two smaller UFOs in a comparitive prolonged period of time. +1955-02-15,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,300,TWO BRIGHT STAR SHAPE OBJECTS AT 700PM GOING FROM SOUTH SKI TO THE NORTH AT HIGH SPEEDS NO SOUND +1958-02-15,42.6072222,-83.9294444,Howell,MI,cigar,45,Large glowing object that seemed to be landing!! +1965-02-15,41.85,-87.65,Chicago,IL,oval,3900,Object hovered over electric transformer for a few minutes, then quietly move over us. No sound. Aprox size of basketball held at arms +1967-02-15,42.6583333,-71.1375,Andover,MA,light,60,High altitude point of light makes high speed instantaneous 90 degree turn and accelerates rapidly +1969-02-15,40.745,-84.9369444,Monroe,IN,sphere,20,Orange sphere or ball on US 27 in Monroe, In at Coppus Corners +1970-02-15,37.8858333,-122.1169444,Lafayette,CA,disk,3600,A saucer shaped craft landed in a secluded parking lot behind and below the house I was lin=ving in. +1971-02-15,32.0833333,-81.1,Savannah,GA,circle,1200,Hazy moon like object with attachments. +1971-02-15,28.9002778,-81.2638889,Deltona,FL,changing,1800,I was in boot camp at Paris Island,S.C. Some of the platoon was in a smoking circle as was normal every night. I noticed in the sky a l +1974-02-15,33.7877778,-117.8522222,Orange,CA,flash,120,Car radio goes dead, bright light. +1974-02-15,41.5916667,-75.4855556,Simpson,PA,unknown,600,Hovered- Colored lights went out- sped away -left trail +1976-02-15,45.8225,-91.8891667,Spooner,WI,sphere,8,Driving almost due south through an isolated and heavily wooded section of N. wisconsin, sky was comlpetely clear with visibility at n +1976-02-15,38.5816667,-121.4933333,Sacramento,CA,other,120,6 hyphen-shaped yellowish-white objects flying as group but shifting positions from NE to SW (Reno-SF) at approx. 35K alt. and 450mph. +1978-02-15,44.9061111,-66.9905556,Eastport,ME,cigar,120,glowing orange cigar shape light, that streached like an elastic. +1978-02-15,42.3763889,-71.2361111,Waltham,MA,unknown,300,Stars or satellites change places in the sky. +1979-02-15,35.1216667,-120.6202778,Grover Beach,CA,other,180,Grover Beach UFO coming from ocean +1980-02-15,36.8525,-121.4005556,Hollister,CA,egg,600,I was in High School just got out of late Basketball Practice. My older brother came to pick me up and take me home. It was late even +1982-02-15,32.7252778,-114.6236111,Yuma,AZ,oval,600,Two on duty Military policemen observed a large flying orange oval come down from the north over the Cibola rage and perch on a tower. +1983-02-15,26.7052778,-80.0366667,West Palm Beach,FL,disk,120,A beam of light that resolved into 40 to 50 flying disks, outside of our atmosphere, with stars seen through their formation. +1985-02-15,31.8466667,-81.5961111,Hinesville,GA,sphere,1800,It was the unusual movement that made all who were observing the object consider it a UFO. +1985-02-15,36.5569444,-89.9663889,Malden,MO,fireball,45,Big Orange Ball sitting in field behind house +1986-02-15,37.2266667,-121.9736111,Los Gatos,CA,disk,600,Entering into dusk witnessed a small round object coming North from the South. Object darted accross the sky and finally hovered about +1986-02-15,26.7052778,-80.0366667,West Palm Beach,FL,triangle,14400,UFO SIGHTING 1986 +1988-02-15,32.2522222,-88.1008333,Indian Springs,AL,oval,3600,Huge craft hovering over a residential area... +1988-02-15,34.7302778,-86.5861111,Huntsville,AL,other,2700,Bell or thimble shaped object rises out of Guntersville Lake and follows pair into Huntsville. +1989-02-15,32.0833333,-81.1,Savannah,GA,other,60,Siting of Vee shaped craft in Savannah GA (1998-9?) +1989-02-15,44.4447222,-88.5788889,Shiocton,WI,other,3,Object was silent with a soft yellow glow to it traveling in a straight line at incredible velocity. +1990-02-15,42.3583333,-71.0602778,Boston,MA,other,5,Large "Gulf Breeze" type object seen over Boston at about 10ꯠ feet in Winter +1990-02-15,42.0833333,-71.0188889,Brockton,MA,other,600,Large Craft Hovers Over Highway in Mass +1990-02-15,42.0833333,-71.0188889,Brockton,MA,triangle,240,An object stops dead in it's track! +1990-02-15,38.3358333,-90.1497222,Waterloo,IL,formation,1800,Giant Chevron +1991-02-15,38.5788889,-122.5786111,Calistoga,CA,sphere,120,Golden Orb about 3 feet across, moving pretty quickly and smoothly above the hills. +1991-02-15,39.7047222,-105.0808333,Lakewood,CO,circle,180,First observed hovering above tree up close by my daughter age 11 & her friend 12. Daughter saw window of air craft felt staired at but +1991-02-15,42.9633333,-85.6680556,Grand Rapids,MI,disk,300,I was taking my daughter home from the local hospital and i looked acrossed the street. I saw this circular or flat round shape with li +1992-02-15,40.0888889,-82.6125,West Alexandria,OH,triangle,1800,TRIANGULAR CRAFT NEAR WRIGHT PATTERSON AFB, WINTER 1992 +1993-02-15,38.5366667,-82.6830556,Ironton,OH,sphere,3,No sound trail or color change it was just moving on. +1995-02-15,33.3319444,-89.7411111,Vaiden,MS,cigar,300,Saw cigar shaped object in Carroll county mississippi +1995-02-15,41.0477778,-79.8136111,North Washington,PA,sphere,15,Falling Sparks from Hovering light +1995-02-15,33.4483333,-112.0733333,Phoenix,AZ,light,1200,Green, almost neon color, rainy night, stationary object +1995-02-15,38.5816667,-121.4933333,Sacramento,CA,unknown,45,This does not need to be reported, nobody cares about my story anyways +1995-02-15,41.52,-81.4888889,Lyndhurst,OH,unknown,600,Heard Loud, roaring , observed 3 strobing lights at 40 degrees above horizon , 20 degrees wide formation, formation of lights was STAT +1995-02-15,41.52,-81.4888889,Lyndhurst,OH,unknown,600,HEARD LOUD, RUMBLING ROAR, SAW 3 BLUE-WHITE STROBING LIGHTS MOTIONLESS IN WESTEREN SKY, LIGHTS AT LEAST 20 DEGREES FROM END TO END, NO +1996-02-15,34.2463889,-80.6072222,Camden,SC,other,300,The largest fastest moving object that I have ever seen and never heard. +1997-02-15,34.02,-117.9486111,La Puente,CA,other,2,From a stand-still... to a one-second period of ignition... followed by one-second of what sounded like the after-burner of a massive- +1997-02-15,42.7008333,-73.1091667,North Adams,MA,diamond,120,My wife and me were unpacking boxes in our new apartment on a hill overlooking the town. I had decided to take a cigerette break and en +1997-02-15,34.61,-112.315,Prescott Valley (4-5 Miles East Of),AZ,other,2400,Observed yell/gold slightly out of round orb floating below treetop level less than 50 ft. from me, unobstructed view, silent, observed +1997-02-15,38.4494444,-78.8691667,Harrisonburg,VA,fireball,2,I saw a ball of light, which quickly disappeared. +1997-02-15,44.9747222,-92.7566667,Hudson,WI,unknown,300,The light made absolutely no noise whatsoever it was so quiet it was scary. +1997-02-15,40.4311111,-79.2611111,Blairsville,PA,light,300,Low flying aircraft hovering above elementary schoolIt was 11:35 pm and I was driving west from Bolivar Pa to blairsville on route +1998-02-15,37.3394444,-121.8938889,San Jose,CA,cigar,600,Driving south on Hwy 85, on way to work, saw gleaming silver cigar shaped object floating beneath a cloud. +1998-02-15,46.6022222,-120.5047222,Yakima,WA,changing,240,black triangle seems able to dissapear and reapear...somehow conected with a moving cloud.. +1998-02-15,46.7833333,-92.1063889,Duluth,MN,flash,60,Various colored lights flashing after power surge & failure +1998-02-15,43.1905556,-112.3441667,Blackfoot,ID,flash,300,3 silent flashes in the cloud followed later with stone silence. +1999-02-15,33.4483333,-112.0733333,Phoenix,AZ,changing,1200,Objects sited in residential area appeared to combine and separate as if liquid form. +1999-02-15,42.2625,-71.8027778,Worcester,MA,unknown,30,I witnesses a strange flying crafte as I was heading towar the off ramp of I-190. It was saucer-like except that instead of being round +1999-02-15,34.1705556,-118.8366667,Thousand Oaks,CA,changing,120,Dark unlit UFO, that initially looks like a soaring bird then it splits into two crafts. +1999-02-15,41.1575,-81.2422222,Ravenna,OH,sphere,5,large green glowing sphere just appeared,zoomed down very fast in a straight line vertically then dissapeared. +2000-02-15,35.9380556,-77.7908333,Rocky Mount,NC,unknown,1200,2:30 2000 feb. Rocky Mount N.C. Space Traverlers Object came throgh a circle in space then emitting smaller objects . +2000-02-15,21.3069444,-157.8583333,Honolulu,HI,disk,60,Grey disk flying over Hickam AFB. +2000-02-15,33.5091667,-111.8983333,Scottsdale,AZ,fireball,4,Fireball seen in North East sky with short contrail, ending in flash with contrail pointing downward. +2000-02-15,46.5030556,-92.6883333,Barnum,MN,teardrop,5,I had been driving home from work and I seen lights rotating. I stopped and backed up to get a better look. While backing up the UFO +2000-02-15,34.7463889,-92.2894444,Little Rock,AR,other,600,The orange, white, pink, and maybe red lights of a boomerang shaped object flying west at slow speeds. +2000-02-15,41.1466667,-73.4952778,New Canaan,CT,unknown,60,Saw a large dark object 50 ft across hovering silently in the air with three lights on the bottom searching the ground. +2000-02-15,40.4811111,-82.5408333,Fredericktown (Outside Of),OH,egg,600,I saw two bright white objects in the night sky swoop down and out of the horizon. +2000-02-15,45.1825,-122.8066667,Hubbard,OR,rectangle,120,Rectangular, enormous (football field size?), black and silent Hubbard, Oregon 2000 +2001-02-15,37.6922222,-97.3372222,Wichita,KS,flash,60,Glowing Green SKY MIR +2001-02-15,45.5236111,-122.675,Portland,OR,oval,120,Brightly lit, kind of glowing, oval shaped, object moving at a steadily paced speed across the sky. +2001-02-15,34.9494444,-81.9322222,Spartanburg,SC,cylinder,300,It seemed to have lights all around it and it seemed to be in the shape of a cyclinder. +2001-02-15,42.7655556,-73.2363889,Pownal,VT,light,60,Large dark helicopter at treetop level follows orange light thru rural community. +2001-02-15,43.0127778,-88.5880556,Sullivan,WI,light,900,South-eastern Wisconsin's Herr Road is a UFO hotspot that has to be seen to believe!! +2002-02-15,40.7608333,-111.8902778,Salt Lake City,UT,triangle,240,Dark, noiseless triangular shaped craft over SLC. +2002-02-15,47.9791667,-122.2008333,Everett,WA,unknown,300,long black streek followed by jet +2002-02-15,36.175,-115.1363889,Las Vegas,NV,unknown,5,Blue Fireball with sparks +2002-02-15,28.2438889,-82.7194444,New Port Richey,FL,circle,600,FEB 15, 2002 WE SAW A LARGE ROUND CRAFT THAT HOVERD 1 MILE FROM MY HOME FOR ABOUT 5 TO 10 MINS +2002-02-15,47.8052778,-122.1119444,Maltby,WA,light,600,A very bright white light moved in straight lines, and stopped repeatedly. Red and blue lights flashed on its bottom side. +2002-02-15,44.98,-93.2636111,Minneapolis,MN,light,4,Flying from west to east nearly straight up from my location. Three dots in a string apearing to follow each other. Caught my Eye while +2002-02-15,31.0258333,-96.485,Franklin,TX,light,60,Bright Light No Sound Above Tree Tops +2002-02-15,40.7483333,-75.6122222,Slatington,PA,circle,420,A mysterious light moved slowly and changed color going in a straight line without going up or down an inch. +2002-02-15,40.801944399999996,-77.8566667,University Park,PA,cone,120,Orangey-red Glowing UFO with doorway spotted landed on the ground at the PSU Deer Pens facility in the early 1990s. +2003-02-15,38.0494444,-122.1575,Benicia,CA,fireball,300,Slow moving, low flying fireball. Moved erratically and faded away. +2003-02-15,36.8527778,-75.9783333,Virginia Beach,VA,flash,15,2 FLASHES OF BRIGHT GREEN LIGHT, 10 SECONDS APART +2003-02-15,30.1894444,-82.6394444,Lake City,FL,light,10,it was dark and i was standing outside in front of my house and all of a sudden i saw a bright light coming towards me i watched it as +2003-02-15,38.4191667,-82.4452778,Huntington (Near),WV,cigar,240,cigar-shaped ufo spotted . +2003-02-15,26.1219444,-80.1436111,Fort Lauderdale,FL,oval,60,shiny metallic oval object over the everglades +2003-02-15,42.8863889,-78.8786111,Buffalo,NY,other,10,Half a Yellow Blimp +2003-02-15,30.8938889,-102.8788889,Fort Stockton,TX,disk,45,Saucer Sighting in Fort Stockton, Texas 02/2003 +2003-02-15,39.8263889,-75.4258333,Linwood,PA,light,120,A UFO stopped in its path and hovered. It then trailed an airplane. +2003-02-15,32.8338889,-109.7069444,Safford,AZ,sphere,5,A brightly glowing, luminous [craft] was chased by military jets from a location NE of Phoenix and E of Superstition Mountains. +2003-02-15,43.0388889,-87.9063889,Milwaukee,WI,disk,900,round or rectanular, lightes, hovering +2003-02-15,31.4636111,-96.0577778,Buffalo,TX,fireball,3,Florescent green light drops down from sky and disappears +2003-02-15,29.7630556,-95.3630556,Houston,TX,light,300,Flashing Lights Over Houston Texas +2003-02-15,25.7738889,-80.1938889,Miami,FL,unknown,600,Two pilots, we were coming in for a landing at night at Tamiami airport. The tower was closed so we were communicating with flight serv +2004-02-15,38.1075,-122.5686111,Novato,CA,other,600,High Velocity, Lighted with mutlicoloured arrangement, suacerlike object +2004-02-15,35.2269444,-80.8433333,Charlotte,NC,light,600,Two motionless, intense, white lights around 100' above ground +2004-02-15,29.4238889,-98.4933333,San Antonio,TX,circle,240,Two circle crafts performing gravity defining manuvers. +2004-02-15,42.8027778,-83.0130556,Romeo,MI,fireball,3,Fireball in Western sky on Feb 15th Sunday 2004 over Romeo Michigan. +2004-02-15,47.3075,-122.2272222,Auburn,WA,circle,900,looking up a white disc came in my view out of the corner of my eye.it came over to the middle of the valleyand slowed down and started +2004-02-15,42.1666667,-83.7816667,Saline,MI,other,60,Object with no lights reflected light in an odd way and moved out of sight +2004-02-15,48.5038889,-122.2361111,Sedro-Woolley,WA,cigar,30,Cigar shaped object with two orange lights flies low and FAST across sky only blocks away with no sound +2004-02-15,28.3197222,-80.6077778,Cocoa Beach,FL,cross,2100,Large stationary cross with center white light and orange lights at all points. +2004-02-15,39.6977778,-76.0630556,Rising Sun,MD,sphere,10,Bright white sphere on Sylmar Road +2004-02-15,36.6208333,-90.8233333,Doniphan,MO,fireball,600,The craft was fireball shaped and was red and orange in color, It followed us for 10 minutes just above the roadway. +2004-02-15,39.1652778,-86.5263889,Bloomington,IN,triangle,15,A dark triangle moving through the sky. +2004-02-15,41.6397222,-73.2088889,Bethlehem,CT,light,1,Fast moving green light, 2 witnesses, a third witness in another state with a similar story. +2004-02-15,37.3058333,-89.5180556,Cape Girardeau,MO,triangle,60,i was on my carport and looked over by the street light when i noticed a small triangle shape fly under the light it was glowing green +2004-02-15,42.8538889,-91.4052778,Elkader,IA,unknown,2,A strange creature or being.... +2005-02-15,38.3555556,-98.5805556,Ellinwood,KS,fireball,420,Fireball, witnessed by 25 people. +2005-02-15,33.9533333,-117.3952778,Riverside,CA,other,300,Orange V shaped object observed overhead +2005-02-15,48.2413889,-122.3694444,Stanwood,WA,disk,420,black and silver disk - seen again? +2005-02-15,39.2666667,-81.5616667,Parkersburg,WV,cigar,300,Cigar shaped silver shining object seen in clear daytime sky. +2005-02-15,47.6063889,-122.3308333,Seattle,WA,other,300,Middle February, 2002, 3:00 pm, sunny day, black object east of Seattle, moving erratically within a limited area. +2005-02-15,34.7202778,-80.7711111,Lancaster,SC,oval,900,round object turning ccw 15 feet across watched it for app 15 minutes no lights no sound +2005-02-15,40.2736111,-76.8847222,Harrisburg,PA,light,10,Six lights appear above Harrisburg skyline +2005-02-15,40.2736111,-76.8847222,Harrisburg,PA,other,60,I had just come out of my aerobics class and was headed to my car which was parked on the side lot facing the strip mall. I looked up a +2005-02-15,37.5311111,-84.6619444,Stanford,KY,unknown,3,My son and I witnessed a circle of pale green lights drop from one point in the sky to another and disappear. +2005-02-15,37.6319444,-85.5083333,New Hope,KY,light,300,Bright multicolored light in Nelson/LaRue County +2006-02-15,32.4608333,-84.9877778,Columbus,GA,unknown,120,Silent craft cruses by, near military base +2006-02-15,35.1427778,-120.6402778,Pismo Beach,CA,fireball,600,A low object emitting fire and red and blue "debris", it also emitted a blue-lit object that remained stationary +2006-02-15,39.9783333,-86.1180556,Carmel,IN,fireball,1800,BIG FIREBALL.. +2006-02-15,30.1577778,-95.4891667,The Woodlands,TX,unknown,5,Just a strange light +2006-02-15,33.9925,-83.7202778,Winder,GA,flash,30,flash of light in sky, strange vapor trail +2006-02-15,40.1997222,-76.7313889,Middletown,PA,light,900,This is the second time I have seen these lights, and just by looking on this website, others are seeing the same thing. The first +2006-02-15,33.1958333,-117.3786111,Oceanside,CA,oval,300,Oval circular object passes san diego apparantly at very high speeds. +2006-02-15,38.8966667,-121.0758333,Auburn,CA,light,45,2 lights traveling in formation then fading away into space. +2006-02-15,40.5866667,-122.3905556,Redding,CA,circle,2,A circle moved quickly in a strait line. +2006-02-15,34.1083333,-117.2888889,San Bernardino,CA,light,600,Star like object that was making very elaborate, non-pattern movements in the sky. +2006-02-15,34.1952778,-79.7627778,Florence,SC,circle,60.3,Five bright orange orbs move across the Florence SC Sky +2006-02-15,29.5722222,-90.3816667,Larose,LA,circle,1800,Red Ball of light seen hovering over Lake Salvador in Louisiana. +2006-02-15,37.7741667,-87.1133333,Owensboro,KY,triangle,60,While driving on a clear night I happened to look overhead and saw a black trianglular craft having 3 lights. The lights were of an od +2006-02-15,33.6058333,-78.9733333,Surfside Beach,SC,light,5,unusual object sighted over surfside beach south carolina +2007-02-15,39.0483333,-95.6777778,Topeka,KS,light,3600,I noticed a bright light that seemed to be following at a fixed distance. ((NUFORC Note: Possible sighting of NUFORC? PD)) +2007-02-15,36.1197222,-80.0738889,Kernersville,NC,cylinder,120,My wife and I were traveling on I-40 the day after valentines when we noticed what we thought was an airplane moving so slowly that it +2007-02-15,37.6455556,-91.5358333,Salem,MO,triangle,120,Daytime white triangle shaped object in the sky. +2007-02-15,31.5544444,-110.3030556,Sierra Vista,AZ,disk,180,Small, distant disk shaped object with red light in night sky moving very fast +2007-02-15,38.5555556,-97.8333333,Marquette,KS,triangle,120,Bright yellow lights formed a triangle +2007-02-15,40.7877778,-74.3886111,Florham Park,NJ,light,2,2/15/2007 20:20 NJ quick flash of light across partly cloudy sky +2008-02-15,44.0169444,-107.9547222,Worland,WY,oval,2700,((HOAX??)) My parents told me they saw this UFO while my dad was getting ready to go to work. +2008-02-15,34.0522222,-118.2427778,Los Angeles,CA,light,1200,Bright Light that move like a canon shot, then like a yo-yo..transforming from light to bright red. +2008-02-15,39.5297222,-119.8127778,Reno,NV,light,120,One bright light moving silently east of Reno Nevada +2008-02-15,33.1580556,-117.3497222,Carlsbad,CA,light,5,A white light appeared and then disappeared after fading to the left, 5 seconds, no navigation lights, 45 degrees above the horizon. +2008-02-15,26.4611111,-80.0730556,Delray Beach,FL,chevron,10,Blue and red lights over Delray Beach, Florida. 500 Lights On Object0: Yes +2008-02-15,47.4008333,-116.9161111,Worley,ID,unknown,180,moved slowly in the clouds during a snowstorm no noise went from south to north withflood lights shining all over the area as it moved +2009-02-15,38.6786111,-121.7722222,Woodland,CA,light,6,bright light floating in the sky then accelerating to disapearance +2009-02-15,48.5619444,-122.3969444,Bow,WA,light,2,It was already Sunday (Feb 15, 2009), I was on my way home from a graveyard shift, I remember I clocked out at around 0300, while I w +2009-02-15,35.4872222,-80.6219444,Kannapolis,NC,fireball,2,large white flame in the Southern Sky +2009-02-15,33.695,-80.2111111,Manning,SC,fireball,8,Driving to Florida, a green sphere in the sky free falls, then curves upward, then disappears +2009-02-15,36.5297222,-87.3594444,Clarksville,TN,circle,900,Clarksville, Tn UFO sighting. +2009-02-15,30.2766667,-98.4116667,Johnson City (10 Miles East Of),TX,fireball,5,Small, brilliant white ball of light Feb 15, 2009 in central Texas - same day as the big sighting but farther away +2009-02-15,39.2102778,-92.1377778,Centralia,MO,chevron,420,bright horizontal crescent shaped object that was visable for 7 min in daylight and then just diappeared into thin air! +2009-02-15,41.3080556,-72.9286111,New Haven,CT,sphere,15,Small Sphere traveled very low, very smoothly, and then danced out of sight. +2009-02-15,41.5963889,-72.8780556,Southington,CT,light,20,visible bright light that fell through the sky- +2009-02-15,30.0797222,-95.4169444,Spring,TX,light,900,UFO in Texas, Strange "star like" light in the sky . +2009-02-15,40.6083333,-75.4905556,Allentown,PA,circle,1800,Bright light in nite sky +2009-02-15,48.9244444,-122.0758333,Maple Falls,WA,circle,60,Large round object with multicolored lights. +2009-02-16,32.4486111,-99.7327778,Abilene,TX,other,180,It was a very large space ship /craft of some kind hidden behind the smokey clouds as other images passed slowly past it. +2010-02-15,36.1658333,-86.7844444,Nashville (Near),TN,unknown,120,UFO CASEBOOK REPORT: Alien Encounter in Tennessee +2010-02-15,47.4830556,-122.2158333,Renton,WA,unknown,900,UFO sighting Feb 15, 2010 over Lake Washington North of Boeing in Renton +2010-02-15,37.5027778,-97.5041667,Clearwater,KS,circle,900,Circular object approx the size of 3-4 baseball stadiums emitting amber rays straight down over the countryside before sunrise. +2010-02-15,36.175,-115.1363889,Las Vegas,NV,circle,5,I was outside when my dad and I were looking up in the sky and we saw two bright lights.I went to get the telescope and when we looked +2010-02-15,33.7669444,-118.1883333,Long Beach,CA,sphere,600,UFO sighting Long Beach, CA - Small spherical bright light reflective object remaining perfectly stationary +2011-02-15,35.0886111,-92.4419444,Conway,AR,formation,120,Four round, grayish balls flying in a triangular formation, broad daylight, no sound, moving quickly +2011-02-15,41.3897222,-81.4413889,Solon,OH,other,10,silvery long reflective moved to go back in cloud cover at rush hour +2011-02-15,33.7444444,-113.7513889,Vicksburg,AZ,formation,15,Arc of 7 - 8 stationary red "asterisks" not very high up in the sky. +2011-02-15,32.8338889,-109.7069444,Safford,AZ,flash,1800,Bright orange flashes in the eastern and western Safford skies. +2011-02-15,29.7263889,-99.0733333,Bandera,TX,light,120,I saw a reddish-orange light and heard a loud rumbling sound +2011-02-15,35.6708333,-80.4744444,Salisbury,NC,light,240,blue light over salisbury NC +2011-02-15,36.3352778,-92.385,Mountain Home,AR,other,1800,Atmospheric Event distorting the light of the stars? +2011-02-16,33.7186111,-116.3075,Indian Wells,CA,circle,600,Feb 15, 2011, 11:30 am - white dot with orange aura over coachella Valley from Indian Wells, CA +2012-02-15,35.2272222,-80.5008333,Midland,NC,fireball,60,3 AM - 2009 & 2012 - NC - sphere - white light POSTED: 06.21.12 +2012-02-15,34.8697222,-111.7602778,Sedona,AZ,triangle,900,3 triangle ufos appear over my pastures, larger of 3 crafts emits beam over 1 of my pastures, animals missing. 3 occurance +2012-02-15,34.8697222,-111.7602778,Sedona (Route 89),AZ,triangle,600,Saw 5 bright triangle lights flying north out of Sedona, 2 where large and bright. +2012-02-15,34.8697222,-111.7602778,Sedona,AZ,unknown,600,5 dancing lights over mountain range about 15 miles from Sedona, Shoot away when a jet engine was heard in the distance +2012-02-15,44.6397222,-73.1108333,Milton,VT,other,60,Small silver object landed, and took of leaving goo on the grass. +2012-02-15,33.9488889,-118.4447222,Playa Del Rey,CA,teardrop,120,Black craft shows up in picture i did not see when taking the picture +2012-02-15,42.5005556,-76.8727778,Hector,NY,light,45,Bright ball of light slowly traveling west to east -size diminished then changed from red to pink then vanished. +2012-02-15,27.9472222,-82.4586111,Tampa,FL,light,30,3 bright red lights over tampa +2012-02-15,39.1433333,-77.2016667,Gaithersburg,MD,triangle,120,Large triangle red and green lights over Gaithersburg MD, Wed Feb 15, 2012 (~19:43) +2012-02-15,38.5816667,-121.4933333,Sacramento,CA,disk,3,The flying object caught my attention because it was so beautifu, it flew so fast the I only saw it for about 3 seconds. +2013-02-15,38.005,-121.8047222,Antioch,CA,circle,120,Red/Orange light in the sky. +2013-02-15,29.9116667,-95.0619444,Crosby,TX,diamond,600,Unconventional flying object observered by police off/licensed pilot. +2013-02-15,42.4436111,-88.2363889,Spring Grove,IL,light,240,Was out with the dog and noticed an Orions belt star formation ..but not in the correct place in the sky.Trying to figure out what con +2013-02-15,32.4283333,-90.1322222,Ridgeland,MS,circle,90,5 year old niece had brought it to our attention yesterday (02/14/2013 around 16:00) that she said she saw some “white things” in the s +2013-02-15,42.0883333,-87.9805556,Arlington Heights,IL,fireball,120,Four flying objects that appeared and disappeared. I was in complete shock. +2013-02-15,42.0883333,-87.9805556,Arlington Heights,IL,fireball,120,We saw 4 big bright orange fire ball type flying slowly and disappearing 1 by 1. +2013-02-15,47.6063889,-122.3308333,Seattle,WA,circle,600,My wife and I witnessed 15-20 orb shaped lights heading south and gaining elevation over north Seattle. +2013-02-15,35.1894444,-114.0522222,Kingman,AZ,sphere,300,20 star like forming shapes then disappearing. +2013-02-15,33.8491667,-118.3875,Redondo Beach,CA,circle,600,My husband and I were inside the house and heard a weird noise that sounded like it was coming from the garden. Looking out of the wind +2013-02-16,31.1797222,-83.7891667,Moultrie,GA,light,120,Strange orange light in sky. +2014-02-15,33.7455556,-117.8669444,Santa Ana,CA,egg,360,Orange glowing egg in the sky over Orange County. +2014-02-15,39.8027778,-105.0869444,Arvada,CO,triangle,120,Red Orbs. +2014-02-15,26.8794444,-80.0536111,Juno Beach,FL,fireball,1200,Two hovering parallel lights over ocean. +2014-02-15,34.1063889,-117.5922222,Rancho Cucamonga,CA,cylinder,60,Aluminate Object in sky Rancho Cucamonga. +2014-02-15,40.7977778,-85.8205556,Wabash,IN,fireball,300,Giant red/orange glowing ball in night sky along horizon that had a duration of 5 minutes. +2014-02-15,39.1072222,-76.5713889,Pasadena,MD,light,60,Three UFOs seen in Maryland 8:12pm est two orange glowing orb shapped one cigar shaped. +2014-02-15,32.4580556,-83.7316667,Perry,GA,formation,90,Yellowish-Red formation of 6+ soundless - high speed objects. +2014-02-15,36.175,-115.1363889,Las Vegas,NV,fireball,120,Las Vegas ball of fire 2/15/2014. +2014-02-15,28.0391667,-81.95,Lakeland,FL,fireball,1800,Three individuals witnessed seven Orange orbs within 20 minutes moving from the Northwest and going towards the South. They were orange +2014-02-15,27.1675,-80.2663889,Palm City,FL,oval,15,Orange glowing orb traveling over central Martin County, Florida. +2014-02-15,26.525,-80.0666667,Boynton Beach,FL,triangle,600,6 orange triangular craft flying north to south, flying in pairs of 2, about a minute apart....very bright and very fast. +2014-02-15,48.0797222,-123.1005556,Sequim,WA,changing,2700,Shimmering multicolored light/sphere changes to circular configuration of lights and then back to sphere. +1965-02-16,29.9838889,-90.1527778,Metairie,LA,circle,20,Two circular objects/craft, luminous on their outer perimeters, flying in a staggered formation, sighted above back yard residence. +1995-02-16,41.52,-81.4888889,Lyndhurst,OH,triangle,720,We heard a loud, rumbling roar, observed three stationary, strobing blue-white lights which eventually moved west at a very slow speed. +1997-02-16,42.1619444,-78.9755556,Randolph,NY,circle,600,It pulsated, It went from point A to point B like no other aircraft I've ever seen. NW to N, Then in a fixed postion from when I saw it +1998-02-16,47.3075,-122.2272222,Auburn,WA,fireball,30,It was a clear night, we saw a bright goldenrod colored ball in the sky then it split into two balls aprox the same size and shape trav +1999-02-16,34.9994444,-117.6488889,Boron,CA,changing,600,comet asteroid tumblng appearance changing shape to a cone or capsule shape hovering above freeway 58 +1999-02-16,31.135,-99.3347222,Brady (5 Mi. North Of),TX,light,300,observed two streaks of orange light, then two stationary balls of light that lasted about three minutes. also a lot of aircraft lights +2000-02-16,34.0708333,-112.15,Black Canyon City,AZ,circle,300,A friend was drivg west on Cavecreek Hwy toward Blk Cnyn Cty when 3 lights with a bluest tint appeared. The objects circled around each +2000-02-16,41.4036111,-95.0136111,Atlantic,IA,formation,780,Bright white flashing lights in the sky. Four objects flying in the shape of a "W". Followed them approximately 13 minutes, keeping th +2000-02-16,34.4211111,-84.1191667,Dawsonville,GA,triangle,600,The "v" shaped object was so low, you could see that it was not lights. It was not from Earth. +2000-02-16,33.9533333,-117.3952778,Riverside,CA,light,120,Stationary star-like light suddenly disappears +2000-02-16,47.6063889,-122.3308333,Seattle,WA,light,90,Bright star disappeared from sight. +2000-02-16,42.2711111,-89.0938889,Rockford,IL,changing,3600,Seen glowing lights that changed shapes,and rotated around each other. +2000-02-16,42.2711111,-89.0938889,Rockford,IL,circle,1200,AT 930 PM TO 950PM 5 ROUND ORANGE BALLS CAME FROM THE WEST AND STOPPING OVERHEAD MOVING INTO VARIOUS FORMATIONS. THEN FADING OUT AS THE +2000-02-16,42.2711111,-89.0938889,Rockford,IL,circle,1305,well thare wer eight balls of light almost like fire thay wher vary brite like a star. thay wher redish orang in coler & shine'd vary b +2000-02-16,42.2711111,-89.0938889,Rockford,IL,circle,900,8 orange lights in 2 clusters of 3 and 1 moving very slowly west to east then disappearing +2000-02-16,42.2711111,-89.0938889,Rockford,IL,fireball,900,Came out of a meeting on E. State street and looked up along with several people to see several fireballs forming formations in the Eas +2000-02-16,42.2711111,-89.0938889,Rockford,IL,fireball,900,There were 5 orangeish fireballs , 3 of the objects were in a triangular flight pattern. The other 2 were lower and to the left, almost +2000-02-16,42.2711111,-89.0938889,Rockford,IL,triangle,1500,Orange fireballs, upon closer observation appeared as delta shaped crafts. Moving in formation of a triangle with remaining crafts in a +2000-02-16,42.2711111,-89.0938889,Rockford,IL,triangle,900,MY SONS WERE GETTING READY FOR BED WHEN THEY CALLED ME INTO THEIR ROOM AND ASKED ME WHAT THIS THING WAS IN THE SKY.THE OBJECT WAS STATI +2000-02-16,42.2711111,-89.0938889,Rockford (Southern Skies Of),IL,light,600,On Wed. Feb.16񫺐 I had just come out of the logli's grocery store on State st. in Rockford, IL. I placed my groceries in the van and +2000-02-16,30.6283333,-94.6316667,Dallardsville,TX,rectangle,30,I saw something flying over the tree tops. The wings were all lite up and it was shining on the tree tops. Over the wing there was a +2000-02-16,41.4666667,-86.4830556,Walkerton,IN,light,300,it had 3 white lights almost like an up side down triangle. In the center it had a red light which never blinked or flashed. +2000-02-16,42.2711111,-89.0938889,Rockford,IL,sphere,1200,5 objects in formation, disappeared, 4 more appeared in different formation +2001-02-16,27.3361111,-82.5308333,Sarasota,FL,sphere,60,bright white Object darting cloud to cloud near Sarasota FL. +2001-02-16,45.795,-88.0719444,Kingsford,MI,light,120,Two starlike objects, traveling west to east, one behind the other, making no noise and travelng faster than normal jet traffic. +2001-02-16,30.0477778,-94.3355556,China,TX,light,1800,Strange lights appearing over the skies of China, Texas +2001-02-16,34.1808333,-118.3080556,Burbank,CA,light,300,Odd beam of light transversed the sky. +2001-02-16,33.4222222,-111.8219444,Mesa,AZ,egg,120,Black,grey,and white egg shape low to the ground and NO LIGHTS! +2002-02-16,35.7825,-80.8875,Statesville,NC,sphere,15,Black sphere east of statesville airport traveling fast due north. +2002-02-16,30.1586111,-85.6602778,Panama City,FL,oval,60,Jets investigating object over Gulf of Mexico +2002-02-16,32.7355556,-97.1077778,Arlington,TX,light,120,Silver-White stationairy ball that gradually got smaller in size, and dissppeared. +2002-02-16,42.4791667,-71.1527778,Woburn,MA,triangle,600,I was in the middle of doing pilates with my wife when we saw something through our window that looked like a trianglular shape. At fir +2002-02-16,41.5605556,-99.25,Comstock,NE,fireball,2700,my wife and i were heading west on the sargent rd. about 6:25 pm when i told her that i thought i saw venus, because it was to be comin +2002-02-16,42.1269444,-89.2555556,Byron,IL,light,300,disapparing lights +2002-02-16,35.4508333,-92.3944444,Bee Branch,AR,circle,7200,SIGHTED A BRIGHT OBJECT DUE SOUTH FROM CENTRAL ARK.AT 8-10 DEG. APPEARED TO ROTATE AND CHANGE COLORS IN SEQ. LIKE SPECTRUM, LASTED 2HR +2002-02-16,42.3241667,-83.4002778,Westland,MI,other,60,The craft changed shapes while rotating counterclockwise and looked to be consisted of hundreds of lights. +2002-02-16,33.415,-111.5488889,Apache Junction,AZ,unknown,180,I was in my two story bedroom, attempting to close the blinds. I glanced outside to the west to the Mesa-Phoenix city lights. I looke +2002-02-16,43.6366667,-113.2994444,Arco,ID,sphere,3,As I was driving i saw what at first i thought to be a falling star then i relized it was moving to slowly and thought it was an airpla +2003-02-16,41.7880556,-71.9502778,Brooklyn,CT,triangle,900,3-5 bright lights, sporatically flashing and forming a triangular shape +2003-02-16,30.7619444,-86.5705556,Crestview,FL,cylinder,300,I was outside when a weird looking object showed up a few miles from my house. Cylinder shaped with flashing lights at top and bottom. +2003-02-16,40.6763889,-74.2911111,Kenilworth,NJ,other,420,Giant hangliding apparatus seen over rte.22 in N.J. +2003-02-16,34.1808333,-118.3080556,Burbank,CA,formation,900,Police spot 6 objects over the Burbank Airport on the evening 2/15/03. +2003-02-16,28.5380556,-81.3794444,Orlando,FL,triangle,30,Perfectly shaped black triangles flying low over Orlando tourist area. +2003-02-16,39.7286111,-121.8363889,Chico,CA,fireball,6,Driving home in the evening headed east, I looked north out the van window and saw what apeered to be a rocket entering the atmosphere. +2003-02-16,39.7286111,-121.8363889,Chico,CA,fireball,5,A firey ball of light descending from left to right and high to low in front of us changed colors from white, to yellow to green. +2003-02-16,39.7286111,-121.8363889,Chico,CA,fireball,5,I saw a bright blue/green fireball in the East/Northeast sky travel from left upper corner to the lower right horizon. +2003-02-16,46.2858333,-119.2833333,Richland,WA,fireball,10,Feb 16, 8:30PM, Blue / Green fireball moving NW to SE over Southeastern Washington State +2003-02-16,39.7286111,-121.8363889,Chico,CA,sphere,5,A bright glowing blue sphere shaped object with a firey tail falling to the earth. +2003-02-16,42.5091667,-84.6558333,Eaton Rapids,MI,circle,2,Round, glowing circular object shoots down from the sky at a 45 degree angle +2003-02-16,43.6366667,-113.2994444,Arco,ID,fireball,12,I was heading sw toward the craters of the moon, and directly ahead I saw what I thought was a star falling from the sky. It was larger +2003-02-16,33.7069444,-117.2441667,Quail Valley,CA,other,900,Vertical elongated diamond shaped Light in sky flashing every five seconds and getting smaller as it faded away. +2003-02-16,37.78,-121.9769444,San Ramon,CA,other,120,I was looking at the moon and a large star to the right of the moon. A star-like shape appeared between the moon and the star. It sat l +2004-02-16,39.4666667,-87.4138889,Terre Haute,IN,flash,5,Bright blue object with a streaming white tail +2004-02-16,47.6588889,-117.425,Spokane,WA,unknown,7200,I was asleep in my bed when I was overtaken by a shaddowy figure woke up in what looked like a lab and was sent back to my bed. +2004-02-16,37.7780556,-81.1883333,Beckley,WV,circle,20,Oval object traveling East to West +2004-02-16,42.6055556,-83.15,Troy,MI,triangle,1800,brite white clearly defined triangle +2004-02-16,42.8330556,-108.73,Lander,WY,diamond,900,8 Sided diamond, (I think that is a tetrahedron), just appeared or we just noticed it after it appeared. It hovered high above the moun +2004-02-16,34.0469444,-116.58,Morongo Valley,CA,fireball,30,Fireball, then lights or flame went out and there was 3 red dots, with blue lights in middle. +2004-02-16,40.6788889,-73.4175,Amityville,NY,egg,300,A large, silent, fast moving object with lights moving back and forth over my neighborhood. +2004-02-16,40.8427778,-73.2933333,Commack,NY,unknown,10,Commack Road Sighting maybe in association with Amityville sighting +2004-02-16,30.1577778,-95.4891667,The Woodlands (N. Houston),TX,light,3600,Stacked Flashing Lights in The Woodlands, Texas +2004-02-16,40.7905556,-73.2022222,Central Islip,NY,fireball,20,This was no ordinary green light.................... +2004-02-16,47.6063889,-122.3308333,Seattle,WA,rectangle,60,'burning paper' +2005-02-16,45.0097222,-93.3488889,Golden Valley,MN,oval,180,At about 1:00 AM on Wedsday 16th, 2005 I just came back from a movie and as I was coming in my drive way i saw an small oval shaped obj +2005-02-16,34.1083333,-117.2888889,San Bernardino,CA,sphere,120,Two orbiting spheres in broad daylight. +2005-02-16,38.9586111,-82.0872222,Lakin,WV,light,300,bright light hovering in the sky over lakin west virgina +2005-02-16,41.1747222,-91.8194444,Brighton,IA,triangle,60,dark triangle UFO, with three white lights and circle of red lights. +2006-02-16,37.2872222,-121.9488889,Campbell,CA,unknown,60,Observation of a intense orange light that rapidly decelerated, then disappeared. +2006-02-16,32.525,-93.75,Shreveport (20 Miles Off),LA,light,10,A big triangle of light. +2006-02-16,41.9005556,-87.8566667,Melrose Park,IL,circle,1800,red flashing light in sky +2006-02-16,26.4377778,-81.8069444,Estero,FL,egg,20,military jets trying to intercept egg shaped matalic object +2006-02-16,37.6486111,-118.9711111,Mammoth Lakes (Near ),CA,formation,90,Strange lights in formation, could have been a single object. +2007-02-16,30.5019444,-90.7477778,Livingston,LA,rectangle,1800,FLASHING OBJECT APPEARS IN CLEAR DAYLIGHT OVER LIVINGSTON, LA. +2007-02-16,42.0083333,-91.6438889,Cedar Rapids,IA,formation,10,Six to eight round neon green objects flying north to south in a v shaped formation at low speed and slightly higher than tree height +2007-02-16,41.3861111,-77.0572222,Trout Run,PA,oval,2700,Bright orange light first appeared on the SW horizon, then moved to the immediate western horizon and seemed to disappear. +2007-02-16,38.9011111,-77.2655556,Vienna,VA,rectangle,30,Large? rectangle over my house 12 miles from White House. +2007-02-16,34.0752778,-84.2941667,Alpharetta,GA,chevron,20,A boomerang shape that disappeared in the night sky +2007-02-16,44.4497222,-72.2236111,Walden,VT,triangle,240,triangular craft ,with lights on each tip and darkness in the center, passes over rural Vermont +2007-02-16,34.1786111,-89.4597222,Paris,MS,unknown,7200,Bizarre lights in northern Mississippi +2007-02-16,37.9886111,-84.4777778,Lexington,KY,triangle,120,Huge black triangle heading north low and slow over Lexington, Kentucky +2008-02-16,37.5536111,-77.4605556,Richmond,VA,changing,4560,Myself and son had just driven over the state line of North Carolina going into Virginia.we were on the highway and seemed to be the on +2008-02-16,33.7488889,-84.3880556,Atlanta,GA,other,2,Hovering still curved boxy 20x25 ft. solid dark object over Atlanta freeway. +2008-02-16,47.6063889,-122.3308333,Seattle (Shoreline),WA,light,300,bright flickering light like a star moving left to right and heading west +2008-02-16,35.1677778,-114.5722222,Laughlin,NV,disk,20,02/116/08 in Laughlin, NV a disc shaped object was in the sky, non-moving but tilting at different angles. +2008-02-16,37.775,-122.4183333,San Francisco,CA,triangle,20,3 bright lights in triangle pattern stationary over SF Bay +2008-02-16,44.6366667,-123.1047222,Albany,OR,circle,60,Tuesday, February 19, 2008 On February 16, 2008 approximately 6:30 pm three children ages 12 to 13 were outside talking on the neighbo +2008-02-16,37.1752778,-113.2891667,Hurricane,UT,disk,3,Neon green saucer with white trail falling rapidly at 45 degree angle over mountains west of Hurricane, Utah +2008-02-16,37.2705556,-76.7077778,Williamsburg,VA,light,60,Triangular formation of three white lights +2008-02-16,38.5816667,-121.4933333,Sacramento,CA,flash,5,Small miniture light very high for 5 seconds. Then vanished upward +2009-02-16,47.3811111,-122.2336111,Kent,WA,light,2,orange orb +2009-02-16,38.9822222,-94.6705556,Overland Park,KS,light,2,I witnessed three lights for 2 seconds in triangle formation shooting towards the earth off in the distance. +2009-02-16,41.4538889,-75.3830556,Lake Ariel,PA,other,600,Object staionary then fast move to other direction +2009-02-16,30.5041667,-90.4611111,Hammond,LA,sphere,300,During a baseball practice, trainer had "out of body experience". Entire team witnessed small craft hovering over center field. 50 +2009-02-16,41.1844444,-73.1336111,Stratford,CT,teardrop,180,STRANGE OBJECTS IN SOUTHERN STRATFORD SKY???????? +2009-02-16,35.9605556,-83.9208333,Knoxville,TN,egg,1200,Egg shaped Bright Light in the sky , it appeared to glow bright white but the photos taken only showed it to be red and turned to blue +2009-02-16,31.2230556,-85.3905556,Dothan,AL,triangle,15,three white lights in v formation until they blended in with the rest of the stars. +2009-02-16,42.4461111,-73.7888889,New Baltimore,NY,light,10,Very blue light traveling FAST from north to south high in the sky. +2009-02-16,36.3302778,-119.2911111,Visalia,CA,light,2700,It was about 7:30pm we looked into the sky (Southeast) and there was a very large bright off white light with a green tint around it. +2009-02-16,34.1458333,-116.9816667,Angelus Oaks,CA,circle,1,Strange shadow in the sky +2009-02-16,43.0044444,-71.3488889,Auburn,NH,changing,3600,Hovering Obj. with bright lights that appeared to come from object with rows of windows.((NUFORC Note: Possibly Sirius or Venus? PD)) +2009-02-16,42.0472222,-71.0819444,South Easton,MA,changing,180,Hovering box-like UFO spotted in Eastern Mass. +2010-02-16,34.0922222,-117.4341667,Fontana,CA,light,250,Just not the same as a jet landing in Ontario airport. +2010-02-16,39.7391667,-104.9841667,Denver,CO,unknown,1200,Bright star looking object moved in sky and turned red, blue, green, yellow and hovered in sky +2010-02-16,30.2669444,-97.7427778,Austin,TX,sphere,240,Noticed a total of 6 ball shape orange glow except the last one was more red.Coming from north(downtown)to south(parallel)I-35.they all +2010-02-16,32.7666667,-96.5988889,Mesquite,TX,rectangle,30,Rectangle UFO with 4 Dim Red Lights +2010-02-16,29.82,-94.3838889,Winnie,TX,changing,1020,Very eerily silent, complete vulnarability, Sense of being watched and thoughts read +2010-02-16,29.82,-94.3838889,Winnie,TX,triangle,1020,Silent, pulsating lights flying parallel to HWY73, turn and start chasing us down the HWY!! +2011-02-16,40.0180556,-80.7344444,Benwood,WV,cigar,120,Bright, large white light & also green light. +2011-02-16,35.3858333,-94.3983333,Fort Smith,AR,disk,60,Man and his son witness object following high-altitude aircraft in the daytime sky. +2011-02-16,34.9530556,-120.4347222,Santa Maria,CA,circle,12,Santa Maria: 2/16/2011: 7:01 PM: clearly saw stationary light orange circle to the south-east high in the sky +2011-02-16,31.4611111,-103.3933333,Barstow,TX,oval,600,I know what i saw +2011-02-16,36.1344444,-80.6597222,Yadkinville,NC,cigar,600,Yadkin County NC Lights +2012-02-16,25.4683333,-80.4777778,Homestead,FL,unknown,300,UFO Sighting Over Homestead, FL. +2012-02-16,26.0391667,-97.5561111,Rancho Viejo,TX,chevron,45,Light went from small to big then from big to small until it completely turned off. Gray V shape object with 3 circular patches. +2012-02-16,29.6513889,-82.325,Gainesville,FL,oval,600,Didnt belive too much till I started seeing this!! +2012-02-16,25.7738889,-80.1938889,Miami,FL,light,300,Ball of light shoots across night sky, then vanishes +2012-02-16,30.1586111,-85.6602778,Panama City,FL,sphere,300,Two bright orbs zig zagging over Tyndall Air Force Base, Florida. +2012-02-16,41.9163889,-83.3977778,Monroe,MI,light,7200,Weird light above the fields on M-50 again! ((NUFORC Note: Possible sighting of Jupiter and Venus?? PD)) +2012-02-16,34.1975,-119.1761111,Oxnard,CA,flash,5,Craft speeding across the sky during a Dirty Job episode tonight. +2012-02-16,32.7252778,-114.6236111,Yuma,AZ,light,300,Saw two bright orange light hovering south of yuma, az just stood then then began to move esat until dissapeared they wernt airplane cu +2012-02-16,31.4636111,-96.0577778,Buffalo (Above),TX,flash,60,Reddish glow over Buffalo, TX +2012-02-16,31.2975,-82.8525,Pearson,GA,sphere,300,Orange sphere hovering in the night sky, then disappeared at incredible speed +2013-02-16,36.8188889,-76.2752778,Chesapeake,VA,light,600,Multi-color emitting light/star in the sky, extra brilliant, vanishes. +2013-02-16,34.0522222,-118.2427778,Los Angeles,CA,sphere,1200,White orb slowly turns orange, and then white a few times. +2013-02-16,33.9533333,-117.3952778,Riverside,CA,light,600,Bright red lights over Riverside, CA. +2013-02-16,48.7597222,-122.4869444,Bellingham,WA,fireball,180,Drones or UFO? +2013-02-16,41.1277778,-81.61,Fairlawn,OH,unknown,300,Red-orange lights over Ohio 18 / State Road. +2013-02-16,39.9977778,-76.3544444,Millersville,PA,unknown,180,6-8 orange lights moving over Millersville PA. +2013-02-16,43.1547222,-77.6158333,Rochester,NY,light,300,Four of us saw 4 fire colored lights flow acctossed the sky, and have video and still pic. +2013-02-16,39.7391667,-104.9841667,Denver,CO,oval,30,Bright orange light cruising over Denver!!! The orb went lights out and looked like a giant bubble. Silent too! +2013-02-16,37.5483333,-121.9875,Fremont,CA,circle,120,3 orange balls in triangle formation then moving independent of each other. +2013-02-16,45.0097222,-93.3488889,Golden Valley,MN,light,120,I saw 3 orange lights slowly gliding through the night sky in the Minneapolis, Minn area. +2013-02-16,38.2541667,-85.7594444,Louisville,KY,sphere,300,Several Unexplained Objects Flying Low in the Night Sky. +2013-02-16,33.4483333,-112.0733333,Phoenix,AZ,fireball,300,Red lights over Phoenix. +2014-02-16,38.5816667,-121.4933333,Sacramento,CA,cigar,60,At roughly 3:30 a.m. pacific standard time I witnessed three lights moving in a westward direction at longitude -121.342 latitude 38.70 +2014-02-16,44.510555600000004,-89.4261111,Custer,WI,circle,10,Shimmering "liquid-like-metallic" disc. +2014-02-16,26.5863889,-80.0522222,Lantana,FL,other,3600,Hovering over the ocean. +2014-02-16,40.5186111,-74.4125,Edison,NJ,oval,10,A oval shaped object silver in color flew behind clouds and never came out the other side. +2014-02-16,38.4088889,-121.3705556,Elk Grove,CA,sphere,180,Small Orange Sphere seen near Sacramento. +2014-02-16,35.5641667,-121.0797222,Cambria,CA,circle,240,8 very bright orange/red round roused in straight line over west sky over Cambria CA., coast then faded away; seen by 4. +2014-02-16,45.9047222,-122.7427778,Woodland,WA,unknown,600,Cascading multi-colored lights in clouds. +2014-02-16,33.6305556,-112.3325,Surprise,AZ,other,1800,Not an object; strange contrail-type cloud "fingers" stretching from east to west. +1980-02-17,44.5955556,-75.1694444,Canton,NY,light,20,Two unblinking lights travel in line across the sky in Canton, NY +1997-02-17,40.4405556,-79.9961111,Pittsburgh,PA,other,1200,A LARGE CRAFT WITH FIVE SMALL FLOATING LIGHTS SURROUNDING IT, HOVERED OVER EDGEWOOD FOR A SHORT AMOUNT OF TIME THEN SEEMED TO VANISH. +1997-02-17,44.0777778,-93.5072222,Waseca,MN,other,3600,We had seen a Bright light in the sky just NW of Waseca Mn, +1998-02-17,33.9375,-117.2297222,Moreno Valley,CA,sphere,300,Mr. and Mrs. J.S. were travelling westbound on the 60 Fwy through Moreno Valley when Mrs. S. looked towards the mountains due NW of the +1999-02-17,34.8986111,-117.0219444,Barstow (Aprox 35 Mi West Of, Mojave Desert),CA,other,120,Traveling East at aprox 30 mph at aprox 1000 ft altitude and aprox 1000 ft from me. +1999-02-17,26.6833333,-80.28,Loxahatchee,FL,cylinder,15,I saw the object in the sky about 2 miles away, I pointed over and told my dad that he would see it once we passed a group of trees, bu +1999-02-17,42.7261111,-87.7827778,Racine,WI,fireball,10,It looked like a meteor moving North to South east at about a 160 degrees.. +1999-02-17,37.9575,-119.1208333,Lee Vining (Mt. Warren),CA,rectangle,900,Lighted, rectangular shape hovering over 13군 foot Mt. Warren in the Eastern Sierra. Prominent light was a red strobe that circled t +1999-02-17,38.7522222,-121.2869444,Roseville,CA,unknown,600,A bright red dot seemingly motionless in the sky, when viewed with 114mm Newtonian Telescope the bright red dot demonstrated constant v +2000-02-17,47.3075,-122.2272222,Auburn,WA,triangle,15,Driving N. on C St. and noticed plane or ? coming from the west and directly overhead--traveling faster than any I've ever seen--but ve +2000-02-17,42.2711111,-89.0938889,Rockford,IL,disk,40,driving down road looked out window and saw bright orange light,? looked like the back lights to a car did not blink or no noise. +2000-02-17,43.6275,-89.7708333,Wisconsin Dells,WI,light,1200,6 Rapidly moving lights... then down to 1 +2000-02-17,39.7841667,-74.9925,Pine Hill,NJ,chevron,30,Black Metallic Boomerang-Shaped Craft Hovering Motionlessly +2001-02-17,36.1658333,-86.7844444,Nashville,TN,cross,1800,White, cross shaped object with the sun reflecting off a little. +2001-02-17,38.9938889,-105.0563889,Woodland Park,CO,rectangle,120,Lights and a thin retangular shape. +2001-02-17,42.5847222,-87.8211111,Kenosha,WI,light,300,We saw 2 lights over some tree tops in our back yard. +2002-02-17,42.225,-121.7805556,Klamath Falls,OR,formation,60,Wing shaped UFO Klamath Falls Oregon. Several lights or reflections, Soared like a bird, not straight path, hight altitude no sound. S +2002-02-17,34.4358333,-83.1069444,Lavonia,GA,unknown,3600,Daylight sighting over Georia +2002-02-17,39.4141667,-77.4108333,Frederick,MD,disk,300,The ship was studying something on the ground. ((NUFORC Note: Student report. PD)) +2002-02-17,38.6819444,-84.59,Dry Ridge,KY,unknown,120,agile flashing craft outside of cincinnati +2002-02-17,47.1302778,-119.2769444,Moses Lake,WA,light,120,Observed a strange orange light in the night sky. +2002-02-17,33.6675,-84.0177778,Conyers,GA,disk,600,As I walked through my kitchen, a bright light caught my attention outside the window.I stopped for a look and there in the sky abo +2002-02-17,40.0394444,-84.2033333,Troy,OH,triangle,120,Very large bright light sitting there and then it made a sudden turn to the south and disapeared +2003-02-17,39.5994444,-110.81,Price,UT,fireball,10,A bright fireball object in the sky followed by increase of electrical power. +2003-02-17,42.2911111,-71.125,Roslindale,MA,oval,60,On my way to work, walking down a road, about 5:30 am, before sunrise, I looked to the northeast and saw a descending shape, like an ai +2003-02-17,39.4830556,-88.3727778,Mattoon,IL,light,7200,I noticed this light a month ago and it seems to be in the sky almost every night.... It is scary how it moves around so quickly at tim +2003-02-17,34.1808333,-118.3080556,Burbank,CA,light,180,Redish lights cought on video over Burbank +2003-02-17,26.7080556,-80.2308333,Royal Palm Beach,FL,light,60,WHITE LIGHT MOVING IN SPERTS VERY HIGH IN THE SKY CHANGING DIRECTIONS 45% MORE THAN ONCE. +2003-02-17,34.1808333,-118.3080556,Burbank,CA,fireball,300,Fifth sighting of red/orange lights that drop or shoot sparks and then disappear. +2003-02-17,32.7152778,-117.1563889,San Diego,CA,unknown,1620,Saw a bunch of U.F.O.'s flying around for about a half an hour in our mountains in east San Diego. +2004-02-17,40.4405556,-79.9961111,Pittsburgh,PA,egg,1500,Ok well I was outside star gazing as i often do thanks to Mike Gullo. When all of a sudden My dog started barking, as i looked around i +2004-02-17,38.9686111,-77.3413889,Reston,VA,fireball,5,Green Meteor +2004-02-17,47.4830556,-122.2158333,Renton,WA,light,1.5,bright star burst in norther sky at 60 degrees above horizon at around 5:35am on 2-17-04 +2004-02-17,35.5641667,-89.6463889,Covington,TN,diamond,180,There were seven diamond things that hovered and vanished while emitting a loud shrieking noise. +2004-02-17,40.6936111,-75.1905556,Phillipsburg,NJ,triangle,180,Flying object with 3 lights. One at each end . Triangular shape +2004-02-17,42.6072222,-83.9294444,Howell,MI,disk,360,floating above my feild +2004-02-17,39.3583333,-93.4955556,Carrollton,MO,unknown,480,ufo Missouri +2004-02-17,42.5,-71.5833333,Harvard,MA,fireball,4,Meteor-type object travel up-ward, out of wooded area. +2005-02-17,33.5311111,-111.9419444,Paradise Valley,AZ,triangle,120,4:45am driving to work and got right under it to studyƻ lights in a triangle, starting flying away when I started studing it +2005-02-17,36.1658333,-86.7844444,Nashville,TN,circle,145,Pilot sees a Circular object hover and then goes to speed in one second, goes half mile and hovers again. +2005-02-17,42.8666667,-88.3333333,Mukwonago,WI,light,25,Witnessed a strange light in the sky, a dark bright blue that blended with the sky. +2005-02-17,38.2541667,-85.7594444,Louisville,KY,other,3300,The cloud in the sky observed for aproximately 5 to 6 minutes suddenly disappeared with a minute. +2005-02-17,33.8544444,-84.2172222,Tucker,GA,formation,25,Group of sporadic flashing lights traveling across the sky on feb 17 in Tucker Georgia +2005-02-17,32.9813889,-82.8102778,Sandersville,GA,teardrop,45,I was driving along Highway 24 in an eastly direction. It was just before dark; but still very much daytime. I did not have to turn o +2005-02-17,35.7719444,-78.6388889,Raleigh,NC,sphere,2,Loud Lowflying Large Object +2005-02-17,35.2147222,-80.0025,Mt. Gilead,NC,light,180,LOW LIGHTS AND STRANGE OBJECT(S) IN RURAL AREA AGAIN! UNMISTAKEABLY STRANGE. +2005-02-17,40.8622222,-73.6341667,Glen Cove,NY,diamond,1500,BLUE DIAMOND SHAPED LIGHT, SUSPENDED IN THE SKY. +2006-02-17,41.6313889,-72.4602778,Marlborough,CT,circle,300,A circle object the flew up down and all around! +2006-02-17,47.8208333,-121.5538889,Index,WA,oval,40,Two silver orbs over Index +2006-02-17,36.1658333,-86.7844444,Nashville,TN,light,300,VIEW GREENISH BLUE LIGHT ABOVE THE THIN CLOUD COVER CIRCLING JUST ABOVE THE THIN CLOUD COVER NEVER GETTING CLOSE WERE THE CLOUD COVER W +2006-02-17,44.1202778,-69.2405556,Warren,ME,sphere,2,Sphere with an eye or hole in it +2006-02-17,39.9669444,-74.9430556,Moorestown,NJ,unknown,20,Appeared as a star then faded into the night sky until it was not visible. +2006-02-17,26.5641667,-98.1208333,San Manuel,TX,circle,180,CIRCULAR OBJECT WITH RED AND WHITE LIGHTS. +2006-02-17,42.375,-71.1061111,Cambridge,MA,triangle,120,weird lights spotted over East Cambridge +2006-02-17,25.7738889,-80.1938889,Miami,FL,disk,120,this ligth was no plane or shooting star. +2006-02-17,38.5922222,-89.9111111,O'fallon,IL,disk,5,We were driving north up Scott-Troy Road when we noticed that a bright object in the sky was slowly hovering to the east (towards Scott +2007-02-17,41.4994444,-81.6955556,Cleveland,OH,triangle,180,Triangular craft over Burke Lakefront Airport Cleveland. White lights on the sides, red light shimmering in the middle-bottom. +2007-02-17,43.0388889,-87.9063889,Milwaukee,WI,oval,300,Did any one report seeing a UFO around 6:30 this morning off of Hopkins and Capitol? Myself and a few people stopped this morning and s +2007-02-17,45.5236111,-122.675,Portland,OR,changing,420,From the heart a rare and ever so ,"WOW!" +2007-02-17,47.8627778,-121.8152778,Sultan,WA,other,300,Object appeared on digital pictures only. +2007-02-17,33.8583333,-118.0638889,Cerritos,CA,light,15,Strange light in sky over Cerritos California +2007-02-17,44.2597222,-70.5011111,West Paris,ME,rectangle,300,Transparent rectangle craft seen hovering for a few minutes +2007-02-17,30.5019444,-90.7477778,Livingston,LA,triangle,300,BRIGHT OBJECT SPOTTED IN THE NIGHT SKY IN LIVINGSTON, LA. +2007-02-17,30.9077778,-94.4219444,Colmesneil,TX,unknown,3600,The most disturbing aspect of this object (and the character that caught and held my attention) was its ‘amorphous’ nature. +2008-02-17,42.7469444,-84.4011111,Haslett,MI,triangle,120,Friend and I were coming back from picking her check up when we noticed a big triangle shaped object flying slow and very low over some +2008-02-17,33.1580556,-117.3497222,Carlsbad,CA,light,720,This was like a "string theory" energy light show, initially mistaken for a distant approaching aircraft. +2008-02-17,30.0927778,-93.7363889,Orange,TX,oval,300,A bright light that looked like a star, but didn't move like one. +2008-02-17,28.182222199999998,-81.8241667,Polk City,FL,circle,900,((HOAX??)) 3 boys see 3 UFOS. +2008-02-17,32.7152778,-117.1563889,San Diego,CA,formation,1200,Two objects over San Diego, Ca. +2008-02-17,37.5969444,-120.865,Hughson,CA,changing,300,An metallic object dropped out of the sky, changed direction, and then turned black while dissappearing into the clouds. +2008-02-17,45.5236111,-122.675,Portland,OR,other,360,odd orb on horizon at sunset +2008-02-17,42.4391667,-123.3272222,Grants Pass,OR,light,5,Bright light falling from the sky, Grants Pass, Oregon. +2008-02-17,37.775,-122.4183333,San Francisco,CA,light,90,Object with bright light above San Francisco accelerated towards my plane at impossible speed for a normal aircraft +2008-02-17,40.5852778,-105.0838889,Fort Collins,CO,light,300,Bright light seen over Northern Colorado foothills +2008-02-17,35.0222222,-80.7611111,Weddington,NC,circle,120,A round object with 4 bright lights in the front hovered, flew away, and dissapeared +2008-02-17,47.5708333,-122.2208333,Mercer Island,WA,unknown,120,White light, split into 3 lights, various conformations as the objects moved westward over Seattle. +2009-02-17,41.3555556,-72.1,New London,CT,disk,120,me and my mother were in the car driving to a freinds house from norwich to new london i saw it it new london and something with red li +2009-02-17,40.4841667,-88.9936111,Bloomington,IL,other,40,Driving home saw object with white lights +2009-02-17,41.9452778,-74.9133333,Rockland County,NY,oval,20,Silver Ball hovering in sky with a commercial plane in the sky above it +2009-02-17,40.82,-74.3652778,East Hanover,NJ,sphere,1200,Formation of round bright red lights moving slowly for 20 minutes, then blinking and disappearing. +2009-02-17,40.8577778,-74.4263889,Parsippany,NJ,circle,1200,9 red circular flying lights in different formations flying slowly and hovering then disappeared +2009-02-17,40.8216667,-74.4813889,Morris Plains,NJ,light,600,Red lights previously spotted in Morris Plains, NJ return to the sky in greater numbers +2009-02-17,40.7597222,-74.4175,Madison,NJ,light,600,For the 3rd time, blinking red lights seen in Morris County. +2009-02-17,40.0255556,-76.5302778,Wrightsville,PA,rectangle,180,Two rectangular shaped solar panels hovering +2009-02-17,34.1705556,-118.8366667,Thousand Oaks,CA,light,120,I saw two lights about to collide then suddenly one circles the other before they take off at rapid speed. +2009-02-17,37.3861111,-122.0827778,Mountain View,CA,disk,300,Slow moving disk emitting beams. +2009-02-18,29.9544444,-90.075,New Orleans,LA,teardrop,1227,Photographing a party on the rooftop of a hotel in New Orleans and captured these objects in seven of my photos. +2010-02-17,43.2080556,-71.5380556,Concord,NH,chevron,30,roll of lights in the sky +2010-02-17,30.4752778,-90.1008333,Covington,LA,triangle,60,Slow moving triangular object with bright light and no sound at relatively low altitude spotted at dusk. +2011-02-17,29.5955556,-90.7194444,Houma,LA,fireball,4,Fireball racing to earth. +2011-02-17,34.739444399999996,-114.2675,Franconia,AZ,formation,300,Bright, twinkling, amber light cluster seen in northern Arizona two different nights. +2011-02-17,45.5827778,-122.3522222,Washougal,WA,triangle,600,silent triangle +2011-02-17,30.2669444,-97.7427778,Austin,TX,fireball,600,Bright lights in the sky +2011-02-17,37.335,-83.1313889,Dwarf,KY,unknown,1800,3 red lights spotted over Dwarf, Kentucky +2011-02-17,35.825,-77.2494444,Robersonville,NC,other,600,Row of lights outside Robersonville, NC +2011-02-17,27.9472222,-82.4586111,Tampa,FL,disk,10,Saucer Shaped UFO sighted in night sky +2012-02-17,48.5127778,-122.6113889,Anacortes,WA,oval,2700,While viewing Washington state aviation camera of Anacortes airport from 7:15 am the camera captured these images. ((Birds??)) +2012-02-17,42.0883333,-87.9805556,Arlington Heights,IL,triangle,5,3 black triangles flying very quickly northwest over Arlington Heights +2012-02-17,41.8758333,-72.8016667,Simsbury,CT,light,60,Zig-zagging star-like object +2012-02-17,43.0202778,-78.8805556,Tonawanda (Town Of),NY,light,900,VERY BRIGHT SOLID BALL OF LIGHT IN SKY - MOVING SLOWLY - NO SOUND - NO BLINKING LIGHTS +2012-02-17,40.5408333,-74.5880556,Manville,NJ,unknown,300,4 moving lights at a high altitude spotted over Manville NJ +2012-02-17,45.105,-93.2083333,Mounds View,MN,rectangle,60,Large black rectangular object hovering +2012-02-17,35.0525,-78.8786111,Fayetteville,NC,circle,60,Round, bright, mostly stationary, with neon colors. ((NUFORC Note: We suspect a sighting of Sirius, Jupiter, or Venus. PD)) +2012-02-17,39.9611111,-82.9988889,Columbus,OH,fireball,300,4 fireballs in the sky that disappear one at a time. +2012-02-17,35.2233333,-114.2222222,Golden Valley,AZ,teardrop,1320,Military missiles and Jetcraft are evaded by a light in the southern sky. +2012-02-17,42.0255556,-88.1783333,Streamwood,IL,cross,300,Object was first seen over the tree line coming down Schaumburg Rd before crossing barrington rd. The light was mostly bright blue with +2012-02-17,33.965,-83.5966667,Statham,GA,fireball,1200,Very fast and bright lights ever were +2012-02-17,26.9758333,-82.0908333,Port Charlotte,FL,light,1800,Bright pulsing flare over charlotte harbor fl. ((NUFORC Note: Jupiter or Venus, which are in the NW sky at this hour? PD)) +2012-02-17,32.8808333,-97.1547222,Colleyville,TX,rectangle,1,3 lights in shape of triangle go faster than anything ive ever scene. +2012-02-17,38.8105556,-90.6997222,O'fallon,MO,unknown,300,Tilted object with lights in the night sky hovering, and traveling low. +2012-02-17,41.5033333,-74.0108333,Newburgh,NY,triangle,300,On 2/17/12 a Massive burning flash turned into a triangular ship in Newburgh NY. +2013-02-17,38.2119444,-86.1219444,Corydon,IN,triangle,25,It was so Bright... +2013-02-17,45.52,-123.1094444,Forest Grove,OR,fireball,1200,Red, orange fireballs in mid day. +2013-02-17,30.9261111,-94.5963889,Chester,TX,changing,180,3 Orange glowing ball changed into an airplane once it moved closer. +2013-02-17,39.0272222,-84.585,Crestview Hills,KY,circle,600,Bright orange lights moving from south to north over northern Kentucky. +2013-02-17,34.1063889,-117.3694444,Rialto,CA,oval,5,LARGE SLOW MOVING BRIGHT LIGHT TRAILING SPARKS THEN VANISHES. +2014-02-17,37.3477778,-120.6080556,Atwater,CA,other,300,Strange occurance. +2014-02-17,28.5997222,-81.3394444,Winter Park,FL,changing,180,Walking my dog around midnight I noticed a bright orange round (ball) moving north, It appeared to flames coming from the rear. moved +2014-02-17,39.0066667,-76.7794444,Bowie,MD,light,240,Bright white light moving rapidly in daytime followed by aircrafts. +2014-02-17,29.8241667,-83.595,Keaton Beach,FL,oval,60,Black Drone with highly advanced propulsion system. +2014-02-17,36.7477778,-119.7713889,Fresno,CA,unknown,120,Close to an airport but so loud it sounded like right over the neighborhood . +2014-02-17,45.4463889,-122.6380556,Milwaukie,OR,triangle,60,Triangle-shaped with lights. +2014-02-17,40.1855556,-75.4519444,Collegeville,PA,light,3600,Spot light in sky. +2014-02-17,43.6136111,-116.2025,Boise,ID,light,5,3 lights, 2 white with 1 red in between seen moving east to west to east then north as it disappeared. +2014-02-17,40.7608333,-111.8902778,Salt Lake City,UT,fireball,60,Orange balls in formation over Salt Lake City Valley. +2014-02-17,32.7833333,-96.8,Dallas,TX,triangle,180,Triangle UFO in Dallas. +2014-02-17,37.3041667,-77.2875,Hopewell,VA,triangle,600,UFO above my home. +2014-02-17,42.0713889,-70.8097222,Pembroke,MA,circle,90,Aircraft with 10-15 yellow orange lights on it all evenly spaced apart went across the sky. +1960-02-18,36.0997222,-80.2444444,Winston-Salem,NC,cigar,20,It was on a Full Moonlit night, while snowsledding, a friend called to me and said , "look Bill, what in the world is that?" +1975-02-18,37.9880556,-88.7475,Akin,IL,triangle,7200,Awoke to see red,blue and,white lights floating around the ceiling ran outside and seen a triangular shaped object hovering above the t +1995-02-18,42.6583333,-71.1375,Andover,MA,sphere,15,Blue ovallish object stationary in the sky and then bolts across the horizon. +1996-02-18,29.6513889,-82.325,Gainesville,FL,diamond,300,Man, wife, and 6-yr. old daughter witness "huge, diamond-shaped" obj. SE of city. Obj. had "massive floodlights," passed overhead. +1999-02-18,30.3319444,-81.6558333,Jacksonville,FL,light,1200,Lighted object observed strobing red, white & blue while completely stationary for apx. 20 mins. at altitude. Visual confirmation by AT +1999-02-18,47.6063889,-122.3308333,Seattle,WA,unknown,10,Seen from I-5, over Boeing Field, a motionless object that looked like a bunch of black and grey party balloons. +1999-02-18,34.6930556,-93.5175,Story,AR,rectangle,120,2 triangle shaped aircraft with red, green, and white lights on each corner of the crafts moving irraticly and hovering. +1999-02-18,41.3266667,-83.6508333,Portage County,OH,unknown,240,Object crossed over Highway I-76, Heading Northeast about 100 feet off the ground. The object moved very slowly, to slow for an airplan +1999-02-18,38.8338889,-104.8208333,Colorado Springs,CO,formation,1,two columns of dull white spheres raced from south to north @ incredible speed.keeping perfect pararell formation. +2000-02-18,34.1477778,-118.1436111,Pasadena,CA,light,300,It looked like a small tuft of cloud, but didn't move like one +2000-02-18,34.61,-112.315,Prescott Valley,AZ,fireball,240,We watched 2 fire like lights cross the sky from the northeast to the southwest in a synchroniced fashion. +2000-02-18,30.3319444,-81.6558333,Jacksonville,FL,triangle,300,Triangle shaped craft hovering about 70ft at old kings and baymeadows-quiet hissing sound. +2000-02-18,33.9627778,-91.9591667,Glendale,AR,light,120,using the restroom, had my window open about4" seen what looked like an aircraft. It caught my eye. Itwas heading southwest it then Sto +2001-02-18,34.0522222,-118.2427778,Los Angeles,CA,diamond,300,black, odd-shaped object sighted in los angeles in broad daylight +2001-02-18,33.9175,-116.7863889,Cabazon,CA,cigar,300,Cigar shaped object, heading west from east, that glowed in the sky like a floresent light bulb. +2001-02-18,30.5066667,-88.2338889,Irvington,AL,light,5,blue light mobile alabama fast moving +2001-02-18,33.8333333,-117.2952778,Mead Valley (To Riverside To Ontario),CA,teardrop,1800,NO DEFINITE SHAPE COLORS LIKE THE MOON BUT WITH LIFE BIG AND FAST AS A PLANE BUT WAY BIGGER AND NO NOISE +2001-02-18,34.0555556,-117.1816667,Redlands,CA,oval,120,Large glowing oval object hovering in field over Redlands(San Timoteo Cyn.) ranch +2001-02-18,33.9533333,-117.3952778,Riverside,CA,disk,180,possible explanation for sightings at Redlands, Mead Valley, Cabazon this date +2001-02-18,43.1547222,-77.6158333,Rochester,NY,formation,10,Pair of lights, travelling East to West at extreme velocities +2001-02-18,38.8338889,-104.8208333,Colorado Springs,CO,triangle,120,3 triangular craft moveing in erratic patterns, then dissappeared. +2001-02-18,33.5091667,-111.8983333,Scottsdale,AZ,sphere,10,spereical shaped , object flying by Sirus downward toward the ground +2002-02-18,43.55,-96.7,Sioux Falls,SD,triangle,30,Grouping of rectangular or triangular objects, hovering, dancing around each other, absolutely silent, then rapid accleration. +2002-02-18,44.7677778,-93.2775,Burnsville,MN,formation,2,5 or 6 faint red dots in a strange formation heading east +2002-02-18,26.1416667,-81.795,Naples,FL,flash,900,A flash was seen inthe sky, it did not move in a steady direction, but up and down and back and forth left and right +2002-02-18,33.7877778,-117.8522222,Orange County,CA,light,240,Slowly blinking light +2002-02-18,26.5625,-81.9497222,Cape Coral,FL,sphere,60,Two bright red sphere shaped lights over cape coral florida. +2002-02-18,33.8352778,-117.9136111,Anaheim,CA,disk,60,silent oval ufo +2003-02-18,45.7833333,-108.5,Billings,MT,cross,120,two black objects seemed like they fluttered +2004-02-18,36.0872222,-81.9275,Newland,NC,oval,480,Ufo attacked by jet +2004-02-18,26.5863889,-80.0522222,Lantana,FL,light,600,Constant streak of light in the westward sky, too high up to be in normal airspace, 6:20pm +2004-02-18,43.2341667,-86.2483333,Muskegon,MI,triangle,40,Black Triangle flying treetop level slowly over road +2004-02-18,31.3058333,-82.2422222,Blackshear,GA,light,1800,HBCCUFO CANADIAN REPORT: It slowly moved south for a few seconds then it turned moving back towards the north again. +2004-02-18,38.6772222,-87.5286111,Vincennes,IN,light,600,8 large bright pale orange lights were seen above treeline on and off for about 10 minutes. +2004-02-18,33.5091667,-111.8983333,Scottsdale,AZ,circle,10,6 cicular lights were in the sky then dissapeared. +2004-02-18,30.5080556,-97.6786111,Round Rock,TX,other,30,Jigsaw Puzzle shape coming from the North..Heading south...Low Orange Glow +2005-02-18,36.175,-115.1363889,Las Vegas,NV,triangle,480,SIGHTED IN LAS VEGAS DESERT..... +2005-02-18,38.6702778,-89.9844444,Collinsville,IL,triangle,600,Triangular aircraft with bright white light hovered silently over houses. +2005-02-18,36.9086111,-116.7583333,Beatty,NV,formation,1020,Longitude: 116.7 W, Latitude: 36.9 N I'm a commercial pilot for United Airways, Flight 17.I took off from Las Vegas International t +2005-02-18,34.1747222,-86.8436111,Cullman,AL,fireball,180,Me and 3 of my close friends witnessed a strange event. We saw a large green fireball streak across the night sky and it traveled from +2005-02-18,42.9980556,-78.1877778,Batavia (Near),NY,light,120,Flashing Vertical Beam of White Light from an unknown source +2005-02-18,40.7536111,-86.0688889,Peru,IN,unknown,120,Strange lights! +2005-02-18,35.5511111,-80.4066667,Rockwell,NC,triangle,600,A stationary lit object, hovering for some time, and then instantly sped away ... not gradually, but instantly and silently. +2006-02-18,43.6136111,-116.2025,Boise,ID,rectangle,120,Repeated sightings. +2006-02-18,47.6447222,-122.6936111,Silverdale,WA,unknown,150,black flying object seen flying over silverdale WA +2006-02-18,44.5438889,-73.1483333,Colchester,VT,light,5,Blue light falling from the sky +2006-02-18,34.6180556,-79.0088889,Lumberton,NC,formation,6300,3 lights that circled in one area ,that put on a show. ((NUFORC Note: Possible advertising lights. PD)) +2007-02-18,33.6,-117.6711111,Mission Viejo,CA,sphere,60,green light hovering than shooting off quickly +2007-02-18,35.3858333,-94.3983333,Fort Smith,AR,light,2700,white disk light over fort smith arkansas appeared in nw moved very slowly to the ne then suddenly disapperared +2007-02-18,29.7630556,-95.3630556,Houston,TX,light,17,As I was being dropped off at home, I noticed to the northeasterly direction two very bright circular shaped lights. What caught my at +2007-02-18,47.9891667,-108.6936111,Hays,MT,fireball,600,Moving, red, yellow, orange, blue, green dancing and blinking in the western sky near Hays. ((NUFORC Note: Venus?? PD)) +2008-02-18,40.8788889,-73.1572222,St. James,NY,unknown,15,((HOAX??)) Cloaked UFO making noises and pink flashing lights on february 18th. +2008-02-18,38.9666667,-94.6166667,Leawood,KS,light,5,A round white light moving incredibly fast; across a clear blue sky; it it would disappear and reappear. +2008-02-18,22.0783333,-159.3219444,Kapaa,HI,light,30,My wife and daughters went outside to look at the moon and she said to me "there are two ufo's flying over.My three year old said,"dadd +2008-02-18,24.5552778,-81.7827778,Key West,FL,unknown,360,Object changed direction after crossing paths with Space Shuttle and ISS +2008-02-18,42.32,-89.0580556,Loves Park,IL,triangle,180,Triangle object with 3 lights , disappeared behind cloud +2008-02-18,28.6119444,-80.8077778,Titusville,FL,egg,600,UFOs Sighted near NASA +2008-02-18,45.795,-88.0719444,Kingsford,MI,light,300,Orange light over Kingsford, MI +2008-02-18,34.6016667,-105.2077778,Vaughn (Hwy 285; South Of),NM,light,900,12+ pulsing red lights, low on ground. Could be distant radio towers, but some things don't fit. +2008-02-18,47.0966667,-95.8430556,White Earth,MN,diamond,5,A diamond shape object with lights flew just a few thousand feet in the air. +2009-02-18,39.9522222,-75.1641667,Philadelphia,PA,triangle,180,the color of lights cannot be duplicated for a reason i cannot pinpoint. STRANGE +2009-02-18,33.9191667,-118.4155556,El Segundo,CA,light,120,Floating Orb over LAX +2009-02-18,27.9472222,-82.4586111,Tampa,FL,triangle,1,White Triangle +2009-02-18,40.2113889,-74.7883333,Morrisville,PA,oval,60,Green lights in oval shape seen over Morrisville PA +2009-02-18,29.7630556,-95.3630556,Houston,TX,light,4500,I have never seen a light this kind ever in my life. it had to be a ufo. ((NUFORC Note: Probably Venus. PD)) +2009-02-18,33.8352778,-117.9136111,Anaheim,CA,circle,900,Glowing Globe of Light +2010-02-18,43.5197222,-85.08,Blanchard,MI,light,3600,I'm still seeing those flickering lights, and according to the reports, I'm not alone!!! This time the colors are more vivid!!!! +2010-02-18,32.6313889,-84.8013889,Ellerslie,GA,light,120,Red lights in the sky +2010-02-18,34.9808333,-79.2244444,Raeford,NC,other,60,Three identical white shapes far off in sky - one disappears instantly +2010-02-18,35.0525,-118.1730556,Mojave (21 Mi. Nw Of),CA,sphere,30,My companion and I had taken a well marked trail into a valley that had seen a lot of mining in the 1920-30s, and we were the only trav +2010-02-18,32.7152778,-117.1563889,San Diego,CA,light,180,light moving slowly changes speed and direction radically +2010-02-18,42.2138889,-71.225,Westwood,MA,cylinder,300,bright white light, cylindrical shape, floating low in the woods behind our house +2010-02-18,39.4063889,-88.79,Shelbyville,IL,unknown,180,4 white lights in large square shape with 3 redlights in line in middle approx. 100 feet long +2010-02-18,48.7597222,-122.4869444,Bellingham,WA,triangle,5,Triangular object over Bellingham, wa. Near bellis fair. 3 ports on each side. Craft was darker than the night sky. +2011-02-18,39.4352778,-84.2030556,Lebanon,OH,other,600,wierd craft hovering over state route 48 in lebanon +2011-02-18,38.4094444,-82.2947222,Barboursville,WV,light,120,There was a weird sound and blue flashing light. +2011-02-18,34.5008333,-117.185,Apple Valley,CA,unknown,180,Two aircraft looked like they were gonna collide and after passing there were 3 or 4. +2011-02-18,32.3511111,-95.3008333,Tyler,TX,other,60,I saw an object flying above me really low, and it made no noise at all, +2011-02-18,30.2669444,-97.7427778,Austin,TX,light,180,Stationary light that faded +2011-02-18,47.4958333,-121.7855556,North Bend,WA,light,180,What appeared as a planet in the E sky as the sun was setting; very bright and twinkling, red, blue. ((NUFORC Note: Sirius? PD)) +2011-02-18,40.9977778,-72.2930556,Sag Harbor,NY,diamond,1800,Large boomerang craft escorted by two smaller craft +2011-02-18,33.8936111,-117.7263889,Chino Hills,CA,light,15,On February 18, 2011 at approximately 8:30 PM My boyfriend and I were parked at a horse stable down the street from my secluded neighb +2011-02-18,30.4380556,-84.2808333,Tallahassee,FL,circle,1800,Multiple orange glowing lights over Tallahassee, FL +2011-02-18,30.4380556,-84.2808333,Tallahassee,FL,circle,300,Bright light in the sky in Tallahassee +2011-02-19,33.6638889,-114.2291667,Quartzsite,AZ,formation,600,((HOAX??)) Camping in desert,saw 3 lights in tri-angle formation,going from west to E, lights made 90 deg turn [left] headed N. +2012-02-18,44.3,-120.8333333,Prineville,OR,light,2400,Two adults witnessed a flickering blue, green and white light eminating a search beam type light +2012-02-18,42.8508333,-72.5583333,Brattleboro,VT,circle,300,Large white light observed in so. VT sky. +2012-02-18,47.3075,-122.2272222,Auburn,WA,light,240,Anyone else report a slow moving ball of yellow/orange light over T-town around 10:50?... i observed a large yellow/orange light moving +2012-02-18,25.9083333,-80.3088889,Miami Lakes,FL,chevron,180,4 Black Objects with fireball behind them moving very slowly in the night sky +2012-02-18,40.155,-74.8291667,Levittown,PA,oval,300,Bright Red Light in the sky, got brighter glowing, then turned white and shot away through the sky. +2012-02-18,43.1466667,-71.4580556,Pembroke,NH,light,15,Witnessed 2 red lights in formation proceeding slowly NW to SE. After covering about one third of the sky they suddenly went out toget +2013-02-18,29.5425,-90.3380556,Cut Off,LA,oval,3600,Three small, white, round UFOs spotted in southern Louisiana. +2013-02-18,47.6588889,-117.425,Spokane County,WA,fireball,2700,Fireballs over Spokane Washington 2013 +2013-02-18,41.1305556,-85.1288889,Fort Wayne,IN,light,1800,Fort Wayne Lights +2013-02-18,32.4608333,-84.9877778,Columbus,GA,formation,300,UFO Over Columbus, GA. +2014-02-18,39.485,-80.1427778,Fairmont,WV,light,300,Three smooth gliding amber lights;no blinkers,two kept same distance apart moving WSW to ESE as moon stayed still while one followed. +2014-02-18,21.9811111,-159.3711111,Lihue,HI,diamond,1200,Orb with lights. +2014-02-18,34.8980556,-86.7336111,Toney,AL,disk,1500,((HOAX??)) I was a ufo house size ship that was on the tree line in my neighborhood when it was flashing this beam of light. +2014-02-18,34.8980556,-86.7336111,Toney,AL,oval,1500,UFO sighting in hazel green, Toney, Alabama. +2014-02-18,27.9472222,-82.4586111,Tampa,FL,circle,180,On Tuesday 2/18/2014 on or about 9:46 am while standing on my front porch me and my nephew were observing this commercial southwest ai +2014-02-18,28.4055556,-80.605,Cape Canaveral,FL,cylinder,600,Silver cylinder over Cape Canaveral, Fl. +2014-02-18,35.5225,-97.6186111,Warr Acres,OK,cone,20,White UFO in nw Oklahoma City. +2014-02-18,29.7630556,-95.3630556,Houston,TX,disk,480,Silver disc on the right of me and then golden disc on the left of me. +2014-02-18,41.85,-87.65,Chicago,IL,cigar,120,On 18 February 2014, at 6:55 p.m, my adult daughter and I were taking out the garbage. We stepped into the alley, emptied the cans, a +2014-02-18,32.2216667,-110.9258333,Tucson,AZ,light,30,REPORT FROM ATP PILOT: 3 orange orbs size, distance, altitude unknown WSW of Picture Rocks, visible 30 secs, then blinked out. +2014-02-18,39.8288889,-84.8902778,Richmond,IN,fireball,120,Red fireball object seen over east central Indiana. +2014-02-18,38.8113889,-90.8527778,Wentzville,MO,triangle,15,Dark gray boomerang craft, no lights, gliding across Wentzville, MO, sky. +2014-02-18,38.4597222,-75.7594444,Mardela Springs,MD,light,10,One star-like light turned sharp and sped up three-fold straight down towards horizon. +2014-02-18,45.6230556,-106.6661111,Lame Deer,MT,unknown,600,Orange lights slowly from south to north. +2014-02-18,33.3763889,-117.2502778,Fallbrook,CA,circle,240,Orange orb with some intelligence. +1962-02-19,35.0525,-78.8786111,Fayetteville,NC,circle,900,it was a silver color, i just went to bed, and i seen colored lights coming through my window. i looked out my window, and seen the rou +1974-02-19,39.7683333,-86.1580556,Indianapolis,IN,disk,5,rapid moving high altitude glowing orange disk moves from horizon to horizon in about 5 seconds +1998-02-19,37.585,-79.0516667,Amherst (Near High Peak),VA,triangle,1800,I woke up, do to the moonlight shining in my eyes. And I looked out the window and saw a kind of yellow ball movi +1998-02-19,38.8461111,-77.3066667,Fairfax,VA,triangle,15,In the northern sky i saw 3 white lights (small, as in the average aircraft seen at night) with a red, flashing light between the two c +1999-02-19,28.5380556,-81.3794444,Orlando,FL,circle,90,Star like object high in the eastern sky appeared stationary, thought it was a planet, but then shot out into space toward the NNE leav +1999-02-19,27.3361111,-82.5308333,Sarasota,FL,other,300,I saw a bright light at a distance. When it got closer I noticed 5 lights on it. It was shaped like a blimp going approx 100-200 mph an +1999-02-19,37.5536111,-77.4605556,Richmond,VA,disk,30,Aircraft-size disk hovering in sky soundlessly with blue lights on its perimeter From - Thu Feb 18 10:01:52 1999 Received: from www.nwl +1999-02-19,34.8697222,-111.7602778,Sedona,AZ,other,2700,2 "stars", wobbling & dancing in unison, separated, but 1 above the other. Also alternately brightening & dimming. 1 object would dim " +1999-02-19,48.051944399999996,-122.1758333,Marysville,WA,light,240,I was looking out my front door to the west and saw a very bright light in the sky. It was about the size of the moon on a clear night, +1999-02-19,34.2694444,-118.7805556,Simi Valley,CA,other,120,Large amber shape spotted in the Northwest sky... +2000-02-19,39.9527778,-105.1680556,Superior,CO,rectangle,30,While traveling South on McCaslin Blvd. my son and I observed a shiny object in the sky at about 30 degrees above the horizon. It seem +2000-02-19,25.7738889,-80.1938889,Miami,FL,light,5,While observing the western sky thru binoculars, saw dim light for about 5 secs (near Epsilon Leo) light changed directions twice. +2000-02-19,39.4452778,-83.8286111,Wilmington,OH,triangle,20,i was driving down st rt 73 south three miles south of wilmington.i saw a black triangle ahead,just above the horizon.i saw another one +2000-02-19,47.4538889,-122.3205556,Seatac,WA,light,10,An extremely bright light in the sky very high up and moving west to east. +2000-02-19,37.0583333,-120.8488889,Los Banos (Remote East 156 Near ),CA,other,10,traveling 156 we noticed what appeared to be a satalite or plane but to close to ground as we got closer a told my sun to look at the m +2000-02-19,30.6283333,-94.6316667,Dallardsville,TX,changing,10,An object went from the northeast to the southwest. It took the same path as the UFO sighting on 02/16/00. It was lit up like lighteni +2000-02-19,47.2530556,-122.4430556,Tacoma (Going North On I-5),WA,changing,5,North on I-5, looked to west and could see UFO heading east. Object was larger than moon that night, was a green glowing light that tur +2000-02-19,48.9811111,-119.1994444,Molson (East Of),WA,fireball,5,Bright white object traveled approx due east leaving a neon green, blue tail with red within it. Tail changed between green & blue and +2001-02-19,40.3244444,-79.7013889,Irwin,PA,light,240,Very slow-moving, silent, triangular formation of lights; some RF interference +2001-02-19,39.9783333,-86.1180556,Carmel,IN,light,37800,Carmel, Indiana on US 31. On several occasions have noticed a bright light to the south west. Thought it was venus, however, this eve +2001-02-19,41.010555600000004,-72.4855556,Cutchogue,NY,diamond,300,No movement whatsoever detected after observing the object for approximately 5 minutes. +2001-02-19,37.7258333,-77.6786111,Rockville,VA,circle,3600,I know this was not normal aircraft. It stayed in one place for a very long time and then simply vanished. +2001-02-19,38.7044444,-93.2280556,Sedalia,MO,changing,1,Spotted an entity moving rapidly. +2002-02-19,45.4358333,-89.1833333,Elcho,WI,circle,3600,My mother came into my room,told me to look out the window, East, a cluster of lights( 4or 5) went from N to S in the distance above th +2002-02-19,37.595,-120.9566667,Ceres,CA,rectangle,10,Illuminated upside down bread pan like moving, silent object. +2002-02-19,42.3583333,-71.0602778,Boston,MA,light,120,Bright orb shaped light over Boson +2002-02-19,39.7555556,-105.2205556,Golden,CO,other,900,Strange Noise In Golden CO Area +2002-02-19,30.6941667,-88.0430556,Mobile,AL,triangle,30,dark triangular object at 200 ft. moving up creek bed to police HQ in Mobile AL. +2003-02-19,35.7719444,-78.6388889,Raleigh,NC,fireball,60,Fireball drops out of late-afternoon sky in Raleigh, NC +2003-02-19,40.6994444,-99.0811111,Kearney,NE,triangle,40,Triangle Crafts over Kearney, Nebraska +2003-02-19,37.2152778,-93.2980556,Springfield,MO,unknown,1800,An odd humm +2004-02-19,33.8816667,-118.1161111,Bellflower,CA,fireball,1200,LARGE FIREBALL FALLING FROM SKY +2004-02-19,40.26,-74.2741667,Freehold,NJ,sphere,15,Bronze/Gold sphere in the western sky observed in freehold New Jersey at 18:25 on 02/19/04 +2004-02-19,32.3641667,-88.7036111,Meridian,MS,triangle,1200,Triangle over pond +2005-02-19,32.3475,-97.3863889,Cleburne,TX,light,150,red dot , way too fast for man kind, no sound .figure eights in sky 1x then shot and see like a cartoon/IM A PILOT MY SELF... +2005-02-19,37.505,-105.0072222,La Veta,CO,flash,1200,Unidentified Flying Object Flashing Lights above the ground. ((NUFORC Note: Possible sighting of Sirius in western sky?? PD)) +2005-02-19,39.4666667,-87.4138889,Terre Haute,IN,oval,600,I was up at 3:00 a.m. - went to look out the window and saw an orangish light colored craft pass in front of the moon moving south east +2005-02-19,28.8105556,-81.8780556,Leesburg,FL,fireball,60,Orange glowing fireball in the sky in Leesburg, FL +2005-02-19,38.3030556,-77.4608333,Fredericksburg,VA,oval,600,A bright orange oval shapped object was spotted at 3:55 AM EST in Fredericksburg, VA and moved slowly down the horizon and disappeared. +2005-02-19,39.0838889,-77.1530556,Rockville,MD,cigar,10,Cigar-shaped object seen for several seconds then disappeared from area of sight. +2005-02-19,39.2905556,-75.6347222,Clayton,DE,triangle,900,Saw triangular shaped, black object with greenish lights, on 2/19/05, in De. USA at 9:30pm EST +2005-02-19,28.2916667,-81.4077778,Kissimmee,FL,light,1800,Blue light in the shape of a cross captured by my camera. +2005-02-19,43.1547222,-77.6158333,Rochester,NY,egg,30,the egg shaped objects were there, and the light flashed and they were gone. +2006-02-19,37.3022222,-120.4819444,Merced,CA,light,900,weird lights outside my house +2006-02-19,27.9472222,-82.4586111,Tampa,FL,unknown,3600,At 2 am in Tampa Fl I saw 2 different UFO's +2006-02-19,41.3036111,-90.1927778,Cambridge,IL,light,15,Single bright light, zigzag track with abrupt course changes. Fast moving, no sound. +2006-02-19,40.7141667,-74.0063889,New York City,NY,changing,1200,At first we saw from our car one bright opalic light on a perfect clear sky. The shape was like a comet , being steady. We got to a hig +2008-02-19,45.43,-122.3736111,Boring,OR,fireball,3,Boring, Oregon sighted fireball heading south +2008-02-19,47.4875,-117.5747222,Cheney,WA,flash,3,Very bright flash in Southwestern sky getting brighter towards the ground, bright enough to light up inside of house. ((Meteor)) +2008-02-19,46.7325,-116.9991667,Moscow,ID,other,45,Bright,strobe-like colorful lights, high in SW sky, no sound, followed by orange dripping from sight of light. ((Meteor)) +2008-02-19,47.6588889,-117.425,Spokane,WA,unknown,5,Either space junk or a meteor, very close to my position. ((NUFORC Note: Dramatic meteor at 05:28 hrs.. PD)) +2008-02-19,47.3002778,-117.9744444,Sprague,WA,fireball,5,Suspected Meteor Impact +2008-02-19,46.51,-114.0922222,Stevensville,MT,unknown,2,Moving bright object over St. Mary's Peak. ((NUFORC Note: Dramatic meteor at 05:28 hrs.. PD)) +2008-02-19,41.3252778,-72.1936111,Niantic,CT,light,120,Two strange lights hovered above the surface of a lake, broke the surface, and disappeared. +2008-02-19,43.55,-96.7,Sioux Falls,SD,oval,1200,Two oval objects appeared in the sky right where unmarked planes made an X con-trail!! ((NUFORC Note: Contrails?? PD)) +2008-02-19,36.3133333,-82.3536111,Johnson City,TN,light,300,Bright light in the sky in Johnson City, TN not moving. +2008-02-19,46.0086111,-122.8433333,Kalama,WA,disk,240,Two disc shaped objects moving from South to North along the I5 corridor in Cowlitz County. +2008-02-19,40.1672222,-105.1013889,Longmont,CO,triangle,3600,((HOAX??)) LONGMONT, COLORADO-MASSIVE TRIANGLE FOR ATY LEAST 1 HOUR +2008-02-19,32.2216667,-110.9258333,Tucson,AZ,triangle,900,This shape reminded me of the Phoenix lights because it was a Triangle. +2008-02-19,42.2291667,-95.9305556,Smithland,IA,sphere,120,bright blue sphere near Smithland, IA +2008-02-19,39.7730556,-75.0516667,Turnersville,NJ,cigar,180,Saw 2 cigar shaped aircraft with 2 bright lights on one side and one red light on the other side. I have been seeing these craft in the +2008-02-19,34.1205556,-84.0044444,Buford,GA,light,180,((HOAX??)) The craft was going extremely fast, making two white lines in the sky. It was lite. +2008-02-19,32.7938889,-79.8627778,Mt. Pleasant,SC,cigar,90,Moving very fast like a rocket / at least one blinking light on it / left a smoke trail +2008-02-19,39.5591667,-77.8911111,Falling Waters,WV,light,1398,Starlike object which dissapeared very strangely. +2009-02-19,35.0455556,-85.3097222,Chattanooga,TN,triangle,120,Triangular UFO witnessed at Army Ammunition Plant +2009-02-19,38.7891667,-77.1875,Springfield,VA,light,2,Light shoots quickly across the sky. +2009-02-19,40.8930556,-74.5822222,Wharton,NJ,oval,7200,bright red light dancing around northern new jersy. ((NUFORC Note: Possible sighting of Venus?? PD)) +2009-02-19,42.3333333,-88.2666667,Mchenry,IL,triangle,600,BLACK TRIANGLE SPOTTED MCHENRY IL +2009-02-19,33.8005556,-118.3891667,Palos Verdes Estates,CA,disk,600,Bright blue lights, characteristically a saucer, moving erratically and quickly around Redondo Beach and Palos Verdes. +2010-02-19,45.0052778,-122.7819444,Silverton,OR,light,240,3 orange orbs flying over silverton oregon +2010-02-19,34.1683333,-118.605,Woodland Hills,CA,oval,60,observed six flying objects with no wings traveling very fast in perfect formation. +2010-02-19,47.6063889,-122.3308333,Seattle (Ballard),WA,triangle,60,v-shaped craft, no lights, no sound, flew quickly passed me. +2010-02-19,41.4958333,-87.8486111,Frankfort,IL,triangle,1200,Multiple Crafts (7-8) - 3 Super Bright White Spot Lights w/Shooting/Flickering +2010-02-19,42.2194444,-87.9794444,Vernon Hills,IL,light,120,Red light object sighted over east Vernon Hills, IL / west Lake Forest, IL +2011-02-19,36.2841667,-82.1727778,Hampton,TN,cigar,7200,3 witness of cigar shaped ufo in Northeast TN, Feb 19, 2011. +2011-02-19,39.8402778,-88.9547222,Decatur,IL,light,7200,light above eastern horizon moving slowly south about 4 clicks up, due southeast. +2011-02-19,43.0388889,-87.9063889,Milwaukee,WI,triangle,1800,((HOAX??)) a very erie in Wisconsin & above in the sky in Milwaukee. I am one of the few who stays up looking out my window +2011-02-19,47.4958333,-121.7855556,North Bend,WA,changing,120,Oval object seen with red and green lights changed into arrowhead shape and shot off. +2011-02-19,47.9130556,-122.0969444,Snohomish,WA,light,5,very fast white light seen, no noise present +2011-02-19,38.5816667,-121.4933333,Sacramento,CA,light,1,Quick flash of white light near Erydan near Rigel below Orions Belt. +2011-02-19,30.4455556,-86.5791667,Shalimar,FL,diamond,60,A upside down diamond shaped that was glow fire orange and then turned into a red ball and disappeared was spotted infront of my house. +2012-02-19,30.3319444,-81.6558333,Jacksonville,FL,sphere,12,Fast moving object w/ a bauitiful orange aura that seemed to pulsate travaling at high rate of speed. +2012-02-19,37.1305556,-121.6533333,Morgan Hill,CA,egg,3600,Object floating in sky immediately goes warp speed and stops! ((NUFORC Note: Possible sighting of Venus, we suspect. PD)) +2012-02-19,41.8444444,-90.1886111,Clinton,IA,circle,300,Two strange orange lights in the sky, unattached from each other, no sound +2012-02-19,38.6819444,-84.59,Dry Ridge,KY,triangle,120,Triangular with many light +2012-02-19,41.2222222,-73.0569444,Milford,CT,circle,120,Fast ,silent, orange color +2012-02-19,45.9175,-119.3413889,Umatilla,OR,circle,180,Low flying silent brightly lit craft. +2012-02-19,34.0522222,-118.2427778,Los Angeles,CA,fireball,300,Orange orb, ascends in the southern L.A. night sky. Disappears then reappears, a faint object in clouds moving west. +2012-02-19,27.2155556,-81.8586111,Arcadia,FL,circle,900,Red lights in the sky over Arcadia +2012-02-19,37.4152778,-88.8977778,Vienna,IL,disk,600,Bright light that began to dim, it was rotating and flashing orange, yellow and red colors then picked up speed and it was gone. +2013-02-19,36.6002778,-121.8936111,Monterey,CA,cylinder,8,Cylinder shape +2013-02-19,36.1155556,-97.0580556,Stillwater,OK,light,45,2 brilliant headlight shaped objects, appeared suddenly then disappeared. +2013-02-19,30.1102778,-97.315,Bastrop,TX,disk,30,PULSATING SAUCER SHAPED UFO SEEN TRAVELLING FAST BEFORE DISSAPPEARING IN CLOUD. +2013-02-19,39.9166667,-75.3880556,Media,PA,oval,1800,Two crafts, one oval and shiny. One smaller and red, pink or orange colored. Couldn't tell shape. +2013-02-19,33.9813889,-81.2363889,Lexington,SC,triangle,20,I looked up into the sky and saw two what I thought were stars. +2013-02-19,26.2169444,-80.2261111,North Lauderdale,FL,fireball,300,Last night at my home in North Lauderdale,FL I saw three orange balls floating in the sky. They were a minute behind each other. +2013-02-19,28.3644444,-82.1961111,Dade City,FL,sphere,480,On Clinton Avenue, south of Dade City, I observed 12 round, orange lights traveling in a straight line from SW to NE, making no sound. +2013-02-19,45.67,-121.8894444,Cascade Locks,OR,triangle,600,Five Red Triangle Ufo's over the Columbia River. +2014-02-19,27.1675,-80.2663889,Palm City,FL,fireball,120,More than 1 sighting this week. +2014-02-19,35.0844444,-106.6505556,Albuquerque,NM,unknown,180,My mom who was up late last night and described an illumination very bright light from the sky which lit up her neighborhood. +2014-02-19,61.2180556,-149.9002778,Anchorage,AK,flash,60,Red Flashing UFO Hovering and slowly moving right to left. +2014-02-19,42.8666667,-88.3333333,Mukwonago,WI,diamond,300,Brilliant bright diamond shaped light just sitting in the souther sky. +2014-02-19,43.6136111,-116.2025,Boise,ID,circle,2.5,Bright Balls moving quickly across Treasure Valley sky, disappearing behind the foothills. +2014-02-19,33.4708333,-81.975,Augusta,GA,cross,900,((HOAX??)) Quad-chopper sighting, perfect straight path for aprox 6-8 miles. +2014-02-19,34.0005556,-81.035,Columbia,SC,changing,45,Round changing shape UFO with multiple fins spotted flying over Columbia South Carolina near forest acres. +2014-02-19,37.1811111,-79.6175,Moneta,VA,formation,600,((NUFORC Note: Source of report provides no information about the sighting. Chooses to remain totally anonymous. PD)) +2014-02-19,38.6158333,-76.6133333,Huntingtown,MD,light,240,Light in the sky, changing color, too fast and maneuverable for air craft. +2014-02-19,35.7719444,-78.6388889,Raleigh,NC,flash,45,Bright light flash and satellite like movements in night sky over NW Raleigh, North Carolina on the evening of February 19, 2014. +2014-02-19,32.2216667,-110.9258333,Tucson,AZ,light,3,Two red blinking lights for a few seconds. +2014-02-19,33.0580556,-112.0469444,Maricopa,AZ,light,2700,Orange lights (possibly flares). +2014-02-19,33.1958333,-80.0133333,Moncks Corner,SC,sphere,20,Bright red-orange sphere seen by homeowner from back yard. ((NUFORC Note: Missile launch?? PD)) +2014-02-19,35.3733333,-119.0177778,Bakersfield,CA,triangle,420,Strange low flying object in nights sky. +2014-02-19,29.7630556,-95.3630556,Houston,TX,unknown,600,Yellow & blinking green; then solid green and red. Hovered; fast vertical & horizontal up and downs, turns and arches complex maneuvers +1947-02-20,43.0480556,-76.1477778,Syracuse,NY,disk,360,1947-Chance observation of night sky reveals many UFO's traversing upper atmosphere.... +1967-02-20,41.5380556,-72.8075,Meriden,CT,unknown,360,Light on a dimmer switch +1970-02-20,32.4608333,-84.9877778,Columbus,GA,other,60,2 orange lights near runway seen by young but experienced observer +1976-02-20,46.3669444,-104.2841667,Baker,MT,oval,1200,mysterious light follows car at a distance and shoots down into the valley +1978-02-20,42.7958333,-77.8172222,Geneseo,NY,unknown,30,Observed a strange circular spotlight on ground in rural area +1979-02-20,35.1427778,-120.6402778,Pismo Beach,CA,triangle,420,An enormous triangle hovered over me for at least seven minutes. +1987-02-20,33.4016667,-86.9544444,Bessemer,AL,unknown,73800,10/26/2011 To whom it may concern On or about Feb. 20th 1987 at about 1:30 am I had something happen I do not understand completely. +1990-02-20,39.8433333,-86.3977778,Brownsburg (Speedway),IN,sphere,300,Object looked like a full moon, but it travelled too fast, and went the wrong way... +1995-02-20,46.6666667,-124.0541667,North Cove,WA,fireball,120,A very very large meteor +1995-02-20,40.5866667,-122.3905556,Redding,CA,triangle,1800,Craft hovered at treeline above our private road.Then circled in a LARGE oval pattern about 8 times.Came within a rocks throw of our 2n +1996-02-20,38.0494444,-122.1575,Benicia,CA,changing,300,it was real close,didn't make a sound, didn't stir the air,it actually was beautiful,a soft red glow all around,was changing shape. +1998-02-20,38.2494444,-122.0388889,Fairfield,CA,disk,600,While at lunch and sitting in my car I noticed an object moving across the Southern Sky. It was Saucer shaped and provided a beam aspec +1998-02-20,30.0472222,-99.14,Kerrville,TX,changing,1200,Long white light was stationary, then turned bright orange and moved like a comet, then became round and glowed orange while remaining +1998-02-20,48.1958333,-114.3119444,Kalispell,MT,light,180,I saw a orange light slightly brighter and bigger than a star travelling in a direction of ESE. +1998-02-20,39.9611111,-82.9988889,Columbus,OH,triangle,480,I first noticed a long, thin, sort of cigar shaped bright white light slowly moving W to E behind my house. Upon looking out the window +1999-02-20,39.1230556,-93.1966667,Marshall,MO,light,5,Blueish light traveling within or above a cloud layer. +1999-02-20,34.5969444,-83.7633333,Cleveland,GA,oval,300,The Bus Stop +1999-02-20,38.4088889,-121.3705556,Elk Grove,CA,teardrop,60,While waiting in McDonald's drive-thru line, I was looking up at several high, thin stratos clouds against a clear blue sky. I observe +1999-02-20,33.4483333,-112.0733333,West Phoenix,AZ,sphere,600,Leaving my house this morning, I spotted two spherical objects following an America West airliner. +1999-02-20,33.8302778,-116.5444444,Palm Springs,CA,circle,120,2 UFO's hovering 3 stories up from the ground +1999-02-20,29.9544444,-90.075,New Orleans,LA,light,1800,((HOAX??))Really weird to see an object flow across the sky slowly but then take off from one end of the sky to the other in seconds. +1999-02-20,37.3394444,-121.8938889,San Jose,CA,unknown,10,The overcast north-eastern sky was flashing like a strobe light, lighting up the entire horizon. +1999-02-20,40.7983333,-78.5002778,Glen Hope,PA,light,3600,My girlfriend and I where out star gazing when we noticed this object moving alot and changing colors from red to blue to green then to +1999-02-20,41.5075,-71.7166667,Hope Valley,RI,triangle,600,Another sighting of the triangular craft with logo. +2000-02-20,39.3291667,-82.1013889,Athens,OH,cylinder,90,Witnessed silvery white cylinder travel across sky and then vanish. +2000-02-20,28.5380556,-81.3794444,Orlando (Sw Orange Co.),FL,oval,60,Craft hovered slowly at low altitude then took off. No sound. Metalic, setting sun reflected off it From - Sun Feb 20 21:32:29 2000 Re +2000-02-20,44.8530556,-88.7880556,Gresham,WI,unknown,3600,Flashing star like object, red,green,white. has not moved for over an hour. +2000-02-20,43.7977778,-123.0583333,Cottage Grove,OR,formation,120,They were strange looking objects that had a very wierd look to them +2001-02-20,36.7280556,-108.2180556,Farmington,NM,fireball,60,lg green fireball! +2001-02-20,33.0569444,-110.91,Kearny,AZ,light,1200,Stationary, then oddly drifting white, nearly glowing object, mid-day, with military jets in area +2001-02-20,46.4166667,-117.0166667,Lewiston,ID,oval,1080,While playing ball with my children at a local airport park. we observed a small dot in the Northwest sjy. thinking it was a small plan +2001-02-20,36.175,-115.1363889,Las Vegas,NV,unknown,1200,Strange light formation over Las Vegas sky. +2001-02-20,33.9791667,-118.0319444,Whittier,CA,other,10,Green Meteor like object bright! +2001-02-20,41.6141667,-81.1491667,Chardon,OH,sphere,240,Blue orb hovering over trees, then crosses feild. +2002-02-20,43.1338889,-70.9269444,Durham,NH,light,3600,A light that floats at tree level and hangs out for over an hour +2002-02-20,32.2216667,-110.9258333,Tucson,AZ,disk,60,Sigting +2002-02-20,26.0108333,-80.1497222,Hollywood,FL,sphere,900,I had walked out to get something from my car,when on the way back in,I looked up at the moon that was out.It was a clear cloudless day +2002-02-20,42.3583333,-71.0602778,Boston,MA,light,120,A bright light travelled high in the sky, stopped, and moved in the opposite direction. +2002-02-20,32.5158333,-93.7319444,Bossier City,LA,oval,1200,3 Bright oval objects observed by at least 4 witnesses in NW Louisiana. +2002-02-20,32.5797222,-84.5508333,Geneva,GA,sphere,1500,Yellow spheres above treeline constantly moving and changing alignment +2002-02-20,32.3480556,-93.5525,Elm Grove,LA,triangle,420,About an hour and a half after our earlier sighting of 3 oval objects, we observed a "wedge shaped" object, very low altitude, about 1, +2002-02-20,46.6694444,-96.81,Hickson,ND,diamond,900,Large object south of mid size city on busy Hwy that wasn't busy that night. +2003-02-20,41.8661111,-88.1069444,Wheaton,IL,unknown,30,Three white steady lights and a strange whirring noise. +2003-02-20,37.775,-122.4183333,San Francisco,CA,circle,10,Big, bright green ball +2003-02-20,33.8702778,-117.9244444,Fullerton,CA,oval,20,The craft was a silvery type and moved much faster than any plane I've seen before. +2003-02-20,33.5386111,-112.1852778,Glendale,AZ,fireball,2,i saw what appeared to be a meteor traveling east to west. it seemed extremely large, and frightfully close +2003-02-20,32.7152778,-117.1563889,San Diego,CA,flash,5,Star-like light streaks across night sky +2003-02-20,38.9988889,-84.6266667,Florence,KY,circle,1800,at first i thought they were stars i was out side vidio taping my puppy because it was his first winter when i noticed that one star wa +2003-02-20,33.9236111,-84.8408333,Dallas,GA,disk,45,object with red blue and white lights came close to hitting an airplane +2003-02-20,40.8255556,-73.2030556,Hauppauge,NY,light,80,Three lights in triangular formation traveling in a North-East Direction in sufflok, LI, from brentwood direction towards hauppauge. +2003-02-20,40.5308333,-112.2975,Tooele,UT,fireball,5,Round fireball with a tail, green in color. +2004-02-20,42.5,-96.4,Sioux City,IA,oval,300,I saw an oval shaped light fly across the sky going very fast and just before it disappeared there was a light coming out the front. +2004-02-20,30.5452778,-87.7516667,Silverhill (Se Of),AL,light,300,lights in the middle of the night in South Alabama +2004-02-20,33.4483333,-112.0733333,Phoenix,AZ,disk,900,The object was a silver craft and vanished without a trace in a clear blue sky. +2004-02-20,33.0461111,-96.9938889,Lewisville,TX,unknown,2,Series of Sonic Booms over Southern Denton County just north of Dallas +2004-02-20,38.8813889,-94.8188889,Olathe,KS,other,900,Five Unknown Aircraft in Battle Formation Over Kansas +2004-02-20,36.9902778,-86.4436111,Bowling Green,KY,diamond,120,i seen a space craft that was hovering an then it faded away it didn't hide behind anythin. +2004-02-20,38.8461111,-77.3066667,Fairfax County,VA,other,300,Airship w. Red Strobe Lights over Fairfax County, VA +2004-02-20,43.2166667,-123.3405556,Roseburg,OR,cylinder,300,Orange glowing cylindrical spinning object - Roseburg Oregon +2005-02-20,40.7683333,-73.5255556,Hicksville,NY,egg,720,Craft hovers of duffy ave farm in hickville long island +2005-02-20,28.2916667,-81.4077778,Kissimmee,FL,sphere,180,It was about 10:30am and I was at my job. I work at the Radisson Resort Parkway in Kissimmee, FL. I was on the 8th floor of the hotel a +2005-02-20,38.8461111,-77.3066667,Fairfax,VA,light,180,4 dancing lights ((NUFORC Note: Possibly advertising lights. PD)) +2005-02-21,33.5508333,-79.0416667,Murrells Inlet,SC,unknown,3600,speed and direction ----indications that they were unusual +2006-02-20,41.6833333,-86.25,South Bend,IN,unknown,1200,Bluish white dots seen over south bend, IN +2006-02-20,36.175,-115.1363889,Las Vegas,NV,triangle,900,While walking south on the east side of 2'nd street between Ogden and Fremont street in Downtown las Vegas.. I noticed a black object +2006-02-20,42.1933333,-84.3911111,Vandercook Lake,MI,light,5,Stationary light appears next to jet in setting sky over Jackson Michigan. +2006-02-20,32.4977778,-88.8458333,Collinsville,MS,other,60,Plane and fireball signaling each other? +2006-02-20,33.7091667,-117.9527778,Fountain Valley,CA,disk,180,DISK SHAPED CRAFT IN FOUNTAIN VALLEY +2006-02-20,42.325,-72.6416667,Northampton,MA,changing,300,February 20th, 2006 - Bright ball changing direction and shape in Western sky over Western Massachussettes with green and blue lights. +2006-02-20,43.0302778,-83.1661111,Attica,MI,light,180,3 lights flying with a Jet coming after them +2007-02-20,34.8480556,-114.6133333,Needles,CA,circle,900,A very very white circle above contrails moving back and forth right to left for about 15 mins. Darted off towards northwest . +2007-02-20,35.489444399999996,-97.1633333,Harrah,OK,triangle,120,Unsual aircraft with bright light and almost no engine noise. +2007-02-20,43.2363889,-87.9844444,Mequon,WI,triangle,60,3 triangular shaped white circles with no propulsion on the back. +2007-02-20,40.4811111,-74.4836111,Voorhees,NJ,sphere,180,Bright objects hovering over Flyers Skaye Zone in Voorhees. +2007-02-20,35.0844444,-106.6505556,Albuquerque,NM,chevron,90,Watched a vee formation of 7 glowing gold chevron/B-1 bomber shaped objects fly silently overhead in night sky. +2008-02-20,33.9166667,-117.8991667,Brea,CA,light,60,Unbelievable speed +2008-02-20,32.1613889,-81.9041667,Claxton,GA,triangle,1200,Simular wing lines to the "War of the Worlds" movie. +2008-02-20,40.4841667,-88.9936111,Bloomington,IL,light,300,light crossed above interstate near bloomington, hung in air for a minute, then went behind us and suddenly shot up and dissapeared +2008-02-20,42.135555600000004,-71.9705556,Charlton,MA,circle,3,Bright circular greenish/turqoise light moving extremely fast horizontally toward the west for 3 seconds +2008-02-20,47.3075,-122.2272222,Auburn,WA,light,10,Bright flash traveling North by Southeast ((NUFORC Note: Possible flare from Iridium satellite? PD)) +2008-02-20,33.6888889,-78.8869444,Myrtle Beach,SC,light,60,4 yellow colored lights in formation maybe as far out over the ocean +2008-02-20,33.6888889,-78.8869444,Myrtle Beach,SC,light,30,orange and redish lights off the coast of myrtle beach +2008-02-20,31.0744444,-83.1994444,Ray City,GA,flash,60,we where looking at the moon on our deck when you go out our door turn left and you have full look then we saw 5 hell/cop. go by and tu +2008-02-20,39.0169444,-94.2813889,Blue Springs,MO,cigar,60,Long object with no lights and birds seen underneath during a lunar eclipse about 35 feet above the ground +2008-02-20,33.6888889,-78.8869444,Myrtle Beach,SC,sphere,300,I observed orange lights off of the coast. +2008-02-20,34.0522222,-118.2427778,Los Angeles,CA,circle,2400,Lunar eclipse UFO over Los Angeles. ((NUFORC Note: Optical effect of lens or camera?? PD)) +2008-02-20,39.1961111,-121.19,Penn Valley,CA,light,180,Strange Light Appeared At Time Of Lunar Eclipse +2008-02-20,42.8130556,-71.9161111,Sharon,NH,circle,3,saw a big round lighted object with bright colors and no sound 500ft away and 400ft off the ground it looked like a ferriswheel +2008-02-20,38.6272222,-90.1977778,St. Louis,MO,triangle,45,triangle shape w/lights kinda transparent with fluid movement +2008-02-20,41.7488889,-87.9183333,Burr Ridge,IL,light,3,White Light Streaked Across Sky, Greyish Shape Appeared With It Just Above Tree Level +2008-02-20,42.8130556,-71.9161111,Sharon,NH,circle,3,outside my house over the trees no sound, circular shape like a ferriswheel color white gold silver , slowly moving +2008-02-20,32.9477778,-112.7161111,Gila Bend,AZ,oval,3600,Two orange glowing objects, high altitude perfect formation. +2008-02-20,32.3694444,-84.1880556,Ideal,GA,light,2,A meteor that arches down and returns up! looks like ball on Harry Potter movies on upward return! +2008-02-20,30.3319444,-81.6558333,Jacksonville,FL,oval,10,Oval or round shaped object passed by during lunar eclipse, emitted neon blue light. +2008-02-20,38.2988889,-86.955,Huntingburg,IN,oval,8,Golden object during eclipse +2008-02-20,38.6244444,-76.9394444,Waldorf,MD,sphere,120,6 White and Red Spheres Suddenly Appear and Disappear Below February's Lunar Eclipse -- Eastern U.S. +2008-02-20,35.0525,-78.8786111,Fayetteville,NC,circle,5,UFO observed in front of the Moon during FULL Lunar Eclipse 20 February 2008 in Fayetteville, NC +2008-02-20,30.3319444,-81.6558333,Jacksonville,FL,light,10,Two lights moving at very fast speed across sky in Jacksonville Florida during Lunar Eclipse. +2008-02-20,44.4041667,-70.7911111,Bethel,ME,disk,1800,I saw this sighting tonight as I looked up at the moon. It was is in the northeastern sky. Left and lower than the moon. I noticed that +2008-02-20,43.4366667,-71.1727778,New Durham,NH,circle,30,((HOAX??)) i looked up at the sky when parking my truck, and saw a light change direction quickly. +2008-02-20,47.1855556,-122.2916667,Puyallup,WA,chevron,480,LUNAR ECLIPSE 02-20-2008, V shaped object, very large, Puyallup in Western Washington.. +2009-02-20,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,120,Bright light accelerates over Brooklyn New York. +2009-02-20,29.8266667,-82.5969444,High Springs,FL,disk,120,The most weirdest thing I have ever saw with my own eyes in my life! +2009-02-20,37.3394444,-121.8938889,San Jose,CA,formation,15,Two points of light over San Jose, CA seen moving in formation before disappearing. +2009-02-20,40.8688889,-74.2086111,Little Falls,NJ,cylinder,345600,The object is above our house every night since last Friday. It will probably be there tomarrow night too. It is red white and blue t +2009-02-20,41.35,-72.0788889,Groton,CT,disk,240,Circle of lights which then spun around and dissapeared. +2009-02-20,38.9886111,-78.3588889,Strasburg,VA,oval,300,I swear we aren't on any drugs! Silent, low-flying object glided over the house tonight. Never seen anything like this before! +2009-02-20,33.8358333,-118.3397222,Torrance,CA,sphere,3600,Gray/Green UFO sighting withe multiple lights around it, in Torrance, CA. ((NUFORC Note: Star or planet, we suspect. PD)) +2009-02-20,64.8377778,-147.7163889,Fairbanks,AK,light,4,Bright green light +2009-02-20,42.6158333,-70.6625,Gloucester,MA,circle,240,This object stayed in one spot not moving around at all ' but had aluminating lights in it. +2009-02-20,30.2366667,-92.5058333,Egan,LA,diamond,30,Diamond Light Near Egan, LA. +2009-02-21,40.7355556,-74.1727778,Newark,NJ,other,600,NEWARK NJ Star like objects moving WEST ((NUFORC Note: Venus?? PD)) +2010-02-20,34.7697222,-84.9702778,Dalton,GA,fireball,300,Five firballs that dissapeared into the sky. +2010-02-20,35.3686111,-117.6572222,Randsburg,CA,teardrop,180,Unknown object flying at unusual pattern +2010-02-20,44.4469444,-95.7880556,Marshall,MN,light,10,Green, orb-like UFO spotted outside Marshall, MN. +2011-02-20,40.5852778,-105.0838889,Fort Collins,CO,light,3,White-translucent light radiating from sky in a spherical shape. Only a few seconds long. No major electrical outages in the area +2011-02-20,33.6602778,-117.9983333,Huntington Beach,CA,sphere,480,The weather was partially cloudy (few clouds)I was at the parking place located at the east of the Huntington Beach library. I started +2011-02-20,45.6388889,-122.6602778,Vancouver,WA,disk,1800,Bight lighted object hovering for several minutes +2011-02-20,45.6388889,-122.6602778,Vancouver,WA,sphere,600,Glowing fuzzy red ball sighted hovering over east Vancouver. +2011-02-20,33.8702778,-117.9244444,Fullerton,CA,fireball,20,((HOAX??)) It was flying low and looked as if it was leaking lava, but the lava never landed. +2011-02-20,42.4288889,-73.8097222,Hannacroix,NY,light,4,Southern Albany County light in sky waaay to fast for normal jet. +2011-02-20,25.7738889,-80.1938889,Miami,FL,sphere,240,2 Cirular objects with a reddish/ orange light move across the downtown Miami +2011-02-20,34.0922222,-117.4341667,Fontana,CA,circle,300,Round fire object dropping smaller fire objects and quickly disappearing. +2012-02-20,44.4375,-73.0686111,Williston,VT,light,5,Fast bright moving light came out of nowhere +2012-02-20,35.8238889,-80.2536111,Lexington,NC,circle,120,White flying object circling star, zipped off, chased by jets, then shot at jets. +2012-02-20,41.7,-70.3,West Barnstable,MA,diamond,172800,2 bright lights moving and a gold bright light also moving positions. Thety have been around 2 days. +2012-02-20,33.1094444,-91.2619444,Eudora,AR,light,180,Very, very bright motionless light in the daylight. +2012-02-20,46.2397222,-119.0994444,Pasco,WA,unknown,600,Large dark mass hovering near Pasco, WA airport. +2012-02-20,39.6536111,-105.1905556,Morrison,CO,changing,1500,While hiking in the foothills of Colorado, I saw three amber lights hovering in the sky over Denver +2012-02-20,43.0125,-83.6875,Flint,MI,unknown,150,Unidentified, Hovering, Glowing Object +2012-02-20,33.6888889,-78.8869444,Myrtle Beach,SC,changing,120,2 smaller ufo starlike, then huge one floating circling fast +2012-02-20,37.9722222,-81.1488889,Oak Hill,WV,unknown,360,They appeared to be flares and i would say they were about the size of a soda machine each +2013-02-20,32.2216667,-110.9258333,Tucson,AZ,circle,900,Orange object appeared to be circular in Tucson AZ. +2013-02-20,33.3061111,-111.8405556,Chandler,AZ,circle,10,Swift moving, round shaped, white light in southern Chandler, AZ sky around 3:15 AM.. +2013-02-20,34.5033333,-82.6502778,Anderson,SC,formation,60,There appeared three large red lights vertical to the ground..I kept waiting for them to move one way or the other which they didn't... +2013-02-20,47.0380556,-122.8994444,Olympia,WA,light,10,Light was moving erraticly in the evening sky. +2013-02-20,24.7133333,-81.0905556,Marathon,FL,fireball,300,Orange and red fire ball. +2013-02-20,38.0172222,-122.2875,Hercules,CA,sphere,30,Sphere heading from West to East first with a fire trail but later a reddish orange sphere +2013-02-20,27.3361111,-82.5308333,Sarasota,FL,light,240,Unexplained light in night sky changes color before disappearing. +2013-02-20,39.8438889,-84.1247222,Huber Heights,OH,unknown,300,There was an object floating in the sky in Dayton, Ohio. +2013-02-20,38.3030556,-77.4608333,Fredericksburg,VA,unknown,300,Line Moving in Front of Ring Around Moon. +2014-02-20,33.0580556,-112.0469444,Maricopa,AZ,light,2,Bright green/blue ball traveling either west or straight down. +2014-02-20,32.0833333,-81.1,Savannah,GA,oval,5,I enjoy stargazing and have never seen anything remotely like this before. +2014-02-20,39.7458333,-75.5469444,Wilmington,DE,chevron,15,Chevron shaped object with string of lights hovering for about ten seconds. Object then very slowly moved away and out of sight. +2014-02-20,37.7361111,-120.9344444,Riverbank,CA,light,45,Bright white lights that travel very smoothly across the skies and disappear slowly. ((NUFORC Note: Satellites?? PD)) +2014-02-20,28.5380556,-81.3794444,Orlando,FL,circle,300,I WATCHED THIS CIRCLE OBJECT MOVE FROM ONE SIDE OF THE SKY SLOWLY TO THE OTHER END. AND JUST STOPPED AND HOVERED THERE FOR 5 MINS BEFO +2014-02-20,38.6822222,-104.7002778,Fountain,CO,circle,30,Dark circular object surrounded by fiery, reddish color. +2014-02-20,39.9813889,-75.3569444,Broomall,PA,sphere,1200,A Dozen Orange Fireballs. +2014-02-20,27.6383333,-80.3975,Vero Beach,FL,fireball,240,A large orange object emitting a metallic, sparkling contrai, totally unique and different than any object previously experienced. +2014-02-20,35.6008333,-82.5541667,Asheville,NC,cross,300,Very low hovering T-shape light pattern could not see the body of the craft or hear a noise. +2014-02-20,32.9477778,-112.7161111,Gila Bend,AZ,circle,2700,5 orange lights in southern sky by Gila Bend Arizona. +2014-02-20,28.5380556,-81.3794444,Orlando,FL,circle,240,Big bright orange mothership and two smaller crafts. +2014-02-20,40.0272222,-122.1222222,Tehama,CA,chevron,10,Saw bright white stringy chevron shape heading southerly, slowly then it disappeared. +2014-02-20,28.2486111,-81.2813889,Saint Cloud,FL,sphere,180,I was smoking a cigarette in my car and when I finished I began to go inside. On my way to the door I noticed a very bright red light. +2014-02-20,36.0652778,-119.0158333,Porterville,CA,disk,900,Bright orange lights turn into slow moving saucer shaped object in the night sky. +2014-02-20,33.9908333,-118.4591667,Venice,CA,circle,240,Fiery orange-red orbs traveling at steady pace along a horizonal plane then fading away. +2014-02-20,36.175,-115.1363889,Las Vegas,NV,other,3600,Bright flashing prism light in the north west sky over las vegas +1963-02-21,39.0825,-74.8241667,Cape May Court House,NJ,unknown,240,This incident happened in the early 60's and I still remember it like it happened yesterday. It scared the crap out of me!!! +1977-02-21,39.1652778,-86.5263889,Bloomington,IN,oval,7,Three Faint Oval Shaped Objects Flying In Apparent Formation At Night +1998-02-21,27.1188889,-82.4444444,Nokomis,FL,sphere,5,A shiny object, fast moving, high in the sky, moving wnw direction... +1998-02-21,37.9252778,-76.8594444,Tappahannock,VA,circle,4,Flying SW to E in East Sky, about Mach 15-20, est. alt. 5000' Angle of sun revealed intobe lt.grey w/black bottom. Shapedlike pietin +1998-02-21,36.3283333,-77.5897222,Halifax,NC,circle,4,While driving I noticed a large, bright orange circle in the sky with what appeared to be a straight object sticking down from the lowe +1999-02-21,40.7141667,-74.0063889,New York City (Brooklyn) (Bensonhurst),NY,light,1800,A BRIGHT LIGHT IN THE SKY WITH A NARROW LINE GOING DOWN TO THE ROOF ETC. IT "READ" ME AND HID ITSELF +1999-02-21,39.7391667,-104.9841667,Denver,CO,light,900,Black object disappears followed by light object +1999-02-21,38.2883333,-78.9133333,Weyers Cave,VA,other,120,U-shaped object above trees with white lights,and blue revolving lights on bottom of it (Feb.1999,Va.) +1999-02-21,64.8377778,-147.7163889,Fairbanks (20m Miles South Of),AK,triangle,300,saw a dark triangle shapes craft with very large white lights on the rear corners and also on the front all light were on the bottom of +1999-02-22,42.1944444,-71.8361111,Auburn,MA,light,120,A Ball of light, thinking it was a plane,aircraft.no sound,no body,floating on air across the sky...VERY low to the ground,or very high +2000-02-21,38.1302778,-121.2713889,Lodi,CA,other,2,Floating rod with 4 to 6 sequentially flashing lights appeared over freeway near an airport. Object was clearly seen but appeared and d +2000-02-21,44.5647222,-123.2608333,Corvallis,OR,fireball,10,Neon green fireball trailing orange-red tail visible less than 10 seconds, moving NNW above Corvallis, OR. +2000-02-21,42.225,-121.7805556,Klamath Falls,OR,fireball,20,green fireball size of basketball, in southeast going northeast with short white tail and behind it was a bright red tail and vanished +2000-02-21,41.6302778,-87.8538889,Orland Park,IL,fireball,600,Unexplained bright white lights over Southwest Cook County IL +2000-02-21,34.2575,-88.7033333,Tupelo,MS,cylinder,30,cylinder object seen in front of moon. after 10 sec slowly decending +2000-02-21,37.3797222,-122.1363889,Los Altos Hills,CA,disk,2,Object resembled two inverted teacups.Backlit by emerging full moon. No sound. In and out of line of sight in less than 2 seconds. +2001-02-21,43.7977778,-123.0583333,Cottage Grove,OR,changing,18000,The object changed shapes and turned different colors. +2001-02-21,33.4222222,-111.8219444,Mesa,AZ,diamond,7200,Amber diamond shape in Mesa night sky. ((NUFORC Note: We suspect a sighting of a star or planet. PD)) +2001-02-21,41.5241667,-72.0763889,Norwich,CT,oval,4,lighted oval shaped object flew overhead,very fast,dead quiet leaving whiteish yellow trail. +2001-02-21,41.5355556,-73.8994444,Fishkill,NY,diamond,600,Black diamond-shaped object w/three bright white lights crossed I-84 and headed west paralleling highway towards Hudson River. +2001-02-21,42.4361111,-123.1708333,Rogue River,OR,disk,1200,I saw a disk or saucer and it was glowing.It made the sky brighter than what the sky usually is.It also looked like it had a beam comin +2001-02-21,42.4361111,-123.1708333,Rogue River,OR,disk,1200,It started about 8:30 pm or so went by sliding door and saw a bright light, I thought that that was strange too see a plane with it's l +2001-02-21,39.1155556,-77.5638889,Leesburg,VA,triangle,6,TRANSPARENT, TRIANGULAR SHAPED OBJECT +2002-02-21,40.4863889,-79.4516667,Saltsburg,PA,triangle,20,Immense triangular craft accompanied by vibrational rumbling upon departure. +2002-02-21,40.7608333,-111.8902778,Salt Lake City,UT,sphere,1260,Silvery Object Spotted over Salt Lake City during predicted UFO Fly-Over +2002-02-21,42.1291667,-80.0852778,Erie,PA,unknown,2,A dark ufo turned on a bright light before landing in a residential area. +2002-02-21,40.6813889,-73.4002778,Copiague,NY,circle,2,small blinking circle, move east at high speed, stoped then went west and disapeared +2003-02-21,41.9561111,-121.4763889,Tulelake,CA,circle,600,something that looked like a star but shined colors and grew and shrank then disappeared. +2003-02-21,45.0622222,-123.5708333,Valley Junction,OR,other,720,Missing time +2004-02-21,29.7630556,-95.3630556,Houston,TX,changing,600,I saw several high flying objects hovering in the clear blue sky and make a formation before disappearing. +2004-02-21,41.0905556,-73.9183333,Nyack,NY,triangle,180,When crossing the Tappen Zee bridge my wife snapped photos of the area because she though it would be a nice place to buy a house. I do +2005-02-21,36.4336111,-99.39,Woodward,OK,fireball,5,loud boom and big flash of light +2005-02-21,33.4483333,-112.0733333,Phoenix,AZ,light,2700,((HOAX??)) MULTIDIMENTIONAL BEINGS SEEN WITH "BLUE MIST" FROM SEE THROUGH SHIP. +2005-02-21,42.4733333,-83.2219444,Southfield,MI,triangle,420,My son and I spotted a huge ufo traveling at unbelievable speed suddenly stopped then turn and disappeared into the atmosphere. +2005-02-21,35.1083333,-77.0444444,New Bern,NC,light,5,I looked up while walking and saw what I assumed was a meteor but as I watched it made several changes in course, not radical, neverthe +2005-02-21,32.8341667,-97.2286111,North Richland Hills,TX,light,1800,Outside smoking as always and starring at the stars, and noticed on orangish colored one. After looking at it for a few seconds it Zig +2005-02-21,44.0522222,-123.0855556,Eugene,OR,triangle,10,White lights in a triangular formation over a ridgeline drifting slowly and fading out ten seconds after I spotted them +2006-02-21,40.1672222,-105.1013889,Longmont,CO,light,10,Do Shooting Stars TURN? Longmont, Colorado, 02/21/2006, +2006-02-21,41.55,-71.4666667,North Kingstown,RI,other,60,North Kingstown RI odd sighting +2007-02-21,33.2486111,-111.6336111,Queen Creek,AZ,oval,30,Daytime sighting in arizona. +2007-02-21,39.7286111,-121.8363889,Chico,CA,light,1200,Clear day in Febuaryƾ lights edge of the atmosphere drifting north to south , watched for several minutes. +2007-02-21,41.0813889,-81.5191667,Akron,OH,light,180,moving bright light suddenly changed color from bright yellow-white to orange, then red, then dark red and disappeared +2007-02-21,39.4666667,-87.4138889,Terre Haute,IN,light,2400,Decending bright white light in the sky lasting for 45 minutes visible from the midwest USA in the PM. ((NUFORC Note: Venus?? PD)) +2007-02-21,40.7433333,-88.8813889,Gridley,IL,triangle,180,Triangle Ship spotted in Gridley Illinois with red and white sparkling lights +2007-02-21,34.2569444,-85.1647222,Rome,GA,fireball,5,Blue-green ball of light emitting sparks streaking across sky in Rome, GA. ((NUFORC Note: Possible meteor? PD)) +2007-02-21,35.9152778,-82.0647222,Spruce Pine,NC,fireball,300,large neon green ball with greenand white tail shooting across sky. ((NUFORC Note: Possible meteor. PD)) +2007-02-21,40.0083333,-79.0783333,Somerset,PA,rectangle,180,Rectangular lighted object spotted hovering in Pennsylvania. +2008-02-21,46.0038889,-112.5338889,Butte,MT,light,600,Strange Light Over Timber Butte +2008-02-21,40.1633333,-76.3952778,Manheim,PA,light,420,light or round bright object seen in PA. +2008-02-21,37.0758333,-94.6394444,Galena,KS,light,18000,3-4 amber and 2 white lights flickered and danced in the SW sky. +2008-02-21,38.3030556,-77.4608333,Fredericksburg,VA,rectangle,600,Square object with 5 lights-silent, flies 50 feet above the ground. Sharp 90 degree turns. High speed. +2008-02-21,37.3394444,-121.8938889,San Jose,CA,teardrop,45,Teardrop shaped, gold metallic in color, clear sky, 13:38 afternoon, did not roll, tumble,or change direction +2008-02-21,42.8441667,-82.8844444,Armada,MI,cigar,5,I saw a silver red object that seemed to go about 2 milesin 3 seconds turn and gone. +2008-02-21,27.8002778,-97.3961111,Corpus Christi,TX,light,120,Lights in corpus christi. +2008-02-21,41.8238889,-71.4133333,Providence,RI,other,10,Object shaped like a backslash (\) zoomed across downtown Providence sky. +2008-02-21,44.4202778,-83.3308333,Oscoda,MI,cylinder,30,A string of 5-6 yellow lights, south of Oscoda Michigan, at first above the trees, then below then vanished +2008-02-21,40.5775,-85.8733333,Converse,IN,light,1800,2/21/08 Converse, In Lights 75 min 2 sets of 3 lights over country field viewed from car +2008-02-21,35.4675,-97.5161111,Oklahoma City,OK,circle,3600,stationary red light viewed over Oklahoma City, Oklahoma. ((NUFORC Note: Possible sighting of Sirius, possibly? PD)) +2008-02-21,47.5197222,-92.1383333,Hoyt Lakes,MN,sphere,3,A bluish/green sphere dropped out of the sky and was observed at two different locations 65 miles apart. +2008-02-21,32.7252778,-97.3205556,Fort Worth,TX,circle,60,We were standing at the back door smoking a cigarette when I looked up to the right in the sky there was a one spinning disk I only +2008-02-22,47.6063889,-122.3308333,Seattle,WA,disk,6,Disk shaped object seen by Seattle drivers over I5 +2009-02-21,45.5230556,-122.9886111,Hillsboro,OR,changing,14400,colorful pulsating ufo over Hillsboro Oregon [jellyfish like!] +2009-02-21,42.8741667,-77.2883333,Canandaigua,NY,unknown,600,2 Stationary flashing red lights west of Canandaigua, NY. 500 feet above the ridge west of Cheshire. +2009-02-21,44.2511111,-116.9683333,Weiser,ID,unknown,2700,BRIGHT WHITE OBJECT CHANGEING IN COLOR MOVEING OVER INDIAN HEAD MOUNTAIN +2009-02-21,32.4366667,-111.2247222,Marana,AZ,sphere,21600,Large, white lit obj. with 6 smaller red objs as well as 2 smaller white ones, stayed in same area 6 hrs at least. +2009-02-21,40.7719444,-73.9305556,Astoria,NY,light,2,Light beam in New York City sky. +2009-02-21,35.985,-96.7666667,Cushing,OK,other,7,what appears to be bright planet disappears in the Northern sky over N Central OK 02/21/09 +2009-02-21,33.8752778,-117.5655556,Corona,CA,circle,40,I was driving with my girlfriend heading north on Temescal canyon road/Ontario avenue. Directly in front of me at a very far distance, +2009-02-21,30.3713889,-94.3122222,Kountze,TX,light,18000,Super Bright Lights Over Field In Texas +2009-02-21,32.2216667,-110.9258333,Tucson,AZ,light,1200,One Hugh object with 3 color lights and Two others smaller objects with white lights +2009-02-21,39.3269444,-77.6644444,Knoxville,MD,circle,60,We saw a circular-shaped UFO flying over the river and mountain. ((NUFORC Note: Student report. PD)) +2009-02-21,32.7833333,-96.8,Dallas,TX,light,60,Large Bright Green and Purple OBJECT or LIGHT falling in DALLAS sky. +2010-02-21,39.1369444,-76.6986111,Severn,MD,disk,120,unknown object drifts over roof line then disappears +2010-02-21,40.5002778,-79.7497222,Plum,PA,light,10,small white light in Plum, PA +2010-02-21,38.2972222,-78.4402778,Stanardsville,VA,triangle,120,The whitest light poured into our home, followed by a large ship. +2010-02-21,31.0558333,-97.4641667,Belton,TX,light,300,Bright object crossing sky from east to west and plane diverts to persue it… +2011-02-21,44.8408333,-93.2980556,Bloomington,MN,unknown,10,My wife and I woke up to a loud noise flying directly over our house at 2:00 AM. It was a low humming sound accompanied by a repetitive +2011-02-21,41.5052778,-82.0283333,Avon Lake,OH,unknown,60,I woke up to a low humming sound...sounded like it was throughout the whole house. I looked out our family room picture windows and saw +2011-02-21,37.5536111,-77.4605556,Richmond,VA,oval,90,At approx. 6:30am, I saw a white oval shape climb the sky going straight up, I did not see a trail of smoke like a regular USA aircraft +2011-02-21,25.7738889,-80.1938889,Miami,FL,unknown,1200,Black object seen floating in th air in Miami +2011-02-21,41.2586111,-95.9375,Omaha,NE,disk,120,Bowl or saucer shaped craft in a playground +2011-02-21,39.0086111,-94.4633333,Raytown,MO,light,45,Circular shaped craft appeared to be following conventional aircraft. +2011-02-21,42.8613889,-105.8716667,Glenrock,WY,light,240,Very bright object the size of a close encounter with Mars moved rapidly across the sky. +2011-02-21,40.4252778,-75.1397222,Pipersville,PA,light,1500,Lights in the sky - one white circle in the middle with 4 or 5 smaller circles around that were moving in and out towards middle circle +2011-02-21,39.1458333,-121.5902778,Marysville,CA,circle,120,Bright , white, round light flying from west to northeast in a crooked manner before it suddenly faded out and disappeared. +2011-02-21,45.5230556,-122.9886111,Hillsboro,OR,light,180,Live near local airport, saw bright light traveling vary high and fast. I watched light approach from south to north then it turned to +2012-02-21,35.1741667,-84.6536111,Benton,TN,disk,20,Driving down the road we saw a blue light and a object fly over the car. +2012-02-21,41.4233333,-71.7861111,Ashaway,RI,unknown,60,Four or five chevron type craft flying at night. +2012-02-21,47.7625,-122.2041667,Bothell,WA,circle,300,Bright orange lit object with a red halo slowly flew over Bothell, WA. +2012-02-21,39.0833333,-78.2183333,Stephens City,VA,light,2400,Star-like light disappears and reappears multiple times in stationary position +2012-02-21,42.1997222,-87.8091667,Highwood,IL,disk,10,Flying Disk North of Chicago +2012-02-21,45.085,-69.0411111,Charleston,ME,triangle,180,Triangle shaped 3 white lights silent hovering. +2012-02-21,32.2986111,-90.1847222,Jackson,MS,other,180,Square object in the daytime sky hovering +2013-02-21,44.9866667,-93.5713889,Long Lake,MN,chevron,180,Stationary Chevron Shaped White Lights. +2013-02-21,42.45,-73.2458333,Pittsfield,MA,circle,600,seven bright oragnge lights that suddenly dissapar. +2013-02-21,39.6261111,-84.3694444,Germantown,OH,diamond,4,3rd time have appeared In this. Area. Diamond shaped hovered low to the ground for about 4 secs. Had lots of lights. Just disapeared. +2014-02-21,61.2180556,-149.9002778,Anchorage,AK,oval,4,Luminescent oval shaped craft flies over Kincaid Park. +2014-02-21,37.7986111,-78.4958333,Scottsville,VA,diamond,7200,It's still going on S in the sky stationary flashing blue yellow the red at times staying solid red or blue seems to get bigger. +2014-02-21,29.2105556,-81.0230556,Daytona Beach,FL,fireball,240,Fireball Object is recorded on the Daytona Beach Live Cam. It went into the ocean. +2014-02-21,33.5441667,-84.2338889,Stockbridge,GA,circle,1200,Star-like object hovering in place for 20 minutes in daytime sky; seen by one witness in Stockbridge, GA. +2014-02-21,38.8902778,-77.0844444,Arlington,VA,cigar,1,http://youtu.be/3mgEZ4nD_Ww. +2014-02-21,35.2922222,-81.5358333,Shelby,NC,other,1200,Strange cloud trail in the sky. +2014-02-21,40.2413889,-75.2841667,Lansdale,PA,light,5,Two bright lights connected low in altitude with rapid varied movements. +2014-02-21,36.7477778,-119.7713889,Fresno,CA,sphere,600,Husband and I saw up to 8 spherical orange-ish high floating/flying objects go over our house at 6:30 PM (darkened sky). +2014-02-21,44.0583333,-121.3141667,Bend,OR,triangle,900,Triangular shaped object with moving lights moving in side to side motion before disappearing. +2014-02-21,33.6619444,-112.3405556,Sun City West,AZ,fireball,900,Orange fireball moving across sky before blowing up and falling to earth. +2014-02-21,34.1480556,-117.9980556,Monrovia,CA,unknown,600,They looked like stars that were in a straight line and the moved from the west to this east. They followed each other in a line. +2014-02-21,28.5997222,-81.3394444,Winter Park (Orlando),FL,sphere,2400,Winter Park, Fl, 11 Red orbs seen in southern sky starting around 7:30pm for 40 mins. +2014-02-21,39.6836111,-75.75,Newark (I-95; Near Pa Border),DE,circle,15,Slow moving orange and red circle, like a large upside down gas stove range. +2014-02-21,28.5997222,-81.3394444,Winter Park,FL,light,2400,Irregularly pulsing red lights shooting across the sky, coming to a complete stop, then ascending upwards into the atmosphere. +2014-02-21,39.4402778,-84.3622222,Monroe,OH,light,900,Multiple lights seen Over Monroe, Ohio. +2014-02-21,39.8466667,-75.7119444,Kennett Square,PA,diamond,120,Low flying, no sound, no blinking diamond shaped lights/craft in Kennett Square, PA, flying southeast. +2014-02-21,39.3722222,-104.8555556,Castle Rock,CO,light,20,Star-like flaming sphere appeared brightly then, shortly later dispersed. +2014-02-21,28.5380556,-81.3794444,Orlando,FL,oval,20,Load booms like thunder but sound like they are coming from underground. +2014-02-21,40.1447222,-84.2425,Piqua,OH,light,60,Two lights were moving at high speeds in unusual formations. +2014-02-21,34.1705556,-118.8366667,Thousand Oaks,CA,formation,120,UFO sighting over Thousand Oaks, California. +2014-02-21,41.8097222,-72.8311111,Avon,CT,sphere,240,2 orange spheres on two consecutive nights. +2014-02-21,35.7719444,-78.6388889,Raleigh,NC,triangle,600,3 crafts flying in a very symmetrical triangle formation. They continued to fly across the sky in that way, always in a triangle. +2014-02-21,29.9544444,-90.075,New Orleans,LA,triangle,5,Very clear night. On back porch looking at stars which is rare for New Orleans. +2014-02-21,42.6191667,-78.6580556,Glenwood,NY,formation,60,We saw like 6 green orbs weightlessly float to the ground and vanish. +2014-02-21,61.5997222,-149.1127778,Palmer,AK,light,300,Orange/Amber lights over the Hatcher Pass area. +2014-02-21,37.8044444,-122.2697222,Oakland,CA,unknown,120,Orange lights ORB silent and odd movement with VIDEO. +1961-02-02,34.698055600000004,-118.1358333,Lancaster,CA,disk,180,Brilliant,silver disk. 50 to 55 degree angle of sight. Appears to be stationary in sky.Smaller object 1/8 the size of larger,same color +1967-02-02,42.1888889,-120.3447222,Lakeview,OR,other,2100,WE SAW A QUARTER MOON SHAPED, CREAM COLORED GLOW WITH WHITE PORTHOLE LIGHTS ON BOTH SIDES +1973-02-02,37.2708333,-79.9416667,Roanoke,VA,sphere,90,Silver silent sphere seen in Roanoke, VA in 1973 +1975-02-02,46.2397222,-119.0994444,Pasco,WA,sphere,30,I listened to Mr Davenport and Art Bell this past saturday, a witness for Mr Davenport related an experience while attending the hydro +1980-02-02,38.69,-75.3858333,Georgetown,DE,triangle,1200,UFO at Vo-Tech Center comes calling again +1990-02-02,35.8455556,-86.3902778,Murfreesboro,TN,oval,120,Round silver object hovering over I-24 and then vanishes. +1992-02-02,20.8569444,-156.3130556,Makawao,HI,other,120,Visitation of beings into my home where I actually 'heard' a voice from the being. +1995-02-02,44.3477778,-87.8272222,Denmark,WI,cone,4500,Many witness strange craft streaking in night sky. Descended vertically very fast, hovered. Reptd. U.S. jets in pursuit. Bizarre. +1997-02-02,40.0555556,-83.9188889,Thackery,OH,unknown,5,Objects that move much more quickly than airplanes. They moved strait up and down even below tree tops. They would stay still for man +1999-02-02,32.7355556,-97.1077778,Arlington,TX,fireball,2,WITNESSED A SECOND 'FIREBALL' IN THE NIGHT SKY, SAME TIME AND PLACE AS EXACTLY TWO WEEKS AGO FROM THIS DATE... +1999-02-02,39.0597222,-94.8833333,Bonner Springs (Xxxx Kreider Rd),KS,fireball,4,About 4:20 a.m. Tuesday morning in the Southeast sky a bright green light caught my attention from my livingroom window. I saw one lum +1999-02-02,37.3861111,-122.0827778,Mountain View,CA,light,5,Bringing to attention - AP Story: A small meteor streaked across the Western sky this morning, prompting people from San Francisco to L +1999-02-02,34.4263889,-117.3,Hesperia,CA,other,900,High Altitude partially luminescent rocket contrail. In the direction towards Lucerne Valley. +1999-02-02,34.1161111,-118.1494444,South Pasadena,CA,light,5,Saw a very bright light which came towards me - grew brighter with a reddish aura. Stopped, and then moved away from me VERY fast and +1999-02-02,34.1063889,-117.5922222,Rancho Cucamonga,CA,fireball,10,Bright fireball that seemed to stay stationary in the Northwestern part of the sky above the San Gabriel mountains Mt. Baldy area for a +1999-02-02,35.7525,-120.6952778,San Miguel,CA,fireball,30,Object was flying low on horizon in SSE direction. Object was just above the ground fog. Bright light, followed by blue/red lights. +1999-02-02,40.5866667,-122.3905556,Redding,CA,other,1,I saw a very bright green ball fall from the sky , then disappear over the horizen. +1999-02-02,37.1041667,-113.5833333,St. George,UT,light,1,I was driving west when I observed a bright green light travelling at an incredible speed. It was heading down,right to left at a 45 d +1999-02-02,40.7141667,-74.0063889,New York City (Bronx),NY,other,120,During a thunderstorm I was watching out of my kitchen window which faces East, I noticed what I thought was a plane emerge from a clou +1999-02-02,31.5544444,-110.3030556,Sierra Vista,AZ,unknown,600,Saw what I thought were 2 military planes flying in formation--both had anber/yellow light. Ones light was solid and others was flashin +1999-02-02,32.64,-117.0833333,Chula Vista,CA,light,180,Looking toward the southern(145'SSE, three of my finger widths under the star Rho Pup) night sky, I saw what I thought at first was an +1999-02-02,35.2269444,-80.8433333,Charlotte,NC,fireball,14,I'm an Engieer and former Air Traffic controller. I spotted a Green Fireball. I waited to hear someone else report this but none els ha +2000-02-02,39.7391667,-104.9841667,Denver,CO,other,60,White object looked like upside down Y left strange trail no sound and seemed to come out of the mountains west of Denver +2000-02-02,40.8305556,-73.6391667,Glenwood Landing,NY,changing,1200,I HAD SEEN AN AIRCRAFT ON THE HORIZON FIFST AS A CIGAR THEN A BALL +2000-02-02,46.7380556,-119.9016667,Mattawa,WA,other,300,Orange Jet?, but thicker, not streamlined. Really orange. Odd contrail, like three going out like a fan. Going West to East, with low +2000-02-02,47.6063889,-122.3308333,Seattle,WA,other,120,Watched two flying objects headed NW, very low, very slow, at junction of Duamish River and West Seattle Bridge. +2000-02-02,47.6063889,-122.3308333,Seattle,WA,other,180,Two Jumbo Jets flying low and slow. +2000-02-02,47.3811111,-122.2336111,Kent,WA,cigar,20,I saw two craft in the sky headed northwest, on a precise landing path for Boeing Field in Seattle. They reappeared ten minutes later +2000-02-02,47.6063889,-122.3308333,Seattle (Ballard),WA,chevron,120,From south facing window, witnessed two aircrafts heading north, low and close together. Each had two very bright headlights and they +2000-02-02,34.5811111,-113.2038889,Bagdad,AZ,other,420,Out stargazing, I noticed an unusually bright yellow light just above the eastern horizon It proceeded to climb accross the sky. As it +2001-02-02,38.8338889,-104.8208333,Colorado Springs,CO,sphere,1800,Dark Spherical UFO sighted in the early evening in the colorado springs CO area. +2001-02-02,36.7983333,-81.6825,Chilhowie,VA,unknown,120,Object NOT Sirius +2001-02-02,36.595,-82.1888889,Bristol,TN,light,600,bright multi colored object moving north over east tenn and southwest Va +2001-02-02,35.1477778,-114.5675,Bullhead City,AZ,light,1500,I was out front of my house with my dogs and as always looking at the stars and I observed a red light in the sky flashing and moving v +2002-02-02,39.3355556,-87.8819444,Martinsville,IL,triangle,1800,very low silent and moved very slowly and stoped sometimes to hover +2002-02-02,39.8744444,-76.8661111,Spring Grove,PA,flash,2,Flash across the midnight sky. +2002-02-02,44.0927778,-73.5186111,Mineville,NY,triangle,120,Two silent, rounded triangle shapes with a slight aura appeared in uppstate New York on a very strange date... +2002-02-02,28.5491667,-81.7730556,Clermont,FL,light,60,A blinding light caused an electrical disturbance while passing near my car. +2002-02-02,47.6063889,-122.3308333,Seattle,WA,sphere,15,Three dimly self-illuminated orange orbs travelling due West over Seattle +2002-02-02,39.0997222,-94.5783333,Kansas City,MO,light,60,Two extremely bright, large, white lights, one slightly ahead of the other, slowly traveled from the south to the north directly over +2002-02-02,44.8113889,-91.4983333,Eau Claire,WI,circle,180,circlure object with very bright lights. +2002-02-02,44.6286111,-73.5583333,Schuyler Falls,NY,egg,300,egg shaped object +2002-02-02,38.6411111,-83.7444444,Maysville,KY,chevron,7200,UFO'S SEEN PATROLLING OHIO RIVER BETWEEN POWER PLANTS +2002-02-02,36.1005556,-87.0511111,Pegram,TN,light,7200,Pulsating or rotating stationary lights high in the night sky +2002-02-02,47.6588889,-117.425,Spokane,WA,light,1500,Two bright lights - one danced wildly while the other stood still. +2002-02-02,27.9011111,-81.5861111,Lake Wales,FL,egg,900,There were 2 sets of 4 all in a straight line. Slowly one by one the bright light started to disappear (as if the light was being turn +2002-02-02,26.8327778,-81.0933333,Moore Haven,FL,light,1200,Several bright glowing objects seen by four witnesses in night sky dimming and reappearing and moving at tremendious speed. +2002-02-02,26.8327778,-81.0933333,Moore Haven,FL,fireball,2700,Looking for other witnesses!!!!! +2002-02-02,28.2486111,-81.2813889,St. Cloud,FL,formation,900,11 lights in the sky that were stationary +2002-02-02,27.7,-80.9044444,Yeehaw Junction,FL,formation,2700,LOOKING FOR OTHER WITNESSES +2002-02-02,40.1105556,-88.2072222,Urbana,IL,light,1500,7 to 9 large, bright amber lights moving from southwest to northeast over Illinois +2002-02-02,40.1105556,-88.2072222,Urbana,IL,light,420,Orange lights observed over Urbana Illinois +2002-02-02,40.1105556,-88.2072222,Urbana,IL,circle,420,approximately 11 bright orange objects sighted travelling SW to NE at 23:40 on 02/02/02 in Urbana, IL. +2002-02-02,40.1163889,-88.2433333,Champaign,IL,light,180,Four orange/amber lights seen over Champaign, IL. +2003-02-02,25.7738889,-80.1938889,Miami,FL,disk,1200,A big UFO, disk shape, light blue color, but intense, was seen tonight at 19:00 pm in Miami +2003-02-02,32.6097222,-85.4808333,Auburn,AL,egg,5,large elongated oval of light which appeared moon-like. It did not light sky adjacent to it. Roughly the size of 3 moons side-by-side +2003-02-02,28.5380556,-81.3794444,Orlando (1hr South),FL,oval,180,Low flying object hovering w/ blue underbelly and eight bright lights oval in shape central Florida +2004-02-02,32.3863889,-96.8480556,Waxahachie,TX,sphere,10,Bright, red colored Spere, sounded like a train, seen twice +2004-02-02,45.4563889,-123.8427778,Tillamook,OR,cylinder,600,Brightly lit cylindrical object rises slowly above Tillamook Bay, Oregon +2004-02-02,35.5755556,-81.2119444,Maiden,NC,light,14400,Unknown Lights ((NUFORC Note: Possibly the star, "Sirius." PD)) +2005-02-02,34.09,-117.8894444,West Covina,CA,other,600,early morning sighting of bright, oblong object with more rounded dome shape at top center. +2005-02-02,37.8716667,-122.2716667,Berkeley,CA,oval,20,The object hovered over a park then flew off extremely fast +2005-02-02,42.5277778,-92.4452778,Cedar Falls,IA,fireball,603,FIREBALL TYPE CRAFT SAW FOR 10 MIN 3 SEC +2005-02-02,40.7141667,-74.0063889,New York City (Brooklyn),NY,fireball,600,I'm a high school student around 16. I would like to say that I was witness to another sighting, that appeared on ABC News, the one tha +2005-02-02,40.8255556,-73.2030556,Hauppauge,NY,unknown,240,Five contrails noticed in the sky moving counterclockwise and disappearing/reappearing. +2005-02-02,41.5047222,-73.97,Beacon,NY,light,3700,As I steped outside to the front of my house I saw what I thought was the radio tower of the mountain(Beacon MT.) it started to move sl +2005-02-02,36.1538889,-95.9925,Tulsa,OK,light,300,Bright Bluegreen LIght +2005-02-02,30.0033333,-91.8186111,New Iberia,LA,circle,180,we saw a big, round ,colorful ufo just stopped in one spot a few feet in the air, and it took off, and it was no where's in sight. +2005-02-02,47.1855556,-122.2916667,Puyallup,WA,other,120,A RED STAR LIKE OBJECT FROM WHICH 2-3 FIREWORK LIKE STEAMERS FELL. +2006-02-02,37.9886111,-84.4777778,Lexington,KY,oval,5,flew really fast shape of an oval tight formation of flight large +2006-02-02,40.2858333,-76.6505556,Hershey,PA,cigar,1800,4 orange lights in Northern Sky over Hershey Pa +2006-02-02,34.1705556,-118.8366667,Thousand Oaks,CA,circle,1800,Distant very bright object holds position over 20 minutes then moves rapidly, slows to near stop then explodes and falls toward earth. +2006-02-02,33.9202778,-80.3416667,Sumter,SC,triangle,30,triangle shaped object-3 bright lights-blinked in a pattern-made no sound +2007-02-02,26.525,-80.0666667,Boynton Beach,FL,light,5,While looking at the stars I saw strange light activity +2007-02-02,42.9675,-87.8775,St. Francis,WI,changing,120,http://youtube.com/watch?v=vHE2_svuSjY +2007-02-02,43.1002778,-72.7788889,Jamaica,VT,fireball,30,Orange Orb Jamaica,Vermont. +2007-02-02,42.0333333,-88.0833333,Schaumburg,IL,oval,1200,Two oval shapes seen in Chicago western suburbs, moving south. Friday, Feb.2 +2007-02-02,36.9741667,-122.0297222,Santa Cruz,CA,disk,8,Video has text describing event. +2007-02-02,42.0663889,-87.9372222,Mt. Prospect,IL,light,5,Bright green light over mt prospect, il +2008-02-02,39.8113889,-74.9833333,Clementon,NJ,other,180,silver bell shaped object drifting low over Clementon NJ at 10am. +2008-02-02,29.7630556,-95.3630556,Houston,TX,sphere,900,I saw a spherical object hovering in the daytime sky that was pinkish in color. +2008-02-02,40.8041667,-73.1694444,Islandia,NY,circle,30,Moon like object passing sun and remaining to the right. +2008-02-02,33.4222222,-111.8219444,Mesa,AZ,oval,60,Very large oval shaped object about the size of the City of Phoenix flying through the clouds. +2008-02-02,39.3941667,-76.5238889,Carney,MD,light,120,Two bright lights suddenly dim and disappear +2008-02-02,36.2788889,-92.5969444,Flippin,AR,unknown,25,Traveling on Rt. 62/412, from the east into Flippin (Arkansas), we saw what we believed to be an aircraft flying low, it had two green +2008-02-02,36.9786111,-76.4283333,Newport News,VA,sphere,90,Bright orange spherical object moving very quickly from SW to NE in steady, soundless flight. +2009-02-02,39.7938889,-75.1725,Mantua,NJ,unknown,60,Strange red/white/red blinking light in Southern New Jersey. ((NUFORC Note: Possibly a sighting of Sirius in the southern sky? PD)) +2009-02-02,43.073055600000004,-89.4011111,Madison,WI,light,3600,Unexplainable movements attached to light unidentifed object in night sky. +2009-02-02,35.7563889,-83.9705556,Maryville,TN,light,60,A bright light moving away and disappeared +2009-02-02,41.0041667,-92.3736111,Ottumwa,IA,sphere,1200,Bright white sphere pulsing to a amber color +2009-02-02,33.9163889,-118.3516667,Hawthorne,CA,circle,240,one red orange jagged circle high up blue sky white spark coming off of it,staying in one spot. +2009-02-02,33.7488889,-84.3880556,Atlanta,GA,rectangle,240,Rectangular Gray Object Seen over Atlanta GA +2009-02-02,37.0833333,-88.6,Paducah,KY,light,60,Small light, first mistaken for a bright star, begins moving slowly downward in a zigzagging pattern, before slowly dimming out. +2009-02-02,34.1394444,-117.9763889,Duarte,CA,light,60,Two satellite-like objects both traveling towards mountains and then disappearing +2009-02-02,44.0522222,-123.0855556,Eugene,OR,other,30,object that looked like a shooting star made a hard right +2009-02-02,37.6625,-121.8736111,Pleasanton,CA,light,10,zigzag flight on high altitude +2009-02-02,31.7091667,-98.9908333,Brownwood,TX,light,120,Amber light splits into four lights in a straight line, then disappears +2009-02-02,46.9811111,-123.8880556,Hoquiam,WA,triangle,1200,At one point I could see underneath the object clearly and it appeared to be very large, gray or silver with a completely flat bottom a +2009-02-02,33.1580556,-117.3497222,Carlsbad,CA,light,480,Bright light(s) witnessed in Carlsbad on 2/2/09 +2009-02-02,33.3244444,-96.7841667,Celina,TX,circle,480,Large bright light in Western night sky. ((NUFORC Note: Probably a sighting of Venus?? PD)) +2009-02-02,36.5433333,-119.3861111,Dinuba,CA,triangle,180,four red light in shape of a triangle gliding over the city of Dinuba CA. +2009-02-02,42.0333333,-88.0833333,Schaumburg,IL,light,10,White light with greenish aura falling from sky over Schaumburg toward the East. ((NUFORC Note: Possible meteor?? PD)) +2009-02-02,39.9936111,-105.0891667,Lafayette,CO,other,2,Crescent shaped object travels through night sky near Boulder. +2009-02-02,39.8016667,-89.6436111,Springfield,IL,egg,120,a small egg shaped craft fully visible in the night sky. My friend aslo witnessed this event. +2009-02-02,40.0305556,-124.0719444,Shelter Cove,CA,unknown,1200,2 orange lites slowly coming off the pacific ocean, upon reaching land, seem to vanish in a haze +2010-02-02,26.1719444,-80.1322222,Oakland Park,FL,formation,60,4 lights scramble together and shoot out in various directions-Fort Lauderdale +2010-02-02,39.8202778,-120.3777778,Beckwourth,CA,unknown,900,Two large blinking orange lights 20 feet high and 50 feet apart moving slowly away as we approached. +2010-02-02,42.7758333,-114.7033333,Wendell,ID,light,1200,Amber lights appearing in the skies over Wendell, ID 8:00PM 02/02/2010 +2010-02-02,30.0994444,-91.99,Youngsville,LA,fireball,240,On February 2, 2010, at approximately 8:05pm, I was driving south on Louisiana State Highway 89 at Glaser Drive, just south of LA Hwy 1 +2010-02-02,38.9666667,-94.6166667,Leawood,KS,circle,1200,I could see that it had lights all around it and it was very large and disc shaped +2011-02-02,40.5866667,-122.3905556,Redding,CA,changing,10800,Multiple red, white, and blue strobing lights in sky +2011-02-02,42.6827778,-89.0186111,Janesville,WI,flash,900,On our deck on the outskirts of Janesville, we observed one flashing object. ((NUFORC Note: Sirius?? PD)) +2011-02-02,38.4808333,-76.7783333,Charlotte Hall,MD,light,1200,Two sighting, including a single floating orb, and the other including three orbs in a triangular formation. +2011-02-02,47.6211111,-122.2263889,Medina,WA,light,900,Light seen over Seattle/Mercer Island changes direction +2011-02-02,47.6063889,-122.3308333,Seattle,WA,light,180,Vibrant Orange Lights jump in and out of the atmosphere over Seattle +2011-02-02,47.6063889,-122.3308333,Seattle,WA,fireball,120,Three orange lights over northeast Seattle +2011-02-02,26.7052778,-80.0366667,West Palm Beach,FL,light,15,At what seemed to be a very high altitude, an object, moving at a high speed, traveling from south to north, was seen, then disappeared +2012-02-02,40.2969444,-111.6938889,Orem,UT,light,60,Glowing green craft with flashing lights instantly disappeared +2012-02-02,42.7869444,-73.9713889,Rotterdam,NY,triangle,45,Bright white lights in a bowed triangular shape moving from ESE to WNW towards Schenectady NY +2012-02-02,37.7527778,-100.0166667,Dodge City,KS,other,180,1/02/2012 Dodge City heading west kind of along Hwy. 50 two shiny black, appears smooth, has no vapor shaped like the “bat sign” +2012-02-02,48.1183333,-123.4294444,Port Angeles,WA,disk,300,Yellow saucer seen over the water near Port Angeles w a with two photos. ((NUFORC Note: We believe a cloud formation. PD)) +2012-02-02,32.7252778,-97.3205556,Ft. Worth,TX,triangle,10,Dark triangle with three Blue lights!!! +2012-02-02,47.1041667,-122.4333333,Spanaway,WA,changing,10800,Spanaway UFO. ((NUFORC Note: Possible sighting of a "twinkling" star? PD)) +2012-02-02,43.8469444,-76.1822222,Henderson,NY,unknown,900,Large bright orange colored light with 2-3 smaller lights surrounding it. ((NUFORC Note: Sighting of Venus. Timing is correct. PD)) +2012-02-02,42.7511111,-122.4877778,Prospect,OR,changing,1200,Red, white, green bright flashing lights above timber line at Prospect, Oregon +2012-02-02,47.8897222,-117.3566667,Chattaroy,WA,circle,2520,Circular flashing light that danced +2013-02-02,39.7172222,-74.9697222,Sicklerville,NJ,light,300,Large orange lights in formation over south jersey. +2013-02-02,36.175,-115.1363889,Las Vegas,NV,unknown,30,Red linear pulsating lights along with searchlight like beam. +2013-02-02,38.7072222,-121.28,Citrus Heights,CA,sphere,600,6 shiny metallic sphears in formation, that was maintained through turns,crossing the sky fo10 to 15 minutes. +2013-02-02,42.1969444,-88.0933333,Lake Zurich,IL,light,1200,Brilliant lights/orbs glowing red/orange move across the sky. +2013-02-02,39.2805556,-80.3447222,Clarksburg,WV,circle,120,Round, pulsating orange object in the sky -- no noise +2013-02-02,45.5230556,-122.9886111,Hillsboro,OR,circle,300,Five round orange lights over Hillsboro, Oregon +2013-02-02,32.7833333,-96.8,Dallas,TX,light,25,Orange-Red Flying Object Vanishes In Mid-Air Over White Rock Lake Park, Dallas, Texas +2013-02-02,45.7055556,-121.5202778,Hood River,OR,triangle,6,((HOAX??)) Group of young people claim to have witnessed a large triangle, with lights on its edges, streak overhead. +2013-02-02,33.0461111,-96.9938889,Lewisville,TX,formation,300,Three flare red lights over the Lewisville, TX night sky. +2014-02-02,35.0455556,-85.3097222,Chattanooga,TN,oval,180,Bright orange light moving slowly across the sky. +2014-02-02,26.6583333,-80.2416667,Wellington,FL,fireball,45,Me and my friends saw a giant orange fireball going really fast across the sky. +2014-02-02,25.7738889,-80.1938889,Miami,FL,circle,180,3 red/Orange lights moving Very slowly, with same distance on of the other them desapearedpd one by One. +2014-02-02,36.4991667,-80.6075,Mount Airy,NC,changing,360,Really bright object shooting beams. +2014-02-02,45.5236111,-122.675,Portland,OR,other,900,Red/Orange Blinking orb over the North/Northwestern sky in Portland Oregon +2014-02-02,33.6602778,-117.9983333,Huntington Beach,CA,light,600,UFO sighting with family and people that lived close, SIx red/orange hovering balls of light +2014-02-02,45.5236111,-122.675,Portland,OR,unknown,900,Bright red orb over N. Portland. +2014-02-02,47.3075,-122.2272222,Auburn,WA,light,780,Steady, amber/orange, single light seen moving across the horizon. +2014-02-02,34.1283333,-117.2077778,Highland,CA,light,300,SEVERAL ORANGE GLOWING LIGHTS-LIGHTS WOULD GET DIMMER AT TIMES-SOULNDLESS-OVER OLD AFB. +2014-02-02,46.9755556,-123.8144444,Aberdeen,WA,cross,300,Four red crosses/X's flying east to west @ unknown altitude and speed. +2014-02-02,32.8491667,-109.7586111,Thatcher,AZ,circle,90,Orange glowing light, appeared to be circular, coming from NW to SE direction disappeared in clouds. It did not make a sound. +2014-02-02,42.2708333,-83.7263889,Ann Arbor,MI,triangle,30,Three bright white lights across the front of one single vehicle. +2014-02-02,45.7833333,-108.5,Billings,MT,light,60,Bright red light traveling skyward at great speed. Many tight movements upwards, unlike what man-made craft could possibly do. Light +2014-02-02,38.2494444,-122.0388889,Fairfield,CA,other,120,3 rounds lights in a triangular shape color like a flaming yellow, no sound. +2014-02-02,33.5016667,-81.9652778,North Augusta,SC,sphere,240,Three large round orange lights slowly drifting across the sky. +2014-02-02,37.3661111,-81.1027778,Princeton,WV,light,60,Cobalt bue lightning like flashes near I-77 exit 9 at Princeton, WV. +1961-02-22,35.3455556,-101.38,Panhandle,TX,diamond,7200,Texas Panhandle Nuke site +1970-02-22,25.5802778,-80.3469444,Cutler Ridge,FL,light,10,bright light seen hovering over Biscayne Bay on cool clear night +1986-02-22,36.8352778,-76.2986111,Portsmouth,VA,other,60,squarelike object with a light +1997-02-22,39.4111111,-94.9013889,Weston,MO,other,10,Weston, Missouri: observation of WEDGE shaped craft travelling at low altitude at high rate of speed N to S paralleling I-29 toward Kan +1999-02-22,40.7141667,-74.0063889,New York City,NY,light,2700,2 lights stationary in the sky with unusual air traffic in area +1999-02-22,38.8663889,-83.1875,Otway,OH,other,1200,My girlfriend and I were just leaving to go out of town, when I noticed two large glowing orbs above my small lake. They seemed to ju +1999-02-22,39.7388889,-79.8988889,Point Marion (Near, 60 Miles South Of Pittsburgh),PA,light,900,Two lights similar to planets but with unusual coloration and slow but discernable motion. Each eventually faded from sight. +2000-02-22,34.61,-112.315,Prescott Valley,AZ,cylinder,600,Flying "Coke can figures" that were rotating at the top with the shape of X lights at the bottoms. +2000-02-22,34.61,-112.315,Prescott Valley,AZ,cylinder,600,I witnessed two cylinder shaped objects slowly floating along and rotating at the top of their bases, with orange lights in the shape o +2000-02-22,34.61,-112.315,Prescott Valley,AZ,cylinder,600,When leaving for work, I saw two orange, glowing objects in the sky. They were in the shape of a cylinder with lights in the bottom tha +2000-02-22,41.2230556,-111.9730556,Ogden,UT,light,40,We saw a bright, blue laser in the south east sky just to the left of orion for about 40 seconds before it was gone. 35 miles south is +2001-02-22,40.1966667,-76.0177778,Bowmansville,PA,unknown,120,An obect initialy with a tail and then with 3 circular lights cleared the entire sky line in about 1 minute. +2001-02-22,32.5230556,-92.6377778,Ruston,LA,light,10800,Red And Blue Lights were on it, slow moving with a white light between the red and bue lights. +2001-02-22,32.7480556,-98.0088889,Millsap,TX,cigar,120,We saw one craft. It travelled left to right with very bright lights that were luminous of yellowish green. The lights disappeared, all +2001-02-22,42.0658333,-94.8666667,Carroll,IA,light,30,unbelievable, five large orange/yellow bright spheres appearing one after another moving quickly across the sky and disappearing. +2001-02-22,42.3222222,-83.1763889,Dearborn,MI,formation,8,I never would have believed but I saw something that was definetly not normal +2001-02-22,42.4361111,-123.1708333,Rogue River,OR,diamond,600,Bright diamond shape light at first it didn't move. Then it started getting lighter and brighter and smaller and bigger. Then it star +2001-02-22,42.4361111,-123.1708333,Rogue River,OR,diamond,600,Bright diamond shape light nortwest sky right sbove a ridge line in the bac of our house, we wacthed the light pull apart from the side +2001-02-22,42.4361111,-123.1708333,Rogue River,OR,diamond,600,The shape of the craft was a diamond.The craft had circular lghts that were bright.It had a glare coming from the craft that was grayis +2001-02-22,41.6638889,-83.5552778,Toledo,OH,other,5.5,Midnight car drive, unexpected visit by an object +2002-02-22,45.4077778,-122.5691667,Clackamas,OR,other,4,Had the most intense color white! +2002-02-22,47.4236111,-120.3091667,Wenatchee,WA,flash,7200,A bright Blues ball of light flashed above me and a co-worker leaving me seeing spots for two hours. +2002-02-22,38.9180556,-78.1947222,Front Royal,VA,egg,600,while headed north on route 522 i noticed a silver orb , at first I thought it was a high altidude ballon with a milar coteing . while +2002-02-22,33.4483333,-112.0733333,Phoenix,AZ,egg,2700,heran las 2 pm cuando salimos del restaurant donde estabamos comiendo mi companero y yo cuando mire al cielo por un momento pense que +2002-02-22,41.3455556,-88.8425,Ottawa,IL,other,780,Bright silver object(s) on I-80 +2002-02-22,38.52,-89.9838889,Belleville,IL,cylinder,900,Againt blue object in the sky gets chased away by 2 planes. +2003-02-22,40.9730556,-117.7347222,Winnemucca,NV,disk,300,two disks hovering near Winnemucca Nevadaᅄ wittness, stayed untell six jets chaced, sky was clear. the real thing!!! +2003-02-22,38.9905556,-77.0263889,Silver Spring,MD,changing,18000,Have you ever been abducted? I have. My story in detail. +2003-02-22,40.9730556,-117.7347222,Winnemucca (West Of),NV,disk,300,the real deal!!! driving west on i80 we saw to silver disks looked to be above Cosgrove restarea. they were larger than anything ive ev +2003-02-22,33.7630556,-81.245,Pelion,SC,unknown,7200,We heard a very loud, tarp flapping sound with electrical overtones, just above our heads. +2003-02-22,34.5636111,-111.8536111,Camp Verde,AZ,unknown,3600,as a crop circle in the sky +2004-02-22,33.2147222,-97.1327778,Denton,TX,light,120,I was returning from doing some star gazing with a new spotter scope I have. I was traveling on Hwy 380 traffic was light. Off to my l +2004-02-22,35.0716667,-81.65,Gaffney,SC,sphere,600,glowing object crosses road, drops sparks, starts fire, leaves object in tree which fire Chief can't find next morning. +2004-02-22,41.8463889,-71.8880556,Dayville,CT,fireball,120,huge fireball lights seen in the sky amazing +2004-02-22,42.3619444,-76.5911111,Newfield,NY,fireball,10,green fireball in upstate new york +2004-02-22,40.9255556,-73.1413889,Stony Brook,NY,circle,5,Brilliant reddish-orange object with green tip; hovering then ascending at impossible speed +2004-02-22,41.8530556,-74.1394444,Stone Ridge,NY,oval,420,Slow moving red lights descended, disappeared then reappeared and ascended; dogs barked at them. +2004-02-22,34.4433333,-86.9352778,Hartselle,AL,fireball,10,It was just like the footage of the shuttle explosion! +2005-02-22,31.8541667,-110.9930556,Green Valley,AZ,triangle,180,three bright bluish-white lights. possible triangle craft? +2005-02-22,42.2711111,-89.0938889,Rockford,IL,other,300,ball shaped thing hovering at a low altitude that rose straight up and out of site within a minutes +2005-02-22,48.6108333,-118.0547222,Kettle Falls,WA,fireball,3,On 2/22/05 my brother witnessed two objects in the NW sky, with meteor characteristics but unusually large. +2005-02-22,48.0841667,-121.9675,Granite Falls,WA,fireball,1,A green fireball traveling west to east with slight left to right path just outside of Granite Falls. +2005-02-22,44.0522222,-123.0855556,Eugene,OR,unknown,180,Unidentified government craft over Eugene? +2005-02-22,43.2380556,-76.1411111,Brewerton,NY,triangle,600,Triangle shaped craft over Oneida lake in February of 2005, no noises, only those lights..no blinking lights, just 3 bright lights +2005-02-22,41.9486111,-71.0736111,Raynham,MA,light,120,Weird light formation with blue "explosions?" +2006-02-22,42.0986111,-75.9183333,Binghamton (40 South Of Kbgm),NY,unknown,240,FL340 40NM South of KBGM +2006-02-22,42.0527778,-124.2827778,Brookings,OR,light,15,Satelite object with some strange movement. Satelites don' t do this. do they?? +2006-02-22,33.7458333,-117.8252778,Tustin,CA,other,30,I had just gotten off of work here in Irvine, California in Orange County. I was heading to my parents house who live in Tustin near t +2006-02-22,40.9311111,-73.8991667,Yonkers,NY,disk,2520,For the past few months, I've done a nightly walk around my neighborhood, consisting of roughly 1.8-2.4 miles and lasting 30-40 minutes +2007-02-22,40.7413889,-74.36,Summit,NJ,changing,900,while driving through the mountains of northern union county, saw a triangle. +2007-02-22,37.9747222,-87.5558333,Evansville,IN,rectangle,120,Evansville, IN 2/22/07---LARGE Craft passed overhead, noise eminated, definitely not standard aircraft, report from amateur astronomer +2007-02-22,41.6005556,-93.6088889,Des Moines,IA,light,5,To fast to be any thing Ive seen as a point of light, two objects parallel in a turn. +2007-02-22,43.1338889,-70.9269444,Durham,NH,changing,900,Morphing object seen in the day in the same location a green-strobing object which was seen at night 2 weeks before. +2007-02-22,36.1961111,-86.6225,Hermitage,TN,triangle,40,On Feb.22 around 7:45 that evening a friend was leaving.We had just stepped out the back door.Having a few telescopes and amature astro +2007-02-22,34.8525,-82.3941667,Greenville,SC,triangle,60,My daughters and I saw the triangular ufo on February 22 around 7:30 pm, in Greenville SC. It was hard to tell how big it was, but it +2007-02-22,48.1988889,-122.1238889,Arlington,WA,light,30,Two lights- no sound- being pursued by large military helicopter at low altidude +2007-02-22,42.0883333,-87.9805556,Arlington Heights,IL,other,15,Axehead-shaped silent non-illuminated craft flying overhead at night. +2007-02-22,43.4055556,-88.705,Juneau,WI,unknown,10,((HOAX??)) Two round objectsand they flashed. They WERE CHASED by MILITARY PLANES!!! +2007-02-22,32.4608333,-84.9877778,Columbus (North Of),GA,fireball,7,Green fireball in the night sky - traveling East to West - Harris County north of Columbus GA HWY 85 +2007-02-22,26.1219444,-80.1436111,Fort Lauderdale,FL,triangle,4,Very dim v shape object travelinf sw fast across the sky in Ft Lauderdale 2/22/07 8:25pm +2007-02-22,38.4191667,-82.4452778,Huntington,WV,teardrop,900,A blaze orange upside down tear drop shaped object over southern Ohio. +2007-02-22,36.4202778,-81.4736111,Jefferson (7 Miles East Of),NC,light,20,I saw a bright, orangish light in the sky that turned off, leaving no trail or any evidence that it was a search/landing light. +2007-02-22,33.6888889,-78.8869444,Myrtle Beach,SC,light,30,White ball of light over ocean east of Myrtle Beach, then planes to "investigate" +2008-02-22,40.1527778,-81.5722222,Kimbolton,OH,sphere,45,SAW SPHERE OF GOLDEN LIGHT FLOATING SILENTLY FROM EAST TO WEST +2008-02-22,41.9433333,-75.6,Susquehanna,PA,light,300,light/ufo seen over northeast pa in feb 08 +2008-02-22,25.7738889,-80.1938889,Miami,FL,circle,3,flew acroos airport during live feed +2008-02-22,33.5538889,-117.2130556,Murrieta,CA,triangle,300,Triangled shaped craft in Murrieta, CA +2008-02-22,35.6869444,-105.9372222,Santa Fe,NM,fireball,300,Pretty large, very bright, white ball with flames coming out, caused power to go out in friend's house. +2008-02-22,33.6602778,-117.9983333,Huntington Beach,CA,disk,1800,Three disks in a triangular formation overing over ocean on huntington beach +2008-02-22,37.6941667,-122.0852778,Castro Valley,CA,disk,4,circular UFO( bell hat shape ) seen on hwy 580 castro valley, CA 8:10 pm in front of full moon. +2008-02-22,39.1619444,-84.4569444,Cincinnati,OH,rectangle,180,Black Flat Object with a Luminous Light hovering in the sky... +2009-02-22,32.3511111,-95.3008333,Tyler,TX,other,780,((HOAX)) 7 ufos seen in tyler tx +2009-02-22,33.8491667,-118.3875,Redondo Beach,CA,circle,600,Bright ringed object seen tumbling soundlessly over Redondo Beach CA. +2009-02-22,30.4866667,-90.9561111,Denham Springs,LA,light,1800,Bright light hovering in the sky +2009-02-22,33.8544444,-84.2172222,Tucker,GA,chevron,10,A sideways boomerang-shaped UFO was visible above La Vista Road for about ten seconds. +2009-02-22,36.235,-87.4438889,Vanleer,TN,cylinder,2700,((HOAX)) Bright light in atmosphere miles away. +2009-02-22,38.316,-88.9106,Mount Vernon,IL,light,600,Light over Jefferson County +2009-02-22,39.1580556,-75.5247222,Dover,DE,triangle,300,Large, silver flying object with light beaming down. +2009-02-22,30.6277778,-96.3341667,College Station,TX,light,5,i was driving down the highway and saw a blue orb that disappeared when i focused on it. +2010-02-22,40.7141667,-74.0063889,New York City (Manhattan),NY,disk,15,High speed flying object seen over Hudson river +2010-02-22,39.9019444,-75.3502778,Swarthmore,PA,flash,15,blue-green explosions? light up sky in Swarthmore PA +2011-02-22,39.1730556,-77.2719444,Germantown,MD,unknown,600,Unable to move encounters of a 4th kind +2011-02-22,34.3077778,-83.6336111,Gillsville,GA,oval,180,Oval Bell Shaped object in sky hovering over trees at noon bright sunny day in Northeast Georgia +2011-02-22,41.3025,-73.3838889,Redding,CT,other,120,Two triangles stuck together at their bases. +2011-02-22,33.0197222,-96.6986111,Plano,TX,unknown,1200,Large object in the sky/ black out +2011-02-22,39.6894444,-84.1688889,Kettering,OH,circle,1,((HOAX??)) A silvery medium-sized object zoomed across the sky. +2011-02-22,44.5263889,-109.0558333,Cody,WY,light,120,Bright light. ((NUFORC Note: Overflight of ISS occurred at 19:05 p.m.. PD)) +2011-02-22,40.5866667,-122.3905556,Redding,CA,light,1200,Star looking object moving in a very odd pattern, just a white light just like a star. ((NUFORC Note: Star, Sirius. PD)) +2011-02-22,41.2008333,-73.3811111,Weston,CT,light,600,Strange light display and manuvers low over Weston/Redding border +2011-02-22,29.0488889,-82.4611111,Dunnellon,FL,light,120,Regular night sky observer with no previous sightings until now. +2011-02-22,36.7758333,-121.6686111,Prunedale,CA,light,900,Flashing MultiColered Light In Prunedale, CA. +2012-02-22,39.7683333,-86.1580556,Indianapolis,IN,diamond,3600,Bright lights in the city of Indy...UFO??? +2012-02-22,35.2338889,-92.3875,Greenbrier,AR,other,5,A white and glowing, boomerang-like object twisting and flying in the air. +2012-02-22,33.5805556,-112.2366667,Peoria,AZ,light,90,Blue Light Seen Hovering Over West Wing Mountain, Peoria, Arizona +2012-02-22,32.7152778,-117.1563889,San Diego,CA,sphere,600,Round black object, no lights, moving east to west over Del Sur. +2012-02-22,45.4558333,-94.4286111,Cold Spring,MN,triangle,180,Drove underneath two triangular crafts that made no sound. +2012-02-22,34.0658333,-84.6769444,Acworth,GA,circle,240,Saw a bright light disappear then reappear closer, then slowly fade to dark. +2012-02-22,43.5944444,-83.8888889,Bay City,MI,changing,7200,Two Lights varying in intensity over Bay City, MI ((NUFORC Note: Sighting of Jupiter and Venus? PD)) +2012-02-22,35.6013889,-84.4611111,Sweetwater,TN,unknown,240,At about 9 p.m. I looked out side and noticed several lights moving from the southeast to the northwest in a formation. I first thought +2012-02-22,32.3122222,-106.7777778,Las Cruces,NM,circle,1200,Glowing orb like object. Very bright yellow and red. Low western sky. ((NUFORC Note: Sighting of Jupiter and Venus? PD)) +2012-02-22,35.0886111,-92.4419444,Conway,AR,triangle,60,Three triangular shaped aircraft +2013-02-22,42.7619444,-74.1341667,Duanesburg,NY,oval,60,Oval shaped flying object in the night sky +2013-02-22,42.8863889,-78.8786111,Buffalo,NY,fireball,120,4 flame colored lights moving east to west +2013-02-22,26.7052778,-80.0366667,West Palm Beach,FL,circle,300,Range lights in sky +2013-02-22,38.1041667,-122.2555556,Vallejo,CA,light,1500,Strange Lights traveling over Vallejo, CA. +2013-02-22,32.7152778,-117.1563889,San Diego,CA,light,30,Super fast red blinking light travelling across the sky. +2013-02-22,41.1052778,-75.4763889,Pocono Lake,PA,fireball,3,Orange ball sighted over Pocono Lake, PA, for 2-3 seconds, then disappeared. +2014-02-22,41.5838889,-73.8091667,Hopewell Junction,NY,circle,60,Driving on the Taconic Parkway north toward Poughkeepsie a flying circle craft with 5 white lights on the bottom of it. +2014-02-22,41.4088889,-75.6627778,Scranton,PA,unknown,1500,I dont know what it was and i went inside right away. +2014-02-22,40.4166667,-86.8752778,Lafayette,IN,circle,2,Maybe a drone, small dark object moving in random directions, also staying still. +2014-02-22,34.7744444,-96.6780556,Ada,OK,other,7200,UFO on pond dam. +2014-02-22,42.2291667,-72.7305556,Southampton,MA,unknown,7200,Cross of lights with streams at ends covering the center of my binocular's field of vision. Apparently stationary--moved with stars. +2014-02-22,39.9416667,-94.83,Savannah,MO,other,5,Three lights (think part of another bigger object) zoomed across sky. +2014-02-22,36.7477778,-119.7713889,Fresno,CA,unknown,10,UFO observed had no sound or detail to it, and floated across the sky. +2014-02-22,38.5816667,-121.4933333,Sacramento (East),CA,light,720,Eight lights in the sky flashing moving and disappearing within twenty minutes. +2014-02-22,35.0419444,-89.6644444,Collierville,TN,circle,300,REPORT FROM RETIRED ATP PILOT: Eight to ten orange sphere objects seen in Memphis evening sky, three observers. +2014-02-22,36.8527778,-75.9783333,Virginia Beach,VA,circle,2,One bright traveling light splits into two in Virginia Beach sky. +2014-02-22,39.7286111,-121.8363889,Chico,CA,light,15,Light moving across sky and then dissipates and disapears within 15-20 seconds. +2014-02-22,31.2230556,-85.3905556,Dothan,AL,fireball,120,Hovering fireball in Dothan, AL. +2014-02-22,37.9577778,-121.2897222,Stockton,CA,circle,300,Red Lights In the sky. +2014-02-22,37.9577778,-121.2897222,Stockton,CA,light,180,Saw them before in Florida. +2014-02-22,44.4375,-73.0686111,Williston,VT,fireball,180,Several bright, glowing, orange-yellow orbs low in the sky. Geometric formation (diamond, triangle) +2014-02-22,36.175,-115.1363889,Las Vegas,NV,light,60,Ufo in Vegas with video. +2014-02-22,26.3583333,-80.0833333,Boca Raton,FL,oval,600,Nine orange oval objects flying above Boca Raton. +2014-02-22,37.9613889,-81.0825,Thurmond,WV,formation,120,Approximately 7:15 pm, we looked into the sky and seen a formation of 4 red lights in a triangular shape, but not a perfect triangle. +2014-02-22,42.9955556,-71.4552778,Manchester,NH,sphere,300,Very big and bright craft over the Merrimack. +2014-02-22,44.6438889,-72.8297222,Jeffersonville,VT,sphere,120,Bright orange lights appeared over mountains, no sound disappeared and quickly as they appeared. +2014-02-22,39.9522222,-75.1641667,Philadelphia,PA,fireball,900,Multiple bright orange objects over Philadelphia. +2014-02-22,38.0291667,-78.4769444,Charlottesville,VA,light,45,Red ball of light, became a halo as it moved up into the sky, flew erratically then straightened out. +2014-02-22,45.4872222,-122.8025,Beaverton,OR,light,240,4 vertical aligned red lights in south/southwest sky. +2014-02-22,44.5927778,-70.2286111,Wilton,ME,triangle,300,Flying in Wilton hovered in the sky, had red, blue, green lights. Moved like nothing ever seen before hovered then moved side to side. +2014-02-22,39.3252778,-77.7391667,Harpers Ferry,WV,unknown,4,Object viewed with telescope moving a high rate of speed outside our solar system. +2014-02-22,44.9133333,-93.5030556,Minnetonka,MN,light,7,Bright light moving rapidly across night sky, leaving a trail, but slower than a meteor and it didn't burn out. +2014-02-22,43.7730556,-88.4469444,Fond Du Lac,WI,cigar,8,I saw a luminous silver colored cigar shaped object travelling west to E. It was N of my position in central Fond du Lac. +2014-02-22,41.5386111,-75.9469444,Tunkhannock,PA,triangle,45,My husband saw two lights in the sky relatively close to the terrain. We stopped at the main stoplight in town. +2014-02-22,33.6188889,-117.9280556,Newport Beach,CA,circle,1200,On Sat Feb 22 at 11pm I was on my deck smoking a cigarette when I saw 3 round objects with yellow lights coming up from the south. +2014-02-22,40.7141667,-74.0063889,New York City (Bronx),NY,light,15,5 lights in the sky, Bronx nyc. Flying together, size of the stars. Bright like the stars. 2/22/2014. +2014-02-22,40.4416667,-75.3419444,Quakertown,PA,circle,12,Red pulsing object traveling at high speed execute a 90 degree turn. +1981-02-23,35.3266667,-79.2555556,Cameron,NC,light,900,Round object hovering in sky then in a zig zag motion dissapering +1993-02-23,37.0833333,-88.6,Paducah,KY,unknown,10,This happened ALONG time ago , but i am JUST now admiting it. It was about 10:00 Pm on Feb 23, 1993.Me and a Friend were in his Pool in +1996-02-23,32.9627778,-117.035,Poway,CA,light,660,Saw 2 points of light moving slowly across sky then after 11 minutes, 1 of them streaked off towards the east and was gone in 10-12 sec +1996-02-23,34.0522222,-118.2427778,Los Angeles,CA,triangle,120,At 20:15 Pacific time on 2/23/96, while out on balconywith telescope, looked west, south west,and saw 3 triangularshaped objects with a +1998-02-23,43.6852778,-71.1172222,Ossipee,NH,light,60,A bright light in the sky traveled from east to west across the road at approximately 200 mph then stopped suddenly and went straight d +1998-02-23,42.9133333,-85.7052778,Wyoming,MI,changing,60,my wife and i were walking across a parking lot toword the east. i saw a very dark object coming from that direction. i pointed it out +1998-02-23,34.9333333,-95.7694444,Mcalester,OK,egg,180,Observed a bright flash and from center of flash egg shapped yellow/white egg shapped ufo appeared. Spotted craft through 16x 50 power +1999-02-23,34.0522222,-118.2427778,Los Angeles,CA,fireball,420,first saw it as a white light with a brilliant orange tail, tail disappeared white light continued across sky east and then seemed to b +1999-02-23,34.1008333,-117.7669444,La Verne,CA,fireball,120,I was driving us on Interstate freeway 10, due west, at the junction of the 210 freeway, when I saw what looked like a flare, except th +1999-02-23,33.8030556,-118.0716667,Los Alamitos,CA,other,3,traveling east over the tree tops in the distance, light greyish white object. About the size of a thumb in the sky. Looked like what s +1999-02-23,30.7233333,-95.5505556,Huntsville,TX,light,2400,2 lights, 1 large, 1 small, hovered in the sky for over 35 minutes. it never moved once during this time and then all at once it disap +1999-02-23,44.6447222,-85.7672222,Interlochen,MI,light,1800,There may have been two objects. I noticed what appeared to be two planets VERY close together in the sky at about 25-30 degrees above +1999-02-23,33.4763889,-100.8552778,Spur,TX,triangle,1500,There was one light to the left of the object that could have been a jet, but it was not making any noise. +1999-02-23,34.7711111,-112.0572222,Clarkdale,AZ,disk,3600,my girlfriend and I had returned from dinner and were preparing to retire. we had been looking casually at the sky out the bedroom win +1999-02-23,30.2669444,-97.7427778,Austin,TX,chevron,7,I was outside with my girlfriend looking at the moon with my telescope and something passed within my line of sight,i looked up from th +1999-02-24,33.4483333,-112.0733333,Phoenix (North Of),AZ,fireball,10,Adding to prev. report +2000-02-23,60.5544444,-151.2583333,Kenai,AK,cone,40,While bringing my children into school we all witness a white object in a cone shape moving across the horizon. My daughter saw it firs +2000-02-23,35.6225,-117.67,Ridgecrest,CA,cigar,2,Ridgecrest CA Documented 20 Sept., 2003 Sighting of unknown flying craft: Date: Wed 23 Feb. 2000 Time: Late afternoon, estimated abou +2000-02-23,32.7291667,-82.72,Wrightsville,GA,triangle,900,On the above date and time I was patroling the perimeter of the Prision I work when I observed a triangle shape object hovering behind +2001-02-23,34.3991667,-118.9172222,Fillmore,CA,disk,120,See for your self, here is the address: http://ufoinfillmore.homestead.com/1.html +2001-02-23,35.0536111,-94.6233333,Poteau,OK,unknown,900,A commercial jet liner dodged a ufo at roughly 30 to 40 thousand feet in broad day light to avoid having in air collision. +2001-02-23,41.0533333,-73.5391667,Stamford,CT,triangle,20,I saw 6 bright lights with blue triangular lights between them on a triagular shaped object hovering low in the sky. +2001-02-23,30.3502778,-89.1527778,Long Beach,MS,circle,5,I witnessed a large circular row of lights that appeared directly over a jet I was watching and moved away at a rapid rate of speed. +2001-02-23,39.1619444,-84.4569444,Cincinnati,OH,disk,600,2 saucer like objects that moved from place to place then sped towards the sky. +2002-02-23,33.4483333,-112.0733333,Phoenix,AZ,egg,1800,un dia anterior abia visto cerca de 10 objetos brillantes como globos entonces espere cerca de la misma hora para comer unas hamburger +2002-02-23,40.6547222,-73.6722222,Lynbrook,NY,oval,120,Another sighting in the SAME field that we saw "UFO's", on 09/02/01 +2002-02-23,39.7536111,-76.5916667,Stewartstown,PA,fireball,15,We saw a green flash in the sky that was not a meteor. +2002-02-23,39.2402778,-76.8397222,Columbia,MD,rectangle,3,We saw a lime green, rectangular shaped light shoot (stagger) across the sky in Columbia, MD on 2/23/02 +2002-02-23,38.2911111,-76.6361111,Leonardtown,MD,sphere,5,We were driving home and saw a greenish round object shooting across the sky in a eastwards direction falling towards the earth. +2002-02-23,37.6547222,-76.4441667,Weems,VA,oval,2,Greenish, soccer ball sized, object seen at 60* over eastern sky(Atlantic Ocean),traveling NW to SE 2 second duration +2003-02-23,43.6275,-89.7708333,Wisconsin Dells,WI,unknown,1200,Silent, rotating lights, strange movements and speed. Witnessed by 2 police officers. +2003-02-23,33.9236111,-84.8408333,Dallas,GA,circle,900,Object with lights was spinning in the western sky. It appeated to be spinning and hovered for about 15 minutes. +2003-02-23,30.6277778,-96.3341667,College Station,TX,circle,60,2 circular lights moving very slowly. +2003-02-23,47.0380556,-122.8994444,Olympia,WA,changing,15,Dancing in the sky... +2003-02-23,47.8211111,-122.3138889,Lynnwood,WA,formation,3,Two of us were observing the stars when what looked like 3 dull lights in a row (unlike that of an airplane) flew silently across the s +2003-02-23,40.7141667,-74.0063889,New York City (Astoria; Queens),NY,circle,3600,I was out side smoking when I looked up and saw what I thought was a Large star. Then it started moving vast then very slow then not at +2003-02-23,43.2377778,-77.0616667,Sodus,NY,light,30,Mars observers witness light moving in roller coaster pattern from east to west. +2004-02-23,33.5091667,-111.8983333,Scottsdale,AZ,fireball,900,There was an object fireball/light +2004-02-23,30.1102778,-97.315,Bastrop,TX,fireball,3,I saw a green ball of light with an orange tail for 3 sec. in central Texas. +2004-02-23,42.4527778,-75.0641667,Oneonta,NY,unknown,30,Two lights traveling at a high rate of speed +2005-02-23,34.8833333,-82.7075,Pickens,SC,circle,120,On the night of Feb 23,around 3:00AM 2005,I went to the kitchen looked out the kitchen window.There in the sky was this craft,circuler +2005-02-23,37.6391667,-120.9958333,Modesto,CA,fireball,1800,I saw a bight blue fireball object that jetted in front of my car and then went high in the sky. +2005-02-23,39.6836111,-75.75,Newark,DE,unknown,300,Amber light seen above Newark, Delaware. Aprox 3:30am +2005-02-23,42.8666667,-106.3125,Casper,WY,light,300,Bright object observed and photographed +2005-02-23,26.6402778,-81.8725,Fort Myers,FL,circle,120,Slow moving circular Object at High Altitude +2005-02-23,26.7080556,-80.2308333,Royal Palm Beach,FL,other,180,We saw a silver spinning football shaped object going across the sky during the day. +2005-02-23,42.8352778,-89.0675,Edgerton,WI,triangle,600,Triangular - 3 lights one red and two white. Night of 2/23/05 in Edgerton, Wisconsin on Hwy I-90 around 7 p.m. +2005-02-23,28.8038889,-81.7258333,Tavares,FL,cylinder,300,The object was cylindrical with small white & red lights, moving toward my direction and disappearing 5 times. +2005-02-23,33.4052778,-86.8113889,Hoover (Bluff Park),AL,triangle,2,triangle in the air in front of Bluff Park School flew towards the valley and vanished ((NUFORC Note: Student report. PD)) +2005-02-23,48.7597222,-122.4869444,Bellingham,WA,fireball,1.5,Meteor lands in Whatcom County. +2005-02-23,40.6866667,-84.1377778,Ft. Shawnee,OH,triangle,300,Oblect travels near refinary. +2005-02-23,47.7558333,-122.3402778,Shoreline,WA,light,15,Strange green rotating lights appearing over Shoreline. +2005-02-23,47.2033333,-122.2391667,Sumner,WA,other,300,Flashing 'star'-like objects near Sumner, WA +2005-02-23,37.3769444,-77.5061111,Chesterfield,VA,disk,300,Was watching the sky, and saw a green light zig around the sky +2006-02-23,33.6411111,-117.9177778,Costa Mesa,CA,triangle,4860,Very Bright Light in sky over Sourthern California... moving north towards Long Beach over 1 hour 20 minute time period +2006-02-23,37.6791667,-95.4569444,Chanute,KS,other,120,the object did not emit other object[error] +2006-02-23,41.5822222,-85.8344444,Goshen,IN,other,37800,I don't know what it was, but we watched for 2 hrs! I can't wait to see if it happens again tonight! +2006-02-23,30.5019444,-90.7477778,Livingston,LA,circle,600,round craft with no lights moves over livingston,la without sound +2006-02-23,34.7463889,-92.2894444,West Little Rock,AR,light,240,Bright bulging light moving like hot air balloon on fire, except it reversed its course superfast! +2006-02-23,36.2094444,-92.2841667,Norfork,AR,light,30,Fast moving bright start-like object +2006-02-23,31.7077778,-111.0638889,Amado,AZ,light,1200,White dots of light moving rapidly with occasional very large bright orange bursts. +2006-02-23,31.9575,-110.955,Sahuarita,AZ,formation,900,Glowing orbs over Southern Arizona +2007-02-23,39.7391667,-104.9841667,Denver,CO,unknown,2,Strange object behind a weatherman giving forecast. +2007-02-23,35.1186111,-120.5897222,Arroyo Grande,CA,light,240,Mysterious light observed near Vandenberg AFB +2007-02-23,42.926944399999996,-70.9444444,Kensington,NH,diamond,90,Diamond shaped light configuration in rural New Hampshire +2007-02-23,38.4191667,-82.4452778,Huntington,WV,cone,180,Security guard and I watched an "ice cream cone" like object. +2008-02-23,41.8661111,-88.1069444,Wheaton,IL,light,10,Light shot out of tree line at constant level across the sky from east to west at extreme high rate of speed. No tail, did not radiate +2008-02-23,42.2411111,-88.3161111,Crystal Lake,IL,fireball,30,Large Flaming Football-Shaped Object Over Crystal Lake, Illinois +2008-02-23,31.7586111,-106.4863889,El Paso,TX,fireball,3,There was a flash and it vanished... +2008-02-23,33.9319444,-117.9452778,La Habra,CA,rectangle,300,Huge Dark/Black rectangular object in the sky. +2008-02-23,28.0194444,-82.7719444,Dunedin,FL,light,15,Small ball of light moving very fast over Dunedin, FL. +2008-02-23,32.9808333,-80.0327778,Goose Creek,SC,light,120,Three white lights over Goose Creek-North Charleston - maybe pursued by USAF fighters? +2008-02-23,34.6108333,-85.9169444,Dutton,AL,changing,600,lights changed position when i flashed my car lights at it +2008-02-23,30.8411111,-97.7933333,Florence,TX,other,3,Clover shaped UFO with Red lights spotted near Florence TX +2008-02-23,33.58,-85.0766667,Carrollton,GA,disk,300,Object landed in pasture behind house and had a orange glow around it. +2009-02-23,32.7152778,-117.1563889,San Diego,CA,triangle,1200,Black Triangle with 3 red lights observed for 20 minutes, no sound, football field sized. +2009-02-23,30.4380556,-84.2808333,Tallahassee,FL,flash,2,It was like a silent firecracker falling at it.. +2009-02-23,31.6033333,-94.6552778,Nacogdoches,TX,unknown,6,Point of light accelerates from a crawl, covers night sky in 2 seconds. +2009-02-23,34.1083333,-117.2888889,San Bernardino,CA,triangle,300,Big triangular somethingchecks out former AFB. +2009-02-23,42.3683333,-83.3527778,Livonia,MI,light,180,2 lights in sky +2009-02-23,32.2730556,-89.9858333,Brandon,MS,oval,3600,The objects were an oval shape lights. The moved in and out of the sky then they started to break off from a bigger light. +2009-02-23,28.3505556,-80.7255556,Rockledge,FL,sphere,120,Sphere shape object seen over space coast florida leaving smoke circle trail as it shots straight up out of sight +2009-02-23,40.3763889,-74.2447222,Morganville,NJ,changing,4800,a very bight shaped object slowly moving over the western sky. ((NUFORC Note: Venus? PD)) +2009-02-24,32.7558333,-111.6702778,Arizona City,AZ,other,600,DIFFERENT SIGHTINGS IN ONE NIGHT BY 6 FAMILY MEMBERS +2010-02-23,21.3155556,-158.0072222,Ewa Beach,HI,triangle,600,Two unnaturally bright UFO's over Ewa Beach +2010-02-23,29.3011111,-94.7975,Galveston,TX,fireball,120,Myself and 2 others observed a neon blue meteor fall into the ocean off of Galveston island. It was on 2/23/10 at approximately 11:00 +2011-02-23,42.32,-89.0580556,Loves Park,IL,oval,120,Photos of an object in the sky +2011-02-23,34.1866667,-118.4480556,Van Nuys,CA,light,1800,UFO delays launch of Taurus XL rocket form Vandenberg AFB. +2011-02-23,40.6283333,-76.3875,Tremont,PA,light,7,Two bright lights appeared over the sky above Tremont, PA, one sped off at a very high rate of speed. +2011-02-23,40.1522222,-75.2666667,Blue Bell,PA,teardrop,4,Bright green teardrop/comet shaped object in dark morning sky. +2011-02-23,41.3316667,-74.1213889,Central Valley,NY,diamond,60,Saw several diamond orange lights flashing in sky. +2011-02-23,43.2263889,-78.0269444,Holley,NY,triangle,120,5 brights shaped like an upsidedown V or triangle over Holley Ny. +2011-02-23,33.7797222,-116.4644444,Cathedral City,CA,sphere,3600,Bright growing and shrinking spherical light hovering high over east Coachella valley. +2012-02-23,41.8008333,-87.9369444,Hinsdale,IL,disk,20,Lower than an airplane could fly, was a silver disk/saucer with orange lights moving very, very slowly across the cloudy dark sky. +2012-02-23,36.8466667,-76.2855556,Norfolk,VA,triangle,60,Triangle shaped +2012-02-23,44.0247222,-88.5425,Oshkosh,WI,light,900,Double orbs in dawn sky +2012-02-23,36.175,-115.1363889,Las Vegas,NV,unknown,120,Low Humming and HUGE Object over Las Vegas West Valley. ((NUFORC Note: Confirmed…sighting of a blimp. PD)) +2012-02-23,33.4483333,-112.0733333,Phoenix,AZ,fireball,30,02/23/2012 Phoenix, AZ Fireballs 30 sec 2 fireballs circling around in night sky near airport 02/24/2012 +2012-02-23,46.3830556,-120.73,White Swan,WA,light,900,Disappearing strobing spiraling lights that split into two lights! +2012-02-23,38.8402778,-97.6111111,Salina,KS,unknown,15,3 bright lights +2012-02-23,33.9202778,-80.3416667,Sumter,SC,cross,120,White cross shaped craft streaks near Shaw AFB and vanishes in thin air. +2013-02-23,37.5058333,-77.6494444,Midlothian,VA,triangle,600,Extremely three bright lights that were shooting start fast. +2013-02-23,36.0544444,-112.1386111,Grand Canyon,AZ,cigar,60,Black craft over Grand Canyon/white craft over Beverly Hills. +2013-02-23,45.6966667,-90.4002778,Phillips,WI,light,900,A series of 11 ,completely silent, lights(objects) flying in a straight line. +2013-02-23,33.9791667,-118.0319444,Whittier,CA,circle,300,13 to 15 bright reddish/orange orb shaped objects seen flying in the sky. +2013-02-23,33.9172222,-118.0111111,La Mirada,CA,sphere,300,Multiple orange lights seen by couple in Los Angeles' skies. +2013-02-23,34.8525,-82.3941667,Greenville,SC,light,60,6-7 orange/red lights traveling in linear pattern. +2013-02-23,33.8491667,-118.3875,Redondo Beach,CA,formation,240,Several colored orbs emitting orbs moving/changing into different symmetrical shapes while in flight. +2013-02-23,33.5386111,-112.1852778,Glendale,AZ,light,600,Red bright orbs flying in formation then three flew past us climbing up into the night! +2013-02-23,38.6272222,-90.1977778,St. Louis,MO,triangle,120,triangle lights moving in a counter clockwise motion a yellow/orange color. +2013-02-23,61.5997222,-149.1127778,Palmer,AK,light,60,Noticed an orange glowing light in the sky. It was not moving and the sky was very overcast. It disappeared after about a minute. +2014-02-23,32.7152778,-117.1563889,San Diego,CA,other,60,Daytime sighting of a "Chariot" shaped object over San Diego CA. +2014-02-23,28.5997222,-81.3394444,Winter Park,FL,unknown,4,At around 7 AM this morning, I woke up hearing my wife making a bottle for our baby. At the same time, I heard a loud humming, to the p +2014-02-23,39.5186111,-104.7608333,Parker,CO,sphere,1,Driving down the road (heading north at 39.564284 - -104.803112), I saw a white and dark teal colored light flying above me. +2014-02-23,27.9375,-82.2861111,Brandon,FL,light,240,8 amber colored spheres seen in the sky traveling in formation, then disappearing. +2014-02-23,42.0775,-78.43,Olean,NY,triangle,120,Wispy clouds then triangle shaped craft. +2014-02-23,61.2180556,-149.9002778,Anchorage,AK,light,600,2 Unidentified Orange Lights above Anchorage. +2014-02-23,34.5361111,-117.2902778,Victorville,CA,light,45,Red light traveling slowly across sky. +2014-02-23,43.6808333,-114.3627778,Ketchum,ID,light,3,Large bright white object in sky. +2014-02-23,33.8388889,-83.9008333,Loganville,GA,triangle,180,Triangular shaped object with 3 bright rectangle lights and one red flashing light. +2014-02-23,44.4375,-73.0686111,Williston,VT,fireball,2,Large orange fireball, exceptional speed and low altitude; observed by at least two people. AWESOME! +2014-02-23,43.0008333,-73.8494444,Ballston Spa,NY,fireball,60,Green fireball fell from sky close to home. No noise heard. No impact felt. +2014-02-23,35.6397222,-101.6027778,Fritch,TX,light,300,I was on the front porch looking at the sky as I do and to the E, about 40 deg. off the east horizon I saw a white light, moving. +2014-02-23,39.7683333,-86.1580556,Indianapolis,IN,unknown,420,Two objects, one stationary, one sweeping the other. +2014-02-23,42.7469444,-73.7594444,Latham,NY,circle,3,Blue/green circular light falling extremely fast straight down from the sky with an orange white light trailing behind it. +2014-02-23,40.7258333,-73.5147222,Levittown,NY,fireball,2,((HOAX??)) This was one of the most wonderful, light, fire, glowing flame experience. +2014-02-23,35.0844444,-106.6505556,Albuquerque,NM,light,30,I saw a bright orange oval shape that moved slightly and disappeared with no flash nor sound. +2014-02-23,37.7102778,-76.38,Kilmarnock,VA,triangle,3,Large, silent, high-flying speedy aircraft with triangle light alignment frightens skeptic. +2014-02-23,34.1072222,-118.0569444,Temple City,CA,diamond,300,Ten diamond shape objects floating in the sky. +2014-02-23,38.7083333,-121.3288889,Antelope,CA,circle,240,Orange/golden orb floats above Antelope/North Highlands, CA before dissappearing as small plane approached. +2014-02-23,33.5944444,-117.8908333,Balboa Island,CA,circle,1680,Three round lights came over ocean then disappeared. This happened every minute for 28 minutes then they were gone. +2014-02-23,37.3058333,-89.5180556,Cape Girardeau,MO,unknown,120,2 Perfect White Circles hovering extremely low with no noise. +2014-02-23,34.0522222,-118.2427778,Los Angeles,CA,circle,3600,Circular craft that hovered for 1 hour near downtown Los Angeles February 23 2014 @ apx 23:00 and video taped. +1998-02-24,29.7630556,-95.3630556,Houston,TX,cigar,900,APRX.20ꯠ FT I THOUGHT IT WAS A JET BUT WHEN THE SUN SHINED ON IT IT WAS A LONG SHINNY SHAPE WITH A POINT AT THE FRONT,A LARGE GLOW A +1998-02-24,37.4994444,-91.8569444,Licking,MO,light,300,Viewed in the western skys just above treetops. Round, orange in color lights. +1999-02-24,41.85,-87.65,Chicago,IL,fireball,3,Looking to the NNE at 5:20 A.M. I perchanced to see a fluorescent green fire fireball, about the size of a dime at arm's length. Trail +1999-02-24,43.1575,-87.9016667,Fox Point,WI,fireball,15,A large green fireball traveled from west to east, and decended into lake Michigan +1999-02-24,42.8813889,-88.2066667,Big Bend,WI,fireball,2,driving eastbound on hwy l in big bend I thought it was a metorite in the atmosphere hitting the ground somewhere south of milwaukee +1999-02-24,29.9252778,-95.515,North Houston,TX,unknown,2,looking for orion in the sky saw a black object zig zag and dissapear. +1999-02-24,39.2475,-114.8877778,Ely (20 Miles North Of),NV,chevron,300,1 craft, slow moving, less then 70 mph, appx 300 feet off of ground +1999-02-24,42.1297222,-76.8211111,Elmira Heights,NY,rectangle,1200,A friend and I saw 3 objects over some houses they were the same distance apart so it looked like they were in formation they were not +1999-02-25,41.1505556,-73.9458333,Congers,NY,other,420,Two, possibly three comet-like objects in the nighttime western sky. Appeared motionless and looked exactly like comets. +2000-02-24,34.7302778,-86.5861111,Huntsville,AL,disk,1,I saw a green-yellow light flash across the sky. It was too fast to be a plane and it wasn't a searchlight or anything. It flashed acro +2000-02-24,30.0380556,-82.9402778,O'brien,FL,light,7200,Very bright white to yellow lights lasting 5 to 15 seconds at various positions in the sky +2000-02-24,30.4380556,-84.2808333,Tallahassee (Williams And St. Joe Sts.,),FL,triangle,300,Mother and two children, twin boy and girl, were driving home from shopping and the son saw three lights, two orange/red at the base of +2000-02-24,34.0983333,-118.3258333,Hollywood,CA,light,900,Bright, bi-colored, stationary lights above clouds. Hundreds of witnesses. +2001-02-24,47.8211111,-122.3138889,Lynnwood,WA,sphere,240,9 objects reddish orange in formation east of lynnwood +2001-02-24,46.2752778,-122.9063889,Castle Rock,WA,light,600,Saw a bright white/red light moving very, very fast forward, up, down and backward in the approx. area of Mt. Rainier. +2001-02-24,48.1988889,-122.1238889,Arlington (3-4 Miles East Of),WA,circle,30,Come! Come Here Quick! See That up there???..... +2001-02-24,47.6063889,-122.3308333,Seattle,WA,chevron,180,((NUFORC Note: Cryptic report of a "chevron." No other details provided. PD)) +2001-02-24,39.2902778,-76.6125,Baltimore,MD,formation,1200,Hazey, swirling, lights. +2001-02-24,39.6894444,-84.1688889,Kettering,OH,light,45,On 02/24/01 at 11:32 p.m. I saw a difuse, moving red glow in the sky while I was driving +2002-02-24,40.8688889,-74.2086111,Little Falls,NJ,cigar,300,I was driving on Ridge Road heading north along the reservior. Just as I entered Little Falls I saw an air craft flying fairly low. I w +2002-02-24,32.6322222,-87.3191667,Marion County,AL,other,60,Batton shaped object observed in Marion Co. Alabama changing direction in flight. +2002-02-24,37.1888889,-112.9977778,Springdale,UT,triangle,2631600,On Feb. 24th, 2002 a report come into our offices of the Utah Ufo Investigations Team in St.George, Utah that two French hikers spotte +2002-02-24,42.9747222,-72.5222222,Putney,VT,triangle,180,The object's lights were very bright and pulsing when it took off after it was completely still shining bright white light. +2002-02-24,38.8461111,-77.3066667,Fairfax,VA,chevron,15,Son (12 years old) brought my attention to a V shaped object moving from just below the the belt of Orion (SE skies) to the Southwest. +2002-02-24,37.3688889,-122.0352778,Sunnyvale,CA,triangle,7,Silent, Dark and Stealthlike this craft "coasted" by in the night sky. +2002-02-24,41.1158333,-98.0013889,Central City,NE,other,600,Flying object with circle pattern of lights changing to a V pattern of lights +2002-02-24,33.8722222,-117.8694444,Placentia,CA,changing,600,Rumbling UFO spotted over Placentia, CA. +2002-02-24,47.6105556,-122.1994444,Bellevue,WA,changing,14400,Strange lights in night sky over Bellevue, WA on 02/25/02 -- a craft? +2002-02-24,41.2333333,-80.4488889,Hermitage,PA,rectangle,7200,it was a bright electrical blue rectangle that moved in a triangle. +2002-02-24,47.5302778,-122.0313889,Issaquah,WA,triangle,14400,green red and white objects in the sky in Issaquah +2003-02-24,25.4683333,-80.4777778,Homestead,FL,light,120,Very distant light blinking at set interval, moving in erratic/non-aircraft manner. +2003-02-24,30.2419444,-93.2505556,Westlake,LA,triangle,10,As Me and a co worker were on the job ,I noticed something out of the corner of my eye .High In the sky were three Triangular Craft tha +2003-02-24,37.775,-122.4183333,San Francisco,CA,fireball,240,a bright fireball like object that hovered for severall minutes then dispersed and shot high into the clouds +2003-02-24,25.4683333,-80.4777778,Homestead,FL,unknown,40,Witnessed a UFO sighting in south Florida moving very rapidly. +2003-02-24,44.4961111,-89.8075,Rudolph,WI,flash,300,flashes of bright yellow "stars" +2003-02-24,42.5630556,-114.46,Twin Falls,ID,light,30,The blue light light up the sky and then disappeared as if it came out of nowhere. +2004-02-24,32.2216667,-110.9258333,Tucson,AZ,circle,300,Circlular rotating lighted low flying craft west of Ina at Silverbell Rd, object moved slowly then instantly disappeared. +2004-02-24,32.2216667,-110.9258333,Tucson,AZ,light,15,Horizonal group of five lights +2004-02-24,35.0716667,-81.65,Gaffney,SC,other,300,Gaffney, SC, Report. Bright Light With Sparks +2004-02-24,45.3144444,-107.3625,Lodge Grass,MT,light,120,During the evening of February 24, 2004, the town of Lodge Grass was surprised to see several lights hovering above the cemetary. This +2004-02-24,39.7588889,-84.1916667,Dayton,OH,triangle,10,3 lights in triangular formation +2005-02-24,40.7536111,-86.0688889,Peru,IN,unknown,10800,A Really Wild Full Moon Night +2005-02-24,38.9569444,-76.5502778,Edgewater,MD,sphere,15,object did in fact slow and as quickly as it did so, it slug back in the same direct +2005-02-24,33.1433333,-117.1652778,San Marcos,CA,circle,300,Balls of Fire ((NUFORC Note: Witness, a student, elects to remain totally anonymous. PD)) +2005-02-24,34.448055600000004,-119.2419444,Ojai,CA,sphere,60,three objects above field in ojai ca +2005-02-24,35.4372222,-93.6727778,Coal Hill,AR,light,1800,Follow-up to report of orange lights sighted from Coal Hill, 02/24/05.Date 03/06/05. The acquisition of a detailed county map o +2005-02-24,35.4372222,-93.6727778,Coal Hill,AR,light,1800,Sporatic, flare-like, orange lights lasting for 2-3 seconds at an azimuth of roughly 240 to 250 degrees at an altitude of 10 to 20 degr +2005-02-24,35.4372222,-93.6727778,Coal Hill,AR,light,1800,Update to previous report of orange lights sighted in western Arkansas. +2005-02-24,47.6105556,-122.1994444,Bellevue,WA,triangle,20,This appeared to be a very large object, traveling at great speed, with no sound. +2005-02-24,47.2530556,-122.4430556,Tacoma,WA,light,90,Ball of light floating in mid air at nightime then slowly fades away. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2005-02-24,31.8541667,-110.9930556,Green Valley,AZ,triangle,240,Overfly of I-19 of triangle shaped-three light object +2005-02-24,41.0580556,-74.7530556,Newton,NJ,sphere,180,three strange balls of light darting about in a pattern above newton, new jersy. +2005-02-24,40.3547222,-110.7127778,Tabiona,UT,egg,7200,Tabiona/Wolf Creek Pass UFO sighting - lasted about 2 hours, extemely large craft, very bright, just parked in the sky. +2006-02-24,32.3863889,-96.8480556,Waxahachie,TX,triangle,60,Large triangular craft moved from north to south over north central Texas at midnight on Feb 24, 2006. +2006-02-24,42.7255556,-77.8744444,Mt. Morris,NY,other,2700,Followed by something +2006-02-24,35.0844444,-106.6505556,Albuquerque,NM,disk,20,Disk shaped object over Albuquerque, NM hovered and sped away at high rate of speed. +2006-02-24,33.7455556,-117.8669444,Santa Ana,CA,formation,240,3 circular metallic objects flying east to west in a traingular formation over central orange county, followed by another object +2006-02-24,39.5186111,-104.7608333,Parker,CO,sphere,240,Saw object and thought to be a bird or balloon. Object moved in a large circle, then moved east and then turned and moved south until +2006-02-24,34.2819444,-118.4380556,San Fernando,CA,triangle,20,Large triangle shaped craft with three blue lights spotted by by two seperate motorists in San Fernando Valley. +2007-02-24,33.2,-117.2416667,Vista,CA,chevron,2040,((HOAX)) 7 chevron crafts spotted slowly passing through midnight skies. +2007-02-24,33.5777778,-101.8547222,Lubbock,TX,oval,56,((HOAX??)) Elliptical craft sighted on serpentine path in Lubbock, Texas. +2007-02-24,42.7166667,-70.9736111,Marlboro,MA,other,3600,Tetrahedron inter-dimensional craft or construct composed of smaller particles to create it as a hole. +2007-02-24,40.1933333,-85.3863889,Muncie,IN,rectangle,120,((HOAX??)) Red Rectangle object at constant speed that could not be described as a known thing in the air. +2007-02-24,33.9163889,-78.1613889,Oak Island,NC,fireball,1200,Huge light source, movement, flashing lights seen over Oak Island, North Carolina +2007-02-24,36.8352778,-76.2986111,Portsmouth,VA,sphere,300,Bright orange object in sky in Northern Portsmouth +2007-02-24,28.0833333,-80.6083333,West Melbourne,FL,changing,630,One UFO sighted in West Melbourn, Floirda on Feb. 24, 2007 beginning at 8:06 PM. +2007-02-24,41.6213889,-72.7461111,Berlin,CT,triangle,120,bright light in the sky +2007-02-24,33.6694444,-117.8222222,Irvine,CA,disk,1200,close encounters looking and very close it hovered and moved in abnormal directions. +2007-02-24,40.7141667,-74.0063889,New York City (Bronx),NY,unknown,180,I SAW THREE STAR SHAPED LIGHTS.THEY WERE WHITE LIGHTS THAT DIDN'T SEEM TO MOVE EXEPT FOR THE ONE ON THE RIGHT THAT SEEMED TO MOVE . +2007-02-24,36.5552778,-121.9222222,Carmel-By-The-Sea,CA,sphere,60,Two white orbs over Carmel, CA +2008-02-24,29.4238889,-98.4933333,San Antonio,TX,changing,300,Guitar Pick shaped UFO Flies Over Houses In San Antonio Subdivision +2008-02-24,38.4783333,-107.8755556,Montrose,CO,unknown,120,Loud humming dark craft passed overhead against a bright cloudy night. +2008-02-24,41.3163889,-73.0936111,Shelton,CT,fireball,3,the object went from left to right in matter of three seconds. +2008-02-24,33.9533333,-117.3952778,Riverside,CA,circle,300,Orange glowing object seen over Riverside County, releasing small glowing red objects +2008-02-24,40.8930556,-74.5822222,Wharton,NJ,other,360,Object over Rt. 80 standing still with bright white light on bottom and sides...no sound..no movement... +2008-02-25,40.6638889,-74.2111111,Elizabeth,NJ,sphere,30,3 white orbs moving together against clear blue sky +2009-02-24,32.7947222,-116.9616667,El Cajon,CA,triangle,600,3 bright red lights in triangle shape eastern sky San Diego County +2009-02-24,32.7677778,-117.0222222,La Mesa,CA,formation,480,Three bright red lights hovering in Eastern sky. Lights formed an equilateral triangle and then shifted sideways +2009-02-24,32.7947222,-116.9616667,El Cajon,CA,triangle,600,Three red lights outline huge red triangle over San Diego Coutny sky. +2009-02-24,33.3763889,-117.2502778,Fallbrook,CA,circle,180,Orb that popped in and out of the atmosphere twice +2009-02-24,34.1975,-119.1761111,Oxnard,CA,other,180,Golden UFO entering earths atmosphere emitting 3 objects then going back out into atmosphere +2009-02-24,39.4488889,-91.0513889,Louisiana,MO,light,180,Hugh lighted area at the horizon moving slowly, then stopped and disappeared at 5:30 A.M. +2009-02-24,27.9472222,-82.4586111,Tampa,FL,cigar,180,Wierd cigar shape flying object with strange aura and no sound. +2009-02-24,38.7072222,-121.28,Citrus Heights,CA,circle,30,lights moved in an oblomg movement, disappearing and reapearing with no pattern. Height between 20ꯠ agl and 30ꯠ agl. The movement +2009-02-24,36.5433333,-119.3861111,Dinuba,CA,sphere,600,Sphere-like aircraft flying in circle eight pattern at a flying height of a commercial airline. +2009-02-24,42.5583333,-71.2694444,Billerica,MA,triangle,10,Triangular object in sky with lights, accelerated out of view quickly. +2009-02-24,39.9583333,-84.1722222,Tipp City,OH,triangle,10,Triangle object with no lights +2009-02-24,35.3163889,-81.1763889,Dallas,NC,cigar,10,To whom it may concern; I want to report a UFO sighting I witnessed on Jan.24th 2009 at 9:30 EST.I live in Gaston County, N.C. out +2010-02-24,33.6894444,-94.2855556,Arden,AR,formation,1200,Without knowing I disturbed the same lighted aircraft that my family and I have seen 24 years ago in the same area as before. +2010-02-24,43.4666667,-70.7941667,Springvale,ME,sphere,10800,Multiple sightings of a variety of shapes of UFOlike crafts, many photos!!! +2010-02-24,38.4405556,-122.7133333,Santa Rosa,CA,diamond,120,small shiny diamond hovers +2010-02-24,32.0958333,-98.9633333,Rising Star,TX,light,600,Strange lights appeared in the sky near Rising Star,Texas +2011-02-24,30.3319444,-81.6558333,Jacksonville,FL,circle,3,Bright meteor-like object falling from upper left sky to lower right quickly changed directions and disappeared over the horizon +2011-02-24,30.3319444,-81.6558333,Jacksonville,FL,triangle,120,We were outside i step to the side by myself to look at the stars and i seen a triangular shaped object with bright white lights... ive +2011-02-24,34.3988889,-119.5175,Carpinteria,CA,oval,600,Late Thursday, Feb. 24, I saw 2 oval orange lights over the Santa Barbara Channel for 10 minutes. +2011-02-24,33.1191667,-117.0855556,Escondido,CA,triangle,60,It was 10:30 at night when I spotter a grey triangular flying object that was at a very low altitude. +2012-02-24,35.4675,-97.5161111,Oklahoma City,OK,circle,60,Huge circular craft high in the sky. +2012-02-24,40.6366667,-80.2402778,Aliquippa,PA,triangle,2,Triangular massive object with red lights +2012-02-24,37.0430556,-100.9205556,Liberal,KS,changing,15,Triangle lights with one light moving position to left side. +2012-02-24,36.175,-115.1363889,Las Vegas,NV,light,600,A 3-light and a 4-light formation "dancing" in and out of the Luxor hotel light beam in Las Vegas +2012-02-24,40.2969444,-111.6938889,Orem,UT,oval,60,Orange glow in the northern sky. +2012-02-24,41.7691667,-72.965,Burlington,CT,light,600,Strange organish bright light over northwest CT +2013-02-24,35.3733333,-119.0177778,Bakersfield,CA,light,300,Big White Light Hovering Slowly (No Sound NO LIGHTS) Headed SE in Bakersfield, CA. +2013-02-24,34.1477778,-118.1436111,Pasadena,CA,formation,900,Swarm of unidentified objects over Pasadena, CA. +2013-02-24,34.1952778,-79.7627778,Florence,SC,formation,600,Around 5pm I noticed from my yard five bright circular lights. They were in a formation like an arrow +2013-02-24,40.5583333,-85.6591667,Marion,IN,cigar,900,Starlike light, orange lights. +2013-02-24,41.9316667,-87.9888889,Addison,IL,sphere,30,Was outside having a smoke and just watching a plane over the south eastern skies when I glance to my left which if facing north. +2013-02-24,41.2458333,-75.8816667,Wilkes-Barre,PA,light,300,6 lights in (3 then 2 then 1) formation moving southeast and up into the cloud deck. +2013-02-24,35.7883333,-83.5544444,Pigeon Forge,TN,triangle,120,Saw a dark triangular object with bright red lights that flew over us. +2013-02-24,42.0708333,-83.2466667,Rockwood,MI,disk,8,A vibrant, sky blue disk traveling at remarkable speeds as we got onto I-75. I got a clear view of the craft, I know what I saw. +2013-02-25,41.2888889,-72.6822222,Guilford,CT,sphere,180,It was sphere flotting above the rooftops and landid behind a house, this is the 3rd time ive seen it in 3 years now, and i do have a p +2014-02-24,28.5380556,-81.3794444,Orlando,FL,triangle,900,Triangular shaped aircraft followed by helicopter above 535. +2014-02-24,27.1675,-80.2663889,Palm City,FL,circle,180,Bright orange light rotating in sky but no sound of an aircraft. +2014-02-24,36.2125,-79.7138889,Browns Summit,NC,light,600,Yellow-white light ball of light sitting above tree tops moving slowly and fading in and out. +2014-02-24,36.1783333,-84.1852778,Briceville,TN,other,120,Small, stealth craft appeared to go down three miles East of Pilot Mountain. +2014-02-24,38.5816667,-121.4933333,Sacramento,CA,circle,30,Very high in a perfectly clear blue sky appeared to be round lights 2, round or disc shaped moving in and out of view then vanishing. +2014-02-24,42.7883333,-71.2013889,Salem,NH,triangle,90,Clearly a triangular craft with a white light on each corner and slowly blinking red light in the center +2014-02-24,33.6102778,-114.5955556,Blythe,CA,triangle,300,3 lights flying in triangle formation traveling east. +2014-02-24,36.7477778,-119.7713889,Fresno,CA,unknown,300,Large flying object in the dark sky appeared to be dark and had 4 or 5 red flashing lights. +2014-02-24,44.2794444,-83.4902778,East Tawas,MI,unknown,180,New type of aircraft? +2014-02-24,37.3394444,-121.8938889,San Jose,CA,light,30,((HOAX??)) Bright white light flew south and dimmed until it disappeared. +2014-02-24,39.8494444,-75.3561111,West Chester (Near),PA,light,1800,((HOAX??)) Three lights in the sky over route 202 near West Chester, PA. +2014-02-24,39.4688889,-76.2336111,Belcamp,MD,changing,60,Was taking out trash and a white light which looked like a plane just went across the sky then I saw a little red. +2014-02-24,39.9522222,-75.1641667,Philadelphia,PA,fireball,30,Fireball in Philadelphia. +2014-02-24,39.9522222,-75.1641667,Philadelphia,PA,circle,25,2 of us saw a white ball of light traveling at a great deal of speed crossing I-95 near Philadelphia airport. After it passed little fl +2014-02-24,39.6547222,-77.5730556,Smithsburg,MD,other,5,((HOAX??)) Self-luminous object fell, government cars in pursuit. +1968-02-25,46.4547222,-90.1708333,Ironwood,MI,sphere,1200,A small UFO we chased in a Piper Cherokee plane. Object led us in a circle then passed below us. +1979-02-25,41.1013889,-81.4419444,Tallmadge,OH,triangle,540,Slow moving triangular shape---at least the light pattern,seen in tallmadge ohio 2-5-79 +1988-02-25,27.9375,-82.2861111,Brandon,FL,light,300,One evening I looked 100' ahead and 100' high and saw what looked like stadium lights in a vacant field where there was no lighting wha +1990-02-25,29.9972222,-98.0983333,Wimberley,TX,triangle,300,Siting of a triangular shaped UFO. +1993-02-25,39.7286111,-121.8363889,Chico,CA,triangle,20,Three silver/grey triangle crafts, at very high altitude, no sound, no lights. Chico Ca. 1992/93 +1997-02-25,42.2411111,-88.3161111,Crystal Lake,IL,sphere,4,I was laying on the sofa looking out the window at 2:00am with the Moon and Mars in the sky and all of the sudden I saw an orange-red b +1997-02-25,40.3802778,-79.0755556,New Florence,PA,light,1800,Bright Light in the East Hovering +1998-02-25,33.4483333,-112.0733333,Phoenix,AZ,light,73800,Long Streaks of Light (that put me in mind of instant "Icicle Like" Streaks Suddenly Appearing All Over The Sky (Forming Clouds)With Ho +1998-02-25,40.2736111,-76.8847222,Harrisburg,PA,cigar,1380,cigar shaped silver craft with blue sphere that jumped around it, Real high,slow speed, no clouds. 11:25am. lots of people about but no +1998-02-25,36.1658333,-86.7844444,Nashville,TN,fireball,120,Unusual Blue Light (Meteorite or Flare) 2 minutes observed traveling south to north. +1999-02-25,32.9125,-96.6386111,Garland,TX,flash,1200,I was sitting on the couch and glanced out the window, at first I thought it was a plane, but a few minutes later, it was still there, +1999-02-25,42.1155556,-75.9591667,Johnson City (Over, Northern Sky),NY,fireball,2,It was a green fireball with a green trailer streaking straight into the horizon. +1999-02-25,37.3394444,-121.8938889,San Jose,CA,oval,10,Saw an unidentified aircraft flying at very high speed while landing at San Jose Int'l Airport. +2001-02-25,29.6194444,-95.6347222,Sugar Land,TX,sphere,600,red and white sphere craft in sugarland tx +2001-02-25,38.4038889,-96.1813889,Emporia,KS,circle,60,I saw a round, flying object in the middle of a field. +2001-02-25,32.1783333,-97.2577778,Covington,TX,egg,45,UFO sighting Over President Bush's Tx White House? +2001-02-25,35.6708333,-80.4744444,Salisbury,NC,circle,8,red light got larger as it dissapeared behind woods +2001-02-25,40.7255556,-75.3944444,Bath,PA,formation,45,craft with five lights seen in lehighvalley pa +2001-02-25,38.9611111,-121.5433333,Rio Oso,CA,triangle,10,I saw a bright triangluar object that split into two objects and went in opposite directions. +2002-02-25,46.04,-118.6711111,Touchet,WA,light,300,We saw a very bright light, hovering, and then moving rapidly away over the desert hills of SE Washington. +2002-02-25,33.4483333,-112.0733333,Phoenix,AZ,other,60,rumbling roaring sound from unseen jets +2002-02-25,39.2191667,-121.06,Grass Valley,CA,sphere,180,Watching the flight pattern from Beal Airforce Base that runs along the northeast section of the sky over Alta Sierra(a sub-division of +2002-02-25,42.0083333,-91.6438889,Cedar Rapids,IA,oval,300,FRIENDS AND I WERE OUTSIDE AND ALLLLLLL THE SUDDEN A HIGH PITCHED SOUND CAME OVER US AND WE TRIED EVERYTHING FOR THE SOUND TO GET BLOCK +2002-02-25,42.0083333,-91.6438889,Cedar Rapids,IA,oval,300,i am walking then it comes over me then i fall asleep +2002-02-25,33.4483333,-112.0733333,Phoenix,AZ,unknown,420,Phoenix Az, 6-8 lights 2-25-02 21:30, Lights seemed to make up larger craft +2003-02-25,47.9791667,-122.2008333,Everett,WA,unknown,1,unknown cause of shadow +2003-02-25,47.5675,-122.6313889,Bremerton,WA,chevron,300,Chevron shaped craft seen flying over PSNS in Bremerton, WA +2003-02-25,33.8302778,-116.5444444,Palm Springs,CA,light,38,The sphere of light was silent and being followed by a helicopter with no visable lights. +2004-02-25,38.9716667,-93.4944444,Emma (Approx.),MO,unknown,900,Very large object in the night sky about 3 hundred feet off of the ground not moving or making a sound w/blue flashing lights. +2004-02-25,38.9391667,-76.9341667,Bladensburg,MD,changing,900,Object was CigarShaped, very bright leaving short ,thin exhaust vapors. It moved at different speeds could stop on a Dime. +2004-02-25,30.0797222,-95.4169444,Spring,TX,diamond,330,something flew over house and unmarked helicopters chased after it. +2004-02-25,39.7294444,-104.8313889,Aurora,CO,disk,600,Bright object in mid day moved from North to South +2004-02-25,41.2736111,-82.8416667,Bellevue,OH,disk,180,Small disk-shaped object with numerous green lights, moved left and right slowly. +2004-02-25,33.3761111,-110.7530556,Pinal County,AZ,other,15,Amber-colored lights in the sky over Arizona, which disappeared instantaneously. +2004-02-25,48.1988889,-122.1238889,Arlington,WA,other,900,Round object changing colors from white to red, green, yellow or orange. +2005-02-25,47.1794444,-113.4836111,Seeley Lake,MT,light,1800,((NUFORC Note: We have amended the date above. We suspect a sighting of Sirius. PD)) Unusual ball(s) of light in Montana sky +2005-02-25,42.8688889,-76.9780556,Geneva,NY,other,600,Flying light over a feild on the way to work. +2005-02-25,44.0805556,-103.2305556,Rapid City,SD,light,3,landing of unidentified object +2005-02-25,38.8186111,-81.7108333,Ripley,WV,circle,60,A round shiney object that was slower than a helicopter and like a ballon. +2005-02-25,30.3958333,-88.8852778,Biloxi,MS,sphere,720,Biloxi Ms Sighting +2005-02-25,39.4666667,-87.4138889,Terre Haute,IN,fireball,3600,They got real close and started to change color. +2005-02-25,40.6386111,-73.6405556,Oceanside,NY,disk,600,Saucer shaped disc surrounded by brilliant light +2005-02-25,39.6411111,-85.1411111,Connersville,IN,circle,900,The cirular craft went straight up and disappeared. +2005-02-25,46.815,-101.8294444,Glen Ullin,ND,chevron,2700,sighting in western north dakota +2006-02-25,37.2152778,-93.2980556,Springfield,MO,oval,420,Ufo near Stockton Lake in Missouri as we where heading back to Springfield +2006-02-25,38.2541667,-85.7594444,Louisville,KY,changing,600,ufo sighting in louisville ky, it just vanished! +2006-02-25,33.0786111,-116.6011111,Julian,CA,light,10800,Long sighting/studied lights +2006-02-25,34.2011111,-118.5972222,Canoga Park,CA,changing,86400,many craft change color shape and differant sizes, I felt an eletric/magnetic sensation +2006-02-25,43.4194444,-83.9508333,Saginaw,MI,flash,60,More than one sighting in saginaw! +2007-02-25,33.2486111,-111.6336111,Queen Creek,AZ,light,1800,Red light over Queen Creek, AZ. ((NUFORC Note: Sirius or Venus?? PD)) +2007-02-25,32.6097222,-85.4808333,Auburn,AL,light,5,Intense bright, spherical white light over Auburn University campus ~9:30pm 2/25/07 +2007-02-25,36.46,-76.3936111,Horseshoe,NC,fireball,8,A fireball burning a bright greenish-yellow streaked across the road I was driving on. +2007-02-25,34.6855556,-82.9533333,Seneca,SC,teardrop,2,CLOSE RANGE LARGE BRIGHT BLUE BALL OF LIGHT HEADING NORTH. +2007-02-25,26.1219444,-80.1436111,Fort Lauderdale,FL,fireball,5,Burning fireball shoots through northern sky over Florida +2008-02-25,38.0494444,-122.1575,Benicia,CA,triangle,120,Midday sighting of UFO with apparent intercept attempt +2008-02-25,37.775,-122.4183333,San Francisco,CA,sphere,240,Small White Sphere Stops Above Transamerica Building and Then Floats Away +2008-02-25,25.9013889,-97.4972222,Brownsville,TX,cylinder,180,BROWNSVILLE,TX USA Date and Time of Sighting? 2-25-08 6:15 PM Clear weather blue skys conditions at time of sighting. Sighti +2008-02-25,40.7919444,-73.5402778,Jericho,NY,other,120,I know what air planes look like when they fly over! This was not one. This came from the south and was at first a gold light it had fl +2008-02-25,38.2972222,-122.2844444,Napa,CA,light,300,Bright orange light drifted across the sky. +2008-02-25,35.6125,-77.3666667,Greenville,NC,light,300,A light with no blinking lights at all. ((NUFORC Note: possible satellite, or tumbling booster, we wonder. PD)) +2008-02-25,26.6155556,-80.0572222,Lake Worth,FL,circle,3600,A bright colored light flew across the sky faster then any object we had ever seen. +2008-02-25,27.2936111,-80.3505556,Port Saint Lucie,FL,flash,900,A small light flashing and moving in the sky. +2009-02-25,47.6063889,-122.3308333,Seattle,WA,fireball,120,bright erratically moving light over south seattle. +2009-02-25,47.6063889,-122.3308333,Seattle,WA,oval,60,A glowing orange elongated orb was seen by 2 men to be moving swiftly over Seattle, Washington during daylight. +2009-02-25,41.6313889,-72.4602778,Marlborough,CT,triangle,600,3 red pulsating lights in a perfect triangle glide over Marlborough, CT +2009-02-25,25.9083333,-80.3088889,Miami Lakes,FL,triangle,120,Strange triangular aircraft fly slowly in air, but too low to be a airplane with lights all around. +2009-02-25,43.2938889,-72.2608333,Unity,NH,rectangle,5400,((HOAX??)) HUGE MOTHER SHIP OVER UNITY, NH-BLUE AND RED LIGHTS, RECTANGLE, QUIET HUMMING NOISE. +2009-02-25,38.8338889,-104.8208333,Colorado Springs,CO,disk,8,bluish white colored disc flys silently across sky and vanishes +2009-02-25,29.6991667,-91.2066667,Morgan City,LA,light,3600,Louisiana -Thibedeaux-Morgan City, Big, moving light. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2009-02-25,33.2097222,-87.5691667,Tuscaloosa,AL,sphere,30,bright blue sphere hovering for over 20 seconds before bolting +2009-02-25,38.9477778,-75.8847222,Ridgely,MD,light,2400,A Whitish/Orange Light in the sky made no sound as it traveled overhead. +2009-02-25,46.9966667,-120.5466667,Ellensburg,WA,circle,5,A large object at night, having nothing but reflective light, travelling at great speed. +2010-02-25,42.0833333,-71.0188889,Brockton,MA,light,14400,Next to Route 24 I was out on my balcony having my usual cigarette break and had a long night ahead of me to study for an exam the foll +2010-02-25,34.2388889,-117.2327778,Twin Peaks,CA,circle,20,strange loud aircraft with green neon on it's belly flying sideways into the sky +2010-02-25,44.3836111,-89.8172222,Wisconsin Rapids,WI,unknown,240,Bright light flying accross the sky at speeds approx. 50 times that of an aircraft +2010-02-25,34.1072222,-118.0569444,Temple City,CA,light,240,my lady & I witnessed a orange light floating like a balloon moving. then stopped moving, for about 20sec nothing happened until a stre +2011-02-25,30.6325,-97.6769444,Georgetown,TX,light,300,2 ufo no picture Georgetown tx +2011-02-25,37.3838889,-93.1511111,Fair Grove,MO,other,20,Two hovering objects vanished into thin air. +2011-02-25,35.2847222,-81.2841667,Bessemer City,NC,circle,30,Daytime sighting of round rotating low altitude UFO. +2011-02-25,28.2438889,-82.7194444,New Port Richey,FL,cigar,120,White, Shiny Cigar Shaped Craft Overhead +2011-02-25,47.9791667,-122.2008333,Everett,WA,light,900,Bright white light and changed 10 min later with light beams or haze on top and bottom. Then dimmed while moving slowly. +2011-02-25,42.5836111,-83.2455556,Bloomfield Hills,MI,disk,600,Large disk with bright lights spotted over Metro Detroit +2011-02-25,40.4775,-104.9008333,Windsor,CO,unknown,300,((HOAX??)) Multicolor lights flashing in thick clump of trees. +2011-02-25,47.8602778,-122.2030556,Mill Creek,WA,triangle,10800,bright light changing colors over monroe/clearview/snohomish, wa +2012-02-25,37.4327778,-89.7994444,Millersville,MO,light,10800,Saw multi colored object in northern sky. Not a star or planet I was awoken around midnight by my dogs making very different howls not +2012-02-25,39.8977778,-84.3063889,Union,OH,formation,600,Red/orange Lights over Union Ohio with sound at first +2012-02-25,40.7355556,-74.1727778,Newark,NJ,other,60,Green laser lights in the sky simutaneosly and evenly shooting parallel to each other +2012-02-25,37.2705556,-76.7077778,Williamsburg,VA,light,60,Flashing red lights that made no noise, that just stood still, some moved slowly and then dissapeared +2012-02-25,44.0216667,-92.4697222,Rochester,MN,triangle,300,3 red lights formed into a triangle formation, moving toward each other, then fading. +2012-02-25,38.6272222,-90.1977778,St. Louis,MO,triangle,60,Very high space craft moving extremely fast and jogging across sky, horizon to horizon in a less than a minute. +2012-02-25,42.8125,-86.0186111,Zeeland,MI,light,300,Me and my fiance and manager saw ufos +2012-02-25,35.2311111,-94.4777778,Pocola,OK,light,7200,Stationary light in the sky. ((NUFORC Note: Sighting of Jupiter and/or Venus, we suspect. PD)) +2012-02-25,33.3061111,-111.8405556,Chandler,AZ,light,240,02-25-2012 - 9pm- I-10 to Tucson from Phx. Strange group of pulsating lights- +2012-02-25,39.0908333,-84.85,Lawrenceburg,IN,circle,300,Bright orange orb in the sky over Dearborn County, IN February 25, 2012. +2012-02-25,35.2269444,-80.8433333,Charlotte,NC,cross,3,Large white cross flying over Charlotte, NC +2013-02-25,36.7477778,-119.7713889,Fresno,CA,light,60,The object had colors associated with no other aircraft to my knowledge and was silent; also identified by other witnesses. +2013-02-25,39.9611111,-82.9988889,Columbus,OH,circle,30,Large formation of 15-20 small white glowing orbs heading northward, vanished. +2013-02-25,33.1975,-96.615,Mckinney,TX,egg,2,Red light shot across Texas sky on February 25, 2013. +2013-02-25,33.1975,-96.615,Mckinney,TX,egg,2,Red light shot across Texas sky on February 25, 2013. +2013-02-25,36.175,-115.1363889,Las Vegas,NV,oval,10,Changing colors oval shape object over Las Vegas. +2013-02-25,44.0522222,-123.0855556,Eugene,OR,sphere,120,2 lights in the night sky +2013-02-25,39.6580556,-78.9286111,Frostburg,MD,chevron,0.3,5 lights in V formation. Slow rate of speed and noisless. +2013-02-25,27.9472222,-82.4586111,Tampa,FL,light,5400,5 crafts spotted in Tampa. +2014-02-25,41.1305556,-85.1288889,Ft. Wayne,IN,light,15,((HOAX??)) Orange beams in the sky; a "V" shaped lighting bolt struck it; I-65 S, N of Ft. Wayne and north of Indianapolis. +2014-02-25,42.8666667,-106.3125,Casper,WY,circle,1800,The fastest most nimble flying whatever I have ever seen. +2014-02-25,41.2683333,-110.9625,Evanston,WY,light,600,8 ORANGE orbs seen flying in single file formation about 750ft up. +2014-02-25,32.7555556,-98.9019444,Breckenridge,TX,oval,900,Bright orange glow in the SW sky near Fort Worth, TX. +2014-02-25,36.8588889,-120.455,Firebaugh (Near),CA,formation,120,Formation or cluster of five lights catapulting and zooming dramatically near the I-5 freeway at night. +2014-02-25,33.4483333,-112.0733333,Phoenix,AZ,fireball,50,Red glow over Deer Valley, AZ. +2014-02-25,39.4141667,-77.4108333,Frederick,MD,light,600,"Star" appeared to split into two. +1993-02-26,40.7141667,-74.0063889,New York City,NY,light,1.2,Bright White High Speed Light over Newark New Jersey/New York Harbor/Staten Island Area +1997-02-26,30.6941667,-88.0430556,Mobile,AL,oval,600,An oval, dark blue, light blue exaust. +1998-02-26,43.2208333,-77.2833333,Ontario,NY,disk,5,from rt. 104 looking north saw bright orange light that faded away into a clear starlit night. traveling north toward lake ontario saw +1998-02-26,38.8338889,-104.8208333,Colorado Springs,CO,fireball,40,A slowly descending Blue-Green Fireball. First Appeared at apx. 52 deg. El. and went down to apx. 0 deg. Disappeared behind Condo's. +1998-02-26,30.4380556,-84.2808333,Tallahassee,FL,triangle,1200,Black UFO teases Tallahassee for about 20 minutes with no report,s from police who witness event. +1999-02-26,37.0058333,-121.5672222,Gilroy (Approximatly),CA,flash,4,While driving North on the 101 85 miles South of San Francisco, I saw a bright flash transverse the sky from zenith to almost the horiz +1999-02-26,41.4169444,-87.3652778,Crown Point,IN,light,60,a bright light with red highlights it also had dim white lights in a sphere shape approx. eight lights +1999-02-26,47.5675,-122.6313889,Bremerton,WA,other,300,Looked up lastnight, surprised to see (stars) when the weather had been rainy most of the day. My attention was directed to sudden mov +1999-02-26,39.2902778,-76.6125,Baltimore (Reisterstown Road &Amp; Northern Arkway),MD,rectangle,60,Rectangular, vertical shaped cloud, did not dissipate, had hole in center and looking lke a rather large floppy disk of the 5" varity. +2000-02-26,39.8905556,-84.1988889,Vandalia,OH,light,7200,What at first appeared to be stars, were not. The UFO's (numbering at least 75 in number) had definitive patterns and actions. +2000-02-26,43.0202778,-78.8805556,Tonawanda,NY,egg,60,Orange egg shaped object traveling upward at 3 rates of speed and breaking the atmosphere or disintegrating-followed by a black triangu +2000-02-26,35.9938889,-78.8988889,Durham,NC,circle,5,I witnesswed a light in the sky increase in size and brightness. As it reached its pinnacle it began to decrease in size and brightness +2000-02-26,38.1375,-102.85,Mcclave,CO,light,420,Unusual orange-gold light in southern sky +2000-02-26,41.5822222,-85.8344444,Goshen,IN,light,600,A light that approximated a full moon in appearance above the tops of tress that are approximately 200-300 yards from observation point +2001-02-26,35.2269444,-80.8433333,Charlotte,NC,unknown,120,1:15am Feb 26 2001 red & white strobe like object moving rapidly +2001-02-26,44.5647222,-123.2608333,Corvallis,OR,unknown,3,Not a shooting star, not an aircraft, quiet, green, large, and materialized out of thin air. +2001-02-26,45.5236111,-122.675,Portland,OR,chevron,180,2 V-shaped objects with bright lights seen near NW Portland. +2001-02-26,33.5975,-112.2711111,Sun City,AZ,light,20,A Single White "STRING" light +2001-02-26,41.0255556,-81.73,Wadsworth,OH,formation,7,Six Star like objects in tight formation moving at a high rate of speed +2001-02-26,40.155,-74.8291667,Levittown,PA,light,5,it was mostly clear just a few light clouds.there are a lot of lights around my house so only the brightest stars are visible to the na +2002-02-26,35.9605556,-83.9208333,Knoxville,TN,unknown,45,A strange noise scared the shit out of me and I would like to know why these beings picked me. +2002-02-26,42.2305556,-97.0175,Wayne,NE,teardrop,3600,I looked in the sky, and there were 8 silver, teardrop shaped objects floating over a field. They flashed in and out of view, and seeme +2002-02-26,39.41,-74.365,Brigantine,NJ,light,90,Lights over Brigantine, New Jersey. +2002-02-26,34.1083333,-117.2888889,San Bernardino,CA,fireball,300,Fast moving Fireball with no certain direction! +2003-02-26,38.005,-121.8047222,Antioch,CA,fireball,300,Fireball like object, dropping something then disappearing +2003-02-26,41.2008333,-73.3811111,Weston,CT,light,300,White/green/red stationery light in sky...2nd light nearby flashing...then faded away. +2003-02-26,47.5675,-122.6313889,Bremerton,WA,chevron,300,Triangular/chevron shaped craft flying low over the city of Bremerton, WA +2004-02-26,32.6958333,-97.6019444,Aledo,TX,disk,600,1 DISC shaped object - did not seem to be controlled +2004-02-26,41.965,-80.4075,East Springfield,PA,unknown,600,2 glowing objects red green white hovering with slow movements +2005-02-26,35.8422222,-90.7041667,Jonesboro,AR,disk,180,it was fast bright and round with a spoon shape in the front of it +2005-02-26,35.6225,-117.67,Ridgecrest,CA,unknown,1800,orange light drops what looks like asteroids +2005-02-26,64.8472222,-148.0144444,Ester,AK,flash,1500,lights in the sky +2005-02-26,39.2513889,-119.9719444,Incline Village,NV,unknown,300,Unknown light/disc over Incline Village, NV - Disc changed color from white to red/spinning rainbow color, then disappeared after 5 min +2005-02-26,40.8,-96.6666667,Lincoln,NE,changing,180,black object moving slowly in broad daylight suddenly disappears +2005-02-26,45.4463889,-122.6380556,Milwaukie,OR,sphere,300,three quiet spheres in a perfect formation. Stopped then disapeared. +2005-02-26,40.7241667,-73.7155556,Bellerose,NY,other,10,Silent, goldish-brown craft +2006-02-26,39.9522222,-75.1641667,Philadelphia,PA,light,1,Bright Green Light appears suddenly and falls from the sky +2006-02-26,34.0094444,-118.1044444,Montebello,CA,other,300,It was cloudy that night but the sky had been clearing. i was walking a friend to his car when we both observed a orange glow loating a +2006-02-26,35.7602778,-84.1358333,Friendsville,TN,fireball,5,Yellow-White fireball viewed over southeast Tennessee - Possible Space Debris? +2006-02-26,32.2730556,-89.9858333,Brandon,MS,light,3600,the most interresting thing we ever saw shear power over gravity and reason . +2006-02-26,39.1011111,-74.7180556,Avalon,NJ,cone,60,LOOKING OUT OVER THE ATLANTIC I NOTICED A VERY BRIGHT, GLOWING YELLOW/RED/ORANGISH HEADING NORTH UP THE EASTERN SEABOARD, I LOOKED THRO +2006-02-26,35.6869444,-105.9372222,Santa Fe,NM,light,120,brilliant light skids low across sky without a sound +2006-02-26,27.9472222,-82.4586111,Tampa,FL,unknown,1800,Large diamond or saucer-shaped obect just north of Tampa, FL with red flashing lights top and bottom and white lights at ends. +2006-02-26,32.7152778,-117.1563889,San Diego,CA,unknown,180,Bright orange object west of the Big Dipper visible for 3 minutes +2007-02-26,38.5816667,-121.4933333,Sacramento,CA,cigar,20,Driving down the highway and saw a cigar shaped craft with a red light in the middle. +2007-02-26,33.7358333,-118.2913889,San Pedro,CA,oval,30,Oval cylindrical shaped object Bottom was red and rest was white. +2007-02-26,46.3238889,-120.0075,Sunnyside,WA,light,15,green light similar to falling star +2007-02-26,39.7091667,-84.0633333,Beavercreek,OH,circle,120,Very Large Object With Bright Red Lights +2008-02-26,32.7833333,-96.8,Dallas,TX,triangle,120,Triangular craft slow and low over Dallas. +2008-02-26,33.7669444,-118.1883333,Long Beach,CA,triangle,5,White colored upside down V shaped light/craft. +2008-02-26,40.801944399999996,-72.8413889,Mastic,NY,rectangle,900,Rectangular object floating above trees. +2008-02-26,34.2819444,-118.4380556,San Fernando,CA,cigar,900,Large object that spawned 8, 10 or more bright saucer-type bright objects +2008-02-26,42.8594444,-72.7263889,Marlboro,VT,unknown,30,Strange objects emerge from clouds +2008-02-26,31.8541667,-110.9930556,Green Valley,AZ,triangle,7200,Triiangular object seen over Green Valley, AZ 2/26/08 +2008-02-26,31.8541667,-110.9930556,Green Valley,AZ,triangle,900,Live Green valley. Saw craft over the hills to the East far off in the distance. Craft appeard to remain very stationary, or or times t +2008-02-26,30.2947222,-82.9841667,Live Oak,FL,sphere,300,In the south night sky I witnessed two golden, glowing orbs appearing fives times larger than mosts starts +2009-02-26,40.8013889,-72.8680556,Shirley,NY,circle,120,im convinced i've seen a UFO this day in the sky over my house. +2009-02-26,41.7758333,-72.5219444,Manchester,CT,light,60.3,A bright star type of object, with controlled movement, that came to a stop then vanished. +2009-02-26,42.5444444,-72.6061111,Deerfield,MA,diamond,120,Diemond shape flying lights, took two minutes to pass over head, low and quiet. +2009-02-26,34.7575,-112.4530556,Chino Valley,AZ,cigar,600,Bright, horizontal , non-flashing , slow moving without tilting, landed on a mesa, lights dimmed. +2009-02-26,39.7391667,-104.9841667,Denver,CO,light,20,Witnessed V shaped lights moving without sound over Denver, Colorado for 20 seconds +2009-02-26,48.7005556,-112.3191667,Santa Rita,MT,oval,1200,oval shaped object over Rocky Mountains +2009-02-26,38.0844444,-99.8930556,Jetmore,KS,circle,1800,Bright multi-colored object that slowly hovers to the ground in the W sky in small KS town. ((NUFORC Note: Venus or Sirius? PD)) +2009-02-26,28.4366667,-99.2347222,Cotulla,TX,light,120,Bright yellowish lights in a triangle to diamond shape in the west skies over Cotulla Texas! +2009-02-26,33.0533333,-97.4716667,Rhome,TX,unknown,120,Two red circular orbs low in night sky. +2010-02-26,25.4683333,-80.4777778,Homestead,FL,sphere,300,4 extremely bright white, large objects, moving erractically, and extremely fast over Homestead AFB, Fla +2010-02-26,19.6255556,-155.0416667,Keaau,HI,sphere,10,BRIGHT GREEN SPHERE-BALL SHAPED OBJECT +2010-02-26,38.2919444,-122.4569444,Sonoma,CA,egg,1800,Large unidentified craft observed in the Napa sloughs. +2010-02-26,36.175,-115.1363889,Las Vegas,NV,oval,1200,2 dark color ovals hovering very high in the sky for 20 minutes. +2011-02-26,37.8044444,-122.2697222,Oakland,CA,cylinder,10,I was standing on my roof around midnight and saw a flying object no more than 3000 Ft in altitude travelling south silently and at a h +2011-02-26,34.9675,-82.4436111,Travelers Rest,SC,unknown,60,Four lights hovering above us, following us, then disappearing. +2011-02-26,36.0688889,-79.4008333,Graham,NC,light,37800,Very bright object with blue, red, and orange lights flickering; moved slowly stayed in the same area of the sky. +2011-02-26,30.2383333,-90.92,Gonzales,LA,teardrop,45,Bright orange fiery upside down teardrop floating slowly under clouds in a straight line in Gonzales, LA. +2011-02-26,27.9455556,-82.2580556,Valrico,FL,fireball,1200,West to East flight pattern of 12 Unknown glowing objects. ((NUFORC Note: Possible "Chinese" lanterns, we suspect. PD)) +2011-02-26,36.6177778,-121.9155556,Pacific Grove,CA,light,600,i was looking in direction of the ocean when i noticed this 2 very strong red light in the sky ..it seems not far up was making +2012-02-26,43.2472222,-79.0502778,Youngstown,NY,oval,45,Very bright silver blue dropped slowly downward and shot off to the right at unreal speed +2012-02-26,36.1866667,-94.1286111,Springdale,AR,triangle,3600,Sitting outside on my lunch break when I noticed a black dot in the sky. +2012-02-26,48.7597222,-122.4869444,Bellingham,WA,light,180,Four moving UFOs over Bellingham, Wash. +2012-02-26,38.8002778,-90.6263889,Saint Peters,MO,disk,300,Photos show strange disk moving across sky +2012-02-26,42.2708333,-83.7263889,Ann Arbor,MI,rectangle,2,Rectangular Craft seen over Ann Arbor, Mi. +2012-02-26,39.1383333,-78.6702778,Rio,WV,flash,10,Strange flash of light once every four minutes in distant space west of orions belt +2012-02-26,41.85,-87.65,Chicago,IL,rectangle,15,Low flying brown rectangular object +2012-02-26,42.7844444,-83.2397222,Lake Orion,MI,other,1350,A foot-wide beam of "light" emanated across the sky, after noticing and observing for ten minutes it dissipated. +2012-02-26,43.2708333,-89.7219444,Sauk City,WI,fireball,300,Bright Fireball flashing light, split in two and converged back together to exit horizon +2012-02-26,37.0297222,-76.3455556,Hampton,VA,formation,300,Lit offset T formation over hampton +2012-02-26,42.7325,-84.5555556,Lansing,MI,sphere,2,Green light doing falling motion in the sky +2013-02-26,40.9994444,-75.1816667,East Stroudsburg,PA,triangle,900,Triangle shape. +2013-02-26,43.1063889,-76.2180556,Liverpool,NY,sphere,360,Sphere shape near full moon. +2013-02-26,30.775,-94.4152778,Woodville,TX,fireball,360,Large red fire ball and several white lights. +2013-02-26,33.4708333,-81.975,Augusta,GA,light,1200,Bright white star like light and smaller red light alternated fading and blinking out and on under ceiling of solid cloud cover. +2013-02-26,36.175,-115.1363889,Las Vegas,NV,circle,10,Black pea-sized mass with long vapor trail passing moon through telescope! +2013-02-26,34.1952778,-79.7627778,Florence,SC,disk,60,Two nearly invisible crafts spotted in Florence, South Carolina, before massive power outage. +2013-02-26,32.7355556,-97.1077778,Arlington,TX,oval,600,White glowing object with fire coming out of it. +2013-02-26,38.9516667,-92.3338889,Columbia,MO,fireball,180,Single large fireball traveling SSE with no decrease in altitude for two minutes before abruptly extinguishing. +2013-02-26,32.9786111,-115.5294444,Brawley,CA,triangle,2100,3 orange bright triangle or arrowhead shape lights reappeared. +2013-02-26,40.7141667,-74.0063889,New York City (Bronx),NY,light,720,I seen the light moving real fast in a circular motion. +2013-02-26,40.3805556,-75.0086111,Solebury,PA,unknown,3,Bright greenish blue flash in sky followed by a very weird loud sound (not thunder). Lit up sky 4 times between 11pm and 11:55pm. +2013-02-27,36.0652778,-119.0158333,Porterville,CA,other,37,Small Object going deferent direction from Big Object +2014-02-26,37.4283333,-121.9055556,Milpitas,CA,unknown,4,I seen something moving through the clouds then split the cloud in half as it wrap around through it in a super fast motion. +2014-02-26,41.9,-71.0902778,Taunton,MA,oval,180,Oval disk with three yellow lights on bottom, red and green light on either side producing a low drone, flew a few hundred feet above. +2014-02-26,47.6063889,-122.3308333,Seattle,WA,triangle,300,((NUFORC Note: Witness provides no information. Photos are of a "sun dog," not a UFO. PD)) +2014-02-26,35.0844444,-106.6505556,Albuquerque,NM,other,120,Twinkling string like light high up in the sky not surrounding by anything +2014-02-26,41.3947222,-73.4544444,Danbury,CT,sphere,45,Bright blue sphere light moving across the town's night sky silently without any sound interacting with it or against. +2014-02-26,39.8813889,-83.0930556,Grove City,OH,fireball,60,Orange lights above Grove City, Ohio. +2014-02-26,32.2216667,-110.9258333,Tucson,AZ,light,4,I've never seen something moving so fast and so large and then to simply disappear. +2014-02-26,39.2022222,-83.6116667,Hillsboro,OH,light,180,Two Vertical Strips of Lights. +2014-02-26,32.7947222,-116.9616667,El Cajon,CA,unknown,60,White flares from plane maybe? +2014-02-26,39.5363889,-83.4391667,Washington Court House,OH,unknown,15,Fayette Cty. on 2-26-14..saw 4 large lights line up in sky perfectly. Then out instantly..no craft..no sound..just out. +2014-02-26,40.0455556,-86.0086111,Noblesville,IN,circle,600,Golden orange sphere not blinking, flying close to air traffic, and changing direction… +2014-02-26,36.7477778,-119.7713889,Fresno,CA,light,72,Blue orb. +2014-02-26,32.7947222,-116.9616667,El Cajon,CA,unknown,900,Small object that dropped two sets of reddish lights, and hovered for some 15 minutes. +2014-02-26,38.6638889,-83.3791667,Stout,OH,light,60,Strange lights in the forest. +2014-02-26,45.0380556,-93.3863889,New Hope,MN,light,20,Beautiful green glowing, round light (Kind of florescent) in sky moving downward in a north west direction , disappearing over neighbor +1981-02-27,34.1336111,-117.9066667,Azusa,CA,light,180,I! I found out! +1992-02-27,38.5816667,-121.4933333,Sacramento,CA,circle,1800,me despertaron era algo increible a la manana sigiente le conte ami esposo y a mi hija y me dieron por loca por eso decidi callar hasta +1994-02-27,42.8741667,-77.2883333,Canandaigua,NY,rectangle,300,It was rectangular and had 6 red lights on each side. +1996-02-27,42.3313889,-83.0458333,Detroit,MI,light,1200,I was a commuter airline pilot at the time (co-pilot). We were flying from Pittsburg, PA to Saginaw, michigan at an altitude of 16ꯠ +1996-02-27,43.4194444,-83.9508333,Saginaw,MI,light,480,Commuter airliner w/ passengers turns, descends 12귔' to avoid a bizarre, extremely bright obj. directly ahead. Obj. could "jump." +1997-02-27,38.7072222,-76.5313889,North Beach,MD,other,6,Shooting star,Air Fision and then a Small,Windshield shaped craft appears out of it. +1998-02-27,33.3061111,-111.8405556,Chandler,AZ,unknown,300,Strait line of 4 lights blinking 1-2-3-4 definatly not a plane like a boeing or somehing there were no colision lights whats so ever. +1998-02-27,34.4263889,-117.3,Hesperia,CA,fireball,10,A bright blue object that streaked across the southern sky from east to west. +1998-02-27,35.7452778,-81.685,Morganton,NC,light,3600,Large amount of lights on a mountain about tree top level +1998-02-27,40.62,-82.5108333,Bellville,OH,circle,14400,Star-like object that pulsed bright red, green and white colors and hovered about one location but made quick short movements. +1998-02-27,44.8011111,-68.7783333,Bangor,ME,flash,4,Spotted strange pulsing light flying at a high rate of speed north to south. +1998-02-27,45.6388889,-122.6602778,Vancouver,WA,circle,300,I saw a cluster of lights darting back and forth in the sky, in manner unlike any modern aircraft is capable of. +1999-02-27,35.1677778,-114.5722222,Laughlin,NV,formation,180,JUST PREVIOUSLY MADE A LATER REPORT, THINK I SHOULD INCLUDE THISN EARLIER ONE ON SAME DAY. STANDING OUTSIDE ONPROMINADE WALK WAY OUT S +1999-02-27,35.1677778,-114.5722222,Laughlin,NV,circle,600,A black or dark dot was seen hanging in the sky for a period of several minutes. +1999-02-27,38.5491667,-75.2461111,Dagsboro,DE,light,600,light 30 degrees N. N.E. size of quarter at arms length. erratic brilliant, like aircraft landing lights . light appeared as intelligen +1999-02-27,37.3636111,-118.3941667,Bishop (Towards, On Route 395 North),CA,light,600,Traveling North on 395, I noticed a bright Light, that at first appeared to be a Star. However upon closer observation i noticed that +1999-02-27,35.4144444,-114.1986111,Chloride,AZ,light,900,On Saturday February 27, at appoximatly 21:30 hrs I witnessed two star like objects in the eastren sky. +1999-02-27,37.2622222,-119.7,Coarsegold,CA,other,300,Two stars in west sky about 30 degrees above horison were moving back and forth. Then I saw only one. It was moving in a strange way up +1999-02-27,35.1677778,-114.5722222,Laughlin,NV,circle,600,A event preceeded the following after whitch my attention was drawn straght up. thosands of ft. 5 craft fell scattered to about 12/15 +1999-02-27,35.1677778,-114.5722222,Laughlin,NV,light,480,A group of approximately 50 adults watched 5 white lights, the apparent size of bright stars, maneuver in the night sky. +1999-02-27,34.7575,-112.4530556,Chino Valley,AZ,oval,45,i was out side having a smoke and it was a clear night so i looked up at the stars and just happen to see above me 2 bright lights that +1999-02-27,32.7152778,-117.1563889,San Diego,CA,triangle,600,changing colors bright and fast blinking motion +2000-02-27,41.85,-87.65,Chicago,IL,triangle,180,dull reddish orange triangles in a y formation flying north around downtown chicago +2000-02-27,39.1652778,-86.5263889,Bloomington,IN,cigar,10,I saw an object with four white lights on it speed across the sky and then disappear. +2000-02-27,45.5236111,-122.675,Portland,OR,unknown,180,Four bright lights with blinking light in the middle seen over Cornilius Pass +2001-02-27,47.7425,-121.9844444,Duvall,WA,egg,60,saw an egg shaped ball of yellow light at night that flew like a slow plane but was below treetops +2001-02-27,47.7588889,-118.7044444,Wilbur,WA,circle,30,Circle of non rotating lights heading E to W over grand coulee dam +2001-02-27,42.3319444,-73.0833333,Becket,MA,disk,2700,Four eye witnesses observed three dish shaped crafts with lights near Becket, MA. +2002-02-27,34.0522222,-118.2427778,Los Angeles,CA,sphere,18000,SEVERAL WITNESS MULTI-OBJECT EVENING IN lOS aNGELES THE NIGHT OF THE COMET 02-27-02 +2002-02-27,42.2711111,-89.0938889,Rockford,IL,disk,180,UFO above E. State Street, Feb. 27, 2002, about 19:00 hrs. +2003-02-27,38.005,-121.8047222,Antioch,CA,fireball,420,Fireball like object, dropping flare like objects then disappearing +2003-02-27,42.7652778,-71.4680556,Nashua,NH,oval,240,What was the Airforce chasing? +2003-02-27,41.24,-81.4408333,Hudson,OH,circle,40,observed objects for 2-3 min,there were 10-12- of them moving in and out, lined up one headed north then vanished +2003-02-27,26.0625,-80.2333333,Davie,FL,changing,300,I was driving with my daughter. It was dusk but getting dark quick.My daughter noticed it first. It was a big dark circle with a littl +2003-02-27,61.2180556,-149.9002778,Anchorage,AK,light,600,A strange orange/reddish moving object emitted smaller object and then disappeared over Anchorage Alaska! +2003-02-28,38.4069444,-87.5855556,Patoka,IN,unknown,300,on a morning jog me and my friend saw lights in the sky, it was early morning and saw an arrow looking object in the sky with about 5 l +2004-02-27,42.5,-96.4,Sioux City,IA,disk,1200,Red flash and a flying saucer +2004-02-27,19.6255556,-155.0416667,Keaau,HI,light,120,Looked like a distant moving star, kept going. ((NUFORC Note: Possible satellite. PD)) +2004-02-27,42.7119444,-76.0288889,Truxton,NY,light,900,The object moved right to left while making a humming sound and remained there for approximately 15 minutes. +2004-02-27,40.6669444,-75.1577778,Alpha,NJ,disk,1200,I ran to the store, and when I got back my 12 year old son and wife were very excited/nervous saying they had just seen a UFO and caugh +2004-02-27,40.8808333,-88.6297222,Pontiac,IL,other,15,Four lights horizontal with the trajectory, flying very fast. +2004-02-27,40.8808333,-88.6297222,Pontiac,IL,unknown,15,four horizontal lights, dimly lit and flying in a unusual way +2004-02-27,40.6083333,-75.4905556,Allentown,PA,circle,180,Allentown PA at opprox. 10:40 p.m. estern. time I was standing in my backyard with my dog. I looked up at the big dipper to my north.Tr +2005-02-27,39.5297222,-119.8127778,Reno,NV,unknown,5100,A color-changing, spark-like migrating light in the western sky -- seen in Reno, NV ((NUFORC Note: Possibly Sirius. PD)) +2005-02-27,43.2722222,-75.1902778,Barneveld,NY,triangle,120,I was in bed and I heard what sounded like a high winds os, I look outside my bedroom window. As I looked out, I saw a very large black +2005-02-27,37.9886111,-84.4777778,Lexington,KY,unknown,300,Heavy vibration over house, not attributable to aircraft of any kind. +2005-02-27,33.7069444,-117.0836111,Winchester,CA,changing,420,BLACK DISTINCT "V" SHAPE HOVERING, CHANGED TO BALL SHAPE AND CREPT ACROSS SKY +2005-02-27,34.5794444,-118.1155556,Palmdale,CA,light,10,Pale green light moving slowly from west to east and then going straight up at a very fast speed and disappered. +2005-02-27,43.6136111,-116.2025,Boise,ID,disk,60,Golden lights formed what appeared to be windows on a large saucer shaped object in the Boise foothills area +2005-02-27,47.6063889,-122.3308333,Seattle,WA,light,60,2 star-like ufos criss-cross near university of washington campus. +2005-02-27,32.8438889,-97.1427778,Bedford,TX,oval,15,Object seen in sky over Bedford, Texas February 27, 2005. +2006-02-27,33.5777778,-101.8547222,Lubbock,TX,other,3,No outline of the ship, just appeared as six lights moving at great speeds, Great Speed! +2006-02-27,37.8313889,-122.2841667,Emeryville,CA,unknown,1,Very bright green flash of light over Emeryville, California. +2006-02-27,36.0102778,-84.2697222,Oak Ridge,TN,fireball,10,3 Fireballs slowly crossing the night sky in Oak Ridge Tennessee. About 10 seconds long. +2007-02-27,40.5697222,-79.765,New Kensington,PA,other,240,Eastward object in SW Pennsylvania +2007-02-27,38.4405556,-122.7133333,Santa Rosa,CA,triangle,720,Threee red-orange lights on a ridge overlooking the Sanat Rosa valley +2007-02-27,33.0183333,-80.1758333,Summerville,SC,sphere,300,Bright Sphere on Summerville, South Carolina 02/27/07 500 Lights On Object0: Yes +2007-02-27,33.6675,-79.8308333,Kingstree,SC,light,120,Each time they reappeared they were in a different spot, almost as if they were warping to get to the next spot rather than flying. +2007-02-27,40.7141667,-74.0063889,New York City,NY,cross,5,In a V Shaped Formation In the night sky, Lasted about 2 seconds then bursted into a light ball that lasted about another 2 seconds. +2008-02-27,47.2530556,-122.4430556,Tacoma,WA,triangle,6,Silent, Triangle shaped craft over Tacoma, WA +2008-02-27,42.2708333,-83.7263889,Ann Arbor,MI,light,120,suspected ufo over Ann Arbor +2008-02-27,30.6277778,-96.3341667,College Station,TX,triangle,30,college station V shaped lights. +2008-02-27,37.9575,-119.1208333,Lee Vining,CA,rectangle,1,Saw a blue-green glowing rectangular craft streak across our field of view while driving up the eastern side of the Sierra Nevadas. +2008-02-27,38.6630556,-90.5769444,Chesterfield,MO,other,10,((HOAX??)) v shaped craft spotted with no lights, at night, and along busy highway. ((NUFORC Note: Student report. PD)) +2008-02-27,32.7152778,-117.1563889,San Diego,CA,disk,840,Three Brilliant UFOs of various shapes in close proximity to each other. +2008-02-27,26.2708333,-80.2708333,Coral Springs,FL,circle,240,moving stars in the early night +2008-02-27,41.8061111,-88.3272222,North Aurora,IL,light,5,Bright white light, jets out from high in the sky. (looked like a spotlight) +2008-02-27,34.8788889,-76.9016667,Havelock,NC,triangle,240,At 7:44 PM, on February 27th 2008, I was on my way home when I saw a massive object on the corner of my eye. I looked to see what it wa +2008-02-27,33.5225,-117.7066667,Laguna Niguel,CA,chevron,25,grayish yellow flying boomerang sighted in Orange County +2008-02-27,30.3583333,-103.6605556,Alpine,TX,triangle,45,triangular shaped object with green steady lights moving slowly with no sound and disappeared. +2008-02-27,36.3955556,-97.8780556,Enid,OK,disk,600,Strange flying disk over Enid, Oklahoma near Vance AFB +2008-02-27,34.4838889,-114.3216667,Lake Havasu City,AZ,oval,30,Glowing, amber oval, traveling at 20-30k feet, 1200-1400 mph at 9pm AZ time. Did anyone else see this? +2008-02-27,33.6863889,-117.66,Foothill Ranch,CA,light,300,Light/Round +2008-02-27,30.2669444,-97.7427778,Austin,TX,chevron,15,UFO over Austin +2008-02-27,35.6869444,-105.9372222,Santa Fe,NM,chevron,240,We saw a triangular shaped object moving across the sky. +2008-02-27,37.7022222,-121.9347222,Dublin,CA,diamond,1800,I was driving home around 11:00pm on 2-27-09 when I something flying in the sky ahead of me. It struck me as odd because it was way too +2009-02-27,39.1722222,-120.1377778,Tahoe City,CA,cigar,5,fast moving object with flashing lights disappeared in 4-5 seconds +2009-02-27,39.0066667,-76.7794444,Bowie,MD,unknown,4200,Three anomalous stationary lights over Bowie for over an hour. +2009-02-27,41.6666667,-70.1852778,South Yarmouth,MA,circle,120,I hope someone else can report on this! +2009-02-27,27.9472222,-82.4586111,Tampa,FL,circle,1,I took picture of high flying airplane and when downloaded on computer saw what looks like a very large disc shape crossing ahead of je +2009-02-27,44.0522222,-123.0855556,Eugene,OR,sphere,2700,small dics shaped object, flashing blue, yellow, red, green, white lights moving very quickly in opposite directions, unnatural of anyt +2009-02-27,40.8427778,-73.2933333,Commack,NY,diamond,60,Saw an orange diamond shaped object that disappeared. +2009-02-27,40.7608333,-111.8902778,Salt Lake City,UT,triangle,345.5,UFO's..... I seen over Salt Lake City, Utah, Feb. 27, 2009!!! +2009-02-27,38.3030556,-77.4608333,Fredericksburg,VA,unknown,300,Four or five lights appearing to emanate from the clouds in the southwest sky +2009-02-27,28.7586111,-81.3180556,Lake Mary,FL,unknown,7200,My daughter and I saw at least 50 lighted objects in the sky within 2 hours and two of these objects were very low and slow moving. +2009-02-27,45.5872222,-122.3983333,Camas,WA,oval,2,White oval craft flying ridiculous speeds, changing direction in seconds. +2009-02-27,41.5533333,-73.7961111,East Fishkill,NY,oval,60,Large circular object stationary with very large white lights around it, more lights underneath & above the circular lights. +2010-02-27,38.9716667,-95.235,Lawrence,KS,light,15,Two orange objects spotted floating over Lawrence, Kansas, February 27, 2010 at 12:55 am. +2010-02-27,27.8002778,-97.3961111,Corpus Christi,TX,circle,10,2-round objects caught with night vision scope no lights +2010-02-27,27.9472222,-82.4586111,Tampa,FL,rectangle,3600,Sorry for the false information but I didn't know another way to reach you. I my self have been questioned years ago for statements I m +2010-02-27,33.9561111,-83.9880556,Lawrenceville,GA,circle,5,Strangely behaving Light in the early evening +2010-02-27,33.4666667,-79.1,Litchfield Beach,SC,light,600,Three white lights hovered over the beach. +2010-02-27,30.4752778,-98.1561111,Spicewood,TX,circle,240,Large flaming light pulsed dim to bright then faded into darkness over Lake Travis. +2011-02-27,41.9038889,-72.4702778,Ellington,CT,cylinder,600,Cylinder hover over trees proceding down R30 south +2011-02-27,29.2855556,-81.0561111,Ormond Beach,FL,diamond,900,Dimond shaped craft hovering in Ormond Beach FL +2011-02-27,38.4405556,-122.7133333,Santa Rosa,CA,sphere,1800,large groups of lights flying in the same direction silently +2012-02-27,43.2208333,-77.2833333,Ontario,NY,flash,7200,Neighbor texted me just after midnight; if I was up to look out my back window to the S and see if I saw a flashing light. ((Sirius??) +2012-02-27,47.5302778,-122.0313889,Issaquah,WA,light,300,Light flashing and changing colors. +2012-02-27,41.9163889,-83.3977778,Monroe,MI,light,7200,Weird spinning light UFO above the fields between Monroe and Ida (yet again). ((NUFORC Note: Star or planet?? PD)) +2012-02-27,39.3111111,-94.9222222,Leavenworth,KS,fireball,300,Several fireball ish looking craft, "danicing'' wave like motions in Kansas, USA. +2012-02-27,41.7,-71.6833333,Coventry,RI,fireball,2,Flash was so bright it hurt my eyes like a camera flash to close, it lasted seconds and it was gone, looked like a fire ball yellow and +2012-02-27,34.5019444,-88.4688889,Marietta,MS,light,900,Hovering light above tree lines +2012-02-27,34.1477778,-118.1436111,Pasadena,CA,oval,4,Oval/circle light blue-green glowing object moved in medium fast speed +2012-02-27,41.7,-71.6833333,Coventry,RI,light,10,BRIGHT WHITE LIGHT WITH A BLUE AURA MOVING EXTREMELY FAST +2012-02-27,28.0391667,-81.95,Lakeland,FL,flash,30,"Ball of fire" going from east to west over Lakeland, FL. +2013-02-27,37.9975,-121.7113889,Oakley,CA,oval,600,Object was silent with military jet a few minutes behind it. +2013-02-27,35.7719444,-78.6388889,Raleigh,NC,triangle,300,Three triangular craft visible for 5 min near I-540 on 2/27/2013 +2013-02-27,33.9136111,-98.4930556,Wichita Falls,TX,light,15,White and orange and seems to evade the military jets that do there night training at the air base near here. +2013-02-27,37.0297222,-76.3455556,Hampton,VA,circle,20,Bright, white circular light. No sound. +2013-02-27,38.3397222,-122.7,Rohnert Park,CA,triangle,120,Triangle, 3 red/orange lights, interrupted by aircraft. +2013-02-27,35.5083333,-78.3397222,Smithfield,NC,other,900,3 Air plane shape objects to lowto the ground to be Manmade seen over Smithfiled, NC on Feb 27th seen by many. +2013-02-27,26.9677778,-80.1288889,Tequesta,FL,fireball,600,15+ Red/Orange Fireballs Over Florida. +2013-02-27,33.7455556,-117.8669444,Santa Ana,CA,light,300,Red light viewed in Orange County. +2013-02-27,35.3061111,-78.6091667,Dunn,NC,unknown,1200,Row of eight lights sighted over Dunn in Sampson County. +2014-02-27,37.0977778,-89.5625,Benton,MO,circle,1200,Red/Orange orb, moves in strange ways. +2014-02-27,39.0916667,-104.8722222,Monument,CO,sphere,300,Red orbs flying over Monument, Colorado. +2014-02-27,39.8963889,-80.1794444,Waynesburg,PA,diamond,1200,Diamond craft in SW Pa. +2014-02-27,38.4416667,-81.9169444,Scott Depot,WV,unknown,180,Secret aircraft comunicating with unknown +2014-02-27,38.8025,-76.5372222,Churchton,MD,circle,300,On 2/27/14 at 3:35 AM saw an object made up of round lights which formed a circle of light with rectangle shape in middle of it. +2014-02-27,35.0133333,-78.6941667,Stedman,NC,sphere,180,Sphere shaped object with an illuminated green star shape on bottom with alternating red lights. +2014-02-27,43.6480556,-93.3680556,Albert Lea,MN,light,15,I observed two very bright lights in the western sky. They were at a diagonal from each other with the right light being slightly lower +2014-02-27,36.1658333,-86.7844444,Nashville,TN,light,2,Large star-like object seen in afternoon sky then quickly vanished. +2014-02-27,34.6058333,-86.9833333,Decatur,AL,diamond,2,Strange orangish lights in sky, Alabama… +2014-02-27,35.8455556,-86.3902778,Murfreesboro,TN,light,5400,Two lights circling and making random patterns in the sky at dusk and after dark. +2014-02-27,39.2275,-82.2025,Albany,OH,fireball,2,Fast moving green light near Albany, Ohio. +2014-02-27,43.6136111,-116.2025,Boise,ID,light,120,Strong green colored light dropping and rising rapidly in western sky over Boise. +2014-02-27,41.4297222,-84.8713889,Butler,IN,unknown,300,Two close lights, first dim and second twice as bright with occaisional flare up, non-blinking. +2014-02-27,34.8780556,-83.4011111,Clayton,GA,diamond,20,Mysterious Diamond Object. +2014-02-27,39.2641667,-76.9927778,Glenelg,MD,fireball,60,Fireball floating slowly low then vanishing. +2014-02-27,42.1013889,-72.5902778,Springfield,MA,circle,300,3 white lights circling in formations around 1 big white light. +2014-02-27,42.8641667,-78.2805556,Attica,NY,circle,300,We were driving on a road inroute to our home and seen an orange glow in the sky on the next hill over near where they had just put up +2014-02-27,41.5061111,-87.6355556,Chicago Heights,IL,circle,8,I was outside back yard clear night and bright white light made downward path gaining speed and disappeared. +2014-02-27,35.1405556,-85.2327778,Hixson,TN,triangle,12,Triangular object with no lights gliding across the night sky. +1983-02-28,28.4616667,-98.5488889,Tilden,TX,fireball,300,South Texas non illuminating ball of fire +1985-02-28,45.5236111,-122.675,Portland,OR,light,900,multiple points of bright light seen above city apparently motionless then dissapeared one by one. +1986-02-28,46.4166667,-114.1491667,Victor,MT,circle,480,Just below the mountain top a light appeared. After a few seconds the light became larger slowly came east 15ft off the ground then cli +1990-02-28,33.426944399999996,-117.6111111,San Clemente,CA,disk,1800,((HOAX?? Date is illogical)) Disc-shaped object witnessed. +1996-02-28,43.8013889,-91.2394444,La Crosse,WI,light,120,I was in a building downtown on the third floor, I looked out the back door towards my home (about 7 blocks away) to the east and I saw +1997-02-28,31.9041667,-110.2136111,St. David,AZ,oval,3600,Sighted grey metallic saucer with no lights hovering over the Whetstone Mts. Watched it for about an hour. +1997-02-28,33.4222222,-111.8219444,Mesa,AZ,triangle,30,Viewed a light yellowish-orange somewhat translucent triangular-shape object with an undulating light. +1998-02-28,38.6858333,-121.3711111,North Highlands,CA,light,15,2 PEOPLE WITNESS A BRIGHT OBJECT SLOWLY MOVING TO THE NORTH AND FADING AWAY +1999-02-28,40.8338889,-74.0975,East Rutherford,NJ,circle,45,Circular object, moving slowly, straight line, aprrox alt. 5000 ft. Slighty Illuminated in a dark orange/burnt sienna color, no blinkin +1999-02-28,39.8208333,-84.0194444,Fairborn,OH,other,180,Approximately 500ft. in the air, just below a low cloud line, I saw a small grey spherical object hovering. It would be best described +1999-02-28,42.0986111,-75.9183333,Binghamton,NY,formation,45,2 groups or 4 orange lights that individually interchange in a non-cyclical pattern. Also, instant 90 degree turning ability. +1999-02-28,36.175,-115.1363889,Las Vegas,NV,circle,10,Three glowing balls of light traveling right over the Luxor pyramid +1999-02-28,47.3483333,-122.1136111,Covington (East Of Kent),WA,sphere,1020,Round bright glowing object,blue and red top and bottom,bright white glow center. Hovering,moved when I took picture,returned,left area +2000-02-28,36.8527778,-75.9783333,Virginia Beach,VA,chevron,600,I saw what seemed to be 5 separate lights in the eastern sky. One bright light and 4 smaller and less bright lights. The lights were in +2000-02-28,26.625,-81.625,Lehigh Acres,FL,light,2,WE WERE WATCHING SCIFI AND MAN VIDIOED BY BLOCKING SUN. WE THOUGHT FUNNY AND FIGURED TO TRY. TAPED A DISTINCT OPJECT CAME UP FROM RIGHT +2000-02-28,36.2819444,-118.0055556,Olancha,CA,sphere,300,from my vehicle, I spotted dozens of small silverey spheres high above the mountains in a group that looked like birds, or how bats fly +2000-02-28,42.5311111,-88.5994444,Walworth,WI,circle,3,On Feb 28, 2000, 7:30pm, in south WI, I saw 5 circular, orange objects in formation moving extremely fast from SW to NE lasting 3 secon +2000-02-28,41.3830556,-71.6422222,Charlestown,RI,light,1800,Light over submarine base, Groton, CT. +2001-02-28,39.9725,-74.5833333,Browns Mills,NJ,light,180,Object that moved in sky couldn't have been made in this world. +2001-02-28,38.6772222,-87.5286111,Vincennes,IN,light,1800,4 lights in strange formations over city +2002-02-28,33.2147222,-97.1327778,Denton,TX,unknown,180,Slow moving aircraft that would change lights from white to red, and made a quiet droning sound. +2002-02-28,41.85,-87.65,Chicago,IL,sphere,2700,2nd hand account +2002-02-28,42.9763889,-88.1083333,New Berlin,WI,triangle,120,((NUFORC Note: Date is invalid. PD))Triangle shaped object, 3 while lights, one red in the middle following us in the car. +2002-02-28,39.2022222,-83.6116667,Hillsboro,OH,oval,60,Large Yellowish/Orange Lighted Object(s) appear three different times in covering a span of about 60 + seconds. +2003-02-28,41.7197222,-72.8325,Farmington,CT,unknown,240,3 lights White, Red, White Circle Pattern No Sound +2003-02-28,28.9022222,-82.5927778,Crystal River,FL,flash,5,On the evening stated , Feb.28th 񫺓 ..myself ,my mother and father were sitting in their living room. Time was about 9 oclock . All +2004-02-28,39.9625,-76.7280556,York,PA,light,120,Four red lights dancing around heading due west. +2004-02-28,29.9544444,-90.075,New Orleans,LA,light,15,Star-like object meandering in sky +2004-02-28,34.1486111,-118.3955556,Studio City,CA,triangle,300,A triangular shaped object flies near the freeway and hovers +2004-02-28,39.9375,-77.6613889,Chambersburg,PA,unknown,600,as i was driving down I81S i noticed an aircraft hovering over an area approx 500 yards westward at the 6 mile marker in PA +2005-02-28,38.6533333,-94.3486111,Harrisonville,MO,disk,600,A flying ship (U.F.O) toke a cow up to its ship with a green light!!!! +2005-02-28,45.3247222,-118.0866667,La Grande,OR,oval,420,Oval-shaped and covered in lights but is quartered into four sections. As brillantly lit as any star. +2005-02-28,35.8680556,-83.5619444,Sevierville,TN,triangle,300,Three lights in triangle shape hoover over houses, makes no sounds and flees as we begin to investigate +2005-02-28,26.6583333,-80.2416667,Wellington,FL,fireball,600,fireball-like sphere flickering in north-western sky +2006-02-28,42.0333333,-87.8833333,Des Plaines,IL,other,120,Floating dark object, only 40 ft. away , thought to be Alien probe,I thought of camera, it sensed that, shot up +2006-02-28,30.2669444,-97.7427778,Austin,TX,egg,60,This object was silver in color and oblonged shaped. The sun was shining off of it causing it to glow. The item was visible for about a +2006-02-28,41.5455556,-71.2919444,Middletown,RI,light,10,Possible correlation to South Kingston sighting of 28 Feb +2006-02-28,41.85,-87.65,Chicago,IL,cigar,600,Saw a Cigar like object that flashed a red beam at my face +2006-02-28,36.4072222,-105.5725,Taos,NM,triangle,3,At night, huge triangle craft with three red lights zooming towards Taos Mountain at an unimaginable speed +2006-02-28,29.4238889,-98.4933333,San Antonio,TX,triangle,180,V-Shape, lighted craft seen in San Antonio just over tree line. +2006-02-28,33.5422222,-117.7822222,Laguna Beach,CA,unknown,2580,I saw an object in the sky and automatically dismissed it as an aircraft but after watching the item not move with multiple colors: Blu +2007-02-28,30.9380556,-90.5088889,Kentwood (Just North Of),LA,triangle,60,Triangle shaped UFO sighted near two 18 wheeler accidents! +2007-02-28,33.775,-86.4716667,Springville,AL,unknown,1200,3 bright yellowish white lights,side by side appeared around 6 AM, in the dense woods across the road from our house. +2007-02-28,33.6058333,-86.0213889,Eastaboga,AL,other,30,Large white UFO spotted over Eastaboga, Alabama +2007-02-28,28.8002778,-81.2733333,Sanford,FL,sphere,2,Silver sphere to the right of a cloud seen midday morning in area of Sanford Florida Feb 28, 2007. +2007-02-28,35.2269444,-80.8433333,Charlotte,NC,circle,60,Very disturbing sight. Bright lights, tones of blue and white, and EXTREMELY loud rumbling noise. +2007-02-28,44.8147222,-71.8808333,Island Pond,VT,disk,900,watching and studying a failing engine on a ufo +2007-02-28,28.0833333,-80.6083333,Melbourne,FL,sphere,10,Metallic Spherical Object spotted at 3000-3500ft by Melbourne / East Coast 20-30nm south of the Space Station. in a PA28 at 4500ft +2007-02-28,34.8027778,-86.9716667,Athens,AL,triangle,120,2 Triangular aircraft in Athens, AL +2007-02-28,33.7488889,-84.3880556,Atlanta,GA,fireball,2400,Fixed bright white dot seen near Atlanta Airport, Feb 28 from aircraft. +2007-02-28,37.9841667,-120.3811111,Sonora,CA,light,60,Venus type light arcing across sky and sky flashes. +2007-02-28,45.1438889,-122.8541667,Woodburn,OR,light,1180,Bright light just west of Woodburn was seen for 30 minutes then was gone in a blink of an eye. ((NUFORC Note: Venus? PD)) +2007-02-28,32.9477778,-112.7161111,Gila Bend,AZ,light,300,Four lights in the southern sky, one stationary and the 3 others had a methodic illumination pattern. ((NUFORC Note: Flares?? PD)) +2007-02-28,34.6991667,-86.7483333,Madison,AL,triangle,720,Two Triangular Craft over Madison Alabama +2007-02-28,32.4366667,-111.2247222,Marana,AZ,triangle,120,3 bright lights form triangle over Marana +2007-02-28,27.3361111,-82.5308333,Sarasota,FL,disk,15,Round- Disc Shaped Craft with 4 - 5 windows or lights, hovering silently in lower level of clouds +2007-02-28,37.8391667,-94.3544444,Nevada,MO,light,1200,fast moving blinking light in sky, could stop and move briskly again in a matter of seconds +2007-02-28,38.9636111,-84.0808333,Bethel,OH,light,180,Red pulsing light heading from south to north then heading east. +2008-02-28,31.5783333,-84.1558333,Albany,GA,other,600,Oblong shaped object with light on bottom and completely silent. +2008-02-28,32.7252778,-97.3205556,Fort Worth,TX,sphere,1800,Stationary small white object in the northern sky, not moving. +2008-02-28,35.7330556,-81.3413889,Hickory,NC,unknown,1800,The chrome dot never moved from its position. +2008-02-28,39.5297222,-119.8127778,Reno,NV,sphere,180,Black Sphere moving silently west against wind currents +2008-02-28,38.4191667,-82.4452778,Huntington,WV,disk,120,I and my girlfriend watched a silvery luminous football shaped object. +2008-02-28,37.2933333,-80.055,Salem (South Of),VA,light,1800,Light in the ski far south of Salem Virginia on a clear late afternoon. +2008-02-28,30.3672222,-89.0927778,Gulfport,MS,light,10,Bright Light in Gulf Coast Mississippi sky +2008-02-28,41.4277778,-74.1663889,Washingtonville,NY,fireball,30,green fireball-like object observed in the night sky +2008-02-28,38.4447222,-121.9419444,Allendale,CA,triangle,1800,3 Triangle ufos over Allendale, Ca ((NUFORC Note: Student report. Possible hoax, we wonder. PD)) +2008-02-28,36.8527778,-75.9783333,Virginia Beach,VA,circle,600,3 starish kind of things, orangish, in a formation of a triangle. ((NUFORC Note: Student report. PD)) +2009-02-28,48.6969444,-122.9041667,Eastsound,WA,light,20,Brilliant white light glides above tree line, no sound but a very faint hum. +2009-02-28,33.4483333,-112.0733333,Phoenix (Above; In-Flight Sighting),AZ,circle,5,small, silver ball with red light/glow low altitude +2009-02-28,41.2608333,-111.7691667,Huntsville,UT,light,300,An object that ommitted a very bright light, almost looked like it had three lights on it. ((NUFORC Note: We suspect Venus. PD)) +2009-02-28,33.8886111,-117.8122222,Yorba Linda,CA,triangle,600,Triangular color changing object in the east +2009-02-28,38.1916667,-120.8280556,Valley Springs,CA,changing,300,fast criss crossing lights +2010-02-28,40.9941667,-92.1672222,Batavia,IA,sphere,900,A UFO was seen to the north of our house. +2010-02-28,25.4683333,-80.4777778,Homestead,FL,teardrop,55,object like fire falling from the sky +2010-02-28,35.0302778,-91.9502778,Ward,AR,unknown,60,Fast black UFO. +2010-02-28,25.4683333,-80.4777778,Homestead,FL,unknown,180,Driving south on Florida Turnpike and noticed a strange 'fireball" with a tail falling to the earth very slowly. Thought it was a plane +2010-02-28,30.4027778,-92.215,Church Point,LA,cylinder,120,No Sound, Movement, or reflection from sunlight, no changes around ship as far as visual disturbances +2010-02-28,25.7738889,-80.1938889,Miami,FL,circle,600,From one huge light to three and then five, in the shape of an L, then vertical to a horizontal line, the lights faded after 10 min. +2010-02-28,47.6447222,-122.6936111,Silverdale,WA,changing,600,Strange Object spotted in sky over trailer park and goes through several changes. +2010-02-28,35.6919444,-84.8608333,Spring City,TN,oval,60,6-8 ufo's waiting on one ufo to reach the group. +2010-02-28,33.8730556,-78.6144444,Little River,SC,light,10800,Red blue green and white light slowly floating randomly within same area, disappearing and reappearing brighter and dimmer at times. +2011-02-28,33.9202778,-80.3416667,Sumter,SC,light,900,3 light perfectly spaced in a line low in the sky. +2011-02-28,36.7477778,-119.7713889,Fresno,CA,oval,600,We were looking SouthEast when in the sky we saw around oval shape object that was changing color +2011-02-28,32.5838889,-117.1122222,Imperial Beach,CA,oval,10,2/28/2011 Fast moving UFO, disc/oval shaped, sighting lasted about 10 seconds +2011-02-28,35.6266667,-120.69,Paso Robles,CA,sphere,900,I went out to have a cig on the back porch of the hilltop home I am staying at, that's when i noticed a bright silver sphere object in +2011-02-28,34.09,-117.8894444,West Covina,CA,disk,2700,saw two ufos in west covina heading east orb obeject and a disk shape obeject. +2011-02-28,30.5080556,-97.6786111,Round Rock,TX,other,61,At 17:02 on 2/28/2011 a object appear in the east sky almost over head, sun was at my back, object was moving from north to south, goin +2011-02-28,33.0144444,-97.0966667,Flower Mound,TX,formation,150,huge flashing light formation moving slowly across the sky +2011-02-28,39.7391667,-104.9841667,Denver (East Of; Weld Co.),CO,light,1800,Bright Lights Low in Eastern Denver Skyline +2011-02-28,35.6225,-117.67,Ridgecrest,CA,sphere,600,THE OBJECT STARTED EMITTING WHAT LOOKED TO BE FIREBALLS. +2011-02-28,45.9013889,-87.2222222,Cornell,MI,light,180,Bright round light seen moving slowly across the sky and wavering a little, then the light suddenly vanished. +2012-02-28,26.6402778,-81.8725,Ft. Myers,FL,light,180,A light in the sky that traveled at a very high speed and then dissapered. ((NUFORC Note: Possible meteor. PD)) +2012-02-28,41.7947222,-72.1277778,Chaplin,CT,triangle,1184,((HOAX/OBSCENE)) holy ((deleted))! ((NUFORC Note: Possible meteor. PD)) +2012-02-28,43.1977778,-70.8741667,Dover,NH,fireball,30,Light in the shape of a ball lit up the sky over my car as I drove to work, it flashed. ((NUFORC Note: Possible meteor. PD)) +2012-02-28,43.3036111,-70.7338889,North Berwick,ME,unknown,120,Bright blue flash lit up the sky. ((NUFORC Note: Possible meteor. PD)) +2012-02-28,44.4905556,-73.1113889,Essex Junction,VT,flash,1,BRIGHT BLUE FLASH IN THE SKY. ((NUFORC Note: Possible meteor. PD)) +2012-02-28,41.3958333,-72.8972222,Hamden,CT,egg,2,Green egg shaped object with lightning like explosion. ((NUFORC Note: Possible meteor. PD)) +2012-02-28,42.9027778,-73.6877778,Mechanicville,NY,egg,1,Green/Blue tear drop shape shot down from the sky, emitting a bright white light. ((NUFORC Note: Possible meteor. PD)) +2012-02-28,43.9747222,-75.9111111,Watertown,NY,light,3,Saw a blue ball of light falling from the sky, turned green before fading away. ((NUFORC Note: Possible meteor. PD)) +2012-02-28,43.4522222,-71.2180556,Alton,NH,oval,10,Three flashes as the obj. was coming out of the sky, the main colors observed were blue, green. ((NUFORC Note: Possible meteor. PD)) +2012-02-28,40.3355556,-75.9272222,Reading,PA,triangle,35,Triangular craft w/ bright white lights and sequencial red light moving from tip to tip; silent.((NUFORC Note: Possible meteor. PD)) +2013-02-28,43.5408333,-116.5625,Nampa,ID,circle,240,Bright white circle shines through clouds and moves west for several minutes before dissapearing. +2013-02-28,48.7597222,-122.4869444,Bellingham,WA,oval,30,Bellingham UFO oval orange light on bottom. +2013-02-28,32.7152778,-117.1563889,San Diego,CA,oval,420,My kite is unusual and flies while its spinning it looks like a football and is made of styrafoam please you must believe me i can set. +2013-02-28,39.5297222,-119.8127778,Reno,NV,sphere,480,2 small, silvery spheres over Reno, NV, 3 times faster than jet,, appear and disappear out of clear blue sky. +2013-02-28,38.6172222,-121.3272222,Carmichael,CA,formation,90,Orb triangle formation at sundown. +2013-02-28,35.6869444,-105.9372222,Santa Fe,NM,light,60,Mysterious bright colored lights, red and green, moving through the sky. +2013-02-28,32.7763889,-79.9311111,Charleston,SC,light,300,Orange lights in formation in SW sky near Charleston, SC. +2013-02-28,40.3858333,-122.2797222,Cottonwood,CA,sphere,120,Orange sphere's approx. 20-25 in night sky. +2013-02-28,33.9136111,-98.4930556,Wichita Falls,TX,light,180,Yellowish orange traveled slowly. +2014-02-28,36.3125,-95.6158333,Claremore,OK,light,10800,Blue and red flashing lights in Oklahoma. +2014-02-28,37.3661111,-81.1027778,Princeton,WV,light,2400,Brite white star light object positioned from the E followed me to my work site on Fri. a.m.. +2014-02-28,43.5008333,-70.4433333,Saco,ME,fireball,30,Reddish orange colored lights scattered across a small part of the sky moving slowly into the darkness holy f is all i can say. +2014-02-28,43.1547222,-77.6158333,Rochester,NY,light,5,Bright light speeding across the sky in a straight line faster than anything I have ever seen before. +2014-02-28,46.9738889,-124.155,Ocean Shores,WA,light,10,Bright light moving upwards between Serius and Orions Belt. +2014-02-28,40.6588889,-74.3477778,Westfield,NJ,disk,600,Circles around jets. +2014-02-28,42.8141667,-73.94,Schenectady,NY,changing,300,UFO sighted in Schenectady County 02/28/2014. +2014-02-28,44.9430556,-123.0338889,Salem,OR,light,120,Dual, nondescript white lights hovering motionless over the interstate. +2014-02-28,37.9747222,-87.5558333,Evansville,IN,circle,240,Three orange lights make a triangle over east side of Evansville, IN. +2014-02-28,42.8741667,-77.2883333,Canandaigua,NY,teardrop,5,Falling fireball lit up the sky +2014-02-28,27.9938889,-82.2197222,Dover,FL,unknown,300,Stationary red and green lights flashing low in the sky. +2014-02-28,43.6794444,-70.4447222,Gorham,ME,triangle,600,Three separate objects proceeding one by one towards the same direction. +2014-02-28,38.3697222,-90.3783333,Imperial,MO,other,600,Bright orange lights flying a North/West direction, large groups at first then one at a time. +2014-02-28,45.6388889,-122.6602778,Vancouver,WA,light,120,Blue and red blinking light flying strangely in the sky. +2014-02-28,40.4405556,-79.9961111,Pittsburgh,PA,light,300,Round circles of light chasing each other in sky at high rate of speed. +2000-02-29,47.0075,-122.9080556,Tumwater,WA,egg,180,UFO moving rapidly across the sky. Large sudden movement up,down and then up again. Possible twirling. Loss sight of ufo due to obst +2000-02-29,38.005,-121.8047222,Antioch,CA,light,120,Observed a bright orange glowing light in controlled flight which abruptly disappeared, replaced by spark like lights which continued o +2004-02-29,25.7902778,-80.1302778,Miami Beach,FL,circle,60,It was an orange ball of light just wobbling from side to side and up and down (it stayed in the same spot though). I went to go get my +2004-02-29,36.595,-82.1888889,Bristol,TN,disk,900,MUFON/TENNESSEE REPORT: Disc filmed in daytime sighting +2004-02-29,36.5483333,-82.5619444,Kingsport,TN,formation,1200,They were the brightest lights I ever saw in the sky during the day +2004-02-29,32.9341667,-97.0777778,Grapevine,TX,changing,120,SHAPE CHANGING OBJECT ON FIXED COURSE. +2004-02-29,33.3941667,-104.5225,Roswell,NM,changing,10800,Emerala shape,stationary in the South west sky atabout a 45 Degee attitude from horizion,seemed to be following earth rotation. +2004-02-29,39.2302778,-76.6025,Brooklyn,MD,oval,45,Bright light; oval shaped object right in the backyard very close to home and people! +2004-02-29,37.6819444,-121.7669444,Livermore,CA,light,300,The bright light stayed there for 5 minites than took off extermly fast and vanished. +2004-02-29,47.6063889,-122.3308333,Seattle,WA,unknown,3300,Three rapidly sparkling objects hovering over Seattle to the WSW, two left after short time, one remained. ((NUFORC: Star??)) +2008-02-29,33.9938889,-96.3705556,Durant,OK,rectangle,30,box shape ufo +2008-02-29,35.8063889,-77.8636111,Elm City,NC,unknown,5,I saw a bright light that was intensly brilliant for a short moment than dimly traveled in a southerly direction. +2008-02-29,41.2586111,-95.9375,Omaha,NE,light,14400,Star Light resembling craft in formations of 3 and huge megaship over Standing Bear. +2008-02-29,32.2986111,-90.1847222,Jackson,MS,changing,600,((HOAX??)) White, changing shape three big UFO's nine small UFO's. +2008-02-29,45.0244444,-123.9452778,Otis,OR,unknown,120,Super bright strobing flashes in sky over Oregon Coastal Mountains. +2008-02-29,36.0525,-95.7905556,Broken Arrow,OK,light,2820,A point of light that would move very fast then stop then move again changing directions and even reversing its course. +2008-02-29,39.1219444,-97.7063889,Minneapolis (Near; Hwy 81),KS,triangle,120,triangular craft with white lights at each point and dimmer lights in the middle. +2012-02-29,33.4222222,-111.8219444,Mesa,AZ,light,1,Small, bright, white light appears, beam of light flashes, then it's gone. +2012-02-29,38.8338889,-104.8208333,Colorado Springs,CO,oval,300,Orange balls in a line. +2012-02-29,38.8338889,-104.8208333,Colorado Springs,CO,light,600,Five bright lights hover over Colorado Springs in perfect formation blinking off and on again. +2012-02-29,34.61,-112.315,Prescott Valley,AZ,light,60,At around 8:30 pm we saw a very bright light shoot across sky leaving a huge trail of smoke behind. +2012-02-29,26.1272222,-80.2333333,Plantation,FL,sphere,180,Four orbs flying over Plantation, FL flying N-NW from FLL airport area. +2012-02-29,34.1952778,-82.1619444,Greenwood,SC,circle,120,Close, BRIGHT, Slow-moving lights seen in Greenwood, SC!!! Absolutely no sound heard! +1951-02-03,41.9969444,-72.5994444,Thompsonville,CT,disk,30,A golden-orange glowing bowl, flat on top, 2 ft in dia hovered overhead for about 30 sec. then was gone in a streak without a sound +1976-02-03,39.55,-86.0797222,Whiteland,IN,unknown,3600,DRIVING HOME FROM MOVIE SAW WHAT APPEARED TO BE 3 JET PLANES FLYING IN FORMATION WHEN TURN THE CORNER TO GO HOME THAT IS WHEN IT STARTE +1987-02-03,44.7630556,-85.6205556,Traverse City,MI,triangle,900,I can't belive how close I was to the aircraft. +1990-02-03,31.5086111,-82.85,Douglas,GA,other,120,MUFON GEORGIA REPORT: MUFON of Georgia Ufologist Observes Massive Low Altitude Object. +1993-02-03,33.7488889,-84.3880556,Atlanta,GA,light,60,Light stationary in sky then ascends at incredible speed at abt 45 to 55 degree angle +1997-02-03,39.5008333,-89.7677778,Virden,IL,disk,120,UFO {SAUCER SHAPE} IN THE CLOUDS +1998-02-03,33.415,-111.5488889,Apache Junction (Southeast Of),AZ,other,120,Fuzzy black object, followed by a helicopter +1998-02-03,42.2011111,-85.58,Portage,MI,sphere,60.3,Two white balls of light about 30sec apart going ENE Very bright traveling in the same path +1999-02-03,33.7688889,-89.8083333,Grenada,MS,fireball,5,I WAS DRIVING NORTH ON I 55 JUST NORTH OF GRENADA MS EARLY WEN. MORNING WHEN I SAW A GREEN FIREBALL WITH A LONG WHITE TAIL TRAVELING TO +1999-02-03,42.0833333,-71.3972222,Franklin,MA,oval,2,Small oval object moving at incredible speed. Faster than the eye could follow. +1999-02-03,34.1866667,-118.4480556,Van Nuys,CA,circle,900,Craft traveling SW in sky across van nuys, CA. Had stobe lights on top and bottom. With lights across the middle that changed color w +1999-02-03,35.0886111,-92.4419444,Conway (I-40 North Of, Mile Marker 120),AR,triangle,120,saw 3 triangle craft followed by regular small prop plane. these craft made no sound,had marker lights, no strobes +2000-02-03,46.2752778,-122.9063889,Castle Rock,WA,light,600,Shortly before dawn observed a white strobe light flying above tree line, object moved and lights changed to red, green and white, hove +2000-02-03,33.0183333,-80.1758333,Summerville,SC,teardrop,300,While driving down the road we noticed a funny shaped light in the sky. I first thought it was a plane, but realized it was like no ot +2000-02-03,34.4163889,-79.3713889,Dillon,SC,triangle,120,Very bright light with flaring out particles. long trail behind it. no pulsation of lights, just a bright steady white light, as if a c +2000-02-03,28.9022222,-82.5927778,Crystal River,FL,light,600,Unusaual object moved across the sky at a rather low altitude, twice dropping some kind of glowing embers from the bottom. +2000-02-03,34.1072222,-118.0569444,Temple City,CA,unknown,8,observing sky, northward, slight overcast,usual to observe satelites. noticed a light as a lense, brightening in intensity, like a spot +2001-02-03,38.6827778,-120.8466667,El Dorado,CA,circle,60,round or circular multicolored shimmering object just suspended without moving for almost a minute then it streaked away toward the no +2001-02-03,40.7933333,-77.8602778,State College,PA,oval,60,2 oval/egg shaped objects sped overhead with no sound +2001-02-03,56.4708333,-132.3766667,Wrangell,AK,light,600,Unmoving, blue-white light , faint pulse. +2002-02-03,44.4644444,-68.7116667,Penobscot,ME,light,1800,A silent craft with three lights hovering. +2002-02-03,39.2902778,-76.6125,Baltimore,MD,circle,22,large round bright object fast moving on camera +2002-02-03,34.1388889,-118.2130556,Eagle Rock,CA,other,900,I HAVE A CO WOKER THAT CAPTURED AMAZING FOOTAGE OF A UFO , THAT HAD A BEE HIVE LOOKING SHAPE WITH A HIGH ENERGY GREEN COLOR GLOWING ARO +2002-02-03,33.4483333,-112.0733333,Phoenix,AZ,other,120,Low altitude passenger-type jet emitting thick contrails blinks out of sight in a cloudless, baby blue sky! +2003-02-03,25.7738889,-80.1938889,Miami,FL,disk,1500,It was a very big object , It remind me of a mother ship not like the small ones that you see in pictures. +2003-02-03,25.7738889,-80.1938889,Miami,FL,disk,180,ONE TRANSPARENT SAUCER WITH DINM BLUE LIGTH. FLYIN NOT TOO FAR FROM THE GROUND.A LITTLE HIGHER THAN A TELEPHONE TOWER. SIZE OF TWO FORD +2003-02-03,40.1022222,-75.2747222,Plymouth Meeting,PA,egg,180,As my mother was driving my friend and I to the mall, I looked to my right and saw a strange sight. A egg shaped craft, slightly light +2003-02-03,40.5983333,-124.1561111,Fortuna,CA,unknown,90,orange glow emitting tear drop shaped orbs +2004-02-03,36.3936111,-78.9830556,Roxboro,NC,sphere,420,Me and my friend were driving home from a party and we saw two spherical objects off to the west. They were red/orange in color and th +2004-02-03,37.4994444,-91.8569444,Licking,MO,light,1200,Three huge bright white lights +2004-02-03,42.3266667,-122.8744444,Medford,OR,unknown,180,Fast moving object disappears into night sky +2004-02-03,36.7280556,-76.5838889,Suffolk,VA,sphere,6,A sunny afternoon with Blue sky and a few white clouds. temp. upper 40s. coming out of a cloud were these flying objects(White in colo +2004-02-03,43.0630556,-86.2283333,Grand Haven,MI,unknown,50,Red lights moving in the sky +2004-02-03,35.6708333,-80.4744444,Salisbury,NC,other,1200,The object was stationary, possibly 300-400 feet in the air and less than 1/4 mile away. We were facing west. The object appeared to be +2004-02-03,40.0427778,-86.1275,Westfield (3 Mi North Of),IN,formation,30,4 bright white orbs in line formation near intersection of SR 38 & US 31 near Westfield, IN. +2004-02-03,36.5455556,-119.3391667,Sultana,CA,diamond,2520,On the night of February 3, 2004 me and a friend where watching the night sky we noticed a strange craft in the western hemisphere it w +2004-02-03,33.5091667,-111.8983333,Scottsdale,AZ,disk,1800,5 ships move from n.east to the south. All ships of disk shape. +2005-02-03,33.6888889,-78.8869444,Myrtle Beach,SC,other,15,Lights off the coast +2005-02-03,36.1525,-83.4152778,Talbott,TN,unknown,300,A circular object near a large airliner going on the same course. +2005-02-03,32.2216667,-110.9258333,Tucson,AZ,light,1,We saw a white, steady light move across the Northern sky from East to West in less than 1 second in Tucson, Az. +2005-02-03,33.4483333,-112.0733333,Phoenix,AZ,fireball,7,Reddish fireball +2005-02-03,40.5852778,-105.0838889,Fort Collins,CO,triangle,9,Triangle craft spotted in Fort Collins Colorado +2005-02-03,38.8338889,-104.8208333,Colorado Springs,CO,circle,1200,Bright white ball flew from west to east, did strange manuevers over and around Polaris. +2006-02-03,36.175,-115.1363889,Las Vegas (30 Miles North Of),NV,other,300,I saw the object about a mile before we got to it, it was standing perfectly still, wide wing span and narrow vertically, silver plates +2006-02-03,39.9522222,-75.1641667,Philadelphia,PA,other,300,Dull black metallic oddly-shaped floating craft +2006-02-03,30.4866667,-90.9561111,Denham Springs,LA,cylinder,60,An intermittently silver & glowing-white cylinder, floating silently, about 1/8 mile up. 2 witnesses. +2007-02-03,28.2486111,-81.2813889,Saint Cloud,FL,cigar,60,i was watching tv and through the window i saw lights and thought it to be an airpline, it was moving to slow and stopped i thought it +2007-02-03,39.4861111,-75.0261111,Vineland,NJ,sphere,180,Two white objects relatively close to each other travel towards philly in silence and synchronicity. +2007-02-03,34.0552778,-117.7513889,Pomona,CA,disk,180,3 saucers moving as if they were airplanes then third comes and beams them +2007-02-03,39.9611111,-82.9988889,Columbus,OH,triangle,180,We were traveling east on Broad Street, east of I-270 when we saw a large black triangular shaped craft heading west very slowly toward +2008-02-03,34.5361111,-117.2902778,Victorville,CA,fireball,3,FALLING FIRE BALL +2008-02-03,46.5747222,-122.9069444,Napavine,WA,light,45,Blue/white light slowly fading and disapeared, resonant humming observed. +2008-02-03,45.7833333,-108.5,Billings,MT,light,300,Very bright light, slow moving object that made no audible noise. +2008-02-03,36.2561111,-86.7138889,Madison,TN,chevron,60,Black object flying with no lights at night +2009-02-03,31.0452778,-83.3922222,Cecil,GA,fireball,3,Meteor with green trail heading west over Cecil Georgia observed by Law Enforcement Officer +2009-02-03,39.5538889,-104.9688889,Highlands Ranch,CO,unknown,420,SW Highlands Ranch, CO 05:42 sighting of brilliant "falling" white light that STOPPED mid-sky & became horizontal strobe lit UFO... +2009-02-03,39.8680556,-104.9713889,Thornton,CO,light,300,Tumbling Star looking UFO above Denver +2009-02-03,32.5419444,-97.3205556,Burleson,TX,other,9,Enormous light covers northern horizon of Fort Worth Texas +2009-02-03,32.5419444,-97.3205556,Burleson,TX,other,9,light from sky came down in arc shape over horizon +2009-02-03,34.4372222,-94.5572222,Watson,OK,light,180,Round, bright, flying object moving in a NE to SW direction then does a star trek exit from sight, straight up. +2009-02-03,26.6155556,-80.0572222,Lake Worth,FL,circle,3,Two circles of light with orange glow over West Palm Beach Fl. +2009-02-03,33.7222222,-116.3736111,Palm Desert,CA,chevron,6,two persons whitness a fast, large stealth fighter like object with no lights in palm desert for six seconds then makes s turn. +2009-02-03,47.4741667,-122.2597222,Tukwila,WA,light,3600,Bright star type light in sky near Tukwila, WA. ((NUFORC Note: Probable sighting of Venus. PD)) +2009-02-03,29.7727778,-94.6825,Anahuac,TX,oval,1200,Stationery changing-form object in night sky with an appearance not of this world. ((NUFORC Note: Sighting of Sirius?? PD)) +2010-02-03,29.1869444,-82.1402778,Ocala,FL,circle,600,((HOAX??)) perfect circle with middle invisible +2010-02-03,33.7488889,-84.3880556,Atlanta,GA,circle,180,A big ring-like object with bright lights in Atlanta +2010-02-03,34.27515,-118.5498,Porter Ranch,CA,light,2,White object streaked across sky, broke apart, and crashed in Porter Ranch, CA +2011-02-03,33.6083333,-117.7444444,Aliso Viejo,CA,light,1800,Bright, moving cluster of lights above South Orange County +2011-02-03,33.3527778,-111.7883333,Gilbert,AZ,disk,1,2/3/2011 Gilbert AZ shaped disc with glowing dim redish light few seconds +2011-02-03,29.3011111,-94.7975,Galveston,TX,light,60,Flashing light +2012-02-03,41.1072222,-73.7963889,Hawthorne,NY,cigar,4,Mysterious "flood lights" spotted in sky +2012-02-03,40.6469444,-83.6097222,Kenton,OH,light,300,Zigzags and corkscrews with dead stops and sharp turns +2012-02-03,41.4227778,-122.385,Weed,CA,light,120,Bright gold/white light flying low over Lake Shastina area. +2012-02-03,26.6155556,-80.0572222,Lake Worth,FL,fireball,600,South florida fireball/ orb changes color, blends in with stars +2012-02-03,38.545,-121.7394444,Davis,CA,light,300,Lights chasing each other and disappearing +2012-02-03,44.1461111,-122.5686111,Vida,OR,other,9000,Hovering craft with flashing red, green, and blue lights. ((NUFORC Note: Possible sighting of Sirius, or one of the planets?? PD)) +2012-02-03,47.3225,-122.3113889,Federal Way,WA,light,900,Bright lights hovering over federal way wa +2012-02-03,37.6872222,-77.0138889,King William,VA,triangle,1800,Triangle object and bright ball of light fall to the ground. +2012-02-03,42.5175,-123.4186111,Merlin,OR,circle,1200,Bright White,Green and Red lights over Merlin Area +2012-02-03,33.4483333,-112.0733333,Phoenix,AZ,sphere,900,My wife and I were traveling west on the 101 loop in Scottsdale Az when we saw five very bright amber orbs in a half moon like formatio +2012-02-03,47.8897222,-117.3566667,Chattaroy,WA,circle,3360,We saw a UFO on Thursday February 3, 2012 in the Southeastern sky. It was a circular shape, and had red, blue, yellow and white flashin +2012-02-03,38.4191667,-82.4452778,Huntington,WV,oval,60,It was a scary oval shaped craft. +2012-02-03,35.7972222,-82.6841667,Marshall,NC,light,1200,I watched and noticed that the object was also moving up, down, sideways and directions that would have been impossible for even a heli +2012-02-03,38.6644444,-80.71,Sutton,WV,circle,5,A large glowing circle sunk from the sky slowly and then shot off. +2013-02-03,43.5963889,-111.9630556,Ucon,ID,other,20,((HOAX??)) Blue and white rectangle type shape big. +2013-02-03,34.2255556,-77.945,Wilmington,NC,sphere,300,This object moved on multiple axises and in patterns not comparable to human technology. +2013-02-03,29.5955556,-90.7194444,Houma,LA,other,60,Very flat vehicle with flashing, white lights on the side. +2013-02-03,42.4555556,-71.6736111,Lancaster,MA,triangle,300,Object is hundreds of yards wide large red rectangular lights v shaped moving dead slow.north to south no noise. +2013-02-03,36.9741667,-122.0297222,Santa Cruz,CA,sphere,180,Orange light ejects flares. +2013-02-03,33.1730556,-86.2516667,Sylacauga,AL,triangle,300,Orbs arranged in a triangular formation fly across the night sky. +2013-02-03,38.0280556,-121.8836111,Pittsburg,CA,fireball,300,Three orbs of orangeish redish lights not ordinary movement of average objects in sky. +2013-02-03,34.5008333,-117.185,Apple Valley,CA,other,300,Report of red lights in sky with vivid accurate discriptions and pictures of objects. +2013-02-03,26.5625,-81.9497222,Cape Coral,FL,light,60,Big bright red light. +2014-02-03,37.9319444,-121.6947222,Brentwood,CA,disk,60,Plunged at high speed into ocean. +2014-02-03,43.0966667,-71.4655556,Hooksett,NH,sphere,600,Seen all over the US. +2014-02-03,35.3069444,-106.4241667,Placitas,NM,light,20,Satellites don't normally follow one right after another on the same path or seem to move that fast. +2014-02-03,47.1275,-118.3788889,Ritzville,WA,cone,3600,'Cone-shaped mystery near Orion. +2014-02-03,47.1275,-118.3788889,Ritzville,WA,cone,3600,'cone-shaped mystery near Orion. +2014-02-03,37.3394444,-121.8938889,San Jose,CA,triangle,300,Triangular bodies with flashing lights midway between downtown and south San Jose on highway 87 +2014-02-03,41.9294444,-88.7502778,Dekalb,IL,fireball,3,Green Fireball Sighting. +1990-02-04,42.7325,-84.5555556,Lansing,MI,formation,20,slow moving 3 faint orange tight v formation low in the sky +1992-02-04,39.9019444,-75.3502778,Swarthmore,PA,triangle,120,I woke up when i saw bright light coming in my window. I looked out and i saw three very bright white lights arranged in a triangle sh +1993-02-04,31.7619444,-95.6305556,Palestine,TX,other,2700,Craft about the size of a 747 with five white lights, as if the craft was pentagon-shaped, that moved very slowly and made no noise. +1999-02-04,34.61,-112.315,Prescott Valley,AZ,circle,900,Bright yellowish-colored lights east of Glassford Hill. No sound. Slow movement forming various formations. Changed color all at once & +1999-02-04,38.2919444,-122.4569444,Sonoma County (Coast Of),CA,circle,3600,Craft flying at the beach!? +1999-02-04,38.6272222,-90.1977778,St. Louis,MO,unknown,20,Saw brief glow of light in northern sky. Light change color from soft blue to deep red. Saw it in at most three places +2000-02-04,36.0247222,-78.4747222,Youngsville,NC,light,5,Object looked like star went across sky north to south to fast to be airplane. Object pulsed bright to dim. +2000-02-04,47.0380556,-122.8994444,Olympia,WA,light,90,light appeared far away in the sky, moved at same speed for about 1 min. then disapeared. +2000-02-04,29.7630556,-95.3630556,Houston,TX,triangle,120,Driving on freeway looked up and saw two steady white lights (like headlights) in the sky. As we passed under the object a third light +2000-02-04,34.54,-112.4677778,Prescott,AZ,circle,120,Bright yellow-orange circular objects flying in a "V" formation directly overhead heading NNE. +2000-02-04,34.61,-112.315,Prescott Valley,AZ,circle,180,Yellow-orange objects moving NNW and N 'til they formed a perfect "V" formation on the horizon. +2000-02-04,34.61,-112.315,Prescott Valley,AZ,formation,1200,THEY WERE AMBER COLOR.STARTED IN A STRAIGHT VERTICLE LINE. THOUGHT THEY WER ORIONS BELT. THEY MOVED INTO A TRIANGLE FORMATION. THERE WA +2000-02-04,41.665,-86.0758333,Osceola,IN,other,1,a large shaft of blue light that appeared more or less perpendicular to the horizon +2000-02-04,32.8369444,-97.0816667,Euless,TX,fireball,3,BRIGHT, NEON GREEN FIREBALL OBJECT STREAKED ACROSS THE SKY; SIGHTED FROM THE HIGHWAY, NEAR DFW AIRPORT IN EULESS, TEXAS, USA. +2001-02-04,29.875,-98.2622222,Canyon Lake,TX,light,10800,Star/Plane looking Red,Blue,and White flashing light,slowly moving +2001-02-04,56.4708333,-132.3766667,Wrangell,AK,light,1500,light, going from very bright to very dim, west of Wrangell island,slight rocking movement. Partly cloudly skies. Flash of red light ne +2001-02-04,33.4483333,-112.0733333,Phoenix,AZ,rectangle,300,Chrome garbage can in my field of view of high flying jet. +2001-02-04,39.7391667,-104.9841667,Denver,CO,light,45,A star-like object flying past the moon, faster than a jet +2001-02-04,37.1027778,-85.3063889,Columbia,KY,oval,120,Oval, with red and orange pulsating lights. +2001-02-04,27.8002778,-97.3961111,Corpus Christi,TX,cylinder,60,WHITE CYLINDER OBJECT MOVING ACROSS THE SKY, ZOOMING AWAY AT A 45 DEGREE ANGLE +2001-02-04,45.1158333,-123.2061111,Amity,OR,disk,7,PLEASE HELP US FIND OUT WHAT WE ARE SEEING IN OUR SKY THAT THE LOCAL UFO HOT LINE DIDN,T FEEL LIKE TALKING TO US ABOUT. +2001-02-04,40.7777778,-84.8422222,Pleasant Mills,IN,light,3600,Bright object that stayed in one spot for approxametlly one hour. +2001-02-04,36.175,-115.1363889,Las Vegas,NV,other,20,ON SUNDAY NIGHT, 2-4-01, AT 2045 HRS, MYSELF AND A FRIEND WERE LOOKING UP AT A DARK LAS VEGAS SKY AND SAW A BOOMERANG SHAPED OBJECT, AM +2001-02-04,35.3733333,-119.0177778,Bakersfield,CA,cone,5400,Very bizzarre hovering bright object displays laser-type light activity. +2001-02-04,31.1169444,-97.7275,Killeen,TX,oval,73800,viewed bright white lights in oval shape that conitinued to flash to smaller white lights nearer the center of the oval. +2002-02-04,33.94,-118.1316667,Downey,CA,circle,300,1 light, joined by two more form triangle and perform some formations, before disappearing and flying away in a pattern. +2002-02-04,44.4311111,-84.0258333,Lupton (Near),MI,light,10800,Bright hovering object with red lights- erratic pattern of movement +2002-02-04,28.5380556,-81.3794444,Orlando,FL,light,600,UFO's manuever over Orlando, Florida +2002-02-04,47.6588889,-117.425,Spokane,WA,light,9000,Moving lights over Spokane +2002-02-04,37.6241667,-104.7797222,Walsenburg,CO,cylinder,300,I was freaked out. +2002-02-04,39.2688889,-84.2638889,Loveland,OH,triangle,30,A triangular object was observed to be moving at a normal speed then it dissappeared. +2002-02-04,37.115,-107.6325,Ignacio,CO,fireball,120,Was it a comet? +2003-02-04,34.1013889,-84.5194444,Woodstock,GA,other,180,My mom saw one a about two weeks ago .I was taking the trash down to the bottom of the street and I looked up and saw this curved sha +2003-02-04,37.9063889,-122.0638889,Walnut Creek,CA,other,600,Five amber lights spanning 75 yards came silently towards me from the Northeast. The lights appeared connected. +2003-02-04,47.0380556,-122.8994444,Olympia,WA,light,1500,Two bright objects streaking throught the sky. +2003-02-04,45.7833333,-108.5,Billings,MT,changing,180,Glowing object appears to be luminiscent balloon but dissappears rapidly to the SE at high speed. +2004-02-04,29.8830556,-97.9411111,San Marcos,TX,teardrop,30,Saw huge object less than 500 feet from ground started to emerge from overcast of clouds +2004-02-04,47.4538889,-122.3205556,Seatac,WA,triangle,10,Lights over Seatc. +2004-02-04,41.345,-81.5286111,Northfield,OH,sphere,1200,Many objects appearing to be spheres, made up of erratic squiggly lines at various altitudes. +2004-02-04,30.4455556,-86.5791667,Shalimar,FL,sphere,240,red spheres flying in large cilrcles +2005-02-04,33.4483333,-112.0733333,Phoenix,AZ,rectangle,120,UFO Sighting on North Mountain in Phoenix +2005-02-04,38.8402778,-77.4291667,Centreville,VA,circle,120,saw circular figure with moving lights +2005-02-04,37.3394444,-121.8938889,San Jose,CA,sphere,120,Sphere emits Rainbow of Colors +2005-02-04,29.6513889,-82.325,Gainesville,FL,disk,1800,Strange disk shaped object witnessed in Flordia. +2005-02-04,47.5405556,-122.635,Port Orchard,WA,triangle,180,Triange Port Orchard, WA Witnessed at 2 different locations +2005-02-04,47.5405556,-122.635,Port Orchard,WA,triangle,180,Triangle, Port Orchard,WA +2005-02-04,38.9908333,-88.1625,Newton,IL,fireball,30,Bight Fireballs in the sky +2005-02-04,41.176944399999996,-112.0030556,Riverdale,UT,light,3,Light was about the size of a BB held at arms length +2005-02-04,31.9677778,-110.2938889,Benson,AZ,light,30,strange lights in benson arizona +2006-02-04,39.5127778,-115.9597222,Eureka,NV,chevron,10,3 bright connected lights rose up in north then headed south gathering speed high overhead and sped straight south and over horizon in +2006-02-04,33.4483333,-112.0733333,Phoenix,AZ,other,1800,VERTICAL RAINBOW INSIDE GLASS LIKE TRIANGLE OVER PHOENIX +2006-02-04,43.55,-96.7,Sioux Falls,SD,triangle,60,Triangle object without colored or blinking lights, shortly later a bright shere shaped object was scene. +2006-02-04,35.7452778,-81.685,Morganton,NC,light,30,Bright Blue/Purple light with red center falls out of sky +2007-02-04,34.1808333,-118.3080556,Burbank,CA,light,30,Balloon shaped bright gold object emitting gold sparks in Burbank, CA +2007-02-04,34.4358333,-119.8266667,Goleta,CA,other,1200,shiny metal cluster of spheres over goleta +2007-02-04,42.2694444,-71.6166667,Westborough,MA,disk,10,Disc Above the Mass Pike +2007-02-04,33.3061111,-111.8405556,Chandler,AZ,circle,300,4 sliver round objects moving East to West at High Altitude +2007-02-04,34.1808333,-118.3080556,Burbank,CA,fireball,120,Bright orange light over Burbank, CA Feb 4, 2007 +2007-02-04,39.0180556,-91.8969444,Auxvasse,MO,unknown,1,Very Bright Green Light Low In the Sky Going fron West To East something like a meteor. +2007-02-04,39.0019444,-91.2397222,Truxton,MO,fireball,2,Large bright greenish blue light with very long tail. smaller than aircraft , size of very small car. +2007-02-04,41.5244444,-90.5155556,Bettendorf,IA,unknown,10,Fireball, illuminating as dropping to ground 30 degrees inclination from horizontal +2007-02-04,32.7152778,-117.1563889,San Diego,CA,light,180,red light slowly moving horizontally and sometimes in a circular pattern for about 3 minutes until it faded out +2007-02-04,33.9202778,-80.3416667,Sumter,SC,triangle,30,SILIENT FLOATING TRIANGLE OBJECT WITH VERY BRIGHT WHITE LIGHT'S SITTING IN MID-AIR ABOUT 150 FEET ABOVE GROUND. WITNESSED OFF OF QUI +2007-02-04,38.5322222,-93.5219444,Windsor,MO,sphere,20,this could have been space junk but 2 nights in a row ??? +2007-02-04,36.2805556,-80.3594444,King,NC,unknown,2,Was the brightest red to orange colored object I have ever seen in the sky. +2007-02-04,38.46,-93.2025,Cole Camp,MO,fireball,15,As several others here have reported on the evening of Feb 4, 2007 at approximately 10 P.M. an object was observed by myself and my wif +2008-02-04,37.775,-122.4183333,San Francisco,CA,formation,60,Three amber ovals quicly transited the sky above San Francisco in loose formation at high altitude +2008-02-04,43.2080556,-71.5380556,Concord,NH,cigar,6,Bright White Cigar-Disk Shape Objected Spotted Over Concord, NH +2008-02-04,38.7633333,-121.1627778,Granite Bay,CA,other,600,Large blimp-like object hovering with multiple white bright lighte, leaving quickly at a rapid speed +2008-02-04,33.4483333,-112.0733333,Phoenix,AZ,other,600,Snake like ufo in Phoenix +2008-02-04,28.0408333,-99.3541667,Encinal,TX,formation,1200,5 UFO's in semi-formation, 2 disappearing and reapearing away from initial formation. +2008-02-04,36.0080556,-93.1863889,Jasper,AR,circle,300,A round aircraft with many lights went over our house and seem to vanish after crossing the river. +2008-02-04,30.3458333,-96.5280556,Somerville County,TX,circle,1800,((HOAX??)) i noticed two blue round lights flying west that glowed. +2008-02-04,40.6883333,-75.2211111,Easton,PA,triangle,180,Triangular craft blue lights. +2009-02-04,39.9,-75.2894444,Glenolden,PA,oval,2,The sky lit up blue - there was a black figure within the light. (Distinct shape) +2009-02-04,35.8422222,-90.7041667,Jonesboro,AR,light,300,Mysterious light growing brighter then ascending then dissapearing. +2009-02-04,34.0522222,-118.2427778,Los Angeles,CA,light,240,Bright object over Los Angeles turning from west to east then toward the south. ((NUFORC Note: Possible sighting of ISS?? PD)) +2009-02-04,30.7613889,-88.0913889,North Mobile County,AL,cigar,10,just at sun up at or near 7a.m. clear blue sky no clouds and a truly cigar shaped object that looked white to me like a belly of a fuel +2009-02-04,39.8569444,-84.7933333,New Paris,OH,diamond,60,Insane lights and creepy high pitch noise ommiting from diamond shaped object +2009-02-04,40.7141667,-74.0063889,New York City (Queens),NY,disk,600,It was about 12:30-1:00 in the after noon when I was walking my son threw a board walk. We were talking about airplanes and military we +2009-02-04,33.2075,-92.6661111,El Dorado,AR,cigar,120,narrow silver object moving rapidly south +2009-02-04,30.2669444,-97.7427778,Austin (Rural),TX,circle,300,It was right after dark, Wednesday, February 4, 2009. I had just let the dog out for a run. The sky was clear with only a few stars +2009-02-04,42.8741667,-77.2883333,Canandaigua,NY,unknown,1800,I looked up to see these streaks that went up into the clouds. +2009-02-04,34.1647222,-114.3002778,Earp,CA,formation,15,A momentary string of orange-yellow lights near CA-AZ border. +2009-02-04,30.71,-101.2002778,Ozona,TX,light,3600,bright light camoflouged as a star gets brighter then turns burnt orange and bright again from my back yard +2009-02-04,32.4863889,-91.8591667,Start,LA,unknown,300,We seen 3 ships in a triangle pattern that hovered over us very close to the ground. +2009-02-04,35.0455556,-85.3097222,Chattanooga,TN,light,10,Green light with sparks as it entered the atmosphere. ((NUFORC Note: Possible meteor?? PD)) +2010-02-04,44.8486111,-123.2327778,Monmouth,OR,fireball,60,Yellow-orange-white-ish fireball without tail that appeared below clouds - sky is overcast. +2010-02-04,34.0522222,-118.2427778,Los Angeles,CA,light,420,Bright white object without strobe/wing lights or sound. ((NUFORC Note: Sighting of ISS, which was visible at 05:34 hrs.. PD)) +2010-02-04,43.1863889,-77.8041667,Spencerport,NY,disk,20,Saucer like craft with round top and bottom. Strange texture and mixed colors... gliding just above trees. +2010-02-04,39.8813889,-83.0930556,Grove City,OH,sphere,20,((HOAX??)) white lights flying around the moon several times. +2010-02-04,41.85,-87.65,Chicago,IL,disk,1.5,FLAT BLACK COLOR DISC. +2011-02-04,42.4416667,-76.0325,Marathon,NY,chevron,20,4 lights as bright as stars zoomed past orions belt +2011-02-04,44.3377778,-72.7566667,Waterbury,VT,rectangle,300,Blimp-shaped object with large, non-blinking lights. Counted 6-7 airplanes in the vicinity at the time. +2011-02-04,42.2830556,-87.9530556,Libertyville,IL,circle,2,bright white, round object (the size of a green pea if held at arm's length) flew through the sky +2011-02-04,44.2055556,-73.2466667,Ferrisburgh,VT,light,300,odd lights seen while traveling thru Ferrisburg , Vermont +2011-02-04,30.1022222,-95.2294444,Porter (Ne Outside Houston),TX,triangle,120,Large object passes overhead in night sky, totally silent, white lights and a single blinking green light +2012-02-04,47.6588889,-117.425,Spokane,WA,diamond,1200,Dancing blue light in the sky +2012-02-04,35.3619444,-86.2094444,Tullahoma,TN,sphere,2400,Within 40 minutes I saw 3 very slow moving bright white balls of light that traveled the same path and seemingly exploded. +2012-02-04,48.051944399999996,-122.1758333,Marysville,WA,light,60,I was standing outside the front of my house having a cigarette. I looked to the east and saw a light which I first thought was a plane +2012-02-04,40.3666667,-96.1958333,Tecumseh,NE,triangle,300,Triangular shaped craft +2012-02-04,33.6602778,-117.9983333,Huntington Beach,CA,oval,3900,Multiple Shimmery Objects in sky above Huntington Beach @ 11:00 +2012-02-04,43.5977778,-84.7675,Mount Pleasant,MI,light,900,Not one, but TWO, UFO's spotted in Mt. Pleasant, Michigan on Feb. 4, 2012 +2012-02-04,43.0905556,-73.4991667,Greenwich,NY,other,120,Enormous odded shaped Mothership that released another UFO from it. Both purple in color. +2012-02-04,47.4272222,-92.9375,Hibbing,MN,light,120,Lights disappearing and reappearing +2012-02-04,41.7055556,-70.2291667,West Yarmouth,MA,sphere,60,Redish orange twinkling object +2012-02-04,38.1075,-122.5686111,Novato,CA,disk,80,At approximately 5:40PM tonight (Friday 2-4-12) I was home with my daughter folding laundry and was about to head upstairs to put the c +2012-02-04,34.61,-112.315,Prescott Valley,AZ,cylinder,120,Long, cylindrical shape, at near sunset, disappearing behind mountains. +2012-02-04,32.8572222,-116.9213889,Lakeside,CA,light,2700,Red Light +2012-02-04,44.1461111,-122.5686111,Vida,OR,other,16200,2 craft spotted, one with blinking red, green, and blue lights, the other a reddish color +2012-02-04,26.1,-80.4,Weston,FL,chevron,600,LONG COLUMN OF AIRCRAFT OVER FT. LAUDERDALE +2012-02-04,42.8247222,-83.2647222,Oxford,MI,rectangle,60,Rectangular Orange object low in sky +2012-02-04,33.7488889,-84.3880556,Atlanta,GA,other,600,5 lights moving southbound maybe over decatur, GA. +2012-02-04,41.3302778,-80.7255556,Cortland,OH,fireball,240,Bright red fireball streaking down the sky. +2012-02-04,38.2541667,-85.7594444,Louisville,KY,sphere,60,Orange colored light with aura zig zagging in a westwardly fashion +2012-02-04,40.6408333,-74.8816667,Annandale,NJ,fireball,120,Slow moving, silent orange fireball +2012-02-04,37.9736111,-122.53,San Rafael,CA,light,180,Light cluster hovers then moves across the sky, changing colors white, blue, green +2012-02-04,41.6744444,-72.8586111,Plainville,CT,fireball,3,Pretty bright light, like a star coming down from the sky, just seconds. This is the second time i see it, in the same place. +2012-02-04,33.4147222,-111.9086111,Tempe,AZ,fireball,300,Fireballs turn into jelly-saucers +2013-02-04,35.2269444,-80.8433333,Charlotte,NC,other,120,Small kidney bean shaped UFO over plaza-midwood (east side of charlotte) midmorning +2013-02-04,42.6402778,-72.5,Gill,MA,circle,13,Light seemed like airplane until it took a 90 degree turn upward and zipped out of sight. +2013-02-04,35.7063889,-81.2188889,Conover,NC,light,3600,3 individual noiseless crafts, green,white,red flashing in a horizontal pattern in night sky near Conover, NC. +2013-02-04,31.9516667,-97.3211111,Whitney,TX,changing,1200,V-shaped UFO 's that changed shape that are bright white in color +2013-02-04,42.7652778,-71.4680556,Nashua,NH,diamond,2,UFO sighting in Nashua NH, 02/03/2013 +2013-02-04,43.3269444,-75.1872222,Remsen,NY,cylinder,300,There was a flying object seen flying and hovering over and around my town. +2013-02-04,39.2775,-74.575,Ocean City,NJ,light,1800,2 Objects on bay between parkway exits 10 and 25. +2014-02-04,47.1855556,-122.2916667,Puyallup,WA,sphere,300,Red sphere moved across the sky in a straight line. +2014-02-04,44.2238889,-95.3641667,Revere,MN,triangle,5,Driving into work this morning heading east on hwy 14 towards Lamberton, Mn.approximately 7:40-AM. triangular shape craft investigatin +2014-02-04,39.7391667,-104.9841667,Denver,CO,oval,60,Black oval shaped object moving slow with no change in elevation. Snowy conditions and low clouds, but object was well below clouds. +2014-02-04,27.7705556,-82.6794444,St. Petersburg,FL,other,180,While walking my dog , I saw a star like object move and disappeared . +2014-02-04,36.1988889,-115.1166667,North Las Vegas,NV,circle,180,Turquoise orb pulsing in North Las Vegas neighborhood. +2014-02-04,38.4191667,-82.4452778,Huntington,WV,other,10,Weird, maybe a meteor passing through atmosphere. But on and off blue then red, orange and back to blue strobing light. Illuminating th +2014-02-04,36.3533333,-82.0325,Butler,TN,light,360,An infrared security camera records a bright orb casting light on the ground. +1971-02-05,40.0791667,-75.3019444,Conshohocken,PA,circle,900,Very large circular craft with engine problem, descends, stabilizes,restores engines and tests them. +1971-02-05,39.5111111,-96.0777778,Havensville,KS,circle,1200,Lights similar in size and color to stars, zipping around in night sky, verified by grandparent. +1979-02-05,41.1013889,-81.4419444,Tallmadge,OH,triangle,120,ufo lights seen in Tallmadge, Ohio ,beginning on 2-05-79 +1988-02-05,29.5955556,-90.7194444,Houma,LA,disk,1800,walking home i saw a gray saucer in the sky!!!!!! +1990-02-05,35.2583333,-77.9708333,Sleepy Creek,NC,light,180,Mystery light attracts Air Force attention in NC. +1997-02-05,35.0844444,-106.6505556,Albuquerque,NM,flash,180,Two crafts flying onto field +1998-02-05,35.1494444,-90.0488889,Memphis,TN,triangle,10,Black triangle near I-55 south of Memphis, observed for 10 minutes by two people. +1998-02-05,43.6983333,-86.3638889,Hart,MI,fireball,180,my sister and i witnessed a ufo on the morning of feb. 5, 1998 From - Fri Feb 06 14:48:57 1998 Received: from colorado.nwlink.com (nobo +1998-02-05,39.6477778,-84.5272222,Gratis,OH,triangle,900,There was one light at each corner and 3 in the center. 2 of the corners were blinking and 1 in the center. It flew very slow and made +2000-02-05,38.7613889,-120.5855556,Pollock Pines,CA,light,900,Light got brighter and closer and larger, moving in circles, then darting off left then to right +2001-02-05,36.0625,-94.1572222,Fayetteville,AR,other,5,Fireball seen in the sky North of Fayetteville, Arkansas. +2001-02-05,26.1219444,-80.1436111,Fort Lauderdale,FL,triangle,20,Small triangular objects seen near i-595 in fort lauderdale floating. +2001-02-05,33.9925,-117.5155556,Mira Loma,CA,formation,1200,40+Lights seen in daylight with spiral formation of 25+ lights over Mira Loma,California(Ontario,CA) +2001-02-05,43.6136111,-116.2025,Boise,ID,diamond,600,A kite-shaped object with white lights in each corner was seen flying over central Boise and toward Meridian. +2001-02-05,33.5091667,-111.8983333,Scottsdale,AZ,light,300,Lights over Scottsdale early Feburary of 2001. +2001-02-05,31.5544444,-110.3030556,Sierra Vista,AZ,unknown,1200,I'm not sure if this was even a "craft." At approx. 2100 hrs I was returning home from Cochise College where I teach. On the way I n +2001-02-05,34.0013889,-81.7722222,Saluda,SC,unknown,1800,A bright colored light was 200 feet above the trees going very slowly without sound in Saluda County +2001-02-05,34.4988889,-82.0144444,Laurens,SC,light,1800,Bright light and several others and it went completely out +2001-02-05,36.6675,-86.8519444,Adairville,KY,triangle,900,3 craft, triangular shaped with dome top with yellow light, red light on one wing blue light on other. No engine noise. +2002-02-05,42.4727778,-122.8016667,Eagle Point,OR,light,60,Orange lights traveling slowly across sky fade out and diminish in size +2002-02-05,45.0275,-84.6747222,Gaylord,MI,rectangle,120,WOW +2003-02-05,35.4086111,-80.5797222,Concord,NC,changing,3600,We were looking at it and it was so bright and it did fly down at the camcorder one time. It changed colors all the time. +2003-02-05,37.0583333,-120.8488889,Los Banos (Near),CA,circle,180,it was a flying circle that had two lights and one shining on the ground near a light colered house. +2003-02-05,32.2216667,-110.9258333,Tucson,AZ,light,3,The sighting resembled a shooting star, but the band of light was much thicker and extremely defined. +2004-02-05,26.625,-81.625,Lehigh Acres,FL,other,120,well im not a beleiver but i now i saw somthin wierd a teere drop shaped craft +2004-02-05,33.4222222,-111.8219444,Mesa,AZ,disk,1800,Gold hub cap-like shape that bobbed along rather unsteadily. +2004-02-05,33.7091667,-117.1963889,Sun City,CA,sphere,150,Menifee, Ca: 4 Spheres seen by 3 people +2004-02-05,34.1808333,-118.3080556,Burbank,CA,triangle,600,V-shaped craft with 4-bright lights on it's front tow sides, traveled over the 101 Freeway in Los Angeles, CA. +2004-02-05,46.3238889,-120.0075,Sunnyside,WA,formation,300,bright clusters of light +2004-02-05,29.0336111,-95.4341667,Lake Jackson,TX,circle,3600,I was out walking my dog at 8:00 pm when I saw this very bright light coming over the tree tops. +2005-02-05,39.6288889,-75.1597222,Monroeville,NJ,unknown,10,I saw an object hovering high in the sky above my house +2005-02-05,35.8238889,-80.2536111,Lexington,NC,disk,1680,silver disc, about 3-6 miles away, mabey 22 ft. in length, 13-16 ft. tall +2005-02-05,43.0388889,-87.9063889,Milwaukee,WI,diamond,40,Noticed a bright metallic object in the sky ..diamond shape, no wing's,object went foreward and straight up into cloud's. +2006-02-05,32.895,-97.5455556,Azle,TX,cross,120,The "objects" flew directly over me about 50 feet in the air. The "objects" were redish orange in color and all but one were about 10 f +2006-02-05,34.5325,-83.985,Dahlonega,GA,diamond,7200,very large object with red blue and green lights, hovering in the sky with approxamatly 30 degrees of movement when movement was notic +2006-02-05,42.2411111,-83.6130556,Ypsilanti,MI,other,600,Boomerang style crafted spotted with no sound only lights on the craft. +2006-02-05,43.6480556,-93.3680556,Albert Lea,MN,unknown,20,The object had no blinking lights and went in 3 different directions, but those turns were faster than what an airplane could achieve +2006-02-05,34.0336111,-117.0422222,Yucaipa,CA,sphere,60,Orangish Light emitting flashes or sparks +2006-02-05,34.0555556,-117.1816667,Redlands,CA,light,30,i saw it at about 11:30 P.M. and it was a couple miles away from my house.It was an orange light that was fairly bright. It slowly move +2007-02-05,42.425,-71.0666667,Malden,MA,oval,10,Around 12:30am- 1:00am EST I heard a loud explosion will a smaller blast behind it. I ran to the window looking into the sky expecting +2007-02-05,36.4425,-83.5997222,New Tazewell,TN,cigar,30,Metalic,very bright n shiney.Reddish color around tail fins +2007-02-05,33.7513889,-84.7477778,Douglasville,GA,cylinder,60,whitish cylinder shaped object stationary and wobbling +2007-02-05,44.3,-120.8333333,Prineville,OR,unknown,150,Lights moving in a straight line, slow and steadily close to the ground with a very slight sound. +2008-02-05,33.7283333,-117.1455556,Menifee,CA,circle,8,very effortlessly fast moving object I've ever seen in the sky +2008-02-05,47.6588889,-117.425,Spokane,WA,rectangle,120,Large, low-flying square aircraft with lights in each corner moves quickly then makes a right turn +2008-02-05,29.2163889,-82.0577778,Silver Springs,FL,unknown,60,1 red light with many white lights caused vision to be distorted over silver springs florida +2008-02-05,25.7738889,-80.1938889,Miami,FL,circle,6,light copper sphere floats over my condo .. no lights .. i think it was a drone or some sort of monitoring unit +2009-02-05,40.6994444,-99.0811111,Kearney,NE,circle,600,Large, round, red light sighted in Kearney, Nebraska silently flying very low and slow to the ground. +2009-02-05,47.4066667,-122.0375,Maple Valley,WA,triangle,180,Triangle shaped ufo in maple valey almost crashes +2009-02-05,47.0380556,-122.8994444,Olympia,WA,rectangle,5,This is to correct a prior report I made on or about Jan 2/2010. I apologize for being so far off in my estimation of the length of tim +2009-02-05,40.4863889,-86.1336111,Kokomo,IN,other,600,i seen a bright light across the feild, and i asked my dad to look at it, and he said it was probably a plane, but my mom said it was t +2009-02-05,32.9477778,-112.7161111,Gila Bend,AZ,egg,900,Egg Shape over Gila Bend,Az. 2-5-09 +2009-02-05,34.6991667,-86.7483333,Madison,AL,other,300,Plane hoovering over Heritage Elementary School on County Line Rd. +2009-02-05,32.7152778,-117.1563889,San Diego,CA,fireball,15,A bright white fireball in the N about 1k high, fell to the NE it was about to hit houses and vanished, lasted15 secs. +2009-02-05,26.2708333,-80.2708333,Coral Springs,FL,circle,30,around 5:30PM near Coral Springs looking towards the sunset a white orb was low came down fast then disappeared.. it was during the tim +2009-02-05,32.9358333,-92.605,Spearsville,LA,triangle,360,3 slowly moving objects in a triangle form. +2009-02-05,38.0280556,-121.8836111,Pittsburg,CA,oval,30,I've never seen anything like it. +2009-02-05,28.3858333,-80.7422222,Cocoa,FL,changing,1800,Star looking object spliting in two sighted over Cocoa, FL on SR 520 East +2009-02-05,29.7027778,-98.1241667,New Braunfels,TX,light,900,Observed unusual bright, red/orange light hovering for at least 15 min., Texas Hill Country. ((NUFORC Note: Sighting of Venus?? PD)) +2010-02-05,40.015,-105.27,Boulder,CO,light,7200,large and bright blinking star begin to move, stop, move and stop erratically over the Flatirons +2010-02-05,48.0402778,-122.405,Langley,WA,triangle,10800,Triangles of colored lights, two fairly stationary slowly moving higher in the night sky, two darting about that sped off. +2010-02-05,46.2633333,-119.4866667,Benton City,WA,sphere,300,Bright orange and white lights low in the sky and then just disappeared. +2010-02-05,32.3158333,-94.5163889,Tatum,TX,other,600,Planes or UFO's in East Texas? +2010-02-05,40.4405556,-79.9961111,Pittsburgh,PA,unknown,18000,Power went out and bright red and blue lights lit up the sky. Later, green lights flashed +2011-02-05,41.35,-72.0788889,Groton,CT,light,3060,Red, orange and sometimes blue lights zipping around in the sky, vertical, horizontal, sometimes swinging - seem to follow each other. +2011-02-05,47.1169444,-117.7338889,Ewan,WA,diamond,1200,Strange bight bule light in Ewan,Wa +2011-02-05,36.3883333,-86.4466667,Gallatin,TN,oval,180,Found strange object in the ground that took off. +2011-02-05,40.7608333,-111.8902778,Salt Lake City (Rose Park),UT,other,1200,Star crafts +2011-02-05,32.7152778,-117.1563889,San Diego,CA,sphere,60,metallic sphere +2011-02-05,38.7522222,-121.2869444,Roseville,CA,circle,120,Bright White Light Sitting in a Northern Ca. Sky +2011-02-05,34.0552778,-117.7513889,Pomona,CA,oval,5,fast moving white/yellow oval object over inland empire +2011-02-05,38.6402778,-92.1222222,Holts Summit,MO,disk,180,3rd Sighting of same craft. +2011-02-05,42.7469444,-73.7594444,Latham,NY,oval,4,oval fast moving object seen two nights in a row at the same time and location. +2011-02-05,35.7719444,-78.6388889,Raleigh,NC,triangle,600,V-Shaped Craft Hovering Above the Intersection of Six Forks Road and I-540 in Raleigh NC +2011-02-05,33.6602778,-117.9983333,Huntington Beach,CA,fireball,180,Orange orbs (Fireballs, Plasma Balls) seen on a continuing basis for three years over Huntington Beach, California. +2011-02-05,45.2102778,-123.1975,Mcminnville,OR,circle,180,Four Amber/Orange Lights Seen South of McMinnville, Or. +2011-02-05,40.8486111,-111.9061111,North Salt Lake,UT,light,1500,4 red lights that can not be explained! +2011-02-05,35.0886111,-92.4419444,Conway,AR,triangle,120,sighting of hovering triangle shaped ufo over conway,arkansas +2011-02-05,35.0525,-78.8786111,Fayetteville,NC,light,14400,One white light moveing very fast and irraticly over hope mills/fayetteville for over 4 hours. +2011-02-05,39.5069444,-84.7452778,Oxford,OH,triangle,30,Triangle object. Bright lights on all three corners. Hovering down the highway. +2012-02-05,33.8816667,-118.1161111,Bellflower,CA,triangle,60,Triangular shaped object hovering above a house in Bellflower CA. +2012-02-05,39.8813889,-83.0930556,Grove City,OH,light,30,"Star" zoomed across night sky at high speed. stopped and began acting like star again. +2012-02-05,35.3733333,-119.0177778,Bakersfield,CA,light,10800,Intense flashing light object west of Bakersfield, CA. ((NUFORC Note: Probable sighting of Sirius, we suspect. PD)) +2012-02-05,40.7608333,-111.8902778,Salt Lake City,UT,triangle,2100,A stationary bright white light in sky flashing red and blue until gradually fading away. +2012-02-05,35.1586111,-96.4930556,Wewoka,OK,triangle,300,Officer sees bright light/ blue light over local park +2012-02-05,33.7091667,-117.9527778,Fountain Valley,CA,formation,5,Two objects at high altitude merge into one then disapear completely. +2012-02-05,39.7661111,-75.5097222,Bellefonte,DE,teardrop,180,Glowing orange cluster of lights +2012-02-05,42.4408333,-73.6613889,Niverville,NY,light,60,Two lights seen in eastern sky ,upstate ny +2012-02-05,33.7488889,-84.3880556,Atlanta,GA,light,3600,Bright object in sky +2012-02-05,41.2319444,-76.9994444,South Williamsport,PA,light,120,Strange yellow light moved up the side of the mountain, into the air and then disappeared. +2012-02-05,33.5777778,-101.8547222,Lubbock,TX,fireball,300,Fireballs seen in the sky +2012-02-05,33.5777778,-101.8547222,Lubbock,TX,sphere,600,Hovering glowing objects, strategically line up and travel west. +2012-02-05,38.9822222,-94.6705556,Overland Park,KS,light,120,5 red lights moving up into the sky, flicker out. +2012-02-05,38.595,-90.5461111,Ballwin,MO,light,300,Orange balls of light silently flying and circling in formation. +2012-02-05,40.7655556,-73.0155556,Patchogue,NY,light,120,Saw a red Glowing light in the Southeastern sky that was glowing and not moving. When a airplane coming from the north towards the ligh +2013-02-05,35.6869444,-105.9372222,Santa Fe,NM,changing,2700,UFO over Santa Fe, NM, possibly disk shaped, stationary, with light rays of various colors emanating from it. ((Sirius??)) +2013-02-05,41.8238889,-71.4133333,Providence,RI,cigar,180,Bright light cigar shape hovering and disappearing. +2013-02-05,47.6733333,-117.2383333,Spokane Valley,WA,sphere,120,Saw them in the sky about cloud level flying up and down through the clouds and around in in circular patterns.light colored disk o +2013-02-05,29.2769444,-89.3547222,Venice,LA,light,2700,Orange/Red lights 1-5 at a time appear and dissapear +2013-02-05,42.865,-71.4938889,Merrimack,NH,unknown,15,Floating lights over treeline +2014-02-05,37.7780556,-81.1883333,Beckley,WV,formation,30,There was a boom at about 4:06pm that was felt in 3 different counties and tonight well at 12:40am on 2/5/14 I went out to look at the +2014-02-05,37.3433333,-85.3419444,Campbellsville,KY,unknown,1200,I don't know if it was UFO's but for 20 minutes a loud trumpet sound could be heard in the sky above campbellsville university. A lot o +2014-02-05,47.6588889,-117.425,Spokane,WA,disk,2640,Hovering, undentified, flying object that changed colors and traveled through the sky +2014-02-05,30.275,-89.7811111,Slidell,LA,circle,45,Greyish silver object over Slidell,LA +2014-02-05,47.6588889,-117.425,Spokane,WA,sphere,240,Large bright stationary spherical object appearing to be with earth atmosphere about 45 degrees above horizon. +2014-02-05,26.6402778,-81.8725,Fort Myers,FL,other,300,Large bright U shaped (horseshoe/double tongue fork) looking object falling from the sky. +2014-02-05,35.9938889,-78.8988889,Durham,NC,chevron,180,I was driving Eastbound on the interstate, when I looked to my left and sighted five blue glowing lights in a chevron, or V-shaped form +2014-02-05,48.3725,-114.1805556,Columbia Falls,MT,light,600,Extremely bright light south west of Columbia Falls +2014-02-05,33.4222222,-111.8219444,Mesa,AZ,oval,120,2 orange glowing orb hovering in the sky by the South 202 and McKellips +2014-02-05,44.8513889,-123.1855556,Independence,OR,light,120,Independence Or Orange Light Ball UFO +2014-02-05,26.3180556,-80.1,Deerfield Beach,FL,light,300,2 bright round orange balls flying close together for a few minutes ( maybe 3). One diappears completely. The other travels a bit, the +2014-02-05,40.2858333,-76.6505556,Hershey,PA,light,10,Bright flash of light. Solid white object in the sky. disappeared after a couple seconds. seen while driving . +2014-02-05,33.9375,-117.2297222,Moreno Valley,CA,light,300,So me and my guardian were getting home along with my siblings and wen we pull up we see 4 lights flying perfectly aligned and we stare +2014-02-05,21.5027778,-158.0236111,Wahiawa,HI,circle,40,One Bright Red Fire Looking Round Light with Seven Smaller White Lights Following In Weird Pattern Moving West (Hawaii) +1986-02-06,34.1866667,-118.4480556,Van Nuys,CA,cone,42000,This was, an-honest-to-goodness solid object, not my imagination. Really! I wish I had had my camera. +1993-02-06,47.6283333,-122.6275,Meadowdale,WA,sphere,300,Hundreds of spheres moving West to East. +1995-02-06,31.7036111,-98.1236111,Hamilton (Near?),TX,light,13,1st week of Feb 1995. abord flight from San Antonio to DFW. Bright light that speed away as we approached. +1997-02-06,33.4222222,-111.8219444,Mesa,AZ,triangle,4,In Mesa, AZ, I clearly saw a large triangular ship, flying slowly---it turned / flew away at terrific speed. +1997-02-06,33.4222222,-111.8219444,Mesa,AZ,triangle,4,UPDATE TO 2/6/97 MESA, AZ SIGHTING ALREADY POSTED TO NUFORC WEBSITE +1998-02-06,42.2625,-71.8027778,Worcester,MA,fireball,3,I was driving at midnite and saw a fireball that was blue/green/red/orange travelling at a 45 degree angle downward heading south. I th +1998-02-06,47.0530556,-122.2930556,Graham,WA,light,45,Small red light flew slowly straight up and disappeared +1998-02-06,38.4038889,-96.1813889,Emporia,KS,light,15,three different lights moving slowly about the size of average stars the first one dissappeared and then at the same time three or four +1998-02-06,29.5375,-95.1180556,Webster,TX,light,300,Circular pulsating lights approximately 1 mile in distance from observers. +1999-02-06,36.0397222,-114.9811111,Henderson,NV,teardrop,1200,Me and two of my other friends were sitting on my windowsill when we decided to go out when we saw a necklace my friend had dropped acr +2000-02-06,38.385555600000004,-81.8363889,St. Albans,WV,changing,30,Witness recalls recent witnessing of Unidentified object in WV skys. +2000-02-06,36.175,-115.1363889,Las Vegas,NV,other,10,Grey box-like craft, no lights, silent, being followed by a helicopter +2000-02-06,43.8013889,-91.2394444,La Crosse (3-3.5 Miles South Of; Goose Island Park),WI,unknown,300,Driving south on Hwy35,Isaw what appeared to be an air craft crossing the Mississippi river with two white lights which did not strobe. +2001-02-06,34.4436111,-118.6086111,Valencia,CA,triangle,300,Did I witness a ufo at about 3;30am, Feb. 6? +2001-02-06,32.7833333,-96.8,Dallas,TX,changing,300,3 hovering/slow moving objects in Dallas, TX, during rush hour. +2001-02-06,47.6741667,-122.1202778,Redmond,WA,triangle,60,It was then right overhead about 1 mile up or higher, shaped triangular, 3 strob lights, white, red and blue, no sound. +2001-02-06,29.9544444,-90.075,New Orleans,LA,cylinder,90,Black Cylinder object seen in the French quarter of New Orleans +2001-02-06,33.4483333,-112.0733333,Phoenix,AZ,disk,60,4 domed circular craft. Each were brightly illuminated. Traveling in a diamond formation. +2001-02-06,43.0388889,-87.9063889,Milwaukee,WI,circle,240,A large Red dot floating above the horizon and one or two small red dots zooming up after it +2001-02-06,31.7619444,-95.6305556,Palestine,TX,light,300,Small orangish red pulsating object moving slowly from West to East across the night sky +2002-02-06,64.8377778,-147.7163889,Fairbanks,AK,fireball,300,turn around for 1 min with gushing out smoke. +2002-02-06,64.7511111,-147.3494444,North Pole,AK,other,30,'Rocket boosters' over North Pole AK +2002-02-06,34.0858333,-81.1833333,Irmo,SC,triangle,240,3 steady white lights, triangular formation with a red blinking light in the center. +2002-02-06,28.2486111,-81.2813889,St. Cloud,FL,light,60,Satelite Object comes to a stop in Florida, defying manmade flying physics +2002-02-06,33.7444444,-113.7513889,Vicksburg,AZ,changing,900,WITNESSED, 2 INCREDIBLY INTENSE COLOR & SHAPE-CHANGING OBJECTS IN THE FAR WEST VALLEY. +2003-02-06,42.3944444,-77.6969444,Arkport,NY,changing,1200,Object in sky brighter than all others, clear morning; moved from right to left and then in a circular pattern. +2003-02-06,45.5236111,-122.675,Portland,OR,sphere,900,Sphere moving very slowly NE to NW. +2003-02-06,25.7738889,-80.1938889,Miami,FL,teardrop,60,ufo sighted in the hammocks ,miami fl. +2003-02-06,34.1808333,-118.3080556,Burbank,CA,light,360,More sightings of The Orange light appearing over Burbank Ca. +2003-02-06,39.5363889,-83.4391667,Washington Court House,OH,light,1800,Large,round,orange balls of light,followed by fast moving craft in sky with strobe like lights. +2004-02-06,34.5958333,-120.1366667,Solvang,CA,cigar,300,Low "hum", white lights change to red and appear to almost merge at one point...cigar-like shape. +2005-02-06,40.1997222,-76.7313889,Middletown,PA,light,15,2 orange lights moving in circular motion in the middle of the night +2005-02-06,38.5816667,-121.4933333,Sacramento,CA,other,1800,U-shaped snake-like object +2005-02-06,47.6588889,-117.425,Spokane,WA,unknown,120,white lights turning to red then gone +2005-02-06,38.2972222,-122.2844444,Napa,CA,light,180,Orange light slowly travels across the sky and rapidly ejects smaller lights downward from it, before disappearing. +2006-02-06,44.9194444,-123.3158333,Dallas,OR,triangle,600,We saw a white triangle shaped craft and it flew very quick. +2006-02-06,39.2333333,-84.1613889,Goshen,OH,fireball,3600,YELLOW /ORANGISH LIGHT APPEARS AMOUNG THE STARS AT A LOW ALTITUDE +2006-02-06,33.3316667,-105.6725,Ruidoso,NM,light,3600,BRIGHT OBJECT!!! sighting Ruidoso New Mexico ((NUFORC Note: Probably Venus. PD)) +2006-02-06,37.5958333,-122.0180556,Union City,CA,triangle,3600,Flying Unidentified Black Pyramid. +2006-02-06,46.2752778,-122.9063889,Castle Rock,WA,fireball,15,One bright meteor like object leaves a trail, vanishes and reappears again in a fixed and oscillating position +2006-02-06,42.2136111,-74.2191667,Hunter (Near),NY,triangle,15,Bright object near the catskill area. ((NUFORC Note: Probable sighting of Venus, we suspect. PD)) +2006-02-06,64.8377778,-147.7163889,Fairbanks,AK,sphere,10,Flying disk +2006-02-06,45.1602778,-93.0886111,Lino Lakes,MN,oval,60,silver object over Lino Lakes Minnesota +2006-02-06,28.5380556,-81.3794444,Orlando,FL,sphere,120,Possible Blimp or UFO +2006-02-06,26.4611111,-80.0730556,Delray Beach,FL,disk,10,5 round objects were going south along the beach of Delray over the water they came out of the clouds moving very fast from north to so +2007-02-06,32.2216667,-110.9258333,Tucson,AZ,oval,6300,Sceptic observation of 3 "fighter jet sized" oblong, black and silver light flashing crafts. +2007-02-06,33.6863889,-117.66,Foothill Ranch,CA,disk,600,A large sized, see through shaped saucer with lights all around and within the object. +2007-02-06,33.6863889,-117.66,Foothill Ranch,CA,disk,600,A large sphere object with many blinking lights in different colors. ((NUFORC Note: Possible flares over firing range. PD)) +2007-02-06,33.3702778,-112.5830556,Buckeye,AZ,light,900,Lights in the sky at Buckeye Arizona. ((NUFORC Note: Possibly flares over Gila Bend Firing Range. PD)) +2007-02-06,32.8794444,-111.7566667,Casa Grande,AZ,light,420,Phoenix Lights all over again. ((NUFORC Note: Possibly flares over Gila Bend Firing Range. PD)) +2007-02-06,43.5277778,-71.4708333,Laconia,NH,disk,60,Disk with blinking colored lights +2007-02-06,33.5091667,-111.8983333,Scottsdale,AZ,other,300,Four strange lights sighted over Scottsdale, Arizona ((NUFORC Note: Possibly flares over Gila Bend Firing Range. PD)) +2007-02-06,33.3061111,-111.8405556,Chandler,AZ,triangle,180,Lights similar to the Phoenix Lights sighted in SW Chandler, AZ. ((NUFORC Note: Possibly flares over Gila Bend Firing Range. PD)) +2007-02-06,32.2216667,-110.9258333,Tucson,AZ,light,600,Seven bright orange lights in the western sky. ((NUFORC Note: Possibly flares over Gila Bend Firing Range. PD)) +2007-02-06,32.7558333,-111.6702778,Arizona City,AZ,circle,600,Big Orange orbs seen In Phoenix Az ((NUFORC Note: Possibly flares over Gila Bend Firing Range. PD)) +2007-02-06,30.6647222,-97.9222222,Liberty Hill,TX,oval,120,solid red light aircraft +2007-02-06,33.4483333,-112.0733333,Phoenix,AZ,formation,1200,Phoenix lights - Again! +2007-02-06,34.61,-112.315,Prescott Valley,AZ,triangle,600,Are the Phoenix Lights returning? Local sighting near Prescott Valley, AZ ((NUFORC Note: Probably military flares. PD)) +2007-02-06,33.4147222,-111.9086111,Tempe,AZ,triangle,1800,Fast flying triangle shaped object with blinking lights over South Phoenix, and Tempe, AZ. ((NUFORC Note: Probably flares. PD)) +2007-02-06,25.7738889,-80.1938889,Miami,FL,light,1800,Beams of Light +2007-02-06,35.5497222,-120.705,Templeton,CA,oval,10,Bright Orange Glowing Oval Shaped craft over templeton +2007-02-06,42.0083333,-91.6438889,Cedar Rapids,IA,cigar,1800,Power outage, flash of light and two soundless hovering craft +2008-02-06,30.0033333,-91.8186111,New Iberia,LA,cigar,300,((NUFORC Note: Witness provides no information. PD)) +2008-02-06,34.2977778,-83.8241667,Gainesville,GA,formation,60,I saw 5 very bright lights in a horizontal row just sitting still in the night sky just over the tree line. +2008-02-06,33.5225,-117.7066667,Laguna Niguel,CA,fireball,5,bright flash like a comet +2008-02-06,33.7738889,-117.9405556,Garden Grove,CA,flash,2,Flash of Blue Light +2008-02-06,28.0408333,-99.3541667,Encinal,TX,sphere,900,Flaming sphereical object hovering and disappearing as jets neared its postion like a cat and mouse game. +2008-02-06,30.3672222,-89.0927778,Gulfport,MS,circle,300,Circular shaped object in Gulfport, MS. Appeared to have bright white lights around the 3 sides we could see. +2008-02-06,39.9522222,-75.1641667,Philadelphia,PA,light,1.2,Large green light traveling at rapid speed across the sky over Philadelphia, PA. +2008-02-06,37.3394444,-121.8938889,San Jose,CA,unknown,480,Possible Explanations For Roaring Noises? +2008-02-06,37.3394444,-121.8938889,San Jose,CA,unknown,480,Roaring noise over house that started and stopped suddenly four times, appearing to originate from different directions. +2009-02-06,39.0997222,-94.5783333,Kansas City,MO,teardrop,10,On 2/6/9 I saw a very fast moving black object with a rounded front and small tail in the sky. It disappeared behind a cloud. +2009-02-06,40.7141667,-74.0063889,New York City (Brooklyn),NY,fireball,3,Possibility of it being a meteor. +2009-02-06,38.47,-90.3044444,Oakville,MO,triangle,60,I seen a large craft hovering still about 1ꯠ feet away with 3 lights in the form of a wide obtuse triangle. +2009-02-06,38.9686111,-77.3413889,Reston,VA,light,300,Three light beams orbiting and revolving symmetrically. These beams initially looked like they had a ground object source but later we +2009-02-06,40.8041667,-74.0125,North Bergen,NJ,light,5,white and green lite hovering 20 or 30 feet over head. then ziipped away and disapeared after 3 or 5 seconds +2009-02-06,32.2205556,-98.2019444,Stephenville,TX,unknown,120,3 amber light horizantal shap then turned to 6 lights all amber in color +2009-02-06,40.8,-96.6666667,Lincoln,NE,light,1800,A light stretching out and then retracting disappears suddenly. +2009-02-06,34.9047222,-77.2316667,Maysville,NC,fireball,60,Moving bright light over Maysville +2009-02-06,33.8594444,-84.6838889,Powder Springs,GA,triangle,600,I was in the car with my mom, I saw something in the sky. It was triangular in shape, and it had about 10 lights. +2009-02-07,40.0580556,-82.4013889,Newark,OH,light,7200,2 hovering bright lights in the sky, disappearing and reappearing in diff. loc. ((NUFORC Note: Possible sighting of stars?? PD)) +2010-02-06,44.5433333,-68.42,Ellsworth,ME,unknown,20,Green light and buzzing sound +2010-02-06,41.1983333,-74.4836111,Vernon,NJ,triangle,180,On 02/06/2010 at about 6:30 pm while driveing on canastere rd going from Highland lakes to rockaway ,NJ ,I witnessed a very large craft +2010-02-06,29.8155556,-97.2183333,Cistern,TX,sphere,360,5 low flying shperes seen in afternnon sky by 5 witnesses +2010-02-06,35.0844444,-106.6505556,Albuquerque,NM,oval,600,Oval ship flying over northwest albuquerque bright red, yellow, and white lights pulsing. +2010-02-06,38.9258333,-79.8469444,Elkins,WV,light,15,3 white lights in triangular formation + rapid independent movement seen over Elkins, WV +2010-02-06,36.6002778,-121.8936111,Monterey,CA,light,600,2 lights, green and blue, crazy movements over Monterey +2010-02-06,38.6580556,-77.25,Woodbridge,VA,light,60,bright yellow lights in the sky that moved with out a sound. +2011-02-06,36.6111111,-121.8505556,Seaside,CA,fireball,120,I dont know what to say posting this made me feel a little bit better. fire ball round with a triangle missing out of it not rotating +2011-02-06,38.6447222,-121.2711111,Fair Oaks,CA,unknown,120,strange flashing light hovering in the sky around 1 am in northern california. ((NUFORC Note: Sighting of Sirius?? PD)) +2011-02-06,33.9791667,-118.0319444,Whittier,CA,oval,120,Red oval object ejecting very small white objects before disappearing +2011-02-06,42.5833333,-71.8027778,Fitchburg,MA,diamond,1200,((HOAX??)) Scary. +2011-02-06,43.9947222,-71.0613889,Center Conway,NH,other,120,Military jets over New Hampshire training or fighting something. +2011-02-06,36.9752778,-121.9522222,Capitola,CA,triangle,5,triangular craft with three dim lights moving swiftly and silently across night sky +2011-02-06,25.7738889,-80.1938889,Miami,FL,light,600,Orange orb of gelaming light hovering and preforming non-common aerospace manuvers +2011-02-06,33.7877778,-117.8522222,Orange County,CA,circle,300,4 glowing light in the sky, close together, moving in formation, no blinking lights +2011-02-06,37.6391667,-120.9958333,Modesto,CA,rectangle,900,a rectangle object in the sky blinking on and off and changing from purple to red +2012-02-06,39.4208333,-80.2780556,Enterprise,WV,oval,10,3 separate sightings: blue jellyfish and two red globes +2012-02-06,39.315,-84.2208333,Maineville,OH,triangle,240,Strange Craft seen in middle of night, silent, that hovered a moment then flew away at incredible speed +2012-02-06,43.8736111,-116.4983333,Emmett,ID,triangle,1800,Triangular craft hovered over Emmett, Idaho, for approximately 30 minutes ejecting orbs. +2012-02-06,35.2333333,-106.6638889,Rio Rancho,NM,circle,30,Circle of light drops from the night sky toward earth then disappears +2012-02-06,32.2216667,-110.9258333,Tucson,AZ,rectangle,300,I WAS AUDITIONING "THE MOON" FOR BACKDROP PICTURES OF AN ALBUM COVER. +2012-02-06,42.7158333,-78.8297222,Hamburg,NY,sphere,15,Bright light drops from the sky and crosses over the Thruway in Hamburg, NY. +2012-02-06,40.8083333,-82.9755556,Bucyrus (6 Mi. Sw Of),OH,light,15,Bright star like light at 8:40 am in clear sky moving from southeast to northwest then disappeared +2012-02-06,42.3383333,-83.8886111,Dexter,MI,light,2100,Followed by a bright light +2012-02-06,39.8813889,-83.0930556,Grove City,OH,formation,300,Line formation of 5-6 blinking lights, rapidly changing formation until out of sight. +2012-02-06,43.0202778,-78.8805556,Tonawanda,NY,circle,900,Streaking light headed North / North East +2012-02-06,41.6638889,-83.5552778,Toledo,OH,light,5,Bright sphere of white light above the Moon moving North, changed to point of light & disappeared while moving North in Eastern sky. +2012-02-06,41.0602778,-111.9702778,Layton,UT,light,600,5 orange red lights moving over Layton, Utah +2012-02-06,35.2627778,-116.6838889,Fort Irwin,CA,triangle,600,Triangle Shape Object With About 14 Orange Lights +2012-02-06,46.6022222,-120.5047222,Yakima,WA,fireball,300,3 balls of orange light move South in the West Valley of Yakima. +2012-02-06,34.9530556,-120.4347222,Santa Maria,CA,fireball,45,Weird orange glowing ball of light moving slowly across the sky and gradually diminishes. +2013-02-06,43.2797222,-75.6438889,Blossvale,NY,light,180,6 Tight formation blue lights. +2013-02-06,41.6269444,-88.2038889,Plainfield,IL,circle,300,There were 2 objects hovering below the clouds, they appeared to be on fire. Both object moved in different directions into the clouds. +2013-02-06,44.4375,-73.0686111,Williston,VT,light,300,Stationary diagonal line of white lights NE of Williston, above horizon. +2013-02-06,44.4669444,-73.1713889,South Burlington,VT,formation,120,5 pulsating lights in a line at a 20 degree angle high in the sky over South Burlington. +2013-02-06,43.8333333,-72.6344444,Bethel,VT,formation,30,Band of 5-8 bright lights tilted and stationary in sky without any dimming, then just gone. +2013-02-06,44.1580556,-72.4508333,East Barre,VT,formation,30,Linear formation in sky. +2013-02-06,44.765,-69.7197222,Skowhegan,ME,chevron,10,Large v-shaped lights hanging in the sky +2013-02-06,44.26,-72.5758333,Montpelier,VT,other,20,Large linear object, low flying banking west in washington county VT. +2013-02-06,45.7544444,-122.8763889,Scappoose,OR,triangle,120,Two large triangled shaped objects seen heading east following the Columbia river towards Portland. +2013-02-06,32.9855556,-80.11,Ladson,SC,light,120,Very bright light hovering in sky +2013-02-06,38.7297222,-120.7975,Placerville,CA,triangle,1800,Was directly over my home. +2013-02-06,25.7738889,-80.1938889,Miami,FL,other,1800,Very bright blinking star moving above Miami night sky, near Gemini constellation +2013-02-06,36.1658333,-86.7844444,Nashville,TN,other,480,Two craft one blinking red and blue and yellow pulsating and the got really bright and went over my house 500 Lights On Object0: Yes +2013-02-06,41.6269444,-88.2038889,Plainfield,IL,circle,300,Two balls of fire hovering in the sky over Plainfield, Illinois. +2014-02-06,43.3269444,-71.1847222,Strafford,NH,oval,120,Orb Northwest of Strafford, NH. +2014-02-06,36.175,-115.1363889,Las Vegas,NV,formation,600,White shadowy lights flying in circular patterns. +2014-02-06,45.5236111,-122.675,Portland,OR,light,1200,Bright star light opject moving slowly in a giggling motion across the sky Miller/Barnes rd Portland Oregon. +2014-02-06,43.0972222,-89.5041667,Middleton,WI,cylinder,300,Hover for a few minutes, was shiny silver, sun reflects on it. moves slowly like gliding. no sound. after it was gone seen orbs of ligh +2014-02-06,33.2558333,-116.3741667,Borrego Springs,CA,other,5,Glare again seen. +2014-02-06,41.7475,-74.0872222,New Paltz,NY,changing,15,Dark matte, wedge-shaped craft; AM radio interference. +2014-02-06,39.2386111,-77.2797222,Clarksburg,MD,light,30,Steady bright white light and then it disappeared. +2014-02-06,34.9702778,-78.9455556,Hope Mills,NC,disk,30,Brightly lit UFO seen in Hope Mills during daylight hours. +2014-02-06,36.175,-115.1363889,Las Vegas,NV,circle,20,Dark circular object moving to the west from the Las Vegas Strip. +2014-02-06,43.4666667,-112.0333333,Idaho Falls,ID,circle,60,Large circular craft with 5-6 bright lights traveling at a slow rate and low to the ground. +2014-02-06,40.7141667,-74.0063889,New York City (Queens),NY,circle,300,Bright red cycle over Queens County, NYC, on east night skyline. Moving fast and staying on one place. +1995-02-07,47.2530556,-122.4430556,Tacoma,WA,unknown,7,Work crew on railrodad loading dock witness approx. 9 obj. in loose formation streaking north. Good sighting. +1999-02-07,31.5602778,-91.4030556,Natchez,MS,oval,3600,Sunday morning, 2/7/99, from approximately 1:30 - 2:30 am, over Natchez, Mississippi, a stationary, hovering, oblong aircraft with flas +2000-02-07,38.8905556,-90.1841667,Alton,IL,triangle,60,I watched a ship pass from my left to right, right in front of me. +2000-02-07,35.1477778,-114.5675,Bullhead City,AZ,other,900,We witnessed two dark black lines in the west sky running straight down as if from twelve o'clock to six o'clock, they were very dark +2000-02-07,27.4952778,-81.4411111,Sebring,FL,light,1800,2 yellow stationary lights floating above Lake Jackson in Sebring, FL multiply in diagonal formations. +2000-02-07,32.8961111,-109.8269444,Pima,AZ,fireball,300,Round, silent, stationary ball motionless in NW sky disappearing when approached by jet fighters. +2000-02-07,42.9872222,-85.0711111,Ionia,MI,triangle,900,Coming home from a basketball game in Palo I saw 2 UFOs flying in formation. +2001-02-07,36.9902778,-86.4436111,Bowling Green,KY,changing,300,cigar shaped that turned into a triangle +2001-02-07,39.205,-76.6530556,Linthicum (Bwi Airport),MD,rectangle,900,This was not any aircraft I have ever seen and was not ballon or moon. +2001-02-07,36.2597222,-86.6477778,Old Hickory,TN,circle,3,Round flying object. Very fast and quite +2001-02-07,42.1605556,-73.4166667,South Egremont,MA,changing,2700,The Object changed shape, it looked like many white lights(dots)put together outlined in a thin red line, travelling north very slowly. +2001-02-07,35.7719444,-78.6388889,Raleigh,NC,light,1049,it was a bright and hazy light that changed colors +2001-02-07,42.3583333,-71.0602778,Boston,MA,light,300,Boston sighting..Wednesday 2/7 at around 8:45 PM +2002-02-07,32.4486111,-99.7327778,Abilene,TX,light,1185,I was on my way home when I saw a very large light, to large to have been an airplane from that height. It passed behind big buildings +2002-02-07,42.7261111,-87.7827778,Racine,WI,triangle,60,A triangular shaped aircraft with three lights and a red haze-like glow seen in southern Racine County. +2002-02-07,38.6822222,-104.7002778,Fountain,CO,triangle,420,Triangle seen over Fountain Colorado outside Colorado Springs. +2003-02-07,37.2455556,-88.3605556,Burna,KY,fireball,120,orange fireball seen as child now as adult with friends witnessing +2003-02-07,38.5816667,-121.4933333,Sacramento,CA,light,1800,It glowed brighter than the stars and it emited two other objects. +2003-02-07,32.7152778,-117.1563889,San Diego,CA,sphere,45,Brilliant white spheres above south fortuna mountain in San Diego. +2003-02-07,47.4830556,-122.2158333,Renton,WA,oval,300,Was it +2003-02-07,41.3494444,-85.1355556,Garrett,IN,light,6,after approximately 3 seconds of looking at it, it looked like it flipped upside down and shot straight up in the sky at the fastest ra +2003-02-07,37.4172222,-87.4808333,Hanson,KY,fireball,900,we watched for 15 minutes as a large glowing fireball moved in different directions thru the woods +2004-02-07,27.3361111,-82.5308333,Sarasota,FL,light,600,my fiancee and her mother as well as myself witnessed what appeared to be a star that moved in an extraordinary fashion...in vertical, +2004-02-07,36.6061111,-118.0619444,Lone Pine,CA,unknown,108000,UFO Battle +2004-02-07,35.2480556,-93.0488889,Pottsville,AR,cylinder,300,a cylinder seen hovering about 2 miles north of russellville at crow mountian at about 5 to 10000 ft. on feb 7 2004 . also seen bright +2004-02-07,47.4830556,-122.2158333,Renton,WA,light,1200,whitish silver appears and disappears changes formations high. +2004-02-07,33.9533333,-117.3952778,Riverside,CA,light,45,Bright white light moving west to east, faster than commercial jet +2004-02-07,44.2727778,-121.1727778,Redmond,OR,changing,37800,We watched a bright light off our pourch till it vanished. +2004-02-07,33.8658333,-118.0822222,Artesia,CA,light,900,A BRIGHT RED LIGHT HOVERD AND SUDENLY STREAKED UPWARD AND AWAY . +2005-02-07,33.2511111,-80.8158333,Branchville,SC,circle,1800,It was a circular shaped object with about 10 to 12 bright white lights coming from it, rotated. ((Advertising lights?)) +2005-02-07,33.4483333,-112.0733333,Phoenix,AZ,unknown,10800,nothing i have eever seen before in my life +2005-02-07,34.2522222,-118.2875,Tujunga,CA,fireball,60,The fireball UFO came from behind the mountain,and was traveling south. ((NUFORC Note: Possible contrail?? PD)) +2005-02-07,47.5302778,-122.0313889,Issaquah,WA,disk,600,4 craft with red & white lights hovering over Lake Sammamish, WA. +2005-02-07,39.4125,-121.7116667,Biggs,CA,diamond,900,Two diamonds flying in the sky. +2006-02-07,31.4722222,-90.8966667,Meadville,MS,cylinder,60,2 large cylinder shaped objects seen in clear daylight +2006-02-07,41.4294444,-88.2286111,Channahon,IL,triangle,2,Triangle orange lights moving through low clouds +2006-02-07,41.8897222,-95.2319444,Manilla,IA,light,15,Strange lights in Iowa skies +2007-02-07,42.45,-73.2458333,Pittsfield,MA,unknown,15,Amber light blinking suddenly stops mid-air and object carrying dissapears +2007-02-07,40.3266667,-78.9222222,Johnstown,PA,triangle,300,Blue colored lights forming a triangle, they faded out slowly, one in the right side first, then one on left, followed by the top light +2007-02-07,42.2458333,-71.9091667,Leicester,MA,oval,900,Oval craft glowing green +2007-02-07,32.7763889,-79.9311111,Charleston,SC,light,60,UNEXPLAINED SIGHTING OF A POSSIBLE UFO @ CHARLESTON ,SOUTH CAROLINA +2007-02-07,47.6588889,-117.425,Spokane,WA,disk,300,Strange lights in the southeast of Washington moving at high speed. +2007-02-07,39.0288889,-104.4825,Peyton,CO,light,45,Helicopter following light, Peyton Colorado +2007-02-07,30.2669444,-97.7427778,Austin,TX,formation,120,Amber glow with two star-like points of light all moving in a triangular formation +2007-02-07,42.1097222,-86.48,St. Joseph,MI,light,180,I saw bright lights on two occasions over Lake Michigan a little after 10 p.m. on February 7, 2007 +2007-02-07,39.3955556,-80.3002778,Shinnston,WV,triangle,300,Black Triangle with lights and no sound. +2008-02-07,33.8847222,-118.41,Manhattan Beach,CA,light,3600,Object with changing lights over the Southbay! +2008-02-07,40.7141667,-74.0063889,New York City (Manhattan),NY,light,1200,A row of Five bright lights over Manhattan +2008-02-07,40.7141667,-74.0063889,New York City,NY,unknown,900,Sighting of large object over NYC +2008-02-07,29.8641667,-82.1311111,Hampton,FL,oval,180,I saw a circular-oval object with a orange hue around it. +2008-02-07,36.8527778,-75.9783333,Virginia Beach,VA,oval,900,orange lights in southern VA +2008-02-07,26.625,-81.625,Lehigh Acres,FL,cylinder,300,Bright metalic object flying westward Very high in sky. +2008-02-07,40.3088889,-76.5936111,Palmyra (Near Hershey/Harrisburg),PA,fireball,1800,flame-colored lights splitting, descending, disappearing and reappearing +2008-02-07,40.2736111,-76.8847222,Harrisburg,PA,disk,900,UFO or flares? +2008-02-07,39.9586111,-75.9197222,Parkesburg,PA,unknown,30,LARGE WING SPAN, NO NOISE, SLOW MOVING AND VERY LOW. TWO OF THEM IN LINE. +2009-02-07,38.2541667,-85.7594444,Louisville,KY,oval,10,the object moving erratically lasting for approximately 10 seconds near airport 500 Lights On Object0: Yes +2009-02-07,34.1952778,-82.1619444,Greenwood,SC,sphere,480,Two shiney spheres spotted in sky following airplane +2009-02-07,37.8716667,-122.2716667,Berkeley,CA,sphere,60,Saucer shaped object quickly appears and disappears over Golden Gate Bridge +2009-02-07,40.8577778,-74.4263889,Parsippany,NJ,light,420,Thre red lights observed over Morris Plains and Parsippany New Jersey in Morris County, USA +2010-02-07,41.8455556,-87.7538889,Cicero,IL,triangle,15,A loud black triangle with red lights seen in Cicero, Illinois +2010-02-07,37.6391667,-120.9958333,Modesto,CA,sphere,1200,2 UFO IN MODESTO. ((NUFORC Note: Possible hoax?? PD)) +2010-02-07,39.9522222,-75.1641667,Philadelphia,PA,other,10,Flying Red Lights +2011-02-07,47.2530556,-122.4430556,Tacoma,WA,sphere,60,While looking out our east facing bathroom window, at about a 60 degree angle, I observed a white glowing object moving east of a rainb +2011-02-07,33.8491667,-118.3875,Redondo Beach,CA,chevron,180,I was walking home from the local coffee shop on Camino De La Costa, a block from the beach. The time was around 6 pm and is approximat +2011-02-07,27.8002778,-97.3961111,Corpus Christi,TX,light,8,White light moving randomly in Corpus Christi sky. +2011-02-07,34.1791667,-118.7619444,Oak Park,CA,other,900,This is my account of what my daughter and I saw tonite , February 7, 7:30 PM. Her report is listed above mine and as you will see , w +2011-02-07,34.1791667,-118.7619444,Oak Park,CA,unknown,900,Boomerang shape Green and red lights flashing over Ventura County, California +2012-02-07,45.5236111,-122.675,Portland,OR,circle,600,Three horizontal lights and at about one o'clock from the position of the lights was a larger light, which flickered like a planet +2012-02-07,36.175,-115.1363889,Las Vegas,NV,circle,10,Bright, red, glowing, slow moving, craft headed west disappeared behind buildings. +2012-02-07,26.1272222,-80.2333333,Plantation,FL,chevron,300,Chevron shaped outline in clouds. +2012-02-07,40.5186111,-74.4125,Edison,NJ,circle,300,2 UFOs seen over New Jersey +2012-02-07,33.7397222,-116.4119444,Rancho Mirage,CA,circle,1800,Watched a flying object over Bob Hope Drive with my sister. There was quite a few cars on the road so I'm sure others saw it, too. Fol +2012-02-07,40.3763889,-74.2447222,Morganville,NJ,cylinder,1200,Blimp-like object with a very LOUD engine/motor hovered over Morganville/Marlboro, NJ last night. ((NUFORC Note: Blimp?? PD)) +2012-02-07,33.6008333,-86.9561111,Adamsville,AL,sphere,180,Hovering bright sphere with red lights over Adamsville, AL +2013-02-07,26.235,-97.5816667,Rio Hondo,TX,oval,1800,One dark oval shaped object with green lights Rio hondo tx +2013-02-07,47.6105556,-122.1994444,Bellevue,WA,sphere,5,6 or more spheres flying in a V and then disappearing suddenly. +2013-02-07,30.6355556,-89.135,Saucier,MS,diamond,1800,Was walking my dog tonight and seen some sort of craft hovering low in the trees, and then it came out and made a big loop low in the s +2013-02-07,47.3894444,-114.8011111,Paradise,MT,other,300,Strange light(s) in sky with interesting trajectory vanishes into nothingness. +2014-02-07,41.1575,-81.2422222,Ravenna,OH,light,900,Bright orange glowing orbs viewed in Ravenna, Ohio. +2014-02-07,43.5277778,-71.4708333,Laconia,NH,light,1200,Ball of light changing colors and hovering over downtown Laconia NH. +2014-02-07,35.6225,-117.67,Ridgecrest,CA,unknown,50,3 round lights and bobbing up and down while gliding slowly above Ridgcrest Ca. +2014-02-07,36.0397222,-114.9811111,Henderson,NV,oval,1.5,Blue halow apears and leaves at incredible speeds. +2014-02-07,34.2983333,-108.1341667,Pie Town,NM,disk,180,Two I-Phone Camera Shots Reveal Three Partially De-cloaked Disks; Possible cloaked Mother-Ship. +2014-02-07,47.6569444,-117.1952778,Veradale,WA,triangle,2,Bright white light triangle shape turns green moving extremely fast across sky 2 seconds then dissappears +2014-02-07,46.2469444,-114.1594444,Hamilton,MT,oval,3,Green org zoomed over Hamilton while still daylight. +2014-02-07,45.6797222,-111.0377778,Bozeman,MT,circle,3,Saw a bright green superbollide meteor, visible during twilight. Green. +2014-02-07,48.7052778,-119.4383333,Tonasket,WA,cigar,180,Long dark object with a white light in the front and a very bright blue light at the rear glided silently above our vehicle at 150 ft. +2014-02-07,34.0975,-117.6475,Upland,CA,circle,10,Atypical bright light much brighter than the sharp flashes of a jumbo jet. The flashes were much smoother as they faded or blinked if +2014-02-07,41.3083333,-74.145,Harriman,NY,fireball,2,Fireball streaking across the sky over I-87 NY thruway between exits 16-17 at approximately 6:30 pm on 2/7/14. +2014-02-07,29.5955556,-90.7194444,Houma,LA,circle,20,My mom, brother and I walked outside to sit on the porch. looking up in the sky we saw a light shaped like a circle. As i pulled my pho +2014-02-07,44.2044444,-93.8152778,Madison Lake,MN,light,120,Three orange lights in the sky. +2014-02-07,40.7608333,-111.8902778,Salt Lake City,UT,fireball,120,Large red bright orb releasing a smaller red orb towards the ground. +2014-02-07,33.7738889,-117.9405556,Garden Grove,CA,unknown,60,A green object was in the sky, moved at a high velocity, stopped, hovered, and moved in the opposite direction at a high velocity. +2014-02-07,39.1072222,-76.5713889,Pasadena,MD,unknown,20,Two orange glowing lights appeared hovering and slowly descending. +2014-02-07,43.1547222,-77.6158333,Rochester,NY,light,120,Solid bright orange light flying low and very quickly. +2014-02-07,35.7325,-78.8505556,Apex,NC,light,30,Low flying, fast moving, light disappears into thin air. +2014-02-07,33.3527778,-111.7883333,Gilbert,AZ,other,120,Yellow lights over south Phoenix fade quickly out of sight 2-7-14 apx 21:00 +2014-02-07,39.5752778,-76.9961111,Westminster,MD,light,300,6 lights in 1-3-1-1 pattern changing speed and position near Westminster, MD. +2014-02-07,34.1683333,-118.605,Woodland Hills,CA,triangle,1500,Bright row of lights over Woodland Hills. +1988-02-08,45.0941667,-93.3561111,Brooklyn Park,MN,cylinder,180,In Brookyln Park MN, late at night, a silver matalic cylindrical object, floated past our window. +1996-02-08,39.7686111,-94.8463889,St. Joseph,MO,sphere,5,Young nurse sees bizarre white, illuminated sphere hovering above treeline to west of hospital. Obj. suddenly turns green, disappears. +1997-02-08,45.3980556,-92.9872222,Stacy,MN,unknown,120,We observed something strange along the freeway with at least 5 strobe lights we thought it was going to crash, but it pulled up at the +1998-02-08,39.9202778,-80.7433333,Moundsville,WV,light,20,Bright, slow-moving, star-like light +1999-02-08,36.2569444,-83.0861111,Bulls Gap,TN,sphere,300,Late in the evening on the 8th I saw 2 objects west slightly south west I saw 2 objects in the sky being chased by 2 jets. +2000-02-08,34.61,-112.315,Prescott Valley,AZ,circle,180,Wife and I observed two bright yellow-orange objects moving NNE separating 'til they dissapeared over horizon. +2000-02-08,34.2783333,-119.2922222,Ventura,CA,light,900,I noticed a bright light over the Santa Barbara island it didnt move for about 5 min then it began to move east then west then north an +2000-02-08,42.1583333,-71.1452778,Canton,MA,triangle,300,Traveling south RT 95 and observed bright lights west of RT 95 in Canton +2000-02-08,27.5955556,-81.5063889,Avon Park (N Of, To As Far S Of L. Placid),FL,fireball,5400,Driving east towards avon park on hwy 98 look up in the sky and saw a burnt-orange fireball. It would fade out and and glow back in ano +2000-02-08,34.1722222,-118.3780556,North Hollywood,CA,oval,720,I was driving eastbound on the 101 freeway when a very bright object suddenly appeared on the horizon and began travelling east at appr +2000-02-08,34.1425,-118.2541667,Glendale,CA,disk,2,proceeding north on #2 FW in east Glendale. Noted lights to left and above. Turned head approx. 110 degrees. Noted classic saucer sh +2000-02-08,47.6063889,-122.3308333,Seattle,WA,fireball,60,Large glowing Red Firebell as I looked to the North/NorthEast from my home in Magnolia/Seattle. So bright -- the light emanted into +2000-02-08,29.4238889,-98.4933333,San Antonio,TX,other,600,seen while driving...stationary bluish flashing lights high in sky..pattern involved. +2000-02-08,41.4813889,-73.2136111,Southbury,CT,circle,30,me and a couple of friends were having a party out in an abandoned sand pit one night. We had a bonfire going and everything then sudde +2001-02-08,38.8808333,-77.3011111,Oakton,VA,light,60,small glowing object moving slowly among the trees +2001-02-08,35.6233333,-95.9602778,Okmulgee,OK,triangle,300,Was driving south on my road when I noticed a spark of light, thought it was a power line broke cause there was a south wind blowing ab +2001-02-08,35.4816667,-86.0886111,Manchester,TN,fireball,4,My wife and I were traveling east on US 55 and were approximately one mile west of Manchester, Tn.. The time was 6:36 PM CST And the we +2001-02-08,37.9886111,-84.4777778,Lexington,KY,triangle,60,Triangular craft with bright white lights across the back and flashing red light near front tip +2001-02-08,34.2783333,-119.2922222,Ventura,CA,other,300,odd shape object with lights around it traveling in a southern direction. +2001-02-08,39.7136111,-82.5994444,Lancaster,OH,sphere,75,A Bright light in the shape of a sphere that moved southeast at a steady spead and appeared to have flames pulsating behind it. +2001-02-08,43.1547222,-77.6158333,Rochester,NY,light,75,White circular light seen in sky, splitting into four distinct white lights, dancing in a circle. and converging with a kiss. +2001-02-08,32.8405556,-83.6325,Macon,GA,oval,2700,When I first saw this object it looked a very bright star.Two friends pointed it out to me.We were one and one half miles east of Gray, +2002-02-08,40.0391667,-76.4311111,Mountville,PA,light,7200,Fast moving bright light stops dead, idles around - some time later viewed it slowly and randomly moving around. +2002-02-08,38.4416667,-88.9375,Dix,IL,diamond,30,I walked my dog and saw a UFO. +2002-02-08,32.2502778,-101.4783333,Big Spring,TX,light,1200,Multiple lights appeard in sky East of Big Spring Texas. +2002-02-08,45.5236111,-122.675,Portland,OR,disk,3600,Craft forms Triangle, becomes portal right over 1-5 +2002-02-08,41.0983333,-83.9847222,Leipsic,OH,light,300,I saw two very bright whites lights in the sky at first they were still not moving then they began to move towards the sotheast ver +2002-02-08,32.3122222,-106.7777778,Las Cruces,NM,light,6,White ball of light moving fast to the norheast. +2002-02-08,47.4830556,-122.2158333,Renton,WA,fireball,5,Green fireball over Renton, WA +2003-02-08,38.739444399999996,-89.6711111,Highland,IL,triangle,120,triangle passes by in the sky +2003-02-08,32.7152778,-117.1563889,San Diego,CA,disk,900,I saw a stationary light fade in and out for fifteen minutes and could see with binoculars this was a large craft with bright lights. +2003-02-08,48.2766667,-116.5522222,Sandpoint,ID,unknown,5,Bright white light moving very fast above cloud cover from east to west in eastern sky +2003-02-08,34.1808333,-118.3080556,Burbank,CA,fireball,60,5th sighting in burbank +2003-02-08,40.7408333,-74.3841667,Chatham,NJ,triangle,30,Trianguliar shaped craft, silently land set it self down +2004-02-08,38.3030556,-77.4608333,Fredericksburg,VA,light,2,Greenish glowing ball seen decending in the sky over Fredericksburg +2004-02-08,35.7825,-80.8875,Statesville,NC,fireball,300,Very large Fireball shoots across sky. +2004-02-08,41.4730556,-87.0611111,Valparaiso,IN,disk,1800,black with light from the bottom,Big ((NUFORC Note: Paucity of information provided by witness. PD)) +2004-02-08,36.2730556,-76.0855556,Shiloh,NC,triangle,420,I was comming home from work.The craft was running at tree top level as I crossed a little bridge on 343 the craft flared to the left. +2004-02-08,37.6688889,-122.0797222,Hayward,CA,circle,2700,Clear blue day with three lights in the sky while being at the park. +2004-02-08,29.7630556,-95.3630556,Houston,TX,sphere,1200,Small reddish spherical object that flashed red at varying intensities and intervals and that seemed to slightly wobble laterally +2004-02-08,34.8038889,-81.2394444,Lowrys,SC,light,300,One light, no fuel cell lights, no tail light..no aircraft sound or vapor trail..during pass over dogs were barking loudly. +2004-02-08,37.3394444,-121.8938889,San Jose,CA,light,55,object in the shape of a round bright light +2005-02-08,40.9780556,-81.7822222,Rittman,OH,other,55,vertical lights like a bar code in the sky in few places but not close together +2005-02-08,39.4194444,-76.7805556,Owings Mills,MD,triangle,240,Black triangular object without any lights, extremely low speed, approx 400ft off of ground, no sound, right over densly populated area +2005-02-08,45.0511111,-71.3919444,Pittsburg,NH,disk,180,saucer shaped craft with flashing diamond shaped lights +2005-02-08,46.6622222,-122.9627778,Chehalis,WA,unknown,900,Two bight white lights moving very slowly without sound +2005-02-08,43.8791667,-120.9188889,Millican,OR,unknown,2700,Lights in sky over high desert in Oregon +2005-02-08,42.3694444,-71.9486111,Rutland,MA,fireball,3,while standing in front of the rutland fire dept i saw fire ball coming from the east and head west. as it passed over the fire either +2005-02-08,37.3394444,-121.8938889,San Jose,CA,unknown,8,large object falling east to west multicolors +2006-02-08,48.0841667,-121.9675,Granite Falls,WA,disk,1200,The UFO hovered over house, hurt me and flew away +2006-02-08,41.0419444,-73.9186111,Piermont,NY,light,300,Rotating reg,green,and white light that shrunk in size and disappearedin 2-3 seconds +2006-02-08,38.7522222,-121.2869444,Roseville,CA,circle,180,silver round object in the sky +2006-02-08,38.7522222,-121.2869444,Roseville,CA,sphere,180,Black UFO with possibly red flashing light +2006-02-08,30.1586111,-85.6602778,Panama City,FL,unknown,180,Multiple objects of varying kinds being chase by fighters from tyndall AFB +2006-02-08,33.415,-111.5488889,Apache Junction,AZ,circle,180,Two lights appearing one at a time, growing in intensity then disappearing. +2006-02-08,27.7519444,-98.0694444,Alice,TX,light,1200,Two truck drivers witness two, separate displays of peculiar yellow lights in the night sky. +2006-02-08,41.8897222,-95.2319444,Manilla,IA,light,15,I believe we are being watched here. +2006-02-08,27.9472222,-82.4586111,Tampa,FL,light,120,Flickering light in Tampa, FL +2006-02-08,36.9741667,-122.0297222,Santa Cruz,CA,cylinder,3600,Changing lights over Santa Cruz CA. ((NUFORC Note: Sighting of Sirius, we suspect. PD)) +2007-02-08,25.8191667,-80.3555556,Doral,FL,light,300,I smoke a cigarette before i go to sleep and i step outside my apartment building in the third floor. I like smoking there cause i have +2007-02-08,33.7669444,-118.1883333,Long Beach,CA,flash,1,Green Flash seen during Long Beach Black Out +2007-02-08,38.2402778,-78.9722222,Fort Defiance,VA,rectangle,300,Rectangle shaped object with rounded edges appears white against blue sky hovers with no sound. +2007-02-08,37.775,-122.4183333,San Francisco,CA,light,900,I sow one big bright light in the sky +2007-02-08,41.9847222,-88.0797222,Roselle,IL,cylinder,600,Box shaped cylinder moves siletly over suburbs of Chicago +2007-02-08,38.4108333,-87.7613889,Mt. Carmel,IL,light,480,super bright lights , +2007-02-08,42.1102778,-88.0341667,Palatine,IL,unknown,180,Solid red lights over O'hare airport. +2007-02-08,28.0916667,-81.7236111,Lake Alfred,FL,sphere,180,Sphere observed in rural central Florida +2007-02-08,41.9463889,-86.3388889,Berrien Springs,MI,light,1800,Erratically circling xenon colored light, which moved a great distance East in a matter of minutes. +2008-02-08,34.7355556,-77.9955556,Wallace,NC,other,30,Boomerang type object hovvering silently right above the treetops. +2008-02-08,32.7833333,-96.8,Dallas,TX,cigar,3,cigar shape wingless aircraft seen over midday. +2008-02-08,48.55,-109.6833333,Havre,MT,triangle,9000,Mutiple wtinesses see UFO over Havre Montana +2008-02-08,33.1580556,-117.3497222,Carlsbad,CA,other,180,02/08/2008 Carlsbad CA String of lights 3 minutes viewed over ocean shore, red and blue lights, assended turned white and disapp +2008-02-08,33.0197222,-96.6986111,Plano,TX,circle,900,Plano, Texas circular object with rotating flashing red lights +2008-02-08,27.8002778,-97.3961111,Corpus Christi,TX,circle,120,Enormous circular object hovered approx two minutes off shore of Port Aransas, TX on 02/08/08. +2008-02-08,27.5061111,-99.5072222,Laredo,TX,other,60,Large "V" shape object over Laredo,Tx. 02-08-08 +2009-02-08,45.41,-92.6394444,Saint Croix Falls,WI,triangle,3600,i saw two triangle shaped ufo's flying low to the ground flashing red beams at the ground. +2009-02-08,46.7833333,-92.1063889,Duluth,MN,triangle,180,((HOAX??)) black triangle, three white lights on bottom, 1 pilot human, windy sound, slow, near woods or airport, see in craft, +2009-02-08,42.9633333,-85.6680556,Grand Rapids,MI,triangle,20,Silent triangle craft flies in straight line east to west quicly. +2009-02-08,35.0302778,-91.9502778,Ward,AR,unknown,180,Small silver object over Ward Arkansas. +2009-02-08,42.8886111,-88.0383333,Franklin,WI,light,60,Two white lights one degree apart spotted over Milwaukee, Wisconsin from Franklin, Wisconsin moving in unison from the SW to the NE. +2009-02-08,35.7511111,-86.93,Spring Hill,TN,changing,10800,Bright white light in the sky. Spring Hill TN. Sometimes changes shapes & Blinking colors Red Green & Yellow. +2009-02-08,37.0297222,-76.3455556,Hampton,VA,light,180,Dim, starlike object making increadible manuvers at a high rate of speed. +2009-02-08,34.2763889,-118.3602778,Lake View Terrace,CA,sphere,15,I saw a green sphere emitting sound at eye level from 20 feet away here in Los Angeles County. +2009-02-08,42.9047222,-76.8630556,Waterloo,NY,sphere,2100,Clear night. I saw a very bright light in the western sky. the object moved closer than farther away than just hovered there. It change +2009-02-08,40.5652778,-74.2608333,Port Reading,NJ,disk,1200,Slow Moving white disk shaped light over Woodbridge +2010-02-08,40.9169444,-72.6625,Riverhead,NY,circle,120,small silver/white light , making rapid zig-zag patterns in early morning sky +2010-02-08,27.0591667,-80.1366667,Hobe Sound,FL,circle,900,Two White Star-like Shapes +2010-02-08,40.8955556,-75.3238889,Saylorsburg,PA,disk,120,Bright lights on craft over Saylorsburg, Pennsylvania +2010-02-08,34.9530556,-120.4347222,Santa Maria,CA,oval,1200,UFO sighting Santa Maria, CA +2010-02-08,33.3527778,-111.7883333,Gilbert,AZ,unknown,60,Gliding silent set of lights over Gilbert, AZ. +2011-02-08,36.1538889,-95.9925,Tulsa,OK,triangle,5400,Triangle shaped craft with lights on the corners and 1 big one in the middle. +2011-02-08,37.3838889,-93.1511111,Fair Grove,MO,cigar,20,VERY bright object. +2011-02-08,33.9461111,-84.3347222,Dunwoody,GA,cigar,10,shiny silver cigar shaped object seen in sky of Dunwoody Ga. +2011-02-08,41.8977778,-87.8138889,River Forest,IL,oval,90,Glowing oval object spotted south east of O'hare +2011-02-08,38.5891667,-121.3016667,Rancho Cordova,CA,formation,300,fading lights changing colors in formation +2011-02-08,42.0833333,-71.0188889,Brockton,MA,light,30,Three glowing ambers lights flying in a formation over Brockton, MA +2011-02-08,34.61,-112.315,Prescott Valley,AZ,circle,20,8 circular, orange craft flying over Glassford Hill +2011-02-08,26.16,-80.1391667,Wilton Manors,FL,circle,5,Two high speed craft +2012-02-08,37.5536111,-77.4605556,Richmond,VA,light,1200,Flashing stationary objects +2012-02-08,44.9430556,-123.0338889,Salem,OR,teardrop,300,UFO SIGHTING FEBRUARY 8TH 2012 2 PM SALEM OREGON While driving to Salem on Wednesday the eighth of February on the Interstate 5 Southb +2012-02-08,26.1416667,-81.795,Naples,FL,unknown,60,Little fireballs in the sky! +2012-02-08,43.0202778,-78.8805556,Tonawanda,NY,unknown,600,Multiple cases of lights +2012-02-08,46.6316667,-114.0780556,Florence,MT,unknown,600,Bright light above Florence, Mt. +2012-02-08,43.073055600000004,-89.4011111,Madison,WI,triangle,300,Two air crafts both with huge red circular lights. +2012-02-08,42.7372222,-75.9488889,Cuyler,NY,unknown,1200,3 shining rays that shined down with a bright object to the right that got really bright orange,red and shot across the sky. +2012-02-08,42.7372222,-75.9488889,Cuyler,NY,unknown,600,3 bright beams in the sky and a bright object to the right that got bright and dim, turned orange & shot across the sky and vanished +2012-02-08,32.4366667,-111.2247222,Marana,AZ,light,600,Strange orange lights in the sky over Marana, Az. +2012-02-08,36.0397222,-114.9811111,Henderson,NV,formation,900,Approximately 50 twinkling lights moving east to west in a string near Las Vegas, NV +2012-02-08,38.5816667,-121.4933333,Sacramento,CA,fireball,240,Feb 8th I saw 4 orange orbs low on the horizon looking northwest from the levy of the Sacramento river around 9 pm the orbs were not mo +2012-02-08,47.7625,-122.2041667,Bothell,WA,circle,120,I heard a very loud hellicopter and was looking for it behind the trees. It appeared with a whiteball very close in front of it. It loo +2012-02-08,47.1855556,-122.2916667,Puyallup,WA,cone,2,Two balls of lighting zipping by in a fuselage formation over the field and then disappeared at low altitude +2013-02-08,35.9605556,-83.9208333,Knoxville,TN,triangle,30,Triangle with each corner lit, moving VERY fast. +2013-02-08,34.6391667,-120.4569444,Lompoc,CA,light,600,Very bright large object turning, slowing and climbing at high speed +2013-02-08,30.3319444,-81.6558333,Jacksonville,FL,diamond,900,Reddish-yellow elongated diamond star-sized lights moving in elongated V formation against night sky that gradually disappeared. +2013-02-08,47.8108333,-122.3761111,Edmonds,WA,other,600,Feb 8, 2013 - Large orange shimmering object seen in Edmonds, WA. +2013-02-08,28.7027778,-81.3386111,Longwood,FL,circle,180,Orange "fireball" appearing flying shapes. +2013-02-08,41.85,-87.65,Chicago,IL,formation,120,Four very bright orange orbs were seen by my girlfriend and myself on Friday evening, as we were pulling out of a Jewel down town Chica +2014-02-08,30.0266667,-95.8441667,Hockley,TX,sphere,3600,Orbs that change colors, hide among the constellations and wave back at us! +2014-02-08,40.8372222,-81.2597222,Louisville,OH,triangle,600,Isn’t the first time we have seen these. Moved West to East. Red/Orange colored lights. They stopped and hover for a few minutes. +2014-02-08,43.3380556,-89.3802778,Arlington,WI,triangle,30,Triangular Craft moving at high speeds- changing elevation several times- Orange perimiter lights- Red glowing/pulsing light in middle +2014-02-08,42.9955556,-71.4552778,Manchester,NH,light,3600,Bright stationary ball of light in the sky, early morning. +2014-02-08,20.9175,-156.3258333,Haiku,HI,light,30,Formation of three amber in color until 90 degree turn then red in color and very high speed to horizon. +2014-02-08,32.2216667,-110.9258333,Tucson,AZ,other,2400,Black and silver writhing serpent like craft reflecting sunlight in direction to sun traversed sky over Tucson above airplanes which pa +2014-02-08,36.8188889,-76.2752778,Chesapeake,VA,light,5,Large bright blue light in the sky breaks into three lights and descends. +2014-02-08,40.7141667,-74.0063889,New York City (Brooklyn),NY,sphere,10,3 trailing balls of green quickly flying a crossed the sky (under clouds) SE direction. +2014-02-08,35.4197222,-119.0186111,Oildale,CA,circle,120,Round red and yellow light moving across the sky in Oildale, CA. +2014-02-08,35.9786111,-114.8316667,Boulder City,NV,cigar,600,Saw 12 orange light emitting crafts flying overhead. 4 in formation it seems and the rest following? idk.. lived here most of my life. +2014-02-08,44.4775,-88.0161111,Allouez (Near Greene Isle Park Entrance, Facing Bellevue St),WI,formation,300,Facing Bellevue street to the Northeast (presumably by the WIXX building) I saw a Bright Red/orange Formation of lights in the shape of +2014-02-08,26.0625,-80.2333333,Davie,FL,light,180,Seven flying lights turned south and climbed into clouds. +2014-02-08,42.4683333,-82.9555556,Eastpointe,MI,light,120,Did not seem to fly like a conventional aircraft. +2014-02-08,30.5227778,-87.9033333,Fairhope,AL,cross,7200,Having small fire with husband seen ufo in shape of cross with white and green lights hover back and forth doing patterns in sky. +2014-02-08,33.5386111,-112.1852778,Glendale,AZ,light,600,3 Orange lights. +2014-02-08,36.1658333,-86.7844444,Nashville,TN,fireball,300,Orange lights in Nashville, TN. +2014-02-08,40.7652778,-73.8177778,Flushing,NY,cylinder,240,Three orange aircrafts, one a cylinder, moving in a rotating motion. +2014-02-08,39.1155556,-77.5638889,Leesburg,VA,light,180,Cluster of orange lights on east coast between Baltimore and Washington. +2014-02-08,40.7141667,-74.0063889,New York City (Queens),NY,circle,300,AGAIN! Just two days ago, same bright red cycle,route...loop...stayed on one place maneuver repeated,flu away. +2014-02-08,26.2708333,-80.2708333,Coral Springs,FL,oval,120,2 crafts with orange/amber lights seen in Coral Springs, One began rotating. +1978-02-09,42.5294444,-83.7802778,Brighton,MI,triangle,7200,Southeast Michigan UFO flap February 1978 +1993-02-09,31.3380556,-94.7288889,Lufkin,TX,delta,420,Family traveling home along a rural farm road spotted unusual lights/object in the sky moving slowly from east to west and pulled over +1993-02-09,32.6208333,-83.6,Warner Robins,GA,triangle,120,Riding in car, looked up and saw a triangular shaped object moving almost parallel with the car. When I turned the object disappeared. +1996-02-09,36.5858333,-79.3952778,Danville,VA,disk,180,Beautiful gold colored disk up close +1996-02-09,48.0402778,-122.405,Langley,WA,cylinder,300,Five witnesses observe long, slender, tubular obj. w/ pointed nose moving N to S in W sky. Descends, disappears behind Olympic Mtns. +1997-02-09,47.6063889,-122.3308333,Seattle,WA,oval,240,Three objects over downtown Seattle, early morning +1998-02-09,30.2669444,-97.7427778,Austin,TX,circle,3,Shortly after midnight on Monday morning February 9, 1998, I observed 9 or 11 glowing white balls in a "V" pattern traveling North in t +1998-02-09,42.7875,-86.1088889,Holland,MI,light,2,bright flashing lights +1998-02-09,46.8102778,-124.0919444,Grayland,WA,light,1800,bright lights moving from south to north in western sky, in & out of clouds along coast line +1998-02-09,41.7561111,-124.2005556,Crescent City,CA,rectangle,1200,Orange object over Crescent City glowed like a burning fireplace log. +1999-02-09,38.7505556,-81.9608333,Leon,WV,other,10800,it was a revolving light. It would change from red to green to white +1999-02-09,34.2241667,-118.2391667,La Crescenta,CA,disk,420,The greenish ship with the other one moved across the night sky it made a sound too and then it disapered. It was really freaky +1999-02-09,41.3411111,-75.3902778,Sterling,PA,oval,240,Bright lights approx. 1/2 mi. east of us - was still for 'bout a min. or so - no sound - and the slowly moving towards the south. I saw +2000-02-09,38.9516667,-92.3338889,Columbia,MO,unknown,60,MISSOURI INVESTIGATORS GROUP REPORT: While driving to work this morning we saw an unusual object in the sky… +2000-02-09,44.1333333,-73.0794444,Bristol,VT,triangle,300,Luminous triangular shaped object, very large, moving to Northeast. Object changed to four distinct lighted objects, travelling in a s +2000-02-09,47.4811111,-118.2533333,Harrington (10 Miles South),WA,other,300,My Husband, and I had been coming from the Ritzvill, Wa area driving torwd Harrington, Wa. We seen what appeared to be the back side o +2000-02-09,40.7616667,-73.3297222,Deer Park,NY,light,5,While driving on Commack Rd. I looked up and saw a bright light moving slowly. At first I thought it was a plane, but it suddenly took +2000-02-09,32.2216667,-110.9258333,Tucson,AZ,other,5,In the western sky there were a semi circular formation of lights twinkling. White and brilliant in a formation. The sky apeared to hav +2000-02-09,38.9516667,-92.3338889,Columbia,MO,unknown,60,While driving to work this morning we saw an unusual object in the sky... +2000-02-09,32.4697222,-98.6786111,Ranger,TX,light,60,Brief stationary lights above horizon with not movement +2000-02-09,46.44,-122.8455556,Toledo,WA,oval,120,Oval object bright green in color transverses sky from NNW .. stops .. hovers .. accelerates to East .. stops .. hovers ... accelerates +2000-02-09,48.9161111,-117.7805556,Northport (5 Miles North Of),WA,changing,2700,The evening was clear and I was looking off to the west/southwest up into the sky at about a 10:00 position. I suddenly noticed a clust +2000-02-09,33.6680556,-117.3263889,Lake Elsinore,CA,sphere,4,I was watching TV, started receiving interference, I went out for a cigarette I looked up to a sky covered with clouds when I saw +2000-02-09,47.6063889,-122.3308333,Seattle,WA,circle,3,While stargazing, a dark black object entered into my line of sight and headed toward the city. Very fluid and fast. No sound. A little +2001-02-09,41.8661111,-88.1069444,Wheaton,IL,unknown,90,strange sound +2001-02-09,36.1019444,-87.115,Kingston Springs,TN,light,120,A LOUD NOISE AND BLINDING LIGHT AND THEN A ACTUAL ENCOUNTER. +2001-02-09,45.5236111,-122.675,Portland,OR,light,3600,What I thought was venus was moving ! +2001-02-09,37.0475,-112.5255556,Kanab,UT,triangle,600,triangular in shape, it had red white and blue lights on the back corners and a sigle yellow light in the front. +2002-02-09,38.6105556,-89.5269444,Breese,IL,light,10,Pinpoint of light with astonishing speed and unbelieveble direction change. +2002-02-09,42.2047222,-83.4852778,Belleville,MI,formation,3,I was walking dog, herd something that sounded like geese flying overhead, looked up, and saw 6 to 8 side by side flickering lights fly +2002-02-09,35.2269444,-80.8433333,Charlotte,NC,light,120,Bright planet like light that hovered for a minute and then sped away at a tremendous speed. +2002-02-09,41.7405556,-71.3091667,Barrington,RI,fireball,5,My wife and I were on the East Bay Bike Path near Barrrington RI where we had just stopped riding for a moment. I was looking down and +2002-02-09,41.9583333,-70.6677778,Plymouth,MA,cylinder,40,Cylinder shape and falling from the stratosphere and landing approximately in 40 seconds. It seemed to be the size of an airplane. The +2002-02-09,42.1013889,-72.5902778,Springfield,MA,fireball,40,Fireball seen by dozens of eyewitnesses +2002-02-09,38.2972222,-122.2844444,Napa,CA,cigar,15,White wingless object seen flying above Napa California +2002-02-09,46.2366667,-112.12,Boulder,MT,oval,5,Glimpse of large bright object low to horizon in trajectory disappearing behind ridge. +2002-02-09,41.14,-104.8197222,Cheyenne,WY,fireball,1,Bright ball of light shoots toward ground in Southeastern Wyoming. +2002-02-09,47.0380556,-122.8994444,Olympia,WA,disk,1200,We observed a silent, saucer shaped object with a ring around it with a color and glow resembling the moon. +2002-02-09,32.7152778,-117.1563889,San Diego,CA,circle,600,Large, burning ball spotted drifting in the sky above San Diego on Feb. 9, 2002 +2003-02-09,34.1511111,-118.4483333,Sherman Oaks,CA,light,600,white light with flashing colored patterns +2003-02-09,42.8005556,-71.3047222,Windham,NH,other,30,Streek-of-Light moving East-to-West over Route-93 north in Windham NH +2003-02-09,29.4238889,-98.4933333,San Antonio,TX,light,1200,TWO STAR LIGHTS MOVING FAST AND VERY HIGH NORTH TO SOUTH +2003-02-09,33.3527778,-111.7883333,Gilbert,AZ,sphere,600,High altitude oval traveling from SW to the NE, stopped then ascended upward until it vanished +2003-02-09,33.6469444,-117.6883333,Lake Forest,CA,circle,60,Five circular white objects seen flying at extremely an extremely high speed above Lake Forest California at 1:30 p.m. on 2/9/03. +2003-02-09,34.3916667,-118.5416667,Santa Clarita,CA,sphere,900,Small white and bright ball over Santa Clarita skies +2003-02-09,42.7022222,-83.4027778,Waterford,MI,triangle,3,Iwas sitting in the front bedroom of my house in south waterford township mi next to pontiac, I looked out and then glanced into the ro +2003-02-09,41.0533333,-73.5391667,Stamford,CT,circle,4,spotted bright object in clear night sky going slowly due NNW and disappearing in a fast graduating fashion. +2003-02-09,45.3247222,-118.0866667,La Grande,OR,fireball,5,object looked like shooting star it turned green and glowing as it came closer to the ground increasing in size. +2003-02-09,45.9266667,-116.1213889,Grangeville,ID,light,60,At first looked like falling star but stopped and hovered then moved off again and disapeared +2004-02-09,39.0236111,-94.6933333,Merriam,KS,fireball,5,ufo fly bye a jet +2004-02-09,43.3197222,-94.7925,Wallingford,IA,fireball,2,MUFON/IOWA REPORT: Investigated by Iowa MUFON, Beverly Trout. At 6:00 p.m. on 2/29/04 Blue-white fireball. +2004-02-09,44.9583333,-124.0166667,Lincoln City,OR,disk,4200,bright amber lights flashing in random sequence later came withing 30 ft. of our house and returned over the ocean +2004-02-09,40.5583333,-85.6591667,Marion,IN,unknown,900,Sets of repeating, grouped lights that reoccurred on two separate days, at approximately the same time in same area of sky. +2004-02-09,40.0483333,-86.4691667,Lebanon,IN,fireball,240,Observed several orange round fireballs in the night sky. They appeared and disappeared very quickly. +2004-02-09,33.1191667,-117.0855556,Escondido,CA,formation,300.13,6 horizontal lights appear to be large craft hovering over Leucadia California. +2004-02-09,33.6675,-84.0177778,Conyers,GA,light,180,I stepped out onto the driveway to have a smoke with my wife I noticed what looked like to planes very close together. as i watched one +2005-02-09,45.5236111,-122.675,Portland,OR,light,120,a bright object, moonish, hovered then moved straight upward +2005-02-09,32.7152778,-117.1563889,San Diego,CA,disk,180,Saucer With White Bright Light ((NUFORC Note: Possibly not a serious report. PD)) +2005-02-09,40.7141667,-74.0063889,New York City (Manhattan),NY,disk,600,i was standing on the corner of 5th avenue and 48th street with my grand daughter waiting for an express bus to take us back to brookly +2005-02-09,34.1363889,-118.7736111,Agoura Hills,CA,sphere,30,Sphere traveling very high, and very fast from south to north over the 101 freeway heading over towards Oak Park. Gracefully curved lef +2005-02-09,42.3583333,-71.0602778,Boston,MA,disk,1,Green glowing disk changing to white light, streaking silently over the city of Boston, visible for less than 1 sec. +2005-02-09,38.0280556,-121.8836111,Pittsburg,CA,circle,600,2 orange lights in the sky seen twice second time by more witnesses +2006-02-09,38.5722222,-94.8788889,Paola,KS,unknown,300,Bright yellow object with unknown(possible changeing) shape. +2006-02-09,44.2169444,-85.9577778,Wellston,MI,unknown,30,I saw something weird +2006-02-09,47.3225,-122.3113889,Federal Way,WA,cylinder,120,Bright stationary silver cylindrical object seen in clear sky over Federal Way +2006-02-09,33.7738889,-117.9405556,Garden Grove,CA,sphere,15,We saw a bright white light that was hovering. +2006-02-09,33.7591667,-118.0058333,Westminster,CA,flash,2,Noted fast streaking ball of light moving south over Westminster, CA before disappating +2006-02-09,47.6777778,-116.7794444,Coeur D'alene,ID,light,600,Changing colored lights on object viewed from Dalton Gardens possibly traveling low over Coeur d'Alene, Idaho to the south. +2006-02-09,38.2538,-94.3356,Butler,MO,unknown,1500,WHILE I WAS AT MY FARM PASTURE I SAW A STRANGE OBJECT IT WAS VERY STRANGE. +2006-02-09,38.2494444,-122.0388889,Fairfield,CA,egg,180,Traveling east to west, egg shape object with brown flood lights beginning to flash and then spark. +2006-02-09,38.8966667,-121.0758333,Auburn,CA,circle,2,Fiery large globe, no tail. Direction of flight: 60 degrees, from south to north. Two-second flight. +2006-02-09,38.5888889,-89.9902778,Fairview Heights,IL,unknown,10,Red, blue, and green lights on a stair-step shaped hovering object in Fairview Heights, IL. +2007-02-09,41.1305556,-85.1288889,Fort Wayne,IN,triangle,420,Dark Triangular shaped 1 blue/white light aft of center of ship +2008-02-09,40.5852778,-105.0838889,Fort Collins,CO,light,120,Flashing amber lights in Northen Colorado +2008-02-09,32.905,-93.6966667,Plain Dealing,LA,unknown,10800,2/9/08... PLAIN DEALING LA ..2:45AM MULTIPLE FLYING OBJECTS WERE NOTICED BECAUSE OF FLASHING LIGHTS... +2008-02-09,34.09,-117.8894444,Covina,CA,rectangle,7200,jet black blanket foating in the night sky, as welll a round sphere way out in the distance shooting out multie colored fire balls +2008-02-09,39.1502778,-123.2066667,Ukiah,CA,disk,1200,ufo sighting in northern california three of them 1055 am 2-9-08 +2008-02-09,34.2569444,-85.1647222,Rome,GA,light,300,4 flahsing lights hovering in night sky +2008-02-09,36.0330556,-86.7827778,Brentwood,TN,oval,5,Oval Shaped object sighted playing golf around 12:45PM, Brentwood, TN +2008-02-09,33.4669444,-117.6972222,Dana Point,CA,disk,1800,My description is the most ultra silver color that you can ever imagine, silver as being. The brighest of silver ever. The brightest +2008-02-09,32.7833333,-96.8,Dallas,TX,circle,120,Yellow/orange light moving around slowly, appeared to be around 1귔' altitude +2008-02-09,36.3341667,-82.8369444,Baileyton,TN,triangle,480,An amazing sighting of a UFO in Tennessee was filmed. +2008-02-09,36.1630556,-82.8311111,Greeneville,TN,oval,1080,Cross Anchor sighting Greene county Tennessee. +2008-02-09,37.775,-122.4183333,San Francisco,CA,changing,60,Bright lights, three horizontal rows, maybe ten lights across each row, each light was bigger and brighter than any star. +2009-02-09,43.0480556,-76.1477778,Syracuse,NY,light,1200,extremely bright light moving back&forth southwestern sky Syracuse,NY disappeared upward +2009-02-09,39.2902778,-76.6125,Baltimore,MD,rectangle,180,Square and round UFO anomalies imaged over Baltimore Maryland +2010-02-09,36.0083333,-119.9608333,Kettleman City,CA,triangle,15,Red lights in a triangle over Kettleman City, CA +2010-02-09,32.8438889,-97.1427778,Bedford,TX,light,60,Bright red lights moving south +2010-02-09,37.6391667,-120.9958333,Modesto,CA,changing,900,Blue UFO in North Modesto, Ca. +2011-02-09,33.6469444,-117.6883333,Lake Forest,CA,circle,10,bright circle craft heading east past airplane +2011-02-09,38.7291667,-89.8830556,Troy,IL,fireball,5,A yellow/orange fireball was seen streaking across the eastern sky very low on the horizon. +2011-02-09,42.3563889,-73.2852778,Lenox (General Area),MA,triangle,15,saw a triangular flying object in the berkshires tonight. +2011-02-09,38.5733333,-109.5491667,Moab,UT,light,3600,Strange hovering, flickering red and white light over Moab Utah. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2011-02-10,34.7738889,-79.4630556,Laurinburg,NC,unknown,15,SAW A FALLING STAR THEN SAW A LINE OF BRIGHT WHITE LIGHTS MOVING UNLIKE ANY CRAFT IVE EVER SEEN MADE NO NOISE THEN VANISHED VERY FREAKY +2012-02-09,42.6583333,-83.15,Rochester Hills,MI,triangle,180,Triangular object with bright white lights on each corner and faint light and blinking light in middle +2012-02-09,41.9163889,-83.3977778,Monroe,MI,unknown,7200,Weird light above the fields in Ida, a takeoff and possible landing +2012-02-09,35.3733333,-119.0177778,Bakersfield,CA,light,300,Three red-orange lights appear over I-5/westside of Bakersfield +2012-02-09,34.6991667,-86.7483333,Madison,AL,light,180,Several bright white & one red lights moving quickly over the Madison/Huntsville/Owens Cross Road area 1 light not a plane. +2012-02-09,32.2216667,-110.9258333,Tucson,AZ,circle,120,15 - 20 yellow orange object on straight line trajectory +2012-02-09,42.6055556,-83.15,Troy,MI,light,300,Orange tinted orbs observed over Troy, MI (along with star-like light to the east) ((NUFORC Note: Possible "Chinese" lanterns? PD)) +2012-02-09,40.9636111,-81.3313889,Hartville,OH,triangle,180,Large triangular craft (size of com. jet), flat black, bright white lights on points, hovered/rotated 180 degrees & moved away slowly. +2012-02-09,42.6583333,-83.15,Rochester Hills,MI,sphere,60,3 amber-tan spheres spotted over skies in michigan +2012-02-09,36.4072222,-105.5725,Taos,NM,other,60,Several blinking red lights circling Taos, NM valley. +2013-02-09,33.7747222,-84.2963889,Decatur,GA,formation,300,12 orange balls of light fly over Atlanta. +2013-02-09,40.015,-105.27,Boulder,CO,circle,5,Falling bright green orb, lasted only seconds. Close to foothills. ((NUFORC Note: Possible meteor? PD)) +2013-02-09,39.1072222,-76.5713889,Pasadena,MD,flash,2,Mega flash of pure white light. +2013-02-09,33.94,-118.1316667,Downey,CA,light,2,UFO sighting over Los Angeles, 2013.02.09 at 3:40am +2013-02-09,34.0005556,-81.035,Columbia,SC,oval,600,Moving single white light in sky that changed directions then halted until it faded from sight. +2013-02-09,38.7908333,-121.2347222,Rocklin,CA,circle,3600,Two Unidentified Objects Flying in Sky Over Sacramento County on February 9, 2013, at Approximately 6:25pm. +2013-02-09,20.7580556,-155.9902778,Hana,HI,fireball,1200,8-10 firey red and orange flares fly over Hana, HI, toward Haleakala. +2013-02-09,27.85,-82.175,Lithia,FL,circle,600,Orange orbs seen in Lithia Eastern sky. Uneven formation & no flashing lights. Travelled faster than a passenger plane. Travelled from +2013-02-09,37.6138889,-122.4858333,Pacifica,CA,fireball,60,Fireball shaped object, orange in color, above montara mountains... floating then appeared to have slowly jetted away, like no other ai +2013-02-09,47.6063889,-122.3308333,Seattle,WA,fireball,300,Red "fireballs" in the sky. +2014-02-09,41.6833333,-74.8716667,Bethel,NY,diamond,300,3 ufos' emitting low frequency hum, spotted in sullivan county by backpacker. +2014-02-09,30.3319444,-81.6558333,Jacksonville,FL,fireball,300,Strange Row of Lights Over Jacksonville, Fl. +2014-02-09,39.4861111,-75.0261111,Vineland,NJ,light,900,This was not the first time that I seen this, the white ball of light between the trees and the red beam of lights. +2014-02-09,39.0838889,-77.1530556,Rockville,MD,fireball,30,Went outside due to a low flying military helicopter seconds later at a much higher altitude a large fireball appeared falling towards +2014-02-09,41.8444444,-90.1886111,Clinton,IA,circle,7,I was walking downtown. The sky was riddle with shinny stars,as I was walking ,I had been looking at the ground. In the back of my mi +2014-02-09,33.3805556,-84.7997222,Newnan,GA,circle,120,I saw a red shining light in the eastern sky at 7:45 pm that seemed to be a UFO? +2014-02-09,45.0205556,-93.2177778,St. Anthony,MN,circle,7,Bright orb seen moving slowly over lake and the picked up speed and disappeared. +2014-02-09,30.3580556,-90.0655556,Mandeville,LA,light,120,Strange moving light over Mandeville. +2014-02-09,33.0580556,-112.0469444,Maricopa,AZ,oval,120,Red glowing disc wart like in appearance around tree top level. +2014-02-09,20.8783333,-156.6825,Lahaina,HI,light,240,Two constant, non-flashing, red lights separated by 30 degrees tracked in tandem W to E at altitude of 4000+'. +1970-03-10,27.7705556,-82.6794444,St. Petersburg,FL,disk,3600,Encounter with disked shape UFO on campus of Florida Presbyterian College with 30 others +1978-03-10,47.6105556,-122.1994444,Bellevue,WA,disk,1800,My age was 8 at the time and I was in bed just starting to fall asleep. Mother was in the den calling me to come "see something". I did +1979-03-10,35.4130556,-78.7358333,Buies Creek,NC,disk,10800,While living on the edge of the campus of Campbell College in Buies Creek, NC I saw a large saucer shaped object on the ground. +1979-03-10,35.8802778,-118.6727778,California Hot Springs,CA,disk,600,saucer larger than a sierra nevada mountain +1983-03-10,40.1302778,-75.5152778,Phoenixville,PA,sphere,900,20 ft. diameter sphere 50 yrds. away red grid pattern light over entire sphere +1987-03-10,40.8175,-73.0005556,Medford,NY,formation,300,Similar to lights over Phoenix +1991-03-10,43.6136111,-116.2025,Boise,ID,disk,600,Saucer Shaped Craft Followed Me +1994-03-10,33.9791667,-118.0319444,Whittier,CA,circle,300,it was giant I saw it with bright lights millions of lights it 2 feet above our car. I saw a windsheild in it through it I saw an objec +1994-03-10,42.9133333,-85.7052778,Wyoming,MI,disk,60,disk shaped looked to be black with colored flashing lights on the bottom +1994-03-10,47.0380556,-122.8994444,Olympia,WA,oval,10,Two oval shaped, firefly-like, yellow glowing craft, flew overhead at great speeds with erratic movement. +1994-03-10,33.4222222,-111.8219444,Mesa (North Of),AZ,triangle,90,I saw a black craft floating in the air, no noise or anything. When I got out of my car to see what was going on, it left. +1997-03-10,34.0752778,-84.2941667,Alpharetta,GA,triangle,900,Boomerang UFO sits on barn +1997-03-10,36.8527778,-75.9783333,Virginia Beach,VA,sphere,10,White, spherical object moving in a NW trajectory, silent, moving extremely fast. +1997-03-10,40.7141667,-74.0063889,New York City,NY,light,900,Strange lights above New York City +1997-03-10,36.175,-115.1363889,Las Vegas (North Of),NV,light,600,orange orb traveling sse at unknown altitude, pitch black, starry night, VFR, CAVU, totally silent, 2 people +1998-03-10,34.0194444,-118.4902778,Santa Monica,CA,sphere,90,Metallic sphere over Los Angeles International Airport. +1998-03-10,32.0833333,-81.1,Savannah (Wilmington Isl),GA,cone,120,triangle object headed south floated by house in early evening +1998-03-10,34.0005556,-81.035,Columbia,SC,diamond,300,Brightly lighted craft hovering over us on Interstate 26. Had lights shining down from the craft as well as lights shining up into the +1998-03-10,40.2397222,-78.8352778,Windber,PA,formation,300,Tight,straight-line formation hovering approx 1000'. V-shape intense white light each. Cntr craft left,rest followed as observer stoppe +1998-03-10,38.8047222,-77.0472222,Alexandria,VA,chevron,4,March 97 0r 98 4-5 seconds Alexandria, VA Chevron shaped and huge glide overhead then suddenly go out of sight... +1999-03-10,40.3266667,-78.9222222,Johnstown,PA,cigar,3600,My encounter. +1999-03-10,39.1625,-76.625,Glen Burnie,MD,unknown,1800,3 Lights In Triangle Shape...Glen Burnie, MD / Pasadena, MD +2000-03-10,47.3177778,-119.5525,Ephrata,WA,other,300,It appeared as a ghostly white-winged object traveling so slow as to give one the impression, it was studying the terrain below. +2000-03-10,39.5994444,-110.81,Price,UT,light,600,A large light the color of a freeway light (orange huge). observe with feild glasses. No noise as it continued South and blinked out. +2000-03-10,44.5302778,-69.2983333,Freedom,ME,light,5,Bright light with diffuse edges, flying at high speed, low altitude, no sound, then disappearing suddenly +2000-03-10,42.2711111,-89.0938889,Rockford,IL,diamond,1800,5 kite shaped(larger than stars)orangelights in western sky Stationary 15 mins faded gold->white, then 3 more rose slowly from N-> SW +2000-03-10,42.2711111,-89.0938889,Rockford,IL,light,1200,This was something we all have NEVER seen before. There has been no investigation that we know of, except it was reported on the news. +2000-03-10,40.4233333,-78.4341667,Duncansville,PA,triangle,240,Ther was alot of wind so I decide to look out of my window to see the trees blowing, I looked into the sky and to my suprise I seen a u +2001-03-10,47.6063889,-122.3308333,Seattle,WA,circle,600,Dark Object in flight path of Airplanes heading south to King County Airport +2001-03-10,35.1508333,-92.7438889,Morrilton,AR,unknown,7200,Say some strange stuff +2001-03-10,33.9908333,-118.4591667,Venice,CA,cylinder,10,Observed 3 or 4 fast-moving, silver-copper-colored oblong objects for up to ten seconds as they whizzed by my house. +2001-03-10,40.2344444,-77.1363889,West Middlesex,PA,sphere,15,UFO sited over field, street map included. +2001-03-10,45.4872222,-122.8025,Beaverton,OR,light,300,3 people saw 3 flickering orange lights moving slowly away from each other. +2002-03-10,36.175,-115.1363889,Las Vegas,NV,circle,3600,TEN OBJECT'S SEEN BY ME AND MY CREW OF NINE AND IT'S REAL!!!!!!!!!!!!!!!!!!!!!!! +2002-03-10,34.6086111,-98.39,Lawton,OK,formation,180,Lawton UFO +2002-03-10,36.8188889,-76.2752778,Chesapeake,VA,other,600,From a Senior Correctional Officers eyes, what I've seen one night at work! +2002-03-10,39.5094444,-76.1644444,Aberdeen,MD,triangle,1200,i worked nights for rite aid distribution center as a yard jockey moving trailers around the yard to be loaded for the following day. +2002-03-10,41.7075,-86.895,Michigan City,IN,fireball,2,Large Fluoriscent fireball with long tail in Northern Indiana +2003-03-10,37.3852778,-122.1130556,Los Altos,CA,disk,5,Greenish glowing craft flies over Peninsula Bayland/Palo Alto area +2003-03-10,37.1041667,-113.5833333,St. George,UT,cone,300,bright Aura with lightning shooting up through center, then disapeared with a BOOM! +2003-03-10,39.7441667,-83.8086111,Cedarville,OH,triangle,15,Spotted hovering in midair perfectly still, then silently accelerated away at great speed +2003-03-10,32.7152778,-117.1563889,San Diego,CA,light,420,Ball of light that left a trail behind it. Would disappear and reappear in a different place in the sky. +2003-03-10,39.2822222,-82.395,Zaleski,OH,sphere,3,Orange sphere slowly drops for the Zaleski, Ohio sky. +2003-03-10,33.2822222,-116.6327778,Warner Springs,CA,light,600,In the eastern sky (over head, not near the horizon) A bright yellow 'star' at first glance. It began to move in a straight line then +2003-03-10,38.364444399999996,-98.7644444,Great Bend,KS,light,1500,bright lights dancing and streaming from east to west and back again. +2003-03-10,30.6322222,-87.0397222,Milton,FL,triangle,20,Strange large triangle shaped object low in the sky +2003-03-10,33.0916667,-93.9080556,Doddridge,AR,other,7200,Strange lights, and footprints +2003-03-10,33.0197222,-96.6986111,Plano,TX,light,900,a very fast moving bright, white light that moved at sharp angels and stopped and held a position for about 10 minutes. +2004-03-10,36.0525,-95.7905556,Broken Arrow,OK,sphere,180,Orange orb in the sky vanishes..... +2004-03-10,44.0216667,-92.4697222,Rochester,MN,chevron,45,solid red chevron-shaped ufo formation sighting in Rochester, Minnesota 2004 +2004-03-10,39.2902778,-76.6125,Baltimore,MD,unknown,10800,V shaped slow moving star like +2004-03-10,33.9525,-84.55,Marietta,GA,cigar,180,I saw a silver cigar in a clear blue sky over Marietta, GA. +2004-03-10,37.0583333,-120.8488889,Los Banos,CA,disk,2700,Sitting stationary the pulsating lights looked like a heart beat. ((NUFORC Note: Venus is very prominent in the western sky. PD)) +2004-03-10,48.3683333,-124.6236111,Neah Bay (50 Miles Off The Coast Of),WA,disk,2700,fishing vessels observe disc shaped object with white red and green lights at high rates of speed for nearly a half an hour. +2004-03-10,35.1083333,-77.0444444,New Bern,NC,light,180,Strange Lights over Eastern NC. +2004-03-10,35.1677778,-78.9730556,Spring Lake,NC,light,120,Large light very high in night sky, no sound, could have been ISS. +2004-03-10,43.2341667,-86.2483333,Muskegon,MI,teardrop,60,There were two, flat, "teardrop" shaped, faint "pinkish" lights traveling at a high rate of speed, abruptly changing direction. +2004-03-10,35.5280556,-108.7419444,Gallup,NM,light,1800,Extremely bright white light with yellow and green strobing, long duration ((NUFORC Note: Sighting of Sirius?? PD)) +2005-03-10,34.698055600000004,-118.1358333,Lancaster,CA,fireball,180,Large orange light moving out of the w.s.w. to the e.s.e over lancaster, ca. area 02:31 +2005-03-10,47.4008333,-116.9161111,Worley,ID,triangle,360,Vertical Triangular object hovers high above ground. +2005-03-10,29.5847222,-81.2080556,Palm Coast,FL,circle,180,Round object moving south over Palm Coast, FL. +2005-03-10,26.4611111,-80.0730556,Delray Beach,FL,light,60,Bright white light hovering high above the ground, suddenly dissappeared. +2005-03-10,48.7597222,-122.4869444,Bellingham,WA,sphere,900,Bright reflective sphere high in the sky on a sunny day +2005-03-10,46.1469444,-122.9072222,Kelso,WA,unknown,300,Bright single point of light +2005-03-10,45.5236111,-122.675,Portland,OR,light,180,Very bright light traveling over Portland ((NUFORC Note: International Space Station. PD)) +2005-03-10,40.4619444,-74.3386111,Parlin,NJ,oval,4,A white dot traveled at amazing speed, followed by a blue light behind it. +2005-03-10,43.8736111,-116.4983333,Emmett,ID,light,180,Bright red light droping smaller orange lights from underneath, made a u turn heading southeast, dimed then winked out +2005-03-10,42.7469444,-73.7594444,Latham,NY,diamond,60,Large Black Diamond with a dim orange light at each corner moving steadily north up the Hudson Valley at about 3000 ft altitude +2005-03-10,46.7208333,-92.1038889,Superior,WI,disk,300,Strange Orange/red glowing object with multicolor lights in the middle. +2006-03-10,36.1538889,-95.9925,Tulsa,OK,oval,60,3 stacked UFO's Hovering (transports) +2006-03-10,29.4238889,-98.4933333,San Antonio,TX,triangle,4200,I was driving home from downtown San Antonio and witnessed a series of crafts with strange lights on Highway 281 for an hour or so. +2006-03-10,26.6155556,-80.0572222,Lake Worth,FL,triangle,120,Triangle at night, no lights or sound; fast. +2006-03-10,40.6541667,-84.1508333,Cridersville,OH,fireball,600,Several orb-like fireballs fading in/out; Alot of FEAE -psyhically 'knew' I was filming and moved in close - Check out the short video! +2006-03-10,33.9022222,-118.0808333,Norwalk,CA,light,1200,Red flare type light over Los Angeles Area +2006-03-10,33.9791667,-118.0319444,Whittier,CA,circle,600,dark brite red lite seen over whittier ca. +2006-03-10,37.9836111,-122.0741667,Pacheco,CA,light,120,Planetary conjunction in Ursa Major? It's not possible +2006-03-10,37.0841667,-94.5130556,Joplin,MO,circle,5,Small, stationary, reddish-orange, star-like object disappears. +2006-03-10,34.9247222,-81.0252778,Rock Hill,SC,flash,10,white flashing light over Rock Hill, SC. +2006-03-10,33.9791667,-118.0319444,Whittier,CA,circle,1200,I wanted to go to the liquor store to buy some cigarets and I asked my son to come along when I stepped out of my apartment and I saw i +2006-03-10,33.9791667,-118.0319444,Whittier,CA,oval,2100,Red Shimmering Object over Whittier California +2006-03-10,36.1538889,-95.9925,Tulsa,OK,changing,2400,5 glowing objects sighted in Tulsa. One of the five objects splits off into three seperate objects. +2007-03-10,40.9152778,-81.1061111,Alliance,OH,circle,20,17 circles in four v shapes! +2007-03-10,30.3319444,-81.6558333,Jacksonville,FL,triangle,2700,A triangle with bright white lights at each point and red flickering light in the middle. Lasted about 40min. +2007-03-10,45.4902778,-93.2475,Isanti,MN,changing,6,Bright light in the sky changed shape or direction then disappeared. +2007-03-10,33.685,-117.2722222,Canyon Lake,CA,light,3,I saw a bright light streak across the sky, then it looked like it shot straight up, and then vanished. +2007-03-10,41.9141667,-88.3086111,St. Charles,IL,triangle,4,Large arrowhead object with white lights around perimeter, flew over my hot tub. +2007-03-10,40.7141667,-74.0063889,New York City (Staten Island),NY,light,180,Small white lights seen weekly slight green aura +2007-03-10,36.6775,-76.9227778,Franklin,VA,light,7200,Extremely bright light over Franklin, VA. ((NUFORC Note: Venus. PD)) +2008-03-10,26.1416667,-81.795,Naples,FL,light,3,On Monday, March 10, 2008 at approximately 5:45 a.m. I went out to get the paper at the end of the driveway. There was a very, very br +2008-03-10,28.5380556,-81.3794444,Orlando,FL,egg,3,A bright bluesh/green light heading quickly towards the ground. +2008-03-10,43.698055600000004,-85.4836111,Big Rapids,MI,fireball,300,Green Light seen flying towards Michigan with a yellowish-green trail. +2008-03-10,40.5852778,-105.0838889,Fort Collins (Near),CO,oval,4,Slow moving ellipse lit from beneath by the early-morning sun. +2008-03-10,36.1658333,-86.7844444,Nashville,TN,light,45,Green stream of light that was moving in a manner that made it seem alive and not a craft Flying through the sky at a very slow rate of +2008-03-10,32.5402778,-82.9038889,Dublin,GA,other,1,Loud sonic boom noises which shake building structures. +2008-03-10,36.175,-115.1363889,Las Vegas,NV,light,600,UFO's practicing with the Thunderbirds? +2008-03-10,38.2544444,-104.6086111,Pueblo,CO,oval,45,By Pueblo Blvd. and Highway 50 red light 80 ft. high gives off steam trail as it descends to 50 ft., then disappears. +2008-03-10,37.0297222,-76.3455556,Hampton,VA,sphere,120,Strange Lights Near Langley Air Force Base...But these are no man made craft! +2008-03-10,36.323055600000004,-86.7133333,Goodlettsville,TN,unknown,300,Slow moving odd shaped object flying on hitt lane in goodlettsville, tn +2008-03-10,43.0852778,-77.9425,Bergen,NY,chevron,20,Red chevrons in the sky +2009-03-10,32.2216667,-110.9258333,Tucson,AZ,cylinder,20,Cylinder shape made out of "line" lights in Tucson +2009-03-10,34.0966667,-117.7188889,Claremont,CA,light,300,Bright white/red changing light moving calmly across sky, possible round/oval shape to it +2009-03-10,41.5513889,-70.6152778,Falmouth,MA,other,5,Three non blinking, slowly moving light sources converged into one single light source and appeared to within 200 feet of the ground. +2009-03-10,41.5513889,-70.6152778,Falmouth,MA,triangle,120,A very large, silent, slow moving triangle shaped craft with three non blinking lights was seen changing course by pivoting. +2009-03-10,41.5275,-74.2372222,Montgomery,NY,triangle,60,Craft spotted along Route 17K about a mile west of Winding Hills Park. It was flying too low for an airplane taking off from Stewar +2009-03-10,30.4211111,-87.2169444,Pensacola,FL,fireball,60,Turned off of Bayou Blvd in on onto Godwinson. Saw an extremely bright red light slowly moving down from the sky with one trail of smok +2009-03-10,33.6188889,-117.9280556,Newport Beach,CA,circle,300,03/10/09 Two 2-foot-diameter bright white lighted circles "dancing," each with one red light on the circle. +2009-03-10,30.4211111,-87.2169444,Pensacola,FL,light,180,Light with trail that stalled. +2010-03-10,47.0313889,-114.3263889,Huson,MT,circle,120,Three large circular crafts moving towards Missoula. +2010-03-10,33.8352778,-117.9136111,Anaheim,CA,disk,5,Flying Saucer Seen Cruising Over I-5 Near Anaheim Late at Night +2010-03-10,36.0966667,-81.1825,Moravian Falls,NC,light,5,Bright white light over Moravian Falls changes to yellow-green as it falls +2010-03-10,39.8794444,-91.1077778,West Liberty,IL,triangle,2700,A star wars aeronautic spectacle. +2010-03-10,37.6819444,-121.7669444,Livermore,CA,flash,900,Round ball of flashing lights for three nights, then vanished as I was looking at the light, returned with a beam of light. +2010-03-10,38.8113889,-90.8527778,Wentzville,MO,light,300,Bright amber light dim to bright +2011-03-10,32.7152778,-117.1563889,San Diego,CA,light,5,I saw a very bright stationary light that was maybe 1.5 miles away. Since it was near a military air station I looked for running light +2011-03-10,34.4838889,-114.3216667,Lake Havasu City,AZ,disk,180,Bright Amber Disk - Travels Across The Desert Sky +2011-03-10,41.7108333,-87.7580556,Oak Lawn,IL,cigar,4,UFO Cigar I think I saw was crazy +2011-03-10,34.2077778,-117.1083333,Running Springs,CA,changing,30,Flying object that changed shape and color over San Bernardino Mountains CA +2011-03-10,33.3427778,-118.3269444,Avalon,CA,light,60,slow moving light as bright as brightest star in sky, moving slowly from north to south,extremely bright then slowly faded out +2011-03-10,31.9563889,-99.9619444,Winters,TX,oval,12,3-amber colored ovals in Winters, Tx sky. +2011-03-10,47.9791667,-122.2008333,Everett,WA,light,5,Star sized object falls streight down 90deg from horizion and disapears. +2011-03-10,31.8575,-103.0922222,Kermit,TX,triangle,300,a triagle shape ship +2011-03-10,37.0058333,-121.5672222,Gilroy,CA,diamond,120,Red orb at 23:52 3/10/11 took a picture zoomed in to see a diamond shaped ufo. Please help +2012-03-10,32.7252778,-114.6236111,Yuma,AZ,disk,600,Saw a hub-cab-shaped disc at 2AM 10 Mar 2012, hovering over corner of 4th Ave & 27th St in Yuma, AZ +2012-03-10,38.9716667,-95.235,Lawrence,KS,diamond,180,Diamond shaped object hovers over Kansas University Student Union 3/10/2012. +2012-03-10,41.5836111,-72.8927778,Plantsville,CT,other,120,RED ORB FOLLOWED BY HELICOPTER +2012-03-10,40.5866667,-122.3905556,Redding,CA,fireball,5,An orange fire-ball was seen flying through the sky, pretty low, and then I seen it disappear behind the trees. +2012-03-10,35.5083333,-78.3397222,Smithfield,NC,fireball,300,Five fireballs moving across sky in Johnston County NC +2012-03-10,39.5297222,-119.8127778,Reno,NV,fireball,5,A fireball fell over south Reno, NV, on 3/10/2012 at 7:00PM. Lasted 4-5 sec. +2012-03-10,27.3361111,-82.5308333,Sarasota,FL,triangle,240,Triangle with lights seen moving south along us 41 sarasota +2012-03-10,36.3047222,-86.62,Hendersonville,TN,disk,60,UFO spotted in Hendersonville, TN +2012-03-10,43.0966667,-71.4655556,Hooksett,NH,triangle,120,Three triangular craft, no lights or sound, flying about 150 feet from each other in a straight line. , +2012-03-10,26.1416667,-81.795,Naples,FL,light,90,Orange light pulsating orbs in front moved slowly over Naples Beach, no sound. Up and gone. +2012-03-10,38.8113889,-90.8527778,Wentzville,MO,fireball,300,Three orange fireballs in Wentzville, MO. +2012-03-10,33.7455556,-117.8669444,Santa Ana,CA,oval,3600,Floating oval aircraft with red lights, moderate to fast smooth movement +2012-03-10,40.7297222,-73.2108333,West Islip,NY,sphere,120,A bright orange, sphere shaped ball of light. +2012-03-10,41.6611111,-72.78,New Britain,CT,cigar,20,Floating star and cigar shaped crafts? Helicopter-like noise but no helicopter. +2012-03-10,36.1055556,-79.5425,Gibsonville,NC,sphere,300,8 sphere see in the sky by 3 people +2012-03-10,41.85,-87.65,Chicago,IL,other,1200,Craft flies in figure 8's over Midway , then down Ciceroƹred & 1white front light w/3 red horizontal lights flashing sequentially +2012-03-10,41.1305556,-85.1288889,Fort Wayne,IN,unknown,1200,Unusual lights in the southern sky. ((NUFORC Note: Sighting of Jupiter and Venus? PD)) +2012-03-10,34.7538889,-77.4305556,Jacksonville,NC,sphere,1200,21:00 pair of objects seen in sky. Moved diagonally and in sync against cloud motion. ((NUFORC Note: Jupiter and Venus. PD)) +2012-03-10,39.9975,-85.7466667,Pendleton,IN,triangle,2700,There were 2 main ones but a third appeared in the video and photos and we did not see it with the naked eye. +2012-03-10,27.8161111,-80.4708333,Sebastian,FL,light,60,Orange Light Over Sebastian, Florida +2012-03-10,38.6635,-90.8184,Defiance,MO,triangle,90,The Triangle light over Hwy 94 in Defiance, MO. +2012-03-10,45.7325,-107.6113889,Hardin,MT,flash,1200,Flashing light moving fast changing color. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2012-03-10,28.5380556,-81.3794444,Orlando,FL,fireball,900,Orange orbs flying over Orlando +2012-03-10,34.2783333,-119.2922222,Ventura,CA,circle,1800,On Friday night around 7 there was sitings of a blue circle that hovered, and changed directions in Ventura, Ca. over the ocean. The ob +2013-03-10,47.2530556,-122.4430556,Tacoma,WA,fireball,900,ORANGE FIREBALL THAT FELL BACK TO EARTH WAS CARRIED BY A LARGE CLEAR PLASTIC BAG. ((NUFORC Note: Hot-air balloon? PD)) +2013-03-10,42.1013889,-72.5902778,West Springfield,MA,cigar,120,Watched a Red and White helicopter follow and stay with the ufo from a distance. Ufo was white with no no markings. It was not a drone +2013-03-10,34.1425,-118.2541667,Glendale,CA,fireball,1800,My husband I were in balcony and suddenly noticed this lights, orangish round and moving. They were very up there so immediatley I knew +2013-03-10,33.8491667,-118.3875,Redondo Beach,CA,disk,420,7-8 Craft resembling ballon's on fire seen cruising off Southern California coast. +2013-03-10,43.5758333,-124.1738889,Lakeside,OR,triangle,300,My wife and I was in the Spinreel Dunes area trying to watch a comet that was supposed to be seen that night. +2013-03-10,40.9622222,-82.8544444,New Washington,OH,light,7200,Flashing lights in New Washington, Ohio. +2013-03-10,31.7319444,-84.1708333,Leesburg,GA,circle,600,Object seen moving with storm on radar. +2014-03-10,36.3047222,-86.62,Hendersonville,TN,chevron,30,Huge V shaped object seen in Hendersonville, TN. +2014-03-10,33.1005556,-86.8641667,Montevallo,AL,flash,30,Green fireball object shooting downward from the sky. +2014-03-10,37.4797222,-82.8316667,Garrett,KY,other,7200,An elongated star with mutiple colors and a tail of lights. Blue, then red/orangish tint. ((NUFORC Note: Star or Venus? PD)) +2014-03-10,41.2888889,-91.5522222,Ainsworth,IA,triangle,180,TRIANGLE CRAFT SEEN AGAIN IN AINSWORTH! +2014-03-10,39.4666667,-87.4138889,Terre Haute,IN,unknown,3600,Overpowering, frightening, and extremely loud sounds coming from above. +2014-03-10,29.2855556,-81.0561111,Ormond Beach,FL,circle,7200,Morning object over Atlantic Ocean near daytona beach with strange southern eratic movement.... ((NUFORC Note: Venus? PD)) +2014-03-10,34.0752778,-84.2941667,Alpharetta,GA,oval,30,Oval silent. +2014-03-10,34.5077778,-87.7286111,Russellville,AL,cigar,300,White Cylindriacal Cigar type object moves sluggishly in the northern sky. +2014-03-10,36.595,-82.1888889,Bristol,TN,sphere,120,Bright white/silver object over Bristol, TN. +2014-03-10,28.2486111,-81.2813889,St. Cloud,FL,other,60,Loud (house shaking) booms in the area. +2014-03-10,43.0361111,-71.1838889,Raymond,NH,triangle,300,It was three bright white lights evenly spaced out to form a triangle and appeared to all be on one craft. +2014-03-10,39.8288889,-84.8902778,Richmond,IN,circle,1200,Orangey spheres over the north end of glenn miller park in Richmond, Indiana. +2014-03-10,43.3902778,-123.3113889,Sutherlin,OR,light,600,Orange light in night sky dropping smaller light. +2014-03-10,47.8525,-92.6894444,Cook,MN,light,60,Saw three large, bright red-orange spheres of light in the southeastern sky. +2014-03-10,33.4222222,-111.8219444,Mesa,AZ,circle,360,Copper orange lights grow and disappear over East Mesa. +2014-03-10,39.6416667,-77.7202778,Hagerstown,MD,unknown,5,Dark grey or brown, amorphous object, streaking west to east over Hagerstown. +2014-03-10,41.7613889,-88.4436111,Sugar Grove,IL,unknown,120,Green light in sky. +2014-03-10,35.7913889,-78.7813889,Cary,NC,triangle,45,Black Triangle over Cary, N.C. Accompanied by Three Black Helicopters. +1977-03-11,38.6272222,-90.1977778,St. Louis,MO,circle,120,Object was seen on a clear day no clouds except for a hazy disturbance around the object at a distance of about 1 mile. object appeared +1988-03-11,37.5336111,-77.1213889,Quinton,VA,circle,120,It was late and I decided to go upstairs to bed while my husband stayed downstairs to watch tv. My children were all in bed upstairs in +1993-03-11,31.1169444,-97.7275,Killeen,TX,unknown,600,An Object In The Sky Over I-35 Texas in March of 1993. +1997-03-11,38.3497222,-81.6327778,Charleston,WV,sphere,900,3 bright,orange objects with comet-like tails, movingtoward earth, then toward each other, thenhorizontally, east to s.west +1998-03-11,40.9008333,-73.3436111,Northport,NY,light,2,no crafts were seen, only a brilliant silver-blue light that moved north to south .... +1998-03-11,38.8338889,-104.8208333,Colorado Springs,CO,other,15,Seven narrow cylinders with tapered ends, flew in silent formation, from the south,due north. They appeared to have no single light. Th +1998-03-11,39.9369444,-120.9461111,Quincy,CA,circle,150,It was an object, blood red, about magnitude 1, travelling NW to SE. No sound. 4 contrails. +1999-03-11,42.9405556,-87.9958333,Greendale,WI,diamond,300,I work in a suberb of milwaukee ,Wi and it is not really that unpopulated , however i get off work at 2:30 and about 5 min into my ride +1999-03-11,37.6547222,-122.4066667,South San Francisco,CA,disk,240,I was looking up because I was carring laungry down stairs. This saucer went right over my head with out making a noise. I was in a s +1999-03-11,30.3319444,-81.6558333,Jacksonville,FL,triangle,60,Delta wing shaped craft approx 60-70' in diameter/tip to tip hovered @ 11:00 for about 1 min. No sound. six round depression on undersi +1999-03-11,33.9908333,-118.4591667,Venice,CA,fireball,3,Orange fireball seen falling in L.A. 03-99 with sparkler like streamers behind, streaking quickly for three seconds. +1999-03-11,36.175,-115.1363889,Las Vegas,NV,light,900,Two large amber orbs appeared/hovered due North/West of the Stratosphere Tower. Hovered for five to ten minutes. They remained stationa +1999-03-11,41.6736111,-88.0016667,Lemont,IL,triangle,360,Sighting of a triangular craft by my daughter and then myself. My daughter actually drove under the object. Describes it as an equila +1999-03-11,38.4405556,-122.7133333,Santa Rosa,CA,triangle,4,Travled very fast north to south. Lights on all points. Very little sound. +2000-03-11,30.6941667,-88.0430556,Mobile,AL,triangle,60,a triangular shame with white lights marking the corners no lines conecting the dots but flying in syncronized form. to far in the sky +2000-03-11,29.7630556,-95.3630556,Houston,TX,sphere,8,heading north to south FAST. 2 jets approaching it on either side going FAST from south to north.jets didin't turn around to chase it +2000-03-11,38.7072222,-121.28,Citrus Heights,CA,circle,300,orange in color, seem to be spinning very fast, and moving at a great deal of speed, and height. We have seen this before in January 20 +2000-03-11,38.6447222,-121.2711111,Fair Oaks,CA,light,360,Three redish lights moving across the sky in absolute synchronicity. Lights were far too much apart to have been an airplane. Visible f +2000-03-11,38.6786111,-121.2247222,Orangevale,CA,fireball,300,3 Objects traversing the sky, burning out eventually +2000-03-11,47.8569444,-121.6958333,Gold Bar,WA,sphere,1800,Two volunteer investigators from the Bigfoot Field Research Organization observed a glowing green/blue sphere hovering over a ridge tha +2000-03-11,34.4208333,-119.6972222,Santa Barbara,CA,triangle,120,Black triangle about the size of a mid-size commercial jet liner. +2000-03-11,35.4013889,-93.1141667,Dover,AR,triangle,1200,A LARGE CRAFT FLEW THREW THE AIR AT UNMARKABLE SPEEDS. IT ALSO HAD A SMALL CRAFT THAT FOLOWED IT AND FLASHED ABOUT EVERY TWENTY SEC. +2000-03-11,36.175,-115.1363889,Las Vegas,NV,oval,600,Orange colored oval object travelling slowly east from the extreme western part of Las Vegas. The object was orbiting around in a circ +2001-03-11,27.3361111,-82.5308333,Sarasota,FL,disk,6,Two silent west bound objects gulf coast of Florida +2001-03-11,32.4366667,-111.2247222,Marana,AZ,chevron,60,I saw a UFO land at an undercover CIA airfield in the Arizona desert. +2001-03-11,32.4377778,-111.3147222,Avra Valley,AZ,chevron,15,I noticed a big black V making a banking turn then descend and dissapear behind the treeline. +2001-03-11,42.8213889,-77.6688889,Livonia,NY,light,1800,sky lights western n.y. +2001-03-11,35.8422222,-90.7041667,Jonesboro,AR,diamond,60,a square shaped object slowly flying about 50ft. off of the ground, it had a white light on each of the 4 corners. the person driving i +2002-03-11,34.1063889,-117.3694444,Rialto,CA,circle,540,they changed color. +2002-03-11,40.7141667,-74.0063889,New York City (Yonkers),NY,diamond,300,I watched a diamond shaped craft hover for about 10 minutes, and captured some of it on video. +2002-03-11,38.5816667,-121.4933333,Sacramento,CA,other,2,picture of police copter and two ufos. +2002-03-11,27.8161111,-80.4708333,Sebastian,FL,triangle,10,Gray Triangle moving fast. no sound or lights +2002-03-11,27.8161111,-80.4708333,Sebastian,FL,triangle,20,Triangle shaped craft with no sound flying over house +2002-03-11,41.6005556,-93.6088889,Des Moines,IA,teardrop,300,It looked like a teardrop and kept dropping and rising back and forth in a diagnol pattern. My friend was standing next to me and saw +2003-03-11,43.1008333,-75.2330556,Utica,NY,sphere,420,a medium sized sphere with no windows or visible doors it was making sharp turns and angular movements. +2003-03-11,40.2794444,-86.5108333,Frankfort,IN,light,1200,Fading orange lights witnessed by a 19 y.o. & 48 y.o. formations seen. +2003-03-11,42.4105556,-88.0261111,Lindenhurst,IL,oval,1,bright white oval-shaped flying object vanished after spotting it for one second +2003-03-11,38.8119444,-77.6366667,Haymarket,VA,triangle,180,I was driving down a rural road near Haymarket Virginia, several miles off Route 15. I own a 2002 Ford pick up truck. I saw some lights +2003-03-11,35.4675,-97.5161111,Oklahoma City,OK,disk,120,It was a disk and it changed colors and disappeard. +2004-03-11,47.6733333,-117.2383333,Spokane Valley,WA,light,15,A bright, white object near the North Star completely faded rapidly in clear skies. +2004-03-11,41.9444444,-71.2861111,Attleboro,MA,light,300,There was one white strobing light which blinked about 1-2 times a second and seemed to have a rhythm. +2004-03-11,40.8527778,-73.1155556,Lake Grove,NY,triangle,900,I went out to bring my Suv into my garage , when i looked out into the western sky and saw this dark triangular shaped object with Blue +2004-03-11,42.865,-71.4938889,Merrimack,NH,circle,600,Like a planet, but moved about. Not an a/c. Round, bright when magnified. Distant, hard to hold in viewfinder. ((NUFORC: Venus.PD)) +2004-03-11,40.7594444,-82.5902778,Ontario,OH,triangle,40,Large triagular craft glided slowly across Rt. 309 in southwestern direction that points toward Columbus, Ohio area +2004-03-11,40.7594444,-82.5902778,Ontario,OH,triangle,40,Very large noiseless triangular craft glides slowly south across Ohio's evening March sky near Mansfield -Ontario area +2004-03-11,64.8377778,-147.7163889,Fairbanks,AK,light,1200,for 20 min. watched 2 sets of stationary equally spaced large round yellow lights, one string of 4, one of 5, blinked out in order. +2005-03-11,32.3069444,-96.0063889,Eustace,TX,cylinder,300,The object was a wide cylinder, w/colored lights from one side to the other that flashed and alternated, it flew in a 'zig-zag' pattern +2005-03-11,37.9061111,-122.5438889,Mill Valley,CA,disk,45,I DO HAVE ONE OTHER EXPERIENCE WITH SEEING A UFO TRAVELING UP HWY 29 TWO MONTHS AGO AS WELL AS TWO PARENTS OF FRIENDS THAT HAVE SEEN UF +2005-03-11,31.3511111,-85.3422222,Headland,AL,light,7200,We were observing a light in the Constellation of Lepus just south of Orion. Light was the size of a star and flashed intermittently. +2005-03-11,41.6005556,-93.6088889,Des Moines,IA,disk,180,Two objects leading a third, or was the two objects being followed ? +2005-03-11,32.6125,-90.0366667,Canton,MS,unknown,45,ufo - 2 big white lights - Mississippi +2005-03-11,41.85,-87.65,Chicago,IL,flash,1,Wife and I were watching TV...she noticed a bright orange flash outside to the west/southwest. We're 7 stories up in our building, and +2006-03-11,39.0741667,-81.5533333,Rockport,WV,light,600,Vertical line of three blue and red lights about three or four times the size of stars or planets well above the southern horizon. +2006-03-11,39.0741667,-81.5533333,Rockport,WV,light,600,Horizontal bar of single blue and red lights in the southern sky with lights appearing to be about the size of large stars +2006-03-11,38.0280556,-121.8836111,Pittsburg,CA,fireball,300,Five sightings of glowing red orange fireball object over Pittsburg, CA +2006-03-11,33.9791667,-118.0319444,Whittier,CA,light,2700,Amazing sighting in Whittier. (Frequent sighting) ((NUFORC Note: Possible celestial bodies, perhaps "twinkling" stars?? PD)) +2006-03-11,32.1572222,-94.3372222,Carthage,TX,circle,600,Shooting star streaks and then changes direction. +2006-03-11,33.9791667,-118.0319444,Whittier,CA,sphere,900,object returns to whittier +2006-03-11,38.6780556,-121.175,Folsom,CA,other,60,two hawk shaped objects paceing small jet at high alt. and speed +2006-03-11,36.9741667,-122.0297222,Santa Cruz,CA,sphere,120,Observed 10-12 metallic spheres, flying in formation, during daylight flying from Santa Cruz Mtns toward Monterey Bay. +2006-03-11,35.2269444,-80.8433333,Charlotte,NC,oval,300,my friend and I saw 4 white flying ovals. +2006-03-11,35.3733333,-119.0177778,Bakersfield,CA,changing,120,Strange craft passed in front of the moon. +2006-03-11,34.2163889,-119.0366667,Camarillo,CA,light,3,Light circles star and then fades out. +2006-03-11,42.375,-71.0397222,East Boston,MA,light,30,First, i'd preface this by saying that I live no less than half a mile from Logan Airport. From my terrace I watch planes take off and +2006-03-11,26.1219444,-80.1436111,Fort Lauderdale,FL,light,600,RED FLASHING LIGHTS WITH A ZIP OF LIGHT GONE WITH GAS CLOUDS OF RED AND GREEN IN FT LAUDERDALE +2006-03-11,42.2833333,-71.35,Natick,MA,unknown,120,While walking my dog, a rather warm March night. He pulled, bolted straight into the neighbours yard. I did not have his regular leas +2007-03-11,41.6986111,-88.0683333,Bolingbrook,IL,rectangle,30,Small, rectangles appearing to be copies of a section of sky moving about double satellite speed in straight line from SSW-NNE. +2007-03-11,33.6,-117.6711111,Mission Viejo,CA,formation,8,I think I have had a close encounter in Oranger County California +2007-03-11,34.1722222,-118.3780556,North Hollywood (San Fernando Valley),CA,sphere,73800,there was a glowin sphere which is still visible right now that is still swayin back and forth in the distance +2007-03-11,34.0522222,-118.2427778,Los Angeles,CA,changing,299,UFO? Strange shape shifting object with strange light/reflection +2007-03-11,40.6430556,-111.28,Kamas,UT,fireball,10800,((HOAX??)) red light that was on the grond that went fast in kamas ut +2007-03-11,34.0522222,-118.2427778,Los Angeles,CA,cigar,1800,Two objects over Los Angeles on a Sunday afternoon. +2007-03-11,40.1672222,-105.1013889,Longmont,CO,light,300,Three stationary red/white lights in eastern sky +2007-03-11,39.6536111,-83.5638889,Jeffersonville,OH,other,5,Very green cloudy shooting star type of object in Ohio. +2007-03-11,40.6677778,-81.2575,Waynesburg,OH,fireball,5,Green fireball in W sky, leaving trail and then exploding. ((NUFORC Note: We suspect that the object may have been a meteor. PD)) +2008-03-11,46.9811111,-123.8880556,Hoquiam,WA,disk,60,I was sitting at my kitchen table at around 1:00am pacific time ..and heard what sound like crackling electricity…as I was going to go +2008-03-11,42.9336111,-72.2786111,Keene,NH,light,10,Bright light in the sky heads towards the ground level +2008-03-11,28.0341667,-80.5888889,Palm Bay,FL,disk,900,((HOAX??)) Sunrise UFO in Palm Bay Florida. ((NUFORC Note: Date is flawed. PD)) +2008-03-11,40.6408333,-74.8816667,Annandale,NJ,fireball,5,A red fireball with a white tail traveling low in the sky early morning. +2008-03-11,41.0583333,-74.0988889,Upper Saddle River (Woodcliff Lake),NJ,fireball,4,Just left rest area exit 172 GSP heading south, very sunny bright morning- witnessed a bright light streak down from the sky towards th +2008-03-11,26.6669444,-81.8802778,North Fort Myers,FL,circle,60,A bright light disappeared in a cloudless sky. +2008-03-11,44.5047222,-114.2308333,Challis,ID,chevron,600,Cited five orange/redish lights flying horizontal in an arched formation over Challis, Idaho. +2008-03-11,44.5047222,-114.2308333,Challis,ID,triangle,60,Triangular formation of lights with fourth light out of formation traveling slowly and quietly. +2009-03-11,42.5833333,-71.8027778,Fitchburg,MA,triangle,300,while taking my new puppy out to the bathroom i was looking to the southern sky and saw 3 lights. all alternating in brightness. i know +2009-03-11,37.4419444,-122.1419444,Palo Alto,CA,fireball,2,Falling Ball of Fire on Sand Hill Road 9pm 3/11/09 ((NUFORC Note: Possible meteor?? PD)) +2010-03-11,40.2013889,-77.1891667,Carlisle,PA,triangle,900,Triangle-shaped object above suburban area flying low with no sound, bright lights, and hovering motion. +2010-03-11,48.55,-109.6833333,Havre,MT,light,1800,Multiple sightings in the Havre area, 3 known witnesses +2010-03-11,48.55,-109.6833333,Havre,MT,other,3600,3 Bright yellow lights and 2 small red ones +2011-03-11,34.0522222,-118.2427778,Los Angeles,CA,teardrop,5,Random sighting over W. Los Angeles at midnight +2011-03-11,43.4711111,-89.7441667,Baraboo,WI,unknown,1.5,One craft, every color, low, horizon to horizon in one second. +2011-03-11,41.7494444,-72.155,North Windham,CT,teardrop,3,1 object appeared to be falling or crashing. This happened next to Windham Airport. +2011-03-11,39.7475,-122.1952778,Orland,CA,triangle,180,A strange triangular craft was hover off the west side of I-5 in n. Ca +2011-03-11,26.7052778,-80.0366667,West Palm Beach,FL,light,1200,Saw many lights streaking from west to east +2011-03-11,33.4222222,-111.8219444,Mesa,AZ,triangle,10,triangle shaped, 5 lights, silent, fast, +2011-03-11,41.1238889,-100.765,North Platte,NE,disk,25,Large saucer objects relative to the size of the moon, moving slowly and disappearing. +2011-03-11,39.9536111,-74.1983333,Toms River,NJ,formation,120,three orange lights hovered over Barnegat Bay very still and then vanished. +2011-03-11,32.8808333,-97.1547222,Colleyville,TX,cone,5,Glowing Cone Travels Downward, Splits in Two and Disappears. ((NUFORC Note: Possible meteor?? PD)) +2011-03-11,39.7913889,-74.1955556,Waretown,NJ,oval,2,5 orange lights formed in perfect line southeast on Rt. 9 in Waretown NJ +2011-03-11,29.9675,-98.9047222,Comfort,TX,triangle,300,U.S. Government secret aircraft. Possibly UFO +2011-03-11,30.0969444,-95.6158333,Tomball,TX,light,900,multiple orange/white lighted objects seen in sky in Tomball, Tx. +2012-03-11,41.5627778,-83.6538889,Maumee,OH,circle,600,Two round flying objects one flashing, maumee Oh 7am. +2012-03-11,34.1658333,-81.35,Chapin,SC,circle,180,Fiery Orange Ball Slowly Moving over our house at Lake Murray, SC +2012-03-11,44.6941667,-75.4866667,Ogdensburg,NY,oval,20,Orange Object flying near St Lawrence River, NY +2012-03-11,34.7786111,-82.3102778,Mauldin,SC,oval,2700,Lights in the sky, discernible object. ((NUFORC Note: Sighting of Jupiter and Venus. Photo is conclusive. PD)) +2012-03-11,35.0844444,-106.6505556,Albuquerque,NM,cylinder,12,Two dimmed lights traveling at insanely high speeds with no noise. +2013-03-11,21.3069444,-157.8583333,Honolulu,HI,fireball,5,Bright fireball steaking over Waikiki. +2013-03-11,33.0580556,-112.0469444,Maricopa,AZ,sphere,600,Two Orange orbs seen laterally moving near Maricopa Arizona then suddenly disappearing. +2013-03-11,33.2097222,-87.5691667,Tuscaloosa,AL,fireball,120,I have seen an orange, slow-moving, smokeless fireball moving through the sky above the University of Alabama. +2013-03-11,33.0580556,-112.0469444,Maricopa,AZ,light,300,Two lateral oddly colored lights suddenly appear near Maricopa Az., fly north about 3000 feet then disappear. +2013-03-11,33.8752778,-117.5655556,Corona,CA,light,60,Two bright lights still in sky then accelerate in opposite directions. +2013-03-11,29.2855556,-81.0561111,Ormond Beach,FL,unknown,420,Series of 6 orange red silent unknown objects. +2014-03-11,42.7044444,-73.9119444,Guilderland,NY,light,20,Bright lights traveling together. +2014-03-11,33.7738889,-117.9405556,Garden Grove,CA,diamond,1200,Shape of a top with colors of green white and pinkish orange seen it for almost a month straight. i have video of it. +2014-03-11,40.015,-105.27,Boulder,CO,other,120,Loud Noise Along with UFO flashing lights aircraft. +2014-03-11,40.7141667,-74.0063889,New York City (Brooklyn),NY,cylinder,300,SILVER BULLET UFO HOVERING STATIONARY IN BROOKLYN SKY, THEN VANISHED! +2014-03-11,42.9336111,-85.3419444,Lowell,MI,sphere,5,The object looked like it was getting closer to me then stopped hovered for a second then looked like it was dropping slow. +2014-03-11,34.7786111,-82.3102778,Mauldin,SC,triangle,120,3 reddish orange oval shaped craft gliding across the sky in formation right over my house as my husband and I went out to see why the +2014-03-11,41.6005556,-93.6088889,Des Moines,IA,disk,33,Disc shaped object flashing red and blue lights. +2014-03-11,26.1336111,-80.1133333,Sunrise,FL,light,120,Just very bright light then red then blue then green moving unlike any normal Craft in right angles then gone. +2014-03-11,28.0391667,-81.95,Lakeland,FL,circle,60,Spinning Circle with blueish and whitish lights around it. +2014-03-11,26.1336111,-80.1133333,Sunrise,FL,circle,1800,Changing lights very fast speeds, movement up and down. +1956-03-01,38.2325,-122.6355556,Petaluma,CA,oval,1800,Objects were several thousand feet in altitude and bounced around the sky basically overhead. I was 17 years old at the time. The Pet +1962-03-01,47.9130556,-122.0969444,Snohomish,WA,diamond,1500,I saw a UFO shoot incredibly fast and straight across large areas of the sky and then stop instantly at a new location. +1967-03-01,33.9791667,-118.0319444,Whittier,CA,oval,2,Two observers witnessed 500-foot long oval craft with lighted porthole windows flying low over Whittier. +1968-03-01,40.7141667,-74.0063889,New York City,NY,disk,120,I remember it so well to this day. I was in class getting ready for the day's dismissal time at 3 pm. All of us had our coats on and +1969-03-01,41.2586111,-95.9375,Omaha,NE,oval,30,Football shaped glowing orange light drifts straight across sky, west to east, to the top of a very tall TV tower and then disappears +1969-03-01,41.7108333,-87.7580556,Oak Lawn,IL,disk,1800,2 Large UFOs seen by my brother and his driving instructor +1969-03-01,40.5066667,-74.2658333,Perth Amboy,NJ,light,120,While observing Venus through telescopes, my friend and I saw several lights at high altitude that were able to come to complete stops, +1972-03-01,36.6777778,-121.6544444,Salinas,CA,cigar,180,Huge object. At least 2 football fields long. Altitude approx. 500 ft. Observed moving slowly westerly direct. No lights. No sound. Und +1973-03-01,35.6869444,-105.9372222,Santa Fe (Near, On Highway),NM,unknown,600,I had an Out of Body experience while driving down the road at night. +1973-03-01,36.0997222,-80.2444444,Winston-Salem,NC,light,15,Saw a fast moving light that perfomed an instantanious 90 degree turn and disappeared shortly thereafter. +1973-03-01,29.8944444,-81.3147222,St. Augustine,FL,light,60,White light flies into brighter white light and both go straight up. +1975-03-01,47.5675,-121.8875,Fall City,WA,unknown,21600,Possible abduction experience. 2 witnesses remember glimpses of inside of craft.This was reported to Peter Davenport late afternoo +1975-03-01,38.7522222,-121.2869444,Roseville,CA,disk,60,I saw a disk shaped saucer with dome on top with windows. Lights were on. In Roseville, trees on either side. +1977-03-01,39.4666667,-87.4138889,Terre Haute,IN,unknown,120,Noise and extreme light outside my windows +1977-03-01,41.3138889,-90.735,Hamlet,IL,sphere,600,UFO AT THE FARM. +1978-03-01,37.2266667,-121.9736111,Los Gatos,CA,oval,60,Large elipsoid object (greenish hugh) hovering and slowly moving forward just above the treeline (approx. 150 feet) in Los Gatos foothi +1978-03-01,42.125,-71.1027778,Stoughton,MA,other,60,It was the day after the Blizzard of 78 in Massachusets +1979-03-01,42.3266667,-122.8744444,Medford,OR,unknown,300,While in flight landing at Medford from Klammath Falls, I spoted what appeared to be another aircraft flying the opposite direction. S +1979-03-01,33.94,-118.1316667,Downey,CA,chevron,12,Very large silent slim chevron aircraft over Downey CA 1979 +1980-03-01,41.4338889,-73.1172222,Oxford,CT,cigar,120,Large Cigar shaped object very close. +1980-03-01,31.4480556,-109.9277778,Bisbee,AZ,other,1800,Large, nearby, stationary, metallic, featureless oblate spheroid in full daylight, chased by jet fighter in Az in 1980 +1980-03-01,37.775,-122.4183333,San Francisco,CA,light,60,Bright blue circular light travelled east to west across the S.F. Bay at a high rate of speed. +1981-03-01,40.9466667,-124.0994444,Mckinleyville,CA,other,20,Large (house-sized), slow moving (45-60 mph), low altitude (&lt; 2ꯠ') meteor witnessed spring 1981 N. CA. +1981-03-01,37.2872222,-121.9488889,Campbell,CA,cigar,180,Multiple sighting in Campbell CA of spacecraft in detail +1983-03-01,48.2766667,-116.5522222,Sandpoint,ID,disk,180,Outside in our front yard, we heard a craft overhead. It sounded like music was coming from it. There were lights, and it seemed disc +1983-03-01,38.5922222,-89.9111111,O'fallon,IL,disk,180,Disk seen hovering over residential area in O'Fallon, IL +1984-03-01,44.0522222,-123.0855556,Eugene,OR,triangle,600,Large Black colored triangle shaped ship. Eugene, OR 1984 +1985-03-01,37.6922222,-97.3372222,Wichita,KS,triangle,2,I was lying on my pool deck when out of my peripheral vision I saw three lights, about the orange glow of a cigarette and maybe 1ft. di +1987-03-01,42.4083333,-71.0125,Revere,MA,light,3600,Dancing Lights in sky as a child. +1987-03-01,35.6969444,-82.5608333,Weaverville,NC,triangle,120,UFO IN ASHEVILLE N.C. 1987 +1989-03-01,41.7002778,-73.9213889,Poughkeepsie,NY,chevron,60,V-shaped formation on Vassar College campus +1989-03-01,46.6022222,-120.5047222,Yakima,WA,unknown,240,5 blue lights flying in file. Made perpendicullar turn with no sound. +1991-03-01,44.98,-93.2636111,Minneapolis,MN,egg,600,5-6 silver, egg-shaped craft desending one by one at early sunrise on Lake Calhoun in Minneapolis. +1991-03-01,41.1133333,-74.2458333,Ringwood,NJ,cigar,120,Daylight sighting of cigar-shaped object +1991-03-01,41.1175,-73.4083333,Norwalk,CT,oval,60,Oval Shaped Silvery Metallic Craft moving in a straight line very quickly. +1991-03-01,41.1219444,-74.5808333,Franklin,NJ,unknown,120,Large silent lighted object moves slowly south changes direction accelerates at high speed to east out of sight. +1992-03-01,40.1794444,-118.4725,Lovelock,NV,light,720,Huge ball of light traveled behind mountain tops, raised up briefly, accompanied by small colored lights, then left in electric flash. +1993-03-01,35.7113889,-109.5413889,Ganado,AZ,other,6312000,For many years since 1978 to 2004 there have been different types U.S military air craft flying over my families home and my neighbors +1993-03-01,33.4222222,-111.8219444,Mesa,AZ,other,120,driving south bound on gilbert road approaching the superstition freeway the sun bounced off something in the air and it caught my atte +1993-03-01,34.54,-112.4677778,Prescott,AZ,diamond,900,On a sunny afternoon in the spring of 1993 I had my first visual day sighting with 3 other family members. The object appeared to be ho +1993-03-01,35.0455556,-85.3097222,Chattanooga,TN,sphere,300,A silver orb seemed to hover and move in and out of the upper level of a large cumulus cloud. +1993-03-01,34.8525,-82.3941667,Greenville,SC,triangle,600,My friend and I were in a parking lot (there was a moon) heading to our vehicle. I looked up and saw what I thought at first were mete +1994-03-01,33.7283333,-117.1455556,Menifee,CA,unknown,10526400,Sun City / Menifee UFO sightings in 1994 +1995-03-01,38.8922222,-89.4130556,Greenville,IL,light,2,Instantaneous flashes of white bars of light. They light up the entire night sky as if "God was using a flash camera". +1996-03-01,35.2225,-97.4391667,Norman,OK,light,1800,it was a very bright light. the 1st big light stayed in one spot for about 20 min. the other light would come out of the big light. the +1996-03-01,43.0797222,-78.0641667,Byron,NY,formation,10800,I had a 3 hour lost time experience, on my front porch one night. +1997-03-01,41.1397222,-112.0497222,Clinton,UT,circle,14400,1997 Ufo in Ogden Utah area, I was standing under it it was huge! +1997-03-01,39.8083333,-104.9333333,Commerce City,CO,sphere,7200,Large number of high altitude white spheres in sky over Commerce City, CO, in 1997 +1997-03-01,33.9533333,-117.3952778,Riverside,CA,triangle,15,The reports of various UFO events over the Arizona sky on March 13 ofthis year has prompted me to reveal the experience my wife and I h +1997-03-01,38.2541667,-85.7594444,Louisville,KY,fireball,2,A hovering ball of orange light that came back twice +1998-03-01,43.3138889,-89.5263889,Lodi,WI,fireball,30,green fire ball with spark trail moving from east to west over the Badger ordence army ammo plant it looked like fireworks it was as bi +1998-03-01,31.7319444,-84.1708333,Leesburg,GA,unknown,2700,U.F.O. spotted ouside Leesburg, Georgia hoving over trees before rapidly diving dove and up again. +1998-03-01,42.3072222,-74.2525,Windham,NY,formation,300,saw the objects in the sky my wife and I they were still than 2 of the objects movwd south the other four moved east i called the alban +1998-03-01,38.2855556,-85.8241667,New Albany,IN,light,60,Bright Welders Arc Light In The Night Skys Over New Albany Indiana +1999-03-01,41.85,-87.65,Chicago (Irving Park Road),IL,triangle,120,Bringing my family home from the Forest Preserve, driving toward downtown throgh Irving Park Road my son Jose saw a triangular shaped +1999-03-01,36.015,-84.5583333,Piney (Lawrence County (Rural) ),TN,light,600,hovering light, no sound, exited at very high rate of speed +1999-03-01,31.0011111,-89.4522222,Lumberton,MS,changing,14400,The night before the comet, at first that's what I thought it was. It originally appeared as a "ball of fire" in the sky. Then two more +1999-03-01,46.0038889,-112.5338889,Butte,MT,disk,3,Small disk in a blizzard totally unaffected +1999-03-01,32.8933333,-97.4441667,Eagle Mountain,TX,light,240,My husband was standing in our living room when he noticed two objects in the east, he called me to come see. There were two strange cr +2000-03-01,37.5830556,-81.5372222,Pineville (Pinnacle Strip Mine),WV,triangle,900,Saw a triangle shaped craft, very large, made very little noise, low altitude. +2000-03-01,40.8686111,-73.0019444,Coram,NY,light,20,the orb shot up very very fast then twinkled at me. it left me thinking about past exploits +2000-03-01,32.2216667,-110.9258333,Tucson,AZ,other,60,Easter weekend,I was visiting my family,we were having a barbecue in the back yard,Around fifty feet away is a large treeƺ birds come +2000-03-01,33.7091667,-117.9527778,Fountain Valley,CA,light,180,Bright star all of a sudden disappeared like it had never been there at all. +2000-03-01,40.6255556,-103.2072222,Sterling,CO,rectangle,20,Small, silent, glowing probe above house +2000-03-01,27.0994444,-82.4544444,Venice,FL,fireball,4,The witness was traveling on I075 north from Venice when he saw a fireball that was 1/2 the size of an aspirin at arms length and it wa +2000-03-01,29.7630556,-95.3630556,Houston,TX,disk,300,It was doing something on the woods, mostly because of the cows. +2000-03-01,41.2963889,-92.6441667,Oskaloosa,IA,chevron,180,A dark, vertical boomerang that moved slowly +2001-03-01,42.5777778,-121.865,Chiloquin,OR,triangle,120,Three UFO's seen flying over the Klamath sky. +2001-03-01,36.175,-115.1363889,Las Vegas,NV,sphere,3600,well i was closeing the curtins when i noticed some brightlights cicrleing each other in the beam of light that is projected from the t +2001-03-01,44.7563889,-122.4155556,Gates,OR,triangle,120,Triangles seen flying in thin layer of clouds. +2001-03-01,40.7141667,-74.0063889,New York City,NY,oval,300,small black oval, moving extremely slowly in broad daylight, about 6 or 7 stories off ground +2001-03-01,28.0891667,-80.5658333,Indialantic,FL,sphere,120,Glowing blue sphere, escorted by military fighter aircraft. Indialantic, Florida +2001-03-01,47.7625,-122.2041667,Bothell,WA,circle,20,The light came out of the eastern sky. The light was dimmer than aircraft of any sort. It had one brighter light and two other lights +2001-03-01,36.0397222,-114.9811111,Henderson (Las Vegas),NV,light,300,Four bright orange/yellow lights in the Las Vegas Valley +2001-03-01,41.2147222,-79.3855556,Clarion,PA,disk,60,Silent low-flying upright symmetrical disc shaped craft rotating like a wheel moved slowly over town of Clarion and continued ENE +2001-03-01,34.6991667,-86.7483333,Madison,AL,circle,20,the moon apeard far to north of its usely path and moved so fast that it could not be moon as I know it. +2001-03-01,47.6063889,-122.3308333,Seattle,WA,circle,40,Bright circular light fell straight down, had rectangular unlit form behind it. +2002-03-01,32.9344444,-97.2513889,Keller,TX,unknown,300,They looked like 4 arched windows of white light that faded into the night. +2002-03-01,36.0725,-79.7922222,Greensboro,NC,light,15,the object turned bright green and shot straight up into the sky faster than anything i have ever seen. +2002-03-01,26.1416667,-81.795,Naples,FL,triangle,180,Black Triangle, clearly seen slowly moving over Alligator Alley March 1st 6:15AM +2002-03-01,33.5177778,-84.6697222,Palmetto,GA,fireball,300,Odd fireball-like object in the sky over Palmetto, Georgia. 30268 +2002-03-01,30.4211111,-87.2169444,Pensacola,FL,disk,60,silver shinny object in sky +2002-03-01,29.9544444,-90.075,New Orleans,LA,sphere,60,I saw a small white sphere cross the sky in a straight line +2002-03-01,47.8108333,-122.3761111,Edmonds,WA,light,1800,Bright plasma looking light over the Olympic Mountains +2003-03-01,41.7127778,-71.8813889,Moosup,CT,sphere,5,Square / triangle in shape with 4 white lights at each point and light blue lights going around it. +2003-03-01,44.0522222,-123.0855556,Eugene,OR,cigar,10,sunny day, huge jet-shaped craft with tiny red/black wings very low to the ground rose noiselessly into a cloud. didn't emerge. +2003-03-01,42.5358333,-113.7919444,Burley,ID,triangle,2700,We saw a very large, slow moving craft. +2003-03-01,40.6686111,-73.5275,Bellmore,NY,circle,5,Yellowish light flying in a straight line across the sky at high speed, there was no sound. Another one followed about 2 minuets later. +2004-03-01,33.8352778,-117.9136111,Anaheim,CA,changing,420,A coworker and I noticed a black roundish object that appeared to be hovering above the Disneyland hotel. +2004-03-01,42.6333333,-71.3166667,Lowell,MA,other,120,Parachute-like object drifting past window +2004-03-01,32.2216667,-110.9258333,Tucson,AZ,sphere,300,Silver balls in the sky AZ +2004-03-01,40.0891667,-75.3963889,King Of Prussia (5 Miles From),PA,other,6,broad black (w) was in the day and made no sound, none +2004-03-01,33.3427778,-118.3269444,Avalon,CA,oval,300,Round, tall craft over Catalina Island, two teardrop black crafts inter-weaving with another at low altitude +2004-03-01,27.0438889,-82.2361111,North Port,FL,changing,1200,Bright red lights with an unusal pattern in the evening sky. +2004-03-01,43.5358333,-72.7219444,Plymouth,VT,unknown,180,life changing event for me will not view skies ever the same. +2004-03-01,41.2841667,-81.0966667,Garrettsville,OH,light,900,Light next to house and out above treeline. +2005-03-01,29.6483333,-81.6377778,Palatka,FL,triangle,20,Large, Slow Moving Triangular Shaped Object that seems to suddenly disappear... +2005-03-01,31.7586111,-106.4863889,El Paso,TX,sphere,3,silver shpere climbed slowly then shrank away and disappeared. +2005-03-01,26.1,-80.4,Weston,FL,teardrop,300,2 UFO's seen in South Florida +2005-03-01,35.5327778,-90.4205556,Marked Tree,AR,unknown,300,2 Ufo's spotted in two week period, identical +2005-03-01,47.2033333,-122.2391667,Sumner,WA,light,600,5 lights hover in a circle around one odd shaped lighted object in Sumner, Washington +2005-03-01,35.2219444,-101.8308333,Amarillo,TX,changing,2400,Strange Shape-Shifting UFO +2005-03-01,43.12,-85.56,Rockford,MI,circle,600,I saw two saucer shaped objects with lights going around the middle of them fly over head and land in the woods behind my house. +2005-03-01,36.175,-115.1363889,Las Vegas,NV,triangle,1.5,Trianglular Shaped ,appeared to be metallic. No lights on craft..It was illuminated by the light from below. It seemed to have "Stream +2005-03-01,38.7508333,-77.4755556,Manassas,VA,sphere,2,I observed a bright blue soccer ball size object travel at high speed just above the tree tops. +2005-03-01,40.9252778,-74.2769444,Wayne,NJ,teardrop,10,I was sitting in my bed when a bright array of lights caught my eyes. I looked out the window and noticed a flying object no more than +2006-03-01,32.4205556,-104.2283333,Carlsbad,NM,rectangle,7,Silent football field sized and shaped metalic UFO is sited on Pecos River in Carlsbad, New Mexico. +2006-03-01,33.5386111,-112.1852778,Glendale,AZ,unknown,120,two whites that split into 5 form a line up and down grew bright and sparkling and disappear +2006-03-01,40.7141667,-74.0063889,New York City (Brooklyn),NY,formation,900,Cluster of UFO's with a big silver craft in the middle +2006-03-01,27.8002778,-97.3961111,Corpus Christi,TX,changing,600,Mother ships in south Texas. +2006-03-01,39.5286111,-74.6483333,Egg Harbor City,NJ,light,600,Five very bright orange lights just over tree line in New Jresey pine lands. +2006-03-01,34.0633333,-117.65,Ontario,CA,oval,1800,huge bright eliptical shaped object with multi colored lights flashing, like millions of sparkling diamonds +2006-03-01,33.7738889,-117.9405556,Garden Grove,CA,oval,180,Flying oval shap object w/ bright white lights underneath +2006-03-01,33.1052778,-88.5608333,Macon,MS,sphere,600,Orb shaped light seen , lights moved and changed from light to dark as they seemed to move around in a circle. +2007-03-01,35.2269444,-80.8433333,Charlotte,NC,light,180,bizarre orange lights over south charlotte +2007-03-01,40.7608333,-111.8902778,Salt Lake City,UT,other,60,Black Manta Ray shaped U.F.O. seen flying over the 1300 light rail staion in Salt Lake City, Utah during the winter of 2007. +2007-03-01,38.7838889,-90.4811111,St. Charles,MO,triangle,180,Saint Charles sighting on highway 94 +2007-03-01,38.3138889,-122.4808333,Boyes Hot Springs,CA,formation,10,rectanglar outline made up of dark dots. +2007-03-01,37.1238889,-92.1011111,Cabool,MO,circle,300,Orange/whitish lights in eastern-norther Missouri skies. +2007-03-01,38.0608333,-97.9294444,Hutchinson,KS,circle,120,Yellow fifteen foot sphere moved from Hutchinson to Wichita +2007-03-01,34.1063889,-117.3694444,Rialto,CA,light,10,BRIGHT ORANGE LIGHT OVER SAN. BERNARDINO MOUNTAINS +2007-03-01,37.5072222,-122.2594444,San Carlos,CA,oval,10,A bright light moving in a straight line too fast for a plane and too slow for a meteor +2007-03-01,35.0844444,-106.6505556,Albuquerque,NM,sphere,60,Cobalt blue sphere being chased at hight speed SE to NW from ABQ, New Mexico juxtaposition @ aprox. 9:30-9:35pm. +2007-03-01,30.3880556,-95.6961111,Montgomery,TX,light,7,BIG BRIGHT WHITE LIGHT DESENDING IN ZIG ZAG MOTION FROM THE SKY ALL THE WAY TO THE GROUND +2007-03-01,34.0983333,-118.3258333,Hollywood,CA,fireball,2,Brilliant ball of light streaks across the sky and disappears over the horizon. ((NUFORC Note: Meteor?? Other reports. PD)) +2008-03-01,32.2216667,-110.9258333,Tucson,AZ,triangle,3600,North Tucson sighting near Mt. Lemmon. Moved South, 3 lights moved in formation and fourth light below it moved across sky until it di +2008-03-01,39.7286111,-121.8363889,Chico,CA,light,120,multiple lights/orbs traveling east to west in clear daylight +2008-03-01,33.9816667,-118.2241667,Huntington Park,CA,changing,10800,many ufos seen above huntington park ca on clear sunny day in march 2008 +2008-03-01,33.4483333,-112.0733333,Phoenix,AZ,other,1209600,Star-like craft over Phoenix Arizona inthe daytime. +2008-03-01,42.725,-70.9916667,Georgetown,MA,unknown,300,At about 17:30, I went outside of restraunt,to have a cigerette,and looking up at the sky,I noticed a silver object heading North.It wa +2008-03-01,39.6005556,-82.9461111,Circleville,OH,unknown,900,5-6 strange "Phoenix" lights in a row west of Chillicothe. +2008-03-01,34.02,-97.9572222,Ryan,OK,formation,3600,Had just finished campfire dinner a took dog for a walk noticing all the stars as there was not a cloud in the sky. Upon returning to +2008-03-01,37.8197222,-120.6711111,Knights Ferry,CA,chevron,60,((HOAX??)) a V shaped object with 5 lights in sky near HWY 120. ((NUFORC Note: Student report. PD)) +2008-03-01,39.7683333,-86.1580556,Indianapolis,IN,disk,900,MY SON SAID, "MOMMY, THERE ARE FOUR LIGHTS IN THE SKY THAT LOOK LIKE A UFO!!!!! +2008-03-01,38.5766667,-92.1733333,Jefferson City,MO,triangle,20,I got home and was walking up the driveway to go in the front door of the house and I looked up and saw a pretty big triangle flying w +2008-03-01,35.35,-80.2002778,Albemarle,NC,chevron,5,Faint chevron-shaped object over Albemarle, NC. +2009-03-01,31.7586111,-106.4863889,El Paso,TX,changing,60,Cluster of lights over western Franklin Mountain Range in El Paso Tx, within seconds diamond shaped blue light formation appearing. +2009-03-01,39.0997222,-94.5783333,Kansas City,MO,flash,7,flash of light over kansas city +2009-03-01,33.9166667,-117.8991667,Brea,CA,oval,3600,The object hovered for about an hour and a half over the City of Anaheim +2009-03-01,33.9166667,-117.8991667,Brea,CA,oval,37800,The Anaheim report of 2-01-09 was 3-01-09, I submit this correction. +2009-03-01,43.3005556,-73.5863889,Hudson Falls,NY,sphere,15,An orange light that zig-zags. +2009-03-01,38.8338889,-104.8208333,Colorado Springs,CO,triangle,900,UFO hovers off of mile marker 129 (Interstate 25) in Colorado Springs?? +2009-03-01,45.6388889,-122.6602778,Vancouver,WA,fireball,1,White fireball in the western sky over Vancouver. +2010-03-01,32.5005556,-94.7402778,Longview,TX,other,300,Hello i've recently stumbled upon this website where you can report UFO's only thing about my case is I had a personal visitation there +2010-03-01,32.7152778,-117.1563889,San Diego,CA,other,9000,Chemtrails over San Diego, Ca. the morning of March 01, 2010. +2010-03-01,28.8997222,-82.3747222,Hernando,FL,light,15,White Light (Solid) slowly moving about 5-10 mph, just above tree line 200-300' dia. no sound +2010-03-01,38.47,-90.3044444,Oakville,MO,other,180,Low frequency hum, then low flying helicopters, very often. +2010-03-01,47.8525,-92.6894444,Cook,MN,light,600,Abnormal lights in the northern sky. +2010-03-01,36.3302778,-119.2911111,Visalia,CA,unknown,300,Very wide, low flying and silent!! Two jets followed within minutes. All went toward Hanford. +2010-03-01,37.0116667,-122.1908333,Davenport,CA,fireball,60,star turned into a bright flare gradually changed and suddenly lost the light. ((NUFORC Note: Flare from Iridium satellite?? PD)) +2010-03-01,38.0280556,-121.8836111,Pittsburg,CA,triangle,180,Huge triangle over Pittsburg, CA and Large Rectangles over Concord / Pittsburg +2011-03-01,40.3355556,-75.9272222,Reading,PA,sphere,2,W +2011-03-01,40.3355556,-75.9272222,Reading,PA,sphere,2,What did I see? +2011-03-01,42.5358333,-113.7919444,Burley,ID,fireball,1800,Bright fireball in sky 15 miles away hovering in sky for 30 minutes until sun rises. +2011-03-01,47.4736111,-94.88,Bemidji,MN,triangle,240,Did anyone see the Triangle with lights in the sky in Bemidji, March 1, 2011 at 7:55? +2011-03-01,47.0075,-122.9080556,Tumwater,WA,oval,30,Jet black oval object seen trailing plane and then again by itself. +2011-03-01,34.1083333,-117.2888889,San Bernardino,CA,disk,2,It was white, didn't make any noise. I didn't see how it got there. After a few seconds, it jetted up at an angle really quickly. +2011-03-01,40.7141667,-74.0063889,New York City (Manhattan),NY,other,300,formation of lights seen overhead +2011-03-01,40.0791667,-75.3019444,Conshohocken,PA,other,1200,orange/red contrail formations +2011-03-01,41.5580556,-73.0519444,Waterbury,CT,unknown,180,3 triangle lights +2011-03-01,41.6022222,-72.9872222,Wolcott,CT,rectangle,60,Large rectangular low-flying object 4 nonblinking green lights squarely centered on underside. +2011-03-01,30.5080556,-97.6786111,Round Rock,TX,light,30,Strange object moving fast in the night sky. +2011-03-01,40.0930556,-83.0180556,Worthington,OH,circle,3,White light appeared, moved, and disappeared. +2011-03-01,32.5175,-96.8041667,Red Oak,TX,other,30,An amber pulsating bell shaped object +2012-03-01,48.1333333,-103.6333333,Williston,ND,other,900,Strange craft may have caused shorts on rail road tracks +2012-03-01,39.3372222,-85.4836111,Greensburg,IN,disk,30,This is the second time I have seen this thing, I need answers, please +2012-03-01,28.0833333,-80.6083333,Melbourne,FL,fireball,30,Strange fireball +2012-03-01,40.4555556,-109.5280556,Vernal,UT,light,300,A light in the sky was headed southeast, slowly going threw the shy staggering from left to right.slowly falling about an inch staggeri +2012-03-01,40.5805556,-93.7436111,Pleasanton,IA,other,600,Three of us in our home heard a deep humming sound; two of us went outside to investigate and saw red/orange strobe lights. +2012-03-01,33.0183333,-80.1758333,Summerville,SC,circle,10,The star that moves in South Carolina +2012-03-01,34.8697222,-111.7602778,Sedona,AZ,cigar,600,1-2 mile long cigar shaped craft over Sedona, Arizona. +2012-03-01,40.4405556,-79.9961111,Pittsburgh,PA,triangle,600,Triangled shape craft with bright red blue and white lights +2012-03-01,27.1972222,-80.2530556,Stuart,FL,fireball,60,First, I am not a follower of UFO sightings. I just plugged in "fireballs in sky over Stuart" in my search box to see if there was anyt +2012-03-01,39.9111111,-85.1616667,Hagerstown,IN,oval,180,We saw something over 300ft long in the sky , that didn't have a sound to it and moving at high speed. +2013-03-01,45.5236111,-122.675,Portland,OR,circle,180,Yellowish/orange spheres portland Oregon. +2013-03-01,37.5536111,-77.4605556,Richmond,VA,circle,300,White lights on unique object. +2013-03-01,30.4683333,-96.2022222,Millican,TX,light,2880,Two red and white lights moveing east one stoped and made W movements after I waved at them. +2013-03-01,28.6275,-81.3633333,Maitland,FL,triangle,8,Aqua blue lights in Maitland, Florida. +2013-03-01,29.0336111,-95.4341667,Lake Jackson,TX,fireball,60,Bright yellow-orange light decending onto Lake Jackson,TX. +2013-03-01,33.9136111,-98.4930556,Wichita Falls,TX,flash,1.5,Yellow orange small orb. +2013-03-01,29.7630556,-95.3630556,Houston,TX,other,240,orange globe, closup +2013-03-01,61.5997222,-149.1127778,Palmer,AK,circle,60,Vertical string of 5 orange lights in the sky. +2013-03-01,32.7919444,-115.5622222,El Centro,CA,triangle,2100,3 orange bright triangle or arrowhead shape lights reappeared. +2013-03-01,36.8527778,-75.9783333,Virginia Beach,VA,fireball,55,An orange-reddish light was seen over Virginia Beach. +2013-03-01,40.0991667,-83.1141667,Dublin,OH,sphere,180,Three fireball looking obects in a triangle pattern then crossed each other followed by a single fireball. +2013-03-01,38.3497222,-81.6327778,Charleston,WV,triangle,120,Solid triangular lights or light on the underbody +2013-03-01,33.5091667,-111.8983333,Scottsdale,AZ,unknown,3600,I have seen this odd light formation on several occasions (times seen; about, 6 times over 15 years)the first time was back in 1990 tr +2013-03-01,33.4483333,-112.0733333,Phoenix,AZ,circle,120,Purple pinkish bright object stationary above Phoenix AZ area gradually diminishing. +2014-03-01,61.2180556,-149.9002778,Anchorage,AK,light,180,9 red dots hovering low in the sky moving very slowly to the west. +2014-03-01,27.1675,-80.2663889,Palm City,FL,oval,60,Video of bright orange or colored unidentified object in sky. +2014-03-01,27.7727778,-82.4077778,Apollo Beach,FL,oval,600,As I was walking my dog at approximately 12:00 noon, on a beautiful clear day, I saw what I first thought were a group of birds high in +2014-03-01,35.7111111,-78.6144444,Garner,NC,sphere,60,Two flashing orbs. +2014-03-01,40.0113889,-78.3736111,Everett,PA,light,180,8+ red-orange lights in south-central Pennsylvania. +2014-03-01,27.9472222,-82.4586111,Tampa,FL,triangle,300,String of blinking red light aircraft. +2014-03-01,38.5816667,-121.4933333,Sacramento,CA,circle,120,As I was driving west bound on Fruitridge rd approaching Freeport blvd I noticed 4 orange orbs in the sky. 3 made a triangle while the +2014-03-01,46.6633333,-123.8033333,South Bend,WA,light,120,Unusual lights seen over a swamp south of South Bend, WA +2014-03-01,37.4136111,-79.1425,Lynchburg,VA,light,300,6-10 Orange lights move slowly and silently across the sky, and then suddenly disappear. +2014-03-01,26.0625,-80.2333333,Davie,FL,disk,240,Amber Disk Sighted near Ft. Lauderdale International Airport. +2014-03-01,43.6613889,-70.2558333,Portland,ME,other,3000,4 revolving lights in the sky. ((NUFORC Note: Possible advertising lights, we wonder. PD)) +2014-03-01,40.7655556,-73.0155556,Patchogue,NY,light,600,While driving down the road my husband first noticed the lights in the sky. It did not look like anything we have ever seen. +2014-03-01,25.7738889,-80.1938889,Miami,FL,circle,120,My girlfriend and I saw a strange ORANGE orb about 800-1000 feet above us flying at a normal speed. It made no sound and flew into the +2014-03-01,38.9519444,-76.5783333,Riva,MD,circle,600,I witnessed two fast-moving red lights which made no sound. +2014-03-01,26.2708333,-80.2708333,Coral Springs,FL,cone,300,Saw five cone shaped objects glowing orange heading Southwest in straight slightly offset formation. I stopped my car turned off the en +2014-03-01,34.9247222,-81.0252778,Rock Hill,SC,light,20,Arcing Light Ball. +2014-03-01,38.8902778,-77.0844444,Arlington,VA,formation,360,There were four lights in the sky. Imagine a pizza cut into four slices the lights met in the center and then spread out making an X th +1960-03-12,29.7630556,-95.3630556,Houston,TX,triangle,10800,saw in sky made no noise lots of flashing lights observed with telescope +1968-03-12,37.4694444,-105.8694444,Alamosa,CO,sphere,90,I exited my mobile home east of Alamosa at 11:00AM I was carrying a camera because I was teaching Photo Journalism at the local colleg +1970-03-12,40.1483333,-79.8880556,Monessen,PA,cylinder,600,Probe Flourescent Bulb Sized Object. +1973-03-12,47.7627778,-120.6561111,Plain,WA,other,10800,Flying cubes land, emit small shiny silvery spheres, and large 3-toed 'birdlike' footprints appear in snow. +1989-03-12,29.7630556,-95.3630556,Houston,TX,sphere,15,Bright green - blue sphere silently moving parallel to freeway. +1995-03-12,33.2558333,-116.3741667,Borrego Springs,CA,triangle,900,Gigantic Triangle directly overhead, moving silently... +1995-03-12,39.6527778,-78.7627778,Cumberland,MD,unknown,2,extremely loud +1995-03-12,39.6527778,-78.7627778,Cumberland,MD,unknown,2,march 12, 1995 at 23:54 heard a super loud noise like a hundred train engines, but this was coming from the sky. then i seen a couple +1995-03-12,39.6527778,-78.7627778,Cumberland,MD,unknown,2,March 12, 1995 something flew over Cumberland, MD +1997-03-12,29.9544444,-90.075,New Orleans,LA,other,10,Are you interested in unexplained noises? +1997-03-12,36.8466667,-76.2855556,Norfolk,VA,chevron,240,800 foot wide Boomerang shaped UFO floats over head at treetop level, with humming sound-next to Norfolk NAB, Virginia +1997-03-12,39.4666667,-87.4138889,Terre Haute,IN,triangle,120,Black Triangular Shaped Craft Sighting +1997-03-12,36.175,-115.1363889,Las Vegas,NV,chevron,120,Las Vegas, Nevada -MARCH 12񫺍 1.5 MILE WIDE CHEVRON FORMATION OF LIGHTS SILENTLY GLIDES W. TO E. AT 8:40 pm. +1997-03-12,33.5386111,-112.1852778,Glendale (Ssw Of),AZ,light,1814400,Stationary object SW of the Phoenix AZ area seen over several nights. Quit appearing after the Mar 13 incident in Phoenix. +1997-03-12,37.9319444,-121.6947222,Brentwood,CA,formation,30,I saw three lights forming a V shape in the night sky about 300 feet in the air. There was no noise and they were moving slowly in an e +1997-03-12,35.6869444,-105.9372222,Santa Fe,NM,other,120,THE TIME IT TOOK PLACE WAS THE DAY BEFORE THE ARIZONA SIGHTS OF MULTIPLE SHIPS. +1998-03-12,39.6552778,-106.8280556,Eagle County,CO,fireball,1,I have seen 5 greenish/blue fireballs in the course of a 2 week period, above and around the Eagle County area of Colorado. +1998-03-12,46.2113889,-119.1361111,Kennewick,WA,diamond,180,Six objects lighting one by one,then leaving from north to south as one. +1998-03-12,29.4238889,-98.4933333,San Antonio,TX,light,300,Scanned by an unusually large scanner +1998-03-12,36.7080556,-105.4055556,Red River,NM,cylinder,10800,There were 2 extremely bright objects stationary in the sky, side by side for over 2 hours south of Red River +1998-03-12,43.0361111,-70.8333333,Greenland,NH,sphere,5,I saw a glowing green sphere cross the sky horizontally east to west +1998-03-12,41.865,-80.79,Ashtabula,OH,cigar,60,First saw lights in sky (thru my high window) Object sitting still with lights 5 or 6? Down low--no sound I turned out light--it veered +1999-03-12,41.2736111,-82.8416667,Bellevue (East Of),OH,light,30,I was driving west on rt. 20&18 when I seen a very bright light to the NW of my location,(about 5 miles E. of Bell. when suddenly it sh +1999-03-12,39.9611111,-82.9988889,Columbus,OH,fireball,1800,3 objects within 30 minutes +1999-03-12,42.0694444,-72.6152778,Agawam,MA,triangle,300,I was outdoors and it was dark for about a hour when i noticed strang lights above the connecticut river. I hastely ran and got witness +1999-03-12,42.9633333,-85.6680556,Grand Rapids,MI,formation,30,I saw a double V formation of faint green triangular craft. +1999-03-12,41.1419444,-87.8611111,Bradley,IL,triangle,90,i saw what appeared to be a large triangular shaped object floating in the sky. +2000-03-12,26.2708333,-80.2708333,Coral Springs,FL,other,900,I saw something in the sky, it was a red light, not very big but it was fairly bright. It couldn't have been an airplane because it was +2000-03-12,29.1869444,-82.1402778,Ocala (Silver Springs Shores),FL,triangle,2100,Triangular craft with pulsating multi-colored lights; moving in various directions in no apparent course. +2000-03-12,34.2694444,-118.7805556,Simi Valley,CA,fireball,1200,On the date of 3-12-00, A friend and I was outside in front of DENY'S in Simi Valley. When at 1:19 am in the moring when we both seened +2000-03-12,34.2669444,-118.3013889,Sunland,CA,light,360,My friend and I were driving home when we saw an orange light in the sky. When we stopped the truck to look at it we saw that it was mo +2000-03-12,34.1591667,-118.5002778,Encino,CA,sphere,300,the object first appeared as a star. A blue line somewhere between a meteor tail and a long rocket boost appeared from it. Suddenly t +2000-03-12,47.6063889,-122.3308333,Seattle,WA,cigar,6,Peter, I was driving to Rentin to drop off my car at the Toyota Dealer. I was headed south on on the freeway between I-90 and Rentin. +2000-03-12,46.5436111,-87.3952778,Marquette,MI,oval,20,High altitude, high speed object traveled across the sky before dissapearing behind a cloud. +2000-03-12,42.1186111,-79.1986111,Falconer,NY,triangle,15,I viewed 5 triangular objects in a "V" formation heading from the South to the North. The last 2 triangular objects in the formation c +2000-03-12,33.1191667,-117.0855556,Escondido,CA,light,300,saw 3 flickering lights slowly fade out and disapear at seperate times, no sound and clear night. +2001-03-12,30.4505556,-91.1544444,Baton Rouge,LA,triangle,600,the craft was tringular in shape and there was lights allover the craft, A strobe light would dicribe it better. the craft was moving i +2001-03-12,37.7022222,-121.9347222,Dublin,CA,cigar,180,White, cigar-shaped, silent object flying at low altitude. +2001-03-12,32.7025,-103.1355556,Hobbs,NM,flash,2,AT APPROX 19:50, I WAS OUT SIDE IN MY FRONT YARD, I FELT AND HEARD A SONIC-BOOM. I IMMEDIATELY LOOKED UP AND SAW THREE TO FOUR JETS FL +2001-03-12,29.5291667,-95.2008333,Friendswood,TX,unknown,300,SLOW MOVING AIRCRAFT / LARGE ROUND WHITE LIGHTS PULSING IN UNISON ACROSS BACK OF CRAFT +2001-03-12,36.175,-115.1363889,Las Vegas,NV,light,1200,4 bright orange lights over the mountains north of Las Vegas - fading in and out and slowly moving +2001-03-12,25.7738889,-80.1938889,Miami,FL,light,600,A light, similar looking to star, appeared and made sharp curves, only to disappear and reappear all the way on the other side. +2001-03-12,45.4872222,-122.8025,Beaverton,OR,light,600,3 Red nocturnal "visitors" seen in Washington County Skies. +2001-03-12,35.1869444,-84.4991667,Reliance,TN,light,3600,2 bright lights-not planets or stars +2001-03-12,48.0841667,-121.9675,Granite Falls,WA,light,40,other witness says it was tuesday night but I think it was monday, we were standing in a barn looking to the south east a green light l +2001-03-12,48.0841667,-121.9675,Granite Falls,WA,light,60,lights, three pings, then a whoosh +2001-03-12,38.005,-121.8047222,Antioch,CA,other,3600,Extremely bright green object, with red lights and a strob, randomingly changing its position in the sky. +2001-03-12,38.6702778,-89.9844444,Collinsville,IL,fireball,2,Was on my backporch smoking a cigarette when all of sudden a dime size at arms lenght fireball appeared in North East skies.A very bril +2002-03-12,37.0058333,-121.5672222,Gilroy,CA,other,120,TWO IMAGES TAKEN 4 MINUTES APART CONTAINING A SEMI-TRANSPARENT FLAT OBJECT WITH 5 BLUE LIGHTS. +2002-03-12,33.4483333,-112.0733333,Phoenix,AZ,light,5400,Lights in the southern Phoenix Area +2003-03-12,36.7477778,-119.7713889,Fresno,CA,other,180,One Bright Orange/ Red Light - Diminishing Straight Up Into Outer Space. +2003-03-12,38.7741667,-76.0766667,Easton,MD,unknown,1200,Caught a possible Alien Abduction and/or Cattle Mutiliation in progress, +2003-03-12,34.9941667,-81.2422222,York,SC,sphere,7200,bright light hanging in sky near nuclear plant +2003-03-12,36.1538889,-95.9925,Tulsa,OK,cylinder,10,Cylinder over Tulsa 2 years ago. +2003-03-12,43.1691667,-70.9244444,Madbury,NH,light,300,I was driving home one night, thursday night and I saw a orange orb at about 9 pm.Well I took it as a planet, or maybe a star. It l +2004-03-12,40.4405556,-79.9961111,Pittsburgh,PA,triangle,10,THE OBJECT WAS MAGENTA AND AERODYNAMIC +2004-03-12,33.7513889,-84.7477778,Douglasville,GA,light,1680,I WAS WALKING MY DOG AND I NOTICED A FLASHING LIGHT DUE WEST ABOVE THE HORIZON. +2004-03-12,29.2105556,-81.0230556,Daytona Beach,FL,egg,120,Orange sphere appeared, turned, blinked, then faded away into the distance +2004-03-12,42.3952778,-94.6336111,Rockwell City,IA,light,14400,Cluster of lights in the sky +2004-03-12,33.4352778,-112.3575,Goodyear,AZ,light,180,I looked up and saw an object that looked like a star-almost as bright as venus...this was too big and bright to be a satellite. +2004-03-12,38.9516667,-92.3338889,Columbia,MO,sphere,90,Bright yellow sphere of light, changing to white and swiftly moving away. +2004-03-12,32.7152778,-117.1563889,San Diego,CA,cigar,5,witnessed small oblong object with red and blue lights hovering above my vehicle. +2004-03-12,44.2727778,-121.1727778,Redmond,OR,disk,120,small disc shape object with dark orange glow underneath +2004-03-12,34.0522222,-118.2427778,Los Angeles,CA,triangle,600,Strange triangular craft with red, green, blue, and white lights over Los Angeles. (NUFORC Note: Star or planet?? PD)) +2004-03-13,37.2705556,-76.7077778,Williamsburg,VA,changing,9000,My adrenaline was extremely elevated and my mind was seeing with unbelief. ((NUFORC Note: Probably Sirius. PD)) +2005-03-12,39.0669444,-76.6655556,Gambrills,MD,unknown,9,brilliant white light flashing on and off at perfect intervals. +2005-03-12,43.0672222,-78.3916667,Basom,NY,fireball,10,fireball +2005-03-12,42.1947222,-122.7083333,Ashland,OR,sphere,180,Bright star-like object appears during the day. +2005-03-12,42.8144444,-89.635,New Glarus,WI,disk,180,disk shaped, lights glowing from it, the color was unusual, hard to see, moved really fast in weird ways, silent, made grass die +2005-03-12,46.1013889,-123.2055556,Clatskanie,OR,unknown,6,Four of us just witnessed at 7:45 pm pst a single bright jagged green streak low to the S- SW sky then disappear behind trees and then +2005-03-12,43.9827778,-124.0986111,Florence,OR,unknown,7,ball of fire falling at 45 degree angle towards ocean +2005-03-12,45.7055556,-121.5202778,Hood River,OR,sphere,4,I sighted VERY large blue-green meteor of extended duration in the sky near Portland OR ((NUFORC Note: Probable meteor. PD)) +2005-03-12,48.1366667,-123.7327778,Joyce,WA,light,6,Large meteor shoots low over horizon S to N then hits earth with several explosions (no sound heard) lighting the sky at 7:45 pm 3/12/ +2005-03-12,40.5494444,-122.1741667,Millville,CA,fireball,2,Bright green fireball in Shasta/Trinity County, California ((NUFORC Note: Probable dramatic meteor at 19:45 hrs. on this date. PD)) +2005-03-12,45.5236111,-122.675,Portland,OR,fireball,120,On the News Tonight they Reported on channel 12 FOX Portland,Oregon News ad some type of sighting of a "light that flashed" was very br +2005-03-12,45.4313889,-122.7702778,Tigard,OR,unknown,2,My wife and I saw a white streak come down at a steep angle and at a very high rate of speed. The intial color was white and turned ver +2005-03-12,37.0475,-88.4769444,Ledbetter,KY,unknown,300,bright white light and craft hovering over the road +2005-03-12,36.3133333,-82.3536111,Johnson City,TN,other,10,Stingray shaped object spotted +2005-03-12,38.9780556,-122.8383333,Kelseyville,CA,disk,180,3 Red Glowing UFOs +2006-03-12,37.775,-122.4183333,San Francisco (50 Miles South Of),CA,sphere,300,101 freeway South of S.F. mysterious lights, orbs of intelligent energy being captured .. what was that? +2006-03-12,33.4483333,-112.0733333,Phoenix,AZ,light,180,Glowing U F O +2006-03-12,37.7058333,-122.4608333,Daly City,CA,fireball,10,Fireball appeared for 5 seconds +2006-03-12,33.7458333,-117.8252778,Tustin,CA,other,240,A Boomerang shape object. +2006-03-12,36.4197222,-82.4766667,Gray,TN,light,60,Then the lower light began to fade out, and after it did the 2nd did as well. +2006-03-12,44.3105556,-69.78,Augusta,ME,sphere,900,It was in med. size and red and white lights. It is not an a/c. It followed our car on the road. ((NUFORC Note: Student report. PD)) +2007-03-12,35.3186111,-82.4611111,Hendersonville,NC,light,30,Local TV station reports green light in skies over NC. +2007-03-12,35.1186111,-120.5897222,Arroyo Grande,CA,triangle,3600,triangular shape with colorful lights hovering above oceano dunes, oceano, california +2007-03-12,35.5280556,-108.7419444,Gallup (30 Miles East Of; On I-40),NM,oval,1800,Bright circular object turns into 3 discs over western New Mexican skys. +2007-03-12,37.6688889,-122.0797222,Hayward,CA,sphere,60,6 Revolving Spheres over Hayward Calif. +2007-03-12,32.77,-108.2797222,Silver City,NM,changing,1200,UFO With Green, Red, And Blue Lights That Split Into 2, Formed Back Into One, Then Shut Off And Fell From The Sky Followed By 2 Circles +2007-03-12,42.2383333,-91.1869444,Monticello,IA,other,240,Blinking lights moving several different directions. +2008-03-12,36.9741667,-122.0297222,Santa Cruz (Sw Of),CA,rectangle,4200,Series of lights above Monterey Bay near Santa Cruz, Calif. +2008-03-12,44.9958333,-92.8791667,Lake Elmo,MN,unknown,240,A number of friends and I were at a party in lake elmo at around 1 am. We went outside for a smoke break on a cloudy and drizziling nig +2008-03-13,44.0125,-75.7947222,Black River,NY,sphere,600,Woman witnesses bizarre, brightly lighted object near Ft. Drum, NY. +2009-03-12,40.5219444,-111.9383333,Riverton,UT,circle,2700,Round obj. flashing red, blue, green, yellow colors; 10 deg. above hor. and sSSW of my position. ((NUFORC Note: Sirius? PD)) +2009-03-12,34.5577778,-115.7436111,Amboy,CA,light,600,4 lights in diamond shaped formation hovering in the california desert, then dissapearing. +2009-03-12,42.0427778,-88.0797222,Hoffman Estates,IL,formation,180,Massive 1/4 km+ sized UFO near Chicago +2009-03-12,29.0255556,-80.9272222,New Smyrna Beach,FL,sphere,2,green orb disappears behind cloud +2009-03-12,33.6188889,-117.9280556,Newport Beach,CA,rectangle,1265,Lights going from left to right, with a stable red light on top +2009-03-12,43.6136111,-116.2025,Boise,ID,sphere,300,White Spherical objects seen +2009-03-12,40.3486111,-74.6594444,Princeton,NJ,triangle,1800,lights seen in central NJ night on 3/12/09. +2009-03-12,40.7141667,-74.0063889,New York City (Staten Island),NY,light,30,circle shaped bright green light in the sky +2010-03-12,47.4741667,-122.2597222,Tukwila,WA,light,90,bright light travels over Seattle and seems to fade off into nothing. +2010-03-12,42.1291667,-80.0852778,Erie,PA,changing,300,3/12/10Viewed a comet like object very bright fall out of the sky about 1 mile. +2010-03-12,42.1291667,-80.0852778,Erie,PA,changing,300,Viewed Cigar 2 light object change into a Complete triangle With 3 lights. +2010-03-12,31.5422222,-86.715,Mckenzie,AL,triangle,600,Large amber lights in upside down triangle formation in Mckenzie Alabama moving due south at unknown speed. +2010-03-12,30.3933333,-86.4958333,Destin,FL,light,300,5 stationary lights suspended above the ground North of Highway 98 in Destin, Fl. then disappearing one by one. +2010-03-12,30.3933333,-86.4958333,Destin,FL,circle,600,3 objects looked like a fire in the sky +2010-03-12,30.7619444,-86.5705556,Crestview,FL,circle,600,We seen two orange lights in sky which other people who were in a different part of town seen 6 orange lights. +2010-03-12,41.2230556,-111.9730556,Ogden,UT,light,1080,10-20 orange spheres of light viewed by 8 witnesses from Ogden, Utah in the evening . +2010-03-13,39.8252778,-83.6344444,South Charleston,OH,unknown,600,Bright Flashes of Light +2011-03-12,39.8744444,-76.8661111,Spring Grove,PA,unknown,600,UFO spotted in the Pigeon Hills (Spring Grove) again +2011-03-12,36.9741667,-122.0297222,Santa Cruz,CA,oval,5,Me and My friend saw a UFO, just astonished! +2011-03-12,26.9616667,-82.3527778,Englewood,FL,disk,600,Sunny South West Florida +2011-03-12,29.9938889,-90.2416667,Kenner,LA,light,4,saw one dim light moving from north to south at a high rate of speed +2011-03-12,32.7252778,-97.3205556,Fort Worth,TX,sphere,300,Large sphere UFO passing next to my house, twice the size of a full moon +2011-03-12,32.3880556,-98.1669444,Morgan Mill,TX,light,1500,Suicide after Alien/UFO sighting near Comanche Peak Nuclear Facility +2011-03-12,33.1886111,-95.2211111,Mt. Vernon,TX,oval,5,Large green object streaks across East Texas sky. +2012-03-12,29.1869444,-82.1402778,Ocala,FL,cigar,3600,IFO sighting +2012-03-12,41.5875,-109.2022222,Rock Springs,WY,chevron,120,Chevron Shaped array of five large lights with sparkling light all around them. +2012-03-12,40.9008333,-80.8569444,Salem,OH,formation,5,Salem Ohio 3-12-12 Dome shaped yellowish-white flying objects traveling northeast +2012-03-12,39.315,-84.2208333,Maineville,OH,circle,20,Black round craft, going from south to north, almost parallel with interstate I-71 +2012-03-12,46.9966667,-120.5466667,Ellensburg,WA,triangle,600,A large, triangle shaped UFO spotted in Ellensburg, WA with three solid white lights and one flashing red light. +2012-03-12,37.9975,-121.7113889,Oakley,CA,diamond,2400,2 diamond shaped bright white lights suspended still in sky for about 40 min. before being covered with strange straight-edge clouds. +2012-03-12,41.6555556,-74.6897222,Monticello,NY,oval,120,Object was goldish yellow, with possible lights on the left, object shaking and vibrating +2012-03-12,39.7686111,-94.8463889,Saint Joseph,MO,changing,1200,Bright orange lines that turned into balloon looking objects +2012-03-12,29.7630556,-95.3630556,Houston,TX,unknown,3600,I saw unexplained objects not moving for about an hour, with bright lights. ((NUFORC Note: Jupiter and Venus. PD)) +2012-03-12,34.6086111,-98.39,Lawton,OK,teardrop,120,Two objects, Teardrop shape, slight red to orange glow in front and less of a glow in the rear. Traveling South to North side by side +2012-03-12,39.3330556,-82.9825,Chillicothe,OH,fireball,30,Two bright lights were flying in the air moving inbetween one another. +2012-03-12,61.5997222,-149.1127778,Palmer,AK,sphere,40,Brightly lit orange in color orb. +2012-03-12,43.0480556,-76.1477778,Syracuse,NY,other,300,What is hovering over lyncourt/eastwood/syracuse?????????????? +2013-03-12,46.9422222,-122.6047222,Yelm,WA,light,180,Orange light moving across sky slowly absolutely no sound. +2013-03-12,31.5602778,-91.4030556,Natchez,MS,oval,120,I went to bed about 2 a.m. and was promptly woken up when my entire bedroom was lit up by a very bright light. My dog barked once. +2013-03-12,30.4211111,-87.2169444,Pensacola,FL,changing,1800,White orb triangular craft followed us. +2013-03-12,29.1380556,-80.9958333,Port Orange,FL,unknown,30,Hovering lights, apparently a helicopter, with very dim lights and no discernible sound. +2013-03-12,30.0269444,-95.0855556,Huffman,TX,fireball,600,Myself and 4 others were fishing on Lake Houston at approximately 10:30 pm, it was just another night hanging out down by the pier fish +2013-03-12,34.9386111,-82.2272222,Greer,SC,light,20,Two white objects moving North +2014-03-12,45.4983333,-122.4302778,Gresham,OR,light,600,Blinking blue and red star disappears. +2014-03-12,47.5302778,-122.0313889,Issaquah,WA,unknown,30,Green lights landing. +2014-03-12,38.2919444,-122.4569444,Sonoma,CA,unknown,7200,Strange light stationary in the sky. +2014-03-12,42.4733333,-83.2219444,Southfield,MI,unknown,30,BRIGHT LIGHT IN THE SKY GOES DIM! +2014-03-12,47.7544444,-122.1622222,Woodinville,WA,unknown,900,Bright dot of light over Woodinville skies. +2014-03-12,40.8858333,-74.0438889,Hackensack,NJ,fireball,10,Glowing blue light vanishes in seconds. +2014-03-12,33.8352778,-117.9136111,Anaheim,CA,sphere,120,Helicopter chasing ball of light. +2014-03-12,26.2708333,-80.2708333,Coral Springs,FL,oval,600,I couldn't believe i didn't see this on the news! +2014-03-12,38.7138889,-121.4616667,Elverta,CA,circle,3600,5 round lit up objects flying in different directions/coming together. ((NUFORC Note: Possibly advertising lights? PD)) +2014-03-12,26.1336111,-80.1133333,Sunrise,FL,light,180,Blue and Red light over the Everglades. +2014-03-12,32.7355556,-97.1077778,Arlington,TX,light,3,I saw a small blue light move from a star to the left, then it blinked out. +2014-03-12,60.0513889,-151.6688889,Ninilchik,AK,circle,600,4 ufo's lights over Cook Inlet. +1973-03-13,29.9544444,-90.075,New Orleans,LA,circle,7200,My husband and I stopped early one morning on a highway to look at a bright object, the object was a large round silver thing. +1997-03-13,33.5091667,-111.8983333,Scottsdale,AZ,triangle,2400,2002 submission of March 13th mass UFO sightings over Phoenix +1997-03-13,40.7608333,-111.8902778,Salt Lake City,UT,other,40,bright object, star like, motionless, thenrapid acceleration to SE/SSE +1997-03-13,32.8794444,-111.7566667,Casa Grande (Indians Hills),AZ,circle,600,We SAW THE UFO OF MARCH 13񫺍 +1997-03-13,41.0463889,-74.4355556,Newfoundland,NJ,oval,300,Driving N/W on Rt. 23 on the way home from 3rd shift. After passing thru a trarric lite i noticed a glimmer off to the left hand side. +1997-03-13,47.6063889,-122.3308333,Seattle,WA,sphere,20,SEATTLE sighting. During daytime same day of the phoenix lights +1997-03-13,33.5777778,-101.8547222,Lubbock,TX,triangle,1200,March 1997 Lubbock, Texas a large triangular shaped, lighted object with instruments showing hovered for 15m+...shot away +1997-03-13,34.54,-112.4677778,Prescott,AZ,formation,180,These were individual craft flying in a distinct formation-- absolutely not flares. +1997-03-13,29.7027778,-98.1241667,New Braunfels,TX,triangle,600,Huge black triangle with 7 lights, very silent, right above trees. +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,chevron,900,A huge triangular object slowly drifting over Phoenix, AZ, 5 lights traveling probably less than 30 mph. +1997-03-13,33.5091667,-111.8983333,Scottsdale,AZ,triangle,1800,I hope it's ours ! If not, it's definately 'someone else's'... (and FOR SURE, it's not of human origin) ! +1997-03-13,32.9477778,-112.7161111,Gila Bend (20 Miles East Of, On I-8),AZ,light,1200,2 large, bright orange/pinkish lights seen south of I-8 over the desert. Went from 2 to 3 to 4 lights. Small bright objects quickly le +1997-03-13,32.8825,-111.9613889,Stanfield,AZ,triangle,600,3/13/97 7:45p.m. +1997-03-13,33.5386111,-112.1852778,Glendale,AZ,diamond,300,I had gone to visit with a friend at about 30 ave. and just north of northern, I arrived at his home and noticed his car was gone, he h +1997-03-13,35.1894444,-114.0522222,Kingman,AZ,formation,360,5 BRIGHT orange lights flying in a V formation +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,chevron,300,An object, consisting of 5 lights, in the shape of an arrow, flew right over my house. +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,chevron,600,"V" shaped black object with 5 lights, passed directlyover our house in Phoenix and didn't make a sound. It's shapewas that of a carpen +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,circle,600,From North to South over Camelback mountain High in the Arizona sky Hundreds of citizens see a phenomena of lights Soundlessly, slowly +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,other,300,a "Flying wing" which fley over my card as i was on I10 heading west +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,triangle,15,LOOKED LIKE A FORMATION OF PLANES WITH THERE LANDING LIGHTS ON ONLY THERE WAS NO ENGINE NOISE FOLLOWING +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,triangle,1800,V shaped object that flew from the north of phoenix and eventually right over phoenix 3/13/97 +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,triangle,300,UFO over Phoenix 1997 +1997-03-13,33.4147222,-111.9086111,Tempe,AZ,other,600,Phoenix Lights +1997-03-13,34.54,-112.4677778,Prescott,AZ,formation,300,v formation white lights to start with at long range as it got closer looking through binoculars each light was actually 2 one red one +1997-03-13,34.0708333,-112.15,Black Canyon City (5 Miles N Of),AZ,chevron,120,Phoenix Lights on I-17 near Sunset Point Rest Area +1997-03-13,33.4483333,-112.0733333,Phoenix (Ahwatukee),AZ,triangle,600,Sighted red to white horizontal line on the north west horizon. As the object got closer it looked like a 5 light triangle. It passed o +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,light,600,Airline pilot views Phoenix lights from Interstate 10, while driving to work. +1997-03-13,33.4483333,-112.0733333,Phoenix (Tempe),AZ,light,420,5 orange colored lights fall toward earth like fireworks. Shortly after they hovered in place, pulsating and began moving at odd traje +1997-03-13,34.54,-112.4677778,Prescott,AZ,formation,300,Chevron formation of five white lights, plus other strange things. +1997-03-13,34.54,-112.4677778,Prescott,AZ,formation,600,Observed five yellow-white lights travelling from NW to NE then turning to S +1997-03-13,33.5091667,-111.8983333,Scottsdale,AZ,triangle,300,Myself, my 12 yr old son and his friend watched a large triangular shape craft with colored lights (red mostly) in chevron design glide +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,triangle,480,v of lights over phoenix az. +1997-03-13,33.3702778,-112.5830556,Buckeye,AZ,sphere,300,Observed a number (3 - 5) of white/yellow lights hovering (suspended) approximately 7 - 10 miles away. Observed streaking object leavi +1997-03-13,43.6008333,-83.1747222,Cass City,MI,triangle,900,My dad and mom was comming home from town after a stop at a grocery store in caro, they head east on deckerville rd. then turned left(n +1997-03-13,33.3061111,-111.8405556,Chandler (App. 20 Miles E/Se Of Phoenix),AZ,triangle,90,My wife and I witnessed a craft passing in front uf us that was close to a mile long.This boomerang/trianglar craft became "transluct" +1997-03-13,33.3061111,-111.8405556,Chandler,AZ,unknown,600,i was driving north on I-10 from gila river indian community.i got on the ramp i-10 north..at queen creek rd.around 8pm or before +1997-03-13,34.7575,-112.4530556,Chino Valley,AZ,formation,300,Observed 5 white lights approaching from thenorthwest at what appeared to be a low levelbut rising as they approached. 3 lights infron +1997-03-13,32.9477778,-112.7161111,Gila Bend (G.b.auxillary Field, ),AZ,chevron,1200,At approx. 2015 hrs.flares dropped were close enough that I could see the white smoke as each burned, but the parachutes were not visib +1997-03-13,33.4352778,-112.3575,Goodyear,AZ,unknown,300,The object sat a while in a field next to us, then slowly floated right over us until it disappeared. +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,chevron,1200,Witnessed the object travel south along Interstate 10 toward Casa Grande +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,formation,300,4 orange lights at about 30' elevation looking to the North/North-East. Appeared in a wide trapazoid formation. Very slow moving. +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,triangle,180,Another report on the Phoenix lights, but every prospective is important to get the whole picture and or map the object as it decended +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,triangle,240,Phoenix UFO sighting March 13, 1997 +1997-03-13,33.4147222,-111.9086111,Tempe,AZ,formation,300,I was in tempe with a bunch of my friends when we saw a group of about 5-7 lights in the sky. They seemed to stay in the same place. Th +1997-03-13,33.4147222,-111.9086111,Tempe,AZ,light,1200,Nothing WE have, could have done what we all saw that night. +1997-03-13,48.3883333,-115.555,Libby,MT,light,90,fuzzy ball of light hovers then rapidly streaks accross the sky in a southernly direction/8:35PM 3/13/97 +1997-03-13,33.4222222,-111.8219444,Mesa (At Mesa Community College),AZ,triangle,180,LARGE TRIANGULAR OBJECT WITH 5 DIM AMBER LIGHTS (ONE IN EACH CORNER AND 2 MORE NEAR FRONT) MOVED SLOWLY NW TO S-SW WITH NO NOISE. +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,formation,240,I saw seven UFOs apppear in formation then disappear. +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,triangle,180,Unexplained Arizona Sighting +1997-03-13,36.0397222,-114.9811111,Henderson,NV,formation,180,(2) extremely large, dark craft, in formation operating at a very slow speed in total silence, overhead. +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,diamond,300,I witnessed th "Phoenix Lights" the evening of March 13th 1997 from a distance of one to two miles. +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,triangle,240,My wife and I were walking our dogs on the south side of South Mountain in the mountain park when we saw the ufo come over the mountain +1997-03-13,34.54,-112.4677778,Prescott,AZ,formation,30,Saw 5 bright lights in triangle formation in the northand heading southeast at an extremely fast speed. +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,rectangle,600,03/15/1997, 21:15 Phoenix, Arizona 20 rectangular objects in "V" formation, performed circular spin, etc. +1997-03-13,36.6002778,-121.8936111,Monterey,CA,sphere,300,March 13, 1997 Monterey, CA UFO incident +1997-03-13,38.7580556,-82.8913889,Sciotoville,OH,formation,900,The phoenix lights were also seen in Ohio. +1997-03-13,32.8794444,-111.7566667,Casa Grande,AZ,formation,8,Phoenix lights witnessed in Casa Grande, AZ +1997-03-13,32.7963889,-113.5402778,Dateland,AZ,circle,600,Hovering Light Formation in Southwest Arizona in March 1997 +1997-03-13,33.5386111,-112.1852778,Glendale,AZ,fireball,7200,Fireball on the top of mountain behind Luke Air Force Base, AZ. +1997-03-13,33.4483333,-112.0733333,Phoenix,AZ,other,1800,This was real, and not flares! +1997-03-13,32.2216667,-110.9258333,Tucson,AZ,light,600,We saw unidentified lights that didn't blink or make noise and moved very, very quickly. +1997-03-13,36.7477778,-119.7713889,Fresno,CA,formation,60,AS I SAT IN MY PARENT'S BACK YARD FACING DIRECTLY SOUTH, I NOTICED 6 LIGHTS SIDE BY SIDE MOVING AT A FARELY FAST PACE. THEY WERE SIDE +1997-03-14,33.4483333,-112.0733333,Phoenix,AZ,other,120,The phoenix lights +1998-03-13,37.3394444,-121.8938889,San Jose,CA,sphere,15,At approximately 1:30pm on 3/13/98, a group of seagulls caught my eye. As I looked up at the gulls,I noticed above them at about 4-5 wh +1998-03-13,43.9827778,-124.0986111,Florence,OR,cigar,120,cigar shaped craft +1998-03-13,32.7152778,-117.1563889,San Diego,CA,circle,1200,phoenix lights over san diego +1998-03-13,47.6063889,-122.3308333,Seattle,WA,sphere,240,We watched approximately 15 dimly lit white spheres that pulsed brightly together in different colors while slowly rising towards the s +1998-03-13,38.1075,-122.5686111,Novato,CA,flash,180,Strange oscillating white and red flash seen over Novato, CA, 10:15 PM on Friday, March 13, 1998. +1998-03-13,36.1538889,-95.9925,Tulsa,OK,light,20,One small light overhead. no flashing lights.constant color. apparantly no wings. low altitude(under low cloud ceiling). fast moving +1999-03-13,42.6605556,-84.0730556,Fowlerville (East South East Of),MI,fireball,3,While driving east on I96, at 3:40 a.m. I saw a green fireball with a gold tail moving downward at a 45 degree angle. After approx. 3 s +1999-03-13,40.7141667,-74.0063889,New York City (Brooklyn),NY,rectangle,40,saw object flying without sound about 2-3 hundred feet above water next to Varrazano Bridge +1999-03-13,34.0286111,-117.8094444,Diamond Bar,CA,sphere,2,I'd just finished watching a video and had gathered my things to go upstairs. When I walked into my bedroom I saw I'd left the drapes +2000-03-13,30.3319444,-81.6558333,Jacksonville,FL,light,300,A small white light moving through the night sky. (Not a sattelite!) +2000-03-13,47.6063889,-122.3308333,Seattle,WA,diamond,120,I saw a diamond shape craft moveing very fast and make a turn in the sky and start to pick up speed towads vancover B.C. +2000-03-13,33.8358333,-118.3397222,Torrance,CA,unknown,480,aluminum color, real bright, and it moves forward real fast then it just stops, then it comes back to its original spot, then go away.. +2000-03-13,38.6105556,-122.8680556,Healdsburg,CA,rectangle,60,Gigantic rectangle, dark w/white spots. Followed by jets (2). Similar to Pheonix lights story. +2000-03-13,37.3394444,-121.8938889,San Jose,CA,light,30,A light blue streak in the sky around 8pm. Meteor movement like. Odd color. +2000-03-13,32.7763889,-79.9311111,Charleston,SC,circle,30,Extremely large, slow-moving object moving toward bridge in Charleston, SC - witnesses with no memory after sighting +2000-03-13,40.7419444,-95.0380556,Clarinda,IA,light,600,It looked like a star at first... +2001-03-13,33.6694444,-117.8222222,Irvine,CA,unknown,300,At the above date and approximate time, I was travelling northbound on Interstate 5 in south Orange County, CA area. It was early to m +2001-03-13,35.8708333,-92.3169444,Timbo,AR,cone,2700,This is not a new report but regarding my report of an event on March 13, 2001, Timbo AR and a telephone report of another to you on Ju +2001-03-13,35.8708333,-92.3169444,Timbo (Nearest),AR,other,600,Was this demise of object sighted in Seattle? +2001-03-13,34.2477778,-88.9986111,Pontotoc,MS,light,900,Twice I saw a bright light in the Direct West Sky in Mississippi, then it suddenly disapeared, UFO may-be? I hope so. +2001-03-13,40.7608333,-111.8902778,Salt Lake City,UT,unknown,1200,Hello I saw an object a few years ago and also took pictures .I was outside and saw a very bright object. At first I thought it might +2001-03-13,37.6902778,-96.7819444,Leon,KS,disk,120,UFO in Leon kansas not to far from wichita, serveral reports same night. +2001-03-13,45.4872222,-122.8025,Beaverton,OR,light,600,I saw three, big yellow lights in the south that didn't move. +2001-03-13,45.4872222,-122.8025,Beaverton,OR,light,300,3 ligkts seen floating up Hwy 26 at aprox. 9:30 PM, looked kinda orange and connected to each other! +2001-03-13,48.0841667,-121.9675,Granite Falls,WA,flash,240,Heard 3 Pings Then A Boom. +2001-03-13,43.6808333,-114.3627778,Ketchum,ID,unknown,60,High-altitude craft with red glow, executed brief series of non-Newtonian manouvers over Sun Valley, Idaho. +2001-03-13,43.2166667,-123.3405556,Roseburg,OR,unknown,600,Large object travelling North. 2 Large Yellowish Bright lights and other lights on object. NO SOUND. Alt. <2000 feet, vel. <100mph +2001-03-13,47.7544444,-122.1622222,Woodinville,WA,sphere,120,Golden/brass colored sphere travelling south to north over Woodenville at speed comparable to jet hellicopter +2001-03-13,43.0388889,-87.9063889,Milwaukee,WI,circle,1200,Very loud noise and bright light +2001-03-13,47.6105556,-122.1994444,Bellevue,WA,light,10,At 11:50 PM on March 13, 2001 I saw a fast moving, bright orange light traveling south to north. +2001-03-13,47.6063889,-122.3308333,Seattle (Skyway Area),WA,fireball,15,After finishing a late even business meeting, at the home of a friend, myself and two (2) other associates, were saying our final goodb +2001-03-13,47.6063889,-122.3308333,Seattle,WA,cigar,10,23:50 on 3/13/01, an object with orange lights flew at remarkable speed, silently, from south to north over Puget Sound. +2001-03-13,47.6063889,-122.3308333,Seattle,WA,light,10,I saw a very fast moving light heading due north along Puget Sound at approximately 11:30 PM March 13 2001. +2001-03-13,47.7558333,-122.3402778,Shoreline,WA,circle,3,Out of the corner of my eye I first noticed a bright orange object, across Puget Sound, traveling west to east at a very high speed. I +2002-03-13,36.9030556,-106.5788889,Chama,NM,cone,7200,A large light was seen from a distance and it changed directions. After about 30 mins of watching this strobing light more lights were +2002-03-13,32.9477778,-112.7161111,Gila Bend,AZ,circle,1200,sUSPICIOUS ACTIVITY IN THE SKY. +2002-03-13,32.948055600000004,-96.7294444,Richardson,TX,oval,1200,Object hovers over house in populated neighborhood. +2002-03-13,34.4211111,-84.1191667,Dawsonville,GA,light,3,there was a light that lasted for 2 to 3 second maximum and it was gone over the horizon. +2003-03-13,38.8619444,-77.7741667,The Plains,VA,triangle,60,Black triangle spacecraft with white lights at corners flew in front my vehicle while driving east on Route 601 from The Plains. Spacec +2003-03-13,30.1586111,-85.6602778,Panama City,FL,chevron,15,Three boomerang shaped objects hover the ocean. +2004-03-13,19.6255556,-155.0416667,Keaau,HI,circle,120,Looked like a moving medium size star, high altitude, no sound. ((NUFORC Note: Possible satellite. PD)) +2004-03-13,37.9780556,-122.03,Concord,CA,circle,30,Bright light becoming really dim then suddenly disappeared +2004-03-13,37.3394444,-121.8938889,San Jose,CA,unknown,3,Unusual Green/Blue light dropping from the sky... +2004-03-13,34.0233333,-84.6155556,Kennesaw,GA,disk,90,Silver disk over Kennesaw, GA +2004-03-13,28.5380556,-81.3794444,Orlando,FL,triangle,600,My daughter and I saw this triangular-shaped silvery object than was like nothing she or I have ever seen. +2004-03-13,36.2166667,-81.6747222,Boone (Vally Crusis),NC,formation,480,Took place on the Blue ridge park way. Lots of mountain and wide mountain landscape.Around 50 to 70 objects spotted by me and then +2004-03-13,39.4561111,-77.9641667,Martinsburg,WV,other,30,two-tiered configeration (like a chandelier) of bright lights perhaps one tenth the size of full moon hovering +2004-03-13,41.7383333,-95.7025,Woodbine,IA,light,1380,Light hovered over several towns , it didn't seem to be a regular aircraft. +2004-03-13,35.0844444,-106.6505556,Albuquerque,NM,chevron,25,ufo fly over out of this world sighting +2004-03-13,47.0533333,-123.2641667,Mccleary,WA,circle,900,Bright light spotted over Black Hills. ((NUFORC Note: Possible sighting of Venus. PD)) +2004-03-13,47.0075,-122.9080556,Tumwater,WA,unknown,1200,A brilliant gold light over the Black Hills in the west. It did not move and remained there for 20 minutes then dissapppeared. +2004-03-13,38.9330556,-104.6080556,Falcon,CO,diamond,600,It was really fast and had flashing lights on the bottom of it. It didn't have any sound. +2005-03-13,42.7875,-86.1088889,Holland,MI,circle,120,The UFO's was round with white lights coming out of the top of it. It had kind of a like pinkish glow around it. Then after about 2 min +2005-03-13,47.0344444,-122.8219444,Lacey,WA,light,600,Early this Sunday, at approximately 12:05am, while meditating, I saw a very bright object in eastern sky over Lacey, Washington. The o +2005-03-13,29.9838889,-90.1527778,Metairie,LA,light,5,Off-white ball zoomed across the southern sky +2005-03-13,35.9786111,-114.8316667,Boulder City,NV,triangle,10,Black Triangle With Dim Lights +2005-03-13,46.2858333,-119.2833333,Richland,WA,triangle,180,Peter; To be exact on time it started at 4:13 am , I was on my way to take my mom to the airport early flight, I came outside took thre +2005-03-13,38.7838889,-90.4811111,St. Charles,MO,changing,15,Saw a series of non flashing lights in the western sky flying towards the north. The shape started as a cros then the lights quickly ch +2005-03-13,39.8308333,-77.2313889,Gettysburg,PA,diamond,60,Wingless oblong diamond craft, three close lights near rear +2005-03-13,41.7797222,-71.4377778,Cranston,RI,triangle,120,At 11pm Est I was driving my girlfriend home on Phoenix Avenue toward the free way exit to travel 95 North.In the sky at first loo +2005-03-13,47.7575,-122.2427778,Kenmore,WA,triangle,30,I saw a huge slow moving triangle or pyramid +2005-03-13,47.1013889,-94.5869444,Walker,MN,unknown,600,very BRIGHT light hovering over the trees +2006-03-13,32.7152778,-117.1563889,San Diego,CA,circle,7200,A big red orange ball shape object in the sky over by San Diego, California +2006-03-13,26.6841667,-80.6677778,Belle Glade,FL,triangle,20,Belle Glade, Florida—March 13, 2006 Driving north from Key Largo, Florida around the time of three A.M., we (my boyfriend, Fred Brosn +2006-03-13,26.6636111,-80.7163889,South Bay (Belle Glade),FL,triangle,15,Green triangle over Belle Glade +2006-03-13,44.98,-93.2636111,Minneapolis,MN,flash,1,green flash +2006-03-13,33.6633333,-116.3091667,La Quinta,CA,oval,180,BRIGHT ORANGE, DIMPLED LOOKIN CIRCLE, NO NOISE, NOT MOVING - APPROX 3 MIN WENT INSIDE CAME BACK OUT AND OBJECT WAS GONE. +2006-03-13,41.4994444,-81.6955556,Cleveland (Suburb),OH,circle,300,Saw a cloud-like object making swift, wide, regular circles over and over. +2006-03-13,47.9791667,-122.2008333,Everett,WA,light,1200,I saw round objects that changed color and could move hundreds of miles in seconds. +2006-03-13,37.6902778,-96.7819444,Leon,KS,light,600,Lights, starting from one , going to three, whole event 5-6 minutes. Clear nite E. of Wichita Kansas +2006-03-13,37.0583333,-120.8488889,Los Banos,CA,teardrop,3,large bluish-green light falling across the sky from east to west +2006-03-13,45.5236111,-122.675,Portland,OR,other,2,Bright Aqua ball of Light over Hillsboro, Oregon - viewed from Cornelius Pass - Danced in the sky +2006-03-13,44.98,-93.2636111,Minneapolis,MN,triangle,900,The following sighting reports are very similar to the one my mother, father, North Minneapolis and I had back in 1975. This is the sec +2006-03-13,40.7141667,-74.0063889,New York City (Manhattan),NY,triangle,120,10:56 p.m. 03-13-06 3 U.F.O's fly across Manhattan's Citicorp, Metlife, and Chryler Buildings. +2006-03-13,32.5158333,-93.7319444,Bossier City,LA,circle,600,I have not told anyone, afraid of being labelled a nut. +2006-03-13,34.9633333,-85.4111111,Wildwood,GA,triangle,300,Black triangle moving slow with 4 bright lights on back and no noise +2007-03-13,43.6105556,-72.9730556,Rutland,VT,unknown,300,2 red lights and 1 white in a triangular pattern on an airborne craft that was neither plane nor helicopter +2007-03-13,36.175,-115.1363889,Las Vegas,NV,triangle,600,Two crafts flying from Area 51 towards Nellis Air Force Base within 5 minutes of each other. +2007-03-13,37.8858333,-122.1169444,Lafayette,CA,unknown,300,2 beams of light shining thru the skylight in bathroom +2007-03-13,37.3394444,-121.8938889,San Jose,CA,sphere,600,My surveillance camera took pictures of a "spook" on, 3/13/07 and the video is recorded on my DVR. +2007-03-13,39.9522222,-75.1641667,Philadelphia,PA,triangle,20,Object(s) over Philadelphia +2007-03-13,34.2694444,-118.7805556,Simi Valley,CA,rectangle,120,Ridiculously fast flying vehicle spotted over Simi Valley Tue. March 13, 2007 +2007-03-13,35.6869444,-105.9372222,Santa Fe,NM,unknown,5,An object with two lights flying across the western sky -- didn't seem like airplane. +2007-03-13,34.7538889,-77.4305556,Jacksonville,NC,other,3600,Large wing shaped mother ship with over 80 small craft formation +2007-03-13,44.7947222,-74.7872222,Winthrop,NY,sphere,180,Bright shiny light-object, changes color and disappears when hit by auto-focus beam from camera...see picture +2007-03-13,39.6477778,-104.9872222,Englewood,CO,diamond,5,At exactly 10:45 pm,we are going into our building to clean, my husband said stand beside me and we gonna see something in one minute! +2007-03-13,43.0852778,-77.9425,Bergen,NY,circle,73800,Large groups of lights in the sky. +2008-03-13,37.0833333,-88.6,Paducah,KY,disk,60,Saucer Craft with much light and no sound. 500 Lights On Object0: Yes +2008-03-13,39.6136111,-86.1066667,Greenwood,IN,cigar,2,Strange object at high rate of speed over Indiana sky +2008-03-13,38.2541667,-85.7594444,Louisville,KY,formation,1800,Siting over Loiville, Ky +2008-03-13,34.2694444,-118.7805556,Simi Valley,CA,sphere,180,A brightly lit reddish round object in western sky on March 13Th at 3:05 am. +2008-03-13,37.5233333,-77.3161111,Sandston,VA,triangle,3600,Bright, Silent & Hovering +2008-03-13,31.0111111,-83.8663889,Coolidge,GA,cylinder,4,It happened on March 23, 2008 @ lunch. Looked like and airplane w/o wings, was there for a few seconds and the vanished into thin air!! +2008-03-13,37.4283333,-121.9055556,Milpitas,CA,other,40,White 3 sphere coupled object seen in Milpitas, CA capture on video. +2008-03-13,33.1580556,-117.3497222,Carlsbad,CA,chevron,20,Four red lights pass directly over head and seem to be one solid chevron shaped object, making little to no sound. +2008-03-13,35.0844444,-106.6505556,Albuquerque,NM,light,120,Colorful light 1 mile N. I-40 & Coors +2009-03-13,39.9866667,-75.4013889,Newtown Square,PA,flash,60,Flash Skips Across sky in Newtown Square, PA +2009-03-13,35.9138889,-81.5391667,Lenoir,NC,sphere,120,I didn't say anything to anyone until I spotted some footage on YouTube that showed the EXACT same object! +2009-03-13,25.7738889,-80.1938889,Miami,FL,sphere,60,possibl eufo sighted in miami dade county florida near airport +2009-03-13,43.6613889,-70.2558333,Portland,ME,unknown,7200,Bright light moving slow at night! +2009-03-13,33.5538889,-117.2130556,Murrieta,CA,circle,60,A small, flaming- looking object that moved strangely. +2009-03-13,28.8002778,-81.2733333,Sanford,FL,triangle,60,Large, low, slow moving black triangular object with mulitple lights +2010-03-13,45.6088889,-68.5313889,Medway,ME,circle,1,A large green circle flew directly over my house. +2010-03-13,47.3177778,-119.5525,Ephrata,WA,light,1,i was looking out my window to the west. i was gazing at a few stars when all of a sudden i saw a flash of light. it lasted for about 1 +2010-03-13,40.7141667,-74.0063889,New York City (Staten Island),NY,sphere,3600,Strange lights during storm in staten island +2010-03-13,47.8211111,-122.3138889,Lynnwood,WA,light,60,Amber light formation in sky above Lynnwood, WA at 19:07 on 3/13/10 +2010-03-13,47.8108333,-122.3761111,Edmonds,WA,oval,900,20-30 orange, flame colored objects seen for 15 minutes by 20 persons. +2010-03-13,47.8108333,-122.3761111,Edmonds,WA,circle,900,Bright red lights totalling about 40 moving over Edmonds, WA between 7:30pm and 8:00 pm on Saturday, 3/13/10. +2010-03-13,26.3394444,-81.7788889,Bonita Springs,FL,sphere,480,High altitude amber balls of light move across sky then appear to leave atmosphere above Bonita Springs, FL. +2010-03-13,29.9838889,-90.1527778,Metairie,LA,fireball,180,7 to 9 objects glowing bright red yellow fading towards an an easterly direction away from Metairie la. we were looking south when we n +2010-03-13,41.4994444,-81.6955556,Cleveland,OH,oval,90,Ufos seen in cleveland ohio, changed color and disapeared then reappeared. +2011-03-13,41.4527778,-82.1825,Lorain,OH,triangle,15,Seen the craft flying eastbound over the West side of the city of Lorain. The craft was seen for approximately 15sec before disappearin +2011-03-13,36.5925,-78.6163889,Henrico,VA,changing,5400,Henrico +2011-03-13,33.7488889,-84.3880556,Atlanta,GA,unknown,240,Two bright crafts hovering & moving together in clear mis day +2011-03-13,35.4447222,-78.4272222,Four Oaks,NC,triangle,180,to fast moving shiny objects beside passenger plane over n.c. +2011-03-13,36.3302778,-119.2911111,Visalia,CA,light,20,Erratic movement traveling south to north in less than 20 sec than disappeared. +2011-03-13,41.6175,-74.0763889,Plattekill,NY,triangle,3600,OBJECTS VERIFIED BY LOCAL POLICE +2011-03-13,29.4238889,-98.4933333,San Antonio,TX,oval,2400,300 glowing globes hovered over downtown skyline in San Antonio. +2012-03-13,43.0830556,-73.785,Saratoga Springs,NY,changing,120,Long, narrow cylinder shape and had about 6 square-shaped lights across the bottom. The lights were a dull yellow glow, and the craft i +2012-03-13,40.0580556,-82.4013889,Newark,OH,circle,240,10 Circular bright white objects over Newark, Ohio. +2012-03-13,40.0580556,-82.4013889,Newark,OH,circle,240,White objects in group flying together. +2012-03-13,34.0286111,-117.8094444,Diamond Bar,CA,teardrop,900,Teardrop orb - lights moving rnd bottom, bright bright light on top-stay n place 10mn moved then diasppeared into air 3 helictrs chase +2012-03-13,32.7252778,-97.3205556,Fort Worth,TX,light,60,Stationary Light with lights shooting down to ground +2012-03-13,26.9758333,-82.0908333,Port Charlotte,FL,circle,259200,Stationary object flashing red and green over south west coast of Florida near vacinity of Port Charlotte. +2012-03-13,39.0061111,-85.6236111,North Vernon,IN,light,2700,Orange, round light hovering moving around , No sound, No Flashing +2012-03-13,39.3736111,-76.9680556,Sykesville,MD,triangle,7200,Triangular shaped object with bright lights, dropping orbs, being seen over Sykesville, MD +2012-03-13,39.2505556,-76.5208333,Dundalk,MD,unknown,2,Small "airplane" like craft, 8:30pm, clear sky, object seemed to cloak itself. Saw it for about 1 second before it "cloaked". +2012-03-13,41.1305556,-85.1288889,Fort Wayne,IN,light,2,I reported a few nights ago seeing these same 2 bright lights in the sky. I made an error on the other report the lights are in the wes +2012-03-13,45.2333333,-93.2911111,Andover,MN,formation,10,3-18-12, Minneapolis, 8:40 PM, 2 dots flying very fast from SE to NW, side by side, but offset, brownish color +2012-03-13,28.0911111,-82.78,Crystal Beach,FL,light,600,2 bright lights same distance apart 2 nights in a row. ((NUFORC Note: Jupiter and Venus are in conjunction in the W sky. PD)) +2012-03-13,36.175,-115.1363889,Las Vegas,NV,flash,1200,Traveling and hovering unknown flashing objects +2012-03-13,40.3266667,-78.9222222,Johnstown,PA,triangle,600,LARGE DELTA /TRIANGLE OBJECT +2012-03-13,35.5288889,-77.4013889,Winterville,NC,triangle,5,UFO over Greenville/ Winterville, NC (March13, 2012) +2012-03-13,46.2858333,-119.2833333,Richland,WA,changing,1200,2 still lights that changed into multi colored flashing lights that changed speed, dir., very quickly. ((NUFORC Note: Planets? PD)) +2012-03-13,39.9708333,-80.7508333,Shadyside,OH,light,60,White light being followed by a small plane +2012-03-13,43.5977778,-84.7675,Mount Pleasant,MI,unknown,1800,2 hovering lights. ((NUFORC Note: Probable sighting of Jupiter and Venus, which currently are prominent in western sky. PD)) +2012-03-13,42.0986111,-75.9183333,Binghamton,NY,formation,8,3 redish lights traveling in parallel south to north over binghamton +2013-03-13,31.4436111,-93.4572222,Florien,LA,triangle,1500,Large triangle object about an acre to acre and half in size hovering above trees ..stationary +2013-03-13,32.2216667,-110.9258333,Tucson,AZ,circle,3,Bright blue light moving quickly over Tucson early morning. +2013-03-13,37.9522222,-122.5561111,Kentfield,CA,sphere,60,Red ball of light flickerkng while hovering over land moves zoomes east to west i got images on my phone +2013-03-13,37.775,-122.4183333,San Francisco,CA,teardrop,60,At the moment i do not view the UFO, when transfer the photos to the computer see it. There are 3 UFOs, are composed by 9 o 10 little b +2013-03-13,41.9038889,-72.4702778,Ellington,CT,unknown,600,Orbs formation flying +2013-03-13,34.1261111,-117.5227778,Etiwanda,CA,oval,180,7 bright orange orb like object's +2013-03-13,42.3702778,-87.9019444,Gurnee,IL,circle,420,Orange/red glowing light in a circular shape +2013-03-13,37.3022222,-120.4819444,Merced,CA,circle,30,Multiple orange orbs, in a triangle shape, moving NE to SW, then disappeared, followed by more. +2013-03-13,35.0844444,-106.6505556,Albuquerque,NM,formation,20,6-7 golden orbs in a V-formation like a flock of birds +2014-03-13,47.6063889,-122.3308333,Seattle,WA,fireball,10,Blue fireball in night sky. +2014-03-13,29.3836111,-94.9025,Texas City,TX,changing,10800,Seen bright light that exceeded several hours from dark to daylight. +2014-03-13,26.9338889,-80.0944444,Jupiter,FL,triangle,300,Craft spotted in broad day light, disappearing and reappearing three times moving in different directions each time before vanishing. +2014-03-13,36.8525,-121.4005556,Hollister,CA,light,600,Two blue/purple crafts over downtown Hollister, CA. +2014-03-13,40.3719444,-75.2930556,Perkasie,PA,triangle,600,Viewed a triangular craft with only 2 steady white lights and 2 flashing red lights which flew low, slow and almost silent. +2014-03-13,47.5675,-122.6313889,Bremerton,WA,sphere,60,Solid Amber colored object moving slow and steady, West to East, silent. +2014-03-13,36.0397222,-114.9811111,Henderson,NV,light,1800,Lights above mountains south of Henderson. +2014-03-13,33.0197222,-96.6986111,Plano,TX,other,15,A v-shaped ufo that was translucent with a green tint traveling slowly. +1980-03-14,25.4683333,-80.4777778,Homestead,FL,circle,60,Glowing white circular object seen in the Florida Everglades around 1980. +1984-03-14,40.8877778,-79.5886111,Cowansville,PA,triangle,120,Myself and 3 other people saw a very large triangular space ship appear over the treeline along the edge of a field on our farm. +1985-03-14,38.6569444,-90.5544444,Bellefontaine (St. Louis County),MO,chevron,3600,Coming home from taking my son to scouts, noticed bright lights in the western sky. The lights were too bright, too close and too low t +1996-03-14,35.5005556,-119.2708333,Shafter,CA,unknown,600,Object goes through shinihg hole! ((NUFORC Note: Possible hoax?? PD)) +1997-03-14,29.0488889,-82.4611111,Dunnellon,FL,light,1800,It was about 1:35 in the morning,and i wasspending the night at a friends house, wegot bored because there was nothing to do,so we went +1997-03-14,31.9575,-110.955,Sahuarita,AZ,triangle,10,Very large cone-shaped object appeared out of nowhere +1997-03-14,33.4936111,-112.9363889,Tonopah,AZ,sphere,1500,I-10 W of Tonapah AZ and Highway 85 S I watched3 golf ball sized lights "QQQ" being observed by ajet (half the size of a tack head) 20: +1997-03-14,34.0522222,-118.2427778,Los Angeles,CA,triangle,40,Silent, gliding boomerang with no lights +1997-03-14,38.8338889,-104.8208333,Colorado Springs,CO,triangle,10,Triangular light formation in Colorado. +1998-03-14,47.2530556,-122.4430556,Tacoma,WA,fireball,300,My mother saw this, she said it came from the north towards her as she was inside looking out her window. It was a large RED FIRE BALL +1998-03-14,27.4986111,-82.575,Bradenton,FL,cigar,5,While walking home from school I saw a small (about this big-> / <-)hovering overhead it then shot out a small orb which I lost track o +1999-03-14,41.4047222,-81.7230556,Parma,OH,triangle,10,V-shaped object flying from South to North estimated to be at high altitude because high cirrus clouds visible through mostly clear ski +1999-03-14,21.9811111,-159.3711111,Lihue,HI,light,300,Bright green lights floating in space with a strange motion pattern. +1999-03-14,43.073055600000004,-89.4011111,Madison,WI,circle,30,My friend Rick and I were getting out of my car when I noticed a silver ball in the sky. I pointed it out and said"What the hell is tha +2000-03-14,37.0511111,-122.0136111,Scotts Valley,CA,formation,120,3 "Rods" in a Unilateral Triangle Formation appeared to follow Hiway 17 Northbound +2000-03-14,39.7683333,-86.1580556,Indianapolis,IN,cylinder,180,Iam a security officer with a chemical plant. While making a round i noticed a glowing object hovering just above some high tension lin +2001-03-14,36.175,-115.1363889,Las Vegas,NV,disk,180,It's You, What happen? Somebody set up us the bomb. Take off every Zig. +2001-03-14,38.8822222,-77.1713889,Falls Church,VA,unknown,7,At 2:10am, March 14, 2001, 2 dimly lit craft observed mirroring one anothers movements 8mi. west of the Washington Monument. +2001-03-14,37.6922222,-97.3372222,Wichita,KS,other,30,Very Bright Fireball I was driving to work along 47th street, just south of McConnel AFB, aroung 5:30 in the morning. I usually observe +2001-03-14,40.5866667,-122.3905556,Redding,CA,light,30,Unknown object cruising over town suddenly changes direction and accelerates up and out of sight, witnessed by 4 people. +2001-03-14,33.7488889,-84.3880556,Atlanta,GA,light,300,Report on the evening newscast of an object with multicolored lights in a parallel flight pattern with the Mir spacestation. +2001-03-14,41.1444444,-81.44,Munroe Falls,OH,changing,180,Object seen 3-14-01 changing shape and size in Northeast Ohio +2001-03-14,40.2972222,-74.73,Lawrenceville,NJ,egg,5,I exited my car and I look up and this egg shaped object streaked across the sky. It traveled faster than anything I've ever seen befo +2001-03-14,33.3061111,-111.8405556,Chandler,AZ,triangle,10,Fuzzy triangle sidewinds Arizona night sky +2002-03-14,44.8833333,-69.4480556,Hartland,ME,circle,1800,BIG AND BRIGHT +2002-03-14,41.0380556,-74.2944444,Wanaque,NJ,other,540,I saw 300 little dots flying really high, forming some kind of shape. +2002-03-14,35.198055600000004,-111.6505556,Flagstaff (North Of),AZ,light,60,Light beam in twilight sky +2002-03-14,32.3475,-97.3863889,Cleburne,TX,disk,720,This huge object surely was seen by others just due to its tremendous size. No doubt about it: this was not any form of 'known' craft. +2002-03-14,42.2586111,-87.8405556,Lake Forest,IL,unknown,5,Flourescent white-green 'fireball' from NW Corner of sky in Illinois +2003-03-14,37.9522222,-122.5561111,Kentfield,CA,unknown,15,Aliens are real. +2003-03-14,25.7902778,-80.1302778,Miami Beach,FL,other,900,Small black object slowly moves in various directions off Florida's coast. +2003-03-14,42.5997222,-71.3677778,Chelmsford,MA,cigar,1800,You can see it 4 0'clock direction from moon now!! it look s like cigar and bright and does not move. it is staying same position now. +2003-03-14,47.5002778,-111.3,Great Falls,MT,unknown,2,Light Explosion +2003-03-14,41.8616667,-88.1608333,Winfield,IL,triangle,10800,Last night while pulling my car into the parking lot of the Behaioral Health Services Buildins, I noticed 3 flashing entities coming do +2003-03-14,40.4166667,-86.8752778,Lafayette,IN,light,3,Two balls of light quickly appeared above our truck then dissapeared as quickly as they appeared! +2003-03-14,33.4483333,-112.0733333,Phoenix,AZ,unknown,600,Strobing blue light, LONG BRIGHT white tail, dropping "midair bombs" and released a single orange sphere. +2003-03-14,40.4166667,-86.8752778,Lafayette,IN,light,1800,1st of 3 sightings from March 2003 to April 2004 - Orange Yellow Lights In Formation +2003-03-14,40.4877778,-86.7613889,Buck Creek,IN,formation,60,One light beacons two another, very bright and condensed, then releases two small lights +2003-03-14,40.4272222,-78.3891667,Hollidaysburg,PA,oval,10800,APPEARED IN THE WEST. OVAL SHAPED WITH ROTATING MUTIPLE COLORS. +2003-03-14,43.3263889,-83.6572222,Tuscola (Area),MI,light,20,Odd Light in the night sky in mid-Michigan +2004-03-14,39.4666667,-87.4138889,Terre Haute,IN,unknown,120,Abducted, studied, scared. +2004-03-14,36.6102778,-88.3147222,Murray,KY,other,240,Globular object surrounded by hazy distortion hovering over Murray, Ky. +2004-03-14,36.0725,-79.7922222,Greensboro,NC,cigar,600,I saw one or two silver, elongated objects moving across the sky and then they just darted away and vanished. +2004-03-14,36.175,-115.1363889,Las Vegas,NV,light,345600,If anyone around us has a chance, this is happening right now! ((NUFORC Note: Venus. PD)) +2004-03-14,33.2,-117.2416667,Vista,CA,triangle,600,three triangle Shaped craft recon behind a hill in vista,ca at night. +2004-03-14,34.7463889,-92.2894444,Little Rock,AR,unknown,3600,Large intensely bright object low in shy some distance away ((NUFORC Note: Venus. PD)) +2004-03-14,37.78,-121.9769444,San Ramon,CA,circle,900,I filmed starry white objects in sky that I believe to be circular UFO's. ((NUFORC Note: Possibly celestial bodies. PD)) +2004-03-14,34.4436111,-118.6086111,Valencia,CA,disk,900,Three horizontally placed lights hovering in the sky, attached to an elliptical object. +2005-03-14,39.9522222,-75.1641667,Philadelphia,PA,triangle,300,buzzing triangular aircafts beams lights and leaving an aura. one very close, beams to the ship +2005-03-14,40.4147222,-74.23,Matawan,NJ,light,3,gigantic light over field +2005-03-14,36.7280556,-76.5838889,Suffolk (City Of),VA,unknown,5,cork-screw contrail, low-boom sound flash. ((NUFORC Note: Possible meteor?? PD)) +2005-03-14,33.7358333,-118.2913889,San Pedro,CA,oval,6,multiple UFO sightings over San Pedro, CA. +2005-03-14,25.7738889,-80.1938889,Miami,FL,light,15,About 6 lights forming one solid light then pulling apart from each other in every direction. +2005-03-14,37.2697222,-81.2225,Bluefield,WV,other,20,dark to light brown "rounded boomerrang" or crescent moon shaped object moves silently overhead. +2005-03-14,31.2516667,-89.8375,Columbia,MS,rectangle,1800,Large ,bright white ,rectangular object hovers in western sky +2005-03-14,31.2516667,-89.8375,Columbia,MS,rectangle,1800,Large craft hovering, with bright clear lights +2005-03-14,39.2461111,-94.4188889,Liberty,MO,light,10,The light moved quickly across the sky to the East. +2006-03-14,34.2977778,-83.8241667,Gainesville,GA,light,1800,Bright white lights over Gainesville, GA, doesn't move for 30 minutes. +2006-03-14,38.8338889,-104.8208333,Colorado Springs,CO,flash,5,Camera like flash of light that lit up the sky followed by a second flash +2006-03-14,42.4286111,-112.1236111,Downey,ID,cigar,900,The silver shiny object. +2006-03-14,34.1363889,-118.7736111,Agoura Hills,CA,formation,10,Three white dots flying across the sky in Agoura Hills, CA +2006-03-14,33.4705556,-95.2136111,Bogata,TX,light,300,Bright orange lights +2006-03-14,39.7844444,-93.0733333,Brookfield,MO,triangle,1200,MISSOURI INVESTIGATORS GROUP Report: Follow-up report of events in Brookfield, MO. No response from witness to alleged event. +2006-03-14,39.7844444,-93.0733333,Brookfield,MO,triangle,1200,While I was driving through town I saw a triangle ufo I got out of my car to look at the object. +2006-03-14,39.7555556,-105.2205556,Golden,CO,circle,40,We saw a bright large white light in the sky that was moving and then disappeared. +2006-03-14,47.2152778,-123.0994444,Shelton,WA,light,60,Bright light being followed by what appeared to be a helicopter. +2006-03-14,41.6055556,-73.9719444,Marlboro,NY,triangle,600,triangle shaped,rounded back,blacklight colored rear window, cast frame construction look from underside,slightly illuminated underneat +2006-03-14,33.0461111,-96.9938889,Lewisville,TX,circle,5,Halo moving at fast speed. +2007-03-14,38.9716667,-95.235,Lawrence,KS,triangle,15,Two Isosceles Triangluar-shaped craft gliding effortlessly. +2007-03-14,40.7141667,-74.0063889,New York City (Queens),NY,circle,3600,I have take down the photo and film for this issue. 500 Lights On Object0: Yes +2007-03-14,30.7997222,-81.69,Kingsland,GA,circle,120,Circular Object with many lights. +2007-03-14,34.0522222,-118.2427778,Los Angeles,CA,disk,30,7/14/07 Craft sighting 10:40 on Sepulveda Blvd near Veterans Cemetary,Los Angeles, partially cloaked and hovering. +2007-03-14,42.6583333,-71.1375,Andover,MA,circle,360,Green circle stayed in clouds moving in a circular formation for 6 minutes at least 250 feet above us +2007-03-14,44.2727778,-121.1727778,Redmond,OR,light,360,Shimmering brilliant light darting and hovering in horizon above butte in Redmond, OR. +2007-03-14,47.3294444,-122.5788889,Gig Harbor,WA,light,1200,Bright light seen over Hail's Passge up close! +2007-03-14,47.3294444,-122.5788889,Gig Harbor,WA,other,1800,Wednesday the 14th of March, 2007. Around 9:15 pm PST.Hail's Passage (Between Gig Harbor Mainland and Fox Island) The area is a fr +2007-03-14,43.6136111,-116.2025,Boise,ID,circle,3600,Very bright changing color circle shape object moving slowly east to west over Boise towards Ontario, I got video but my camera was pro +2007-03-14,36.4883333,-79.7669444,Eden,NC,rectangle,3,Extremely fast moving lights in North Carolina +2007-03-14,27.8002778,-97.3961111,Corpus Christi (Off Shore),TX,light,900,Ufo sighted by ExprssJet Piots and confirmed by the crew of another ExpressJet. +2008-03-14,33.2097222,-87.5691667,Tuscaloosa,AL,other,1500,Egg shaped flashing silent craft flew in front of the moon and 5 more over my house. +2008-03-14,37.6922222,-97.3372222,Wichita,KS,cigar,30,Large object observed during the day over Wichita, KS. +2008-03-14,33.7455556,-117.8669444,Santa Ana,CA,disk,10,2 flying disks over Santa Ana. +2008-03-14,39.7391667,-104.9841667,Denver,CO,other,120,I saw two silver dots in the western sky as the sun was setting both were locked into a single position in the sky and then they were g +2008-03-14,27.7705556,-82.6794444,St. Petersburg,FL,light,5,Light falling directly towards ground from the sky. +2008-03-14,39.4022222,-107.2105556,Carbondale,CO,unknown,15,Giant drill shaped craft crashed, viewed from Highway +2009-03-14,34.4366667,-119.6311111,Montecito,CA,light,60,My boyfriend and I saw a large light moving quickly downwards in the night sky, and then it turned upwards and disappeared. +2009-03-14,26.0625,-80.2333333,Davie,FL,other,6,Dumbell shaped object with 2 bright white lights and a thin line connecting them spotted daytime over Davie Florida +2009-03-14,40.015,-105.27,Boulder,CO,light,900,Light or small object, drifting slowly E-W on a clear afternoon. No sudden maneuvers, flew v. slowly. +2009-03-14,41.85,-87.65,Chicago,IL,sphere,1200,12 spheres spotted over NW Side of Chicago-light colored. Traveled NE. +2009-03-14,27.1188889,-82.4444444,Nokomis,FL,rectangle,1800,It appeared to be a large TV screen with no depth, but having two colors, dull grey and red markings. +2009-03-14,41.835,-87.8227778,Riverside,IL,light,20,light blinks out in front of my eyes +2009-03-14,33.415,-111.5488889,Apache Junction,AZ,light,30,Just wanted to confirm the Queen Creek, AZ sigthing +2009-03-14,33.2486111,-111.6336111,Queen Creek,AZ,other,300,2 connected lights high in the sky receding rapidly until disappearing +2009-03-14,42.8027778,-83.0130556,Romeo,MI,disk,60,Observed low altitude disk and tri-disk shaped object with patterned halo +2009-03-14,38.7725,-112.0833333,Richfield,UT,disk,210,Perfectly round, extremely bright craft appeared over central Utah traveling from south-west to north-east. +2009-03-14,38.6786111,-121.7722222,Woodland,CA,sphere,180,We witnessed an object (orange) move from SW to E across the sky than disapear. 500 Lights On Object0: Yes +2009-03-14,34.4263889,-117.3,Hesperia,CA,light,300,Bright white light in the north eastern sky of Claifornia High Desert,changes to small red light , disapears. +2009-03-14,41.3580556,-93.5572222,Indianola,IA,triangle,3600,triangular flat shaped object,with lights blinking spantaneously. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2010-03-14,44.5647222,-123.2608333,Corvallis,OR,chevron,120,A hovering flashing orange chevron shaped aircraft that then suddenly disappeared. +2010-03-14,36.5552778,-121.9222222,Carmel-By-The-Sea,CA,flash,300,Stationary intermitient flashes +2010-03-14,32.1533333,-90.1311111,Florence,MS,other,60,Dart-like craft emerged from tail of a fireball +2010-03-14,21.3069444,-157.8583333,Honolulu,HI,cylinder,240,Flying Cylinder moving in broad daylight from West to East. +2010-03-14,34.1477778,-118.1436111,Pasadena,CA,changing,1500,White Glowing Object Changing Shape Over Pasadena, CA +2010-03-14,42.0988889,-88.2713889,East Dundee,IL,triangle,20,I clearly saw a triangle craft that glided overhead and changed the electricity of the air, but it was hard to focus on. +2010-03-14,45.6797222,-111.0377778,Bozeman,MT,light,300,Bright light in sky then fades +2010-03-14,47.5002778,-111.3,Great Falls,MT,light,4,2 or 3 orange lights moved from west to east over Great Falls, MT, very fast, silent, March 14/15, 2010 +2011-03-14,37.5958333,-122.0180556,Union City,CA,flash,1,A bright green light zoomed out of the sky and disappeared behind the dark clouds above the hills. +2011-03-14,34.0952778,-118.1261111,Alhambra,CA,fireball,60,It was round and highlighted green with an outer light green layer. Weasel it up close then disappear n within 2 seconds it appeard in +2011-03-14,34.4838889,-114.3216667,Lake Havasu City,AZ,other,45,Orange Orbs on multiple nights and finally a large Mother ship also Orange. +2011-03-14,41.6005556,-93.6088889,Des Moines,IA,other,30,A v shaped formation maybe 20 illuminated dots seen for about 30 seconds and then dissapeared +2011-03-14,32.4580556,-83.7316667,Perry,GA,unknown,10,Bright red light flying low to the ground over a popular interstate. +2012-03-14,42.2208333,-70.9402778,Weymouth,MA,triangle,120,Triangle shaped UFO acting like a lost puppy (hard to explain, read description) +2012-03-14,41.7897222,-69.9902778,Orleans,MA,flash,14400,Standing outside when these different color flashes started. Some would keep the sky lit up for hours. ((NUFORC Note: Stars? PD)) +2012-03-14,42.2172222,-73.865,Catskill,NY,unknown,10800,Strange behaving right and white light observed in sky over catskill. ((NUFORC Note: We suspect a sighting of a celestial body. PD)) +2012-03-14,41.7019444,-70.25,Yarmouth Port,MA,unknown,2,Three "strobe" like flashes at 3:44 am, no sounds. +2012-03-14,44.9747222,-92.7566667,Hudson,WI,other,1200,Lights playing in the clear sky. +2012-03-14,39.7391667,-104.9841667,Denver,CO,sphere,1200,Small bright silver round observation orb hovering and floating about in front of a Colorado beep blue sky regardless of wind atmospher +2012-03-14,39.9936111,-105.0891667,Lafayette,CO,rectangle,120,2 silvery shiny rectangular crafts above Lafayette, CO 2pm 3/14/12 +2012-03-14,30.2669444,-97.7427778,Austin,TX,disk,109800,TWO BRIGHT WHITE LIIGHTS WAVERING IN THE SKY VERY LOW. ((NUFORC Note: We strongly suspect a sighting of Jupiter and Venus. PD)) +2012-03-14,33.7091667,-117.9527778,Fountain Valley,CA,light,1800,At least 3 orange points of light varying in brightness and movement at night lower than Mars +2012-03-14,42.085,-76.0541667,Vestal,NY,fireball,120,Orange-red fireball moving from north to south. +2012-03-14,36.1752778,-80.1533333,Walkertown,NC,formation,180,11 objects with a pinkish tone seen over Walkertown, NC in the southeastern sky on 3-14-2012 20:25 hours +2012-03-14,44.9636111,-93.8469444,Watertown,MN,light,180,Ufo appeared just above mars and continued straight until eventually stopping. +2012-03-14,45.3055556,-93.7938889,Monticello,MN,triangle,10,Triangle shaped object over Monticello, MN +2012-03-14,34.7877778,-82.6925,Liberty,SC,circle,30,It was a bright green light that looked like it was falling +2012-03-14,40.9525,-72.9258333,Rocky Point,NY,sphere,10800,Two sperical lights stat. in the sky for hours at a time. ((NUFORC Note: We strongly suspect a sighting of Jupiter and Venus. PD)) +2012-03-14,42.8863889,-78.8786111,Buffalo,NY,light,900,Orange, slow moving light in Buffalo, NY +2012-03-14,36.3852778,-79.9597222,Madison,NC,light,1800,Small, plain white speck of light smoothly, slowly, and without sound headed directly southeast. Used to seeing planes with blinking li +2012-03-14,46.1286111,-112.9413889,Anaconda,MT,triangle,300,Something Triangle shape with red and white lights circling the ground +2012-03-14,44.0333333,-84.0227778,Sterling,MI,triangle,3,Triangular glow races across Michigan sky on 3-14-2012 at around 11 pm +2012-03-14,43.0944444,-79.0569444,Niagara Falls,NY,formation,10,6 orange lights in formation seen flying north along the Niagara River over the falls at extreme speed +2012-03-14,41.3683333,-82.1077778,Elyria,OH,fireball,60,Basically was out side having a smoke and was walking back to my side door to my home and noticed a fire ball object in the sky moving +2012-03-14,42.1997222,-87.8091667,Highwood,IL,chevron,10,Non-lit craft flying quickly through the sky. Dark gray against the dark blue night sky. +2012-03-14,45.6388889,-122.6602778,Vancouver,WA,disk,1200,2 disc objects with circular haze around them, red, blue and white lights on them. 2ft diameter, hovering 50ft off ground. +2012-03-14,38.8113889,-90.8527778,Wentzville,MO,chevron,30,Five dim blue chevron lights +2012-03-14,41.3305556,-74.1872222,Monroe,NY,flash,5,Ball of light flashing over Monroe, NY. +2012-03-14,42.5916667,-88.4333333,Lake Geneva,WI,chevron,5,Triangular chevron formation of three dim, orange objects--second sighting! +2013-03-14,35.6869444,-105.9372222,Santa Fe,NM,unknown,600,Glowing light illuminates amorphic shape inside doorway of bathroom,as dogs bark at the roof outside.... +2013-03-14,38.2541667,-85.7594444,Louisville,KY,triangle,600,3 hovering triangular shaped craft. +2013-03-14,32.7938889,-79.8627778,Mt. Pleasant,SC,light,3600,10-12 crafts, flashing blue-white. +2013-03-14,41.2794444,-72.8155556,Branford,CT,cylinder,110,Long silver colored cylindrical shaped craft seen over Branford, CT +2013-03-14,32.7833333,-96.8,Dallas,TX,oval,10,White cigar shape with pointed ends +2013-03-14,40.6111111,-111.8991667,Midvale,UT,oval,600,Darkened Oval with 8 to 9 red, orange and yellow beams moving and hovering in the sky. +2013-03-14,32.2216667,-110.9258333,Tucson,AZ,sphere,120,Streaked in like a meteor only to slow down and break into 5-6 orbs, stop, hover 3 sec, dance up and down in the sky +2013-03-14,33.7738889,-117.9405556,Garden Grove,CA,light,5400,Small orbs dif speeds&directionƽbigorbs,lessActivity. 2 LARGE crafts,scaled sky dominantly & reappeared only a few times +2013-03-14,42.0316667,-95.0458333,Arcadia,IA,fireball,180,Bright Orange Fireball near Arcadia, Iowa +2013-03-14,43.7730556,-88.4469444,Fond Du Lac,WI,sphere,1800,Orange/red glowing orbs moving in procession over Fond du Lac, WI. +2014-03-14,33.7738889,-117.9405556,Garden Grove,CA,diamond,2100,Looks like an a/c with white light brighter and bigger than a star been seeing it for almost a month. ((NUFORC Note: Venus. PD)) +2014-03-14,29.6513889,-82.325,Gainesville,FL,rectangle,120,The object hung suspended in the sky, a huge rectangle, at a diagonal angle. Dark grey in color with dull green lights at the points. +2014-03-14,40.8963889,-78.2208333,Philipsburg,PA,triangle,2400,My wife noted a strange object hovering to the east of our residence. She called me to the window to see it. It was several hundred y +2014-03-14,43.1547222,-77.6158333,Rochester,NY,unknown,300,4 white lights rotating in the sky,right within the clouds. +1946-03-15,27.7519444,-98.0694444,Alice,TX,disk,20,An extremely noisy disc. +1957-03-15,34.0522222,-118.2427778,Los Angeles,CA,formation,900,I was 11 years old and my family and I were at a kite flying contest in a park . About 7 silver saucer shaped ships hovered over the pa +1957-03-15,34.0522222,-118.2427778,Los Angeles,CA,disk,900,There were about 5-7 saucers, gray color in a V shape form, a mass sighting of about 200 or more people. +1962-03-15,39.6288889,-84.6486111,Camden,OH,sphere,600,Large "sphere" shaped object sighted hovering with an up and down motion. +1963-03-15,47.4363889,-122.3394444,Normandy Park,WA,cylinder,300,Pencil-like objects seen flying over the water. +1965-03-15,33.5213889,-84.3538889,Jonesboro,GA,disk,300,flat transparent disk rolling end over end, across the clear blue sky, northeast to southwest +1965-03-15,44.551944399999996,-69.6322222,Waterville,ME,egg,600,i dont remember going to my room but when i woke up i went to the site at the end of the drive hidden by the high pile of snow and ther +1966-03-15,39.6461111,-75.8719444,Childs,MD,circle,20,we were driving down the road i look up to the sky, sun was out but,there was some clouds around, a big round silver shape was comeing +1966-03-15,42.1097222,-86.48,St Joseph,MI,light,300,3 bright lights over Lake Michigan late 1960s +1967-03-15,31.4636111,-100.4366667,San Angelo,TX,circle,3600,Why would the Air Force sent a photo-recon jet to look at a weather balloon? +1967-03-15,41.2425,-82.6158333,Norwalk,OH,cigar,120,Grey Banana W/O lights or sound +1969-03-15,48.9391667,-119.4344444,Oroville,WA,cross,120,3 to 4 ft long,gun metal color,very load shook home and us,could sit still above us,was seen two years +1969-03-15,35.2325,-97.2122222,Little Axe,OK,cigar,60,Object, time loss, body marks, +1972-03-15,34.8061111,-106.7327778,Los Lunas,NM,unknown,1200,What I saw shone a light like I have never seen before or since and aerodynamic capabilities beyond what we have. +1972-03-15,30.1586111,-85.6602778,Panama City,FL,sphere,300,Sphere Lights up, goes out intermittently, silent, fast, came close, 5 minutes watching +1972-03-15,42.5819444,-72.4930556,Millers Falls,MA,unknown,120,Alien sighting +1973-03-15,42.2941667,-83.31,Inkster,MI,fireball,300,I watched a ball of fire, as it flew at a sustained altitude, across the sky going east to west +1973-03-15,41.7636111,-72.6855556,Hartford,CT,triangle,120,wedge shaped objects flying in formation over hood of car at dusk while driving on highway. +1974-03-15,34.2327778,-89.3622222,Tula,MS,circle,1800,Round disk seen in field across from home in the 70's. +1974-03-15,41.3533333,-75.7386111,Moosic,PA,circle,1800,Buzzed by UFO +1974-03-15,38.4405556,-122.7133333,Santa Rosa,CA,disk,7200,The size of the object and it's perfect detail left us with no doubt of what we were seeing. +1975-03-15,38.8791667,-97.5055556,New Cambria (2 Miles Se Of),KS,rectangle,3600,SPRING 1975 - Central Kansas - 2 Aliens +1975-03-15,46.67,-120.7111111,Cowiche,WA,circle,180,Yakima UFO in 1975 +1976-03-15,38.6822222,-104.7002778,Fountain,CO,disk,60,Stationary lit object hovered above trees. +1976-03-16,26.8197222,-80.6655556,Pahokee,FL,oval,900,Rapidly moving oject travels south, pause, goes north, and exits atmosphere, seen a shooting star. +1977-03-15,33.9166667,-117.8991667,Brea,CA,formation,7,Night-time flight of lights changes formation suddenly. +1978-03-15,46.7588889,-114.08,Lolo,MT,light,180,The animals were in terror. +1979-03-15,47.7544444,-122.1622222,Woodinville (N.e. 189th Street),WA,light,60,In 1979, a large circular light was seen over the neighbors house behind N.E. 189th Street in Woodinville. +1980-03-15,42.3625,-71.3619444,Wayland,MA,light,30,Bright yellow light accelerates above road in Wayland, MA to a high speed noiselessly. +1980-03-15,43.2080556,-71.5380556,Concord (North Of),NH,other,10,Multiple Neon Green Objects Flying In Formation +1980-03-15,38.7508333,-77.4755556,Manassas,VA,disk,10,Witnessed 15 disks flying directly west into the setting sunlight +1981-03-15,34.8480556,-114.6133333,Needles,CA,disk,1800,Approximently early 1980- 1981 I was climbing the mountains west Needles CA. I heard over a CB radio that a ball of fire was coming ac +1984-03-15,33.2466667,-84.2641667,Griffin,GA,circle,7894800,7 large yellow lights with red center estimated by distance to be at least 400 feet across, seen form top of hill just above tree line +1984-03-15,38.0033333,-79.1561111,Greenville,VA,triangle,1200,Seen 6 bright objects flying over mountains behind our house in v shape formation +1985-03-15,40.6833333,-96.2694444,Unadilla,NE,cigar,20,Cigar shaped object flying above cirrus clouds +1986-03-15,26.4611111,-80.0730556,Delray Beach,FL,disk,900,Saucer with white gassy bottom approaches beachgoers at night and zips in, and zips away...silently. +1986-03-15,31.8055556,-81.4308333,Midway,GA,light,2,Blue light in clear sky with unbelievable speed +1987-03-15,33.5091667,-111.8983333,Scottsdale,AZ,light,180,Bright light takes off into the skys over Scottsdale, AZ in 1987 +1988-03-15,34.9247222,-81.0252778,Rock Hill,SC,circle,600,Rock Hill, SC - 1988- circle of flashing lights slowly appeared, one light at a time, then, flashing faster and faster, zoomed out of s +1988-03-15,41.0252778,-90.2797222,Wataga (Near),IL,disk,300,SAUCER SHAPED UFO WITH DOME ON TOP.STOPPED IN FRONT OF MY CAR.HOVERED FOR SEVERAL SECONDS.THE OBJECT MADE A GREENISH BLACK BOILING CLOU +1988-03-15,35.5280556,-108.7419444,Gallup (~10 Miles West Of On I-40),NM,cylinder,60,Driving west on I-40 just after dark, saw lights strobing over median of hwy. Thought it might be a helicopter, but there was no noise +1989-03-15,36.1538889,-95.9925,Tulsa,OK,rectangle,300,Witnessed with a friend, a large, rectangular object hovering at sundown in Tulsa Oklahoma. +1989-03-15,37.8011111,-78.7558333,Rockfish,VA,triangle,900,Triangle up close. Uncharacteristic thoughts in my mind. +1989-03-15,34.1013889,-84.5194444,Woodstock,GA,circle,10,Dark circular low flying object near Woodstock Ga +1990-03-15,35.7563889,-83.9705556,Maryville,TN,other,1,dark boomerang shaped object with lights evenly spased all the way around the inside and outside edges +1990-03-15,31.6591667,-97.4719444,Valley Mills (Near),TX,oval,180,Enormous, oval shaped object, hovering over a field-it had lights that were like no other type of lights I've seen. +1990-03-15,57.0530556,-135.33,Sitka,AK,light,120,Bright white light with some blue and possibly red. Traveled left to right in the night sky in an up and down zig zag type movement. +1990-03-15,35.5952778,-77.5855556,Farmville,NC,disk,1800,It blacked out a large part of stars in sky...Huge!--black--silent--low flying--slowly over downtown--almost covered downtown(some 10-1 +1990-03-15,37.3852778,-122.1130556,Los Altos,CA,unknown,300,a grouping of white lights surrounded by haze, floodlight shining down, no sound +1990-03-15,42.6827778,-89.0186111,Janesville,WI,light,2700,close encounters several events 20 yrs apart +1992-03-15,27.9472222,-82.4586111,Tampa,FL,disk,600,UFO Saucer was seen hovering beyond trees as we were driving towards home and then disappeared. +1993-03-15,32.8138889,-96.9486111,Irving,TX,other,60,Yellow light that made a fast, sharp angle turn up through clouds. +1993-03-15,30.5080556,-97.6786111,Round Rock,TX,light,14400,SAW 3 BLINKING / JUMPING LIGHTS FOR MORE THAN 3 HOURS +1993-03-15,34.2572222,-118.6002778,Chatsworth,CA,triangle,45,BIG, black traingle shape with red lights at each point, quietly & slowly flew above/by me in LA area ྘/ྙ +1994-03-15,36.8252778,-119.7019444,Clovis,CA,light,300,Beam of Light near Strawberry Field +1994-03-15,36.0041667,-120.1280556,Avenal,CA,unknown,3000,my wife and I were at a ranch late at night talking with friends about 4 or 5 miles from avenal , When we notice several small lights z +1994-03-15,34.4605556,-86.2333333,Columbus City,AL,cylinder,3,Large Black Cylinder Flies Above Mountain Lakes Near Guntersville, Alabama +1994-03-15,35.6008333,-82.5541667,Asheville,NC,disk,1800,Seen craft very close hovering over telephone poll not moving or making a sound. +1995-03-15,38.8119444,-77.6366667,Haymarket,VA,sphere,600,UFO spotted jumping in the sky near Dulles Airport in Virginia +1995-03-15,29.4238889,-98.4933333,San Antonio,TX,fireball,10,Sometime in March, 1995, at 0630, facing west, l saw a large fireball move very fast from south to north, changing colors as it moved +1995-03-15,41.3947222,-73.4544444,Danbury (Near; Carmel Vor),CT,chevron,5,Boomerang shaped object approached our aircraft, reamained stationary overhead, and quickly dissapeared in vertical climb until no long +1995-03-15,34.0922222,-117.4341667,Fontana,CA,light,5,Object traveling high speed from an westerly to a southerly direction at a 90 degree angle. No disruption in speed. +1995-03-15,42.6072222,-83.9294444,Howell,MI,triangle,1200,On a night now known as "sightings night" I had just gotten home,and got out of car I saw a UFO fly about 20-25 feet over my head. +1996-03-15,47.6588889,-117.425,Spokane,WA,flash,120,Falling star turns into flash, then flash goes away, then in a total different direction what looked like a satellite goes out of site, +1996-03-15,38.3269444,-122.7061111,Cotati,CA,sphere,120,Small, clear orb that floated up the hood of our car and up the window without changing shape or being affected by engine heat. +1996-03-15,41.7141667,-72.6530556,Wethersfield,CT,disk,50,Two F-15's or F-16's, couldn't tell the engine set-up, followed a silver object over Wethersfield from South to North (toward Hartford) +1996-03-15,29.7630556,-95.3630556,Houston,TX,changing,900,I WAS WALKING OUT MY BACK DOOR AND LOOKED UP AND SAW A SHAPE MOVING FROM SOUTH TO NORTH ABOUT AS FAST AS A SMALL PLANE, IT WAS CHANGING +1997-03-15,42.2916667,-85.5872222,Kalamazoo,MI,flash,2,Immense red flash like a very bright red lightning flah. It lit up the whole sky, the ground and my truck. It traveled from the groun +1997-03-15,47.7544444,-122.1622222,Woodinville,WA,triangle,30,Perfect triangle red & green light each tip. Teardrop like cutouts in each wing. A raised diamond shape in front. Moved very slowly for +1997-03-15,38.8422222,-106.1305556,Buena Vista,CO,oval,600,White oval with gold light/energy over mountain in daylight +1997-03-15,25.7738889,-80.1938889,Miami,FL,light,240,a beam of light came out from this super light. +1997-03-15,32.7152778,-117.1563889,San Diego,CA,disk,900,UFO seen at Camp Pendleton, San Diego, CA. +1997-03-15,46.0927778,-88.6422222,Iron River (17 Miles West Of),MI,light,1200,I was at our cabin with one of my friends, and we saw two white lights zip through the woods at nighttime. +1997-03-15,38.8808333,-77.3011111,Oakton,VA,delta,15,I saw two large bright round white lights moving forward together but keeping the same distance apart. Then the two lights changed dir +1998-03-15,33.3941667,-104.5225,Roswell,NM,triangle,60,We were traveling north on US285 about 35 miles north of Roswell NM. A large triangular shaped craft appeared seemingly from nowhere a +1998-03-15,40.275,-106.9577778,Oak Creek,CO,light,120,I was driving to catch a flight at Denver International and had at least a three hour drive. I was driving down County Road 14 to Stat +1998-03-15,34.9888889,-90.0125,Southaven,MS,disk,1200,My Grandmother and I were going home on Hwy 51 in Southaven, MS when I saw a flying disk, metalic in nature move through the sky. +1998-03-15,38.5458333,-106.9247222,Gunnison (30 Miles Ne Of),CO,disk,30,Daylight sighting while ice fishing on a lake in South Western Colorado. +1998-03-15,64.7511111,-147.3494444,North Pole,AK,sphere,90,Red orb, blue orb...similar to the Marfa Lights +1998-03-15,61.2180556,-149.9002778,Anchorage,AK,oval,900,Driving home after daughters birthday, noticed light ascending from over top of mountain range. Stopped to watch, for it emitted great +1998-03-15,41.3947222,-73.4544444,Danbury,CT,cylinder,5,A hazy object hidden in clouds just all of a sudden dissapeared. +1998-03-15,36.0725,-79.7922222,Greensboro,NC,light,600,color changing light that made no engine noise and dissappeared in a clearsky +1998-03-15,35.3111111,-120.8313889,Los Osos,CA,sphere,60600,Possible UFO abduction, +1998-03-15,38.8341667,-88.7722222,Farina,IL,fireball,1200,((HOAX??)) Flaming eyeball floats across the horizon then a glow in sky makes a streak above us in a 60* angle +1999-03-15,36.1658333,-86.7844444,Nashville,TN,light,300,Pure pulsating light, moved strangely in the sky, best described is like the minute hand on a clock, you can't see it move but you know +1999-03-15,32.0033333,-80.9738889,Wilmington Island (Savannah),GA,fireball,9,It was a red ball of light that didnt move. +1999-03-15,38.4325,-82.0202778,Hurricane,WV,unknown,300,Slow moving, green lights, huge object. Sunnybrook Rd. area, but could be seen for miles. +1999-03-15,31.0236111,-87.4938889,Atmore,AL,light,600,BRIGHT STAR CHARACTERISTIC IN FIXED POSITION THEN IT MOVED STRAIGHT UP INTO THE AIR AS IT DID SO THE LIGHT WENT OFF & A RED & GREEN LIG +1999-03-15,40.7141667,-74.0063889,New York City (Bronx),NY,circle,300,there it was two round circles gliding across the sky heading west toward manhattan college. +2000-03-15,32.5838889,-117.1122222,Imperial Beach,CA,light,30,I was walking along the beach and I saw a bright light comming from the coast of Tijana B.C. Mexico. +2000-03-15,28.5388889,-80.6722222,Merritt Island,FL,sphere,300,UFO sighting near Kennedy Space Center 2000 +2000-03-15,42.375,-70.9833333,Winthrop,MA,changing,50400,The strang multicolored object was up in the sky changing shape. It would occasionally give off a bright flash of light. +2000-03-15,43.1008333,-75.2330556,Utica,NY,disk,120,Two black disks chashing an airforce jet traveling at aprox. mach speed. One disk stayed with the jet, while the other stayed low, and +2000-03-15,39.0169444,-94.2813889,Blue Springs,MO,changing,45,Black box standing still about 100 feet above the trees with 4 large antennas (possibly) +2000-03-15,37.4027778,-104.6527778,Aguilar,CO,rectangle,600,two metallic boxes connected by a cylinder witnessed near Aguilar, Colorado +2000-03-15,40.015,-105.27,Boulder,CO,diamond,50400,Convoy of crafts came from the ground one at a time, looked like airplanes at nightfall. +2000-03-15,46.9422222,-122.6047222,Yelm,WA,disk,300,I saw one large oval disc with white and blue lights at night. +2000-03-15,36.0155556,-82.1588889,Bakersville,NC,light,30,Very unique and phenominal +2000-03-15,40.4897222,-81.4458333,New Philadelphia,OH,light,1200,Light moving irratic in the sky. +2000-03-15,45.5236111,-122.675,Portland,OR,oval,5,20 foot, Tan, Oval object covers exspance of the visible sky in 5 seconds>No noise +2000-03-15,39.4822222,-89.1936111,Owaneco,IL,unknown,60,It flew up, then shot up, and flew at a high rate of speed to the north +2001-03-15,44.98,-93.2636111,Minneapolis,MN,changing,180,Dark object seen in early morning sky , vanishes. +2001-03-15,31.9677778,-110.2938889,Benson,AZ,cigar,15,White cigar-shaped object flew straight into mountains and between peaks without stopping +2001-03-15,33.3527778,-111.7883333,Gilbert,AZ,flash,120,just a Bright white light not a normal airplane light +2001-03-15,35.4675,-97.5161111,Oklahoma City,OK,triangle,420,The 3 Capitol Lights +2001-03-15,48.1988889,-122.1238889,Arlington,WA,fireball,15,I saw lights over Mt. Baker +2001-03-15,37.775,-122.4183333,San Francisco (Golden Gate Bridge),CA,other,10,Military Fly By in San Francisco Bay +2001-03-15,37.3394444,-121.8938889,San Jose,CA,changing,120,Elongated, ablong, all black object floating end-over-end and quickly accelerating out of view to S. San Jose. +2001-03-15,33.5975,-112.2711111,Sun City,AZ,chevron,240,Video on bright amber lights in Flight Path of Luke Air Force base 03/15/2001 +2001-03-15,44.5111111,-92.3563889,Frontenac,MN,unknown,15,Soundless fast moving craft with red pulsing light on bottom +2001-03-15,39.7994444,-88.4622222,Atwood,IL,unknown,120,something overhead causes house to shake +2002-03-15,30.4211111,-87.2169444,Pensacola,FL,disk,60,Pensacola Florida sighting of light shiny disk object in March 2002 +2002-03-15,26.7052778,-82.1591667,Bokeelia,FL,oval,20,I enroute to Cayo Costa State Park via the inter-island ferry service. During the trip I was casually observing the scenery, not really +2002-03-15,36.7069444,-97.0852778,Ponca City,OK,changing,180,Object tailing military jet +2002-03-15,33.6633333,-116.3091667,La Quinta,CA,other,1800,Strange jet-trail-like thing sighted over mountains +2002-03-15,36.175,-115.1363889,Las Vegas,NV,circle,240,white light in a cloud like form (but no clouds) moving slowly East and than disinigrated +2002-03-15,34.54,-112.4677778,Prescott (Near; Hwy 89),AZ,other,21600,strange cloud plumes over the northern desert sky +2002-03-15,36.175,-115.1363889,Las Vegas,NV,light,30,Crazy light in the sky disentegrates +2002-03-15,34.0522222,-118.2427778,Los Angeles,CA,fireball,240,Hello, I am a recent engineering graduate from USC. I live near University of Southern California (USC). I witnessed a very strange +2002-03-15,36.0544444,-112.1386111,Grand Canyon (Unsure, On Route 66 Heading To The),AZ,triangle,120,3/15/02, Arizona, triangular light leaving zig zag vapor which turned into rainbow light +2002-03-15,35.1894444,-114.0522222,Kingman (Outside Of),AZ,cylinder,3600,Flash of light, sky opened-circular cloud like forms-lights on the horizon around Kingman/Laughlin area through the dam area +2002-03-15,40.3916667,-111.85,Lehi,UT,changing,600,It was leaving a thick trail of smoke, steam or exhaust and was illuminated with white and red lights and making no noise. +2002-03-15,33.5386111,-112.1852778,Glendale,AZ,circle,60,Lighted object vaporized in a cloud of "fog" before my eyes. +2002-03-15,33.4483333,-112.0733333,Phoenix,AZ,fireball,60,Large zig zagging light West of South Mountain, Arizona +2002-03-15,32.7252778,-114.6236111,Yuma,AZ,light,600,Something that looked like a rocket, very bright, flying into the sky and then disappearing. +2002-03-15,39.66,-75.0925,Clayton,NJ,light,1200,we saw lights in a cloud +2002-03-15,35.5280556,-108.7419444,Gallup,NM,light,300,Strange star-like object emits lights from sky. +2002-03-15,31.9972222,-102.0775,Midland,TX,oval,180,Unidentified oval shape object seen in Texas +2002-03-15,36.2597222,-86.6477778,Old Hickory,TN,diamond,2,It was a black, diamond/kite shaped craft. +2002-03-15,26.5625,-81.9497222,Cape Coral,FL,oval,180,Low flying oval shaped craft with red & green lights +2002-03-15,28.0391667,-81.95,Lakeland,FL,egg,30,bright egg shaped object,no trail. +2003-03-15,37.0113889,-95.935,Caney,KS,disk,2700,my friend said, "WHAT THE HELL IS THAT!!" We all looked to the right of the car.... +2003-03-15,40.345,-74.1844444,Holmdel,NJ,fireball,1,Fireball at 5ꯠ feet, covered 5 miles in a second, went into cloud, lite the cloud up and diappeared. +2003-03-15,33.8025,-117.9922222,Stanton,CA,fireball,900,slow moving orange fireball +2003-03-15,36.1658333,-86.7844444,Nashville,TN,circle,7200,Circle formations in Clouds above Nashville TN. +2003-03-15,39.8027778,-105.0869444,Arvada,CO,egg,120,I was standing on my back deck at about 11:30am today and was watching a jet fly over my house. In a blue, cloudless sky I saw another +2003-03-15,40.1447222,-84.2425,Piqua,OH,sphere,300,appeared ,moved very fast, lost altitude, vanished. +2003-03-15,33.7125,-115.4013889,Desert Center (Near),CA,unknown,900,THE LIGHT WAS VERY LARGE, LIKE A SMALL FULL MOON. THINLY POPULATED AREA !! +2003-03-15,35.9827778,-86.5186111,Smyrna,TN,light,10800,Bright light in SW sky, colors flashed in full spectrum rapidly, like a police light, but included every color in rainbow, RGB colors +2003-03-15,43.6727778,-84.3805556,Sanford,MI,rectangle,20,yellow orange ball of light traveling horizontally around 100-200 mph appx. 1000-2000 feet above tree top level, no red or green lights +2003-03-15,36.8663889,-83.8888889,Barbourville,KY,light,2700,a small object flashing red blue and green +2003-03-15,38.9180556,-78.1947222,Front Royal,VA,light,7200,Strange lights were hovering above the valley,they remained in the same location for over an hour tonight. +2004-03-15,41.42,-73.955,Cold Spring,NY,unknown,300,black rainey nite,craft 300 feet long, could only see white window lites with a fuzzy white lite front & back,no noise very slow +2004-03-15,32.5630556,-97.1413889,Mansfield,TX,light,600,Driving home this weird light was trippy. +2004-03-15,37.5841667,-122.365,Burlingame,CA,oval,1200,Daylight sighting of squashed football shaped, silver object just above tree tops in heavily traveled area. +2004-03-15,44.0805556,-103.2305556,Rapid City,SD,triangle,480,It hovered until we stopped like it was waiting for someone to see it. +2004-03-15,35.4675,-97.5161111,Oklahoma City,OK,circle,600,Oklahoma City UFO +2004-03-15,42.1013889,-72.5902778,Springfield,MA,fireball,12,Slow moving "falling satr" at 30 degree angle west to east +2004-03-15,39.6619444,-75.5666667,New Castle,DE,circle,120,Two white lights traveling at a very fast speed. +2004-03-15,41.7,-71.4166667,West Warwick,RI,egg,15,IT WAS A CLEAR NIGHT AND A EGG SHAPED OBJECT WITH A LUMUNOUS GLOW BEHIND IT WENT HORIZONTALLY ACROSS THE SKY FROM WEST TO EAST +2004-03-15,41.9655556,-71.675,Harrisville,RI,light,5,light shoots straight arcross sky in about 5 seconds +2004-03-15,40.0377778,-76.3058333,Lancaster,PA,light,12,Fast white light horizon to horizon 10 seconds flat +2004-03-15,39.7763889,-74.8627778,Jackson,NJ,other,10,2 people saw strange comet shaped lights in the sky traveling at unusual speeds and proximity to earth +2004-03-15,40.8577778,-74.4263889,Parsippany,NJ,triangle,90,Flying triangle spotted in new jersey +2004-03-15,38.2972222,-122.2844444,Napa,CA,triangle,10,It was a triangle shape with 5 white lights and it made a sound like hi-tech jet. +2005-03-15,44.6683333,-67.4644444,Kennebec,ME,light,300,my friend and i saw one hovering near them in a blueberry field +2005-03-15,37.2152778,-93.2980556,Springfield,MO,teardrop,5,Only saw it for several seconds +2005-03-15,43.1044444,-74.2652778,Mayfield,NY,light,60,Strange lights over Mayfield +2005-03-15,40.4947222,-81.2430556,Sherrodsville,OH,light,7200,Unexplained light in the sky. +2005-03-15,33.7738889,-117.9405556,Garden Grove,CA,teardrop,120,it sound like plane, color orange, and spark with the sun, also with out wings, and faster then any plain I know. +2005-03-15,29.8830556,-97.9411111,San Marcos,TX,rectangle,1800,two interrelated objects larger rectangle and rotating cube on one end changes shape, speed direction gas filled +2005-03-15,39.7597222,-121.6208333,Paradise,CA,cigar,900,a white "contrail" fixed in size, shape and consistency. +2005-03-15,39.0638889,-108.55,Grand Junction,CO,other,1200,silver elongated clam shaped craft over grand junction, colorado +2005-03-15,34.1141667,-116.4313889,Yucca Valley,CA,unknown,10800,object hovered,one object disappeard,another seemed to come after the original,which left at high rate of speed. ((Sirius??)) +2005-03-15,34.0605556,-86.7675,Hanceville,AL,triangle,10,Pink trianglular shaped UFO/lights off of I-65 in Alabama. The object(s) were in a field on the west side. +2005-03-15,36.175,-115.1363889,Las Vegas,NV,other,240,it came above us twice,in the same pattern in a matter of seconds. +2005-03-15,43.4577778,-88.8372222,Beaver Dam,WI,circle,5,There were 2 milky white objects, flying silently, extremely fast, and very low that crossed paths and then vanished. +2005-03-15,40.3777778,-76.6466667,Grantville,PA,light,300,A bright lights bursts into 4 or 5 other lights then dissappears. +2006-03-15,40.6588889,-74.3477778,Westfield,NJ,light,3600,2 bright lights in the sky that was comming and going ,up and down and stoping and left to right. +2006-03-15,34.9702778,-78.9455556,Hope Mills,NC,changing,3600,See emailed photos +2006-03-15,42.7533333,-84.7463889,Grand Ledge,MI,triangle,20,At 10:15 on a clear night a triangular craft with white lights in the corners and a red light in the center flew through the sky. +2006-03-15,45.5236111,-122.675,Portland,OR,triangle,50,Large triangle craft daytime ,over Portland, Or.strange manuvers black-ish very fast. +2006-03-15,45.5236111,-122.675,Portland,OR,triangle,6,3-5-06, over portland daytime- huge triangle shape craft- defied gravity ,changed shape ,lightning fast. +2006-03-15,40.5866667,-122.3905556,Redding,CA,fireball,2,While driving I saw a ball of fire in the sky like a flash and noticed whittnesses. +2006-03-15,41.0130556,-74.2647222,Oakland,NJ,triangle,900,Daylight sighting late afternoon on the "Ides of March"...from Route 208, Bergen County.... +2006-03-15,47.8108333,-122.3761111,Edmonds,WA,triangle,420,Triangle craft seen in Edmonds +2006-03-15,38.5705556,-88.4655556,Rinard,IL,light,600,two rows of amber-orange lights in sky +2006-03-15,41.6611111,-72.78,New Britain,CT,triangle,240,saw a silent, huge, black, triangle shape object floating and flying in the sky with lights +2006-03-15,40.5141667,-88.9905556,Normal,IL,triangle,180,Triangular Space craft hovering over Normal, IL +2006-03-15,38.8902778,-77.0844444,Arlington,VA,light,3,Dazzling bright white oval light falls from sky in Arlington, Virginia +2006-03-15,39.9611111,-82.9988889,Columbus,OH,disk,1800,huge saucer seen hovering and flying very low which made no noise +2006-03-15,38.9536111,-94.7333333,Lenexa,KS,light,5,A blue light that fell out of the sky. +2006-03-15,40.7966667,-81.5216667,Massillon,OH,teardrop,600,Humming noise with light. +2006-03-16,38.175,-122.2597222,American Canyon,CA,cylinder,300,coming home from work one day in march. i pulled into my mother's mobil home park, in american canyon ca. came around the corner, and +2007-03-15,32.8794444,-111.7566667,Casa Grande,AZ,other,45,Distortion crosses starlit skies. +2007-03-15,29.7630556,-95.3630556,Houston,TX,teardrop,900,Teardrop,fast,lights,ufo,balcony,house,dissapeared,strange,unidentified flying object +2007-03-15,32.2216667,-110.9258333,Tucson,AZ,circle,900,typical saucer shaped craft Stationery in the sky appearing to be watching military air show. +2007-03-15,38.7422222,-108.0683333,Delta,CO,cone,1200,Spotting two UFO's at night, one landing the other taking off, plus one other on the ground the very next day. +2007-03-15,37.2152778,-93.2980556,Springfield,MO,triangle,4,MISSOURI INVESTIGATORS GROUP Report: Man witnesses a "triangle box-shaped" object fly over prison area. +2007-03-15,42.3266667,-122.8744444,Medford,OR,light,5,Green/Blue Colored Lights fall from the sky in same location nearly twice a week around same time. +2007-03-15,33.426944399999996,-117.6111111,San Clemente,CA,light,420,Two orange dancing lights near San Onofre nuclear reactor +2007-03-15,36.4797222,-121.7313889,Carmel Valley,CA,oval,3,Sighting of Similar UFO as Posted on AOL "Did UFO Visit Peace Rally?" +2007-03-15,34.8297222,-82.6016667,Easley,SC,unknown,300,Stationary object moved rapidly away, then back to original spot, then vanished +2007-03-15,42.0347222,-93.6197222,Ames,IA,other,300,Two white spheroids merged together while remaining distinct and hovered at a distance before disappearing after five minutes. +2008-03-15,38.4222222,-83.7338889,Flemingsburg,KY,sphere,60,orb, floating lighted. ((NUFORC Note: Object close to camera, illuminated by flash. Not a UFO. PD)) +2008-03-15,27.2436111,-80.83,Okeechobee,FL,unknown,180,flame flying thought the air then disapire +2008-03-15,30.3933333,-86.4958333,Destin,FL,light,1500,I HAVE A HOUSE ABOUT 200YDS OF THE THE GULF COAST, I WAS STANDING ON MY BALCONY THAT FACES THE OCEAN AND I OBSERVED TO ODD CRAFTS ..... +2008-03-15,25.7738889,-80.1938889,Miami,FL,other,120,Squared Smile Shaped object flying really close to the ground and also very slow thru kendal area. +2008-03-15,26.7052778,-80.0366667,West Palm Beach,FL,fireball,30,Fireball explodes in West Palm Beach night sky +2008-03-15,26.1219444,-80.1436111,Ft. Lauderdale,FL,light,240,red ball of light with orange tail then vanshed +2008-03-15,34.2419444,-117.2847222,Crestline,CA,sphere,600,Small metallica white spherical craft in Southern California. +2008-03-15,36.0997222,-80.2444444,Winston-Salem,NC,triangle,180,red white and blue lights rippling black on the bottom huge!! +2008-03-15,33.3702778,-112.5830556,Buckeye,AZ,circle,15,03/15/08 Buckeye, AZ. Round 15 sec. Flat black +2008-03-15,32.2216667,-110.9258333,Tucson,AZ,fireball,2,Large, glowing, floating, red fireball/orb spotted in the sky for a very short time before it disappeared. +2008-03-15,47.7758333,-117.545,Nine Mile Falls,WA,fireball,120,Observers: Adult mother of 20 year old son, notices 8-9 very bright red orange lights moving around, in group then move positions, 2 +2008-03-15,34.9680556,-80.0769444,Wadesboro,NC,formation,120,7 Red lights in a straight line they were there no noise no movement and were gone +2008-03-15,33.4483333,-112.0733333,Phoenix,AZ,light,2,Green light in night sky moving incredibly fast over Phoenix Arizona 031508 22:40 hrs. +2008-03-15,40.5983333,-124.1561111,Fortuna,CA,sphere,300,Bright, low flying orange craft drops several orange orbs before vanishing. +2008-03-15,38.8947222,-81.9336111,Letart,WV,light,2400,Bright light appeared and lost time now having weird dreams +2008-03-15,39.1619444,-84.4569444,Cincinnati,OH,rectangle,180,low flying, slow moving retangular object making a low rumbling noise. +2009-03-15,43.1547222,-77.6158333,Rochester,NY,fireball,240,Two bright orange balls of light that moved quickly around each other, then suspended, then slowly, one by one, disappeared from view +2009-03-15,47.6105556,-122.1994444,Bellevue,WA,other,45,Two slow-moving very low altitude bright white lights about 20 feet apart undergoing rigid motion make a close approach. +2009-03-15,34.8697222,-111.7602778,Sedona,AZ,light,180,this morning i walked my dog outside and i looked up as i always do looking for ufos because i see them here in sedona az about once or +2009-03-15,44.3105556,-69.78,Augusta,ME,light,60,Super fast white light that turned red and disapeared. +2009-03-15,41.0441667,-83.65,Findlay,OH,oval,180,Orange white object over northwest ohio. +2009-03-15,35.0427778,-120.475,Nipomo,CA,light,120,A very big white light traveling very fast for 2 minutes then disappearing into thin air. +2009-03-15,26.0027778,-80.2241667,Pembroke Pines,FL,unknown,1800,bright cloud and a bright trail of a falling object. ((NUFORC Note: Possibly the launch of the Space Shuttle?? PD)) +2009-03-15,33.9533333,-117.3952778,Riverside,CA,light,30,Bright blue-white round object moving south to north, very fast +2009-03-15,35.2827778,-120.6586111,San Luis Obispo,CA,circle,180,03-15-09 ROUND VENSUS SIZE OBJECT MOVING SOUTH TO NORTH JOGING EAST TO WEST +2009-03-15,41.6347222,-84.9994444,Angola,IN,formation,2,4 lights flying in formation +2009-03-15,33.4483333,-112.0733333,Phoenix,AZ,triangle,60,The Phoenix Lights, 17 Years Later. +2009-03-15,40.9169444,-72.6625,Riverhead,NY,other,60,Huge V shaped object with yellow lights and no sound surrounded by a hazy fog +2009-03-15,41.4244444,-91.0430556,Muscatine,IA,triangle,20,Triangle object with 4 white lights silently flys through the sky very low to the ground. +2009-03-15,34.0194444,-118.4902778,Santa Monica,CA,other,120,Odd transparantly orange objects over L A early in 2009 +2010-03-15,35.0808333,-106.3875,Tijeras (South Of, On Hwy S.14),NM,rectangle,300,football field size and shape silent craft floating by over S.14 +2010-03-15,34.2419444,-117.2847222,Crestline,CA,disk,120,Bright UFO between 2 jets +2010-03-15,37.6391667,-120.9958333,Modesto,CA,rectangle,420,Blue Neon Light appeared and vanished while hovering over North West Modesto, California +2010-03-16,30.4211111,-87.2169444,Pensacola,FL,light,300,Dividing Lights Over Pensacola Beach +2011-03-15,41.5008333,-90.4441667,East Moline,IL,disk,300,2 glowing amber disks fly slowly overhead in different directions. +2011-03-15,61.5311111,-166.0966667,Hooper Bay,AK,unknown,300,I observed an aircraft flying above our town at low altitudes at varying speeds and the aircraft did not make any noticible sound. +2011-03-15,48.1969444,-106.6361111,Glasgow,MT,circle,345600,((HOAX)) Alien dog fight. +2011-03-15,43.1291667,-94.8988889,Ruthven,IA,circle,180,round shaped object with wing at top +2011-03-15,36.175,-115.1363889,Las Vegas,NV,cylinder,300,Cylinder shape with no obvious means of propulsion maintained consistant low altitude & speed. +2011-03-15,41.0241667,-80.6630556,Boardman,OH,fireball,15,Orange fireballs were traveling slowly 30 feet off the ground. +2011-03-15,39.6302778,-106.0427778,Dillon,CO,fireball,240,Campfire glow ascended and faded like a dim star in the distance easterly. Twice +2012-03-15,40.7608333,-111.8902778,Salt Lake City,UT,triangle,2700,Triangular object stalks us on our way home. +2012-03-15,38.4494444,-78.8691667,Harrisonburg,VA,circle,300,Circular UFO over Interstate 81 in Shenandoah Valley Virginia +2012-03-15,32.7152778,-117.1563889,San Diego,CA,flash,5,Big laser like neon=purple light shoot out of horzion. +2012-03-15,40.7544444,-86.3566667,Logansport,IN,other,5,I was on the internet studing about a reported SETI radio telescope signal: SHGbo+14a. I was studying on several different sites. I too +2012-03-15,30.5080556,-97.6786111,Round Rock,TX,cross,7200,Two bright objects that remain stationary objects that have been appearing every night for the past couple of weeks. +2012-03-15,35.3691667,-113.7263889,Hackberry,AZ,circle,120,dark cicular object , about 500 feet across with 6 gold lights, hovering above the trees. +2012-03-15,33.2486111,-111.6336111,Queen Creek,AZ,sphere,60,Multiple orange balls moving across the sky +2012-03-15,27.9472222,-82.4586111,Tampa (Near),FL,sphere,1200,Orange circles with many smaller circles within them .... changing to white random shapes. +2012-03-15,42.575,-70.9305556,Danvers,MA,other,30,Orb-like craft moving right to left at night. +2012-03-15,32.2744444,-90.1319444,Pearl,MS,unknown,7,isawabluestarmovingslowwthadstrobelightarounditthenitstopinthemiddleofthesky2seconsmovewestthenlightsoffbutthestrobekeptflashngmanycolo +2012-03-15,34.5033333,-82.6502778,Anderson,SC,triangle,15,Large unbelievably fast moving object that was like looking through a smudge on glass or a pool of water in the sky at night. +2012-03-15,43.0480556,-76.1477778,Syracuse,NY,light,180,Strange light/aircraft moved over Eastwood/Sedwick Farms. Did anyone else see this? +2012-03-15,42.1655556,-88.2941667,Algonquin,IL,light,5,Fast lights in formation +2013-03-15,34.0338889,-117.3127778,Grand Terrace,CA,fireball,240,Fireball realeases two blinking lights and disappears over San Bernardino, CA. +2013-03-15,36.1033333,-84.1319444,Clinton,TN,sphere,300,Organe flcikering spheres heading east of Clinton Tn +2013-03-15,40.8022222,-124.1625,Eureka,CA,cigar,30,Humboldt County Coastline, two events, similar craft. +2013-03-15,37.4833333,-81.8961111,Panther,WV,light,300,It was about dark I was cleaning out my truck ,I was listening to music with the windows rolled up, I can't remember the exact date, b +2013-03-15,41.2541667,-76.9208333,Montoursville,PA,circle,7200,Montoursville sightings. +2013-03-15,34.1013889,-84.5194444,Woodstock,GA,egg,240,Glowing orbs mistaken for falling stars +2013-03-15,33.2441667,-86.8163889,Alabaster,AL,fireball,180,Large group of glowing orbs over my house!! +2013-03-15,26.5625,-81.9497222,Cape Coral,FL,sphere,240,On Friday night, 3/15/13 at 8:34 pm I saw 6 round amber lights in the sky travelling slowly in a line-no sound-faded sequentially. +2013-03-15,36.0344444,-89.3855556,Dyersburg,TN,sphere,60,Two orange objects moving at high speeds. +2013-03-15,37.6775,-113.0611111,Cedar City,UT,oval,900,There were three separate craft that we videoed flying in front of the Cedar Mountain range orange in color and very fast. +2013-03-15,44.0522222,-123.0855556,Eugene,OR,sphere,60,Sighted fiery red ball shaped object prox 50 ft in diameter with flames on all edges. +2013-03-15,33.4355556,-112.3488889,Avondale,AZ,light,300,Sighting of a silent bright glowing red orb over Avondale, AZ. +2013-03-15,43.5172222,-70.3780556,Old Orchard Beach,ME,cylinder,180,A bright orange sphere flew low overhead near our house. +2013-03-15,42.6158333,-70.6625,Gloucester,MA,circle,1500,At approx. 11:30 pm my husband and I, as well as a friend in a different part of town, watched as 3 bright round lights, moving silentl +2014-03-15,39.89,-75.4758333,Chester Heights,PA,unknown,120,BOOMS GOT PROGRESSIVELY LOUDER. +2014-03-15,45.6388889,-122.6602778,Vancouver,WA,light,10800,Fleets of "Star" or "Light" Crafts Seen Flying Over Vancouver, WA, on 3/14/2014. +2014-03-15,32.3344444,-96.1511111,Gun Barrel City,TX,unknown,120,Huge orange pulsating light seen from hwy198 on bridge in Gun Barrel City, Texas, on 03/15/2014. +2014-03-15,40.6677778,-111.9380556,Taylorsville,UT,triangle,120,A Rectangular object with red, blue and white lights was hovering early in the morning. +2014-03-15,34.0922222,-117.4341667,Fontana,CA,fireball,10,I believe that I witnessed a ufo, star, or planet disintegrating. +2014-03-15,40.4155556,-74.1913889,Hazlet,NJ,triangle,4,It was a V shaped craft moving at a speed west to east 3 to 4 times faster than any jet. Its V shape against the blue sky was clear. +2014-03-15,35.79,-78.2041667,Middlesex,NC,circle,900,Triangle shaped movement, Full moon, ides of march, weird shaped clouds +2014-03-15,38.7041667,-91.4372222,Hermann,MO,circle,300,Red orb shape with no flashing lights, moving quickly across sky then disappeared very quickly +2014-03-15,38.6786111,-121.2247222,Orangevale,CA,light,1800,40 independent orange lights seen traveling over Orangevale CA +2014-03-15,38.6786111,-121.2247222,Orangevale,CA,light,600,Bright Amber Intelligently controlled Aircraft rising like bees from a hive in Orangevale, CA. +2014-03-15,41.5769444,-73.4088889,New Milford,CT,cigar,7200,Elongated, lit shapes above New Milford. +2014-03-15,26.0625,-80.2333333,Davie,FL,light,60,Amber lights over I-75...definitely not an aircraft on approach. +2014-03-15,36.2586111,-83.1952778,Russellville,TN,circle,30,Floating object brighter than plane/ star no noise, didnt move until i found it with my spotting scope. roughly 1/3 mile away from me. +2014-03-15,32.7763889,-79.9311111,Charleston,SC,sphere,240,Sphere with red glow within and bright orange light beneath, chased by helicopter. +2014-03-15,25.7738889,-80.1938889,Miami,FL,circle,180,HI, WELL THIS IS REALLY INCREDIBLE, BECAUSE I PERSONALY DO NOT BELIEVE IN THIS THINGS, BUT LAST NIGHT 3/15/2014,I LIVE IN MIAMI LAKES I +1966-03-16,41.4408333,-71.8816667,North Stonington,CT,disk,10,I saw something strange +1966-03-16,40.6638889,-74.2111111,Elizabeth,NJ,chevron,60,Silvery chevron moves across the sky and fades out of sight +1967-03-16,40.9477778,-90.3711111,Galesburg,IL,oval,180,Close encounter with saucer shaped object. +1997-03-16,32.7252778,-114.6236111,Yuma (Desert, On Olgiby Rd., 16 Mi. Ne. Of Yuma),AZ,triangle,2700,about one mi. from front light to back and across about 10 t0 15 mi. from us. im just now able to talk about it. +1997-03-16,41.6283333,-70.3875,Osterville,MA,sphere,5,spotted horizontally traversing circular/spherical object +1997-03-16,37.3861111,-122.0827778,Mountain View,CA,sphere,120,While travelling eastbound on Moffet Blvd at 6:48p.m. I observed what I first thought to be a plane. The object was spherical in shape +1997-03-16,33.0580556,-112.0469444,Maricopa (Southwest Of Town),AZ,light,300,8-10 bright stationary orange lights, plus a small line of 6-8 smaller bluish-white lights which flashed in succession from l. to r., +1998-03-16,43.7319444,-71.5888889,Holderness,NH,fireball,5,Large greenish blue fireball seen almost overhead, travelling in northerly direction. +1998-03-16,42.5944444,-71.725,Lunenburg,MA,light,3,Bright green light moved quickly overhead from WSW to ENE, transversing 30 degrees of sky in less than three seconds. +1998-03-16,47.6063889,-122.3308333,Seattle,WA,sphere,5,Commercial Airline Flight From Juneau AK to Seattle +1998-03-16,44.6366667,-123.1047222,Albany,OR,cigar,600,The object was a cross between cigar and cylinder. Red tip, blue back. Traveling at high rate of speed at same altitude as plane (Apr +1998-03-16,44.3875,-68.2044444,Bar Harbor,ME,fireball,20,It looked like an audio tape. Was moving very slow in the night. +1998-03-16,42.2625,-71.8027778,Worcester,MA,unknown,20,Two lights, travelling close and very fast, from N to S +1999-03-16,35.0844444,-106.6505556,Albuquerque,NM,sphere,300,I saw a silver sphere shaped craft that was following in the contrail of a passenger or military aircraft. +1999-03-16,39.6261111,-84.3694444,Germantown,OH,diamond,120,I observed the object in the oprox location towqard the south west. the object was hovering above a farm house and then it procedded to +2000-03-16,38.5733333,-109.5491667,Moab,UT,disk,120,i was walking to my friends house bu untile i saw a sauser. +2000-03-16,29.7630556,-95.3630556,Houston,TX,sphere,3,While taking-off in a 737, I saw an object that looked like a large chrome ball-bearing sitting above a cloud bed. +2000-03-16,33.555,-116.6727778,Anza,CA,light,30,High speed light, transvering horizon to horizon, NO trail or tail. +2001-03-16,45.5827778,-122.3522222,Washougal,WA,light,12,bright light approaching form the north +2001-03-16,34.9744444,-92.0163889,Cabot,AR,triangle,1200,An object, in the shape of an upside-down V with white lights on both sides of this V. No motion observed. +2002-03-16,30.275,-89.7811111,Slidell,LA,teardrop,10,Amoeba like plasma "craft". +2002-03-16,42.8127778,-94.5266667,Rolfe,IA,unknown,120,4 lights in a row with 2 on the end at a angle at the end i think what the end was. all the lights went off an on for three or four tim +2002-03-16,42.9633333,-85.6680556,Grand Rapids,MI,chevron,180,3 quick, "V" shaped objects flew over my house within 1 minute of each other. +2002-03-16,26.6155556,-80.0572222,Lake Worth,FL,formation,60,Multiple witnesses to multiple objects +2003-03-16,41.7472222,-73.1891667,Litchfield,CT,rectangle,120,it was mind blowing, came close to a house, rectangular w/tripod like legs, very bright ,hovered over a tree & disappeared +2003-03-16,40.1855556,-75.4519444,Collegeville,PA,formation,120,Formation of large and small objects merging into one object. +2003-03-16,47.8108333,-122.3761111,Edmonds,WA,triangle,30,Follow-up on triangle sighting. +2003-03-16,47.8108333,-122.3761111,Edmonds,WA,triangle,30,Triangle (100-150' per side) w/ three bright lights travelling about 20MPH at 200-300' AGL (above ground level). +2003-03-16,41.6022222,-71.2508333,Portsmouth,RI,fireball,300,Vary large glowing object with a red blinking light beneath the bright round yellow/orange glowing light +2004-03-16,41.5241667,-72.0763889,Norwich,CT,other,600,Strangly lit, loose formation of silent auircraft-like objects, with a treetop level meteor appearing during the overflight. +2004-03-16,29.96,-90.2155556,River Ridge,LA,sphere,10,In New Orleans, approximately 7 spheres silently travel in a straight line then become triangle as they move overhead. +2004-03-16,33.4483333,-112.0733333,Phoenix,AZ,fireball,120,Bright fireball in the sky that would drop other fireballs 2-3 times and then it disappeared. +2004-03-16,48.1958333,-114.3119444,Kalispell,MT,fireball,1800,Bright light getting brighter and shrinking to its' center a beacon went back and forth across the sky. ((NUFORC Note: Venus. PD)) +2004-03-16,35.2827778,-120.6586111,San Luis Obispo,CA,flash,3,3 lights flash less than seconds apart in a row to the right - with a "fading" effect. +2005-03-16,40.5741667,-74.6102778,Somerville,NJ,other,15,My dad and I were in the hottub. We were looking at the moon and saw a grayish sguare and oval shape. It was going across the sky fast. +2005-03-16,40.5741667,-74.6102778,Somerville,NJ,other,15,My daughter and I were in the hottub, looking at the sky. There were 2 objects gray in color flying west to east pretty fast. They had +2005-03-16,38.8858333,-94.5327778,Grandview,MO,cigar,5,I had a small craft fly directly in front of my car ,in broad daylight , black, cigar shaped, only4-6ft. in lenght. +2005-03-16,36.2569444,-83.0861111,Bulls Gap,TN,disk,180,Object seen on hunting trip. +2005-03-16,36.4375,-86.9672222,Coopertown,TN,formation,180,there were three sets of clear bright lights,with a small faint red light in the center of each one. One set of lights was ahead of the +2005-03-16,40.4166667,-86.8752778,West Lafayette,IN,circle,30,Circling lights over Lafayette. Grad from Purdue flight program here and these were NOT airplanes. Many people witnessed. +2005-03-16,40.5333333,-77.3858333,Port Royal,PA,light,1800,glowing human shaped figures sighted in wooded area. +2006-03-16,34.0522222,-118.2427778,Los Angeles,CA,light,2700,Photographed directly into a brilliant light in early morning hours. +2006-03-16,33.5805556,-112.2366667,Peoria,AZ,fireball,600,It seemed like it was about to crash....then it suddenly dissapeared. +2006-03-16,41.8930556,-70.9116667,Middleboro,MA,triangle,1200,UFO's seen in Middleboro Massachusetts +2006-03-16,46.8405556,-123.2311111,Oakville,WA,unknown,10,Possible 2 craft seen in Oakville Wa on 3/16/06 +2006-03-16,29.4238889,-98.4933333,San Antonio,TX,triangle,5,Triangular aircraft tumbling on it's side! +2006-03-16,39.9561111,-75.0583333,Pennsauken,NJ,unknown,40,bright star like object in night sky in pennsauken +2006-03-16,37.4716667,-121.1286111,Patterson,CA,changing,2040,I have it on tape it not fuzzy, very clear and lasted a long time. And it was very bright for a long time one on the ground and one in +2006-03-16,25.6788889,-80.3175,Kendall,FL,oval,10,Kendall, FL - West - East White Oval - 5-10 Seconds +2007-03-16,38.5366667,-82.6830556,Ironton,OH,light,180,Bright yellowish orange football shaped light over western Ironto, Ohio +2007-03-16,38.5366667,-82.6830556,Ironton,OH,oval,180,Saw a bright yellow/orange football shaped light low over Ironton,Ohio. +2007-03-16,45.5827778,-122.3522222,Washougal,WA,circle,5,large, bright, green something zipped across washougal river area +2007-03-16,31.7586111,-106.4863889,El Paso,TX,oval,480,Group of 19 small, white bright objects traveling around larger white object seen in El Paso Texas skies. +2007-03-16,33.7669444,-118.1883333,Long Beach,CA,other,600,BRIGHT STATIONARY LIGHTS WITH PORT HOLES SOUTH OF LONG BEACH CA +2007-03-16,47.3225,-122.3113889,Federal Way,WA,light,10,One large blue spherical light traveling across the sky in about ten seconds. +2007-03-16,47.6480556,-121.9127778,Carnation,WA,sphere,5,Bright Green Object in Sky Over Puget Sound area +2007-03-16,33.4483333,-112.0733333,Phoenix,AZ,light,180,Red light over Phoenix area. Blinking, solid, and then strobing. +2007-03-16,37.8716667,-122.2716667,Berkeley,CA,chevron,720,Dark, swift chevron-shaped craft with bright "headlight" over East Bay, CA +2007-03-16,46.2397222,-119.0994444,Pasco (Walla Walla/Franklin County Line),WA,triangle,20,ufo +2008-03-16,43.4441667,-95.8830556,Little Rock,IA,triangle,35,blueish green triangular object 0230 little rock ia going north then suddenly south lasted 30+ secs +2008-03-16,32.2686111,-107.7580556,Deming,NM,light,7,I saw a ball of white light with a green glow drop down get brighter and change direction and speed +2008-03-16,44.3,-120.8333333,Prineville,OR,other,10,Dome shaped object slowly lowers out of cloud cover. +2008-03-16,32.7152778,-117.1563889,San Diego,CA,formation,900,Two orange lights in formation over the community of Clairemont in San Diego at 8:35PM PDT +2008-03-16,39.4561111,-77.9641667,Martinsburg,WV,circle,120,I saw a red ball in the sky not that high off the ground and it dissapeared +2008-03-16,33.5205556,-86.8025,Birmingham,AL,triangle,20,Light blue triangle over Southern Pines subdivision +2009-03-16,35.4675,-97.5161111,Oklahoma City,OK,light,3,Unknow fast moving light +2009-03-16,30.7108333,-94.9327778,Livingston,TX,light,60,Thought it was the moon, but no moon in the sky. +2009-03-16,29.8944444,-81.3147222,St. Augustine,FL,circle,900,Large bright circular object viewed over the ocean's horizon at St. Augustine Pier +2009-03-16,41.5261111,-87.8891667,Mokena,IL,circle,900,3 red orbs in Mokena, Illinois heading towards Tinley Park. +2009-03-16,41.5261111,-87.8891667,Mokena,IL,triangle,600,We saw 3 red lights over the sky near Tinley Park. +2009-03-16,41.5261111,-87.8891667,Mokena,IL,triangle,600,We saw three red lights, in a triangle, in Mokena IL +2009-03-16,27.8658333,-82.3266667,Riverview,FL,unknown,1200,Red light in the sky +2009-03-16,39.5505556,-107.3241667,Glenwood Springs,CO,formation,30,Pair of dull red lights silently fly over Glenwood Springs, CO +2009-03-16,32.7252778,-114.6236111,Yuma,AZ,triangle,60,cloaking ship over Yuma, AZ +2009-03-16,36.7383333,-119.12,Dunlap,CA,light,15,F16 Chasing Light Across The Central Valley South Of Fresno Ca. +2009-03-16,42.5005556,-90.6644444,Dubuque,IA,formation,10,Chain formation of objects at very high altitude and speed, changing to cluster formation as they moved. +2010-03-16,41.85,-87.65,Chicago,IL,unknown,30,Appeared At First Like An Airplane, But Was Defintely Not! +2010-03-16,42.0333333,-87.7333333,Skokie,IL,chevron,5,shooting stars? - or - was it? +2010-03-16,32.6125,-90.0366667,Canton,MS,light,300,what appeared to be a twinkling star moved quickly up at a 45 degrees then stopped and became fixed and did not move thereafter +2010-03-16,42.8683333,-72.8719444,Wilmington,VT,cross,120,3 opaque white objects appeared from a jet chem trail, i watched them fly, 2 objects went to the left, the other to the right,. +2010-03-16,40.6430556,-73.6961111,Hewlett,NY,sphere,45,2 round, shiny objects flying close to each other for about 45 seconds, one zooms off into the distance, didn't see where other went +2010-03-16,33.4147222,-111.9086111,Tempe,AZ,unknown,70,At approximately 4:45 PM on Tuesday March 16th 2010, I was in my work parking lot in Tempe Arizona, when I noticed two very white objec +2010-03-16,41.0647222,-86.2158333,Rochester,IN,light,300,We were stargazing and we saw a v-formation of brownish orange lights. These lights were traveling NNW. While watching this formation o +2010-03-16,33.7669444,-118.1883333,Long Beach,CA,triangle,15,Triangular object seen in Long Beach, CA +2010-03-16,41.2222222,-73.0569444,Milford,CT,circle,3,Pale circular object imoving in upper atmosphere split into three circular objects the same size +2010-03-16,35.72,-79.1775,Pittsboro,NC,other,300,Silent craft with Red, White, and Blue lights seen over Pittsboro, NC on March, 16 2010 +2010-03-16,40.7619444,-73.7386111,Little Neck,NY,unknown,7200,multiple ufo sightings +2011-03-16,38.6402778,-92.1222222,Holts Summit,MO,disk,90,4th sighting same craft. +2011-03-16,34.2011111,-118.5972222,Canoga Park,CA,diamond,5400,Craft appeared moving very slow at 10:30 am not a lot of movement, It was pretty high up, and I was taking the trails (smoke) left by t +2011-03-16,36.0725,-79.7922222,Greensboro,NC,unknown,300,A slow moving bright white light growing brighter then dimmed to a small dull point with similar dull point of light moving slowly dull +2011-03-16,33.94,-118.1316667,Downey,CA,disk,60,Bright, discoid or shallow cone-shaped object in full daylight. +2011-03-16,42.6738889,-85.6447222,Wayland,MI,oval,45,One giant disc speeding West near Gun Lake +2011-03-16,43.8108333,-99.3302778,Chamberlain,SD,light,300,bright orange lights over Chamberlain, SD +2011-03-16,38.2541667,-85.7594444,Louisville,KY,light,600,Red flashing light headed south/southwest over Louisville, KY, clear sky, no clouds. +2011-03-16,36.6777778,-121.6544444,Salinas,CA,chevron,60,2 red orbes horizontal from each other +2012-03-16,42.4363889,-89.3319444,Durand,IL,triangle,600,Triangular craft, 3 white lights on bottom at each corner, 1 red flashing light, 1 blue/white flashing light. Solid black, noiseless. +2012-03-16,39.8402778,-88.9547222,Decatur,IL,triangle,600,Two triangle objects in night sky, south of decatur going nne +2012-03-16,42.1291667,-80.0852778,Erie,PA,fireball,555,March 16, 2012 ufo fireball sighting! +2012-03-16,30.4386111,-90.4413889,Ponchatoula,LA,triangle,15,Driving on hwy 22 towards ponchatoula from madisonville, when approximately 7-9 lights began sporadically flashing almost in the shape +2012-03-16,28.2333333,-82.1813889,Zephyrhills,FL,light,600,Approximately 8 PM the evening of 3-16-12, 25 bright orange lights traveling south to west. +2012-03-16,38.7458333,-78.6425,Mt. Jackson,VA,rectangle,5,I seen a ufo over 81 out side of mt jackson va +2012-03-16,44.1858333,-88.4625,Neenah,WI,other,300,Yellowish-orange lighted object in sky travels without sound. +2012-03-16,42.8794444,-89.0697222,Albion,WI,light,60,Small, slow-moving white point that faded in and out very slowly +2012-03-16,42.0963889,-79.3758333,Ashville,NY,teardrop,4,Teardrop craft with insanely bright trail shoots toward space then disappears in an instant. +2012-03-16,38.2008333,-77.5894444,Spotsylvania,VA,circle,300,Orange round lights moving in formation in sky above Spotsylvania +2012-03-16,40.9477778,-90.3711111,Galesburg,IL,rectangle,5,Extremely fast dark rectangle, 2 amber lights, south to north. +2012-03-16,33.9525,-84.55,Marietta,GA,unknown,10,Streaking greenish-bluish light, moving quickly and disappearing. +2012-03-16,40.0580556,-82.4013889,Newark,OH,circle,300,Reddish orange flaming ball. +2012-03-16,30.7744444,-85.8516667,Westville,FL,other,180,Unexplained Light In the Sky. +2012-03-16,33.4147222,-111.9086111,Tempe,AZ,circle,120,Very fast moving red and blue orv over Mesa, AZ +2012-03-16,33.8627778,-83.4088889,Watkinsville,GA,circle,1200,Orange orbs over Watkinsville. +2012-03-16,35.4430556,-80.2194444,New London,NC,triangle,300,4 blue lights in triangle hovering over baden lake +2012-03-16,33.7488889,-84.3880556,Atlanta,GA,light,300,Bright multy colored object..going in a zigzag motion,spinning around changing colors. ((NUFORC Note: Twinkling star?? PD)) +2012-03-16,35.4430556,-80.2194444,New London,NC,triangle,180,Triangular object with one light on top and three on the bottom, flashing clockwise, Hovered for about 3 minutes. +2013-03-16,64.7511111,-147.3494444,North Pole,AK,light,60,Two lights in the sky moving opposet each other not making sound +2013-03-16,35.9605556,-83.9208333,Knoxville,TN,triangle,120,I was playing basket ball i looked up and two lights were next to eachother then a triangle appeared it scare all f the six witneses +2013-03-16,45.6352778,-87.9908333,Pembine,WI,light,10,White flash of a narrow small dumbell,flashed twice in 8 seconds no sound. +2013-03-16,30.8125,-98.5752778,Lone Grove,TX,fireball,6,It was about 6:45 pm or so. Sky was blue, sun had just set. My daughter and I were looking for the Comet PanSTARRS. We were looking we +2013-03-16,43.4552778,-76.5108333,Oswego,NY,triangle,10,A triangular object with three bright orange lights travelled across the sky heading North. +2013-03-16,34.2072222,-84.1402778,Cumming,GA,cigar,2,Fast neon green object over GA 400 north of Cumming, GA. ((NUFORC Note: Possible meteor? PD)) +2013-03-16,35.2427778,-81.0375,Belmont,NC,other,50,Round object shooting across the sky, low ,very bright light, a blue white color,, seen by 2 people. +2013-03-16,35.9877778,-92.7161111,Gilbert,AR,light,180,Orange light heads South over smallest town in Arkansas. +2013-03-16,61.5813889,-149.4394444,Wasilla,AK,triangle,300,ON 3/16/2013 AT 23:20 SEEN NORTHERN LIGHTS THROUGH WINDOW WHILE GETTING READY FOR BED. WENT OUTSIDE TO ENJOY THE SHOW AND TOLD MY GIRLF +2013-03-16,61.5813889,-149.4394444,Wasilla,AK,circle,300,Large group of red, round lights seen by several groups of people in Wasilla, AK during high aurora activity. +2013-03-16,44.9483333,-93.3477778,St. Louis Park,MN,oval,3,Large green orb +2014-03-16,45.4872222,-122.8025,Beaverton,OR,circle,600,Blue light orb that changes colors to red and white. +2014-03-16,47.7661111,-116.7855556,Hayden,ID,diamond,240,Two extremely bright, course-changing red lights were seen to the west of Hayden, towards Post Falls. +2014-03-16,35.6013889,-84.4611111,Sweetwater,TN,triangle,10800,((HOAX??)) I was setting in my room when i heard a low bass like sound so like i would normally do i got up to see +2014-03-16,36.7477778,-119.7713889,Fresno,CA,fireball,240,Orange fireball moved across sky, hovered over my house, went high into the sky, then light disappeared as it went to a larger craft. +2014-03-16,32.525,-93.75,Shreveport,LA,flash,5,Some type of craft of light speed. +2014-03-16,33.5205556,-86.8025,Birmingham,AL,light,600,20-30 bright orange spheres flying in two's or three's, travelling from southwest to northeast without sound +2014-03-16,39.9522222,-75.1641667,Philadelphia,PA,circle,30,((HOAX??)) Six black UFO's over NE Philadelphia--blue and red lights. +1977-03-17,34.0522222,-118.2427778,Los Angeles,CA,disk,600,I could see vehicles driving eastbound on the 134 freeway & the UFOs passing over the top of them. +1978-03-17,39.7391667,-104.9841667,Denver,CO,triangle,2700,Denver, Colorado, March 17, 1977, at around 7:30 pm. Two objects seen up close. One hovered over our home, the other flew over at just +1987-03-17,40.7141667,-74.0063889,New York City (Bronx),NY,chevron,900,St. Patrick's Day 1987 - Lights over the Bronx, NY +1988-03-17,40.7141667,-74.0063889,New York City (Yonkers),NY,oval,6300,YONKERS, NY +1988-03-17,41.1627778,-73.8619444,Ossining,NY,egg,3600,My mother Leyda, says something told her to look out the window, and she says she looked out.few seconds later she calls me to the wind +1988-03-17,41.1327778,-73.7930556,Pleasantville,NY,egg,1200,Event reported over Briarcliff Manor and Pleasantville New York. Extremely large craft. Multiple colored lights. +1997-03-17,44.9583333,-124.0166667,Lincoln City,OR,triangle,600,Lights on horizon - object(s) approached, main craft opened/smaller craft "played" returned to original & hover above us +1997-03-17,33.9686111,-112.7288889,Wickenburg,AZ,light,1200,A bright, silent, white circular light hovered for about 20 minutes and then sped off and disappeared. +1997-03-17,33.4222222,-111.8219444,Mesa,AZ,chevron,5,UFO over Phoenix...over my back yard. March 1997 +1997-03-17,32.7152778,-117.1563889,San Diego,CA,circle,1200,phoenix lights over san diego +1997-03-17,32.2216667,-110.9258333,Tucson,AZ,triangle,10,25 miles west of Tucson, Az. Strange orange balls in a triangle pattern, in march of 1997. +1999-03-17,41.6611111,-91.53,Iowa City,IA,triangle,600,dark triangle moves slowly and appears to hover in night sky. +1999-03-17,44.8180556,-74.5561111,Moira,NY,light,480,lights appeared over forested area first as one set (red over white) second time (closer red over red) third time (closer two sets of r +1999-03-17,43.6136111,-116.2025,Boise,ID,unknown,10,Two redish lights moving together, quickly, without sound in a West to East manner. +1999-03-17,42.3702778,-87.9019444,Gurnee,IL,triangle,135,a triangle black object +1999-03-17,41.1983333,-74.4836111,Vernon,NJ,cylinder,900,Saw 1 UFO hovering over Mountain Creek Ski Resort. Stopped my car on side of road and got out to view.Dark clear night sky. Craft was l +1999-03-17,41.85,-87.65,Chicago,IL,triangle,3600,I was inside my house and I looked up thru my skylight to see if there was a full moon. I saw a triangle shaped craft moving from sout +1999-03-17,40.7608333,-111.8902778,Salt Lake City (West Of),UT,circle,15,While traveling east on I-80 outside Wendover NV. we noticed 4 circular and very bright yellow lights. Shortly after noticing this, th +2000-03-17,34.1705556,-118.8366667,Thousand Oaks (Highway 101 @ Kannen Rd. ),CA,triangle,600,Iwas Traveling 101 I saw a object moveing east to west less than a mileup.Another vehicle ahead saw also a for a minute lost control of +2000-03-17,45.6388889,-122.6602778,Vancouver,WA,unknown,60,1 Min- High Pitch Noise +2000-03-17,29.4238889,-98.4933333,San Antonio,TX,triangle,120,Blue "energy egg" beamed down from spacecraft over San Antonio Texas eludes airport radar. +2001-03-17,30.7233333,-95.5505556,Huntsville,TX,disk,180,It was one Saturday night at the state park in Huntsville TX. It was about 1:45am I just look at my watch and told my wife I was going +2001-03-17,42.7675,-78.7441667,Orchard Park,NY,cigar,420,Very intense light flying together in a group of three with short sparadic motions. +2001-03-17,17.9736111,-66.9083333,Guanica (Lajas) (Puerto Rico),PR,oval,300,SIGHTING FOR MY FAMILY +2001-03-17,37.3394444,-121.8938889,San Jose,CA,triangle,480,White triangular craft over San Jose CA in broad daylight. +2001-03-17,33.3527778,-111.7883333,Gilbert,AZ,cylinder,900,white strong light changed to fire almost looking colors -shape cylinder and again changed to white brigh light +2002-03-17,33.3941667,-110.7858333,Globe (20 Miles East Of),AZ,egg,120,Egg shaped light spotted, over an hour of time lost? +2002-03-17,41.4994444,-81.6955556,Cleveland,OH,egg,4,THE OBJECT WAS AN EGG/OVAL SHAPE.THE OBJECTS COLOUR WAS UNIDENTIFIED, BUT THERE WAS 6 TO 7 GREEN BRIGHT LIGHTS.IT WAS TO A 45 DEGREE AN +2002-03-17,46.0647222,-118.3419444,Walla Walla,WA,light,1500,Bright stationary light seen in NW sky. +2002-03-17,40.8883333,-73.8286111,Eastchester,NY,diamond,300,Diamond shaped in broad daylight. ((NUFORC Note: Sighting by police officer, with video footage. PD)) +2002-03-17,40.8883333,-73.8286111,Eastchester,NY,diamond,212,Diamond shaped, mid day I videotaped it. +2002-03-17,47.7558333,-122.3402778,Shoreline,WA,other,5,Viewed bright elliptical object descending in the north sky. +2002-03-17,47.2791667,-122.2508333,Algona,WA,fireball,2,Bright green fireball streaks across Northwestern sky +2002-03-17,37.3394444,-121.8938889,San Jose,CA,flash,10,Very low, very long, metor-like flash across sky +2003-03-17,36.175,-115.1363889,Las Vegas,NV,light,1800,Amber orbs of light above the city of Las Vegas. +2003-03-17,28.5380556,-81.3794444,Orlando,FL,oval,600,It was very big and had a lot of bright lights (white) with a small red light on top. +2004-03-17,32.7938889,-79.8627778,Mount Pleasant,SC,formation,6,Amber formation races across sky in 5 or 6 seconds. +2004-03-17,46.9966667,-120.5466667,Ellensburg,WA,diamond,1200,I was sitting at my friends house, in my car after leaving the city pool, and I looked up. There was no noise, and the objects seemed +2004-03-17,34.0194444,-118.4902778,Santa Monica,CA,sphere,120,The craft came from the West out over the Pacific Ocean. It was flying much higher than the Commercial Jet Traffic over Los Angeles. +2004-03-17,44.0583333,-121.3141667,Bend,OR,circle,2,A round metallic object seen momentarily in the blue sky. +2004-03-17,38.7775,-75.3102778,Milton,DE,other,994,Boat/schooner shaped Hull curved rotating ,color Flat Black. +2004-03-17,39.7294444,-104.8313889,Aurora,CO,other,120,Low, hovering object that appeared to be an airplane, but was too low and slow in the sky, then disappeared. +2004-03-17,33.4483333,-112.0733333,Phoenix,AZ,other,300,Lemon-shaped UFO, covered with rows of lights, bigger than a helicopter, bigger than a bus. +2004-03-17,46.6022222,-120.5047222,Yakima,WA,triangle,300,St. Paddy's Day UFOs over Yakima, Washington +2004-03-17,46.6022222,-120.5047222,Yakima,WA,formation,900,3 very bright lights in a V formation, no sound and flying very slowly +2004-03-17,37.8044444,-122.2697222,Oakland,CA,triangle,15,I was looking up at the stars as I and a couple of friends were walking to grab a bite to eat, when I noticed an object flying across t +2004-03-17,32.7152778,-117.1563889,San Diego,CA,circle,10800,the object jeted across the sky like a shooting star the stoped the jeted again across the sky and stoped and this continued for hours +2004-03-17,26.1219444,-80.1436111,Fort Lauderdale,FL,sphere,2700,Feel crazy, but true +2004-03-17,46.9966667,-120.5466667,Ellensburg,WA,other,1200,Craft that produced no noise, accelerated from still to unreal speeds, had 3 crafts or 3 sections. +2004-03-17,39.9611111,-82.9988889,Columbus (South On Us 23),OH,unknown,10,2 balls of red pulsing light 1 small blinking.Near aep power plant. +2005-03-17,43.4666667,-112.0333333,Idaho Falls,ID,cigar,1800,From my driveway, due South, I observed a "jetstream" in the sky and saw a "plane" descending rapidly straight down vertical. My initia +2005-03-17,40.3116667,-75.3255556,Souderton,PA,light,90,Strange Sighting over Souderton, PA. +2005-03-17,29.7630556,-95.3630556,Houston,TX,triangle,900,This black triangular object flew towards the direction of my car. It moved slowly above the clouds and had a slight wobble as it moved +2005-03-17,26.1416667,-81.795,Naples,FL,light,7200,Four Dancing Lights in the Clouds +2005-03-17,39.3330556,-82.9825,Chillicothe,OH,light,600,Larger orange light emitting smaller orange lights +2005-03-17,37.1672222,-82.7516667,Millstone,KY,rectangle,180,Solid black rectangle with rounded edges, no lights, with a very loud noise, moving very slow. +2006-03-17,33.6602778,-117.9983333,Huntington Beach,CA,cross,180,Cross shaped formation of lights dropping red flair light projectiles +2006-03-17,42.6986111,-71.1355556,North Andover,MA,other,3600,mass. sighting 4 or 5 objects, all blue ring surrounding a five pointed star shape, sometimes red dot would flash around it +2006-03-17,41.0886111,-74.0138889,Nanuet,NY,oval,1200,My grandparents were just pulling into the driveway and I went outside to meet them. I was helping them take suitcases out of the trun +2006-03-17,38.9516667,-92.3338889,Columbia,MO,unknown,300,A strange piece of metal fell out of my daughters ear! ((NUFORC Note: Missouri Investigator Group investigates; medical device. PD)) +2007-03-17,41.6619444,-86.1586111,Mishawaka,IN,triangle,120,March 17, 2007 - Mishawaka, Indiana Approx 6:30am 3/17/07 I saw a red light reflection on the top of my large picture window. I then +2007-03-17,31.4588889,-85.6405556,Ozark,AL,unknown,300,3 objects,that left 3 hugh flashes +2007-03-17,27.9455556,-82.2580556,Valrico,FL,light,420,Do Satellites Stop then Change Directions? +2007-03-17,26.9758333,-82.0908333,Port Charlotte,FL,light,300,bright lights catch my attention +2007-03-17,37.6688889,-122.0797222,Hayward,CA,cigar,300,At around 13:30 I was throwing the afternoon trash at work and I looked in the eastern sky and I noticed a White Cigar shaped object fl +2007-03-17,35.0613889,-106.1908333,Edgewood,NM,triangle,180,Triagular object +2007-03-17,26.525,-80.0666667,Boynton Beach,FL,circle,3600,moving light over Florida +2007-03-17,32.6958333,-97.6019444,Aledo,TX,fireball,2,fiery, comet-like meteoroid +2008-03-17,33.5386111,-112.1852778,Glendale,AZ,disk,900,Saucer seen in Glendale, AZ. +2008-03-17,44.6697222,-74.9816667,Potsdam,NY,changing,300,Orange light / V-shaped +2008-03-17,33.8572222,-84.02,Snellville,GA,unknown,1,Fast object traveling west seen around 9:30, bearing red lights +2008-03-17,40.9311111,-73.8991667,Yonkers,NY,rectangle,600,Silent football field of lights that could be seen for miles +2008-03-17,42.4169444,-88.0738889,Lake Villa,IL,triangle,60,TRIANGLE ARRANGED LIGHTS IN LAKE COUNTY, ILLINOIS. ((NUFORC Note: Possible sighting of U. S. Navy NOSS satellites? PD)) +2009-03-17,42.9633333,-85.6680556,Grand Rapids,MI,disk,2700,Multiple flying objects over Grand Rapids Michigan. +2009-03-17,42.9633333,-85.6680556,Grand Rapids,MI,disk,1800,circular discs in a formation speeded through the sky. 3 discs first, then 5, then 3 again, extremely fast. +2009-03-17,34.2694444,-118.7805556,Simi Valley,CA,triangle,300,Discovered UFOs in my Photos +2009-03-17,39.7047222,-105.0808333,Lakewood,CO,unknown,12,Tilted looking Object (like a forward slash ---> / ) moving from west to east. +2009-03-17,33.7669444,-118.1883333,Long Beach,CA,changing,1560,UFO seen in Long Beach California; Air traffic rerouted, helicopters search and no word in the media! +2009-03-17,27.9091667,-82.7875,Largo,FL,cigar,10,Fast moving object with cyclic whistling noise. +2009-03-17,41.835,-87.8227778,Riverside,IL,sphere,240,Bright spere flying through the sky +2009-03-17,44.1597222,-75.0319444,Star Lake,NY,unknown,60,Unexplained flashing lights over Star Lake, NY +2009-03-17,32.6736111,-81.0205556,Grays,SC,fireball,60,2 fire balls hovering large in size and then quickly blink out in sequence. +2009-03-17,39.7475,-122.1952778,Orland,CA,oval,240,Two lighted objects interact in night sky. +2009-03-17,37.2908333,-76.5097222,Wicomico,VA,circle,240,A large orange orb moved quickly out of the Northwest then turned south, slowed down and eventually faded away. +2009-03-17,39.7438889,-84.6366667,Eaton,OH,light,240,Bright no blinking point of light travelling East at constant speed +2009-03-17,37.9886111,-84.4777778,Lexington,KY,other,60,Dark blue light moving sideways, but apparently suspended under something like a white parachute? +2010-03-17,41.7208333,-73.9605556,Highland,NY,light,15,v formation lights looks like glowing geese flying +2010-03-17,33.9533333,-117.3952778,Riverside,CA,other,300,Flat football shaped object hoving over passing planes +2010-03-17,36.175,-115.1363889,Las Vegas,NV,circle,1200,Slow/upward moving dark, circular object observed approximately above Mt. Charleston in NW Las Vegas that disappears suddenly +2010-03-17,42.1305556,-71.0416667,Avon,MA,light,30,bright drifting light fading away into sky +2010-03-17,40.1052778,-85.6802778,Anderson,IN,light,14400,Dont kno what it is but in the SW sky tward indy there is what looks like a star that changes color. ((NUFORC Note: Sirius. PD)) +2010-03-18,29.5177778,-98.3158333,Converse,TX,disk,120,I saw a disk like a mirror, big,fast and quite, it made no noise, it was a sight to be seen. +2011-03-17,41.4458333,-74.4233333,Middletown,NY,sphere,420,footage of ufo strobe +2011-03-17,34.5325,-83.985,Dahlonega,GA,diamond,120,Unidentified Black Diamond Shaped Flying Objects Seen +2011-03-17,34.6086111,-98.39,Lawton,OK,light,10,St. Patrick's Day U.F.O. sighting in Lawton, OK +2011-03-17,36.5963889,-82.1886111,Bristol,VA,diamond,180,diamond pattern of round lights passing silently overhead +2011-03-17,35.7719444,-78.6388889,Raleigh,NC,light,1200,Rising light in the sky. ((NUFORC Note: Celestial bodies?? PD)) +2012-03-17,28.1875,-82.7397222,Holiday,FL,oval,900,Orange fire ball in the night sky +2012-03-17,42.3313889,-83.0458333,Detroit,MI,cylinder,600,I saw a hollow, cylinder shapped object the color of a bubble, or rainbow, hovering and spinning above a bush. +2012-03-17,40.7319444,-73.1861111,East Islip,NY,cigar,600,Bright stobeing light +2012-03-17,41.5822222,-85.8344444,Goshen,IN,triangle,1200,It was about 5:45 my sister and i had just gotten out of the movies and she said (look! ) as i looked up we both saw this dark triangle +2012-03-17,40.4841667,-88.9936111,Bloomington,IL,fireball,20,Orange Ball Rising Above Town At 45 Degree Angle +2012-03-17,41.5733333,-87.7844444,Tinley Park,IL,changing,180,Quick moving glowing orange object that changes shape according to the pics I took of it +2012-03-17,42.7325,-84.5555556,Lansing,MI,light,30,Two flashing lights moving in sky over Lansing, MI +2012-03-17,47.6447222,-117.5922222,Airway Heights,WA,sphere,40,3 orbs in Airway Heights. +2012-03-17,30.2383333,-90.92,Gonzales,LA,light,420,12-15 red lights were flying high in the sky following the same path and then vanished . +2012-03-17,46.7216667,-92.4591667,Cloquet,MN,flash,5,Flashing white light and out if sight in less than 3 seconds +2012-03-17,46.0130556,-91.4844444,Hayward,WI,light,480,3/17/2012 -Hayward - Wisconsin.- pulsing light - 8 minutes,high altitude changing direction instantly then speeding up +2012-03-17,33.4483333,-112.0733333,Phoenix,AZ,triangle,1200,Strange blue object hovering south of phx. Az +2012-03-17,28.6775,-81.3280556,Casselberry,FL,fireball,600,Fire object casually moving across the sky. +2012-03-17,47.2372222,-93.53,Grand Rapids,MN,circle,600,Bright multi colored fast moving circliar object that responded to tactical led strobe light. +2013-03-17,33.1191667,-117.0855556,Escondido,CA,sphere,180,Star sized reddish orange glowing sphere seen hovering, floating, and disappearing in Escondido's night sky. +2013-03-17,30.2458333,-87.7008333,Gulf Shores,AL,triangle,300,I dont know what the object is besides the shape in the report. ((e-address deleted)) +2013-03-17,34.6197222,-98.7511111,Indiahoma,OK,unknown,30,A pressurized-sounding wind seen moving slowly about a Wildlife Preserve without any visible craft above its effects. +2013-03-17,30.2669444,-97.7427778,Austin,TX,changing,300,White blimp-like object, glows pink at times and changes shape +2013-03-17,39.9205556,-104.8652778,Henderson,CO,light,23,UFO emitted very bright white light, and moved erratically as you can see by watching the video. +2013-03-17,45.5236111,-122.675,Portland,OR,formation,1800,Cluster of bright orange lights floating, jumping around in sky +2013-03-17,27.9472222,-82.4586111,Tampa,FL,light,1200,My dad is retired pilot from the military, we look out the window and all of sudden see tons of tinny lights people walking outside all +2013-03-18,48.051944399999996,-122.1758333,Marysville,WA,oval,900,Bright reddish oval shape with orangish yellow dome +2014-03-17,35.2269444,-80.8433333,Charlotte,NC,other,3600,Alien Abduction with provable markings left on the body. +2014-03-17,40.6677778,-111.9380556,Taylorsville,UT,light,300,An oval shaped ball of light hovering up and down. +2014-03-17,27.9655556,-82.8002778,Clearwater,FL,light,5,Sitting on my back porch looking north, noticed a red, purplish bright light, it came from east to west , appeared to head north slowly +2014-03-17,40.7647222,-79.7666667,Cabot,PA,oval,90,Round, bright, orange in color, no sound Appearing from the NE one at a time in line with each other and moving in a semicircle. +2014-03-17,33.9158333,-112.1352778,New River,AZ,light,4,Red, green and white bright light seen in New River, AZ night sky. +1984-03-18,45.0313889,-68.7291667,Alton,ME,other,2400,Mother Ship sighting in 1984 +1994-03-18,43.0125,-83.6875,Flint,MI,triangle,300,In the pre-dawn hours of the above date I encountered a large, triangular craft hovering silently about 100 foot above the freeway. +1998-03-18,41.3861111,-77.0572222,Trout Run,PA,fireball,300,Good friday Fireball sighted on isolated PA.road +1999-03-18,28.2916667,-81.4077778,Kissimmee,FL,other,60,UFO sighted at night while on way home from teaching my martial arts class. Sighted as I drove through town which is a well lighted met +2000-03-18,47.9791667,-122.2008333,Everett,WA,light,300,At first I thought it was a satelite in a North-South orbit. It grew brighter and seemed to change course slightly. +2000-03-18,42.0713889,-70.8097222,Pembroke,MA,unknown,300,Stationary pulsating white, red & green/blue light in the western horizon +2000-03-18,33.7222222,-116.3736111,Palm Desert,CA,light,7200,We were in our garage and looking south over the Santa Rosa Mountains a bright light was hovering at a great distance it appeared to ha +2000-03-18,36.175,-115.1363889,Las Vegas,NV,oval,420,I was on vacation in Vegas on 3-18. My friend and I were crossing from the NY hotel to Excalbur hotel when we came upon a crowd of 50 p +2001-03-18,46.0580556,-84.0922222,Goetzville,MI,light,45,We had three sightings of bright white lights shooting across the sky at extreme speeds, with the third one seeming to land/crash. +2001-03-18,38.6786111,-121.2247222,Orangevale,CA,fireball,5,Bright fireball +2001-03-18,33.9791667,-118.0319444,Whittier,CA,light,30,Pale, ruddy starlike object +2001-03-18,41.3955556,-85.4244444,Albion,IN,oval,300,Daytime sight +2001-03-18,40.7141667,-74.0063889,New York City,NY,circle,10,UFO and Black Choppers over New York +2001-03-18,38.9780556,-122.8383333,Kelseyville,CA,circle,20,White disc moves perpendicular to wind in clear sky, then suddenly disappears. +2001-03-18,42.3472222,-89.0388889,Machesney Park,IL,fireball,600,moved stopped flashed moved BIg flash diisapear +2001-03-18,40.4155556,-74.1913889,Hazlet,NJ,light,180,ON 03-18-01 AT 8PM I WITNESSED APINKISH LIGHT COME FROM THE EAST AND STARTED DOING CIRCULER LOOPS AND DIVES OVER HEAD BEFORE DISAPEARIN +2001-03-18,35.4872222,-80.6219444,Kannapolis,NC,unknown,300,It shot from one side of the car to the other,it was a yellow color of light with a squarish circle shape. +2001-03-18,42.2711111,-89.0938889,Rockford,IL,formation,180,For about three minutes, we watched a formation of orangish lights all taking turns twinkling, then fading out. +2001-03-18,42.2711111,-89.0938889,Rockford,IL,light,1200,Directly above the Boylan High school, there were a series of 9+ lights. The first 3 were in a triangle formation , then a tail, and th +2001-03-18,42.2711111,-89.0938889,Rockford,IL,light,300,At about 21:30 this evening, I observed six orange lights in the eastern sky over Rockford, IL. +2001-03-18,42.2711111,-89.0938889,Rockford,IL,light,120,Over a hill we had seen 4 or 5 lights in a semi-circle. They were flashing in unison from yellow to white. After about 2 minutes they +2001-03-18,40.1733333,-79.8577778,Donora,PA,light,2700,bright star-like object , surrounded by green and red lights +2002-03-18,40.5186111,-74.4125,Edison,NJ,flash,60,In mid night, flashing big yellow white lights soared past my window but then my neighbor claims to have seen it too. +2002-03-18,34.0194444,-118.4902778,Santa Monica,CA,cylinder,360,Clear day cylinder UFO caught on tape over Santa Monica , California. +2002-03-18,34.0194444,-118.4902778,Santa Monica,CA,cylinder,360,Daytime UFO over Santa Monica Ca. +2002-03-18,31.1352778,-97.0025,Travis County,TX,triangle,240,My friend and i saw a triangle that couldn't possibly be a plane +2002-03-18,28.6475,-96.8922222,Bloomington,TX,sphere,120,3 spheres flashed colrs as we were riding our bikes in a circle around a lantern. +2002-03-18,37.3861111,-122.0827778,Mountain View,CA,flash,1.5,very sharp, very bright, intense green light - moved like a meteor +2004-03-18,28.555,-82.3880556,Brooksville,FL,formation,600,strange array of lights suddenly appear about 1/2 mile in front of my truck, in Brooksville Florida. +2004-03-18,45.5236111,-122.675,Portland,OR,disk,20,Fast moving round object at night. +2004-03-18,39.6402778,-106.3736111,Vail,CO,oval,60,MUFON/COLORADO REPORT: Two witnesses see UFO buzz by Air Force C-17 transport over Vail, Colorado in daylight. +2004-03-18,36.8572222,-88.3502778,Benton,KY,light,300,yellow/orange lights, hover, flicker, go out,re-appear +2004-03-18,40.1786111,-122.2347222,Red Bluff,CA,triangle,60,Triangular, possible aura, definately morphed shape. +2004-03-18,40.0455556,-86.0086111,Noblesville,IN,light,180,Moving light that slowed down, stopped, stood still and then disappeared. +2004-03-18,37.6455556,-84.7722222,Danville,KY,other,20,Faint but large boomerang shaped object then small star like object turning red +2004-03-18,27.3361111,-82.5308333,Sarasota,FL,sphere,35,Seen 3/18/2004 near longboat beach in Sarasota. Amazing sphere just above water. Great photo of the object. +2005-03-18,40.0941667,-75.9116667,Honey Brook,PA,flash,900,space ship flickered lights for what seemed to extend to a mile in length. then a they all lit up at once and then dissapeared. +2005-03-18,42.4772222,-88.0955556,Antioch,IL,circle,120,Large circular charcoaled grey object spotted in Northern Illinois +2005-03-18,36.0872222,-81.9275,Newland,NC,changing,300,Omg it actually excist +2005-03-18,43.3044444,-70.9761111,Rochester,NH,cigar,4500,Saw hovering cigar shaped craft with 12 lights over hill off of RTE 16 in Rochester,NH. Then witnessed more lights going north +2005-03-18,35.1377778,-97.6577778,Blanchard,OK,unknown,300,Strange large bright lights seen in sky over Blanchard, OK March 18th. +2005-03-18,38.7244444,-83.0133333,South Portsmouth,KY,circle,3,Five lights appear in Sky +2006-03-18,33.4222222,-111.8219444,Mesa,AZ,disk,3,Disk +2006-03-18,38.5816667,-121.4933333,Sacramento,CA,unknown,60,Strange Sounding Aircraft Over Sacramento CA +2006-03-18,40.4538889,-75.8183333,Fleetwood,PA,light,900,Bright White Light Climbing Altitude, Viewable for Short Period. +2006-03-18,33.6602778,-117.9983333,Huntington Beach,CA,cross,780,Cross shaped formation of lights dropping red flair light projectiles +2006-03-18,39.7763889,-74.8627778,Jackson,NJ,sphere,60,round white light in northern sky of Jackson NJ - disappeared instantly after observing for 1 minute +2006-03-18,44.2194444,-123.2044444,Junction City,OR,other,2700,perfect silver ball floating +2006-03-18,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,60,A fire ball that stood over the ocean and came from the ocean!!! +2006-03-18,33.7669444,-118.1883333,Long Beach,CA,oval,300,orange light drips in LONG BEACH CA +2006-03-18,44.9033333,-93.5661111,Excelsior,MN,flash,60,Saw a bright flash, and a low level airplane. Saw a green flare come down from sky, but not from airplane. +2007-03-18,39.9522222,-75.1641667,Philadelphia,PA,triangle,300,I observed a triangular craft that had three bright white lights on each tip and a large red light in the center. it was very close an +2007-03-18,46.8261111,-119.1741667,Othello,WA,sphere,60,Silver Spherical Probe entering and exiting chemtrail in Othello, Washington +2007-03-18,41.1844444,-73.1336111,Stratford,CT,cigar,20,white cigar shaped ufo over Stratford CT +2007-03-18,33.9311111,-117.5477778,Norco,CA,fireball,10,fireball heading NE (towards Naval Weapons Center) in Norco +2007-03-18,34.0975,-117.6475,Upland,CA,fireball,10,Blue/ Green Fireball fly across the sky in Upland, Ca 3/18/07 +2007-03-18,40.7683333,-74.1458333,Kearny,NJ,light,40,light makes L- shape turn in sky +2007-03-18,38.9783333,-76.4925,Annapolis,MD,light,15,Three craft lights traveling in formation- absolute parallel tracks, approx 075 degrees heading. looked like sattelites, but flying +2007-03-18,37.7644444,-89.335,Murphysboro,IL,rectangle,5,Rectangular, translucent object at a low altitude flies across the sky at high speed +2007-03-18,41.7352778,-70.1944444,Dennis,MA,unknown,7200,three objects hover in the sky for two hours above cape cod. +2008-03-18,41.2372222,-82.12,Lagrange,OH,cylinder,480,solid beams of light coming from sky allmost laser like.. +2008-03-18,39.9536111,-74.1983333,Toms River,NJ,rectangle,1800,Silent Rectangular aircraft sighted mid-march, toms river, new jersey +2008-03-18,43.0466667,-90.3797222,Highland,WI,unknown,15,Hovering lights in the clear night sky, flashing red orange and disappear +2008-03-18,42.7955556,-74.7536111,Cherry Valley,NY,sphere,32400,Red pulsing light over Cherry Valley, NY. +2008-03-18,33.2333333,-82.5955556,Gibson,GA,triangle,25,Three sided stationary object turning clockwise in sky +2009-03-18,37.8455556,-83.8583333,Stanton,KY,triangle,300,Big triangle shaped craft with two bright lights just above tree line. It vanished as I got passed. +2009-03-18,34.1083333,-117.2888889,San Bernardino,CA,formation,120,3 round white disks flying in formation,hovered then a forth appeared, then all four sped off. +2009-03-18,42.4694444,-93.8158333,Webster City,IA,light,10,Fast moving light over nightime Webster city. +2009-03-18,44.8113889,-91.4983333,Eau Claire,WI,light,1200,Pair of orange lights over western Wisconsin +2009-03-18,35.8238889,-80.2536111,Lexington,NC,formation,300,7 boomerang objects viewed flying in formation that had irregular flying pattern +2010-03-18,41.0127778,-81.6052778,Barberton,OH,sphere,3300,I spotted a dark sphere with random flashing white, red and blue lights hovering in the distance. ((NUFORC Note: Twinkling star? PD)) +2010-03-18,41.85,-87.65,Chicago,IL,other,30,Saw a strange, fast flying object with NO lights heading Northbound LOW in the sky over Chicago. +2010-03-18,41.865,-80.79,Ashtabula,OH,unknown,300,Bright object observed in the morning sky until it suddenly disappeared +2010-03-18,40.2013889,-77.1891667,Carlisle,PA,light,300,2 very bright objects spotted on sunny ,cloudless day +2010-03-18,40.4797222,-85.6277778,Jonesboro,IN,light,240,Bright light /Object moving Across sky +2010-03-18,40.6297222,-91.315,Fort Madison,IA,flash,5,UFO Crashland in Fort Madison Iowa high school football field +2010-03-18,43.6122222,-116.3905556,Meridian,ID,fireball,3600,looks like hundreds of lights in a circle and is moving slowly across the sky. It changes form and does not look like anything that is +2010-03-18,40.8022222,-124.1625,Eureka,CA,light,600,Large, bright light moving over Samoa Beach, then disappearing... +2010-03-18,30.8258333,-82.9052778,Haylow,GA,circle,120,((HOAX??)) 184 mies south of Macon,Ga.,bewteen Fruitland Ga.& Halow Ga.on gs&f railroad track at around 22:30. +2011-03-18,46.8369444,-119.9319444,Beverly,WA,rectangle,240,Two square flat lights/Beverly, Washington +2011-03-18,47.6063889,-122.3308333,Seattle,WA,disk,120,Thin white or gray line, like side of disc, with two lights in the middle moving across the early morning sky. +2011-03-18,32.7558333,-111.6702778,Arizona City,AZ,sphere,600,3 strobbing lights over casa grande,arizona +2011-03-18,38.3030556,-77.4608333,Fredericksburg,VA,triangle,120,shot upwards after emiting a strange beam +2011-03-18,33.5386111,-112.1852778,Glendale,AZ,fireball,240,3/18/11 7:35 P.M Glendale, AZ Fireball falling from sky turns into 6 large glowing lights. +2011-03-18,33.4933333,-112.3572222,Litchfield Park,AZ,circle,180,4 orange orbs hovering over Litchfield Park, AZ +2011-03-18,33.6305556,-112.3325,Surprise,AZ,fireball,240,Falling Star Turns Out To Be Something WAY Different +2011-03-18,34.7647222,-83.0641667,Walhalla,SC,triangle,60,3 very bright non flashing white lights in a triangle formation moving slowing from west to North East w/no sound. +2012-03-18,44.364444399999996,-97.1327778,Arlington,SD,fireball,300,Two pure red star like objects shoot accross the night sky in Arlington, South Dakota. +2012-03-18,40.3266667,-78.9222222,Johnstown,PA,circle,90,Stationary light over ridge top, more appear then move away. +2012-03-18,44.4488889,-88.0602778,De Pere,WI,triangle,15,I saw an enormous, low flying, cloaked craft that was under 1000 feet in altitude. Triangular in shape, fast, and absent of sound. +2012-03-18,41.9163889,-83.3977778,Monroe,MI,light,3600,Light flying in from above, descending, hovering +2012-03-18,38.4147222,-90.8138889,Robertsville,MO,light,30,03/18/12 Robertsville mo 4 high altitude fast zig zagging UFOs over south /south east sky +2012-03-18,42.2458333,-84.4013889,Jackson,MI,light,180,Strange fast moving light in southern Michigan +2012-03-18,34.0522222,-118.2427778,Los Angeles,CA,disk,60,3-18-12 TV show "Voice" Big saucer around the sky scrapers. Wierd Cool, what do you see?? +2012-03-18,41.7,-71.4166667,Warwick,RI,circle,180,A red circular fire that moved across the sky was seen by 5 people in RI. +2012-03-18,41.85,-87.65,Chicago,IL,light,60,Red lighted object over the Northside of Chicago and north suburban area. +2012-03-18,42.8863889,-78.8786111,Buffalo,NY,sphere,600,Slow moving red, glowing spheres in the sky, hover, get smaller then disappear one after the other +2012-03-18,39.4913889,-91.1322222,Reading,MO,circle,40,Lights hovering over city. +2012-03-18,41.7,-71.4166667,Warwick,RI,circle,600,Orange circular orbs in the sky. +2012-03-18,40.8611111,-79.8955556,Butler,PA,flash,3600,Something in the sky tonight +2012-03-18,47.4294444,-122.5444444,Olalla,WA,unknown,2,Blinding white flash. +2012-03-18,47.6063889,-122.3308333,Seattle,WA,fireball,120,Red/orange ball of fire, noiseless and moving steadily for two minutes, south to north in seattle. +2012-03-18,41.5283333,-87.4236111,Griffith,IN,circle,1800,Erratic moving red lights rising in the sky, followed by an unusual number of aircraft in the sky. +2012-03-18,43.3766667,-72.3472222,Claremont,NH,fireball,300,4 pinkish orange fireball like, silent, slow moving objects over Claremont, NH. +2012-03-18,41.6611111,-91.53,Iowa City,IA,fireball,5,3/18/12 9:30 pm, very fast moving orange small ball, zipped from south to north - driving west on I80 just before Iowa City +2012-03-18,38.8047222,-77.0472222,Alexandria,VA,triangle,30,Triangular UFO moving swiftly and silently next to Washington DC +2012-03-18,39.6416667,-77.7202778,Hagerstown,MD,sphere,70,Red-Orange Orb Sighting in Hagerstown Maryland, USA on 03/18/2012 +2012-03-18,45.3002778,-122.9719444,Newberg,OR,other,60,Unusual bright light seen over N.W. Oregon. ((NUFORC Note: Sighting of Venus, which is in the NW sky, currently. PD)) +2012-03-18,26.4377778,-81.8069444,Estero,FL,unknown,3000,Two bright objects which were motionless for 45 to 50 minutes, each object containing 3 bright lights +2012-03-18,30.5166667,-86.4822222,Niceville,FL,fireball,120,Amber colored silent spherical fireball rising from tree line then moving NE, seen by 2 people. ((NUFORC Note: Pilot report. PD)) +2012-03-18,37.0833333,-88.6,Paducah,KY,rectangle,10,Blue ,long rectangle , silent , fast , bigger than a bus . +2012-03-18,41.7075,-86.895,Michigan City,IN,light,3,I seen two hovering lights in the sky and then they came together to form one craft and zoomed away really fast +2012-03-18,47.5302778,-122.0313889,Issaquah,WA,cylinder,3600,An unidentified round circular object seen with very bright lights--observed for 1 hour. +2012-03-18,29.6513889,-82.325,Gainesville,FL,light,1800,Bright light in western sky. Not a planet. Could not be identified by smartphone app. +2013-03-18,41.1733333,-76.0358333,Wanamie (Newport Twp.),PA,light,20,3rd time I've seen it in about 4 years. Always above the mountain range across from us, in different areas and heights. Sits still pret +2013-03-18,38.8338889,-104.8208333,Colorado Springs,CO,light,60,Two lights going straight up +2014-03-18,35.9552778,-96.0086111,Glenpool,OK,light,7200,White light in sky over Glenpool, OK, area. Light looks long and horizontal. +2014-03-18,41.8505556,-87.7936111,Berwyn,IL,light,15,BRIGHT RED/ORANGE LIKE LIGHT CONSUMED ENTIRE LIVING ROOM. +2014-03-18,40.4991667,-74.3994444,Piscataway,NJ,oval,20,Oval shaped metal object seen following a wide-body aircraft and then disappearing with it at the same moment. +2014-03-18,33.5988889,-117.2791667,Wildomar,CA,unknown,1200,Daytime UFO above Riverside County. Approx. 4:15 with Non commercial planes following within 30 min. +2014-03-18,35.0844444,-106.6505556,Albuquerque,NM,formation,30,Still lights in a row with no movement for 30 or so seconds. +2014-03-18,29.7630556,-95.3630556,Houston,TX,flash,2,Shooting ticket type of craft, high in the night sky, which seemed to take off like a sci fi space ship going into light speed. +2014-03-18,40.7966667,-81.5216667,Massillon,OH,formation,4,Green string of orbs, steady on then to strobes then disappears over populated town. +2014-03-18,38.6447222,-121.2711111,Fair Oaks,CA,unknown,1200,Flashing lights playing in the sky. +2014-03-18,38.8813889,-94.8188889,Olathe,KS,circle,300,Disc like object, 2 huge spot lights, blue rings underneath. +2014-03-18,42.3266667,-122.8744444,Medford,OR,disk,4260,Large multicolored disk radiating many colors w/ long hanging arms hovering over an hour above Griffin/Sterling Creek area. +1977-03-19,32.8047222,-97.4447222,Lake Worth,TX,chevron,1200,Naval Air Station UFO +1977-03-19,34.0522222,-118.2427778,Los Angeles,CA,other,60,White lights w/blue halo over Santa Monica Fwy. +1997-03-19,30.3411111,-95.0852778,Cleveland,TX,cigar,3600,saw 7 objects hoving in the sky for at least and hr ..theysaw some kind of planes chasing +1998-03-19,35.7511111,-86.93,Spring Hill,TN,light,1200,It was a light formation containing 5 lights regularly spaced moving in a circular pattern. These lights were fuzzy edged like headligh +1998-03-19,42.1291667,-83.1444444,Grosse Ile,MI,diamond,300,Two crafts came into view & Flew slowly across the sky +1999-03-19,41.85,-87.65,Chicago (Hwy. 531),IL,other,45,I viewed object heading west moveing very fast.Craft then changed direction heading east,craft again changed direction moved straight u +1999-03-19,35.6969444,-82.5608333,Weaverville,NC,other,40,Two black helicopters following possible object near Parkway entrance +1999-03-19,39.2902778,-76.6125,Baltimore,MD,formation,60,Swirling mass of approximately 12 red to amber lights. +1999-03-19,33.4708333,-81.975,Augusta,GA,oval,300,We were standing outside when we looked up and saw a white light and it changed to red, and it was going very slow and then all of a su +2000-03-19,35.0844444,-106.6505556,Albuquerque,NM,oval,60,white/silvery elliptical craft seen 45 degrees above horizon, due west, circling in the air rapidly before speeding off northwest. +2000-03-19,32.2216667,-110.9258333,Tucson,AZ,light,5,Witnessed an extremely fast-moving object, moving across the lower sky toward the horizon in a Northwesterly direction. Object emitted +2000-03-19,37.775,-122.4183333,San Francisco,CA,fireball,5,Fireball from the center of sky moving SE , perhaps falling downward. Faster than a plane but too slow for a meteor +2000-03-19,34.1477778,-118.1436111,Pasadena (I-5, Desert, North Of; South Of Gorman),CA,triangle,180,On a clear night, while driving north on Interstate 5 north of Pasadena, south of Gorman, and west of the Angeles National forest, I sa +2001-03-19,34.0522222,-118.2427778,Los Angeles,CA,other,135,It was about 1:46 A.M. March 19 2001 when I saw it. I was listening to Power 106, and was just about to fall asleep when I heard this w +2001-03-19,30.2669444,-97.7427778,Austin,TX,fireball,1200,HUGE blazing falling object (NOT the Mir). +2001-03-19,42.9511111,-72.7694444,East Dover,VT,light,45,small green light, high altitude, changing direction. +2001-03-19,43.3369444,-71.5658333,Canterbury,NH,changing,1800,Large Orb,red&green lights surrounding, capable of breaking into 3 triangles, or smaller orbs. +2001-03-19,35.7719444,-78.6388889,Raleigh,NC,light,120,Unidentified object that did not have required flashing light travels alongside and aircraft with normal lights. +2001-03-19,43.3816667,-87.9405556,Saukville,WI,unknown,1800,I have never seen anything like this object and its movements and lights before. +2001-03-19,47.0380556,-122.8994444,Olympia,WA,light,1800,light changing colors over olympia, wa +2001-03-19,43.6275,-89.7708333,Wisconsin Dells,WI,light,4,Three sightings of three to four orange round lights in a line that moved in the night sky and then disappeared. +2001-03-19,41.2458333,-75.8816667,Wilkes-Barre,PA,triangle,30,I was in y room wathcing T.V. and I heard a faint humming noise,like alot of bees very far away,.So I went to my wndow to see what it w +2001-03-19,40.4405556,-79.9961111,Pittsburgh,PA,circle,1800,A luminous object seen in pittsburgh for over a year with distinct bright lights that can be seen by the naked eye. +2002-03-19,36.1658333,-86.7844444,Nashville,TN,disk,2,Nashville, TN near airport +2002-03-19,35.925,-86.8688889,Franklin,TN,chevron,2700,Wavey object in the sky +2002-03-19,37.6138889,-122.4858333,Pacifica,CA,fireball,2.5,Green-white intense light darting horizontally across the clear evening sky. +2002-03-19,37.6688889,-122.0797222,Hayward,CA,fireball,2,Fast, bright and low flying UFO seen over Hayward, CA. +2003-03-19,40.7141667,-74.0063889,New York City (Bronx),NY,other,1200,Hi , I am (name deleted) and i am so happy that I finaly found your website so that I can report a very interesting object +2003-03-19,41.4047222,-81.7230556,Parma,OH,triangle,600,Triangular craft, from the front you only saw white light, almost invisible in the sky, pyramid characteristics +2004-03-19,37.7261111,-77.0230556,Walkerton,VA,cigar,1200,Shot at cigar shaped object when it illuminated my vehicle +2004-03-19,45.5647222,-88.6738889,Laona,WI,light,900,Round, bright, white light that followed us for approx 10 miles(NOT THE MOON) +2004-03-19,33.7488889,-84.3880556,Atlanta,GA,circle,600,NA +2004-03-19,33.7488889,-84.3880556,Atlanta,GA,circle,600,Single adult witness sees a reflective, disc-shaped object fly below high-altitude contrails. +2004-03-19,37.9883333,-85.7158333,Shepherdsville,KY,triangle,300,Sphere-like object coupled with two bright lights on each side viewed from a distance, Triangular base +2004-03-19,38.9716667,-95.235,Lawrence,KS,light,60,This craft moved with too much force, that would've killed a person. +2004-03-19,42.7261111,-71.1913889,Methuen,MA,changing,300,I looked over and low to the ground was a shape shifting, almost gas like form. At first I thought it was a balloon bieng launched from +2004-03-19,33.4483333,-112.0733333,Phoenix,AZ,egg,60,Eggshape In the Night Sky +2004-03-19,41.14,-104.8197222,Cheyenne,WY,other,3,Green Streaking Object +2004-03-19,41.4875,-82.1016667,Sheffield Lake,OH,disk,180,Paced the UFO for about 3 minutes at 30 mph. +2004-03-19,36.9902778,-86.4436111,Bowling Green,KY,oval,2400,I am sending you this message to report another strange sighting which occured on Friday night, March 19th, 2004 here in Bowling Green, +2005-03-19,42.575,-71.9986111,Gardner,MA,triangle,120,The object fell, then streaked through the air at a 45 % angle with a blinding speed. +2005-03-19,25.7738889,-80.1938889,Miami,FL,disk,900,WHILE DRIVING ONE NIGHT MY SON SPOTTED A SAUCER SHAPED OBJECT BRIGHT WHITE OUTLINED IT WAS MOVING FAST THEN STOPED. +2005-03-19,25.7738889,-80.1938889,Miami,FL,disk,1800,on march 19, 2005 at about 8:05 pm my sister, nephew, son and I saw a disk shaped craft in the southern sky moving very slowly +2005-03-19,41.7019444,-72.3016667,Columbia,CT,fireball,3,Fireball fell from sky. +2005-03-19,37.2455556,-88.3605556,Burna,KY,changing,1200,I noticed what I thought was a "shooting star". +2005-03-19,42.7022222,-83.4027778,Waterford,MI,circle,30,i was on my way home from work on M-59 and i just saw this crazy circle object fly over my head. i was sitting at a light staring up i +2005-03-19,45.2627778,-94.1241667,Annandale,MN,circle,30,Very bright white light speeding down HWY94 low in the sky, outside minneapolis on 3/19/05 10:45 pm +2006-03-19,28.7027778,-81.3386111,Longwood,FL,triangle,60,T here were 2 UFOS they were both triangular shape. It had lights going back and forth. It had no wings or front lights.It was extremel +2006-03-19,34.0633333,-117.65,Ontario (Canada),CA,triangle,11,very different craft triangler shape no blinking lights but three yellow orange lights +2006-03-19,26.2125,-80.25,Tamarac,FL,light,30,A little red light flew across the sky. +2006-03-19,43.6136111,-116.2025,Boise,ID,other,1800,Went outside to let pet out and saw in the southwest sky a cluster of lights flashing red, green and blue. The object did not move but +2006-03-19,47.6063889,-122.3308333,Seattle,WA,circle,3,A very solid brilliant white opaque ball crosses sky, 2-3 seconds. Heading SSE over Seattle Sun. night. +2006-03-19,46.1469444,-122.9072222,Kelso,WA,fireball,10,Three fireballs seen accross Kelso, WA. +2006-03-19,38.8047222,-77.0472222,Alexandria,VA,fireball,2,Neon Green Flash Fireball +2007-03-19,29.5847222,-81.2080556,Palm Coast,FL,changing,3600,A very bright shape in the night sky, only to be moving slightly. ((NUFORC Note: Venus?? PD)) +2007-03-19,41.5038889,-87.7130556,Matteson,IL,light,1080,Very bright red light! +2007-03-19,37.7022222,-121.9347222,Dublin,CA,other,3600,2 stationary white objects at high altitude - then disappeared after 1 minute. 3 more objects seen moving slowly across the sky. +2007-03-19,38.8338889,-104.8208333,Colorado Springs,CO,triangle,86400,Air Force fired projectiles of some sort at alien craft and hit them directly, causing all of the craft fired upon to hit the ground. +2007-03-19,44.3,-120.8333333,Prineville,OR,sphere,45,Saw a sphere shape light hovering off rimrock, it moved very fast, and was gone in an instant. +2007-03-19,43.9680556,-88.9433333,Berlin,WI,fireball,900,It would disappear in one part of the sky for a second then would reappear in a spot a very long distance from where it had disappeared +2008-03-19,33.5091667,-111.8983333,Scottsdale,AZ,triangle,120,Triangular shaped craft hovering over a desert /mountain area of N. E. Scottsdale +2008-03-19,47.6741667,-122.1202778,Redmond,WA,oval,120,oval shaped object disappeared over redmond. +2008-03-19,33.8302778,-116.5444444,Palm Springs,CA,other,120,The clincher was that after viewing the bright peachy/orange/red light it moved perpendicular to where I was standing vanished in 2sec. +2008-03-19,31.3797222,-110.1177778,Palominas,AZ,light,10,Four lights in the sky in Cochise County +2008-03-19,30.2669444,-97.7427778,Austin,TX,triangle,300,Triangular or diamond-shaped craft produced rhythmic circular humming as it slowly flew by very low in the sky. +2009-03-19,35.9605556,-83.9208333,Knoxville,TN,light,180,Five white lights int he sky, like stars or planets, move around one another and then move quickly over the tree line and out of sight. +2009-03-19,41.7691667,-72.965,Burlington,CT,triangle,60,Triangular aircraft flies extremely low, then flies vertically, then flies directly over the observer +2009-03-19,41.6116667,-93.885,Waukee,IA,unknown,180,pulsating, glowing orange object floating to the northwest of waukee, ia +2009-03-19,44.0805556,-103.2305556,Rapid City,SD,light,20,Seemingly shooting star spilt into 4 objects, then joins back up into one object in the Black Hills. +2009-03-19,38.676944399999996,-86.9141667,Loogootee,IN,formation,5,V- shaped, fast moving formation of dimly lit triangles +2009-03-19,27.9455556,-82.2580556,Valrico,FL,triangle,180,It looked too large & bright for a star, then it split in 2, and when it flew over me I could see it was triangular with 4 lights. +2009-03-19,41.6619444,-86.1586111,Mishawaka,IN,triangle,60,Three lights flying over us. ((NUFORC Note: Student report. PD)) +2009-03-19,42.9275,-83.63,Grand Blanc,MI,triangle,60,delta shaped craft with odd colored and flashing lights +2009-03-19,39.0216667,-82.0291667,Mason,WV,triangle,10,Lights fall from sky is a large black tri-angle shaped craft that is silent following large river +2010-03-19,35.925,-86.8688889,Franklin,TN,rectangle,20,fast moving green square darted sky to hill top and disapeared +2010-03-19,30.4380556,-84.2808333,Tallahassee,FL,chevron,600,Bullet and V Shaped UFOs seen over Tallahassee +2010-03-19,33.965,-83.5966667,Statham,GA,circle,1200,2 bright circular lights seen hovering at dusk in Barrow County, Georgia (Second sighting in 1 week) ((NUFORC Note: Venus? PD)) +2010-03-19,34.2694444,-118.7805556,Simi Valley,CA,unknown,240,Very Bright orange/red light seen overhead in Simi Valley 3-19-10 +2010-03-19,38.9783333,-76.4925,Annapolis,MD,disk,180,UFO Sighting Report I was doing some night photography at St. John’s College in Annapolis, Maryland on March 19, 2010 at 21:16. I was +2010-03-19,34.0025,-85.0416667,Rockmart,GA,unknown,30,Bright lighted object zigzagged quickly and suddenly moved upward out of sight in just seconds. +2010-03-19,33.3647222,-92.7247222,Smackover,AR,triangle,2,Triangle UFO +2010-03-19,39.7458333,-75.5469444,Wilmington,DE,sphere,3,A quick moving green glowing ball seen while driving. +2010-03-19,40.4166667,-86.8752778,Lafayette (?) (Near),IN,triangle,120,Low, slow moving triangular aircraft hovers silently just off of I-65 in Indiana. +2010-03-19,42.8863889,-78.8786111,Buffalo,NY,formation,10,5 Bright lights float over home +2011-03-19,32.3863889,-96.8480556,Waxahachie,TX,circle,180,ROTATING BLUE BEAM +2011-03-19,40.2697222,-74.8002778,Ewing,NJ,oval,120,Floating object hovered then flew away very quickly. +2011-03-19,34.6627778,-106.7758333,Belen,NM,unknown,7200,1 star shaped object with blinking lights & landings of other objects where there are no airports. +2011-03-19,47.4958333,-121.7855556,North Bend,WA,other,900,12 Orange glowing kite-shaped fast moving objects flying one after another; north bend, wa; very low +2011-03-19,34.9202778,-82.2963889,Taylors,SC,circle,300,Fleet of 100 plus blue lights in SC night sky +2011-03-19,41.6819444,-85.9766667,Elkhart,IN,fireball,600,Seven balls of fire spaced perfectly all vanished at a certain point +2011-03-19,41.6819444,-85.9766667,Elkhart,IN,sphere,1200,Seven sphereshaped objects on fire Elkhart Indiana 3/19/2011 +2011-03-19,37.3394444,-121.8938889,San Jose,CA,other,3,San Jose +2011-03-19,27.6383333,-80.3975,Vero Beach,FL,light,60,Seven, large, bright lights spotted by two witnesses, above horizon, in Vero Beach, Florida +2011-03-19,26.6155556,-80.0572222,Lake Worth,FL,changing,300,Possible UFO 3/19/2010 Lake Worth,FL night of the Super Moon +2011-03-19,43.6136111,-116.2025,Boise,ID,oval,240,Amber light hoovering in the west sky +2011-03-19,30.0266667,-95.8441667,Hockley,TX,unknown,15,Rapidly moving object with slowly pulsing singular blue-white light source +2012-03-19,38.4094444,-82.2947222,Barboursville,WV,oval,10,Large oval object lands in Barboursville WV +2012-03-19,38.4094444,-82.2947222,Barboursville,WV,oval,10,Large oval object spotted and possibly landed in Barboursville WV +2012-03-19,37.0297222,-76.3455556,Hampton,VA,unknown,600,Looked like a star twinkling like crazy with bright colors, white/green/blue/ red in the general dir.of NASA/Langley. ((Sirius?? PD)) +2012-03-19,44.6205556,-88.7622222,Clintonville,WI,unknown,600,Thunder, and fireworks noise for 3 nights straight, reported at 5 am by 20 residents. +2012-03-19,38.3497222,-81.6327778,Charleston,WV,unknown,20,Bright light entering cloud with major lightning activity and disappearing. +2012-03-19,40.5108333,-75.6033333,Alburtis,PA,light,15,It was neat. Wonder what it was? +2012-03-19,33.6694444,-117.8222222,Irvine,CA,disk,420,My employees got me out and looked on the west in the sky there were 9 shining UFO moved from west to east with a zoom speed. It looked +2012-03-19,41.4569444,-72.8236111,Wallingford,CT,other,180,No noise super fast has one white lihgt on front four white lihgt and four blue lights on back the color was like a stomy cloud +2012-03-19,41.114444399999996,-83.1780556,Tiffin,OH,rectangle,120,Dark square object with red light flying at a low altitude, high speed and no sound. +2012-03-19,33.4483333,-112.0733333,Phoenix,AZ,unknown,300,Low flying object with blue and purple pulsating lights chased by helicopters over Phoenix. +2012-03-19,42.7797222,-73.8461111,Niskayuna,NY,disk,180,Pulsing lights move across the sky +2012-03-19,42.8863889,-78.8786111,Buffalo,NY,fireball,180,Orange "fireball" witnessed in the sky west-by-northwest of Buffalo. +2012-03-19,40.4863889,-86.1336111,Kokomo,IN,light,2700,Observed light for forty-five min before it moved away. +2012-03-19,43.6136111,-116.2025,Boise,ID,light,1410,This is not a hoax +2012-03-19,41.6897222,-87.7972222,Worth,IL,light,1200,Bright light in sky changing coulours and erratic flight patterns. +2012-03-19,35.4427778,-120.8911111,Cayucos,CA,fireball,600,Fireball over cayucos +2013-03-19,36.1511111,-95.5091667,Inola,OK,triangle,300,Couple see's triangler ufo in inola oklahoma. +2013-03-19,32.5883333,-96.9558333,Cedar Hill,TX,formation,120,Group of 5 independently moving craft. +2013-03-19,41.7475,-74.0872222,New Paltz,NY,fireball,180,Brilliantly colored orange oval shaped object, seen from very close range. +2013-03-19,41.4155556,-81.9236111,North Olmsted,OH,diamond,3600,This is getting too weird! +2014-03-19,39.7294444,-104.8313889,Aurora,CO,fireball,600,Amber Orb hovering over the skies in Aurora Colorado. +2014-03-19,28.0391667,-81.95,Lakeland,FL,triangle,1,Shape shifting objects all over central Florida Sky. +2014-03-19,33.5311111,-111.9419444,Paradise Valley,AZ,light,60,Beam of light in Paradise Valley. +2014-03-19,41.0533333,-73.5391667,Stamford,CT,light,3,Two white bright flashes took up the whole room and disappeared in a matter of seconds. +2014-03-19,36.1658333,-86.7844444,Nashville,TN,cylinder,120,Cylinder, shape surrounded by mist, chased by black helicpter. +2014-03-19,35.1186111,-120.5897222,Arroyo Grande,CA,light,900,Bright light spiraled away after 15 minute "dance." +2014-03-19,39.5138889,-121.5552778,Oroville,CA,light,1800,4 lights in the sky for 30 minutes, did not move. +2014-03-19,29.2855556,-81.0561111,Ormond Beach,FL,triangle,900,V-Shaped cloudy object with 6 lights. +2014-03-19,33.4708333,-81.975,Augusta,GA,fireball,1800,7 flying bright orange balls of light on the sky at 9:20 PM. +2014-03-19,33.4708333,-81.975,Augusta,GA,oval,5,There where 3 objects in an oval shape turned sideways, they illuminated in a orange yellowish color lights in the sky, they were in a +2014-03-19,28.8002778,-81.2733333,Sanford,FL,triangle,150,V-shaped Three Bright Lights in triangular formation; flying and hovering low in the sky. Three witnesses +2014-03-19,35.5363889,-82.6930556,Candler,NC,triangle,1.2,Bright triangular object seen over major interstate highway near medium size city. +2014-03-19,26.525,-80.0666667,Boynton Beach,FL,circle,600,I can't believe I didnt saw this in the news, it was shape circle with red and green lights going back and forth like 300mph, +2014-03-19,33.0461111,-96.9938889,Lewisville,TX,formation,30,Red/orange orbs in the sky. +2014-03-19,41.1016667,-80.7647222,Austintown,OH,fireball,5,((HOAX??)) I couldn't tell what it looked like before i could blink it was gone. It had different colors coming out the back. +2014-03-19,35.6869444,-105.9372222,Santa Fe,NM,chevron,300,V-shaped formation of lights moving noiselessly in night sky. +2014-03-19,33.8358333,-79.0480556,Conway,SC,light,30,Bright light moving across the night sky. +2014-03-19,47.5302778,-122.0313889,Issaquah,WA,rectangle,60,Green lit low flying rectangle. +1956-03-20,39.0066667,-76.7794444,Bowie,MD,disk,900,Unusual object seen from different viewpoints. +1972-03-20,33.8352778,-117.9136111,Anaheim,CA,cylinder,30,Cylindrical shaped very fast hovering craft..1972 siting +1975-03-20,33.1580556,-117.3497222,Carlsbad,CA,disk,20,3 flying saucers hovering above a flower field in clear daylight +1976-03-20,42.8780556,-73.1972222,Bennington (In Or Near),VT,disk,109800,While a student at a near by college, female from Hong Kong & myself went riding and was engaging in sex watched by a resident we were +1977-03-20,28.5741667,-81.7463889,Minneola,FL,cigar,600,The strangest thing I have ever seen. +1977-03-20,37.7991667,-88.2611111,Ridgway,IL,rectangle,300,rectangular in shape with a dimly glowing red globe on each end, hovering at 150 ft. , football field sized +1980-03-20,41.0961111,-91.2575,Morning Sun,IA,disk,120,A 12' circular light was on the bottom of the craft. It was hovering silently over my farm pond. I was 20' from craft, the engines star +1980-03-20,40.9166667,-74.1722222,Paterson,NJ,disk,60,HUGE disk hovering over the city of Paterson in the very early 1980's. +1991-03-20,35.1225,-85.3438889,Signal Mountain,TN,flash,180,Hovering disk object lights up the woods +1995-03-20,35.0525,-78.8786111,Fayetteville,NC,cylinder,300,White, Glowing Cylinder, Maybe affected my mind temporarily +1996-03-20,42.0694444,-76.155,Apalachin,NY,disk,240,Small disk flyes over school in Apalachin, NY +1997-03-20,33.4483333,-112.0733333,Phoenix,AZ,other,600,V shaped object with lights on the wings buzzing too low over the highway... +1997-03-20,35.6869444,-105.9372222,Santa Fe,NM,triangle,28800,Was MACHINED by ME ((name deleted)) at LOS ALAMOS NATIONAL labs. Triangle of BERYLIUM METAL. +1997-03-20,48.4111111,-114.3366667,Whitefish,MT,light,10,orange lights (not shaped likeaircraft) about 1000 feet overheadfollowed closely by jet (wingsvisible naked eye). Only soundsof one ai +1998-03-20,42.8694444,-85.6447222,Kentwood,MI,triangle,300,Craft motionless above us we pulled over and stopped very large triangle shape several glowing lights on bottom, craft as big as one or +1998-03-20,43.3863889,-95.1480556,Okoboji,IA,fireball,180,A large fireball came across the sky above the lake. It was yellow then changed to green. +1998-03-20,39.0997222,-94.5783333,Kansas City,MO,formation,1800,I observed a bright pulsing(red, green, and white)light with several smaller white lights around it, while riding in the car with my si +1998-03-20,40.6994444,-99.0811111,Kearney,NE,triangle,20,Going west to east. No sound. No lights. Illuninated by city glare. Alt. unknown. Straight overhead. Width, 2.5 fingers at arms lengt +1999-03-20,42.7325,-84.5555556,Lansing,MI,disk,3,It appeared from the southwestern sky and dropped very slowly into the south-southeast horizon.. slower than any meteorite but faster t +1999-03-20,32.8405556,-83.6325,Macon,GA,egg,0.1,While videoing trees and sides of house object enters frame at high rate of speed moving from east to west +1999-03-20,40.7608333,-111.8902778,Salt Lake City,UT,disk,30,Object emerged slowly from above intersection of two contrails (X) and came from SW direction. Contrails ran from NE to SW and from NNE +1999-03-20,42.1669444,-76.8208333,Horseheads,NY,chevron,15,Three boomerang shaped objects seen going north,had glowing lights on tips +1999-03-20,38.4722222,-81.8144444,Poca (In Manilla Creek),WV,sphere,3600,As it moved across tthe sky and stopped looked like a star.Dropped down from the sky to several hundred feet above the ground. Followed +2000-03-20,34.5025,-84.9511111,Calhoun,GA,other,120,It was about 3;00pm when we were driving down HWY.225 going towards Calhoun to pick up my room mates pay for the week. He was with me a +2000-03-20,40.8325,-115.7622222,Elko,NV,fireball,21600,STOP FOR THE NIGHT TO SLEEP IN VAN. THEN NOTICE FIREBALLS FLYING ALL AROUND WITHIN 100 YARDS OF VAN. WATCHED THEM UNTIL DAYLIGHT. +2000-03-20,41.1219444,-75.365,Mt. Pocono,PA,other,120,Wittnessed extraterrestrial almost face to face. +2001-03-20,42.225,-121.7805556,Klamath Falls,OR,flash,1200,two flashing red lights moving around eachother. +2001-03-20,30.2669444,-97.7427778,Austin,TX,cigar,300,Driving soutth on Mo Pac Expressway, I saw two black cigar shaped objects hovering. +2001-03-20,41.3958333,-72.8972222,Hamden,CT,other,300,We saw a lg.bullet shaped object rise,vertically upwards. +2001-03-20,41.6977778,-72.7241667,Newington,CT,circle,1200,Formation of shiney dots travels in same traffic lane as normal aircraft. +2001-03-20,41.6022222,-71.2508333,Portsmouth,RI,chevron,30,Chevron shaped object seen in Rhode Island sky on night of Vernal Equinox. +2001-03-20,42.3313889,-83.0458333,Detroit,MI,triangle,900,Detroit Mi. 3/20/2001 VERY LARGE TRIANGULAR OBJECT SIGHTED +2001-03-20,35.1738889,-79.3925,Southern Pines,NC,flash,900,Erraticly moving craft emmitting light pulses. +2002-03-20,40.31,-75.1302778,Doylestown,PA,disk,600,At about 1 AM three discs appeared silently over the Courthouse in Doylestown. They hovered silently for 10 minutes then quickly sped a +2002-03-20,34.1083333,-117.2888889,San Bernardino,CA,light,480,Three very large triangular widely separated lights in the sky which formed a triangular pattern. +2002-03-20,39.1619444,-84.4569444,Cincinnati,OH,sphere,30,We spotted several spherical objects that moved in straight lines, and also hovered in place for several seconds. +2002-03-20,33.4483333,-112.0733333,Phoenix,AZ,other,14400,Amber orbs that glow bright, disappear and reappear. +2002-03-20,33.4483333,-112.0733333,Phoenix,AZ,circle,60,The object was traveling at high speed from the south heading north then made a sharp turn upward and disappeared (yikes) +2002-03-20,33.635555600000004,-96.6086111,Sherman,TX,unknown,1800,Sherman, TX. Police Officers and People in Neighborhood See UFO Flying Above Power Lines +2003-03-20,42.0638889,-72.4138889,Hampden,MA,disk,180,Saucer-type white slow moving,then zoomed off. +2004-03-20,42.55,-99.8622222,Ainsworth,NE,light,3,Bright blue light covered sky on clear night while driving on highway. +2004-03-20,36.7222222,-80.8230556,Woodlawn,VA,unknown,300,UFO TRAVELING AT SAME RATE AND SPEED FLYING PERFECTLY RIGHT BESIDE AN AIRPLANE +2004-03-20,33.4222222,-111.8219444,Mesa,AZ,changing,300,I saw for a 2nd time a cigar or oval object that seems to flip and bobel as it's flying changing form from oval to doubled winged shap +2004-03-20,48.1958333,-114.3119444,Kalispell,MT,light,300,A slow large starlike,high object,followed us to driveway,stopped,then high speed flee into red speck lite +2004-03-20,39.2758333,-121.6588889,Live Oak,CA,triangle,7200,Hovered with bright lights over the house for 2 hours. ((NUFORC Note: Celestial body?? PD)) +2004-03-20,40.5852778,-105.0838889,Fort Collins,CO,chevron,15,I saw the phoenix lights over ft.collins colorado +2004-03-20,38.1041667,-122.2555556,Vallejo,CA,chevron,900,Balloon like object rotating, dull gray in color, had a vibrating aura. +2005-03-20,33.4483333,-112.0733333,Phoenix,AZ,light,60,Triangle, lights, N. Phoenix, AZ, spring 05. +2005-03-20,31.1358333,-102.2238889,Mccamey,TX,oval,15,Strange Hills of West Texas +2005-03-20,39.5533333,-77.9952778,Hedgesville,WV,light,600,10-15 lights over hedgesville, WV +2005-03-20,26.0027778,-80.2241667,Pembroke Pines,FL,light,30,VIEWED WHAT LOOKED LIKE A SHOOTING STAR BUT IT MOVED AND BECAME BRIGHTER AND DIMMER. +2005-03-20,32.2094444,-99.7963889,Tuscola,TX,light,60,((PROBABLE HOAX))Blue Orb Followed By Jet +2005-03-20,40.5852778,-105.0838889,Fort Collins,CO,unknown,600,blinking light on the road for a few minutes then stopped. No lights on houses around. +2005-03-20,32.2094444,-99.7963889,Tuscola,TX,light,60,I filed a report back in march and its not on your march or april update ..was for Abilene Texas .. +2006-03-20,38.0494444,-122.1575,Benicia,CA,fireball,600,A large silent Orange firey orb that seemed to have streams of light falling from it and shooting out from it . +2007-03-20,35.2269444,-80.8433333,Charlotte,NC,sphere,14400,((HOAX??)) I am actually a little freaked out that I am even in a position where I reporting something like this. +2007-03-20,40.5852778,-105.0838889,Fort Collins,CO,cylinder,600,On my way to work going North on I-70 from Fort Collins Colorado to Cheyenne Wyoming.Noticed a very bright white light in the dista +2007-03-20,28.1611111,-81.6019444,Davenport,FL,light,30,Pulse Plasma light / craft ((NUFORC Note: Possibly a flare from an Iridium satellite. PD)) +2007-03-20,33.3577778,-81.2708333,Blackville,SC,cigar,30,((HOAX??)) The object appeared this morning while I was traveling to work. It’s was going SE to NW and then changed to west. +2007-03-20,41.1544444,-96.0419444,Papillion,NE,cigar,30,Two cigar shapes traveling the same direction and speed and aproximately one mile away. +2007-03-20,37.6819444,-121.7669444,Livermore,CA,circle,60,Bright circular object of rusty orange color crossing sky, then quickly fading +2007-03-20,40.1002778,-79.5872222,Scottdale,PA,sphere,5,Strange object not blinking but glowing strangely. +2007-03-20,39.7286111,-121.8363889,Chico,CA,sphere,5,Extraordinarily fast moving spherical object with pulsing light... +2007-03-20,38.1075,-122.5686111,Novato,CA,circle,15,UFO in Novato CA 3/20/07 9:27 pm +2007-03-20,45.3002778,-122.9719444,Newberg,OR,light,2,round ball of light falling from the sky like a falling star. +2008-03-20,33.1958333,-117.3786111,Oceanside,CA,sphere,1800,Bright colored sphere shape in the Western sky +2008-03-20,41.7122222,-72.6086111,Glastonbury,CT,cigar,300,Silver cigar shape in the air +2008-03-20,45.4872222,-122.8025,Beaverton,OR,oval,10,While driving home for lunch last Thrusday, the heavy rain clouds, had breaks of blue sky here and there.As I approached the stop l +2008-03-20,32.7833333,-96.8,Dallas,TX,cigar,2100,Bright white cigar shaped object hovering in Western sky for 35 minutes +2008-03-20,29.9986111,-95.2619444,Humble,TX,triangle,300,Triangular object hovering above tree tops. +2008-03-20,47.6816667,-122.2075,Kirkland,WA,disk,5,Two women observe a large, unlighted disc pass overhead very quickly. +2008-03-20,40.8336111,-75.7141667,Lehighton,PA,oval,120,Two bright headlights, gliding above the tree tops, not a helicopter or a plane, a wake-up call - they are out there! +2009-03-20,47.2530556,-122.4430556,Tacoma,WA,circle,900,flashing light over tacoma, washington +2009-03-20,47.2530556,-122.4430556,Tacoma,WA,circle,900,flashing light over tacoma, washington ((NUFORC Note: Same report submitted by second witness. PD)) +2009-03-20,35.0455556,-85.3097222,Chattanooga,TN,sphere,1800,Real life Star Wars +2009-03-20,35.7452778,-81.685,Morganton,NC,unknown,10,A light was seen reflecting off the house and trees from an unknown source. +2009-03-20,32.2686111,-107.7580556,Deming,NM,other,900,I observed a hovering object along N.M. highway 11 south of Deming N.M. at 10:40 am for 15 minutes as I drove north. +2009-03-20,41.6027778,-87.7438889,Oak Forest,IL,sphere,10,I was photgraphing the sun using binoculars and solar filters and later saw an object in the photo. +2009-03-20,38.2538,-94.3356,Butler,MO,light,600,((HOAX??)) 2 objects seen fairly shortly after one another,starlike looking objects. +2009-03-20,47.0969444,-122.63,Dupont,WA,sphere,60,Yellowish colored sphere at north Fort Lewis, WA +2009-03-20,47.6063889,-122.3308333,Seattle,WA,formation,7200,Formation activity over Seattle, persistant strange lights. +2009-03-20,33.4483333,-112.0733333,Phoenix,AZ,triangle,5400,I WENT OUTSIDE FRIDAY AT 9;30PM FRIDAY MARCH 20 2009 i all ways look up at the sky when i go outdoors at night.I was walking to the dum +2009-03-20,31.9722222,-90.0777778,Harrisville,MS,triangle,1,triangle shape,lights at each point underneath, red light rear green front, alt. 200-300ft., speed appx 40mph. +2009-03-20,35.2230556,-93.1577778,Dardanelle,AR,light,45,Bright, yellow light traveling next to a jet over Arkansas +2009-03-20,37.775,-122.4183333,San Francisco,CA,light,240,What looked like a star high in the sky over San Francisco slowly moved then stopped then faded away +2009-03-20,45.5236111,-122.675,Portland,OR,light,180,Two cops observed four strange lights over Portland, OR, and one of the lights appeared to "drip" a molten substance. +2010-03-20,25.0861111,-80.4475,Key Largo,FL,fireball,180,7 orange orbs in key largo FL night sky moving slowly then breaking out of our atmosphere at incredible speeds. +2010-03-20,27.0669444,-81.3569444,Venus,FL,circle,120,((hoax??)) In the past we have seen many strange lights. We always thought they were just flares from the air force base uptown. +2010-03-20,33.9041667,-80.8772222,Hopkins,SC,changing,20,my husband and I were standing in a parking lot outside of our car and we hugged I looked up and I noticed a bird like object that was +2010-03-20,39.4036111,-76.9505556,Eldersburg,MD,disk,30,Saucer shaped UFO with circularly flashing lights seen seemingly following highway. +2010-03-20,43.5277778,-71.4708333,Laconia,NH,changing,5400,UFO Sighting in Laconia +2010-03-20,43.5277778,-71.4708333,Laconia,NH,changing,5400,UFO Sighting in Laconia +2011-03-20,45.8661111,-122.405,Yacolt,WA,sphere,120,A blue hovering sphere late at night. +2011-03-20,43.2080556,-71.5380556,Concord,NH,light,2,I was standing outside looking at the moon tonight, when I looked over and saw two bright lights, one on top of the other. Both were br +2011-03-20,45.5236111,-122.675,Portland,OR,formation,600,Two Black Drone-Like Objects Over Portland Metro Area +2011-03-20,41.85,-87.65,Chicago,IL,cigar,120,It was the vapor trail that made a ring in the sky. +2011-03-20,40.3888889,-77.2891667,Elliottsburg,PA,triangle,180,Bright white lights came close enough to see a triangular shaped craft with bright circular lights on its bottom. +2011-03-20,39.9936111,-105.0891667,Lafayette,CO,light,2700,3 red lights in the shape of a trianlge over Lafayette CO for approximately 45 minutes +2011-03-20,39.9205556,-105.0861111,Broomfield,CO,light,900,Broomfield +2011-03-20,39.9936111,-105.0891667,Lafayette,CO,light,900,Three strange red blinking lights seen in the night sky above Erie, CO +2011-03-20,34.4358333,-119.8266667,Goleta,CA,triangle,10,Black Triangle, 5 white lights over Goleta +2011-03-20,39.9936111,-105.0891667,Lafayette (Near Denver),CO,formation,1200,Three Lights Over Lafayette, CO Near Denver +2011-03-20,41.7188889,-83.7130556,Sylvania,OH,light,10,NW Ohio 3 low flying white lights moving together in a triangle formation with no sound at night. +2012-03-20,41.5838889,-73.8091667,Hopewell Junction,NY,triangle,7200,UFO heading west very very skow ,flashing all diff colors +2012-03-20,30.2669444,-97.7427778,Austin,TX,fireball,120,Orb or Fireball seen in Austin Tuesday +2012-03-20,33.6675,-84.0177778,Conyers,GA,flash,120,Very high starlike object flashing at consistant intervals while remaining motionless. +2012-03-20,36.0344444,-89.3855556,Dyersburg,TN,other,2,Loud noise - not sighting +2012-03-20,35.0525,-118.1730556,Mojave,CA,oval,2,Ufo seen in mojave desert, Calif. +2012-03-20,42.3636111,-87.8447222,Waukegan,IL,other,60,A star shapped object moved from a stationary position southward, it got very bright and the dimmed fairly quickly. +2012-03-20,38.8275,-91.02,Wright City,MO,fireball,1380,Two fireballs coming from the south and a brilliant white light moving in the east +2012-03-20,44.9238889,-92.9591667,Woodbury,MN,fireball,300,4 separate fiery looking balls traveling at a high rate of speed from the NW sky toward the SE sky. +2012-03-20,41.7372222,-72.3708333,Andover,CT,circle,7200,As bright as a pulsating star and as fast as the blink of an eye +2012-03-20,42.3194444,-71.6416667,Northborough,MA,disk,14400,Strange Craft with Pulsating Lights of Red-Green-Blue Hovering Over Central MA on two Nights ((NUFORC Note: Sirius? PD)) +2012-03-20,33.6058333,-78.9733333,Surfside Beach,SC,light,1800,Off the coast of Surfside Beach.SC. 3 bright reddish lights appeared softly then seconds later, soflty dissapeared. Faded in then fade +2012-03-20,33.6058333,-78.9733333,Surfside Beach,SC,light,30,Two bright orange lights flashing on and off then disappearing +2012-03-20,41.8786111,-71.3830556,Pawtucket,RI,light,60,An object producing a large bright orange glow could be seen in the clear night sky for about one minute. It seemed to hover over us in +2012-03-20,41.5838889,-73.8091667,Hopewell Junction,NY,triangle,3600,Triangle figure flashing lights in sky for over an hour. +2012-03-20,44.3836111,-89.8172222,Wisconsin Rapids,WI,light,30,Strange orange lights over Wisconsin Rapids. +2012-03-20,25.6788889,-80.3175,Kendall,FL,light,87,UFO SIGHTING OVER KENDALL FLORIDA. NOT A HOAK! +2012-03-20,33.3627778,-112.1686111,Laveen,AZ,light,900,It was sw of the white tank mt grew bright then dimed out than lit back up ornge looking .. +2012-03-20,37.3541667,-121.9541667,Santa Clara,CA,light,900,Constant glow fast moving object faster above the jet liners. slower than meteor and much faster than jets. some times moving in acute +2012-03-20,42.6791667,-70.8416667,Ipswich,MA,light,300,Orange light ball gets bright then disappears +2012-03-21,35.0525,-118.1730556,Mojave,CA,oval,5,Oval shape UFO +2013-03-20,38.2325,-122.6355556,Petaluma,CA,other,240,Comet like sighting over 101 petaluma area. +2013-03-20,41.9902778,-70.9755556,Bridgewater,MA,triangle,120,Triangle shaped object moves back n forth over tree line n dissapears over BSU. +2013-03-20,41.5161111,-95.45,Shelby,IA,unknown,300,03/15/2013 around Shelby Ia.(near) 04:00 Blinking crossbuck lights and plane disappear +2013-03-20,40.6461111,-111.4972222,Park City,UT,sphere,900,High speed metallic spheres flying by a stationary sphere. +2013-03-20,30.4313889,-98.3444444,Round Mountain,TX,sphere,13,Bright spherical object with contrail disappears while being watched. +2013-03-20,33.2211111,-116.3333333,Borrego,CA,disk,2,I took a photo not knowing that there was an object in the sky until I downloaded it on my PC. +2013-03-20,29.9544444,-90.075,New Orleans,LA,fireball,300,It was so strange. I was outside waiting for my boyfriend to come outside. I was looking up at the sky and all of a sudden I saw a seri +2013-03-20,39.6463889,-121.7988889,Durham,CA,sphere,15,Three orange globes flying in a triangle formation were witnessed in Durham, CA. +2013-03-20,48.7597222,-122.4869444,Bellingham,WA,fireball,1200,Four fire like orbs appeared individually, gliding through the sky all traveling in the same direction at a low altitude. +2013-03-20,47.5675,-122.6313889,Bremerton,WA,light,300,Two bright lights over Bremerton - Port Orchard. +2013-03-20,26.1416667,-81.795,Naples,FL,circle,480,Four very large orange glowing orbs arising from a nature preserve in North Naples Florida observed by 5 adults March .2013. +2013-03-20,44.6366667,-123.1047222,Albany,OR,cylinder,600,((HOAX??)) One quick sighting. +2014-03-20,35.8172222,-83.2469444,Cosby,TN,fireball,900,Strange dancing lights making patterns in sky over Cosby, TN after lifting off of the ground. +2014-03-20,33.8702778,-117.9244444,Fullerton,CA,unknown,1,Orange colored object traveling from north to south following curvature of earth in less than 1 second. +2014-03-20,37.3477778,-120.6080556,Atwater,CA,sphere,7200,Spherical motionless mystery object in the daytime sky looked like a mini-Moon. +2014-03-20,42.6291667,-84.7388889,Potterville,MI,light,120,Two huge blue lights over Potterville, around 7pm, 3/21/14. +2014-03-20,32.9477778,-112.7161111,Gila Bend,AZ,fireball,2700,Orange circular/orb like balls of light appearing and disappearing across sky, radiating intense orange hue of light. +2014-03-20,29.6930556,-91.3019444,Patterson,LA,other,180,A single craft of unique shape moving very fast, no sound or vapor trail, very high, towards open waters of the Gulf of Mexico. +2014-03-20,46.4163889,-117.0441667,Clarkston,WA,light,20,Two very bright white lights moving quickly in unison westerly across the northern sky just below the tip of Big Dipper's handle. +2014-03-20,33.3941667,-110.7858333,Globe,AZ,other,300,A red light flashed followed by 2 more red lights near it showing they were coming from a parallelagram patterned object. +2014-03-20,44.6669444,-93.6266667,Jordan,MN,other,25,Narrow, long object with 3 green lights (top row), 3 red lights (bottom row). +2014-03-20,32.9372222,-87.1647222,Brent,AL,unknown,600,Orange lights outside of Brent, AL. +2014-03-20,26.2513889,-80.1791667,Coconut Creek,FL,light,300,Strange red, white, and blue color changing, fast moving, ball of light! +2014-03-20,38.6272222,-90.1977778,St. Louis,MO,light,300,6 Orange balls of light, St. Louis. +2014-03-20,35.8680556,-83.5619444,Sevierville,TN,triangle,180,A Triangle object. +2014-03-20,36.9902778,-86.4436111,Bowling Green,KY,light,15,Two star-like objects moved in the same path slowly, then suddenly sped up ALOT with random jittery motions, then faded out of view. +2014-03-20,40.6461111,-111.4972222,Park City,UT,other,3,Irregular object about one fifth size of Moon falls towards Ogden as viewed from Park City. No tail or debris. +2014-03-20,34.5325,-83.985,Dahlonega,GA,light,360,Unknown lights over Dahlonega, GA. +2014-03-20,44.7894444,-93.6019444,Chaska,MN,unknown,600,Bright hovering mass. +1966-03-21,41.92,-84.6305556,Hillsdale,MI,disk,3600,Hillsdale Michigan, large metallic disc shaped object hovered for close to an hour. +1974-03-21,30.1125,-85.2005556,Wewahitchka,FL,disk,600,I could only see the underside of it from about 25-50 yards. It had a bright light underneath. It left fast, really fast. +1978-03-21,42.3266667,-122.8744444,Medford,OR,disk,480,Inflight formation with two disk +1996-03-21,41.9438889,-85.6325,Three Rivers,MI,light,900,Wihte light UFO 19 +1996-03-22,41.9438889,-85.6325,Three Rivers,MI,triangle,600,Back in March 21ᆐ whil photographing the night sky whth my Sears VHS Camcordor, I filmed what I thin might be a black triangle. I +1997-03-21,34.0336111,-117.0422222,Yucaipa,CA,fireball,120,A single orange glowing object moving East at a steady speed. Began to drop flaming objects like the shards from a welders torch. Aft +1998-03-21,42.7875,-86.1088889,Holland,MI,flash,600,A bright flash of light came on and off 2-3 minutes apart 3 times in the same spot in the northern sky then one more time a little to t +1998-03-21,29.4238889,-98.4933333,San Antonio,TX,formation,1800,First 7 then up to a dozen lights at very high altitude darting around. +1999-03-21,43.1116667,-88.4991667,Oconomowoc,WI,formation,10,I saw two pairs of lights moving east to west very high and moving much faster than any aircraft I have seen. They crossed paths and we +1999-03-21,43.2127778,-75.4561111,Rome,NY,unknown,5,two sets dim red lights, not high in sky, moving fast NW direction, no other lights, no sound +1999-03-21,36.5963889,-82.1886111,Bristol,VA,disk,300,My name is ((deleted)) and i was driving down the street. A flash of light with a flying saucer suddenly appeared it swayed back and +1999-03-21,46.1852778,-123.5847222,Knappa (Near; Approx 12 Miles From Astoria),OR,unknown,8,I was outside and saw a helicopter with its search light on. I went out for a closer look and saw 'something', and it appeared to be a +2000-03-21,36.0769444,-87.3877778,Dickson,TN,cylinder,30,Waiting at a stop light i saw a jet in the distance.I was looking at it's trail when i saw a large tube shaped object floating in the s +2000-03-21,42.2094444,-85.7844444,Mattawan,MI,triangle,9,one craft Flew over head toward east, Seperated into 3 craft +2000-03-21,28.2486111,-81.2813889,St. Cloud,FL,circle,900,HAVE SEEN SEVERAL TIMES. AMBER LIGHT THAT WILL STAY AROUND FOR ABOUT 15 MINUTES AND THEN WILL DISAPPEAR. THEN APPEARS AGAIN IN DIFFERE +2000-03-21,41.965,-80.4075,East Springfield,PA,light,15,a light in the sky going in a southeasterly direction under the clouds.the light showed around itself and on the bottom of the clouds t +2001-03-21,44.2508333,-72.7613889,Moretown,VT,formation,15,VT,Moretown-VERY BRIGHT greenish(?) VERY LARGE formation descending and VERY RAPIDLY almost vertically; no crash,no flames;disappeared. +2001-03-21,32.7355556,-97.1077778,Arlington,TX,unknown,25,Very fast moving "object", blinking blue, red, and green. In that pattern. +2001-03-21,41.3958333,-72.8972222,Hamden,CT,oval,40,((NUFORC Note: Female witness describes a second sighting of a bizarre object. PD)) +2001-03-21,45.6136111,-123.9416667,Rockaway Beach,OR,unknown,240,Weird lights over Oregon Coast +2001-03-21,43.6705556,-121.5025,La Pine,OR,triangle,180,Dark triangle with strange strobing lights seen south of bend Oregon 21 mach 22:30 PST moving slowly at first then acelerating to the S +2001-03-21,44.0522222,-123.0855556,Eugene,OR,fireball,2.5,Fireball of bright white light traveling from South to North. +2002-03-21,42.2047222,-83.4852778,Belleville,MI,circle,10,small circular silverish object in sky doing small circles in sky not like any airplane could do as fast and small of circle +2002-03-21,34.0522222,-118.2427778,Los Angeles,CA,oval,300,I was able to capture video of the object over the ocean in the Santa Monica area. +2002-03-21,37.9747222,-122.5605556,San Anselmo,CA,chevron,120,"V" pattern over hill came towards me, zig-zagged slowly and then "flew" away very quickly +2002-03-21,47.6588889,-117.425,Spokane,WA,unknown,300,Friggen freaky +2002-03-21,39.3436111,-90.2125,Greenfield,IL,unknown,300,The ufo had two very bright lights side by side it was moving slowly and made a hovering sound. +2002-03-22,28.6697222,-81.2083333,Oviedo,FL,sphere,30,Two small Sphere shaped crafts that were zigzagging while flying quickly through the air. (Metalic, shinny surface) +2004-03-21,39.9611111,-82.9988889,Columbus,OH,light,120,White orb silently passing over metropolitan area +2004-03-21,34.0983333,-118.3258333,Hollywood,CA,circle,1200,unknown shape over the hollywood bowl. +2004-03-21,45.1888889,-93.3972222,Champlin,MN,fireball,10,blue fireball descending +2004-03-21,35.8613889,-97.9313889,Kingfisher,OK,triangle,600,Triangle Shape, 2 bright halogen lights, clear or hollow middle +2004-03-21,35.8613889,-97.9313889,Kingfisher,OK,triangle,600,triangle shaped brightly lighted ufo +2004-03-21,46.4477778,-120.4191667,Wapato,WA,fireball,20,There was a bright orange object in the sky it was very bright and lasted 20 sec or so than disapeared. +2004-03-21,40.3041667,-74.1008333,Tinton Falls,NJ,sphere,180,More orbs near the Jersey Shore area... +2004-03-21,39.8966667,-79.9747222,Carmichaels,PA,light,1800,Object did not look like a plane ((NUFORC Note: Venus. PD)) +2004-03-21,39.8966667,-79.9747222,Carmichaels,PA,light,2700,Refer. to the report from Carmichaels, Pa. on 21 March 2004 at 20:30 hrs.My son and I were six miles from Carmichaels, Pa in the vi +2004-03-21,47.0625,-109.4275,Lewistown,MT,fireball,180,Object with blueish tail impacts NW of Lewistown Montana +2004-03-21,36.4336111,-99.39,Woodward,OK,other,14400,Star looking object moving in zig zagging shapes and various speeds and Changing colors ((NUFORC Note: Sirius. PD)) +2004-03-21,40.6027778,-86.8672222,Brookston,IN,flash,20,4 bright orange flashes in a line +2005-03-21,33.5091667,-111.8983333,Scottsdale,AZ,triangle,15,Black Triangle with three bright lights, over highway 101 in Scottsdale area. +2005-03-21,35.198055600000004,-111.6505556,Flagstaff (Ne Of),AZ,triangle,120,Golden triangle of lights in Northern Arizona, 2 min duration, silent and then just disappeared +2005-03-21,37.6941667,-122.0852778,Castro Valley,CA,egg,120,Shiny white object flys silently over our home +2005-03-21,33.5091667,-111.8983333,Scottsdale,AZ,triangle,180,I observed three bright white lights arranged in a triangular pattern hovering low in the northeast sky +2005-03-21,47.8525,-92.6894444,Cook County,MN,triangle,600,three lights came out from behind a cloud and began following beside our car for 5- 10 minutes +2005-03-21,35.2269444,-80.8433333,Charlotte,NC,light,45,Bright star size pulsing object moves accross sky in westerly direction +2005-03-21,40.4863889,-86.1336111,Kokomo (West Side Of),IN,fireball,60,From my back yard (taking the dog out) this evening is the 3rd time I have seen these "lights". I've never seen anything like it....ev +2005-03-21,45.1977778,-93.3869444,Anoka,MN,triangle,10,faint orange lights in shape of a triangle, moving very low, very fast. +2005-03-21,40.4166667,-86.8752778,Lafayette,IN,circle,7200,Strange Orange light patterns in sky +2005-03-21,39.3330556,-82.9825,Chillicothe,OH,light,1800,Lights in the east sky with very strange flight patterns +2005-03-21,40.135,-86.2205556,Sheridan,IN,chevron,30,A moving array of white lights illuminating sequentially. +2005-03-21,39.9508333,-86.2619444,Zionsville,IN,fireball,120,Lights that looked like big balls of fire seen over Zionsville. +2005-03-21,40.4863889,-86.1336111,Kokomo,IN,fireball,2700,Odd Orangeish lights. +2005-03-21,40.7544444,-86.3566667,Logansport,IN,sphere,600,Orange Lights in the Sky +2005-03-21,34.0194444,-118.4902778,Santa Monica,CA,diamond,180,It appeared with three white lights then we saw colored lights and then it went into the clouds and came back out then dissapeared +2006-03-21,33.4222222,-111.8219444,Mesa,AZ,circle,7200,2 objects over Mesa, 10-15 thousand ft., broad daylight +2006-03-21,40.4863889,-86.1336111,Kokomo,IN,fireball,30,falling star seen over mid west indiana. +2006-03-21,40.4863889,-86.1336111,Kokomo,IN,light,7,very bright, intense amber lights 3-4 items high altitude west of kokomo +2006-03-21,40.4863889,-86.1336111,Kokomo,IN,disk,10,Large object of amber lights hovering very low. +2006-03-21,37.9841667,-120.3811111,Sonora,CA,light,1,TUESDAY 21ST MARCH 2006 - 22.30 LOCATION - SONORA, Stockton St DESCRIPTION Me and my friend had just taken the dogs out for a late w +2006-03-22,64.6813889,-163.4055556,White Mountain,AK,sphere,1,Three orbs were bounced towards our little village the first one was at 2:15 am and it was white lite in color about 2 inches in diamet +2007-03-21,36.55,-85.5052778,Celina,TN,unknown,3,Man that bright light was messed up. +2007-03-21,35.7883333,-83.5544444,Pigeon Forge,TN,light,3600,Light moving in strange patterned flight over Pigeon Forge, Tennessee +2007-03-21,41.3138889,-81.6852778,Broadview Heights,OH,triangle,300,Large black triangle observed close up flying away then reaapearing soon after. +2007-03-21,33.2147222,-97.1327778,Denton,TX,changing,10800,Bright oval shaped craft/object white with red pulses from behind it 10 to 20 sec, apart. Very close. Looked like it was in orbit..UFO? +2007-03-21,40.4405556,-79.9961111,Pittsburgh,PA,light,60,Two bright lights that did not move and that weren't there a minute ago. +2008-03-21,32.5091667,-92.1191667,West Monroe,LA,flash,3600,Crazy UFOs moving in circular and zig-zagging formations, very fast! +2008-03-21,42.3166667,-72.1263889,New Braintree,MA,other,14,Black craft flew over the tree line in my back yard! +2008-03-21,33.9297222,-85.4702778,Borden Springs,AL,cigar,120,Glowing cigar-shaped craft slides across predawn skies in Alabama. +2008-03-21,28.5380556,-81.3794444,Orlando,FL,light,30,Early morning sighting of glowing blue object that dead falls, stops, then moves due north at an incredible speed +2008-03-21,37.9886111,-84.4777778,Lexington,KY,triangle,180,Three blinking dots in the shape of a triangle...similar to the one sighted in pasco terxas on March 14 +2008-03-21,34.1577778,-118.6375,Calabasas,CA,oval,15,shiny oval in sky that changed shape and then disappeared. +2008-03-21,35.2269444,-80.8433333,Charlotte,NC,circle,120,white circular object falls in behind commercial liner-middle of day +2008-03-21,35.2269444,-80.8433333,Charlotte,NC,circle,30,My first true UFO sighting! +2008-03-21,35.2269444,-80.8433333,Charlotte,NC,light,3,Bright green light disappeared above Charlotte skyline. +2008-03-21,34.1013889,-84.5194444,Woodstock,GA,fireball,5,Intense green fireball over Woodstock Georgia +2008-03-21,37.5483333,-121.9875,Fremont,CA,formation,45,Formation of gold lights hovering over open space +2008-03-21,39.2902778,-76.6125,Baltimore,MD,unknown,2,UFO Streaks Past the Moon +2008-03-21,39.5297222,-119.8127778,Reno,NV,changing,2700,My friend and I encountered an object in the sky that at first we thought was a plastic bag. Then we noticed this thing was roughly 8Ƹ +2009-03-21,32.7152778,-117.1563889,San Diego,CA,circle,420,Two circular crafts with blue circular lights were seen in San Diego on 21 March 2009 40 mins after midnight. +2009-03-21,32.4608333,-84.9877778,Columbus,GA,unknown,360,UFO seen not moving in the air for at least a minute then I got closer to it but it flew away from me. +2009-03-21,40.0580556,-82.4013889,Newark,OH,light,3600,3 star like objects in a rowƻ separate lights giving off red or orange light +2009-03-21,40.77,-85.4533333,Majenica,IN,other,10,Metallic object in the sky. +2009-03-21,35.3733333,-119.0177778,Bakersfield,CA,oval,60,BLUE ORB UFO IN BAKERSFIELD CA. +2009-03-21,40.2777778,-80.0841667,Mcmurray,PA,changing,2100,03/21/09 4 lights circling approx 6 stories high in residential area. ((NUFORC Note: Advertising lights?? PD)) +2009-03-21,32.7152778,-117.1563889,San Diego,CA,circle,240,Two UFOs seen over Ocean Beach in San Diego +2009-03-21,40.5219444,-111.9383333,Riverton,UT,circle,3900,At midnight I observed a bright multi-colored pulsa I called a friend who lives in Orem, Utah which is 20 miles south of Riverton. He +2009-03-21,40.5219444,-111.9383333,Riverton,UT,other,3600,Observed pulsating multi-colored sphere 5 degrees above horizon south of constellation Orion. My friend who lives 20 miles south of me +2010-03-21,44.8086111,-124.0619444,Depoe Bay,OR,cylinder,120,Red light bouncing in the sky. +2010-03-21,47.5302778,-122.0313889,Issaquah,WA,circle,10,White orbs in the clouds, both as big as a two story house, seen near Issaquah, Wa. on I-90, March 21st, 2010 +2010-03-21,47.5302778,-122.0313889,Issaquah,WA,other,20,flying object viewded from I-90 westbound near Issaquah, Wa. around 4:00am March 21st, 2010 +2010-03-21,37.9577778,-121.2897222,Stockton,CA,circle,15,White object flying overhead. +2011-03-21,41.6005556,-93.6088889,Des Moines,IA,light,5,lights (round shaped) in a v-shaped formation (5-7 in the v formation and one on the left side and another on the right side in front o +2011-03-21,27.3361111,-82.5308333,Sarasota,FL,changing,5,03/21/00 18:30 pm sarasota fl round and oval 30 minutes round and over sarasota fl +2011-03-21,27.6383333,-80.3975,Vero Beach,FL,light,120,Amber light moving westward over Vero Beach, Florida. +2012-03-21,44.6994444,-73.4533333,Plattsburgh,NY,other,30,Wide glowing scanner light glowing across sky like light through water. +2012-03-21,33.4483333,-112.0733333,Phoenix,AZ,unknown,0.3,This maybe nothing but I had to write in. I was looking in the sky for a satelite -( I like watching them ) and I saw a britght flash a +2012-03-21,43.1219444,-75.2919444,Whitesboro,NY,light,180,Bright orb with no sound that moved slowly east and stayed low in the sky. +2012-03-21,41.4516667,-82.0355556,Avon,OH,light,5,White light zoomed off to the west over Avon, OH +2012-03-21,33.5805556,-112.2366667,Peoria,AZ,light,60,FLASH/BRIGHT ORB LIGHT DIMS AND BRIGHTENS THEN FLASH AND REPEATS THE PROCESS THEN GONE +2012-03-21,33.6305556,-112.3325,Surprise,AZ,disk,1,UFO recorded in unattended mode with Yukon Night Ranger in daylight from Surprise AZ (NW PHX). Camera was pointed North and at an eleva +2012-03-21,39.2141667,-74.9502778,Delmont,NJ,other,15,Large UFO observed by several inmates. +2012-03-21,34.1347222,-116.3122222,Joshua Tree,CA,disk,300,Saw what appeared to be a missile launch from Vandenburge AFB. Followed the vapor trail to where it ended east over the 29 Palms Marine +2012-03-21,44.4988889,-75.3430556,De Kalb,NY,unknown,2,Brilliant green spear of light which changed to yellow/orange then extinguished +2012-03-21,40.3013889,-79.5391667,Greensburg,PA,light,5,I saw a light far up in the sky, it was moving east slowly and disappeared briefly. Then reappeared for only a second or two and then d +2012-03-21,40.0427778,-86.1275,Westfield,IN,formation,5,Two orange glowing orbs speed across sky in formation. +2012-03-21,34.7302778,-86.5861111,Huntsville,AL,sphere,5,I saw an orange sphere move 30 miles in 5 seconds. +2012-03-21,38.8338889,-104.8208333,Colorado Springs,CO,circle,240,Two orange lights that didnt move at all then disappeared. +2012-03-21,36.175,-115.1363889,Las Vegas,NV,circle,600,White Orbs interacting intelligently over Las Vegas BLVD +2012-03-21,41.0813889,-81.5191667,Akron,OH,fireball,600,Three fireball-like objects crossed the sky from east to west in succession. +2013-03-21,33.1580556,-117.3497222,Carlsbad,CA,other,45,Object moved up and down 2 times with sharp movements. +2013-03-21,35.5847222,-80.8102778,Mooresville,NC,light,900,Observed three distinct glowing red orbs going due south 3-4 minutes apart. +2013-03-21,28.5380556,-81.3794444,Orlando,FL,circle,15,Stepped outside at 2210 hours to place an item in my vehicle that was parked at end of driveway. An object caught my eye moving at a fa +2013-03-21,26.9616667,-82.3527778,Englewood,FL,light,5,Bright green light appears, moves slowly for 2-4sec, and thrusts itself into the distance disappearing. +2013-03-21,32.7938889,-79.8627778,Mt. Pleasant,SC,light,14400,Flashing lights, at least 12 crafts +2014-03-21,42.3266667,-122.8744444,Medford,OR,light,3,Red light traveling at extreme speed. +2014-03-21,36.8527778,-75.9783333,Virginia Beach,VA,other,3600,Approximately three to four white rockets appeared with trails-gray UFO flying low in trees then, disappeared. +2014-03-21,34.0233333,-84.6155556,Kennesaw,GA,triangle,120,Dark triangular craft, 3 White Lights and One Red Light in Center, Flying Very Low and Fast (maybe 300 ft) - No Sound Of Any Kind +2014-03-21,33.0580556,-112.0469444,Maricopa,AZ,light,120,Yellow-orange bright pulsating light. +2014-03-21,32.7677778,-117.0222222,La Mesa,CA,circle,4,Missing man V-formation. +2014-03-21,33.0580556,-112.0469444,Maricopa,AZ,sphere,240,Circular ball of light radiating intense orange hue in sky SE of Maricopa and disappeared suddenly. +2014-03-21,33.415,-111.5488889,Apache Junction,AZ,fireball,1800,18 fireball red UFO's sighted over Canyon Lake, AZ. +2014-03-21,42.865,-71.3744444,Londonderry,NH,changing,20,While driving noticed a bright white light behind the trees. My friend was in a seperate vehicle following me and was talking on the ph +2014-03-21,40.8013889,-72.8680556,Shirley,NY,chevron,180,Unusual sound, then silence, small lighted craft left in its wake, all disappeared. +2014-03-21,40.8577778,-74.4263889,Parsippany,NJ,triangle,5,It is a very clear night here in New Jersey. I was walking in my complex when I started to look up at the stars since they were so visi +2014-03-21,38.6780556,-121.175,Folsom,CA,light,60,Orange light over Folsom, CA. +2014-03-21,47.6816667,-122.2075,Kirkland,WA,circle,120,Circular, orange/red with no sound. +1967-03-02,36.5711111,-89.1861111,Hickman,KY,formation,1200,6 objects disappear and reappear jumping about 5 miles of airspace to dodge an airplane. +1977-03-02,40.8236111,-75.9805556,Hometown,PA,triangle,300,loud triangular craft with 3 lights over rural Schuylkill County, PA in 1977 +1985-03-02,38.6580556,-77.25,Woodbridge,VA,unknown,5,Lights over Northern VA. ((NUFORC Note: Possible meteor?? PD)) +1994-03-02,38.5736111,-97.6741667,Lindsborg,KS,triangle,10,Black Triangle with Slightly Askew Leading Edge +1997-03-02,33.7475,-116.9711111,Hemet,CA,triangle,900,My friends and I saw 1 very large, triangular shaped UFO, silently hovering approx: 100 ft in air and about 35 ft away from our car. +1999-03-02,25.7902778,-80.1302778,Miami Beach,FL,circle,30,I was on the beach and saw 2 orange red objects very high up moving east to west in quick jerking motions, followed about 5 seconds lat +1999-03-02,32.7833333,-96.8,Dallas,TX,sphere,60,While stargazing at The Orion Nebula I heard a noise over my head like aero-braking or something. As I looked up I witnessed a jet bank +1999-03-02,27.9833333,-82.2758333,Seffner,FL,light,45,walking to my car in the driveway I saw a contrail , visible because of the full moon.....the object resembled a satellite ...a faint +1999-03-03,34.09,-117.8894444,Covina,CA,egg,180,Object, peach glowing egg shape ends up and down moved slowley south to north high in sky. emitted single popping sound. +2000-03-02,35.1494444,-90.0488889,Memphis,TN,formation,1800,A formation of 3 objects in a straight line, unmoving, occasionally changing color. +2000-03-02,37.2152778,-93.2980556,Springfield,MO,unknown,1500,Counterclockwise rotation of four lights against overcast sky. +2000-03-02,40.9166667,-74.1722222,Paterson,NJ,light,600,At around 10.45 p.m when I just looked at the sky, i found 5 lighted objects. The size of these lights were double the diameter of the +2000-03-02,41.0588889,-74.0222222,Pearl River,NY,oval,16200,Me and four of my friends were in the woods looking for my dog that ran away earlier that day. All of a sudden, we heard a strange nois +2001-03-02,36.175,-115.1363889,Las Vegas,NV,circle,3600,WELL I WAS STAYING AT THE EXCALABUR HOTEL WHEN ABOUT 2AM I NOTICED A WHITE LITE FLYING AROUND IN THE LIGHT THAT THE LUXOR PROJECTS FROM +2001-03-02,33.1858333,-80.5758333,St. George,SC,oval,36,It was oval shaped with several lights, and about the length of a pickup. +2001-03-02,47.1855556,-122.2916667,Puyallup,WA,egg,10,Glowing, Egg-shaped object sighted over Puyallup, WA on March 2nd. +2001-03-02,41.6105556,-96.5477778,Hooper (Near),NE,triangle,180,Triangle and companion craft spotted over Hooper, Nebraska. +2001-03-02,38.2544444,-104.6086111,Pueblo (70 Miles South Of),CO,cylinder,360,ASTONISHINGLY HUGE FAST BRIGHT CRAFT +2002-03-02,40.7944444,-73.8188889,Whitestone,NY,teardrop,120,blue silvery ship, had a calming effect, dog went crazy, i was rooted to the ground, vanished into thin air +2002-03-02,48.3597222,-107.8736111,Malta,MT,fireball,180,bright orange-red ball in sky +2002-03-02,39.2655556,-123.2033333,Redwood Valley,CA,unknown,2400,White light, blinking red lights, it moved all directions, hoovered for 40 mins. there was no sound then it slowly moved away and faded +2003-03-02,32.7833333,-96.8,Dallas,TX,triangle,9,at report time & date I observed a single solid black triangle, with no lights of any kind, traveling in a east to west direction at ap +2004-03-02,37.3394444,-121.8938889,San Jose,CA,disk,10,Weird buzzing, and I black out! +2004-03-02,40.3355556,-75.9272222,Reading,PA,light,240,Flashing light hovering in the same spot for about 4 minutes. Flashes of red, blue, and white. Went from several lights to one and the +2004-03-02,34.1477778,-118.1436111,Pasadena,CA,egg,300,Small ovid object observed coming in from the San Gabriel mountains and hovering over Pasadena +2004-03-02,41.2872222,-85.4344444,Merriam,IN,formation,240,What a day!! We saw them as we stopped to fill up our RV at a gas station. A whirring noise made us look up and directly overhead we +2004-03-02,40.1783333,-74.0222222,Belmar,NJ,other,300,This description must be classified as a UFO for the present time, however, my explaination claims otherwise. For the past several +2004-03-02,45.3069444,-92.3619444,Amery,WI,triangle,30,three lights in shape of tringle disapered and then reapered seen in car out in country side at about 9:00pm. +2004-03-02,36.4816667,-86.3119444,Bethpage,TN,unknown,300,Dancing red/orange object observed over Bethpage, TN +2004-03-02,26.9616667,-82.3527778,Englewood,FL,other,25,fast moving object +2004-03-02,33.9172222,-118.0111111,La Mirada,CA,flash,1200,Red bright flashing light that hovered moving slowly east and west a couple of times throughout its 20 minute showing. +2004-03-02,34.2255556,-77.945,Wilmington,NC,chevron,120,I had got off from work at around 11 pm and i arrived home at 1120 pm,I was locked out of my house(i had forgotten key).I looked up to +2005-03-02,42.2494444,-71.0666667,Milton,MA,cigar,180,It stopped, and hovered right over us at about 200 feet in the air. +2005-03-02,37.9408333,-93.2075,Preston,MO,triangle,120,Triangal UFO, black with lights at all points. Very fast +2005-03-02,37.9736111,-122.53,San Rafael,CA,chevron,3600,Winessed several "white dots" in the sky +2005-03-02,35.489444399999996,-120.6697222,Atascadero,CA,cylinder,20,I also saw this same vehicle flying at a lower speed and lower elevation 5 days before. It is white, wing-less (from what I could tell +2005-03-02,41.5627778,-83.6538889,Maumee,OH,other,20,Bottle rocket like debris lasting 20 seconds across the sky, disapating as it crossed +2005-03-02,41.6027778,-87.7438889,Oak Forest,IL,flash,300,I observed a flashing, erratically wandering light in the sky south of my back yard. +2005-03-02,38.9636111,-84.0808333,Bethel,OH,circle,1200,MUFON/OHIO REPORT: Nine spherical UFO's in the night sky; one came close to scan me! +2005-03-02,33.7488889,-84.3880556,Atlanta,GA,other,120,two ships with seven lights circled and played with eachother right above the freeway +2005-03-02,38.9636111,-84.0808333,Bethel,OH,sphere,1200,MUFON/OHIO REPORT: Nine spherical objects in the night sky, one flew overhead, changing into some sort of flying machine! +2005-03-02,29.6513889,-82.325,Gainesville,FL,flash,480,Multi colored flashing object that went from sitting perfectly still to flying away slowly +2006-03-02,28.6986111,-81.3083333,Winter Springs,FL,light,3,Strange appearing/disappearing white light +2006-03-02,37.6458333,-98.1133333,Kingman,KS,other,300,I saw an aircraft i cannot explain. +2006-03-02,42.3266667,-122.8744444,Medford,OR,disk,120,Object seen over Medford, Oregon +2006-03-02,40.8152778,-73.1127778,Ronkonkoma,NY,circle,6,((Possible hoax)) It was a very large circular flying obj. that had very bright lights; after about 6 seconds it vanished. +2006-03-02,35.1677778,-114.5722222,Laughlin,NV,other,120,Unusual daylight sighting at Laughlin Nevada during the Ufo Congress +2006-03-02,46.0038889,-112.5338889,Butte,MT,chevron,10,Triangle or boomerang shaped silent craft over Butte Montana March 2, 2006 19:15 local +2006-03-02,43.1330556,-115.6902778,Mountain Home,ID,unknown,10,Row Of Lights Over Idaho (similar to lights over AZ 3/97) +2007-03-02,32.2205556,-98.2019444,Stephenville,TX,flash,600,((HOAX??)) Injections put into us during an abduction. 500 Lights On Object0: Yes +2007-03-02,38.8025,-76.5372222,Churchton,MD,oval,3,An extremely fast oval-shaped object flying at a very high altitude from a southwest to northeast direction. +2007-03-02,39.1230556,-93.1966667,Marshall,MO,light,1800,At 19:30 of Mar 2, 2007, my neighbor and I observed a very bright light west of Marshall, Missouri. It was 5 to 10 miles west of town, +2007-03-02,32.9311111,-96.4594444,Rockwall,TX,light,1200,BRIGHT LIGHT W/ GREEN RING AROUND IT. LOOKED AS IF IT WAS SITUATED IN THE MILKY WAY AND IT APPEARED TO BE HOVERING W/SLIGHT MOVEMENT +2007-03-02,32.7152778,-117.1563889,San Diego,CA,fireball,60,White fire ball changed speeds went from east to west and dropped (into the sea?) off of Del Mar San Diego +2007-03-02,37.1955556,-82.6991667,Fleming,KY,light,300,Lights NE KY Ohio River Area +2007-03-02,40.1438889,-75.1161111,Willow Grove,PA,other,3600,Multiple unidentified objects spotted near military base. +2007-03-02,32.9627778,-117.035,Poway,CA,light,4,Blue light object (2 parallel lines, one shorter than the other) +2008-03-02,28.5997222,-81.3394444,Winter Park,FL,disk,30,Large object with no wings speeding up and slowing down through the sky. Had lights like an aircraft but 100% was not a plane or helic +2008-03-02,37.775,-122.4183333,San Francisco,CA,sphere,180,Small White Object Flies Over Golden Gate Park in Slight Wave Motion +2008-03-02,45.5236111,-122.675,Portland,OR,formation,300,Dual Clusters of unknown objects in the skies of Portland, Oregon. +2008-03-02,37.6455556,-91.5358333,Salem,MO,light,1500,MISSOURI INVESTIGATORS GROUP Report: As we were walking, I looked towards my house.and I pointed at a bright orange light… +2008-03-02,37.5986111,-122.3861111,Millbrae,CA,triangle,30,Spotted UFO: lights in the form of a triangle ascending into the sky (Millbrae, CA) +2008-03-02,44.0522222,-123.0855556,Eugene,OR,light,120,Blinking, bright white light seen travelling at high altitude +2008-03-02,32.7152778,-117.1563889,San Diego,CA,unknown,300,Bright (What looked like Two Stars) appeard over San Diego County 3/2/08 around 8:30pm +2008-03-02,37.775,-122.4183333,San Francisco,CA,formation,10,observed v-shaped formation moving from ENE to W over evening sky for approx 10seconds +2008-03-02,25.7211111,-80.2686111,Coral Gables,FL,disk,15,2 UFOs (saucer type) following each other in the sky +2008-03-02,34.2011111,-118.5972222,Canoga Park,CA,unknown,7,possible UFO fly by +2008-03-02,39.0769444,-84.1769444,Batavia,OH,sphere,30,Cincinnati Nature Reserve UFO +2008-03-02,29.9144444,-90.0538889,Gretna,LA,light,2,Orange/reddish light moving at an incredible speed through the night sky. +2009-03-02,42.2411111,-88.3161111,Crystal Lake,IL,light,600,light beams and light rays at 4:45 am +2009-03-02,33.9725,-116.9763889,Cherry Valley,CA,fireball,60,sunrise ufo +2009-03-02,26.3013889,-98.1630556,Edinburg,TX,unknown,900,Two stationary bright shiny objects seen above Edinburg, Texas. +2009-03-02,45.4463889,-122.6380556,Milwaukie,OR,disk,45,small circular disks above freeway in Clackamas Oregon +2009-03-02,37.6738889,-80.8894444,Hinton,WV,other,1500,Stationary, bright ,flashing object seen in the southeastern sky. +2009-03-02,26.0625,-80.2333333,Davie,FL,light,2,A 2 second flash of light in the sky, described as a jagged oval white light. +2010-03-02,30.2669444,-97.7427778,Austin,TX,unknown,30,Object with unusually large and luminous lights seen hovering completely still 100 yards off the highway. +2011-03-02,35.8455556,-86.3902778,Murfreesboro,TN,light,240,Light, blinking, hovering, +2011-03-02,39.1652778,-86.5263889,Bloomington,IN,light,240,Star like, slow moving craft, only ever seen descending, not ascending. +2011-03-02,32.7152778,-117.1563889,San Diego,CA,light,240,Light in dissolving smoke plume. +2011-03-02,33.4483333,-112.0733333,Phoenix,AZ,unknown,15,Unknown Object leaving contrail and possible explosion. +2011-03-02,33.3941667,-110.7858333,Globe,AZ,sphere,42,Potential UFO turns 90 degrees, vapor trail follows and makes an L in the sky. UFO entry with splash +2011-03-02,33.1191667,-117.0855556,Escondido,CA,changing,90,Dark "loud-like" shape suddendly appeared on the sky, then changed into a funnel-like shape then split into three round disk shapes +2011-03-02,41.8011111,-88.0747222,Lisle,IL,fireball,1200,Stationary fireball lights on horizon facing Ohare. +2011-03-02,38.8941667,-77.4313889,Chantilly,VA,light,600,3 friends and I all saw balls of white light in the sky. +2011-03-02,40.2736111,-76.8847222,Harrisburg,PA,oval,5,UFO in Harrisburg +2011-03-02,29.7855556,-95.8241667,Katy,TX,cross,3600,Multiple cross shaped crafts over Katy, TX with almost no sound +2011-03-02,31.8272222,-99.4261111,Coleman,TX,oval,60,Strange lights and craft spotted in rural Coleman County,Texas area +2011-03-02,31.9280556,-99.3175,Echo,TX,chevron,60,Man Escapes Alien Abduction With Photo,s to Prove It. +2011-03-02,41.5894444,-88.0577778,Lockport,IL,sphere,600,Ufos in lockport IL +2011-03-02,33.6694444,-117.8222222,Irvine,CA,other,120,By the reaction of the other drivers who were slowing down in front of me on the 405 freeway in Irvine Ca. I knew I couldnt be the only +2011-03-02,29.8830556,-97.9411111,San Marcos,TX,chevron,2,3 Large objects seen fliying overhead while studying for astronomy class - lights, sounds +2011-03-02,38.9980556,-77.2886111,Great Falls,VA,fireball,720,Fireball, meteor or other source of infrared lights up yard for 12 minutes on Friday, March 2, 2012. +2012-03-02,38.9338889,-76.8969444,Landover,MD,triangle,40,Saw three bright lights and a hovering craft +2012-03-02,34.1066667,-117.8058333,San Dimas,CA,circle,80,Strange cirles appeared and dissappeard in plain daylight... Unexplainable... +2012-03-02,32.1116667,-106.6619444,Vado,NM,unknown,1800,WHITE OBJECT COMES OUT OF BRIGHT LIGHT IN CLOUD +2012-03-02,61.2180556,-149.9002778,Anchorage,AK,light,900,Several red lights with no sound ascending to the sky in Alaska +2012-03-02,41.5627778,-83.6538889,Maumee,OH,sphere,1200,Captured strange formation in sky on cellphone video, Maumee Oh +2012-03-02,42.2833333,-71.35,Natick,MA,light,10,Diagonal bar of white/yellowish light under the cloud cover. +2012-03-02,27.7705556,-82.6794444,St. Petersburg,FL,circle,13,Bright star like object moving at a slow rate across the night sky. Within 13 seconds it slowly began to get smaller and disappeared. N +2012-03-02,33.4147222,-111.9086111,Tempe,AZ,cylinder,15,Amber/Red-colored Chinese lanterns +2012-03-02,28.5380556,-81.3794444,Orlando,FL,fireball,120,2 Fire Balls Flying In The Sky +2012-03-02,47.6063889,-122.3308333,Seattle,WA,light,120,Two asterisk shaped yellow lights floating around above Lake Union in Seattle +2013-03-02,32.2730556,-89.9858333,Brandon,MS,circle,7200,Weird blue light over Brandon, MS. +2013-03-02,45.8322222,-93.4261111,Ogilvie,MN,light,240,Dark orange or reddish light traversed the sky to the NE at about 02:00 on 02March, 2013 about 20 miles South of Mille Lacs Lake. +2013-03-02,45.57,-93.5813889,Princeton,MN,other,420,Saw a string of many lights. As we got closer the seem to disappear. We think the angle we were at made made them visable. +2013-03-02,38.4783333,-107.8755556,Montrose,CO,oval,300,2 Glowing, super fast moving orbes in the western colorado sky on march 2nd 2013. +2013-03-02,38.4783333,-107.8755556,Montrose,CO,oval,300,Orange and red oval shaped lights seen by to in Western Colorado!!!!! +2013-03-02,41.0813889,-81.5191667,Akron,OH,fireball,360,Bright, slow moving, orange lighted orb traveling through sky then vanishes. +2013-03-02,37.3394444,-121.8938889,San Jose,CA,fireball,120,Two bright orange lights drifting in formation over San Jose foothills, one breaking off in a tight maneuver. +2013-03-02,42.3833333,-71.4166667,Sudbury,MA,chevron,60,Bight white chevron tilted to its side moving in less than 1 sec. across the sky. No sound. At 8:00pm cloudy night couldnt see stars. +2013-03-02,28.8827778,-81.3088889,Debary,FL,fireball,180,Round slow moving ball at 9 pm. +2013-03-02,34.0522222,-118.2427778,Los Angeles,CA,other,300,I saw a V shaped craft with no lights or sound flying through the night sky. +2013-03-02,27.9375,-82.2861111,Brandon,FL,light,600,Amber lights moving around and then disappeared. +2013-03-02,38.8113889,-89.9530556,Edwardsville,IL,circle,300,Six orange lights in the S. Eastern sky. +2013-03-02,38.8113889,-89.9530556,Edwardsville,IL,light,300,6 bright orange lights in a loose formation. +2013-03-02,38.6688889,-120.9861111,Cameron Park,CA,fireball,900,We saw 6 firey type objects. +2013-03-02,47.6063889,-122.3308333,Seattle,WA,fireball,300,Orange fireballs. +2013-03-02,39.1686111,-75.7136111,Hartly,DE,circle,300,Unidentifed Flying Object Distant Sighting Leading to an Up Close and Personal Encounter- Constant Glowing White- 150 ft away. +2014-03-02,61.5422222,-149.0333333,Butte,AK,light,240,Clear skies, 3 amber lights overhead for 4 minutes fading out or shooting away one by one. +2014-03-02,42.7047222,-77.2719444,Middlesex,NY,teardrop,1800,UFO may have been seen taking off.. +2014-03-02,38.1211111,-85.9741667,Elizabeth,IN,triangle,600,5 aircraft flying low at slow speed appear to be flying in line, white and red lights, witnessed by two people +2014-03-02,33.5725,-84.4133333,Riverdale,GA,circle,300,Me & my friend were sitting outside talking, & we both noticed somthing in the sky. It was broud day light outside, this object looked +2014-03-02,35.0844444,-106.6505556,Albuquerque,NM,disk,2,UFO follows jet. ((NUFORC Note: Witness is experienced amateur astronomer. PD)) +2014-03-02,29.3788889,-90.26,Golden Meadow,LA,oval,50,Traveling From Fourchon north on LA1 Bridge. Bright Silver/Chrome object flying through sky vanishes. +2014-03-02,37.6391667,-120.9958333,Modesto,CA,light,600,Circles of light in the clouds. +2014-03-02,26.7052778,-80.0366667,West Palm Beach,FL,other,180,Blue U shape light moving slow and suddenly speeding up. +2014-03-02,34.7538889,-77.4305556,Jacksonville,NC,chevron,20,5 lights in pentagon formation moving extremely fast across sky. +2014-03-02,41.8297222,-86.2541667,Niles,MI,light,300,A light that stopped the shot off. +2014-03-02,26.1336111,-80.1133333,Sunrise,FL,sphere,300,Green, blue, reddish lights in Sunrise, FL; unusual movements and speed without noise. +1956-03-22,44.6102778,-93.0019444,Hampton,MN,sphere,120,Commuting home from work during an ice storm I encountered a UFO. +1983-03-22,37.4283333,-121.9055556,Milpitas,CA,circle,120,They were bright round objects huffering over the water +1996-03-22,47.4066667,-122.0375,Maple Valley,WA,oval,45,Object with flashing colored lights on its underside hovers over home in Maple Valley for almost 1 minute. +1997-03-22,33.5091667,-111.8983333,Scottsdale,AZ,circle,600,Daughter and I saw two round craft forming triangle with North Star, then dancing around eachother and then zoomed off into deep space +1997-03-22,33.4472222,-84.1469444,Mcdonough,GA,light,2,I saw the UFO behind Comet Hail Bop,it came frome behind and below the comet,almost like a sling shoot. +1997-03-22,42.5916667,-88.4333333,Lake Geneva,WI,light,600,Near moon. small light (cover with thumb) camefrom Southeast at extremly fast speed. As itapproached approximate even with moon seemed +1997-03-22,42.3252778,-75.3127778,Unadilla,NY,light,2,I have video of strange light in SE sky over central NY 21:30 est 03/22/97 +1997-03-22,44.5236111,-89.5744444,Stevens Point,WI,crescent,37800,A hazey orange object hovered in the evening sky.It moved, in what looked like, a crescent shapefrom the upper North-East to the North- +1998-03-22,40.31,-75.1302778,Doylestown,PA,disk,300,Lights in the sky, hovering. No noise. It hovered over some trees. Then I heard sounds from jets, ( airforce? ). Before the jets, some +1999-03-22,32.2986111,-90.1847222,Jackson,MS,light,240,My wife was walking to the driveway to leave and called me outside. We spotted a large blinking white light moving in a zig-zap pattern +2000-03-22,33.6469444,-117.6883333,Lake Forest,CA,light,300,Witnessed an amber/orange light silently fly over, stop for 3 minutes, moved again and stopped only to release 2 more smaller orange li +2000-03-22,33.2097222,-87.5691667,Tuscaloosa,AL,formation,10,3 almost transparent, almost circular (amoeba shaped), phosphorous neon-green entities flying in a triangular formation. all 3 witness +2001-03-22,36.175,-115.1363889,Las Vegas,NV,formation,180,12 burnt-orange lights -- each zipping from DIFFERENT directions -- maneuvered around an oval black shape. +2001-03-22,44.2508333,-72.7613889,Moretown,VT,formation,15,VT,Moretown-VERY BRIGHT greenish(?) VERY LARGE formation descending and VERY RAPIDLY almost vertically; no crash,no flames;disappeared. +2001-03-22,47.2530556,-122.4430556,Tacoma,WA,other,7200,UFO observed visiting several homes in my neighborhood +2001-03-22,37.0561111,-85.0886111,Russell Springs,KY,triangle,180,triangeler hoops of fire +2001-03-22,32.2986111,-90.1847222,Jackson,MS,oval,60,Heavenly object spotted near Jackson, Miss. +2001-03-22,42.4775,-83.0277778,Warren,MI,unknown,300,seemed as though heaven spilled a bucket of fire flies. first as a wave traveling east to west. breaking into seperate v shaped formati +2001-03-22,41.4994444,-81.6955556,Cleveland,OH,fireball,2,Very Large Ball of Fire Scattering and Sparking +2001-03-22,40.8758333,-81.4025,North Canton,OH,cylinder,6,Unusual object with very dim, steady lights darts across sky +2001-03-22,43.8508333,-89.1216667,Princeton,WI,unknown,5,Four bright redish white flashes of light then they vanished. +2002-03-22,41.8661111,-88.1069444,Wheaton,IL,changing,120,awe struck by two lights on a collision coarce only to stop and become a single parallel line +2003-03-22,33.2075,-92.6661111,El Dorado,AR,sphere,9,Spheres the night of Iraqi invasion +2003-03-22,42.2041667,-72.6166667,Holyoke,MA,sphere,90,Three black metallic orbs +2003-03-22,29.6513889,-82.325,Gainesville,FL,oval,15,UFO in the sky of University of Florida +2004-03-22,36.9741667,-122.0297222,Santa Cruz,CA,triangle,2,Triangle Dim Lights, Silent, See-Through, and very Fast +2004-03-22,40.3891667,-74.7622222,Hopewell,NJ,formation,600,Sighting involving light formation and a mysterious vehicle +2004-03-22,38.5347222,-105.9983333,Salida,CO,sphere,3,Dull orange sphere above house +2004-03-22,36.2969444,-86.8883333,Greenville,TN,egg,2400,Truckers followed by pulsating red light for 2 nights +2004-03-22,39.7872222,-77.3688889,Fairfield,PA,light,120.3,Slow moving object in night sky abruptly disappears +2005-03-22,33.3527778,-111.7883333,Gilbert,AZ,triangle,30,Three tinted blue lights in shape of triangle. 12AM 3/22/05 Gilbert/Phoenix +2005-03-22,32.2216667,-110.9258333,Tucson,AZ,light,10,3 lights in the shape of a triangle north of Tucson, AZ +2005-03-22,33.4222222,-111.8219444,Mesa,AZ,triangle,20,Three lights in a triangle dim simultaneously +2005-03-22,33.3061111,-111.8405556,Chandler,AZ,triangle,20,bright lights in a triangle formation +2005-03-22,39.5297222,-119.8127778,Reno,NV,oval,2,White, oval shaped object, disappeard suddenly. Another sighting more recently, same kind of object. +2005-03-22,42.1058333,-84.2483333,Brooklyn (Lake Columbia Area),MI,light,300,A strange formation of bright scintillating lights bobs up and down in the skies over the Lake Columbia. +2006-03-22,34.0922222,-117.4341667,Fontana,CA,unknown,900,UFO over San Bernardino Mountains +2006-03-22,31.2225,-101.9375,Rankin,TX,oval,30,oval shaped object above hills +2006-03-22,43.2219444,-71.7144444,Contoocook,NH,circle,3,Orb-like object around 7:35 pm EST. 2 witnesses. around my home. +2006-03-22,36.175,-115.1363889,Las Vegas,NV,light,30,I was driving home and facing east, I saw four lights all in a horizontal row, the first one was brightest then the rest were not quite +2006-03-22,40.4863889,-86.1336111,Kokomo,IN,light,30,Aircraft or Flares? Two flickering balls of light hovering for hours. +2007-03-22,29.7630556,-95.3630556,Houston,TX,circle,300,Last night a large round object came out of a forest behing my house, the next day we explored the area to find no leaves. +2007-03-22,34.2541667,-110.0291667,Show Low,AZ,formation,18000,Giant disc in Show Low with 7 smaller discs in formation +2007-03-22,37.775,-122.4183333,San Francisco,CA,light,10,High speed and dacing lights in the southern sky. +2007-03-22,35.6266667,-120.69,Paso Robles,CA,cylinder,7200,CHANGING COLOR CYLINDER IN WEST SKY OF PASO ROBLES +2007-03-22,45.4872222,-122.8025,Beaverton,OR,cigar,180,Multiple cigar shaped objects flying around each other then shooting across the sky. +2007-03-22,36.3302778,-119.2911111,Visalia,CA,sphere,3600,2007, March 22 @ 19:30 Amber lights seen over Visalia, CA +2007-03-22,44.5647222,-123.2608333,Corvallis,OR,light,1,Round, white light with halo effect appeared briefly in the vicinity of the Big Dipper on clear, cold night.. +2007-03-22,33.2466667,-84.2641667,Griffin,GA,teardrop,120,Purplish light seen from car over school parking lot in Griffin GA +2008-03-22,43.5408333,-116.5625,Nampa,ID,light,5,bright light moving rapidly accross the sky, stops then accelerates at a 90 degree angle +2008-03-22,30.2669444,-97.7427778,Austin,TX,light,120,Loud Low Rumble followed by Orange Light +2008-03-22,35.5280556,-108.7419444,Gallup,NM,changing,1200,2 shape shifting objects and one small turquoise object sighted over NW New Mexico in daylight +2008-03-22,30.4752778,-90.1008333,Covington,LA,unknown,600,5 silvery objects drift across the sky changing formations with no sound +2008-03-22,41.1075,-83.7927778,Mccomb,OH,circle,20,((HOAX??)) 6:22 pm mccomb ohio circle shape stpped in mid air then was gone +2008-03-22,31.7952778,-94.1788889,Center,TX,flash,8,Time: about 8:30 p.m. Saturday March 22, 2008 My 14 year old son, my 13 year old daughter, and I witnessed a very fast moving objec +2008-03-22,32.8686111,-85.1905556,Lanett,AL,circle,1800,((HOAX??)) Flying, pulsating object hovering above cow pasture. +2008-03-22,41.1305556,-85.1288889,Fort Wayne,IN,disk,25,5 disc shaped objects flyin in unicon with no lights........... +2008-03-22,38.4363889,-122.8686111,Graton,CA,unknown,14400,Due west bright white light, then golden, red&green. Hangs in sky over Bodega Bay, nightly. +2009-03-22,34.2255556,-77.945,Wilmington,NC,cone,1800,a bright light shined on me and 5 buddies and then we saw ufos +2009-03-22,31.1238889,-97.9027778,Copperas Cove,TX,triangle,300,I have seen alot of aircrafts fly by my house because i live near Fort Hood, and never did my radio go out. +2009-03-22,33.4483333,-112.0733333,Phoenix,AZ,disk,120,Shiny silver saucer over Ahwatukee,Phoenix, AZ +2009-03-22,46.6022222,-120.5047222,Yakima,WA,changing,1800,bright light hovering in Yakima Wa, closer to Tampico, in the evening on 3/22/09. ((NUFORC Note: Venus?? PD)) +2009-03-22,40.3977778,-105.0744444,Loveland,CO,cross,900,Silver metallic cross and ring with white lights hovering above the highway. +2009-03-22,42.085,-76.0541667,Vestal,NY,formation,15,Formation of light colored orb-like crafts dance around one another, then vanish. +2009-03-22,42.865,-71.3744444,Londonderry,NH,unknown,30,Object moved at differant speeds and made an unusual jerking motion +2010-03-22,34.6888889,-82.1958333,Fountain Inn,SC,disk,540,i saw a ufo!!! +2010-03-22,32.085,-98.3416667,Dublin,TX,light,30,5 balls of light faded in then out over dublin tx +2010-03-22,42.2011111,-85.58,Portage,MI,sphere,30,Spherical, silent, quick, lit up from inside, left a trail. +2010-03-22,30.3958333,-88.8852778,Biloxi,MS,triangle,300,Triangular craft observed near Biloxi +2010-03-22,46.1852778,-123.5847222,Knappa,OR,other,3600,Very Bright Orange Lights +2011-03-22,37.6819444,-121.7669444,Livermore,CA,other,1500,Flying objects over the Livermore Valley +2011-03-22,44.295,-93.2686111,Faribault,MN,light,60,I was taking out the trash at my work, and then walked around the perimeter of the hotel in the pouring rain and I just happened to loo +2011-03-22,37.1041667,-119.3166667,Shaver Lake,CA,triangle,120,triangle black military craft. +2011-03-22,47.6063889,-122.3308333,Seattle,WA,circle,300,A starng white circle with a black inner circle. +2011-03-22,34.4163889,-79.3713889,Dillon,SC,fireball,2,A bright light plummeting toward the earth that looked brighter that any shooting star I had ever seen just before dark. +2011-03-22,33.9133333,-78.3041667,Holden Beach,NC,fireball,45,large bright fireball +2011-03-22,33.4222222,-111.8219444,Mesa,AZ,light,30,Bright bluish light seen over Mesa Arizona in the direction of Four Peaks Mountain. +2011-03-22,37.7055556,-81.0986111,Shady Spring,WV,rectangle,300,Self-contained glass box of fire +2011-03-22,47.2358333,-122.5491667,University Place,WA,light,3,Three bright lights in triangle formation travel night sky, horizon to horizon in 3 seconds. +2011-03-22,29.5847222,-81.2080556,Palm Coast,FL,circle,120,Driving north on belle terre parkway towards my house. Noticed a strange light in the sky. It was not a plane or a helicopter. I heard +2012-03-22,46.6811111,-68.0163889,Presque Isle,ME,triangle,120,Two amber colored objects appeared to be playing in the air darting back and forth at high rates of speed. +2012-03-22,29.7630556,-95.3630556,Houston,TX,circle,900,4 jets circling a mysterious object +2012-03-22,30.0033333,-91.8186111,New Iberia,LA,fireball,45,Big red fire ball. +2012-03-22,36.175,-115.1363889,Las Vegas,NV,cigar,120,My husband and I were having brunch on our patio and saw 1 black/silver cigar/sausage shape clear blue sky. It was black then silver. I +2012-03-22,38.4405556,-122.7133333,Santa Rosa,CA,fireball,120,Pulsing object emitting red objects?! +2012-03-22,34.4838889,-114.3216667,Lake Havasu City,AZ,sphere,180,Orange orb in sky silent changed direction but looked the same, disappeared +2012-03-22,42.7652778,-71.4680556,Nashua,NH,cigar,6,Two cigar-shaped craftes skip across out atmosphere in a very swift and silent motion. +2012-03-22,47.6588889,-117.425,Spokane,WA,egg,1200,Bright glowing white orb, morphing into cylindrical shape and then back to orb hovering for 20- 30 minutes +2012-03-22,40.7302778,-80.3102778,New Brighton,PA,unknown,10,Bouncing object in sky in New Brighton, PA +2013-03-22,34.0952778,-118.1261111,Alhambra,CA,light,3,Blue/green light appear in the sky. +2013-03-22,43.073055600000004,-89.4011111,Madison,WI,disk,30,White saucer seen near Madison. +2013-03-22,42.1866667,-86.2605556,Watervliet,MI,sphere,14400,Observed a fleet interacting with each other for hours. no mistaken identy, no flashing light in sky,the real deal. +2013-03-22,39.6847222,-83.9297222,Xenia (West Of),OH,unknown,5,Distinct shadow over ground, nothing in the air. +2013-03-22,44.9494444,-69.8588889,Solon,ME,fireball,10,Fireball with tail lasted 5 to 10 seconds. +2013-03-22,41.5380556,-72.8075,Meriden,CT,other,15,Bright yellow fireball like light hoovered over the mountain for 15 seconds and disappeared. +2013-03-22,38.8047222,-77.0472222,Alexandria,VA,unknown,3,Object turning from bluish-white to yellow-orange seen crossing nighttime sky in Fairfax County, VA. +2013-03-22,38.5913889,-75.2916667,Millsboro,DE,fireball,7,I was walking dog on march 22 2013..saw sparkling fire ball steam across early night sky ..then its disapeared or burned out. +2013-03-22,42.7652778,-71.4680556,Nashua,NH,light,5,Neon green light crossed sky. +2013-03-22,42.6111111,-71.575,Groton,MA,fireball,10,Fireball over I-495 in Groton, MA. +2013-03-22,39.9536111,-74.1983333,Toms River,NJ,light,20,UFO dancing in the Toms River NJ sky takes off at unbelievable speed. +2013-03-22,40.3725,-74.5105556,Dayton,NJ,fireball,4,Saw a shooting star but this object was bigger and brighter. +2013-03-22,42.0416667,-70.6727778,Duxbury,MA,circle,10,Orange orb south east coast Massachusetts. +2014-03-22,38.5472222,-122.8152778,Windsor,CA,flash,300,Bright light processed by a light blue light that flew away came back two minutes later seems like it interacted with the white light a +2014-03-22,37.99,-84.1797222,Winchester,KY,disk,1800,Red circular lights over Winchester, KY. +2014-03-22,48.4213889,-122.3327778,Mount Vernon,WA,changing,600,Irregular black object that changed shape, with smaller object that came and went, seen in daylight. +2014-03-22,39.0702778,-76.5455556,Severna Park,MD,oval,300,13 or 14 orange-red Oval shaped lights UFO's in Severna Park Maryland March 22nd 2014 at at 8:25pm. +2014-03-22,39.9522222,-75.1641667,Philadelphia,PA,circle,30,Bright orange/red fire ball moving east in the sky. +2014-03-22,35.2711111,-82.4416667,Flat Rock,NC,fireball,300,They first appeared and stayed as 2 pairs as they flew higher and out of sight they all split the last one we could see seemed to gain +2014-03-22,34.2011111,-118.5355556,Reseda,CA,disk,1200,It was about 21:00 a friend came to visit while looking up a round disk was hovering at a height of 3 floor building above him. +2014-03-22,33.9813889,-81.2363889,Lexington,SC,formation,180,8 Red-Orange Lights moving across the sky, then fading observed by several witnesses. +2014-03-22,43.6122222,-116.3905556,Meridian,ID,unknown,120,Red, white, green lights flying low in circles. +2014-03-22,38.7083333,-121.3288889,Antelope,CA,other,900,Moving orange light of irregular shape over Antelope. CA. +1973-03-23,38.5816667,-121.4933333,Sacramento,CA,cylinder,20,Slowly rotating cylindrical object ~75' above intersection +1987-03-23,33.415,-111.5488889,Apache Junction,AZ,changing,30,On March 23rd 1987 at 0055 a object broke up above us to the left of salt river dam, and we heard a crash near weaver's needle. +1995-03-23,47.5288889,-121.8241667,Snoqualmie,WA,disk,300,Disc shaped object with multiple colored lights hovered aprox 75 feet overhead. lights on bottom rotated to back. Lights flashing out o +1996-03-23,36.6777778,-121.6544444,Salinas,CA,light,50,Young man and girlfriend see 2 tiny, distinctly pink-colored points of light streaking from N to S in W sky. Moved oddly, "floated." +1997-03-23,35.0844444,-106.6505556,Albuquerque (Over, From Tent Rocks),NM,other,8280,have photograph 2ƹ/4 negative 250mm Zeis len.some detail not much. object hovered over albuquerque shining in the afternoon light. +1997-03-23,45.4313889,-122.7702778,Tigard,OR,diamond,1,Large, black, diamond-kite shaped object +1997-03-23,39.9613889,-105.5102778,Nederland,CO,other,60,Spring Solstice,Lunar eclipse, time of the comet,evening around open fire, gathering 20 adults. +1997-03-23,39.9613889,-105.5102778,Nederland,CO,other,120,Group of Velebrators of Vernal Equinox are visited by dimmensional craft .Sunday evening, a group gathered to welcome in the spring whi +1999-03-23,45.010555600000004,-93.4552778,Plymouth,MN,oval,7200,Iobserved an object changing colors and moving in a manner inconsistent with anything i've ever seen. I woke my wife and asked her to l +1999-03-23,38.8338889,-104.8208333,Colorado Springs,CO,sphere,2700,a glance at norad +1999-03-23,33.8302778,-116.5444444,Palm Springs,CA,triangle,1800,Gold triangle over Palm Springs +1999-03-23,38.4202778,-81.7908333,Cross Lanes,WV,cylinder,300,Noticed a very shiny object at a very high altitude that looked like a strange jet. It left a contrial and moved across the sky at abou +1999-03-23,36.8188889,-76.2752778,Chesapeake,VA,oval,10,It was about the size of a mid-sized car. Very Bright yellowish orange. It moved parallel to the ground. +1999-03-23,27.7705556,-82.6794444,St. Petersburg (South),FL,chevron,4,500-600 ft.chevron shaped craft moving to the NW fast at about 3500ft elevation craft had 12-16 dim white lights to the front of chevro +1999-03-23,39.0913889,-84.4958333,Newport,KY,sphere,300,Witnessed luminous bright blue sphere descend into city of Newport, KY. +2000-03-23,44.7130556,-69.7911111,Norridgewock (Winding Hill Rd),ME,rectangle,900,A stationary object was seen in the western horrizon. The object ommited a blinding white light. After 13 minutes the object moved east +2000-03-23,43.55,-96.7,Sioux Falls,SD,diamond,300,2 diamond shape star colored objects.move across the SD sky silently while clocking device is off then on. +2000-03-23,33.8702778,-117.9244444,Fullerton,CA,teardrop,600,STRANGE OBJECT WITH 3 FLASHING LIGHTS,TWO AT THE FRONT AND ONE IN THE REAR.VERY BRIGHT,MOVED NORTH-SOUTH THAN EASTWARD OUT OF SIGHT +2000-03-23,41.8238889,-71.4133333,Providence,RI,rectangle,25,On March 23, 2000 I was looking at the Big Dipper when one of the stars near the Big Dipper blinked then i saw dull orange lights comin +2000-03-23,39.8069444,-82.2972222,Somerset,OH,other,5,Three cresent red glows in a triangular formation, S.E. traversing 40-45 degrees in 4-5 sec. below Orions Belt. +2001-03-23,34.5036111,-93.055,Hot Springs,AR,disk,180,Arkansas grocery store clerk and older gentleman get airshow by eight unknown craft. +2001-03-23,33.6102778,-114.5955556,Blythe,CA,fireball,1800,Meteor-like fireballs near Blythe California on the night the Mir Space Station plummeted back to earth +2001-03-23,38.7891667,-77.1875,Springfield,VA,unknown,180,Large unknown object over Northern Virginia. +2001-03-23,46.7163889,-122.9530556,Centralia,WA,triangle,180,the hair on my neck is still standing,theres,no dought in my mind this was a UFO +2002-03-23,36.1658333,-86.7844444,Nashville (Near),TN,circle,300,I was driving home from Missouri to Florida..near Nashville, TN at 2:32 in the morning, I saw a large circular craft in the sky. At fir +2002-03-23,42.09,-78.4944444,Allegany,NY,changing,600,Object in the sky +2002-03-23,30.8363889,-83.9788889,Thomasville,GA,light,1800,Lights in the sky appeared like a string of pearls. +2002-03-23,33.3527778,-111.7883333,Gilbert (Ene Of),AZ,circle,300,Large daytime starlike craft videotaped for over three minutes north of Gilbert, Az. +2002-03-23,43.5552778,-92.01,Harmony,MN,fireball,300,We saw a bright red orange flickering fireball moving slowly for 5 to 7 minutes then flames falling down it then it disappeared. +2003-03-23,46.5586111,-122.2738889,Morton,WA,changing,3,2 witness UFO sighting on highway 12, just west of Morton, WA... felt observed... light which emitted fog or smoke... +2003-03-23,46.5586111,-122.2738889,Morton,WA,changing,3,An electric blue pulsating sphere held its position at high noon to observe our car and then did a spastic series of turns and flew off +2003-03-23,42.0758333,-75.6408333,Windsor,NY,changing,420,Kept changing shape. Started as 2 after circuling a military jet. I have pictures of the jet as well as the 2 round then cigar shaped t +2004-03-23,40.5533333,-85.15,Fiat,IN,light,120,3 bright lights in the field that were never there before +2004-03-23,38.2541667,-85.7594444,Louisville,KY,cone,120,huge craft +2004-03-23,40.2344444,-84.4094444,Russia,OH,fireball,5,Driving down St. Rt. 48 and saw an orangish/redish fireball shoot through the sky. ((NUFORC Note: Student rept. PD)) +2004-03-23,35.3083333,-77.1544444,Vanceboro,NC,sphere,300,Strange light in the sky over Eastern NC +2004-03-23,33.4355556,-112.3488889,Avondale,AZ,chevron,300,We were driving west on Buckey road crossing the Agua Fria River. Noticed a chevron shaped formation of 3 amber bright lights. The ch +2004-03-23,33.0580556,-112.0469444,Maricopa,AZ,light,1200,watched lights for 20 minutes in the desert. +2004-03-23,37.4136111,-79.1425,Lynchburg,VA,diamond,1800,update to eariler report (3/23/04) +2004-03-23,37.4136111,-79.1425,Lynchburg,VA,diamond,1800,VERY bright, diamond shape ((NUFORC Note: Sighting of Venus?? PD)) +2004-03-23,44.9630556,-92.9647222,Oakdale,MN,triangle,420,A triangular, slow moving, silent, lighted with 6 lights on base with green and blue being dominate, subdued yellow and red also, +2004-03-23,36.0652778,-119.0158333,Porterville,CA,circle,20,3 white dim cicular fast moveing crafts no sound moved like nothing i have never seen before +2005-03-23,35.1322222,-118.4480556,Tehachapi,CA,light,600,3 hovering flashing lites +2005-03-23,33.5538889,-117.2130556,Murrieta,CA,triangle,120,Triangular shaped craft with 3 red lights and smaller blue lights. +2005-03-23,41.5733333,-87.7844444,Tinley Park,IL,triangle,1200,South and east of Frankfort, IL, approximately over nearby Tinley Park, myself (52) and my two daughters (13 and 10) observed three bri +2006-03-23,35.6058333,-100.1002778,Allison,TX,triangle,1200,I seen 3 triangle shaped air craft flying at 300 ft in perfect formation, not a sound was heard. +2006-03-23,39.9625,-76.7280556,York,PA,circle,20,Round UFO covered in yellow flashing lights spotted in York, PA +2006-03-23,35.2219444,-101.8308333,Amarillo,TX,rectangle,20,blueish silverish UFO felt like jello over Amirillo,Texas. +2006-03-23,33.7397222,-116.4119444,Rancho Mirage,CA,fireball,45,Bright white orb flashes,expands,contracts,moves off slowly,then vanishes +2006-03-23,36.175,-115.1363889,Las Vegas,NV,oval,180,Yellow Orange oval ring seen over the Northwest Las Vegas valley. +2006-03-23,39.0997222,-94.5783333,Kansas City,MO,changing,180,parabollic bell glowing hot blue white +2006-03-23,37.0891667,-122.0852778,Ben Lomond,CA,light,1800,Looked like stars but they changed direction and moved in random like patterns and multiplied and then faded. +2006-03-23,37.5419444,-77.9191667,Powhatan,VA,light,180,odd light that moved quickly to two destinations, reappeared to first destination, faded away, came back as coloured light and blinked +2006-03-23,33.5091667,-111.8983333,Scottsdale,AZ,disk,10,silent, no lighting, a Y shape centered within the disk, cruised by at a medium speed and low altitude. +2007-03-23,33.4352778,-112.3575,Goodyear,AZ,fireball,300,Strrange Fireball over Goodyear Arizona +2007-03-23,33.5805556,-112.2366667,Peoria,AZ,fireball,600,round ball, different colors, vanished, traveling in a few directions +2007-03-23,37.4172222,-87.4808333,Hanson,KY,fireball,4,exploding ball of light flooded kitchen +2007-03-23,38.6858333,-121.3711111,North Highlands,CA,light,1200,Bright, sometimes pulsating, light "dancing" about in western sky at about 10 degrees above horizon for 20 minutes. +2007-03-23,42.8863889,-78.8786111,Buffalo,NY,unknown,3,Two red lights (about the width of the pink finger held away from the body) in the sky almost directly moving at a very fast rate. +2008-03-23,39.0283333,-84.2177778,Amelia,OH,cylinder,60,SILENT OBJECT OVER AMELIA OHIO 3/23/08 1:30AM +2008-03-23,41.85,-87.65,Chicago,IL,light,3,Fast-moving low-flying light disappears over Chicago. +2008-03-23,43.1063889,-76.2180556,Liverpool,NY,oval,300,U shaped lights over liverpool new york +2008-03-23,35.0844444,-106.6505556,Albuquerque,NM,flash,180,Small flashing white light & large fast white oval...... +2008-03-23,35.5280556,-108.7419444,Gallup,NM,formation,1200,12 object formation over NW New Mexico on Easter Sunday +2008-03-23,33.5091667,-111.8983333,Scottsdale,AZ,light,90,Soundless high speed craft with lights +2008-03-23,37.2494444,-83.1933333,Hazard,KY,diamond,15,red and blue diamond pattern of lights over Hazard Kentucky +2009-03-23,33.7669444,-118.1883333,Long Beach,CA,triangle,2400,Very bright, star-like object making loopy or jerky motions. +2009-03-23,32.2216667,-110.9258333,Tucson,AZ,oval,550,Hugh circuler orange UFO over Tucson,object was not moving +2009-03-23,39.7391667,-104.9841667,Denver,CO,light,4,I don;t know if this is even any thing or not but I was watching Ten Thousand BC. 16 minutes into the movie is when I saw some lights i +2009-03-23,39.6294444,-79.9561111,Morgantown,WV,disk,30,Saucer-like object seen passing by downtown Morgantown +2009-03-23,39.8991667,-82.0063889,South Zanesville,OH,sphere,10,Looked like end of a Q-Tip, beachball sized object appeared from north to south, daytime, color matched cloud horizon, 80mph at 60'. +2009-03-23,33.6058333,-78.9733333,Surfside Beach,SC,other,30,Boomerang with yellow lights over Atlantic Ocean. +2009-03-23,41.1411111,-73.2641667,Fairfield,CT,unknown,2700,After seeing aircraft fly over head it or another hovered in sky for 20 minutes with multicolored lights. ((NUFORC Note: Star?? PD)) +2009-03-23,43.6475,-72.0122222,Canaan,NH,cigar,1500,it was a cigar shaped UFO with three lights, two sometimes white or blue and one always red. +2010-03-23,28.0219444,-81.7330556,Winter Haven,FL,light,60,i was driving down the road and seen a round cirular object flying really fast in the sky. i just played it off as a plane but it shot +2010-03-23,44.9369444,-91.3927778,Chippewa Falls,WI,triangle,60,Unidentified Triangle shaped craft with lights in each corner, spotted for the 4th time in Chippewa Falls. +2010-03-23,36.1538889,-95.9925,Tulsa,OK,light,900,Two different colored lights, stationary & above the clouds. +2010-03-23,41.6436111,-83.4869444,Oregon,OH,unknown,10,cloaked craft with 3 dim tail lights silently passes over house. +2011-03-23,42.5047222,-71.1961111,Burlington,MA,triangle,10,A flying wing or triangle in Burlngton, MA, just after midnight. ((NUFORC Note: Reliable witness, who is a public employee. PD)) +2011-03-23,29.4238889,-98.4933333,San Antonio,TX,light,45,A blinking light making a triangle shaped form in the night sky. +2011-03-23,35.3272222,-96.925,Shawnee,OK,disk,4,A large, fast, bright saucer, was flying west in Oklahoma. +2011-03-23,44.8113889,-91.4983333,Eau Claire,WI,triangle,4,Mostly stationary triangle crafts over Eau Claire Wed 2/23/11 +2011-03-23,45.9933333,-123.9213889,Seaside,OR,circle,120,3 blue horizontal lights off the coast of Seaside (Gearhart) +2012-03-23,42.3194444,-71.6416667,Northborough,MA,circle,15,One bright, white, glowing circle of light about ¼ of a mile away, above the tree line seen from the backyard of my house. +2012-03-23,35.9130556,-79.0561111,Chapel Hill,NC,unknown,60,3 white lights in a triangle formation pointing down with a green light below the white lights. No strobes just solid lights. +2012-03-23,40.7072222,-73.6763889,Franklin Square,NY,circle,15,Green light falling from sky in NY USA +2012-03-23,41.6713889,-75.0655556,Milanville,PA,teardrop,3,Small, bright white orb with tail flashed by 10' above Delaware River near Milanville, PA & Skinner's Falls, NY. +2012-03-23,40.6416667,-74.8363889,Lebanon,NJ,unknown,300,Very bright, pulsing/flickering object, flying in the Northern sky over NJ +2012-03-23,33.0183333,-80.1758333,Summerville,SC,triangle,30,Saw triangular formation including 5 large roundlights and one small flying over neighborhood. Lights were yellowish in color and vibra +2012-03-23,33.5805556,-112.2366667,Peoria,AZ,changing,18000,Dozens of pink and white orbs and a morphing triangle in the Arizona sky +2012-03-23,30.3411111,-95.0852778,Cleveland,TX,triangle,600,V-shaped multicolored lights on some Craft. +2012-03-23,38.4094444,-80.5580556,Cowen,WV,sphere,60,Blue sphere +2012-03-23,47.2358333,-122.5491667,University Place,WA,cigar,300,Red pulsating lights east of University Place in the night sky. +2012-03-23,40.5791667,-74.4119444,South Plainfield,NJ,flash,7200,Saw a flash in the sky from a stationary point that eventually grew wider and fainter, like a searchlight above the clouds. +2012-03-23,26.525,-80.0666667,Boynton Beach,FL,unknown,300,12 glowing orange colored UFO sighting over Boynton Beach Florida +2012-03-23,37.3636111,-118.3941667,Bishop,CA,light,240,Three lights that looked like lamp light but higher in a triangle shape. It hovered then took off west over the eastern sierra mountian +2012-03-23,32.4486111,-99.7327778,Abilene,TX,triangle,8,Triangle sighting over Abilene, Texas +2012-03-23,39.9819444,-88.8227778,Argenta,IL,light,3600,UFO hides from airplane radar. +2012-03-23,40.7977778,-85.8205556,Wabash,IN,triangle,20,Around 10:00 P.M on March 23rd, 2012 I was standing outside of my apartment smoking a cigarette looking at the sky when I noticed somet +2012-03-23,47.6541667,-118.1488889,Davenport,WA,other,120,Aircraft with 3 headlights, very slow, low, and quiet. +2012-03-23,36.06,-86.6722222,Antioch,TN,fireball,5,A bright fireball seen with some movement in Nashville, TN area... +2013-03-23,38.7072222,-121.28,Citrus Heights,CA,light,660,Five people were in a hot tub an saw a light hovering in the sky. It would drop suddenly at a arch and change colors to blue led like +2013-03-23,37.5536111,-77.4605556,Richmond,VA,circle,20,At regency mall, 2 circular white lights traveling side by side then suddenly start to fade and just disappear-as if they were invisibl +2013-03-23,39.36,-84.31,Mason,OH,fireball,300,Three followed by one glowing silent red balls in a line. +2013-03-23,41.0813889,-81.5191667,Akron (Ellet),OH,triangle,60,Black craft silent about the size of a plane. +2013-03-23,46.6022222,-120.5047222,Yakima,WA,changing,480,Twinkling object travels around bottom of moon after streaking through sky. +2013-03-23,42.4405556,-76.4969444,Ithaca,NY,fireball,3,Meteor re-entry over Mid-Atlantic States confirmed by news. +2013-03-23,37.3394444,-121.8938889,San Jose,CA,light,120,Small reddish orange light disappears right in front of my eyes! +2013-03-23,28.7027778,-81.3386111,Longwood,FL,sphere,180,2 Orange Orbs in the evening sky. +2013-03-23,37.1533333,-98.0308333,Anthony,KS,flash,3,There was a explosion in the air on the southeast side of ANTHONY KANSAS. APPROX TIME 21:45 ON MARCH 23, 2013. +2013-03-23,30.0797222,-95.4169444,Spring,TX,triangle,600,Multiple bright lights traveling southeast with one flyover. +2013-03-23,47.6063889,-122.3308333,Seattle,WA,circle,180,7-10 bright orange orbs flying past Space Needle Saturday, March 23 10:33pm. +2013-03-23,33.7591667,-118.0058333,Westminster,CA,fireball,300,3 red/orange lights, line changes to triangle. Plane interrupted they dimmed out, one flew away. +2014-03-23,36.0725,-79.7922222,Greensboro,NC,circle,180,A circular object, shining red and white lights in the grey night, was hovering just above the tree line. +2014-03-23,47.4736111,-94.88,Bemidji,MN,disk,0.33,Saucer-shaped UFO caught on video in the western skies of Bemidji, MN. +2014-03-23,38.5458333,-106.9247222,Gunnison,CO,sphere,3600,A white sphere shaped object over Blue Mesa Reservoir moving North to South. +2014-03-23,45.5608333,-94.1622222,St. Cloud,MN,sphere,180,Orange ball of light over St. Cloud, MN. +2014-03-23,33.8872222,-118.3516667,Lawndale,CA,flash,1,Big flash of light in sky. +2014-03-23,45.5236111,-122.675,Portland,OR,unknown,30,Very fast moving object with red and blue lights. +2014-03-23,36.7236111,-120.0588889,Kerman,CA,formation,840,5 red lights near Fresno, CA. +2014-03-23,40.0377778,-76.3058333,Lancaster,PA,triangle,1800,Large triangular object, 3 lights, moving south very slowly. +1966-03-24,31.7586111,-106.4863889,El Paso,TX,oval,20,Silent UFO hovered right above 5 kids. +1972-03-24,26.3583333,-80.0833333,Boca Raton,FL,teardrop,180,30'Lᄺ'W: plated chromium sheets (mirror finish). 2'wide streching fore to aft. A slight shadow effect where the windshield should be. +1976-03-24,29.7630556,-95.3630556,Houston,TX,disk,300,MY SISTER AND MYSELF WERE WALKING TO A FAMILY STORE ABOUT 3 BLOCKS FROM MY HOUSE, WENT WE WERE HALF WAY THERE A SAUSER SHAPE OBJECT APP +1979-03-24,44.775,-117.8333333,Baker City,OR,cigar,12,Large, cigar-shaped craft w / windows travelling south to NNE near Baker, Oregon @ appx. 22:00 on March 24th, 1979. +1980-03-24,39.8366667,-105.0366667,Westminster,CO,disk,5,A disc shaped object was floating above, the color was a orangish red and glowing, took off at a blink of an eye.My name is Dave an +1984-03-24,41.5033333,-74.0108333,Newburgh,NY,circle,1500,3/24/84 Newburgh NY circle 25min One large mass. Longer than a football field. Saw it for 25min. +1994-03-24,33.3444444,-89.0452778,Sturgis,MS,disk,240,They could have been traveling by power from magnetic fields, they appeared to slip through the sky. +1997-03-24,38.7508333,-77.4755556,Manassas,VA,formation,25,Seen 4 lights, high speed, very high altitudein the Manassas, VA area. +1998-03-24,41.1363889,-73.2838889,Southport,CT,circle,15,Black circular craft give us a glimpse and then dissapears over pine trees. +1998-03-24,27.2927778,-81.3630556,Lake Placid,FL,light,1800,Two bright lights that moved around in the sky. +1998-03-24,31.6269444,-96.2836111,Teague,TX,fireball,12,Passage of what appeared to be a "fireball" from the East to the West +1999-03-24,40.8,-96.6666667,Lincoln,NE,disk,8,Silver/White disk shaped object seen +1999-03-24,38.9822222,-94.6705556,Overland Park,KS,diamond,180,Craft flew out of the east at about 600 feet moving west and then turning to the north (not a regular flight pattern for this area for +1999-03-24,45.2025,-123.9616667,Pacific City,OR,sphere,2700,Three lighted circular aircraft +1999-03-24,40.1672222,-105.1013889,Longmont,CO,disk,180,I saw lights in he sky. It had five lighs in a row, each flashing one a time in a row. It was also urning slowly. +2000-03-24,36.2177778,-84.1547222,Lake City (Sighting/50 Miles North Of),TN,triangle,15,Our car was stopped in traffic, TN, so-bound I-75, approx 00:30. We saw a tour-bus size, triangle covered in blue lights, pass low over +2000-03-24,43.0480556,-76.1477778,Syracuse,NY,light,2,while driving on i690 by the lake.looking to the south.a small blue light shot down like a falling star but it blinked out not fading l +2000-03-24,45.4872222,-122.8025,Beaverton,OR,disk,90,Bright white discoid at high velocity seen passing behind a commercial jetliner during ascent +2000-03-24,42.9872222,-85.0711111,Ionia,MI,oval,30,I saw an oval shaped metallic disk hovering in the sky in broad daylight. +2000-03-24,33.9213889,-78.0205556,Southport,NC,fireball,2,Orange fireball very fast and near at low altitude +2000-03-24,43.4194444,-83.9508333,Saginaw (I-75 Headed North Mile Marker 130 Mi.),MI,fireball,7,a white flash ball hurling......very quickly headed NE then disappearing +2000-03-24,40.8255556,-73.4680556,Woodbury (Long Island),NY,unknown,8,2 objects traveling parallel. SE to NW. No sound. Subdued lighting. +2001-03-24,38.7633333,-121.1627778,Granite Bay,CA,chevron,180,While driving home from Pete's house, a friend of mine (Greg) and I saw a very white bright point of light up in the sky, and we though +2001-03-24,29.6513889,-82.325,Gainesville,FL,light,15,Unexplained light/sound phenomenon +2001-03-24,40.5852778,-105.0838889,Fort Collins,CO,other,4,An object burned up it seemed then I could see it moving across the sky movinf east to west. I could see it about 2 seconds afetr it pe +2004-03-24,34.2855556,-118.8811111,Moorpark,CA,light,5,At night,looking out window. All of a sudden 5 bright dots (not blinking), come blasting through the sky in this formation: (this 1 i +2004-03-24,36.5483333,-82.5619444,Kingsport,TN,circle,45,MUFON/TENNESSEE REPORT: Object emits lime greel light in a semi-circle along interstate +2004-03-24,28.2438889,-82.7194444,New Port Richey,FL,fireball,120,an orange flame ball, went from left to right three times,maybe 2400 miles up, in front of the moon 8pm.then vanished,'''''will go +2004-03-24,40.2344444,-84.4094444,Russia,OH,fireball,5,orangish fireball +2004-03-24,34.4838889,-114.3216667,Lake Havasu City,AZ,light,60,Bright reddish-orange light southeast of the city phased on and off in an inconsistent north-to-south-to-north again pattern. +2004-03-24,35.0644444,-88.8908333,Middleton,TN,other,300,this "craft" was like nothing i ever seen, soundless, lots of bright multi colored lights...... +2004-03-24,35.9411111,-80.4094444,Advance,NC,unknown,180,Strange UFO like sound coming from wooded & farmland area. +2005-03-24,41.6736111,-88.0016667,Lemont,IL,circle,300,round object with lights on sides and in center +2005-03-24,38.2972222,-122.2844444,Napa,CA,fireball,60,Hello, Around Thursday 1am. I witnessed a large bright ball of orange red that was traveling in a left to right fashion. It was in the +2006-03-24,34.5361111,-117.2902778,Victorville,CA,light,300,Numerous Moving Stars +2006-03-24,42.3583333,-71.0602778,Boston,MA,cigar,30,3 totally black and silent cigar shapes flying at a low height through edge of city center +2006-03-24,39.6172222,-104.9502778,Greenwood Village,CO,light,15,Blue ball of light with svrl trails shot across the sky +2006-03-24,33.5777778,-101.8547222,Lubbock,TX,circle,30,Lubbock, TX: saw an illuminated object moving quickly from the south to the north at a high altitude and was being followed by a plane. +2007-03-24,47.2530556,-122.4430556,Tacoma,WA,light,180,Glowing light in sky puts on air show, poses for picture, and shoots out of sight over Tacoma,WA. +2007-03-24,34.5794444,-118.1155556,Palmdale,CA,oval,180,Bright light hoers over high desert +2007-03-24,34.2694444,-118.7805556,Simi Valley,CA,light,45,Light travelling, turning. ((NUFORC Note: Probable sighting of Iridium satellite. PD)) +2007-03-24,46.0038889,-112.5338889,Butte,MT,light,300,bright lights over butte & rocker, MT +2007-03-24,34.9852778,-80.5497222,Monroe,NC,light,120,Blinking light being chased by a military (?) aircraft... +2007-03-24,36.55,-85.5052778,Celina,TN,circle,3,Thats a bright light +2008-03-24,39.1722222,-120.1377778,Tahoe City,CA,unknown,3600,I SAW A LIGHT WHICH I THOUGHT WAS A STAR BUT IT WAS MOVING IN A N TO S COURSE. ((NUFORC Note: Sighting of satellites and star?? PD)) +2008-03-24,39.1722222,-120.1377778,Tahoe City,CA,unknown,5400,I STILL AM SEEING IT, IT HAS MOVED NOW IN A COURSE GOING EAST TO WEST ALMOST OVERHEAD. I SAW A HELICOPTER GO BY BUT THIS LIGHT WAS VERY +2008-03-24,43.6122222,-116.3905556,Meridian,ID,other,15,230 to 250 foot wide Crescent or manta ray shaped object with no audio or lighting low altitude and high speed in Merdian idaho +2008-03-24,40.2625,-80.1875,Canonsburg,PA,light,300,3-24-08 approximately 4am, Canonsburg, Pennsylvania I am a sound solid sleeper so it was extremely unusual for me to suddenly wake up +2008-03-24,41.4552778,-74.2630556,Campbell Hall,NY,triangle,1800,2 hovering bright lights, no sound, over NY. Saw manta ray or triangle object flying very slow,whooshing sound +2008-03-24,34.8697222,-111.7602778,Sedona,AZ,disk,1,Photo of UFO taken in Sedona AZ 3-24-08 4:13 pm +2008-03-24,37.6391667,-120.9958333,Modesto,CA,circle,300,object in broad daylight staying in one spot in the sky, was there for about 5 minutes then it went away. +2008-03-24,33.6608333,-95.5552778,Paris,TX,disk,10,Did anyone else see this +2008-03-24,33.3061111,-111.8405556,Chandler,AZ,triangle,60,Triangular object with 3 lights hovered and disappaered +2008-03-24,34.4208333,-119.6972222,Santa Barbara,CA,chevron,20,Three round chevron-formation lights in Santa Barbara sky March 24, 2008 at 8:30 p.m. +2008-03-24,40.3930556,-84.3761111,Minster,OH,flash,20,Flashes flying through air +2008-03-24,32.3122222,-106.7777778,Las Cruces,NM,unknown,120,Saw 2 white lights fly very close to airplane then disappear by fading away. +2008-03-24,42.6458333,-85.2908333,Hastings,MI,triangle,300,seen it driving, and pointed so other people in cars would see what i was pointing at. +2008-03-24,32.7152778,-117.1563889,San Diego,CA,triangle,10,San Diego, CA sighting +2008-03-24,41.0502778,-78.8225,Sykesville,PA,oval,300,Bright orange oval shaped object +2008-03-24,43.55,-96.7,Sioux Falls,SD,triangle,60,Large triangular delta wing looking 10 to 15 lights not bright dull and dim it moved very fast. +2009-03-24,40.4136111,-76.4786111,Jonestown,PA,formation,12,When I was outside and coming in at 12:30, I paused my music and heard a weird noise like a plane or something in the air, but it was s +2009-03-24,26.2708333,-80.2708333,Coral Springs,FL,circle,60,Orange shooting star seeing on the South Florida night sky +2009-03-24,40.3266667,-78.9222222,Johnstown,PA,light,900,Bright light spotted in sky +2009-03-24,33.1005556,-86.8641667,Montevallo,AL,triangle,120,slow moving triangle with red and white lights +2009-03-24,39.1333333,-100.8633333,Oakley,KS,triangle,900,Large triangular craft over Oakley, Kansas - multiple sightings +2009-03-24,36.1397222,-96.1086111,Sand Springs,OK,other,300,Line of 5 lights blinking in a pattern over Shell Lake, 30 minutes outside of Tulsa. +2010-03-24,36.4883333,-79.7669444,Eden,NC,circle,600,An unidentified flying object in circular shape hovered for approximately 10 minutes before slowly flying off. +2010-03-24,42.3636111,-87.8447222,Waukegan,IL,other,1800,Black Helicopter at local airport +2010-03-24,33.4222222,-111.8219444,Mesa,AZ,sphere,60,Yellowish amber spheres of light seen over the Sonoran desert. +2010-03-24,37.9577778,-121.2897222,Stockton,CA,light,360,2 Lights In The Night Sky +2011-03-24,42.5294444,-83.7802778,Brighton,MI,other,7,Brighton beam of light. +2011-03-24,38.7838889,-90.4811111,St. Charles,MO,disk,90,orange disk two times in one week +2011-03-24,32.7994444,-97.2688889,Haltom City,TX,triangle,120,slow moving triangle shape black air craft,with white lights on each end point +2011-03-24,45.6388889,-122.6602778,Vancouver,WA,triangle,180,triangular shaped object with a red light in the center +2011-03-24,41.6105556,-86.7225,Laporte,IN,unknown,1,Standing on the porch taking pictures of a jet going overhead. +2011-03-24,30.7155556,-86.7458333,Holt (Near),FL,disk,300,The disk hovered only feet above me, the top and bottom of the object non-moving while the middle spun fast like a top- near Holt FL +2011-03-24,32.4366667,-111.2247222,Marana,AZ,light,1800,A series of bright round orange lights appearing in 5-10 minute intervals high in the sky over Marana, AZ +2011-03-24,25.7211111,-80.2686111,Coral Gables,FL,diamond,60,Diamond Shaped object seen crossing the view of Orion's Belt in Miami Night Sky +2011-03-24,39.2997222,-75.605,Smyrna,DE,oval,300,Black craft with two white lights above housing development +2012-03-24,40.5741667,-74.6102778,Somerville,NJ,sphere,420,3 Round orbs orange/orangey red in color hovering over central NJ +2012-03-24,34.2366667,-84.4908333,Canton,GA,fireball,8,Green fireball seen early morning in Cherokee County.((NUFORC Note: Possibly a long-duration meteor; green possibly from copper. PD)) +2012-03-24,40.9366667,-72.2433333,Wainscott,NY,light,4500,Bright Orb in sky visible at least 1hr 15 mins Wainscott, New York March 24, 2012 +2012-03-24,40.9366667,-72.2433333,Wainscott,NY,light,4500,Bright Orb in sky visible at least 1hr 15mins Wainscott, New York March 24, 2012 +2012-03-24,42.4927778,-92.3427778,Waterloo,IA,circle,40,Red ball of fire descending out of the sky and landing +2012-03-24,35.5741667,-105.6744444,Pecos,NM,sphere,10,Saw nonmoving silver sphere for 10 seconds, then it just disapeared. +2012-03-24,47.1719444,-122.5172222,Lakewood,WA,oval,1200,White oval objects that chang color from white orange fire back to white also had green haze around them +2012-03-24,39.0397222,-90.1405556,Brighton,IL,light,600,Orange Orbs Ascend From the Northwest. +2012-03-24,39.9522222,-75.1641667,Philadelphia,PA,circle,7200,Parent & Child Circles on Sky. ((NUFORC Note: Possible advertising lights? PD)) +2012-03-24,38.5130556,-90.4358333,Fenton,MO,cone,120,Yellow-Orange flickering conical shaped light over St. Louis +2012-03-24,45.7833333,-108.5,Billings,MT,light,480,Approx. 7 lighted objects in a Northeast to Southwestern travel pattern above Billings Heights. +2012-03-24,47.4705556,-122.3455556,Burien,WA,fireball,120,Yellow fireball in the night sky travelling N to S, no flashing, no sound, no change of speed or direction. +2012-03-24,34.9675,-82.4436111,Travelers Rest,SC,fireball,3600,Fireball over Greenville SC +2012-03-24,42.9836111,-77.3261111,Farmington,NY,triangle,240,Trangular shape with red base color and three yellow lights at points of triangle seen moving; no sound. +2012-03-24,33.5091667,-111.8983333,Scottsdale,AZ,light,900,3 bright red lights in formation over Scottsdale Arizona March 24 2012 at 9:30 PM. +2012-03-24,41.8244444,-72.8941667,Canton,CT,formation,600,Three lighted circular aircraft. +2012-03-24,40.7347222,-73.7938889,Fresh Meadows,NY,light,300,Late night out with friends and we saw lights in the sky moving haphazardly. +2012-03-24,25.4475,-80.4794444,Florida City,FL,light,2700,Big bright light over Florida city U.S.A +2012-03-24,35.3841667,-97.7241667,Mustang,OK,light,20,Ball of bright white light spotted near S.W. 59th. and Czech Hall Rd. +2012-03-24,39.0997222,-94.5783333,Kansas City,MO,fireball,120,Large Red Object. +2012-03-24,46.2,-119.0119444,Burbank,WA,sphere,300,Looked like a 10' glass ball with a ark welder inside putting off orange-red light over Burbank, WA. +2013-03-24,41.2427778,-73.2011111,Trumbull,CT,formation,180,Grid of lights moving slowly out of formation.. +2013-03-24,40.4405556,-79.9961111,Pittsburgh,PA,diamond,30,Fast moving object over the sky in Pittsburgh. 3/24/13. +2013-03-24,28.0183333,-82.1130556,Plant City,FL,oval,180,Bright gold like saucer +2013-03-24,36.1866667,-94.1286111,Springdale,AR,triangle,30,Triangle very weird odd buzzing humming sound and solid lights +2013-03-24,37.2705556,-76.7077778,Williamsburg,VA,sphere,120,Giant red light that came in fast then hovered silently about two minutes before vanishing. +2014-03-24,38.5733333,-109.5491667,Moab,UT,light,15,I saw two reddish-orange soft colored lights traveling horizontally perfectly in line together at a low altitude with no sound. +2014-03-24,32.7355556,-97.1077778,Arlington,TX,disk,5,Gray/black saucer with red triangular lights traveling north in the southbound lanes of traffic on SW Green Oaks Blvd. +2014-03-24,37.63,-79.5433333,Natural Bridge,VA,light,120,Fast moving bright light traveling east, south east. Very unusual. Not a plane. +2014-03-24,34.698055600000004,-118.1358333,Lancaster,CA,triangle,180,Three Silver Reflective Triangular Shaped Objects Over Lancaster CA Sky With Two Other UFO's +2014-03-24,34.1205556,-84.0044444,Buford,GA,triangle,45,The craft appeared to ascend above the tree line and then began to fly away. No noise till it had passed. Rumble sound and vibration. 3 +2014-03-24,33.4222222,-111.8219444,Mesa,AZ,sphere,1800,An object which was constantly changing shape moved very slowly across the sky. +2014-03-24,38.4783333,-107.8755556,Montrose,CO,oval,4,Round, peach-colored object heading wsw. +2014-03-24,39.8161111,-111.8547222,Mona (Just North Of),UT,fireball,5,Meteor or fire ball falling from the sky just north of Mona, Utah +2014-03-24,48.1130556,-105.1977778,Poplar,MT,disk,14400,I was at work at the jail when. I heard the 911 dispatch asked for 10 code for a UFO. So I called my husband right away and asked him i +2014-03-24,41.0969444,-78.8888889,Reynoldsville,PA,egg,45,3 Orange blinking lights moving about 2x faster then a plane. +2014-03-24,36.175,-115.1363889,Las Vegas,NV,flash,3000,Two hovering bright lights flashing red green and white in the sky. +2014-03-24,44.0522222,-123.0855556,Eugene (General Area),OR,egg,120,((HOAX??)) Red and blue egg like shaped.flying ahead of me then drifted like a zigzag then took off really fast the opposite way. +1978-03-25,32.739444399999996,-114.6338889,Winterhaven,CA,disk,180,Nine menacing crafts rounded up a large group of campers on the Colorado River during one incredibly long night. 500 Lights On Obj +1979-03-25,36.2702778,-121.8063889,Big Sur (Lucia),CA,triangle,1200,triangular glowing, amber object lighting circle of ocean, leaving glowing light and dropping 2 glowing objects into ocean, silent, +1979-03-25,41.3255556,-85.6977778,North Webster,IN,other,900,We had went to FT.Wayne ,IN. We left Ft. Wayne at 11:15pm to head home , we allways take ST RD Old 30 WEST out of Columbia City ,We was +1981-03-25,26.2375,-80.125,Pompano Beach,FL,triangle,30,Saw something that looked like a billiard rack silently moving south to north. +1981-03-25,27.3361111,-82.5308333,Sarasota,FL,cylinder,600,very large craft up close and personal +1986-03-25,34.0522222,-118.2427778,Los Angeles,CA,triangle,180,Stationary black triangle over LAX area during crowded morning traffic on highway 405, Los Angles +1995-03-25,41.4805556,-86.6916667,Kingsford Heights,IN,triangle,60,3 triangle shaped objects hovering overhead. +1997-03-25,37.9577778,-121.2897222,Stockton,CA,diamond,1500,A triangle shaped object with three orangish red lights, was silent and large, that was low to the ground. +1998-03-25,31.3111111,-92.445,Alexandria,LA,triangle,120,Five white lights in V-shaped pattern seen along Interstate 49 just south of Alexandria +1999-03-25,45.5230556,-122.9886111,Hillsboro,OR,disk,60,Hovering silver disc +2000-03-25,41.6005556,-93.6088889,Des Moines (Southeast Of),IA,fireball,1200,Red light in stop and go movement and dropping a storbbing object low in the sky then fading out. +2000-03-25,30.1577778,-95.4891667,The Woodlands,TX,unknown,1081,Donuts on a rope smoke trail in the sky pointing west. +2000-03-25,39.6383333,-95.3513889,Huron (Highway 159 In North Kansas Near),KS,flash,1800,I was driving down the highway when something caught my eye in a field next to the road. It seemed like there were flashing lights out +2000-03-25,34.6391667,-120.4569444,Lompoc,CA,circle,4800,we were observing the sky in one area. This bright flashing object appeared...not flying.In stationary position. Flashing lights and in +2001-03-25,33.4483333,-112.0733333,Phoenix,AZ,changing,30,Strangely silent object streaks accross sky in desert southwest. +2001-03-25,34.54,-112.4677778,Prescott,AZ,oval,360,Really large white object moving west to east at very high altitude +2001-03-25,38.5766667,-92.1733333,Jefferson City,MO,cross,180,My friends and i saw many red lights above jefferson city +2001-03-25,41.85,-87.65,Chicago,IL,chevron,20,CHEVRON CRAFTS RACE OVER CHICAGO SUNDAY 3-25-01 +2001-03-25,33.8388889,-83.9008333,Loganville,GA,light,2400,A Brilliant Blue Light that moved at extreme speeds and moved even faster when aircraft came nearby. +2001-03-25,39.6294444,-79.9561111,Morgantown,WV,disk,120,On the evening of March 25, 2001, I was out riding my horse over the foothills of the Appalachain mountians. It was getting dark, so I +2001-03-25,38.6055556,-90.9944444,Dutzow,MO,other,3600,Unusual movement pattern of bright light with an aura at times. +2002-03-25,38.6822222,-104.7002778,Fountain,CO,chevron,600,Just found your site,so I thought I would send in a sighting. This ocurred before 2002,but do not know exactly. I live about 10-15 mile +2002-03-25,37.9158333,-122.3105556,El Cerrito,CA,light,60,green light of varying intensity, speed and direction +2004-03-25,38.6183333,-94.505,Freeman,MO,light,30,2 bright lights side by side seen near Freeman, MO. +2004-03-25,38.3655556,-105.7572222,Coaldale,CO,sphere,5,Second orange sphere seen by family member +2004-03-25,33.4355556,-112.3488889,Avondale,AZ,light,5,A bright light , on a sunny day, suddenly appeared at about 45 degrees from the horizon headed west and suddenly vanished. +2004-03-25,41.2586111,-95.9375,Omaha,NE,formation,1200,Air Traffic Controller receives a report from airline pilot of UFO's +2004-03-25,48.0111111,-122.7675,Chimacum,WA,fireball,3,Blue fireballs travelling N-S approx 400mph, the first one took out the power for 30-45 secs, the second took out the power for an hour +2004-03-25,45.3,-122.7725,Wilsonville,OR,rectangle,300,Hovering craft with green, then orange, then yellow-white lights seen in night sky over housing development. +2004-03-25,29.9766667,-98.2655556,Fischer,TX,egg,900,Hill Country Texas apparent mapping or topographic ufo flying north to south and then east to west straight lines, no lights, no sound +2004-03-25,29.9766667,-98.2655556,Fischer,TX,egg,900,Texas Hill Country apparent mapping or topographic ufo flying north to south and then east to west straight lines, no lights, no sound +2004-03-25,38.35,-104.7222222,Pueblo West,CO,light,15,3 red parrellel lines cross highway, head for springs. +2004-03-25,33.8302778,-116.5444444,Palm Springs,CA,light,5,Strange lights over Palm Springs, CA +2005-03-25,36.3319444,-94.1183333,Rogers,AR,rectangle,1,gliding wing with no running lights, silent, primitive with many ringlets ontop leading edge. +2005-03-25,44.4563889,-89.5438889,Plover,WI,light,30,Two bright quickly moving lights. Daylight sighting. +2005-03-25,35.9152778,-82.0647222,Spruce Pine,NC,light,300,The craft was moving faster than I have ever seen anything move in my entire life. +2005-03-25,32.2216667,-110.9258333,Tucson,AZ,diamond,30,Dual Diamond Swinging Kite Object(s) +2005-03-25,42.7158333,-78.8297222,Hamburg,NY,circle,10,circular ufo spoted in hamburg NY +2005-03-25,36.175,-115.1363889,Las Vegas (East Of),NV,light,30,Sudden lights east of Vegas +2005-03-26,39.6416667,-74.6480556,Batsto,NJ,triangle,120,Batsto New Jersey UFO ((NUFORC Note: No date provided; witness does not respond. Possible hoax. PD)) +2006-03-25,34.0952778,-118.1261111,Alhambra,CA,fireball,5,Bright flash of light and streak of light over Alhambra, CA +2006-03-25,33.8313889,-118.2811111,Carson,CA,fireball,2,It was a blue fireball shaped object. +2006-03-25,35.2269444,-80.8433333,Charlotte,NC,oval,120,Hot UFO spot in Charlotte NC +2006-03-25,42.0547222,-72.7708333,Southwick,MA,triangle,60,Early morning trangle spotted near airport +2006-03-25,35.9758333,-94.3175,Prairie Grove,AR,flash,5,blue flash of light that lit up the whole sky +2006-03-25,35.9811111,-94.4913889,Summers,AR,flash,5,blue flash of light lit up the sky +2006-03-25,35.7486111,-96.6577778,Stroud,OK,flash,2,Bright Flashes of Light +2006-03-25,38.2811111,-80.8527778,Summersville,WV,unknown,300,white square object moving very fast +2006-03-25,42.9783333,-78.8,Amherst,NY,circle,120,Four circles of white light about the size of dinner plates flying in the sky doing formations +2006-03-25,39.0169444,-94.2813889,Blue Springs,MO,unknown,20,white flashing lights flying quickly viewed in blue springs missouri +2006-03-25,48.7838889,-117.8105556,Onion Creek,WA,fireball,4,i thought this sighting was rather co-incidental.. i was watching SIGNS with mel gibson and joaquin phonix was about to bash an alien w +2006-03-25,42.5847222,-87.8211111,Kenosha,WI,disk,120,Reported three strange objects, multi light in sky Dec 7th 2005. Lately seems to be alot of strange objects in sky. Coming home from +2006-03-25,43.7486111,-87.9769444,Plymouth,WI,formation,20,5 lights in a straight line over plymouth WI +2007-03-25,30.3319444,-81.6558333,Jacksonville,FL,triangle,60,The triangle strikes again +2007-03-25,38.0044444,-122.2977778,Pinole,CA,flash,420,Bright Orange Object +2007-03-25,38.8047222,-77.0472222,Alexandria,VA,circle,45,Two tranclucent cirlces float over D.C. +2007-03-25,32.3122222,-106.7777778,Las Cruces,NM,triangle,1200,Triangular UFO with tentacles. +2007-03-25,33.8883333,-118.3080556,Gardena,CA,circle,20,Bright Circle seen in sky in Gardena ((NUFORC Note: Student report. May be hoax. PD)) +2007-03-25,41.8005556,-73.1216667,Torrington,CT,other,4,twin-lights shoot over sky at a unbelievable speed over torrington ,Connecticut 3/25/07 @ 8:58 P.M. +2007-03-25,35.6869444,-105.9372222,Santa Fe,NM,unknown,1800,Venus moves by itself? +2007-03-25,44.4191667,-72.0155556,St. Johnsbury,VT,oval,2,A greenish fireball shot across the sky. +2007-03-25,42.2138889,-83.1938889,Southgate,MI,triangle,12,UFO with one orange light followed by 2 red lights +2008-03-25,34.0522222,-118.2427778,Los Angeles,CA,cone,120,I watched the egg-shaped Endeavor shuttle in the sky and saw a second egg-shaped object following the Endeavor. +2008-03-25,34.0522222,-118.2427778,Los Angeles,CA,egg,120,I saw the returning white and egg-shaped Endeavor space shuttle in sky followed by a second egg-shaped object. +2008-03-25,34.0555556,-117.1816667,Redlands,CA,light,120,Two fast lights matching speed and distance across the night sky +2008-03-25,33.9136111,-98.4930556,Wichita Falls,TX,changing,25,edit date +2008-03-25,30.2347222,-92.2683333,Rayne,LA,light,1800,Seven star like objects! +2008-03-25,27.8825,-98.6175,Freer,TX,unknown,120,Was driving on Hwy. 16, 12 miles south of Freer TX, object apeared in front and above my vehicle at an altitude of 1000 ft., object dis +2008-03-25,33.4483333,-112.0733333,Phoenix,AZ,sphere,12,red shapes shooting across the sky +2008-03-25,34.5958333,-120.1366667,Solvang,CA,changing,180,Two boomerangs, joined at center, split and become 2 craft +2008-03-25,33.5058333,-102.0086111,Wolfforth,TX,light,300,UFO sighted in Lubbock County. +2008-03-25,36.2694444,-95.8544444,Owasso,OK,triangle,45,large triangle very load +2009-03-25,33.8463889,-118.0458333,La Palma,CA,light,240,Big-red-orange light over my house.... +2009-03-25,37.2933333,-80.055,Salem,VA,formation,3,Fast moving formation that looked much like the London sighting. +2009-03-25,34.2308333,-111.3244444,Payson,AZ,light,900,Light object moved slowly from east to west, and disappeared suddenly. +2009-03-25,36.6844444,-121.8011111,Marina,CA,flash,900,Look like two jets chasing two other things and extra help came along to help in the chase. +2009-03-25,47.6063889,-122.3308333,Seattle,WA,unknown,900,object moving in a very erratic way, changing colors, very high up +2009-03-25,37.8716667,-122.2716667,Berkeley,CA,formation,1200,Bright hovering lights that suddenly move together or apart, dimming then brightening in a bizarre dance for ~20min +2010-03-25,32.9761111,-96.595,Sachse,TX,sphere,45,GIANT ORB AT AFTERNOON TIME...NO MISTAKE IN IDENTY +2010-03-25,36.2641667,-94.6927778,Colcord,OK,changing,120,strange lights in Oklahoma sky outside Siloam Springs Arkansas March 25, 2010 +2010-03-25,41.6833333,-86.25,South Bend,IN,unknown,180,Object travelling in night sky below cloud deck eastbound illuminated (flashing & steady) green, red, white & shimmering violet light. +2010-03-25,35.6527778,-97.4777778,Edmond,OK,unknown,600,Two UFO's appear within ten minutes of each other. +2011-03-25,29.1380556,-80.9958333,Port Orange,FL,circle,60,blue light enterd atmosphere like a shooting star then swiftly travelled across sky from northwest to SE aura was wider than craft +2011-03-25,26.0108333,-80.1497222,Hollywood,FL,oval,3300,15 NM EAST 4000FEET STATIONARY BLINKING +2011-03-25,39.3641667,-74.4233333,Atlantic City,NJ,oval,120,I'm on a bus and the craft was stationery as we went by. Other strange things have been going on in my legs as well. I have had another +2011-03-25,40.6688889,-111.8238889,Holladay,UT,disk,900,Straight ahead we noticed a bright amber light hovering low over the city about 3 or 4 blocks away. +2011-03-25,36.8188889,-76.2752778,Chesapeake,VA,circle,900,4 lights in sky +2011-03-25,33.6888889,-78.8869444,Myrtle Beach,SC,light,120,Myrtle Beach UFO sighting +2011-03-25,45.4711111,-89.7297222,Tomahawk,WI,circle,5,Neon green circle dropping out of the sky. By the time I got closer to the window, it was now behind the trees out of sight. +2011-03-25,26.1416667,-81.795,Naples,FL,rectangle,20,Very large rectangular grid of lights. At about 1000' and moving silently +2012-03-25,41.5236111,-90.5775,Davenport,IA,changing,14400,Me and my friends just left a restraunt and we were at a stop light about 7:30 pm on march 24th 2012 and every single light shut off fo +2012-03-25,33.948055600000004,-86.4727778,Oneonta,AL,circle,5,Pure white circular light went one direction slightly then shot off in other direction very fast. +2012-03-25,28.5380556,-81.3794444,Orlando,FL,triangle,3,F-22 like star shaped (7 point star) object flying extremelly fast, no sound/no light +2012-03-25,47.3225,-122.3113889,Federal Way,WA,other,30,Bright blue light in federal way Washington +2012-03-25,34.0922222,-117.4341667,Fontana,CA,circle,1500,2 Bright Orange Lights Over Fontana. +2012-03-25,40.4841667,-88.9936111,Bloomington,IL,circle,600,Two bright, large crafts moving slowly in a north to south direction over Bloomington, IL on Sunday, March 25th at 8:45pm. +2012-03-25,41.805,-80.9483333,Geneva,OH,formation,240,It was night time and we were coming home. Driving towards Ashtabula, Ohio. I looked to my left in some fields and saw about 20 gold +2012-03-25,41.9444444,-71.2861111,Attleboro,MA,triangle,120,3 red lights in triangular shape +2012-03-25,41.8097222,-72.8311111,Avon,CT,chevron,900,Greenish/White chevron shaped light flying over Avon,CT 3/25/2012 +2012-03-25,33.6675,-84.0177778,Conyers,GA,sphere,3,I saw a blue sphere drop vertically from the sky. +2012-03-25,38.8813889,-94.8188889,Olathe,KS,triangle,300,My fiance and cousin were outside on our front porch last night (March 25th 2012) at around 11:30PM smoking a cigarette before going to +2013-03-25,28.8038889,-81.7258333,Tavares,FL,oval,3600,Oval with ball of orange light in middle/balls of lights doing figure 8's/ planes or helicopters fly to where they were. +2013-03-25,33.5805556,-112.2366667,Peoria,AZ,unknown,20,Weird loud noise then flashing bright white lights over Peoria, AZ March 25th 1:45AM. +2013-03-25,33.4147222,-111.9086111,Tempe,AZ,flash,10,When I looked up in the sky, it looked like oval shaped big green mint color flash dropping and going straight down. Last about ten sec +2013-03-25,38.6244444,-76.9394444,Waldorf,MD,triangle,120,A hovering black triangle in a snow storm. +2013-03-25,26.5625,-81.9497222,Cape Coral,FL,light,600,Two lights that hovered and then shot off, in the Florida sky. +2014-03-25,41.6055556,-74.1844444,Wallkill,NY,oval,120,2 formations of lights were spotted, one of which rotated as went from being very far to very close in a very short time before we ran. +2014-03-25,40.5852778,-105.0838889,Fort Collins,CO,fireball,180,Dark orange fireball shape seen in Fort Collins Colorado. +2014-03-25,35.4816667,-86.0886111,Manchester,TN,diamond,1800,Strange diamond light patterns on driveway. ((NUFORC Note: Photos show discoloration of blacktop. PD)) +2014-03-25,43.0386111,-85.67,Comstock Park,MI,circle,180,Two circular glowing bright lights next to each other. +2014-03-25,47.7758333,-117.545,Nine Mile Falls,WA,triangle,10,Triangle shaped object with 3 lights. +2014-03-25,44.0077778,-116.9155556,Fruitland,ID,sphere,600,Orange spheres moving at high rates across sky in groups. +2014-03-25,60.2311111,-151.3936111,Clam Gulch,AK,sphere,1200,Lights in sky above Cook Inlet, Alaska. +2014-03-25,60.6902778,-151.2888889,Nikiski,AK,light,600,6 orange independently flying lights. +2014-03-25,41.9761111,-72.5922222,Enfield,CT,unknown,1200,Unknown aircraft that dimmed and brightened when moving. +2014-03-25,42.1013889,-72.5902778,Springfield,MA,other,900,Star-ship over Springfield housing; lights of white, red, blue, amber and teal. +2014-03-25,26.2441667,-80.2066667,Margate,FL,circle,300,I was inside when my 13 yr. Old was outside in my driveway on the phone I heard her screaming my name I ran to her to see what was wron +1966-03-26,47.3075,-122.2272222,Auburn,WA,cigar,60,I witnessed a cigar-shaped object being "chased" by a military jet aircraft at dusk. +1985-03-26,36.1658333,-86.7844444,Nashville,TN,oval,900,myself,and three other people i knew very well in school and growing up,were all standing around talking having fun kidding joking reme +1991-03-26,46.2569444,-99.5566667,Wishek,ND,sphere,120,Double sphere object came floating in. Stopped and then sped off at lightning speed. +1996-03-26,33.6694444,-117.8222222,Irvine,CA,cone,300,strange bright orange cone(with pointed top) slow drifting in the sky +1997-03-26,39.4194444,-76.7805556,Owings Mills,MD,light,300,Bright white object observed to the Westat about treetop level, gained altitude andflew off silently +1997-03-26,41.395,-82.5552778,Huron,OH,circle,3,2 UFO's sited at 10:30 PM Eastern time comingfrom Canada over Huron, Ohio moving at a veryfast rate of speed, in unattached but similar +1997-03-26,35.0241667,-110.6966667,Winslow,AZ,triangle,2400,Triangle craft positioned over Winslow, AZ for 30-40 minutes +1998-03-26,38.17,-87.7830556,Poseyville,IN,oval,50,I couldn't tell if it was about ten crafts or one craft with about ten lights. They were tinted red, and have been seen around my town. +1998-03-26,28.2486111,-81.2813889,St. Cloud,FL,light,300,Four extremely large bright yellow lights lined up horizontally relatively close together hovering at an equal distance apart from one +1998-03-26,40.8244444,-72.6666667,Westhampton,NY,unknown,10,Large, stationary object app. 100ft above ground, with lights +1998-03-26,28.2916667,-81.4077778,Kissimmee,FL,light,300,four bright amber lights in a row moving from east to southwest +1998-03-26,28.2486111,-81.2813889,St. Cloud (South Of, Over Lake Tohopekilagia),FL,light,600,seen one light at first so my wife and i took a ride to clay whaleys landing"a public boat ramp on lake Tohopekiliga" and then four lig +1998-03-26,27.9011111,-81.5861111,Lake Wales,FL,light,3600,strange yellow lights have been appeared an disappeared for about the last three months i was able to take over four hours of video if +1998-03-26,45.5236111,-122.675,Portland,OR,light,1800,BALL OF LIGHT BLUEISH WHITE LIGHT HOVERING FOR ABOU 25-30 IN SAME LOCATION THEN SLOWLY MOVED OFF HORIZON OT OF SIGHT +1999-03-26,42.1291667,-80.0852778,Erie,PA,fireball,4,i was sitting in the parking lot of my employer,facing to the west.it was 03/25/99 at approx. 10:37 pm.i noticed a green ball with a tr +1999-03-26,39.0066667,-76.7794444,Bowie,MD,light,4,On 032699 at 2330 hours I noticed a light in the sky that kept changing from red to gree to yellow. I obseved the light, stationary in +2000-03-26,40.4405556,-79.9961111,Pittsburgh,PA,triangle,10,large black triangle passed directly overhead headed NNE. height guestimate: 20ꯠ ft. speed was constant, similar to jet. lights on +2001-03-26,44.98,-93.2636111,Minneapolis,MN,light,60,We were at FL330/33ꯠft ((deleted)) bound ((deleted))-Chicago 3/26/01 @ 0440 Central Time. +2001-03-26,37.3394444,-121.8938889,San Jose,CA,disk,300,Small disc hovers over our backyard. +2001-03-26,34.4436111,-118.6086111,Valencia,CA,light,60,Two dull lights moving in tandom across the sky. The trailing light moved closer to the leading one at one point. +2001-03-26,48.7258333,-119.0125,Wauconda,WA,light,20,Slow "satelite" stops,changes color and fades out. +2001-03-26,42.8727778,-100.5505556,Valentine,NE,cigar,300,extremely large cigar shaped craft, i'd say at least 200 yards long, 2 flashiing lights on each end. +2001-03-26,35.9938889,-78.8988889,Durham,NC,triangle,720,very large triangular object with two very bright lights on the front and a reddish looking light on the bottom center +2001-03-26,34.0522222,-118.2427778,Los Angeles,CA,flash,2,On Monday night when we visited a friend my friend spotted two flashes that appeared to be coming from the beach area but I told him th +2002-03-26,40.8,-96.6666667,Lincoln,NE,changing,360,I saw two space alien ships fighting with each other, and making weird sounds and seeing different lights and shapes. +2002-03-26,35.6677778,-101.3969444,Borger,TX,circle,10,Saw flying object travel very quickly, stop, then accelerate again +2003-03-26,34.1486111,-78.8769444,Tabor City,NC,light,600,THESE OBJECTS HOVER, PULSATING LIGHTS, THE SMALLER ONES THAT MOVE ARE MUCH SMALLER. JETS ARE ALWAYS CHASING THEM. THEY SEEM TO EXPAND +2003-03-26,33.1580556,-117.3497222,Carlsbad,CA,triangle,30,Wobbling silver craft seen in Carlsbad, CA with bright light in broad daylight. +2004-03-26,40.62,-96.6288889,Hickman,NE,unknown,40,Hickman Ne. 3:30am Thursday, two or three weeks ago (I know I should have remembered the exact date) I was pulling into my driveway i +2004-03-26,40.8766667,-73.325,East Northport,NY,triangle,7,triangle object, blue red white lights, rotated 360 degrees without turning then made a U turn and dissappeared +2004-03-26,40.4861111,-74.4522222,New Brunswick,NJ,other,420,a noiseless, rotating cluster of shiny metal-like objects seen floating at a slow steady pace over a chapel on my university campus +2004-03-26,27.4986111,-82.575,Bradenton,FL,disk,240,2 rapid moving almond shaped discs initially heading east from the Gulf of Mexico and sharply turning south. +2004-03-26,27.4986111,-82.575,Bradenton,FL,other,240,two saucer like objects moving really fast in Bradonton FL tonight. +2004-03-26,39.0305556,-97.5938889,Bennington,KS,sphere,360,low flying craft with oscillating lights. Have vedio +2005-03-26,44.9666667,-92.3741667,Baldwin,WI,cigar,240,giant cigar flying at a very high rate of speed +2005-03-26,34.54,-112.4677778,Prescott,AZ,fireball,2,Fireballs seen in TN, TX and AZ at the same time. +2005-03-26,27.9472222,-82.4586111,Tampa,FL,light,60,Single white light moved accross the horizon then vanished +2005-03-26,33.7222222,-116.3736111,Palm Desert,CA,triangle,30,Saw a perfect symmetricalTriangle of three lights all connected by light beams in the North Sky. +2006-03-26,37.6655556,-82.7716667,Prestonsburg,KY,light,900,OBJECT NOTED OVER KENTUCKY HILLS +2006-03-26,28.5380556,-81.3794444,Orlando,FL,unknown,60,white object over orlando fl +2006-03-26,35.0875,-84.0347222,Murphy,NC,unknown,3600,Moving lights with multiple strobing colors. ((NUFORC Note: Possible "twinkling" star. PD)) +2006-03-26,29.6513889,-82.325,Gainesville,FL,changing,180,Acrobatics and in broad daylight over city. +2007-03-26,28.5380556,-81.3794444,Orlando,FL,light,40,Pulsating "star" moves slowly, stops for several seconds, then continues moving in a different direction +2007-03-26,37.6391667,-120.9958333,Modesto,CA,sphere,120,Multiple Spheres dancing in the sky over Modesto, California +2007-03-26,47.7558333,-122.3402778,Shoreline,WA,sphere,120,Accidentally photographed UFO's +2007-03-26,28.5380556,-81.3794444,Orlando,FL,cylinder,600,fire cylinder over the Orlando International Airport... +2007-03-26,42.2791667,-71.4166667,Framingham,MA,unknown,120,Dark shape in nighttime sky. +2007-03-26,27.7705556,-82.6794444,St. Petersburg,FL,circle,300,2 parallel sets of Circular "chasing" style lights hovering, then landing near Park Street in Pinellas County, Florida +2008-03-26,37.8716667,-122.2716667,Berkeley,CA,oval,1800,hovering oval pulsing in different colors, seems to be towing a smaller light below it, in the night sky +2008-03-26,43.5636111,-70.2005556,Cape Elizabeth,ME,disk,120,I didnt realize that i had seen a craft but i was reviewing some photos that I took and spoted a craft taken within the same minute. +2008-03-26,35.0844444,-106.6505556,Albuquerque,NM,light,120,a very birght and steady light at high altitude moving from south to north over Albuquerque, NM at a high rate of speed. +2008-03-26,27.9455556,-82.2580556,Valrico,FL,light,2,Pink light does high speed flight from Tampa to Kennedy Space Center 5 minutes before shuttle Endeavor lands. +2008-03-26,41.8741667,-80.1319444,Edinboro,PA,light,180,Ball of light seen over campus +2008-03-26,41.0352778,-111.9377778,Kaysville,UT,light,300,Hearing a jet engine at an unusual time at night, looked out window and found it was chasing a flashing light. +2008-03-26,38.2972222,-122.2844444,Napa,CA,triangle,180,Sighted two silent fast moving triangular craft with lights moving south to north over Napa California on 03-26-08. +2008-03-26,35.2338889,-92.3875,Greenbrier,AR,triangle,10,When my mom, my brother, and I was riding home a triangular object flew over the highway and disappeared. +2008-03-27,31.9677778,-110.2938889,Benson,AZ,triangle,1200,The ufo was triangular with lights all aroung it I only saw it for a couple minutes but it was so awsome. +2009-03-26,37.3541667,-121.9541667,Santa Clara,CA,unknown,90,Bright single light over santa cruz mountians with military jet following it. +2009-03-26,34.2783333,-119.2922222,Ventura,CA,formation,180,three round objects over Ventura California +2009-03-26,41.2391667,-81.3461111,Streetsboro,OH,circle,300,I AM VERY SURE OF WHAT MY WIFE AND I SAW +2009-03-26,42.1236111,-72.4319444,Wilbraham,MA,oval,18000,Red light moving object turns into white light stationary star like object. +2009-03-26,35.3883333,-82.5669444,Mills River,NC,formation,600,3 circling lights, 1 stationary light, 5-10 minutes in one place, vanished mysteriously +2009-03-26,34.7658333,-84.77,Chatsworth,GA,circle,120,object appeared to float over just barely above tree line way to low for a plane but saw red and white lights no noise +2010-03-26,34.0702778,-117.395,Bloomington,CA,light,18000,Larger craft dropping off smaller crafts that lingered for over 5 hours. +2010-03-26,32.9594444,-117.2644444,Del Mar,CA,other,600,Large object floating in from over the Pacific Ocean in early morning daylight in southern California +2010-03-26,47.3177778,-119.5525,Ephrata,WA,light,3000,i was looking to the west and saw an orange light which appeared to be changing to red. it appeared for 3 days. i have video footage. +2010-03-26,37.775,-122.4183333,San Francisco,CA,unknown,30,Small white dot flying through sky in San Francisco +2010-03-26,38.6130556,-78.7991667,Broadway,VA,light,300,Strange ball of light in sky over Pendelton County, West Virginia +2010-03-26,37.3394444,-121.8938889,San Jose,CA,light,2,Two lights dropping vertically in unison; flash of red from top light +2010-03-26,26.4611111,-80.0730556,Delray Beach,FL,sphere,300,quiet glowing spherical light floated close then floated away +2011-03-26,41.1844444,-73.1336111,Stratford,CT,triangle,300,Saw a grey, triangular object with two lights hovering in the sky. +2011-03-26,29.0488889,-82.4611111,Dunnellon,FL,unknown,5,object breaking off business jet. +2011-03-26,45.7833333,-108.5,Billings,MT,other,300,Silver oblong object in the sky, turned to a light and back again. +2011-03-26,30.3319444,-81.6558333,Jacksonville,FL,fireball,60,Ball of orange light shot into outer space and came back +2011-03-26,60.1041667,-149.4422222,Seward,AK,light,300,String of 9 bright lights, orange in color seen at mile 5-6 of Seward Highway moving slowly south. +2011-03-26,32.7152778,-117.1563889,San Diego,CA,unknown,600,Object was glowing red and green and was hard to identify the shape. First it fell like a shooting star, then it began to jig jag... +2011-03-26,40.2113889,-74.7883333,Morrisville,PA,other,480,Weird glowing orange ball flying over Morrisville, Pa on 3/26/11. +2011-03-26,37.6391667,-120.9958333,Modesto,CA,disk,900,Disc moving westerly in Modesto CA. +2012-03-26,41.9163889,-83.3977778,Monroe,MI,triangle,1200,Orange lights flying low over the river in Monroe Michigan +2012-03-26,41.9163889,-83.3977778,Monroe,MI,triangle,1200,Two strange crafts seen above the river, both had three lights in triangle formation +2012-03-26,28.5380556,-81.3794444,Orlando,FL,fireball,3600,It is a ufo. +2012-03-26,35.3733333,-119.0177778,Bakersfield,CA,other,720,Driving northbound on highway 99 outside of Bakersfield CA. Just pass 7th standard road exit. Saw bright light over freeway. At firs +2012-03-26,38.3002778,-76.5077778,California,MD,unknown,180,Two photos in a series where an object can be seen. +2012-03-26,35.2244444,-96.6702778,Seminole,OK,other,1500,Saw 7 separate star like objects travel North to South & South to North within a 30 minute period +2012-03-26,41.2427778,-73.2011111,Trumbull,CT,triangle,720,Strange Triangle Craft +2012-03-26,38.2544444,-104.6086111,Pueblo,CO,triangle,30,Four lights, spaceship in triangle form. One red blinking one in the middle, hovering motion +2012-03-26,35.2269444,-80.8433333,Charlotte,NC,triangle,120,Triangle ship seen +2013-03-26,44.2097222,-69.0652778,Camden,ME,light,300,Large orange immobile &quot;star&quot; suddenly began to move slowly across the sky. +2013-03-26,44.8011111,-68.7783333,Bangor,ME,light,60,Two oval lights appear, hover, and move off to the East +2013-03-26,27.0438889,-82.2361111,North Port,FL,light,120,Orange light in the sky, moving, then looked like it went behind clouds, then came back. about 1 minute later it disappeared. +2013-03-26,35.6869444,-105.9372222,Santa Fe,NM,light,60,Blue light moving very fast twice the size of any star or planet light in the sky +2013-03-26,45.4208333,-122.6694444,Lake Oswego,OR,triangle,360,Red dots looked like ufos +2013-03-26,28.3858333,-80.7422222,Cocoa,FL,fireball,30,I saw a large bolide like object that brightly flased and then dissapeared +2013-03-26,32.7919444,-115.5622222,El Centro,CA,triangle,2100,3 orange bright triangle or arrowhead shape lights reappeared. +2014-03-26,40.5866667,-122.3905556,Redding,CA,unknown,120,Orange glow moving randomly in the northern sky. +2014-03-26,39.3736111,-76.9680556,Sykesville,MD,triangle,60,Green, red, yellow triangle object near Liberty Dam. +2014-03-26,34.8525,-82.3941667,Greenville,SC,light,120,Six dancing orbs. +2014-03-26,28.5380556,-81.3794444,Orlando,FL,teardrop,20,I watched a large commercial airliner fly over, but noticed a tear drop craft flying underneath it. +2014-03-26,32.5422222,-83.0705556,Dudley,GA,triangle,300,Amber colored lights, dropped straight down to tree top altitude triangle in shape Laurens County, Georgia +2014-03-26,32.7938889,-79.8627778,Mount Pleasant,SC,triangle,480,Silent black triangle with orange lights about 500 feet up, eerily silent +2014-03-26,35.4675,-97.5161111,Oklahoma City (Southwest Of),OK,flash,5,Bright flash SW OKC. +2014-03-26,26.9294444,-82.0455556,Punta Gorda,FL,circle,15,A green ball of light traveled along the ground, then went vertical and disappeared from view. +2014-03-26,43.4666667,-112.0333333,Idaho Falls,ID,other,7,It looked like a ring with no lights.... +2014-03-26,35.6505556,-78.4566667,Clayton,NC,cylinder,600,Saw two white light 'sticks' with blue and red lights at night moving in a horizontal plane across sky with no sound being made. +2014-03-26,42.4083333,-71.0541667,Everett,MA,flash,5,Flashing streak across night sky. +2014-03-26,40.3244444,-79.7013889,Irwin,PA,unknown,240,Saw one object moving and one hovering. Both had bright lights on each end with a blinking red light between them. Not directly in mi +2014-03-26,32.7763889,-79.9311111,Charleston,SC,light,240,Orange-red orb turns into two then vanishes with presence of military. +1977-03-27,42.2138889,-83.1938889,Southgate,MI,disk,600,Round aircraft, high in sky, had depth or height to it, square windows that spun fast with lights round and round - 100's witnesses +1983-03-27,38.7805556,-95.5569444,Overbrook,KS,other,15,Slow-moving, low-flying, HEXAGONAL-shaped craft, MASSIVE and SILENT over rural area near Overbrook, Kansas, March 4, 2002 +1984-03-27,41.8127778,-74.2547222,Mettacahonts,NY,formation,1200,Slow moving football-field sized object caused traffic jams on rural Rt. 209 from Ellenville to Marbletown NY. +1984-03-27,41.8438889,-74.0825,Rosendale,NY,circle,1800,Mass sighting in 1984, two newspaper reports about it, police and other reputable peole also made reports. +1997-03-27,42.2708333,-83.7263889,Ann Arbor,MI,light,5,a red/orange flashing light that streaked aross the sky and took a 90 degree left turn. +1997-03-27,29.3872222,-82.4469444,Williston,FL,sphere,120,I was standing out side looking at Hail-Bop, when I saw a huge sphear of light fly about 50 ft. off the ground and burn a hole through +1997-03-27,40.2013889,-77.1891667,Carlisle,PA,formation,120,An object that looked like a satillite, suddenly became bright when we blinked a flashlight at it.It was joined by 7 others that flew i +1997-03-27,37.2152778,-93.2980556,Springfield,MO,disk,90,UFO flew over Spg. MO near Glenstone and Grand on the very night of the Lunar Eclipse and Hale-Bopp. +1997-03-27,33.8302778,-116.5444444,Palm Springs,CA,light,2700,March 1997, two bright lights that hovered about 45 minutes, zoomed forward, then zoomed toward comet. +1997-03-27,32.7252778,-114.6236111,Yuma,AZ,sphere,20,2 reports - UFO over Yuma 1997 and UFO at Cape Kennedy 1960's. +1998-03-27,43.0388889,-87.9063889,Milwaukee,WI,circle,600,Light spotted moving very fast heading NE and quickly turning W. Other simular round lights seen w/ same characteristics. Objects moved +1998-03-27,38.2544444,-104.6086111,Pueblo,CO,light,1800,Stationary for duration, 3 lights flashing red , green and white , SSE 150 deg. ; WSW 240 deg. ; WNW 300 deg. (APPROX.) Between 9:30 an +1998-03-27,35.1186111,-120.5897222,Arroyo Grande,CA,disk,300,3 disks flying silently at high speeds, stopped to hover, then climbed out of the atmosphere. +1998-03-27,42.8655556,-73.7713889,Clifton Park (30 Min North Of Albany),NY,other,900,it came after me and my dog, i was walking him that night +1999-03-27,40.0638889,-80.7211111,Wheeling,WV,fireball,5,Driving west on Interstate 70, watched a bright green light passing above me moving heading west. Was visable until it went behind hil +1999-03-27,41.6561111,-70.4166667,Marstons Mills,MA,egg,3000,While walking our dogs my son and I noticed a strange craft or light that seemed to travel in short spurts( not particularly fast). The +2000-03-27,40.6408333,-122.2313889,Bella Vista,CA,changing,10,a light the size of a volleyball at arms length descended rapidly +2000-03-27,42.2708333,-83.7263889,Ann Arbor,MI,light,15,My first impression was that I was looking at 2 commercial jet airliners moving together, side by side with their spotlights on. When +2000-03-27,36.9741667,-122.0297222,Santa Cruz,CA,cigar,300,I saw the flying cigar! It was flying low, toward the north. It flew right over me. I watched it from the south and looked real closely +2000-03-27,29.9477778,-85.4180556,Mexico Beach,FL,circle,1800,Three circular objects disappearing and reappearing over the ocean. +2000-03-27,39.1302778,-123.7166667,Elk (Approximately 15 Miles South Of Mendocino),CA,light,5400,Sighting of a pattern of lights which changed from greenish blue to red over the Coast of Mendocino. +2001-03-27,42.0297222,-76.7208333,Lowman,NY,disk,300,clear night sky no clouds stars very bright...craft looked to be around 35 to 40 feet across. +2001-03-27,33.4483333,-112.0733333,Phoenix,AZ,light,90,Small yellow light following jetliner +2001-03-27,36.175,-115.1363889,Las Vegas,NV,formation,60,Flying formation of several oval/cone shaped objects over Bellagio Hotel. +2002-03-27,42.0083333,-91.6438889,Cedar Rapids,IA,sphere,300,spherical solid object bright white hovering high up in clear sky then moving slowly out of sight +2003-03-27,45.9577778,-86.2461111,Manistique,MI,teardrop,5,Distinct teardrop light over Lake Michigan. (red&green) ((NUFORC Note: Probable meteor/asteroid entering atmosphere. PD)) +2003-03-27,47.6211111,-122.2263889,Medina,WA,circle,5,While observing the sun with telescope, 8" LX200, I saw a black dot cross in front of the sun +2003-03-27,39.1855556,-78.1636111,Winchester,VA,cone,10,Extremely shiny metalic-looking cone-shaped object flying 200 feet above trees at about 400-500 mph +2003-03-27,41.0291667,-81.6383333,Norton,OH,disk,900,3/2003 UFO in NE Ohio ~A low-flying craft gliding at night that was silent until it was out of sight and about a half mile away +2004-03-27,37.3394444,-121.8938889,San Jose,CA,light,6,3/26/04 san jose, ca. wedge shaped light flying low, fast, and silent. look like a shooting star, but kept going. FAST. 1 solid light +2004-03-27,39.6091667,-85.4463889,Rushville,IN,other,15,It was about 9:30-10:00 in the morning late March I was on my way to a unemployment hearing we I was leaving town I stop at VP store go +2004-03-27,36.9102778,-121.7558333,Watsonville,CA,sphere,600,Four slowly moving white round objects seen in sky over Watsonville, CA. +2004-03-27,47.4602778,-114.8819444,Plains,MT,disk,2820,On March 27 6:23 P.M. me and jumbo saw two oval shaped and brightly lit saucers flying south over Plains Montana. +2004-03-27,42.8741667,-77.2883333,Canandaigua,NY,disk,2,object acending in the sky +2004-03-27,31.1036111,-82.5733333,Manor,GA,light,45,5 yellow/orangish lights appeared and blinked in the sky, and then disappeared!!! +2004-03-27,35.4991667,-80.8488889,Davidson County,NC,unknown,30,Huge red fireball hits in NC county, locals assume it to be a small plane crash--- no small plane found +2005-03-27,41.2586111,-95.9375,Omaha,NE,fireball,2,day-glo fireball +2005-03-27,25.8647222,-80.3247222,Hialeah Gardens,FL,unknown,120,WE WERE CELEBRATING A WEDDING,AND SUDDENLY A ORANGE MAYBE RED LIGHT SHOWED UP .IT WAS GOING VERY FAST AND MAKING UNVELIBABLE MOVES.I KN +2005-03-27,33.8030556,-118.0716667,Los Alamitos,CA,formation,2700,"Phoenix Lights" duplicate formation scenario! +2005-03-27,44.6397222,-73.1108333,Milton,VT,unknown,1.5,Two bright white flashes seen in the S/SE at around 35-40 degrees above horizon from Milton, VT. +2005-03-27,32.7152778,-117.1563889,San Diego,CA,triangle,600,a bright white light over I-5, hovered for about 5 minutes. and then began to move southeast. emerged into a row of bright white lights +2005-03-27,42.5277778,-92.4452778,Cedar Falls,IA,light,600,lights cedar falls +2005-03-27,25.8647222,-80.3247222,Hialeah Gardens,FL,circle,2,I alredy reported this sighting.But I was searching on the web for ufos pictures and videos and i found a video from japan that shows e +2005-03-27,38.1805556,-99.0983333,Larned,KS,cylinder,300,Cylinder shaped object was over my house then started moving off. +2007-03-27,40.7958333,-74.3152778,Livingston,NJ,cigar,2,bright light that was moving upward and curving slightly at a rapid speed a leaving a trail. It almost looked like a rocket burning in +2007-03-27,39.9522222,-75.1641667,Philadelphia,PA,unknown,2,Bright green light streaked quickly across the Philadelphia sky very early in the morning. +2007-03-27,47.6063889,-122.3308333,Seattle,WA,egg,20,Two Crafts. One sighting. +2007-03-27,38.005,-121.8047222,Antioch,CA,triangle,360,I saw a flash of light, the object moved erradically in one area, stabilized itself, then I saw another moving erradically +2007-03-27,37.775,-122.4183333,San Francisco,CA,triangle,3,One triangular, or arc shaped illuminated object moving arbitrarily south to north. +2008-03-27,37.3538889,-81.2527778,Montcalm,WV,circle,180,Aircraft following a possible UFO? +2008-03-27,33.4708333,-81.975,Augusta,GA,flash,60,Formation of lights flying from east to west. +2008-03-27,45.3544444,-117.2286111,Joseph,OR,light,120,03.27/08, 20:50, Joseph, OR, Observed bright light traveling in the sky for several minutes before disappearing.. +2008-03-27,35.7719444,-78.6388889,Raleigh,NC,triangle,15,Large triangle shaped object with 2 lights flying low to the ground over a major highway +2008-03-27,42.9288889,-88.8369444,Fort Atkinson,WI,formation,30,V formation seen twice in appr. 15 min. About 25-30 lights that disconnected at one point then rejoined. +2008-03-27,41.395,-82.5552778,Huron County,OH,light,180,Light seen in night sky, with strobing colored lights and no sound, traveling slowly +2008-03-27,38.5816667,-121.4933333,Sacramento,CA,unknown,2700,Object in sky flashing yellow, red, and green lights in Sacramento, CA. ((NUFORC Note: Probable sighting of Sirius & Arcturus?? PD)) +2008-03-27,46.6022222,-120.5047222,Yakima,WA,triangle,900,Large, low flying triangle shaped aircraft over night skies in Yakima, WA +2009-03-27,39.9525,-74.9927778,Maple Shade,NJ,unknown,120,At 5:30 am on March 27th 2009 I was standing in my yard when all of a sudden a bright light appeared overhead and slightly to the south +2009-03-27,31.5544444,-110.3030556,Sierra Vista,AZ,disk,120,UFO saucer seen flying over Sierra Vista, Arizona +2009-03-27,36.175,-115.1363889,Las Vegas,NV,formation,10,delta formation of lights by LAS +2009-03-27,47.4580556,-96.8180556,Shelly,MN,other,1200,Saw a big blue light and a smaller red light dropped out of the blue light. They passed over me and took off up into the sky. +2010-03-27,34.4436111,-118.6086111,Valencia,CA,cylinder,7200,Brilliant Blue UFO with three levels of lights and one red light on top +2010-03-27,37.9883333,-85.7158333,Shepherdsville,KY,triangle,1200,Shepherdsville, Ky 13 triangle crafts hovering right above the tree tops along the highway with no sound +2010-03-27,35.3733333,-119.0177778,Bakersfield,CA,flash,2,UFO FLYING OVER RACEWAY IN CA. +2010-03-27,21.3155556,-158.0072222,Ewa Beach,HI,unknown,900,Strange light in Ewa Beach, Oahu, Hawaii +2010-03-27,27.9472222,-82.4586111,Tampa,FL,formation,105,It appeared as aircraft, but at least at 100ꯠ feet high. But 30 or 40 of them? How? We all stopped our cars and stared at this. +2010-03-27,34.0522222,-118.2427778,Los Angeles,CA,unknown,45,A group of lights (10 to 13) moved from southwest to west direction and faded away in the distance. +2011-03-27,37.4152778,-93.8408333,Greenfield (Rural),MO,unknown,15,A bright, blue light lasting for 15 seconds. +2011-03-27,30.3025,-93.1905556,Moss Bluff,LA,fireball,180,We thought they were hot air balloons at first, but then we realized there were no landing spots for any. And why would they be flying +2011-03-27,42.2708333,-83.7263889,Ann Arbor,MI,triangle,30,Triangular UFO Seen Over Downtown Ann Arbor +2011-03-27,39.0911111,-94.4152778,Independence,MO,flash,2,My eyes had blurred after and my voice slurred. +2012-03-27,42.7008333,-82.9591667,Macomb,MI,fireball,2,It was a red fireball hovering hologram type ball if that makes sense. +2012-03-27,38.9783333,-76.4925,Annapolis,MD,other,600,My husband went out At 5 am and noticed what he called bright brush strokes in the sky that were lit up. Then we both saw it from outsi +2012-03-27,42.926944399999996,-70.9444444,Kensington,NH,cone,5,Object was observed through a window and caught my eye when the sun reflected off it. It was moving just above the tree tops moving abo +2012-03-27,41.5033333,-74.0108333,Newburgh,NY,other,1200,Two bright clouds fall from sky over Newburgh,NY. +2012-03-27,39.2672222,-76.7986111,Ellicott City,MD,fireball,300,Bright line headed towards ground for half minute then stopped and grew wider and fuzzier +2012-03-27,41.4686111,-75.5625,Jessup,PA,changing,1200,2 cloud like objects one half oval the other cigar shaped with pointed ends (almost like a mustache). No sounds came from it. +2012-03-27,40.5725,-74.4930556,Middlesex,NJ,light,120,Star like object moving while watching Nasa's Anomalous Transport Rocket Experiment (ATREX) +2012-03-27,35.8483333,-81.4961111,Hudson,NC,rectangle,60,Silver mettalic craft shadowing large jet with no visible exhaust +2012-03-27,30.4455556,-86.5791667,Shalimar,FL,oval,9,Oval object appeared to be a metallic color with orange colored cross beam in the center traveling at high rate of speed. +2012-03-27,38.9516667,-92.3338889,Columbia,MO,rectangle,120,Red Green Yellow Object NO SOUND +2012-03-27,40.3355556,-75.9272222,Reading,PA,light,45,Two red blinking lights in Reading, PA. +2012-03-27,34.2083333,-77.7966667,Wrightsville Beach,NC,triangle,1200,2 triangle objects and 1 sphere object, dancing and hovering in sky, red, purple, green, pink, very bright white lights. +2012-03-27,35.3991667,-78.8161111,Lillington,NC,formation,600,3 red and white blinking lights stationary in sky +2012-03-27,45.6797222,-111.0377778,Bozeman,MT,triangle,600,Triangular object moving SSE, observed a week prior at same hour. +2012-03-27,45.2847222,-111.3675,Big Sky,MT,triangle,900,Strange lights over Big Sky, MT. +2012-03-27,45.6797222,-111.0377778,Bozeman,MT,unknown,180,UFO sighting in Bozeman Montana at approximately 11:00 pm on March 27th, 2012. +2012-03-27,41.6672222,-87.8302778,Palos Park,IL,triangle,1800,Triangle w/ 3 lights seen by my son and I . +2013-03-27,41.5963889,-72.8780556,Southington,CT,triangle,30,Triangle shaped object in the sky. bright yellow lights with no noise. +2013-03-27,42.6319444,-70.7833333,Essex,MA,fireball,30,5 headlight looking lights traveling north up against a cloud blacken sky. +2013-03-27,40.7988889,-81.3786111,Canton,OH,oval,60,Metallic bright oval hovering object. +2013-03-27,42.5991667,-114.7586111,Buhl,ID,rectangle,20,2 long orange parallel lights in the night sky. +2013-03-27,30.2458333,-87.7008333,Gulf Shores,AL,sphere,20,Stationary sphere with flashing lights hung for hours +2013-03-27,35.615,-87.0352778,Columbia,TN,formation,360,Low altitude, slow moving orange fireball aura with spherical shape, silent +2013-03-27,41.85,-87.65,Chicago,IL,triangle,15,Five lights forming a scalene triangle flying North to South over Chicago (3/27/13) +2014-03-27,47.6063889,-122.3308333,Seattle,WA,light,420,White green lights dancing over Crown Hill at 01:45am. +2014-03-27,39.0319444,-76.5030556,Arnold,MD,triangle,600,Silent triangle spotted while leaving for work early in the morning. +2014-03-27,42.6369444,-76.1791667,Homer,NY,disk,15,Orange flaming disk slowly descends vertically and disappears behind obstructions. +2014-03-27,39.0913889,-84.4958333,Newport,KY,unknown,2100,I was at my place of work where I have a perfect veiw of Newport and Cincinnat. It was five till six in the morning and I happend to lo +2014-03-27,33.9730556,-79.7472222,Coward,SC,sphere,600,Very bright orb following our car. +2014-03-27,27.7705556,-82.6794444,St. Petersburg,FL,triangle,300,Triangular, delta shaped craft with about 6 light. +2014-03-27,47.8555556,-121.9697222,Monroe,WA,unknown,90,Neon blue and 2 red lights not a plane. +2014-03-27,39.4141667,-77.4108333,Frederick,MD,triangle,1200,Triangular shaped objects flying at high speed (also one stationary) in the area of Fort detrick, MD. +2014-03-27,35.4086111,-80.5797222,Concord,NC,triangle,3600,Multiple triangular shaped ufo's, with green and white lights. +2014-03-27,27.0591667,-80.1366667,Hobe Sound,FL,light,3,Orange then red light. +2014-03-27,41.9583333,-70.6677778,Plymouth,MA,other,3600,Triangle 3 lights moving back and forth with single lights chasing them. +2014-03-27,26.625,-81.625,Lehigh Acres,FL,unknown,30,Alien being seen running on foot on the ground. +1994-03-28,37.8044444,-122.2697222,Oakland,CA,light,2400,I saw the lights in an arrow formation over San Francisco for 40 minutes and they didn't move an inch. +1995-03-28,26.2030556,-98.2297222,Mcallen,TX,disk,120,An out of control disk shape ship with an interesting white light. +1996-03-28,39.1125,-84.8641667,Greendale,IN,rectangle,10,We saw a transparent U +1996-03-28,38.1058333,-84.5255556,Greendale,KY,rectangle,10,A transparent ufo with lighted windows, flying low and slow just above power lines. +1997-03-28,39.8966667,-79.9747222,Carmichaels,PA,disk,180,Saw in clear skies long, silver, disc shapedobjecthigh in the sky. Flew over head of meand my witness. Object was silent, had no visibl +1997-03-28,29.7630556,-95.3630556,Houston,TX,sphere,120,SMALL GLOBE, ABOUT THE SIZE OF A TENNIS BALL, ORANGE/GOLD IN COLOR. SIGHTING WAS MADE AT NIGHT, WITH NAKED EYE. OBJECT FLEW THROUGH T +1998-03-28,40.0361111,-75.5141667,Malvern,PA,cross,1200,Bright light, when viewed through binoculars was actually a cross made up of 5 or 6 lights vertically, 5 or 6 horizontally forming a cr +1998-03-28,40.1083333,-83.7525,Urbana,OH,disk,120,craft chases airliner and jets intercept too late +1999-03-28,47.3811111,-122.2336111,Kent,WA,sphere,5,I saw a red spherical object moving in a westerly direction over the horizon. I was looking in a S-SW direction of about 210 degrees +1999-03-28,40.29,-76.9341667,Enola,PA,unknown,300,Moving light +1999-03-28,39.9205556,-104.8652778,Henderson,CO,fireball,1.5,green fireball going from east to west some green "sparks" given off, +2000-03-28,34.61,-112.315,Prescott Valley,AZ,circle,600,saw a large craft, circular in shape very bright red. floated and then moved in several directions and then appeared to touch the groun +2000-03-28,42.9730556,-120.7763889,Summer Lake,OR,sphere,1800,In the eastern sky, from highway 31, just above cloud level. Flashes of reddish orange light, similar to a flare, were seen in differen +2000-03-28,25.7738889,-80.1938889,Miami,FL,circle,60,I WAS AT SCHOOL WITH MT FRIEND COMING BACK FROM THE PARK WHEN WE LOOKED PU AND THERE WAS A U.F.O FLYING UPWARDS. +2000-03-28,38.8402778,-77.4291667,Centreville,VA,circle,300,I was researching antigravity and free energy when I found info on SEG's Searl Effect Generators, youd be surprized with what I found. +2000-03-28,33.9325,-114.005,Bouse,AZ,light,10,Looking to the NNE towards Prescott Az, saw two amber lights. Twice as large as previous sightings beneath the big Dipper at it's 9 pos +2000-03-28,31.9844444,-86.5786111,Fort. Deposit,AL,triangle,240,One large triangular craft with one dim light on each end and a smaller craft which looked like a helicopter. Both of which made no no +2000-03-28,33.1538889,-97.0644444,Corinth,TX,other,15,Not like anything any one else has reported...NONE of the characteristics listed below +2000-03-28,30.5041667,-90.4611111,Hammond,LA,light,20,Two elongated, flickering lights travelling east to west at high speed, circled around to the south and vanished. No sound apparent. +2001-03-28,42.5083333,-89.0316667,Beloit,WI,fireball,60,A yellow fireball diving straight down stops for a few seconds, changes color, then goes straight down again. +2001-03-28,33.9325,-114.005,Bouse,AZ,formation,1200,Saw 3 pulsating bright Amber lights in Triangle shape in SSW skies hover over mt. range between Bouse and Quartzsite Arizona. +2001-03-28,47.3152778,-95.9683333,Mahnomen,MN,oval,60,150- 200 feet away from object !! +2001-03-28,32.0833333,-81.1,Savannah,GA,light,3,Dense , vertical, angular column of white light shines down in to my yard at 3:42 a.m. 3/28/01. +2001-03-28,42.8244444,-99.7486111,Springview,NE,unknown,600,We watched it for 10 to 15 minutes,it went to the east,appeared to be very large,or there was more than one +2002-03-28,41.3958333,-72.8972222,Hamden,CT,circle,2,Fast moving large bright object seen over south central Connecticut at 1:35 AM on 3-28-02. +2002-03-28,41.0380556,-74.2944444,Wanaque,NJ,other,240,i was playing catch with my self, when i saw something in the sky. i looked up, and i saw alot of yellow dots flying in the sky. i loke +2002-03-28,38.6272222,-90.1977778,St. Louis,MO,diamond,660,Flying diamond shape in St. Louis, Missouri +2002-03-28,38.7908333,-121.2347222,Rocklin,CA,light,2,Light seen over Auburn Ca. +2002-03-28,44.3877778,-71.1736111,Gorham,NH,light,10,the craft was a big bright gold light that moved for one place in the sky to another in a blink of an eye +2002-03-28,42.4791667,-71.1527778,Woburn,MA,chevron,20,An object shaped like a 'V' , flew across the face of the moon. +2003-03-28,38.6272222,-90.1977778,St. Louis (Outside Of),MO,other,600,Lines in the Sky, Seen from Airplane +2003-03-28,30.3208333,-86.1416667,Seaside,FL,changing,300,It was dark outside and I was looking in the sky then this object started to flash off and on and more started to appear +2003-03-28,43.0125,-82.9280556,Capac,MI,light,120,I woke up to take pain reliever at midnight, turned on the tv and sat on the livingroom couch facing the window on my front porch. I th +2004-03-28,40.8766667,-73.325,East Northport,NY,disk,5,glint of light on mettalic circular object +2004-03-28,31.6938889,-89.1305556,Laurel,MS,changing,420,Undulating object seen over Laurel Mississippi on 3/28/04 at 2:30pm +2004-03-28,36.8352778,-76.2986111,Portsmouth,VA,oval,120,Metallic oval shaped object that moved across the sky and then stopped and hovered and was out of sight with no trace. +2004-03-28,37.5630556,-122.3244444,San Mateo,CA,disk,60,Black saucer, hovering 200-300 feet from ground. +2004-03-28,39.0061111,-85.6236111,North Vernon,IN,circle,10800,Round shape with a dip in the top and bottom +2004-03-28,37.6688889,-122.0797222,Hayward,CA,triangle,5,standing outside staring at the moon, i noticed a quiet craft with four lights in an unusual pattern pass overhead. It seemed that the +2004-03-28,47.5675,-121.8875,Fall City,WA,light,10,Two lights brighter than Jupiter, one above the other, suddenly disappeared. +2004-03-28,47.4830556,-122.2158333,Renton,WA,light,15,anomlous lights +2004-03-28,40.1205556,-75.1183333,Abington,PA,diamond,120,I saw a silent, diamond shaped craft with 5 lights on bottom, traveling slow. The outline was fuzzy......... +2004-03-28,27.4986111,-82.575,Bradenton,FL,circle,3600,Round and glowing +2004-03-28,38.0194444,-122.1330556,Martinez,CA,fireball,420,Fireballs performing amazing feats. +2004-03-28,38.4277778,-82.4572222,Chesapeake,OH,light,600,There were bright lights in strange formation +2004-03-28,26.1416667,-81.795,Naples (Vanderbuilt Beach),FL,light,2400,3 lights moving in sky - 1 light on horizon - Florida Gulf coast +2004-03-28,40.0377778,-76.3058333,Lancaster,PA,light,10,brilliant but fuzzy rectangle shaped fast mover +2005-03-28,25.7738889,-80.1938889,Miami,FL,circle,420,yesterday night 03/28/05 at around 2 oclock in the morning I was on the way to the beach with my girlfriend... Suddenly when I was goin +2005-03-28,34.9377778,-80.6688889,Mineral Springs,NC,other,45,A EMBER looking UFO +2005-03-28,42.0083333,-91.6438889,Cedar Rapids,IA,disk,90,Half-circle mooon shaped object with 5 brownish-oragneish colored lights on the bottom. +2005-03-28,28.0833333,-80.6083333,Melbourne,FL,unknown,120,Standing in my back yard I obseved two white lights just above the treeline they hovered there back and forth for a few seconds then go +2006-03-28,33.7475,-116.9711111,Hemet,CA,triangle,30,Triangle craft in hills by Ramona Bowl in Hemet California. +2006-03-28,43.9144444,-69.9658333,Brunswick,ME,circle,3600,There was a bright circular object in the southern sky around 2000. It changed color from red to blue to white in a pulsing fashion. Ob +2006-03-28,42.15,-71.7633333,Sutton,MA,oval,1800,Object hovered in the sky in one place for several (10-15) minutes then drifted slowly over horizon. +2006-03-28,40.9252778,-74.2769444,Wayne,NJ,triangle,300,bright white lights with rapid speeds +2007-03-28,46.7833333,-92.1063889,Duluth,MN,changing,600,i looked to my south and saw a cluster of lights changed to a stright line of lights +2007-03-28,35.8683333,-92.1175,Mountain View,AR,light,30,Moved too fast & silently to be an airplaine. +2007-03-28,43.1547222,-77.6158333,Rochester,NY,other,600,pure white bubbulous object with brilliant tiny red twinkling lights in a small area on the underside +2007-03-28,35.7913889,-78.7813889,Cary,NC,teardrop,120,2 red UFOs shuts off electrical equipment and makes noise. +2007-03-28,27.3361111,-82.5308333,Sarasota,FL,flash,2400,((HOAX??)) Spotted hovering for a long period of time over Bradenton Sarasota airport. +2007-03-28,44.4563889,-89.5438889,Plover,WI,sphere,900,Possible F-16 engagment of a UFO over Plover, Wisconsin +2007-03-28,36.8455556,-121.5369444,San Juan Bautista,CA,circle,21600,Six UFO obererved for six hours in rural area outside of San Juan Bautista, California. +2008-03-28,32.3122222,-106.7777778,Las Cruces,NM,light,600,Two unexplainable lights over the southern horizon near Las Cruces, New Mexico. +2008-03-28,28.0611111,-97.0408333,Fulton,TX,unknown,7200,Unexplained noise that DID NOT come from a person or an animal!!! +2008-03-28,47.2647222,-122.2488889,Pacific,WA,unknown,2700,UFO hovering 10-20 feet above houses in small Washington State neighborhood +2008-03-28,35.2922222,-81.5358333,Shelby,NC,light,960,March 28, 2008 I sighted two orange objects stationary near Sirius. One orange star like in appearance was at the three o’clock positi +2008-03-28,30.6166667,-89.6525,Carriere,MS,light,600,flashing light in northeastern sky ((NUFORC Note: One of four reports from same source. Sighting of Sirius?? PD)) +2009-03-28,33.7825,-117.2277778,Perris,CA,triangle,1800,((HOAX??)) a triangular shape clusterd together and flew stangely for about an hour. +2009-03-28,38.7522222,-121.2869444,Roseville,CA,formation,2700,Three unexplained events experienced March 28th 2009. Group of objects seen in pursuit of object. +2009-03-28,38.5816667,-121.4933333,Sacramento,CA,changing,120,lit up oval floating close to a near by nieghbors tree. +2009-03-28,34.0005556,-81.035,Columbia,SC,fireball,240,Red fireball UFOs over South Carolina in controlled flight to a northerly direction seen south of Columbia +2009-03-28,34.0522222,-118.2427778,Los Angeles,CA,unknown,900,Unusual seemingly stationary bright object +2009-03-28,33.3466667,-107.6466667,Winston (Near),NM,fireball,5,Meteor or Fireball between Cuchillo and Winston NM March 28 2009 about 9:30 PM very light and very big. +2009-03-28,47.4158333,-120.2919444,East Wenatchee,WA,cylinder,3,We saw a UFO in the sky over the Wenatchee, WA 98801 valley. +2009-03-28,34.2694444,-118.7805556,Simi Valley,CA,unknown,180,Strange object spotted over Simi Valley +2009-03-28,38.7044444,-93.2280556,Sedalia,MO,triangle,120,Triangular shaped craft over Sedalia, MO +2009-03-28,36.9741667,-122.0297222,Santa Cruz,CA,triangle,60,three white patches forming a dim triangle (looked like one craft) flying completely silently, low, and at constant speed (fast) North. +2010-03-28,42.4222222,-87.8572222,Beach Park,IL,circle,5,Hovered and shook then rapidly shot to the south towards Chicago over Lake Michigan. +2010-03-28,37.6391667,-120.9958333,Modesto,CA,oval,360,Oval object advancing towards me +2010-03-28,36.6002778,-121.8936111,Monterey,CA,light,1200,Wife and I observed three bright dot s of light, green, blue and red moving erraticly over Monterey Bay. +2010-03-28,34.1808333,-118.3080556,Burbank,CA,disk,4,Sunday 28march2010 9:50pm Burbank Ca USA 2nd fl apt build facing east was looking out window talking on cell phone, zero noise, very l +2010-03-28,44.5438889,-73.1483333,Colchester,VT,oval,15,blimp shaped craft hovering in sky +2011-03-28,44.7630556,-85.6205556,Traverse City,MI,sphere,300,3 strage lights +2011-03-28,26.0027778,-80.2241667,Pembroke Pines,FL,disk,60,Red light disappeared behind a cloud then a dark gray round disc descended from cloud hovered above me and flew W. +2011-03-28,42.2813889,-83.3863889,Wayne,MI,formation,60,Looking at saturn with binoculars in triangle formation very weak little lights moving faster than a plane +2011-03-28,34.54,-112.4677778,Prescott,AZ,diamond,4,A diamond shaped, black craft with two lights passed low over head heading southwest. +2011-03-28,42.1680556,-88.4280556,Huntley,IL,triangle,10,A triangular craft flying low, slow and silent +2011-03-28,35.9827778,-86.5186111,Smyrna,TN,unknown,60,Yellow Dot, 200 mph, Dissapearing after a minute. +2012-03-28,38.9911111,-108.4527778,Whitewater,CO,fireball,15,Red Green fireball in western Colorado. +2012-03-28,42.1033333,-88.3727778,Gilberts,IL,triangle,600,Its hard to explain the craft because it was dark,but it was big judging on the 2 lights underneath it they were spaced out approximate +2012-03-28,32.7763889,-79.9311111,Charleston,SC,cigar,120,I was on my way home from school on 3/28/12 @10:10pm traveling on the interstate. For about 2 miles ahead of me (far left of the inter +2013-03-28,46.1469444,-122.9072222,Kelso,WA,unknown,600,Bright Red & Orange light travelling north over Columbia River in SW Washington +2013-03-28,26.625,-81.625,Lehigh Acres,FL,disk,300,The whole thing was very satrange and i realy dont care of U F O s but the pic is in my phone. +2013-03-28,35.4736111,-81.2547222,Lincolnton,NC,fireball,90,Driving North on 321 in Lincoln Co. N.C. a bright fireball streaked across the sky. It looked like a burning beach ball. +2013-03-28,44.9583333,-124.0166667,Lincoln City,OR,fireball,420,Orange fireball that stood still then started moving left and right and then shooting straight up into the sky. +2013-03-28,40.1544444,-75.2219444,Ambler,PA,formation,105,8 or 9 Orange colored lights forming a large circle over Ambler Pa. +2013-03-28,39.8680556,-104.9713889,Thornton,CO,unknown,300,I seen a large black object with twored lights moveing slowly northeast threw the sky. +2013-03-28,39.7588889,-84.1916667,Dayton,OH,circle,300,There were aircraft in the vicinity, aircraft chasing the object  +2013-03-28,34.1486111,-118.3955556,Studio City,CA,cylinder,300,Bright blue-gray cylinder spiraled downward from Big Dipper,made a left turn over tree tops and sped away. +2013-03-28,45.1608333,-93.2347222,Blaine,MN,fireball,120,Two orange circular flickering flames traveling the same path across the night sky. +2013-03-28,40.7027778,-74.3791667,Woodland Park,NJ,circle,1800,2 circles chasing each other in sky. +2013-03-28,41.9163889,-83.3977778,Monroe,MI,other,600,Orange red color moving very slowly and then flashed and disappeared. +2013-03-28,38.005,-121.8047222,Antioch,CA,fireball,10,Ball of light appeared from nowhere in the , moved at a high speed than disappeared, yellowish red color +2014-03-28,33.3627778,-112.1686111,Laveen,AZ,light,300,I witnessed a green and red object moving slowly and erratically in the night sky in the southern PHX metro area on 03/28/14. +2014-03-28,41.2794444,-72.5988889,Madison,CT,circle,15,ever be scared so much you cant get it out of your head . +2014-03-28,60.7922222,-161.7558333,Bethel,AK,triangle,780,Triangle shaped and bright orange. +2014-03-28,61.5813889,-149.4394444,Wasilla,AK,changing,3600,Red and white lights on UFO. +2014-03-28,61.3888889,-149.4819444,Chugiak,AK,light,60,Lights in sky. Flying objects. +2014-03-28,41.4797222,-91.5811111,Riverside,IA,fireball,10,Fireball seen in rual Riverside Iowa +2014-03-28,30.0797222,-95.4169444,Spring,TX,fireball,900,I walked outside my house at night to smoke a cigarette, and I saw a ball of green light. It seemed to almost look electrical.? The sky +2014-03-28,36.7477778,-119.7713889,Fresno,CA,oval,900,Bright orange oval over Fresno, CA +2014-03-28,32.7947222,-116.9616667,El Cajon,CA,disk,180,I live behind rancho san diego elementary school. 92019. Looking over Mt Miguel I saw a space craft move in unorthodox directions zipp +1964-03-29,33.9725,-116.9763889,Cherry Valley,CA,circle,1200,Little girl wakes up to lights and sees UFO. +1966-03-29,42.4133333,-89.0091667,Roscoe,IL,chevron,2700,Multiple craft over Northern Illinois interacting with each other. +1979-03-29,40.1997222,-76.7313889,Middletown,PA,disk,600,.TMI saved from completely melting down from UFO during the accident baffelling the scientist that said it didn't melt when it Did +1986-03-29,37.365,-115.1636111,Alamo,NV,rectangle,720,trapazoid object with cluster of smaller lights following in the same direction +1995-03-29,40.0505556,-77.5205556,Shippensburg,PA,other,180,Large, wingless ship hovers over university building. +1998-03-29,46.6022222,-120.5047222,Yakima,WA,changing,600,The object changed color and shape. It kept the same course and speed flying into the wind. +1998-03-29,33.7205556,-116.2147222,Indio,CA,light,300,Bright light or dot with orange tail shot upwards and south across the sky. Tail stopped and so did light. Hovered in sky, then flew pa +1998-03-29,42.5944444,-71.725,Lunenburg,MA,fireball,2,Green fireball seen falling quicly from South to North, looked almost as big as moon, followed by two smaller pieces/ debris. +1999-03-29,37.1733333,-82.6311111,Jenkins,KY,chevron,4,Bright green object in chevron shape +1999-03-29,34.1008333,-117.7669444,La Verne,CA,sphere,3600,Large sphere, several projectiles and a rounded cube! +1999-03-29,36.6177778,-121.9155556,Pacific Grove,CA,triangle,240,At 20:00 hours, on March 29, 1999, I was closing my upstairs bedroom window that looks out to the Monterey Bay, I noticed that two star +1999-03-29,36.8466667,-76.2855556,Norfolk,VA,unknown,2,GREEN GLOWING LIGHT IN THE SKY 1/2 MOON SHAPE SEEING IN TWO DIFFRENT LOCATIONS AT THE SAME TIME, ABOUT 20 MILES APART - TODAY 4/1/99 WA +1999-03-29,34.0552778,-117.7513889,Pomona,CA,light,840,Orange/red glowing object with flashing white and red lights to each side SE of Foothill and Garey, Pomona, CA. Hovered for approx 5 m +2000-03-29,34.5227778,-82.4944444,Belton,SC,changing,300,A strange formation of 9 UFOs flew in an undetermined pattern over an abandoned field for approximately 5 minutes. +2000-03-29,38.6555556,-83.7611111,Aberdeen,OH,changing,330,Approx 3:00am 0n 3/29/00 the following opbervations were observed by myself while observing the Pleadies star cluster in northern sky. +2000-03-29,27.7688889,-82.7691667,Treasure Island (South Of),FL,circle,120,Slow falling glowing ball over Gulf of Mexico +2000-03-29,33.7488889,-84.3880556,Atlanta,GA,light,120,looking up at the b dipper top star on the dipper going SW about a yard stick at arms length a light moving to the NE about the two foo +2000-03-29,46.4111111,-86.6477778,Munising,MI,triangle,30,looking south from my backyard,high in the sky. noticed three stars forming a triangle moving east at a steady, slow, speed. it blocked +2000-03-30,39.3772222,-119.7427778,Steamboat,NV,oval,60,There is no doubt that the sky and space around us are a curiously busy place. +2001-03-29,33.9325,-114.005,Bouse,AZ,formation,900,3 very bright pulsating amber lights in a line appear again in SSW over Plomosa Mt.Range between Bouse/Quartzsite Az. +2001-03-29,28.5380556,-81.3794444,Orlando,FL,light,60,Two slowy flashing red lights observed flying just above tree level with no sound. +2001-03-29,40.5813889,-79.5666667,Apollo,PA,light,900,Vertical shaft of light, traveling NorthWest in Southern Armstrong county Pa. +2001-03-29,38.5580556,-91.0119444,Washington,MO,other,360,Spinning "Chrome-like" shiny square traveling on changing course. +2001-03-29,36.7477778,-119.7713889,Fresno,CA,sphere,60,see above +2001-03-29,36.175,-115.1363889,Las Vegas,NV,formation,1800,The four red lights that buzzed Nellis A.F.B. && The one Orange one that played cat +2002-03-29,34.5008333,-117.185,Apple Valley,CA,chevron,20,Reflected Impulse in desert sky. +2002-03-29,39.7408333,-103.5911111,Last Chance,CO,egg,900,Unknown oval object illuminated silently, startling cattle and observers. +2002-03-29,37.2255556,-107.5975,Bayfield,CO,circle,1800,Saw same object as people in Washington on 22nd. Western Sky. +2002-03-29,36.2977778,-119.2058333,Farmersville,CA,light,15,Observed bright light traveling rapidly northwest to northeast. +2002-03-29,44.9430556,-123.0338889,Salem,OR,triangle,300,Three witness low hovering craft over farm field...joint NUFORC and OUFOR investigation. +2002-03-29,35.3733333,-119.0177778,Bakersfield (1 Hour North Of),CA,diamond,120,triangle shaped object off of I5 California 3/29/02 +2002-03-29,35.3733333,-119.0177778,Bakersfield (I-5 North Of),CA,triangle,180,large triangle shaped object with 3 bright lights on front on I-5 north of bakersfield,ca +2003-03-29,35.0844444,-106.6505556,Albuquerque,NM,light,900,Small white light slowely gaining altatude over Albuquerque Morning sky! +2003-03-29,26.1336111,-80.1133333,Sunrise,FL,light,600,bright star-like objects that changes colors and brightness +2003-03-29,41.3136111,-81.7247222,North Royalton,OH,triangle,180,Me and my friend were in our jacuzi at my house. The lights on our jacuzi change color every 2 or 3 seconds. We saw a light very far +2003-03-29,39.5297222,-119.8127778,Reno,NV,light,30,Bright light over rual Reno Area far from airports, changed colors and appeared to be following at a rapid speed +2004-03-29,28.5380556,-81.3794444,Orlando,FL,chevron,30,Huge grouping of lights defining a boomerang shape silently moved above me on my early morning dog walk. +2004-03-29,37.6688889,-122.0797222,Hayward,CA,egg,720,Chrome colored object in western sky. +2004-03-29,42.9741667,-117.0533333,Jordan Valley,OR,circle,120,I am a farmer from Idaho and was driving a semi-truck north bound on hwy 95 about two miles out of the small town of Jordan Valley, Ore +2004-03-29,28.5380556,-81.3794444,Orlando,FL,unknown,40,Three objects flying in strange speeds and maneuvers closing in to eachother and dispersing away. +2004-03-30,28.5380556,-81.3794444,Orlando,FL,light,60,Visiting my son from Calfornia. In the evening sky saw thee lights, like a triangle. Slow flying, not a comercial jet or a militay jet. +2005-03-29,40.1672222,-105.1013889,Longmont,CO,circle,240,unknown object sighted and recorded by camera +2005-03-29,39.0833333,-86.7561111,Solsberry,IN,sphere,600,Spereical object not far from Crane Naval Base Drops from the sky. +2005-03-29,42.5158333,-73.6105556,Nassau (Long Island),NY,light,1500,four white lights in a straight line with one another. ((NUFORC Note: Possible landing lights on airliners?? PD)) +2005-03-29,30.2669444,-97.7427778,Austin,TX,triangle,300,Triangular Object, Fast blinking lights, Austin, TX 23:50 03-29-05 +2006-03-29,41.0533333,-73.5391667,Stamford,CT,changing,7,extremly bright circular light in daylight sky that quickly vanished +2006-03-29,40.1672222,-105.1013889,Longmont,CO,other,300,Three black flying figures in the sky heading east during rush hour. +2006-03-29,37.5536111,-77.4605556,Richmond,VA,other,10,Red and Silver Object Viewed Shortly After Take-off from Richmond International Airport +2006-03-29,33.4502778,-88.8183333,Starkville,MS,circle,12,Silent white object spotted, then moved 2 miles, flashed, moved again, flashed, moved again, flashed 3 times, then dissapeared +2006-03-29,40.4863889,-86.1336111,Kokomo,IN,light,1200,multiple occurrence of bright points of light separating into 3's +2006-03-29,44.6041667,-89.8547222,Milladore,WI,light,1800,Eratic moving light multiple sitings changes direction at great speeds +2007-03-29,39.6294444,-79.9561111,Morgantown,WV,sphere,300,redish-orange glowing sphere +2007-03-29,40.7280556,-74.0780556,Jersey City,NJ,diamond,3600,Bright white diamond shaped object in the sky within the atmosphere standing motionless. +2007-03-29,42.3086111,-83.4822222,Canton,MI,formation,180,Two pulsing lights traveling in perfect formation +2007-03-29,40.7347222,-73.7938889,Fresh Meadows,NY,oval,1200,I was driving home from my parent’s house and I notice as I arrived closer to my home a bright star to my left. I continued driving and +2007-03-29,30.4380556,-84.2808333,Tallahassee,FL,light,1200,I have seen this two times now. +2008-03-29,41.9788889,-76.5158333,Sayre,PA,cigar,3,Sitting in my backyard and saw cigar shaped aircraft zoom across the sky +2008-03-29,61.2180556,-149.9002778,Anchorage,AK,disk,2700,Brown rustic red sideways disc shaped UFO and hovering very slowly through the air with pauses at random. +2008-03-29,61.2180556,-149.9002778,Anchorage,AK,disk,2700,it was a definite flying saucer, that made no sound, no lights, rusty colored round +2008-03-29,46.0038889,-112.5338889,Butte,MT,teardrop,300,A big orb chases a smaller orb across the sky and disappears. +2008-03-29,34.4233333,-118.4711111,Canyon Country,CA,disk,1,Saw a thin object shoot through the sky at 8pm in the dark at lighting speep, no lights, no noise. +2008-03-29,33.9525,-84.55,Marietta,GA,rectangle,20,MUFON/GEORGIA INVESTIGATION REPORT: Massive Rectangular Craft Low Over Marietta Georgia +2008-03-29,40.0377778,-76.3058333,Lancaster,PA,triangle,300,Large triangle consisting of 3 inverted V shapes with pulsing red lighting, moved sideways & accelerated. +2009-03-29,40.135,-86.2205556,Sheridan,IN,flash,5,two extremely bright pulses of white light followed by brief sound of a loud charge like you use to hear in the old frankenstein movies +2009-03-29,41.1419444,-87.8611111,Bradley,IL,flash,7200,Bright flashing UFO spotted over northeastern kankakee county on 03/31/09 +2009-03-29,40.1841667,-75.5383333,Royersford,PA,changing,3600,Three objects moving from one point to another and repeating pattern for one hour. +2009-03-29,47.4236111,-120.3091667,Wenatchee,WA,light,120,Bright fast moving light. +2009-03-29,36.8876,-89.9307,Bloomfield,MO,light,3600,Yellow-White light seen moving accross and then hovering in Southeast Missouri sky. +2009-03-29,38.9783333,-76.4925,Annapolis,MD,circle,10,Flaming baseball sized object fell quietly from the dark sky; flamed out at 20 feet above water.((NUFORC Note: Suspected meteor. PD)) +2009-03-29,36.7263889,-78.1291667,South Hill,VA,fireball,15,Bright Light traveling parallel to ground descends to the ground in a fireball in South Hill, VA.((NUFORC Note: Possible meteor. PD)) +2009-03-29,36.8527778,-75.9783333,Virginia Beach,VA,sphere,120,huge moon like blue white spheres flashed in night sky accompanied by loud booms +2009-03-29,34.6402778,-78.4841667,White Lake,NC,fireball,15,I was driving down the NC 41 between White Lake and Tomahawk, North Carolina and I saw a bright green light strike the ground. It came +2009-03-29,36.8527778,-75.9783333,Virginia Beach,VA,fireball,10,Purple fire trail from debris headed east at rapid pace, leaving thunder boom in its wake. +2009-03-29,46.1880556,-123.83,Astoria,OR,light,30,Three separate lights dart across night sky on same trajectory , as if chasing after one and another, but they turned. +2009-03-29,36.8466667,-76.2855556,Norfolk,VA,light,3,A FLASH/BEAM OF LIGHT DIRECTLY OVERHEAD IN CLEAR SKY (NO SOUND) ((NUFORC Note: Possible meteor. PD)) +2010-03-29,34.0522222,-118.2427778,Los Angeles,CA,light,900,Several Small lights at Different intervals +2010-03-29,32.3908333,-110.9658333,Oro Valley,AZ,formation,120,Three pulsating lights scene around Tucson AZ +2010-03-29,32.7355556,-97.1077778,Arlington,TX,light,120,Reddish-lights traveling erractically. +2011-03-29,32.8472222,-117.2733333,La Jolla,CA,triangle,60,Hovering craft; red, blue, white lights not flashing; no sound. +2011-03-29,34.1063889,-117.5922222,Rancho Cucamonga,CA,circle,30,Skeptic UFO Sighting Tonight +2011-03-29,36.8527778,-75.9783333,Virginia Beach,VA,oval,300,orb shaped, hovering UFO during the day in virginia beach on march 29, 2011. +2011-03-29,33.6888889,-78.8869444,Myrtle Beach,SC,light,300,Yellow lights in changing formations off coast of Myrtle Beach +2011-03-29,40.7438889,-73.1391667,Oakdale,NY,circle,300,Light like star moving across sky decently slow. +2011-03-29,40.2333333,-104.9980556,Mead,CO,triangle,600,One night 3/29/2011 2018 pm while driving to work ,I noticed some lights that seemed out of place. So I pulled off I-25 (mead exit) on +2011-03-29,39.2902778,-76.6125,Baltimore,MD,circle,300,UNBELIEVABLE! +2011-03-29,43.7730556,-88.4469444,Fond Du Lac,WI,triangle,3,Very fast moving rounded point triangle with fixed and dimly lit round glowing area near each corner +2011-03-29,33.8941667,-78.4269444,Ocean Isle Beach,NC,light,600,4 reddish-orange lights, 3 of them closer together over the ocean, flashing on and off in a sequence. +2011-03-29,34.0336111,-117.0422222,Yucaipa,CA,triangle,240,BRIGHT LIGHT HOVERS OVER YUCAIPA, CA MARCH 29TH 2011 AT 11:00 P.M. +2012-03-29,46.7691667,-113.7116667,Clinton,MT,triangle,60,Large triangular, yellow object hovering above mountains near Clinton Mt. +2012-03-29,39.0836111,-84.5086111,Covington,KY,triangle,2220,I seen seven triangular shaped aircraft moving at impossibly slow speeds ,one of them ejected another craft. +2012-03-29,34.0522222,-118.2427778,Los Angeles,CA,changing,300,Unidentified flying object (bright orange/red) triangular five-side polygon hovering in sky above Barham Blvd. L.A., CA. 3-29-2012 +2012-03-29,39.9625,-76.7280556,York,PA,circle,60,3 lights moving right then left very slowly. +2012-03-29,41.3572222,-88.4211111,Morris,IL,cigar,300,I saw a reflective object in the sky followed by unmarked black helicopters. +2012-03-29,45.5719444,-88.9027778,Crandon,WI,light,10,((HOAX?? Date is severely flawed.)) Bright, inredibly fast lights over Crandon, Wisconsin +2012-03-29,33.4222222,-111.8219444,Mesa,AZ,changing,600,Two slow, black heart changing to tear shaped objects decend with no lights and unheard witnessed by family over e.Mesa,AZ! +2012-03-29,40.3708333,-80.235,Mcdonald,PA,diamond,30,Lighted, diamond-shaped craft +2012-03-29,37.3636111,-118.3941667,Bishop,CA,oval,120,Three fly over bishop california +2012-03-29,43.0116667,-88.2313889,Waukesha,WI,triangle,600,Triangle craft, 9 lights, hovering with extremely quiet jet engine sound, no helicopter sound. +2012-03-29,38.1838889,-83.4327778,Morehead,KY,light,1800,Bright pulsating light in the sky with strange flight patterns. Faded out completely when plane flew close to it. +2013-03-29,42.0341667,-91.5975,Marion,IA,changing,300,Lights of blue, like electricity, red triangle in center! 1 blue/1 white +2013-03-29,42.0341667,-91.5975,Marion,IA,changing,300,Electric blue lights w/red triangle in center, and 2 smaller ones, +2013-03-29,32.9797222,-86.0336111,Kellyton,AL,cylinder,240,Two bright white clyinders flying in formation, faded away. +2013-03-29,33.0580556,-112.0469444,Maricopa,AZ,circle,900,They are seen tuesday through thursday 20:00 to 3:00 every week. ((NUFORC Note: We will encourage the witness to get photos. PD)) +2013-03-29,39.9625,-76.7280556,York,PA,unknown,300,Orange Lights in Night Sky Over York PA +2013-03-29,35.2338889,-92.3875,Greenbrier,AR,circle,300,20-30 bright orange circles in the sky. +2013-03-29,29.6513889,-82.325,Gainesville,FL,egg,360,Illuminating Orange-Red glow, beautiful that flew so low. +2013-03-29,30.2944444,-81.3933333,Jacksonville Beach,FL,light,300,4 orange lights following each other in the sky and fading out. +2013-03-29,44.0216667,-92.4697222,Rochester,MN,triangle,45,Glowing orange triangle object flew across the sky at a high rate of speed. +2013-03-29,36.8188889,-76.2752778,Chesapeake,VA,triangle,300,Red orange fireballs in a triangle shape hovering over 64. +2013-03-29,33.4483333,-112.0733333,Phoenix,AZ,other,60,Phoenix 101. +2013-03-29,37.9886111,-84.4777778,Lexington,KY,circle,600,Two red/orange orbs moving south to north over east side of Lexington, KY; no sounds +2013-03-29,40.9311111,-73.8991667,Yonkers,NY,light,300,Bright pulsating white light on the horizon in the East +2013-03-29,40.9311111,-73.8991667,Yonkers,NY,light,300,Single white light dimming and brightening while stationary +2014-03-29,35.7452778,-81.685,Morganton,NC,unknown,60,Large objects flying over I-40. +2014-03-29,29.7630556,-95.3630556,Houston,TX,triangle,5,Four silent triangular shaped UFOs spotted flying in formation over central Houston. +2014-03-29,44.1036111,-69.1094444,Rockland,ME,flash,3600,Bright Strobe Lights Over Rockland Maine +2014-03-29,41.6861111,-70.0763889,Harwich,MA,other,900,This ufo was just a beem of light in a circle form it had red orange and white lights and was glowing a transparent blue +2014-03-29,41.6005556,-93.6088889,Des Moines,IA,chevron,5,5 orange lights in a chevron shape +2014-03-29,30.3502778,-89.1527778,Long Beach,MS,triangle,10,Motionless silver triangle high in the atmosphere. +2014-03-29,47.7180556,-116.9505556,Post Falls,ID,fireball,2,East of post falls low on the horizon. Walked outside and looked up to briefly see streaking fireball headed north for 2 seconds white +2014-03-29,35.0844444,-106.6505556,Albuquerque,NM,circle,60,7 lights hover over the Base and Sandias. +2014-03-29,43.3033333,-91.7855556,Decorah,IA,sphere,60,Two amber colored orbs moving together. +2014-03-29,61.2180556,-149.9002778,Anchorage,AK,cigar,15,I explained away the first time I thought I seen this object but twice weeks apart...I'm certain now +2014-03-29,32.7213889,-109.1047222,Duncan,AZ,circle,300,Saw 2 orange crafts that moved up and down dimmed in and out then disappeared. +2014-03-29,34.7694444,-92.2669444,North Little Rock,AR,sphere,180,Orange Sphere in Northern Pulaski County, Arkansas. +2014-03-29,44.4488889,-88.0602778,De Pere,WI,light,120,Moving red object in the sky. +2014-03-29,33.5386111,-112.1852778,Glendale,AZ,sphere,600,10+ more orange orbs. +2014-03-29,44.9747222,-92.7566667,Hudson,WI,light,60,Bright red light flying slowly over road +2014-03-29,37.5238889,-95.6611111,Altoona,KS,sphere,1800,Several orange spheres move horizontally, in perfectly straight line, across SE Kansas sky with absolutely no sound! +2014-03-29,32.7947222,-116.9616667,El Cajon,CA,oval,300,At 1130 PM I looked out of my back yard West towards Mt San Miguel. I initially saw two objects one that was Large and Blue/Purple and +1964-03-30,36.7161111,-80.9788889,Fries,VA,cylinder,1800,no sound moved slow into the west wind. heavy iron metal 11am sunny day march windfrom west +1970-03-30,31.1080556,-85.5944444,Slocomb,AL,circle,120,craft just above the trees moving slowly, silent,circular solid white light. witnessed by 5 of us +1984-03-30,33.2466667,-84.2641667,Griffin,GA,circle,20,When I was a child ,I looked up into the sky and saw a huge brown ball with spikes passing over. +1995-03-30,34.0983333,-118.3258333,Hollywood,CA,cigar,300,early-morning cigar-shaped UFO hovered behind trees in Hollywood near Harold Way/101 Freeway in March ྛ +1996-03-30,40.4483333,-122.2966667,Anderson,CA,cross,1800,airplane 200 ft altitude, about 40-50 ft width, 60 ft length, motionless for 20 minutes, then turned slowly and moved forward ne about +1996-03-30,41.4513889,-75.6122222,Throop,PA,light,20,Bright light moving off horizon, jumping upward, stopped then dissapeared. +1997-03-30,42.6777778,-74.4858333,Cobleskill,NY,light,240,Looking east, low in the sky, a bright orange circular figure was just "sitting" there. +1997-03-30,33.9730556,-78.3861111,Shallotte,NC,formation,20,9-10 orange objects flying in V formation,leader drops down to form W ,all vanish within seconds. Watching Hale-Bopp, both girlfriend a +1998-03-30,37.3861111,-122.0827778,Mountain View,CA,other,120,This is just a short note regarding any sightings that you may receive for the above mentioned "UFO". The sighting may have been seen +1998-03-30,39.5358333,-76.3486111,Bel Air,MD,formation,5,3 round glowing objects in triangle formation in Southern sky approx 22:30 in Southern sky +1999-03-30,33.7488889,-84.3880556,Atlanta,GA,sphere,60,Dark sphere underneath clouds moving east to west - afternoon. +1999-03-30,40.4405556,-79.9961111,Pittsburgh,PA,light,3600,The object hovered at about 100 feet very bright white lights that would change intensety and every now and then a red light would join +1999-03-30,40.4405556,-79.9961111,Pittsburgh,PA,cone,10,I saw a circular bright white object sitting (5 secs?) in the eastern sky. It moved straight up and winked out. +1999-03-30,41.5963889,-72.8780556,Southington,CT,disk,120,Floating thing +2000-03-30,33.4483333,-112.0733333,Phoenix,AZ,flash,2,Looking east from approximately Campbell Ave and 12th street:the whole sky flashed bright white and a split second later a loud boom so +2000-03-30,33.4483333,-112.0733333,Phoenix (South Of, I-10, Milepost 184),AZ,light,3,Airborn object with bright light disappeared. +2000-03-30,33.3527778,-111.7883333,Gilbert,AZ,circle,600,Bright red lights dropping smaller lights +2000-03-30,42.3369444,-71.2097222,Newton,MA,light,180,Observed a pulsating light traveling at a high rate of speed. +2000-03-30,42.3066667,-78.0161111,Angelica,NY,fireball,15,Orange fire ball zigzaging through air at low alitude and high speed.it was a clear starry night. +2001-03-30,40.2330556,-76.1375,Denver,PA,triangle,600,was it a slient stacker looking to land? +2001-03-30,32.7252778,-97.3205556,Fort Worth,TX,disk,7,Classical UFO seen to have 'dropped' from 11 o'clock high--hover in-place--then whisked off to the due NNW. Fort Worth, Tx. +2001-03-30,33.4483333,-112.0733333,Phoenix,AZ,oval,60,3 white oval objects flying very low and very fast in a tight formation, making no noise. +2001-03-30,37.1241667,-77.2261111,Disputanta,VA,diamond,900,Multitude of extremely fast flashing lights in a small area of the sky. +2001-03-30,43.073055600000004,-89.4011111,Madison,WI,light,600,Hovering lights above Madison, Wisconsin seen by many +2001-03-30,61.5997222,-149.1127778,Palmer,AK,light,1200,Orange lights flying over Palmer Ak March 30񫺛 +2001-03-30,46.4794444,-116.2541667,Orofino (16 Miles East Of),ID,unknown,7200,Glowing deep red clouds floating against the wind going from horizon to horizon +2002-03-30,30.3319444,-81.6558333,Jacksonville,FL,changing,7,Cluster of lights passing overhead at high speed simultaneously changing configuration +2002-03-30,33.425,-94.0475,Texarkana,TX,circle,60,BRIGHT blue neon light going across sky(no streaks) and about the size of three stars. +2002-03-30,33.7811111,-113.6138889,Salome,AZ,cylinder,10800,Nobody can explain what we saw,I know it's not a weather ballon or star. +2002-03-30,34.1083333,-117.2888889,San Bernardino,CA,oval,120,Orange/red craft appears over backyard 2 obejects ejected from it then pulses and disappears. Twice! +2002-03-30,45.4983333,-122.4302778,Gresham,OR,light,600,Bright RED light spotted in Southern sky traveling East +2003-03-30,32.7833333,-96.8,Dallas,TX,disk,300,UFO SEEN AT A DISTANCE. ALTERNATED COLOR FROM SILVER TO WHITE IN THE SKY-DRIVING ALONG I20 TX. +2003-03-30,48.2413889,-122.3694444,Stanwood,WA,triangle,180,very big the size of an aircraft carrier going north to south very slow . +2003-03-30,34.1808333,-118.3080556,Burbank,CA,fireball,600,UFO over Burbank is just a clear bag with 4 burners +2004-03-30,34.1808333,-118.3080556,Burbank,CA,unknown,3,Ghostly enormous lights of soft color with a foggy auora fly across Burbank, CA +2004-03-30,41.8244444,-72.8941667,Canton,CT,oval,180,driving on rt.44 in canton ,i stoped for a stop light .it was a nice night so i had my sunroof open. i looked up as i always do tho loo +2004-03-30,33.8030556,-118.0716667,Los Alamitos,CA,other,1200,This one has bin seen before it has 4 spheres. +2004-03-30,42.8863889,-78.8786111,Buffalo,NY,cigar,10,a little nervious about this but here it goes,from leaning aganist the back of my house overlooking the Kinsington expressway from my r +2004-03-30,35.1313889,-79.4297222,Aberdeen,NC,triangle,300,triangular craft with large rounded tailfin +2004-03-30,38.6272222,-90.1977778,St. Louis,MO,fireball,6,tailing large fire ball travling from SE to NW at a high rate of speed. Faster then a jet or aircraft. Teardrop with largeest part in t +2004-03-30,47.1619444,-114.0841667,Arlee,MT,unknown,120,Orange steady light, white flashing light, silent, moving South above Arlee. +2004-03-30,28.2916667,-81.4077778,Kissimmee,FL,formation,30,3 bright objects moving in a V formation, no sound, suddenly began making rapid, intricate manuvers. Converging, orbiting each other. +2005-03-30,43.1333333,-72.4444444,Bellows Falls,VT,light,5,A star-like object appears close to the sun +2005-03-30,45.5947222,-121.1775,The Dalles,OR,sphere,120,spherical shaped object that appeared to be white with a grey shadow flying north to south +2005-03-30,36.5483333,-82.5619444,Kingsport,TN,cigar,30,Cigar shaped and bright white +2005-03-30,38.5227778,-99.1969444,Bison,KS,circle,300,Bright round White object sited in Rush County, Kansas. +2005-03-30,43.0841667,-76.8697222,Clyde,NY,formation,30,saw lights ubove us at a very high rate of speed, siting in our hot tub, we see planes eery night, this wasn't a regular jet. +2005-03-30,37.775,-122.4183333,San Francisco,CA,teardrop,4,A very bright shooting star-like event over San Francisco. +2006-03-30,30.4380556,-84.2808333,Tallahassee,FL,fireball,300,Glowing Greenish Firball on Power Lines in Daytime +2006-03-30,37.5841667,-122.365,Burlingame,CA,cigar,1500,I saw a very large, metallic object descend from over the hill crest to within 15-30 feet above the houses in full daylight. +2006-03-30,32.8594444,-86.9513889,Lawley,AL,egg,960,Unknown lights filmed descending into wooded area +2006-03-30,42.0833333,-71.3972222,Franklin,MA,triangle,8,Solid, silent Black Triangle UFO over Franklin, Massachusetts +2006-03-30,27.5211111,-82.5725,Palmetto,FL,flash,3600,Unidentified floating flashing and blinking light in Palmetto Florida rural property. +2006-03-30,35.4577778,-79.0533333,Broadway,NC,unknown,2700,it was a bright object it would travel east then wesand then north it would move so fast you couldn't watch it with binoculars. It kept +2006-03-30,40.5583333,-85.6591667,Marion,IN,light,3600,Multiple Orange Lights +2007-03-30,41.5241667,-72.0763889,Norwich,CT,light,2,bright stationary object quickly shooting upwards at a 45 degree angle +2007-03-30,27.3361111,-82.5308333,Sarasota,FL,light,5,very bright star or planet in morning sky that moved very rapidly and then disappeared +2007-03-30,39.0838889,-77.1530556,Rockville,MD,cigar,15,I was taking a break and laying on the sidewalk in front of our office looking straight up into the sky. The weather was clear, visibil +2007-03-30,34.0983333,-118.3258333,Hollywood,CA,cigar,30,black cigar like object in hollywood hills +2007-03-30,40.0638889,-80.7211111,Wheeling,WV,light,20,Two lights, in close proximity (approximately 3-4 degrees apart, very bright (brighter than venus) and without flicker, in the NNE. . . +2007-03-30,38.948055600000004,-81.7611111,Ravenswood,WV,light,60,Two bright lights in eastern hemisphere at a 45 degree angle +2007-03-30,34.2569444,-85.1647222,Rome,GA,light,90,Two Bright Lights observed - faded away simultaneously +2007-03-30,42.2916667,-85.5872222,Kalamazoo,MI,triangle,120,Large triangular craft, no lights or sound, spotted at low altitude. +2007-03-30,41.1969444,-75.9286111,Sugar Notch,PA,triangle,60,3 Light Triangle / Wyoming Valley / Eastward +2007-03-30,34.3916667,-118.5416667,Santa Clarita,CA,disk,180,bright lights caught my eye as we were driving home it was round saucer shape with a triangle of lights under the saucer. +2008-03-30,39.6988889,-78.18,Hancock (10 Miles East),MD,fireball,5,Two people witness high speed glowing sphere cross the sky and disappear +2008-03-30,39.9555556,-86.0138889,Fishers,IN,oval,3,pulsating light in the Indianapolis, IN area +2008-03-30,33.4483333,-112.0733333,Phoenix,AZ,cone,2,It happen so fast, it makes one wonder? +2008-03-30,40.7652778,-73.8177778,Flushing,NY,cylinder,20,Floating object above New York City. Witnessed by my daughter and I. +2008-03-30,44.0522222,-123.0855556,Eugene,OR,unknown,120,Nice clear night. First time in a while. Walking in dark area of west eugene this night. Sun had set but horizon to east still some gre +2008-03-30,42.9375,-70.8394444,Hampton,NH,unknown,2,strange object with three glowing lights. +2008-03-30,40.7358333,-73.0825,Sayville,NY,disk,360,circular disk with smaller circular top pulsating red, green and bluish lights alternately (which differs from planes). moved slowly ac +2008-03-30,40.9911111,-72.5347222,Mattituck,NY,triangle,600,Bright light over Mattituck, Long Island, NY +2008-03-30,41.8741667,-80.1319444,Edinboro,PA,sphere,7200,flashing lights, sudden movements changing altitudes very suddenly ((NUFORC Note: Probable sighting of celestial body? PD)) +2009-03-30,32.9477778,-112.7161111,Gila Bend,AZ,sphere,300,Single suspended sphere seperates into multiple pulsing spheres and departs rapidly after warping back to one +2009-03-30,41.6611111,-87.7525,Crestwood,IL,triangle,300,Triangular Matte Black Object against clear East pre sunrise sky in Crestwood IL +2009-03-30,36.1197222,-80.0738889,Kernersville,NC,rectangle,540,Daytime Object spotted on outskirts of Kernersville, North Carolina +2009-03-30,30.085,-97.84,Buda,TX,egg,180,it was a thought procecc +2009-03-30,39.6411111,-85.1411111,Connersville,IN,other,2,Bright Electric Blue Orb +2009-03-30,43.12,-85.56,Rockford,MI,sphere,45,Single,quiet ,bright, non-blinking, spherical light that moved east by south east and had some zig zag movements +2009-03-30,33.1283333,-107.2522222,Truth Or Consequences,NM,light,60,um ..... saw light moveing in the night sky while working on truck +2009-03-30,38.2541667,-85.7594444,Louisville,KY,triangle,420,several lighted triangular shaped objects hovering in the sky +2009-03-30,42.045,-71.9305556,Dudley,MA,circle,900,I was watching a program on TV when I looked out my door and I saw this huge cicle over a light tower that is very visible through my d +2010-03-30,45.0275,-84.6747222,Gaylord,MI,light,10,Odd light formation +2010-03-30,26.9758333,-82.0908333,Port Charlotte,FL,light,1200,bright light spotted in port charlotte FL +2010-03-30,27.9655556,-82.8002778,Clearwater,FL,sphere,10,Bright Blue/Green Light, looked like a searchlight, but no plane or helicopter in sight. Almost expected to see a plane crash as the l +2010-03-30,37.0841667,-94.5130556,Joplin,MO,triangle,120,Triangle-shaped craft 4 lights. +2010-03-30,36.9758333,-82.5758333,Wise,VA,light,600,Ufo sighting in a small town +2010-03-30,40.1488889,-79.5413889,Mt. Pleasant,PA,light,3600,Flashing red, blue, and green, swiftly moving neon light over Pennsylvania +2011-03-30,43.1277778,-92.7361111,Floyd,IA,disk,1800,Unusual movement of unusually lit craft over Iowa farm field. +2011-03-30,38.7741667,-76.0766667,Easton,MD,triangle,900,Black Triangle UFO 4 Lights... 1 Red(Blinking).. 911 Called +2011-03-30,31.9677778,-110.2938889,Benson,AZ,fireball,3,Received a phone call from a friend of 30 years. I stepped outside to take the call. I sat on the stacked bricks that delineated one si +2011-03-30,39.7286111,-121.8363889,Chico,CA,triangle,15,clear night sky. Stood out very clear. +2011-03-30,42.2708333,-83.7263889,Ann Arbor,MI,light,3600,Brightest lights moving in the weirdest patterns with a lot of plane and satellite activity around it. +2012-03-30,43.6480556,-70.8475,West Newfield,ME,other,300,Tethered Satellites over Maine?, Silver thread connection clearly visible +2012-03-30,42.3583333,-71.0602778,Boston,MA,unknown,300,Dark shape landed on roof top, than flew away as bright light, no sound. +2012-03-30,27.9472222,-82.4586111,Tampa,FL,disk,4,UFO WAS HOVERING AND MAKING A WEIRD SOUND THEN IT TOOK OFF. +2012-03-30,40.6688889,-111.8238889,Holladay,UT,light,300,In the south skies above Salt Lake City, a firey light traveled slowly, then ascended from earth. +2012-03-30,42.1872222,-93.5955556,Story City,IA,formation,600,Group of 4 red/orange lights, becoming 3 lights then disappearing into darkness of space +2012-03-30,41.7691667,-72.965,Burlington,CT,flash,180,In the spring of 2012, a bight light and a hundred deer are spotted in Burlington, Connecticut. +2012-03-30,27.0438889,-82.2361111,North Port,FL,circle,300,Bright orange ball with no tails no sound no flashing. +2012-03-30,33.6130556,-112.3238889,El Mirage,AZ,circle,5,Big Bluish Green slow moving light spotted over El Mirage AZ +2012-03-30,34.4838889,-114.3216667,Lake Havasu City,AZ,fireball,6,Fireball flies silently by in the night sky +2013-03-30,37.5630556,-122.3244444,San Mateo,CA,light,60,Strange light orb over lake. +2013-03-30,42.2625,-71.8027778,Worcester,MA,circle,600,8 Circular Objects with Orange Lights Shine Down on Worcester, Massachusetts. +2013-03-30,37.3394444,-121.8938889,San Jose,CA,diamond,30,Triangle shape red and white lights and Laser beamed across the whole city +2013-03-30,34.27515,-118.5498,Porter Ranch,CA,rectangle,300,Rectangular object in the sky just after sunrise in the Valley. Can only be seen through camera Lens! +2013-03-30,33.4483333,-112.0733333,Phoenix,AZ,cigar,2400,I was on my way home and I noticed a bright flashing blue light infront of my car while i was driving. when I had arrived home I had se +2013-03-30,42.2972222,-71.075,Dorchester,MA,changing,21600,One ufo after another last night. 8 or 9 total. +2013-03-30,34.0522222,-118.2427778,Los Angeles,CA,changing,600,I was on vacation in Los Angeles California, a buddy picked me up from the airport we were driving down sunset blvd. to our apartment a +2013-03-30,32.7152778,-117.1563889,San Diego,CA,triangle,60,UFO sighted over Downtown San Diego. +2013-03-30,47.9791667,-122.2008333,Everett,WA,changing,900,Shape shifting fast craft zigzagging in skies over Everett, WA leaving vapor trails. +2013-03-30,25.7738889,-80.1938889,Miami,FL,light,600,Orange/red orbs in the night sky +2013-03-30,38.0291667,-78.4769444,Charlottesville,VA,light,120,Series of Orange lights moving quietly across the sky with intent and order. +2013-03-30,41.55,-71.4666667,North Kingstown,RI,unknown,600,Two bright yellow/orange lights moving Northwest to Southeast over North Kingstown, RI +2013-03-30,34.1336111,-117.9066667,Azusa,CA,unknown,60,Many orange lights over the freeway In Azusa CA +2013-03-30,47.1719444,-122.5172222,Lakewood,WA,fireball,300,3 orange fireballs heading west no sound and turned sw and ascended in a formation. +2013-03-30,32.3511111,-95.3008333,Tyler,TX,fireball,60,We were driving and saw a bright orange light in the sky and we slowed down to take a better look. It was bright orange but flickered l +2013-03-30,33.4483333,-112.0733333,Phoenix,AZ,fireball,180,3 Possible orange UFO spheres over Phoenix Arizona. +2013-03-30,42.9055556,-74.5722222,Canajoharie,NY,triangle,30,Black, Triangle, no lights or windows, flying very low, quiet +2013-03-30,42.0372222,-88.2811111,Elgin,IL,sphere,900,Silent reddish orange fire like spheres/orbs ( 5 ) following the direction of the wind blowing 1-2 k feet high +2013-03-30,42.0372222,-88.2811111,Elgin,IL,sphere,900,Silent redish orange fire like spheres/ orbs ( 5 ) following the direction of the wind blowing 1-2 k feet high +2013-03-30,39.7294444,-104.8313889,Aurora,CO,light,900,There were 6 red lights in a scattered formation, followed by 4 white lights in a perfect row. No sound/ no blinking lights. +2013-03-30,43.5944444,-83.8888889,Bay City,MI,triangle,4,We witnessed a strange aircraft that traveled much higher, faster and was a lot larger than anything we've ever seen or read about. +2013-03-30,30.4013889,-86.8636111,Navarre,FL,fireball,180,I saw a fireball object that was moving at good speed during the night sky. +2013-03-30,39.8841667,-82.7536111,Pickerington,OH,triangle,1800,Lights in triangle shape above Pickerington, OH. +2013-03-30,42.2972222,-71.075,Dorchester,MA,light,600,Light point moves around slowly, followed by slow moving dim orbs moving together horizon to hor. +2013-03-30,40.3088889,-76.5936111,Palmyra,PA,other,30,Irregular circle object. Five dim lights aligned where the the points of a star would be. The sky was pitch black and the UFO was a dar +2014-03-30,33.415,-111.5488889,Apache Junction,AZ,light,1200,Bright white light that changed colors red greed but was no sound and hovered over the Superstition Mountains then went straight down. +2014-03-30,40.4863889,-86.1336111,Kokomo,IN,disk,120,Disks spinning over markland dispersing glowing balls. +2014-03-30,42.0963889,-83.2919444,Flat Rock,MI,teardrop,2,Large object almost falling out of the sky, bright white, like if it was burning up shrouded in a green aura. +2014-03-30,39.4808333,-84.4577778,Trenton,OH,light,2400,Low flying yellow/reddish light flying towards me. Video as we'll. +2014-03-30,42.5277778,-92.4452778,Cedar Falls,IA,triangle,30,Low-flying, brisk moving, silent, boomerang/triangular shaped set of lights in a number of approximately 10-20 total lights. +2014-03-30,35.245,-81.3413889,Kings Mountain,NC,triangle,120,Black Triangle with Attached Object Moves Slowly Across Sky and then Disappears into clouds. +2014-03-30,47.2033333,-122.2391667,Sumner,WA,light,900,3 Bright White lights or one bright light jumping around. +2014-03-30,34.6855556,-82.9533333,Seneca,SC,other,300,I saw five orange round lights that were spaced out on a craft that appeared to be about two miles long. +2014-03-30,27.2155556,-81.8586111,Arcadia,FL,circle,120,Red Light in the sky +2014-03-30,33.426944399999996,-117.6111111,San Clemente,CA,sphere,660,Amber orb sighting in San Clemente. +2014-03-30,34.2072222,-84.1402778,Cumming,GA,triangle,2,Triangular ship. +2014-03-30,41.8741667,-80.1319444,Edinboro,PA,light,3600,One bright light was seen stationary and flashing. It would move in one direction slowly and then move another direction. The light wa +2014-03-30,38.8105556,-90.6997222,O'fallon,MO,triangle,600,My friend and I were bow fishing near Dalbow Rd. Off of Highway 79 when we got lost following the stream, moving to different landmarks +2014-03-30,32.9808333,-80.0327778,Goose Creek,SC,unknown,120,3 orange lights, arrayed in a triangle formation, travelling across the sky near Charleston, SC. +2014-03-30,41.5733333,-87.7844444,Tinley Park,IL,light,300,First witnessed a tiny blinking light very high in the sky and thought it was a plane. Upon further examination the lights were blinkin +1962-03-31,40.8202778,-76.2011111,Shenandoah,PA,light,45,3 lights in formation from the moon +1966-03-31,42.3222222,-83.1763889,Dearborn,MI,chevron,7200,Sighted, followed and was followed by space craft and then had and still have lump in earlobe. +1966-03-31,42.3222222,-83.1763889,Dearborn,MI,oval,1200,Sighted, followed and was followed by spacecraft. +1979-03-31,40.1997222,-76.7313889,Middletown,PA,oval,1200,It had a super bright light on the bottom and was a silver color with a couple of rect. windows and shot right up to the moon and behin +1980-03-31,34.2011111,-118.5972222,Canoga Park,CA,disk,60,Saucer shaped craft hovering near Zody's dept store in Canoga Park +1987-03-31,46.5897222,-111.9147222,East Helena,MT,triangle,300,Triange hovers over highway, moves at increasing speed over highway then disappears +1997-03-31,58.301944399999996,-134.4197222,Juneau,AK,light,7200,A friend and I saw a strange low altitudebright object flashing orange and greenrotating colors on Easter night in Juneau,Alaska. When +1998-03-31,43.4711111,-89.7441667,Baraboo,WI,light,2,a yellow-orange light that zipped or zig-zagged, apparently a mile or two away on the southeastern horizon. +1999-03-31,33.8313889,-118.2811111,Carson (The City Of, Near L.a. Airport),CA,disk,20,police helicoter crew see unknown object as it flew at their helicopter and then north at a high rate of speed, out of view. +1999-03-31,41.2541667,-76.9208333,Montoursville,PA,chevron,4,Fast moving vee shaped craft with no sonic boom or audible propulsion. +1999-03-31,33.1908333,-101.3777778,Post (3 Mi. West Of),TX,unknown,5,5 seconds of wierdness on hwy 380, 3 miles west of Post, TX, in 1999. 500 Lights On Object0: Yes +1999-03-31,47.5302778,-122.0313889,Issaquah,WA,fireball,10,white light suddenly appeared; then turning neon green. It looked as if it was crashing into the mountains. When it dissapeared behind +1999-03-31,47.6063889,-122.3308333,Seattle,WA,triangle,60,Huge triangular craft, white unblinkng light in each apex, center red strobing light that strobed slowly on and then slowly off (lumino +2000-03-31,41.3830556,-71.6422222,Charlestown,RI,disk,600,Glowing orange shaped like an end view of airplane wing. +2000-03-31,31.8022222,-97.0913889,West,TX,light,20,I saw two small round lights flying together as if they were one and then the started to move slightly apart as they flew,then they sto +2000-03-31,33.9597222,-118.3997222,Westchester,CA,circle,600,traveling northbond I saw a formation of ten silver objects going south at about 10000ft. overhead. +2000-03-31,41.0905556,-73.9183333,West Nyack,NY,other,15,So I was playing basketball with my freinds and I saw a flying object in the sky. It was very bright and had three cicles and a sharp p +2000-03-31,41.6716667,-72.9497222,Bristol,CT,unknown,120,Ufo Sighted Very Bright Lights Bristol,Connecticut,U.S.A. +2000-03-31,39.9522222,-75.1641667,Philadelphia (Sw),PA,circle,300,Saw a round object with lights flashing on the bottom in a circular motion around the object. +2001-03-31,37.7022222,-121.9347222,Dublin,CA,cigar,240,White, cigar-shaped object flying over Dublin, CA 7:40 am most mornings. +2001-03-31,34.4438889,-116.9669444,Lucerne Valley,CA,other,180,white,small,quiet,smooth,cigar shaped but pointy on both ends. +2001-03-31,34.1083333,-117.2888889,San Bernardino,CA,fireball,8,I WAS DRIVING ON THE FREEWAY AND A BRIGHT BALL OF LIGHT WAS JUST THERE IN THE SKY IT SEEMED TO HAVE A TAIL FOR ABOUT 8 SECOUNDS AND THE +2001-03-31,35.1508333,-92.7438889,Morrilton,AR,diamond,3600,My imagination is pretty normal and i am not one to make things up. +2001-03-31,42.9613889,-88.0125,Greenfield,WI,flash,60,There were three quick trailing flashes in the sky; direction of objects were eastshotting south to north. This occurred 2 times within +2002-03-31,40.015,-105.27,Boulder,CO,oval,30,The metal oval objects were there and then they were gone without a trace! +2002-03-31,34.1066667,-117.8058333,San Dimas,CA,disk,1,UFO over Lake +2002-03-31,38.5472222,-122.8152778,Windsor,CA,fireball,120,Glowing Balls of fire 3 Large and 16 small in the sky +2003-03-31,32.2216667,-110.9258333,Tucson,AZ,circle,240,Two spherical ufos seen in Tucson skies from 2:00 to 2:04 in the afternoon, approximately 45 degrees altitude, above the mountains, nor +2003-03-31,32.2216667,-110.9258333,Tucson,AZ,circle,240,Two white spheres suddenly appear in clear , NE Tucson skies in daylight , moving eastward, disappearing after 4 min. +2004-03-31,39.7425,-105.5130556,Idaho Springs,CO,circle,7200,Three circular lights appearing as big as the moon on mountain top hovering in Idaho Springs, CO. +2004-03-31,37.9736111,-122.53,San Rafael,CA,unknown,600,Taking shots of contrails, I later noticed unkown objects in 3 of the pictures +2004-03-31,36.1397222,-96.1086111,Sand Springs,OK,circle,5,Mushroom shaped light flashed and lit up white disc, then the light sucked back up into the sky. +2004-03-31,35.2225,-97.4391667,Norman,OK,chevron,8,Almost Transparent Chevron Shaped Objects- Norman Oklahoma +2004-03-31,26.1416667,-81.795,Naples,FL,sphere,2400,Triangle shaped light formation of Florida golf coast. +2004-03-31,33.4144444,-82.3127778,Harlem,GA,unknown,120,I was driving home from my parent's house and I saw a formation of lights shaped in a stretched out "V". I stopped the car because I wa +2004-03-31,48.6994444,-94.3427778,West Central,MN,unknown,300,HBCCUFO CANADIAN REPORT: V Shaped Lights. +2005-03-31,40.2722222,-81.6061111,Newcomerstown,OH,disk,600,woman called my home in panic. ((NUFORC Note: Source elects to remain anonymous. May be hoaxed report. PD)) +2005-03-31,34.2694444,-118.7805556,Simi Valley,CA,light,5,bright orb, moving extremely fast , no trails behind it +2005-03-31,41.2586111,-95.9375,Omaha,NE,disk,30,White disc sighted while driving in Omaha. +2005-03-31,33.2558333,-116.3741667,Borrego Springs,CA,unknown,25,3 cylinder red lights stationary in the sky +2005-03-31,43.1913889,-71.6758333,Hopkinton,NH,triangle,300,Black triangle hovering over highway in central New Hampshire +2005-03-31,39.1616667,-84.7491667,Cleves,OH,light,300,Stable bright light in the sky, could see that it wasn't an airplane, and did not blink, then it went away from west to east. +2005-03-31,32.7833333,-96.8,Dallas,TX,rectangle,180,hovering rectngular shaped object +2006-03-31,39.6136111,-86.1066667,Greenwood,IN,triangle,1200,Triangle shaped object +2006-03-31,39.6136111,-86.1066667,Greenwood,IN,triangle,1200,triangle object +2006-03-31,34.1577778,-118.6375,Calabasas,CA,flash,3,Fast bright object in Calabasas +2006-03-31,40.8,-96.6666667,Lincoln,NE,light,900,It was at night so all that was visible were two yellow to orange lights that were side by side, the distance between them is unknown. +2006-03-31,40.8,-96.6666667,Lincoln,NE,light,120,Two yellow lights trailing dropping sparks seen heading slowly south over Lincoln, NE +2006-03-31,36.3125,-95.6158333,Claremore,OK,disk,20,rotating saucer shaped object flying south to north. +2006-03-31,38.5816667,-121.4933333,Sacramento,CA,formation,5,cloaked stingray shaped object lowflying only saw moisture build up around front end of object +2007-03-31,37.7241667,-89.8611111,Perryville,MO,other,10,Greenish object seen falling with a greenish illuminated plume along the trajectory path. +2007-03-31,34.0522222,-118.2427778,Los Angeles,CA,circle,180,Two objects in the AM sky over Los Angeles moving together. +2007-03-31,39.3325,-76.6930556,Gwynn Oak,MD,disk,180,UFO over Gwynn Oak MD +2007-03-31,33.8491667,-118.3875,Redondo Beach,CA,disk,15,silver object hovered over the ocean +2007-03-31,32.2216667,-110.9258333,Tucson,AZ,cigar,120,Object seen over Tucson Mountains; possible missile launch? +2007-03-31,32.7355556,-97.1077778,Arlington,TX,oval,180,White oval (weather balloon?) over The Ballpark +2007-03-31,33.9791667,-118.0319444,Whittier,CA,light,30,bright white light with violet streaks +2007-03-31,45.4872222,-122.8025,Beaverton,OR,unknown,10,Large object with hot pink glowing light in front and turquoise blue light in back descending with no trail and disappeared at dusk. +2007-03-31,45.5236111,-122.675,Portland,OR,light,4,bright lights +2007-03-31,40.8338889,-74.0975,East Rutherford,NJ,circle,7200,4 circular objects intertwining in and out of each other in circular motion behind clouds. ((NUFORC Note: Advertising lights? PD)) +2007-03-31,38.9780556,-122.8383333,Kelseyville,CA,cylinder,1800,Cylinder shaped object with bright red and orange flickering lights moving slowly +2007-03-31,38.7422222,-108.0683333,Delta,CO,cross,1800,Saw a green and red glowing cross in the sky +2007-03-31,42.1572222,-79.1022222,Kennedy,NY,oval,7200,I saw 5 flying objects that were light up circling in the sky late at night. +2008-03-31,61.3213889,-149.5677778,Eagle River,AK,light,1200,Zig-zaging light moves over north horizon of Alaska town. +2008-03-31,39.0483333,-95.6777778,Topeka,KS,fireball,15,Yellow, very fast, moved across sky from south to north then disappeared. +2008-03-31,26.1219444,-80.1436111,Fort Lauderdale,FL,unknown,300,Blue lights seen hovering 300 -400 feet above westbound lanes of I-75. +2009-03-31,40.7141667,-74.0063889,New York City,NY,unknown,2,12:11am small greenish streak moving very fast through the sky over Lower Manhattan, traveling west +2009-03-31,34.9944444,-117.585,Kramer,CA,formation,300,Bright white lights seen in broad daylight on the 395 near the airforce base... +2009-03-31,42.7325,-84.5555556,Lansing,MI,light,2,Blue light fell from sky downtown, no sound was heard. ((NUFORC Note: Possibly the same event seen from Calgary, Alberta. PD)) +2009-03-31,34.2522222,-118.2875,Tujunga,CA,formation,120,Two glowing orbs in a sigar shape drifted acros the sky in tujunga ca +2009-03-31,40.5066667,-74.2658333,Perth Amboy,NJ,egg,10,Huge bright white light egg shaped, looked as if it were falling toward staten island +2009-03-31,33.6516667,-97.3761111,Muenster,TX,egg,10,I was standing on T-box at golf course 8 miles north of Muenster, Texas looking toward the Northwest. A very bright, gold colored objec +2009-03-31,41.8083333,-72.25,Storrs,CT,light,1800,UFO over UCONN +2009-03-31,33.4222222,-111.8219444,Mesa,AZ,unknown,180,I saw an invisible helicopter +2009-03-31,44.2736111,-69.3677778,Washington,ME,sphere,7200,Very unusual sphere with multiple flashing colored lights, high in the southwestern sky. +2009-03-31,64.8377778,-147.7163889,Fairbanks,AK,light,600,UFO's in Fairbanks, Alaska +2010-03-31,35.9130556,-79.0561111,Chapel Hill,NC,cone,45,Bright white light flashing repeatedly in the same area of the sky for thirty to forty minutes. +2010-03-31,42.2011111,-85.58,Portage,MI,fireball,5,very large yellowish fireball lasting 5+ seconds +2010-03-31,37.6391667,-120.9958333,Modesto,CA,light,900,answer for the modesto lights in the sky +2010-03-31,40.6408333,-74.8816667,Annandale,NJ,light,300,star like light that moved and changed directions in hunterdon county, NJ +2010-03-31,32.2344444,-97.755,Glen Rose,TX,light,600,Orange orbs west of Glen Rose +2010-03-31,40.5697222,-79.765,New Kensington,PA,other,600,Disappearing plane. +2010-03-31,34.1722222,-118.3780556,North Hollywood,CA,changing,8,huge silvery light flys into atmosphere, then flys overhead in North Hollywood. +2010-03-31,32.4486111,-99.7327778,Abilene,TX,light,120,Bright Orange Lights in South East Sky around Abilene, TX +2010-03-31,48.6011111,-93.4108333,International Falls,MN,cross,2700,It was just after 10pm. and I was going to bed and I was going upstairs to my bedroom. As I got to my foyer I looked out my front door +2011-03-31,40.4841667,-88.9936111,Bloomington,IL,disk,600,triangular object the disk shaped veiwed in bloomington il +2011-03-31,33.1191667,-117.0855556,Escondido,CA,light,600,Intense green pulsing light in sky +2011-03-31,36.175,-115.1363889,Las Vegas,NV,unknown,900,Las Vegas UFO Sighting 3.31.2011 +2011-03-31,32.7558333,-111.6702778,Arizona City,AZ,changing,21600,3 strobing lights are back changed shape. east and west of arizona city, AZ. ((NUFORC Note: Possible sighting of stars? PD)) +2011-03-31,44.0872222,-69.7994444,Richmond,ME,other,900,Lights in sky, hoovering like object over house. ((NUFORC Note: +2011-03-31,43.9186111,-69.8016667,Woolwich,ME,light,120,Motionless light same as someone else in the area reported here,same time frame +2011-03-31,34.8697222,-111.7602778,Sedona,AZ,circle,780,There were three ufos all in a kind of slanted light and they would all go up and down all together and were flickering yellow and oran +2011-03-31,35.2783333,-93.1336111,Russellville,AR,triangle,180,Followed a craft and ended following two crafts that was just to fast to keep up with. +2012-03-31,35.9036111,-81.0908333,Hiddenite,NC,unknown,18000,Green/white lights of several UFOs seen by two private citizens. +2012-03-31,42.6708333,-72.55,Bernardston,MA,other,7,Saw a green UFO really close to my car, lowered in valley; resulted in panicked coyote hit on I-91. +2012-03-31,25.7738889,-80.1938889,Miami,FL,changing,1800,Domed Orb Craft with 2 green lights and shooting white bursts changes to Plasma Cylinder +2012-03-31,34.9341667,-88.5222222,Corinth,MS,light,5,Orange/copper light very bright then faded quickly seen in Northeast Mississippi +2012-03-31,40.5658333,-111.8636111,White City,UT,triangle,300,Alien drone craft with a mother ship over salt lake city and no one seen it but us humm?? +2013-03-31,41.1108333,-112.0252778,Clearfield,UT,sphere,300,Two orange spheres hovering over Clearfield, Utah +2013-03-31,33.8752778,-117.5655556,Corona,CA,light,90,UFO corona ca +2013-03-31,40.1933333,-85.3863889,Muncie,IN,triangle,600,Sighting of multiple triangular shaped objects with yellow & orange/red lights moving across the sky near Muncie, IN. 500 Lights On +2013-03-31,33.6694444,-117.8222222,Irvine,CA,changing,10,Bright shiny object-looked like a shiny fish in water-but changed shape quickly, then vanished +2013-03-31,42.2458333,-84.4013889,Jackson,MI,fireball,120,7 balls of fire evenly spaced following the same path. +2013-03-31,38.6447222,-121.2711111,Fair Oaks,CA,circle,1200,Round orange glowing globes flying over Sacramento skies March 31, 2013 +2013-03-31,39.4458333,-123.8041667,Fort Bragg,CA,sphere,600,5 orange orbs seen over Northern California coast March 31, 2013. +2013-03-31,31.9575,-110.955,Sahuarita,AZ,light,3600,Hovering, flashing, lights off, lights on, bright. ((NUFORC Note: Possible sightings of "twinkling" stars?? PD)) +2013-03-31,41.12,-87.8611111,Kankakee,IL,cone,10,Super Fast, 22 cal. Bullet Shaped Craft, Huge, Emitting a Very pale light blue color +2013-03-31,37.2152778,-93.2980556,Springfield,MO,light,600,20 yellowish-orange orbs fly over Springfield, Mo. +2013-03-31,47.6063889,-122.3308333,Seattle,WA,unknown,50,Red green and golden yellow lights flying over Snoqualmie pass, Seattle WA. +2013-03-31,30.0927778,-93.7363889,Orange,TX,formation,7,Fast moving formation of ten UFO's. +2013-03-31,38.6447222,-121.2711111,Fair Oaks,CA,circle,900,Multiple UFO's filmed in HD with close-ups at night in Fair Oaks, CA 3-31-13 +2013-04-01,33.4222222,-111.8219444,Mesa,AZ,light,480,Really blue bright looking object that look like a bright star at first +2014-03-31,48.7597222,-122.4869444,Bellingham,WA,circle,180,Silent orange orb floating above trees in Bellingham WA (Fairhaven exit 250/Freeway area) at 12:57am, 03/31/14 +2014-03-31,29.9744444,-92.1341667,Abbeville,LA,cigar,3,Coming home late last night into my apartment complex and my cousin and i saw a cigar shaped light flying fown wards and there was brig +2014-03-31,40.9275,-73.9977778,Bergenfield,NJ,light,1800,Star like UFO. +2014-03-31,61.5813889,-149.4394444,Wasilla,AK,triangle,900,Triangle craft silently maneuvering over Wasilla at 230 am +2014-03-31,35.0455556,-85.3097222,Chattanooga,TN,light,900,Bright light in my window. +2014-03-31,42.0986111,-75.9183333,Binghamton,NY,chevron,600,Fleet of metalic objects over Binghamton N.Y. +2014-03-31,45.3733333,-84.9552778,Petoskey,MI,formation,30,Multiple lights flying in triangular formations. 3 witnesses. +2014-03-31,28.5380556,-81.3794444,Orlando,FL,teardrop,7,White object vanished over Lake Jesup. +2014-03-31,35.2333333,-106.6638889,Rio Rancho,NM,cigar,15,Cigar shaped craft traveling much faster than any aircraft I have seen before. No contrail. +2014-03-31,34.04,-118.5786111,Topanga Beach,CA,sphere,60,Green-ish,blue-ish sphere coming out of a bigger light that appeared ou of nowhere … +2014-03-31,36.8527778,-75.9783333,Virginia Beach,VA,disk,30,Craft crosses in front of commercial airplane. +2014-03-31,42.0527778,-124.2827778,Brookings,OR,light,10,Fast moving light orb above clouds, Brookings, Oregon at sunset. +2014-03-31,26.3583333,-80.0833333,Boca Raton,FL,circle,120,A small blue light in the Western sky over North East Boca suddenly became very large. It then darted quickly to the north, then drops. +2014-03-31,28.325,-81.5333333,Celebration,FL,unknown,120,Steady orange red light moving east to west very slowly then disappeared.There were several jets in the area-totally different looking. +2014-03-31,39.7588889,-84.1916667,Dayton,OH,light,300,UFO near Air Force Base. +2014-03-31,40.7141667,-74.0063889,New York City,NY,light,240,Flying object with large bright light-The object was moving rapidly and changed to at least 4 different colors. MARCH 31, 2014 NYC +2014-03-31,28.6802778,-81.5097222,Apopka,FL,sphere,30,Orange orb over the skys of Apopka. +2014-03-31,42.2416667,-70.8902778,Hingham,MA,disk,300,Two bright light saucers in sky. +2014-03-31,47.6063889,-122.3308333,Seattle,WA,light,5,I'm a college student at the University of Washington. I regularly spend nights on the roof looking at stars. I have taken astronomy. +1962-03-03,40.7372222,-114.0366667,Wendover,UT,disk,900,MY BROTHER IN LAW WHO IS FROM VANCOUVER BC. AND HAS DUAL PASSPORT WAS IN WEST WENDOVER FOR GAMBLING PURPOSES.HAVING BEEN IN THE US.NAVY +1967-03-03,32.8608333,-91.3883333,Oak Grove,LA,unknown,1800,My girlfriend and I were having a romantic evening in the front seat of my car one evening. I looked across a field that lay in front +1971-03-03,34.0522222,-118.2427778,Los Angeles,CA,other,120,ufo entry burn over salt lake city, seen from as far as los angeles to the west and denver to the east. pointy intake valve shape +1994-03-03,42.6525,-73.7566667,Albany,NY,rectangle,21600,A repeat and endless loop of an object downtown suny albany campus. +1994-03-03,38.5733333,-109.5491667,Moab (South Of),UT,triangle,60,Rotating triangle of lights south of Moab. +1997-03-03,40.0991667,-83.1141667,Dublin,OH,triangle,300,Up Close and Personal Triangle UFO sighting in Dublin, Ohio +1997-03-03,38.2080556,-91.1602778,Sullivan (Near),MO,light,1800,3 lights seen above horizon. Flickered on and off. Appeared and disappeared in different places. +1998-03-03,35.198055600000004,-111.6505556,Flagstaff,AZ,light,20,dont know if you have a report on ufo sighting over arizona but something buzzed over us at blinding speed on march 3rd about 8pm and +1998-03-03,29.7630556,-95.3630556,Houston,TX,sphere,7,Strolling with my wife in the Heights part of Houston, on a quiet and dark residential street. I had been seeing a number of horizontal +1999-03-03,29.4238889,-98.4933333,San Antonio,TX,triangle,900,i was the third witness on the scene.i saw 1 craft only .5 craft were seen by the other witnesses. it started almost directly overhead +1999-03-03,43.5977778,-88.2788889,Campbellsport,WI,triangle,900,Craft going West turned completely around heading back East +1999-03-03,34.4777778,-83.7736111,Clermont,GA,other,120,V-shaped object with brite white lights running all under it. Flying East to West +1999-03-03,37.0058333,-121.5672222,Gilroy (5 Miles So Of),CA,fireball,1,Very bright white/light-green light going East-West seems to expand suddenly (explode ?) and vanish in a fraction of a second. Trajecto +2000-03-03,39.8813889,-83.0930556,Grove City,OH,triangle,3600,Triangle arrangement of lights were witnessed above road. Also, there was at least one red flashing light on one of the sides. It was a +2000-03-03,28.7027778,-81.3386111,Longwood,FL,light,20,A circle of light collapsed on the starlight, and it fled due east. +2000-03-03,42.0597222,-93.88,Boone,IA,oval,120,Bright Blue/silver light,right over head,statonary,thought it was a star,The objict moved due North as it dimed to a very small light. +2000-03-03,34.61,-112.315,Prescott Valley,AZ,circle,900,We saw four firey round objects floating in the sky, North Easterly direction, watch them about 15 minutes until they disappeared. +2000-03-03,41.2230556,-111.9730556,Ogden,UT,light,300,At 22:20pm I could see two lights in the sky. They were flashing back and forth and then they would flicker and then go out and then r +2001-03-03,35.3733333,-119.0177778,Bakersfield,CA,circle,10,Many different colors and lights................. +2001-03-03,34.2477778,-88.9986111,Pontotoc,MS,light,3600,Bright light in the sky. UFO or What? +2001-03-03,43.073055600000004,-89.4011111,Madison,WI,light,600,I am a member of an organization that helps people stay sober. (Just so you realize the context of this story, and the fact that NONE o +2001-03-03,33.3061111,-111.8405556,Chandler,AZ,light,2400,Bright orange lights, that disappear and reappear. +2001-03-03,36.1866667,-94.1286111,Springdale,AR,disk,10800,2 crafts seen in springdale arkansas with police and FBI notification and documentations. +2002-03-03,33.9191667,-118.4155556,El Segundo,CA,sphere,1800,silver sphere over refinery by LAX +2003-03-03,35.0844444,-106.6505556,Albuquerque,NM,triangle,1980,scariest wierdest night of my life +2003-03-03,25.7902778,-80.1302778,Miami Beach,FL,unknown,120,Slow moving silver metalic object, would seem to turn red, no comtrail, moving very slow west to east. +2003-03-03,47.4236111,-120.3091667,Wenatchee,WA,cross,300,U.F.O. Witnessed by 2. +2003-03-03,41.3711111,-73.4144444,Bethel,CT,egg,10800,We left our school early that day, and then went bike riding in Huntington Park. We stopped for a picnic, and saw some craft flying by. +2003-03-03,34.1425,-118.2541667,Glendale,CA,unknown,300,Pulsating glow behind cloud. +2003-03-03,41.1338889,-81.4847222,Cuyahoga Falls,OH,formation,4,A dozen or more lights in a "V" formation moving quickly and silently. +2004-03-03,42.09,-78.4944444,Allegany,NY,circle,300,3 silver discs +2004-03-03,38.6105556,-122.8680556,Healdsburg,CA,other,1,At 9:47 p.m.m PST, I was walking close to due north on Healdsburg Ave, Healdsburg, CA. I saw a very bright white object (about 10 degre +2004-03-03,36.8527778,-75.9783333,Virginia Beach,VA,formation,10,Orange lights seen moving very fast across the sky above the clouds from east to west. +2005-03-03,47.8555556,-121.9697222,Monroe,WA,circle,2,Large circular bright light crosses the sky +2005-03-03,37.6688889,-122.0797222,Hayward,CA,sphere,60,Star sized object was spotted in the night sky. +2005-03-03,36.6102778,-88.3147222,Murray (Near),KY,light,120,An unidentified object +2005-03-03,28.065,-81.7888889,Auburndale,FL,other,720,Bell/pare shaped with bright orange/redish glow at the wider end tumbling in place without traveling in any direction in the sky. +2005-03-03,32.8475,-115.5686111,Imperial,CA,diamond,86400,3 DIMOND SHAPED, BLUEISH GREEN OBJECTS SEEN DURING LOCAL FAIR NIGHT. +2005-03-03,33.4483333,-112.0733333,Phoenix,AZ,light,60,Weird star-like object with something dropping off of it. +2005-03-03,42.7875,-86.1088889,Holland,MI,sphere,60,Planet-like spherical light in area where no planets should have been +2005-03-03,33.4483333,-112.0733333,Phoenix,AZ,light,1200,Orange Star that dropped brilliant white lights. +2005-03-03,38.6272222,-90.1977778,St. Louis (Chesterfield Valley),MO,other,10,Chesterfield, MO UFO +2005-03-03,41.4047222,-81.7230556,Parma,OH,oval,360,Oval shaped UFO hovers over grocery store in Parma Ohio +2005-03-03,43.6136111,-116.2025,Boise,ID,diamond,300,Bright Star Turns into Pitch Black Diamond with blinking lights. +2006-03-03,45.3180556,-85.2583333,Charlevoix,MI,sphere,180,The object was a bright red, sphere shaped object with circling red lights underneath it +2006-03-03,36.0625,-94.1572222,Fayetteville,AR,disk,2,saw it through my car sunroof, zipped away +2006-03-03,38.7216667,-76.6608333,Dunkirk,MD,other,120,Orb seen hovering in sky, vanished within a few seconds. +2006-03-03,35.6833333,-85.77,Mcminnville,TN,fireball,3,we saw a lightgreen circlur object crosing the sky. it crosed from south to north and it went down somewhere in van buren. +2006-03-03,30.6166667,-89.6525,Carriere,MS,light,60,not a plane ((NUFORC Note: Possible satellite?? One of four reports from same source. PD)) +2006-03-03,41.4644444,-81.5088889,Beachwood,OH,circle,5,a extremely birhgt blue green light shot through the sky- no trail, no airport nearby, +2006-03-03,37.5972222,-90.6272222,Ironton,MO,light,1080,Orange lights appearing and disappearing, again in Southeastern Missouri. +2006-03-03,33.9791667,-118.0319444,Whittier,CA,other,3600,03/03/06 9:00pm red ball of light by the moon moving east, stopping, blinking, then moving again. +2007-03-03,39.0997222,-94.5783333,Kansas City,MO,formation,15,I was on my roof last night in Kansas City's Westbottem's and I was out there for the purpose to catch a UFO on camera. It was still +2007-03-03,41.2222222,-73.0569444,Milford,CT,light,180,Orange/Red Object In Night Sky Suddenly Disappers, Second Sighting By Me In 2 Weeks. +2007-03-03,43.1886111,-102.7391667,Oglala,SD,unknown,600," A bright light was seen in the sky and it came down and went over the house and disappeared, no sound" +2007-03-03,37.3022222,-120.4819444,Merced,CA,sphere,420,Fleet of forty glowing spheres seen and caught on video over the skies of Merced Ca. U.S.A. +2007-03-03,33.7738889,-117.9405556,Garden Grove,CA,cylinder,180,Medium-sized white cylinder follows aircraft and departs over Garden Grove. +2007-03-03,26.525,-80.0666667,Boynton Beach,FL,disk,60,Object landed in Boyton Beach Florida. +2007-03-03,47.5675,-122.6313889,Bremerton,WA,light,840,one evening in the first week of march,I stepped out on the porch of my east bremerton home. it was a clear night lots of air traffic. +2007-03-03,34.2275,-83.8844444,Oakwood,GA,other,120,UFO hovered, moved over us slowly, then disappeared +2007-03-03,37.4852778,-122.2352778,Redwood City,CA,triangle,900,I INSISTED I WAS SEEING SOMETHING BEYOND EXISTENCE................. +2007-03-03,36.3883333,-86.4466667,Gallatin,TN,oval,180,gallatin tennessee, several crafts seen over past 6 months. +2008-03-03,33.7669444,-118.1883333,Long Beach,CA,oval,180,Chrome Disk motionless over ocean at sunset in Long Beach, CA 3/3/08 5:45 pm +2008-03-03,47.6063889,-122.3308333,Seattle,WA,light,600,Two yellow lights moving slowly across the sky. +2008-03-03,39.9977778,-76.3544444,Millersville,PA,circle,3,Three objects flying over Millersville, Pa. 500 Lights On Object0: Yes +2008-03-03,32.1322222,-81.2991667,Bloomingdale,GA,triangle,300,Triangle shaped silver object hovering 100ft above tree line on Hwy 80 tilted downward and shot off +2008-03-03,37.0113889,-95.935,Caney,KS,formation,300,UFO near Caney/Havana Kansas +2009-03-03,40.135,-74.5244444,Cream Ridge,NJ,light,5,Unusual amber orb in the nightime sky +2009-03-03,30.3569444,-87.1638889,Gulf Breeze,FL,triangle,300,It was a yellow triangular craft that came over my home. They flew over for about five minutes and then vanished. There was a loud scre +2009-03-03,32.4608333,-84.9877778,Columbus,GA,unknown,120,2 red lights in formation with 2 other red lights traveling very slow at low altitude. 15 minutes later a light pulsating like crazy. +2009-03-03,42.3702778,-87.9019444,Gurnee,IL,light,60,It was a mysterious light that headed our direction and then turned off never making a noise. +2010-03-03,35.2333333,-106.6638889,Rio Rancho,NM,fireball,600,A fireball in the sky +2010-03-03,41.4994444,-81.6955556,Cleveland,OH,unknown,900,It was late at night and I was over my grandmother's house awaiting my mother to pick me up. We both looked up into the dark night sky +2010-03-03,33.4483333,-112.0733333,Phoenix,AZ,unknown,900,2 white objects in Phoenix, one changes color to red +2010-03-03,41.4444444,-87.6313889,Crete,IL,formation,900,possibly many crafts +2010-03-03,35.4777778,-94.2216667,Alma,AR,unknown,45,fast moving object wobbling at times at relative high speed moving east of alma +2011-03-03,34.8697222,-111.7602778,Sedona,AZ,triangle,1200,They where back on my Ranch Again, 3rd time, this time 3 of em, not 2, the hovered around my cow pastures, then flew west toward the mo +2011-03-03,41.1441667,-111.9225,Uintah,UT,light,60,I was chased by a demonic spirit in the form of a white orb of light. +2011-03-03,37.4136111,-76.5258333,Gloucester,VA,triangle,1500,Triangle shaped craft seen. +2011-03-03,41.7636111,-72.6855556,West Hartford,CT,oval,45,Two low flying saucer shapped objects spotted at A.C Pertersons In west hartford +2011-03-03,34.4463889,-82.3916667,Honea Path,SC,light,900,Four bright white lights approx. 10 miles away that looked like 2 cars 1/2 mile away, but wasn't. +2011-03-03,41.6388889,-70.9708333,North Dartmouth,MA,light,420,2 light emitting objects splitting from each other and having sporadic movements in north dartmouth +2011-03-03,39.9555556,-86.0138889,Fishers,IN,sphere,5,Extremely fast moving blueish green sphere over South Easter Hamilton County Indiana. +2011-03-03,39.6977778,-76.0630556,Rising Sun,MD,light,180,AT NIGHT 5 OR 6 LIGHTS FORMED A CIRCLE, DESENDED, THAN LIGHTS WENT OUT +2011-03-03,39.4458333,-123.8041667,Fort Bragg,CA,triangle,300,Triangular craft over Fort Bragg, California, ejects smaller craft. +2011-03-03,34.8638889,-84.3241667,Blue Ridge,GA,disk,5,((HOAX??)) large disk like object emmitting a vast amount of light with five multi-colored lights. +2012-03-03,25.7738889,-80.1938889,Miami,FL,light,600,Numerous (15-20) solid red-orange flare-like lights over Miami in 10 minute period. +2012-03-03,38.7613889,-120.5855556,Pollock Pines,CA,light,1800,Ten small, white, shiny objects hovered over our house in changing formations before drifting upwards and disappearing. +2012-03-03,35.2705556,-85.9530556,Alto,TN,fireball,751,A fireball like image falling from sky then seeing an alien days later in field. +2012-03-03,35.7913889,-78.7813889,Cary,NC,oval,300,Green turning to blue and red oval object in western sky. +2012-03-03,39.9522222,-75.1641667,Philadelphia,PA,other,20,About 7:00 p.m., my wife and I had just got back from the market WE WERE WALKING UP THE STEPS TO OUR PORCH . I JUST H +2012-03-03,39.9522222,-75.1641667,Philadelphia,PA,other,20,ABOUT 7:00PM OVER SKY OF PHILADELPHIA +2012-03-03,41.9141667,-88.3086111,St. Charles,IL,triangle,25,Red lights in shape of a triangle down the sides with white lights across the base.one object flying west to east. +2012-03-03,39.2191667,-121.06,Grass Valley,CA,other,5,Big scary thing come out of no where +2012-03-03,38.5816667,-121.4933333,Sacramento,CA,light,600,Moving blue light in night sky in Sacramento, CA. Unusual color. March 3, 2012 +2012-03-03,34.0633333,-117.65,Ontario,CA,cone,300,IT WAS BIG & BURNED ORANGE A LIGHT CIRCLED & SEPERATED INTO 3 PA RTS +2012-03-03,40.4555556,-109.5280556,Vernal,UT,fireball,60,Two orange lights in sky over Vernal, Utah +2012-03-03,28.0341667,-80.5888889,Palm Bay,FL,fireball,300,Many orange orbs fly overhead and out to the ocean. +2012-03-03,38.9905556,-77.0263889,Silver Spring,MD,formation,900,For a 15 minute period, 30 to 40 crafts were seen. 15 to 20 craft flew in a formation and vanished in the sky. Then 12-15 craft flew +2012-03-03,60.7922222,-161.7558333,Bethel,AK,light,600,Orange/Reddish Lights +2012-03-03,36.0725,-79.7922222,Greensboro,NC,light,900,Yellowish spheres observed by three. +2012-03-03,37.6688889,-77.8822222,Maidens,VA,oval,240,Orange globes moving in a line east to be. Silent +2012-03-03,42.6525,-73.7566667,Albany,NY,triangle,60,5 to 6 orange glowing lights upstate NY disappeared/ triangle. +2012-03-03,27.3361111,-82.5308333,Sarasota County,FL,oval,300,Unknown objects in SE skies over Central Florida +2013-03-03,38.4730556,-77.9969444,Culpeper,VA,other,15,Small town Culpeper sighting!! +2013-03-03,42.4183333,-71.1066667,Medford,MA,cylinder,5,Round saucer shaped aluminum colored no noise hovering craft that disappeared in blink of an eye. +2013-03-03,60.7922222,-161.7558333,Bethel,AK,circle,120,Bizarre red light(globes) movements in the sky. +2013-03-03,45.5230556,-122.9886111,Hillsboro,OR,unknown,120,Blinking brights lights close to the Hillsboro Airport, Oregon. +2013-03-03,45.5230556,-122.9886111,Hillsboro,OR,unknown,120,Flashing bright lights at night in Hillsboro. +2013-03-03,34.005,-118.8091667,Malibu,CA,light,300,Two orangish lights in the night sky moving and then disapeared. +2013-03-03,33.7358333,-118.2913889,San Pedro,CA,diamond,60,Bright orange light seen over Southern California. +2013-03-03,42.4461111,-87.8327778,Zion,IL,formation,300,6 to 8 lights in formation in eastern sky heading west. +2013-03-03,42.4397222,-72.6352778,Whately,MA,light,300,Big bright orange flashing light hovered for about five minutes then took off at impossible speed making no sound until it disappeared. +2013-03-03,41.7797222,-71.4377778,Cranston,RI,fireball,60,Orange ball of light hovering at a low altitude in cranston, vanishes then reappears seconds later in diff location +2013-03-03,37.725,-122.155,San Leandro,CA,sphere,300,3 orange spheres moving in a line, no sound, leader stops momentarily, disappears straight up in to the sky, other two follow after. +2013-03-03,35.1477778,-114.5675,Bullhead City,AZ,fireball,12,One fireball seen in the skygoing from north to south no sound was not going very fast about 1500 ft. high… +2013-03-03,41.1363889,-112.0302778,Sunset,UT,triangle,1800,03-03-13 and 03-04-13 Four very bright white and blue tinted pulsing triangle shaped objects - Davis County. +2014-03-03,21.3069444,-157.8583333,Honolulu,HI,light,120,Two circular lights seen in a clear sky around 18:15pm when driving Hawaii Kai bound on Kalanainanaole Highway in Honolulu tonight +2014-03-03,55.4119444,-131.7227778,Ward Cove,AK,diamond,22,After dark, object at extreme altitude, flashing in response to spotlight, changing course, blacking out-then back on. +2014-03-03,26.6583333,-80.2416667,Wellington,FL,light,120,Strange blue light seen over Forest Hill Blvd. in Wellington, Florida. +2014-03-03,33.4936111,-117.1475,Temecula,CA,circle,2700,Red/orange balls of light over Temecula, CA. +2014-03-03,37.5880556,-76.4747222,Topping,VA,unknown,900,Erratic flight path. +2014-03-03,26.6583333,-80.2416667,Wellington,FL,light,600,Bright Blue (LED) Floating Light. +2014-03-03,33.4708333,-81.975,Augusta,GA,triangle,15,I saw three bright white lights hovering in the same spot in a triangle formation. +2014-03-03,26.9294444,-82.0455556,Punta Gorda,FL,formation,240,Cluster of moving lights in the sky, some were flashing most weren't. +2014-03-03,26.1336111,-80.1133333,Sunrise,FL,other,300,Color changing plus sign disappears into thin air +2014-03-03,34.9808333,-79.2244444,Raeford,NC,other,120,Fast moving like war plane like alien craft. +1972-03-04,36.7533333,-86.1905556,Scottsville,KY,disk,1800,Flying Disk Lands in Field +1978-03-04,41.7355556,-122.6333333,Yreka,CA,triangle,600,Low flying large darkened triangle with no sound seen by nine policemen +1995-03-05,34.61,-112.315,Prescott Valley,AZ,oval,300,SALL A LIGHT LIGHT UP THE SKI OVER THE HILL SIDE.. +1999-03-04,38.1075,-122.5686111,Novato,CA,other,30,Heavy sound of helicopter(s) shaking house. Went out back. Could not see source of noise. Coming closer. Looked up and saw what appe +1999-03-04,36.7477778,-119.7713889,Fresno,CA,cigar,300,Looked up into night sky and saw a light that at first we thought was a helicopter with a spotlight until the object left but the light +1999-03-04,37.6922222,-97.3372222,Wichita,KS,disk,300,A silver disk seen hovering over Mc Connel AFB +1999-03-04,25.8627778,-80.1930556,Miami Shores,FL,disk,420,Craft was Disk Shaped with a dome, self illuminating bright white, saw on a clear day through my telescope. +1999-03-04,41.1827778,-80.7655556,Niles,OH,cigar,600,Witnessed cigar shaped objects with tails streaming behind them. Some were going up, others going down, some criss-crossed each other, +1999-03-04,48.5466667,-117.9044444,Colville,WA,fireball,2,Jet breaking sound barrier folowed by a bright green fireball +1999-03-04,47.4830556,-122.2158333,Renton,WA,sphere,1200,a non moving light over Sea Tac Airport that was brighter then Bright light over vicinity of Sea Tac Airport S.W. Bright light in vici +1999-03-04,37.1230556,-120.2591667,Chowchilla (South Of, Madera County),CA,fireball,900,Green glowing ball with an orange streak, (like vapor). Then saw a bright white ball with a triangular white glow behind it. +1999-03-04,35.2233333,-114.2222222,Golden Valley,AZ,light,180,We were driving down a dirt side road in Golden Valley when we spotted in the sky over the hills a ball of light with a fan shaped bea +1999-03-04,34.698055600000004,-118.1358333,Lancaster,CA,other,480,Picture perfect white, "comet-like" object moving West to East. Second object, same as first -- but moving due South. Elapsed time, 8 +1999-03-04,38.7563889,-119.375,Wellington,NV,fireball,300,We saw a comet-like light in the southwest sky while travelling toward Wellington Nevada +1999-03-04,38.2558333,-119.2302778,Bridgeport,CA,light,600,Bright light appeared over truck while driving up Jack Sawyer Road one mile south of Bridgeport just after dark. Got out of the truck a +1999-03-04,33.4483333,-112.0733333,Phoenix,AZ,cone,120,Possible rocket launch unknown to Air Traffic Control. +1999-03-04,34.01,-109.4580556,Greer,AZ,light,600,Driving home one night, I looked up and saw a bright light, approx. 30 degrees off the road. It was flashing very fast, from red to ora +1999-03-04,33.4483333,-112.0733333,Phoenix,AZ,other,300,We saw a very bright light that looked like a comet, with a smoke looking trail coming from behind the light. +1999-03-04,64.8377778,-147.7163889,Fairbanks,AK,sphere,120,Saw hovering objects in eastern night sky over Fairbanks International Airport. +1999-03-04,39.6294444,-79.9561111,Morgantown,WV,triangle,1200,I saw a triangle shape in the sky that seemed to hover in one place then it started spinning it was black the lights were yellowish. Th +2001-03-04,39.9402778,-82.0133333,Zanesville,OH,circle,120,a friend and i saw a bright circular craft moving from left to right +2001-03-04,42.8597222,-89.5380556,Belleville,WI,other,2700,I was looking West to Northwest when I saw a very bright object in the shape of a star with red and blue lights which seemed to be floa +2001-03-04,30.1819444,-96.5952778,Burton,TX,light,1200,a light in the washington county sky +2002-03-04,41.4994444,-81.6955556,Cleveland,OH,changing,600,Star-like objects change into triagle shaped craft in Slavic Village area, Cleveland +2002-03-04,42.5,-70.8583333,Marblehead,MA,fireball,3,GREEN LIGHT DARTS ACROSS SKY THEN FALLS. +2002-03-04,40.4416667,-75.3419444,Quakertown,PA,light,600,A blinking red light chased by two smaller lights +2003-03-04,30.2419444,-93.2505556,Westlake,LA,triangle,10,Me and a co worker observed three craft flying at a very high rate of speed while on the job,We both witnessed the three craft as these +2004-03-04,37.6688889,-122.0797222,Hayward,CA,sphere,5,blue light in hayward, califma +2004-03-04,36.3611111,-104.5947222,Springer (I-25),NM,oval,5,seen two light blue lights,area had low clouds around Springer N.M. was travelling north on I-25. I went over Raton Pass and lights rea +2004-03-04,39.7391667,-104.9841667,Denver,CO,changing,7200,flew in circles, changed shape, landed somewhere in the city. +2004-03-04,43.3772222,-73.6136111,Queensbury,NY,sphere,300,upstate ny ufo +2004-03-04,38.0666667,-103.2222222,Las Animas,CO,oval,120,3/4/04 8:20pm A large oval white light with a very load roar over Las Animas, Colorado +2004-03-04,37.775,-122.4183333,San Francisco,CA,fireball,3,Green fireball over San Francisco +2004-03-04,36.323055600000004,-86.7133333,Goodlettsville,TN,light,60,Large, brilliant 'flashlight' arced "off". +2005-03-04,41.01,-81.8625,Seville,OH,other,300,Large octogonal shape object with Large circular red lights at each point was seen in the sky +2005-03-04,38.5816667,-121.4933333,Sacramento,CA,sphere,10,bright light played peekaboo behind clouds over sacramento +2005-03-04,38.9038889,-78.0022222,Markham,VA,triangle,40,Two triangle shaped flying objects both giving a greenish-blue light; +2005-03-04,43.7569444,-71.6886111,Plymouth,NH,teardrop,600,Three witnesses see multiple UFO sightings over the Plymouth, NH area. +2005-03-04,64.8377778,-147.7163889,Fairbanks,AK,light,15,"star" in an unknown to me, constellation started moving out of the "formation" and down, then another one went right to left. +2005-03-04,43.2463889,-78.1938889,Albion,NY,light,120,Disappearing Lights In The Sky... +2005-03-05,38.6272222,-90.1977778,St. Louis,MO,triangle,21600,Have been seeing object in SW sky from about 8:30 to ll p.m. ((NUFORC Note: Probable sighting of Sirius. PD)) +2006-03-04,33.5422222,-117.7822222,Laguna Beach,CA,circle,120,I was looking up at a large hole in a large cloud from a north facing window of my house and within it saw a bright point of white ligh +2006-03-04,42.7533333,-84.7463889,Grand Ledge,MI,changing,45,very large unusual orange light and shape..dissapated very rapidly +2006-03-04,36.175,-115.1363889,Las Vegas,NV,sphere,600,4 objects in the sky over Las Vegas. Very high and bright as stars in daylight. +2006-03-04,35.2269444,-80.8433333,Charlotte,NC,oval,600,We saw two UFOs chasing an airplane. +2006-03-04,37.6194444,-84.5780556,Lancaster,KY,circle,5,bright white circle seen over highway +2006-03-04,41.24,-83.6433333,Cygnet,OH,chevron,2,Unknown aircraft flying over Cygnet Ohio +2006-03-04,42.4858333,-83.1052778,Madison Heights,MI,triangle,10,03/03/06 madison hgts michigan 10 seconds fast moving triangle 03/04/06 +2006-03-04,25.9244444,-81.6458333,Goodland,FL,light,3600,Strange light that changes colors in our South sky every night for the last 10 days. +2007-03-04,47.6063889,-122.3308333,Seattle,WA,other,3600,Me and my girlfriend fell asleep watching TV around 8:45. I woke up sometime around 12:00 and shook her awake because I remembered that +2007-03-04,36.175,-115.1363889,Las Vegas,NV,circle,660,One day,as i was looking outside of my room a circle shaped light beeming object appeared out of the blue,the light werew bright/the ai +2007-03-04,25.7738889,-80.1938889,Miami,FL,cone,10,Flashing, circular object at intense speed over streetway! +2007-03-04,41.6819444,-85.9766667,Elkhart,IN,light,5,decending ball of bright yellowish light that suddenly disappeared just above the horizon on a clear night. ((Meteor??)) +2007-03-04,38.9694444,-77.3863889,Herndon,VA,circle,1,I was driving north on Fairfax Co. Parkway between Herndon and Sterling around 8:00pm when a rather large glowing object brought my eye +2007-03-05,30.5311111,-96.6927778,Caldwell,TX,disk,1200,Jutting light. +2008-03-04,35.8777778,-76.6155556,Roper,NC,light,240,A bright golf ball-sized light was centered on my rear view mirror, then jetted quickly to the left and disappeared. +2008-03-04,42.2494444,-71.0666667,Milton,MA,unknown,1,Clearly visible light/object flew just above the tree line at an amazing speed into the horizon. +2008-03-04,34.0038889,-117.0611111,Calimesa,CA,sphere,20,Daytime ufo observation at high altitude +2008-03-04,46.8722222,-113.9930556,Missoula,MT,triangle,300,Reddish-Orange Object Above Blue Mountain - Missoula, Montana +2009-03-04,36.8688889,-94.3677778,Neosho,MO,other,240,Wedge shap craft with 2 amber lights on it follwed me and illuminated the interior of my car with amber light. +2009-03-04,42.375,-71.1061111,Cambridge,MA,chevron,480,Silver boomerang, slight shine above Cambridge, MA at 5:50pm. +2009-03-04,40.8666667,-124.0816667,Arcata,CA,light,1,Bright glowing object falls from Arcata sky, air craft persues. +2009-03-04,47.2530556,-122.4430556,Tacoma,WA,light,180,red pulsing light overpuget sound +2009-03-04,41.525,-88.0816667,Joliet,IL,formation,30,traveling lights over joliet +2010-03-04,29.875,-98.2622222,Canyon Lake,TX,other,2,Large object falls straight down then jetfighters chase after it. +2010-03-04,34.7694444,-92.2669444,North Little Rock,AR,unknown,45,I just went outside to my carport for a cigarette. I looked up to the sky because I saw the searchlight a local business uses. After th +2010-03-04,34.0633333,-117.65,Ontario,CA,flash,15,Brilliant white light race across the sky at an unbelievable rate of speed. +2010-03-04,42.9116667,-73.8686111,Ballston Lake,NY,fireball,2,Bright green fireball appears at the end of a burning meteor tail. +2011-03-04,41.3683333,-82.1077778,Elyria,OH,triangle,600,Black craft shaped like stealth jet but too low flying and quiet in rural Elyria. +2011-03-04,35.2244444,-96.6702778,Seminole,OK,oval,900,bright orange ball of light moving in figure 8 patterns..... +2011-03-04,34.5211111,-117.9827778,Littlerock,CA,unknown,300,unexplained lights +2011-03-04,35.7719444,-78.6388889,Raleigh,NC,other,240,Cloaking plane +2011-03-04,40.7141667,-74.0063889,New York City (Queens),NY,unknown,1200,To the nake eye it was a bright light in the midday blue sky,took a picture from my cell and emailed it to computer +2011-03-04,40.7141667,-74.0063889,New York City (Time Square),NY,circle,1800,Time Square 03 04 11 +2011-03-04,41.2505556,-87.8313889,Manteno,IL,fireball,4,Object Exploded after being struck by lightning +2011-03-04,35.7719444,-78.6388889,Raleigh,NC,light,1200,Saw strange light weaving and circling nearby lake +2011-03-04,39.6066667,-75.8336111,Elkton,MD,flash,3,Bright fast moving flash appearing out of nowhere decending at a 45 degree angle lasting for 3 seconds. +2011-03-04,37.7397222,-121.4241667,Tracy,CA,oval,1800,very large blue pulsating orb flying in large circles without any noise. +2012-03-04,40.5,-111.95,West Jordan,UT,circle,180,Red light far in the sky fading in and out every three sec with white streams of light forming a circle around it +2012-03-04,34.0983333,-118.3258333,Hollywood,CA,other,300,This was an indisputable moving creature of sorts in the sky, not machinery, and definitely not man made or controlled. Calculated. +2012-03-04,32.7833333,-96.8,Dallas,TX,light,300,Red and white flashing lights with unusual movement +2012-03-04,34.0522222,-118.2427778,Los Angeles (Mid-City),CA,triangle,300,Triangular shaped ufo in los angeles +2012-03-04,37.9847222,-120.2627778,Soulsbyville,CA,changing,900,An unexplained object square in shape, floating and tubmling silently in the sky until ascending out of sight. +2012-03-04,41.4666667,-86.4830556,Walkerton,IN,light,3600,When ever the objects where hit with the light from the flash light they got brighter. +2012-03-04,30.0969444,-95.6158333,Tomball,TX,circle,120,Ufo sighting clear night sky. +2012-03-04,34.2783333,-119.2922222,Ventura,CA,triangle,20,Clear triangle over Ventura +2013-03-04,45.7008333,-111.7855556,Harrison,MT,unknown,4,Unidentified light flashes. +2013-03-04,42.1944444,-71.8361111,Auburn,MA,circle,120,Bright blue lights on silver-colored, round machine with scanning light, shining on surrounding homes and trees. Disappeared after 1-2. +2013-03-04,29.7630556,-95.3630556,Houston,TX,sphere,30,Photographed, recognized after the fact. +2013-03-04,29.9938889,-90.2416667,Kenner,LA,light,10,Two bright flashes and some sort of movement in the same area. +2013-03-04,42.125,-72.75,Westfield,MA,circle,1800,8 orange lights float at tree level then ascend and disappear. +2014-03-04,27.2936111,-80.3505556,Port Saint Lucie,FL,diamond,900,A red and green diamond shaped spacecraft. +2014-03-04,32.2216667,-110.9258333,Tucson,AZ,triangle,300,Tucson sighting from Catalina Foothills: 4 lights, triangle formation, moving low and silent in a northwest direction in the Tucson sky +2014-03-04,39.6883333,-123.4816667,Laytonville,CA,fireball,120,Northern California: Bright orange light veers through sky then vanishes. +2014-03-04,21.2827778,-157.8016667,Kaimuki,HI,oval,360,Oval ufo above Kaimuki Hawaii, sporting a red light with flashing green around it making un-real maneuvers. +2014-03-04,45.3575,-122.6055556,Oregon City,OR,fireball,120,Fireball--slow moving, large. +2014-03-04,38.2972222,-122.2844444,Napa,CA,unknown,60,Large flying object in the dark sky 3 mi east of Napa, CA appeared to be dark and had 4-6 red flashing lights, no other lights observed +2014-03-04,37.4947222,-120.8455556,Turlock,CA,triangle,600,Giant Black Triangle +2014-03-04,37.4947222,-120.8455556,Turlock,CA,triangle,90,Large triangular object spotted over Turlock, California. +2014-03-04,36.9086111,-111.4727778,Page,AZ,circle,10800,I was star gazing and I see a abnormal star going i speeds flickering in and out. +1957-03-05,31.6830556,-92.1336111,Jena,LA,sphere,900,Heading S. in my car on two lane highway entering Jena LA saw UFO's to the S.E. many cars stopped to abserve +1978-03-05,34.8280556,-78.0233333,Rose Hill,NC,rectangle,300,no noise, no lights, aircraft was hovering above my parents house without making any noise +1987-03-05,37.9747222,-87.5558333,Evansville,IN,light,60,I was a junior in college at the local university. It was some time in March just before midterms. I was sound alseep and suddenly aw +1988-03-05,40.7302778,-80.3102778,New Brighton,PA,changing,1050,First looked like a plane in trouble. Then changed to a play jack shape with clustered balls in center and at end of each spoke. +1992-03-06,40.7141667,-74.0063889,New York City (Bronx),NY,fireball,60,A huge fire ball like a small moon, colors aqua, green, blue..sailed accross with soft wind sound...2:am Bronx NY +1995-03-05,33.8352778,-117.9136111,Anaheim,CA,other,900,In March of 1995 returning from St. Joseph Hospital to give blood for a upcoming surgery I was going west on the 91 Freeway at about 12 +1997-03-05,36.175,-115.1363889,Las Vegas,NV,light,300,Approx. 20 lights in a v-shape which did a double-helix formation downward It then formed a v-shape and flew overhead, moving South to +1997-03-05,33.4483333,-112.0733333,Phoenix,AZ,chevron,3600,V-shaped craft observed flying east over Phoenix. +1997-03-05,37.775,-122.4183333,San Francisco,CA,oval,120,2 small (about 1 ft. long & 200 ft. away at closest) dark objects circling each other then sped south,followed min. later by 2 more. +1998-03-05,34.4358333,-119.8266667,Goleta,CA,circle,600,Day sighting disc craft geostationary chased away by jets. +1998-03-05,40.115,-111.6541667,Spanish Fork,UT,triangle,900,the craft hovered above a neighbors house about 150ft up then began to move away until it got about 2 miles and then hovered again for +1998-03-05,36.8466667,-76.2855556,Norfolk,VA,fireball,3,Intensely bright green fireball almost the diameter of the moon shot across the sky. Long bright green trail. Visible for 3 seconds o +1998-03-05,44.7825,-69.3838889,Pittsfield,ME,formation,900,one large craft silver spinning and emitting a strange light. three smaller fireball-like balls moving in random directions around the +1999-03-05,37.3058333,-89.5180556,Cape Girardeau,MO,unknown,900,2 fast objects chased by planes. +1999-03-05,41.4663889,-73.4861111,New Fairfield,CT,circle,2700,at 2:30am I looked out my bedroom window and thought I saw a bright star. It began to move in a circular fashion. I got binoculars out +1999-03-05,32.4366667,-111.2247222,Marana,AZ,fireball,3600,while driving along interstate 10, in the vicinity of Marana Az I saw a large fireball that shot out from a cave located on a mountain +2000-03-05,25.7738889,-80.1938889,Miami (2 Hrs. Out Of, On I-95, Milemarker 117),FL,sphere,10,Bright Dark emerald-green fireball, less than 1/8 inch diameter at arms length. No sparks or tail. Had a trajectory, coming 45 degree +2000-03-05,42.2711111,-89.0938889,Rockford,IL,other,120,Pulled in driveway looked north northeast saw a long light N pULLED IN DRIVEWAY LOOKED NORTH NORTHEAST SAW SOME LIGHTS HANGING IN THE +2000-03-05,39.9355556,-91.4097222,Quincy (15 Miles South Of),IL,light,300,Strange light on the southern horizon, eventually circling sky to fly off to northeast. +2000-03-05,42.5847222,-87.8211111,Kenosha,WI,changing,22,bright flash, occurs every other night for about 2 weeks, still happening +2001-03-05,48.0841667,-121.9675,Granite Falls,WA,fireball,60,Blue lookig small fireball to slow for falling star first seen traveling E.2nd person saw traveling N. disappeared to the NE.Did +2001-03-05,42.8597222,-89.5380556,Belleville,WI,formation,600,White to yellow to orange light moving N or NW in the S. Wisconsin sky +2001-03-05,46.7833333,-92.1063889,Duluth,MN,triangle,300,Aurora type of craft seen +2002-03-05,34.0522222,-118.2427778,Los Angeles,CA,changing,1020,The sighting was over West Hollywood/Beverly Hills area. We video taped the whole sighting with a news camera. The first UFO was a whit +2002-03-05,36.8347222,-81.515,Marion,VA,rectangle,300,Looked like the bottom of a car +2003-03-05,34.7575,-112.4530556,Chino Valley,AZ,unknown,120,There was a black object sitting on the dirt road (or hovering just above it) at the top of the hill in front of us. It was at least as +2004-03-05,41.0338889,-73.7633333,White Plains,NY,changing,5,Swirling in Circles +2004-03-05,34.4436111,-118.6086111,Valencia,CA,light,30,Very low, loud oscillating sound, 3 streaks of thin green light +2004-03-05,45.7805556,-119.2161111,Stanfield,OR,teardrop,900,Big flash of light, small figures, wierd motions awfully creepy! +2004-03-05,37.595,-120.9566667,Ceres,CA,other,60,I saw a Huey heliocopter trailing a very large non light emiiting object at night at low elevation and low speed. +2004-03-05,26.9294444,-82.0455556,Punta Gorda,FL,cross,600,At about 10:00 PM on 3/5/04, I was ready for bed and went out on the lanai to check if the screen door was locked. It was a very clear +2004-03-05,37.7397222,-121.4241667,Tracy,CA,triangle,2700,a transparent looking triangle shaped craft flew west, then north-west, then disappeared. +2004-03-05,36.3486111,-82.2108333,Elizabethton,TN,light,300,My daughter and granddaughter were were letting me out of the car in my driveway. As I got out I glanced at the mountain about 3/4 mil +2005-03-05,38.0280556,-121.8836111,Pittsburg,CA,fireball,420,white object flying overhead - +2005-03-05,41.1827778,-80.7655556,Niles,OH,cigar,10,Object moved horizontally across the sky, seemed to change shape and then disappeared +2005-03-05,42.0897222,-76.8080556,Elmira,NY,circle,2,a huge perfect circle showed up on radar over north central pennsylvania. Did anyone else notice it? +2005-03-05,47.7505556,-90.3341667,Grand Marais,MN,unknown,3600,3/5/05 Snowmobiling 9:30 p.m. on northern Mn. lake, several lights appeared above trees, blinking off and on, not moving, 45 min. +2006-03-05,44.3244444,-75.2513889,Edwards,NY,light,7200,Very bright light in eastern sky. Seemed to move very fast in all different directions. Took digital pictures and the pictires look l +2006-03-05,37.8716667,-122.2716667,Berkeley,CA,oval,5,Large oval, moving slowly across building line, emitting extreme bright light with a tail of vapor. +2006-03-05,41.5036111,-84.4141667,Stryker (Near) (Nw Ohio),OH,disk,30,Saw a floating object in the sky for about 30 seconds, then unexplainably, it vanished. +2006-03-05,44.3580556,-89.0858333,Waupaca,WI,unknown,180,Lights "turning on" in sequence, disappearing at once +2006-03-05,44.98,-93.2636111,Minneapolis,MN,flash,1,green flash +2006-03-05,40.4405556,-79.9961111,Pittsburgh,PA,chevron,180,slow moving, chevron shaped object with brights lights on underneath of wings made no sounds. +2007-03-05,42.0333333,-87.8833333,Des Plaines,IL,circle,20,Circular object over Des Plaines, IL traveling south at high rate of speed. +2007-03-05,26.2030556,-98.2297222,Mcallen,TX,circle,600,McAllen White Orb Sightings +2007-03-05,46.9811111,-123.8880556,Hoquiam,WA,light,60,Large round light didn't move, grew larger, changed shape and color, then blinked out. +2007-03-05,41.85,-87.65,Chicago,IL,disk,16200,Several UFO sightings in Chicago, IL during a four hour time span. +2007-03-05,45.7833333,-108.5,Billings,MT,oval,3,Two very bright lights moved quickly across the sky at about 8:30 pm MST. Object appeared oval or egg shaped. +2007-03-05,32.7152778,-117.1563889,San Diego (Carmel Mountain),CA,light,300,My husband and I stepped out on to our patio the time was between 7:00pm to 7:30pm. It was a beautiful clear night. not long after we s +2007-03-05,47.5675,-122.6313889,Bremerton,WA,sphere,900,Bremerton Wa. Bright red light. 14 min. 20-30 mph. 3/5/07 +2007-03-05,47.5675,-122.6313889,Bremerton,WA,light,600,bright red light over psns shipyard. +2007-03-05,47.5675,-122.6313889,Bremerton,WA,circle,300,Bright red light ,no sound traviling east North East +2007-03-05,47.5405556,-122.635,Port Orchard,WA,circle,900,Solid light very high in sky. Then dissappeared. +2007-03-05,32.77,-108.2797222,Silver City,NM,disk,3,Dark red Saucer follows Military aircraft. +2007-03-05,42.1097222,-86.48,St. Joseph,MI,light,120,Strange red & white flashing lights over Lake Michigan +2007-03-05,44.2727778,-121.1727778,Redmond,OR,light,60,three lights in the sky over redmond, oregon +2008-03-05,26.1219444,-80.1436111,Fort Lauderdale,FL,triangle,10,red blinking object..very small moving at steady speed..then vanished +2008-03-05,29.7630556,-95.3630556,Houston,TX,changing,900,three changing color groups of lights hovering over rooftops +2008-03-05,37.775,-122.4183333,San Francisco,CA,formation,360,I saw three lights that stayed still, then moved with contrails and made a perfect row, again staying motionless in line. +2008-03-05,41.3747222,-83.6513889,Bowling Green,OH,oval,30,at first i thought that they were ballons but they flew from the east heading west against a 10 mph wind! +2008-03-05,30.3319444,-81.6558333,Jacksonville,FL,triangle,3,Large, silent, triangles in Jacksonville, FL +2008-03-05,38.6580556,-77.25,Woodbridge,VA,light,2700,Many odd behaving lights hover above trees, then rise in the sky, moving strangly and not making noises. +2008-03-05,33.9213889,-78.0205556,Southport,NC,fireball,14,We were fishing at night for trout when I looked up in the sky and saw a large fireball moving very rapidly across the sky. I asked my +2008-03-05,38.4597222,-75.7594444,Mardela Springs,MD,sphere,300,((HOAX??)) 1 mile wide UFO, with looked like fighters chasing it, we saw 4 some orangeish lights. +2008-03-05,36.0330556,-86.7827778,Brentwood,TN,sphere,3,Single yellow light/object flew at low altitude and exceptional speed into the horizon. +2008-03-05,38.7425,-75.6047222,Bridgeville,DE,light,2700,A rapidly changing light in the sky. ((NUFORC Note: Probably a sighting of the star, Sirius. PD)) +2009-03-05,31.4497222,-98.5705556,Goldthwaite,TX,formation,34,The light were forming a triangle, but soon enough paused with there lights turned off in the midnight. +2009-03-05,34.8477778,-79.1372222,Shannon,NC,circle,900,doughnut shaped, brightly lite, hovering object southeastern NC 6:45 am on 3/05/2009 +2009-03-05,41.9211111,-73.0605556,Winsted,CT,triangle,5400,multiple unidentifiable triangular flying objects. ((NUFORC Note: Student report. PD)) +2009-03-05,28.0183333,-82.1130556,Plant City,FL,other,10,Visual observance of an object high in a clear sky that appeared to ascend and disappear. +2009-03-05,39.6283333,-84.1594444,Centerville,OH,diamond,600,I heard this loud sound of a screaming aircraft very low above my apartment so i opened my shades and looked outside the window.I saw a +2009-03-05,37.335,-82.5797222,Virgie,KY,other,180,Odd craft, egg shaped in front, straight part connected in rear, flew across my home headed due north, maybe 300 yards in the air. +2009-03-05,47.0344444,-122.8219444,Lacey,WA,sphere,60,Large Glowing Something Near McChord Air Force Base Viewd From Lacey, WA +2010-03-05,47.2530556,-122.4430556,Tacoma,WA,fireball,120,Fireball over Tacoma Wa. +2010-03-05,35.095,-90.3733333,Proctor,AR,disk,360,Young woman see strange object with lights near home. +2010-03-05,35.3858333,-94.3983333,Fort Smith,AR,other,3600,I noticed what appeared to be a star and just watched it for a moment. ((NUFORC Note: Star?? PD)) +2010-03-05,39.5522222,-84.2333333,Springboro,OH,other,45,I saw 4 small lights moving in a pattern. ((NUFORC Note: Student report. PD)) +2010-03-05,40.7683333,-73.5255556,Hicksville,NY,oval,90,Black oval shaped object above Hicksville, NY. +2010-03-05,41.8822222,-72.9775,New Hartford,CT,light,300,Two extreme bright lights in the sky and suddenly a third appeared +2010-03-05,33.4483333,-112.0733333,Phoenix,AZ,other,300,Black object hovering over central Phoenix +2010-03-05,44.1669444,-71.9666667,Bath,NH,light,300,Bright white light traveling west to east, zig-zag course, with pauses and acceleration. ((NUFORC Note: ISS overflight. PD)) +2010-03-05,48.1172222,-122.7591667,Port Townsend,WA,formation,240,7 bright orange lights in formation travel across sky then extinguish light and disapear. +2010-03-05,31.4636111,-96.0577778,Buffalo (Near),TX,light,10,Changing Light near Buffalo, Texas +2010-03-05,20.785,-156.4655556,Kihei,HI,circle,900,An unusual cloud with round discs and moving fast moving lights,inside of it. +2010-03-05,20.785,-156.4655556,Kihei,HI,circle,900,6 yr-old daughter and Mom spotted 4 spaceships in a large cloud on a clear Hawaii night. +2010-03-05,41.0113889,-95.8819444,Plattsmouth,NE,light,240,Orange sphere by platte river +2010-03-05,47.9188889,-122.5530556,Hansville,WA,light,20,Bright white light moving west to east over Hansville Washington. +2010-03-05,39.8494444,-75.3561111,West Chester,PA,triangle,1800,Small triangular object with multi-color lights slowly moving +2010-03-05,42.8027778,-83.0130556,Romeo,MI,diamond,120,Diamond shaped lights observed in the southwestern sky in Romeo MI +2010-03-05,47.0380556,-122.8994444,Olympia,WA,light,240,Stationary circle of star-shaped lights. +2010-03-05,41.5894444,-88.0577778,Lockport,IL,triangle,10800,Triangular Object +2011-03-05,33.94,-118.1316667,Downey,CA,diamond,1800,Thisn happened on saturday at 3:00 pm, 2 crafts with the shape of a diamond appeared frpm the north, then another 2 appear kind of on t +2011-03-05,24.9238889,-80.6280556,Islamorada,FL,light,15,We saw an actual UFO tonight. About 6:40 PM. I was out with some friends watching sunset on my boat in Islamorada, FL. It was one ob +2011-03-05,38.4558333,-75.5777778,Delmar,MD,circle,4,March 5th 2011 (Delmar, MD. 21875) Saturday Night at Approx. 20:30 - Bright Round Object +2011-03-05,33.2,-117.2416667,Vista,CA,oval,1500,3 OVAL SPINNING CRAFT OVER VISTA AREA +2012-03-05,33.2944444,-83.9661111,Jackson,GA,other,10,Pair of bright blue/white lights descending rapidly next to I-75 GA +2012-03-05,31.3402778,-110.9336111,Nogales,AZ,triangle,1200,There is a triangular large craft on top of downtown nogales flashing 4 to 6 lights not moving at all. its pretty large so i know i won +2012-03-05,41.5236111,-90.5775,Davenport,IA,oval,300,Oval, hanging vertically above busy intersection in Davenport, IA at mid day. +2012-03-05,39.8022222,-75.0644444,Blackwood,NJ,flash,4,A green flash of light zoomed through the sky above a park in Blackwood, NJ; it completely disappeared within seconds. +2012-03-05,40.2652778,-76.7086111,Hummelstown,PA,fireball,6,Red fire ball with long blue tail light over Hummelstown, Pennsylvania +2012-03-05,47.3208333,-106.9094444,Jordan (Sr Mt200, Westbound),MT,unknown,7200,For two hours we saw bright lights flying very low in MT. very close to us. Dimming, off, bright. +2012-03-05,19.6036111,-155.0572222,Kurtistown,HI,light,60,Falling star stopped above the woods, hovered a moment and went left above the trees by neibor's house +2012-03-05,41.4458333,-74.4233333,Middletown,NY,light,5,Blue light slowing moving north and rapidly disappeared. +2012-03-05,39.1155556,-77.5638889,Leesburg,VA,fireball,10,Large green streak of light over Leesburg, Virginia, perhaps a meteor. +2012-03-05,40.9011111,-74.5147222,Rockaway,NJ,fireball,2,Blue white fireball seen in WSW sky in NJ. +2012-03-05,48.7597222,-122.4869444,Bellingham,WA,sphere,120,Light hovering west of Bellingham, WA. +2012-03-05,43.6105556,-72.9730556,Rutland,VT,fireball,10,Light/Fireball heading towards earth, 9 PM, Rutland Vermont, Whitish-Green streak of light behind and no explosion. +2012-03-05,42.55,-99.8622222,Ainsworth,NE,light,5,Bright white light, about 5 times brighter/bigger than the brightest star at night, north of Ainsworth. +2012-03-05,34.9861111,-84.3713889,Mccaysville,GA,light,900,Super-bright red, orange sparkling light hovering in the sky for 20 minutes or more. +2013-03-05,36.175,-115.1363889,Las Vegas (Outside Of),NV,cone,3600,Up close UFO pictures taken just outside of Area 51. +2013-03-05,35.3733333,-119.0177778,Bakersfield,CA,light,120,Bright Light In Sky Suddenly Disappears. +2013-03-05,40.5141667,-88.9905556,Normal,IL,triangle,300,Slow moving triangle craft, bright white lights on sides and front, 3 rows of red lights on bottom. +2013-03-05,40.5141667,-88.9905556,Normal,IL,triangle,300,Triangle craft with 3 lines of red lights underneath and white lights on the sides, flying at low altitude. +2013-03-05,43.1391667,-77.2725,Walworth,NY,other,30,Possible Iridium satellite flash and then a high speed object approaches and makes turns then disappears. +2013-03-05,36.8055556,-114.0663889,Mesquite,NV,light,120,Large golden-orange fireball appears by airplane. +2014-03-05,35.0844444,-106.6505556,Albuquerque,NM,circle,30,Bright light over Albuquerque. +2014-03-05,35.0844444,-106.6505556,Albuquerque,NM,other,5,Bright, quick flashes of light directly above my house in Albuquerque. +2014-03-05,37.6391667,-120.9958333,Modesto,CA,triangle,5,I was up early on my computer doing email. No inside room lights were on just my monitor, so the room was dark. My monitor is 2 feet n +2014-03-05,27.3361111,-82.5308333,Sarasota,FL,rectangle,300,Red, rectangular shaped object, completely silent, was still as if watching something. Moved off after 3-4 minutes to the east. +2014-03-05,33.5805556,-112.2366667,Peoria,AZ,circle,600,Two back to back flying black/grey dimensional circles moving rapidly and holding steady focusing then flying away! +2014-03-05,26.1219444,-80.1436111,Fort Lauderdale,FL,disk,3,I was looking at the Port Everglades webcam when this sight occurred. It took less than seconds for craft to ascend incredible distance +2014-03-05,42.7647222,-71.4402778,Hudson,NH,triangle,120,Dark gray triangle with red lights on tips, moved slowly and no sound coming from it. +2014-03-05,38.6630556,-90.5769444,Chesterfield,MO,light,300,Three lights in triangular formation too far apart to be any conventional aircraft. +2014-03-05,36.5483333,-82.5619444,Kingsport,TN,disk,300,Hovering disk and flashing lights. Very clear. +2014-03-05,45.8641667,-122.8052778,St. Helens,OR,circle,60,Multiple glowing orbs seen heading NE over St. Helens +2014-03-05,37.4947222,-120.8455556,Turlock,CA,fireball,60,Fireball like object moving slowly down and east then pausing and bouncing then to decrease in mass and to then drop low out of sight. +2014-03-05,42.4183333,-71.1066667,Medford,MA,oval,120,Object seen on 93S by exit 31 +2014-03-05,42.4183333,-71.1066667,Medford,MA,oval,120,Object seen on 93S by Exit 31. +2014-03-05,35.4208333,-81.3055556,Crouse,NC,triangle,120,triangle lights over lincoln county area nc +2014-03-05,37.9063889,-122.0638889,Walnut Creek,CA,light,120,Blue/Orange bright lights filled the sky. +2014-03-05,37.5736111,-113.7183333,Enterprise,UT,rectangle,16,5 rectangular shaped lights in an uneven row with bright, bluish-white lights on each side. +1975-03-06,46.67,-120.7111111,Cowiche,WA,disk,600,Beautiful Lights +1988-03-06,35.1552778,-120.6713889,Shell Beach,CA,fireball,180,At 3:00AM May 22nd from a viewing point in Shell Beach, California: An apparent burning object was rushing through the sky at a tremen +1989-03-06,41.5119444,-87.9655556,New Lenox,IL,egg,259200,1989 Sighting 2 main ships many small (USA, Illinois) +1993-03-06,40.4405556,-79.9961111,Pittsburgh,PA,triangle,1800,Black triangle shaped disc appeared out of nowhere and was dark except for four attached lights,scary. +1996-03-06,32.8572222,-116.9213889,Lakeside,CA,light,1200,I CALL THIS "BIG RED' APROX 100 ft .accross---NO sound--HOVERED barely above tree tops. +1997-03-06,38.3397222,-122.7,Rohnert Park (Sonoma State University),CA,sphere,10800,I 1st noticed 3 small objects/stars/points "excited state", were Iscoceles their locations from each other. One then vanished, two re +1997-03-06,36.8527778,-75.9783333,Virginia Beach,VA,light,2,I was laying in my bed watching tv with the windows open and I saw this Bright yellow light fly across the sky then all of a suden It s +2000-03-06,40.7608333,-111.8902778,Salt Lake City,UT,oval,120,seen about 1 mile away. had blue/white chaser lights at the bottom with a big red light on very bottom +2000-03-06,46.9738889,-124.155,Ocean Shores,WA,triangle,120,Saw three objects flying in triangular formation over the Ocean, OR it was one large craft. Monday, March 6th, 4:30am +2000-03-06,33.6694444,-117.8222222,Irvine,CA,sphere,60,Four spheres flying in pairs apparently in formation swooped down and away and dissapeared in a flash. +2000-03-06,38.9905556,-77.0263889,Silver Spring,MD,other,600,v shape but no lights , very grayand thin type object. +2000-03-06,35.4211111,-94.5144444,Roland,OK,disk,360,UFO caught on videotape in Eastern Oklahoma. +2000-03-06,45.16,-92.9930556,Hugo,MN,light,30,Me and my friend witness a bright blue light moving rapidly across the sky. It moved across 60 degrees of the sky approximately, then d +2001-03-06,40.0322222,-75.5563889,Frazer,PA,light,10,While driving down road I saw a BRIGHT LIGHT moving very fast across the sky,much faster than any aircraft.As it moved across the sky i +2001-03-06,29.5375,-95.1180556,Webster,TX,triangle,30,On March the 3rd of this year I was taking a drive with my wife just recovering from a Gall Bladder operation. I was in the passenger s +2001-03-06,44.2511111,-116.9683333,Weiser,ID,disk,600,large disk shaped craft emitting bright light +2001-03-06,44.2911111,-105.5016667,Gillette,WY,triangle,600,On march 6th 2001. I was in the foothills area of Gillette Wyoming. I looked to the sky and saw a blue light gliding across the sky to +2001-03-06,43.1705556,-75.2919444,Marcy,NY,disk,600,I saw a very bright disk in the sky spinning with red and green lights on the bottom. +2001-03-06,42.8597222,-89.5380556,Belleville,WI,light,120,White to yellow to orange single bright light in Southern Wisconsin sky. +2001-03-06,42.8597222,-89.5380556,Belleville,WI,light,240,white to yellow to orange light in the Southern Wisconsin sky +2001-03-06,42.2711111,-89.0938889,Rockford,IL,circle,180,There were seven of them. Five were bunched up and 2 were spread out. They kept moving at high speeds. They were round and shining l +2001-03-06,35.4119444,-99.4038889,Elk City,OK,fireball,60,Oklahoma fireball +2001-03-06,38.4736111,-122.8891667,Forestville,CA,other,120,red diamond light object western sky just before midnight 3-6-01 +2002-03-06,31.6591667,-97.4719444,Valley Mills,TX,fireball,5,Fireball or meteor? +2002-03-06,29.9972222,-98.0983333,Wimberley,TX,unknown,120,I was drawn out my kitchen door by a hissing air sound, my step son had stepped outside just before me and had become aware of the soun +2002-03-06,40.8825,-121.6597222,Burney,CA,egg,420,Captured on video a very bright, fast moving and color changing object. +2003-03-06,36.8527778,-75.9783333,Virginia Beach,VA,triangle,180,A jet-black triangle with white lights at it's corners and one flashing in the center which emmitted a haunting sound. +2003-03-06,35.4675,-97.5161111,Oklahoma City,OK,disk,180,Just searching for them. Spinning at about the speed of 15 miles an hour and the diameter was about 59 feet +2003-03-06,29.1894444,-98.8622222,Natalia,TX,light,1800,A row of 4 lights +2004-03-06,30.4063889,-87.6836111,Foley,AL,sphere,120,Sphere flying in formation with 4 jet aircrafts +2004-03-06,29.7630556,-95.3630556,Houston,TX,formation,900,triangle formation seen for about fifteen minutes hovering clear blue sky +2004-03-06,30.0858333,-94.1016667,Beaumont,TX,disk,300,waiting for crane at chemical plant late afternoon object left no vapor trail every other air craft in area left one +2004-03-06,40.5066667,-74.2658333,Perth Amboy,NJ,formation,15,4 white lights moveing around area after initial UFO then into formation +2005-03-06,43.8386111,-73.7613889,Schroon Lake,NY,disk,7200,I wa standing outside when i noticed a craft floating above me.I ran inside and a few minutes later went back out and saw three +2005-03-06,39.4666667,-87.4138889,Terre Haute,IN,chevron,7,Succession of sightings; chevron was 5 times higher than it's lower counterpart, both of them big and silently fast. +2005-03-06,39.4666667,-87.4138889,Terre Haute,IN,chevron,5,Double lighted chevron type object passes directly over me in succession- fast and low with no visible structure. +2005-03-06,47.5002778,-111.3,Great Falls,MT,cigar,600,My son & I were driving down the road when I noticed a strange objet in the sky. The sky was clear blue and the object was in the shap +2005-03-06,40.3275,-80.5961111,Follansbee,WV,other,20,On 3/6/05 at approx.20:30 EST I wittnessed an very bright round banded object in the sky which began to fade away from me & diminish. +2005-03-06,44.5705556,-71.7591667,Granby,VT,egg,5,strange humming orb ((NUFORC Note: Possibly not a serious report. PD)) +2005-03-06,29.8944444,-81.3147222,St. Augustine,FL,triangle,8,Silent running triangular craft, 7 very dim orange lights outlining the part of the craft I could see . +2006-03-06,39.4405556,-92.545,Huntsville,MO,oval,20,I saw this dull silver oval shape object in the north sky was a clear day it was moving west to east at 1:30 in the evening +2006-03-06,43.2669444,-73.585,Fort Edward,NY,other,30,Gosh this is kinda hard seeing as i saw it so briefly. I glanced out my window and saw the craft flying by fairly quick. It caught my a +2006-03-06,40.8066667,-74.1858333,Bloomfield,NJ,unknown,60,no lights, but gave off a blue and pink smear type of glow +2006-03-06,35.8166667,-85.5669444,Quebeck,TN,triangle,60,One Triangle shaped craft being escorted by helicopters +2006-03-06,38.0677778,-93.36,Avery,MO,triangle,5400,Orange Lights And A Very Large Triangle Watched +2006-03-06,38.6786111,-121.7722222,Woodland,CA,light,420,Bright orange lights moving slowly south to north over Woodland - not blinking on/off - not a plane- not a satellite +2006-03-06,33.2341667,-97.5858333,Decatur,TX,other,10800,Strange (Craft?) sights seen between Boyd and Decatur Texas. +2007-03-06,47.6063889,-122.3308333,Seattle,WA,sphere,180,I went outside my house, sat in a chair, facing north. I lit my cigarette, then looked up to find four white balls that I could not ide +2007-03-06,40.864444399999996,-75.8113889,Nesquehoning,PA,circle,3600,Object hovered over our barn white lights did not blink,white antena moved back and forth,with green light at tip. +2007-03-06,35.0844444,-106.6505556,Albuquerque,NM,circle,900,UFO sighted on southern boulevard , on the west mesa in albuquerque. +2007-03-06,31.9827778,-98.0333333,Hico,TX,circle,120,An apparent satelite path , only larger, and orange, this object mimicke a satelite but slowed down at the horizon +2007-03-06,41.6763889,-71.9155556,Plainfield,CT,circle,2,Large round white light moving very fast, east to west across the horizon +2008-03-06,38.7891667,-77.1875,Springfield,VA,diamond,900,I drove right underneath the craft as it crossed over the road right by the Sunoco gas station located on the Gambrill road exit ramp. +2008-03-06,41.7,-70.3,Barnstable,MA,sphere,1,Fast moving bright object moving horizontally with a blue white trial +2008-03-06,42.3958333,-71.1791667,Belmont,MA,fireball,2,The lights were vivid, bright and gone in an instant. +2008-03-06,42.3477778,-123.3322222,Murphy,OR,light,120,Moving light - UFO sighting over Grants Pass Peak in Murphy, Oregon +2008-03-06,44.0522222,-123.0855556,Eugene,OR,disk,120,Black, round, flat, disc flying twisting spiral pattern over the Eugene, Oregon morning sky. +2008-03-06,35.7511111,-86.93,Spring Hill,TN,disk,300,rhe saucer was round and was glowing in the sun. +2008-03-06,41.85,-87.65,Chicago,IL,unknown,60,Burning-like object appears and quickly ascends over Lake Michigan in north part of Chicago +2008-03-06,41.6441667,-93.4644444,Altoona,IA,light,60,Blood-red orb being chased by multiple jets. +2008-03-06,41.4033333,-72.1063889,Quaker Hill,CT,disk,480,It was a normal day when we say a strange plane or obect in the sky +2008-03-06,41.6005556,-93.6088889,Des Moines,IA,unknown,9000,4 Fighter Jets continuous pattern. 2 F16's elongated N-S oval grid and 2 F16's elongated E-W oval grid. 2 craft leave fast after 3 hrs +2008-03-06,41.1572222,-85.4883333,Columbia City,IN,fireball,8,row of arange balls in the sky. +2008-03-06,40.4863889,-86.1336111,Kokomo,IN,circle,3600,One of many +2008-03-06,40.4863889,-86.1336111,Kokomo,IN,light,1200,3 orange lights in formation fading on and off over city & fields. +2008-03-06,40.7536111,-86.0688889,Peru,IN,formation,600,Saw bright orange lights that went on and off, and also seemed to split into more lights. +2008-03-06,41.2188889,-86.4230556,Culver,IN,formation,1800,Strange lights in Northern Indiana sky. +2008-03-06,47.3294444,-122.5788889,Gig Harbor,WA,cylinder,900,cigar shaped object reflecting for clouds +2008-03-06,47.3294444,-122.5788889,Gig Harbor,WA,cigar,600,The shape could only be seen when the spot light passed over it. +2008-03-06,40.5186111,-78.395,Altoona,PA,unknown,6,4 dim orange color objects +2009-03-06,30.2669444,-97.7427778,Austin,TX,other,1800,BALL ON THE HORIZEN +2009-03-06,34.1394444,-117.9763889,Duarte,CA,flash,7,It looked like a smashed diamond a parallagram if you will-the color of flash like a camera, during I got my cell phone it was gone. +2009-03-06,33.5016667,-81.9652778,North Augusta,SC,oval,8,Shiny, silver object - looked like flying submarine; No noise, markings, or wings; Fireball/Sonic Boom 2 wks later in same area. +2009-03-06,37.9241667,-122.3880556,Point Richmond,CA,sphere,300,Star-like UFO moving like a bloodhound from side to side & backwards across the sky in S.F. Area +2009-03-06,35.2233333,-114.2222222,Golden Valley,AZ,light,300,Brightly lit then disappeared. ((NUFORC Note: Venus?? PD)) +2009-03-06,40.6083333,-75.4905556,Allentown,PA,unknown,12,orange light making two 90 right turns over s whitehall pa +2009-03-06,26.7052778,-80.0366667,West Palm Beach,FL,changing,120,Six people see an object change from glowing red to blinking aircraft to flaming blue meteor. +2009-03-06,47.6588889,-117.425,Spokane,WA,triangle,5,Triangular, flashing lights, possible spycraft +2009-03-06,29.8944444,-81.3147222,St. Augustine,FL,fireball,30,ON MY WAY HOME I SAW A GLOWING SPHERE WITH A FIREY TRAIL, MUCH LIKE A COMET, EXCEPT THAT IT DIDN'T APPEAR TO MOVE. +2010-03-06,46.6022222,-120.5047222,Yakima,WA,light,15,bright star-like light just disappeared +2010-03-06,39.1516667,-77.9825,Berryville,VA,cylinder,240,I was driving back home to Purcerville from my job in Berryville. Just before I got to the gap in the ridge by Bearden Park I saw on my +2010-03-06,47.1302778,-119.2769444,Moses Lake,WA,other,10,Intense blue light in grassy field +2010-03-06,28.2916667,-81.4077778,Kissimmee,FL,disk,540,17 small, silver, disk shaped objects, creating formations before disappearing after a jet flew into them over Kissimmee,Fl. +2010-03-06,40.8022222,-124.1625,Eureka,CA,fireball,60,Orange light in the sky, two smaller orange lights emitted from bottom like teardrops. +2010-03-06,34.3127778,-78.1613889,Northwest,NC,sphere,3600,2 different UFO's visible at the same time. +2010-03-06,46.8219444,-123.095,Rochester,WA,triangle,360,triangular shape with lights, several other much smaller craft darting erratically in area +2010-03-06,45.0052778,-122.7819444,Silverton,OR,triangle,30,Three dancing & twirling reddish lights +2010-03-06,38.8461111,-77.3066667,Fairfax,VA,other,2,Fast moving two humped camel back light source +2010-03-06,40.8927778,-73.9730556,Englewood,NJ,circle,8,a ball of light shot into clear view paused for a second, then sped into outer space at about a million miles per hour. +2010-03-06,43.1936111,-70.6213889,Cape Neddick,ME,circle,0.4,Ocean-bound low-flying saucer glimpsed in Maine +2011-03-06,36.175,-115.1363889,Las Vegas,NV,circle,300,four to five circular dark objects at spring mountian state park +2011-03-06,33.2183333,-117.0333333,Valley Center,CA,light,3600,Huge bright light, much bigger than a star didn't move for over ah hour. +2011-03-06,41.0886111,-74.1441667,Mahwah,NJ,other,180,UFO hovering over mine shaft caught it from 35 yards away with my iPhone +2011-03-06,44.4986111,-88.1827778,Oneida,WI,light,105,White light in the sky, left to right instant turns, flew over changed colors and dissapeared. +2011-03-06,30.3319444,-81.6558333,Jacksonville,FL,other,120,Comet-like UFO. Major air surveilance at time of sighting. Two seperate crafts sighted. +2012-03-06,37.0561111,-85.0886111,Russell Springs,KY,egg,180,Old music box started playing and not been wind up in years +2012-03-06,41.6647222,-72.6397222,Rocky Hill,CT,light,300,Bright Light in Rocly Hill/Berlin CT +2012-03-06,35.0844444,-106.6505556,Albuquerque,NM,light,60,Did not see an object, just long and fast bursts of extremely bright, white light; some of which shot off at different angles. +2012-03-06,38.7072222,-121.28,Citrus Heights,CA,oval,120,Slowly floating object with strange lights, moving across the city. +2012-03-06,42.6055556,-83.15,Troy,MI,light,1200,Orange orbs - Troy MI +2012-03-06,42.2711111,-89.0938889,Rockford,IL,triangle,120,Triangular craft with amber light spotted by Rockford couple +2012-03-06,38.5816667,-121.4933333,Sacramento,CA,light,180,3 bright colorful lights, flying wild off each other. Playfully? Clear night, very visable, great view +2013-03-06,34.0027778,-84.1447222,Duluth,GA,unknown,1200,Low to mid-pitched frequency sounds in middle of night from heavily clouded sky. +2013-03-06,29.7855556,-95.8241667,Katy,TX,diamond,1800,Saw 10 noiseless UFO's that changed from an orange ball to a white ball to a diamond shaped craft traveling in a straight line. +2013-03-06,38.2544444,-104.6086111,Pueblo,CO,fireball,3,Yellow fireballs spotted in evenning sky west of Pueblo Co. +2013-03-06,27.7705556,-82.6794444,St. Petersburg,FL,light,600,10-12 rapidly moving orange lights, low to the ground and silent. +2013-03-06,44.0522222,-123.0855556,Eugene,OR,other,10800,Round red, yellow and blue flashing ball seen by myself and my friend 5 miles away. ((NUFORC Note: Possible twinkling star?? PD)) +2013-03-06,43.0591667,-77.6125,Henrietta,NY,rectangle,180,I saw a rectangular craft on March 6 of this year, which was not a passenger plane. +2014-03-06,38.3838889,-97.9097222,Windom,KS,rectangle,25,3 rectangular objects with blinking lights were hovering above us and just went away . +2014-03-06,40.7608333,-111.8902778,Salt Lake City,UT,disk,18000,((HOAX??)) Abduction and Oval Ufo sighting a few weeks before. The aliens were red headed Lyrans. +2014-03-06,47.4236111,-120.3091667,Wenatchee,WA,circle,1200,Slowly moving light changing brightness. +2014-03-06,41.005,-75.28,Bartonsville,PA,light,600,Anomaly in Sky over Bartonsville, PA - Afternoon of March 6th, 2014. Natural Light Phenomenon or UFO? Okay . . . Here’s how it +2014-03-06,41.2761111,-72.8688889,East Haven,CT,circle,20,2 reddish orange lights traveling a good distance apart and then disappearing one before the other after about 15 seconds of flying in +2014-03-06,35.0844444,-106.6505556,Albuquerque,NM,triangle,7200,I've seen crafts that make me think that we are big alone. +2014-03-06,39.9241667,-83.8088889,Springfield,OH,circle,180,Large bright orb froze in the same spot for 3 minutes or so then zoomed off in a split second. +2014-03-06,42.9119444,-83.9847222,Durand,MI,oval,4,Possible crash. +1978-03-07,34.2694444,-118.7805556,Simi Valley,CA,oval,15,Miraculous angelic orb of incredible speed seen by two witnesses in Simi Valley, March, 1978. +1991-03-07,38.9783333,-76.4925,Annapolis,MD,triangle,10,I first looked out the window and saw 10 black triangular objects in an eye formation. near a radio tower, and I and the other 3 memb +1995-03-07,42.8688889,-76.9780556,Geneva (Canada),NY,light,2700,brite white light moving real slow with no sound at 3am +1997-03-07,47.2530556,-122.4430556,Tacoma,WA,disk,120,Object sighted by New Zealand Tourist in Tacoma 7 years ago. +1997-03-07,47.6063889,-122.3308333,Seattle,WA,flash,1,Less than a 1 second flash of large blue-white light, climbing slightly on it's path from west to east. . +1998-03-07,28.0033333,-80.5658333,Malabar,FL,triangle,30,SW 15mph. Boomerang shaped with stroblights rotating 3 or 4 city blocks large +1998-03-07,28.3197222,-80.6077778,Cocoa Beach,FL,light,300,Two very bright lights moving across the sky... one slightly lower than the other. Both vanish within a couple of minutes... +1998-03-07,35.3819444,-78.5488889,Benson (Just Outside Of),NC,fireball,120,A comnet shaped object suddenly appeared in the sky and appeared to move across the sky slowly until it turned away from me and disappe +1998-03-07,27.2927778,-81.3630556,Lake Placid,FL,light,180,Two round, yellow, hazy lights. Smaller than full moon. Came toward us from the east. Sky was clear. Light on left slightly lower alti +1998-03-07,28.5380556,-81.3794444,Orlando,FL,sphere,120,We observed two sperical objects which were bright white surrounded by a haze which hovered in the eastern sky and then suddenly disapp +1998-03-07,28.035,-82.3894444,Temple Terrace,FL,light,60,Traveling east spotted two white lights 30 degrees elevation. They were strangely foggy in appearance but moved independently. No craf +1998-03-07,26.2752778,-80.0875,Lighthouse Point,FL,light,20,2 bright white lights with comet like curved fan shaped tails streaming behind, stationary in east sky over oceanᅝ degrees above hori +1998-03-07,28.5380556,-81.3794444,Orlando,FL,light,120,We saw 2white lights in the sky about 300 yards apart and 30 feet in diameter. One was close to a cloud, and dissapeared behind the cou +1998-03-07,27.9472222,-82.4586111,Tampa,FL,other,180,On the date and time listed above my girlfriend and I saw two unknown objects over the Tampa Bay area. They were appeared to be trapezo +1998-03-07,27.9472222,-82.4586111,Tampa,FL,unknown,30,I viewed two bright white-colored objects for about 20-30 seconds just before dusk. The objects then vanished. +1998-03-07,27.6383333,-80.3975,Vero Beach (Northern),FL,formation,150,2 bright lights moving toward us one lower the other. One turns and disappears leaving an illuminated doughnut shaped fog. Then the ot +1998-03-07,26.7052778,-80.0366667,West Palm Beach,FL,circle,300,Two bright circle lights seen in West Palm Beach, Florida. +1998-03-07,27.3361111,-82.5308333,Sarasota,FL,light,90,Observed 2 lights, one staggered lower and to the right, East of Sarasota, FL. +1998-03-07,26.9616667,-82.3527778,Englewood,FL,sphere,120,Appeared to stay in place one being slightly higher in the sky with tails extending from below and to the east. First one disipated an +1998-03-07,26.625,-81.625,Lehigh Acres,FL,fireball,180,Two glowing fireball objects with a large afterglow spread out behind them. +1998-03-07,27.3361111,-82.5308333,Sarasota,FL,cone,30,Object observed coming from SE at twilight, sky very clear and not yet dark. Object was white with small white core moving towards us ( +1998-03-07,26.9758333,-82.0908333,Port Charlotte,FL,light,180,Observed 2 flickering white lights to the east 4 fingers above horizon moving erracticly.Light on left above right,right faded out fist +1998-03-07,26.3394444,-81.7788889,Bonita Springs (In The East As Seen From),FL,other,15,rocket plumes,apparently rising into the sky in the east +1998-03-07,26.7052778,-80.0366667,West Palm Beach (Road House Grill),FL,formation,600,I was working at Roadhouse Grill Saturday night, at 6:30 pm my co workers send he so 2 ufo outside at 6:30. Then at 7:30 when I help ta +1998-03-07,26.9294444,-82.0455556,Punta Gorda,FL,disk,300,Two brightly glowing objects sighted about 100 degees during twilight at about 40-50 degrees above the horizon. +1998-03-07,26.7052778,-80.0366667,West Palm Beach (Vero),FL,fireball,60,Two lights over ocean exploding into the sea. +1998-03-07,48.59,-109.2305556,Chinook,MT,changing,7200,I was outside of my house,admiring the night sky,when I noticed an object streak across the sky and then stop very quickly. Then anothe +1998-03-08,27.1438889,-80.2008333,Port Salerno,FL,unknown,2,two lights connected to nothing going from the sky to the water. +1999-03-07,34.1733333,-118.5530556,Tarzana (West San Fernando Valley),CA,light,4,Bright yellowish light, size approx. pea at arms length. Passed dead silent overhead at estimated 1000 ft. Straight line trajectory fr +1999-03-07,34.3180556,-86.4958333,Arab,AL,light,2700,Object in the night sky moving in an irregular pattern. +1999-03-07,40.1163889,-88.2433333,Champaign,IL,formation,300,i was riding in the car and i looked out the window and saw some strange lights in the sky. i thought it was just and air plane but the +2000-03-07,38.6533333,-94.3486111,Harrisonville,MO,other,4,Was outside talking with a friend when what at first appeared to be a spotlight passed overhead. Quickly realized this was not the cas +2000-03-07,39.1433333,-77.2016667,Gaithersburg,MD,formation,15,Three yellow/white lights moving in formation in north-south direction, then suddenly shifting positions within the formation. +2000-03-07,39.0997222,-94.5783333,Kansas City,MO,circle,120,Sitting outside enjoying the unusual good weather for this time of the year, I and my wife noticed a circle of light aproach from the s +2000-03-07,39.0702778,-76.5455556,Severna Park,MD,cigar,5,saw 2 objects flying very fast, at large bird height, not making any noise and dissapeared into thin air. they flew in different posit +2000-03-07,36.7477778,-119.7713889,Fresno,CA,formation,180,AS ME AND 3 FRIENDS WHERE GOING HME FROM MARDI GRAS EVENT IN FESNO,CA. MY GIRLFRIEND,IRENE, NOTICED AN OBJECT W/ 3 LIGHTS ON IT. I PULL +2000-03-07,30.3569444,-87.1638889,Gulf Breeze,FL,fireball,10,on the night of the 7tha nd the 14th of March my boyfriend and i witnessed a 3- 5 fireballs in the eastern sky at about 10pm central ti +2001-03-07,34.0194444,-118.4902778,Santa Monica,CA,fireball,300,Glowing object in the sky, which sparked with sparks, that moved very unlike an airplane or helicopter. +2001-03-07,47.7425,-121.9844444,Duvall,WA,fireball,20,Saw the eggshaped fireball again ! +2001-03-07,30.1172222,-83.5819444,Perry,FL,triangle,15,large black triangle moving at high alitiude from south to north visability was unlimited +2001-03-07,42.7158333,-78.8297222,Hamburg,NY,disk,300,At about 9:30 p.m. on 3-07-01 I saw a disk shape craft flying up toward space with red, green, yellow, lights, spinning around. It was +2002-03-07,38.5991667,-83.3188889,Vanceburg,KY,light,2,white lights appearing then turning bright red then go...... +2002-03-07,30.4211111,-87.2169444,Pensacola,FL,unknown,60,Pensacola beach UFO sighting 2:34 pm +2002-03-07,34.6566667,-78.7266667,Dublin,NC,circle,1200,glowball baffles locals +2002-03-07,41.7636111,-72.6855556,West Hartford,CT,flash,3,Bright light trail followed by bright explsion traced back to Aircraft. +2002-03-07,40.2736111,-76.8847222,Harrisburg,PA,changing,300,I SAW ABOUT 10 TO 15 POINTS OF LIGHT IN A CIRCLE PATTERN MOVING FROM EAST TO WEST IN THE SKY. AS THEY TRAVELED THEY CHANGED TO A TRIANG +2003-03-07,39.9611111,-82.9988889,Columbus (140 Mi Ese Of),OH,triangle,15,Bright lights in triangular pattern 'hang' in sky, then accelerate and fade from view. +2003-03-07,40.3813889,-79.86,Duquesne,PA,other,30,V-shaped, very small lights. +2003-03-07,41.3263889,-76.9458333,Warrensville,PA,triangle,300,triangle shape object +2003-03-07,38.8047222,-77.0472222,Alexandria,VA,light,1200,About 5:00 AM saw two bright flashing lights moving a high rate of speed. Not the usual aircraft lights. They in one direction and th +2003-03-07,46.7208333,-92.1038889,Superior,WI,light,2,My brother in law told me about a sighting he saw in the area he described as "over lake superior" of a large comet tailed light decend +2003-03-07,36.2138889,-83.295,Morristown,TN,circle,30,1 was driving on hwy 160 on my way to work ,when all of sudden this green ball of light look like it was about the size of the moon app +2003-03-07,38.7744444,-92.2569444,Ashland,MO,circle,900,Hovering craft over houses with several bright white and red flashing lights,picked up speed and disappeared into a field +2004-03-07,44.98,-93.2636111,Minneapolis,MN,fireball,600,seen three fireball type crafts hovering over local park as i was walking back from friends house. the center craft had a beem of green +2004-03-07,34.0522222,-118.2427778,Los Angeles (San Fernando Valley),CA,triangle,120,Triangle Shaped UFO, Red Green Blue Lights Underneath, Los Angeles, March 2004 +2004-03-07,41.7636111,-72.6855556,West Hartford,CT,triangle,30,Triangular shape - intense lights - silent and vanished in speed of light +2004-03-07,32.7677778,-117.0222222,La Mesa,CA,egg,300,4 objects, light gray egg shaped. +2004-03-07,39.7941667,-91.5230556,Palmyra,MO,sphere,10,It was white and sphereical and I have never seen anything like it. +2004-03-07,28.6986111,-81.3083333,Winter Springs,FL,egg,15,3/7/04 Winter Springs, FL EGG shaped; 15 secs. partly cloudy and sunny day, looked up in the sky and saw an egg shaped craft +2004-03-07,34.0522222,-118.2427778,Los Angeles,CA,cigar,1200,White streaks, angled down as if landing +2004-03-07,33.1580556,-117.3497222,Carlsbad,CA,cigar,1800,Slow moving horizontal white light seen over the Pacific +2004-03-07,34.2625,-118.4261111,Pacoima,CA,disk,1800,Object was illuminated in night sky like a star, but hovered in one place and rotated with lights on top, bottom and sides. +2004-03-07,27.9011111,-81.5861111,Lake Wales,FL,egg,900,Six 4-foot diamter orbs observed for 15 minutes by 2 witnesses +2004-03-07,34.5727778,-92.9875,Fountain Lake,AR,light,1500,A very bright aircraft hovering above the ground for about 25 minutes then it disappeared behind the mts. ((NUFORC Note: Sirius??) +2004-03-07,42.7069444,-71.1636111,Lawrence,MA,light,300,I live in the 3rd floor and I have access to the roof and I live alone and that night I went up cause it was A full moon I love to loo +2005-03-07,34.698055600000004,-118.1358333,Lancaster,CA,cylinder,1200,Cylinder object flying low with three balls of light. +2005-03-07,43.1536111,-93.2008333,Mason City,IA,circle,300,SAW A CIRCLE +2005-03-07,40.9477778,-90.3711111,Galesburg,IL,light,10,bright light became much larger ((NUFORC Note: Probably Iridium satellite. PD)) +2005-03-07,47.4538889,-122.3205556,Seatac,WA,rectangle,3,Rectangular shaped lighted object streaks west high across Seattle airport from horizon to horizon in 3 seconds +2005-03-07,41.4872222,-120.5413889,Alturas,CA,triangle,1200,Newspaper Article to March 7th Sighting +2005-03-07,41.4872222,-120.5413889,Alturas,CA,triangle,1800,This is clearly happening here and to quote Mr. Holloway.... "There are UFO's in Modoc County." +2005-03-07,29.4238889,-98.4933333,San Antonio,TX,light,300,What did I see last night? +2005-03-07,44.0266667,-116.9619444,Ontario,OR,circle,10,4-5 White lights moving above Ontario, OR +2005-03-07,34.8238889,-89.9936111,Hernando (The Outskirts),MS,teardrop,120,There were 2 of them that changed colors flying right above my head. +2006-03-07,41.4994444,-81.6955556,Cleveland,OH,fireball,600,Sphere, big as a setting sun(yet no illumination beyond the sphere itself) sitting and then sinking below the horizon over Lake Erie +2006-03-07,33.9611111,-116.5008333,Desert Hot Springs,CA,chevron,3,Twin OrangeTriangles flying at extrememly high speed from south to north at high altitude. +2006-03-07,44.7272222,-75.3213889,Lisbon,NY,light,30,light in the southern sky, reddish orange glow, light appears for about 5 seconds and glows bright. the light then re-appears to the ri +2007-03-07,32.5888889,-96.685,Wilmer,TX,circle,600,This sighting was by my step daugher and her step sister. This is the second sighting by my step daughter. She and several of her +2007-03-07,38.3686111,-93.7780556,Clinton (Outside Of),MO,triangle,180,Set of triangular lights near Whiteman Air Force Base. +2007-03-07,36.1658333,-86.7844444,Nashville,TN,cigar,120,On March 7, 2007, we observed a chrome cigar-shaped craft. +2007-03-07,33.4936111,-117.1475,Temecula,CA,formation,180,several blinking lights in circle formation, moving in a circle motion +2007-03-07,37.1694444,-104.5,Trinidad,CO,light,120,I observed a white light at what appeared to be a very high altitude, moving from West to East at an extremely high rate. +2007-03-07,35.489444399999996,-120.6697222,Atascadero,CA,light,3600,Bright Ligtht sighted over Morro Bay and Atascadero California for about an hour on 3/7/7. ((NUFORC Note: Sirius or Venus?? PD)) +2007-03-07,38.4272222,-83.8633333,Ewing,KY,teardrop,1200,Tear-drop shaped lights. +2007-03-07,37.6455556,-91.5358333,Salem,MO,light,120,Around 7:30 this evening I was waiting in the Salem H.S. parking lot waiting for the moon to rise. I was planning on photographing the +2007-03-07,41.0813889,-81.5191667,Akron,OH,formation,25,HUGE CLOUD-COLORED, WING-SHAPED,FAST MOVING, LOW FLYING SHAPE OVER AKRON +2007-03-07,46.9966667,-120.5466667,Ellensburg,WA,triangle,30,Triangle/Boomerang shape over Ellensburg--University Way area +2008-03-07,34.0922222,-117.4341667,Fontana,CA,light,600,Glowing light +2008-03-07,33.4483333,-112.0733333,Phoenix,AZ,sphere,600,Star like sphere in the middle of the clear blue afternoon sky.... +2008-03-07,43.0608333,-88.4036111,Delafield,WI,cylinder,30,Bright lights on cylindrical object viewed leaving atmosphere at high rate of speed +2008-03-07,41.4169444,-87.3652778,Crown Point,IN,other,420,White Orb leaves ground to go up to an object +2008-03-07,29.3836111,-94.9025,Texas City,TX,circle,4,Bright white ball-shaped light with green trailing light, traveling from low to high speed. +2009-03-07,38.2544444,-104.6086111,Pueblo,CO,disk,120,Dark, spinning object morphing into shapes. +2009-03-07,41.0358333,-71.955,Montauk,NY,other,240,Round lights in a formation moving from left to right in a cirlcle like a clockface movement appear to me in Montauk NY +2009-03-07,35.7719444,-78.6388889,Raleigh,NC,rectangle,240,raleigh nc - ufo spotted east of the city - rectangle craft, reflecting in the sun - extreme hig altitude and fast +2009-03-07,35.9605556,-83.9208333,Knoxville,TN,cylinder,20,Large white object in sky moving much faster than jet observed in eastern sky. +2009-03-07,39.1433333,-77.2016667,Gaithersburg,MD,formation,15,"V" formation of 7 very small satellites, or tiny bright lights, traveling fast and directly overhead towards NE +2009-03-07,37.4136111,-79.1425,Lynchburg,VA,fireball,5,Bright stream of light moved in an s shape up and to the left as a plane entered the same airspace +2009-03-07,43.7319444,-71.5888889,Holderness,NH,unknown,1800,Red, green, yellow lighted object w/shooting "stars" and jerky. +2009-03-07,36.0652778,-119.0158333,Porterville,CA,fireball,10800,huge craft moving at incredible speed after hovering for about 3 hours +2009-03-07,40.7988889,-76.8625,Selinsgrove,PA,light,120,White light chased after by jet, strange recording from reciever taken. +2009-03-07,40.7608333,-111.8902778,Salt Lake City,UT,unknown,600,pulsating figure. ((NUFORC Note: Possible sighting of Sirius, which is quite prominent in the SW sky, at this hour. PD)) +2009-03-08,43.9441667,-90.8127778,Sparta,WI,light,1800,Please see: http://www.wkbt.com/Global/story.asp?S=9982203 I am not a witness, but I saw this article and thought you would want to k +2010-03-07,35.2386111,-81.0752778,Cramerton,NC,triangle,120,Large Triangular Object near Charlotte. +2010-03-07,28.7027778,-81.3386111,Longwood,FL,flash,900,Flashes in sky +2010-03-07,43.1063889,-76.2180556,Liverpool,NY,changing,60,Shape changing object spinning counter clockwise at 21:17 in central New York +2010-03-07,46.8722222,-113.9930556,Missoula,MT,triangle,300,Bright Red Triangle object hovering in sky. +2011-03-07,39.5897222,-120.3663889,Sierraville,CA,disk,1500,me and two friends woke up from a noise and a disk shaped UfO was chasing another disk shaped UfO +2011-03-07,33.2466667,-84.2641667,Griffin,GA,unknown,900,Unknown aerial droning +2011-03-07,41.0272222,-78.4394444,Clearfield,PA,other,180,2 Star like objects +2011-03-07,41.4372222,-71.5019444,Wakefield,RI,formation,60,Two White Lights Fly Simultaneously WNW to EAST +2011-03-07,47.8211111,-122.3138889,Lynnwood,WA,sphere,240,Two lights gold and blue distinctly separate, low. +2011-03-07,34.1866667,-118.4480556,Van Nuys,CA,disk,4,Fast moving lights seen over Van Nuys California +2011-03-07,35.7913889,-78.7813889,Cary,NC,sphere,420,plane's head lights, but the headlights were pointing down & the plane must be flying backwards??? +2011-03-07,38.4730556,-77.9969444,Culpeper,VA,triangle,7200,Slow-moving, noise-less craft seemed to be surveying the area. +2011-03-07,60.0513889,-151.6688889,Ninilchik,AK,light,7200,two bright spots,very close together. rays of color shooting to all sides,stayed in same spot on horizon +2011-03-07,46.6022222,-120.5047222,Yakima,WA,circle,900,UFO event I witnessed with my husband 03/07/2011 +2011-03-07,46.6022222,-120.5047222,Yakima,WA,circle,900,March 7, 2011. Yakima, WA West Valley UFO Sighting +2011-03-07,44.0522222,-123.0855556,Eugene,OR,fireball,120,fireball over Eugene July 3rd +2012-03-07,26.2441667,-80.2066667,Margate,FL,light,3,Orb in Margate Florida +2012-03-07,35.5155556,-93.3247222,Hagarville,AR,teardrop,60,Teardrop shaped craft passes over the Ozarks. +2012-03-07,39.1619444,-84.4569444,Cincinnati,OH,circle,60,Object in sky round in shape hovering over Cincinnati Ohio for two days and nights. ((NUFORC Note: Jupiter and Venus. PD)) +2012-03-07,39.4013889,-76.6022222,Towson,MD,unknown,30,Very bright object spotted at dusk in Towson, MD +2012-03-07,38.7072222,-121.28,Citrus Heights,CA,fireball,120,Fireball object seen +2012-03-07,40.8688889,-73.3655556,Greenlawn,NY,disk,120,Spherical rotating disk with lights +2012-03-07,42.6055556,-83.15,Troy,MI,light,60,Orange orb - Troy MI +2012-03-07,33.9525,-84.55,Marietta,GA,fireball,10,Green Fireball in my neighborhood +2012-03-07,41.85,-87.65,Chicago,IL,light,900,Orbs of lights 13+ in waves flying west near Midway airport. +2012-03-07,40.7141667,-74.0063889,New York,NY,disk,1200,Two UFO sightings while looking at and from the Statue Of Liberty. +2013-03-07,40.6011111,-81.3613889,Mineral City,OH,light,30,Moving star, too slow for a shooting star and to fast for a plane. No noice and then just disappeared. +2013-03-07,47.4236111,-120.3091667,Wenatchee,WA,flash,3600,Multiple blinking objects in the sky/2 vanished and then i saw what apeared to be objects streaking through our atmosphere. +2013-03-07,39.2638889,-103.6916667,Limon,CO,circle,180,I was just off I-70 having just refueled my car, when I began down County Highway 24 South of Limon, Co. I immediately noticed two blue +2013-03-07,34.0025,-85.0416667,Rockmart,GA,sphere,600,A bright big star object with little red flashing light seen hovering above a red light by three people in Rockmart, GA. +2013-03-07,33.6377778,-86.9166667,Brookside,AL,cigar,120,Cigar shaped object with 2 white lights & 1 flashing red light in the center. +2013-03-07,37.4694444,-105.8694444,Alamosa,CO,light,600,We saw three (or possibly four) orange random glowing lights bigger than stars or airplanes at 8:14 PM, March seventh, 2013. +2013-03-07,38.7072222,-121.28,Citrus Heights,CA,oval,300,5 or 6 bright red-orange balls w/white light on bottom slowly following same path in C. H., CA night sky. +2013-03-07,48.7597222,-122.4869444,Bellingham,WA,circle,60,A bright orange/white light traveled across sky, then was gone. IT WAS NOT A PLANE! +2013-03-07,37.4108333,-94.7047222,Pittsburg,KS,fireball,10,White fireball seen for about 10 seconds moving from west to east +2014-03-07,39.5363889,-83.4391667,Washington Court House,OH,sphere,180,Very bright orb looking light. +2014-03-07,41.926944399999996,-73.9977778,Kingston,NY,fireball,120,Moving from the west to the east turned north lasting several seconds to a minute or more a large rectangular fireball over my back yar +2014-03-07,34.2694444,-118.7805556,Simi Valley,CA,circle,1800,Low flying, hovering, red pulsating light. +2014-03-07,33.2,-117.2416667,Vista,CA,light,1800,Very bright light floats over San Marcos Ca. +2014-03-07,33.5008333,-86.7522222,Mountain Brook,AL,light,720,Pale blue star light object in daylight. +2014-03-07,29.5955556,-90.7194444,Houma,LA,sphere,180,I saw an flickering orange-red sphere in the sky moving in different directions. +2014-03-07,41.0602778,-111.9702778,Layton,UT,formation,1800,Several lights making formations seen north of Layton, UT +2014-03-07,40.7608333,-111.8902778,Salt Lake City,UT,formation,1800,My wife, my step son and myself were driving on an exit ramp in Layton, a route we make several times a month at night. I pointed out t +2014-03-07,34.5033333,-82.6502778,Anderson,SC,fireball,180,Sphere that appeared on fire (near Hanna High school in Anderson SC) moving slowly north. +2014-03-07,31.4636111,-100.4366667,San Angelo,TX,unknown,900,Purple light flashing, mostly red light. +2014-03-07,42.5436111,-71.65,Shirley,MA,fireball,120,Large orange-red glowing ball shaped object falling slowly from high in the sky. +2014-03-07,26.525,-80.0666667,Boynton Beach,FL,light,600,3 orange round lights traveled north from the southwest making no sound and they stayed together. Then 1 more appeared from same area. +2014-03-07,26.525,-80.0666667,Boynton Beach,FL,oval,30,6 bright orange objects coming from the north to south with 3 in formation for 15-30 seconds. +2014-03-07,46.6022222,-120.5047222,Yakima,WA,other,600,Bright orange light hovered over Yakima, WA. +2014-03-07,38.835,-121.0133333,Pilot Hill,CA,unknown,300,I saw a bright shimmering light hovering over the mountain approximately 3 miles away. The light was perfectly still. At first I went +1972-03-08,41.85,-87.65,Chicago,IL,other,600,We saw a strange looking object up in the sky near Midway Airport +1975-03-08,42.3313889,-83.0458333,Detroit,MI,sphere,420,Disc sighting in Detroit +1987-03-08,37.6169444,-81.115,Ghent,WV,egg,600,It was scary! +1988-03-08,37.5419444,-77.9191667,Powhatan,VA,triangle,12,Triangle craft with one large softwhite light on wingtip each and multi-color nose lights in a oblong area. +1991-03-08,33.7738889,-117.9405556,Garden Grove,CA,light,3600,4 individual ligths separate from main body, disperse then reunite and are retrived by main body +1994-03-08,47.6063889,-122.3308333,Seattle (University District),WA,fireball,5,Young man and girlfriend witness an intensely bright object streak across the night sky, followed by a second object. +1996-03-08,38.4119444,-122.7933333,Llano,CA,oval,300,This huge craft made no sound at all as it moved. +1998-03-08,37.6922222,-97.3372222,Wichita,KS,cylinder,180,On lunch break, heading east in car. Stopped at light, saw object in distance above the horizon. An airliner was heading south, away fr +1998-03-08,32.4608333,-84.9877778,Columbus,GA,changing,300,I saw a redish&orange ball of light moveing up&down on a vertical path,no sound at all. +2000-03-08,40.7091667,-112.1008333,Magna,UT,disk,2,Yellowish White glowing disk, Dime size at arms length. +2001-03-08,42.3625,-71.3619444,Wayland,MA,light,3600,3Large Orbs and many smaller Orbs in plain view in woods adjacent to my house. Moved with intellegence +2001-03-08,45.5236111,-122.675,Portland,OR,sphere,600,100 or so golden spheres hovering and moving up and down in a corkscrew fashion in bright sun. +2001-03-08,40.7966667,-81.5216667,Massillon,OH,cigar,180,Was a small looking cigar/bone shaped white thing with a little red on it in the sky heading N.W at 6:30 EST on Friday March 8, 2001. +2001-03-08,36.175,-115.1363889,Las Vegas,NV,other,25,GLIDING OBJECT CHANGED SHAPE FROM BOOMERANG TO OVAL SHAPE AND BACK TO BOOMERANG +2001-03-08,36.175,-115.1363889,Las Vegas,NV,oval,30,I saw a bright purplish colored orb floating by my bed. +2001-03-08,38.4191667,-82.4452778,Huntington,WV,circle,60,circular object that was amber in color suddenly appeared in the sky +2001-03-08,40.0505556,-77.5205556,Shippensburg,PA,disk,15,Ship darted in front of me and friends, took pictures, then ship darted away into the darkness. +2002-03-08,38.9783333,-76.4925,Annapolis,MD,triangle,5,Three luminous triangles flying in formation +2003-03-08,39.0638889,-108.55,Grand Junction,CO,triangle,10,The lights were triangular shaped, object appeared invisable except for lights, then flew off quickly +2003-03-08,38.6272222,-90.1977778,St. Louis,MO,other,10,I was at the st. louis zoo about 50ft away from the entrance holding a polaroid instant camera towards the sky and my uncle hit the but +2003-03-08,39.6477778,-104.9872222,Englewood,CO,unknown,1800,Extremely high altitude. One large mother ship. Three surrounding smaller ships. I was flying a kite at the local park. I saw a lar +2003-03-08,29.2105556,-81.0230556,Daytona Beach,FL,disk,3600,craft over the beach during storm +2003-03-08,39.8027778,-105.0869444,Arvada,CO,disk,1800,Rather large saucer shaped craft spotted over Denver. +2003-03-08,43.0716667,-70.7630556,Portsmouth,NH,fireball,6,a leaf green comet-like flying object at least 100 feet up 300 ft. max came shooting in the sky at speeds faster than an airplane. +2003-03-08,39.6444444,-80.8577778,New Martinsville,WV,disk,45,Orange Compact Disc Shaped UFO Seen Over West Virginia +2004-03-08,34.0966667,-117.7188889,Claremont,CA,other,900,The UFOs seemed not to move, from my window I could see flashing lights to each other. +2004-03-08,33.426944399999996,-117.6111111,San Clemente,CA,light,60.14,Video of strange rotating lights in sky +2004-03-08,47.6480556,-121.9127778,Carnation,WA,cylinder,300,Cylinder shape in Carnation,Wa +2004-03-08,34.0522222,-118.2427778,Los Angeles,CA,other,2700,Dozens, maybe 100 plane trails over San Fernando Valley and Sepulveda Pass, Los Angeles ((NUFORC Note: Contrails?? PD)) +2004-03-08,47.6063889,-122.3308333,Seattle,WA,cylinder,120,long, narrow cylindrical object hanging horizontally above Seattle for about 2 minutes, then disappearing completely in 4 seconds. +2004-03-08,35.2269444,-80.8433333,Charlotte,NC,triangle,300,a triangle was looking at me and than went away very fast +2004-03-08,47.3075,-122.2272222,Auburn,WA,other,300,Tumbling spheres observed with optics that disappeared suddenly in clear sky. +2004-03-08,45.6958333,-121.8833333,Stevenson,WA,circle,3600,Colorful sunburst shaped object sends streaks of red and green "dots" (lights) toward Earth. ((NUFORC Note: Venus?? PD)) +2004-03-08,38.8047222,-77.0472222,Alexandria,VA,rectangle,20,A huge craft that appeared to be attempting to cloak itself soundlessly flew from the west to the east and blended into the night sky. +2005-03-08,34.5361111,-117.2902778,Victorville,CA,sphere,1800,How many people have to see them before the government has the ball's to tell the truth? LOOK UP SEE FOR YOURSELF. +2005-03-08,31.7586111,-106.4863889,El Paso,TX,disk,90,Silver disk sighted high above airliners passing directly overhead. +2005-03-08,47.6063889,-122.3308333,Seattle,WA,light,4,bright 'star' shrinks out of sight +2005-03-08,38.525,-98.5333333,Claflin,KS,light,3000,Cluster of yellow lights over Holyrood Kansas +2005-03-08,42.4391667,-123.3272222,Grants Pass,OR,light,180,a very fast moving starlike light, changing direction then color then vanished ((NUFORC Note: Sighting of ISS. PD)) +2005-03-08,43.4666667,-112.0333333,Idaho Falls,ID,fireball,0.3,It was not a UFO. It appeared in the southern sky, a comet-like flash, perhaps re-entry of falling debris. It was brighter than any s +2005-03-08,39.5594444,-120.8258333,Downieville,CA,flash,2400,Bright flash in the sky for 40 minutes, not moving. +2005-03-08,32.7666667,-96.5988889,Mesquite,TX,unknown,120,Bright White/Yellow object seen in sky no FFA lights. +2005-03-08,39.1405556,-121.6158333,Yuba City,CA,triangle,300,3 Triangular objects, bright white lights with 2 round red "tail lights", slow speed, low altitude +2005-03-08,47.4508333,-122.8261111,Belfair,WA,triangle,300,My hot tub has a wood grid overhead that basically lets me see satellites and any other moving objects easily. Last night I saw a tria +2005-03-08,39.9491667,-75.9738889,Atglen,PA,sphere,3600,Two glowing spheres one quickly moving into a cloud, the other remained stationary for an extended time. +2006-03-08,39.7588889,-84.1916667,Dayton,OH,unknown,600,Bright Yellow Light Over Southern Downtown Dayton +2006-03-08,42.9058333,-88.1388889,Muskego,WI,oval,720,14 objects +2006-03-08,42.0372222,-88.2811111,Elgin,IL,fireball,180,orange fireball ball in east sky glowed for 2-3 minutes at about 4:17-4:20 +2006-03-08,39.8208333,-84.0194444,Fairborn,OH,oval,180,Two ufos escorted across Fairborn +2006-03-08,40.1461111,-74.7122222,Bordentown,NJ,circle,20,Circular shaped disc; initially suspended in the sky then rapidly disappearing into sky with black spot in the middle and black circle. +2006-03-08,41.7002778,-73.9213889,Poughkeepsie,NY,triangle,900,Full lighting flanking each side. One side all red and one side that was green. Hovering in place for most of the time, then abruptly +2006-03-08,47.6816667,-122.2075,Kirkland,WA,formation,15,The formation was formed by three lights (maybe half a mile each other) flying east to west on the lake Washington at an unbelievable s +2007-03-08,30.2669444,-97.7427778,Austin,TX,light,1800,First one, then two white lights in the sky, visible in midafternoon +2007-03-08,39.0838889,-77.1530556,Rockville,MD,disk,240,Second sighting of oval/disk metallic object +2007-03-08,37.6391667,-120.9958333,Modesto,CA,triangle,10,Couldn't believe what I was seeing! +2007-03-08,35.1405556,-85.2327778,Hixson,TN,circle,20,I was smoking a cigarette on my front porch at approximatley 2 pm. I observed a jet plane flying to the west with the beautiful tail t +2007-03-08,38.6555556,-92.7797222,Tipton,MO,light,2700,cars in the sky? +2007-03-08,37.1238889,-92.1011111,Cabool,MO,light,600,Two sets of red lights in southeastern sky. +2007-03-08,37.6455556,-91.5358333,Salem,MO,light,600,I filed a report last night. It is an embarrassment to file one this evening, but I feel an obligation to do so. Arriving at the H +2007-03-08,33.6102778,-114.5955556,Blythe,CA,disk,30,I was driving with my friend and we seen one or more saucers... +2007-03-08,41.9983333,-92.1972222,Keystone (Rural),IA,oval,1800,3/08/07 to 3/13/07 Rural Keystone Iowa Oblong Lighted object/ small star like fast moving objects multiple sighting 20:00 to 21:30 +2007-03-08,46.0038889,-112.5338889,Butte,MT,light,60,light in the western skys of butte. ((NUFORC Note: Venus?? PD)) +2007-03-08,41.4994444,-81.6955556,Cleveland,OH,sphere,120,At approximately 22:00 hours was passing by living room window facing due west. I noticed an intensely bright object about 45 degrees h +2007-03-08,29.7063889,-96.5394444,Columbus,TX,unknown,45,Fast lights in a Zigzag pattern +2007-03-08,28.5380556,-81.3794444,Orlando,FL,triangle,120,Bright Orange, blazing traingular object/light moving upward at an angle Orlando FL; 3/8/07, 2215hrs. +2007-03-08,28.2333333,-82.1813889,Zephyrhills,FL,oval,20,a red light spotted over pasco county moved quickly across sky hovered then dissapeared into the east +2007-03-08,29.7063889,-96.5394444,Columbus,TX,unknown,45,Unuaual aircraft flies in snake like formation breaking the sound barrier. +2007-03-08,45.2897222,-122.3325,Estacada,OR,cylinder,8,Red orb over Clackamas County, Oregon +2007-03-08,34.0194444,-118.4902778,Santa Monica,CA,changing,120,Bright light over the Santa Monica mountains with an electrical effect. +2008-03-08,42.2916667,-85.5872222,Kalamazoo,MI,light,1980,((HOAX??)) White light moving east changed direction and then hovered for half an hour. +2008-03-08,32.7358333,-96.275,Terrell,TX,disk,180,bright pulsating disk, appeared to fall from sky then stopped, hovered and moved north out of sight. +2008-03-08,32.9777778,-105.9413889,La Luz,NM,oval,120,Large Oval shape above tree line, move slow than darts fast, hover, move slow, red light & green lights blinking +2008-03-08,33.9241667,-84.3786111,Sandy Springs,GA,oval,120,Two hovering object over sandy springs Ga +2008-03-08,32.3291667,-96.625,Ennis,TX,sphere,15,Sphere shaped ship seen over country road. +2008-03-08,36.1538889,-95.9925,Tulsa,OK,changing,70,A strange, changing shape UFO over Tulsa. +2008-03-08,40.5366667,-75.6316667,Breinigsville,PA,light,1,UFO - Under The Rainbow +2008-03-08,41.4838889,-74.2180556,Maybrook,NY,disk,15,((HOAX??)) Me and 2 others saw 15-20 saucer like objects that had a dim orange glow. +2008-03-08,40.7977778,-85.8205556,Wabash,IN,light,300,((HOAX??)) 8 orange lights in the northern sky of wabash indiana dissapeared within 5 min. no noise +2008-03-08,26.0027778,-80.2241667,Pembroke Pines,FL,light,8,2 lights, possibly the front and back of one object, move in the night sky and vanish as if dimming to naught, in 8 seconds +2008-03-08,35.6708333,-80.4744444,Salisbury,NC,cylinder,120,STRANGE SILVERY OBJECT HANG'S IN THE SKY DISPITE HIGH MARCH WIND'S!!... +2008-03-08,35.2619444,-81.1875,Gastonia,NC,light,25,Observed 5-6 reddish orange lights traveling acroos the sky in a formation, then they swirled around and disappeared. +2008-03-08,38.1041667,-122.2555556,Vallejo,CA,other,5,Driving down hill a semi main street, boy friend and I were going home and we both happened to see what seemed like a bright green orb +2009-03-08,44.98,-93.2636111,Minneapolis,MN,light,60,strange white lights ((NUFORC Note: Possible advertising lights? PD)) +2009-03-08,28.5491667,-81.7730556,Clermont,FL,changing,300,Four glowing balls +2009-03-08,45.4872222,-122.8025,Beaverton,OR,disk,600,SILVER SAUCER +2009-03-08,33.5966667,-83.8602778,Covington,GA,light,2700,Bright White Light Flickering and Retracting long lines, ((NUFORC Note: Possible sighting of a star?? PD)) +2009-03-08,35.7808333,-78.37,Wendell,NC,sphere,1200,Observed unexplained object(s) in the sky near Raleigh, NC +2009-03-08,40.7141667,-74.0063889,New York City (City Island) (Queens),NY,light,1200,new yorker sees lights and its no airplane or helicopter in the skys! +2009-03-08,30.92,-93.9963889,Jasper,TX,unknown,2400,WHITE LIGHT HOVERS OVER SOUTHEAST TEXAS +2009-03-08,33.5058333,-102.0086111,Wolfforth,TX,fireball,90,My daughter and I saw what was initially thought to be a burnimg aircraft of some kind. +2010-03-08,36.0344444,-89.3855556,Dyersburg,TN,fireball,5,Fireball over Dyersburg TN +2010-03-08,44.5191667,-88.0197222,Green Bay,WI,circle,15,Possible UFO over Green Bay, WI. +2011-03-08,31.8055556,-81.4308333,Midway,GA,formation,180,White circular formation with staggered multiple flashing white lights. +2011-03-08,40.4666667,-74.6611111,Belle Mead,NJ,light,90,Glowing orb ascended from my woods, hovered above the trees, trailed behind a plane, stopped, than finally disappeared. +2011-03-08,34.2011111,-118.5972222,Canoga Park,CA,unknown,60,bright star/light moved for a couple seconds turned red and disappeared. +2011-03-08,39.9305556,-75.3205556,West Springfield,PA,triangle,5,3 lighted boomerang under 500 ft in the sky saw in West Springfield, PA. +2011-03-08,40.3013889,-79.5391667,Greensburg,PA,unknown,60,Red lights over residential neighborhood +2011-03-08,39.9305556,-75.3205556,West Springfield,PA,triangle,5,Three lights spanning 20 feet, in the shape of a boomerang, change orientation and disappear. +2011-03-08,33.9686111,-112.7288889,Wickenburg,AZ,light,4,5 bright lights up in the atmosphere. +2011-03-08,38.2744444,-80.0916667,Edray,WV,light,25,Intensely bright red light in the sky which hovered shortly direclty overhead and was seen again in woods minutes later +2012-03-08,37.2652778,-97.3713889,Wellington,KS,circle,1,Large blue white circular object seen streaking above the overcast at night. +2012-03-08,39.2902778,-76.6125,Baltimore,MD,changing,10,Objects were flying together as one, then circled each other and disappeared into the sky +2012-03-08,47.5675,-122.6313889,Bremerton,WA,fireball,45,Huge red/orange fireball craft, no sound; Bremerton, WA 98310 +2012-03-08,38.385555600000004,-78.8027778,Penn Laird,VA,diamond,240,Bright diamond shape object in the sky. +2012-03-08,43.4711111,-89.7441667,Baraboo,WI,diamond,60,Fast moving & silent, set of 4 orange lights raced across elicptic of sky from east to west in th early evening +2012-03-08,37.3541667,-121.9541667,Santa Clara,CA,changing,120,Seven bright crafts "ufo's" seemed to dance in the Calif Sky last night +2012-03-08,41.1544444,-74.1933333,Sloatsburg,NY,light,600,Shifting white light seen in Sloatsburg, NY +2012-03-08,40.1522222,-75.2666667,Blue Bell,PA,triangle,180,Triangular UFO moves slow and silent, changes direction sporadically +2013-03-08,38.9430556,-84.5441667,Independence,KY,light,120,Strange circular light sern over norther kentucky +2013-03-08,47.5288889,-121.8241667,Snoqualmie,WA,light,180,Two distinctly separate, bright red-orange star-like, silent objects arced across the sky and seemed to dissipate. +2013-03-08,35.0844444,-106.6505556,Albuquerque,NM,unknown,60,Two glowing green ovals over interstate 40 just West of Albuquerque. +2013-03-08,41.760555600000004,-88.32,Aurora,IL,fireball,20,Three orange lights in formation. +2013-03-08,47.6588889,-117.425,Spokane,WA,formation,10,8 lights in formation going north west. +2013-03-08,40.9152778,-81.1061111,Alliance,OH,formation,480,Glowing triangular cluster flies over house with 3-4 chasing from behind +2013-03-08,41.0813889,-81.5191667,Akron,OH,fireball,5,Bright white fireball in the northwest sky over Akron. Steakhouse downward from left to right. +2013-03-08,45.5386111,-122.4327778,Fairview,OR,changing,1200,Large diamond shaped aircraft with bright orange lights hovered over freeway with no sound. +2013-03-08,34.2783333,-119.2922222,Ventura,CA,fireball,1800,V-shaped Objects in Skies of Ventura Ca. +2014-03-08,33.8313889,-118.2811111,Carson,CA,sphere,4,bright green glowing ball +2014-03-08,39.1752778,-84.2944444,Milford,OH,light,26,Two orbs of light moving vertically at a fast pace then disappeared. +2014-03-08,34.0555556,-117.1816667,Redlands,CA,disk,300,Blinking light hovers toward Palm Springs from Redlands +2014-03-08,34.1083333,-117.2888889,San Bernardino,CA,light,2700,A white bright pulsating oval round shaped orb it possibly looked like one light circling around on the object. +2014-03-08,34.0552778,-117.7513889,Pomona,CA,teardrop,7200,Hi i saw 3 lights coming down over my house but the more they was closer i could see that they werent helicopters or plains their shape +2014-03-08,26.0625,-80.2333333,Davie,FL,sphere,600,Perfectly round sphere at very high altitude, light orange with progressively reddish tinge towards the edges +2014-03-08,35.6225,-79.0786111,Moncure,NC,triangle,180,Hovering, Very low, Then moving slowly, no sound. Triangular, 2 white lights, one red did not blink. +2014-03-08,30.3319444,-81.6558333,Jacksonville,FL,circle,120,~8 bright orange, almost as if on fire floating orbs coming in off the ocean then disappearing. +2014-03-08,34.2072222,-84.1402778,Cumming,GA,sphere,180,Six bright orange spheres travelling over Cumming, GA. +2014-03-08,32.7252778,-114.6236111,Yuma,AZ,light,120,Bright red orange light over Yuma, Az. +2014-03-08,27.9472222,-82.4586111,Tampa,FL,unknown,180,7-8 orange lights 3/8/2014 over Tampa. +2014-03-08,43.7980556,-73.0880556,Brandon,VT,rectangle,3600,Vermont red & blue vertical lights in sky. +1994-03-09,42.3086111,-83.4822222,Canton,MI,unknown,120,UFO Encounter in Canton Michigan. +1996-03-09,40.7966667,-74.4819444,Morristown,NJ,other,2,Orange Glowing Dot Between Orion and Canis Major Constellations. +1998-03-09,32.2216667,-110.9258333,Tucson,AZ,triangle,600,I was traveling east coming home from work and saw three bright, white lights in the SW sky. They were appeared to be about the size o +1999-03-09,36.3208333,-121.2427778,Greenfield,CA,light,180,Saw what looked at first to be a commet untill it lost its tail and let out strange colored smoke then moved up and west very fast. +1999-03-09,47.6063889,-122.3308333,Seattle (Shoreline),WA,triangle,1200,There were four of us, we are almost %100 what we saw was a UFO. WE followed, it moved rapidly and had multi colored lights. It would +2000-03-09,35.3858333,-94.3983333,Fort Smith,AR,oval,2100,A silvery oval-shaped object was seen shadowing two jetliners, suddenly changing directions, and flying in other parts of the sky south +2000-03-09,33.3763889,-117.2502778,Fallbrook (North),CA,circle,0.5,For some reason I glanced up into a break in clouds, before opening the door of my house causing me to stare intently at a object,that +2000-03-09,43.6613889,-70.2558333,Portland,ME,light,120,my name is ((deleted)) portland me 04103 on 9, march 2000(thursday) at approximately 635pm while e +2000-03-09,37.5419444,-77.9191667,Powhatan,VA,fireball,5,The object swooped down on my front pasture and proceeded to travel horizontally thru the air at a very quick speed for about 5-8 secon +2000-03-09,26.6402778,-81.8725,Fort Myers,FL,light,60,A non-blinking light passing the moon...then just gone. +2000-03-09,44.4591667,-69.6780556,Vassalboro,ME,other,600,saw bright crescent shape light through curtains; pulled back to reveal crescent with very bright beacon or headlight hovering over tre +2000-03-09,37.6459,-93.0942,Buffalo,MO,fireball,3,Bright flash followed by fireball breaking up into red-orange embers. +2000-03-09,36.4011111,-93.7377778,Eureka Springs,AR,fireball,5,driving sw saw diffuse (sheet not bolt) lightning (clear sky) then looked to left (east) and saw rather large fireball meteor breaking +2000-03-09,35.0886111,-92.4419444,Conway,AR,fireball,4,The same night a fireball landed in England Arkansas, I saw a (meteorite) GREEN in color with an ORANGE tail of about 2 ft. in diameter +2000-03-09,29.7630556,-95.3630556,Houston,TX,triangle,60,It was night and moved in a straight line from west to east at a steady pace. +2000-03-09,35.8708333,-92.3169444,Timbo (Approx.7 Miles West Of ),AR,sphere,10,My sister and I were heading home after work at about 8:30pm-9:00pm heading somewhat northwest(with my three children and my sisters 3y +2000-03-09,35.8708333,-92.3169444,Timbo (Approx. 7 Miles West Of),AR,sphere,11,My Sister& I Were driving north on a dirt road leaving the Flag Area of Stone County,at approximately 8:45 P.M. Thursday,March 9th񫺐 +2000-03-09,38.3030556,-77.4608333,Fredericksburg,VA,fireball,5,Shot across the sky. Started orange then turned to a greenish color.Then it disappeared. +2000-03-09,34.9616667,-89.8294444,Olive Branch (Desoto City) (5 Mi. S Of Memphis),MS,fireball,5,I WAS ON MY WAY TO WORK WHEN I WITNESSED AN ORANGE/RED FIREBALL WITH A REAL BRIGHT WHITE SILVERY LIGHT PERTRUDING OUT THE FRONT/TOP THA +2000-03-09,35.9827778,-86.5186111,Smyrna,TN,fireball,4,A large, spherical object slowly descended through the sky in a diagonal until it disappeared behind the tree line. It glowed in a bri +2000-03-09,34.7463889,-92.2894444,Little Rock (North Of),AR,light,5,3 more people can confirm what was said on Art Bell 3-15. More from Little Rock. +2000-03-09,35.4602778,-94.7872222,Sallisaw,OK,fireball,30,Fireball seen, long duration and larger than normal brightness +2000-03-09,42.0897222,-76.8080556,Elmira,NY,disk,25,I saw an object that seemed to Break the laws of aerodynamics and Physics. I have also included my first sighting in great detail. +2000-03-09,36.3352778,-92.385,Mountain Home (3 Miles So. Of Mo In Center Of Ar),AR,fireball,120,Bright, white, golf ball sized orb hit a glass like dome above the planet - creating 45 sec. of white night light in our forest - follo +2001-03-09,34.2694444,-118.7805556,Simi Valley,CA,fireball,10,A green fireball passed over my car north of the San Fernando Valley at 3:36 a.m. on 03/09/01. +2001-03-09,42.8597222,-89.5380556,Belleville,WI,other,5400,I have reported 3 other sightings (3/4/01, 3/5/01 and 3/6/01) and during 3/7/01 and 3/8/01 there were clouds in the sky and we didn't s +2001-03-09,45.6797222,-111.0377778,Bozeman (I-90 West, 20-30 Miles Before),MT,oval,120,three seperate object, the center light was a red triangle in a light fog +2002-03-09,43.0480556,-76.1477778,Syracuse,NY,fireball,300,Fire ball spotted while on highway +2002-03-09,61.2180556,-149.9002778,Anchorage,AK,triangle,600,Low flying triangular craft noticed traveling south along mountain range in Anchorage. +2002-03-09,33.3166667,-108.8825,Glenwood,NM,flash,180,the object made a yellowish beam and made a strange fire like noise. +2004-03-09,34.0983333,-118.3258333,Hollywood,CA,changing,900,Dancing Lights Los Angeles; Triangle; straight line; always changing shape [sic] +2004-03-09,39.7391667,-104.9841667,Denver,CO,oval,30,MUFON COLORADO REPORT: Strange objects seen in daytime sky over Denver. +2004-03-09,32.2216667,-110.9258333,Tucson,AZ,circle,15,The object moved in a unexpectable speed from east to west and dissapeaers in completely blue sky. +2004-03-09,47.6063889,-122.3308333,Seattle,WA,other,7200,A cluster of bright pulsing lights over downtown Seattle. ((NUFORC Note: Celestial body?? PD)) +2004-03-09,43.1977778,-70.8741667,Dover,NH,triangle,900,Triangular shaped object floating or moving very slowly near Route 16 between exits 8 and 9 in Dover, NH +2004-03-09,40.8813889,-82.6619444,Shelby,OH,light,10800,Bright white changed to yellow-orange light moving very fast several lights around it followed by a very low shooting star. +2004-03-09,33.1019444,-82.8038889,Warthen,GA,triangle,120,I am reporting another eyewitness account of the strange craft in Washington County on March 9, 2004. +2004-03-09,38.8047222,-77.0472222,Alexandria,VA,circle,60,Moving bright light, March 9, 2004, 7:57 PM, Alexandria Va. +2004-03-09,42.3972222,-75.1738889,Otego,NY,sphere,3600,Exceptionally bright obj. noted in the W sky at approx 8PM, which dropped below horizon after 1 hour. ((NUFORC Note: Venus. PD)) +2004-03-09,33.7358333,-94.5727778,Tom,OK,oval,6300,It bobbed from side to side and up and down in lazy swooping motions that seemed surreal. ((NUFORC Note: Celestial body?? PD)) +2004-03-09,33.1019444,-82.8038889,Warthen,GA,changing,120,5-6 lights appeared to fly in formation and then battle each other in the sky. +2004-03-09,37.6791667,-95.4569444,Chanute,KS,triangle,1200,The object was surrounded by bright green lights forming a triangle. +2004-03-09,41.1569444,-83.4169444,Fostoria,OH,triangle,120,Triangle shaped object, no sound, no trail, glided over my town +2004-03-09,41.2586111,-95.9375,Omaha,NE,triangle,30,HUGE TRIANGULAR OBJECT PASSED SILENTLY OVER MY HEAD +2005-03-09,38.0386111,-77.6391667,Partlow,VA,disk,30,Orange/red glowing objects. Spotsylvania Co Va. 2005 Photographed! +2005-03-09,40.2397222,-76.9202778,Camp Hill,PA,light,180,For three minutes around 0540 hrs I observed two bright lights close to each other in the sky afterwhich the lights disappeared. +2005-03-09,39.395,-86.5625,Paragon,IN,cylinder,5,Two very large cylinders side by side +2005-03-09,37.2386111,-76.51,Yorktown,VA,triangle,240,Possible UFO- but more importantly, the alien experience +2005-03-09,35.4372222,-93.6727778,Coal Hill,AR,light,600,Return of orange lights in SW sky, different than previous sighting. +2005-03-09,36.8527778,-75.9783333,Virginia Beach,VA,changing,600,Large object in Virginia +2005-03-09,33.0780556,-96.495,Clear Lake,TX,triangle,2,Saw dull orange/reddish glowing triangular shaped craft with an orb (engine?) at each apex of triangle,outter edges of circular orbs/en +2005-03-09,26.7052778,-80.0366667,West Palm Beach,FL,oval,10,I was looking at the stars, orion constellation, double stars X1 and X2 on top of the head. with a small telescope with an equatorial m +2005-03-09,36.175,-115.1363889,Las Vegas,NV,triangle,2700,Alot of activity north of Las Vegas +2005-03-09,26.6583333,-80.2416667,Wellington,FL,other,20,Singularity are true! ((NUFORC Note: One of several bizarre reports from same source. PD)) +2006-03-09,42.7325,-84.5555556,Lansing,MI,disk,10,I saw a UFO in the early morning. +2006-03-09,34.2163889,-117.4005556,Devore,CA,oval,900,03/09/2007 early evening Large lentricular cloud with several smaller ones near 215 freeway Devore, Ca. +2006-03-09,46.2113889,-119.1361111,Kennewick,WA,rectangle,600,Rectangular object with four pulsing red lights at the corners, moving slowing and silently +2007-03-09,33.8572222,-84.02,Snellville,GA,triangle,2,This is just a dream I had yesterday, but is not the first time I have this dream, 1st time is was around march 1996, in my dream on 19 +2007-03-09,40.7608333,-111.8902778,Salt Lake City,UT,light,4,Ball of orange light in morning sky over Salt Lake City +2007-03-09,26.2441667,-80.2066667,Margate,FL,circle,300,Margate Fl. - Large Circle in clouds with light on bottom side - pulling a cloud (twisting) into it +2007-03-09,32.2216667,-110.9258333,Tucson,AZ,sphere,600,A daylight sighting of a white sphere near a chemtrail over Tucson, AZ was observed from schoolyard by parents and teachers. +2007-03-09,39.4830556,-88.3727778,Mattoon,IL,light,600,Three extremely bright, blinking, white-orange lights sighted East of I-57 near Mattoon. +2007-03-09,42.6411111,-78.5419444,Holland,NY,circle,90,At about 7:30 p.m. on 3/9/07 saw moving UFO low in sky with 4 main lights of different colors equally spaced in a circular pattern +2007-03-09,29.7630556,-95.3630556,Houston,TX,egg,300,Gray egg shaped object with many colored lights flying low in the sky, then either vanishing or flying away very quickly. +2007-03-09,34.1066667,-117.8058333,San Dimas,CA,oval,600,Orange Red light traveling from west to east very slowly, then went straight up +2007-03-09,33.4147222,-111.9086111,Tempe,AZ,other,10,low vapor sound in sky, accompanied ground rumbling +2007-03-10,34.1066667,-117.8058333,San Dimas,CA,oval,600,Orange round or oval light, traveling slowly, no noise, no blinking lights, then disappeared. +2008-03-09,33.3061111,-111.8405556,Chandler,AZ,sphere,120,A shiny metallic sphere noticed for less then 2 minutes before it suddenly vanished. +2008-03-09,37.6938889,-85.8591667,Elizabethtown,KY,unknown,4,I saw one object with two lights that shot out a flame. +2008-03-09,40.26,-74.2741667,Freehold,NJ,oval,5,3/09/08: Bright, shiny liquid-silver colored oval hovering in the sky. +2008-03-09,32.8794444,-111.7566667,Casa Grande,AZ,light,600,Strange lights in the sky during the day +2008-03-09,37.3394444,-121.8938889,San Jose,CA,sphere,600,4 "little stars" in the sky: 3 white one red moving then changing directions +2008-03-09,34.1063889,-117.3694444,Rialto,CA,disk,60,Saucer shaped craft over Rialto Calif. +2008-03-09,28.1936111,-82.5919444,Odessa,FL,egg,15,I was driving down the road and saw a large egg shaped object that was dark in color. I was able to see it for around 15 seconds then s +2008-03-09,35.4491667,-86.7888889,Lewisburg,TN,light,10,A bright star-shaped object streaked gracefully across the sky and emanated red and green before disappearing. +2008-03-09,37.9747222,-87.5558333,Evansville,IN,light,3,I was driving south on a back road off of Highway 41 in Darmstadt,IN near the city of Evansville when I looked up and saw a large, whit +2008-03-09,40.6013889,-79.76,Tarentum,PA,chevron,180,Large Slow moving Delta shaped ufo seen by alot people over tarentum and deer lakes +2008-03-09,30.4877778,-90.8613889,Walker,LA,other,3,3 DIM AMBER LIGHTS FIXED ON LARGE OBJECT AT A HIGH RATE OF SPEED +2009-03-09,38.4105556,-76.4555556,Lusby,MD,sphere,300,Bright White Sphere flying over my house silently. +2009-03-09,25.7738889,-80.1938889,Miami,FL,flash,30,silver/goldish color shiny object in the air +2009-03-09,38.9011111,-77.2655556,Vienna,VA,formation,10,"V" formation of high speed UFO's spotted. +2010-03-09,41.4619444,-81.0738889,Middlefield,OH,triangle,20,Triangle aircraft observed with Night Vision Goggles, could not be seen with naked eye. +2010-03-09,31.4747222,-96.9230556,Riesel,TX,sphere,300,Screeching noise with bright light. +2010-03-09,40.6258333,-75.3708333,Bethlehem,PA,cylinder,120,My second sighting of a chrome-colored craft during morning rush hour. +2010-03-09,40.6258333,-75.3708333,Bethlehem,PA,changing,45,large, bright white lights with one red light that hovered about 75 feet in air +2010-03-09,29.4238889,-98.4933333,San Antonio,TX,sphere,1800,3 Morphing Red Sphere Lights No Sounds. +2010-03-09,33.8463889,-118.0458333,La Palma,CA,cigar,300,Lights over orange county +2011-03-09,26.1416667,-81.795,Naples,FL,disk,11700,Sighting at 3.30 AM with 3 bright lights, clear view of large saucer shaped obj at 6.00. ((NUFORC Note: Celestial bodies. PD )) +2011-03-09,33.1958333,-117.3786111,Oceanside,CA,oval,300,Brilliant flare like object into black craft with red light +2011-03-09,33.415,-111.5488889,Apache Junction,AZ,light,180,Helicopter chases white light at high speeds over Apache Junction, AZ near Mesa border. +2011-03-09,37.4536111,-90.7947222,Lake Springs,MO,triangle,3600,MISSOURI INVESTIGATORS GROUP REPORT: I looked over the roof of my house where I saw a large craft flying west. +2011-03-09,37.9513889,-91.7711111,Rolla,MO,triangle,3600,Large triangle craft flies over my house, loud +2012-03-09,39.2191667,-121.06,Grass Valley,CA,light,7200,Two "star" like objects flashing red, white and blue with unnatural intensity. +2012-03-09,40.5772222,-74.2286111,Carteret,NJ,chevron,10,Possible UFO in area with a history of reported UFO sightings +2012-03-09,33.4483333,-112.0733333,Phoenix,AZ,light,720,5 UFO's lined up holding still +2012-03-09,41.1383333,-81.8638889,Medina,OH,teardrop,300,Silver bell with flames at bottom and silver metal frame with red bottom +2012-03-09,33.4222222,-111.8219444,Mesa,AZ,rectangle,300,Rectangular ufo seen in Arizona +2012-03-09,42.8077778,-87.9241667,Caledonia,WI,light,120,White glowing object flying in sky. +2012-03-09,40.6952778,-80.305,Beaver,PA,light,10800,Bright lights over Beaver, PA. ((NUFORC Note: Probable sightings of Venus and Jupiter. PD)) +2012-03-09,38.5816667,-121.4933333,Sacramento,CA,changing,300,Dark, noiseless, floating V shaped object, moving from south to north, morphing shape +2012-03-09,37.9577778,-121.2897222,Stockton,CA,light,5,Large bright light shrinks and flies away quickly. +2012-03-09,36.1630556,-82.8311111,Greeneville,TN,unknown,120,Fast moving double lined craft with moving lights..left a rotating movement within a trail +2012-03-09,43.7508333,-87.7144444,Sheboygan,WI,circle,1800,A USO under the water that seemed to move very slowly. +2012-03-09,44.2619444,-88.4152778,Appleton,WI,circle,300,A dozen or so noisless orb like flaming balls of light that moved west across the sky and disapeared. +2012-03-09,40.4841667,-88.9936111,Bloomington,IL,chevron,45,A V-shaped craft with about 6 lights on each "wing" above Bloomington IL. +2013-03-09,39.9611111,-82.9988889,Columbus,OH,sphere,420,3/9/ 13 0:00 Columbus, OH Sphere 7 minutes Orange Silent Slow - almost hovering. +2013-03-09,40.7583333,-82.5155556,Mansfield,OH,triangle,300,Three lights in a trianglular shape hovering than quickly flying away. +2013-03-09,47.6063889,-122.3308333,Seattle,WA,fireball,180,White/orange orb seen near Golden Gardens, Seattle +2013-03-09,47.6777778,-116.7794444,Coeur D'alene,ID,light,180,2 bright lights +2013-03-09,47.6777778,-116.7794444,Coeur D'alene,ID,light,180,2 bright lights. +2013-03-09,41.7636111,-72.6855556,Hartford,CT,light,10,Three green lights appeared in our high level building apartment. +2013-03-09,38.8461111,-77.3066667,Fairfax,VA,triangle,300,Triangular object gliding through the night sky. +2013-03-09,39.7136111,-82.5994444,Lancaster,OH,rectangle,300,Fast moving orange orbs 400 feet in the sky. +2013-03-09,39.7136111,-82.5994444,Lancaster,OH,rectangle,300,Fast moving orange orbs 400 feet in the sky. +2013-03-09,38.5675,-77.3283333,Dumfries,VA,formation,3600,Several Objects spotted flying over Dumfries, VA, March 09, 2013 +2013-03-09,43.0480556,-76.1477778,Syracuse,NY,light,300,Meandering bright light in sky desends and seems to land. +2013-03-09,41.8238889,-71.4133333,Providence,RI,other,20,Orangish glowing object soared at low altitude , followed by white shooting star streaking across sky for 3 seconds +2013-03-09,38.0527778,-81.1041667,Fayetteville,WV,chevron,2,Band of lights traveled north to south, silent,. Clear night. +2013-03-09,33.3527778,-111.7883333,Gilbert,AZ,triangle,300,10 objects, pulsating red flame and yellow over Gilbert, Az. March 9, 2013 +2013-03-09,33.8491667,-118.3875,Redondo Beach,CA,disk,420,7-8 Craft resembling balloons on fire seen cruising off Southern California coast. ((NUFORC Note: In LAX flight corridor? PD)) +2013-03-09,41.3747222,-83.6513889,Bowling Green,OH,formation,60,Formation of twinkeling and moving amber lights seen at night. +2013-03-09,34.1747222,-86.8436111,Cullman,AL,diamond,180,9 colorful UFO witness slow moving over Cullman, Alabama. +2013-03-09,45.5236111,-122.675,Portland,OR,fireball,120,Light? Fireball? +2013-03-09,40.3013889,-79.5391667,Greensburg,PA,rectangle,15,I saw 7 to 9 gold rectangular objects all identical moving in the same direction for about 12 to 15 seconds in the night sky. +2013-03-09,38.0494444,-122.1575,Benicia,CA,cylinder,2700,3 sets of 5 red glowing cylinders flew over the bay near Benicia, CA. +2013-03-09,33.7669444,-118.1883333,Long Beach,CA,fireball,60,Orange light slowly moving through sky then disappearing +2013-03-09,45.5236111,-122.675,Portland,OR,triangle,45,Three triangular bright orange light objects hovering low in the sky: Portland, Oregon. +2013-03-09,33.9533333,-117.3952778,Riverside,CA,oval,20,Very bright green light coming from oval shaped object +2013-03-09,35.2269444,-80.8433333,Charlotte,NC,other,20,Massive dark bow shaped flying object over Uptown Charlotte. +2013-03-09,34.0336111,-117.0422222,Yucaipa,CA,circle,180,At approximately 22:20PST, multiple witnesses viewed an object traveling at a high rate of speed SSW near the Redlands/Yucaipa/Mentone +2013-03-09,37.3022222,-120.4819444,Merced,CA,fireball,120,Orange bright light is sky +2013-03-09,40.3408333,-76.4116667,Lebanon,PA,formation,10,A silent string formationǀ-10 amber lights traveling at an angle and making a snake movement as it changed direction before vanishing. +2013-03-09,40.3408333,-76.4116667,Lebanon,PA,formation,10,A silent string formationǀ-10 amber lights traveling at an angle and making a snake movement as it changed direction before vanishing. +2013-03-10,29.7955556,-90.8227778,Thibodaux,LA,fireball,240,Orb over Thibodaux la +2014-03-09,35.0072222,-80.9452778,Fort Mill,SC,unknown,7200,We are being chipped in our sleep. +2014-03-09,33.6041667,-117.5861111,Coto De Caza,CA,flash,1,Quick orangish flash, less then a second in duration but repetitive. +2014-03-09,44.0216667,-92.4697222,Rochester,MN,triangle,60,Huge, black, completely silent, slow gliding triangle. Cruised by close to the ground. +2014-03-09,44.8480556,-93.0425,Inver Grove Heights,MN,formation,300,4 yellow-orange lights flying against busy Sunday night flight traffic. +2014-03-09,35.0844444,-106.6505556,Albuquerque,NM,sphere,60,White sphere descends from sky in the Bosque. +2014-03-09,40.8427778,-73.2933333,Commack,NY,fireball,240,Orange fire like lights in sky. +2014-03-09,28.0391667,-81.95,Lakeland,FL,light,900,Orange lights across the night sky - a strange and unexplained sighting. +2014-03-09,47.1855556,-122.2916667,Puyallup,WA,other,12,Very large V shaped object with 2 very bright lights and one red one traveling about 400 feet above the ground. +2014-03-09,29.5425,-95.0202778,Kemah,TX,unknown,600,Each object did not all stop emitting light at the same time; instead they went out simultaneously within half a minute of each other. +2014-03-09,42.3086111,-83.4822222,Canton,MI,sphere,120,3 orange orbs 1000 feet off ground 100 yards apart in triangle formation then disappear. +2014-03-09,39.5791667,-104.8763889,Centennial,CO,light,10800,Strange lights seen by 5 witnesses dipping lower, rising, changing color, and playing "tag" several nights in a row. +2014-03-09,26.9338889,-80.0944444,Jupiter,FL,circle,60,A round orange glowing object moved east to west moving slowly. Larger as it approached and passed my back yard and then moved upward. +2014-03-09,33.4222222,-111.8219444,Mesa,AZ,rectangle,300,I was just let my dogs out to the backyard. And walk around the corner and looked up behind the house and saw orange glowing light movi +2014-03-09,28.2486111,-81.2813889,St. Cloud,FL,unknown,600,Loud "booms." +1949-04-10,47.6063889,-122.3308333,Seattle,WA,disk,600,UFO Hovers over Seattle sky +1953-04-10,41.0138889,-93.3063889,Chariton,IA,other,600," Flying Wing Before It's Time " +1963-04-10,40.6113889,-79.8372222,Russellton,PA,sphere,600,UFO was seen back in the 1963 near Russellton PA +1974-04-10,39.4438889,-82.8272222,Hallsville,OH,sphere,900,Lighted sphere observed hovering in morning sky. +1975-04-10,35.4425,-81.9780556,Gilkey,NC,disk,50,went walking dog with two brothers,on what is now chilly bowl road,right about at train tracks we stopped to let her run,alarge disc sh +1980-04-10,37.7652778,-122.2405556,Alameda,CA,fireball,300,I had been moving in to our new apartment in Alameda, California. I was relaxing on the beach overlooking the San Francisco Bay south o +1986-04-10,33.8302778,-116.5444444,Palm Springs (Outside Of),CA,disk,900,Lost four to five hours +1993-04-10,28.46,-98.1822222,Three Rivers,TX,sphere,1200,Spherical UFO tracks vehicle +1993-04-10,41.2586111,-95.9375,Omaha,NE,egg,30,An egg-shaped white light with a red tail crossed a clear sun-lit sky. +1994-04-10,36.9922222,-91.9697222,Willow Springs,MO,triangle,1800,Huge Triangular Object after dusk seen with lights outling the perimeter, and a bright light in the middle . +1995-04-10,29.4236111,-95.2438889,Alvin,TX,other,420,An object with flashing lights moving at a very slow rate of speed over a tree line. +1995-04-10,42.0022222,-83.3086111,Newport,MI,other,2700,A montage of events, you figure out what this was, I really am not sure. +1997-04-10,34.7463889,-92.2894444,Little Rock (East Of),AR,disk,4,My son saw a craft with 8 white lights under it as it flew right over our car about 150 feet above us . +1998-04-10,32.7947222,-116.9616667,El Cajon,CA,cigar,600,Observed object, nothing around it. Pulsing red light, bright-dim-bright-dim. Moved slowly toward us. Through binoculars, could see m +1998-04-10,32.7763889,-79.9311111,Charleston,SC,unknown,1200,Walking down the outside fire escape looked up and saw several aircraft passing and the one in the middle was leaving a smoke ring trai +1998-04-10,26.0027778,-80.2241667,Pembroke Pines,FL,triangle,300,triangle shapped object over the everglades +1999-04-10,35.2269444,-80.8433333,Charlotte,NC,other,90,Large craft - noisy - many lights - altitude 200 feet - speed less than 65 mph - strange aspect ratio, almost the same aspect ratio as +1999-04-10,42.9633333,-85.6680556,Grand Rapids,MI,triangle,1800,In the middle of some highway, there was just some big craft hovering us real slowly out of nowhere, it was no airplane. +1999-04-10,41.3858333,-93.2691667,Pleasantville (Outskirts Of),IA,light,180,a big, very bright light traveling close to the ground very fast, w/a spinning red & white light also, as it flew away, it looked like +1999-04-10,43.0511111,-73.7219444,Saratoga Lake,NY,oval,720,Observed scintilating oval object rise over treeline at the south end of lake,move left,right and hover then descend below treeline onl +1999-04-10,38.7933333,-77.2719444,Burke,VA,unknown,300,It could heard us speaking to it. +2000-04-10,36.7477778,-119.7713889,Fresno,CA,chevron,30,View a Chevron shaped object +2000-04-10,41.0847222,-85.6280556,South Whitley,IN,other,30,Bumbbell shaped ship sighted. Beings onboard! +2000-04-10,44.0822222,-69.0577778,Owls Head,ME,diamond,120,UFO, most likely a space probe of some type +2000-04-11,33.8641667,-111.4669444,Sunflower,AZ,triangle,720,My sister and I were driving to tonto Basin Arizona, from Phoenix As we topped the Mountain the whole valley below was lit up bright r +2001-04-10,36.175,-115.1363889,Las Vegas,NV,other,600,Sighting of U.F.O.'s above Las Vegas during daytime +2001-04-10,41.6716667,-72.9497222,Bristol,CT,changing,1800,Shape changing object. +2002-04-10,41.7,-71.6833333,Coventry,RI,formation,37,It was scary! +2002-04-10,30.2669444,-97.7427778,Austin,TX,sphere,300,I was headed for work and was dropping off my trash at the Trash dumpster and looked up and saw a Silver Sphere just hovering. It was a +2002-04-10,43.0830556,-73.785,Saratoga Springs,NY,light,7200,Strange light +2002-04-10,30.5125,-93.2322222,Ragley,LA,light,7200,Two friends and myself were grilling steaks outside. All outside lighting was off so we could star-watch on this clear night. As we rec +2002-04-10,40.3941667,-74.1175,Middletown,NJ,flash,300,radically strobing lights form triangular shape followed by 15 lights in random alternating strobing patterns. +2002-04-10,32.895,-97.5455556,Azle,TX,cigar,180,Silent ,cigar-shaped UFO with round,gold lights and orange tail traveled alongside car at tree level +2002-04-10,39.7683333,-86.1580556,Indianapolis,IN,triangle,30,Boomerang shaped object heading east to west.Transparent glow almost like metal starting to glow from heat,,orange and light green in c +2002-04-10,26.1416667,-81.795,Naples,FL,light,30,4 circular lights that spun in circles, than became one, than repeated the cycle over again. ((Advertising lights??)) +2002-04-10,40.1302778,-75.5152778,Phoenixville,PA,light,1800,it was changeing shapes and it was to far to make out the shape but it was turning from a dull red to a bright white.it moved very slow +2003-04-10,29.7352778,-94.9772222,Baytown,TX,cigar,30,Silvery glowing cigar shaped object moving very fast then dissapearing. +2003-04-10,40.8366667,-72.9175,Yaphank,NY,other,10,White Blob Hovering over Minumum Security Facility +2003-04-10,34.0194444,-118.4902778,Santa Monica,CA,cigar,900,Silver cigar-shaped UFO hangs over Santa Monica Beach +2003-04-10,33.8752778,-117.5655556,Corona,CA,disk,60.4,single bright saucer shaped object slowing propelling forward, with the front tilted downward +2003-04-10,40.7536111,-86.0688889,Peru,IN,circle,180,Orange/amber globes appeared to come out from behind an object till fully round ,very bright a mist surounded the lights. +2003-04-10,42.5936111,-83.5994444,Milford,MI,light,900,we could not detect any "object" only the EXTREMELY bright color changing lights- seemed to be spinning-it was not a helicopter or plan +2003-04-10,30.4211111,-87.2169444,Pensacola,FL,chevron,30,Chevron shaped lights slowly moving south to north. +2004-04-10,36.205,-94.7975,Kansas,OK,disk,120,We were afraid the solid glowing reddish orange disk was a missle. +2004-04-10,33.4483333,-112.0733333,Phoenix,AZ,oval,600,Large white oval light passing over Pheonix, AZ. +2004-04-10,46.2858333,-119.2833333,Richland,WA,light,1200,bright light, white, with hints of gold. +2004-04-10,33.9533333,-117.3952778,Riverside,CA,sphere,7,Driving southbound on the 91 fwy in Riverside C.A. at about 11:30 pm a green orb appeared out of nowhere to my eleven o'clock it seemed +2004-04-10,44.775,-117.8333333,Baker City,OR,chevron,25,Transparent grayish chevron-shaped obect changes to 6 individual green lights that reconverge to form 1 green light +2005-04-10,40.7608333,-111.8902778,Salt Lake City,UT,changing,600,Flexible mass drops shimmering peices in utahs little cottonwood canyon +2005-04-10,27.5908333,-80.3444444,South Beach,FL,circle,600,walking along south beach notiched a spinng disc at high altitude it stopped in one place for about 5 minutes then moved south slowly t +2005-04-10,33.6633333,-116.3091667,La Quinta,CA,circle,600,Sunday, April 10th, around 1pm I noticed a round object in the sky. It didn't go fast, but changed shapes and disappeared into the sun. +2005-04-10,33.4483333,-112.0733333,Phoenix,AZ,oval,45,I saw an object that looked much like one of those silver baloons filled with helium sold in grocery stores. In fact, that is what I th +2005-04-10,39.6136111,-86.1066667,Greenwood,IN,triangle,60,On April 10, 2005 at approximately 9:40 p.m. I saw a black triangle with lights on each point move to the south. +2006-04-10,41.5491667,-84.1416667,Wauseon,OH,triangle,1800,Something over Northwest Ohio +2006-04-10,44.7677778,-93.2775,Burnsville,MN,formation,60,50 silver irridescent diamond shaped objects in the formation of a wide awkward heart that blinked in and out of view in MN +2006-04-10,26.1336111,-80.1133333,Sunrise,FL,unknown,2,Unknown object spotted while reviewing photo of clouds/shower line taken earlier in day. +2007-04-10,33.7877778,-117.8522222,Orange,CA,light,240,Light like a plane but moved like something really strange! +2008-04-10,43.885555600000004,-70.3322222,Gray,ME,light,1200,Encounter with a light form +2008-04-10,38.9341667,-80.8377778,Glenville,WV,sphere,240,Orage orb over Glenville WV +2008-04-10,33.0422222,-96.3736111,Nevada,TX,unknown,600,On April 10 2008 @ about 4am bight lights heading in from the east towards my house. +2008-04-10,39.0169444,-94.2813889,Blue Springs,MO,chevron,900,2 UFOs Seen After A Fierce Thunder/Hail Storm +2008-04-10,36.0152778,-83.415,Dandridge,TN,light,600,Light moving over Sevierville +2008-04-10,36.175,-115.1363889,Las Vegas,NV,sphere,3,White Sphere loiters than darts towards east +2008-04-10,35.3111111,-120.8313889,Los Osos,CA,light,300,U.F.O. over the central coast of California +2008-04-10,40.8922222,-74.4777778,Denville,NJ,triangle,600,Black Triangle In Deville NJ +2008-04-10,35.6125,-77.3666667,Greenville,NC,formation,15,four large greenish hazy lights, in straight line formation, moving very fast, no sound +2008-04-10,30.6277778,-96.3341667,College Station,TX,circle,8,Barely visible cicular craft with small red lights that floated independently over the craft like flies. +2008-04-10,40.5813889,-79.5666667,Apollo,PA,other,60,Unknown craft over Western PA +2008-04-10,40.8666667,-124.0816667,Arcata,CA,light,8,I saw a bright and big star-like object at night floating over a university weight room gym after I exited the facility. +2008-04-10,38.7891667,-90.3225,Florissant,MO,circle,120,Object with bright lights in a circle formation hovers over a residential area +2008-04-10,43.7452778,-73.4988889,Hague,NY,triangle,2700,My childern and I watch this object with red, white and green lights flutter in the sky for about 45 min. +2008-04-10,33.6305556,-112.3325,Surprise,AZ,light,50,I called your hotline and wanted to add some deatails, I was told to put it writing This is the same report as I sent last night with a +2008-04-10,33.6305556,-112.3325,Surprise,AZ,light,50,Looked like double the brightness of other stars in between the last 2 stars in big dipper. +2008-04-10,46.5575,-120.4738889,Union Gap,WA,light,15,a big star-like like that closed from one side to the other, not reappearing +2008-04-10,46.0038889,-112.5338889,Butte,MT,light,180,My sighting tonight has me more freaked out than ever. Even though Im a science nut and enjoy reading about the history of UFO's and se +2008-04-10,36.1016667,-78.4583333,Franklinton,NC,other,86400,Constantly viewing organisms or unidentified object with a telescope...much activity--- +2008-04-10,32.895,-97.5455556,Azle,TX,rectangle,240,Azle,TX Silent rectanluar object with round gold lights travels low over trees alongside van and glides down street +2008-04-10,38.3566667,-121.9866667,Vacaville,CA,disk,5,Sighting of a disc shaped object in the sky +2009-04-10,28.5380556,-81.3794444,Orlando,FL,light,60,Early morning aerial maneuvers by 2 objects, one blue and one white +2009-04-10,42.4083333,-71.0541667,Everett,MA,circle,20,Everett Mass 3 witnesses +2009-04-10,28.5380556,-81.3794444,Orlando,FL,triangle,10,Black Triangle, Three lights in the shape of a triangle. +2009-04-10,30.2263889,-93.2172222,Lake Charles,LA,light,10,single white light high above Louisiana swamps +2009-04-10,45.2461111,-93.4519444,Ramsey,MN,teardrop,120,Red -Orange teardrop shaped , silent fast moving obect +2010-04-10,41.7,-71.4166667,Warwick,RI,disk,600,bright light hovering over the warwick mall +2010-04-10,40.7141667,-74.0063889,New York City (Queens),NY,oval,900,Four oval shape lights in the sky (very large and bright) just over the clouds when it the skies became cloudy and windy on Maspeth. +2010-04-10,35.6125,-77.3666667,Greenville,NC,unknown,420,Daytime moving star seen over Pitt County +2010-04-10,43.6105556,-72.9730556,Rutland,VT,sphere,600,Strange phenomenon in sky over rutland vermont reveals sphere type craft +2010-04-10,33.4708333,-81.975,Augusta,GA,oval,5,small round object very far away very white very fast moved at high speed then stopped +2010-04-10,32.7152778,-117.1563889,San Diego,CA,chevron,60,Chevron-shaped craft spotted passing over California interstate +2010-04-10,36.6436111,-93.2183333,Branson,MO,light,300,We saw a bright "star" next to the sun as we were out for a drive. +2010-04-10,41.14,-104.8197222,Cheyenne,WY,triangle,120,2 low slow flying black triangles +2010-04-10,46.8772222,-96.7894444,Fargo,ND,formation,15,Six pairs of side by side amber lights moving in a V formation. +2010-04-10,45.1505556,-94.6827778,Grove City,MN,triangle,5,Noiseless flying Triangular craft over town. +2010-04-10,32.7355556,-97.1077778,Arlington,TX,chevron,10,out of the night eastern sky,it appears to be a falling star at first,at super sonic speed.dull neon green light dot.suddenly,it went i +2010-04-10,28.8616667,-98.7061111,Charlotte,TX,sphere,60,A red Sphere Followed my car , then vanished the minute it was noticed.Then car turned back on. +2011-04-10,28.9538889,-95.3594444,Freeport,TX,rectangle,7200,Rectangular, spinning, multi-colored UFO after seeing two shooting stars leaving green trail +2011-04-10,33.9411111,-84.2136111,Norcross,GA,fireball,600,triangle of lights and "fireballs" seen heading down Peachtree Industrial Boulevard +2011-04-10,37.9577778,-121.2897222,Stockton,CA,light,900,unexplainable. +2012-04-10,30.6325,-97.6769444,Georgetown,TX,light,1,It was a big huge glowing green light in the sky that was there moved then vanished. +2012-04-10,40.2883333,-75.2094444,Chalfont,PA,sphere,20,Blue-green ball of light seen over Chalfont, Pa +2012-04-10,30.7108333,-94.9327778,Livingston (East Of),TX,sphere,2400,The spherical object appears below the horizon and changes direction. Game camera photos over 40 minutes. +2012-04-10,33.5988889,-117.2791667,Wildomar,CA,circle,5,Bright light accross Wildomar skyline west. +2012-04-10,38.2811111,-80.8527778,Summersville,WV,oval,5,UFO flying west, in daylight, oval shape, silver, disappeared in about 5 seconds. +2012-04-10,37.6455556,-84.7722222,Danville,KY,sphere,1,Bright org flys by me. +2012-04-10,33.5386111,-112.1852778,Glendale,AZ,sphere,180,One bright object , silent, no flashing lights, moving constant speed several minutes until out of sight. +2012-04-10,32.7677778,-117.0222222,La Mesa,CA,light,180,A moving star-like object changed direction and "blinked out" +2012-04-10,30.6747222,-87.9152778,Spanish Fort,AL,diamond,120,Red diamond shaped craft, yellow light in the middle. +2012-04-10,41.5963889,-73.9113889,Wappingers Falls,NY,light,900,Coming from SE coming NE. I followed it with my own eyes until it diminished. +2012-04-10,40.015,-105.27,Boulder,CO,triangle,8,V-shaped craft flying southwest over Boulder CO +2012-04-10,30.6747222,-87.9152778,Spanish Fort,AL,diamond,120,Red diamond object in alabama +2012-04-10,29.3011111,-94.7975,Galveston,TX,light,240,As bright and as large as Venus light that curved from N to NNE. from directly overhead +2012-04-10,25.7738889,-80.1938889,Miami,FL,light,4,Star moved for 3 seconds, stopped, started to move again and disappeared. +2012-04-10,45.12,-93.2875,Coon Rapids,MN,light,1200,Lights that traveled across the sky then disappeared and then from the same spot reappeared but in a new direction. +2012-04-10,38.6272222,-90.1977778,St. Louis,MO,unknown,120,Bright blue light moving west to east at high speed, stopped instantly hovered and zigzaged then moves further east toward st. louis su +2012-04-10,41.2761111,-72.8688889,East Haven,CT,unknown,2,Unusual and astonishing to see this. +2012-04-10,39.1433333,-77.2016667,Gaithersburg,MD,fireball,2,Orange fireball over Gaithersburg MD on 04/12/2012 +2013-04-10,39.1855556,-78.1636111,Winchester,VA,circle,60,25-30 circular lights over winchester va +2013-04-10,42.4183333,-71.1066667,Medford,MA,sphere,600,Spherical UFOs over Medford, MA +2013-04-10,47.6063889,-122.3308333,Seattle,WA,unknown,900,6 or more objects over Seattle Science Center/Space Needle, irregular movement, disappearing and reappearing +2013-04-10,27.9655556,-82.8002778,Clearwater,FL,circle,120,Red circular light seen from Clearwater, Fl +2013-04-10,34.0555556,-117.1816667,Redlands,CA,light,5,Blue-gray glowing object moved very fast and disappeared. +2014-04-10,26.1719444,-80.1322222,Oakland Park,FL,triangle,14400,This has been happening to me for 4 months to my knowledge. +2014-04-10,31.8455556,-102.3672222,Odessa,TX,unknown,2400,2 unknown aircraft escape after late night meteor impact sightings +2014-04-10,33.4483333,-112.0733333,Phoenix,AZ,fireball,180,My husband was walking the dog infont of our house on the street. He called me to go out side&quot; bebe come and see this&quot;. I did +2014-04-10,30.7619444,-86.5705556,Crestview,FL,triangle,120,White flashes in the sky and a triangular craft with three red lights. +2014-04-10,26.2375,-80.125,Pompano Beach,FL,light,600,Neon purple/blue light hovering over neighborhood in Crystal Lake, FL. +2014-04-10,41.0247222,-89.4111111,Lacon,IL,sphere,300,Flashing lights in sky, orange light starting from roof top shoot up and was gone after travaling very high. +2014-04-10,38.4405556,-122.7133333,Santa Rosa,CA,sphere,60,Orange sphere that suddenly disappears. +2014-04-10,37.1305556,-113.5075,Washington,UT,rectangle,360,5 "Fire like" lights seen slowly traveling northbound in the northern sky in a rectangular shape, but changed shape. +2014-04-10,38.4405556,-122.7133333,Santa Rosa,CA,sphere,60,Orange pulsating sphere. +2014-04-10,33.1191667,-117.0855556,Escondido,CA,rectangle,300,Photo taken of a bright light in the sky, revealed two illuminated rectangular objects and three disc with lights around the diameter. +2014-04-10,33.6675,-79.8308333,Kingstree,SC,triangle,600,Aircraft flying over home in Kingstree, SC. +2014-04-10,27.0438889,-82.2361111,North Port,FL,flash,30,White streaks of light in formation. +2014-04-10,44.0247222,-88.5425,Oshkosh,WI,other,3600,Orange lights between Oshkosh outside of Oshkosh. +2014-04-10,33.7222222,-116.3736111,Palm Desert,CA,sphere,600,Slow moving Orb seen changing colors and moving unconventionally without sound. Stopping and accelerating randomly. +2014-04-10,41.6333333,-87.6330556,Riverdale,IL,disk,199,Bright light saucer like object. +2014-04-10,33.4483333,-112.0733333,Phoenix,AZ,sphere,5,It was as big as an orange and then blinked out like it was never there. +2014-04-10,37.4947222,-120.8455556,Turlock,CA,triangle,5,Bluish/Turquoise flying object over Turlock, CA. +2014-04-10,37.9736111,-122.53,San Rafael,CA,triangle,240,Looked in the sky and saw a very bright light. Suddenly, it bagan to move. It flashed its lights off and then when it flashed back on, +2014-04-10,36.8252778,-119.7019444,Clovis,CA,oval,180,Heard loud afterburner noise. Went outside to see Oval Shaped Object in Sky, with Red Flashing Light. +2014-04-10,34.2272222,-80.6894444,Lugoff,SC,circle,30,I was looking up at the stars in my Jacuzzi when I saw a circular 3-lighted figure in the sky flying like a frisbee. +2014-04-10,43.6136111,-116.2025,Boise,ID,circle,240,MASSIVE WHITE, BURNING RED, AND GLOWING UFOS ALL OVER BOISE! +2014-04-10,47.2530556,-122.4430556,Tacoma,WA,light,360,Multiple small objects zig-zagging in the western sky. +2014-04-10,47.1041667,-122.4333333,Spanaway,WA,light,30,Two circular white lights observed moving across sky, side by side at roughly a 45 degree angle. +2014-04-10,44.7677778,-93.2775,Burnsville,MN,circle,900,Bright Star Like Shape with red and green blinking lights. +1967-04-11,36.1658333,-86.7844444,Nashville,TN,disk,1200,11 young adults sighted dark "kakhi disk or saucer above treetops, daytime; followed in [car] as it [spiraled] away. +1977-04-11,38.9905556,-77.0263889,Silver Spring,MD,disk,120,Saw a saucer hovering over the, then Hebrew Congregation on Lockwood Drive. It was less than a 100 yds from me, as clear as day. +1987-04-11,34.035,-77.8938889,Carolina Beach,NC,cigar,1800,I SAW WHAT I SAW +1991-04-11,41.5833333,-87.5,Hammond,IN,triangle,240,UFO over Hammond. +1994-04-11,31.7719444,-91.8213889,Harrisonburg,LA,disk,30,large, well-lit saucer passes only a hundred feet above house +1996-04-11,36.9741667,-122.0297222,Santa Cruz,CA,cylinder,300,Strange craft observed over Santa Cruz CA. +1997-04-11,29.5955556,-90.7194444,Houma,LA,circle,10,I WAS OUTSIDE OF MY HOME VIEWING THE COMET, AN OBJECT CROSSED MY LINE OF SIGHT. THE OBJECT WAS ROUND,AT FIRST I THOUGHT THAT IT WAS A B +1998-04-11,34.1683333,-118.605,Woodland Hills,CA,light,1200,Woodland Hills, Los Angeles Shinning craft at midday. +1998-04-11,32.7447222,-116.9980556,Spring Valley,CA,fireball,3600,Red orb lights above Spring Valley CA. +1998-04-11,36.9886111,-121.8052778,Corralitos,CA,other,6,An airbourne craft.An irregular triangle with rounded edges. Had an orange glow around it.Had 3 white lights along the bottom that illu +1999-04-11,33.6602778,-117.9983333,Huntington Beach,CA,other,3600,14 Lights lined up at approximately a 45 degree angle High point left to low point right, 7 bright white lights made up the upper \ sh +1999-04-11,39.8813889,-83.0930556,Grove City,OH,unknown,420,9 bright white to yellow to green light zipping across horizon, ungodly speed, hoover over my truck for 2 miles then took off. light wo +1999-04-11,28.5997222,-81.3394444,Winter Park (Suburb Of Orlando),FL,chevron,30,I observed a delta formation of 5 lights in the northwest horizon.The lights were manuvering radically in one small area.At one point,a +2000-04-11,48.7052778,-119.4383333,Tonasket,WA,light,10,Very bright light came from West directly under big dipper. +2001-04-11,42.1741667,-83.1794444,Riverview,MI,disk,300,10 saucers seen close to ground, rapidly switching places with one another. +2001-04-11,38.9805556,-76.9372222,College Park,MD,unknown,120,Heard booms, saw flashes, and sky was green in that direction +2001-04-11,34.0522222,-118.2427778,Los Angeles,CA,light,120,It was like a bright light,hovering left to right,and after a couple of seconds it streaked across the sky and dissapeared. +2001-04-11,30.7741667,-85.2269444,Marianna,FL,oval,120,This thing was oblong. It was flying west to east. It was incredible... I would say the thing was aprox 2000 feet up. The color was alm +2002-04-11,43.9747222,-75.9111111,Watertown,NY,other,20,flashing object moving north across constellation Leo, then turning sharply to the west (a 90% turn). +2002-04-11,36.6208333,-90.8233333,Doniphan,MO,light,60,UFO? +2002-04-11,19.7297222,-155.09,Hilo,HI,changing,2,huge silver disappearing object +2002-04-11,34.0513889,-84.0713889,Suwanee,GA,cigar,10,At approximately 22:00 pm I went onto my deck in the back of house to call our friends that live in the San Francisco area. I went outs +2003-04-11,40.7091667,-112.1008333,Magna,UT,unknown,2,A streak of smoke just appearing from over the Oaker Mountains. +2003-04-11,35.2269444,-80.8433333,Charlotte,NC,egg,45,Brief sighting of Egg/Orb heading North to South +2003-04-11,27.0591667,-80.1366667,Hobe Sound,FL,triangle,5,Triangular Object Photographed -- Not Noticed at the Time +2003-04-11,33.8752778,-117.5655556,Corona,CA,cylinder,120,Caught on video, another object in the sky +2003-04-11,36.7477778,-119.7713889,Fresno,CA,formation,1200,Triangular light pattern over Fresno CA +2003-04-11,28.6802778,-81.5097222,Apopka,FL,cigar,1800,On April 11th at 8:31 .We saw a cigar shaped U.F.O,with non-flashing red color light and flashing white lights.First the U.F.O hovered +2003-04-11,36.5022222,-88.3258333,Hazel,KY,changing,1800,morphing object emitting pulsating lights +2004-04-11,47.6480556,-121.9127778,Carnation,WA,diamond,7800,diamond shaped objects flying in a triangular formation against a clear dark background +2004-04-11,33.5091667,-111.8983333,Scottsdale,AZ,formation,20,the lights were in formation and blinked out one at a time. +2004-04-11,30.275,-89.7811111,Slidell,LA,changing,300,Morphing Chromatic Craft with Chaser +2004-04-11,33.5805556,-112.2366667,Peoria,AZ,unknown,300,Moved quickly in sky, was NOT a plane as it changed directions several times, red/white lights +2004-04-11,38.9333333,-119.9833333,South Lake Tahoe,CA,light,3600,Bright light over South Lake Tahoe, CA ((NUFORC Note: Possible sighting of Venus. PD)) +2005-04-11,42.1947222,-122.7083333,Ashland,OR,changing,600,a changing ball of light/object that vanished entirely after a few minutes +2005-04-11,34.7211111,-116.1591667,Ludlow,CA,chevron,5400,strange clouds near ludlow ca by hy 40 +2005-04-11,37.1055556,-80.6855556,Dublin,VA,disk,180,It was a disk shaped thing green and zig zaged up and down though the air and a slight humming noise +2005-04-11,44.8147222,-71.8808333,Island Pond,VT,cylinder,60,300ft cylinder moving east to west. White lights in front, blinking red lights on tail. +2005-04-11,42.3194444,-71.6416667,Northborough,MA,light,10800,Triangular formation of 20 + blue lights move around near the moon +2005-04-11,26.2375,-80.125,Pompano Beach,FL,light,900,Flashing Lights Around A Very Bright Moon +2005-04-11,34.9983333,-91.9836111,Austin,AR,fireball,3,The meteorite flashed brightly, then streaked across the sky for 2-3 seconds before going dark. +2005-04-12,64.8377778,-147.7163889,Fairbanks,AK,circle,300,5 objects danceing around in the sky that looked like balls of light. Fairbanks Ak. +2006-04-11,28.5380556,-81.3794444,Orlando,FL,oval,7,Silent, illuminated, quickly moving oval craft in early morning sky on an approximate south to north flight path +2006-04-11,33.4708333,-81.975,Augusta,GA,light,30,2 reddish/orange glowing objects in southwest sky, approximately 1500 feet above ground. +2006-04-11,43.0125,-83.6875,Flint,MI,triangle,180,Triangle Shaped Object over Flint Michigan +2006-04-11,34.005,-118.8091667,Malibu,CA,other,1200,There was a hovering, body of some sort, flashing very bright light, almost like a bouy, in the sky.... It would only flash light.... a +2007-04-11,42.325,-72.6416667,Northampton,MA,egg,15,Pure white, opaque, slightly elliptical, non-luminous thing moving at a very high rate of speed, with no apparent effect on atmosphere. +2007-04-11,41.77,-72.3055556,Coventry,CT,oval,900,An object decended from the sky in Connecticut into a woman's yard filling her view with a huge machine-like shiny object +2007-04-11,30.2669444,-97.7427778,Austin,TX,chevron,7,Rectangular glowing objects flying over Austin, TX +2007-04-11,32.9536111,-96.89,Carrollton,TX,circle,1200,Round shape, Moving slowly, changing colors. ((NUFORC Note: The star, Sirius?? PD)) +2008-04-11,39.5094444,-76.1644444,Aberdeen,MD,other,30,Silent fast moving very dim or possibly lit from reflected ground light, was either 6 or single objects, or one object with 6 discs +2008-04-11,34.1425,-118.2541667,Glendale,CA,unknown,10,Three red solid parallel lines of light moving from East to West. +2008-04-11,28.0777778,-82.7638889,Palm Harbor,FL,light,120,Green streaking light appered then went on beyound my sight +2008-04-11,37.3394444,-121.8938889,San Jose,CA,changing,900,real ufo's +2008-04-11,28.5380556,-81.3794444,Orlando,FL,sphere,10,3 ft orb downtown orlando +2008-04-11,26.9294444,-82.0455556,Punta Gorda,FL,disk,180,Airplane like UFO turns on a row of lights after coming to a complete stop in front of me. +2008-04-11,33.3963889,-96.9602778,Pilot Point,TX,teardrop,1281,((HOAX)) 9:20 a gray object hovering above the horizon, emitted no light or sounds. +2008-04-11,41.5491667,-84.1416667,Wauseon,OH,circle,30,Here is the entry directly from my astronomy journal which I wrote that night. I was driving to my parents’ house from my apartment in +2008-04-11,32.7152778,-117.1563889,San Diego,CA,flash,600,Faint blue intermittent flash like a very distant star. The object would flash for several seconds then dissapear, then would flash ag +2008-04-11,33.4016667,-86.9544444,Bessemer (Near),AL,light,300,If this was man made, we have some great technology that is incredible. +2009-04-11,46.8083333,-100.7833333,Bismarck,ND,disk,3,silver disc shaped object flying extremely fast at a low altitude +2010-04-11,34.1063889,-117.3694444,Rialto,CA,sphere,60,BRIGHT ORB LIKE SPHERE WAS SEEN DESCENDING FROM HIGH ABOVE AND THEN SUDDENLY STOPPED. THE UFO THEN SEEMED TO ZIG ZAG BACK AND FORTH BEF +2010-04-11,42.2527778,-73.7913889,Hudson,NY,triangle,600,Blinking red, constant green, and glowing white lighted triangular aircraft above Hudson, NY on 4/11/10 +2010-04-11,42.1741667,-83.1794444,Riverview,MI,light,900,Very bright light 5-10 miles away from Riverview, MI moves unusually in night sky. +2010-04-11,39.4666667,-87.4138889,Terre Haute,IN,triangle,1800,Triangular object with about 3 lights that changed from bright white to all red when it slowed down. +2010-04-11,35.4086111,-80.5797222,Concord,NC,oval,2700,Object changing colors over the Charlotte area +2011-04-11,34.0522222,-118.2427778,Los Angeles,CA,changing,3,I dont think i can cope with reality anymore... +2011-04-11,38.8402778,-97.6111111,Salina,KS,light,180,Glowing sphere moving much faster than any aircraft I've seen near that altitude. +2011-04-11,38.7508333,-77.4755556,Manassas,VA,sphere,3,Looked up above the trees in the distance and saw a golden sphere for about three seconds then it just disappeared. +2011-04-11,32.8438889,-97.1427778,Bedford,TX,circle,8,Small star like object moving at incredible speed, stopping suddenly & proceeding at a series of right andle turns +2011-04-11,42.2586111,-87.8405556,Lake Forest,IL,triangle,300,3 Triangular UFOs Sighted in Lake Forest, IL +2011-04-11,44.5647222,-123.2608333,Corvallis,OR,light,2,Round yellow-orange flickering light descended from the sky to the stadium. +2011-04-11,46.9966667,-120.5466667,Ellensburg,WA,light,240,Three bright lights northeast of Ellensburg WA +2011-04-11,47.4236111,-120.3091667,Wenatchee,WA,circle,15,Bright round light slowly moving then disappeared. +2011-04-11,46.2113889,-119.1361111,Kennewick,WA,light,10,On the night of April 11, 2011, at 10:30 pm I observed what I believe to be a UFO over the Columbia River. I just happened to be looki +2011-04-11,42.2711111,-89.0938889,Rockford,IL,light,3600,White Diskus And Strobing light +2012-04-11,41.9294444,-88.7502778,Dekalb,IL,light,1800,Two mysterious hovering changing coloreds lights in dekalb il. ((NUFORC Note: Possible star? PD)) +2012-04-11,34.2575,-88.7033333,Tupelo,MS,triangle,900,Triangle shape of lights in Northwestern sky one part of Mississippi +2012-04-11,41.2586111,-95.9375,Omaha,NE,circle,10,There was a lighting that was coming down and then stopped and dissappered in mid air. +2012-04-11,42.6827778,-89.0186111,Janesville,WI,other,15,Looked like a green falling star. Hovered I saw it brightly through my blinds. I ran out outsude. we saw it slowly falling. It was a gr +2012-04-11,34.9202778,-82.2963889,Taylors,SC,unknown,300,I see them all the time 2or 3 of them. i was watching the night sky me and my wife where looking at the stars then two stars just beg +2012-04-11,32.5325,-93.5038889,Haughton,LA,light,1500,Lights over Haughton/Bossiers Southwest and Northwest skys. +2012-04-11,42.0347222,-93.6197222,Ames,IA,fireball,30,A single fireball or ball of light with a slight tail or trail passed in an arc toward the ground. +2012-04-11,41.4994444,-81.6955556,Cleveland,OH,sphere,30,I was returning home with my mother and sister one night in April. It was about 8:00 or 9:00 because I remember it being about 30 minut +2012-04-11,39.2125,-76.7138889,Elkridge,MD,light,1200,Second ufo sighting in same spot in two days +2012-04-11,42.0972222,-88.6927778,Genoa,IL,triangle,3,It appeared as a triangular molten metal fast moving object, traveling from the south in a straight line. +2012-04-11,43.0972222,-89.5041667,Middleton,WI,sphere,4,Spherical red and white bright light moving strangely. +2012-04-11,41.3111111,-88.6097222,Seneca,IL,light,3,Saw a bright light that was white/blue/green in color while driving down interstate and then it suddenly turns off. +2012-04-11,36.1197222,-80.0738889,Kernersville,NC,light,60,Light moved across sky no sound made very hard turns and moved side to side way to fast to be a plane it moved like a balloon that was +2012-04-11,33.9133333,-78.3041667,Holden Beach,NC,light,300,The red ligt was follwiing my flashlight. +2012-04-11,33.9133333,-78.3041667,Holden Beach,NC,light,360,Bright red light with a flashing center that followed my flash light beam for over five minutes. +2012-04-11,42.9105556,-87.8605556,South Milwaukee,WI,light,4,Green glowing object descending with a trail of white nd reddish light, definatly NOT a meteor. +2012-04-11,47.3794444,-94.6038889,Cass Lake,MN,sphere,30,A light like a star but moved from the southwest sky to the southeast moving upward. +2012-04-11,42.9744444,-85.8697222,Grand Valley,MI,other,6,Bright neon green pickle shaped UFO flung across sky, seen on Lake MI Drive in Allendale +2012-04-11,28.0338889,-82.6652778,Oldsmar,FL,sphere,1800,Not normal aircraft +2012-04-11,42.3236111,-92.5991667,Reinbeck,IA,light,60,Bright lighjt manuevers over Iowa sky. +2012-04-11,36.1658333,-86.7844444,Nashville,TN,circle,60,Extremely Low white circle moving horizontally in sky vanishing. +2012-04-11,46.9005556,-97.2108333,Casselton,ND,triangle,5,Father and daughter witness a triangular craft, w/ lights in corners, streak across the sky E to W. +2012-04-11,46.9005556,-97.2108333,Casselton,ND,triangle,5,Triangle with 3 lights near the points +2012-04-11,39.6411111,-85.1411111,Connersville,IN,light,300,Bright, slow moving object with no sound moving graciously across sky. +2012-04-11,38.7838889,-90.4811111,St. Charles,MO,chevron,3,Brilliant chevron-shaped object / solid light / appeared suddenly, flashed twice, even more brightly, then vanished. +2012-04-11,39.2386111,-77.2797222,Clarksburg,MD,circle,1420,UFO Sighting Near Clarksburg, MD +2012-04-11,21.3069444,-157.8583333,Honolulu,HI,light,300,A light appeared within a stationary cloud, finally going out and the cloud dissipated rapidly. +2013-04-11,34.1808333,-118.3080556,Burbank,CA,sphere,20,https://www.youtube.com/edit?ns=1&video_id=NALTcgYla70. +2013-04-11,33.8358333,-118.3397222,Torrance,CA,light,900,3 to 5 orange lights hovering in night sky and then slowly rising and moving into clouds in a cyclic pattern. +2013-04-11,39.5538889,-104.9688889,Highlands Ranch,CO,triangle,2400,2 UFO's spotted. Triangle one got aggressive and shot at the white ball one until it left. +2013-04-11,37.775,-122.4183333,San Francisco,CA,triangle,8,Huge triangle of lights. Looked like really bright stars till it rotated and flew off almost like it was gliding. It made no noise and. +2014-04-11,36.0397222,-114.9811111,Henderson,NV,flash,5,Green light shoots across northern Henderson sky. +2014-04-11,29.7630556,-95.3630556,Houston (Katy Area),TX,sphere,3600,Three lights blue/green red and white flying in a triangle pattern around my neighborhood for an hour. Shape is sphere like +2014-04-11,47.2530556,-122.4430556,Tacoma,WA,circle,180,5 circular objects came up in a line from the east horizon for approx. 2 minutes the turned south and up above the clouds. There was n +2014-04-11,38.2541667,-85.7594444,Louisville,KY,light,300,Ufo: Louisville, 4/11/2014. +2014-04-11,34.0522222,-118.2427778,West Los Angeles,CA,other,1200,Two objects...each a 'row of lights' over the West Los Angeles area. +2014-04-11,33.4483333,-112.0733333,Phoenix,AZ,sphere,1200,Point of light or bright object in the daytime sky. +2014-04-11,31.3511111,-85.3422222,Headland,AL,flash,2,Loud explosion bang and flash of light at two different locations. +2014-04-11,39.4097222,-123.3544444,Willits,CA,circle,240,Pulsating orange light. Hovered silent, moved smoothly away and upward changing direction hesitated, moved closer, then away, out of si +2014-04-11,28.3505556,-80.7255556,Rockledge,FL,sphere,180,2 UFO bright white sphere disc crafts seen over Rockledge Fl by mother and adult son. +2014-04-11,37.2872222,-121.9488889,Campbell,CA,oval,360,Green/White Light ~ oval shaped unidentified flying object traveling in multidirectional "flash" speeds across the sky. +2014-04-11,43.1547222,-77.6158333,Rochester (?),NY,light,600,Three orbs in the sky over rochester ny. +2014-04-11,38.2833333,-90.395,Pevely,MO,disk,240,UFOs caught flying and dropping. +2014-04-11,41.0127778,-81.6052778,Barberton,OH,circle,20,Red circular glow travling N to S west side of town. +2014-04-11,38.2833333,-90.395,Pevely,MO,other,1800,Flying orb and and ultrasonic type speed. +2014-04-11,44.3763889,-90.1105556,Dexterville,WI,triangle,180,Huge Triangle Shaped Craft Sighted. +2014-04-11,44.3763889,-90.1105556,Dexterville,WI,triangle,180,What Were They, And Did One Explode? +2014-04-11,45.0608333,-94.0730556,Howard Lake,MN,triangle,600,Large, triangular craft with three bright orange-yellow lights that faded out; was witnessed for approx. 10 minutes. +2014-04-11,55.3422222,-131.6461111,Ketchikan,AK,fireball,120,Fireball like object seen above the small island city of Ketchikan, Alaska. +2014-04-11,41.3947222,-73.4544444,Danbury,CT,light,60,Bright orange orb near west side reservoir. +2014-04-11,39.7683333,-86.1580556,Indianapolis,IN,changing,20,Large gray stingray shaped object chases fighter plane. +2014-04-11,40.63,-74.4277778,North Plainfield,NJ,light,240,Large blue light observed traveling at a slow steady course from north to south over northern New Jersey. +1953-04-01,42.7761111,-71.0777778,Haverhill,MA,chevron,2,Historical account, Haverhill MA +1953-04-01,42.375,-71.1061111,Cambridge,MA,sphere,180,Two red-orange lights skirted Boston rooftops in opposite directions, then went over my dormitory in tandem. +1959-04-01,25.7738889,-80.1938889,Miami,FL,sphere,2700,1959 childhood encounter with a spherical, faceted object, that had landed in my back yard in Miami. +1960-04-01,29.7630556,-95.3630556,Houston,TX,other,300,Sharp right angle turn in flight direction after stopping in mid-flight +1961-04-01,40.8202778,-76.2011111,Shenandoah,PA,light,120,UFOs spotted coming from behind the moon +1963-04-01,32.2216667,-110.9258333,Tucson,AZ,triangle,600,Observed in western sky @ about 100 ft. flying to the south at about 10 to25 mph Flying in formation as geese would fly +1965-04-01,29.5519444,-98.2694444,Schertz,TX,disk,15,Flying Disk seen approx 150 ft above ground near Randolph AFB +1965-04-01,40.864444399999996,-75.8113889,Nesquehoning,PA,triangle,60,3 lights in a triangle over Nesquehoning, PA; also reported over Shenandoah, PA - April 1, 1965 +1966-04-01,39.2786111,-93.9766667,Richmond,MO,disk,3600,Four Teenagers Site UFO on Country Road near Rayville, Missouri in 1966. +1966-04-01,42.3166667,-72.1263889,New Braintree,MA,circle,1800,A large red glowing "plasma cloud" appeared over the woods, then at least 11 smaller white circular objects were seen. +1967-04-01,30.8325,-83.2786111,Valdosta,GA,disk,180,The craft moved about in the sky just like a hummingbird or a bee. It looked to be the size of a VW Bug. +1967-04-01,36.175,-115.1363889,Las Vegas,NV,light,120,pulsating white round light that changed between white and blue +1967-04-01,25.4683333,-80.4777778,Homestead,FL,unknown,7200,Red lights along the side, white light in front, in a search-like pattern: slow over water, very fast over land. +1967-04-01,25.7738889,-80.1938889,Miami (And Vicinity),FL,other,18000,Witness tracked UFO's and USAF F-4 "Phantoms" on radar in Florida during 1967. +1968-04-01,32.0833333,-81.1,Savannah,GA,circle,600,the date above is a guess as it was many years ago - i was headed east oh hyway 80 and saw in the north east sky +/- 7 spherical lights +1969-04-01,33.8388889,-83.9008333,Loganville,GA,cigar,15,Cigar shaped silver object larger than schoolbus, witnessed by kids and bus driver +1971-04-01,37.1261111,-122.1211111,Boulder Creek,CA,cigar,1200,I saw the craft slowly and silently gliding along a fire trail in the Santa Cruz mountians where I usually went on walks to chant on my +1972-04-01,39.7683333,-86.1580556,Indianapolis,IN,disk,3600,Indianapolis Multi-Colored Round object 1972-74 chased by fighter jets +1972-04-01,33.1383333,-95.6008333,Sulphur Springs,TX,disk,600,1971-1972 Saucer Siting, Northeast Texas +1973-04-01,31.3380556,-94.7288889,Lufkin (General Area, East Texas),TX,disk,900,Family encounters with glowing objects, spanning 50 yrs., for three members. +1974-04-01,39.7294444,-104.8313889,Aurora,CO,changing,5,Ever changing Object sighted, Aurora, Colorado, 1974 +1975-04-01,41.4277778,-78.5611111,St. Marys,PA,cigar,2,Cigar shaped ufo hovering over St. marys pa then shot across sky about 1975 +1975-04-01,33.4597222,-94.4152778,New Boston,TX,light,1800,In 1975 while having a cookout for the residents of out apartment complex I witnessed 5 lighs in a V- shaped flying pattern.THey did no +1975-04-01,39.5297222,-119.8127778,Reno,NV,cigar,120,A cigar-shaped craft about 100-200 feet, hovering, yellowish-orange with red and white lights. 500 Lights On Object0: Yes +1977-04-01,38.2541667,-85.7594444,Louisville,KY,light,35,Three lights moving in the sky.Two white,one red. The size of a small aircraft light. Form a triangle and then shoot off backwards. +1978-04-01,36.7280556,-108.2180556,Farmington,NM,circle,600,Daytime ufos that appeared above Farmington New Mexico in 1978. +1978-04-01,41.2561111,-83.0516667,Green Springs,OH,cylinder,259200,The begining of the lights in the night +1979-04-01,36.6777778,-121.6544444,Salinas,CA,disk,60,Disc shaped saucer craft seen about 100 feet away +1979-04-01,37.8716667,-122.2716667,Berkeley,CA,rectangle,1800,Rectangler in shape, lights all the way around it, no noise, darted up and down, left to right stopping very fast, maze like decoration +1979-04-01,35.8825,-80.0822222,Thomasville,NC,triangle,120,2 sighting a month apart, 1st being red lights engulfing my car, 2nd being 3 triangle crafts in a circle formation with white lights. +1980-04-01,33.6411111,-117.9177778,Costa Mesa,CA,changing,900,Pulsing, mercury in appearance, spinning on an axis. Looked as if maybe living or organic in nature. +1981-04-01,39.8769444,-90.3733333,Arenzville,IL,other,60,Orange, house-shaped craft +1985-04-01,40.7141667,-74.0063889,New York City,NY,changing,600,Strange thing that changed into a pearl. +1985-04-01,41.2008333,-73.3811111,Weston,CT,other,2700,Dome shaped object in Weston, CT. Spring 1985 +1986-04-01,41.85,-87.65,Chicago,IL,sphere,10,SOCCER-SIZED CRYTAL-LIKE SPIKED BALL, Easily Missed If One Is Not Looking Directly At It. +1986-04-01,45.1858333,-109.2461111,Red Lodge (6 Mi N; Hwy 212),MT,unknown,90,Definitely an aircraft but totally silent and very slow. +1986-04-01,25.9013889,-97.4972222,Brownsville,TX,disk,1200,UFO tries to communicate +1987-04-01,34.005,-118.8091667,Malibu,CA,fireball,5,April, 1987 - Bright Bluish Crimson Ball flying over the Malibu Canyons +1989-04-01,39.0638889,-108.55,Grand Junction,CO,changing,1800,F.A.A. gives false report of UFO over Western Colorado +1991-04-01,37.6922222,-97.3372222,Wichita,KS,triangle,3600,Three orange lights +1991-04-01,41.3722222,-73.7338889,Mahopac,NY,light,300,Bright, glowing ball of light silently hovered over condo complex, then flew over condos parallel to ground. +1991-04-01,43.6883333,-70.7941667,Limerick,ME,disk,900,disk, spheres +1992-04-01,42.7652778,-71.4680556,Nashua,NH,oval,600,Huge oval craft with windows and colored lights running along the bottom of it. No noise. Sitting over river. 500 Lights On Objec +1992-04-01,43.5408333,-116.5625,Nampa,ID,sphere,300,In 92' I saw a huge green orb in the middle of the road near the Nampa airport +1992-04-01,40.6836111,-73.5105556,Wantagh,NY,rectangle,180,Square object with a textured surface that flipped end over end as it slowly moved through the sky. +1992-04-01,37.6305556,-122.41,San Bruno,CA,other,180,Bell shape object w/white light took off faster than we could believe driving home on 280nb +1993-04-01,35.2619444,-81.1875,Gastonia,NC,formation,432000,A triangle formation seen each morning before daybreak for five days off Bud Wilson Road. +1994-04-01,33.4508333,-98.9241667,Megargel,TX,unknown,600,Missing Time: 10 minutes erased from my life +1994-04-01,44.295,-93.2686111,Faribault,MN,fireball,4,Observed a green fireball flying 30 ft above and along a river. It flew parallel to the terrain and emitted a long tall w/smoke & spark +1994-04-01,40.6213889,-79.1527778,Indiana,PA,disk,10,we saw a saucer shaped object with a halo around it behind it followed three jets with after burners engaged colors appeared to be blue +1994-04-01,35.1425,-119.4555556,Taft,CA,light,15,White light seen at 10:30 pm traveling from NW to SE at very high rate of speed.Slows momentarily to beam down conical light, then resu +1995-04-01,44.6366667,-123.1047222,Albany,OR,other,120,There were bright bursts of color in a concentrated area of cloud for a couple of minutes. +1995-04-01,42.2041667,-72.6166667,Holyoke,MA,light,1200,Strange moving light over Holyoke Ma in 1995 +1996-04-01,35.5272222,-86.3336111,Wartrace,TN,unknown,300,Awoke to being chased by a bright light.. Thought it was a nightmare. Next afternoon was questioned by parent about bright lights. +1996-04-01,36.0505556,-93.5183333,Kingston,AR,triangle,180,low elevation above trees hovering, no sound. triangle shape.dull metalic color w/ 3 pulsating dim lights on each corner. calm experien +1996-04-01,40.2736111,-76.8847222,Harrisburg,PA,formation,3600,Light formations over Harrisburg, PA on 4/1/96. +1996-04-01,40.1738889,-80.2463889,Washington,PA,unknown,120,UFO encounter along a country road +1996-04-01,39.2372222,-119.5919444,Dayton,NV,disk,36000,Made Eye Contact.... +1996-04-01,41.0408333,-73.715,Purchase,NY,triangle,1800,The Westchester Triangle 96? +1997-04-01,37.4527778,-76.3852778,Foster,VA,cigar,120,From Halle-Bopp's distance, a huge ship sped into the atmosphere, slowed silently and closely overhead, and zoomed back into space. +1997-04-01,29.7630556,-95.3630556,Houston,TX,other,120,Large Bus sized cloud - emanating several beautiful colors from center but not making it past outer edge of the cloud 2 minute sighting +1997-04-01,30.5080556,-97.6786111,Round Rock,TX,triangle,900,We never heard any aircraft noises. +1997-04-01,25.4683333,-80.4777778,Homestead,FL,unknown,7200,Red lights along the side, white light in front, in a search-like pattern: slow over water, very fast over land. +1997-04-01,35.6869444,-105.9372222,Santa Fe,NM,unknown,10,1997 Santa fe, MN A enormous "metropolis" looking ship landing and our memories wiped away, lost time +1997-04-01,34.8697222,-111.7602778,Sedona,AZ,sphere,300,bright red pulsing orb that performed anti-gravity manuevers, seen from first plateau at Cathedral Rock... It was a little north of whe +1997-04-01,36.1172222,-86.0277778,Brush Creek,TN,unknown,45,The object came up over a group of trees at what seemed to be a very low altitude. Proceeded NNE until I guessed it to be somewhere nea +1998-04-01,34.1425,-118.2541667,Glendale,CA,circle,2,Green globe flying relatively low moving with incredible speed through the valley between two small mountain ranges. +1998-04-01,41.8238889,-71.4133333,Providence,RI,circle,240,Mostly sunny sky very large stayed about 5 minutes +1998-04-01,18.4141667,-66.3316667,Vega Alta (Puerto Rico) (North Side),PR,sphere,60,At around 8:00 pm on an Apirl evening NASA was launghing a series of rockets into space from a neiboghring town {manati}. this took pla +1998-04-01,41.4308333,-81.5991667,Henry County,OH,triangle,7200,Bright light, fireball, and triangular craft, lasted a few hours. +1999-04-01,38.5130556,-90.4358333,Fenton,MO,flash,4,was talking with the sales manager of one of my best customers on the telephone. by chance i looked out the window and saw a flash of c +1999-04-01,28.5380556,-81.3794444,Orlando,FL,sphere,600,i was about 20 miles away from i don,t know what it was i do know that it was not a plane of anykind i have ever seen what i saw was a +1999-04-01,43.4966667,-73.7766667,Warrensburg,NY,rectangle,300,The UFO we witnessed was shaped with 2 boxed like squares at each end connected by a long like rod between the 2. The back of the UFO h +1999-04-01,32.7152778,-117.1563889,San Diego (Southbay),CA,circle,1500,WHILE TAKING MY POLICE PARTNER TO HIS HOME IN THE SOUTH BAY, WE WERE DRIVING SOUTHBOUND ON INTERSTATE 5 NEAR IMPERIAL BEACH, CA., WHEN +1999-04-01,40.7141667,-74.0063889,New York City (Staten Island),NY,other,7200,Strange Brush fires near Verazanno Bridge +2000-04-01,34.4838889,-114.3216667,Lake Havasu City,AZ,light,600,Two reddish white lights moving nw direction, lights were not flashing we saw bright lights being dropped from these two moving lights. +2000-04-01,37.9747222,-87.5558333,Evansville,IN,sphere,600,noticed a dark stationary object hanging just below the cloud base +2000-04-01,33.6,-117.6711111,Mission Viejo,CA,formation,180,Formation high-flying 'pearls' in a daylight sky. +2000-04-01,37.6938889,-85.8591667,Elizabethtown,KY,disk,20,Silver disk shaped object +2000-04-01,41.85,-87.65,Chicago,IL,sphere,30,"glass" sphere tracking plane en route to Chicago Airport - April 2000 +2000-04-01,32.9594444,-117.2644444,Del Mar (Rancho Sante Fe),CA,formation,600,Line of orange lights that would go off, on and slowly floated rising and falling. +2000-04-01,33.6602778,-117.9983333,Huntington Beach,CA,light,135,Bright star with red flashing +2000-04-01,44.4816667,-85.9225,Copemish,MI,circle,600,We spotted the object hovering over the road at tree top level directly in front of us. As we drove closer It moved above the trees on +2001-04-01,48.1183333,-123.4294444,Port Angeles,WA,unknown,300,Sighting of a UFO that could not be explained by a physics professor / pilot. +2001-04-01,46.7325,-116.9991667,Moscow,ID,changing,720,Pulsating Orbs, molding into and out of each other. +2001-04-01,36.2083333,-115.9830556,Pahrump,NV,light,600,possible explanation for strange sights around Nellis AFB 3/30/01 +2001-04-01,45.0563889,-92.8058333,Stillwater,MN,triangle,300,About two weeks ago my wife and I (living in Stillwater, MN) were driving to our new apartment. In fact it was the first night we were +2001-04-01,45.9047222,-122.7427778,Woodland,WA,oval,10,A bright white light that zipped away and within an instant disappeared +2001-04-01,42.0083333,-91.6438889,Cedar Rapids,IA,triangle,240,Hovered over tree tops next to I380 and angled toward highway before speeding off with flashing lights +2002-04-01,34.4838889,-114.3216667,Lake Havasu City,AZ,light,300,Pulsating Lights Make "Drops" in Arizona +2002-04-01,38.9516667,-92.3338889,Columbia,MO,sphere,120,MISSOURI INVESTIGATORS GROUP Report: Metallic sphere flying from south to north, relatively slowly. +2002-04-01,38.9516667,-92.3338889,Columbia,MO,sphere,120,Small metallic sphere flying slowly South to North in broad daylight +2002-04-01,36.7944444,-108.0797222,Flora Vista (North Of; Hwy. 574),NM,triangle,180,Black Triangular Craft Emits Buzzing Sounds. +2002-04-01,30.3319444,-81.6558333,Jacksonville,FL,sphere,30,((HOAX??)) One april day i saw a Ufo and it has changed my life. +2002-04-01,47.6063889,-122.3308333,Seattle,WA,rectangle,60,A large rectangular shadow +2002-04-01,40.7519444,-80.3194444,Beaver Falls,PA,light,2,Star turns OFF like a light bulb. +2002-04-01,33.4919444,-105.3833333,Lincoln County,NM,light,2700,More details on the New Mexico Light Shows +2003-04-01,40.345,-74.1844444,Holmdel,NJ,fireball,1,High speed blue white streak across the sky traveling at low attitude:streak appeared solid, then tailed off. +2003-04-01,42.3516667,-71.8638889,Holden,MA,rectangle,300,The vehicle looked like a "flying car" with three large bright headlights flew slowly without sound and at tree top level. +2003-04-01,42.3638889,-71.8813889,Jefferson (Holden),MA,changing,300,Three bright white lights at tree top level, then a half circle reddish orange light, and the three lights moving silently forward +2003-04-01,40.5677778,-84.1936111,Wapakoneta,OH,light,120,At work, approx 5:00am (still dark out) I was smoking a cigarette outback with a co-worker when I saw a large bright circular light mov +2003-04-01,35.7077778,-79.8138889,Asheboro,NC,cylinder,180,Large, shiny, motionless cylinder. +2003-04-01,41.8488889,-72.5722222,South Windsor,CT,oval,90,2 ufos seen so.windsor connecticut� +2003-04-01,33.4483333,-112.0733333,Phoenix,AZ,triangle,60,Two massive triangular-shaped objects in a wing to wing formation, hovering over a casino parking lot. +2003-04-01,40.7522222,-78.4013889,Viola,PA,triangle,20,Steady paced, low flying craft with 3 auburn lights at each point. +2004-04-01,31.7586111,-106.4863889,El Paso,TX,cigar,20,SUN LIGHT BLINKING LIGHT +2004-04-01,29.5072222,-95.0947222,League City,TX,disk,300,i thought they were birds at first buzzing around. But then they started to make these weird formations. And then i saw some reflecti +2004-04-01,38.7072222,-121.28,Citrus Heights,CA,other,1800,In broad daylight in the middle of town, myself, my friend, and strangers watched in amazment and puzzlement. +2004-04-01,34.1336111,-117.9066667,Azusa,CA,sphere,20,UFO sighting in azusa, ca, usa in daylight silver orb 200-300 feet above ground. 2 Witness'. +2004-04-01,32.6516667,-96.9080556,Duncanville,TX,egg,300,red orbs going west very fast whistling +2004-04-01,27.9091667,-82.7875,Largo,FL,light,60,bright light spotted in Largo over gulf of Mexico took off into space +2004-04-01,35.4736111,-81.2547222,Lincolnton,NC,cigar,60,Cigar shape white silvery object seen at Est Attiude of 15ꯠ,traveling at a high rate of speed out of the West heading due East at 18 +2004-04-01,46.4477778,-120.4191667,Wapato,WA,light,600,Watched one bright speeding light go across the sky, head towards the moon, and was met by another bright speeding light and they cross +2004-04-01,44.9444444,-93.0930556,St. Paul,MN,formation,180,HBCCUFO CANADIAN REPORT: My wife noticed the flying "V" formation heading due south +2004-04-01,30.3655556,-88.5561111,Pascagoula,MS,chevron,20,Hovering UFO in the shape of stealth plane outlined by moonlight on the Mississippi Coast. +2004-04-01,30.1763889,-85.8055556,Panama City Beach,FL,light,900,Multiple flights over panama city beach florida chased by aircrafts +2005-04-01,36.8252778,-119.7019444,Clovis,CA,circle,15,UFO MAKES HIGH SPEED TURNS +2005-04-01,35.1494444,-90.0488889,Memphis,TN,disk,180,Huge disk seen hovering dead still in sky with 6 white lights on bottom and rotating red lights, Memphis, TN +2005-04-01,45.3733333,-84.9552778,Petoskey,MI,sphere,7,I am a Christian Missionary. I've spent nearly a year debating what I saw; trying to conclude that it was actually cause by human hand +2005-04-01,34.8697222,-111.7602778,Sedona,AZ,formation,60,Three lights in a triangle over Sedona, AZ +2005-04-01,39.1619444,-84.4569444,Cincinnati,OH,sphere,3600,2 UFOs sighted by Cincinatti Airport +2005-04-01,38.8113889,-90.8527778,Wentzville,MO,chevron,60,MISSOURI INVESTIGATORS GROUP REPORT: A gigantic silver boomerang object appeared right over the memorial and hovered there. +2005-04-01,32.2216667,-110.9258333,Tucson,AZ,triangle,60,three points of light in the shape of a triangle moving across the sky +2005-04-01,34.1866667,-118.4480556,Van Nuys,CA,circle,180,The circular "star" appearing object moved slowly to the east at an extreme altitude and disappeared. +2006-04-01,42.3583333,-71.0602778,Boston,MA,fireball,2,At 12:52 am on Saturday morning April 1, I saw a large fiery orange ball arch across the sky from NW to SE (I think). It was the about +2006-04-01,42.9675,-87.8775,St. Francis,WI,teardrop,240,Two ufo's in my neighborhood traveling around houses +2006-04-01,36.1538889,-95.9925,Tulsa,OK,oval,1200,A object like the moon, but the light of the Sun with a blue glow around it , it did not move some said there was a boom sound X3 +2006-04-01,39.8366667,-105.0366667,Westminster,CO,light,10,Single hovering light departed north +2006-04-01,32.3880556,-100.8641667,Colorado City,TX,diamond,300,UFO IN COLORADO CITY TX- GLOWING METALLIC OBJECT THAT MOVED VERY FAST +2006-04-01,40.0175,-90.4241667,Beardstown,IL,sphere,15,Yellow-orange sphere with a long green tail. +2006-04-01,38.6272222,-90.1977778,St. Louis,MO,light,2,There was a sudden appearance in the sky of a bright green light travelling extremely fast from north to southest with a bright green t +2006-04-01,35.8238889,-80.2536111,Lexington,NC,flash,1500,STATIONARY FLASHING LIGHT. +2006-04-01,25.7738889,-80.1938889,Miami,FL,circle,35,Red, round object traveling east to west +2006-04-01,25.7738889,-80.1938889,Miami,FL,triangle,30,Another object, this time, red and triangle shaped. +2006-04-01,40.4591667,-90.6716667,Macomb,IL,triangle,15,Glowing green triangle going east the time was about ten at night, I could see a neon green triangl lit throught the clouds, there wa +2007-04-01,35.5847222,-80.8102778,Mooresville,NC,fireball,10800,Star appearance with rapid accelerations and instant major changes of velocity for over two hours witnessed by 5 people with some video +2007-04-01,47.5675,-122.6313889,Bremerton,WA,unknown,60,Long strip of flashing red lights in a row climbing up through the clouds. +2007-04-01,35.1494444,-90.0488889,Memphis,TN,triangle,6300,At aprox. 8:20pm I saw a craft in the sky slowly moving from the east to the west. The craft stoped and rotated and other lights were v +2007-04-01,39.9402778,-82.0133333,Zanesville,OH,light,180,Flash of orange lightning in a cloud and then a bright fast moving light appeared near the cloud. +2007-04-01,35.6838889,-82.0094444,Marion,NC,circle,300,Lights with no aviation lights visable every night with large binoculars +2007-04-01,39.7911111,-79.9130556,Greensboro,PA,oval,300,Object was moving s.w to n.e. rounded in front straighter in rear about 150 ft x 50 ft about 100 foot off ground moving about 15 mph no +2007-04-01,34.8172222,-97.4055556,Maysville,OK,light,20,Bright light moves oddly then vanishes completely +2007-04-01,47.2372222,-121.1777778,Easton,WA,oval,30,Round object with Bright red and orange lights on the right hand side of the road going eastbound hovering between the trees. +2007-04-01,42.4666667,-70.95,Lynn,MA,circle,900,Red light over Lynn, MA. +2007-04-02,27.9011111,-81.5861111,Lake Wales,FL,light,900,additional information to previous report on area, also piggyback of another sighting. +2008-04-01,34.09,-117.8894444,Covina,CA,triangle,105,Large Triangle shaped Lights(object) passed across the sky in total silence +2008-04-01,33.2097222,-87.5691667,Tuscaloosa,AL,other,180,Trapezoid shaped hovering craft with dark red flashing lights moved side to side directly above me. +2008-04-01,41.6,-87.9380556,Homer Glen,IL,light,240,On 4/1/08 at 05:30 I saw three objects with very intense bright white strobes over Homer Glen Illinois. +2008-04-01,30.0927778,-93.7363889,Orange,TX,cigar,45,LARGE DARK CIGAR SHAPED CRAFT +2008-04-01,44.8994444,-109.1502778,Clark,WY,disk,180,Classic bell shape, glowed all over with flashing light on top. +2008-04-01,28.2713889,-82.7197222,Port Richey,FL,triangle,300,We returned from dinner at around 9:30pm in april when we seen something about as big as the house moving from east to west at slow spe +2008-04-01,33.8838889,-84.5144444,Smyrna,GA,fireball,15,Fireball over Smynra Georgia USA 4/1/2008 21:30 falling straight to the ground over Dobbins AFB +2009-04-01,41.4958333,-87.8486111,Frankfort,IL,triangle,7200,Triangle UFO in Frankfort ILLINOIS +2009-04-01,38.9516667,-92.3338889,Columbia,MO,unknown,60,MISSOURI INVESTIGATORS GROUP REPORT: It was a cloudless night except for a round shape black cloud covering the moon. +2009-04-01,36.8252778,-119.7019444,Clovis,CA,formation,600,8 to 10 multi colored objects flying rapidly fast over Clovis, CA. +2009-04-01,41.5188889,-87.8030556,Frankfort Square,IL,triangle,900,Following a Triangular UFO +2009-04-01,29.6513889,-82.325,Gainesville,FL,changing,45,One fiery ball that grew into a crescent shape, then an apparent battle between 2 jets and a small craft. +2009-04-01,26.7080556,-80.2308333,Royal Palm Beach,FL,formation,15,Triangle shaped flying object over Royal Palm Beach, Fl +2009-04-01,33.0575,-89.5875,Kosciusko,MS,triangle,45,3 triangular shaped objects "gliding" over the house. All 3 had this orange-white transparent glow. +2010-04-01,45.5380556,-121.5672222,Mt. Hood (Ski Bowl),OR,light,600,Portland. +2010-04-01,46.9833333,-120.4158333,Kittitas,WA,other,20,Strange lights seen near Ellensburg Washington starting to happen more often. +2010-04-01,26.1416667,-81.795,Naples,FL,circle,300,White, slow circle +2010-04-01,39.9547222,-82.8122222,Reynoldsburg,OH,other,300,Huge doughnut shaped object hovering over the trees. +2010-04-01,41.9852778,-72.4466667,Somers,CT,other,600,Military flyovers more common, no miltary base for miles +2010-04-01,42.2494444,-71.0666667,Milton,MA,fireball,10,I just saw a green fireball going across the sky, fairly close to the ground, and I saw it disintegrate quickly. +2011-04-01,42.9763889,-88.1083333,New Berlin,WI,other,720,Starburst over New Berlin +2011-04-01,28.0833333,-80.6083333,Melbourne,FL,oval,3600,There were about 10 lights/ufos traveloing in pairs over south/east direction,i have video of this in you tube and face book, you can f +2011-04-01,37.6922222,-97.3372222,Wichita,KS,egg,1200,My neighbors and I were on our way to work. As we were leaving our garages a huge light was seen by Scott, my next door neighbor. He ye +2011-04-01,41.6,-87.9380556,Homer Glen,IL,light,2700,Sightings of 7 different objects in the night sky over Homer Glen, Illinois +2011-04-01,39.7047222,-105.0808333,Lakewood,CO,triangle,20,My husband, son and I were outside and my husband said what the **** is that? So my son and I stood up and I noticed a triangle shape o +2011-04-01,41.14,-104.8197222,Cheyenne,WY,light,5,2 groups of lights rapidly moving north over Cheyenne Wy +2011-04-01,35.0886111,-92.4419444,Conway,AR,other,4,My wife and I saw a star-like object flying at an incredible speed at an altitude lower than commercial flight. We were only able to fo +2011-04-01,33.5927778,-79.0088889,Garden City,SC,disk,120,Bright orange disk shaped objects over Garden City SC. +2011-04-01,26.6402778,-81.8725,Fort Myers,FL,unknown,1800,20 red/orange objects over southwest florida +2011-04-01,43.635,-95.9325,Adrian,MN,triangle,5,3 round lights in triangle shape moved across sky at extreme rate of speed, looked like a falling star at first but then as it came mor +2011-04-01,46.7311111,-120.6983333,Naches,WA,sphere,600,Multiple sightings of blue orbs joining and seperating low in the sky near Bumping Lake, Chinook Pass WA. +2012-04-01,26.6155556,-80.0572222,Lake Worth,FL,triangle,2,Looking up, something caught my attention although not sure how or why, saw this perfectly quiet and faint object, gliding through sky. +2012-04-01,28.5380556,-81.3794444,Orlando,FL,circle,60,Circular craft photographed with camera/ phone over highway, in Orlando, Florida. +2012-04-01,28.5380556,-81.3794444,Orlando,FL,disk,60,UFO over highway in Orlando, Florida, April 1st 2012! +2012-04-01,48.051944399999996,-122.1758333,Marysville,WA,other,300,Three chinook ch-47 helicopters moving south to north seemed to go 30mph the only mention of such aircraft was from marysville several +2012-04-01,48.2766667,-116.5522222,Sandpoint,ID,circle,60,Picture the NBC peacock tail. Expand this picture to full circle. Now give this picture three dimensions like multiple tear drops cot +2012-04-01,42.8780556,-73.1972222,Bennington,VT,triangle,60,I looked down and they were gone. +2012-04-01,34.1897222,-118.1302778,Altadena,CA,oval,480,Yes, I appreciate that today is April 1. However, I would find it difficult to explain what I saw this evening as an April fools joke. +2012-04-01,35.0802778,-96.3988889,Holdenville,OK,unknown,20,Green lights over oklahoma +2012-04-01,38.525,-89.1333333,Centralia,IL,oval,2,Bright light, oval shaped craft, went really fast. +2012-04-01,42.4391667,-123.3272222,Grants Pass,OR,sphere,600,Bright red round object moving from north to south +2012-04-01,34.7697222,-84.9702778,Dalton,GA,sphere,7200,Craft moving west with random sequence of colored light emission. +2012-04-01,35.4366667,-94.3480556,Van Buren,AR,light,3600,Strange flashing lights in western sky. +2012-04-01,39.4561111,-77.9641667,Martinsburg,WV,light,600,Since I am not allowed to smoke in the house, I have to go outside on the deck. The first night it had happened, I was sitting in the c +2013-04-01,32.8577778,-97.2544444,Watauga,TX,sphere,2,4 white spheres moved in V formation across sky. +2013-04-01,41.9583333,-70.6677778,Plymouth,MA,fireball,20,A orange ball traveling above tree line looked like metorite with no tail then went out. +2013-04-01,38.8338889,-104.8208333,Colorado Springs,CO,circle,1800,Colorado Springs sighting of multiple UFO's. +2013-04-01,34.2255556,-77.945,Wilmington,NC,chevron,2,Chevron shaped lights that flashed & disappeared in the northeast sky. +2013-04-01,32.7152778,-117.1563889,San Diego,CA,changing,1800,Line of 5 white light that looked like it was towed by a green light always kept formation and was going to land. +2013-04-01,37.3394444,-121.8938889,San Jose,CA,formation,180,5-6 bright lights traveling southeast in a vertical formation, above three bright lights moving independently, and sporadically. +2013-04-01,37.3394444,-121.8938889,San Jose,CA,light,30,3 lights in the sky over San Jose, CA on 04/01/2013 - 20:31 / 8:31pm. +2013-04-01,44.0522222,-123.0855556,Eugene,OR,light,1800,Six blinking lights in formation, glide up and then down again over Eugene Or. +2013-04-01,28.5491667,-81.7730556,Clermont,FL,fireball,600,Multiple UFOs fly into the sky and disappear in south Clermont, FL +2013-04-01,40.6027778,-86.8672222,Brookston,IN,triangle,10,Very dimly lit triangular-shaped object over Brookston, Indiana +2013-04-01,47.239444399999996,-122.3558333,Fife,WA,light,5,High-speed, high-altitude, erratic fight path; heading south east. +2013-04-01,37.6938889,-85.8591667,Elizabethtown,KY,light,180,Red Ball UFO in Elizabethtown, KY in 2013 +2013-04-01,40.7161111,-73.8505556,Forest Hills (Queens),NY,light,180,4 bright, round lights hovering above me. +2013-04-01,33.1958333,-80.0133333,Moncks Corner,SC,triangle,120,Triangular Craft Flies Above Home and Goes Lights Off +2013-04-01,40.3355556,-75.9272222,Reading,PA,light,1,Possible UFO Sighting over eastern Pa 10:05 PM. +2014-04-01,26.525,-80.0666667,Boynton Beach,FL,circle,240,Oh my gosh!!! 1st UFO sighting. +2014-04-01,42.2586111,-79.3480556,Centralia,NY,other,60,Weird looking object hovering,then moving quickly. +2014-04-01,38.8338889,-104.8208333,Colorado Springs,CO,oval,3600,Very bright round light moving low in the sky +2014-04-01,40.2972222,-74.73,Lawrenceville,NJ,circle,60,Fiery ball evading jet. +2014-04-01,42.9336111,-72.2786111,Keene,NH,diamond,300,Colored orb followed by very large ufo. +2014-04-01,38.7838889,-90.4811111,St. Charles,MO,triangle,180,Four orange lights, similar looking to candle flame or fire balls of some sort, in a triangular formation floating across the sky with +2014-04-01,27.1675,-80.2663889,Palm City,FL,fireball,5,Another red orb in our neighborhood. +2014-04-01,34.4838889,-114.3216667,Lake Havasu City,AZ,light,60,Yellowish to bright white color. +2014-04-01,39.9522222,-75.1641667,Philadelphia,PA,other,1200,5 huge lights in every direction of the skies +2014-04-01,42.9316667,-76.5663889,Auburn,NY,triangle,900,Triangle-shaped craft splits in perfect halves and goes in opposite directions. +2014-04-01,19.8997222,-155.1291667,Hakalau,HI,fireball,10800,Over 30 UFOs hovering/flying above Big Island. +2014-04-01,30.0797222,-95.4169444,Spring,TX,light,1200,Blue and red lights in sky over suburban Spring, Tx. +1968-04-12,36.7533333,-86.1905556,Scottsville,KY,disk,600,Disk With Lights Hovering Over My Grandparents House +1975-04-12,29.7630556,-95.3630556,Houston,TX,unknown,30,Unusual movements observed of a bright object flying over the Houston skyline. +1979-04-12,41.8136111,-71.3705556,East Providence,RI,chevron,70,V shaped (Chevron shaped ) Craft appeared to just clear the top of the Water Tower +1981-04-12,34.5158333,-91.8713889,Tomberlin,AR,changing,60,bright light hoovering along car at slow speed on foggy nite +1982-04-12,34.7647222,-83.0641667,Walhalla,SC,other,180,me and my father was traveling up a mountain road in 1981 or 82 when we was going thru highsaw gap,the time was at dusk and not quite c +1986-04-12,41.7108333,-87.7580556,Oak Lawn,IL,other,1200,A silent motion drone craft appeared in my house. It was similar to a top and the color was similar to amber . +1988-04-12,38.791,-94.2673,Pleasant Hill,MO,disk,300,UFO over Pleasant Hill +1992-04-12,28.3322222,-98.1172222,George West,TX,oval,180,1992 April UFO Sighting North East Bound On US HWY 59 between Clegg and George West Texas +1995-04-12,40.1213889,-75.3402778,Norristown,PA,circle,1800,large circular craft hovering over river underneath a bridge +1997-04-12,34.1480556,-117.9980556,Monrovia,CA,formation,60,Three (3)objects flying over Monrovia +1998-04-12,34.0336111,-117.0422222,Yucaipa,CA,light,300,we saw a round bright light in the sky, it had no flashing lights. it did not seem to move very fast. after a few min we saw the brigh +1998-04-12,35.8888889,-79.8080556,Level Cross,NC,unknown,420,Two rings and a sphere shape craft +1998-04-12,41.4994444,-81.6955556,Cleveland,OH,light,300,I was out enjoying the stars (clear night) when suddenly there was a light in the sky, as if the object were a falling star or satelite +1998-04-12,39.3722222,-104.8555556,Castle Rock,CO,triangle,180,I was driving in my car when two triangle shaped crafts (lights were seen) hovering over the Castle Rock area, they seemed to be landin +1998-04-12,48.4111111,-114.3366667,Whitefish,MT,unknown,5400,Saw bright "star" that changed into red, white, and blue lights. Emitted a beam of light in a horizontal sweep of the sky. Darted hor +1998-04-12,35.1594444,-84.8766667,Cleveland,TN,triangle,120,The house is a small two story, 25 yards from the Cleveland Hardwick airport in Cleveland Tennessee. The airport beacon would shine in +1999-04-12,33.0416667,-116.8672222,Ramona,CA,light,60,A small light flew across the sky pretty slowly. It wasn"t a plane there were no flashing lights. +1999-04-12,47.2530556,-122.4430556,Tacoma,WA,light,10,I looked up into the night sky only to see a "comet" streaking across the sky, but then it made a squiggle and disappeared. +2000-04-12,36.0625,-94.1572222,Fayetteville (Outside Of),AR,light,15,Witnessed a object, first mistaken as satalite, until it changed direction. +2000-04-12,26.7052778,-80.0366667,West Palm Beach,FL,circle,60,While doing some astronomy an object zoomed across my vision (while looking through the eyepiece) it was small and bright, but it wasn' +2000-04-12,44.0522222,-123.0855556,Eugene,OR,light,1800,Observed an approaching light traveling from the east. The light was below the clouds, and contiunued to approach until at a 75 degree +2001-04-12,29.7630556,-95.3630556,Houston,TX,light,1,it was a while blurr of light, nothing trailing it, round.one second from horizon to horizon at at 3 oclock level. +2002-04-12,36.3105556,-78.5911111,Oxford,NC,triangle,120,Triangle UFO spins and splits +2002-04-12,35.3766667,-87.0061111,Lynnville,TN,light,180,fast, bright, white burn of light, unbeliveable 90 degree turns +2002-04-12,46.7208333,-92.1038889,Superior,WI,light,60,three lights moved in formation in the sky. +2003-04-12,40.2986111,-83.0680556,Delaware,OH,circle,240,4-12-03 Delaware ,Ohio Large White light across field hovering and zipping in straight lines "curious" +2003-04-12,34.1791667,-118.7619444,Oak Park,CA,light,120,Sighting of white foggy illumination on ground +2003-04-12,36.4252778,-89.6994444,Portageville,MO,disk,300,Disk over MO bootheel +2003-04-12,43.2341667,-86.2483333,Muskegon,MI,circle,120,04/12/2003 3:30PM CIRCULAR OBJECT VERY HIGH IN THE SKY +2003-04-12,41.5836111,-72.8927778,Plantsville,CT,disk,120,Small metallic saucer spotted over I-84 near Plantsville, CT. +2003-04-12,30.4211111,-87.2169444,Pensacola,FL,light,60,I thought it may be a satellite, but now I don't know because of the way the light it emitted just simply turned off. +2003-04-12,30.4211111,-87.2169444,Pensacola,FL,light,60,unidentified traversing light or sighted object +2003-04-12,36.6002778,-121.8936111,Monterey,CA,circle,10,Circular blue object traveling east to west over Central California Coast. +2003-04-12,44.8113889,-91.4983333,Eau Claire,WI,formation,30,3 lights flying west to east 4 to 5 times airline speed maneuvered as if one or on same wave length. +2004-04-12,39.7391667,-75.5983333,Elsmere,DE,chevron,1203,Flying Wing over Elsmere DE +2004-04-12,40.7763889,-73.4677778,Plainview,NY,rectangle,1200,I witnessed a UFO while night riding in the woods on my mountainbike. +2004-04-12,41.8897222,-87.9888889,Villa Park,IL,light,1200,I SAW BRIGHT GLARING OBJECTS THAT GENERATED A MOTOR SOUND AND THEN SUDDENLY BOLTED AWAY. +2004-04-12,36.7855556,-108.6863889,Shiprock,NM,light,600,Blinking red light not a route of any aircraft of any sort. +2004-04-12,38.0291667,-78.4769444,Charlottesville,VA,disk,10,I met my friend at this bridge that we always meet at. After we met and I was walking back to my house. I got to the road and I saw the +2005-04-12,34.2308333,-111.3244444,Payson,AZ,unknown,658,I was browsing the Internet I was checking out the site called Phoenix360.com or http://www.abc15.com/ . Click on a tab Phoenix360 wed +2005-04-12,34.0522222,-118.2427778,Los Angeles,CA,triangle,3,A triangular - silent object glided through the skyscrapers in downtown LA ((NUFORC Note: B-2 bomber? PD)) +2005-04-12,34.0194444,-118.4902778,Santa Monica,CA,triangle,20,Dark grey triangular object cruising slowly north over Santa Monica making loud engine noise. ((NUFORC Note: B-2 bomber? PD)) +2005-04-12,34.0522222,-118.2427778,Los Angeles,CA,triangle,30,Gray Triangle no lights no sound no markings completly flat ((NUFORC Note: B-2 bomber? PD)) +2005-04-12,40.3977778,-105.0744444,Loveland,CO,triangle,5,Triange object +2005-04-12,33.6469444,-117.6883333,Lake Forest,CA,light,300,A light appeared darted left to right then dissapeared +2005-04-12,40.0061111,-91.7136111,Ewing,MO,sphere,600,Glowing orange balls appear and vanish +2006-04-12,30.4211111,-87.2169444,Pensacola,FL,triangle,1800,Witnessed 2 sets of lights in the sky first around 9pm above my fiance's work while on my way to pick him up. One was triangle shaped a +2006-04-13,33.9816667,-118.2241667,Huntington Park,CA,changing,600,ON APRIL 12 2006 AT ABOUT 6:30 PM IT WAS A CLEARBLUE SKY.I WAS LOOKING DUE WEST. ((NUFORC Note: Possible hoax?? PD)) +2007-04-12,44.8008333,-122.7933333,Stayton,OR,light,180,orange-yellow fire dribbled stright down from the object +2007-04-12,38.8338889,-104.8208333,Colorado Springs,CO,triangle,30,Triangular light configuration indicated low flying hover-craft in fog and snow above Powers Blvd. +2007-04-12,29.8944444,-81.3147222,St. Augustine,FL,formation,12,Fast and Silent Object(s) Flying in the Presence of a Military Aircraft +2007-04-12,37.6941667,-122.0852778,Castro Valley,CA,triangle,21600,Flying UFO's in the San Francisco Bay Area. +2007-04-12,34.6991667,-86.7483333,Madison,AL,light,7200,Star like ufo decends down slowly from high in the sky until it gets about tree top level. ((NUFORC Note: Venus sighting. PD)) +2007-04-12,38.7302778,-82.8555556,Wheelersburg,OH,light,600,Zigzagging fire in the sky +2007-04-12,47.5675,-122.6313889,Bremerton,WA,circle,25,Light from west to east that diminished and disappeared at about a 110 degree angle +2007-04-12,38.2683333,-90.38,Herculaneum,MO,disk,180,3-lighted circular air-craft drops and hovers in mid-air-and vanishes in a few minutes. +2008-04-12,28.5380556,-81.3794444,Orlando,FL,light,120,Five orange lights following each other over Orlando 1 AM 4/12 +2008-04-12,30.3933333,-86.4958333,Destin,FL,triangle,15,100 ft within the Okaloosa-Walton County line located on Highway 98, seven miles from Eglin AFB. 0420 hours I witnessed a triangular sh +2008-04-12,37.9841667,-120.3811111,Sonora,CA,other,60,Grey Translucent Being Studying Flowers in my Garden! 500 Lights On Object0: Yes +2008-04-12,39.0902778,-122.7952778,Lucerne,CA,light,60,I was looking out my sliding glass door, through the screen, at what appeared to be almost a Christmas card photograph; two trees and a +2008-04-12,30.0797222,-95.4169444,Spring,TX,light,10,It was probably a meteor, but while viewing the International Space Station we saw something unusual. +2008-04-12,40.8427778,-73.2933333,Commack,NY,light,1200,Strange lights over Commack NY +2008-04-12,27.9472222,-82.4586111,Tampa,FL,unknown,300,strange colored light in the sky that vanished +2008-04-12,45.5236111,-122.675,Portland,OR,light,3,Two faint pinpricks of light, flying much faster than an airplane, orbiting each other. +2008-04-12,42.7022222,-83.4027778,Waterford,MI,chevron,10,Transparent, silent chevron flying overhead at or above 100 MPH. +2008-04-12,28.5380556,-81.3794444,Orlando,FL,fireball,1200,MULITPLE ORANGE BALLS OF LIGHT WITNESSED IN ORLANDO, FLORIDA. 9 WITNESSES NO HOAX +2008-04-12,34.27515,-118.5498,Porter Ranch,CA,sphere,3600,Stationery pulsating jellyfish like object flashing purple, green, white and red lights over San Fernando Valley April 12, 2008 +2009-04-12,34.0522222,-118.2427778,Los Angeles,CA,teardrop,420,White shape changing orb in Los Angeles sky +2009-04-12,34.1397222,-118.0344444,Arcadia,CA,cylinder,600,An tight formation. +2010-04-12,43.0391667,-76.3044444,Camillus,NY,cigar,600,((SERIOUS REPORT??)) The ships were humming and faintly glowing. +2010-04-12,32.3863889,-96.8480556,Waxahachie,TX,triangle,240,Green Light Over Waxahachie, very quick. +2010-04-12,33.8805556,-78.5125,Sunset Beach,NC,circle,1200,Orange stationary orbs accompanied by small white objects moving at extraordinary speed. +2010-04-12,43.6105556,-72.9730556,Rutland,VT,triangle,3,Triangle with three lights sighted in Vermont +2010-04-12,44.9430556,-123.0338889,Salem,OR,light,15,it seem to sway back and forth slightly as it moved across the sky, brightly lit +2011-04-12,38.2541667,-85.7594444,Louisville,KY,sphere,10,leaving work at the city's airport when i observed a bright white sphere traveling at high rate of speed moving north to south at appro +2011-04-12,32.9536111,-96.89,Carrollton,TX,sphere,172800,Ufo seen around a gigantic trail of cloud phenomenon +2011-04-12,33.4597222,-94.4152778,New Boston,TX,unknown,900,One craft becomes three, and leaves trail. +2011-04-12,37.9286111,-77.4561111,Ruther Glen,VA,light,600,As I sat in my truck, I noticed a light in the sky moving from side to side changing from red to bright white moving very fast. +2011-04-12,48.2325,-101.2958333,Minot,ND,light,2,Light traveled half way across the night sky in less than 2 seconds and then vanished with no sound at all. +2011-04-12,39.5236111,-87.125,Brazil,IN,unknown,14400,Objects sighted over Brazil, Indiana. ((NUFORC Note: Possible sightings of satellites, we wonder. PD)) +2011-04-12,34.8641667,-118.1625,Rosamond,CA,triangle,120,UFO spotted in Southern California's High Desert +2011-04-12,39.5236111,-87.125,Brazil,IN,sphere,120,Three objects. One looked very bluish colored, but changinging in color too. I was driving along the road and seen it pass by a star, s +2012-04-12,34.0233333,-84.6155556,Kennesaw,GA,light,60,4:35am My girlfriend and I saw a bright object flying through the last 2 stars of the big dipper handle E to W then disappeared 1min +2012-04-12,37.7741667,-87.1133333,Owensboro,KY,cylinder,40,Very long and shiny cylinder shaped object across owensboro ky sky 04-12-2012 +2012-04-12,34.09,-117.8894444,Covina,CA,chevron,180,I saw a chevron shap object flying south bound +2012-04-12,27.495,-82.7111111,Holmes Beach,FL,formation,600,Red Lights in Formation on Gulf of Mexcio:Florida +2012-04-12,45.5608333,-94.1622222,St. Cloud,MN,unknown,1800,36 Red-Orange Lights Fly Over St. Cloud, MN @ Highspeed! +2012-04-12,42.8863889,-78.8786111,Buffalo,NY,other,180,Glowing White Orb/ Starlike/ Changed direction and stoped on a dime.. +2012-04-12,40.5886111,-83.1286111,Marion,OH,unknown,300,Extremely Loud Rumbling-Nothing In Site +2012-04-12,40.0977778,-74.2180556,Lakewood,NJ,fireball,2,Green-white round light with streak behind in south east sky over airport +2012-04-12,38.5816667,-121.4933333,Sacramento,CA,circle,180,3 Circular Lights Seen in Sacramento. +2012-04-12,42.3333333,-88.2666667,Mchenry,IL,light,120,Brilliant white light, moving from south to north over McHenry, IL. ((NUFORC Note: Sighting of International Space Station. PD)) +2012-04-12,36.8466667,-76.2855556,Norfolk,VA,changing,1215,Cylindrical object with green and pink flash of light... +2012-04-12,40.8802778,-79.2422222,Dayton,PA,circle,60,A bright white light disappearing and reappearing in the sky which then descended straight down out of sight. +2012-04-12,33.8302778,-116.5444444,Palm Springs,CA,oval,120,Large dimly lit mass crossed the sky steadily and silently. +2012-04-12,44.2858333,-68.3991667,Seal Cove,ME,sphere,60,There was an orange glowing ball over the ocean. +2012-04-12,47.6113889,-119.2911111,Coulee City,WA,light,240,White light that seemed to slowly fade as if it were slowing burning out. ((NUFORC Note: Sighting of Intl. Space Station. PD)) +2012-04-12,35.2830556,-86.3741667,Lynchburg,TN,sphere,30,This sphere bright like the moon, very silent, moving tree level, making a believer out of me. +2012-04-12,41.4047222,-81.7230556,Parma,OH,fireball,180,Orange illuminated fireball shaped object moving silently over Parma, Ohio +2013-04-12,33.4708333,-81.975,Augusta,GA,circle,300,Brightly lit fireballs appeared in the sky in a circle formation +2013-04-12,42.3583333,-71.0602778,Boston,MA,other,3600,Four light, red center, yellow light emitted as it moved in orb manner. +2013-04-12,38.9180556,-78.1947222,Front Royal,VA,light,30,I must say I would have thought it was a "shooting star"; if it was not for the speed at which it traveled. +2013-04-12,39.6080556,-119.2508333,Fernley,NV,triangle,300,Three white triangular shaped aircrafts? +2013-04-12,40.2338889,-111.6577778,Provo,UT,circle,90,4 'fire balls' over Provo Canyon, Utah. +2013-04-12,38.5816667,-121.4933333,Sacramento,CA,circle,180,It was dark above the sky and there was three circle with white lights moving very slowly. We pulled over and park at the parking lot. +2013-04-12,27.7205556,-82.4333333,Ruskin,FL,oval,900,Orangeish, Redish orbs. +2013-04-12,40.2338889,-111.6577778,Provo,UT,chevron,20,5 lights, each chevron shaped and in a tight formation, crossed our line of sight (mine and my wife's) over a period of 20 seconds. +2013-04-12,35.5225,-97.6186111,Warr Acres,OK,light,2,A quarter size ball of light. +2013-04-12,38.8338889,-104.8208333,Colorado Springs,CO,other,30,Colorado Springs UFO Sighting +2013-04-12,37.6819444,-121.7669444,Livermore,CA,other,10800,UFO sighting over Livermore, CA. Bright Blue lights on wings. +2013-04-12,30.2669444,-97.7427778,Austin,TX,light,1500,Red and white light dancing and dipping rapidly over Austin for over twenty minutes. +2014-04-12,37.7361111,-120.9344444,Riverbank,CA,unknown,20,LOUD BURNING OUT NOISE WHISTLES COMES TO CRASHING HALT SLIDES ON ROAD FOR SOME DISTANCE. +2014-04-12,34.2694444,-118.7805556,Simi Valley,CA,light,60,Low level, bright amber glowing light flying toward us then turned and accelerated straight up out of sight, amazing!!!! +2014-04-12,41.1383333,-81.8638889,Medina,OH,oval,60,South end of Medina, Oh, between 6:30 and 6:45 (PM), I saw a orange flickering orb traveling due north. +2014-04-12,38.4344444,-82.1325,Milton,WV,light,60,bright orange lights came from south moving north in groups 1after another. +2014-04-12,33.2486111,-111.6336111,Queen Creek,AZ,fireball,5,Falling green fireball. +2014-04-12,32.2216667,-110.9258333,Tucson,AZ,fireball,3,Fluorescent green fireball seen from Catalina over the Santa Catalina Mountains. +2014-04-12,33.3061111,-111.8405556,Chandler,AZ,fireball,5,Fireball Streaks downward across the estern sky. +2014-04-12,34.8766667,-117.1030556,Lenwood,CA,other,60,Was driving on I-15 N and saw a bright green object moving rapidly in opposite directions. Was near a small mountain near a few desolat +2014-04-12,35.2333333,-106.6638889,Rio Rancho,NM,oval,30,My daughter and I were driving home from picking up dinner when suddenly an oval bright blue tinged light appeared in the sky to our ri +2014-04-12,35.0844444,-106.6505556,Albuquerque,NM,fireball,4,A redish-orange sphere that appeared to glow or be on fire fell out of the sky towards the ground. +2014-04-12,39.6283333,-84.1594444,Centerville,OH,sphere,90,Glowing orange orb, no sound +2014-04-12,32.3122222,-106.7777778,Las Cruces,NM,fireball,5,Blue ball, followed by a flame. +2014-04-12,42.2527778,-71.0027778,Quincy,MA,oval,1800,Multiple pulsating and bizarre formations of reddish-orange orbs maneuvering at various projectories. +2014-04-12,40.975,-81.4083333,Uniontown,OH,light,900,5 bright objects appear when heavy clouds move in then disappear. +2014-04-12,42.0083333,-91.6438889,Cedar Rapids,IA,circle,300,Two crafts spotted above Cedar Rapids. +2014-04-12,42.0083333,-91.6438889,Cedar Rapids,IA,disk,300,White/blue/green object and orange objects flying fast and changing direction too quickly. +2014-04-12,32.3122222,-106.7777778,Las Cruces,NM,fireball,15,flashing sky fireball falling down. +2014-04-12,44.8833333,-93.2827778,Richfield,MN,circle,1290,Orange light over Richfield, MN. +2014-04-12,41.5261111,-87.8891667,Mokena,IL,cigar,180,My wife and I were siting outside when 3 cigar shaped neon blue lights about 7 to 10 feet long came out of no where very brite, traveli +2014-04-12,31.7586111,-106.4863889,El Paso,TX,oval,120,Local news KVIA reports blue light with fire being shot down to Earth. +2014-04-12,41.2283333,-85.1725,Huntertown,IN,circle,900,At least 20 red lights moving across the sky. +1979-04-13,26.9338889,-80.0944444,Jupiter,FL,light,300,Bright Light outside of the house +1991-04-13,37.2694444,-107.0091667,Pagosa Springs,CO,cigar,20,I am a 68 year old retired president of an international trade association.My nephew and I were driving on a remote hightway in the mo +1992-04-13,47.9033333,-91.8669444,Ely,MN,light,60,Sattelite objects moving at random across the sky , at speeds never seen before. +1993-04-13,29.4238889,-98.4933333,San Antonio,TX,disk,600,Saw a very large, silvery gray craft near the medical center area +1993-04-13,39.7683333,-86.1580556,Indianapolis,IN,circle,900,A rotating, soundless object followed me home from boy scouts. +1993-04-13,37.2694444,-107.0091667,Pagosa Springs,CO,cigar,30,Huge long narrow aircraft with seven huge lights appeared 100 ft. above our car and followed us for approximately a half mile +1997-04-13,32.7152778,-117.1563889,San Diego,CA,light,6,4/13/97 approx.7:06pm I video taped an object flying through the tail of the Hale Bopp comet. +1998-04-13,42.0986111,-75.9183333,Binghamton,NY,other,180,rolling, changing color & shape,silent,bluesky +1999-04-13,38.4722222,-81.8144444,Poca (3.5 Miles North Of),WV,sphere,600,Saw unusal light "star" move across sky - amber orb lowered and followed 2 witnesses (from dime size to basketball size in seconds. whi +1999-04-13,33.8883333,-118.3080556,Gardena,CA,disk,120,Looking in Southeast 1h. Hypn 5 yr later. Abduct, exam, unsettl +1984-04-15,37.8555556,-86.9672222,Yelvington,KY,triangle,3000,VERY BEAUTIFUL. Could not believe what was happening. ******PLEASE CONTACT ME******** +1985-04-15,41.0288889,-82.3047222,Nova,OH,triangle,600,Triangle-shaped object +1985-04-15,41.7177778,-76.7794444,Granville Summit (West Franklin),PA,disk,420,Flat saucer like object rises out of a pond, turns on edge and disappears. +1986-04-15,33.0786111,-116.6011111,Julian (Near; Bordering Cuyamaca Forest State Preserve),CA,other,420,My husband and I experienced 2 glowing orbs (1 red at one end 1 blue at the other with us in the middle) approximately 50-100 yards apa +1986-04-15,33.5777778,-101.8547222,Lubbock,TX,other,300,2ft Square , 5 Sided Black Box +1986-04-15,37.6688889,-122.0797222,Hayward,CA,disk,600,Father in-law was outside smoking. He observed something in the sky, he then called out for us to come out and tell him what he was see +1986-04-15,30.2238889,-92.0197222,Lafayette,LA,light,60,A sighting of four bright objects seen performing unusual maneuvers with no apparent change in speed. +1987-04-15,44.4991667,-124.0827778,Seal Rock,OR,sphere,2,My wife and I are professional photographers and were doing some stock photo work at Seal Rock on the Oregon coast. I still don't know +1988-04-15,61.5813889,-149.4394444,Wasilla,AK,disk,180,the object was large moving just above the treeline it had clear white lights not sure if it made a noise because i was in doors +1988-04-15,47.5675,-122.6313889,Bremerton,WA,disk,20,Disc was flying about 50 yards off the wingtip of an airliner that had just left Seatac airport. +1989-04-15,43.4666667,-112.0333333,Idaho Falls,ID,rectangle,600,12'x8' rectangle emmiting blinding lights riding my car bumper until i stoped. +1990-04-15,35.9605556,-83.9208333,Knoxville,TN,other,35,Star shaped craft flys right over my head slowly at 60 feet, on Easter 1990. +1990-04-15,38.0291667,-78.4769444,Charlottesville,VA,other,300,I have spoken of this to my friends, but have never wanted to explain this event to any organization such as yours for, I guess fear of +1990-04-15,41.1233333,-73.7794444,Thornwood,NY,light,300,How the extremely bright light effected my vision! +1991-04-15,38.5733333,-109.5491667,Moab,UT,diamond,60,One morning while hiking in some mountains in Utah two friends and I saw a large, diamond-shaped, unidentified flying object. +1991-04-15,34.1952778,-82.1619444,Greenwood,SC,oval,60,seen craft in plain day, less than 150 ft. away larger than a football feild, no lights , clear , fast, silent. +1991-04-15,38.7297222,-120.7975,Placerville,CA,light,2,Spring 1991 Placerville,Ca. Light 5-10 seconds view from patio clear sky Light outruns 2 jets!! +1992-04-15,36.8352778,-76.2986111,Portsmouth,VA,disk,1200,UFO sited in MY own yard ... the world felt like it stopped!!!!!! +1992-04-15,37.5058333,-77.6494444,Midlothian,VA,egg,120,Unreported 1992 Sighting +1992-04-15,34.2661111,-116.3922222,Landers,CA,fireball,3600,I Saw a fire ball above a distant hill that appeared cool rather than hot like the Sun +1992-04-15,36.8688889,-94.3677778,Neosho,MO,unknown,60,I don't remember for sure when this happened, it was between 10 and 15 yrs ago. I had recently moved from Ca. to Mo. I was with two fri +1993-04-15,36.8527778,-75.9783333,Virginia Beach,VA,circle,60,Bright flash and blue ring of fire emitting vapor trail +1994-04-15,39.6066667,-75.8336111,Elkton,MD,other,180,The UFO had Orange and Yellow Lights. 500 Lights On Object0: Yes +1994-04-15,28.555,-82.3880556,Brooksville (Withlacoochie Forest),FL,chevron,1200,Three witnesses saw a very large, chevron-shaped, black or gray object with read lights around the edges. +1994-04-15,34.54,-112.4677778,Prescott,AZ,rectangle,180,rectangular object and sound of object. +1995-04-15,30.2669444,-97.7427778,Austin,TX,other,10,SEEN IN BROAD DAYLIGHT- large craft that looked like two pie plates facing each other with a short cylinder in between, yellow and oran +1995-04-15,35.6008333,-82.5541667,Asheville,NC,triangle,900,it hovered above us for a while..... +1995-04-15,33.3527778,-111.7883333,Gilbert,AZ,unknown,60,1995 Phoenix SE Valley "shooting star" turns 90° and crosses sky in couple of seconds. +1995-04-15,35.1952778,-79.4697222,Pinehurst,NC,triangle,30,Two triangular craft, hovering low +1995-04-15,32.3861111,-94.8755556,Kilgore,TX,circle,3600,Prone to being "ESCORTED" by bright ball of light??? +1996-04-15,29.9144444,-90.0538889,Gretna,LA,sphere,90,Red strobbing object, approx. the size of a basketball. +1996-04-15,33.7669444,-118.1883333,Long Beach,CA,fireball,1.5,A Large Brilliant green fireball was seen "fall to earth" in the direction of the Long beach airport.There was no fire or evidence of a +1996-04-15,28.4655556,-82.1722222,Lacoochee,FL,fireball,3,huge fireball approx. 30 mile fire trail, traveling upward at a speed approx. 10ꯠ miles p.h. +1996-04-15,34.1480556,-117.9980556,Monrovia,CA,chevron,900,Highly polished shuttle looking craft which hovered at high altitude in the air directly above me +1996-04-15,36.8816667,-82.7472222,Big Stone Gap,VA,light,240,1 LIGHT SEPARATES INTO 3 & HOVERS OVER TREE, THEN COMBINE & DISAPPEAR. +1996-04-15,34.0522222,-118.2427778,Los Angeles,CA,other,60,"twinkling" points of light seen above LA, one darting Westbound +1996-04-15,46.1469444,-122.9072222,Kelso,WA,cylinder,120,Back in 1996 in kelso washington,i saw a cylinder inthe night sky at first it was grey then it turned and it was yellowish orange. +1997-04-15,33.8702778,-117.9244444,Fullerton,CA,changing,1800,the object made no noise,as it changed colors,and hovered in complete silence until it was ready to move. +1997-04-15,42.44,-85.6488889,Plainwell,MI,diamond,300,Diamond-shpae object in the Southeastern sky, heading northwest at a underterminate speed. +1997-04-15,37.3477778,-120.6080556,Atwater,CA,unknown,600,Very bright light hovering over central california +1997-04-15,33.9163889,-118.3516667,Hawthorne,CA,light,2,A light flashed by a man at close range. +1997-04-15,38.4177778,-82.5863889,South Point,OH,egg,600,I and a co-worker were traveling on Route 52, just past the bridge into Ashland, Kentucky. A large, silent, matte silver object appear +1997-04-15,35.2269444,-80.8433333,Charlotte,NC,unknown,10,In mid conversation we both looked up to the sky simultaniously. We saw what we thought was a shooting star very high in the eveni +1997-04-15,40.8,-96.6666667,Lincoln,NE,sphere,1200,On a spring night in 1997 I was sitting in a car at a park with a friend talking. I would periodically look out my window for no reaso +1997-04-15,35.3733333,-119.0177778,Bakersfield,CA,light,2,I was looking up at the sky for Hale-Bop,when from the south a round yellowish light zoomed across the sky at a very high speed. +1997-04-15,40.2736111,-76.8847222,Harrisburg (Area),PA,formation,1200,Formation of lights observed over Three mile Island area. Exactly the same formation and sequencing of lights as seen in Pheonix about +1998-04-15,41.0391667,-96.3680556,Ashland (Outside Douglas Co.),NE,fireball,1800,I remember this date and time distinctively , as it wax tax day , my first year in buisness .A friend and myself decided to go catf +1998-04-15,39.9991667,-83.6216667,Catawba,OH,triangle,15,My friend and I spotted a craft just before going to school. +1998-04-15,40.8566667,-74.1288889,Passaic,NJ,other,10,I looked out the window at the sky about 8am in the morning. It was perhaps mid April with very puffy white spring clouds set against a +1998-04-15,43.4711111,-89.7441667,Baraboo,WI,sphere,30,Stationary silver sphere over town. +1998-04-15,39.8991667,-82.0063889,South Zanesville,OH,light,300,two lights one cicled then quickly flew away. +1998-04-15,29.4238889,-98.4933333,San Antonio,TX,cylinder,180,bright yellow lights over san antonio texas +1998-04-15,35.8455556,-86.3902778,Murfreesboro,TN,sphere,300,while traveling south on I 24 @ 10 miles north of murfreesboro I saw three round silvery bright objects in an equilateral triangle. The +1998-04-15,37.2708333,-79.9416667,Roanoke,VA,fireball,120,IT WAS A BRIGHT BALL OF LIGHT OVER THE BLUE RIDGE MOUTAINS.IT MOVED TO THE LEFT MOVED TO THE RIGHT THEN WENT SOUTH WEST THEN WITHIN ABL +1998-04-15,37.9358333,-122.3466667,Richmond,CA,disk,600,Disk over Richmond, CA +1998-04-15,41.605,-80.9536111,Hartsgrove,OH,disk,20,Large disc shaped aircraft producing intense volumes of buzzing noises that for some reason I could only hear is what I saw in the sky +1998-04-15,35.198055600000004,-111.6505556,Flagstaff,AZ,circle,2700,First object red & green flashing, Shape of a ring, changed shapes and directions many times, winked out & retirned 4 times, shot out b +1998-04-15,38.2430556,-93.3816667,Warsaw,MO,unknown,180,THIS SIGHTING MAY HAVE BEEN ONE OBJECT OR FIVE,THE REASON THAT I SAY THAT IS: THERE WERE TWO AIR CRAFT INVOLVED AND FIVE VERY BRIGHT LI +1998-04-15,43.0747222,-73.1544444,Arlington,VT,light,1800,Were those points of light really satellites? +1998-04-15,41.6361111,-70.9347222,New Bedford,MA,oval,240,HIGH SPEEDING ORANGE-YELLOW BALL SWAYING SIDE TO SIDE +1999-04-15,40.7372222,-114.0366667,Wendover (76 Miles North.&Amp; 50 Miles South S.l.c.),UT,oval,45,crested ridge,bright white flash,around a curve,observed object moveing north to south at aprox. 25ꯠ agl leval travelƺ secs.appeare +1999-04-15,38.0291667,-78.4769444,Charlottesville,VA,other,10800,On this night I was with 4 other people and we were hanging out outside as it was a nice evening. It was just getting dusk and I was si +1999-04-15,37.6391667,-120.9958333,Modesto,CA,disk,60,a dark metal sauser wobbling and hovering about 7 to 8 thousand feet. it stoped wobbling flew one mile west then went up and was hard t +1999-04-15,34.4466667,-85.9041667,Fyffe,AL,rectangle,180,Huge craft, silent , intelligent, aware of us observing it +1999-04-15,37.3688889,-122.0352778,Sunnyvale,CA,light,240,Stationary lights seen surrounded by circular cloud that shrank in diameter to nothing. +1999-04-15,33.8080556,-84.1702778,Stone Mountain,GA,light,2400,LIGHTS IN A CIRCULAR FORMATION. THEY WERE ALMOST FLUID IN MOVEMENT. THE LIGHTS ROTATED FROM THE INNER CIRCLE AND MOVED OUTWARD IN A R +1999-04-15,39.1433333,-77.2016667,Gaithersburg,MD,oval,20,LOW FLYING BLACK OVAL OBJECT WITH GREEN LIGHTS SEEN FLYING BY THE 270S EXIT OFF OF SHADY GROVE RD. IN GAITHERSBURG MARYLAND. +2000-04-15,47.7661111,-116.7855556,Hayden,ID,light,60,CAN ANYONE TELL ME WHAT i SAW? THREE STAR OR PLANET-LIKE OBJECTS SPACED IN WHAT APPEARED TO BE ABOUT AN INCH APPART, PROBLABLY ABOUT 2 +2000-04-15,33.4483333,-112.0733333,Phoenix,AZ,changing,1200,Two small objects float over the runway at Phoenix Sky Harbor Airport. +2000-04-15,47.3294444,-122.5788889,Gig Harbor,WA,disk,30,From a distance of 3 miles, I saw two silver colored suacer-shaped objects engaged in aerobatics before disappearing into a cloud +2000-04-15,46.7066667,-123.9805556,Tokeland,WA,unknown,600,shimmering transparent object floting over the water by North River bridge in Washington St. +2000-04-15,33.8358333,-118.3397222,Torrance,CA,disk,120,Bright daylight sightinh of disk shaped opject moving westward, taking a turn northward and climbing out of sight. +2000-04-15,36.9086111,-116.7583333,Beatty,NV,formation,120,Dear sir, I saw the program on ABC tonight and discovered there was someone Who would take a little time to hear what Me and my brother +2000-04-15,29.9327778,-89.9497222,Meraux,LA,rectangle,60,Rectangular shaped flying Huge box kite looking thing (about 15 ft across) +2000-04-15,32.7152778,-117.1563889,San Diego,CA,formation,9,3 stars pyramid shaped roaming slow then disappeared one by one. ((NUFORC Note: Possibly NOSS satellites in formation? PD)) +2000-04-15,34.8697222,-111.7602778,Sedona,AZ,sphere,120,saw a huge yellow "moon" rise over the Red Rocks, then found out it wasn't the moon at all +2000-04-15,34.61,-112.315,Prescott Valley,AZ,sphere,300,my wife and my mom and myself saw 2 red ufos by glassfofd hill mt.at 11:45 pm they were moveing towards hwy.89a at about 100mph +2001-04-15,29.4238889,-98.4933333,San Antonio,TX,sphere,2,Bright Blue/White Light, North Of San Antonio Texas Moving East To West in a slight downward slant. +2001-04-15,42.0333333,-88.0833333,Schaumburg,IL,diamond,120,The Titanic tear appeared with a gust and vanished without a trace. +2001-04-15,36.175,-115.1363889,Las Vegas,NV,circle,1800,3 unknown objects hovered over eastside highrise for 30 minutes +2001-04-15,47.3894444,-119.4894444,Soap Lake,WA,triangle,120,Several white, noiseless, triangular objects, no lights, sighted in North Central Washington State +2001-04-15,38.9105556,-122.6091667,Lower Lake,CA,sphere,600,2001/daylight/ sighting/ bright,sphere/aboutƽto 10 min/Low /slow/silent/two eyewitnesses/ +2001-04-15,44.8113889,-91.4983333,Eau Claire,WI,oval,120,Oval craft moving slowly across the sky, silver gray, one bright lite, and silent. +2001-04-15,41.85,-88.3125,Batavia,IL,fireball,300,My mother and I were driving home from the last choir concert of the year when I was in 8th Grade...we came up to the corner just befor +2001-04-15,39.0130556,-104.7002778,Black Forest,CO,triangle,300,Passed underneath and to the side of 3 lights that were stationary above tree tops at low speed. +2001-04-15,32.7458333,-96.9975,Grand Prairie,TX,unknown,45,THE OBJECT WAS CLOSE AND VERY LOW IN THE SKY, THUS MY DISCPRITION IN DEATAIL. +2001-04-15,36.2,-86.5186111,Mount Juliet,TN,light,4200,red light go fast, white light means it stopped and pulse fast red before moving. +2002-04-15,40.8119444,-74.1247222,Lyndhurst,NJ,other,900,Small creatures from the sky +2002-04-15,39.8366667,-105.0366667,Westminster,CO,triangle,300,Triangle craft seen in Westminster Colorado. +2002-04-15,40.5336111,-79.3822222,Clarksburg,PA,other,240,Fat Object Hovers Over Trees +2002-04-15,32.8475,-115.5686111,Imperial,CA,light,1200,Lights along the desert mountains +2003-04-15,40.3355556,-75.9272222,Reading,PA,diamond,20,diamond shaped craft hovering over area disappered quickly +2003-04-15,43.5911111,-71.7372222,Bristol,NH,disk,900,Two silver disks above Bristol, Grafton Co. watching the sun set. And I was watching them. +2003-04-16,34.5036111,-93.055,Hot Springs,AR,oval,120,Ovel shaped craft moving north east /no wings no sound Huge. +2004-04-15,39.9611111,-82.9988889,Columbus,OH,light,900,two lights, side by side, fast and gliding. No strobes were on it. We saw over 10 go by, all out of same direction. They are flying +2004-04-15,47.7661111,-116.7855556,Hayden,ID,unknown,15,UFOs may only be intraterrestial, military or other-than-normal occurance, not extraterrestial. +2004-04-15,33.2097222,-87.5691667,Tuscaloosa,AL,other,600,Spring 2004 My husband and I are both night owls and enjoy walking our German Shepard around the block late at night when its nice and +2004-04-15,47.7661111,-116.7855556,Hayden,ID,light,60,Driving south from Hayden, Idaho to Coeur d'Alene, Idaho about 4AM mid-April 2002.I looked over to the east and three star-like obj +2004-04-15,28.5380556,-81.3794444,Orlando,FL,other,180,At approximately 6:00a.m., I witnessed an odd, oval, slightly glowing object (12" or so)move in a zig-zag pattern and at extreme speed. +2004-04-15,42.1416667,-71.3972222,Medway,MA,cylinder,1800,Cylinder doing survey. +2004-04-15,35.2783333,-93.1336111,Russellville,AR,cylinder,4200,Long Cylinder shaped with one end slightly larger than the other that also came to a point. +2004-04-15,31.4636111,-100.4366667,San Angelo,TX,cylinder,300,large cylinder hanging motionless in the sky +2004-04-15,37.3541667,-121.9541667,Santa Clara,CA,teardrop,180,Teardrop shaped ufo, no lights, goldish glint, two witnesses, and the ufo accelerated away south east. +2004-04-15,45.6388889,-122.6602778,Vancouver,WA,sphere,120,I was driving on the highway and i looked to my right and saw a bright sphere changing colors from white to green to blue. It then move +2004-04-15,33.5538889,-117.2130556,Murrieta,CA,unknown,300,I saw a distant light while going somewhere. +2004-04-15,39.8638889,-86.4669444,Pittsboro,IN,light,2700,The objects was briht orange-ish yello, and approx. to the north in a clearing of tthe clouds. +2004-04-15,29.9938889,-90.2416667,Kenner,LA,sphere,10,Clear sphere seen +2004-04-15,29.6991667,-91.2066667,Morgan City,LA,light,10,Took placed on a thursday night. I was just looking at the stars when I noticed a fast moving object in the sky. It moved in a fashio +2004-04-15,26.3583333,-80.0833333,Boca Raton,FL,light,10,faint star suddenly turns into a large bright white star +2004-04-15,33.6411111,-117.9177778,Costa Mesa,CA,triangle,30,night time sighting of triangular shaped object or lights moving quickly on claer night +2004-04-15,26.1219444,-80.1436111,Fort Lauderdale,FL,fireball,60,Disregard 4/15 20:47 Report - Was Rocket Launch +2004-04-15,26.1219444,-80.1436111,Fort Lauderdale,FL,fireball,60,Reentry Object in northern sky 4/15 20:47 PM - Duration about 45 seconds ((NUFORC Note: Missile launch. PD)) +2004-04-15,26.9616667,-82.3527778,Englewood,FL,other,180,RED LIGHT APPEARING TO RISE FROM GROUND AND DISAPPEAR INTO DISTANT SKY ((NUFORC Note: Missile launch. PD)) +2004-04-15,38.3552778,-87.5675,Princeton,IN,light,20,Return of short-lived bright orange lights in night sky NNW of Ft Branch/Princeton, IN area that dissipate after initial illuminations. +2004-04-15,30.8461111,-93.2888889,Deridder,LA,light,1500,Four unidentified lights in the sky. +2004-04-15,40.5686111,-74.7380556,Readington,NJ,light,7200,I saw 7 lights in the South sky near my home/airport and they did not move for hours until they disapeared one by one. +2004-04-15,47.0344444,-122.8219444,Lacey,WA,circle,1200,At first I saw blinking green and red lights forming the letter A. I called my son to look at it and said It was an A. It seemed to c +2004-04-15,29.1380556,-80.9958333,Port Orange,FL,diamond,3600,from a distance appeared bright starlike with red and blue lights also ((NUFORC Note: Venus sighting?? PD)) +2004-04-15,33.426944399999996,-117.6111111,San Clemente,CA,disk,10,A quick round like craft in the sky and vanishing when i knoticed it while walking at night. +2005-04-15,44.8041667,-93.1666667,Eagan,MN,chevron,10,Silent boomerang object szeen in sky over Eagn MN +2005-04-15,37.6938889,-85.8591667,Elizabethtown,KY,circle,180,4-15-05 small star-like object (not jet/plane/satellite) seen Elizabethtown, Ky. in daylight around 3:15pm which made a 45 degree turn +2005-04-15,30.3672222,-89.0927778,Gulfport,MS,other,240,Three spheres with lights underneath... all connected. Hwy 53, Mississippi. Turkey hunting. +2005-04-15,38.4177778,-82.5863889,South Point,OH,light,300,The flashing white light was high in the sky flying hundreds of times faster than any other object in sky. +2005-04-15,38.6272222,-90.1977778,St. Louis,MO,circle,900,2 objects in the sky with bright lights moving fast and then stopping on a dime. +2006-04-15,29.4238889,-98.4933333,San Antonio,TX,oval,5520,Invisable by the human eye but caught on infared film. +2006-04-15,39.7391667,-104.9841667,Denver,CO,oval,3,GREEN BRIGHT LIGHT OVER DENVER +2006-04-15,41.8391667,-79.2686111,Irvine,PA,unknown,300,object flashed lights down on river across from my house +2006-04-15,42.2411111,-88.3161111,Crystal Lake,IL,oval,60,a grey mettalic oval(s) seen high in the sky. ((NUFORC Note: Student report. PD)) +2006-04-15,34.2569444,-85.1647222,Rome,GA,triangle,30,Triangular with lights on corners, made no sound, changed size, hovering over firetruck +2006-04-15,39.4522222,-74.7280556,Mays Landing,NJ,cigar,3,Silent, 1000 foot long, silvery white UFO spotted +2006-04-15,39.9611111,-82.9988889,Columbus,OH,formation,300,Formation of 6 to 7 objects in Columbus, Ohio +2006-04-15,39.7458333,-75.5469444,Wilmington (Suburbs),DE,sphere,60,Brilliant sphere floats above the Wilmington Suburbs. +2006-04-15,41.4219444,-82.3647222,Vermilion,OH,cylinder,300,The Video that was captured is on www.woio.com Couple see captures wierd object in the sky +2006-04-15,38.0608333,-97.9294444,Hutchinson,KS,unknown,120,We were going west on 11th st towards the Hutchinson Cosmosphere. It was dusk and an object appeared that caught every one's eye in th +2006-04-15,30.4211111,-87.2169444,Pensacola,FL,circle,2,Circle of light travels through cloud, leaving a wake, in under to seconds to out of view. +2006-04-15,40.3355556,-75.9272222,Reading,PA,triangle,60,Bright triangle shaped object flies over gas station. +2006-04-15,36.7341667,-108.3591667,Kirtland,NM,light,300,Object sighted in NW NM was witnessed by 3 people, bright white and moved acrossed the sky and faded out. +2006-04-15,39.7441667,-83.8086111,Cedarville (4 To 5 Miles East Of, On U. S. 42),OH,changing,120,Cigar Craft with Portholes or Lights +2006-04-15,30.5080556,-97.6786111,Round Rock,TX,light,20,Bright white object that moved extremely fast and appeared out of nowhere. +2007-04-15,33.0183333,-80.1758333,Summerville,SC,other,180,CLEAR BUT SHAPED OF A BOOMERANG NO LIGHTS OR SOUND MATCHES THE SKY.  +2007-04-15,34.1622222,-83.6780556,Pendergrass,GA,triangle,180,Triangular mass over Jackson County +2007-04-15,38.5458333,-106.9247222,Gunnison,CO,light,120,giant bright white light moves autonomously and travels EXTREMELY fast. SILENT! +2007-04-15,34.0522222,-118.2427778,Los Angeles,CA,unknown,600,Bright Green "Z-Shaped" Object Over Santa Monica Pier +2007-04-15,31.2436111,-90.4530556,Mccomb,MS,diamond,45,fishing for ufo's +2007-04-15,33.6694444,-117.8222222,Irvine,CA,circle,120,White Lights in a large circle over UC Irvine, Campus. +2007-04-15,45.4872222,-122.8025,Beaverton,OR,unknown,14400,WHITE BALL OF LIGHT SLOWLY MOVING IN THE SAME AREA FREQUENTLY +2007-04-15,42.2458333,-122.7875,Talent,OR,changing,300,bright flash,then ciclular orange orb of light diminshing to nothing and over and over,due north +2007-04-15,45.6327778,-108.9172222,Park City,MT,unknown,300,Unknown object over rural country town. +2008-04-15,33.5683333,-83.3625,Buckhead,GA,changing,1800,shape changing thing near cloud of smoke +2008-04-15,33.5683333,-83.3625,Buckhead,GA,changing,1800,ufo ubduction +2008-04-15,25.7738889,-80.1938889,Miami,FL,rectangle,300,ufo visual miami florida west +2008-04-15,36.0966667,-81.1825,Moravian Falls,NC,unknown,30,Seen while driving on Price road off Hy 16 inMoravian Falls. I TOOK it to be Sirius, as thats what it looked like. From my view point a +2008-04-15,41.6611111,-87.7525,Crestwood,IL,formation,600,formation of UFO's +2008-04-15,33.9761111,-117.9044444,Rowland Heights,CA,diamond,120,Huge dark object flying over the san gabriel mountain +2008-04-15,34.9022222,-110.1575,Holbrook,AZ,sphere,60,I saw a round white glowing object completely still then it moved quickly then sped into a streak and gone. +2008-04-15,37.5297222,-122.0391667,Newark,CA,fireball,3,Bright light moving in sky for about 3 seconds before burning out? +2008-04-15,37.3394444,-121.8938889,San Jose,CA,diamond,4,diamond shape transulcent object seen over los gatos, ca, near sr85 and sr 17 +2008-04-15,44.8108333,-73.0836111,St. Albans,VT,light,1200,Unidentifiable light, disappeared. +2008-04-15,35.7913889,-78.7813889,Cary,NC,unknown,300,Stationary Light Flashing Erratically, and Low Flying Object. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2008-04-15,33.3061111,-111.8405556,Chandler,AZ,sphere,17,Glowing orange sphere spotted hovering and performing angular flying at various speeds. +2008-04-15,42.3333333,-88.2666667,Mchenry,IL,triangle,240,Triangle shaped craft with bright white lights over Mchenry, IL at approx. 20:35. +2009-04-15,36.1538889,-95.9925,Tulsa,OK,triangle,15,UFO Sighting in Tulsa, OK +2009-04-15,42.3222222,-111.2969444,Montpelier,ID,cross,180,4 lobed craft hovering over Montpelier, ID in broad daylight. +2009-04-15,27.9472222,-82.4586111,Tampa,FL,circle,2,I was taking a series of pics of airliner and in only two pics did an unknown object appear. At first it was small white dot and in n +2009-04-15,34.1169444,-83.5725,Jefferson,GA,egg,60,I WAS OUTSIDE WATCHING A THUNDERSTORM. IT WAS SCATTERED DARK CLOUDS SO THE SUN WAS STILL VISIBLE. I TURN TO MY RIGHT AFTER A LIGHTNING +2009-04-15,40.4469444,-75.9666667,Leesport,PA,disk,5,Craft 100 feet above water red and white lights flew towards us stopped in midflight zigzagged and shot into sky +2009-04-15,33.0369444,-117.2911111,Encinitas,CA,sphere,7,solid reddish orb, no lights 100 feet up and northbound at about 30mph. +2009-04-15,37.5297222,-122.0391667,Newark,CA,triangle,30,Orange Triangle shaped craft +2009-04-15,37.5536111,-77.4605556,Richmond,VA,light,180,((HOAX??)) Strange light make j shape in rva +2010-04-15,42.3369444,-83.2733333,Dearborn Heights,MI,light,600,Weird light in the sky near Dearborn Heights, Mi. +2010-04-15,35.1894444,-114.0522222,Kingman,AZ,circle,240,Kingman disc. ((NUFORC Note: Regarding alleged crash of UFO on May 20, 1953. PD)) +2010-04-15,41.5736111,-87.6463889,East Hazel Crest,IL,circle,60,During a perfectly clear sunny day, I witnessed a large black circular craft hover high in the sky. +2010-04-15,34.2783333,-119.2922222,Ventura,CA,triangle,8,A Triangular craft that was highly visible +2010-04-15,35.2675,-75.5427778,Buxton,NC,fireball,2400,Round flaming balls moving sporadically across The Point on Hatteras Island Beach +2010-04-15,35.3733333,-119.0177778,Bakersfield,CA,chevron,5,While sitting in hot tub talking on phone,seen large V shape object traveling NW light was white like star light but not real bright vi +2010-04-15,29.9741667,-93.9922222,Nederland,TX,light,900,On 4/15/10 from 10:18pm cst to 10:36pm cst in Nederland, TX, myself, my wife, and cousin observed a ufo facing due west toward Beaumont +2010-04-15,44.98,-93.2636111,Minneapolis,MN,disk,300,disc shaped craft seen over kenwood neighborhood Minneapolis +2011-04-15,37.3394444,-121.8938889,San Jose,CA,changing,240,1 orb and two orbs that changed shape into moonlike objects. ((NUFORC Note: We believe the objects are clusters of balloons. PD)) +2011-04-15,42.0875,-76.1491667,Campville,NY,light,900,Two large bright white lights flying in tandem low in the night sky, absolutely no sound, nor any other lights nor color. +2011-04-15,44.4258333,-69.0069444,Belfast,ME,fireball,600,bright orange ball of fire in the sky +2011-04-15,40.7141667,-74.0063889,New York City,NY,circle,900,Light was traveling and huvering fast , slow, steady. fast one direction, stopping for about 5 secs, then speeding in another direction +2012-04-15,33.5016667,-81.9652778,North Augusta,SC,circle,8,6-8 circular object red and orange around Belvadere Elementary school. +2012-04-15,28.5388889,-80.6722222,Merritt Island,FL,fireball,5,Fireball 5 seconds +2012-04-15,47.4736111,-94.88,Bemidji,MN,other,420,4 separate crafts spotted, w/ 1st a "cigar or cylindrical" in shape, then a dark craft. ((NUFORC Note: Birds or insects? PD)) +2012-04-15,40.7691667,-73.1155556,Bohemia,NY,oval,180,Balloonish UFO slowly moves then zooms out of our view +2012-04-15,36.3133333,-82.3536111,Johnson City,TN,triangle,60,5 unusual lights appeared and disappeared into thin air. +2012-04-15,37.6922222,-97.3372222,Wichita,KS,light,180,Five blinking lights in diamond shape moving from one side of sky to the other. +2012-04-15,32.3122222,-106.7777778,Las Cruces,NM,other,20,Green swoosh/check-mark gliding over NMSU +2012-04-15,27.4986111,-82.575,Bradenton,FL,cross,1800,Multi-colored lights over southwest Bradenton Fl. +2012-04-15,40.7441667,-73.4825,Bethpage,NY,circle,1200,5 total red lights over long island. +2013-04-15,36.9486111,-84.0969444,Corbin,KY,sphere,30,2 balls of white light, one appeared and then the other.... Flew off at unfathomable speeds. +2013-04-15,32.1130556,-103.1930556,Jal,NM,light,5,There were a few red lights that burst to a speed that seemed like light speed then disappeared. +2013-04-15,35.2619444,-81.1875,Gastonia,NC,light,120,Red pulsating light hovering in sky over Gastonia, NC. +2013-04-15,35.8825,-80.0822222,Thomasville,NC,disk,240,Round disk hovering with bright blue lights that changed to blue, red, yellow and green. +2013-04-15,45.1719444,-93.8744444,Buffalo,MN,cylinder,240,((NUFORC Note: Source of report provides no information. PD)) +2013-04-15,47.9791667,-122.2008333,Everett,WA,fireball,900,Bright star like craft spotted in Everett WA. 4/15/13 +2013-04-15,41.3955556,-85.4244444,Albion,IN,triangle,180,Low, hovering, triangular, Four lights on front, red and white, one or two on the back, none on the bottom. +2014-04-15,34.1361111,-117.8644444,Glendora,CA,cylinder,8,Small cylinder flying across the sky during the blood moon lunar eclipse. +2014-04-15,45.5236111,-122.675,Portland,OR,sphere,60,Sphere - Multiple Colors - Sporadic Movement - During Lunar Eclipse. +2014-04-15,34.0522222,-118.2427778,Los Angeles,CA,light,5,Two faint bluish-white lights streak in a slightly wobbly way under the lunar eclipse over LA. +2014-04-15,39.7391667,-104.9841667,Denver,CO,circle,20,((HOAX??)) Squadron of enormous UFOs seen over denver at moment of full lunar eclipse. +2014-04-15,39.7391667,-104.9841667,Denver,CO,chevron,10,A boomerang-shaped black object flys overhead during an eclipse in Denver. +2014-04-15,32.7947222,-116.9616667,El Cajon,CA,light,3600,Two erratic blinking lights spotted in East County that moved, vanished, reappeared, traveled, and finally disappeared. +2014-04-15,40.5852778,-105.0838889,Fort Collins,CO,formation,5,Moving Triangular light pattern. +2014-04-15,35.1472222,-107.8508333,Grants,NM,triangle,60,Triangular, soundless UFO observed in Grants, NM during "blood moon" eclipse event. +2014-04-15,29.4238889,-98.4933333,San Antonio,TX,light,10,Light moving back and forth during blood moon eclipse. +2014-04-15,32.7947222,-116.9616667,El Cajon,CA,unknown,120,Two smoothly flashing lights appear above sky before end of lunar eclipse. +2014-04-15,37.6922222,-97.3372222,Wichita,KS,cylinder,120,Stationary cylinder object lights up sky and rockets out of sight. +2014-04-15,41.8005556,-73.1216667,Torrington,CT,light,15,I suddenly got the thought to "look up..." +2014-04-15,26.5625,-81.9497222,Cape Coral,FL,fireball,15,Witnessed and photographed a low flying fireball heading northward at 4 am that did not apppear like any fly object I ever saw. +2014-04-15,33.5386111,-112.1852778,Glendale,AZ,circle,600,Silver object, daytime sighting, Glendale, AZ. +2014-04-15,33.6305556,-112.3325,Surprise,AZ,formation,180,While outside, a slightly arched line of approximately 8 lights were seen. Colors were white, green, and red and were alternating color +2014-04-15,35.3736111,-83.2261111,Sylva,NC,egg,15,Loud egg shaped aircraft. +2014-04-15,32.3502778,-108.7080556,Lordsburg,NM,cylinder,900,A large stationary craft in the southern skies of New Mexico. +2014-04-15,42.955,-115.3,Glenns Ferry,ID,rectangle,120,Red light flashing under battle tank hovering. +2014-04-15,44.5191667,-88.0197222,Green Bay,WI,light,1200,Saw a really high up ligh thought it was a tall light but it started to hover down and up. It was flashing red,blue,red,blue real quick +2014-04-15,35.8233333,-78.8258333,Morrisville,NC,light,30,Noticed 4 red lights in the sky not too high up. +2014-04-15,42.2433333,-113.8811111,Oakley,ID,circle,5,The object was an orange light, almost like a flare shot from a flare gun, but it hovered for a couple of seconds then faded out. +2014-04-15,42.2433333,-113.8811111,Oakley,ID,oval,5,It was completely dark when we were driving home and there were two squarish orange lights above the horizon, but disappeared. +2014-04-15,44.9444444,-93.0930556,Saint Paul,MN,oval,3600,Hovering object over Lunar eclipse moon. +2014-04-15,39.6427778,-84.2866667,Miamisburg,OH,light,60,Look like a drop glowball. +1977-04-16,43.8208333,-72.5216667,South Royalton,VT,disk,60,As reported to MUFONCT: While driving south on rt 89 near South Royalton, VT I spotted huge dark, metallic gray with sectioned plated +1987-04-16,27.9655556,-82.8002778,Clearwater,FL,other,180,This is not the flying spaceship UFO, but since it wasnt on the ground or identifiable this seemed the place to go. For 24 years I kept +1989-04-16,34.07,-117.1336111,Mentone,CA,other,240,one night it was clear in the sky and along the crestline mountains we saw a red flash and then a rectangle light stationary for half a +1992-04-16,36.9902778,-86.4436111,Bowling Green,KY,disk,3600,Strange Witness Encounter: Famous Shootdown of US Aircraft by UFO +1993-04-16,39.8438889,-84.1247222,Huber Heights,OH,disk,180,Made me feel weird, hovered, and then became invisable +1994-04-16,43.1536111,-93.2008333,Mason City (South Of),IA,unknown,60,I was going south on I35 in a Greyhound bus in northern Iowa. It was early in the am. and i was just sitting awake then suddenly, a ver +1995-04-16,47.5002778,-111.3,Great Falls,MT,oval,600,Metallic Oval hovers in broad daylight at Great Falls International Airport +1999-04-16,35.0302778,-91.9502778,Ward (Northeast Of, On Hwy. 67/167mm 25),AR,sphere,10,Fire ball dropped straight from sky. +1999-04-16,46.0038889,-112.5338889,Butte (Approx 40 Miles S. Of, On Nb Interstate 15),MT,light,900,Low flying red & white light, traveling from left to right, which stopped mid air, darted backward, spun around and drift/darted around +1999-04-16,41.6611111,-91.53,Iowa City,IA,circle,300,It was circular with three round lights on the bottom in the form of a triangle, hovering right over us before taking off into the sky +2000-04-16,32.8383333,-116.9730556,Santee (San Diego),CA,light,180,A slow moveing amber light that would increase and decrease brightness, sustaining its brightness in 5 second intervals. Turning at a 8 +2000-04-16,35.0844444,-106.6505556,Albuquerque,NM,rectangle,300,saw first light, then second light, parked car to better observe, and saw third light light seemed very high alt. light intensity fluct +2000-04-16,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,15,Objects Round and White - 1st sighting speed apx. 400 mph, 2nd apx. 800 mph, this is just a estimate. Hight apx. 5000 ft. +2000-04-16,32.7152778,-117.1563889,San Diego,CA,cylinder,2100,Cylinder object, sighted on Naval Medical Center spys on music festival for all to see. +2000-04-16,41.2586111,-95.9375,Omaha,NE,fireball,20,A white ball of light being followed by something that took off at a speed I never knew existed. +2001-04-16,35.8455556,-86.3902778,Murfreesboro,TN,disk,300,Mysterious Disk seen lying on ditch of Tennessee Highway 840. Seen from an adjecent non-connected road. Then the Disk Vanished. +2001-04-16,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,12,My first sighting on this day was at apx. 11:00 hours.I was on my way to the supermarket and while crossing the street I noticed tw +2001-04-16,27.9472222,-82.4586111,Tampa,FL,other,60,Black line in sky running from horizon to top of sky. +2001-04-16,40.7141667,-74.0063889,New York City (Brooklyn),NY,sphere,15,Sighting one, 1300 hrs., two white, round objects spotted by me coming from the north/east turning to the east. Both objects identical +2001-04-16,39.7391667,-104.9841667,Denver,CO,changing,120,(see discripton) +2002-04-16,37.3183333,-84.9394444,West Liberty,KY,changing,2700,The object that I saw in the night sky was round, flashing different colors and moved around in the same area for 28mins. +2002-04-16,40.4236111,-75.06,Byram,NJ,circle,900,Silver-blue-red flashing light seen above northwestern New Jersey +2002-04-16,39.5538889,-104.9688889,Highlands Ranch,CO,cylinder,120,LIghted cylinder unexplained object was spotted in Douglas County Colorado +2002-04-16,42.7652778,-71.4680556,Nashua,NH,disk,4,Circular craft with rotating pulsating lights on the sides only +2002-04-16,42.7652778,-71.4680556,Nashua,NH,disk,4,Circular pulsating lights on sides of large, silent, disk shaped object +2003-04-16,42.07,-84.3305556,Cement City,MI,triangle,300,i saw a triangular shaped craft with lights at each angle then flew away. +2003-04-16,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,15,Invading Laguardia's Air Space. +2003-04-16,44.6994444,-73.4533333,Plattsburgh,NY,circle,60,It6 moved at a high rate of speed from northwest to southeast leaving no trail and showing no indication of being a manmade aircraft. +2003-04-16,43.9716667,-70.6097222,Naples,ME,flash,2700,2 in car followed by ship others around town saw +2004-04-16,41.22,-74.8716667,Dingmans Ferry,PA,changing,900,o4:45 april 16. object changed shape from a dot to a rectangle, at about 120 degrees from north of dingmans ferry pa. +2004-04-16,40.7544444,-86.3566667,Logansport,IN,sphere,60,On 4-16-2004 I saw a huge sphere shaped object that had six lights in the sky over Logansport and it remained for several seconds. +2004-04-16,35.4713889,-93.4663889,Clarksville,AR,changing,420,three flying objects going fast in the sky in the middle of the day. +2004-04-16,30.2941667,-87.5736111,Orange Beach,AL,sphere,1800,Object traveling back-and-fourth for unknown reason and unidentifible possibly because of the distant when the object was sighted. +2004-04-16,40.1572222,-76.3072222,Lititz,PA,disk,20,Disk sighting in broad daylight +2004-04-16,39.7391667,-104.9841667,Denver,CO,cylinder,1200,Independent confirmation of a previously reported sighting of a UFO of Denver, CO. +2004-04-16,39.7391667,-104.9841667,Denver,CO,unknown,1200,Silver object remians stationary in skys above denver for 20 minutes. +2004-04-16,28.5380556,-81.3794444,Orlando,FL,oval,60,OVAL SHAPE OBJECT BETWEEN TWO JET AIR CRAFT, NO VAPOR TRAIL, OTHER AC MOVING NORTH +2004-04-16,41.926944399999996,-73.9977778,Kingston (Ny Thruway, I-87),NY,circle,120,Object seen traveling over NYS Thruway. Bright pink/red top with bright white lights along the rim. Seemed to travel back and forth +2004-04-16,40.7544444,-86.3566667,Logansport,IN,light,600,Reddish orange light that moved from place to place. +2004-04-16,40.6027778,-86.8672222,Brookston,IN,light,600,3rd Sighting of 3 Sightings from March 2003 - April 2004 - Yellow/Orange Lights in Formation +2004-04-16,40.5083333,-86.8416667,Battle Ground,IN,light,10,4-5 bright orange/gold lights that instantly disappeared +2004-04-16,40.7544444,-86.3566667,Logansport,IN,fireball,300,We saw 6 objects that looked like fireballs coming up from the western horizon. We stopped our car to see what it was , the fireballs f +2005-04-16,35.7719444,-78.6388889,Raleigh,NC,circle,960,flashing light outside the window +2005-04-16,34.815,-92.2241667,Sherwood,AR,sphere,900,5 spheres in NE direction of the sky +2005-04-16,34.1866667,-118.4480556,Van Nuys,CA,circle,600,Strange shiny object seen over Van Nuys, CA 4/16/05 +2005-04-16,36.9902778,-86.4436111,Bowling Green,KY,oval,240,Black Oval Object Observed Over City +2005-04-16,42.1055556,-71.5527778,Mendon,MA,light,3600,Stationary red, blue flashing lights in sky west, southwest of Mendon MA ((NUFORC Note: Possibly the star, Sirius. PD)) +2005-04-16,40.8952778,-73.8075,Pelham Manor,NY,other,120,Shuriken like craft +2005-04-16,40.6027778,-86.8672222,Brookston,IN,triangle,10,april 16񫺕 time 8:30pm bright white lights off towards the north east triangle shape lights +2005-04-16,40.3794444,-86.0886111,Sharpsville,IN,light,15,Lights may be the same ones seen by others in area +2005-04-16,40.3444444,-86.6652778,Mulberry,IN,circle,80,My husband and I were at a friends for a cookout. At around 8:45 pm one of our friends said,"hey what is that?" We all looked behind +2005-04-16,40.4166667,-86.8752778,Lafayette,IN,flash,60,it was awesome we saw one big light spilt to 5 and then back to the one main one and went away +2005-04-16,40.4863889,-86.1336111,Kokomo,IN,formation,60,Formation of 6 silent white lights that hovered and dissappeared. +2005-04-16,41.2844444,-84.3558333,Defiance,OH,other,7200,What we saw was a large circle of cloud perfectly centered around the moon. ((NUFORC Note: Possible "Moon Dog." PD)) +2005-04-16,42.3952778,-73.6983333,Kinderhook,NY,changing,2,UNKNOWN SHAPE, CONSTANT FLASHING LIGHTS, RED TO BLUE TO YELLO TO GREEN ((NUFORC Note: Sirius?? PD)) +2005-04-16,27.2927778,-81.3630556,Lake Placid,FL,light,120,Fast Moving Light High up in Atmosphere +2005-04-16,40.4166667,-86.8752778,West Lafayette,IN,disk,15,half lit disc over Lafayette? +2005-04-16,29.7630556,-95.3630556,Houston,TX,circle,7,04/18/05 10:40pm Houston, TX, 4 brillant white lights w/soft green glow, each circle shaped, yet in formation as if one individual UFO +2006-04-16,46.8722222,-113.9930556,Missoula,MT,light,300,A bright white light like I've never seen before +2006-04-16,33.4052778,-86.8113889,Hoover,AL,other,240,2 different ships 2 different days +2006-04-16,34.7463889,-92.2894444,Little Rock,AR,fireball,60,The four of us were stargazing after closing up the bookstore. When from the west we notice a object coming towards us at first we thou +2006-04-16,47.6063889,-122.3308333,Seattle,WA,circle,30,8 orange glowing round objects moving east to west in the same pattern, Seattle, Washington +2006-04-16,40.6441667,-97.45,Exeter,NE,fireball,5,A reddish pink glow in sky, seemed to be moving towards us and then dissappeared. +2006-04-16,42.2458333,-84.4013889,Jackson,MI,disk,600,for 10 min 3 crafts hovered over our airport with blue lights in a triangle then seperated in different directions +2007-04-16,35.6527778,-97.4777778,Edmond,OK,other,315,Upside down Star of Bethlehem light with red upside down appendages +2007-04-16,35.4872222,-80.6219444,Kannapolis,NC,disk,10,Top &bottom of chrome disk in morning sky for 10-15 seconds,then it disapears!! +2007-04-16,42.0427778,-88.0797222,Hoffman Estates (8 Mi. Nw Of O'hare Airport),IL,formation,60,Strange Shaped Rectangle Object Sighted 8 Miles NW of O'Hare International Airport +2007-04-16,37.9513889,-91.7711111,Rolla,MO,triangle,45,Two objects, each a set of triangular lights, moving due East at 20:50 on 4/16/07 in Rolla, Missouri. +2007-04-16,37.9319444,-121.6947222,Brentwood,CA,fireball,300,3 fiery, balls of light moving slowly across the night sky within a 45 minute time frame. +2007-04-16,34.5794444,-118.1155556,Palmdale,CA,triangle,3,((HOAX??)) bottom of ship was a single sheet of orange red light, not one bulb or multiple light. +2007-04-16,41.8427778,-87.8230556,North Riverside,IL,light,780,Bright ball light craft. +2007-04-16,41.8505556,-87.8819444,Westchester (Canada),IL,light,900,Bright light object not like any other aircraft hovered in same place for 10-15 min the disappeared. +2008-04-16,41.6833333,-86.25,South Bend,IN,circle,5,misterious lights over indiana +2008-04-16,38.3913889,-86.9311111,Jasper,IN,unknown,1,Unusual streak of green to blue light flew down the southern sky. 500 Lights On Object0: Yes +2008-04-16,40.4863889,-86.1336111,Kokomo,IN,light,180,Lights circling the skies of Kokomo Indiana +2008-04-16,40.4166667,-86.8752778,Lafayette,IN,light,15,this aint no hoax, it for real, i saw what i saw! +2008-04-16,40.0427778,-86.1275,Westfield,IN,cigar,180,A huge Object with about 22 lights rotating counter clock wise moving, hovering, and then vanishing North of Hamilton County Indiana!!! +2008-04-16,33.4708333,-81.975,Augusta,GA,triangle,10,Flasing triangular lights in rural Georgia +2008-04-16,40.7933333,-77.8602778,State College,PA,flash,900,Silver lines/flashes in the sky. +2008-04-16,41.2794444,-72.8155556,Branford,CT,cylinder,60,Incrediably fast object hovering then accelerating to tremendous speed, and then disappearing. +2008-04-16,35.9938889,-78.8988889,Durham,NC,disk,10,Shiney Blob of Metal Hovering in Broad Daylight Durham NC +2008-04-16,39.3641667,-74.4233333,Atlantic City,NJ,light,600,We just witnessed an object off of Atlantic City New jersey that seemed to have split into five or six pieces within a split second. +2008-04-16,32.7152778,-117.1563889,San Diego,CA,triangle,5,Dark evening sky, triangular object moving fast, colorful lights reflecting off the evening mist, faded away +2008-04-16,29.7630556,-95.3630556,Houston,TX,other,20,They were shaped like geese would fly. We were lying in the back yard watching the stars and it came from south to north. My son said l +2008-04-16,36.6002778,-121.8936111,Monterey,CA,light,10800,You can see UFOs with third generation night vision goggles 95% of the time. +2008-04-16,44.98,-93.2636111,Minneapolis,MN,formation,20,20-30 orbs in birdlike formation heading east from west. City lights illuminated bottoms of orbs +2008-04-16,33.2822222,-116.6327778,Warner Springs,CA,circle,10,Round object the size of the moon, navy blue with gold and red around the rim of the object. +2008-04-16,41.5627778,-83.6538889,Maumee,OH,triangle,1200,Blue lights in a trianular shape southwest of Maumee, Ohio +2008-04-16,42.2711111,-89.0938889,Rockford,IL,triangle,90,An engineer in the aero-engineering field could not identify a strange triangular object over northern Illinois. +2008-04-16,40.0455556,-86.0086111,Noblesville,IN,triangle,180,V shaped objects seen in the night sky over central Indiana, USA +2008-04-16,40.4863889,-86.1336111,Kokomo,IN,formation,120,4 or 5 yellow lights in the sky followed a loud explosion noise. They moved in perfect unison, if one went to the left, they all moved. +2008-04-16,40.4863889,-86.1336111,Kokomo,IN,formation,60,Bright Yellow lights moving in unison, and then dropping straight down. +2008-04-16,40.4863889,-86.1336111,Kokomo,IN,light,30,Ther was 7 to 9 very bright objects that came from the West sky, stopped, then jetted off to the North. +2008-04-16,39.0638889,-108.55,Grand Junction,CO,oval,420,Unexplainable glowing craft moving oddly over the Grand Junction Airport +2008-04-16,41.1536111,-81.3580556,Kent,OH,disk,15,On 4/16/08, I saw a fast moving circular object with colored lights moving across the sky and then seemed to zip-zag out of sight. +2008-04-16,37.3022222,-120.4819444,Merced,CA,light,600,3 CRAFT OVER A VACANT FIELD AT NIGHT, 2 CRAFTS WITH LIGHTS & 1 AN ORANGE BALL +2008-04-16,40.4863889,-86.1336111,Kokomo,IN,light,30,Ther was 7 to 9 very bright objects that came from the West sky, stopped, then jetted off to the North. +2008-04-16,41.4297222,-84.8713889,Butler,IN,light,120,white light traveling fast from south to north then disappearing +2009-04-16,45.8405556,-119.2883333,Hermiston,OR,triangle,8,V Light Formation +2009-04-16,42.7977778,-83.705,Fenton,MI,cross,7200,that your fake! +2009-04-16,41.4886111,-75.7088889,Clarks Summit,PA,unknown,120,THIS WAS WITNESSED IN THE DAY -- A CLEAR BLUE SKYED DAY , AND IT WAS FAST !! +2009-04-16,38.2811111,-80.8527778,Summersville,WV,cylinder,30,Large white cylinder object heading northwest direction +2009-04-16,29.8944444,-81.3147222,St. Augustine,FL,sphere,90,Large, metal, cylinder object over Saint Augustine Beach hovers and then disappears. +2009-04-16,41.0263889,-73.6288889,Greenwich,CT,cylinder,60,Cylindrical object in South Wester Connecticut +2009-04-16,36.175,-115.1363889,Las Vegas,NV,cigar,180,This stuff is real! I, Mr.Non-believer, saw this. With my own eyes. +2009-04-16,38.8938889,-82.5736111,Oak Hill,OH,unknown,25,3 round lights in line horizontally hovering in place near a radio tower, disappear one by one. +2009-04-16,41.6638889,-83.5552778,Toledo,OH,other,10,UFO spotted over Toledo, OH, USA. Arc shaped and semi-tranparent. +2009-04-16,39.3330556,-82.9825,Chillicothe,OH,changing,10,5 orange glowing lights in the south western sky +2009-04-16,41.7308333,-84.9327778,Fremont,IN,light,3600,A star like object that hovered and appeared to change color. +2009-04-16,40.0580556,-82.4013889,Newark,OH,light,3600,big bright ball of light and a smaller redish light +2009-04-16,34.8238889,-89.9936111,Hernando,MS,rectangle,30,Stealthy rectangular object seen over Hernando, MS +2010-04-16,46.5436111,-87.3952778,Marquette,MI,triangle,6,Triangular UFO over marquette michigan +2010-04-16,45.8044444,-96.4988889,Wheaton,MN,triangle,7,Flying v with lights around parimeter +2010-04-16,42.6405556,-84.5152778,Holt,MI,disk,30,A bright light in the sky came closer and closer to the ground eventually coming down as some kind of flying object +2010-04-16,36.9741667,-122.0297222,Santa Cruz,CA,formation,30,Group of lights moving and changing direction through the sky in Santa Cruz, CA 4/16/2010 @ 10:15 p.m. +2011-04-16,40.015,-105.27,Boulder,CO,light,900,3 lights moved past a streak that was left by an airplane but the lights were very very far away. +2011-04-16,39.6133333,-105.0161111,Littleton,CO,disk,2,I witnessed a shadowy disk in the afternoon sky and also have a photo of a the disk in early morning. +2011-04-16,25.7738889,-80.1938889,Miami,FL,other,4,Black, No lights, slanted V shaped +2011-04-16,25.7738889,-80.1938889,Miami,FL,other,4,Stationary, black, slanted V Shape, No Lights. +2011-04-16,34.2077778,-117.1083333,Running Springs,CA,light,10,A UFO spotted through a spotting scope, changing its directions near the moon. +2011-04-16,34.1063889,-117.5922222,Rancho Cucamonga,CA,triangle,120,It moved at first then ..did not move ,changed colors & disappeared +2011-04-16,27.8002778,-97.3961111,Corpus Christi,TX,circle,45,Straight line high speed that seemed to vary +2011-04-16,39.5297222,-119.8127778,Reno,NV,circle,4,green circular object traveling over reno extremely fast. +2011-04-16,29.8502778,-81.2655556,St. Augustine Beach,FL,formation,5,Triangle light formation seen shooting across sky over beach +2012-04-16,40.0580556,-82.4013889,Newark,OH,light,120,Red light (orb) +2012-04-16,47.6588889,-117.425,Spokane,WA,unknown,1200,seen an alien +2012-04-16,38.4972222,-122.9655556,Santa Nella,CA,rectangle,600,I observed a object that caused multiple vehicles to pull off the freeway to look. +2012-04-16,37.0583333,-120.8488889,Los Banos,CA,oval,2700,Staff and students looked up into the western blue sky with a light cloud cover. In the distance we all witnessed an object fade in an +2012-04-16,37.0583333,-120.8488889,Los Banos (Near),CA,rectangle,600,Pacheco Pass/Los Banos Object +2012-04-16,37.8044444,-122.2697222,Oakland,CA,disk,300,Floating flat disc seen in Oakland, CA. +2012-04-16,44.9341667,-68.6458333,Old Town,ME,light,300,Bright orange tail shot across sky followed by moving star +2012-04-16,33.3702778,-112.5830556,Buckeye,AZ,light,180,Orange lights over mountain Southwest of Buckeye +2012-04-16,43.0361111,-70.8333333,Greenland,NH,flash,600,3 erratically flashing lights, viewed for several minutes by two witnesses approx 10 miles apart. +2012-04-16,42.2833333,-71.35,Natick,MA,triangle,45,Completely silent, low flying almost translucent object. +2012-04-16,28.0833333,-80.6083333,Melbourne,FL,circle,120,Green zig zagging light +2012-04-16,40.1744444,-74.9230556,Langhorne,PA,formation,1800,3-4 lighted circles in the sky. +2012-04-16,35.2269444,-80.8433333,Charlotte,NC,light,600,Red, blue, and green twinkling lights in western Charlotte, NC sky. ((NUFORC Note: Possible sighting of Venus or Sirius?? PD)) +2012-04-16,35.0844444,-106.6505556,Albuquerque,NM,flash,120,I was in my bedroom in bed. I happened to look at my window and saw a deep blue horizontal light shaped like a bar flashing across the +2012-04-16,41.7013889,-71.1555556,Fall River,MA,other,40,This was my very first UFO hope to see Moore. +2012-04-16,40.7441667,-73.4825,Bethpage,NY,flash,1,What I saw was a blue flash of light shoot past my tree line and then disappear. +2013-04-16,45.2461111,-93.4519444,Ramsey,MN,unknown,1200,Flying object at midnight to close to ground level to be a plane, 3 bright white blinking lights emmited from it. +2013-04-16,42.9144444,-73.5141667,Johnsonville,NY,changing,1200,It was red orange and it changed its shape and just hoverd over the tree line. +2013-04-16,40.8372222,-81.2597222,Louisville,OH,circle,300,My girlfriend and I saw moving lights this morning that looked piloted by humans, but they areas far away as a star! +2013-04-16,41.6252778,-72.3436111,Amston (Hebron),CT,triangle,30,I was walking my dog around Amston Lake when I noticed a low flying triangle with three lights (one on each corner and one of them blin +2013-04-16,36.175,-115.1363889,Las Vegas,NV,light,30,The date that i saw the two incidents not exact. I remember the first encounter taking place sometime in early spring 2013. I was d +2013-04-16,38.7297222,-120.7975,Placerville,CA,circle,300,A large orange orb in night sky broke up into five small lights, slowly fell toward the ground +2013-04-16,44.2594444,-114.4008333,Clayton,ID,cross,3000,Bright flashing lights of all colors. Hovering then zig zaging north to south. More moving activity shooting Across the sky. Then abov +2013-04-16,46.6433333,-118.5558333,Kahlotus,WA,fireball,600,Orange fireball in sky; not moving; observed for 5 minutes; left and came back 4-5 minutes later and it was gone! +2013-04-16,44.9133333,-93.5030556,Minnetonka,MN,circle,2700,MINNETONKA UFOS. +2013-04-16,46.3191667,-111.52,Townsend,MT,cigar,3600,The first strange thing I noticed was three bright white lights in a row above our Elk Horn Mountains. I looked around the sky and I no +2014-04-16,37.73,-76.5383333,Mollusk,VA,fireball,1800,Flashing Object in Western Sky. ((NUFORC Note: Possibly a "twinkling" star…Sirius?? PD)) +2014-04-16,32.7291667,-82.72,Wrightsville,GA,fireball,600,Line of fire balls in the sky right above tree line. +2014-04-16,34.7302778,-86.5861111,Huntsville,AL,cross,1800,Drone or VTOL. ((NUFORC Note: Possible quad-copter?? PD)) +2014-04-16,30.6941667,-88.0430556,Mobile,AL,other,60,My husband and I both seen a metallic object hovering in the daytime, then it suddenly disappeared. +2014-04-16,36.175,-115.1363889,Las Vegas,NV,unknown,300,UFO Captured Over North Las Vegas +2014-04-16,32.6108333,-110.7702778,Oracle,AZ,sphere,6,4 or 5 orange-tinted lights, in formation, then split off and disappeared. No sound. Duration: a few seconds. +2014-04-16,32.2216667,-110.9258333,Tucson,AZ,sphere,120,6 bright orange spheres in the sky N of the Catalina Mountains. +2014-04-16,33.7413889,-118.1038889,Seal Beach,CA,unknown,25,Orange/red orb closely followed by F/A-18 Hornet at high rate of speed from south to north in Seal Beach, Ca. +2014-04-16,38.9822222,-94.6705556,Overland Park,KS,unknown,1,Blue light accelerating at an extremely high rate of speed, then disappearing. +2014-04-16,40.8222222,-86.1155556,Mexico (Close To; On Us 31),IN,chevron,600,Huge boomerang shaped aircraft buzzed me. +2014-04-16,36.6436111,-93.2183333,Branson,MO,triangle,5,It was a black triangle with no sound heading from the south to the north real fast. +1958-04-17,44.4913889,-73.1861111,Winooski,VT,oval,300,more on the 1958 "fireball" in Winooski sky in case you didn't recieve the PDF file I sent of the newspaper clippings. +1958-04-17,44.4913889,-73.1861111,Winooski,VT,oval,5400,object hovered, landed then left headed north traveling at 60Kmph, being tracked across USA by several radar sites. +1966-04-17,41.0238889,-81.1636111,Atwater,OH,other,5400,On April 17th , 1966, one of the greatest UFO chases occured With police in NE Ohio and Western PA +1977-04-17,39.4727778,-76.5233333,Long Green,MD,disk,900,Black Disc, Light driven +1977-04-17,33.4708333,-81.975,Augusta (Ft. Gordon),GA,rectangle,1200,As I reported in my first submission, I was standing guard, with a Pvt. Rodriguez. And noticed a fireball similar to the one I witness +1987-04-17,40.3769444,-111.795,American Fork,UT,formation,600,About a dozen objects flew in a diamond formation (from our perspective) from the north overhead to the south. +1991-04-17,33.4597222,-94.4152778,New Boston,TX,oval,240,I believe now, especially after the craft hovered over me, only feet above my head!!! +1992-04-17,45.7833333,-108.5,Billings,MT,disk,300,One Disk shaped object with many colored lights. +1995-04-17,38.7775,-75.3102778,Milton,DE,disk,14400,over DE bay flickering lights moving over DE shore/ New Jersey shore .warm air temp. for April/sky colors +1998-04-17,42.44,-85.6488889,Plainwell,MI,triangle,3600,My friends and i witnessed 1 triangle shaped craft and two bright smaller shaped craft darting across our feild of view in our yard nea +1999-04-17,39.8402778,-88.9547222,Decatur,IL,circle,50,I was in my van with my 2 children, headed east on West Main Street. In the eastern sky we saw a round, red object with smoke behind i +1999-04-17,34.0522222,-118.2427778,Los Angeles,CA,triangle,30,A "V" formation of lights following a Los Angeles Airport flight path. (How could no one else see it)? +1999-04-17,39.2666667,-81.5616667,Parkersburg (Just Outside Of, On Route 50 East),WV,triangle,180,It was hovering in one spot about 100 ft off the ground, it was triangled with the brightest white lights I have ever saw, when the spa +2000-04-17,45.52,-123.1094444,Forest Grove,OR,cone,600,I WOKE UP LATE AT NITE TO GET A DRINK OF WATER AND NOTICED SOME WIERD LIGHTS COMMING FROM THE KICTHEN WINDOW AND I WAS SO SCARED IT PUT +2000-04-17,34.0522222,-118.2427778,Los Angeles,CA,sphere,20,Green tennis ball-like object above Los Angeles Airport. +2000-04-17,47.8627778,-121.8152778,Sultan (Approx 5 Mi. Se),WA,light,2.5,Witnessed a very bright meteor in broad daylight. It changed in color and was followed by a low boom noise minutes later. +2000-04-17,35.6869444,-105.9372222,Santa Fe,NM,cylinder,10800,I was closing the kitchen curtains when I glanced upward and saw a bright, yellow cylinder, very sparkly moving slowly--I thought it wa +2000-04-17,38.005,-121.8047222,Antioch,CA,fireball,600,We observed an orange fireball moving slowly, under the cloud layer. First moving in an easterly direction, then turning north. +2000-04-17,44.5647222,-123.2608333,Corvallis,OR,fireball,10,What may have been another Corvallis fireball lit the night sky for 10 seconds above the cloud deck at 2254 PDT. +2001-04-17,33.6408333,-117.6022222,Rancho Santa Margarita,CA,unknown,1,Brief pulse of visible, white light from an unknown source, which made daylight appear to be extremely bright +2001-04-17,34.0522222,-118.2427778,Los Angeles,CA,sphere,20,Green tennis ball-like object above Los Angeles Airport. +2001-04-17,33.8886111,-117.8122222,Yorba Linda,CA,cone,120,Spinning cone shaped object over Yorba Linda California area. +2001-04-17,33.8333333,-111.95,Cave Creek,AZ,triangle,30,Triangular pattern of 3 moving lights north of Phoenix. +2002-04-17,39.9522222,-75.1641667,Philadelphia,PA,disk,40,A round pitch black craft with a small triangle shape tail and some gray area with ridges on what looked like small round wings +2002-04-17,34.8480556,-114.6133333,Needles,CA,circle,10,I was driving west on I40, west of Needles, CA. about 3:30 am. There were many semi trucks on the road who probably saw this, too. It +2002-04-17,35.5769444,-92.1772222,Greers Ferry,AR,unknown,1500,3 orange lights brighten then fade away aircraft in area observing also UFO sighting over lake in Ozarks +2002-04-17,39.7047222,-105.0808333,Lakewood,CO,light,300,Saw two star-like objects traveling southeast +2002-04-17,33.4222222,-111.8219444,Mesa,AZ,unknown,60,Small satelite object that moved, stopped and faded away. +2002-04-17,41.3366667,-75.5188889,Moscow,PA,cigar,300,very large and slow moving object +2002-04-17,36.8527778,-75.9783333,Virginia Beach,VA,light,120,2 sets of moving parallel lights, 1 nrth/south of each other which criss crossed, 1 ea/wst which moving fast +2002-04-17,34.1975,-119.1761111,Oxnard,CA,light,300,On Wednesday April 17, 2002 I had just returned home from attending a Centennial Committee meeting that had finished at Oxnard City Hal +2002-04-17,40.7969444,-76.4122222,Mt. Carmel,PA,light,300,2 light objects in the night sky not corresponding to know jet flying patterns or noise. +2002-04-17,33.7669444,-118.1883333,Long Beach,CA,light,40,Two fast movers over L.A. +2002-04-17,37.3394444,-121.8938889,San Jose,CA,circle,35,Looked like very bright stars over San Jose Ca, but stars don't float that fast across the sky! +2002-04-17,38.4022222,-122.8227778,Sebastopol,CA,light,60,two "star-like" objects traveling in parallel +2002-04-17,36.7477778,-119.7713889,Fresno,CA,disk,180,Horizontal lights appear connected and moving at high altitude and high rate of speed Fresno CA +2002-04-17,29.4238889,-98.4933333,San Antonio,TX,light,180,NIGHT LIGHTS +2002-04-17,30.4211111,-87.2169444,Pensacola,FL,light,30,Two stationary lights on the western horizon suddenly moved simultaneously upward then began to move southwesterly. Both were whitish l +2002-04-17,45.2102778,-123.1975,Mcminnville,OR,oval,5,Glowing oval and flying triangle observed in McMinnville Oregon +2002-04-17,29.4238889,-98.4933333,San Antonio,TX,unknown,1200,Seven UFOs spotted on a beautifully clear south Texas night over San Antonio +2002-04-17,35.5322222,-97.9547222,El Reno,OK,other,3300,Strange Sights into the night! +2003-04-17,33.4502778,-88.8183333,Starkville,MS,light,120,BRIGHT LIGHT MOVING ACROSS SKY, SLIGHTLY ZIG ZAGGING, MET 2 OTHER FAINT LIGHTS...GONE +2004-04-17,41.0638889,-80.0566667,Slippery Rock,PA,light,10800,Orangeish small lights flying mostly in a "V" formation with no sound at least 500 or more for at least 3 hours +2004-04-17,38.2541667,-85.7594444,Louisville,KY,disk,1200,My mother and I were driving down the road when we seen this odd shaped object in the sky but with it being Thunder Over Louisville we +2004-04-17,29.8830556,-97.9411111,San Marcos,TX,oval,8,Approx 5mph-900mph in 2 secs +2004-04-17,35.0525,-78.8786111,Fayetteville,NC,oval,120,Oval, orange bulb object appearing in Fayetteville, NC +2004-04-17,33.4483333,-112.0733333,Phoenix,AZ,disk,300,Large white saucer-type aircraft spotted hovering in the late evening Phoenix sky for several minutes & then disappeared +2004-04-17,42.4091667,-82.8919444,Grosse Pointe Farms,MI,light,3,Bright green light streaking southeast over lake St. Clair toward Canada. +2005-04-17,42.1291667,-80.0852778,Erie,PA,other,240,swirling lighted cload +2005-04-17,36.1011111,-93.9911111,Goshen,AR,circle,2,I spotted an orb heading NE,electric blue with a white ring around it.. It quickly dissappeared behind the clouds. +2005-04-17,39.0483333,-95.6777778,Topeka,KS,egg,1,It just all of a sudden came across the sky. It was bright blue with a yellow to orange color tail. It shot across the sky then just di +2005-04-17,40.8263889,-74.1072222,Rutherford,NJ,other,600,shining orbs appear near chemtrails +2005-04-17,39.8016667,-89.6436111,Springfield,IL,cigar,180,Objects seen during daytime, moving, hovering, and changing color. +2005-04-17,35.9797222,-78.51,Wake Forest,NC,unknown,300,Aircraft with pressure wave ahead of it? +2005-04-17,42.5958333,-72.2272222,Athol,MA,circle,300,There was a central shiny object with at least 3 light blue objects around it all moving at the same speed +2005-04-17,37.9841667,-120.3811111,Sonora,CA,light,30,A probe light intercepts a miltary jet at high speed; pauses next to it; and departs very rapidly +2005-04-17,33.4502778,-82.1983333,Grovetown,GA,circle,2700,Object appeared to be a star at first glance sitting low on the horizon ((NUFORC Note: Possibly Sirius. PD)) +2006-04-17,34.0197222,-117.9577778,Industry,CA,oval,60,White Ball over City of Industry +2006-04-17,39.2013889,-85.9213889,Columbus,IN,formation,120,5-6 rapidly blinking lights seen travelling in a straight line. +2006-04-17,28.1758333,-80.5902778,Satellite Beach,FL,light,360,4 flashing strobe-like objects move rapidly across the nite skyline and disappear into a light forming a many colored fast moving ob +2006-04-17,29.7630556,-95.3630556,Houston,TX,oval,30,Two light yellowish white luminescent oval objects moving in a straight path at an apparent high speed +2006-04-17,40.3541667,-80.14,Morgan,PA,light,120,2006-04-17 Silver light in SW sky flying North disappeared +2006-04-17,41.7636111,-72.6855556,Hartford,CT,teardrop,120,Slow moving, glowing object sighted over Hartford. +2006-04-17,46.8772222,-96.7894444,West Fargo,ND,circle,3,Small blue light traveling quickly across the sky. +2007-04-17,41.6611111,-87.7525,Crestwood,IL,formation,120,A staight row of lights from the underside, and full speed in the sky like a falling star and noise +2007-04-17,36.323055600000004,-86.7133333,Goodlettsville,TN,circle,60,I observed two bright white round objects in a clear blue sky at l:36 P.M. side by side, and one sped off hortizontally from the other +2007-04-17,40.7141667,-74.0063889,New York City (Bronx),NY,disk,82,Ufo enters games just above Hess Sign at yankee Stadium. ((NUFORC Note: Disc-shaped obj.. Possible hoax?? PD)) +2007-04-17,39.7391667,-104.9841667,Denver,CO,circle,60,Daylight sighting of unknown object. +2007-04-17,32.6097222,-85.4808333,Auburn,AL,other,600,Bright White Light in distant sky, stationary, but gone one hour later. Other object red and green and dim. +2007-04-17,48.7597222,-122.4869444,Bellingham,WA,circle,1200,UFO sighting in Bellingham, WA +2008-04-17,33.9022222,-118.0808333,Norwalk,CA,light,1800,The object looked like a star until I noticed it was moving. The object also outshined every star in the sky! +2008-04-17,43.0972222,-89.5041667,Middleton,WI,triangle,45,Witnessed a black triangular craft with colored flashing lights absolutely still in the sky about twenty stories above me. +2008-04-17,34.1511111,-118.4483333,Sherman Oaks,CA,fireball,4,FIRE Balls moving around inside my bedroom +2008-04-17,33.9925,-83.7202778,Winder,GA,teardrop,600,It was 2:00am in the morning.The dogs in my subdivision started howling ..Including my own dog.I first I thought it was a coyote around +2008-04-17,31.9575,-110.955,Sahuarita,AZ,circle,30,Random flashing lights, moving very fast , North across the horizon. Most of the lights were grouped. +2008-04-17,37.775,-122.4183333,San Francisco,CA,triangle,240,2 luminous triangular shaped objects pulsating white and blue lights in sky for 3 to 4 minutes. +2008-04-17,34.2483333,-117.1883333,Lake Arrowhead,CA,oval,1200,three metallic orbs above lake arrowhead ca,at times in formation,at oter times circleing each other,never to far from each other. +2008-04-17,40.7608333,-111.8902778,Salt Lake City,UT,diamond,60,Greyish Kite looking object over Salt Lake +2008-04-17,30.7619444,-86.5705556,Crestview,FL,changing,300,Bright light that changed color and shape near aircraft with contrail in daylight +2008-04-17,43.8958333,-75.3927778,Croghan,NY,formation,30,Strange lights in that pulse in order and than unite and leave very very quickly. +2008-04-17,36.2138889,-83.295,Morristown,TN,triangle,300,Triangle shape hovering in mid air +2008-04-17,33.0422222,-96.3736111,Nevada,TX,light,1800,On April 17, 2008 White and Orange flashing lights from the east appeared. +2008-04-17,40.3591667,-80.39,Slovan,PA,light,1800,flashing object in southwest sky, changed colors from red to blue to white staying in same spot for 30 minutes, then vanished +2008-04-17,40.4233333,-104.7086111,Greeley,CO,triangle,10,Three yellow circular lights in the shape of a triangle. +2008-04-17,40.0455556,-86.0086111,Noblesville,IN,triangle,180,V shaped objects seen in the night sky over central Indiana, USA +2008-04-17,38.3497222,-81.6327778,Charleston,WV,oval,1800,statinary object,strange plasma lights that moved slowly from left to right, not airplane, maybe satelite +2008-04-17,45.5113889,-92.98,North Branch,MN,sphere,30,Saw bright lights, changing in color over South Chain Lake into backyard +2008-04-17,39.7047222,-76.6841667,Freeland,MD,unknown,300,Totally Silent bright white light with no strobe lights or navigation lights, heading in an odd direction. +2008-04-17,41.9666667,-71.4333333,Cumberland,RI,disk,900,Unknown Object Acting Strangely In The Sky With No Sound To It At All +2008-04-17,42.9633333,-85.6680556,Grand Rapids,MI,light,10,Bright Light Over Grand Rapids Michigan +2009-04-17,32.5158333,-93.7319444,Bossier City,LA,triangle,600,triangular craft seen over city +2009-04-17,34.4208333,-119.6972222,Santa Barbara,CA,triangle,5,Silent Soaring Triangle with greyish tips heading West very Ominous. +2009-04-17,34.4133333,-119.86,Isla Vista,CA,triangle,6,Triangular UFO with 7 dim lights in a V shape flies over Isla Vista in Santa Barbara, CA. +2009-04-17,44.8830556,-68.6725,Orono (University Of Maine),ME,triangle,420,On April 17th, on the UMaine campus, we saw a triangle shaped craft with three orange lights and one white light. +2009-04-17,35.7563889,-83.9705556,Maryville,TN,light,10,Bright white dot hovers in sky, quickly drops down, then shoots up and disappears leaving a copper streak +2009-04-17,39.9625,-76.7280556,York,PA,light,10,Bright shiny object that suddenly disappeared. +2009-04-17,34.4258333,-112.5861111,Wilhoit,AZ,light,45,Last night my neighbors were over visiting..We were out back looking at the sky enjoying all the stars..There are no city lights where +2009-04-17,33.5508333,-79.0416667,Murrells Inlet,SC,flash,60,UFO was approximately 2000-5000 above the ocean, hard to guage how far away they were. First pulses of light brought object to our att +2009-04-17,38.3227778,-82.4469444,Lavalette,WV,circle,10,Bright, moving circular object dims, brightens slightly then disapears in a clear sky. +2009-04-17,42.4169444,-88.0738889,Lake Villa,IL,rectangle,2,It's a first for me! +2009-04-17,46.6022222,-120.5047222,Yakima,WA,unknown,420,Two Completely Silent Illuminations Slow and Low +2009-04-17,35.9744444,-77.9658333,Nashville,NC,oval,8,Two craft sighted in the night sky over Nashville, NC, flying in a North Northeast direction. +2009-04-17,38.8822222,-77.1713889,Falls Church,VA,circle,8,At 11:15pm on April 17, 2009, four bright objects were sighted flying at a very high speed, in a strange pattern, over N. Va +2010-04-17,45.9697222,-89.8919444,Lac Du Flambeau,WI,light,3600,High Orbit Flight of Several Objects Over Wisconsin +2010-04-17,30.4111111,-88.8277778,Ocean Springs,MS,fireball,5,looked at first like a comet +2010-04-17,35.0844444,-106.6505556,Albuquerque,NM,oval,5,It was around the time I stated in the beginning of this report. 1730 hours, I was sitting down on a chair smoking a cigarette. i looke +2010-04-17,33.2486111,-111.6336111,Queen Creek,AZ,cross,600,Facing North East appeared to be a statuesque Cross Like U.F.O. then it broke dn to a triangular hovering craft , 2othr designs +2010-04-17,35.0427778,-120.475,Nipomo,CA,disk,2,classic disc and dome shape with horizontal slits with unexplainable lights - Nipomo U.S. 101 S. 10:10 p.m. on 4/17/10. +2010-04-17,42.6383333,-79.0280556,Angola,NY,triangle,3600,Low hovering/flying triangular craft with flashing lights seen between Buffalo, NY and Fredonia, NY. +2011-04-17,41.6105556,-86.7225,Laporte,IN,oval,1,random picture taking outside our apartment +2011-04-17,25.7738889,-80.1938889,Miami,FL,sphere,900,Appx 20 or more twinkling star like objects traveling north eastward over Miami on April 17, 2011. +2011-04-17,31.9677778,-110.2938889,Benson,AZ,light,420,Light object +2011-04-17,35.3186111,-82.4611111,Hendersonville,NC,circle,10,Bright white light very low altitude +2011-04-17,36.3158333,-119.7075,Armona,CA,unknown,180,White light over Armona CA +2011-04-17,39.8027778,-105.0869444,Arvada,CO,formation,900,Looking west over the Rockies from my Arvada back yard, i saw 3 white lights flickering in a row. It occurred to me that from my angle +2011-04-17,36.0725,-79.7922222,Greensboro,NC,light,120,It was a slow moving bright white light heading north +2011-04-17,35.3186111,-82.4611111,Hendersonville,NC,light,120,large super bright object traviling low and slow +2011-04-17,28.1508333,-82.4616667,Lutz,FL,flash,720,Credible Sighting of multiple crafts with flashing lights,moving fast with picture and video. +2011-04-17,40.5172222,-75.7777778,Kutztown,PA,circle,120,bright light over park that was steady then disappeared +2011-04-17,39.5752778,-76.9961111,Westminster,MD,circle,180,Orange Lighted Object Spotted In Westminster, MD. +2012-04-17,47.4736111,-94.88,Bemidji,MN,fireball,900,"Fireball" red circle that hovers in sky NW between Bemidji and Red Lake. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2012-04-17,37.0583333,-120.8488889,Los Banos,CA,rectangle,2700,UFO IN LOS BANOS CA, TSGT US AIR FORCE +2012-04-17,28.0777778,-82.7638889,Palm Harbor,FL,cylinder,300,Slow moving large, white cylinder observed during morning commute, reflecting brightly in sun. +2012-04-17,42.9336111,-72.2786111,Keene,NH,oval,180,Large yellowish/red glowing object starting from ground level heading into the sky +2012-04-17,33.6888889,-78.8869444,Myrtle Beach,SC,light,15,5 Bright yellow/orange lights flash then fade in sequence over ocean at dusk in Myrtle Beach +2012-04-17,34.0983333,-118.3258333,West Hollywood,CA,sphere,20,5 lit spheres heading east over Beverly Hills-West Hollywood CA +2012-04-17,24.6711111,-81.4986111,Cudjoe Key,FL,triangle,1800,Three flashing red lights in a triangle formation. Completely motionless, quite high in the air. It is a windy night so such stability +2012-04-17,29.8236111,-90.475,Des Allemands,LA,circle,300,Circular moving object over des allemands, la +2012-04-17,28.805,-97.0033333,Victoria,TX,rectangle,7,Rectangle object with three circular dim red lights. +2012-04-17,42.9633333,-85.6680556,Grand Rapids,MI,triangle,45,2 sets of 8-10 yellow/orange orbs in triangle shape appeared in south and headed west +2012-04-17,35.0844444,-106.6505556,Albuquerque,NM,flash,2,Redsish star or Mars appeared to fade away +2012-04-17,39.8125,-85.1716667,Cambridge City,IN,light,180,Western bright light observed +2012-04-17,38.8338889,-104.8208333,Colorado Springs,CO,light,1800,Extremely bright light moves slowly above mountain range near Cheyenne Mountain, CO +2012-04-17,30.7108333,-94.9327778,Livingston,TX,light,420,Very brightly lit thing in the sky that eventually dimmed and moved out of sight extremely slow. +2012-04-17,26.2375,-80.125,Pompano Beach,FL,disk,480,A definite aircraft shaped like a flat top straw hat with lights +2012-04-17,36.175,-115.1363889,Las Vegas,NV,changing,240,04/17/1012 23:00 Las Vegas NV Donut 4-5 minutes pulsating red and green donut 6/26/2013 +2012-04-17,36.175,-115.1363889,Las Vegas,NV,circle,300,Red/green circular object obsevered over Las Vegs strip +2012-04-17,33.0369444,-108.7077778,Buckhorn,NM,disk,5400,Bright flashing object near Buckhorn, NM. ((NUFORC Note: We suspect a star or planet. PD)) +2013-04-17,41.995,-88.1855556,Bartlett,IL,triangle,300,Triangle and lights flashing. +2013-04-17,34.2783333,-119.2922222,Ventura,CA,unknown,120,Extremely loud jet from high altitude, 3 AM Ventura, CA. +2013-04-17,40.8688889,-74.2086111,Little Falls,NJ,diamond,1200,Twinkling ufo in sky. +2013-04-17,37.1377778,-76.8355556,Surry,VA,circle,30,Thermo image of 4 UFO's. +2013-04-17,40.0236111,-79.8841667,Brownsville,PA,circle,10,Four white objects and one red object observed red object negotiated incredible maneuver and high rate of speed. +2014-04-17,39.9611111,-82.9988889,Columbus,OH,sphere,300,Silver object that jumped across the sky so many feet. It moved very quickly would disappear and reappear. Then its gone. +2014-04-17,40.7877778,-74.3886111,Florham Park,NJ,diamond,120,Orange diamond "kite" like object spotted over NJ. +2014-04-17,43.7069444,-73.3116667,Benson,VT,cylinder,120,Red, green, and yellow object in the night sky. ((NUFORC Note: Possible "twinkling" star? PD)) +2014-04-17,33.4955556,-88.4272222,Columbus,MS,triangle,20,Dark object, three lights on side, moving quickly. +2014-04-17,40.5686111,-75.095,West Milford,NJ,triangle,1800,I was riding in the car with my mom and out of no where this triangular spaceship flies very low right over our car. It had 4 lights in +2014-04-17,35.5511111,-80.4066667,Rockwell,NC,unknown,6,Black helicopter following 2 orange lights (no sound except from helicopter). +2014-04-17,39.4438889,-82.8272222,Hallsville,OH,triangle,1800,Low flying "star" seen hovering around Tar Hollow Forest. ~11pm on most clear nights. +2014-04-17,42.085,-76.0541667,Vestal,NY,light,900,Three lights forming tight triangle hovered in the sky for about 15 mins then was gone. +1975-04-18,41.9427778,-79.9847222,Waterford,PA,disk,1020,I saw what I thought was a small odd looking plane but realized as it got closer it was no plane. +1976-04-18,30.7741667,-85.2269444,Marianna,FL,oval,5,the object was oval shaped and at the tipical attitude of small planes no distinguishing features no sounds +1980-04-18,39.515,-84.3983333,Middletown,OH,sphere,240,Red ball of light turns white then red and floats away into the sky,very close to it,only about 25 ' up +1981-04-18,33.7669444,-118.1883333,Long Beach,CA,formation,5,V-formaton of 3 large crafts +1997-04-18,32.7833333,-96.8,Dallas,TX,diamond,900,Looking East, saw bright red light descendingdown thru cloud layer, then back up into clouds,repeating twice. Red light had a diamond s +1997-04-18,27.9472222,-82.4586111,Tampa,FL,triangle,300,ET Stops for Big Gulp? +1998-04-18,27.9472222,-82.4586111,Tampa (Near),FL,changing,40,We (my wife and I and our 4 children) were headed south on Interstate 75 when to the west we saw (my wife and I) what appeared to be t +1998-04-18,42.0697222,-87.7877778,Glenview,IL,triangle,600,We were watching a movie when one of my freind saw something out of the window. he called all of us over to look at it. A couple days l +1999-04-18,41.3333333,-111.8263889,Wolf Creek,UT,changing,2400,Uinta Basin/Wolf creek UFO highly visible,low flyingᅘ-45min sighting,eratic moves with no noise IMAGES +1999-04-18,33.8536111,-118.1330556,Lakewood,CA,chevron,10,5-7 lights in a chevron pattern flew directly over head at a high altitude with no engine noise heard. +1999-04-18,34.2783333,-119.2922222,Ventura,CA,light,1800,Four white lights perfectly aligned and moving horizontally. +2000-04-18,47.2530556,-122.4430556,Tacoma,WA,other,300,Sighted from a Cessna C206 by 20ꯠ hour pilot and passengar. Bright as the sun, very unusual sighting. See full description +2000-04-18,34.7391667,-112.0091667,Cottonwood,AZ,cylinder,15,Witnessed object for about 15 seconds. Looked like a rocket launch +2000-04-18,28.3197222,-80.6077778,Cocoa Beach (Near),FL,cylinder,11,Gigantic unconventional craft flying 75-100 feet over I-95,no sound, blue and white lights with big panels +2001-04-18,60.1041667,-149.4422222,Seward,AK,triangle,43200,Seward Alaska, April 2001--massive sighting of battleship sized black triangle and other UFO's could not be confirmed. +2001-04-18,32.7947222,-116.9616667,El Cajon,CA,chevron,1800,Light changing sppeds, direction and brightness in san diego +2001-04-18,29.7630556,-95.3630556,Houston,TX,oval,90,An airplane was flying overhead emitting a long contrail and as my eyes went down the contrail a small white craft came out of the plum +2001-04-18,39.7391667,-104.9841667,Denver,CO,circle,120,One pinpoint of light moved northward across the sky joining another before I lost them in the haze. +2001-04-18,45.6230556,-106.6661111,Lame Deer,MT,disk,2700,Town sees ufo. +2001-04-18,21.8763889,-159.4538889,Poipu,HI,light,5,Strange, fast moving light seen off shore of Kauai. +2001-04-18,41.2586111,-95.9375,Omaha,NE,fireball,10,BrillianBrilliant green fireball (meteor?) seen arcing toward the ground while moving from the northeast to southeast horizon +2001-04-18,41.6883333,-93.7908333,Grimes,IA,light,180,moving, non flashing light that disapeared +2001-04-18,39.1958333,-95.2080556,Mclouth,KS,circle,300,UFO on rock road +2002-04-18,40.0333333,-83.1583333,Hilliard,OH,disk,45,UFO went overhead at a high rate of speed and continued north-northwest. +2002-04-18,31.6125,-111.0452778,Tubac,AZ,light,1200,Unusual lights in southern Arizona +2002-04-18,47.5405556,-122.635,Port Orchard,WA,chevron,3600,moves around very slowly; doesn't appear to be going in a straight line +2002-04-18,42.8863889,-78.8786111,Buffalo (South Of),NY,formation,15,I was sitting on my back porch observing the planet configuration,I'm an amateur astronomer 20 years. This seven light boomerang shaped +2002-04-18,36.9741667,-122.0297222,Santa Cruz,CA,triangle,30,I saw a black triangular aircraft flying at an altitude between 300 - 500 feet - it was HUGE (bigger than any plane I've ever seen), c +2003-04-18,39.051944399999996,-82.6366667,Jackson,OH,cylinder,240,we seen a pill shaped object in the sky +2003-04-18,43.0513889,-83.3188889,Lapeer,MI,oval,180,Huge, cloaked craft seen over unpaved runway at small local airport. +2003-04-18,34.5113889,-93.2408333,Royal,AR,disk,600,We were taking pictures just before dark on a lake.We did not see objects until we downloaded pictures on our computer. +2003-04-18,47.5963889,-120.6602778,Leavenworth,WA,triangle,60,distant sighting of unexplainable triangle formation lights above north central washington state +2004-04-18,35.49,-88.7205556,Pinson,TN,other,7,12:02 a.m. A box shaped object with a distinct 45degree[appx.] slope on it's front,moving at 400 to 500 m.p.h. at a good 400 feet up . +2004-04-18,33.4483333,-112.0733333,Phoenix,AZ,cigar,300,wake up to object in the sky +2004-04-18,39.7091667,-84.0633333,Beavercreek,OH,sphere,20,White balloon-like white ball travelling against heavy winds. +2004-04-18,33.4483333,-112.0733333,Phoenix,AZ,oval,600,possible sighting in Phoenix +2004-04-18,34.8227778,-118.9438889,Frazier Park,CA,light,300,I noticed a bright light coming from the South / West part of the sky. +2004-04-18,44.4258333,-69.0069444,Belfast,ME,light,30,What appears to be a star, later a ball of light flew under it. ((NUFORC Note: Sighting of Venus, or Sirius?? PD)) +2005-04-18,61.2180556,-149.9002778,Anchorage,AK,oval,120,we spotted an ovular light emmiting craft with telescopes in the night +2005-04-18,36.175,-115.1363889,Las Vegas,NV,disk,60,Looking north in Las Vegas I saw a grey disc moving erratically which vanished on a straight incline after less than a minute. +2005-04-18,34.0522222,-118.2427778,Los Angeles,CA,triangle,240,LA triangle over Glendale Blvd in the afternoon +2005-04-18,32.525,-93.75,Shreveport,LA,light,600,two bright orange lights moving slowly +2006-04-18,38.2494444,-122.0388889,Fairfield,CA,unknown,120,invisible Helicopter +2006-04-18,40.8022222,-124.1625,Eureka,CA,sphere,180,Small black spherical object observed in the eastern horizon at about 30 degrees +2006-04-18,38.8047222,-77.0472222,Alexandria,VA,sphere,120,I was on a bus leaving Landmark Mall Shopping Center. It was a bright, sunny day with some high cumulus clouds. As the mall sits on t +2006-04-18,40.3336111,-75.6377778,Boyertown,PA,triangle,120,Black Triange Shape Object watches two US Military Planes as they fly by in Boyertown, PA +2006-04-18,40.8711111,-74.7344444,Budd Lake,NJ,light,420,Small starsized light, got brighter and changed direction twice beforte disappearing +2007-04-18,45.0419444,-93.7888889,Delano,MN,triangle,120,lit up orange triangular hover craft seen by two non-believers +2007-04-18,34.9530556,-120.4347222,Santa Maria,CA,other,300,Red vertical glowing light in the sky. +2007-04-18,37.1327778,-81.5272222,North Tazewell,VA,sphere,10800,It is true about ufos and farms. +2007-04-18,43.4552778,-76.5108333,Oswego,NY,light,30,Flashing colored lights in sky. ((NUFORC Note: Possible sighting of Sirius or Venus? PD)) +2007-04-18,35.6177778,-82.3213889,Black Mountain,NC,rectangle,15,On our way home we saw a large object with several lights stationary in the sky. +2008-04-18,35.0455556,-85.3097222,Chattanooga,TN,other,1200,U.F.O.s over Tennessee +2008-04-18,33.7838889,-116.9577778,San Jacinto,CA,cylinder,20,I saw what appeared to be a while light shooting toward earth but apperaed green by the time it hit earth, It did not slow down and hit +2008-04-18,36.175,-115.1363889,Las Vegas,NV,light,605,White Sphere darts from in front of the moon towards Test Site with possible electronic effects. +2008-04-18,36.175,-115.1363889,Las Vegas,NV,light,3600,The object sped through the sky at an extremely high velocity. +2008-04-18,32.7833333,-96.8,Dallas,TX,disk,15,Round object with 5 lights +2008-04-18,35.5280556,-108.7419444,Gallup,NM,other,120,huge bright white horeshoe lit object +2008-04-18,37.5297222,-122.0391667,Newark,CA,disk,120,UFO spotted near Fremont CA +2008-04-18,37.0752778,-81.7088889,Pounding Mill,VA,light,3600,Craft with bright lights of white and blue hover low then high then craft with red light appears to leave from first craft. +2008-04-18,33.9908333,-118.4591667,Venice,CA,light,30,It was like a star was bouncing around inside our world.Much smaller than a real star of course., But amazing! +2009-04-18,32.2958333,-81.2355556,Rincon,GA,triangle,45,Small triangular shaped object making extremely sharp turns at a great speed. ((NUFORC Note: Student report. PD)) +2009-04-18,42.7875,-86.1088889,Holland,MI,rectangle,15,3 objects moving very fast orange Color viewed for about 15 seconds +2009-04-18,35.5933333,-75.4683333,Rodanthe,NC,unknown,4800,Starlike shape with beams of light that changed shape +2009-04-18,37.6922222,-97.3372222,Wichita,KS,triangle,120,triangle with green lights and black outer shell over wichita. +2009-04-18,34.1975,-119.1761111,Oxnard,CA,other,120,oxnard big brown craft passes jet airliner +2009-04-18,31.7586111,-106.4863889,El Paso,TX,oval,3600,unmoving object hanging in west texas sky. +2009-04-18,32.2216667,-110.9258333,Tucson,AZ,flash,600,Ten minute stationary pulsating white light 80 degrees elevation 60 seconds between pulses 2000 MST. +2009-04-18,45.5236111,-122.675,Portland,OR,chevron,30,Red and white floating object suddenly and extremely rapidly zips away. +2009-04-18,28.1875,-82.7397222,Holiday,FL,unknown,90,We saw one set of red lights followed closely by a set of flashing white lights moving through the clouds. +2009-04-18,33.7475,-116.9711111,Hemet,CA,light,30,Light changes direction when military jet approaches. +2009-04-18,27.8394444,-82.7913889,Seminole,FL,triangle,60,2 triangles flying low in formation +2010-04-18,41.6413889,-80.1516667,Meadville,PA,light,600,At least six soundless, orange, glowing balls of light floating past and disappearing without a sound. +2010-04-18,37.3022222,-120.4819444,Merced,CA,triangle,30,As I was working on patrol I looked up at the clear night sky and notice a V-shape formation above me. +2010-04-18,34.0738889,-117.3127778,Colton,CA,other,180,at 1:33 pm i saw a light above the western sky i took two pic one shows a second light the shape of a disk +2010-04-18,36.3183333,-87.6947222,Erin,TN,rectangle,240,Orange multi-colored rectangular craft seen heading north around 4pm on 4/18/10 in the Houston/Montgomery counties area of middle TN. +2010-04-18,46.8722222,-113.9930556,Missoula,MT,unknown,5,Single steady white light cruising, then tears out into space having an orange glow behind it. +2010-04-18,41.5119444,-87.9655556,New Lenox,IL,changing,3600,2 very bright stationary objects, both appearing to change shape, and one that was changing colors or had multiple colored lights. +2010-04-18,43.8277778,-94.4369444,Truman,MN,formation,60,Cloudy V formation UFO seen over Southern MN +2011-04-18,35.8455556,-86.3902778,Murfreesboro,TN,light,2700,3 bright objects in the sky and one of them darted quickly upward for 45 minutes as if it were climbing higher and higher in the sky +2011-04-18,47.9791667,-122.2008333,Everett,WA,light,300,seen two lights off in the distance they were very bright i thought nothing about it but i drove around the corner and looked in the d +2011-04-18,36.8527778,-75.9783333,Virginia Beach,VA,diamond,420,fast and low flying triangular object with red lights over Va Beach, Va area +2011-04-18,46.6022222,-120.5047222,Yakima,WA,oval,3600,multi-color objects in the sky, one soared above our heads. +2011-04-18,48.7597222,-122.4869444,Bellingham,WA,unknown,30,Huge, low flying craft, nearly hits car apparently attempting to land on county road, 5 huge lights +2011-04-18,40.7141667,-74.0063889,New York City (Queens),NY,triangle,7,Triangular craft hovering over Southeastern Queens +2012-04-18,30.4761111,-88.3422222,Grand Bay,AL,circle,180,Red orange round objects, appearing briefly and fading before appearing again in different locations. +2012-04-18,43.0944444,-79.0569444,Niagara Falls,NY,circle,90,I was going to pick up tile for a job and On My way back to work traveling down porter rd. I wittnessed a circler yellow or green light +2012-04-18,39.7588889,-84.1916667,Dayton,OH,other,180,Large peanut/dumbell shaped craft seen over Dayton OH. +2012-04-18,33.1191667,-117.0855556,Escondido,CA,light,360,White star like object, eastern sky zig,zag,ing. ultra high speed/western sky same/jets from mira mar air base in presute +2012-04-18,35.489444399999996,-120.6697222,Atascadero,CA,cylinder,771,A crew of cylinder ufos, it was great +2012-04-18,36.8527778,-75.9783333,Virginia Beach,VA,sphere,20,Colored round balls of green and orange over the skies of virginia beach VA +2012-04-18,35.0011111,-92.6297222,Bigelow,AR,light,300,Bright, white, flashing lights, maybe three, moving around in a circle +2012-04-18,42.0775,-73.9533333,Saugerties,NY,unknown,60,Bright objects with no noise very low to the ground. +2012-04-18,37.1575,-92.9405556,Fordland,MO,light,30,Bright light that diminished traveling from south to north over Fordland, MO. ((NUFORC Note: Possible orbiting body? PD)) +2012-04-18,41.8263889,-72.7305556,Bloomfield,CT,triangle,300,Triangular formation in Bloomfield +2012-04-18,41.9163889,-83.3977778,Monroe,MI,light,10800,Flashing light ufos around River Raisin area +2012-04-18,29.6816667,-96.9027778,Schulenburg,TX,other,2,One object, or 4 flying if perfect formation, traveling west to east, at 23:42 on 4/18/12. +2012-04-18,33.7427778,-116.2883333,Bermuda Dunes,CA,oval,3,Dark disc-shaped object moving across night sky with great(supersonic+) speed, no visible lights, no sound, VERY FAST. +2013-04-18,34.15,-114.2883333,Parker,AZ,fireball,120,Strange Floating Amber Lights above P mountain in Parker,AZ +2013-04-18,33.4933333,-112.3572222,Litchfield Park,AZ,other,120,Day Time Flat White Object With Point In The Middle +2013-04-18,41.5775,-71.5380556,Exeter,RI,diamond,30,Two diamond shaped objects flying just above tree line, odd movement and light color +2013-04-18,42.6894444,-90.7119444,Potosi,WI,unknown,300,Object moved like no plane I've ever seen. +2013-04-18,39.6761111,-89.7044444,Chatham,IL,oval,30,3 white Orbs oval in shape seen flying over Chatham, IL (Sangamon County) +2014-04-18,38.2541667,-85.7594444,Louisville,KY,formation,120,Multiple Yellow/Orange Lights near college campus. +2014-04-18,43.5977778,-84.7675,Mt. Pleasant,MI,egg,600,Bright lights power gone from car. +2014-04-18,27.9472222,-82.4586111,Tampa,FL,light,600,Red and white lights over Tampa, Fl. +2014-04-18,36.5925,-78.6163889,Henrico,VA,circle,2,A yellowish round object caught in photos of jet trails. ((NUFORC Note: Probably a sens flare, we believe. PD) +2014-04-18,45.5236111,-122.675,Portland,OR,light,300,White orb that was bright fading in and out slowly moving across the sky. +2014-04-18,39.7558333,-77.5780556,Waynesboro,PA,light,600,Bright red firey light moving silently across the sky, then went up and disappeared. +2014-04-18,47.2033333,-122.2391667,Sumner,WA,formation,2,Orange lights in night sky. +2014-04-18,28.7027778,-81.3386111,Longwood,FL,formation,600,Formation of 8-10 lights suddenly disbursing in opposite directions. +2014-04-18,32.5091667,-92.1191667,Monroe,LA,sphere,900,Two oranges spheres traveling in a single path.There was no noise. The spheres remained the exact distance apart while traveling on +2014-04-18,41.5527778,-81.5102778,Richmond Heights,OH,unknown,20,Two fast-moving, low altitude landing lights on nearly silent aircraft. +2014-04-18,37.3394444,-121.8938889,San Jose,CA,fireball,180,4/18/14 two fire ball objects that changed to pink clouds. +2014-04-18,45.2944444,-123.1752778,Carlton,OR,light,60,Bright yellowish gold precise upward arking upward movement silent +2014-04-18,39.7588889,-84.1916667,Dayton,OH,light,40,star shaped aircraft that decended across I-35 then vanished completely. +2014-04-18,43.95,-88.0841667,New Holstein,WI,cylinder,6,DARK OBJECT MOVING EAST SOUTHEAST LITTLE OR NO LIGHT JUST ENOUGH TO OUTLINE THE CYLINDER SHAPED OBJECT. IN SIGHT LINE FOR SIX SECONDS. +2014-04-18,39.7286111,-121.8363889,Chico,CA,light,600,Report of Unusual Lights seen over Chico, California. +2014-04-18,47.2152778,-123.0994444,Shelton,WA,light,15,Two lights that looked like sattelites traveled in a line, with one following/chasing other until the both disappeared. +2014-04-18,39.7286111,-121.8363889,Chico,CA,disk,1080,((1st report from same witness)) 9 Very brightly lit (red and yellow) saucer shaped crafts. Total time about 18 minutes +2014-04-18,39.7286111,-121.8363889,Chico,CA,disk,1740,After going on the back porch for a smoke, what I saw was unbeliveable, we moved to the parking lot for a better onobstructed view. +2014-04-18,48.7597222,-122.4869444,Bellingham,WA,light,180,Lights following each other in SE direction. ((NUFORC Note: Intl. Space Station and supply ship, flying in close formation?? PD)) +2014-04-18,38.4725,-90.8866667,Villa Ridge,MO,fireball,7200,Since my baffling sighting last year, the one I reported to MUFON in July 2013, I have quite often thought about my experience. +2014-04-18,36.1538889,-95.9925,Tulsa,OK,changing,180,A bright white light in form of a cross appeared from southwest of Tulsa. As it approached, the craft moved to right for a second th +2014-04-18,33.4483333,-112.0733333,Phoenix,AZ,oval,240,Noticed a bright orange somewhat flickering fire colored light coming from south to north +1978-04-19,42.3241667,-83.4002778,Westland,MI,disk,120,Approx 50-75 feet above us, 30-40 ft diameter, metal, saucer shaped UFO, colored lights all around, 2 bright white lights. +1985-04-19,30.2669444,-97.7427778,Austin (Near),TX,oval,5,Glowing green "football" suddenly appears & then accelerates to nothingness +1987-04-19,34.035,-77.8938889,Carolina Beach,NC,cigar,1800,I shined my bright headlights on it! +1989-04-19,40.7141667,-74.0063889,New York City,NY,other,600,Weird collection of lights hovers over Manhattan in April 1989 then glides away +1994-04-19,36.8527778,-75.9783333,Virginia Beach,VA,disk,240,I say almost disk shaped because the edges did not come to a point but were straight, could have been cigar shaped at an angle. +1997-04-19,39.5297222,-119.8127778,Reno (North Of),NV,other,300,When first seen, it was a huge, brilliant white, "bow-tie" shaped object which exploded into a much larger sphere filled with red, gree +1998-04-19,41.85,-87.65,Chicago (Near O'hare Airport),IL,other,600,saw craft heading west, suddenly turning southwest, saw what looked like 2 satellites firing a rocket at craft. Craft wobbled and sate +1999-04-19,41.2222222,-73.0569444,Milford,CT,circle,60,Were we scanned by an orb or probe? +1999-04-19,29.7630556,-95.3630556,Houston,TX,unknown,1500,Super Bright Ruby Red Lights Aproxmatly 1000 feet apart and aproxmate altatude of 3500 feet moving 5mph at times stationary totaly sile +1999-04-19,34.1063889,-117.3694444,Rialto,CA,disk,180,Round shaped, green lights x 4 each, approached from westward direction, headed eastward, "it stopped completely", lights changed color +1999-04-19,28.0183333,-82.1130556,Plant City,FL,oval,2,I saw a phosphorescent green orb shaped object about the size of Venus move at very rapid velocity over Plant City, Floida. +1999-04-19,41.3325,-79.1233333,Clarington,PA,other,1200,thought it was a satelite,but it turned-arced-came back -very high tight circles directly over-head second night it occurred. +2000-04-19,33.2441667,-86.8163889,Alabaster,AL,egg,60,One at a time appeared each in a different direction, a total of 3. Then all 3 disappeared instantly, and reappeared all at once in dif +2000-04-19,34.0211111,-118.3955556,Culver City,CA,light,90,Very bright light, approx altitude 50ꯠ feet, moving SSE direction at steep upward angle. +2000-04-19,26.4611111,-80.0730556,Delray Beach,FL,chevron,15,looking in the sky to the south,I saw a greyish silouette heading north,looked for lites,listened for sound,None of either.Whatched it +2000-04-19,41.85,-87.65,Chicago,IL,other,60,craft was "hoovering" but no fluctuations in space.As if it were somehow anchored.hoovering over an over pass.an array of lights on bot +2001-04-19,40.0572222,-85.5372222,Middletown,IN,triangle,1200,Orange hovering object branches off into a shooting star like object then disappears. +2001-04-19,43.2755556,-82.6211111,Croswell,MI,other,8,Very Weird!!! +2001-04-19,40.2727778,-80.9969444,Cadiz,OH,light,300,I witnessed what seems to me as a very unusual craft flying over my small town ohio residence. +2002-04-19,28.0680556,-80.5605556,Melbourne Beach,FL,sphere,900,disk circled by point, explosion +2002-04-19,37.76,-89.0772222,Carterville,IL,egg,2100,Flat craft with egg-shaped profile +2002-04-19,32.8572222,-116.9213889,Lakeside,CA,triangle,60,Massive, silent, triangular craft that flew slowly overhead (NO LIGHTS). +2002-04-19,38.6780556,-121.175,Folsom,CA,triangle,10,Triangular shape over Folsom, CA +2003-04-19,61.2180556,-149.9002778,Anchorage,AK,light,15,"Stars" moving together over Anchorage +2003-04-19,36.6811111,-87.6202778,Lafayette,KY,sphere,30,Fast moving Metallic Sphere - movements were impossible for balloon of aircraft to execute. +2003-04-19,42.7977778,-83.705,Fenton,MI,circle,240,blue and red ufo seen 60-70 ft.up in sky perfectly still three to four min. +2004-04-19,33.7458333,-117.8252778,Tustin,CA,sphere,180,UFO over orange county california +2004-04-19,35.9605556,-83.9208333,Knoxville,TN,triangle,600,MUFON/TENNESSEE REPORT: I have inquired the FAA office in Knoxville as to the possible report +2004-04-19,35.9605556,-83.9208333,Knoxville,TN,triangle,600,Unusual contrail in early morning sky ((NUFORC Note: Contrail? Just a guess. PD)) +2004-04-19,36.0544444,-112.1386111,Grand Canyon,AZ,light,60,Bright object with shadow visible, filmed for 25 sec. in the grand canyon, during the afternoon. +2004-04-19,42.4405556,-76.4969444,Ithaca,NY,fireball,600,Gigantic body in space appears to blow up and dim several times. +2004-04-19,34.815,-79.1833333,Red Springs,NC,sphere,600,Orange Spheres Dance in the Sky +2004-04-19,33.4483333,-112.0733333,Phoenix,AZ,egg,60,Strange object in the night sky +2005-04-19,32.3666667,-86.3,Montgomery,AL,changing,600,A light in sky that changed shapes. +2005-04-19,45.6388889,-122.6602778,Vancouver (Near, Camas),WA,disk,12600,Camas, WA- multiple moving objects observed and filmed 4/19/05 (1:20-4:20a.m.). ((NUFORC Note: Possibly Sirius. PD)) +2005-04-19,37.775,-122.4183333,San Francisco,CA,other,900,Bizarre high altitude, rapidly moving, thin disk-shaped cloud or contrail, surrounded by waves of thermal energy. +2005-04-19,33.5177778,-84.6697222,Palmetto,GA,diamond,3,Palmetto, GA. Diamond a couple of seconds a glowing diamond shaped object picture taken 19 April 2005 at 1950 EST +2005-04-19,39.7458333,-75.5469444,Wilmington,DE,light,30,Light over General Motors plant +2005-04-19,31.9363889,-81.9286111,Glennville,GA,unknown,1800,Distant stationary object flashing multiple colors ((NUFORC Note: Possibly Sirius. PD)) +2006-04-19,41.3455556,-88.8425,Ottawa,IL,light,1800,green lights circling from cloud to cloud +2006-04-19,36.175,-115.1363889,Las Vegas,NV,light,7200,Four short grayish black-eyed aliens appeared in my room. +2006-04-19,34.9047222,-77.2316667,Maysville,NC,sphere,10,I witnessed a spherical shaped object over Maysville, North Carolina on the morning of April 19, 2006 +2006-04-19,35.6027778,-85.9197222,Morrison,TN,cone,480,brilliant bright light first falling down fast then stopped for several minutes +2006-04-19,39.5363889,-83.4391667,Washington Court House,OH,disk,120,Washington C.H. sighting on old US 35 +2006-04-19,39.5363889,-83.4391667,Washington Court House,OH,disk,480,April 19, 2006-Bright Light/Object in the sky in WCH, Ohio +2006-04-19,38.0466667,-97.3447222,Newton,KS,unknown,2,Four or five lights, on a seeming spinning object. +2006-04-19,39.0997222,-94.5783333,Kansas City,MO,light,10,Bright Light Moving West To East In South KC +2006-04-19,36.3125,-95.6158333,Claremore,OK,light,3,white/blue light with white tail seen traveling south to north in Eastern Oklahoma +2006-04-19,40.7536111,-86.0688889,Peru,IN,other,1800,Saw a large number of UFOs flying rapidly above us, chasing each other, and suddenly disappearing unlike planes. +2007-04-19,40.6083333,-75.4905556,Allentown,PA,light,21600,Many brightly lit objects emitting multi-colored lights, two military planes approached directly and flew around several times. +2007-04-19,47.7988889,-122.4969444,Kingston,WA,light,3,moving light adjacent to the moon; very high and disappeared suddenly; did not reappear +2007-04-19,40.9255556,-73.1413889,Stony Brook,NY,light,300,saw 2 lights sort of "dance" with eachother in sky +2007-04-19,43.1775,-85.2527778,Greenville,MI,light,900,strange neon color lights come together as one then blink many colrs. +2008-04-19,39.4527778,-94.7413889,Camden Point,MO,fireball,300,two egg shaped floating objects that looked like oustrige eggs, grey in color aluminated and had a jet of fire out the back. +2008-04-19,48.1958333,-114.3119444,Kalispell,MT,triangle,1200,Two objects seen flying, stopping, and then dissipating. +2008-04-19,30.1763889,-85.8055556,Panama City Beach,FL,oval,60,Red light, from 0 to ? in seconds. Over Panama City Beach, Florida +2008-04-19,26.8,-80.0666667,Lake Park,FL,light,60,A bright light in sky appeared to be a morning star or was it a UFO? +2008-04-19,29.8944444,-81.3147222,St. Augustine,FL,other,120,UFO sighting in Northeast Florida +2008-04-19,41.4569444,-72.8236111,Wallingford,CT,formation,60,We saw an object that looked like a huge rock going perfectly north with no noise or trail behind it. It was tumbling but extremily fa +2008-04-19,29.8944444,-81.3147222,St. Augustine,FL,light,300,Three bright lights seen flying at a slow speed across sky. Witnessed by hundreds. +2008-04-19,30.0261111,-90.7130556,Paulina,LA,light,900,At approximately 9:30PM we observed about fifteen to twenty orange glowing lights moving slowly in the sky and then disapearing +2008-04-19,29.8944444,-81.3147222,St. Augustine,FL,fireball,300,A fire ball shot across the sky and disapeard in thin air, +2008-04-19,42.5944444,-71.725,Lunenburg,MA,fireball,240,Strange light in sky, appears as fireball and last 4 min remaining stationary. +2008-04-19,40.7302778,-80.3102778,New Brighton,PA,triangle,180,Triangle shaped craft flying low. +2008-04-19,31.9972222,-102.0775,Midland,TX,cigar,30,cigar shape rotation of brights length of 2 buses +2008-04-19,35.7808333,-79.3702778,Silk Hope (Near),NC,disk,240,Three people saw disc-shaped craft with chaser lights, flying slowly and smoothly at high altitude, 4/19 at 2300. +2008-04-19,36.9741667,-122.0297222,Santa Cruz,CA,rectangle,30,Large Dark Glowing Semi Rectangled object chased by plane in the Sky at about 2000 feet a few minutes before midnight in Santa Cruz Ca. +2009-04-19,42.7369444,-84.4838889,East Lansing,MI,oval,1800,Four circular, oval light shapes in midnight sky flying and converging at a centerpoint. ((NUFORC Note: Advertising lights. PD)) +2009-04-19,39.1580556,-75.5247222,Dover,DE,changing,3600,Bright light changed shapes, multiplied, and faded out. ((NUFORC Note: Star?? PD)) +2009-04-19,33.1383333,-95.6008333,Sulphur Springs,TX,disk,3,I saw two silver crafts hoovering in the morning hours, I'm not crazy! +2009-04-19,40.7977778,-73.7,Manhasset,NY,triangle,5,Shimmering triangle of dim white lights change direction quickly and are gone - with no jet noise. +2009-04-19,32.2216667,-110.9258333,Tucson,AZ,flash,600,This is a follow-up from last nights report. We again observed a light flash of ten repetitions each about 60 seconds apart in the same +2009-04-19,42.7261111,-71.1913889,Methuen,MA,oval,90,Oval (flattened), orange and amber lights, non flashing on sides and top, going WSW, followed by prop plane small (cesna), 80 yds behin +2009-04-19,34.2175,-118.3694444,Sun Valley,CA,light,60,super Fast Bright light in the sky of Los Angeles +2009-04-19,42.8944444,-71.2916667,East Derry,NH,triangle,900,multiple triangles with white lites in corners and one red flashing light in the middle, moving fast and erractic +2009-04-19,42.1577778,-78.7152778,Salamanca,NY,fireball,180,Bright orange object flying silently through the sky +2009-04-19,34.0633333,-117.65,Ontario,CA,circle,120,4 orange dots im the sky +2009-04-19,48.2933333,-122.6419444,Oak Harbor,WA,unknown,60,Flash of light then object of four non-flashing dim lights traveling north. +2009-04-19,37.6391667,-120.9958333,Modesto,CA,light,900,Bright light in Modesto, CA sky. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2009-04-19,37.2872222,-121.9488889,Campbell,CA,light,480,While looking off our balcony, we saw a stationary bright light that after a few minutes dimmed and started moving at increasing speeds +2010-04-19,33.4147222,-111.9086111,Tempe,AZ,changing,300,Tiny neon blue light ufo wittnessed by three in Tempe, Arizona +2010-04-19,21.3069444,-157.8583333,Honolulu,HI,triangle,1800,Honolulu Hawaii - Strange Triangle aircraft preforming maneuvers with short contrails Intersecting each other +2010-04-19,28.3858333,-80.7422222,Cocoa,FL,unknown,30,Four green lights seen close to the ground while driving +2010-04-19,36.0652778,-119.0158333,Porterville,CA,other,31,((HOAX??)) 9;25pm I looked SE and there it was BIG ...OBject U.F.O. +2011-04-19,43.7575,-122.4952778,Westfir,OR,light,9000,3 lights above rural Oregon. Family witnesses 3 lighted crafts north of their home. 2 of the crafts flew east at extreme speed. +2011-04-19,40.8488889,-73.6452778,Sea Cliff,NY,light,30,Sleeping when the bright light woke us up. +2011-04-19,28.5491667,-81.7730556,Clermont (Near),FL,fireball,6,very bright ball of fire falling from sky +2011-04-19,34.2255556,-77.945,Wilmington,NC,triangle,30,Triangular gold foil rolling across the sky +2011-04-19,45.7055556,-121.5202778,Hood River,OR,cigar,600,Two UFO's sighted in Hood River Oregon +2012-04-19,40.3719444,-75.2930556,Perkasie,PA,changing,300,Bright white cresant shape light +2012-04-19,38.5816667,-121.4933333,Sacramento,CA,triangle,45,Three white dots each in a triangle formation and then faded away. +2012-04-19,36.175,-115.1363889,Las Vegas,NV,light,900,Intermittent bright red and white stationary lights and super high speed "streak" of light over mountains, north of Las Vegas +2012-04-19,29.7855556,-95.8241667,Katy,TX,triangle,120,Three star looking lights in a triangular shape move accross the sky in a fairly fast pace. +2012-04-19,34.7641667,-90.5469444,Whitehall,AR,rectangle,2,Flying object following the Interatate. +2012-04-19,43.5780556,-70.3222222,Scarborough,ME,circle,540,5 bright orange lights moving through sky from due East to due North; disappeared in sequence +2012-04-19,43.5780556,-70.3222222,Scarborough,ME,light,540,4 orange lights fly across tree line +2012-04-19,43.5780556,-70.3222222,Scarborough,ME,light,540,6 orange light spheres moving from the East to due North before vanishing +2012-04-19,34.4258333,-112.5861111,Wilhoit,AZ,unknown,30,It was a clear night sky we were taking our dogs out in the back yard when two huge light bars appeared,side by side. +2012-04-19,46.4280556,-90.2458333,Montreal,WI,light,120,6 bright orange lights all in a row in the north sky traveling west +2012-04-19,46.4547222,-90.1708333,Ironwood,MI,circle,45,Bright orange lights fly across sky +2012-04-19,46.4547222,-90.1708333,Ironwood,MI,light,120,Orange lights in a line +2012-04-19,30.2669444,-97.7427778,Austin,TX,chevron,15,Low flying, gray object flew overhead at night, made absolutely no sound at all +2013-04-19,34.5361111,-94.8505556,Ludlow,OK,circle,3600,Moving lights over Ludlow, OK. +2013-04-19,37.3183333,-84.9394444,West Liberty,KY,light,10,Two bright lights, lasted 10 seconds then disappeared. +2013-04-19,34.0194444,-118.4902778,Santa Monica,CA,triangle,20,Triangle UFO over Santa Monica heading East. +2013-04-19,43.4366667,-71.1727778,New Durham,NH,unknown,120,Extremely large circular craft with white lights on each side, rotating slowly, silent, appx 1500 ft in the air +2013-04-19,30.2669444,-97.7427778,Austin,TX,sphere,1200,15 to 20 red orbs moving from west to east over Austin then disappearing. +2013-04-19,38.0291667,-121.9605556,Bay Point,CA,light,180,Looks like a shooting star moving erratically all over the night sky. It's bright, then fades, hovers, then circles. +2014-04-19,57.79,-152.4072222,Kodiak,AK,sphere,60,Red light over Kodiak. +2014-04-19,28.1508333,-82.4616667,Lutz,FL,circle,120,low hovering with lights circling it simultaneously. +2014-04-19,39.6580556,-83.735,Jamestown,OH,sphere,600,White orb and orange cube floating up south of Jamestown. +2014-04-19,41.4047222,-81.7230556,Parma,OH,egg,30,Grey/silver egg shaped object, low altitude, heading north in Parma, Ohio. +2014-04-19,41.0238889,-81.1636111,Atwater,OH,disk,8,Dull silver object moving south to north at rapid speed. +2014-04-19,41.0238889,-81.1636111,Atwater,OH,disk,8,Dull silver saucer moving northward. +2014-04-19,35.614444399999996,-88.8138889,Jackson,TN,sphere,600,2 large orange balls traveling north to west in west TN. +2014-04-19,37.9886111,-84.4777778,Lexington,KY,other,1,Streak of light across Mars. +2014-04-19,37.7477778,-84.2947222,Richmond,KY,triangle,300,We saw a triangular craft with white lights in the sky traveling from Lexington, Kentucky home to Barbourville, Kentucky. +2014-04-19,33.4483333,-112.0733333,Phoenix,AZ,circle,180,I was out side and caught somthing out of the corner of my eye it was round made on noise moving from east to west and zig zagging. +2014-04-19,41.0072222,-81.5272222,Portage Lakes,OH,oval,180,Seven orange-yellowish oval shaped objects appeared in sky - moving fast and up until disappeared. +2014-04-19,38.2541667,-85.7594444,Louisville,KY,circle,180,6 round orange lights seen with one dropping quickly. +2014-04-19,28.5380556,-81.3794444,Orlando,FL,unknown,180,We saw what appeared to be traditional red/green navigation lights moving exceedingly fast across the sky, E to W, downward arc. +2014-04-19,42.7919444,-83.6277778,Holly,MI,sphere,2,My wife and I were driving back home from a day of shopping at the Sommerset Mall in Troy MI when we were driving on 75 N bound at 934 +2014-04-19,43.8736111,-116.4983333,Emmett,ID,light,900,Two lights following in succession, one blue, one white. +2014-04-19,41.24,-81.4408333,Hudson,OH,circle,900,Multi-colored circular object with easy bounce, changed colors and stayed in one place. +2014-04-19,61.2180556,-149.9002778,Anchorage,AK,flash,300,Brightly flashing high speed spherical object moving at very low altitude across the mountains, moving sporadically at first. +2014-04-19,42.6780556,-88.2761111,Burlington,WI,circle,120,Round red/orange UFO or some kind of object? +2014-04-19,44.0583333,-121.3141667,Bend,OR,light,2700,Bright light traveling in circles around Venus. +2014-04-19,46.6022222,-120.5047222,Yakima,WA,diamond,480,One moving across the sky the west towards Mt. ADAMS , it faded in and out almost disappearing at times . The color was mostly white. +2014-04-19,42.5030556,-83.1836111,Berkley,MI,fireball,20,Red flashing ball of light or fire that flashed or flickered before disappearing into the night sky. +2014-04-19,40.3244444,-79.7013889,Irwin,PA,light,2,I witnessed a craft in the sky with a few bright blue lights on it, the craft was traveling at a very high speed. It disappeared. +1963-04-20,38.8047222,-77.0472222,Alexandria,VA,light,900,4 red lights flying near Mt. Vernon, Va. toward Potomac River, in early evening April 1963 or 1964 +1965-04-20,28.5380556,-81.3794444,Orlando,FL,disk,900,AS A 6TH GRADER I SAW THIS CRAFT HOVER OVER ME, AND MAKE PLANNED AND EVASIVE MANUVERS AND INCREDIBLE SPEED. +1970-04-20,37.9747222,-87.5558333,Evansville,IN,disk,600,saucer shaped object above cornfield +1974-04-20,42.2886111,-85.4180556,Galesburg,MI,disk,300,Huge circle of rectangular light beams shoot into the night sky on highway 94 +1975-04-20,38.7077778,-77.0863889,Mount Vernon,VA,oval,180,I was about 12 yrs old and saw this oval object hovering, silently, over my home, near Ft. Belvior, VA. It had circles around its diame +1976-04-20,39.7588889,-84.1916667,Dayton,OH,changing,10,Ironic that it originated from a W/P flight line hanger at a time when it was belived that recovered craft were being stored there. +1979-04-20,40.4861111,-74.4522222,New Brunswick,NJ,disk,120,object was disk-like with windows all around, huge as it hovered over the area during the clear day, traveling north on l8, observed on +1980-04-20,39.7588889,-84.1916667,Dayton,OH,cigar,300,Cigar shaped craft outruns fighter jets +1983-04-20,37.8280556,-92.1775,St. Robert,MO,other,1200,we are not alone some one is hiding something........................... 500 Lights On Object0: Yes +1983-04-21,41.4775,-105.6361111,Wyoming (Various Towns),WY,other,86400,Wheatland-Douglas 1983 CattleMutilations UFO's seen. +1985-04-20,35.4797222,-79.1805556,Sanford,NC,sphere,25,A bright white light that travels 8 ft. off ground changes direction like humming bird was curious as we were of it as it was of us. +1996-04-20,34.0583333,-106.8908333,Socorro,NM,triangle,50,Triangular shaped object seen over Socorro New Mexico +1996-04-20,43.8013889,-91.2394444,La Crosse,WI,triangle,300,Five of us were on the top of a building downtown near dusk flying a kite. I looked up and saw the triangular shape above us with roun +1997-04-20,39.2797222,-89.8816667,Carlinville,IL,other,3600,In the night, I was awoken by the prescence of a groteque, glowing ship, with a glow as so sinister in a cloak of shadows IT was with. +1997-04-20,40.4780556,-85.9666667,Greentown,IN,formation,1200,4 UFO's spotted, In Northwest Sky, near the Big Dipper constellation. They all moved in roughly the same direction.(N-NE) +1997-04-20,45.7833333,-108.5,Billings,MT,light,600,One arc light over billing montana. +1997-04-20,36.175,-115.1363889,Las Vegas,NV,light,3,zig zagging light in the sky +1998-04-20,45.6388889,-122.6602778,Vancouver,WA,sphere,1,A bright light out my window. +1998-04-20,30.8325,-83.2786111,Valdosta (South Of),GA,circle,30,I think this was an Alien craft because it had very a very unusual performance +1998-04-20,43.2341667,-86.2483333,Muskegon,MI,other,600,Glowing green light dives repeatedly then comes up out of the water. +1998-04-20,39.0397222,-90.1405556,Brighton,IL,triangle,900,The object moved very low and slow, triangle in shape, big, black, and very quiet. +1998-04-20,30.2669444,-97.7427778,Austin,TX,light,15,Eruption of blue-white light in the sky followed by sweeping action and lesser blast of blue-white light, south, toward San Antonio. +1999-04-20,39.7391667,-104.9841667,Denver,CO,fireball,6,"just before" sun-up; snow whit fire ball streaked west to east above and across city skyline. Looked like just the picture of an old M +1999-04-20,34.9391667,-79.7741667,Rockingham (By Racetrack),NC,triangle,180,Driving on US 1 North hovering south of Race Track spinning with light on each corner of Triangle. Started moving along road for about +1999-04-20,34.0194444,-118.4902778,Santa Monica,CA,triangle,3600,I saw 2 triangular shaped objects with circular lights along the left & right sides. Approx. 5 min. later I saw one by itself flying in +1999-04-20,44.6994444,-73.4533333,Plattsburgh,NY,light,420,I saw what I thought was a star, and then a plane....then it started wobbeling. It had plane colors, but it didn't blink and didn't mo +2000-04-20,33.7222222,-116.3736111,Palm Desert,CA,cigar,60,I am 64 yrs old, female, very pragmatic, extremely well educated and read, recently retired from being a stock broker and certified fin +2000-04-20,30.2669444,-97.7427778,Austin,TX,fireball,2,objects over central texas so bright look like stars except its broad daylight +2000-04-20,48.7052778,-119.4383333,Tonasket,WA,light,120,I was standing in driveway (rural area no exterior lighting) taking a smoke break, it was dark, no moon, very quiet, when i noticed it +2000-04-20,37.3541667,-121.9541667,Santa Clara,CA,egg,25,Saw orange colored light moving across the sky +2000-04-20,40.7091667,-112.1008333,Magna (West Of),UT,light,1,An Orange point of light. a Orange point of light came from over the great salt lake comming East swinging to it right (South) and then +2000-04-20,41.1108333,-112.0252778,Clearfield,UT,circle,300,5 seperate appearances of round tinkerbell lights in the sky in chevron formation in sets of 7ƿƻᄾƿ flew overhead at amazing speed +2000-04-20,41.1108333,-112.0252778,Clearfield,UT,formation,300,Formation of small lights flying from South to North -- first two groups of 7 followed by 3, another of 14 and last of 7. Each group to +2000-04-20,42.6555556,-70.6208333,Rockport,MA,oval,1500,In the northern sky, right at Halibut Point, my son and I witnessed an oval shaped craft +2001-04-20,36.3547222,-79.6647222,Reidsville,NC,cigar,1200,Reidsville Prom Sighting +2001-04-20,39.4194444,-76.7805556,Owings Mills,MD,flash,7,a stationary object appeared in the sky for 10 seconds and its brightness increased over this time and disappeard w/ a trail of light. +2001-04-20,39.4694444,-76.8297222,Reisterstown,MD,fireball,3,flying fire ball in baltimore county, maryland +2001-04-20,46.7325,-116.9991667,Moscow,ID,changing,180,Pulsating objects, hovered, absorbed, left. +2001-04-20,47.1302778,-119.2769444,Moses Lake,WA,triangle,600,I wasn't a believer... but obviously the gov't hides this stuff with a bunch of media, otherwise: public panic! +2001-04-20,48.7597222,-122.4869444,Bellingham,WA,rectangle,20,The craft had no sound or lights at all. +2001-04-20,43.1947222,-88.7288889,Watertown,WI,sphere,3600,squadrons of orange balls pass over Watertown, WI +2001-04-20,39.9611111,-82.9988889,Columbus,OH,diamond,60,It few over then stopped in a hover position. It looked like the crafts were in a fighter like formation then dispearded. +2002-04-20,41.2277778,-75.2386111,Skytop,PA,circle,60,bright moon shaped light with smaller disc of light to lower right in front +2002-04-20,35.9380556,-77.7908333,Rocky Mount,NC,light,120,The light in the sky +2002-04-20,32.2216667,-110.9258333,Tucson,AZ,diamond,300,Diamond shape, with colored flashing lights and a strange noise. +2002-04-20,31.1169444,-97.7275,Killeen,TX,triangle,10,Triangular with lights on the corners with the ability to fly at high and real slow speeds. +2002-04-20,42.6011111,-76.1808333,Cortland,NY,unknown,15,Seven points of light continuously changing position with each other, yet all moving in the same direction. +2002-04-20,36.9922222,-91.9697222,Willow Springs,MO,triangle,1200,Large bright orange object seen twice in the same night +2003-04-20,38.6630556,-90.5769444,Chesterfield,MO,sphere,1,I saw a grate ball of fast moving flying gas. +2003-04-20,39.4494444,-75.7166667,Middletown,DE,triangle,480,Saw a craft with bright lights, watched it, saw it do an ABOUT FACE in midair and come straight back the same path it had been taking +2003-04-20,32.7152778,-117.1563889,San Diego,CA,fireball,480,Outlined below is information regarding an early morning Sunday, April 20, 2003 sighting. LOCATION: North Park/San Diego area. +2003-04-20,35.5280556,-108.7419444,Gallup,NM,light,180,SW view. Very sharp, fast flashing red light. Very similar to what I thought was an airplane. Light was traveling SW at a slow pace. S +2003-04-20,40.1736111,-85.4941667,Yorktown,IN,formation,5,Formation of lights appeared in the sky, dashed away to the horizon. +2003-04-20,39.7294444,-104.8313889,Aurora,CO,rectangle,30,large very black object +2003-04-20,33.4483333,-112.0733333,Phoenix,AZ,disk,120,UFO or not?? +2003-04-20,33.0216667,-117.2802778,Cardiff-By-The-Sea,CA,triangle,10,Triangular object with three LARGE, white lights seen on Easter night +2003-04-20,33.9533333,-117.3952778,Riverside,CA,light,30,2 star looking lights that fly in the same direction and blink before they dissapear. +2003-04-20,30.6277778,-96.3341667,College Station,TX,chevron,10,object having a V chevron shape moved rapidly below cloud cover S-N then turned east and vanished no sound. +2004-04-20,33.4933333,-112.3572222,Litchfield Park,AZ,triangle,180,to dark to see color. +2004-04-20,40.7441667,-73.4825,Bethpage,NY,triangle,25,TRAINGLE OBJECT WAS FLYING NORTH TOWARD AIRPLNE DIRECTION +2004-04-20,30.5166667,-86.4822222,Niceville,FL,formation,15,Three large bright lights, rotate to the right then disapear +2004-04-20,47.0075,-122.9080556,Tumwater,WA,fireball,2,Very fast moving fireball! +2005-04-20,43.5666667,-75.4288889,Constableville,NY,other,120,I saw two red colored almond shaped objects that looked like eyes. +2005-04-20,34.0522222,-118.2427778,Los Angeles,CA,light,25,North star brighter than ever! +2005-04-20,44.0805556,-103.2305556,Rapid City,SD,triangle,120,the object was hanging in the air above us for about 15-20 secodns and flew away very slowly... +2006-04-20,38.9905556,-77.0263889,Silver Spring,MD,cigar,300,Metalic cigar shaped objects passing over one another in Silver Sping Maryland. +2006-04-20,40.4166667,-86.8752778,West Lafayette,IN,fireball,2,Organge light that split into 3 then disappeare +2006-04-20,33.0580556,-112.0469444,Maricopa,AZ,light,10,4-5 amber orbs seen over Sonoran Desert, south on 347 +2006-04-20,44.0216667,-92.4697222,Rochester,MN,circle,240,1 satelight and 3 unknown white and red objects that followed in the opposite direction flying silent in the sky- +2006-04-20,35.9605556,-83.9208333,Knoxville,TN,cylinder,180,Green and orange lit cylinder flashed across the sky while outside at work. +2007-04-20,42.3355556,-72.6722222,Florence,MA,triangle,4,perfect triangle , silent , pale red with a pale red light on each point +2007-04-20,28.7027778,-81.3386111,Longwood,FL,light,60,Craft splits into 3 flying pieces and another comes from "nowhere" +2007-04-20,41.9211111,-73.0605556,Winsted,CT,teardrop,60,the speed the contrail and the shape were nothing i ever seen before.and no sound +2007-04-20,42.5311111,-75.5238889,Norwich,NY,triangle,5,On 04/20/07 at 03:42est observed 2 airborne triangular objects flying overhead in formation at n42/33/99 w75/31/45 on a heading of appr +2007-04-20,45.6388889,-122.6602778,Vancouver,WA,light,4,An oval light object moved into my still frame photo then immediately disappeared. ((NUFORC Note: Possible meteor? PD)) +2007-04-20,40.0027778,-75.2711111,Wynnewood,PA,triangle,120,No sound and had no apparent windows +2007-04-20,42.489444399999996,-83.1447222,Royal Oak,MI,light,180,Bright light in sky growing larger and brighter.....then gone! 4-20-07 9:37 pm, Royal Oak, Michigan +2007-04-20,39.6133333,-105.0161111,Littleton,CO,fireball,4,On April 20, 2007, at approx. 10:00 PM, blueish fireball descends low near downtown Littleton, CO. ((NUFORC Note: Meteor?? PD)) +2007-04-20,40.3266667,-78.9222222,Johnstown,PA,other,180,4/20/07 10;30 pm big object no noise just moved slowly away from the top of my house +2007-04-20,40.5852778,-105.0838889,Fort Collins,CO,sphere,3,Looking towards the mountains (west) from fort collins, co. A large, bright green, spherical object appeared suddenly and proceeded to +2007-04-20,42.0583333,-71.25,Foxboro,MA,light,120,I was driving on Route 95 and there appeared a large light in the sky. I was scared and terrified as I initially thought that the obje +2007-04-20,39.5347222,-107.7825,Rifle,CO,fireball,30,I noticed the ground light-up +2007-04-20,39.7286111,-121.8363889,Chico,CA,circle,10,Three circular objects moving fast and without sound in a formation pattern +2008-04-20,28.0391667,-81.95,Lakeland,FL,triangle,7200,was heading south Giant triangle shapped craft, moving very slow with smaller crafts escorting it. 500 Lights On Object0: Yes +2008-04-20,42.1211111,-88.2577778,Carpentersville,IL,circle,7200,strange light moving, stopping, moving more quickly then stopping. +2008-04-20,41.0988889,-81.2427778,Rootstown,OH,sphere,720,All three of my dogs never barked again. +2008-04-20,30.2458333,-87.7008333,Gulf Shores,AL,circle,3600,My friend and I were sitting on the beach enjoying the full moon and stars. All of sudden the clouds began clustering together and we c +2008-04-20,41.4788889,-87.4547222,Schererville,IN,triangle,3480,objects i've never seen before. +2008-04-20,40.0227778,-82.4447222,Heath,OH,light,2700,red strobing star looking object ,disappeared & reappearing in different spots in the sky +2008-04-20,29.055,-82.0625,Belleview,FL,cigar,120,It was a clear cloudless Sunday afternoon and we were coming back from church heading north on US 301 near belleview florida. I happene +2008-04-20,34.99,-106.0486111,Moriarty,NM,light,180,the ufo was moving fast and erraticly it was moving in immposible ways +2008-04-20,31.2230556,-85.3905556,Dothan,AL,diamond,300,Possible UFO in the South +2008-04-20,38.2097222,-84.2530556,Paris,KY,light,2,Intense silvery white light/orb appearing in front of a large cloud in Paris Ky. +2008-04-20,35.0455556,-85.3097222,Chattanooga,TN,diamond,12,My daughter was in the backseat of our vechicle recording on her cell phone, when her and my son said they saw a shooting star. When w +2008-04-20,28.2713889,-82.7197222,Port Richey,FL,triangle,1800,Triangular shaped object with red & white lights at each corner and a hyper-blue light eminating from the underside +2008-04-20,35.3619444,-86.2094444,Tullahoma,TN,diamond,120,UFO hovering over lake. +2008-04-20,26.5625,-81.9497222,Cape Coral,FL,disk,3600,A small gray saucer on golf course, they where pulling at me they wanted me to go with them I got very sick from attack n +2009-04-20,35.9938889,-78.8988889,Durham,NC,triangle,300,Large triangular craft seen hovering over power lines +2009-04-20,44.4758333,-73.2125,Burlington,VT,formation,5,Light formation streaks across Vermont sky +2009-04-20,34.0752778,-84.2941667,Alpharetta,GA,rectangle,300,Large, detailed craft sighting, brightly lit as if parked in the sky, very close, and lights/all white were pulsating. +2009-04-20,43.2377778,-94.7511111,Graettinger,IA,other,300,Palo Alto County Iowa 5 minute durating +2009-04-20,32.7458333,-96.9975,Grand Prairie,TX,circle,2,Orb came out of no where seem to some straight at men and then veered up and went straight moving at a tremendous speed and disappeared +2009-04-20,29.7630556,-95.3630556,Houston,TX,cigar,2,Glowing missile shaped object sited north of Houston IAH and heading towards earth. +2009-04-20,35.425,-108.3147222,Continental Divide,NM,other,8,April 20 2009 Simi Circular craft Silver in color/with a teardrop shaped white underbelly seen near entrance to Chaco Canyon New Mexico +2009-04-20,40.5852778,-105.0838889,Fort Collins,CO,disk,1200,MOVED AT SPEEDS , ANGLES THAT ARE NOT NORMAL +2009-04-20,31.5491667,-97.1463889,Waco,TX,egg,60,It was a gray egg shaped thing in the air by the airport. +2009-04-20,42.9275,-83.63,Grand Blanc,MI,light,1200,It was a flashing light going to fast to be a plane or sattilite. +2009-04-20,32.3122222,-106.7777778,Las Cruces,NM,fireball,600,Orange Fireball Traveling Northbound Over Las Cruces +2009-04-20,32.2216667,-110.9258333,Tucson,AZ,flash,900,This is a 3rd follow-up to the two previous nights reports. The same flash of light was seen south of the Leo constellation between the +2009-04-20,47.4811111,-118.2533333,Harrington,WA,light,45,Two adult males witness extremely bright, moving, light in the eastern sky; not Iridium satellite, or ISS. +2009-04-20,47.1302778,-119.2769444,Moses Lake,WA,other,720,small bright white light hovering near the airport and then left really fast clouse to the ground made no sounds +2010-04-20,45.6388889,-122.6602778,Vancouver,WA,sphere,960,4/20/10 7:35 vancouver wa sphere 16 a flying sphere over mcloughlin middle school +2010-04-20,31.7244444,-96.165,Fairfield (East Of),TX,changing,2700,huge light that seemed to hover and then quickly dropped and climbed back up slowly +2010-04-20,33.8158333,-78.6802778,North Myrtle Beach,SC,circle,30,Orange Lights/Diagonal Line of 3 Lights +2010-04-20,33.426944399999996,-117.6111111,San Clemente,CA,triangle,600,Triangle over I-5 near San Clemente and bright hovering light. +2010-04-20,36.175,-115.1363889,Las Vegas,NV,fireball,600,12 Flickering Orange Lights Over Las Vegas, NV +2010-04-20,39.9522222,-75.1641667,Philadelphia,PA,triangle,600,I think it's important that Air Traffice from the Airport seem to stop during the display. +2011-04-20,30.275,-98.8716667,Fredericksburg,TX,disk,300,((HOAX??)) Aliens at Fredricksburg. +2011-04-20,33.4222222,-111.8219444,Mesa,AZ,egg,20,Bluish white egg shaprd light falling from sky +2011-04-20,37.3636111,-118.3941667,Bishop,CA,disk,20,2 group of white discs in Bishop California. +2011-04-20,42.225,-121.7805556,Klamath Falls,OR,circle,1,It was very real. +2011-04-20,38.6272222,-90.1977778,St. Louis,MO,changing,1200,((HOAX)) I was standing on my porch, smoking a doobie, when, all of a sudden, I saw 3 weird shapes in the sky. My +2011-04-20,38.9536111,-94.7333333,Lenexa,KS,light,6,bright green light over lenexa kansas +2011-04-20,33.8752778,-117.5655556,Corona,CA,triangle,600,Black triangle seen over Corona,, Ca. changing colors to pink and orange heading eastbound. 7pm day +2012-04-20,46.8772222,-96.7894444,Fargo,ND,triangle,45,Three extremely bright lights north of NDSU appeared and disappeared quickly. +2012-04-20,35.9605556,-83.9208333,Knoxville,TN,flash,3600,Multiple bright flashes of light with no sound, enveloping sky with light. +2012-04-20,40.4211111,-79.7883333,Monroeville,PA,light,5,Points of light, slowly moving, fade out. +2012-04-20,38.8002778,-90.6263889,St. Peters,MO,unknown,25,green, red, and yellowish- whitelights on craft flying low moving north to south. +2012-04-20,42.3583333,-71.0602778,Boston,MA,cylinder,10800,Fighter Jets Chase UFO's over City of Boston +2012-04-20,30.2669444,-97.7427778,Austin,TX,unknown,120,Two objects appear in the night sky and disappear, +2012-04-20,43.1536111,-93.2008333,Mason City,IA,light,120,Observed two steady red lights for about one minute that moved slowly and faded out +2012-04-20,43.5255556,-71.8622222,Danbury,NH,unknown,30,I saw something in the sky that was not a plane,meteor,or satelite +2012-04-20,39.0416667,-94.72,Shawnee,KS,circle,30,The size of a grapefruit ball of light moving through the sky. +2012-04-20,33.6680556,-117.3263889,Lake Elsinore,CA,chevron,8,Large, dark, triangular winged object with numerous small dim lights, silently floated by us. +2012-04-20,43.6630556,-116.6863889,Caldwell,ID,light,300,6- Red/Yellow lights seen in a verticle formation.They disappeared into the sky. +2012-04-20,41.4208333,-90.015,Atkinson (Near),IL,unknown,300,Bright Pulsing light high in the sky Over I-80 around Mile 26 in Illinois +2012-04-20,35.4086111,-80.5797222,Concord,NC,light,3600,Bright light in the sky. Disappears and reappears. +2012-04-20,38.2775,-85.7372222,Jeffersonville,IN,light,90,BRIGHT ORANGE LIGHT WITHOUT SOUND OVER THE CITY./ +2012-04-20,29.2666667,-98.7316667,Atascosa,TX,light,60,This was a orange/ yellow Ufo that was witnessed for more than a minute. +2012-04-20,27.4122222,-82.6591667,Longboat Key,FL,other,600,4/12 18 orange star like objects flying low, one at a time over area in precision-like timing. Longboat key, Fl +2012-04-20,30.7194444,-86.0444444,Argyle,FL,oval,300,Scariest thing i have ever seen!! +2012-04-20,35.1083333,-77.0444444,New Bern,NC,unknown,3,Amateur Skywatcher Notes Unusual Object Dynamics +2013-04-20,43.4147222,-95.6430556,Allendorf,IA,light,1800,Bright light in Iowa sky +2013-04-20,40.7141667,-74.0063889,New York City,NY,disk,240,Saucer Shaped Object Seen Near George Washington Bridge NYC +2013-04-20,38.2855556,-85.8241667,New Albany,IN,oval,1800,Group of Ships over Skyline +2013-04-20,38.0172222,-122.2875,Hercules,CA,sphere,30,Sphere heading from West to East first with a fire trail but later a reddish orange sphere +2013-04-20,33.1958333,-117.3786111,Oceanside,CA,other,10,Silent group of lights moving overhead. Hovered briefly then reversed course and disappeared. +2013-04-20,41.4516667,-82.0355556,Avon,OH,changing,40,There were 3 lights that were changing shapes, they were orange lights then they turned a little red and then went back to orange, +2013-04-20,42.2194444,-87.9794444,Vernon Hills,IL,triangle,60,Unusual Red Triangular Light Formation +2013-04-20,42.0427778,-88.0797222,Hoffman Estates,IL,light,5,White object over Hoffman Estates Illinois +2013-04-20,34.1841667,-118.9097222,Newbury Park,CA,light,180,Unusual light spiraling above Boney Mountain +2013-04-20,44.0463889,-123.0208333,Springfield,OR,light,300,Blinking blue lights moving and sinking below the horizon +2013-04-20,38.8416667,-76.5125,Shady Side,MD,fireball,600,Red and orange fireball lasting for 2-3 minutes before moving out of sight. a second one flew by 30 min. later. +2013-04-20,44.0780556,-71.2833333,Bartlett,NH,sphere,3600,Hovering Bright White Lights in the Skies of Bartlett, NH +2013-04-20,42.4311111,-83.4833333,Northville,MI,fireball,1200,Color changing fireball. ((NUFORC Note: Possible twinkling star?? PD)) +2013-04-20,33.4222222,-111.8219444,Mesa,AZ,cone,20,Went outside to look at the stars and noticed a cone shaped object low in the sky, which the streamers, it displayed immediately dissip +2014-04-20,42.8144444,-89.635,New Glarus,WI,other,5,Orbs and rod craft observed. +2014-04-20,36.175,-115.1363889,Las Vegas,NV,light,5,Brightest white light about twice as high as airliner hovering about 5 secs and disappeared in a flash +2014-04-20,39.2386111,-77.2797222,Clarksburg,MD,fireball,900,8 Fireball like moving objects sighted over Clarksburg, MD. +2014-04-20,39.7391667,-104.9841667,Denver,CO,sphere,240,White spheres. +2014-04-20,33.5091667,-111.8983333,Scottsdale,AZ,light,45,Bluish/purple light moving horizontally and vertically over East Scottsdale. +2014-04-20,36.175,-115.1363889,Las Vegas,NV,light,5,Jones and 215 bright light flying object way up high for about 5 secs went up in a flash and disappeared. +2014-04-20,29.8986111,-93.9286111,Port Arthur,TX,cigar,900,Numerous rocket shaped objects sighted in the sky higher than cruising altitude of airliners. +2014-04-20,47.6063889,-122.3308333,Seattle,WA,light,1200,Small solid white light with sudden movements. +2014-04-20,34.5008333,-117.185,Apple Valley,CA,circle,240,Mysterious bright orange ball of light glides across high desert sky Easter Sunday evening. +2014-04-20,41.0588889,-74.0222222,Pearl River,NY,fireball,300,Red orange and round as if it was a comet. moved deliberately and changed directions, like it wasnt sure which way to go. +2014-04-20,41.3894444,-82.0191667,North Ridgeville,OH,fireball,120,Orange fireball spotted north west of Cleveland near Lake Erie. +2014-04-20,38.2541667,-85.7594444,Louisville,KY,triangle,600,Orange triangle shaped objects seen over neighborhood. +2014-04-20,43.55,-96.7,Sioux Falls,SD,circle,300,Orange ball on fire. +2014-04-20,41.5241667,-72.0763889,Norwich,CT,rectangle,10,Wow. +2014-04-20,37.9686111,-80.7672222,Rainelle,WV,unknown,1800,Witnessed floating, slow moving object with wierd circular light outside of Rainelle, WV. +2014-04-20,37.9747222,-122.5605556,San Anselmo,CA,changing,180,((HOAX??)) Large orange Carlos Diaz type craft seen along with clusters of other glowing objects. +2014-04-20,41.2391667,-81.3461111,Streetsboro,OH,light,120,Three bright steady red lights. +2014-04-20,30.4055556,-86.6188889,Fort Walton Beach,FL,light,900,Flashing light SW of Fort Walton Beach. +2014-04-20,47.6063889,-122.3308333,Seattle,WA,formation,5,I witnessed two lights in formation moving in a straight line, far faster than any aircraft, and with no sound whatsoever. +2014-04-20,45.8708333,-112.0966667,Whitehall,MT,light,180,Out with dogs one really big bright light and 1 small light 2 min observation. The disappeared quickly. +1967-04-21,41.0533333,-73.5391667,Stamford,CT,cylinder,1800,At approximately 7:30 P.M. I and my father and some neighbors were out in the street chatting when a large cylindrical object drifted t +1969-04-21,34.7463889,-92.2894444,Little Rock,AR,cylinder,720,Non moving, soundless , tri-cylinder, object that appears and just fades back into sky +1984-04-21,30.2091667,-95.7505556,Magnolia,TX,disk,300,The object came out of the East and traveled along side the car just above the tree tops. +1987-04-21,47.4272222,-92.9375,Hibbing,MN,circle,900,we saw a strange light in the sky so we pulled over to the side of the road and watched in amazment as it moved with lighting speed +1989-04-21,36.2952778,-80.1419444,Walnut Cove,NC,triangle,600,Triangle three white lights one red in the middle moving slowly. +1993-04-21,32.8994444,-105.9597222,Alamogordo,NM,light,600,strange, amber lights unlike conventional airplane lights +1995-04-21,42.1102778,-88.0341667,Palatine,IL,fireball,8,Bright red fireball in the sky. Seen two seperate occasions. Resembled a flare. +1998-04-21,31.4227778,-103.4927778,Pecos (Mile Marker 205 Highway 10),TX,chevron,180,Single aircraft swooped toward my car, stopped, and then moved off behind disappearing from sight +1998-04-21,39.9205556,-105.0861111,Broomfield,CO,teardrop,120,We were driving home from a coffee shop in Broomfield and we thought we heard a police siren so we pulled over but we didn't see any em +1998-04-21,36.9741667,-122.0297222,Santa Cruz,CA,fireball,15,A comet-like thing, about the size of a dinner plate. It had a tail that was greenish with sparks in it. No sound. +1999-04-21,46.9455556,-119.9861111,Vantage (Between Kittas And Vantage),WA,other,15,In response to newscast asking witnesses to meteor event report in. +1999-04-21,26.7052778,-80.0366667,West Palm Beach,FL,light,300,@ diffrent lights one moving from south to north, another 2 minutes later moving west to east. +1999-04-21,46.2113889,-119.1361111,Kennewick,WA,circle,4,A large red glowing ball of fire with a long tale was seen in the south eastern part of the sky. The object was as big a full moon in t +1999-04-21,48.1752778,-117.7236111,Valley,WA,fireball,3,I walked out the door and saw ahead of me, in the distance, on the horizon, a falling, brightly glowing fireball, that was nearly the s +2000-04-21,36.2297222,-93.1075,Harrison,AR,cylinder,180,I just saw a craft that looked like a cylinder or cigar. +2000-04-21,40.5583333,-85.6591667,Marion,IN,disk,300,I was taking out the trash when i looked up and sawa metalic dick shaped object moving eradicly in the air and then flew off. +2000-04-21,38.6105556,-122.8680556,Healdsburg,CA,triangle,120,while going home from work, traveling north on 101 from Santa Rosa I saw a large light in the sky. I stopped to look at it. It was abo +2001-04-21,37.6819444,-121.7669444,Livermore,CA,other,10,We where driving on tesla road when we turned the corner we seen a brown object floating above the road and also wider then the road an +2001-04-21,37.7666667,-120.8461111,Oakdale,CA,oval,600,oval shaped iridescent object. +2001-04-21,36.9958333,-85.9119444,Glasgow,KY,triangle,420,Triangle shaped craft with 5 white lights at the Cumberland Parkway tollbooth in Barren County, Ky. on 04-21-01 @ 08:00 p.m. +2001-04-21,32.7355556,-97.1077778,Arlington,TX,triangle,60,Three objects traveling east to west at an inconsistent speed but in a straight line, color white to yellow but observed in bright city +2002-04-21,34.698055600000004,-118.1358333,Lancaster,CA,circle,240,Looking at the moon which was visible during the day I noticed a white dot approaching the moon east to west. At first I thought it was +2002-04-21,37.1861111,-86.1,Mammoth Cave,KY,other,7200,Crashed metal flying machine. +2003-04-21,35.4086111,-80.5797222,Concord,NC,teardrop,600,Fork lift attacked by aliens craft +2003-04-21,33.4483333,-112.0733333,Phoenix,AZ,other,5,bright diamond object over south Phoenix +2003-04-21,33.4483333,-112.0733333,Phoenix,AZ,fireball,6,SUDDENLY A BRIGHT ELECTRIC BLUE FIREBALL WITH A BIG FIREY RED SPARKLING TAIL APPEARED +2004-04-21,35.6869444,-105.9372222,Santa Fe,NM,circle,30,There were three balls of light flying in a long triangle +2004-04-21,38.5472222,-122.8152778,Windsor,CA,light,90,Glowing Orb - looked like reddish-orange fire burning on the inside of a transparent round ball. +2004-04-21,32.2216667,-110.9258333,Tucson,AZ,disk,1500,Sphere shaped object hovering low in sky +2004-04-21,38.9716667,-95.235,Lawrence,KS,sphere,60,Sphere-like craft with three lights flys over Lewis Hall, totally in vision. Three Lights. Object was near enough to see form. +2004-04-21,47.6105556,-122.1994444,Bellevue,WA,triangle,30,fast large silent three amber rings triangle formation +2005-04-21,37.3688889,-122.0352778,Sunnyvale,CA,light,300,Big white light leaves with a loud rumbling noise +2005-04-21,30.2669444,-97.7427778,Austin,TX,unknown,120,Large, dark, almost rectangular object tumbling and ascending +2005-04-21,39.6661111,-105.2436111,Idledale,CO,unknown,3600,Flashing light in western sky ((NUFORC Note: Sighting of Sirius. PD)) +2005-04-21,43.0125,-83.6875,Flint,MI,light,30,Red Object, fast moving craft that did not appear to follow the FAA rules. +2005-04-21,40.4991667,-74.3994444,Piscataway,NJ,unknown,240,A buzzing sound interupted my piano/singing; 1/2 lit light green slats, white & red lights on other side, 20-30 ft up & from my house. +2006-04-21,30.2669444,-97.7427778,Austin,TX,circle,2,3 grey saucers quietly souring through the sky, and disapearing. +2006-04-21,35.2269444,-80.8433333,Charlotte,NC,unknown,600,two UFOs crashed near my house +2006-04-21,41.7075,-86.895,Michigan City,IN,sphere,10800,Flashing lights in the atmosphere. +2006-04-21,33.9077778,-97.2886111,Burneyville,OK,light,60,wobbly yellowish bright light passed overhead from southwest horizon to northeast horizon. ((NUFORC Note: ISS overflight. PD)) +2006-04-21,35.0844444,-106.6505556,Albuquerque,NM,triangle,12,Strange light in a triangular formation +2006-04-21,41.6894444,-70.1569444,South Dennis,MA,unknown,480,2 flying objects with revolving red lights blinking from right to left slowly flying south in night sky.I went out into my backyard +2007-04-21,41.1577778,-80.0888889,Grove City,PA,chevron,4,A silent and large boomerang-shaped object. +2007-04-21,36.175,-115.1363889,Las Vegas,NV,oval,240,The object was heading east, it was to my north and seemed to be at a constant velocity. +2007-04-21,32.1994444,-110.9677778,South Tucson,AZ,formation,420,I saw five orbs or flashes changing position over Tucson during the day over a plume of smoke. +2007-04-21,38.9636111,-93.4147222,Sweet Springs,MO,triangle,15,perfectly shaped triangle seen just south of I-70, north of whiteman airforce base, hovering over a farmers field. +2007-04-21,26.2752778,-80.0875,Lighthouse Point,FL,triangle,480,large black trangular object going very fast with flashing lights in a random pattern on the back. +2007-04-21,38.8816667,-78.5061111,Woodstock,VA,oval,3,An oval-shaped craft with green lights was observed on the evening of April 21st near Woodstock, VA. +2007-04-21,42.2625,-71.8027778,Worcester,MA,changing,3,LED Nav Lights and an Ultra bright Strobe +2007-04-21,32.4486111,-81.7833333,Statesboro,GA,light,5,A bright white light moving at supersonic speed in northern sky of southeastern U.S. +2007-04-21,36.8572222,-88.3502778,Benton,KY,light,300,3 white lights in a semi-circular pattern high over Western KY, moving at different speeds from S to N, then E, then N before disappear +2007-04-21,38.5708333,-90.19,Cahokia,IL,disk,7200,9 witnesses to several disk shaped aircraft in the night sky. +2007-04-21,47.2530556,-122.4430556,Tacoma,WA,light,300,orange flying light in tacoma +2007-04-21,39.2980556,-78.4363889,Capon Bridge,WV,light,14400,Single bright celestial light with dramatic movement observed for four hours in West Virginia +2008-04-21,34.0708333,-112.15,Black Canyon City,AZ,other,14400,Unexplained red lights near dump at B;ack Canyon City. +2008-04-21,42.1583333,-71.1452778,Canton,MA,unknown,600,On the night in question this strange rhythmic humming sound was heard off in the distance to the south. At first I thought it was a m +2008-04-21,29.5847222,-81.2080556,Palm Coast,FL,unknown,1200,Unusual droning sound and rapidly pulsating blue/white lights +2008-04-21,29.5847222,-81.2080556,Palm Coast,FL,unknown,1200,Whirring sound like a giant bumble bee +2008-04-21,40.5866667,-122.3905556,Redding,CA,egg,240,3 egg like objects in the sky. +2008-04-21,33.4483333,-112.0733333,Phoenix,AZ,diamond,900,Large diamond shaped craft with 4 red lights, one in each corner, hovered for approx 15 minutes then moved away and out of site. +2008-04-21,33.4483333,-112.0733333,Phoenix,AZ,light,900,4 red lights moving in sky +2008-04-21,33.4483333,-112.0733333,Phoenix,AZ,formation,1800,Lights that did not match known aircraft +2008-04-21,33.4483333,-112.0733333,Phoenix,AZ,formation,1800,looking NW saw 4 red lights slight, sutle movement in formation, one by one disappear=duration at least 30 minutes. +2008-04-21,33.4483333,-112.0733333,Phoenix,AZ,light,1200,4 red, unknown lights were seen over phoenix, az by thousands of people and the local Luke, AFB claims they have nothing to do with it. +2008-04-21,33.4483333,-112.0733333,Phoenix (North Of),AZ,formation,900,I am relaying, a Sightings Location and Proximity to possible Key Investigative Areas of Intrest.. +2008-04-21,33.4483333,-112.0733333,Phoenix,AZ,teardrop,1800,four UFOs red in color tear drop shape are seen and reported in the news in Phoenix Arizona +2008-04-21,33.4483333,-112.0733333,Phoenix,AZ,triangle,1080,Rectangular Shaped 4 Red Lights Which All Blinked Out Within 18 Minutes +2008-04-21,33.4483333,-112.0733333,Phoenix,AZ,fireball,1200,There were still, red, and positioned lights in the sky for at least twnety minutes without movement. +2008-04-21,41.4527778,-82.1825,Lorain,OH,changing,1200,I was behind my house, having a cigarette on the patio around our pool. I casually looked in the sky as I normally do, and noticed a ve +2008-04-21,37.8044444,-122.2697222,Oakland,CA,oval,120,I saw a helicopter-size and silent object with a belt of lights rotating around it hovering over a park at night. +2008-04-21,39.3544444,-84.1272222,Morrow,OH,light,60,A very bright white light high in the sky flashing very slowly in 5 second intervals moving North then gone. +2008-04-21,35.9938889,-78.8988889,Durham,NC,triangle,240,large triangular craft with 5 lights1 a red blinking light,hovering until i arrived right next to it and slowly dissappeared +2009-04-21,38.8338889,-104.8208333,Colorado Springs,CO,triangle,2,Triangle craft with dim lights traveling low at a high rate of speed with no sound over the Colorado Springs airport. +2009-04-21,35.3272222,-96.925,Shawnee,OK,circle,20,This was the morning of april 21st, the ufo was circular and emitted a beam of light from the underbelly. +2009-04-21,38.9516667,-92.3338889,Columbia,MO,light,3600,Three "stars" / lights moving around the early morning sky. ((NUFORC Note: Possible sighting of star?? PD)) +2009-04-21,40.7141667,-74.0063889,New York City,NY,cylinder,300,Ominous cylinders in the western sky. ((NUFORC Note: Possibly not a serious-minded report? PD)) +2009-04-21,28.0194444,-82.7719444,Dunedin,FL,triangle,120,I saw a strange black triangle with a silver circle in the middle, it flew by my house, maybe two of them. +2009-04-21,34.4208333,-119.6972222,Santa Barbara,CA,sphere,300,Orange orbs over Santa Barbara +2009-04-21,33.78,-118.2616667,Wilmington,CA,triangle,300,red non blinking triangular pattern objects seen moving in fast z pattern in night sky +2009-04-21,39.1433333,-77.2016667,Gaithersburg,MD,circle,1800,5 bright lights in the sky in a straight line +2009-04-21,35.0844444,-106.6505556,Albuquerque,NM,teardrop,45,bright teardrop flys over the freeway in ALbuquerque +2009-04-21,32.7947222,-116.9616667,El Cajon,CA,triangle,120,9 squares in a flying V but moved as one structure, silent, no lights, lit by the city lights below. +2009-04-21,47.6591667,-92.1977778,Embarrass,MN,light,15,Bright amber lights, rotating around with small white lights moving quickly and erratically in night sky. +2010-04-21,44.426944399999996,-124.0675,Waldport,OR,triangle,3600,Triangles/Cones +2010-04-21,43.8005556,-70.1872222,Yarmouth,ME,light,20,Early morning dancing star. ((NUFORC Note: Possible star?? PD)) +2010-04-21,34.1511111,-118.4483333,Sherman Oaks,CA,sphere,3600,Stationary bright light observed foor over an hour.((NUFORC Note: Possible sighting of Venus, which is in the NW sky, currently. PD)) +2010-04-21,47.6816667,-122.2075,Kirkland,WA,rectangle,15,I saw a very long object, with three white lights spaced evenly apart. It was far too long to be an airplane, it made no noise whatsoev +2011-04-21,44.5513889,-94.9841667,Morton,MN,rectangle,10,Large unexplainable rectangular, clear-shaped "form" seen in night sky +2011-04-21,39.4458333,-123.8041667,Fort Bragg,CA,fireball,120,A red dot a little bigger than a star appeared in the southern sky moved in a strange way, then changed directions a few times. after o +2011-04-21,38.9536111,-94.7333333,Lenexa,KS,other,240,we saw a large flat light sheet in the shape of what looked like texas it didnt make a sound and we didnt see any creatures +2011-04-21,47.7375,-120.3677778,Ardenvoir,WA,other,60,ardenvoir ((NUFORC Note: Possible sighting of an Iridium satellite. PD)) +2011-04-21,40.9391667,-75.4352778,Effort,PA,triangle,180,Triangular craft over Poconos... +2011-04-21,35.0072222,-80.9452778,Fort Mill,SC,light,7,I saw a red light with a little white flying across the sky which made no sound like a plane or helicopter. It was going at a fast spee +2012-04-21,33.7205556,-116.2147222,Indio,CA,triangle,30,A unidentified triangular object with three white lights in each corner, flying West to East in a fast pace. +2012-04-21,40.7608333,-111.8902778,Salt Lake City,UT,sphere,120,Two silent white spheres crossing the early morning sky. +2012-04-21,37.1041667,-113.5833333,St. George,UT,fireball,300,3 bright red dots making a triangular for the they disappeared +2012-04-21,47.6063889,-122.3308333,Seattle,WA,disk,1,Flying saucer over I-5 in North Seattle. +2012-04-21,38.8338889,-104.8208333,Colorado Springs,CO,light,14400,Bright blinking Light, and a strange jet. also, a helicopter following another intense light. +2012-04-21,40.725,-73.2458333,Bay Shore,NY,fireball,60,Two fireballs seen flying over Bay shore neighborhood +2012-04-21,33.7475,-116.9711111,Hemet,CA,sphere,60,Multiple spheres in the sky that are unexplainable +2012-04-21,39.535,-119.7516667,Sparks,NV,oval,240,Large, dim, asymetrical and constantly changing shape, faintly colored object, moving from NW to SE. +2012-04-21,39.7047222,-105.0808333,Lakewood,CO,light,6,Helicopter chasing ball of light, disappears. +2012-04-21,36.175,-115.1363889,Las Vegas,NV,circle,240,Directional 32 amber orbs from SW Las Vegas heading toward NW Las Vegas +2012-04-21,36.9741667,-122.0297222,Santa Cruz,CA,oval,7200,Shimmering oval shaped UFO seen over Highway 17 in Santa Cruz! +2012-04-21,41.525,-88.0816667,Joliet,IL,triangle,300,Lights in triangle formation, solitary fireball over interstate 55 near Joliet, Illinois +2012-04-21,38.4327778,-90.3775,Arnold,MO,fireball,105,Fireball moving south at slow pace pretty much below cloud cover around 9:30 p.m. pulsed in briteness a few times turned black and went +2012-04-21,47.5675,-122.6313889,Bremerton,WA,triangle,10,I was looking up in the night sky for meteors because of the shower that was taking place that night. All of a sudden I saw a spot of d +2012-04-21,47.3075,-122.2272222,Auburn,WA,circle,300,Bright, circular in shape object, moving from a 3 o'clock position in the sky to the 12 o'clock position before dissapearing +2012-04-21,47.0380556,-122.8994444,Olympia,WA,sphere,90,White light Orb moving silently the size and brightness of Venus moves half way across sky then fades totally away. +2012-04-21,43.7733333,-85.5025,Paris,MI,unknown,1500,A white light in the sky that would stop in the air and change directions like a ball in a pinball machine. +2012-04-21,45.5236111,-122.675,Portland,OR,light,15,Point of light heading SE in trajectory disappeared completely as if it receded into space, leaving orbit on a ballistic trajectory. +2012-04-21,47.4958333,-121.7855556,North Bend,WA,circle,20,At approximately 10:40 PM on Saturday evening April 21st. I was standing out front of the Snoqualmie Eagles Club in Northbend Washingto +2012-04-21,41.5875,-109.2022222,Rock Springs,WY,circle,60,Bright colored fast moving light that split into two and rapidly flew away +2012-04-22,39.6133333,-105.0161111,Littleton,CO,other,240,Unknown hellicoptor type object chasing bright light. +2013-04-21,35.8455556,-86.3902778,Murfreesboro,TN,unknown,300,Cigar or saucer shaped object above murfreesboro tennessee +2013-04-21,32.3122222,-106.7777778,Las Cruces,NM,fireball,120,Out side wal mart several people were watching a slow moving fire moving from east to west. They said it has been going for 2 minutes. +2013-04-21,37.7397222,-121.4241667,Tracy,CA,oval,60,04/21/2013 04:45 oblong orange/yellow bright light traveling west to east in Tracy, CA for 30-60 seonds, then disappeared +2013-04-21,33.8302778,-116.5444444,Palm Springs,CA,light,1800,UFO over Palm Springs Metallic object sighted west of Pam Springs, CA around 11:40am on Sunday April 21st. Object was stationary over +2013-04-21,30.3580556,-90.0655556,Mandeville,LA,changing,120,Red fire lights over covington/mandeville +2013-04-21,41.7,-70.3,Barnstable,MA,diamond,60,Low flying/gliding diamond, three white lights, one blinking red. +2013-04-21,33.3061111,-111.8405556,Chandler,AZ,triangle,2700,Triangle amber yellow lights over Chandler Arizona +2013-04-21,42.5444444,-72.6061111,Deerfield,MA,light,30,Bright Blue Light flying incredibly fast after being still +2013-04-21,35.0844444,-106.6505556,Albuquerque,NM,light,120,Spotted an light much like a star but larger and green with subtle red light. Moved very erratically, changing direction master than an +2013-04-21,21.9711111,-159.715,Kekaha,HI,light,1800,Lights kekaha HI on island of Kauai +2013-04-21,21.9711111,-159.715,Kekaha,HI,light,1800,Red lights over Kekaha Hawaii 4-21-2013 +2013-04-21,42.3583333,-71.0602778,Boston,MA,fireball,1.5,Glowing neon green ball... Falling very fast and perfectly vertical over Boston. +2013-04-21,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,15,Big bright light appears and shoots straight down towards the ground. +2013-04-21,44.7438889,-94.7152778,Hector,MN,rectangle,1800,Blue light coming from sky, saw a pitch black rectangle unknown gliding to the right and back in the sky +2013-04-21,43.0302778,-83.1661111,Attica,MI,oval,2700,Two objects stationary in sky with multi-colored blinking lights. ((NUFORC Note: Possible twinkling stars?? PD)) +2014-04-21,34.6086111,-98.39,Lawton,OK,circle,120,I went outside to my backyard to see what the weather was like. There was allot of clouds in the sky, when I notice way up a black roun +2014-04-21,28.0777778,-82.7638889,Palm Harbor,FL,light,3600,Neon green blinking lights in only our tree. +2014-04-21,33.7205556,-116.2147222,Indio,CA,fireball,900,Orange ball of light. +2014-04-21,33.8025,-85.1886111,Buchanan,GA,changing,900,Multiple lights seemingly interacting. +2014-04-21,40.9627778,-74.1333333,Glen Rock,NJ,triangle,900,Looked up and saw one object hovering then a second but had white likes then a third joined them which had a green light. +2014-04-21,46.8202778,-94.5161111,Backus,MN,cigar,60,Large brilliant white cigar shaped craft moving from north to south in the sky. +2014-04-21,33.865,-84.3366667,North Atlanta,GA,light,15,Bright light that went from stationary to slow moving, with light extinguishing in a few seconds. No nav lights, no sound. +2014-04-21,37.0208333,-93.2058333,Ozark (5 Miles South Of),MO,triangle,120,Colorful Green, Blue, and Red lights, so bright with color in a trianglular shape. +2014-04-21,37.3769444,-77.5061111,Chesterfield,VA,unknown,1800,Object with blinking lights hovering in the sky. ((NUFORC Note: We suspect a sighting of a "twinkling" star. PD)) +1944-04-02,34.4047222,-103.2047222,Clovis,NM,disk,90,Saw UFO in 1944 over an airbase in New Mexico, not very far from, Roswell. +1974-04-02,33.5205556,-86.8025,Birmingham (Wisteria Dr., .5 Mi Down),AL,disk,180,I vehemently did not believe the sightings of 1974 Spring in Birmingham, seems they appeared purposely so that I would believe, 3 craft +1979-04-02,40.5686111,-75.095,West Milford,NJ,disk,60,Saw hovering near ground on side of highway huge saucer shape UFO. +1992-04-02,36.5663889,-121.9455556,Pebble Beach,CA,light,20,A green light was iluminating the ocean as we drove past-suddenly, a white light came out of the water and straight for our car. The li +1997-04-02,37.6805556,-92.6636111,Lebanon,MO,sphere,2,A giant red ball of light( about 5 time the size hale-bopp was)flew across the sky at well over 1000MPH. +1998-04-02,34.3916667,-118.5416667,Santa Clarita,CA,fireball,300,Hovering above a hill, then it went behind the hill and went straight up into the sky. +1998-04-02,30.2669444,-97.7427778,Austin,TX,flash,2100,1 to 3 objects moved in sky flashing blue , green, red then blue again +1998-04-02,40.1027778,-84.6330556,Greenville,OH,other,4,Was walking dog, noticed in eastern sky 2 crescent shaped objects. flying side by side , with the right one slightly ahead. +1999-04-02,35.0808333,-106.3875,Tijeras (South Of),NM,sphere,20,Very bright amber sphere traveled just above tree top level. Size of dime @ arms length. Object 50 - 300 yds away. Observed by myself & +1999-04-02,31.5602778,-91.4030556,Natchez,MS,triangle,10,Two lightly orange glowing triangle objects +1999-04-02,44.9483333,-93.3477778,St. Louis Park,MN,egg,180,Basketball size object,metallic,flying down street than into a park. +2000-04-02,39.7683333,-86.1580556,Indianapolis,IN,triangle,120,UFO chased me +2000-04-02,41.2125,-92.4352778,Fremont,IA,unknown,15,I had an encounter with a creature who was doing a Reptilain Hosting or demonic possession of my exwife. +2000-04-02,64.8377778,-147.7163889,Fairbanks,AK,oval,30,Rolling oval, tumbling through the sky. Every rotation, half of the object appeared to be extremely shiny and reflecting sun light. No +2001-04-02,42.085,-76.0541667,Vestal,NY,light,10,A large, green ball of light streaked across the sky, and looked if it were going to crash into the ground +2001-04-02,34.5033333,-82.6502778,Anderson,SC,light,420,Pinprick of blue-white light seen from the interstate that blurred in almost a digital fashion , seen early in the morning. +2001-04-02,38.9952778,-110.1611111,Green River (40 Miles West Of),UT,triangle,30,Aurora contrail,with 2 triangular objects in the sky,where found in the picture by a friend +2002-04-02,35.2333333,-106.6638889,Rio Rancho,NM,light,10,It covered half the sky in just three seconds, stopped, did a half circle and faded to nothing. +2002-04-02,35.4866667,-80.8602778,Cornelius,NC,triangle,6,amber triangles night time sighting with aircraft +2002-04-02,44.0463889,-123.0208333,Springfield,OR,unknown,180,clear night, but not body, rotating lights, not fixed and not a plane or any know air craft. +2002-04-02,41.2080556,-121.1541667,Lookout,CA,circle,1800,It was above the cemetary, you could see the circular shape of it and it was spinning. There were white and blue lights on it they woul +2002-04-02,38.9783333,-76.4925,Annapolis,MD,other,45,While on my balcony, I watched flights, some local, some commercial. Thje sky was slightly overcast with high haze, moving west to east +2002-04-02,42.8741667,-77.2883333,Canandaigua,NY,light,300,Light in the ski like a star hovering +2003-04-02,40.5677778,-84.1936111,Wapakoneta,OH,light,180,bright light moving through the sky, then rapidly faded away. +2003-04-02,40.2013889,-77.1891667,Carlisle,PA,triangle,45,triangular Shaped craft light in each corner seen on 4/2/03 Carlisle PA time 2145 +2004-04-02,47.6816667,-122.2075,Kirkland,WA,light,5400,Objects that look like flying stars. +2004-04-02,42.4030556,-86.2736111,South Haven,MI,sphere,480,12:03pm, exact. I arrive at Barrington Shores off blue star highway in south haven Michigan. I have lived here for 3 years during the s +2004-04-02,34.0522222,-118.2427778,Los Angeles,CA,disk,2700,Silver, metallic disc-shaped craft seen over Venice Veach, CA. Craft slowly tumbled over the area for perhaps an hour or longer. I pers +2004-04-02,38.0872222,-102.6202778,Lamar,CO,disk,10,First let me say I am a police officer in the Metro-Denver area and have been for 26 yrs. My wife and I were at John Martin State Park. +2004-04-02,36.0102778,-84.2697222,Oak Ridge,TN,fireball,7,Shooting star? Thats what I thought until.... +2004-04-02,39.5297222,-119.8127778,Reno,NV,light,900,Orange pulsating light that faded out and was gone +2005-04-02,33.4483333,-112.0733333,Phoenix,AZ,triangle,10,Dimly lit triangle crossed sky at high rate of speed +2005-04-02,36.8252778,-119.7019444,Clovis,CA,unknown,6,It was between 4:00 and 4:30 in the morning and I was laying in the back of my dad's truck smoking a cigarette and looking at the stars +2005-04-02,36.0583333,-90.4972222,Paragould,AR,flash,240,I was standing out side with my dog and caught a light flashing on the eastern sky in the distance.a red flashing light it darted side +2005-04-02,42.7652778,-71.4680556,Nashua,NH,sphere,2,basket ball shuting up from the ground +2005-04-02,45.4208333,-122.6694444,Lake Oswego,OR,changing,120,Dark, squarish non-aerodynamic object floating at high altitude from south to north. +2005-04-02,39.6294444,-79.9561111,Morgantown,WV,circle,900,lookes like a star at first, then it was moving...as it was moving it diment +2005-04-02,32.0833333,-81.1,Savannah,GA,circle,5,Circular object at very high altitude,appeared as bright star moving from ne to sw, slowed almost to a stop, and then a very bright ext +2005-04-02,41.0813889,-81.5191667,Akron (North Of),OH,flash,5,Bright green flash lights the whole night sky, south of Cleveland +2006-04-02,37.3394444,-121.8938889,San Jose,CA,other,900,flasing red orb almost a deep redish purple kinda like the tail lamp on a police bike. you can get the same effect by taking a clear c +2006-04-02,32.7947222,-116.9616667,El Cajon,CA,circle,300,Circular object with lights flying over el cajon. +2006-04-02,32.9536111,-96.89,Carrollton,TX,light,900,we witnessed odd lights flashing and moving quicky across the sky. Some would even move straight upwards. No plane can move like that. +2006-04-02,25.7738889,-80.1938889,Miami,FL,formation,7200,Strange lights over Miami, FL +2006-04-02,40.6638889,-74.2111111,Elizabeth,NJ,sphere,720,orange spheroid seen flying over elizabeth NJ floating north to south & vanishing after approx 12 minutes +2006-04-02,34.1083333,-117.2888889,San Bernardino,CA,diamond,480,MY SONS, WIFE AND I WERE LOOKING AT THE MOON AND NOTICED A VERY BRIGHT OBJECT THAT APPEARED AT FIRST TO BE A PLANET (IN MY BINOCULARS) +2006-04-02,30.0083333,-97.1591667,Smithville,TX,oval,2,Fast walker object blinks in and out over Texas +2006-04-02,41.3958333,-72.8972222,Hamden,CT,oval,5400,Three hundred fifty objects in the sky with different color lights moving, one disc shaped with on bottom yellow, green, red lights. +2007-04-02,41.1338889,-81.4847222,Cuyahoga Falls,OH,sphere,720,three object moving west over Cuyahoga Falls moving at varied speeds no navigational lights no stobe +2007-04-02,41.2586111,-95.9375,Omaha,NE,circle,60,I saw a semi-circular object with bright yellowish/orange lights that rapidly flew away in Omaha. +2007-04-02,38.3397222,-122.7,Rohnert Park,CA,unknown,30,((HOAX??)) I was coming home when i saw a blue light in the sky i tried to follow it but it was really fast so I went home. +2007-04-02,33.7122222,-84.1052778,Lithonia,GA,circle,120,Orange glowing ball +2007-04-02,36.8527778,-75.9783333,Virginia Beach,VA,disk,60,Small black sphere dancing in Virgina Beach sky +2007-04-02,41.3558333,-82.2538889,South Amherst,OH,cylinder,60,Two backward slanted cylinders flying in a "momma duck" formation. One huge, one smaller (still large in size)in broad daylight +2007-04-02,33.7738889,-117.9405556,Garden Grove,CA,disk,60,Flying object spinning green and white flying south over Garden Grove. Seen by my 11 year old daughter. +2008-04-02,38.9697222,-76.8802778,New Carrollton,MD,triangle,180,Last night I saw something unusual in the night sky, this was not natural by any means it happened very quickly but I saw enough to kn +2008-04-02,35.2386111,-81.0752778,Cramerton,NC,flash,240,Flashing light (multiple colors) in the skys over cramerton and ranlo nc just above the horizon. ((NUFORC Note: Sirius?? PD)) +2008-04-02,38.2541667,-85.7594444,Louisville,KY,sphere,45,orbs out my window came together and flew away +2008-04-02,40.7141667,-74.0063889,New York City (Queens),NY,light,180,Out of ordinary lights in queens +2008-04-02,40.8997222,-83.7269444,Jenera,OH,triangle,300,Rounded triangular object with green lights on the sides and a white blinking light on the back. ((NUFORC Note: Student report. PD)) +2008-04-02,37.9747222,-87.5558333,Evansville,IN,triangle,120,Very dimly lit , low flying , silent triangular object spotted over Evansville, Indiana +2008-04-02,39.2513889,-119.9719444,Incline Village,NV,light,1395,Bright multicolored light. ((NUFORC Note: Sighting of the star, Sirius?? PD)) +2008-04-02,42.0883333,-87.9805556,Arlington Heights,IL,other,600,Soundless Hovering Crafts in Arlington Heights IL +2009-04-02,40.7452778,-73.9058333,Woodside,NY,oval,60,I was standing on the platform of the 7 subway train in Woodside, NY (61st / Woodside stop). I'm about 15 mins by subway from NYC. Th +2009-04-02,39.051944399999996,-82.6366667,Jackson,OH,other,60,Horse shoe shaped UFO, Jackson, Ohio. +2009-04-02,29.7727778,-94.6825,Anahuac,TX,cylinder,2700,On 4-2-09 one picture was taken at 9:30 pm, and another at 10:10 pm with our Moultrie Game Spy D40 Digital game camera, and got this i +2009-04-02,42.2875,-73.3208333,Stockbridge,MA,light,900,Stockbridge UFO-2009 +2010-04-02,33.7455556,-117.8669444,Santa Ana,CA,triangle,600,i was walking to my car to check my tire because i got a slow leak. anyhow, on the way back to the house i notice some flashing in one +2010-04-02,36.3883333,-86.4466667,Gallatin,TN,unknown,5,saw a mass of objects, grouped together in an unorganized formation, very high in the atmosphere, disappear +2010-04-02,45.6388889,-122.6602778,Vancouver,WA,triangle,30,a dark, silent, triangular aircraft crossing the Columbia River disappeared after watchhing it for 30 seconds +2010-04-02,26.2125,-80.25,Tamarac,FL,light,60,My son and I were in my yard when we saw a light traveling at a very high rate of speed, stream across the sky. +2010-04-02,41.8711111,-71.5525,Greenville,RI,formation,300,orange lights over Greenville RI started in formation then disappeared from sky very weird +2010-04-02,33.6633333,-116.3091667,La Quinta,CA,formation,900,Three bright circles of light with centre activity over our heads.15 minutes duration.La Quinta CA +2010-04-02,30.3580556,-90.0655556,Mandeville,LA,light,12,3 lights, pale green in color, traveling from southwest sky +30 deg, heading north in straight line formation. +2010-04-02,42.6072222,-83.9294444,Howell,MI,light,120,Intense red light aura around flying from South to North. Duration 2 minutes before it disappeared. No Sound +2010-04-02,38.8338889,-104.8208333,Colorado Springs,CO,light,180,Flashing rotating lights +2011-04-02,33.1191667,-117.0855556,Escondido,CA,light,300,lights my wife and i see alot +2011-04-02,34.8697222,-111.7602778,Sedona,AZ,light,3600,Circular multi-colored flashing light object flies erratically south to north near Sedona AZ +2011-04-02,42.5083333,-78.6675,Springville,NY,unknown,4,two orange lights moving very fast and turning +2011-04-02,42.1711111,-87.8444444,Deerfield,IL,unknown,60,Weird twinkling light or array of lights flies around, then disappears. +2011-04-02,42.19,-87.9083333,Lincolnshire,IL,triangle,3,Triangular symmetric object flying low in a straight line over North Shore Chicago suburbs. +2011-04-02,33.9136111,-98.4930556,Wichita Falls,TX,cylinder,300,Cylinder shaped craft in Wichita Falls, TX. Faded away... +2011-04-02,27.1188889,-82.4444444,Nokomis,FL,other,120,Bright looked like a fireball then disappeard into the sky Contact me for the picture. +2011-04-02,40.8577778,-74.4263889,Parsippany (West Of),NJ,other,30,It looked like a large gray wreath with small scattered lights, a few miles southwest of Parsippany, NJ 4/2/11. +2012-04-02,36.0688889,-79.4008333,Graham,NC,triangle,15,Strange black triangle flew over my home! +2012-04-02,38.1302778,-121.2713889,Lodi,CA,fireball,4,Fireball/orange like object spotted! Lodi, CA +2012-04-02,40.7141667,-74.0063889,New York City (Queens; Bayside),NY,cigar,3600,Look like with alot of light..one of them moved and disapeared..too long to look like stars also very close… +2012-04-02,47.3811111,-122.2336111,Kent,WA,cigar,180,At approximately 12:20pm 4/02/12 I was driving north up the wa-167 from auburn,wa into Renton,wa and saw 2 cigar/rod shaped objects fly +2012-04-02,21.5580556,-157.8791667,Kahana,HI,fireball,600,Five orange balls over west Maui. +2012-04-02,29.7352778,-94.9772222,Baytown,TX,oval,120,Round and gray +2012-04-02,40.58,-73.8366667,Rockaway Park,NY,cigar,100,I recorded an unknown object while photographing the conjunction of Venus and the Pleiades the evening of April 2, 2012. +2012-04-02,35.7258333,-97.9761111,Okarche,OK,unknown,720,Red and Blue Lights East of Okarche, OK +2012-04-02,41.3080556,-72.9286111,New Haven (East Rock Area; Facing W),CT,cross,720,From the east rock area on the 2nd floor, one could see a ovalish type group of very bright white lights +2012-04-02,42.0347222,-93.6197222,Ames,IA,light,240,One white with blue light then two more same flight plan over Ames IA. +2012-04-02,38.9016667,-107.9258333,Cedaredge,CO,cigar,5,Bright white object traveling for aprox 3 seconds east to west in northern sky--object "flashed/sparked" a bright green & disappeared +2012-04-02,38.005,-121.8047222,Antioch,CA,fireball,1200,We really do not know what it was we do not drink or do drugs but we know we saw something in the sky +2012-04-02,19.6455556,-154.9877778,Haena,HI,fireball,240,Saw Bright lights in sky over ocean, then two fireballs flying high in sky for few minutes. They were flying at fast speed towards Nap +2012-04-02,36.1344444,-80.6597222,Yadkinville,NC,unknown,1800,Bright slow moving light. +2012-04-02,37.9886111,-84.4777778,Lexington,KY,triangle,60,Triangle shaped craft over lexington ky +2013-04-02,35.9130556,-79.0561111,Chapel Hill,NC,triangle,180,Dark Triangle with red lights flying close to ground. Made abrupt turn. Made no sound. +2013-04-02,36.6177778,-121.9155556,Pacific Grove,CA,other,240,Bright Orange Sphere Seen At Night Over Calif. Coast Line. +2013-04-02,27.7705556,-82.6794444,Saint Petersburg,FL,oval,30,Transparent lens moving across the sky in St. Petersburg, FL +2013-04-02,35.7444444,-109.0758333,Fort Defiance (Navajo Nation),AZ,oval,20,"It felt like my heart was going to jump out of my chest!" +2013-04-02,45.9172222,-89.2441667,Eagle River,WI,light,4,Sphere of light with black ring in the middle falling from the sky over the lake. +2013-04-02,36.7477778,-119.7713889,Fresno,CA,light,10,Blue orange red dots very bright. +2014-04-02,43.1161111,-75.4041667,Westmoreland,NY,disk,120,((HOAX)) Followed by men in black. +2014-04-02,44.5191667,-88.0197222,Green Bay,WI,circle,180,2 lights moving same speed , one behind the other vanish same time in clear sky. +2014-04-02,38.8338889,-104.8208333,Colorado Springs,CO,light,90,Bright light above my house. +2014-04-02,26.3180556,-80.1,Deerfield Beach,FL,oval,60,I was looking toward the east over the Atlantic Ocean when I seen this round like it went from unbelievably fast motion straight down s +2014-04-02,35.615,-87.0352778,Columbia,TN,triangle,7200,4 witnesses as sky goes insane. +2014-04-02,60.5544444,-151.2583333,Kenai,AK,oval,60,Bright white oval seemed to come out of nowhere and hovered silently towards the mount Redoubt area +2014-04-02,42.0775,-73.9533333,Saugerties,NY,circle,600,Saw a white circle in the sky with what looked like a black dot in the side of it moved slowly in a straight line until it was gone. +2014-04-02,39.5297222,-119.8127778,Reno,NV,circle,3000,Bright cicularobject/light moving slowly in center of sky, then slowly eastward +2014-04-02,41.6894444,-70.1569444,South Dennis,MA,unknown,1200,Large "thing" at tree top level over power lines emitting rays of light from many openings/windows, glowing, red & yellow. +2014-04-02,47.8211111,-122.3138889,Lynnwood,WA,fireball,10,Large Orange ball apeared in sky above houses and trees, then slowly fell below tree line, mimicking a falling star +2014-04-02,43.2080556,-71.5380556,Concord,NH,triangle,240,8:50 last night in a northeast direction a triangle shape craft passed overhead. watched it, it banked to the left headed in a northwes +2014-04-02,27.1675,-80.2663889,Palm City,FL,disk,180,Orange disc flying past moon. +2014-04-02,37.5536111,-77.4605556,Richmond,VA,changing,20,Flying reddish &quot;V&quot; shape w/ moving lights over Richmond, Va. +1967-04-22,42.14,-77.0311111,Gibson,NY,oval,180,aerodynamics-defying object sighted +1987-04-22,42.2711111,-89.0938889,Rockford,IL,sphere,900,Huge Orange Shaped sphere hovering about the ground about 3 feet. +1997-04-22,42.2625,-71.8027778,Worcester,MA,egg,30,It was a bright white/Yellow light, moving at an incredible speed. Too fast for any plane Went from west to East, The White light woul +1997-04-22,47.6588889,-117.425,Spokane,WA,light,1200,Large bright red light, size of Venus at its brightest, observed over Spokane, Wa. at 1:00 a.m. on April 22, for about 20 minutes. Appe +1998-04-22,28.0833333,-80.6083333,Melbourne (Looking In The Se Sky, Perhaps Over Bahama),FL,light,10,I saw an object which I thought was a bright planet (I see every morning as I deliver newspapers). Instantly realizing the object was t +1998-04-22,44.715,-67.4619444,Machias,ME,light,600,Intergalactic Fisherman +1998-04-22,31.5544444,-110.3030556,Sierra Vista,AZ,light,10800,We saw two large lights in the sky against the mountain over Fort Huachuca. One was red and flashed one was white. +1998-04-22,48.5344444,-123.0158333,Friday Harbor,WA,fireball,2,On April 22 1998 I was sitting in my front room by a south-facing window a little before 9:30. I was alone as it was a Wednesday and my +1998-04-22,45.5236111,-122.675,Portland (Southeast),OR,sphere,6,I work graveyard and was just pulling into the parking lot when I saw a bright green glowing ball in the sky over my work place. It wa +1998-04-22,47.9130556,-122.0969444,Snohomish,WA,oval,40,Intense white oval, stationary at first, became orange blue haloed, then flashing across horizon, stopped again, flashed and vanished. +1998-04-22,47.2152778,-123.0994444,Shelton,WA,circle,3,I was Parked at a stoplight, a light just above the horizon caught my eye. A large, round, glowing object passed directly in front of +1998-04-22,47.2647222,-122.2488889,Pacific,WA,light,4,Saw one blue-green lite pass south-west under Sea-Tac fligh trafic. +1998-04-22,47.3225,-122.3113889,Federal Way (3 Miles North Of),WA,light,3,Going north on I-5 about 3 miles past federal way Seen a green light traveling west to about north west until it disappeared behind t +1998-04-22,46.6022222,-120.5047222,Yakima,WA,circle,3,A strong light, a blue object, no noise, traveling south to north. +1998-04-22,34.7694444,-92.2669444,North Little Rock,AR,light,180,Blink of white light, 6 times about 30 seconds apart, stationary very very high is sky +1998-04-22,39.5297222,-119.8127778,Reno,NV,unknown,120,We were driving down the road late at night when we saw a neon green light shoot across the sky and then it stopped on a dime. It hover +1999-04-22,41.8458333,-71.0833333,Berkley,MA,fireball,5,pale orange color fireball type object with long tail seen heading due east looking at northern part of sky, disappeared behind thin cl +1999-04-22,42.3211111,-85.1797222,Battle Creek (Three Rivers Event, Near Event 1),MI,unknown,3600,On the morning of April 24, 1999 my wife and myself were driving to Battle Creek MI,our rout took us through our home town of Three Riv +1999-04-22,37.1544444,-90.6955556,Piedmont,MO,circle,300,Small bright orange object that appeared and disappeared at random. +1999-04-22,40.5891667,-80.2252778,Ambridge,PA,rectangle,9,I was talking to my neighbors when I saw a silvery white line in the sky. It moved slowly acrossed the sky then it just zipped away. +1999-04-22,35.0844444,-106.6505556,Albuquerque,NM,fireball,4,A red & green light streaked across the sky, south of Osuna, from East to West then dissappeared. +1999-04-22,35.0844444,-106.6505556,Albuquerque,NM,triangle,30,I was looking out the east facing window of my bedroom when I noticed three dim amber colored lights that seemingly appeared out of now +2000-04-22,44.0886111,-87.6575,Manitowoc,WI,light,35,Lights traveling in a north-northeast direction +2000-04-22,40.1447222,-84.2425,Piqua,OH,unknown,300,It was covered with a misty glare. +2000-04-22,38.2080556,-91.1602778,Sullivan,MO,cigar,120,Driving East on I44 saw object moving very slowly against broken clouds in view 2 min then disappeared. +2000-04-22,33.5205556,-86.8025,Birmingham,AL,changing,1800,A bright objeck was seen in the Southwestern sky, about 22:00 hrs. I had just gone onto my back porch when I saw the object. I Thought +2000-04-22,41.7316667,-92.2977778,Victor,IA,fireball,5,I was outside, it was partially overcast. Object passed over me from west to east, first saw the object straight above me. Object sped +2000-04-22,30.2263889,-93.2172222,Lake Charles,LA,triangle,600,My girlfrind and myself were out stargazing when i noticed 3 trianular shaped craft slowly moving north in the sky she also saw the sam +2001-04-22,32.7252778,-97.3205556,Fort Worth,TX,other,240,Ring-shaped object with lights around the outside flying over Fort Worth. +2001-04-22,42.9133333,-85.7052778,Wyoming,MI,disk,180,I was looking east at the Lyrid meteor shower,when 3 virtical disk shaped objects silently moved overhead. They seemed to be in a loose +2001-04-22,41.6375,-70.9041667,Fairhaven,MA,sphere,300,Unknown brilliant spheres baffles Massachussetts teacher +2001-04-22,39.1141667,-94.6272222,Kansas City,KS,circle,120,Globe like the moon, but in the wrong place and at the wrong time of the month. +2001-04-22,38.4191667,-82.4452778,Huntington,WV,triangle,120,30 foot triangle shaped, constant humming, static electric which made face and arms tingle, disapeared toward the west. +2002-04-22,33.1191667,-117.0855556,Escondido,CA,circle,15,IT APPEARED OUT OF NOWHERE AND TOOK OFF AT INCREDIBLE SPEED! +2002-04-22,41.6736111,-88.0016667,Lemont,IL,fireball,600,big fire balls 20ft tall and 30ft wide. when they left they left burn marks. +2002-04-22,35.8208333,-87.25,Primm Springs,TN,light,3,Myself and two witnesses observed a light, not a meteor, moving at low altitude across the sky; its duration was no more than three sec +2002-04-22,35.4013889,-93.1141667,Dover,AR,flash,1500,there were 4 objects first two were flashing three times per second high alt.the trailing one caught the leader at a very high speed a +2002-04-22,47.9791667,-122.2008333,Everett,WA,triangle,15,Three triangler shaped crafts flying in formation over Everett WA. +2003-04-22,45.0097222,-93.3488889,Golden Valley,MN,fireball,2,Vivid green fireball +2003-04-22,48.7597222,-122.4869444,Bellingham,WA,light,480,Very bright light at first, then a small sleek craft that disappeared a little while after the lights were out. It's been back once. +2003-04-22,29.6513889,-82.325,Gainesville,FL,cigar,360,Elongated, orange object traveling south +2003-04-22,47.0380556,-122.8994444,Olympia,WA,diamond,900,Diamond Shape light with beams over Capital Forest in Olympia, WA across from Mud Bay +2004-04-22,40.8372222,-81.2597222,Louisville,OH,unknown,1200,Woke up by extreme bright light - object had red, yellow, green, and blue lights moved in a circular motion. Followed electrical towers +2004-04-22,28.7027778,-81.3386111,Longwood,FL,cigar,600,Long Cigar Shaped UFO Slowly Spinning in Central Florida April 2004 +2004-04-23,32.7833333,-96.8,Dallas,TX,triangle,900,Black, Triangle, Shadow looking object, hoovering in Downtown Dallas buildings +2005-04-22,25.7902778,-80.1302778,Miami Beach,FL,rectangle,60,I saw 4 spheres circleing in a very tight formation and 2 rectangle UFO's very high above them stationary. +2005-04-22,29.3480556,-95.0158333,Hitchcock,TX,light,120,Strange Lights In the Texas Sky +2005-04-22,30.2275,-85.025,Orange County (Location Unspecified),FL,other,5,GEORGIA UFO GROUP Report/Tom Sheets: Joint Investigation-Central Florida UFO Group/Georgia UFO Group--Glowing Light and Dark Object +2006-04-22,39.1927778,-76.7244444,Hanover,MD,disk,30,we were celebrating my 35th birthday, (having a cookout) and at about 5 PM Eastern Time, myself and 2 other people witnessed a "disk" m +2006-04-22,48.0152778,-122.0625,Lake Stevens,WA,unknown,120,Daylight object, too small to be commercial aircraft at altitude, moved slowly west, paused, moved further west, then south. +2006-04-22,33.9022222,-118.0808333,Norwalk,CA,light,900,A bright, red, occasionally blinking object in the northeastern sky observed for about 15 minutes. +2006-04-22,33.9791667,-118.0319444,Whittier,CA,fireball,1200,We saw a bright red fireball like object that appeared to be too high to possibly be any earthling made air craft. The object appeared +2006-04-22,35.6008333,-82.5541667,Asheville,NC,unknown,120,2 UFO sightings in my area in the last week! +2006-04-22,44.0463889,-123.0208333,Springfield,OR,light,600,looked like jupiter then began to fly eratically actross the sky from south to north +2006-04-22,33.3488889,-96.5483333,Anna,TX,triangle,10,dark triangle no lights or sound +2006-04-22,38.2966667,-85.76,Clarksville,IN,fireball,1200,Fireball floating in a circle patteren also making figure"8"s slowly then speeding up out of sight +2006-04-22,39.2180556,-93.0688889,Slater,MO,light,120,Very bright light traveling slowly from West to East then shooting straight upward +2006-04-22,47.4830556,-122.2158333,Renton,WA,light,5,driving home around 10ish. I looked up into the sky and saw a bright light hovering. Just as quickly as I saw it, it flew away at a t +2006-04-22,35.8225,-105.9161111,Chupadero,NM,disk,1200,2 bright lights chase each other within an illuminated cloud for 20 minutes north of santa fe, new mexico +2006-04-22,35.1427778,-120.6402778,Pismo Beach,CA,light,360,Strange lights in the sky above Pismo Beach +2007-04-22,35.2269444,-80.8433333,Charlotte,NC,fireball,1,I thought it was a firework at first...then I realized it was too big and way too fast. We live about 15 miles from airport....this wa +2007-04-22,28.7027778,-81.3386111,Longwood,FL,oval,450,3 craft come 500 ft above us +2007-04-22,32.4313889,-80.67,Beaufort,SC,cigar,60,It happened a day after an airplane crash and it was very long and thin with points on either end very brillantly white, maybe glowed. +2007-04-22,42.2625,-71.8027778,Worcester,MA,diamond,60,Diamond shape object slowly flying over Worcester skies and then disappearing +2007-04-22,40.7141667,-74.0063889,New York City (Central Park),NY,light,60,star like object above Central park +2007-04-22,42.7480556,-71.8547222,New Ipswich,NH,rectangle,180,((HOAX??)) A loud vibrating sound and a low flying well lit, slow moving craft. +2007-04-22,46.4477778,-120.4191667,Wapato,WA,formation,1020,unkown formations seen in mid-day +2007-04-22,47.6816667,-122.2075,Kirkland,WA,disk,180,We saw a disk slowly rotating from end to end across the skyline. +2007-04-22,47.8627778,-121.8152778,Sultan,WA,triangle,600,The triangular object had red and white blinking lights. +2007-04-22,44.0216667,-92.4697222,Rochester,MN,rectangle,120,strip of lights seen above neighborhood +2007-04-22,30.7744444,-85.8516667,Westville,FL,triangle,7,It had four greenish-blue, dim lights on the bottom; one in the middle towards the rear and one at each corner. +2007-04-22,33.0461111,-96.9938889,Lewisville,TX,triangle,30,Whitle lights, silent, fast-moving craft. +2008-04-22,42.1102778,-88.0341667,Palatine,IL,egg,900,I saw an egg shped flying saucer in the sky at midnight, it was glowing in a green color. It flew so close to my house, I could see ali +2008-04-22,36.3319444,-94.1183333,Rogers,AR,circle,120,the object had brown and yellow glowing lights +2008-04-22,29.0255556,-80.9272222,New Smyrna Beach,FL,sphere,900,Spherical object shot around the sky with agaility and ease over the New Smyrna Beach area. +2008-04-22,34.0522222,-118.2427778,Los Angeles,CA,disk,1800,close circle of bright lights that changed into one bright light as it turned and changed into a red light as it hovered (only one) +2008-04-22,40.1052778,-85.6802778,Anderson,IN,other,120,multy colored light over anderson,indiana +2008-04-22,37.3636111,-79.29,Forest,VA,cross,60,It was swirling around in the sky, then changed from a blue color to a yellow and gained a great ammount of speed. +2008-04-22,34.1347222,-116.3122222,Joshua Tree,CA,circle,30,It is round and stays for about 30 seconds and then leaves, then itll come back a second time. +2008-04-22,28.0183333,-82.1130556,Plant City,FL,unknown,120,The black object flew at a constant speed, high altitude, in an uncommon & constantly changing flight path then vanished instantly. +2008-04-22,38.4219444,-77.4086111,Stafford,VA,sphere,900,extremely large object hovering over the tree tops, then vanished w/o a trace +2008-04-22,42.1669444,-76.8208333,Horseheads,NY,circle,9000,THERE WAS 1 CRAFT, HOVERED FOR 2.5HRS IN ONE PLACE OVER HEAD. LIGHTS GOING AROUND, COLORS RED, WHITE, GREEN,GOING. THE CRAFT MOVE VERY +2008-04-22,34.0194444,-118.4902778,Santa Monica,CA,triangle,60,7-9 lights take a V Shape Formation as they glide in Total Silence - in Santa Monica +2008-04-22,32.7233333,-99.2969444,Albany,TX,fireball,20,Big blue and red fireball. +2008-04-22,30.8205556,-88.0705556,Saraland,AL,egg,180,We saw a bright egg shaped craft after work. +2008-04-22,31.7147222,-83.2527778,Fitzgerald,GA,fireball,6300,We both saw a very bright light that drew our attention from what we were doing. The light startled us both. +2009-04-22,33.7669444,-118.1883333,Long Beach,CA,light,1500,I know of no object that could do it. +2009-04-22,42.0527778,-124.2827778,Brookings,OR,light,180,Wendsdayᅆᄹ 5:38 AM, Ufo +2009-04-22,39.8494444,-75.3561111,West Chester,PA,cigar,5,My last sighting was not a hoax. +2009-04-22,39.8494444,-75.3561111,West Chester,PA,cigar,5,Large grey cigar shaped object. +2009-04-22,37.8402778,-85.9491667,Radcliff,KY,changing,1800,Bright orange lights were seen, at one point forming a triangle in the sky. +2009-04-22,42.1666667,-83.7816667,Saline,MI,light,120,4/22/09 Point of light in sky that made 90 degree turn +2009-04-22,40.0063889,-75.7036111,Downingtown,PA,fireball,4,buring ball, over chester county pa +2009-04-22,41.6416667,-85.4166667,Lagrange,IN,triangle,10,Triangular fast mover +2010-04-22,40.6883333,-75.2211111,Easton,PA,light,12,Fast moving blue dot over Delaware River near Easton, PA +2010-04-22,42.9363889,-71.0538889,Kingston,NH,sphere,10,Large white orb hovering in the sky. +2010-04-22,30.4941667,-92.4175,Eunice,LA,circle,3600,Well my family went out shopping and when they came back they ran inside saying there is a ufo! I went outside to look it wasen't there +2010-04-22,34.0966667,-117.7188889,Claremont,CA,unknown,180,Sighting of 12 bright, shiny objects darting about late afternoon eastern sky. +2010-04-22,32.4313889,-80.67,Beaufort,SC,circle,360,2 Black circles moving in a straight line. +2010-04-22,34.4208333,-119.6972222,Santa Barbara,CA,chevron,15,Large Chevron shaped craft and bright Orbs over Santa Barbara, CA. +2010-04-22,41.6508333,-73.7633333,Lagrangeville,NY,cigar,300,Object with bright pulsating white lights seen on skidmore road in Lagrange +2010-04-22,34.4208333,-119.6972222,Santa Barbara,CA,light,1800,Sighting of orbs after report of large boomerang shaped craft. +2011-04-22,36.8525,-121.4005556,Hollister,CA,rectangle,25,Square craft, 4 orange lights with 1 flashing light in center. ((NUFORC Note: Report from former Air Traffic Controller. PD)) +2011-04-22,40.0883333,-91.2836111,Mendon,IL,light,2220,My friends an I were walking by a graveyard in Mendon, Illinois when one of us noticed a white light with a purple halo-like ring aroun +2011-04-22,38.3030556,-77.4608333,Fredericksburg,VA,unknown,120,way to big to be a chopper ,about 1000 yds away,twice as high as the trees,we all saw it +2011-04-22,39.7391667,-104.9841667,Denver (West Of),CO,other,1800,large bright flashing object with pertruding light ray underneath west of denver travelling south west. +2011-04-22,39.0483333,-95.6777778,Topeka,KS,fireball,3,Bright, fast moving object over my head became even brighter before blinking out +2011-04-22,35.1555556,-89.7761111,Cordova,TN,other,120,Silent grey triangular shaped craft sighted moving slowly above a quiet neighborhood +2011-04-22,42.5358333,-113.7919444,Burley,ID,light,180,Mystery disc seen from 50 or less feet away zooms off!! +2012-04-22,32.7252778,-97.3205556,Fort Worth,TX,chevron,15,Large grey UFO flies with no sound +2012-04-22,45.6388889,-122.6602778,Vancouver,WA,oval,480,Five red glowing oval lights hovering and slowly moving +2012-04-22,37.1041667,-119.3166667,Shaver Lake,CA,fireball,7,Bright light in the sky over Shaver Lake CA +2012-04-22,46.6022222,-120.5047222,Yakima,WA,fireball,20,Big loud flare sound then flash of light as a fireball shooting across the sky sound of a fading flare. +2012-04-22,35.0844444,-106.6505556,Albuquerque,NM,rectangle,2700,White Circular object seen over Albuquerque, NM +2012-04-22,32.7152778,-117.1563889,San Diego,CA,light,1200,40 bright objects, yellow/red lights, rose one at a time from the horizon over La Jolla, California. +2012-04-22,45.6388889,-122.6602778,Vancouver,WA,fireball,300,((HOAX??)) One howering craft splits in to two and flyes away. +2012-04-22,32.975,-96.3322222,Royse City,TX,formation,600,Two reddish/orange lights seen moving slowly and stopping outright on the horizon. +2012-04-22,41.3647222,-87.4411111,Cedar Lake,IN,light,2631600,I have seen the same object in the sky for the past month. It always appears around 21:00pm and usually stays there until 23:00. It mov +2012-04-22,34.0233333,-84.6155556,Kennesaw,GA,circle,900,Bright orange light began moving and flashing +2012-04-22,26.7052778,-80.0366667,West Palm Beach,FL,sphere,600,Bright pulsating Orange/Red light vanishing and re-appearing for a few minutes. +2012-04-22,40.2013889,-77.1891667,Carlisle,PA,sphere,3,Fast moving blue ball of light +2012-04-22,47.9791667,-122.2008333,Everett,WA,triangle,4,Swiftly moving triangle with brighter lights at all three corners, plus one in the center. +2012-04-22,43.1330556,-115.6902778,Mountain Home,ID,flash,3,Looked like camera flash but in the sky +2012-04-22,44.0805556,-103.2305556,Rapid City,SD,other,7,WE SAW A V SHAPED, DULL GRAY, ALMOST TRANSPARENT, OBJECT SILENTLY GLIDING THROUGH THE SKY AT A HIGH RATE OF SPEED. +2012-04-22,39.1458333,-121.5902778,Marysville,CA,light,60,Orbital Light moving in unusual pattern +2013-04-22,40.015,-105.27,Boulder,CO,disk,300,Rotating disc with blinking colored lights seen flying along ridge in north Boulder, followed by quickly moving lights on the ground. +2013-04-22,33.4483333,-112.0733333,Phoenix,AZ,sphere,6,Flying sphere passes by American Airlines flight 1367 on final approach to Phoenix. +2013-04-22,44.9430556,-123.0338889,Salem,OR,cigar,2,Greenish blue object with white tail sighted in salem, oregon. +2013-04-22,38.4088889,-121.3705556,Elk Grove,CA,cigar,7200,A long bodied object hovered in the air over Elk Grove, too high in the sky to be a chopper. The object moved. ((Star??)) +2013-04-22,33.2938889,-111.0955556,Superior,AZ,fireball,1800,Fireballs appearing across the sky disappearing with jets circling the objects. Jets very low. +2013-04-22,35.1494444,-90.0488889,Memphis,TN,diamond,7200,40 to 50 objects hovering over memphis tennessee +2013-04-22,42.0883333,-87.9805556,Arlington Heights,IL,formation,600,Formation of three orange/red orbs, followed by another orb several minutes later pass overhead. +2013-04-22,44.6216667,-123.9372222,Toledo,OR,light,1800,A large rotating UFO over the coast of Oregon with smaller orb like lights +2013-04-22,21.9811111,-159.3711111,Lihue,HI,light,180,Falling fading lights +2013-04-22,42.9633333,-85.6680556,Grand Rapids,MI,other,5400,Multiple orange lights +2013-04-22,30.3758333,-89.7483333,Pearl River,LA,diamond,120,Pearl River, La fast moving, SILENT, imperfect circular object, 1 bright light in front surrounded by green/yellow soaring low in sky. +2014-04-22,38.3566667,-121.9866667,Vacaville,CA,light,180,Large purple light attached to a few smaller green lights that hovered in the air and disappeared. +2014-04-22,33.1191667,-117.0855556,Escondido,CA,formation,600,Driving S on I-15 @ 530 am. Saw lights appear on my left. First, 2 then several began appearing and vanishing. +2014-04-22,26.9338889,-80.0944444,Jupiter,FL,fireball,600,Slow moving, silent orange lights. +2014-04-22,35.1494444,-90.0488889,Memphis,TN,light,120,Orange lights fairly bright changed to white with a clear slightly oval circle around them and rapidly picked up speed. +2014-04-22,39.5094444,-76.1644444,Aberdeen,MD,disk,1800,Staring out my window across the Susquehanna River I see a humongous object with 4 lights. I looked through my binoculars. +2014-04-22,25.7902778,-80.1302778,Miami Beach,FL,disk,15,Object was an orbital light neon green that flew parallel to beach for appx.quarter of mile then disappeared. +2014-04-22,36.2138889,-83.295,Morristown,TN,triangle,180,UFO, 3 larger lights form triangle, 1 smaller dim light on top, all non flashing, fast/silent flight, military jet in pursuit (slower). +2014-04-22,35.4305556,-82.5013889,Fletcher,NC,triangle,20,Triangular craft with lights on each vertice spotted silently hovering 30-40 feet above a field off I-26 East at exit 54 in Fletcher. +2014-04-22,40.5152778,-107.5458333,Craig,CO,light,6,Two craft moving in circular motion around each other. One craft disapered. The other stoped and dimmed (still brighter than stars). +2014-04-22,41.5627778,-83.6538889,Maumee,OH,circle,6,Distant dot of light crossed night sky from west to east in 5 or 6 seconds, too slow for meteor, far too fast for jet. +2014-04-22,37.9272222,-81.6236111,Twilight,WV,sphere,60,Bright objects moving in sky. +2014-04-22,40.0108333,-89.2822222,Mount Pulaski,IL,sphere,30,Bright light appeared behind my car on an empty road, followed for a few seconds and disappeared into the air. +2014-04-22,33.3763889,-117.2502778,Fallbrook,CA,fireball,15,4 fireballs in the sky, hovering. +1974-04-23,47.2361111,-117.3688889,Rosalia,WA,chevron,90,UFO seen near Rosalia, WA in the early 1970s. Shape of UFO disputed. Not disputed are three eerie green chevron shaped bow shockwaves +1974-04-23,29.7630556,-95.3630556,Houston,TX,light,7,Satellite that behaved very unsatellitish. ((NUFORC Note: Report from aviation mechanic. PD)) +1975-04-23,39.6894444,-84.1688889,Kettering,OH,disk,5400,multi coloured disc landed in kettering ohio +1981-04-23,43.3044444,-70.9761111,Rochester,NH,unknown,30,I saw a shooting star that stopped: lights of red, blue, green began flickering and it lowered down below treeline, then darkness. +1983-04-23,44.0247222,-88.5425,Oshkosh,WI,triangle,900,Same Triangular Shape Seen Back in 1983. +1983-04-23,44.0247222,-88.5425,Oshkosh,WI,triangle,600,Triangular Object in 1983 exactly like one reported here May 2003 from Kirkland, WA +1984-04-23,42.9316667,-76.5663889,Auburn,NY,triangle,10,5:30 AM PAPERGIRL WITNESSES HUGE, SILENT, GRAY, LOW OBJECT OVER HOUSE TOP ROOFS ON CITY ST. +1987-04-23,47.6741667,-122.1202778,Redmond,WA,cigar,300,orange blimp in night sky, redmond Wa +1989-04-23,48.1172222,-122.7591667,Port Townsend (10 Nm So.),WA,cigar,300,Sighted WW II barrage balloon at 1500' AGL (no lights) which accelerated rapidly as I approached in my light aircraft. +1995-04-23,40.0638889,-80.7211111,Wheeling,WV,light,600,Was out in backyard stargazing I guess you could say, when I notice what looked like a bright star, and that's what I thought it was to +1997-04-23,34.3580556,-86.2947222,Guntersville,AL,oval,120,new glass like craft seen +1997-04-23,29.7630556,-95.3630556,Houston,TX,triangle,1200,Stationary hourglass-shaped object that appeared to be made of glass +1997-04-23,28.5380556,-81.3794444,Orlando,FL,light,50,bright light travelling east to west veryhigh in the sky similar to headlights comingthrough fog then disappeared suddenly +1998-04-23,42.4527778,-75.0641667,Oneonta,NY,light,240,2 Unidentified Objects seen over Mountain +1998-04-23,43.1116667,-88.4991667,Oconomowoc,WI,light,600,A LARGE BRIGHT LIGHT. IT APPEARE TO BE THE HEADLIGHT O A LOW FLYING PLANE.IT APPEARD TO HAVE N ALTITUDE OF 2000-4000FT.WE WERE FACING N +1998-04-23,34.0983333,-118.3258333,Hollywood,CA,light,600,I SAW 2 LIGHTS CROSS THE SOUTHERN HORIZON THAY GLOWED DULL ORANGE AND CREATED A FAINT GLOWING TRAIL THAY KEPT A TIGHT FORMATION TRAVELI +1998-04-23,47.7558333,-122.3402778,Shoreline (Views From),WA,other,3,Blue green streak starting 30 degrees up west. It moved with a streak downward towards the south +1998-04-23,26.3583333,-80.0833333,West Boca Raton,FL,circle,1200,2 UFO's flying in the Western skies over the everglades at night. 1 exited and returned, then left again. The other one continued to ho +1999-04-23,46.8772222,-96.7894444,Fargo,ND,triangle,3,Brief horizon to horizon motion by three inter-weaving craft. +1999-04-23,44.3044444,-92.7902778,Wanamingo,MN,triangle,60,Three light figure no noise. +1999-04-23,47.6063889,-122.3308333,Seattle (North),WA,light,15,I was laying in my bed with the ability to look out the window while watching television. I live on the 4th floor in an apartment bldg. +2000-04-23,36.175,-115.1363889,Las Vegas,NV,circle,300,In the parking lot of Excalibur, We saw a pyramid of six lights flying above the hotel. +2000-04-23,33.9533333,-117.3952778,Riverside,CA,light,180,I saw a bright light +2000-04-23,31.5747222,-111.3316667,Arivaca,AZ,other,120,riders on the storm +2000-04-23,44.0522222,-123.0855556,Eugene,OR,disk,600,It followed me for about 10 minutes. +2001-04-23,39.1111111,-76.9327778,Burtonsville,MD,circle,120,very low slow flying, very strange sounding craft near DC +2001-04-23,47.0380556,-122.8994444,Olympia,WA,triangle,10,Triangle of dots zipping accross the morning sky in Western Washington. +2001-04-23,27.7705556,-82.6794444,St. Petersburg,FL,light,45,Star size object traveling north tosouth +2001-04-23,30.3319444,-81.6558333,Jacksonville,FL,triangle,240,I was driving down i-95 south and just over the trees on the right I saw a triangle UFO with one light up top a few on the bottom and a +2001-04-23,42.9005556,-78.6705556,Lancaster,NY,flash,900,stationary flashing object high in sky +2002-04-23,34.8525,-82.3941667,Greenville,SC,light,600,I am sure that I was awake, and I wasn't hurt at all. +2002-04-23,40.7141667,-74.0063889,New York City,NY,changing,600,Above My building 4 metallic crafts were observed flying low level and adjacent to each other. THey changed shapes 3 times before takin +2003-04-23,36.5022222,-88.3258333,Hazel,KY,fireball,600,burnt orange fireball separates and becomes three fireballs +2003-04-23,37.775,-122.4183333,San Francisco,CA,disk,10,Object moving slowly then at an extremely fast pace from the skyline +2003-04-23,48.2766667,-116.5522222,Sandpoint,ID,sphere,3,An aqua blue sphere with a long trail shot across the night sky. +2004-04-23,34.4208333,-119.6972222,Santa Barbara,CA,light,120,A bright ball of light hovered for a couple minutes +2004-04-23,34.5361111,-117.2902778,Victorville,CA,formation,180,multiple contrailed objects falling together from the sky all turned at once ((NUFORC Note: Possible flight of mil. aircraft?? PD)) +2004-04-23,35.7805556,-78.1191667,Bailey,NC,circle,600,What is this +2004-04-23,40.8686111,-73.0019444,Coram,NY,triangle,120,While driving on a neighborhood road on the way to my friends house I and a friend who was in the passenger seat looked up out the sunr +2004-04-23,40.0455556,-86.0086111,Noblesville,IN,disk,60,Silvery disc, far away, moving south +2004-04-23,36.0397222,-114.9811111,Henderson,NV,light,120,Red light over Lake Mead viewed from Henderson, Nevada. +2004-04-23,36.9741667,-122.0297222,Santa Cruz,CA,unknown,10,A pair of orange lights rapidly crossed tha Santa Cruz sky. +2004-04-23,28.8038889,-81.7258333,Tavares,FL,light,420,Starlike object moving around above and into Leo constellation +2005-04-23,38.2625,-95.7416667,New Strawn,KS,circle,2,Bright streak low on the western horizon going from the south to the north high rate of speed. +2005-04-23,29.4569444,-94.6394444,Crystal Beach,TX,chevron,30,Small brown chevron-shaped object over water at Crystal Beach. +2005-04-23,58.301944399999996,-134.4197222,Juneau,AK,disk,15,Saucer-like craft flies northwest +2005-04-23,28.7811111,-82.6152778,Homosassa,FL,light,120,A yellow light that would stop moving and then would continue at a fast pace. +2005-04-23,33.3966667,-84.5958333,Peachtree City,GA,light,1800,This object was not a star, plane, or helicopter! ((NUFORC Note: We suspect a possible sighting of Sirius, but that is a guess. PD)) +2006-04-23,33.3763889,-117.2502778,Fallbrook,CA,light,120,yellow flashing lights from behind the hills +2006-04-23,41.2230556,-111.9730556,Ogden,UT,light,240,White dot of light that changed directions a few time . +2006-04-23,30.3933333,-86.4958333,Destin,FL,unknown,60,Large mirror-like object in the sky suddenly disappears during the daytime +2006-04-23,37.2697222,-81.2225,Bluefield,WV,fireball,40,AS MY WIFE AND I WERE COMING BACK FROM MY FAMILIES HOUSE IN MCDOWELL COUNTY, WE TOOK THE EXIT TO GO TO OUR HOUSE IN THE CITY OF PRINCET +2006-04-23,32.7152778,-117.1563889,San Diego,CA,fireball,240,A flame floating through the sky moved slowly and closely above us before departing into space as a small red light. +2006-04-23,39.7558333,-77.5780556,Waynesboro,PA,triangle,12,Crudely "cloaked" bomerang object flying do West across Pennsylvania night sky +2006-04-23,47.5675,-122.6313889,Bremerton,WA,other,0.5,Dissapearing Star? ((NUFORC Note: Flare from an Iridium satellite, we suspect. PD)) +2007-04-23,42.0341667,-91.5975,Marion,IA,unknown,120,A strange short sirun noise with two massive jet streams of smoke in the sky in rainbow formation. +2007-04-23,32.5386111,-86.315,Elmore,AL,triangle,600,A seemingly cloaked or disguised craft +2007-04-23,41.6005556,-93.6088889,Des Moines,IA,circle,600,Hazed lights traveling dew north in a clockwise position. +2007-04-23,37.5536111,-77.4605556,Richmond,VA,cigar,60,cigar shaped object over richmond +2007-04-23,34.1477778,-118.1436111,Pasadena,CA,unknown,1800,somewhat clustered object moving in line +2007-04-23,37.3394444,-121.8938889,San Jose,CA,cigar,30,hovering saucer\cigar shaped object, 4 white lights that changed stationary to sweeping over San Jose for HOURS +2007-04-23,29.5847222,-81.2080556,Palm Coast,FL,oval,900,There was a bright white light, bigger than a star or planet moving in the sky. ((NUFORC Note: Possibly Venus?? PD)) +2008-04-23,25.7738889,-80.1938889,Miami,FL,triangle,15,triangle shaped object with lights on each corner flying really low. +2008-04-23,44.6369444,-124.0522222,Newport,OR,light,60,0:00 04/23/08 Newport Oregon High Flying Objects with Red Halo/Haze @ High Speed, No Sound +2008-04-23,42.7675,-78.7441667,Orchard Park,NY,changing,600,It got me off. 500 Lights On Object0: Yes +2008-04-23,39.4013889,-76.6022222,Towson,MD,triangle,120,Triangular object, no lights or engines, completely silent +2008-04-23,34.2022222,-87.1813889,Addison,AL,disk,300,Large, colorful disk shaped ufo over Addison. +2008-04-23,47.6105556,-122.1994444,Bellevue,WA,sphere,120,As I was pulling into my driveway, I got out of my car and noticed a bright spherically shaped orb up in the sky, moving at a slow rate +2008-04-23,36.9847222,-85.0630556,Jamestown,KY,triangle,480,Ufo over lake cumberland. +2008-04-23,29.9544444,-90.075,New Orleans,LA,cigar,7200,thing s were stolen by an unknown identity +2008-04-23,40.9169444,-72.6625,Riverhead,NY,cylinder,600,I noticed this craft was not an airplane but of unknown origin +2008-04-23,44.3105556,-69.78,Augusta,ME,teardrop,720,I saw a UFO +2008-04-23,40.2291667,-74.9372222,Newtown,PA,fireball,180,Orange/White Object with Fire Trail seen crashing from the sky in Northeast Pa. +2008-04-23,42.3333333,-88.2666667,Mchenry,IL,unknown,60,I saw some lights in the back yard and grabbed my camera to take pictures. The pictures just looked black after I took them so I never +2008-04-23,39.3688889,-107.0322222,Basalt,CO,unknown,1800,fast moving, zagging; bright lights and hovering at times. +2008-04-23,41.6213889,-72.7461111,Berlin,CT,sphere,60,Round orange hazy glow traveling from the south west going north east towards Hartford. about 2ꯠ ft. up with a speed of 200 miles pe +2009-04-23,39.9611111,-82.9988889,Columbus,OH,sphere,600,slow moving metallic orb in sky stopping in mid flight and then changing direction +2009-04-23,41.7797222,-71.4377778,Cranston,RI,disk,60,Two Silver Objects diagonal from each other hovered, then jolted upwards, and vanished out of sight on a clear day. +2009-04-23,36.175,-115.1363889,Las Vegas,NV,unknown,300,Jets take off toward the north then orange lights glow in succession repeatedly. +2009-04-23,25.7738889,-80.1938889,Miami,FL,circle,45,miami us citizen witness a ufo +2009-04-23,30.2263889,-93.2172222,Lake Charles,LA,triangle,120,My family and I saw a UFO last night at our house. +2009-04-23,37.9883333,-85.7158333,Shepherdsville,KY,light,360,Lights Over Shepherdsville Kentucky +2009-04-23,39.4561111,-77.9641667,Martinsburg,WV,diamond,60,This was no ultralight or helicopter! It was something totally different . it defied the laws of nature! +2009-04-23,39.6675,-86.7533333,Fillmore,IN,triangle,15,Triangle craft quite large no lights. +2010-04-23,45.0563889,-92.8058333,Stillwater,MN,sphere,1800,A strange glowing / pulsating colored light was observed in the skys along with a jet that seemed to intercept it +2010-04-23,33.7488889,-84.3880556,Atlanta (After Takeoff; In Flight),GA,sphere,5,White spherical orb seen from airliner. +2010-04-23,39.6416667,-77.7202778,Hagerstown,MD,formation,300,multiple objects in large formation in the afternoon +2010-04-23,40.9911111,-74.0330556,Westwood,NJ,other,30,Pyramidal Craft over Westwood NJ +2010-04-23,26.1219444,-80.1436111,Fort Lauderdale,FL,light,1200,Two stationary lights off Fort Lauderdale +2010-04-23,41.2230556,-111.9730556,Ogden,UT,light,5,White light over Ogden, Utah +2010-04-23,33.8886111,-117.8122222,Yorba Linda,CA,cigar,5,twinkie shaped object with lights hovering over Yorba Linda, CA (Weir Canyon Exit) +2010-04-23,33.8752778,-117.5655556,Corona,CA,circle,60,just flew from the east to the west +2011-04-23,48.4111111,-114.3366667,Whitefish,MT,triangle,60,Triangle ufo whitefish montana +2011-04-23,37.3194444,-80.6391667,Pembroke,VA,oval,23,An oval hover craft was above one of the buildings in Pembroke. It has lights going around in a circle. It went in a circle one more ti +2011-04-23,36.175,-115.1363889,Las Vegas,NV,light,900,flying orbs over las vegas +2011-04-23,38.1302778,-121.2713889,Lodi,CA,changing,960,bright object eradically zig zaging in sky around airplanes, almost strobing light effect. above lodi,ca +2011-04-23,39.7475,-122.1952778,Orland,CA,light,60,Yellow-white light hovers before speeding off into the night sky +2011-04-23,47.6733333,-117.2383333,Spokane Valley,WA,rectangle,90,Dim rectangular object seen over Spokane Valley. +2011-04-23,35.8455556,-86.3902778,Murfreesboro,TN,rectangle,1800,12 to 15 orange fiery object over Murfreesboro, TN +2011-04-23,26.8230556,-80.1388889,Palm Beach Gardens,FL,light,900,Bobbing red, blue and white light seen west of Palm Beach Gardens, FL. +2011-04-23,46.6022222,-120.5047222,Yakima,WA,diamond,2280,Two round orbs of light shifting in area +2012-04-23,39.8402778,-88.9547222,Decatur,IL,cigar,120,Strange lights above decatur ill. +2012-04-23,45.0725,-93.4555556,Maple Grove,MN,circle,180,Bright circle of light that hovers. Seen 5 different times. On film 3 times. +2012-04-23,34.9386111,-82.2272222,Greer,SC,flash,180,2 Flashing red lights fly slow and silent over my home. i have video +2012-04-23,28.0833333,-80.6083333,Melbourne,FL,other,120,Encounter with grey transparent beings. +2012-04-23,39.4408333,-88.5947222,Windsor,IL,circle,300,Sighting of a UFO traveling over Rural Central Illinois. +2012-04-23,32.948055600000004,-96.7294444,Richardson,TX,triangle,80,First time to observe such an object in the sky +2012-04-23,34.5163889,-77.9158333,St. Helena,NC,triangle,3,Triangulum Gargantua UFO +2012-04-23,35.2333333,-106.6638889,Rio Rancho,NM,light,60,At 9:50 PM i was heading home from a park near Riverview Drive. As I was leaving the park, turning West, I noticed a red light in the W +2012-04-23,31.8466667,-81.5961111,Hinesville,GA,light,1800,Strange light in the sky near Hinesville, GA +2012-04-23,37.9577778,-121.2897222,Stockton(West Of),CA,light,2400,At 10:03 pm saw a Flashing red, blue, white light. Hovers in same spot for around 35-40 minutes. Flickering three different colors. Hea +2012-04-23,40.0161111,-79.8308333,Grindstone,PA,light,120,Large white object with a slight yellow tint seen being followed/chased by jets. +2012-04-23,30.505,-97.82,Cedar Park,TX,chevron,10,A boomerang shaped shadow flew over me at a commercial airplane speed +2012-04-24,58.301944399999996,-134.4197222,Juneau,AK,light,30,Strange lights being seen in Juneau, AK night sky. +2013-04-23,40.6441667,-97.45,Exeter,NE,light,7200,Tiny white ufos flying among the stars +2013-04-23,42.2411111,-83.6130556,Ypsilanti,MI,triangle,60,Low and slow moving with red and white lights +2013-04-23,27.8316667,-81.5225,Babson Park,FL,fireball,2,Red, yellow, and orange fireballs flying low in Babson Park/ Frostproof, FL +2013-04-23,37.1288889,-84.0833333,London,KY,triangle,600,My son and I saw a triangle shaped object while watching for meteors.. +2013-04-23,36.5008333,-88.8752778,South Fulton,TN,circle,30,Star moves then disappeared. +2013-04-23,35.8238889,-80.2536111,Lexington,NC,triangle,60,Black gliding air craft, blue and red light at the end of wings, flying low. +2013-04-23,43.0483333,-75.3788889,Clinton,NY,triangle,120,Three white constant bright lights one red blinking light next to white front one , made triangular shape. quiet and slow. +2014-04-23,32.7677778,-117.0222222,La Mesa,CA,circle,15,Me and my son saw this huge white light come out of the sky to ground or pacific ocean very strange this was no metor! +2014-04-23,37.5602778,-85.4305556,Raywick,KY,circle,240,A round white object in sky that was moving. +2014-04-23,35.2269444,-80.8433333,Charlotte,NC,disk,300,Over 20 ufos seen flying towards charlotte nc airport. +2014-04-23,30.255277800000002,-88.1097222,Dauphin Island,AL,light,600,Orange balls in pattern over gulf/Mobile Bay. +2014-04-23,34.4047222,-103.2047222,Clovis,NM,unknown,120,Bright solid light moveing east then changed to southeast. The bright light faded to a solid red then faded out. +2014-04-23,33.4483333,-112.0733333,Phoenix,AZ,circle,300,White light no noise 1 witness circular in shape. +2014-04-23,34.0752778,-84.2941667,Alpharetta,GA,light,8,Green light n Southern Sky. +2014-04-23,30.255277800000002,-88.1097222,Dauphin Island,AL,formation,10,Light formation that extinguished one by one from west to east over the Gulf of Mexico at Dauphin Island, AL +2014-04-23,36.1538889,-95.9925,Tulsa,OK,triangle,300,Pyramid shaped UFO sighted over Southern Hills Golf Course Wednesday, April 23rd over TULSA, OKLAHOMA. +2014-04-23,48.4213889,-122.3327778,Mount Vernon,WA,chevron,600,((HOAX)) Looked like a flying Chevrolet Tahoe that shot laser beams and abducted my neighbors cat, George w bush in passenger seat. +2014-04-23,38.8916667,-121.2919444,Lincoln,CA,sphere,30,Low alt. flyover of red turning to blue then back to red sphere. Rapid departure. ((NUFORC Note: Model airplane?? PD)) +2014-04-23,40.2736111,-76.8847222,Harrisburg,PA,unknown,60,2 years ago I had an extreme close fly-by of a blue light. +1987-04-24,47.6063889,-122.3308333,Seattle,WA,changing,1200,Low flying Orange Blimp over Lake Washington (Seattle, Madrona Park Beach) +1992-04-24,42.7158333,-78.8297222,Hamburg,NY,disk,120,GLOWING OBJECT HOVERING ABOVE THE TREELINE AND HOUSES +1994-04-24,35.0844444,-106.6505556,Albuquerque,NM,sphere,3,I was on my way down from the Sandia Mountain peak ( on a tramway) when I saw a bright orange flash and an ornange ball of light speed +1997-04-24,41.2147222,-79.3855556,Clarion,PA,light,120,It was a partly cloudy night in April 1997, the thursday following Easter Sunday. My two friends and I were hanging out on the roof of +1997-04-24,43.3666667,-124.2166667,Coos Bay,OR,sphere,120,Woman looking at stars in E sky sees a "dark tan circle of flames" moving to the N. 10 min. later, same obj. going S; closer, larger. +1997-04-24,45.0655556,-93.2016667,New Brighton,MN,triangle,2700,20-35 triangular shaped craft sighting.Bright flashing lights at corners. +1998-04-24,41.7627778,-87.8,Bedford Park,IL,fireball,5,A glowing green sphere, with a white rectangular light behind it, emerged and then streaked westwardly. As it streaked it slightly gre +1999-04-24,44.3236111,-93.9577778,St. Peter,MN,triangle,15,Two triangles with lights in the corner traveled east to west at high velocity towards eachother and then disapeared. +1999-04-24,39.9611111,-82.9988889,Columbus,OH,circle,600,saw light orange objects moving south to north ,then 4 more moving south to north,then turning west +1999-04-24,35.6838889,-82.0094444,Marion,NC,teardrop,2700,huge bright star moving from left to right, then turned to tear drop and then went dull and moved over our lake home. strange but true. +1999-04-24,42.5833333,-71.8027778,Fitchburg,MA,disk,600,AS we drove headed back towards fitchburg state college on john Fitch Highway, we noticed a light that drifted through the clouds north +1999-04-24,36.175,-115.1363889,Las Vegas,NV,chevron,900,4 lights in clear/clouds stopping/moving/hispeed @ sharp angles;lrg chevron/luminous objects form from gaseous bar/moves overhead +1999-04-24,36.175,-115.1363889,Las Vegas,NV,light,900,4 lights/hovering/moving radically about 1 general area; gaseous area resolves to chevron formation of jewel color lights/ move slowly +1999-04-24,47.0380556,-122.8994444,Olympia,WA,other,4,Possible meteor impact due south of the washington state capital of olympia, washington +2000-04-24,41.4827778,-87.3327778,Merrillville,IN,triangle,37800,SEEN WEIRD LIGHTS IN THE SKY. MOVING IN ODD DIRECTIONS AND WERE MULTI-COLORED. ACCOMPANIED BY WEIRD NOISES. ONE UFO WAS LIT UP LIKE +2000-04-24,33.5177778,-84.6697222,Palmetto (Just East Of, Off I-85),GA,triangle,420,Silent black triangle the size of a 747. More acute than equilateral in shape. 2 strobes toward the back; rapidly flashing in perfect t +2000-04-24,37.3394444,-121.8938889,San Jose (Approx. 15 Miles East Of),CA,sphere,2,A bright, shiny, metallic-object, seen from commercial passenger aircraft. +2000-04-24,36.1538889,-95.9925,Tulsa,OK,fireball,360,Large fireball traveling rapidly in a SW direction +2000-04-24,33.9908333,-118.4591667,Venice,CA,diamond,600,one diamond shaped flying object with blue, gold and red lights. It was circle with a diamond shape inside it. It was at night approxim +2000-04-24,33.8936111,-117.7263889,Chino Hills,CA,circle,30,A big green circle came out of the sky suddenly and then desinigrated just above me +2000-04-24,39.1619444,-84.4569444,Cincinnati,OH,egg,30,At about 10:30PM, I was on westbound I-275 and Highway 128 when a Huge EGG or Top shape object was right above my vechile moving north. +2000-04-24,61.3213889,-149.5677778,Eagle River,AK,light,60,Far east of Eagle River, spotted a star and 2 lights in the sky between 2 mountain peaks. One of the lights was red, one was white. T +2000-04-24,47.5002778,-111.3,Great Falls,MT,unknown,300,Beam of light in field, no visble object and no noise, approximitely a mile or less away, +2001-04-24,43.4636111,-114.2597222,Bellevue,ID,changing,120,A large clearly visible object that moved at low and high rates of speed and joined 3 other objects. +2001-04-24,39.7391667,-104.9841667,Denver,CO,oval,240,green,blue and red flashing lights. +2001-04-24,36.0752778,-79.1,Hillsborough,NC,other,60,Large plane with triangle wings in rear with long fuselage with short set of wings up front,silvercolor with engines that whine . +2001-04-24,33.8847222,-118.41,Manhattan Beach,CA,chevron,8,Flight of 6 cheveron shaped craft . +2002-04-24,31.6716667,-97.0986111,Elm Mott,TX,triangle,90,Lighted triangular craft seen north of waco tx. +2002-04-24,34.4838889,-114.3216667,Lake Havasu City,AZ,light,300,Lights in LHC Arizona AGAIN +2002-04-24,40.7608333,-111.8902778,Salt Lake City,UT,diamond,30,Vanishing UFOs +2002-04-24,47.6777778,-116.7794444,Coeur D'alene,ID,sphere,2100,A sphere with a sail on top that changed into triangular shape then back to spherical, that would shrink then expand & blink lights +2002-04-24,35.8302778,-92.5577778,Leslie,AR,sphere,60,Two light spheres followed by three smaller ones +2002-04-24,33.8816667,-118.1161111,Bellflower,CA,light,300,red floating, swaying light orb thing- asceding into the sky reverse of a falling feather and much slower +2002-04-24,47.5405556,-122.635,Port Orchard,WA,light,7200,Constantly recurring Light (over years) that changes direction too fast to be anyhting known. +2003-04-24,33.6675,-84.0177778,Conyers,GA,fireball,2,bright blue fireball +2003-04-24,37.5297222,-122.0391667,Newark,CA,other,10,Never saw anything like it - If it's military (ours) is decades ahead of "known" technology! +2003-04-24,44.4563889,-89.5438889,Plover,WI,light,7,4 bright orange lights in a horizontal line "leapfrogged" eachother a few times before fading away. +2003-04-24,44.4488889,-75.6944444,Hammond,NY,unknown,1200,UFO that appeared out of the corner of my eye, hovering up and down while going vertically southeast. +2003-04-24,34.0522222,-118.2427778,Los Angeles,CA,formation,2700,Arrow shape lights over Los Angeles, CA +2004-04-24,41.5733333,-87.7844444,Tinley Park,IL,light,300,Red Light Hovering Motionless In the Sky +2004-04-24,29.9544444,-90.075,New Orleans,LA,teardrop,40,it was like it was made of mercury and molded to the most arodynamic shape posible. it flew very fast and was only seen because a refle +2004-04-24,34.0961111,-118.105,San Gabriel,CA,cylinder,3600,WAS LOOKING AT THE MOON THEN I SAW IT +2004-04-24,33.9525,-84.55,Marietta,GA,triangle,1800,I saw two pink triangles at about 4:30pm in Marietta, GA, on April 24, 2004, which moved in unison then disappeared into the clouds. +2004-04-24,34.0522222,-118.2427778,Los Angeles,CA,circle,1800,3 spots in sky in broad daylight moving oddly +2004-04-24,33.7125,-115.4013889,Desert Center,CA,cylinder,1200,TUBE SHAPED OBJECT WITH FLASHING LIGHTS HANGING IN SKY OVER MIDDLE OF HWY. +2004-04-24,26.0625,-80.2333333,Davie,FL,cigar,5,Brightly-lit cigar shaped craft flew silently and quickly over Boy Scout gathering. +2004-04-24,35.925,-86.8688889,Franklin,TN,light,7200,Circling lights up in the sky ((NUFORC Note: Advertising light?? PD)) +2005-04-24,39.4097222,-123.3544444,Willits,CA,circle,120,Black spot, killed digital camera +2005-04-24,41.7847222,-73.9336111,Hyde Park,NY,fireball,2,Driving north on rt 9g we witnessed a fireball going east to west..... the sun had not yet set. +2005-04-24,41.8786111,-71.3830556,Pawtucket,RI,changing,1,Unidentified falling object/light +2005-04-24,40.9911111,-72.5347222,Mattituck,NY,oval,15,As I was driving an oval UFO with a bright blue color was visible from the front to the middle, the back was yellow. A redish trail wa +2005-04-24,44.6369444,-124.0522222,Newport,OR,cone,10800,Fanned out cones with pointy bright lighted nose. ((NUFORC Note: We suspect lens flares. Witness concurs. PD)) +2005-04-24,46.7208333,-92.1038889,Superior,WI,triangle,15,Large triangular shaped object passed slowly overhead under a full moon sky with no lights and no sound. +2005-04-24,41.2505556,-87.8313889,Manteno,IL,unknown,7200,UFO/Object tracked and observed over a 2hr plus time span that exhibited a clockwise circular motion with many colors. ((Sirius??)) +2006-04-24,45.6175,-121.1783333,Dallesport,WA,changing,2400,egg-shaped UFO in south central Washington looked like a carnival ride in the sky +2006-04-24,42.5802778,-83.0302778,Sterling Heights,MI,teardrop,30,Two teardrop shape crafts with orange lights hovered over parking area. Stayed high up. +2006-04-24,29.4238889,-98.4933333,San Antonio,TX,cigar,1800,my brother and i wached 4 cigar shaped figures for about 20 min. ((NUFORC Note: Student report. PD)) +2006-04-24,48.5127778,-93.8027778,Loman,MN,light,2100,Large red ball of light that multiplied into four separate lights at tree level, white lights flying at high altitudes. +2006-04-24,46.6022222,-120.5047222,Yakima,WA,light,600,Light....duration 10-15 minutes +2007-04-24,39.2688889,-84.2638889,Loveland,OH,unknown,40,stationary triangular span of light, 15 sec. Then flipped upward, revealing three cohesive lights. Silent, low, slow moving, SE to N. +2007-04-24,59.6425,-151.5483333,Homer,AK,fireball,5,Approx. 3:30 AM on the morning on April 24th four male adults driving alongside Kachamak Bay, in Homer, AK. +2007-04-24,41.6,-76.4422222,New Albany,PA,light,7200,Appears to be bright star flashing with hints of red and green colors. +2007-04-24,40.5775,-85.8733333,Converse,IN,light,7200,Awesome red lights put on an other-worldly display in Converse, Indiana, and blew my mind. +2007-04-24,37.9319444,-121.6947222,Brentwood,CA,circle,300,Bright Orange round object sighted in the Eastern Night sky moved south and dissappeared. +2007-04-24,42.8805556,-71.0819444,South Kingston,NH,circle,300,bright, pulsating object moves unlike conventional aircraft +2008-04-24,38.8755556,-84.6102778,Walton,KY,diamond,480,Diamond ship with intense lighting spotted by 6 people in a feild. +2008-04-24,36.1397222,-120.3591667,Coalinga,CA,triangle,300,Low flying unmarked craft flying crazy over freeway, just short of Harris Ranch Airfield and hwy 198, outside Coalinga +2008-04-24,32.8794444,-111.7566667,Casa Grande,AZ,triangle,30,Triangular distortion hovers and vanishes with pulse. +2008-04-24,41.8458333,-70.95,Lakeville,MA,light,3,1 Unknown Light, High Speed, South to North, Green White morphing light. +2008-04-24,28.0833333,-80.6083333,Melbourne,FL,light,180,Pre dawn with clear moon lite sky, three bright lights appeared quickly and vanished just as quick, but all were of the same appearanc +2008-04-24,48.2413889,-122.3694444,Stanwood,WA,other,300,Hexagon image with 4 protruding spikes +2008-04-24,30.3319444,-81.6558333,Jacksonville,FL,oval,20,My friend and I looked at each other and said, “What just happened?” +2008-04-24,32.2216667,-110.9258333,Tucson,AZ,light,3600,Star in broad daylight +2008-04-24,34.47,-118.1958333,Acton,CA,unknown,15,Bad weather and overcast skies make a great place to test they're new toys +2008-04-24,30.2263889,-93.2172222,Lake Charles,LA,other,2,long narrow silver rod seen +2008-04-24,41.1233333,-73.7794444,Thornwood,NY,light,10,Bright flickering light up in sky. Looked down, looked back, gone. +2008-04-24,33.6694444,-117.8222222,Irvine,CA,circle,300,Dark circular object surrounded by white/bluish tinted lights. +2008-04-24,40.7266667,-115.585,Spring Creek,NV,rectangle,3,Large lime-green luminescent rectangle, lights moving within it, in the southeastern sky at 9:10pm Pacific Time. +2008-04-24,33.8158333,-78.6802778,North Myrtle Beach,SC,sphere,3,Orange orbs over atlantic - North Myrtle Beach +2008-04-24,28.8997222,-82.3747222,Hernando,FL,other,300,THREE VERTICAL CIRCLES WITH TRIANGLE SEEN +2009-04-24,44.4052778,-72.9933333,Richmond,VT,light,600,First 2, then 3 bright lights in the sky; lights eventually disappeared +2009-04-24,29.6513889,-82.325,Gainesville,FL,triangle,20,odd triangle shaped craft, flying low and slow, had dim red lights. +2009-04-24,47.3811111,-122.2336111,Kent,WA,sphere,30,loud orange ufo buzzes kent, wa. again +2009-04-24,43.6613889,-70.2558333,Portland,ME,sphere,120,Simple truth as seen. (aircraft in vicinty whcih allowed me reference, but none chasing) +2009-04-24,34.3527778,-82.9322222,Hartwell,GA,oval,600,never seen anything like it. +2009-04-24,42.2008333,-88.2144444,Fox River Grove,IL,triangle,180,3 large lights in a large triangle pattern +2009-04-24,38.8902778,-77.0844444,Arlington,VA,sphere,3600,Sphere that jolted, changed shape and color. +2009-04-24,33.5386111,-112.1852778,Glendale,AZ,triangle,600,silent triangle craft in North Phoenix +2009-04-24,40.9502778,-72.8430556,Wading River,NY,formation,120,Not a UFO, but very strange... +2009-04-24,37.775,-122.4183333,San Francisco,CA,flash,420,UFO sighting around the SF bay area. +2009-04-24,42.5005556,-90.6644444,Dubuque,IA,unknown,35,((HOAX??)) All I could think was "OH ((deleted))!!" +2009-04-24,35.265,-116.0736111,Baker,CA,light,3,A light, traveling very quickly, passed us on a highway and dissapeared. +2010-04-24,42.7761111,-71.0777778,Haverhill,MA,unknown,1800,small object floating moving up and down blinking. +2010-04-24,40.7319444,-73.1861111,East Islip,NY,sphere,60,2 silver spheres zigzaging very high in the atmosphere +2010-04-24,30.2669444,-97.7427778,Austin,TX,light,120,I saw four orange lights in a triangular formation gliding above me about 300 ft. they did not make any noise and glided over the neigh +2010-04-24,34.09,-117.8894444,West Covina,CA,formation,10800,ufo west covina, ca +2010-04-24,38.2541667,-85.7594444,Louisville,KY,sphere,20,A silver sphere spotted in Louisville Kentucky. +2010-04-24,33.6680556,-117.3263889,Lake Elsinore,CA,disk,300,Disk light object with rotating white lights along bottom disappears after 5 min. +2010-04-24,29.7630556,-95.3630556,Houston,TX,light,600,Orange lights seen over the Houston area traveling east to west in pairs. +2010-04-24,29.7630556,-95.3630556,Houston,TX,circle,3600,7-10 Orange/Red Lights seen, blackberry battery drained +2010-04-24,40.6583333,-74.3,Cranford,NJ,light,1800,We saw the government reaction to the lights after seeing the lights. ((NUFORC Note: This may not be a serious-minded report. PD)) +2011-04-24,33.8702778,-117.9244444,Fullerton,CA,changing,1200,Crazy event with ufo that causes problems with technology and scares high school students 500 Lights On Object0: Yes +2011-04-24,30.5080556,-97.6786111,Round Rock,TX,teardrop,10,cluster of small dots tinted yellow, glowing, looked like it disappeared under blanket at night. +2011-04-24,29.1869444,-82.1402778,Ocala,FL,triangle,20,Two witnesses observe a triangular object, with three faint orange/red lights. +2011-04-24,41.5733333,-87.7844444,Tinley Park,IL,rectangle,60,Black rectangle object moving from Southeast to Northwest. +2011-04-24,38.69,-90.3425,Vinita Park,MO,circle,1800,we saw a black disk shape object in the sky circle in shape hovering over some kids on the basketball court moving around. +2011-04-24,31.3408333,-83.5936111,Omega,GA,light,60,Reflection of tower light seen over field in rural Georgia. +2011-04-24,27.1972222,-80.2530556,Stuart,FL,triangle,240,Triangular shaped craft over Sewals point . Stuart, Fl +2011-04-24,46.7566667,-88.4527778,L'anse,MI,formation,30,so low to the house I could of hit it with a rock. +2011-04-24,46.7566667,-88.4527778,L'anse,MI,oval,30,HUGE BRIGHT LIGHTS SILENT UNTIL RIGHT ON TOP OF YOU. +2011-04-24,32.2047222,-95.8552778,Athens,TX,circle,300,Four lights hovering over powerlines leaving graphite type substance on ground +2012-04-24,46.8219444,-123.095,Rochester,WA,sphere,20,Silent craft moving across the sky +2012-04-24,40.0455556,-86.0086111,Noblesville,IN,circle,120,Almost looked like jupiter. Orange very strange. +2012-04-24,34.7744444,-96.6780556,Ada,OK,cigar,180,Cigar shaped almost aluminum in color hazy around it no sound +2012-04-24,30.3672222,-89.0927778,Gulfport,MS,disk,1500,Green/Yellow Disc object fying around the gulfcoast towards the open water. +2012-04-24,34.9883333,-80.3672222,Marshville,NC,circle,1200,Three strange crafts circling over head +2012-04-24,42.0083333,-91.6438889,Cedar Rapids,IA,light,420,My girlfriend and I just happened to be outside at approximately 9:45pm. We witnessed a bright white light move slowly from the NW sky, +2012-04-24,28.9166667,-82.4583333,Beverly Hills,FL,other,1800,Star like object with colors flickering/stationary. Beverly Hills Florida 4/24/12 and it is filmed. ((NUFORC Note: Sirius?? PD)) +2012-04-24,38.8813889,-94.8188889,Olathe,KS,other,5400,Rippled Lights in the Western Sky near Olathe, KS +2012-04-24,33.5091667,-111.8983333,Scottsdale,AZ,sphere,1200,Brilliant undulating light hung motionless in the horizon, eventually dimmed, came back, and then disappeared +2012-04-24,33.0916667,-97.0463889,Highland Village,TX,other,10,Saw boomerang shaped, low-flying craft gliding at high rate of speed; shooting star immediately followed +2012-04-24,40.45,-111.7694444,Highland,UT,circle,600,Red and blue light hovering over the hills due North East of the Highland Blvd +2013-04-24,36.1155556,-97.0580556,Stillwater,OK,light,600,2 or 3 small lights randomly floating around in the sky. No clear flight path at all. +2013-04-24,46.8219444,-123.095,Rochester,WA,light,20,Silent craft moving across the sky. +2013-04-24,47.8555556,-121.9697222,Monroe,WA,formation,60,Two red lights in formation traveling south to north at high rate of speed. +2013-04-24,40.5158333,-75.5555556,Macungie,PA,unknown,300,Unknown object in the sky. +2013-04-24,33.5386111,-112.1852778,Glendale,AZ,triangle,900,Changing color UFO, sighted 4/24/13 near Glendale, AZ. Recording at 9pm Arizona time. +2013-04-24,42.3266667,-122.8744444,Medford,OR,light,1200,Red, blue and silvery flashing object. ((NUFORC Note: Possible twinkling star. PD)) +2013-04-24,34.9338889,-93.4941667,Briggsville,AR,other,600,A LINE OF LIGHTS STARTED FLASHING, THEN THEY STARTED DRIFTING AWAY MAKING A TRIANGLE THEN AN OVULAR PATTERN AS IT DRIFTED AWAY. +2013-04-24,45.5230556,-122.9886111,Hillsboro,OR,unknown,600,6 red lights in the night sky in Hillsboro, Or +2013-04-24,39.1136111,-100.4647222,Grainfield,KS,triangle,300,I seen 3 flashing red lights in shape of a triangle again, but over by Grainfield instead of Park headed south. This is the forth one +2013-04-24,34.035,-77.8938889,Carolina Beach,NC,light,3600,The objects appeared in locations/positions in the sky where no stars are noted in a standard celestial constellation map. +2013-04-24,34.035,-77.8938889,Carolina Beach,NC,circle,360,Orange lights over the ocean for about 5-6 minutes! +2013-04-24,36.685,-93.1197222,Forsyth,MO,light,360,Hovering white lights over Branson Forsyth fast moving objects that would move in and stop and hover for quite sometime +2014-04-24,26.2125,-80.25,Tamarac,FL,fireball,7200,Kept changing colors and even started to come down made a sound then disappeared and came back a minute later +2014-04-24,39.9625,-76.7280556,York,PA,circle,15,Bright white circular light/craft in sky shoots down to 200-300 ft above ground, hovers, than shoots back up at extremely high speed +2014-04-24,36.0988889,-78.3013889,Louisburg,NC,circle,30,I saw a star moving north to south through the Little Dipper handle, and then disappeared, but then a second star chasing it. +2014-04-24,35.2333333,-106.6638889,Rio Rancho,NM,oval,10,Circular, metallic silver/white object in sky; Rio Rancho, NM. +2014-04-24,41.7302778,-71.2830556,Warren,RI,cigar,180,I was driving N into Warren in the mid-morning, and I saw 3 cigar shape crafts, with no wings. 2 ships heading East. +2014-04-24,33.4483333,-112.0733333,Phoenix,AZ,circle,240,Two circle white lights One big one small . We Spotted the lights from my backyard in west phoenix The larger white light was followin +2014-04-24,30.255277800000002,-88.1097222,Dauphin Island (Off The Coast Of),AL,light,60,5 lights in a up and down line going on one at a time then off one at a time. +2014-04-24,35.0844444,-106.6505556,Albuquerque,NM,light,30,Orange-red light followed by a blinking green and red light; large rumbling noise unlike a plane could be heard. +2014-04-24,34.6888889,-82.1958333,Fountain Inn,SC,light,10,Point of light rapidly moves across the sky then fades away. +2014-04-24,30.2941667,-87.5736111,Orange Beach,AL,formation,120,Formation or orange lights over gulf seen from gulf front balcony in orange beach. One large light appeared and then lights formed off +2014-04-24,30.9175,-96.1080556,North Zulch,TX,light,120,Orange/red pulsing light, first noticed it coming into view over the east/north eastern horizon. Moving accross the sky at high altitud +2014-04-24,28.8827778,-81.3088889,Debary,FL,light,60,This would be the third sighting by me, but the first with a witness, a bright white would appear suddenly. Thicker and brighter than a +2014-04-24,33.6602778,-117.9983333,Huntington Beach,CA,fireball,120,Two fast orbs in Huntington Beach. +2014-04-24,36.3319444,-94.1183333,Rogers,AR,light,30,Light disappear into space. +2014-04-24,33.5336111,-82.1308333,Evans,GA,light,15,Two bright light orbs in sky. +2014-04-24,32.7152778,-117.1563889,San Diego,CA,light,120,Jet chasing "light"? +2014-04-24,34.0202778,-117.8644444,Walnut,CA,light,60,Ball of light with no strobe lights being chased by a military type helicopter coming from the east heading towards the west. +2014-04-24,26.2375,-80.125,Pompano Beach,FL,other,600,Red and blue light cluster moved east across sky then stop and hover. After a few minutes, lights move west until I lost sight. +2014-04-24,38.8108333,-94.9269444,Gardner,KS,unknown,1800,Blue and Green Lights, No definite shape, No Noise, Random Light pulsating, Slight Movement. ((NUFORC Note: Stars?? PD)) +1966-04-25,40.3355556,-75.9272222,Reading,PA,other,300,There is not one doubt in my mind as to what it was that I saw. I am an electronic (Retired) technician and know what I am talking abou +1967-04-25,30.705,-84.8430556,Chattahoochee,FL,light,600,The two objects left two vapor trails with 90 degree turns in them before they simply vanished. +1973-04-25,29.7666667,-92.975,Grand Chenier,LA,sphere,20,Have always felt certain it was a meteorite, It was a burning ball of fire about 3 to 4 foot in diameter. This object hit the earth. Af +1974-04-25,44.3466667,-68.6841667,Brooksville,ME,disk,300,Hovering saucer with blinking lights interacts with signals from flashlights. 500 Lights On Object0: Yes +1975-04-25,41.4338889,-79.7066667,Oil City,PA,disk,180,UFO over Oil City, PA 1975 +1976-04-25,35.5938889,-89.2622222,Brownsville,TN,circle,60,I saw a wheel within a wheel +1981-04-25,41.9902778,-70.9755556,Bridgewater,MA,triangle,600,I'm sorry I am so late in reporting this. My husband and I rarely talked about it to each other after the incident, which was short in +1994-04-25,35.0844444,-106.6505556,Albuquerque,NM,sphere,3,Glowing sphere makes figure eight around two people. +1994-04-25,30.3655556,-88.5561111,Pascagoula (Approximate),MS,flash,2,I saw a powerful multi-colored fan of laser-like light emanate from deep in a swamp while I was travelling by car, heading west on I-10 +1994-04-25,43.4552778,-76.5108333,Oswego,NY,triangle,60,Rusty-red colored triangular shaped object with red lights came up over the shore of Lake Ontario and flew in a quick zig zag pattern +1995-04-25,33.6638889,-114.2291667,Quartzsite,AZ,triangle,300,TRIANGLE flies over I 10 IN AZ. +1996-04-25,45.4222222,-116.3144444,Riggins,ID,egg,4,Large white egg with comet-like tail seen above salmon river at french creek. +1997-04-25,26.4611111,-80.0730556,Delray Beach,FL,light,300,Single white light changes to multiple sources with red light, splits up. Red light moves differently and sparkle type exhaust noticed. +1997-04-26,40.7141667,-74.0063889,New York City (Brooklyn),NY,other,1200,Shape changing object +1998-04-25,39.5744444,-106.0969444,Frisco,CO,oval,9000,lights act like a star then zoom! +1998-04-25,40.4258333,-89.7791667,Manito (Outside Of),IL,formation,300,3 circular shaped ufos changing formation more than 4 times +1998-04-25,35.1377778,-97.6577778,Blanchard,OK,triangle,1380,I SAW SOMTHING THAT WAS FLASHING RED BLUE AND GREEN LIGHTS. I GOT MY BINOCULERS AND GOT A BETTER LOOK,IT WAS AMAZING,I NEVER THOUGHT I +1998-04-25,40.6575,-96.6577778,Roca,NE,triangle,1200,My friend and I saw a triangular shaped craft. It hovered for about ten minutes and then started moving. +1999-04-25,32.7252778,-114.6236111,Yuma (Approx. 100 Miles E Of),AZ,light,2,Pinpoint light movement. +1999-04-25,43.0013889,-85.7680556,Walker,MI,light,600,Bright light in eastern sky increased in intensity, then turned red and shot off. +1999-04-25,38.2811111,-80.8527778,Summersville,WV,disk,300,My wife and I saw a silvery disc flying above Rt. 19, close to the hosp. It made no sound. It seemed to be rotating. It then flew up ne +1999-04-25,36.9902778,-86.4436111,Bowling Green,KY,chevron,180,son and I were outside and I just happened to look up and this big black thing. About 500 ft. above us moving so slow. Went north about +1999-04-25,42.2708333,-83.7263889,Ann Arbor,MI,formation,15,Early evening - sky not yet dark, planets just beginning to appear. I was outside on the deck looking in the southeast sky trying to f +1999-04-25,20.9033333,-156.3694444,Paia,HI,cylinder,600,cylinder shaped red glowing craft moving very fast from the north to the west +2000-04-25,39.0397222,-77.0555556,Wheaton,MD,circle,180,19 yr old man describes UFO sights in Maryland at night and in broad daylight. +2000-04-25,41.9633333,-87.9788889,Wood Dale,IL,other,120,Driving home from work, I saw aircraft descending for ohara airport landing...four blocks from worksite, I looked back to watch descent +2000-04-25,32.9536111,-96.89,Carrollton,TX,formation,240,I saw what looked to be like a mist coming across the sky to the west of where I was at. As I watched it I saw A formation of what look +2000-04-25,37.9736111,-122.53,San Rafael,CA,light,3,Green light came down in the western horizon +2001-04-25,40.7927778,-117.1258333,Valmy,NV,cylinder,720,Cylinder flying object west on I-80 before Winnemucca, Nevada with bright strange lights. +2001-04-25,47.3075,-122.2272222,Auburn,WA,fireball,5,Tonight I was driving southbound on M st. in auburn. Directly in front of me through my windsheild I saw a very bright falling globe. I +2001-04-25,37.7341667,-79.3541667,Buena Vista,VA,triangle,300,Triangle Shaped Craft Hoovering over small town in VA. +2001-04-25,29.7630556,-95.3630556,Houston,TX,light,1,Green streak of light covered about 1/3 of the sky in one second, changed to white as it neared the horizon and faded out. +2001-04-25,30.0380556,-82.9402778,O'brien,FL,light,4,At 21:05 hr's my 23 yoa neice and I stepped outside my home for a cigarette, as we stepped off the steps we both saw a red light flash +2001-04-25,48.8461111,-95.7625,Roseau,MN,light,60,It looked like dissapearing satellites +2001-04-25,41.3113889,-105.5905556,Laramie,WY,light,8,Three pinpoints of light flying in unison, then making extremely fast erratic movements, before flying in unison again. +2002-04-25,36.0997222,-80.2444444,Winston-Salem,NC,light,180,A bright and wavering light in the east. +2002-04-25,37.3394444,-121.8938889,San Jose,CA,circle,2,very small spheres, three one frame flashes at equal time and distance intervals +2002-04-25,30.9936111,-87.8580556,Stockton,AL,triangle,60,A triangular craft 200ft high and 500 foot from my position..hovering +2003-04-25,37.0475,-112.5255556,Kanab (10 Miles South Of On Hwy 89),UT,light,60,Moon like object that exploded into burst of bright lights *Highway 89 just outside of Kanab utah* +2003-04-25,40.7138889,-73.5594444,East Meadow,NY,disk,10,Saw 1 greyish disk shaped object for about 10 seconds than it dissapered +2003-04-25,43.4316667,-103.4738889,Hot Springs,SD,light,1800,5 points of light moiving quickly and erratically at different times +2004-04-25,33.5213889,-84.3538889,Jonesboro,GA,unknown,30,Bright moving satellite +2004-04-25,39.0997222,-94.5783333,Kansas City,MO,other,300,Two clusters of four black blobs floating and moving at dusk. +2004-04-25,40.0394444,-84.2033333,Troy,OH,disk,120,The thing was a disk that flew very low to the ground, compared to a plane, and went over some trees +2004-04-25,44.0583333,-121.3141667,Bend,OR,formation,600,String of star-like lights drift through sky in straight line, with equal distance apart from one another. +2004-04-25,36.7477778,-119.7713889,Fresno,CA,fireball,20,Adult male reports witnessing a fast-moving, orange-colored fireball streak overhead. +2004-04-25,41.4244444,-91.0430556,Muscatine,IA,changing,3600,3 lighted object ((NUFORC Note: Sighting of Venus, we suspect. PD)) +2005-04-25,34.6391667,-120.4569444,Lompoc,CA,diamond,20,4 main lights, a bunch of little white lines under neath it, a horrible very loud "high pitched humming" (did not sound like an aircraf +2005-04-25,43.5277778,-71.4708333,Laconia,NH,light,60,3 lights over lake +2005-04-25,34.6391667,-120.4569444,Lompoc,CA,diamond,900,It moved to slow. Like it was going to land. +2005-04-25,37.9886111,-84.4777778,Lexington,KY,disk,1200,Disk-shaped object hovering up in the sky and traveling slowly for about 20 minutes with a brief flash of light coming out of it. +2005-04-25,33.5716667,-116.0763889,Mecca,CA,unknown,360,Unknown Spotlight flashes on Canyon +2005-04-25,44.4213889,-84.1166667,Rose City,MI,light,60,Bright light dimmed to small red dot. +2006-04-25,47.9447222,-122.3033333,Mukilteo,WA,disk,120,Departing KPAE Paine, Everett at approx 09:30 on 777, we notice 3 gray whales off the southern tip of wibley island. While turning to +2006-04-25,39.6294444,-79.9561111,Morgantown,WV,fireball,20,Red/orange/blue bolt across the sky.. +2006-04-25,38.9952778,-110.1611111,Green River,UT,teardrop,3,SILVER / CHROME METALLIC FLYING OBJECT 3 ft. to 4 ft. wide by 8 ft. to 10 ft. long Sighting: Object flew 37-50 feet above ou +2006-04-25,42.1083333,-72.0791667,Sturbridge,MA,unknown,2700,Cylinder of Light in the Night Skies. +2006-04-25,45.5236111,-122.675,Portland (Near),OR,rectangle,4,Faint transparent rectangle with red & green southwest of Portland, Oregon. +2007-04-25,44.0463889,-123.0208333,Springfield,OR,circle,10800,Many bright lights moving very fast in the nights sky. +2007-04-25,40.9494444,-72.5819444,Jamesport,NY,oval,5,Oval, star like object moving qucikly over Eastern Long Island +2007-04-25,36.9880556,-121.9555556,Soquel,CA,unknown,2,a flashing star and a flash under the star. +2007-04-25,35.0844444,-106.6505556,Albuquerque,NM,rectangle,150,White rectangle seen falling and then speeding off apparently under power of two "cones" of orange lights that suddenly came out +2007-04-25,35.6869444,-105.9372222,Santa Fe,NM,sphere,60,Bright blue and yellow glowing orb streaking accross the sky at warp-speed +2008-04-25,27.9472222,-82.4586111,Tampa,FL,chevron,20,Cheveron craft over Tampa, FL +2008-04-25,39.1341667,-93.9825,Wellington,MO,egg,3,wow.....the ufo was awesome....but it took my cow......i want my cow back.... 500 Lights On Object0: Yes +2008-04-25,37.3394444,-121.8938889,San Jose,CA,triangle,35,i was looking at the stars early this morning when all of the sudden one star starts moving from i would say mid west skies heading eas +2008-04-25,29.6991667,-91.2066667,Morgan City,LA,other,4200,Orange pulsating streak high up in the North East early morning sky in the area of Morgan City Louisiana +2008-04-25,33.9561111,-83.9880556,Lawrenceville,GA,other,240,Daylight object at about 20 miles, traveling at 200+ mph, roughly ovoid in shape, metallic color. +2008-04-25,30.4380556,-84.2808333,Tallahassee,FL,light,120,2 balls of light making unusual turns +2008-04-25,30.2669444,-97.7427778,Austin,TX,teardrop,1980,Durning a lightning storm a grey jellyfish looking craft that emitts no light changes in to a 3-D rectangle with lights. +2008-04-25,35.9938889,-78.8988889,Durham,NC,oval,120,Object viewed over I-40 during daylight +2008-04-25,41.7636111,-72.6855556,Hartford,CT,other,180,a silver bright object! +2008-04-25,36.5858333,-79.3952778,Danville,VA,sphere,240,Bright flickering sphere without sound stays in position for almost 5 minutes. +2008-04-25,38.2541667,-85.7594444,Louisville,KY,changing,45,Black silent, fairly slow moving craft slowly passed over downtown Louisville Ky. +2008-04-25,26.6402778,-81.8725,Fort Myers,FL,circle,60,Disappearing light over Fort Myers +2008-04-25,47.6063889,-122.3308333,Seattle,WA,sphere,5400,Fast moving lights over Seattle +2008-04-25,47.6063889,-122.3308333,Seattle,WA,light,300,Bright, FAST moving lights above Seattle, visible only using 3rd Generation Night Vision. +2008-04-25,42.0083333,-91.6438889,Cedar Rapids,IA,light,480,Two bright lights with about four or five smaller lights scattered near it dissapeared after being seen for around 8 seconds +2009-04-25,39.0769444,-84.1769444,Batavia,OH,triangle,60,i saw a bright light that i though was awfully bright, and low to the ground to be a normal plane. i also noticed there was no flashing +2009-04-25,33.8302778,-116.5444444,Palm Springs,CA,cigar,15,another craft sighting near the san jacinto mountains in california. +2009-04-25,36.3047222,-86.62,Hendersonville,TN,other,120,Unknown Object Around Powerlines +2009-04-25,38.9516667,-92.3338889,Columbia,MO,oval,2700,Three bright lights illuminating from behind clouds darting in irregular patterns at very high speed... also hovering and circling. +2009-04-25,40.7652778,-73.8177778,Flushing,NY,diamond,3600,saw something in the sky at about 50 degrees east, maybe 2000 feet up. this thing had what appeared to be two, then three lights, all t +2009-04-25,33.8352778,-117.9136111,Anaheim,CA,triangle,12,Triangular shape object with very faint, dimmed circles for gray light seen over Disneyland. +2009-04-25,33.4483333,-112.0733333,Phoenix,AZ,fireball,4,Fireball in Northern Phoenix Sky. ((NUFORC Note: Possible meteor?? PD)) +2009-04-25,35.1477778,-114.5675,Bullhead City,AZ,other,5,Meteorite falls in Mohave County Arizona, bright flash observed over horizon. +2010-04-25,32.5888889,-96.3086111,Kaufman,TX,fireball,300,I was looking west at the night sky looking for meteorites. I saw what i thought was a great one come in very fast almost straight ove +2010-04-25,32.5888889,-96.3086111,Kaufman,TX,fireball,360,My report of Sunday night April 24 9:50 pm 17:50 hrs I was out in the open Night sky lying on my hammock with my face toward the north +2010-04-25,33.6680556,-117.3263889,Lake Elsinore,CA,oval,300,((HOAX)) disk flew up very fast +2010-04-26,34.8697222,-111.7602778,Sedona,AZ,disk,3,In April 2010 myself and my wife were in Sedona Az on vacation we were in one of the parks taking pictures. My wife went off by herself +2011-04-25,34.3988889,-119.5175,Carpinteria,CA,disk,600,Disc in sky +2011-04-25,34.3988889,-119.5175,Carpinteria,CA,disk,600,Silver disc/saucer in sky +2011-04-25,32.9311111,-96.4594444,Rockwall,TX,rectangle,12,Rectangular object soaring silently with no lights or sound and with a digital camouflage pattern +2011-04-25,32.7833333,-96.8,Dallas,TX,triangle,180,An event I thought was awesome! +2012-04-25,34.1075,-85.3363889,Cave Spring,GA,other,60,White starlike object moving, stopped and vanished. +2012-04-25,30.0797222,-95.4169444,Spring,TX,sphere,120,Not a plane +2012-04-25,44.8994444,-97.1147222,Watertown,SD,unknown,120,Large contrail left by a High Altitude/High Speed Recon Aircraft heading East maybe from CA/NV area. +2012-04-25,27.2436111,-80.83,Okeechobee,FL,light,60,Bright objects in sky. +2012-04-25,33.3138889,-82.0969444,Hephzibah,GA,circle,15,5 Bright Orange lights over South Augusta, Georgia +2012-04-25,32.5380556,-81.9325,Portal,GA,fireball,900,3 people see 4 appearances of orange light UFO over Bulloch County, Georgia, U.S.A. +2012-04-25,31.1158333,-90.1419444,Tylertown,MS,oval,900,bright lights, like spot lights, motor sounded like chainsaw +2012-04-25,28.9972222,-82.4708333,Citrus Springs,FL,light,1800,Saw 1 object pulsating red and blue color very bright in the west sky over crystal river power plant area. It was a good distance above +2012-04-25,41.5141667,-74.3838889,Circleville,NY,triangle,600,We were driving on Brown Rd between Circleville, NY and Fair Oaks, NY. Before we were about to get on the highway near the bridge. We +2012-04-25,46.8083333,-100.7833333,Bismarck,ND,triangle,5,~7 Orange lights in a triangular formation moving silently across the entire sky in about 4 seconds before disappearing into the night. +2013-04-25,41.7105556,-96.0213889,Mondamin,IA,circle,60,Bright orange object hovered over timber then took off at high rate of speed. +2013-04-25,42.8886111,-88.0383333,Franklin,WI,sphere,360,AN OBJECT AT FIRST GLANCE APPEARS TO BE MOON LIKE BUT IS SOME SORT OF AIRCRAFT. +2013-04-25,39.9688889,-82.9377778,Bexley,OH,light,300,Approximately 7:35 A.M. one orange horizontal light that expands and shrinks between 1-3 foot. +2013-04-25,39.7683333,-86.1580556,Indianapolis,IN,light,30,White light turned red and vanished. +2013-04-25,35.0844444,-106.6505556,Albuquerque,NM,rectangle,3,I was facing to the Eastern sky at angle of 35 degrees rise from horizon. The little dipper is to my left. I am watching a jet high i +2013-04-25,35.0886111,-92.4419444,Conway,AR,circle,120,Circle of steady, white light seen near Conway, AR. +2013-04-25,43.5341667,-70.9102778,Acton,ME,triangle,240,Black triangular silent craft with 3 white blinking lights on corners and one red one in center. +2013-04-25,35.0455556,-85.3097222,Chattanooga,TN,circle,60,Round fading orb +2013-04-25,47.7661111,-116.7855556,Hayden,ID,fireball,5,A blue/green cone shaped trail with a flash of orange and a flash of white at the head, then a dark object disappearing. +2013-04-25,40.4172222,-74.0625,Leonardo,NJ,sphere,120,Two very large orange spheres/circles sat motionless in the sky over the Sandy Hook Bay +2013-04-25,34.61,-112.315,Prescott Valley,AZ,changing,30,Bright orange pulsating lights on Western horizion moving in all directions then dissapeared with no sound, +2013-04-25,26.1,-80.4,Weston,FL,fireball,180,I was on the high way driving about to exit the &quot;Exit 13B&quot; When in thr sky I saw these orange/redish balls of some sort. 8 of +2013-04-25,33.1191667,-117.0855556,Escondido,CA,circle,240,STRANGE ORANGE LIGHTS IN THE SKY +2013-04-25,47.4294444,-122.5444444,Olalla,WA,sphere,300,False Moon. +2013-04-25,33.4483333,-112.0733333,Phoenix,AZ,circle,600,This is in response to your show on Coast to Coast last night.. 5/28/13. I have been employed as an Airfield Management Specialist +2013-04-25,39.6477778,-104.9872222,Englewood,CO,cylinder,60,It's coming to the anevirisy of my sighting so I decided to get this report to you - National UFO Reporting Center - that I hear on Coa +2014-04-25,40.7355556,-74.1727778,Newark,NJ,disk,300,I witnessed this event that took place, have definitely cited previous ufo activity in the sky seeing two obejcts. I know what I saw. +2014-04-25,46.4022222,-120.2608333,Zillah,WA,flash,7200,Three multi-colored objects in western sky. +2014-04-25,39.5347222,-107.7825,Rifle,CO,sphere,300,Week long event so far dont know what they are but not from here. +2014-04-25,34.4233333,-118.4711111,Canyon Country,CA,oval,10,Large oval shaped white light. +2014-04-25,34.1975,-119.1761111,Oxnard,CA,light,30,Small to medium sized ball of light. +2014-04-25,39.6294444,-79.9561111,Morgantown,WV,other,900,Observed 12-18 flickering, yellowish-burning objects following a path NW to SE above Morgantown, WV. +2014-04-25,45.8919444,-123.9602778,Cannon Beach,OR,light,300,2 orange orbs and 3 white disks objects was seen by 2 witnesses. +2014-04-25,30.7847222,-83.56,Quitman,GA,triangle,180,Triangle object moving north. +2014-04-25,33.4052778,-86.8113889,Hoover,AL,unknown,120,Strange light in Birmingham disappears instantly 2 witnesses. +2014-04-25,32.4608333,-84.9877778,Columbus,GA,light,120,Dozens of flickering fast moving lights. +2014-04-25,42.5277778,-92.4452778,Cedar Falls,IA,light,180,Amber light. +2014-04-25,30.5475,-88.1752778,Theodore,AL,fireball,300,Saw orange glowing balls of fire above Theodore. +2014-04-25,42.4775,-83.0277778,Warren,MI,triangle,300,Red ind color, no blinking red or blue lights, just soild red, moving slower than a plane much high altitude, with blinking blue an +1959-04-26,40.635,-80.2283333,Baden,PA,cylinder,900,Report from the past - Orangish saucer shaped with black rotating center +1977-04-26,39.0997222,-94.5783333,Kansas City,MO,other,30,Symmetric geometric shape, black with blinking long red lights. +1988-04-26,32.7833333,-96.8,Dallas,TX,light,120,3 lights in trianglular formation over nw dallas +1996-04-26,26.2030556,-98.2297222,Mcallen,TX,disk,300,At school my friend and I saw ufo hovering back and forth behind a radio anntena, to slow for plane too fast turning for chopper. It wa +1998-04-26,44.8041667,-93.1666667,Eagan,MN,light,5,I glanced skyward and saw an object moving extremely quickly across the night sky. It appeared as two points of light, seperated but tr +1998-04-26,34.0636111,-83.1255556,Comer,GA,disk,1800,on 4/25-26/98, a strange object was seen in the southern sky b/w 23:50 & 0:20. it hovered high in sky, moved quickly to southeast, hov +1999-04-26,37.3722222,-104.2444444,Model,CO,light,120,Bright yellow-orange light stationary at first, then accelerated to right and faded out until it disappeared. +2000-04-26,41.6986111,-88.0683333,Bolingbrook,IL,oval,300,Saw flashing light UFO while driving home, UFO in northeast sky. Lights went out on street. +2001-04-26,35.0844444,-106.6505556,Albuquerque,NM,light,180,Upon driving from Albuquerque to El Paso, TX I came upon two red lights that were going across the sky following a star pattern. They m +2001-04-26,36.175,-115.1363889,Las Vegas,NV,changing,120,Group of five lights crossed Las vegas sky from south to north constantly changing formation early am. +2001-04-26,42.2458333,-84.4013889,Jackson,MI,unknown,480,fast moving over Michigan +2001-04-26,34.6991667,-86.7483333,Madison,AL,flash,300,Purple and green blinking stationary object. +2001-04-26,42.3427778,-87.9980556,Wildwood,IL,sphere,900,At night saw 2 objects in the distance which remained stationary for about 10-15 minutes then seperately moved away +2002-04-26,39.9097222,-75.0483333,Westmont,NJ,light,3,Brilliant greenish white light streak in the Southwest sky at 6 AM EST 04/26/02 seen in Southern NJ, USA +2002-04-26,47.6063889,-122.3308333,Seattle,WA,sphere,120,Two silver spheres flying together. +2002-04-26,30.3319444,-81.6558333,Jacksonville,FL,cylinder,120,It was a UFO +2003-04-26,33.2075,-92.6661111,El Dorado,AR,circle,300,Eight Purple Circle like objects...Could it be a UFO? +2003-04-26,39.6133333,-105.0161111,Littleton,CO,disk,30,I was walking behind the strip mall next to my house on my way to the gas station. I looked up, and just above the roof of the strip m +2003-04-26,33.3763889,-117.2502778,Fallbrook,CA,cylinder,900,white marbell shaped object +2003-04-26,33.7488889,-84.3880556,Atlanta,GA,disk,30,The saucer was flying south, parallel to I-75 +2003-04-26,30.3741667,-86.3586111,Miramar Beach,FL,sphere,300,An orange ball over Choctawhatchee Bay, in Walton County +2003-04-26,33.6411111,-117.9177778,Costa Mesa,CA,light,1800,star-like objects in changing formations +2003-04-26,32.7355556,-97.1077778,Arlington,TX,light,5,Leap-frogging lights - 3 in front group and one trailing behind. +2004-04-26,33.4222222,-111.8219444,Mesa,AZ,light,5,White light falling from the sky. +2004-04-26,39.0997222,-94.5783333,Kansas City,MO,other,60,Orange "flare-up" - plane shaped. +2004-04-26,47.0380556,-122.8994444,Olympia,WA,light,1800,5 objects over Olympia, WA chasing each other while turning into bright concentrated balls of light then to nothing. +2004-04-26,40.8013889,-80.1275,Harmony,PA,light,15,a green and yellow flahing light, that moved vertical in a matter of seconds in a very rapid speed. then no lights. then dark red ligh +2004-04-26,40.1672222,-105.1013889,Longmont,CO,cigar,60,Very fast low flying cigar shaped object with 4 diamond shapes on the bottom. +2004-04-26,34.0522222,-118.2427778,Los Angeles,CA,triangle,3,black V shaped object over West LA +2004-04-26,41.8297222,-86.2541667,Niles,MI,other,120,3 extremely bright lights all in a row hover above trees on side of road, move, then come back, then take off in seconds. +2004-04-26,34.1683333,-118.605,Woodland Hills,CA,light,3600,Hovering, erratic green light appears for more than one hour in the Southern California sky. ((NUFORC Note: Sighting of Venus? PD)) +2004-04-26,40.8,-96.6666667,Lincoln,NE,circle,15,I watched as a bright object chased a jet airliner,caught up to the airliner,and flew right above the airliner for one to two seconds t +2005-04-26,32.2216667,-110.9258333,Tucson,AZ,teardrop,900,Object seen and photographed flying in and out of "chemtrail" in Tucson Arizona +2005-04-26,43.5277778,-71.4708333,Laconia,NH,other,60,low flying octogon craft +2005-04-26,44.2238889,-68.6780556,Deer Isle,ME,light,1800,Deer Isle maine Light Show +2005-04-26,44.2238889,-68.6780556,Deer Isle,ME,other,2700,Orbs with auras moving north and a triangle shaped object moving over 30 + foot trees. +2005-04-26,45.5394444,-122.3861111,Troutdale,OR,light,5,Fast Moving Light +2005-04-26,35.3858333,-94.3983333,Fort Smith,AR,disk,1800,6 circular objects seen over Ft. Smith @ 22:30 on April 26, 2005. Lights rotated ((NUFORC Note: Possibly advertising lights?? PD)) +2005-04-26,41.7355556,-111.8336111,Logan,UT,triangle,10,Triangular craft defined by five dim lights moves to the North over my head without making a sound +2005-04-26,41.0041667,-92.3736111,Ottumwa,IA,triangle,300,Note: I don't remember the exact time, but it was sometime between 10 PM and 12 AM I believe. I used to keep my window open before +2006-04-26,32.6630556,-95.4880556,Mineola,TX,other,3600,Slow moving, low flying 3 light object, not a helicopter, with a dual humming sound. +2006-04-26,46.4886111,-87.6675,Ishpeming,MI,light,600,Odd light changing color, seemed to worry dog. +2007-04-26,28.5380556,-81.3794444,Orlando,FL,formation,30,Four red lights were seen suspended in a square formation over a treeline on Town Center Blvd, heading towards Landstar at 3:00AM +2007-04-26,37.5483333,-121.9875,Fremont,CA,disk,5,2 figures and craft seen on ground near San Francisco Bay. +2007-04-26,37.5969444,-115.2233333,Hiko,NV,unknown,180,Hovering orb, brilliant illumination, falling debris, vehicle collision with objects +2007-04-26,30.5880556,-103.8941667,Fort Davis,TX,disk,300,Daylight reporting of a large saucer shaped UFO in West Texas +2007-04-26,39.5297222,-119.8127778,Reno,NV,light,60,A white light dropped slowly from the sky & shifted to a level flight and faided out. +2007-04-26,37.9841667,-120.3811111,Sonora,CA,unknown,60,Light +2007-04-26,39.7475,-122.1952778,Orland,CA,light,30,White, star-like light holds position in sky before moving slowly and then disappearing altogether. +2008-04-26,47.6063889,-122.3308333,Seattle,WA,light,300,Bright red orbish light hovering over Seattle bay area! +2008-04-26,42.8005556,-71.3047222,Windham,NH,oval,30,Black oval aircraft with red lights around the edge, dark blue beam off light came from bottom of ship, flew very slowly. 500 Light +2008-04-26,33.0655556,-96.2275,Caddo Mills,TX,disk,5,Bright ball going east to west. +2008-04-26,32.3525,-90.8777778,Vicksburg,MS,flash,10,2 bright lights moving at a high rate of speed over Vicksburg,MS +2008-04-26,38.5827778,-90.6627778,Wildwood,MO,light,5,Long blue/green flash of light with red core seen for brief moments in the western night sky. +2008-04-26,38.2919444,-122.4569444,Sonoma,CA,triangle,30,V shaped sighting in Sonoma +2008-04-26,32.5041667,-94.5738889,Hallsville,TX,changing,30,Green light moves across Texas sky and then disappears. +2008-04-26,40.7608333,-111.8902778,Salt Lake City,UT,oval,600,OBJECT AT FL200 MASKING IN A CLOUD PACING AIRLINER +2008-04-26,31.0547222,-95.1255556,Groveton,TX,unknown,3,Fast moving object. Three white lights on side or bottom. +2008-04-26,36.2297222,-93.1075,Harrison,AR,cylinder,60,missle-shaped object with red and blue lights. greenish/blue, reddish/orange "fire" coming from tail. disappeared almost immediately. +2008-04-26,36.2297222,-93.1075,Harrison,AR,cylinder,60,short sighting over harrison, ar. +2008-04-26,30.2363889,-93.3772222,Sulphur,LA,unknown,4,There were two green lights on one object that moved across the sky, rotated, then disappeared. +2008-04-26,35.6727778,-89.5733333,Henning,TN,triangle,30,2 triangler shaped objects with multiple color lights traveled across the sky side by side and then vanished +2008-04-27,29.7630556,-95.3630556,Houston,TX,other,900,Advanced flying machines in harris county. +2009-04-26,40.7141667,-74.0063889,New York City (Brooklyn),NY,circle,14,VIDEO of orb in Brooklyn, NY 4/26/09 +2009-04-26,47.6541667,-118.1488889,Davenport,WA,other,5,Two steady parallel lights moving west spotted in Lincoln County, Washington. +2009-04-26,41.8975,-84.0372222,Adrian,MI,triangle,300, I saw four white lights, three in a row, one slightly lower and directly under the last moving in a northeast direction at a very slow +2009-04-26,43.2166667,-123.3405556,Roseburg,OR,sphere,30,crazy ball of light! +2009-04-26,47.6105556,-122.1994444,Bellevue,WA,cigar,60,While filming the crescent moon, I noticed a cigar shaped shadow about 1/4 of the way down creep up and out of sight. +2010-04-26,30.4380556,-84.2808333,Tallahassee,FL,sphere,1800,Tallahassee Sighting +2010-04-26,40.8291667,-85.3355556,Markle,IN,sphere,120,PIC: 5+ crafts seen on 69, , +2010-04-26,33.6125,-117.7119444,Laguna Hills,CA,fireball,180,Pulsating orb appears over houses and draws police attention. +2011-04-26,45.0563889,-92.8058333,Stillwater,MN,sphere,60,greenish white orb/sphere appeared and disappeared over highway in Stillwater MN around 12:30 am +2011-04-26,41.2458333,-75.8816667,Wilkes-Barre,PA,rectangle,10,Rectangular object with round lights in it flying low altitude at a high rate of speed over Wilkes-Barre sky's +2011-04-26,26.1,-80.4,Weston (I-75),FL,sphere,120,Dancing UFO's +2011-04-26,41.9452778,-74.9133333,Rockland,NY,light,10,odd +2011-04-26,31.4861111,-82.0172222,Screven,GA,fireball,120,orange and white fireball +2011-04-26,37.3394444,-121.8938889,San Jose,CA,light,300,San Jose - red object in sky heading south. +2012-04-26,24.6694444,-81.3541667,Big Pine Key,FL,chevron,10,Star like lights flying silently in a perfect boomerang formation, high rate of speed disappeared suddenly +2012-04-26,39.7219444,-85.8891667,New Palestine,IN,diamond,4,Squared flying object in western sky of New Palestine Indiana April 26 2012 +2012-04-26,39.0483333,-95.6777778,Topeka,KS,other,10,Shadow like v shape no lights about no more then 1000 and 1500 ft. in the sky +2012-04-26,34.0975,-117.6475,Upland,CA,oval,50,Sitting in bus waiting for departure,I looked up north more straight up than anything.I was looking at the cloud formations..Cloudy wit +2012-04-26,46.6022222,-120.5047222,Yakima,WA,teardrop,30,Silver tear drop craft lost time, confusion +2012-04-26,41.4080556,-92.9161111,Pella,IA,disk,12,Ultra-sonic disk +2012-04-26,40.4211111,-79.7883333,Monroeville,PA,circle,15,Light moving slowly. +2012-04-26,38.6702778,-89.9844444,Collinsville,IL,light,45,Bright orange non-blinking sphere that made no audible sound heading from southwest to northeast. +2012-04-26,32.7225,-110.64,Mammoth,AZ,light,180,6 huge balls of orange light seen east of Mammoth, Arizona +2012-04-26,31.1502778,-81.3697222,St. Simons Island,GA,circle,30,Small round white dots of light high in the sky zig zagging with sharp turns +2012-04-26,25.7738889,-80.1938889,Miami,FL,chevron,15,Boomerang or V shaped UFO. +2012-04-26,34.2694444,-118.7805556,Simi Valley,CA,light,480,Descending light South of 118 freeway +2012-04-26,36.9202778,-88.52,Symsonia,KY,light,10,Silent , extremely bright , blueish hue and trail . No shape +2012-04-26,28.7394444,-81.1152778,Geneva,FL,triangle,20,A triangular shaped UFO lined with red lights that went on and off at 3 second intervals. +2012-04-26,41.4463889,-86.1480556,Bremen,IN,oval,3600,Lights seen in the Northwestern sky over Bremen, IN. ((NUFORC Note: Sighting of Venus?? PD)) +2012-04-26,26.1902778,-97.6958333,Harlingen,TX,oval,180,4/26/12 10:29PM OBLONG/OVAL, BIG TRANSLUCENT, UNKNOWN SILENT OBJECT FLYING ABOUT 400 FEET IN THE SKY. +2012-04-26,39.6133333,-105.0161111,Littleton,CO,light,180,Pulsating light with no red beacon, navagation or strobe lights moving into a lightning storm. +2013-04-26,42.2527778,-71.0027778,Quincy,MA,triangle,3600,Two unidentified triangular objects circling 02169 +2013-04-26,45.7544444,-122.8763889,Scappoose,OR,circle,725,Red lights. +2013-04-26,45.4208333,-122.6694444,Lake Oswego,OR,light,300,Four distinct Orangish /red lights in sky in an arc over Lake Oswego, Oregon at just at dusk, moving west east then slowly fading away +2013-04-26,33.5205556,-86.8025,Birmingham,AL,light,300,Bright light object floating in night sky, disappears when another craft comes up. +2013-04-26,42.5583333,-70.8805556,Beverly,MA,circle,300,((HOAX??)) Circle hovering spinning white and yellow lights. +2013-04-26,32.2216667,-110.9258333,Tucson,AZ,light,300,A dozen fast moving orange/peach colored lights west of Tucson +2013-04-26,44.9133333,-93.5030556,Minnetonka,MN,circle,5,Blue circle of lights seen hovering over Minnetonka, MN then rapidly descending towards the ground. +2013-04-26,33.6888889,-78.8869444,Myrtle Beach,SC,light,180,1 then 2 lights flying very close to each other slowly, not airplane lights +2013-04-26,28.5380556,-81.3794444,Orlando,FL,diamond,3600,There is an object floating in the sky, moving up and down and side to side. Then stays put for a good amount of time. This object is b +2013-04-26,45.52,-123.0586111,Cornelius,OR,circle,180,7 Orange ball shaped objects moving quickly across the sky stayed for 3 min then dissapeared.viewed by 3 people +2013-04-26,41.3686111,-74.7005556,Matamoras,PA,light,180,Two solid red lights moving in formation with no sound over Matamoras, PA for 2 minutes before suddenly disappearing. +2013-04-26,37.4136111,-79.1425,Lynchburg,VA,triangle,600,Lights in the sky +2013-04-26,41.6638889,-83.5552778,Toledo,OH,fireball,240,Seven Fireball-like objects spotted in Toledo, Ohio +2013-04-26,45.1608333,-93.2347222,Blaine,MN,formation,15,Rotating triangular formation of lights seen moving across sky. +2013-04-26,40.2969444,-111.6938889,Orem,UT,light,60,Spheres of red/orange lights in the sky. +2013-04-26,43.6136111,-116.2025,Boise,ID,triangle,20,This was he third UFO I have seen over Boise in the past eight months. Last night I saw the classic triangle UFO traveling north over C +2013-04-26,30.2669444,-97.7427778,Austin,TX,rectangle,20,The object almost impacted our windshield +2013-04-26,32.4638889,-86.4597222,Prattville,AL,light,600,Bright reddish-orange orbs travel NW in triangle formation, followed by other orbs. +2013-04-26,32.4638889,-86.4597222,Prattville,AL,unknown,120,A strand of 15+ slow moving objects stretched from high in the sky to the horizon. +2013-04-26,47.0344444,-122.8219444,Lacey,WA,light,120,Bright red light moving north to north west from the horizon till it disapeared behind the clouds. +2013-04-26,47.0344444,-122.8219444,Lacey,WA,sphere,120,Red over olympia wa. +2014-04-26,28.8355556,-82.3305556,Inverness,FL,circle,480,Glowing reddish orange orbs floating slowly southeast. All same size same color. +2014-04-26,42.7875,-86.1088889,Holland,MI,triangle,6,Dark, Triangular, Fast-moving object sighted in the night sky for a few seconds. +2014-04-26,34.2744444,-81.6188889,Newberry,SC,light,60,Sun shining; white light brighter than the sun. +2014-04-26,29.4238889,-98.4933333,San Antonio,TX,sphere,8,Two UFOs photographed in full daylight, one punched a cookie-cutter shape in a cloud. +2014-04-26,39.6136111,-86.1066667,Greenwood,IN,cross,20,3 strange cross shaped objects flying at an extremely high altitude and very fast. +2014-04-26,33.3327778,-94.3425,Maud,TX,triangle,10800,Triangle yellowish/peach light zig zag 3hrs over northeast Texas sky at night. +2014-04-26,33.3527778,-111.7883333,Gilbert,AZ,triangle,60,Sitting outside on my back porch I observed the object fly over my house flew over at a slow speed disappeared in about a minute. It wa +2014-04-26,40.0322222,-74.9577778,Riverside,NJ,diamond,120,Floating fire ball object in the shape of a diamond. +2014-04-26,33.9791667,-118.0319444,Whittier,CA,fireball,120,Orange, glowing fireball flying north; was fast as an airplane but not an airplane; after my bday party; no one else saw it? +2014-04-26,38.9794444,-90.9805556,Troy,MO,circle,240,Big orange ball shaped object, silent, flew overhead in Troy, MO. +2014-04-26,36.9741667,-122.0297222,Santa Cruz,CA,other,300,Orange floating disappearing lights. +2014-04-26,38.2541667,-85.7594444,Louisville,KY,fireball,180,Balls of fire zig zag down from the sky then disappeared behind a tree after turning blue. +2014-04-26,32.7141667,-97.1561111,Pantego,TX,circle,5,The light was moving very quickly in erratic behavior over veterans park in dalWorthington Texas. +2014-04-26,39.1619444,-84.4569444,Cincinnati,OH,sphere,1200,Series of 14 Orange/Red lights moving across the sky and blinking out. Video recorded. +2014-04-26,39.1619444,-84.4569444,Cincinnati,OH,sphere,900,14 Red/White Spheres Flying Silently over Cincinnati, OH, with video recording. +2014-04-26,28.1458333,-82.7569444,Tarpon Springs,FL,unknown,60,Faint "star" moves across night sky. +2014-04-26,41.1338889,-81.4847222,Cuyahoga Falls,OH,fireball,120,It appeared to be a meteorite fireball that vanished after about 2 minutes. ((NUFORC Note: Not a meteor. PD)) +2014-04-26,42.4805556,-83.4755556,Novi,MI,sphere,120,Pulsating light ball, changing color from orange to red, Possibly a plane with weird lighting. +2014-04-26,39.6952778,-74.2591667,Manahawkin,NJ,triangle,10,Illuminated Fast moving objects in triangle formation moving low across night sky. +1985-04-27,37.775,-122.4183333,San Francisco,CA,cylinder,1170,Redball of light flew sideways in front of window, Mom broth. and I turned and stared. coverded with light knocked us out. +1990-04-27,34.145,-107.8430556,Datil,NM,disk,5,Silver disc flies over mountain in New Mexico dawn April 27, 1990 seen by car driver. +1991-04-27,38.5816667,-121.4933333,Sacramento,CA,changing,1800,Object in CA defied known laws of physics. +1998-04-27,36.9741667,-122.0297222,Santa Cruz,CA,other,900,Sitting on the beach, a man yelled and told people to look at the sky. many observed the craft. Material did not look like metal +1999-04-27,39.8908333,-75.0733333,Audubon,NJ,sphere,60,We looked up and saw something out of the ordinary. An apparent high flying airplane began to make improbable changes in direction. +1999-04-27,40.3977778,-105.0744444,Loveland,CO,circle,300,An orb of orange/yellow light that pulsated or dimmed then brightened period of about a second +1999-04-27,35.198055600000004,-111.6505556,Flagstaff,AZ,triangle,1200,Driving North on Highway 66 and saw a 2 bright white lights. I asked my husband what it was (we drive home this way every day/night). +1999-04-27,32.8794444,-111.7566667,Casa Grande,AZ,other,900,West 4 orbs observerd for appx for 15 min +2000-04-27,33.8302778,-116.5444444,Palm Springs (Outside Of),CA,triangle,45,Dull Black Triangle with unattached capsule hovering briefly, then took off at an unbelievable speed-no noise! +2000-04-27,44.1002778,-70.2152778,Lewiston,ME,light,2,It was about 1:00 pm. My friend and I were playing Wiffle ball when A very bright, orange ball appeared out of nowhere, probably a few +2000-04-27,43.3666667,-124.2166667,Coos Bay,OR,light,3,moving light,very bright not like meteor,but moving like one. left fine contrail. +2000-04-27,32.7833333,-96.8,Dallas,TX,light,10,April 27 sighting in Dallas TX. Possibly the same object previously reported from Plano TX. +2000-04-27,34.61,-112.315,Prescott Valley,AZ,circle,6,MY WIFE AND I WENT ON VACATION TO PRESCOTT VALLEY ARIZONA TO LOOK FOR THOSE SO-CALLED MYSTERIOUS LIGHTS AND UFOS WHICH I READ SO MUCH A +2000-04-27,34.5036111,-93.055,Hot Springs,AR,cigar,20,A large very fast moving craft. It had four bright white lights in a row angled downward. At first the lights looked like there were st +2000-04-27,33.0197222,-96.6986111,Plano,TX,triangle,3,I saw a craft moving at an incredible speed, from north to south. The object was lit on it's underside, but only in a pattern of a rod. +2001-04-27,33.3527778,-111.7883333,Gilbert,AZ,oval,2400,Object observed for 40 minutes in daylight fits no known aircraft descriptions. +2001-04-27,47.6588889,-117.425,Spokane,WA,sphere,12,A black spherical object was sighted in Spokane, WA traveling a NorthEasterly direction, during a thunder-storm. +2001-04-27,42.7166667,-70.9736111,Marlboro,MA,sphere,1200,Circular object with rotating lights. +2001-04-27,36.175,-115.1363889,Las Vegas,NV,formation,5,Silent and extremely fast-moving V-formation of 8 orangish lights. +2001-04-27,33.4147222,-111.9086111,Tempe,AZ,oval,90,Large, shape changing, luminescent changing , direction changing, object traveling at a constant speed from East to West in the South +2001-04-27,47.6063889,-122.3308333,Seattle,WA,diamond,600,8-9 identical hovering, stationary objects with oscillating diamond shaped white light patterns. 70-100 feet above Seattle I-5 corridor +2001-04-27,32.835,-116.7655556,Alpine,CA,triangle,5,Sighted a triangle object, dark moving at a tremendous speed, silently out of sight past the horizon in 5 seconds. +2002-04-27,42.1344444,-73.8922222,Germantown,NY,sphere,360,They really do look like orbs...? +2002-04-27,29.3011111,-94.7975,Galveston,TX,other,20,Strange shape observed gliding over Galveston island during a warm Saturday afternoon. +2002-04-27,38.0072222,-89.6583333,Steeleville,IL,fireball,5,BALL OF FIRE STREAKED DOWN FROM THE SKY. +2002-04-27,34.2255556,-77.945,Wilmington,NC,light,10,While looking toward the north at the night sky, I observed a bright star-like light moving slowly across the sky.The light was as +2002-04-27,30.3319444,-81.6558333,Jacksonville,FL,circle,4,I observed an object with a peculiar flight path and unusual lighting characteristics. +2002-04-27,45.5236111,-122.675,Portland,OR,circle,240,Crescent of lights, may have been edge of large craft. +2003-04-27,30.2669444,-97.7427778,Austin,TX,fireball,2,green fireball +2003-04-27,33.4222222,-111.8219444,Mesa,AZ,diamond,600,6 BRIGHT LIGHT SEEN OVER MESA AZ. IN BROAD DAYLIGHT BY 6-10 ADULT WITNESSES, OBJECTS WERE MOVING VERY RAPIDLY ACROSS THE SKY +2003-04-27,35.8166667,-85.5669444,Quebeck,TN,oval,300,oval with orange lights with balls shooting off of it +2003-04-27,32.7152778,-117.1563889,San Diego,CA,fireball,600,Orange Light in the Sky Pacific Beach +2003-04-27,47.8211111,-122.3138889,Lynnwood,WA,triangle,15,Three lights. They one in front corrected itself by moving right and backwards to form a triangle. +2004-04-27,33.7513889,-84.7477778,Douglasville,GA,light,300,My wife and I were riding in our SUV. We were going back home after going to the local video store when I looked up and noticed lights +2004-04-27,40.7147222,-111.3,Oakley,UT,disk,2,I was taking photos of some property in Oakley, UT when I caught this disk shaped object in the sky. +2004-04-27,33.5091667,-111.8983333,Scottsdale,AZ,sphere,7,Friday at around 4:30 pm I saw a dark blue sphere shaped object that flew from the northwest to southeast in under 10 seconds. +2004-04-27,32.3458333,-111.2455556,Picture Rocks,AZ,light,900,5 Yellow(ish) lights SW over Silverbell Mountains (moving/hovering) +2005-04-27,26.7052778,-80.0366667,Palm Beach,FL,unknown,240,Large bright object w/multicolored lights hovered for minutes then descended downwards at fast rate of speed +2005-04-27,45.5236111,-122.675,Portland,OR,fireball,3,((NUFORC Note: Student report. PD)) Saw a blue flaming asteroid shaped object. there was a weird blue glow around it. +2006-04-27,26.1416667,-81.795,Naples,FL,formation,15,Fuzzy lights over Naples, FL +2006-04-27,45.5236111,-122.675,Portland,OR,oval,60,The UFO that I saw at 1 PM thursday the 27th of april 2006 ,hovering over downtown portland, was a white, rather opaque, imperfect cir +2006-04-27,34.9530556,-120.4347222,Santa Maria,CA,rectangle,60,Large rectangular object with red blinking lights that formed an arch, irratic movements, low flying, suddenly disappeared. +2006-04-27,37.2705556,-76.7077778,Williamsburg,VA,other,240,three aligned lights: white, red, white +2007-04-27,30.4211111,-87.2169444,Pensacola,FL,sphere,600,Bright sphere with contrasting shadows traveling slowly from north to south from 8-11o'clock positions diagonally +2007-04-27,21.4180556,-157.8036111,Kaneohe,HI,sphere,15,reddish star like craft +2007-04-27,47.2530556,-122.4430556,Tacoma,WA,light,600,tacoma wa ufo like a star +2007-04-27,33.7205556,-116.2147222,Indio,CA,fireball,8,Bright object breaks off into three objects and then joins and breaks off again before making an abrupt turn +2007-04-27,34.6991667,-86.7483333,Madison,AL,light,10800,This is my second report , I'm still watching this bright star like ufo. +2007-04-27,33.6888889,-78.8869444,Myrtle Beach,SC,circle,120,light in the sky +2007-04-28,32.4486111,-99.7327778,Abilene,TX,unknown,360,Brilliant magnesium diamond seen over Dyess Air Force Base/ Abilene ,Texas +2008-04-27,39.4577778,-89.4038889,Palmer,IL,triangle,30,Three faintly illuminated lines slowly fly formed in a triangle over Illinois. +2008-04-27,47.0075,-122.9080556,Tumwater,WA,triangle,6,three green lights (triangle formation) over Tumwater Hill WA +2008-04-27,40.6472222,-89.5911111,Creve Coeur,IL,light,10,Red-green light viewed over central Illinois. +2008-04-27,39.8863889,-83.4483333,London,OH,rectangle,90,Quite large red rectangular object in the northeastern sky that moved at a VERY rapid speed away from. +2008-04-27,38.6786111,-121.7722222,Woodland,CA,formation,20,Flying V formation of lights, jittering at impossibly fast speeds, flies slowly across the night sky. +2008-04-27,29.4238889,-98.4933333,San Antonio,TX,changing,300,UFO sighting in San Antonio, Texas +2008-04-27,42.3927778,-83.0497222,Hamtramck,MI,disk,1200,Metallic disc observed from Hamtramck, MI between contrails. +2008-04-27,19.4969444,-155.9216667,Captain Cook,HI,light,300,lights in sky identified +2008-04-27,19.4969444,-155.9216667,Captain Cook,HI,light,300,Lights seen by many, including DJ who announces location in sky. +2008-04-27,19.4269444,-155.9130556,Honaunau,HI,formation,900,Unidentified orange lights maintaining t he shape of a backwards question mark over the coast of the Kona coast of The Big Island , +2008-04-27,40.3977778,-105.0744444,Loveland,CO,circle,300,Seven round,bright orange lights seen, spaced evenly apart, moving in perfect unison without any sound. +2008-04-27,40.3977778,-105.0744444,Loveland,CO,fireball,900,we saw 7 fireball type objects in formation, moving from the northwest to the southeast. +2008-04-27,40.3977778,-105.0744444,Loveland,CO,light,780,eight bright red-orange lights in formation at night traveled from northwest to southeast over my house and disappeared instantly +2008-04-27,35.1494444,-90.0488889,Memphis,TN,fireball,15,Large green fireball with sparks trailing behind +2008-04-27,19.4269444,-155.9130556,Honaunau,HI,fireball,600,10 to 20 lights in the sky above Honaunau, Hi 4/27/08 +2008-04-27,47.4811111,-118.2533333,Harrington,WA,light,5,Two adult males witness a peculiar flare of light in the nighttime sky; not a flare from an Iridium satellite. +2009-04-27,34.2569444,-85.1647222,Rome,GA,circle,1800,Hovering object on Mt. Alto in Rome GA +2009-04-27,41.9558333,-78.6441667,Bradford,PA,other,20,Shiny, symmetrical, metallic object against deep blue sky on sunny day that really stood out +2009-04-27,35.9555556,-80.0055556,High Point,NC,fireball,10800,Multiple round, bright orange objects flew above High Point, NC +2009-04-27,39.7391667,-104.9841667,Denver,CO,other,300,Five lights moving behind cloud, none emerged. +2009-04-27,34.8297222,-82.6016667,Easley,SC,light,7200,Bright light with three different colored lights attached and "danced" across the sky for several house. ((NUFORC Note: Star?? PD)) +2009-04-27,35.7972222,-82.6841667,Marshall,NC,light,600,Four balls of light over NC +2009-04-27,35.2252778,-82.4297222,Tuxedo (On Us Hwy 25, Between Tuxedo And I-26 Exit),NC,other,300,Metal ball with flashing lights hovering next to US 25 in Henderson county, NC +2009-04-27,35.4833333,-86.4602778,Shelbyville (Flat Creek Area),TN,light,30,light moved across sky flashed twice and bathed landscape in sustained bright white light. No sound/wind +2009-04-27,35.9555556,-80.0055556,High Point,NC,fireball,60,7 bright orange glowing lights in a steady formation going NW. +2010-04-27,39.9205556,-105.0861111,Broomfield,CO,sphere,60,A young man in Colorado witnesses three objects interacting in sky, performing impossible maneuvers. +2010-04-27,41.85,-87.65,Chicago,IL,triangle,240,Individual shinning objects forming a triangle shape. +2010-04-27,43.1377778,-72.5102778,Saxtons River,VT,sphere,60,High-Speed White Sphere +2011-04-27,43.0125,-83.6875,Flint,MI,light,180,Bright low flying light over Flint Michigan +2012-04-27,41.9163889,-83.3977778,Monroe,MI,triangle,300,Upright triangular type craft with something flying into it, over river and fields in Monroe. +2012-04-27,29.1869444,-82.1402778,Ocala,FL,rectangle,300,Stationary, rectangular object seen in north-central Florida. +2012-04-27,36.8527778,-75.9783333,Virginia Beach,VA,fireball,180,Small fiery orange sphere floats over Va Beach neighborhood and travels slowly, silently and steadily away. +2012-04-27,36.175,-115.1363889,Las Vegas,NV,oval,60,Near sunrise mountain, bright orange red object, somewhat small, traveling as a fairly slow speed came out from between the mountains. +2012-04-27,41.4683333,-75.6033333,Olyphant,PA,fireball,240,Sighting of (3) flaming balls in the sky, which we initially thought was an airplane on fire that eventually disappeared. +2012-04-27,35.0886111,-92.4419444,Conway,AR,light,120,SEVERAL STATIONARY LIGHTS HIGH IN SKY OVER CONWAY ON APRIL 27, 2012 +2012-04-27,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,480,I was driving on the highway when I turned to the right I saw about 8 lights in the sky, all in a line n fairly evenly separated. At fi +2012-04-27,41.114444399999996,-83.1780556,Tiffin,OH,flash,1200,In the parking lot waiting for a family member, saw these objects, got out of car and could not believe what I was seeing. +2012-04-27,36.0725,-79.7922222,Greensboro,NC,sphere,120,UFO over Greensboro, NC 4-27-12 looked like Jupiter but moving very slow all the way across the sky. ((NUFORC Note: ISS? PD)) +2012-04-27,37.3394444,-121.8938889,San Jose,CA,light,15,Yellow orange ball light 20 seconds then gone 10pm pac time no sound traveling plane speed height in sky. +2012-04-27,42.0333333,-88.0833333,Schaumburg,IL,fireball,60,Bright red pulsating object in sky. +2012-04-27,40.1841667,-75.5383333,Royersford,PA,oval,2100,Multi Colored UFO, Above the Limerick Power Plants (silent) +2013-04-27,45.7544444,-122.8763889,Scappoose,OR,sphere,420,April 27th @ 12:20 am 50-100 orange & red lights Scappoose,Oregon.Moving slowly in zig-zag formation across the sky.Duration 7-10 mins +2013-04-27,33.8358333,-79.0480556,Conway,SC,light,2,Fast red light with three bangs. +2013-04-27,29.7263889,-99.0733333,Bandera,TX,light,600,4/27/2013 12:00 am bandera tx 10 mins. light changing white,yellow,red bouncing motion then sped off. 5/17/13 +2013-04-27,33.9813889,-81.2363889,Lexington,SC,circle,300,Coming home I witnesses 7 glowing orange balls in the sky above lakemurray, lexington sc, they were huge and standing g still. +2013-04-27,46.1469444,-122.9072222,Kelso,WA,circle,120,Extremely bright, orange orb traveling steadily N to S. +2013-04-27,32.7177778,-100.9172222,Snyder,TX,disk,420,A large disc hovering about ~30 ft from the ground +2013-04-27,39.5608333,-75.3627778,Alloway,NJ,light,120,I woke up right after being sound asleep from a weird dream. Went downstairs in the house to get a snack right after i woke up. Walked +2013-04-27,33.8941667,-78.4269444,Ocean Isle Beach,NC,light,2,Saw 10 to 12 orange lights in a cube formation flying from east to west near the OIB airport. Heavy cloudcover, only saw it for a few +2013-04-27,27.9011111,-81.5861111,Lake Wales,FL,light,30,Star like light in the sky moving west then fading.. +2013-04-27,40.6083333,-75.4905556,Allentown,PA,circle,60,Headed home from work around 7:45pm driving north when I noticed a bunch of black circles high up in the sky. Stopped at a red light an +2013-04-27,33.4936111,-117.1475,Temecula,CA,oval,2,I was looking for shooting stars a few minutes ago with my wife. This oval object zoomed onto the sky, hovered for a few seconds. +2013-04-27,41.4169444,-87.3652778,Crown Point,IN,sphere,120,Bright orange orbs moving from south to north, from slow to fast, and disappearing into clouds. +2013-04-27,47.3758333,-121.8672222,Selleck,WA,fireball,10,Red fireball observed flying low in western Washington traveling west to east. +2013-04-27,41.6627778,-88.5369444,Plano,IL,fireball,180,5 Fireball objects in sky over far western Chicago suburbs. +2013-04-27,35.6527778,-97.4777778,Edmond,OK,triangle,600,Red lights forming a triangle in Logan County Oklahoma 04/27/2013. +2013-04-27,38.8008333,-77.3258333,Fairfax Station,VA,fireball,120,Red/Orange Fireballs in the Sky +2013-04-27,39.7172222,-74.9697222,Sicklerville,NJ,light,300,Red lights and grey objects floating in and across the sky after disappearing. +2013-04-27,39.7663889,-75.1447222,Sewell,NJ,formation,600,Over 100 lights in formation traveled from east to west slowly at a low elevation. +2013-04-27,40.4405556,-79.9961111,Pittsburgh,PA,circle,6,A circular disc shaped object came from southwest to north, hesitated, shifted to Northwest. It left no vapor trail and made no noise. +2013-04-27,37.6391667,-120.9958333,Modesto,CA,unknown,2,Sonic boom FELT. +2013-04-27,44.98,-93.2636111,Minneapolis,MN,other,20,Silent v-shaped objects with dim blue lights flew north over downtown Minneapolis +2013-04-27,28.6802778,-81.5097222,Apopka,FL,light,480,Sighting of 20-25 Orange Lights moving Silently West Northwest. +2013-04-27,43.6630556,-116.6863889,Caldwell,ID,triangle,7200,Family and I were at the Caldwell drive in last night and I wasn't paying to much attention to the movie. I wasstaring at the stars. +2014-04-27,39.8691667,-75.3827778,Brookhaven,PA,sphere,300,Glowing hovering multi colored sphere hovering above main st school Brookhaven. +2014-04-27,29.5955556,-90.7194444,Houma (Raceland?),LA,triangle,900,Black triangular figure. +2014-04-27,48.1958333,-114.3119444,Kalispell,MT,sphere,5,Playing games and watching tv, out of the corner of the eye and for a duration. Spotted a bright green orb moving very fast got outside +2014-04-27,32.0833333,-81.1,Savannah,GA,light,5,Extremely fast blue light. +2014-04-27,36.0988889,-78.3013889,Louisburg,NC,circle,1800,4 UFOs seen within a half an hour appearing and then vanishing. +2014-04-27,26.6583333,-80.2416667,Wellington,FL,light,120,Blue-violet fireball that gracefully zig-zagged and flew in an arc pattern. +2014-04-27,47.7575,-122.2427778,Kenmore,WA,fireball,1800,Red-orange round disc lights (100+) moving across night sky in Kenmore, WA, on April 27, 2014. +2014-04-27,26.5625,-81.9497222,Cape Coral,FL,circle,60,Large red and pulsing circle of light heading north at varying speeds in Southwest Florida. +2014-04-27,34.2572222,-118.6002778,Chatsworth,CA,chevron,15,South eastern sky at about 50-75 degrees above the horizon. 3 Lined up. 3 Orange and green and then went dark, but still could see the +2014-04-27,35.9605556,-83.9208333,Knoxville,TN,formation,120,10 orange lights in formation vanished in a matter of seconds. +2014-04-27,34.2572222,-118.6002778,Chatsworth,CA,unknown,1200,6 Red/Orange lights in formation seen in NW San Fernando Valley, CA. +2014-04-27,47.7575,-122.2427778,Kenmore,WA,circle,1200,20 to 25 very bright lights (UFOs) observed at the north end of Lake Washington near Seattle. +2014-04-27,47.7558333,-122.3402778,Shoreline,WA,light,600,Red/ orange bright glowing object in the sky over Lake Washington area. +2014-04-27,47.7575,-122.2427778,Kenmore,WA,formation,600,Kenmore, WA, at N end of Lk Washington near Seattle. ((NUFORC Note: Preliminary report from witness. PD)) +2014-04-27,47.7575,-122.2427778,Kenmore,WA,light,1800,UFO (25-30) Bright Orange lights Seen Above Lake Washington, near Seattle +2014-04-27,47.7575,-122.2427778,Kenmore,WA,light,540,Twenty (approx.) UFOs Observed Above Lake Washington, North East of Seattle, Washington. +2014-04-27,47.7575,-122.2427778,Kenmore,WA,unknown,1200,Orange orbs over Kenmore, Wa. Witnessed by 5 +2014-04-27,34.2572222,-118.6002778,Chatsworth,CA,circle,120,ORANGE GLOWING ROUND LIGHTS IN SAN FERNANDO NIGHT SKY +2014-04-27,30.3025,-93.1905556,Moss Bluff,LA,light,5,Red blinking light then short beam scanning surroundings. +2014-04-27,41.0333333,-74.6388889,Sparta,NJ,light,300,Cluster of bright orange orb like lights in the night sky. +2014-04-27,41.0333333,-74.6388889,Sparta,NJ,light,300,While driving I noticed 30-50 orange orbs in the sky that moved in Z formations and then vanished. +2014-04-27,38.2919444,-122.4569444,Sonoma,CA,light,300,Four Orange round lights seen over sonoma. +2014-04-27,47.9544444,-117.4758333,Deer Park,WA,sphere,600,Orange orbs with beams of light. +2014-04-27,48.7597222,-122.4869444,Bellingham,WA,light,1800,Orange lights in V formation and pairs. +2014-04-27,38.8461111,-77.3066667,Fairfax,VA,chevron,60,Chevron. No lights or sound. flew over head calmly fast. night time. 40ft @ 400ft above. +2014-04-27,43.1397222,-84.1680556,Oakley,MI,unknown,180,Two lights. +1965-04-28,39.9866667,-75.4013889,Newtown Square,PA,triangle,300,cars stopped, triangular craft on ground, rose up in air, quiet low humming sound, white light on each corner, in seconds it was gone +1973-04-28,30.4111111,-88.8277778,Ocean Springs,MS,triangle,300,The object was triangle in shape and had two white lights in the front and several in the back. +1981-04-28,38.2325,-122.6355556,Petaluma,CA,rectangle,120,Around the outside edge of the dark red grid, there was a shimmering orange aura +1995-04-28,35.198055600000004,-111.6505556,Flagstaff (Coconino National Forest Area),AZ,triangle,300,A pitch black triangular shaped craft with a red circular light at each point of the triangle. +1995-04-28,42.9633333,-85.6680556,Grand Rapids,MI,triangle,300,Triangle Flotation +1996-04-28,28.1355556,-81.0763889,Holopaw,FL,changing,900,Sunday, April 28, 1996, a day I'll never forget! Had no sound, didn't exactly land in my sight, but I'm pretty sure it did! +1997-04-28,34.6183333,-82.4780556,Williamston,SC,triangle,180,20ft. from the road and 150ft. up a trianguler craft was hovering silently. +1997-04-28,29.7630556,-95.3630556,Houston,TX,light,30,My wife and I witnessed around 10 to 13 amber lights flying in a 'V' formation at a high rate of speed over Houston. +1998-04-28,36.1538889,-95.9925,Tulsa,OK,circle,60,trio of craft +1998-04-28,38.8338889,-104.8208333,Colorado Springs,CO,flash,180,Two people witnessed an extremely bright "star" flash on and fade out in the night sky for approximately 3 to 4 minutes. The "star" m +1999-04-28,36.9741667,-122.0297222,Santa Cruz,CA,changing,120,One large white orange to gold roundish, Looked like incoming meteor at first then slowed and did a slow complete circle up and around +1999-04-28,36.9741667,-122.0297222,Santa Cruz,CA,fireball,600,Red balls of light seen over Monterey Bay in Santa Cruz, CA. Many witnesses. +2000-04-28,42.4391667,-123.3272222,Grants Pass (Murphy Area),OR,circle,120,Flying at high speed from West to East. White star like UFO. Wasn't staying in a straight flight pattern. +2000-04-28,47.6063889,-122.3308333,Seattle,WA,fireball,2,Fireball flying from SW to NE. Appeared white hot with "chunks" of burning material trailing. Round, very large or very low. Very fast, +2000-04-28,40.0638889,-80.7211111,Wheeling,WV,triangle,30,Huge triangular light formation +2000-04-28,47.6063889,-122.3308333,Seattle (Ballard),WA,disk,10,A very bright object passed between the trees very fast with no sound. +2000-04-28,47.3225,-122.3113889,Federal Way,WA,cigar,1,At 10:07 pm Friday night I left my car to enter house. I looked skyward and saw a blue and saw a blue cigar shaped object streak from a +2000-04-28,47.3225,-122.3113889,Federal Way,WA,cigar,1,On that evening I had just returned home and was listening to the news on the radio in my car. The time was 10:06 when I got out and l +2000-04-28,47.6063889,-122.3308333,Seattle,WA,light,1.5,Bright green object flying fast northbound, north of University of Washington in Seattle +2000-04-28,47.6063889,-122.3308333,Seattle,WA,other,3.4,on 04/28/00 at roughly 22:10 i looked off my front porch and saw a big round bright light traveling verry fast ,it made no sound.it was +2000-04-28,32.5158333,-93.7319444,Bossier City,LA,chevron,10,I was standing outside to smoke just before David Letterman tonight. I always smoke outside, never inside; but, I do not ever expect t +2000-04-28,41.6005556,-93.6088889,Des Moines,IA,unknown,120,What I thought was just a satellite, with binoculars I see 3 traveling together at the same speed. +2001-04-28,40.7608333,-111.8902778,Salt Lake City,UT,light,7,Above cloud layer radical course change. +2001-04-28,40.0830556,-74.0686111,Point Pleasant,NJ,unknown,120,Fast moving object late night/early morning over the Jersey Shore. +2001-04-28,39.2086111,-81.1575,Cairo,WV,fireball,2,I just saw a bright green light moving across the sky from east to west, south of town then it exploded into orange sparks. It was prob +2001-04-28,40.7141667,-74.0063889,New York City (Brooklyn),NY,oval,10,Being that I live in an area over which returning flights to Laguaria Airport fly, I am constantly looking up to watch the aircraft as +2001-04-28,40.7141667,-74.0063889,New York City (Brooklyn),NY,oval,10,Sighted two craft oval in shape and white in color on two separate occasions. First was at apx. 1300 hrs. both objects wre traveling si +2001-04-28,45.5236111,-122.675,Portland,OR,fireball,180,Immediately following a very loud, sharp explosion there was a large burst of flame in the sky, followed by dark smoke. of +2001-04-28,37.585,-79.0516667,Amherst,VA,unknown,60,Mother and daughter see UFO once again on farm road in Amherst county, Va. My daughter and I again saw the same lights on the road +2001-04-28,35.7452778,-81.685,Morganton,NC,light,20,Fast moving cluster of erratic white lights spotted over western NC. +2002-04-28,41.9141667,-88.3086111,St. Charles,IL,light,5,I first would like to thank you for acknowledging my e-mail regarding the "3 objects" that I saw last week and on am sorry for not gett +2002-04-28,47.2530556,-122.4430556,Tacoma,WA,triangle,6,At 22:40 pm three lights making a distinctive triangle in the sky was observe passing overhead at a high rate of speed silently. +2003-04-28,41.2411111,-77.0013889,Williamsport,PA,triangle,120,Triangle shapes two of them all black no sound at all low flying prolly about 1ꯠ feet. +2003-04-28,34.7266667,-106.7530556,Los Chavez,NM,disk,600,Early morning, flying craft, thought it was helicopter til radical movements began, then it departed at high rate of speed. (See Photo) +2003-04-28,37.4283333,-121.9055556,Milpitas,CA,circle,180,The UFO was VERY CLOSE to the ground, it was perhaps 60-70 ft over the freeway +2003-04-28,41.7141667,-72.6530556,Wethersfield,CT,diamond,6,it came from one side of the sky and flew across the sky over us (mom ,step dad me) it was almost dimond shape but cut off half a dimon +2003-04-28,34.1577778,-118.6375,Calabasas,CA,unknown,300,Two large white lights in the sky over the hills in Calabasas, CA. +2003-04-28,34.1683333,-118.605,Woodland Hills,CA,other,240,Two Ch-47 Chinook fly low and look for something then disappear. +2003-04-28,34.8525,-82.3941667,Greenville,SC,formation,60,My brother and I were watching the stars when I noticed that there was something wrong. What looked to be a three stars in a triangular +2003-04-28,47.9791667,-122.2008333,Everett,WA,triangle,10,the craft was a "V" shape and had 5 lights. it was so low i saw the actual shape of the object. it was larger than any plane ive seen, +2003-04-28,45.6469444,-84.4744444,Cheboygan,MI,unknown,300,we were looking for satellites when we saw three objects flying in a triangular formation in space +2004-04-28,30.5080556,-97.6786111,Round Rock,TX,oval,5,4 UFOs flying in formation +2004-04-28,33.4147222,-111.9086111,Tempe,AZ,sphere,2,BRIGHT light falling, hour later light leaving south +2004-04-28,47.4158333,-120.2919444,East Wenatchee,WA,formation,300,Large round object in association with string of flashing lights, hovering motionless, then vanish +2004-04-28,33.0580556,-112.0469444,Maricopa,AZ,disk,5,I was driving back to work after lunch and saw an object in the sky. It was white on the top and grey color on the bottom. It was like +2004-04-28,41.6005556,-93.6088889,West Des Moines,IA,changing,120,Iowa Air National Guard and 727 watched by UFO in West Des Moines Iowa ((NUFORC Note: May not be a serious report. PD)) +2004-04-28,44.505,-73.4805556,Keeseville,NY,light,16,unusually shaped, very bright light-no other colors, slowly moving over the town, then disappearing from sight-no sounds +2004-04-28,33.2938889,-111.0955556,Superior,AZ,disk,15,Sighting of craft in night sky twice in Arizona +2004-04-28,35.3733333,-119.0177778,Bakersfield,CA,light,2700,UFO sighting over Bakersfield, CA that lasted for almost an hour!!!! +2004-04-28,34.0583333,-106.8908333,Socorro,NM,light,120,as i was driving on highway 60 just west of socorro nm an orange light-ball shaped-seen going south to north across windshield at low a +2004-04-28,32.8502778,-81.0794444,Varnville,SC,triangle,300,Three lights on the bottom of an unidentified aircraft form a triangular shape. (in South Carolina) 4-28-04 in Varnville at 11:35 p.m. +2005-04-28,28.5380556,-81.3794444,Orlando,FL,flash,45,Was driving and I saw a bright white light hovoring above some trees. It flashed real bright and vanished in the flash. There is an a +2005-04-28,35.9272222,-89.9188889,Blytheville,AR,changing,3600,Stationary hovering object that changed in color, shape and magnitude. +2005-04-28,19.6227778,-155.9522222,Holualoa,HI,light,120,Intermittant light source and strange trajectory immediately got my attention. ((NUFORC Note: Possible tumbling booster shell?? PD)) +2005-04-28,33.4483333,-112.0733333,Phoenix,AZ,formation,45,One bright one, one faint one traveling together, three more appear from bright one, circle and fly dfferent directions. +2006-04-28,39.4861111,-75.0261111,Vineland,NJ,circle,300,ENORMOUS, REDDISH/ORANGE , BRIGHT LIGHT, OVER TREE-LINE AREA, IN VINELAND, NEW JERSEY. +2006-04-28,39.8441667,-89.5394444,Riverton,IL,changing,300,An x shaped ufo seemed to change shape. +2006-04-28,38.7208333,-82.9583333,South Shore,KY,cigar,300,UFO over South Shore +2006-04-28,44.9430556,-123.0338889,Salem,OR,other,20,saw lazer light shaft 2 to 3 miles long. +2006-04-28,34.0522222,-118.2427778,Los Angeles,CA,triangle,600,Triangle trying to cloak over LAX airport +2006-04-28,46.6022222,-120.5047222,Yakima,WA,cigar,120,cigar-shaped object photographed on both the western and eastern horizon. 9 photosƺ sightingsƹ object. +2006-04-28,39.5297222,-119.8127778,Reno,NV,formation,45,Group of four points of light moving in a deliberate and manner unconventional for aircraft or satellites +2006-04-28,44.5038889,-72.9980556,Jericho,VT,rectangle,45,Rectangular object with rounded edges with gray outline around it and three lights which turned on and off from right to left in VT. +2006-04-28,40.4277778,-74.4163889,East Brunswick,NJ,fireball,20,stationary bright fireball seen along the treeline +2007-04-28,30.2669444,-97.7427778,Austin,TX,triangle,30,I am a police officer and was working my night shift at our headquarters building checking doors and locks. When I stepped outside I l +2007-04-28,39.7391667,-104.9841667,Denver,CO,light,5,Two lights that appeared connected moving very quickly SW to NE (faster than any commercial plane or military jet) across the sky . +2007-04-28,40.8538889,-74.8294444,Hackettstown,NJ,sphere,15,two bright spheres moving very fast and erratic +2007-04-28,38.4405556,-122.7133333,Santa Rosa,CA,light,2,Meteor-like object seen while watching an Iridium flare. +2008-04-28,41.0533333,-73.5391667,Stamford,CT,rectangle,10800,Two craft over pond with pilot and electronic equipment to make contact with lighted hollograms observed through digital camera. +2008-04-28,25.9013889,-97.4972222,Brownsville,TX,light,1800,Object & airplane almost collide +2008-04-28,34.5036111,-93.055,Hot Springs,AR,triangle,2700,I was sitting on the deck from my friend's condo on the lake and looked across the water and saw in the distance a triangle shape with +2009-04-28,35.8825,-80.0822222,Thomasville,NC,formation,1200,series of stationary blinking white and red lights +2009-04-28,37.9963889,-105.6991667,Crestone,CO,fireball,10,04/29/09 Crestone Colorado White Fireball 10 seconds +2009-04-28,36.8655556,-87.4886111,Hopkinsville,KY,fireball,3,Green fireball +2009-04-28,33.4483333,-112.0733333,Phoenix,AZ,light,240,While in Glendale Arizona I was looking south toward Estrella mountain {south west of Phoenix- directly west of south mountain} right a +2009-04-28,34.8847222,-79.6944444,Hamlet,NC,light,900,Two lights moving slowly south while perfectly parrallel to eachother +2009-04-28,37.5483333,-121.9875,Fremont,CA,flash,30,Four flashes of light +2010-04-28,45.5236111,-122.675,Portland,OR,light,1800,On the morning of Wednesday April 28 I was staying at a friend's house in SW portland and we had been up all night having a conversatio +2010-04-28,36.8527778,-75.9783333,Virginia Beach,VA,light,3600,Ball of light, smaller lights flying, flying saucer +2010-04-28,41.47,-87.6363889,Steger,IL,circle,180,One bright orb going East while a much dimmer one went South/West. ((NUFORC Note: Possible satellites?? PD)) +2010-04-28,48.4213889,-122.3327778,Mount Vernon,WA,other,2,Gray, Jellyfish-shaped object with lights seen in photograph taken of clouds. +2010-04-28,39.1652778,-86.5263889,Bloomington,IN,cigar,120,Daylight Sighting of Cigar-shaped object over Bloomington +2010-04-28,33.4483333,-112.0733333,Phoenix,AZ,cigar,300,ship was very large, dark in color it just floated very little movment for 5 min. or so and then pulled away very slowley and disappear +2010-04-28,21.3069444,-157.8583333,Honolulu,HI,light,240,looked like a intensly bright star,brighter than serious the star. Moving very very fast! SCARY! +2010-04-28,41.4816667,-72.6816667,Durham,CT,light,60,extremely brightly lit low flying almost silent helicopter type object +2010-04-28,35.1083333,-77.0444444,New Bern,NC,changing,300,Morphing triangle into jet, Jupiter-bright object heads NE nearby during jet chase. +2010-04-28,41.2402778,-75.945,Plymouth,PA,sphere,180,At aproximately 9:19 P.M. Eastern Standard time I witnessed a bright orange sphere that I mistook first for a star, moving in a Northea +2010-04-28,36.9752778,-121.9522222,Capitola,CA,disk,7200,coming down flying very low around. about 25 round disks, around 3 with flashing red lights +2010-04-28,33.9938889,-96.3705556,Durant,OK,unknown,90,Super bright light on bottom of craft moving very fast with no sound at all +2010-04-28,34.6175,-89.9686111,Senatobia,MS,triangle,420,Lights in the Mississippi sky. +2011-04-28,40.9327778,-74.6597222,Hopatcong,NJ,unknown,604800,It was white, almost big (but not huge, smaller than big), made noise when it fell, lumpy (looked like more than one thing, not sure) +2011-04-28,32.9411111,-97.1338889,Southlake,TX,other,6,Southlake, Tx: Crescent shaped, white light clearly observed gliding through the sky. +2011-04-28,41.1997222,-90.7491667,Aledo,IL,sphere,60,Four white metalic spheres with red glass-ish window on the front heading East over Aledo, Il. +2011-04-28,40.7647222,-79.7666667,Cabot,PA,sphere,10,Round blob shaped UFO spotted in evening sky over Butler County, PA. +2011-04-28,44.5069444,-92.9052778,Cannon Falls,MN,light,7200,I saw a light in sky that looks slightly bigger than the stars, didnt move but was changing colors. looked like the colors included red +2011-04-28,38.8338889,-104.8208333,Colorado Springs,CO,light,45,A bright blue object crossing to the northwest. +2011-04-28,34.0522222,-118.2427778,Los Angeles,CA,circle,600,Big orange orbs flying over Los Angeles +2012-04-28,61.3213889,-149.5677778,Eagle River,AK,fireball,600,Stationary Silent burning ball of fire from approximately 100 feet. +2012-04-28,33.6305556,-112.3325,Surprise,AZ,light,240,Orange lights no noise moved east to west accross sky and disappeared. +2012-04-28,27.3361111,-82.5308333,Sarasota,FL,cigar,120,White cigar shaped ufo not flying then dissappeared +2012-04-28,45.5608333,-94.1622222,St. Cloud,MN,light,900,12 Large Bright Red-Orange Lights fly over Central Minnesota on the evening of April 28th, 2012. +2012-04-28,33.3061111,-111.8405556,Chandler,AZ,changing,300,Orange orbs/ black amoeba object +2012-04-28,33.4352778,-80.9211111,Cordova,SC,cigar,30,The craft was non conventional, randomly appearing and disappearing. +2012-04-28,33.9533333,-117.3952778,Riverside,CA,triangle,7,Silent Triangle UFO over riverside county CA. 5 circle shaped lights along the bottom of each 'wing' leading to a point +2012-04-28,35.2269444,-80.8433333,Charlotte,NC,triangle,40,Red Lights Over East Meck High +2012-04-28,39.3761111,-77.155,Mount Airy (Vicinity),MD,light,240,Formation of gold moving lights +2012-04-28,45.5608333,-94.1622222,Saint Cloud,MN,circle,900,Red orblike lights moving across the nights sky. +2012-04-28,44.9430556,-123.0338889,Salem,OR,formation,300,VERY LARGE FORMATION OF 10 OR MORE ORANGE LIGHTS FAR WEST OF SILVERTON OREGON +2012-04-28,44.6088889,-87.4325,Algoma,WI,unknown,60,4 brightly lit crafts traveling at different speeds, low elavation, with no sound present. +2012-04-28,32.3122222,-106.7777778,Las Cruces,NM,other,300,About 1000 light or more see traveling in a horizontal line traveling south +2012-04-28,42.7919444,-83.6277778,Holly,MI,triangle,20,White flashing lights in a triagular shape (not an airplane) +2013-04-28,35.0844444,-106.6505556,Albuquerque,NM,light,60,Diamond formation of lights over Albuquerque. +2013-04-28,36.7477778,-119.7713889,Fresno,CA,light,60,Fast moving 'star' travelling at fast speed, changed directions. When it disappeared so other stars disappeared in that area. +2013-04-28,38.8975,-76.8305556,Largo,MD,sphere,180,4/29/13 Im located in Largo, Md. I am a building Engineer last night around 10:40 I was called in due to my Parking lot lights had lost +2013-04-28,32.8338889,-109.7069444,Safford,AZ,circle,2400,When object/objects were first spotted, they looked like stars, except they were flashing different colors - blue, red, yellow. +2013-04-28,27.9011111,-81.5861111,Lake Wales,FL,light,30,Another sighting of star like craft in Lake Wales, FL +2013-04-28,35.0844444,-106.6505556,Albuquerque,NM,light,300,12 sperate ghostly lights that flew in changing formations, with no sound. +2013-04-28,40.6686111,-74.1147222,Bayonne,NJ,light,1800,We observed 1 object which was bright red traveling at a high speed past any planes that were in the area. The object stopped and then +2013-04-28,35.0455556,-85.3097222,Chattanooga,TN,triangle,240,8-10 moving lighted objects traveling slowly without sound, northeast orangish in colorƼ-5 minutes then disappearing. +2013-04-28,27.7705556,-82.6794444,Saint Petersburg,FL,fireball,600,Orange/red orb resembles a fireball moving up into the sky, then disappeared. +2013-04-28,42.4391667,-123.3272222,Grants Pass,OR,light,60,Very bright light descends and travels southward shifting from yellow to red and fading from vision. +2013-04-28,35.0844444,-106.6505556,Albuquerque,NM,light,60,This was identical to the craft I saw one week earlier, spotted in the exact same area of sky on the south end of Albuquerque. +2013-04-28,26.9616667,-82.3527778,Englewood,FL,unknown,10,Two redish/orange glowing objects in the sky in Englewood, FL +2013-04-28,41.5361111,-86.0208333,Wakarusa,IN,sphere,180,4/30/13 Wakarusa In. Two round spheres flying in tandom. 9:30 pm lasted 3 min flying south to north no sound. +2013-04-28,42.0083333,-91.6438889,Cedar Rapids,IA,light,10,Two "lights" from space circling and "dancing" around each other as if playing. +2014-04-28,47.6777778,-116.7794444,Coeur D'alene,ID,changing,300,Three low flying orbs over CDA lake blue lights quiet re accruing late night. +2014-04-28,33.4352778,-112.3575,Goodyear,AZ,light,360,Two orange lights hovering over mountains, one went out then both went were gone only to reappear in a different location . +2014-04-28,32.77,-108.2797222,Silver City,NM,light,120,Two bright stars that moved and disappeared into the northern sky at dusk in New Mexico. +2014-04-28,27.3361111,-82.5308333,Sarasota,FL,circle,180,One light traveling towards bradenton north west-of sarasota, a plane shortly followed into the vicinity, as if tracking the ufo. +2014-04-28,38.0672222,-117.2291667,Tonopah,NV,fireball,10800,Fireballs southwest/southeast Tonopah. +2014-04-28,45.6388889,-122.6602778,Vancouver,WA,unknown,1200,Very strange sound heard sounded as if it had a melody. +2014-04-28,45.0847222,-93.0097222,White Bear Lake,MN,light,3,Blue quick moving light over twin cities. +1996-04-29,38.5816667,-121.4933333,Sacramento,CA,other,1800,While out in my back yard i was trying out my new camcor- der to see how it worked.I was shooting the stars and the moon on a clear n +1997-04-29,38.7602778,-120.5288889,Fresh Pond,CA,formation,1500,Large green glowing ball of light over the Sierras +1998-04-29,34.7369444,-82.2544444,Simpsonville,SC,light,3,While driving to work, I noticed a light just below high overcast. The object appeared to be traveling east to west. +1998-04-29,48.6483333,-118.7366667,Republic (Northwest),WA,fireball,2,a very large sphere of bright light fell through the clouds straight to the ground. no visible tail. no sound. +1999-04-29,41.85,-87.65,Chicago (Southwest Suburbia),IL,light,60,Chatting in a car and getting ready to leave, we(two of us) saw a small white light fly at a medium plane speed from the NEE sky to the +2000-04-29,40.7236111,-73.7052778,Floral Park,NY,disk,15,Was observing thru telescope for casual astronomy. Looked up in the sky to find a target star in Ursa Major when I saw due East at arou +2000-04-29,41.2230556,-111.9730556,Ogden,UT,circle,240,i seen a red ball like thing coming from south to north along the mountains.and it was moving realy fast. +2000-04-29,42.4727778,-122.8016667,Eagle Point,OR,circle,120,britelightwentintobigdipperthenstraightup +2000-04-29,42.5433333,-122.5644444,Butte Falls,OR,light,20,Slow moving bright light becomes extremely bright and ascends straight up and out of sight very quickly. +2001-04-29,36.1658333,-86.7844444,Nashville,TN,light,600,Slow moving lights in the sky over Nashville. +2001-04-29,36.2094444,-92.2841667,Norfork,AR,other,120,White Capsule (pill) shaped object, low altitude, slow speed, no sound +2001-04-29,34.0522222,-118.2427778,Los Angeles (Westwood),CA,chevron,30,Chevron shaped flying object with round lights... +2001-04-29,40.3013889,-79.5391667,Greensburg,PA,disk,30,colorfull ,blinking object +2001-04-29,35.8483333,-116.2255556,Tecopa,CA,light,120,Stationary light in Tecopa CA 4/29/01 +2001-04-29,35.1494444,-90.0488889,Memphis,TN,other,180,the star at the top and at the bottom right were not stars but planets the other object was bluesh and jetted off quickly. +2001-04-29,26.9616667,-82.3527778,Englewood,FL,light,300,At night I saw two red lights too apart from eachother to be an airplain. +2001-04-29,43.0125,-83.6875,Flint,MI,triangle,3,my brother and i was leaving our other brothers house. i looked up at what i thought were geese flying in formation. they were not gees +2002-04-29,47.6063889,-122.3308333,Seattle,WA,light,7,Bright green light descending due east of First Hill in Seattle. Appeared to be coming down between Bellevue and Issaquah. It descend +2002-04-29,41.2683333,-110.9625,Evanston,WY,sphere,7,For many months myself and others have seen silver lighted spheres moving intelligently over city. +2002-04-29,47.6063889,-122.3308333,Seattle,WA,light,2,BRIGHT GREEN LIGHT "ZIPS" DOWN ACROSS SKY TOWARDS HORIZON Monday, April 2002 +2002-04-29,44.7563889,-122.4155556,Gates,OR,unknown,5,Can anyone identify this. +2003-04-29,35.9605556,-83.9208333,Knoxville,TN,sphere,60,round object with rotating outer ring.evenly lighted moving slowly +2004-04-29,39.7327778,-75.1319444,Pitman,NJ,light,300,Red star sized flares in Southern NJ. ((NUFORC Note: Probably the "flare" from Iridium satellites. PD)) +2004-04-29,33.8158333,-78.6802778,North Myrtle Beach,SC,light,3600,The only logical explanation would be flares. That must be one fast boat. +2004-04-29,33.9686111,-112.7288889,Wickenburg,AZ,disk,1200,observed an orange disc shaped object pointed at an angle to the ground, my brother was asking me what direction it was pointed and wha +2004-04-29,33.9686111,-112.7288889,Wickenburg,AZ,disk,1200,this object was disc shaped and appeared to be turning while syaying in the same spot. It was orange and appeared to be sending beams o +2005-04-29,34.7694444,-92.2669444,North Little Rock,AR,triangle,300,Travelling home from Stuttgart, AR to North Little Rock, AR on US 65. I had just passed into North Little Rock, AR city limits where U +2005-04-29,26.7052778,-80.0366667,West Palm Beach,FL,triangle,600,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) What seemed like a meteor or fire ball moves very slowly towards earth serface +2005-04-29,25.8572222,-80.2783333,Hialeah,FL,sphere,900,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) they say was a satellite on the news iknow what i saw wasn't such a thing +2005-04-29,25.7738889,-80.1938889,Miami,FL,light,600,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) one light moving south broke into 3 light into a rectangle +2005-04-29,32.7763889,-79.9311111,Charleston,SC,light,300,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) Single craft tremendously high moving north north east explodes +2005-04-29,30.3319444,-81.6558333,Jacksonville,FL,light,240,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) White light, moving slowly that suddenly expands +2005-04-29,26.9338889,-80.0944444,Jupiter,FL,formation,1200,((NUFORC Note: Missile launch at 2055 hrs (EDT) PD)) 3 bright lights high in sky together then separated thin zig zagged rapidly +2005-04-29,30.1658333,-81.7066667,Orange Park,FL,circle,300,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) A long orange light moving in the sky. I was uncertain if it was a plane +2005-04-29,26.0027778,-80.2241667,Pembroke Pines,FL,fireball,180,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) We saw something in the north sky at around 20:40 that was not normal. +2005-04-29,31.1502778,-81.3697222,St. Simons Island,GA,changing,240,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) firework-looking light(s) changes shape 4 times over ocean +2005-04-29,31.2133333,-82.3541667,Waycross,GA,unknown,900,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) A weird large orange light with a tail seen and then part of it breaks off +2005-04-29,26.6583333,-80.2416667,Wellington,FL,light,120,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) Palm Beach's ufo +2005-04-29,26.3180556,-80.1,Deerfield Beach,FL,fireball,180,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) Shuttle Early? +2005-04-29,35.7913889,-78.7813889,Cary,NC,light,90,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) Two small yellow-white lights moving parallel to horizon; fuzzy ring of light +2005-04-29,42.5997222,-71.3677778,Chelmsford,MA,sphere,60,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) Resembled what the ISS looks like when it went overhead one night +2005-04-29,35.3847222,-77.9930556,Goldsboro,NC,unknown,600,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) me and a friend were standing out side about 8:30 P. M. Talking +2005-04-29,43.3838889,-70.5452778,Kennebunk,ME,circle,180,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) a bright moving star +2005-04-29,28.2916667,-81.4077778,Kissimmee,FL,unknown,120,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) I glanced to the sky and saw a plane passing by. +2005-04-29,30.1894444,-82.6394444,Lake City,FL,light,12,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) 3 orange lights forming triangle, 2 stationary lights +2005-04-29,25.7738889,-80.1938889,Miami,FL,triangle,300,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) Bright object seen in the sky, seemed to explode shortly after appearance. +2005-04-29,27.1675,-80.2663889,Palm City,FL,changing,120,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) rocket type sighting +2005-04-29,27.5211111,-82.5725,Palmetto,FL,light,120,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) Lights formed a plane and a haze appear after the lights changed +2005-04-29,39.3280556,-120.1822222,Truckee,CA,light,15,A single light following another single light closley and pretty fast no sound. +2005-04-29,34.2255556,-77.945,Wilmington,NC,fireball,300,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) Exploding "Star" +2005-04-29,27.9472222,-82.4586111,Tampa,FL,light,600,((NUFORC Note: Missile launch out of Cape Canaveral. PD)) UFO Sighting 04-29-05 Tampa, FL +2005-04-29,27.9472222,-82.4586111,Tampa,FL,light,300,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) there were three (they were the size of my fist) and two disappeared… +2005-04-29,32.7763889,-79.9311111,Charleston,SC,other,300,Bomerang shaped blue haze followed by what appeared to be a star, then a flash like a firework explosion. +2005-04-29,27.85,-82.175,Lithia,FL,formation,30,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) There were three orange lights that came and then disappeared. +2005-04-29,27.9655556,-82.8002778,Clearwater,FL,fireball,120,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) Red/orange circle and planes flying +2005-04-29,26.9338889,-80.0944444,Jupiter,FL,changing,600,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) see above +2005-04-29,38.8813889,-94.8188889,Olathe,KS,light,180,Two lights in the night sky flying in apparent formation. +2005-04-29,43.5355556,-70.7155556,Waterboro,ME,oval,600,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) 2 BRIGHT LIGHTS OVERHEAD ONE EMITTING 3 RAYS OF LIGHT +2005-04-29,28.0183333,-82.1130556,Plant City,FL,formation,120,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) Two objects that at first appeared to just be stars were moving +2005-04-29,28.7497222,-82.2969444,Floral City,FL,triangle,30,((NUFORC Note: Missile launch at 2055 hrs (EDT). PD)) Triangular object traveling fast towards Tampa +2005-04-29,40.0608333,-75.0944444,Cheltenham,PA,disk,15,Object was large and moved from one direction to another quickly +2005-04-29,29.9675,-98.9047222,Comfort,TX,triangle,120,angular shaped object +2005-04-29,40.7141667,-74.0063889,New York City (Brooklyn),NY,circle,900,Stoof outside my apt and looking straight ahead saw light that I thought was search lights. On closer observation, I noticed the objec +2006-04-29,45.5236111,-122.675,Portland,OR,light,300,saw lite in sky at midnite on 29 april +2006-04-29,46.0494444,-118.3872222,College Place,WA,circle,180,Two orange objects seen in eastern washington sky +2006-04-29,34.0522222,-118.2427778,Los Angeles,CA,unknown,420,4/29/06 los angeles california 2 buble shape and transparent last 1 minute in my room +2006-04-29,42.0986111,-75.9183333,Binghamton,NY,unknown,20,high-altitude pulsed contrail +2006-04-29,45.6388889,-122.6602778,Vancouver,WA,triangle,10,April 29, 2006: 3 black trangles observed flying slowly east over Vancouver, WA. Time 13:55-14:05. +2006-04-29,39.9522222,-75.1641667,Philadelphia,PA,rectangle,45,MY WIFE AND I WAS ON OUR WAY TO OUR SON'S HOME WE WERE WALKING FROM THE CAR TO THE APARTMENT BUILDING AND ABOVE THE TREES IN FRONT OF U +2006-04-29,32.6152778,-93.2866667,Minden,LA,unknown,55,WHILE I WAS TAKING A WALK I SAW TWO TINY DOTS IN THE SKY. +2006-04-29,40.7141667,-74.0063889,New York City (Brooklyn),NY,cigar,180,My brother and I saw 3 objects flying over the 11203 zip code heading east out toward Long Island. 2 were flying in tandem a the 3rd wa +2006-04-29,40.7141667,-74.0063889,New York City (Brooklyn),NY,cigar,480,Three Cigarettes floating over Brooklyn +2006-04-29,40.7141667,-74.0063889,New York City (Brooklyn),NY,cigar,600,UPDATE,, I would like to cross ref my sighting with VANCOUVER, WA. His sighting appear to be the same as mines being that they saw 3 ob +2006-04-29,41.7055556,-70.2291667,West Yarmouth,MA,unknown,1800,Bright lights over Lewis Bay +2006-04-29,43.4666667,-112.0333333,Idaho Falls,ID,disk,15,5 UFOs Viewed Over the Course of 90 Minutes, 3 Saucers and 2 Odd Formations +2006-04-29,38.3488889,-120.7730556,Jackson,CA,circle,1500,A starlike object developed a circle of light, moved a great distance rapidly, then released other smaller objects with flashing white +2006-04-29,45.5236111,-122.675,Portland,OR,fireball,480,7 orange "fireballs" in two groups over downtown Portland, OR +2006-04-29,45.5236111,-122.675,Portland,OR,formation,300,orange lights over Portland OR +2006-04-29,45.8625,-122.6691667,La Center,WA,formation,120,Pairs of bright amber lights over Portland moving in formation +2006-04-29,45.5236111,-122.675,Portland,OR,changing,1200,First time ever seeing these types of glowing objects!! +2006-04-29,45.5236111,-122.675,Portland,OR,changing,1200,I saw at least six bright glowing, orange in color objects in the sky over the city of Portland on Saturday night, 4-29-06. +2006-04-29,45.5236111,-122.675,Portland,OR,changing,1200,Six fiery, glowing objects, some at a standstill, then all six of them moved very slowly over the city of Portand, Oregon. +2006-04-29,45.5236111,-122.675,Portland,OR,sphere,600,Amber orb lights over downtown Portland. +2006-04-29,45.5236111,-122.675,Portland,OR,light,300,Six Red Lights +2007-04-29,27.9472222,-82.4586111,Tampa,FL,oval,180,2 crafts seen gliding over city +2007-04-29,26.5625,-81.9497222,Cape Coral,FL,cylinder,1800,Was this white cylinder with fins a weather balloon? +2007-04-29,45.5236111,-122.675,Portland,OR,circle,180,fast moving object that was gone when i looked down to get phone +2007-04-29,41.3894444,-82.0191667,North Ridgeville,OH,unknown,15,Red flash followed by small black object that travelled silently across sky in a straight line and disappeared. +2007-04-29,39.5061111,-77.6527778,Boonsboro,MD,disk,60,UFO observed near Boonsboro, MD in the evening. +2007-04-29,41.55,-71.4666667,North Kingstown,RI,triangle,300,I live on Annaquatucket rd in NK, RI I was sitting in my room and i heard dogs barking and crying outside my open window. I got up to s +2007-04-29,39.5061111,-77.6527778,Boonsboro,MD,rectangle,120,Square lights above South Mountain in Boonsboro, MD at 21:45. +2007-04-29,41.5119444,-82.9377778,Port Clinton,OH,light,2,Two lights slowly flying north to west near shores of Lake Erie, one flies around the other. Then disappears. +2007-04-29,41.4038889,-88.1116667,Elwood,IL,unknown,15,UFO sound only +2007-04-29,40.4991667,-74.3994444,Piscataway,NJ,light,900,very fast light zipping in the sky and then a uknown aircraft appeared very low to the ground. +2007-04-29,40.2066667,-75.1,Warminster,PA,triangle,3600,moving very slow. heading south towards willow grove base. jets were deployed. ((NUFORC Note: Possibly not a serious report? PD)) +2008-04-29,29.9838889,-90.1527778,Metairie,LA,light,10,Bright Orange light flys incredibly quickly across New Orleans sky. +2008-04-29,42.9575,-77.0577778,Phelps,NY,cigar,30,two large cigar shapped odjects chased off by police helicopter +2008-04-29,29.6513889,-82.325,Gainesville,FL,circle,14400,Numerous lighted objects , identical to each other.maintaining distance and position , whose light patterns changed simultaneously. +2008-04-29,39.5297222,-119.8127778,Reno,NV,fireball,6,Large round glowing yellow fireball traveling at a high rate of speed, then suddenly stopping and disappearing +2008-04-29,42.9072222,-70.8125,Hampton Beach,NH,formation,2700,Three lights hovering in trangle formation, brightened in unison. +2008-04-29,34.0936111,-118.6005556,Topanga,CA,circle,2700,Observed a donut shaped object with multiple lights moving in a circular motion for 20 to 30 minutes. +2008-04-29,42.0333333,-87.8833333,Des Plaines,IL,unknown,120,bright orange light in sky hovers and disappears +2008-04-29,30.085,-97.84,Buda,TX,triangle,6,A triangle shaped craft with brilliant lights flew over my house. +2008-04-29,42.5802778,-83.0302778,Sterling Heights,MI,light,30,Bright light to tiny red light to nothing. +2008-04-29,39.7047222,-105.0808333,Lakewood,CO,fireball,60,The UFO was a glowing green orb. with jet or helicopter flying behind +2008-04-29,33.5091667,-111.8983333,Scottsdale,AZ,formation,3600,3 Blinking Lights in Loose Formation over Camelback Mountain, Phoenix +2009-04-29,32.2216667,-110.9258333,Tucson,AZ,fireball,3.5,Bluish object looked like a tracer bullet from WW2 footage, and then burst into flames as it moved across the sky to the north. +2009-04-29,47.6063889,-122.3308333,Seattle,WA,light,2,Bright light ball seen over Ballard extraordinary speed. +2009-04-29,44.4758333,-73.2125,Burlington,VT,light,600,Bright Orange/Reddish Object moving slowly over Lake Champlain +2009-04-29,34.8061111,-106.7327778,Los Lunas,NM,chevron,2,Chevron shaped craft with dim lights on the botton looked like 3 on each wing. Super quiet. +2010-04-29,36.175,-115.1363889,Las Vegas,NV,chevron,4,Chevron-shaped flying wing with 7 large round white lights +2010-04-29,40.6805556,-73.4747222,Massapequa,NY,light,300,single light in sky, very fast, and also hovering, and changing direction at 45 degree angles, and twinkling +2010-04-29,36.5008333,-87.6936111,Indian Mound,TN,circle,180,at 20:14 in clear sky. low ,slow moving, star like bright circluar object. no other flashing lights, faint humming noise +2010-04-29,41.14,-104.8197222,Cheyenne,WY,light,420,Slow moving, silent, bright light travels over Cheyenne WY +2011-04-29,25.8572222,-80.2783333,Hialeah,FL,fireball,2,A green fireball fell from the sky in the distance, with no trail or tail. +2011-04-29,38.4038889,-96.1813889,Emporia,KS,unknown,2,UFO moving east to west over Emporia, KS +2011-04-29,37.3394444,-121.8938889,San Jose,CA,circle,300,UFO orb seen over san jose ca. +2011-04-29,37.3394444,-121.8938889,San Jose,CA,fireball,600,15-20 orange glowing objects travelling across the night sky. +2011-04-29,31.8055556,-81.4308333,Midway,GA,diamond,240,dancing hummingbirds +2011-04-29,30.7741667,-85.2269444,Marianna,FL,fireball,5,Probable space junk falling to earth +2011-04-29,35.7847222,-89.1172222,Alamo,TN,formation,600,Yellow to Red lights floating in formation over Alamo, TN. +2011-04-29,28.6608333,-81.3658333,Altamonte Springs,FL,fireball,7,From the siting you would be able to determine where it entered and how low it was before it vanished +2011-04-29,29.6513889,-82.325,Gainesville,FL,rectangle,15,If it was a meteor, it was very strange, slow and large???? +2011-04-29,32.0833333,-81.1,Savannah,GA,cone,1800,Cone shaped object with fire heading East over Savannah, Georgia and Tybee Island, Georgia +2011-04-29,42.1427778,-77.055,Corning,NY,light,10800,From around 10:30 pm to 1:00 am seen four lights in the sky at seperate times. They were not planes because they made 90 degrees turns +2011-04-29,33.4502778,-88.8183333,Starkville,MS,circle,480,Orange circles flying from SE to NW in a straight line. +2011-04-29,42.3369444,-83.2733333,Dearborn Heights,MI,other,7200,The unusual lights in the sky had sounds of static as it passed over or through the clouds. ((NUFORC Note: Advertising lights. PD)) +2012-04-29,40.7355556,-74.1727778,Newark,NJ,fireball,15,Green fireball seen over Newark, NJ +2012-04-29,30.3319444,-81.6558333,Jacksonville,FL,disk,120,Disc shaped saucer seen inside a glowing orange ball of light in Jacksonville, florida. +2012-04-29,40.3491667,-111.9038889,Saratoga Springs,UT,formation,45,3 Ufo's over Utah Lake 4/29/12 +2012-04-29,35.7913889,-78.7813889,Cary,NC,egg,180,Round suv-sized object seen traveling, hovering, traveling, just after sunset; no lights, no sounds +2012-04-29,33.5205556,-86.8025,Birmingham,AL,cross,1800,Strange white light in the sky with red lights that circled around it +2012-04-29,42.2286111,-71.5230556,Hopkinton,MA,sphere,1800,Spherical objects were observed moving slightly and had changed position multiple times over the course of a few hours. +2012-04-29,36.7280556,-108.2180556,Farmington,NM,sphere,120,Bright ball traveling east up high, big and fast. ((NUFORC Note: Possible sighting of the ISS? PD)) +2012-04-29,28.5380556,-81.3794444,Orlando,FL,circle,240,Reddish orange glowing orbs flying in formation in Orlando at about 9:30 PM April 29, 2012 +2012-04-29,41.055,-73.8205556,Elmsford,NY,fireball,180,3 bright orange orbs +2012-04-29,43.3288889,-71.7183333,Webster,NH,teardrop,30,From skeptic to convinced in 30 seconds +2012-04-29,28.0833333,-80.6083333,Melbourne,FL,light,240,Silent, pulsating orange light from south to north +2013-04-29,37.3688889,-122.0352778,Sunnyvale,CA,circle,5,A large bright round object moving at supersonic speed is sighted in the Sunnyvale, Ca skies. +2013-04-29,37.3688889,-122.0352778,Sunnyvale,CA,circle,5,A large bright round orange object moving at supersonic speed is sighted in the Sunnyvale, Ca skies. +2013-04-29,33.6694444,-117.8222222,Irvine,CA,unknown,120,Continuous shrieking sound. +2013-04-29,45.3869444,-93.3591667,St. Francis,MN,cigar,300,7 cigar shaped objects in the sky early monday morning +2013-04-29,35.6869444,-105.9372222,Santa Fe,NM,light,60,Two orange lights, like stars, traveling at a very high speed. +2013-04-29,29.4238889,-98.4933333,San Antonio,TX,fireball,180,Fireball over San Antonio. +2013-04-29,28.1611111,-81.6019444,Davenport,FL,fireball,600,5 fireballs that looked liked comets moving in synchronization appeared then disappeared without a trace +2013-04-29,34.3663889,-89.5191667,Oxford,MS,circle,480,Thirteen silent amber orbs in staggered formation at low altitude floated by then went up and disappeared into the night sky. I am in m +2013-04-29,37.4830556,-97.6436111,Viola,KS,cross,300,Gold, yellowish light, extremely loud, visually NOT an airplane. +2013-04-29,43.4919444,-116.4191667,Kuna,ID,light,15,Strange light passed over my vehicle and vanished. +2014-04-29,41.7561111,-124.2005556,Crescent City,CA,teardrop,7,((HOAX??)) Cloaked tear drop shaped ufo. +2014-04-29,43.2063889,-76.4594444,Lysander,NY,light,3600,Bright orange light. +2014-04-29,37.0833333,-88.6,West Paducah,KY,circle,10,Chrome shaped craft in sky. +2014-04-29,37.4241667,-122.165,Stanford,CA,circle,1200,Large, wavering, brightly lit balls above East Bay. These objects would stay in place for large periods of time. +2014-04-29,26.2708333,-80.2708333,Coral Springs,FL,light,600,Bright light hovered and changed colors. +2014-04-29,33.9561111,-83.9880556,Lawrenceville,GA,light,600,Aeryon Scout. +2014-04-29,26.2708333,-80.2708333,Coral Springs,FL,diamond,600,Multidimensional diamond like shaped object w/different colored lights. +2014-04-29,32.8794444,-111.7566667,Casa Grande,AZ,light,3600,Round Yellow Lights in the evening sky, south of Phoenix. +2014-04-29,34.4047222,-103.2047222,Clovis,NM,sphere,600,I went out to smoke and noticed what i have been seeing alot of lately which is hovering bright structures in the clovis sky that as th +2014-04-29,34.5033333,-82.6502778,Anderson,SC,disk,1800,Green disk shaped lights spotted. +2014-04-29,34.6855556,-82.9533333,Seneca,SC,changing,3600,Four dancing lights. +2014-04-29,34.0633333,-117.65,Ontario,CA,triangle,25,Its hot so my window was open. From afar, I see these extremely bright lights. Hmm..that doesnt seem like an airplane. +1953-04-30,40.2547222,-75.0897222,Jamison,PA,cigar,120,In the spring of 1953 my mother & I saw an IMMENSE silent grey metallic cigar shaped object moving from Doylestown toward Jamison. +1977-04-30,28.0363889,-97.5088889,Sinton,TX,oval,60,i did not look scary or spooky just something i had never seen before or since +1983-04-30,40.3916667,-111.85,Lehi,UT,unknown,15,"Clear , Jellyfish" type object +1985-04-30,30.4502778,-93.4330556,Dequincy,LA,unknown,3600,Children from small town school see object over town over twenty years ago. It doesn't end there. +1988-04-30,30.6686111,-89.6383333,Mcneill,MS,cigar,900,Cigar shaped object, whose ends rotated and blinked lights, the ends separated from main object and shot up quickly above the main one. +1992-04-30,41.3580556,-93.5572222,Indianola,IA,unknown,300,Strange Vibrations... +1995-04-30,42.7325,-84.5555556,Lansing,MI,circle,900,Observed hundreds of clear orbs in the sky appearing to be looking at me. +1997-04-30,40.8663889,-86.2252778,Twelve Mile,IN,disk,360,The kids & I saw several bright white lights in a row hovering over the tree tops that were along the edge of a field. +1997-04-30,38.9516667,-92.3338889,Columbia,MO,light,20,5 lights in the sky east of columbia dipping rapidly, disappearing then rising again rapidly +1998-04-30,36.5858333,-79.3952778,Danville,VA,teardrop,300,Observed small upsidedown curved black teardrop with blue floresent crown hovering over highway 86 Danville. +1998-04-30,30.2669444,-97.7427778,Austin,TX,sphere,10,Fireball, green with white center, with a tail of white sparkling stuff. It went horozontally across sky, winked out. +1999-04-30,38.1075,-122.5686111,Novato,CA,fireball,3,greenish blue fire ball +1999-04-30,42.1191667,-79.7327778,Findley Lake,NY,circle,5,Driving my car up the on-ramp onto 17 off of 426... and while making the turn onto the highway (heading west) I saw a perfectly round +2000-04-30,42.4605556,-83.6516667,South Lyon,MI,disk,3600,They were moving very fast across the sky and making quick turns. Also the spent alot of time hovering. +2000-04-30,42.0833333,-71.3972222,Franklin,MA,diamond,600,Black diamond shaped object with two white circles in the center and red blinking lights rotating around those white lights. Object had +2000-04-30,41.0602778,-111.9702778,Layton,UT,triangle,60,Noticed a off grey triangle shape object moving from south to north just above horizon. +2000-04-30,44.5647222,-123.2608333,Corvallis,OR,disk,30,Flying grey disk over Corvallis,Or +2000-04-30,45.5236111,-122.675,Portland,OR,circle,780,initially seen while I was "indisposed" of. +2000-04-30,43.3872222,-87.8755556,Port Washington,WI,fireball,60,There was a extremely bright fireball in the South sky. +2001-04-30,33.9525,-84.55,Marietta,GA,triangle,10,Triangle shaped craft hovered over trees and then disappeared into nothing +2001-04-30,39.2902778,-76.6125,Baltimore,MD,light,1500,Slashes of light in an oval shape off of I-895 in mid-spring. +2001-04-30,34.2247222,-118.4488889,Panorama City,CA,sphere,120,Cloaking craft, Invisible to the sight but can be see in specific conditions +2002-04-30,41.14,-104.8197222,Cheyenne,WY,egg,300,The EggBeamer! +2002-04-30,47.7544444,-122.1622222,Woodinville,WA,chevron,5,Silent boomerang shaped craft without lights +2002-04-30,45.0275,-84.6747222,Gaylord,MI,other,120,my boyfriends father called and had siad that there was a craft with red, white, and blue lights, and said that it was coming towards o +2003-04-30,33.9294444,-116.9763889,Beaumont,CA,triangle,1800,V shape to U shape object in Sky April 2003 this item was hugh! +2003-04-30,40.2452778,-75.65,Pottstown,PA,cylinder,30,"reflective" white "tube" flying 100 ft or so under passenger plane during daylight. +2003-04-30,35.1738889,-79.3925,Southern Pines,NC,light,4,While driving home we saw several bright,very white lights that seemed to merge into one larger light and streak across the sky. +2003-04-30,27.8336111,-97.0608333,Port Aransas,TX,other,240,I saw 3 U.F.O.s they scared the heck out of me, loud noises and bright lights. +2003-04-30,47.6063889,-122.3308333,Seattle,WA,triangle,180,Large triangular craft seen flying over Lake Washington homes near Seattle. +2004-04-30,41.6611111,-91.53,Iowa City,IA,unknown,7,Glowing figure dividing until 7 were there, at 3 am +2004-04-30,42.8666667,-106.3125,Casper,WY,cylinder,1800,On the paper route two cylinder shaped craft with brights lights in the center, preformed sparatic movements in the sky. +2004-04-30,40.5575,-74.285,Woodbridge,NJ,changing,900,At Approx. 10:25 AM, I was traveling west on Oak Tree Rd , coming up on the crossroad of WOOD Ave when my attention was drawn to a j +2004-04-30,40.7141667,-74.0063889,New York City (Manhattan),NY,sphere,300,Silver orb seen in over central park. +2004-04-30,30.3319444,-81.6558333,Jacksonville,FL,chevron,300,silent nested silver aircraft, unattached chevron formation +2004-04-30,47.6063889,-122.3308333,Seattle,WA,cylinder,30,Three Bronze cylinders +2004-04-30,45.5236111,-122.675,Portland,OR,circle,900,Object Hovering Near Jet-Trails 4/30/04, Portland, Or. +2004-04-30,38.2997222,-122.6655556,Penngrove,CA,sphere,600,luminiscent sphere +2004-04-30,34.0141667,-86.0066667,Gadsden,AL,cigar,720,It seemed to hover above the water as opposed to gliding through it. +2004-04-30,47.4508333,-122.8261111,Belfair,WA,oval,5,Six of us were sitting aroud the campfire and all of a sudden we saw a streaming object moving in a horizontal postion when it all of a +2004-04-30,47.6816667,-122.2075,Kirkland,WA,chevron,60,My two sons, 11 and 14, and I were walking across a parking lot, (QFC in downtown Kirkland), and I glanced up at the stars and noticed +2004-04-30,28.8997222,-82.3747222,Hernando,FL,circle,5,White light seen similar to the description of that seen in Iran. +2004-04-30,29.7630556,-95.3630556,Houston,TX,flash,1,Blue Flash of Light which covered the SE sky (not man-made). +2005-04-30,42.675,-71.4833333,Dunstable,MA,triangle,300,coming home late from work, I saw a slow moving triangular shaped craft with red and green lights just above the tree line. +2005-04-30,47.7661111,-116.7855556,Hayden,ID,light,15,someone please report back to me on this case. It is unusual, in that I have not read too many similar descriptions on your site.P +2005-04-30,33.5538889,-117.2130556,Murrieta,CA,circle,60,ORANGE UFO. +2006-04-30,45.4313889,-122.7702778,Tigard,OR,formation,45,Light Formation +2006-04-30,33.4483333,-112.0733333,Phoenix,AZ,other,15,Golden flying wing. +2006-04-30,46.0647222,-118.3419444,Walla Walla,WA,circle,600,Objects appear in the sky in triangular formation, move at unbelievable speeds and percision. Make no sounds except when dropping stuff +2006-04-30,45.5236111,-122.675,Portland,OR,diamond,3,Strange Diamond shaped object seen in Portland, Oregon +2006-04-30,33.8641667,-111.4669444,Sunflower,AZ,other,30,A black object appeared between the contrails of a jetliner for a short period of time and then disappeared. +2006-04-30,37.775,-122.4183333,San Francisco,CA,sphere,10,Coming from the South, going towards North/Northwest. Maybe arcing downward. Very bright white intense light. Moving fast, no sound... +2006-04-30,46.6022222,-120.5047222,Yakima,WA,light,300,Observed a single non-blinking bright light traveling from West to East at approx 9:35 pm. ((NUFORC Note: ISS at 21:25 hrs.. PD)) +2006-04-30,30.0927778,-93.7363889,Orange,TX,triangle,7,DIM AMBER LIGHTS IN TRIANGULAR SHAPE OVER ORANGE TEXAS +2006-04-30,32.8369444,-97.0816667,Euless,TX,triangle,10,No lights flying very low, silent flew right over my head, blocked out view of stars as it passed. +2006-04-30,38.7522222,-121.2869444,Roseville,CA,other,5,UFO over Sacramento, V formation or a single object +2006-04-30,39.8077778,-87.495,Dana,IN,triangle,3,Triangular shaped object with 3 lights. +2007-04-30,40.8758333,-75.7327778,Jim Thorpe,PA,cylinder,15,CYLINDER TYPE WITH A OFF CENTER NODE THAT PULSED A BRITE WHITE LIGHT. +2007-04-30,30.1658333,-81.7066667,Orange Park,FL,rectangle,300,Cloud shield maker over Clay County, Florida. +2007-04-30,33.7747222,-84.2963889,Decatur (Atlanta Suburb),GA,sphere,1200,Small silver sphere motionless in blue sky. +2007-04-30,41.6227778,-88.5522222,Millhurst,IL,disk,1800,UFO Sighted In Millhurst IL +2007-04-30,47.6063889,-122.3308333,Seattle,WA,formation,5,Two amber lights were seen snaking from the southwestern sky to the northwestern sky. +2007-04-30,32.525,-93.75,Shreveport,LA,oval,5,Multiple-type UFOs are witnessed multiple times, in multiple states, near U.S.A.F. bases in LA and CO. +2007-04-30,35.6869444,-105.9372222,Santa Fe,NM,formation,3120,~1 hour over ABQ, began descent halfway through observation. Three color-changing, pulsing lights that retained formation. +2007-04-30,35.7211111,-77.9158333,Wilson,NC,cigar,600,2 dark cigar shaped objects in night sky +2008-04-30,47.9791667,-122.2008333,Everett,WA,cone,12,Very bright cone-shaped luminous object +2008-04-30,40.1577778,-83.0752778,Powell,OH,unknown,180,Small Cigar shape object seen traveling a fast rate of speed. +2008-04-30,36.175,-115.1363889,Las Vegas,NV,changing,600,I was driving west on flamingo i saw these object fly behind the New york New York and I raced to my hotel to get my camera all the whi +2008-04-30,38.9333333,-119.9833333,South Lake Tahoe,CA,sphere,60,Spherical metallic UFO spotted in Lake Tahoe Ca +2008-04-30,41.2427778,-73.2011111,Trumbull,CT,disk,1200,huge elongated dic with red/green flashing lights hovered over school field for over 20 minutes, appeared as though it might land. +2008-04-30,41.2427778,-73.2011111,Trumbull,CT,disk,1200,very large elongated disc-shape with flashing red/green lights. hovering, made no sound, saw for 20 minutes. +2008-04-30,30.2347222,-92.2683333,Rayne,LA,light,15,BRIGHT OVAL LIGHT MOVING NORTH +2008-04-30,32.2216667,-110.9258333,Tucson,AZ,light,3,Pale orange lights +2008-04-30,30.4380556,-84.2808333,Tallahassee,FL,sphere,60,Low flying orb-like lights (approximately 7 ) move slowly and silently across sky from east to west. +2008-04-30,31.7586111,-106.4863889,El Paso,TX,light,30,El Paso bright orange light +2009-04-30,33.1505556,-96.8233333,Frisco,TX,unknown,300,((HOAX??)) backyard +2009-04-30,39.7944444,-87.3958333,Highland,IN,cigar,240,Slow moving dark object flying in the sky. +2009-04-30,46.0494444,-118.3872222,College Place,WA,cigar,1,04/30/09 College Place WA. brown cigar shaped object moving N to S at high rate of speed,no sound, low to ground +2009-04-30,38.2547222,-121.2988889,Galt,CA,triangle,600,Black triangle with rounded edges with bright round lights near each corner, crossed over freeway I-5 April 30th at 9:40 PM . +2009-04-30,47.2530556,-122.4430556,Tacoma,WA,triangle,30,Triangle formation sighting in Tacoma, WA +2009-04-30,33.8352778,-117.9136111,Anaheim,CA,sphere,300,orbs fast dissapear +2009-04-30,29.7630556,-95.3630556,Houston,TX,circle,3,It looked like the one from "race to witch mountain" and it came back a couple of times. +2010-04-30,41.7694444,-71.1291667,Somerset,MA,sphere,120,Numerous unidentified white sperical objects spotted and photographed. +2010-04-30,41.3138889,-81.6852778,Broadview Heights,OH,circle,120,Me and my family saw weird objects in the sky one Friday night. +2010-04-30,35.2247222,-88.2491667,Savannah,TN,unknown,3600,1 big white light with a row of red lights and a large red ball fell from under it to ground. +2010-04-30,40.8,-96.6666667,Lincoln,NE,other,20,I witnessed a some sort of octagon or circular shape shoot a beam of light in my backyard +2010-04-30,42.86,-106.2677778,Evansville,WY,circle,2700,Strange Craft By North Casper +2011-04-30,46.6022222,-120.5047222,Yakima,WA,light,180,Bright light +2011-04-30,37.7741667,-87.1133333,Owensboro,KY,sphere,15,slow moving ball of light (almost white with a little yellow) 10 feet off ground flew over my shoulder at night +2011-04-30,35.6869444,-105.9372222,Santa Fe,NM,light,15,on April 30th at 2:07 a.m., 8-10 lights in a boomerang formation was seen hovering the skies of Santa Fe, New Mexico. +2011-04-30,45.5236111,-122.675,Portland,OR,other,30,moving star without blinking? +2011-04-30,43.2825,-76.2708333,Pennellville,NY,light,60,A small orange yellow light was spotted over the fast track store on 264 wile we were heading southbound seen for 1 minute while headi +2011-04-30,36.175,-115.1363889,Las Vegas,NV,unknown,6,I saw something flame and fall from the sky. It was either a Meteor, space junk, or an airplane. +2011-04-30,36.1658333,-86.7844444,Nashville,TN,fireball,600,Fireballs over East Nashville, TN +2011-04-30,36.1658333,-86.7844444,Nashville,TN,fireball,60.3,Orange/Yellow fireball or flame inside round shape spotted in East Nashville traveling in steady pace. +2011-04-30,41.7188889,-80.1477778,Saegertown,PA,light,10,Bright blue light shoots across Pennsylvania sky causing power outages and stopping car engines +2011-04-30,25.7738889,-80.1938889,Miami,FL,unknown,120,Strange Orange/Red Lights over Redlands, Florida tonight! About 10-12 of them +2011-04-30,43.5408333,-116.5625,Nampa,ID,chevron,300,Lights many times brighter than the backgroung of stars! +2011-04-30,40.6763889,-74.2911111,Kenilworth,NJ,circle,3600,White light spliting into 3 over Kenilworth NJ +2011-04-30,47.6063889,-122.3308333,Seattle,WA,formation,30,V-Shaped Formation of Objects Over Seattle +2012-04-30,36.7477778,-119.7713889,Fresno,CA,triangle,3,Red triangle with four green circles seen by one person above Fresno, California. +2012-04-30,37.1041667,-113.5833333,St. George,UT,circle,300,Multiple UFOs sighted in St. George, Utah on April 30, 2012, red/orange in color. +2012-04-30,33.6305556,-112.3325,Surprise,AZ,oval,3,Shooting star, or something more? +2012-05-01,42.6791667,-70.8416667,Ipswich,MA,sphere,6000,Spherical type objects hovering above the sky for long durations, rapid movement. +2013-04-30,41.85,-88.3125,Batavia,IL,circle,45,A very small white light hovering above the clouds then decended upon a tree... Tears are streaming with worry what the fuck please hel +2013-04-30,45.5727778,-93.2241667,Cambridge,MN,triangle,600,There were triangle shaped amber lights hovering over the trees. +2013-04-30,34.0211111,-118.3955556,Culver City,CA,cigar,720,Green light seen in western sky for approximately 12 minutes, moving strangely then disappearing. +2013-04-30,45.8208333,-120.8205556,Goldendale,WA,unknown,600,These crafts were in a formation, still, lights were flashing, no noise, they hovered in place 10 minutes. +2013-04-30,38.68,-93.0927778,Smithton,MO,triangle,3600,Hovering Triangles and Lights in Smithton +2013-04-30,30.1102778,-97.315,Bastrop,TX,formation,60,Three dark low flying objects, no lights, no sound, illuminated by the city lights of Bastrop, Tx. +2013-04-30,40.5772222,-74.2286111,Carteret,NJ,triangle,1200,Large triangle object with rotating colored lights, motionless. +2013-04-30,40.5772222,-74.2286111,Carteret,NJ,triangle,120,Craft still in sky in same position as 1 hour ago. ((NUFORC Note: Possible star?? PD)) +2014-04-30,38.3497222,-81.6327778,Charleston,WV,unknown,7,I could not see the craft just Two pale yellow sets of triangle lights on the bottem not a air plane not a helicopter moved to slow and +2014-04-30,45.5236111,-122.675,Portland (Northeast Area),OR,flash,300,((HOAX??)) Bright orb growing in size and then shrinking. +2014-04-30,33.8936111,-117.7263889,Chino Hills,CA,rectangle,10,Sighting of inter-dimensional craft over Chino Hills, CA on 4/30/14. +2014-04-30,41.2230556,-111.9730556,Ogden,UT,changing,3000,Flying crafts came all at once together and would break off to form smaller flying objects. +2014-04-30,30.4380556,-84.2808333,Tallahassee,FL,triangle,300,((HOAX??)) Triangular object with 2 wings/ 3 lights. Hovering over a lake until I took a flash photo, then headed towards and over us. +2014-04-30,33.9908333,-118.4591667,Venice,CA,triangle,2,Drone flying over head. under the airline flight path. +2014-04-30,36.175,-115.1363889,Las Vegas,NV,light,60,Initially saw an extremely bright light low in the sky, below plane level moving in a west to east direction not fast. +2014-04-30,45.5947222,-121.1775,The Dalles,OR,formation,600,Formation of 5 ufos sighted over The Dalles, Oregon. +2014-04-30,33.1433333,-117.1652778,San Marcos,CA,fireball,2,Orange fireball in southwest sky. +1964-04-03,25.7738889,-80.1938889,Miami,FL,other,600,It was 1963-64, I was 8-9 years old. It was just getting dark and we saw a very bright star in the north sky. It then turned into a clo +1968-04-03,34.2977778,-83.8241667,Gainesville,GA,cigar,2,bright silver cigar shaped object appeared in the air ahead of me when I was teenager driving home after school +1971-04-03,38.4405556,-122.7133333,Santa Rosa,CA,light,1800,Unbelievably beautiful spatial anomaly +1997-04-03,32.1488889,-81.1633333,Port Wentworth,GA,other,300,object travelled at approx 800feet. moving north to south over savannah international airport at about 500 mph. no engine noise or exha +1997-04-03,47.6063889,-122.3308333,Seattle,WA,other,240,I was on highway 520 going home and saw a black, silent "elongated key" shape traveling south over lake WA dissappered (cut into clouds +1997-04-03,33.0575,-89.5875,Kosciusko,MS,light,300,Flashing Lights Seen Over Treeline in Kosciusko, MS 1997 +1997-04-03,33.4483333,-112.0733333,Phoenix (Far West),AZ,oval,300,it was a bright light which moved kind of fast, it was making a humming sound which hummed for a couple of seconds then it was silenced +1998-04-03,38.6244444,-76.9394444,Waldorf,MD,circle,450,green light headed north very fast +1998-04-03,38.3030556,-77.4608333,Fredericksburg,VA,egg,5,a grey egg shaped heading north w/ green and blue propelation colors behind it moving about mach 3 at about 900 ft up +1998-04-03,38.8461111,-77.3066667,Fairfax (Gmu Campus),VA,oval,10,Observed bright object moving FAST. Many others witnessed the event on George Mason University campus while we were waiting to enter t +1998-04-03,44.8113889,-91.4983333,Eau Claire,WI,diamond,15,four dark objects moving westerly at incredible speed in parallel , flying in a diagonal formation. +1999-04-03,25.7211111,-80.2686111,Coral Gables,FL,unknown,120,High, Fast-moving contrail of smoke +1999-04-03,29.5177778,-98.3158333,Converse,TX,light,120,Craft moving at a high rate of speed was quickly changing directions and then vanished. +2001-04-03,39.9277778,-122.1780556,Corning,CA,circle,2400,The original statement sent to you earlier today stated that we had seen one "craft" at approximately 15:40 hours in the sky above our +2001-04-03,39.9277778,-122.1780556,Corning,CA,circle,420,small circular object seen over our house, traveling north, then it turned back toward us, then started moving slowly to the east. It +2001-04-03,36.2694444,-95.8544444,Owasso,OK,other,240,Shiny black object that flew a little faster than an airplane, had a glow, and glided gracefully. +2001-04-03,41.9538889,-72.7891667,Granby,CT,flash,5,Breif Green flash in eastern night sky +2001-04-03,47.5302778,-122.0313889,Issaquah,WA,circle,600,DRIVING EAST ON I-90, SAW 3 OBJECTS, LOOKED LIKE LIGHTED SNOW FLAKES ON A STRING OVER LAKE SAMMAMISH TO THE NORTH, WERE LARGER IN SIZE +2001-04-03,48.0633333,-114.0716667,Bigfork,MT,light,3,Don't know what this was. It looked like pictures of comets I have seen. The head of the light was large in the sky, comparing it with +2002-04-03,37.5483333,-121.9875,Fremont,CA,triangle,5,I SAW A TRIANGLER OBJECT OR CRAFT IN THE SKY, FLYING TOWARDS THE BIG DIPPER. +2002-04-03,38.5816667,-121.4933333,Sacramento,CA,other,2700,About 9:30 P.M., 4/3/02, a large Y shaped, lighted object hovered south of Sacramento and west of CA Hwy 99 for about 45 minutes. +2003-04-03,39.2505556,-76.5208333,Dundalk,MD,other,300,THE OBJECT WAS STATIONARY FOR CLOSE TO THE 2 MILES IT TOOK FOR ME TO APPROACH IT AND THE WAS NO SOUND COMING FROM THE OBJECT +2004-04-03,36.0888889,-106.0530556,Alcalde,NM,disk,3300,Daylight disk near Alcalde, NM +2004-04-03,27.8425,-82.6997222,Pinellas Park,FL,changing,300,Glowing object at sunset +2004-04-03,37.9841667,-120.3811111,Sonora,CA,circle,180,Large Bluish-white Light Flies Slowly Northward over Sonora, CA +2004-04-03,37.9841667,-120.3811111,Sonora,CA,light,180,HBCCUFO CANADIAN REPORT: Large Bluish White Light +2004-04-03,37.9841667,-120.3811111,Sonora,CA,light,180,HBCCUFO CANADIAN REPORT: Large bluish/white light and possible abduction. +2005-04-03,44.98,-93.2636111,Minneapolis,MN,triangle,60,A triangular shaped object with yellow lights flew around eradically for about a minute in the sky. +2005-04-03,34.7538889,-77.4305556,Jacksonville,NC,chevron,5,Black Chevron with no sound or lights +2005-04-03,29.9544444,-90.075,New Orleans,LA,changing,900,This thing looked like a stare and then something elses cant say just what elese just something strange +2005-04-03,30.8325,-83.2786111,Valdosta,GA,unknown,300,A great number of flying shiny objects flying in a group across the sky in Georgia. +2005-04-03,26.6355556,-80.0963889,Palm Springs,FL,cigar,900,UFOs Masquerade As Constellation +2005-04-03,46.4886111,-87.6675,Ishpeming,MI,triangle,600,Trianglular object with blue lights seen with binoculars and telescope +2006-04-03,39.0480556,-84.5088889,Latonia,KY,rectangle,10,Segmented, white rectangular object travelling very slowly +2006-04-03,36.0997222,-80.2444444,Winston-Salem,NC,fireball,120,Great big orange reddish ball +2006-04-03,33.5588889,-97.8483333,Bowie,TX,changing,30,Daytime Light near Bowie, Tx +2006-04-03,40.5063889,-79.8433333,Verona,PA,other,300,Five Stingray shaped, bright Metallic objects observed in sky. +2006-04-03,47.5675,-122.6313889,Bremerton,WA,sphere,3,I SAW A BRIGHT LIGHT AND IT DIMMED AND DISSAPEARED. ((NUFORC Note: Satellite? Iridium satellite?? PD)) +2006-04-03,34.0522222,-118.2427778,Los Angeles (Highland Park),CA,unknown,300,Dark spherical / ovoid object travelling east/north-east from east of my position, climbing steadily. +2006-04-03,44.4113889,-123.8991667,Tidewater,OR,fireball,3,Lots of aircraft and huge orange ball. +2006-04-03,43.4066667,-124.2230556,North Bend,OR,circle,2040,multiple crafts traveling at high speed and emitting flare-like blasts. +2007-04-03,41.4844444,-87.7033333,Richton Park,IL,disk,900,Blue outlined jellyfish-like craft, transparent center at first, then pulsing yellow, then pulsing purple +2007-04-03,42.1513889,-87.9597222,Buffalo Grove,IL,disk,900,I was watching T.V. when I saw lights and then the disk 500 Lights On Object0: Yes +2007-04-03,33.2486111,-111.6336111,Queen Creek,AZ,light,6,Three lights, fairly close to the ground, evenly spread at a slight angle, started to turn and then vanished. +2007-04-03,31.5544444,-110.3030556,Sierra Vista,AZ,formation,600,Lights similar in size to present background stars appeared to dance around a solid object +2007-04-03,33.4483333,-112.0733333,Phoenix,AZ,other,1800,Parachute shaped object over North Phoenix +2007-04-03,25.6788889,-80.3175,Kendall,FL,light,120,I saw a small light in the western sky zipping around completely silently, which lasted for approximately 2 minutes. +2008-04-03,39.0436111,-77.4877778,Ashburn,VA,triangle,180,It was 12:15am April 3, 2008. My mom and brother had just gone to bed, and i was awake in my room. I was just about to go to sleep when +2008-04-03,33.5205556,-86.8025,Birmingham,AL,cigar,360,Weird thing over high school +2008-04-03,33.9136111,-98.4930556,Wichita Falls,TX,changing,20,UFO'S Seen in Wichita Falls, Texas/Sheppard AFB area April 3, 2008 +2008-04-03,39.6133333,-105.0161111,Littleton,CO,other,600,Double oval-shaped cigar shaped craft seen at high altitude, air traffic diverted +2008-04-03,33.6694444,-117.8222222,Irvine,CA,circle,10,There was a ring of blue lights that did not appear to move in the sky. +2008-04-03,43.8261111,-111.7888889,Rexburg,ID,cone,300,big, black, dragon shapped object, no lights, slowly gliding at high altitude, kind of a small blur around it +2008-04-03,40.5408333,-74.5880556,Manville,NJ,other,30,NJ UFO sighting +2008-04-03,31.9563889,-99.9619444,Winters,TX,other,60,Airplanes with silent engines? +2008-04-03,33.6125,-117.7119444,Laguna Hills,CA,rectangle,120,rectangle shape object flying over laguna hills going at a slow speed and dissapearing after a short time. +2009-04-03,35.9938889,-78.8988889,Durham,NC,disk,120,Have video for sale of this UFO that seems to be a Mothership!!!There are six of them in orbit, Above us.??? 500 Lights On Object0: Y +2009-04-03,42.1194444,-71.3255556,Norfolk,MA,light,30,lights in my home that seemed intelligent and not a ghost +2009-04-03,39.2719444,-76.7322222,Catonsville,MD,sphere,20,Round, silvery object floating over Catonsville MD. +2009-04-03,37.48,-86.2938889,Leitchfield,KY,circle,45,unknown lights in a field +2009-04-03,28.8355556,-82.3305556,Inverness,FL,fireball,180,Orange fireball (?) over Inverness, FL night sky +2009-04-03,31.4172222,-89.5422222,Sumrall,MS,sphere,4200,Witnesses sighting of large ufo with 4 smaller crafts moving near by. +2009-04-03,29.8502778,-81.2655556,Saint Augustine Beach (Nearest),FL,sphere,60,Anomolous Aircraft Sighting in Saint Augustine Florida +2009-04-04,41.2402778,-75.945,Plymouth,PA,unknown,2,((HOAX??)) at night a kid saw a spaceship disappear in a star in the sky in plymouth pensilvaina. +2010-04-03,33.5777778,-101.8547222,Lubbock,TX,triangle,5,That was no falling star!! +2010-04-03,43.0388889,-87.9063889,Milwaukee,WI,light,90,Ball of light floating in sky near main freeway in Milwaukee. +2010-04-03,36.6002778,-121.8936111,Monterey,CA,egg,10,Lights that flashed in the sky and flickered. ((NUFORC Note: Very little information provided. Possible Iridium satellite. PD)) +2010-04-03,26.9294444,-82.0455556,Punta Gorda,FL,light,240,Pulsating light traveling steady with abrupt change of course, and accelerating outward suddenly +2010-04-03,36.175,-115.1363889,Las Vegas,NV,light,10,i saw strange lights over las vegas. +2010-04-03,28.2394444,-82.3280556,Wesley Chapel,FL,other,4,bright light moving at an extremely high rate of speed +2010-04-03,43.2341667,-86.2483333,Muskegon,MI,changing,60,Star clusters moves and changes shape +2010-04-04,30.6325,-97.6769444,Georgetown,TX,triangle,6,Observed on a clear, cloudless night sky (10:45 PM) a wedge-shape object with 9-10 running lights spaced evenly over entire craft. +2011-04-03,40.66,-111.9955556,Kearns,UT,triangle,120,bizarre +2011-04-03,36.0397222,-114.9811111,Henderson,NV,oval,60,Jet-black, oval, fast, shiny, made sharp turns, Over Mccarran Airport/ Henderson. +2011-04-03,37.1261111,-122.1211111,Boulder Creek,CA,rectangle,30,2 objects nearly same time-A large rectangular object flashing and a glowing white sphere +2011-04-03,33.4483333,-112.0733333,Phoenix,AZ,formation,2700,Flickering lights in form of enormous triangle moved east to south to west, disappearing between appearances. +2011-04-03,34.1083333,-117.2888889,San Bernardino,CA,light,900,My friends and I saw a yellow light moving across the night sky with another light behind it and suddenly lights shot out from it. +2012-04-03,40.6975,-74.2636111,Union,NJ,unknown,10800,Ufos Over NJ/NYC +2012-04-03,48.5127778,-122.6113889,Anacortes,WA,fireball,2,Fireball streaking across the sky. +2012-04-03,41.6897222,-87.7972222,Worth,IL,other,120,Wierd object in the sky. +2012-04-03,25.7738889,-80.1938889,Miami,FL,unknown,120,Object with white puffy smoke. +2012-04-03,33.8702778,-117.9244444,Fullerton,CA,sphere,2,White-ish orb caught on my webcam. +2012-04-03,39.9611111,-82.9988889,Columbus,OH,cylinder,600,Bright white cigar/cylinder above columbus OH 4/03/2012 daytime sighting +2012-04-03,39.5308333,-80.3436111,Mannington,WV,oval,60,Tuesday april 3rd at 8:50 p.m. in Mannington wv I was pulling in my drive way and my two kids say "hey dad what is that in the sky abov +2012-04-03,39.1522222,-80.0405556,Philippi,WV,teardrop,170,Bright blue/white orb forms hazy cloud, changes shape to teardrop. ((NUFORC Note: Possible sighting of Venus. PD)) +2012-04-03,45.4872222,-122.8025,Beaverton,OR,oval,2400,Bright Object seen over Portland OR about 22:00 04/03/12 with event 40 minutes duration +2012-04-03,39.6411111,-85.1411111,Connersville,IN,rectangle,15,Extremely Loud Rectangle UFO with White and Red Lights Flying really low. +2012-04-03,41.2786111,-72.5280556,Clinton,CT,disk,720,Bright hoovering light , that became brighter and had rays coming out of either side. +2013-04-03,42.6811111,-82.7369444,New Baltimore,MI,triangle,420,Bright white object wandering over New Baltimore, MI +2013-04-03,42.325,-72.6416667,Northampton,MA,triangle,180,Low hovering lit craft. +2013-04-03,42.4183333,-71.1066667,Medford,MA,disk,10,Round silver saucer type craft just hovering. +2013-04-03,45.5230556,-122.9886111,Hillsboro,OR,unknown,120,Flashing bright lights at night in Hillsboro +2013-04-03,35.6225,-117.67,Ridgecrest,CA,sphere,300,Witnessed orange orb over a light pole across the street. Orb moved over a neighbors house. +2013-04-03,39.6283333,-84.1594444,Centerville,OH,circle,20,Reddish-orange ball of light moving west to east silently have video +2013-04-03,42.9005556,-78.6705556,Lancaster,NY,sphere,1800,Reddish in color. Seen looking eastward. Object appeared to rise up from behind a distant line of trees, hovered shakily in the sky f +2014-04-03,33.7222222,-116.3736111,Palm Desert,CA,disk,180,15-20 white disk shaped objects circling in the sky as if orbiting something. +2014-04-03,34.7447222,-87.6675,Muscle Shoals,AL,cylinder,120,Dual metallic cylinder craft with no sound. +2014-04-03,33.6305556,-112.3325,Surprise,AZ,light,600,Bright pinpoint of light in the daylight sky; moved erratically then in a straight line, stopped, moved on in the opposite direction. +2014-04-03,42.8886111,-88.0383333,Franklin,WI,other,45,Short bright blueish white hour glass shape light moving at high rate of speed upwards. +2014-04-03,33.4483333,-112.0733333,Phoenix,AZ,light,240,It was kinda interesting to see. +2014-04-03,26.6583333,-80.2416667,Wellington,FL,disk,1200,VERY BRIGHT BLUE DISC HOVERING SIDE TO SIDE WITH INCREDIBLE SPEED. +2014-04-03,41.6080556,-74.2994444,Pine Bush,NY,unknown,60,Rapidly descending craft with large red and white lights entered residential area at very low altitude. +2014-04-03,45.7833333,-108.5,Billings,MT,light,60,3 bright red lights over Billings, Montana. +2014-04-03,42.5005556,-90.6644444,Dubuque,IA,circle,120,Round object moving slowly across sky and goes opposite direction in a second. ((NUFORC Note: Model airplane?? PD)) +2014-04-03,34.4047222,-103.2047222,Clovis,NM,changing,60,6 red lights that changed it to a stream of gold light that simply disappeared. +2014-04-03,42.4083333,-71.0125,Revere,MA,formation,30,Fly over in V formation 17 to 23 craft bouncing around. +2014-04-03,38.8822222,-77.1713889,Falls Church,VA,triangle,120,I saw 3 UFO's, they were shaped like a triangle, had slow flashing lights, and disappeared after 2 minutes. +1968-04-04,34.7463889,-92.2894444,Little Rock,AR,cylinder,180,Non noise, no reflection, cylindar object +1978-04-04,34.0522222,-118.2427778,Los Angeles,CA,unknown,45,strange blue light enhances IQ +1978-04-04,42.2833333,-71.35,Natick,MA,sphere,480,GIANT UFO - Natick, MA on Route 9 behind CAR WASH - either 1977 or 1978. +1978-04-04,42.2833333,-71.35,Natick,MA,sphere,900,GIANT UFO - Natick, MA on Route 9 behind CAR WASH - either 1977 or 1978 additional confirmation. +1978-04-04,42.2833333,-71.35,Natick,MA,sphere,600,GIANT UFO - Natick, MA ...Route 9 behind CAR WASH****MORE FOLLOW-UP INFO****April 1978 +1979-04-04,32.7833333,-96.8,Dallas,TX,light,5,Fast moving light that stopped, moved backwards and took off again. +1985-04-04,41.8530556,-74.1394444,Stone Ridge,NY,other,1500,Huge, low flying, silent cube shaped object with lights on bottom travelling about 60 m.p.h. over Stone Ridge. +1985-04-04,41.85,-87.65,Chicago,IL,disk,300,i saw a u.f.o in chicago in a area called lincoln park it hoovered above us for about 5 minutes it was a circular object with flashing +1988-04-04,43.9144444,-69.9658333,Brunswick,ME,unknown,10,Navy aircraft completely illuminated by moving, elevated bright green light hovering over airfield +1988-04-04,41.0813889,-81.5191667,Akron,OH,light,30,1 light split into 3,hovered, then flew away +1993-04-04,43.0388889,-87.9063889,Milwaukee,WI,triangle,300,Milwaukee-- one winged, silent, brightest lights, huge, 1993 +1994-04-04,26.0108333,-80.1497222,Hollywood,FL,circle,7200,Orange Orbs in Broward County Florida. +1995-04-04,37.2705556,-76.7077778,Williamsburg,VA,sphere,1500,Sphere witnessed in VA +1997-04-04,33.7488889,-84.3880556,Atlanta,GA,sphere,240,Daytime sighting of spheres over Midtown Atlanta. +1998-04-04,41.14,-104.8197222,Cheyenne,WY,sphere,10,Seen on highway on back of Military flatbed w/"black" helicopter escort(1), 4 black Humvee's(black uniforms W/M16's inside). Object und +1998-04-04,44.23,-69.7758333,Gardiner,ME,circle,600,Went straight up and down for 5 minutes and then dissapeared. Later that night my Mom and I saw it agian do the same thing, only this t +1999-04-04,39.2461111,-94.4188889,Liberty,MO,disk,600,Driving home on the 4th or 5th, I thought it was Easter night. There were not many cars out we saw it while driving. It moved very fas +1999-04-04,33.9172222,-118.0111111,La Mirada,CA,fireball,1200,amber color object moving from east to west along lax glidepath and on two accounts droping smaller objects of sme color. +2000-04-04,41.1305556,-85.1288889,Fort Wayne,IN,oval,300,Seen from I-69 between Indianapolis and Fort Wayne, Indiana. Object had strobing lights that seemed to circle around it. +2000-04-04,27.9655556,-82.8002778,Clearwater,FL,other,25,Heard loud low flying jet or aircraft pass over me. NO CRAFT! +2000-04-04,33.9325,-114.005,Bouse,AZ,light,5,On Ap.4񫺐 approx. 21:05hrs, NNE direction as in previous sightings (towards Prescott). With 3 witnesses, 5 amber ball of light brig +2001-04-04,44.8547222,-93.4705556,Eden Prairie,MN,circle,180,2 red illuminated objects "zig zagging" in the day lit sky over a heavily populated area, 3 minute sighting. +2001-04-04,34.8697222,-111.7602778,Sedona,AZ,other,10,Two separate and distinct yellow-gold lights streaking low across the sky, appearing to have tails, but moving swiftly and in unison. +2001-04-04,38.0291667,-78.4769444,Charlottesville,VA,other,180,Five-Sided Craft Spotted in Charlottesville +2001-04-04,40.1266667,-79.4288889,Acme,PA,diamond,8,Low Level Diamond shaped Object Reported +2001-04-04,41.5413889,-86.9005556,Westville,IN,diamond,30,A diamond shaped craft with 4 bright lights - 1 at each corner - moving silently, at great speed - seen in NW Ind. on 04-04-01 @ 11:30 +2001-04-04,41.3977778,-79.8316667,Franklin,PA,disk,1200,Object of 11JUL00 Reutrns....... +2002-04-04,30.7741667,-85.2269444,Marianna,FL,other,60,Marianna, Fl, Football shaped object close to I-10 +2002-04-04,40.3272222,-76.0113889,Sinking Spring,PA,light,2700,2 family members spot a UFO in Pennsylvania +2002-04-04,41.3113889,-105.5905556,Laramie,WY,changing,30,A cluster of approximately 15 lights appeared and fanned out into a V shape while appearing to fly overhead. +2003-04-04,30.3319444,-81.6558333,Jacksonville,FL,circle,20,The objects appeared in the photo, after I "took away" the darkness of the sky. +2003-04-04,45.0847222,-93.0097222,White Bear Lake,MN,disk,600,I watched this on live t.v on cnn,fox news,msnbc.It was durning the war coverage.They were showing the live feed from baghdad.Shots wer +2003-04-04,45.4944444,-122.8658333,Aloha,OR,sphere,2,Large sphere entering clouds at high rate of speed. +2003-04-04,37.9780556,-122.03,Concord,CA,fireball,300,firball craft in sky over concord california +2003-04-04,37.9780556,-122.03,Concord,CA,circle,600,its color was bright orange and it was round It moved slow and would stop and hover then it started dropping things +2003-04-04,26.2708333,-80.2708333,Coral Springs,FL,triangle,60,we saw a dark figure outside the window. at first we thought it was a man. A naked man in the middle of the road. but after about half +2004-04-04,38.005,-121.8047222,Antioch,CA,other,27,The thing look like oval shaped but not round. ((NUFORC Note: We are uncertain as to whether this is a serious report. PD)) +2004-04-04,40.1163889,-88.2433333,Champaign,IL,triangle,6,lights tumble over champaign, illinois +2004-04-04,38.8047222,-77.0472222,Alexandria,VA,light,20,((NUFORC Note: Possible hoax. PD)) Light there going across sky one second then gone .. +2004-04-04,28.0391667,-81.95,Lakeland,FL,oval,60,My parants live in Lakeland FL. and they both called and told me they seen a ufo.My Dad said it hovered still for about 45 seconds and +2004-04-04,36.175,-115.1363889,Las Vegas,NV,other,600,Giant dark brown caterpillar-like object wiggles its way across the sky as it floats high above Las Vegas +2004-04-04,36.0725,-79.7922222,Greensboro,NC,light,30,Bright light +2004-04-04,47.4236111,-120.3091667,Wenatchee,WA,light,30,Object appeared to be a satellite, then made a 90 degree turn and disappeared. +2004-04-04,41.6833333,-86.25,South Bend,IN,sphere,15,150 foot glowing redish-orange object over northern Indiana on April 4th, 2004 (23:00). +2004-04-04,47.9255556,-122.6822222,Port Ludlow,WA,fireball,3,A bright white ball came directly overhead from the southern sky and travelled north and dipped below the horizon. +2004-04-04,35.8938889,-80.5616667,Mocksville,NC,light,240,Bright light hovering over tree line +2005-04-04,38.8113889,-90.8527778,Wentzville,MO,fireball,4,Blue/white streak in Southern sky traveling East to West parallel to the horizon. +2005-04-04,36.1658333,-86.7844444,Nashville,TN,light,3,Lightning fast light shoots and disappears in Nashville sky. +2005-04-04,34.7227778,-76.7263889,Morehead City,NC,triangle,10,Triangle, three large dim rectangle lights running down the left and right sides. +2005-04-04,41.8463889,-71.8880556,Dayville,CT,other,900,two objects moving slowly in a clear night sky---one had a white semi-circle of lights that appeared to strobe +2006-04-04,33.8388889,-83.9008333,Loganville,GA,light,5,Blue light/object sighted over rural area just East of Loganville, GA +2006-04-04,34.8227778,-118.9438889,Frazier Park,CA,circle,60,The Love of my Life is snoring so I can’t sleep, I go into the kitchen and watch the snow fall, and it is 1:00 A.M. A star is trying to +2006-04-04,38.8338889,-104.8208333,Colorado Springs,CO,circle,3600,Circular Bright White Flying Saucer +2006-04-04,41.0813889,-81.5191667,Akron,OH,fireball,240,Bright white to reddish orange in the sky looked like a shooting star, until it stopped in mid air. +2006-04-04,43.55,-96.7,Sioux Falls,SD,unknown,180,Unk light hovering for a moment then sped away +2006-04-04,40.3791667,-87.6686111,Rossville,IL,light,6.5,green flash +2007-04-04,37.4419444,-122.1419444,Palo Alto,CA,sphere,3,Bright luminous spherical moon size object much faster than airplane descending southwest under the clouds in Palo Alto, CA +2007-04-04,38.9583333,-122.6252778,Clearlake,CA,light,120,A bright white light moving in a straight line light did not blink. +2007-04-04,37.3661111,-81.1027778,Princeton,WV,circle,2,blue orb and dream +2007-04-04,41.2586111,-95.9375,Omaha,NE,flash,60,Silver Object/Flash Appears in Sky- Disappears, then Reappears +2007-04-04,32.7447222,-116.9980556,Spring Valley,CA,fireball,300,Fireball that looked like a flare in sky that shoots upward. +2007-04-04,33.2486111,-111.6336111,Queen Creek,AZ,light,60,2 golden orbs near SanTan Mtn Regional Park +2007-04-04,34.1625,-112.85,Congress,AZ,unknown,5,I was watching blinking airplane lights in the distance, when suddenly four large yellow square lights came on in sequence, then went o +2007-04-04,34.1625,-112.85,Congress,AZ,unknown,5,Square lights appeared in sequence, then disappeared simultaneously. +2007-04-04,41.525,-88.0816667,Joliet,IL,unknown,300,unnidentified object over Joliet Il. +2007-04-04,26.625,-81.625,Lehigh Acres,FL,disk,1800,We saw this light very low in the sky and asked if they could also see it.... ((NUFORC Note: Sirius?? PD)) +2007-04-04,39.2102778,-92.1377778,Centralia,MO,sphere,360,Shining, hovering red craft in western sky over central MO. +2008-04-04,47.6063889,-122.3308333,Seattle,WA,unknown,300,turned around above my house with a flash and a noise +2008-04-04,36.7080556,-119.555,Sanger,CA,circle,6,i saw something. +2008-04-04,34.4838889,-114.3216667,Lake Havasu City,AZ,other,300,metallic craft seen almost floating over lake havasu city +2008-04-04,34.0522222,-118.2427778,Los Angeles,CA,cigar,1200,Cigar shaped craft, extremely faint with lights flashing from left to right and back. +2008-04-04,30.6166667,-89.6525,Carriere,MS,light,7200,same flashing light, doing the same thing, 3rd time this week, ((NUFORC Note: Possible sighting of Sirius?? PD)) +2008-04-04,42.9119444,-83.9847222,Durand,MI,light,2700,04/04/08 object sighted moving from west to east.approxmately 45min duration, arcing to the north while still moving twards east.This p +2008-04-04,37.6922222,-97.3372222,Wichita,KS,triangle,900,Black triangular/stealth shaped craft, white lights on craft made V-shape, craft appeared to move slowly, hover. +2008-04-04,29.6513889,-82.325,Gainesville,FL,triangle,2,April 4, 2008, 10:14 pm, triangular formation of white lights forming one solid object over night sky in Gainesville, FL. +2008-04-04,40.5675,-89.6405556,Pekin,IL,triangle,30,Triangular and low-flying aircraft sighted at my house. +2009-04-04,33.9525,-84.55,Marietta,GA,sphere,300,Saturday April 04/2009 around 12:30 pm - Atlanta Georgia – weather clear, sunny, and blue sky's. While working in the yard (north +2009-04-04,37.9988889,-86.1694444,Brandenburg,KY,unknown,480,very loud, slow, low flying object +2009-04-04,41.6716667,-72.9497222,Bristol,CT,cigar,180,i do not believe it was something from this planet...very strange. +2009-04-04,39.9375,-76.9788889,East Berlin,PA,oval,120,black spot in photo from spy cam +2009-04-04,29.8944444,-81.3147222,St. Augustine,FL,light,300,Orange light over the ocean +2009-04-04,35.198055600000004,-111.6505556,Flagstaff,AZ,light,600,We saw an orange light moving around in the sky and going out twice, for about ten minutes. +2009-04-04,33.9561111,-83.9880556,Lawrenceville,GA,sphere,10,Orang colored sphere skipping very fast across the night sky +2009-04-04,39.1619444,-84.4569444,Cincinnati,OH,light,300,3 orange lights of fire in a straight line moving slow. +2009-04-04,33.1958333,-117.3786111,Oceanside,CA,light,60.1,Single bright light in southwestern sky at 75 degrees with single side to side movement and disappearance. +2009-04-04,40.1783333,-75.1288889,Horsham,PA,triangle,30,Triangle +2009-04-04,38.4405556,-122.7133333,Santa Rosa,CA,light,120,Five or six hovering lights formed into a triangle in the sky in Santa Rosa, California. +2009-04-04,44.5297222,-93.3525,Webster,MN,light,10,Last night, about 12 midnight on April 4th 2009 I was sitting in our sunroom (large windows) at our computer looking at colleges online +2010-04-04,37.6391667,-120.9958333,Modesto,CA,light,10,HOAX IN MODESTO?? +2010-04-04,41.4772222,-72.5125,Haddam,CT,cigar,300,Multiple zigzagging white objects far up in the sky +2010-04-04,34.0522222,-118.2427778,Los Angeles,CA,unknown,360,4 orbs converge into 1 orb. ((NUFORC Note: Possible advertising lights. PD)) +2011-04-04,33.9908333,-118.4591667,Venice,CA,other,900,My brother was coming home from work at 03.00 a.m. morning and waken me up and take a look at this Cloud The Cloud was shape like a Bi +2011-04-04,61.5813889,-149.4394444,Wasilla,AK,circle,300,White circle looking light that gets really bright then fades away as its moving across the sky. +2011-04-04,33.7877778,-117.8522222,Orange,CA,light,300,Triangle lights hovering over Cowen Heights +2011-04-04,36.175,-115.1363889,Las Vegas,NV,oval,2700,UFO over Las Vegas NV 4/4/2011 8:30PM +2011-04-04,32.5183333,-98.0455556,Lipan (Sw Of),TX,other,20,SOUTH WEST OF LIPAN, TX, ONE ORANGE BALL OF LIGHT SPLITS TO 3, THEN VANISH. +2011-04-04,39.1638889,-119.7663889,Carson City,NV,triangle,10,greyish/flat black in color no lights triangular shape with no noise from craft +2011-04-04,45.6388889,-122.6602778,Vancouver,WA,unknown,900,Light seen above Vancouver, WA. ((NUFORC Note: Possible sighting of a "twinkling" star?? PD)) +2012-04-04,44.4111111,-72.1397222,Danville,VT,light,120,Woke up to bright light shining into house coming from the sky. +2012-04-04,28.5380556,-81.3794444,Orlando,FL,changing,180,Shape Changing UFO 4-2-12 Orlando,FL,USA +2012-04-04,35.0844444,-106.6505556,Albuquerque,NM,disk,360,One craft at altitude that remained stationary for length on observation. It appeared to be lower than commercial air traffic, because +2012-04-04,26.6402778,-81.8725,Ft. Myers,FL,unknown,120,Yellowish/orange objects seen over Ft. Myers +2012-04-04,37.7241667,-89.8611111,Perryville,MO,sphere,2700,One large, spherical, unblinking light, seen in the distance that made quick movements. +2012-04-04,35.4086111,-80.5797222,Concord,NC,light,1800,I was driving to my house from my friend’s house which is about 15 minutes away from my house. As I was driving I looked up at the sky +2012-04-04,41.2425,-82.6158333,Norwalk,OH,disk,300,It was just sitting over a house with yellow red blue green flashing lights all going different speeds we stopped and watched for about +2013-04-04,47.6063889,-122.3308333,Seattle,WA,sphere,120,Orange sphere seen by 7-10 people in Seattle over Elliott Bay +2013-04-04,37.2702778,-95.5522222,Cherryvale,KS,formation,1800,Horrifying greenish blue, color changing figures by the lake in Mongomery KS. +2013-04-04,44.5625,-92.5336111,Red Wing,MN,triangle,180,Three orange lights in a triangular formation moving west to east and then east to west across the sky. +2013-04-04,39.7683333,-86.1580556,Indianapolis,IN,disk,30,Large, flat sphere with BRIGHT red and white fast, flashing lights flying in Indianapolis, Indiana. +2013-04-04,33.1958333,-117.3786111,Oceanside,CA,light,1200,Three orange to red undulating lights above cloud cover, in series, at somewhat regular intervals of five to eight minutes. +2013-04-04,28.4652778,-98.8105556,Fowlerton,TX,unknown,2,Lights in sky over fowlerton,tx +2014-04-04,37.6502778,-84.9516667,Perryville,KY,changing,600,Pulsing shape shifting small craft that seemed to hold a minor hypnotic trance upon me. +2014-04-04,27.6383333,-80.3975,Vero Beach,FL,circle,300,Glowing Red Orb +2014-04-04,44.2066667,-69.4530556,Jefferson,ME,cross,1800,16 identical fixed wing objects moving apparently randomly, both indivdually and collectively, as hawks might do, very high up. +2014-04-04,44.2066667,-69.4530556,Jefferson,ME,other,1200,On 04/04/14. at approx. 18:00 hrs. 5 extremely bright white objects, very high up, straight flat wings, slight curved corners. +2014-04-04,32.7152778,-117.1563889,San Diego,CA,other,60,Silver object over San Diego. +2014-04-04,30.3319444,-81.6558333,Jacksonville,FL,oval,20,Black oval craft flying below cloud line making no sounds, displaying no lights & travelling at high velocity. +2014-04-04,33.9533333,-117.3952778,Riverside,CA,disk,120,4-5 circular white lights rotate around a circular orbit over part of Riverside. +2014-04-04,30.1586111,-85.6602778,Panama City,FL,light,90,My attention was drawn to the SW at a bright light slightly bigger and brighter than the stars. +2014-04-04,28.0391667,-81.95,Lakeland,FL,fireball,180,Fireball over Lakeland, Florida. +2014-04-04,39.4141667,-77.4108333,Frederick,MD,light,300,Brilliant blue pinpoint of light fading in and out. +1968-04-05,42.3241667,-83.4002778,Westland,MI,disk,180,1968 Westland MI, and 1982 US. NAVY sighting's +1971-04-05,28.5380556,-81.3794444,Orlando,FL,disk,120,Orlando, Pine Hills Disk +1971-04-05,33.4358333,-86.1058333,Talladega,AL,disk,300,irridescent disc spinning silently below treetop level at approx. 100yds distance. nothing between us and the object to hamper vision. +1973-04-05,29.7630556,-95.3630556,Houston,TX,disk,30,Perfect disk with lights on edge; one side red, one side green: no sound No clouds, disk blocked out stars, moving S.to N. +1980-04-06,47.6063889,-122.3308333,Seattle,WA,triangle,180,Metal triangle seen over Boeing field in 1980. +1983-04-05,21.2827778,-157.8294444,Waikiki,HI,disk,30,The object was very clear, no haze, no distortions, and silent. It was lighted with multiple colors on its bottom, remeniscent but not +1984-04-05,32.7355556,-97.1077778,Arlington,TX,triangle,300,I have a childhood memory of looking out front window, and seeing a glowing, pink house floating in the sky. When I read the book Comm +1995-04-05,18.3822222,-65.8316667,Rio Grande (Puerto Rico),PR,unknown,18000,alien body photographed +1995-04-05,33.4222222,-111.8219444,Mesa,AZ,disk,300,They're here whether you like it or not. +1996-04-05,40.5866667,-122.3905556,Redding,CA,disk,60,I saw it hover for a 1min.Then it tuck off at a high speed. +1996-04-05,32.7152778,-117.1563889,San Diego,CA,formation,60,Two military members sighted two red lightsnorth of downntown San Diego. +1996-04-05,48.1988889,-122.1238889,Arlington,WA,disk,300,Craft hovered over a barn on the side of the road and put a spotlight in my car +1997-04-05,30.5227778,-87.9033333,Fairhope,AL,circle,60,Man walking dog sees tire-shaped object w/windows. No sound, no animal reaction. +1997-04-05,30.5227778,-87.9033333,Fairhope,AL,other,30,Witness observes tire-shaped object w/windows. +1997-04-05,46.5352778,-121.9558333,Randle (Near),WA,light,45,Large bright object moving horizontal in the evening sky, very low, made no noise. +1998-04-05,44.5469444,-69.6216667,Winslow,ME,light,300,followed home by low flying light +1998-04-05,43.4711111,-89.7441667,Baraboo,WI,light,2,A bright white light, tens of thousands of feet in the air, swooped downward, left a lingering impression or reflection, and disappeare +1998-04-05,36.9880556,-121.9555556,Soquel,CA,other,80,Greyish green wing shape travelling upthe coast Santa Cruz California +1998-04-05,41.4294444,-88.2286111,Channahon (Near Joliet),IL,triangle,180,I saw these three Lights in the sky, as the came closer, the stopped, hovered, rotated, and then began to move towards me. I sped off, +1999-04-05,46.7313889,-117.1786111,Pullman,WA,light,180,A bright point-like light appeared in the evening sky (not yet dark enough for most stars to be visible much less satalites). It moved +1999-04-05,34.7302778,-86.5861111,Huntsville,AL,cigar,900,wife an I were driving that afternoon ,when we first saw it it was standing on its end.lost site of it while we made a curve an went pa +1999-04-05,32.6630556,-95.4880556,Mineola,TX,circle,600,One Hovering craft...Multi-colored lights...Possible USAF persuit! +1999-04-05,39.2902778,-76.6125,Baltimore,MD,fireball,3,My husband and I were traveling north on Rt. 295, leaving Baltimore Washington Airport. When looking north to the city of Baltimore, w +1999-04-05,30.9333333,-91.7047222,Lettsworth,LA,light,120,noise, vibration, light seen being chased by helicopters +1999-04-05,39.2461111,-94.4188889,Liberty,MO,triangle,600,Craft seen hovering over houses, when persued it left at a rapid velocity. Similar craft seen a few minutes later. +2000-04-05,38.7713889,-90.3708333,Hazelwood,MO,cylinder,600,A cylinder object was seemingly to hang from the sky until airforce jets started to close in on it. The object turned and left. +2000-04-05,38.3363889,-75.0852778,Ocean City,MD,disk,240,We saw two strange lights coming up over the ocean. The lights (that were alternating blue, red and white) were at the same height but +2001-04-05,32.8383333,-116.9730556,Santee,CA,unknown,1500,100 Star sized UFOs move in formation over southwest! +2001-04-05,33.0186111,-117.06,Rancho Bernardo,CA,light,300,It was starting to get cloudy, but I had a fairly large area of clear sky. I was at work, and stepped outside. I looked up into the sky +2001-04-05,40.9597222,-72.9966667,Miller Place,NY,disk,120,ORANGE GLOWING DISK THAT BECAME LARGER AND BRIGHTER AS IT DESCENDED +2001-04-05,38.9747222,-74.8338889,Wildwood Crest,NJ,other,300,White trail travelling north, making abrupt U-turn, then trail becoming erratic, losing altitude and disappearing from sight. +2001-04-05,38.7891667,-90.3225,Florissant (St. Louis),MO,triangle,180,Object seen in sky 04052001 9:56pm,triangular in shape,surrounded by lights, one red light in center of object +2002-04-05,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,15,flying lights +2002-04-05,42.9038889,-78.6925,Depew,NY,triangle,240,the fist craft was a triangle aprox. one football field per span on each side. there where lights down each side with on incredible lig +2003-04-05,32.8438889,-97.1427778,Bedford,TX,unknown,150,burning object came down changing trajectory as it crashed unknown type/origin. +2003-04-05,34.7444444,-120.2772222,Los Alamos,CA,cigar,60,12noon @Mtn Figueroa CA, near Los Alamos 2mil jets chase cigar or linear shape object just over hill top heading east from w +2003-04-05,34.7444444,-120.2772222,Los Alamos,CA,cigar,60,I witnessed a cigar-shaped object being pursued by two F-16's in the skies over Los Alamos, CA. +2003-04-05,42.5125,-88.1208333,Trevor,WI,unknown,5,Invsible object casts large fast moving shadow on ground +2003-04-05,40.8022222,-124.1625,Eureka,CA,disk,1800,I was sitting in my bedroom listening to my shortwave radio when the neighbors started yelling for me to get outside.I forget the exact +2003-04-05,36.7477778,-119.7713889,Fresno,CA,chevron,180,Boomarang object with lights floating across the night sky. +2003-04-05,35.0844444,-106.6505556,Albuquerque,NM,chevron,900,Extemely large "flying wing" hovering above a shopping center in Albuquerque NM then left southbound at slow speeds. +2004-04-05,42.6055556,-83.15,Troy,MI,unknown,600,The object at times looked like funnel shape. It was very fuzzy and sounded almost like a hurricane was coming off the coast of florid +2004-04-05,47.6447222,-122.6936111,Silverdale,WA,teardrop,12,A tear shaped bright blue/ green object seen in Silverdale Wa. at 00:47 . +2004-04-05,42.6055556,-83.15,Troy,MI,other,300,I saw two of them. One like a cigar and another like a saucer. I think they flew at least 100 miles per hour. I saw them flying in the +2004-04-05,42.6055556,-83.15,Troy,MI,other,300,I don't no what it was. I was standing outside when I saw what I think was a fuzzy circle, maybe a spherical object. I couldn't tell, +2004-04-05,35.9669444,-83.1877778,Newport,TN,other,40,Strange creature +2004-04-05,41.9761111,-72.5922222,Enfield,CT,triangle,300,Triangle craft with 3 white lights, 4th flashing, as I filmed the craft it made no noise, hopefully you will see on TV +2004-04-05,36.3983333,-78.1555556,Warrenton,NC,changing,120,I have this on a video. I also have some strange film taken inside the house. I will allow you to examine the tape if you will call me +2004-04-05,25.7738889,-80.1938889,Miami,FL,unknown,60,It looked like a star and moved in a circular pattern. +2004-04-05,32.7252778,-114.6236111,Yuma,AZ,triangle,60,Dark triangle with no lights and no sound 150 feet above our heads. +2004-04-05,33.5480556,-86.5444444,Leeds,AL,light,6,4 person, 6 sec sighting of a slow streaking flare/meteorite type object that disappeared and reappeared before passing nearby horizon. +2005-04-05,42.225,-121.7805556,Klamath Falls,OR,other,360,Four objects spotted during daylight, resembled early flying wings, no sound, flying much faster than jet that had just flown over. +2005-04-05,42.1733333,-73.035,East Otis,MA,cigar,10,the brightist light being in the front of the obect- coming from the north and headed northwest-it was extremly fast +2005-04-05,34.4261111,-117.5713889,Phelan,CA,changing,1500,Large object that consisted of a configuration (in a row) of very large orange lights in High Desert. +2006-04-05,29.6513889,-82.325,Gainesville,FL,rectangle,300,Very large aircraft, moving at 30 knots, at about 2500 feet, rectangular in shape. +2006-04-05,42.1291667,-80.0852778,Erie,PA,disk,90,In Erie, PA we saw three disk-like objects with lights and moving quickly. +2006-04-05,42.1291667,-80.0852778,Erie,PA,disk,60,Three disk like objects flew over Erie, PA at around 3:15, there were lights and not any noticable noise. +2006-04-05,34.3847222,-118.53,Newhall,CA,circle,5,saw light which "imploded" upon itself leaving a halo, then faded to nothing in the sky +2006-04-05,40.4925,-121.8880556,Shingletown,CA,disk,60,scarry!! +2006-04-05,47.6447222,-122.6936111,Silverdale,WA,sphere,60,Spherical object travelling south, intermittently flashing/reflecting yellowish/whittish light in varying intensity. +2006-04-05,38.5888889,-89.9902778,Fairview Heights,IL,sphere,5,Sphere just under clouds after a tornado. +2006-04-05,29.6483333,-81.6377778,Palatka,FL,disk,120,A light came out and droped another light...then moved away....Fast! +2006-04-05,46.7163889,-122.9530556,Centralia,WA,fireball,5,Sighted over Cooks Hill Road and Joppish Road just west of I-5. Dusk clear sky. Large fireball long tail red flame with yellow and blue +2006-04-05,47.4019444,-122.3230556,Des Moines,WA,fireball,2,Weird fireball that just diappeared without fanfare and followed up by 4 fighters. +2006-04-05,47.0530556,-122.2930556,Graham,WA,disk,1800,At first glance, it looked like a plane, we realized that it wasn't moven, but dancing in place with rainbow lights radiating off of it +2006-04-05,35.4675,-97.5161111,Oklahoma City,OK,circle,600,Two hovering orange circles drop third orange circle over oklahoma. +2006-04-05,29.8830556,-97.9411111,San Marcos,TX,triangle,120,Flying triangle in sky over San Marcos +2007-04-05,29.4238889,-98.4933333,San Antonio,TX,other,25,PLane looking object disenegrates over Texas sky. +2007-04-05,34.7302778,-86.5861111,Huntsville,AL,triangle,420,large triangular object near UAH in Huntsville, Al moving very slowly with no sound +2007-04-05,37.5536111,-77.4605556,Richmond,VA,cigar,6,Small bright white cigar object flash by at tree hight, pointed at ends, super fast, then dissappear. +2007-04-05,39.5358333,-76.3486111,Bel Air,MD,egg,2400,Large glowing egg shaped light that rotates. At certain points in its rotation, you could see dozens of lights. +2007-04-05,41.76,-70.0833333,Brewster,MA,flash,1800,Bright flashing oval shaped light hovering in Brewster, Cape Cod, MA. Changing colors Also red lights around it. ((Sirius?? PD)) +2007-04-05,47.2152778,-123.0994444,Shelton,WA,light,2,12 red lights over Shelton. +2008-04-05,44.5191667,-88.0197222,Green Bay,WI,triangle,6,I was talking on the cell phone observing the sky and notice a very clear sky when all of sudden there were 9 bright orange lights form +2008-04-05,34.0552778,-117.7513889,Pomona,CA,unknown,1800,The craft moved too much to be an airplane and it made certain moves that make it not man made. +2008-04-05,40.3041667,-73.9927778,Long Branch,NJ,light,120,Two bright lights off Long Branch, NJ over the Atlantic Ocean +2008-04-05,27.8533333,-82.3827778,Gibsonton,FL,triangle,120,Black Triangle with white dots on each of the triangles angles viewed in riverview +2009-04-05,39.2063889,-76.9433333,Clarksville,MD,cigar,300,Large Mettalic Object making no sounds with red and green lights hovering by power lines moves away fast! +2009-04-05,39.5319444,-78.4586111,Paw Paw (Near),WV,oval,25,Saw a bright, very short cylinder or oval move across the night sky, brighten intensely, then disappear, all within about 25 seconds. +2009-04-05,30.505,-97.82,Cedar Park,TX,disk,20,On a clear blue afternoon sky, there appeared a slow moving disk-like shiny object that gradually vanished after about 20 seconds +2009-04-05,33.78,-118.2616667,Wilmington,CA,sphere,600,3 spheres above the Los Angeles Harbor +2009-04-05,40.3302778,-73.9819444,Monmouth Beach,NJ,light,3600,Many strange red lights over Monmouth Beach +2009-04-05,47.4019444,-122.3230556,Des Moines,WA,oval,300,I saw an ovel craft very high in the sky moving very quickly and changing directions from east to west it was glowing blue in color. +2009-04-05,40.1163889,-88.2433333,Champaign,IL,triangle,7,fast moving triangle with neon green light at each end, making no sound as it moved +2010-04-05,40.6786111,-82.5825,Lexington,OH,disk,300,large unknown object with red outer lights followed uss in the night +2010-04-05,42.4666667,-70.95,Lynn,MA,circle,30,I seen a bright white circular object moving to the left, right, zig-zag, and circular motions. +2010-04-05,42.0916667,-70.7061111,Marshfield,MA,sphere,180,witnessed drones watching us from a couple miles above the ocean must read +2010-04-05,34.6963889,-92.0961111,Scott,AR,light,480,Green Light +2010-04-05,35.9172222,-82.3011111,Burnsville,NC,unknown,1,super fast , moving light +2010-04-05,34.2255556,-77.945,Wilmington,NC,oval,7200,Stationary flashing object in the sky. +2010-04-05,37.2152778,-93.2980556,Springfield,MO,sphere,7,Yellow Orb +2010-04-05,39.4666667,-87.4138889,Terre Haute,IN,light,20,A very bright point of light seen in north sky. +2011-04-05,34.09,-117.8894444,West Covina,CA,sphere,720,Star like Orbs, seen during the day +2011-04-05,34.2694444,-118.7805556,Simi Valley,CA,diamond,300,3 lights in the sky +2011-04-05,41.0036111,-80.3472222,New Castle,PA,other,30,Zig zag formation lighted object Highland Ave. +2011-04-05,38.14,-93.7266667,Lowry City,MO,light,9,((HOAX??)) a oval light moving about 60 miles per hour over a forest. +2011-04-05,37.775,-122.4183333,San Francisco,CA,light,60,3 UFOs over northern California 4/5/11 at 10pm +2011-04-05,43.3391667,-71.26,Center Barnstead,NH,other,300,Round sphere w/3 fingerlike tendrils w/yellow orange and red lights on the end, coming from one spot on its hemisphere. +2012-04-05,33.0369444,-117.2911111,Encinitas,CA,formation,45,I was driving north down the 5 freeway. I was in between the freeway exits Lomas Santa Fe and Machester dr. when these lights flew over +2012-04-05,41.8791667,-73.4772222,Sharon,CT,light,900,Pulsing variable colored lights, large, near communication towers +2012-04-05,40.6083333,-75.4905556,Allentown,PA,rectangle,120,Rectangular UFO Lehigh Valley +2012-04-05,37.7991667,-88.2611111,Ridgway,IL,fireball,600,This fireball was different than most I have seen.. it was a lot higher in the sky ... but still was too low and slow to be a plane.. ( +2012-04-05,27.4688889,-82.6863889,Cortez,FL,triangle,600,Triangular convoy of ships crossing the sky over Anna Maria Island during thunder storm +2012-04-05,38.6105556,-122.8680556,Healdsburg,CA,cigar,2,Bright orange oblong object flying very low over house. Healdsburg, California. +2013-04-05,36.175,-115.1363889,Las Vegas,NV,formation,420,5 Red orangish objects making formations over Las Vegas +2013-04-05,38.1238889,-75.7066667,Westover,MD,other,300,Driving along Route 413, heading out of town I saw an unusual shaped object heading North. The object was a half star it consisted of t +2013-04-05,39.6044444,-76.4780556,Jarrettsville,MD,circle,900,Circular, but not connected at the ends. It had rungs and was just like a ladder bent into the shape of a circle. +2013-04-05,34.2694444,-118.7805556,Simi Valley,CA,light,1200,Three orange lights in a triangular formation hovered over my neighborhood for several minutes and disappeared last night. +2013-04-05,26.1219444,-80.1436111,Fort Lauderdale,FL,circle,900,Some kind of craft 20 miles above FLL airport Hovering then moving west and then moving at high rate of speed NE +2013-04-05,37.4086111,-120.8491667,Hilmar,CA,triangle,120,Triangular shaped object, with serpent like moving tail, and blue, red, green, orange, and white lights. +2013-04-05,36.0644444,-75.7061111,Kitty Hawk,NC,light,300,Several bright yellowish lights moving south and gaining altitude until they disappeared. +2013-04-05,40.4405556,-79.9961111,Pittsburgh,PA,circle,120,Very fast moving bright light and stopped so fast +2013-04-05,41.5875,-109.2022222,Rock Springs,WY,other,1200,4 flying objects in the skies of Wyoming +2013-04-05,34.9494444,-81.9322222,Spartanburg,SC,circle,900,Bright circular object flashing red, green, and blue lights...had bobbing and subtle side to side movement. +2013-04-05,32.7252778,-97.3205556,Ft. Worth,TX,fireball,120,Fireball. +2014-04-05,32.0833333,-81.1,Savannah,GA,changing,7200,Observed Cluster of Bright, Dynamically Changing Lights. +2014-04-05,30.0686111,-81.8605556,Middleburg,FL,circle,180,4-5 orange glowing lights, bright then dim then bright then disappeared behin trees. +2014-04-05,40.8022222,-124.1625,Eureka,CA,light,12,Me and my roommate saw a fast moving object. It covered a large distance in a matter of seconds. It disappeared. +2014-04-05,38.6863889,-76.1719444,Oxford,MD,cigar,30,Missile type object flying over Maryland. +2014-04-05,40.9436111,-78.9711111,Punxsutawney,PA,disk,240,Google Earth captures Amazing UFO image on street view. +2014-04-05,38.2972222,-122.2844444,Napa,CA,cylinder,6,Cylinder shaped craft with conicle nose and whiteish with no wings visible and no contrail or sound ,traveling mach 1- 2. +2014-04-05,34.2241667,-118.2391667,La Crescenta,CA,cylinder,240,A small vertical cylinder hovered me for over 4 minutes. +2014-04-05,33.0369444,-117.2911111,Encinitas,CA,light,600,Orange Lights in San Diego. +2014-04-05,34.7227778,-76.7263889,Morehead City,NC,egg,60,Silvery Daylight Orb. +2014-04-05,42.5063889,-71.0733333,Wakefield,MA,other,300,Two small shiny, bright object with smoke billowing up from each. Just above tree line. +2014-04-05,32.7025,-103.1355556,Hobbs,NM,changing,60,Three circular craft changing shape SW of Hobbs, NM. ((NUFORC Note: Possible street lamps in front of Sun. PD)) +2014-04-05,32.7025,-103.1355556,Hobbs,NM,changing,60,Three circular craft changing shape SW of Hobbs, NM +2014-04-05,43.315,-71.6213889,Boscawen,NH,disk,300,6 large silver disks. +2014-04-05,27.4122222,-82.6591667,Longboat Key,FL,fireball,300,2 orange fire balls side by side traveling from southwest, stopped traveled east & one went south & disappeared & the other went east. +2014-04-05,35.3458333,-79.4172222,Carthage,NC,light,300,Light orb (not blinking) with a wobble in trajectory. +2014-04-05,34.9322222,-86.5719444,Hazel Green,AL,light,900,20-25 orange lighted objects over Hazel Green/Huntsville, AL, area. +2014-04-05,28.9002778,-81.2638889,Deltona,FL,other,300,Odd sightings over Deltona on April 5, 1214 +2014-04-05,41.1305556,-85.1288889,Fort Wayne,IN,sphere,1200,Red glowing globes moving west to east in formation at what appeared to be about 10k feet. +2014-04-05,36.8188889,-76.2752778,Chesapeake,VA,circle,600,Slow moving object white in color moved away at a very high rate of speed, +2014-04-05,27.8425,-82.6997222,Pinellas Park,FL,fireball,900,Fireball orbs over Pinellas Park, FL. +2014-04-05,36.0397222,-114.9811111,Henderson,NV,fireball,300,2 red orb craft traveling horizontally south of Henderson, NV, in an east to southeast direction. +2014-04-05,41.6986111,-88.0683333,Bolingbrook,IL,changing,15,Whitish/grayish half circle shape that changed into two straight lines at a 45 degree angle, concaved then went to original shape. +2014-04-05,27.6383333,-80.3975,Vero Beach,FL,light,120,Yellow-orange light over Vero Beach. +2014-04-05,36.7477778,-119.7713889,Fresno,CA,fireball,300,9-14 Scattered Orange Glowing Lights Hovering Across Fresno. +2014-04-05,40.0025,-78.5913889,Manns Choice,PA,unknown,900,My sister, I and three kids ranging from 4- 10 years old, were heading home on Route 31 West in PA and seen like a orange star. +2014-04-05,39.8208333,-84.0194444,Fairborn,OH,light,240,4 orange/yellow bright lights /spheres in a cluster. 2 travelling together in a pattern then separating. 3-4 minutes. +2014-04-05,28.2916667,-81.4077778,Kissimmee,FL,rectangle,180,Rectangle orange fire glow. +2014-04-05,30.2669444,-97.7427778,Austin,TX,light,240,Formation of Red Lights Over Zilker Park. +2014-04-05,26.2125,-80.25,Tamarac,FL,formation,120,Bright object in formation travelled very slowly across the sky not very far. +2014-04-05,39.12,-90.3283333,Jerseyville,IL,circle,5,Round blue ball light descending down to the ground by my house. +2014-04-05,32.7666667,-96.5988889,Mesquite,TX,cylinder,669,UFO'S over Mesquite, TX. +2014-04-05,29.4238889,-98.4933333,San Antonio,TX,triangle,900,Six red lights forming a triangle was seen then disappeared in to the clouds. +2014-04-05,29.4238889,-98.4933333,San Antonio,TX,triangle,900,UFO sighting. +2014-04-05,28.4055556,-80.605,Cape Canaveral,FL,triangle,60,Astronomer spots triangle with white inlaid lights passing silently at low altitude. +2014-04-05,25.6711111,-80.4447222,Hammocks,FL,light,5,Hammocks, Florida. Bright Light UFO. +1971-04-06,41.0338889,-93.7652778,Osceola,IA,disk,960,((HOAX??)) it was a flying disk it was tracking us the chararistic of the disk dont aply it followed us. +1978-04-06,43.045,-75.8669444,Chittenango,NY,fireball,21600,Red lights glaring over the sky of Town of Sullivan, Madison County, NY +1994-04-06,38.545,-121.7394444,Davis,CA,cigar,1200,bright light in the sky a real close encounter. +1994-04-06,42.3861111,-82.9119444,Grosse Pointe,MI,light,5,Green light moving at really high speeds crosses night sky and disapears +1999-04-06,30.2669444,-97.7427778,Austin,TX,fireball,4,Green comet looking thing flew across sky. +1999-04-06,36.0625,-94.1572222,Fayetteville,AR,light,240,Slowly moving orange light in a clear night sky disappears in an in an instant. +1999-04-06,47.1719444,-122.5172222,Lakewood,WA,other,600,i have seen this a few times . it is green mostly , i thought i seen some blue and some red, it was far away it looked like a thick lin +1999-04-06,48.3725,-114.1805556,Columbia Falls,MT,triangle,5,Triangle, approx 75 degree, 5 bluish lights-tip & 2 each side, NE to SW, No Sound, Fast, Large. +2000-04-06,33.7825,-117.2277778,Perris,CA,circle,900,Two USAF Jets from March Air Force Base fly in circles over my house! I saw the UFO! +2000-04-06,32.6394444,-96.5380556,Seagoville (City Of, And Dallas City),TX,circle,4,Driving on Highway 175 West towards I-635 north beltway of Dallas; less than one-half of a mile to I-635 north exit I saw a flying obje +2000-04-06,33.5386111,-112.1852778,Glendale,AZ,circle,1800,I video taped a black ufo sit in the sky for 30 min. And at the end of the tape the ufo went down below the roof line.It looked like it +2000-04-06,35.0455556,-85.3097222,Chattanooga,TN,other,7200,I am a TV Meteorologist in CHattanooga, and I received a number of calls about the aurora borealis..This is rare in this part of the wo +2000-04-06,35.1322222,-118.4480556,Tehachapi,CA,light,300,a flashing stationary white light with two constant red lights on the same side- then a moving light further away traveling fast with a +2000-04-06,39.6030556,-74.3405556,Tuckerton,NJ,sphere,7,the 2 objects seem to be following one another. +2000-04-06,32.7355556,-97.1077778,Arlington,TX,light,12,Two, bright Green Lights, orbs or UFO's, traveling at a High rate of speed with one orange companion object dancing around the lead obj +2000-04-06,29.4238889,-98.4933333,San Antonio,TX,light,10,appeared first as dim satellite, gradually becoming very bright, and finally dimming until no longer seen +2001-04-06,38.4108333,-87.7613889,Mount Carmel,IL,fireball,1200,At an area just west of Mount Carmel Il, my wife and I both witnessed fire-like orange lights that varied in speed size and brilliance. +2003-04-06,32.7866667,-79.795,Isle Of Palms,SC,changing,240,triangular shaped craft moves to join huge circular formation +2003-04-06,33.4483333,-112.0733333,Phoenix,AZ,sphere,2100,object moved at various speeds, stopping at times and then changed direction almost at a 90 degree angle the appeared to go up and dis +2003-04-06,34.1486111,-118.3955556,Studio City,CA,chevron,30,Stately progress of 25 or so round white lights in a chevron formation +2003-04-06,43.9825,-94.6266667,Saint James,MN,formation,1800,I saw a cluster (7 min.) of tiny lights stationery in the sky like stars with shimmering lights for at least a half hour. +2004-04-06,38.6447222,-121.2711111,Fair Oaks,CA,other,30,low flying aircraft light blue in color was there and then gone +2004-04-06,40.7141667,-74.0063889,New York City (Brooklyn),NY,other,60,Pyramid UFO +2004-04-06,39.9522222,-75.1641667,Philadelphia (Northeast),PA,sphere,300,siting in mr third floor living room, a perfectly clear sky@ 7:00 pm +2004-04-06,33.4147222,-111.9086111,Tempe,AZ,light,1200,Bright ball of light seen hovering over Phoenix. +2005-04-06,37.7666667,-120.8461111,Oakdale,CA,sphere,120,Orange glowing object zig zagging across the sky at a high rate of speed and was silent. +2005-04-06,33.8302778,-116.5444444,Palm Springs,CA,triangle,4,Triangular dull orange glow object moving very fast across mountain range. +2005-04-06,34.9347222,-117.1983333,Hinkley,CA,formation,120,string of 6 orange balls of light float in formation slowly low over open desert northwest of Barstow, CA +2005-04-06,39.5297222,-119.8127778,Reno,NV,light,12600,Lights north over Reno +2006-04-06,47.6419444,-122.0791667,Sammamish,WA,circle,3,streak in sky +2006-04-06,33.5091667,-111.8983333,Scottsdale,AZ,triangle,10,Black triangle seen flying silently in the night sky. +2006-04-06,31.1358333,-102.2238889,Mccamey (Near),TX,oval,120,Oval shaped objects +2006-04-06,39.2902778,-76.6125,Baltimore,MD,unknown,180,stayed still then shot straight up then disapeared then reapeared to the left at a higher attitude. +2006-04-06,39.1141667,-94.6272222,Kansas City,KS,triangle,5,Bright white triangular shaped object with multiple colors trailing behind it viewed while driving on I435 Kansas City, KS +2006-04-06,47.6816667,-122.2075,Kirkland,WA,unknown,900,Five pulsing lights were present in the night sky. +2006-04-06,33.4483333,-112.0733333,Phoenix,AZ,cylinder,5,Dark cylindrical object with two lights along bottom silenty, slowly heading southwest 9:33pm. 04/06/06 +2007-04-06,46.2113889,-119.1361111,Kennewick (Benton City??),WA,light,120,bright moving light suddenly disappeared into night sky. +2007-04-06,33.6411111,-117.9177778,Costa Mesa,CA,unknown,21600,Organic UFO over Orange County. ((NUFORC Note: Object may be a string of balloons, in our opinion. PD)) +2007-04-06,47.2152778,-123.0994444,Shelton,WA,unknown,900,April 06, 2007 at 19:45 hours, metallic looking and brightly lit , motionless for 15 minutes duration. ((NUFORC Note: Venus. PD)) +2007-04-06,34.0708333,-112.15,Black Canyon City,AZ,triangle,1800,4 Bright Lights, 1 triangular shape, ,hover over APS Power line, Interstate 17 at Black Canyon City +2007-04-06,33.8136111,-85.7613889,Jacksonville,AL,diamond,45,Silent Light passes from Southern to Northern Horizon +2007-04-06,47.9791667,-122.2008333,Everett,WA,other,7,Our first UFO sighting from downtown Everett, WA area...Pretty Scarey too me! +2007-04-06,40.5594444,-79.9588889,Allison Park,PA,light,180,Very small object seen above north park lake in pittsburgh, +2008-04-06,41.7213889,-85.8175,Bristol,IN,chevron,8,V formation viewd from Bristol IN +2008-04-06,32.2216667,-110.9258333,Tucson,AZ,cigar,60,jUST DRIVING AROUND THE CORNER CAMINO DE OESTE HEADING TO COTARO FARMS SAW SEVERAL LARGE OBJECT TO MY RIGHT ....SHALLOW IN THE SKY REM +2008-04-06,39.7136111,-82.5994444,Lancaster,OH,sphere,60,ABOUT TWO HOURS BEFORE SUNSET, I LOOKED STRAIGHT UP AND SAW TWO VERY BRIGHT SILVER BB OBJECTS THAT WERE MUCH HIGHER THAN JET AIRCRAFT T +2008-04-06,47.8555556,-121.9697222,Monroe,WA,light,45,Very bright light +2008-04-06,42.48,-71.1,Stoneham,MA,cylinder,30,cylinder, with three rows of brightly lit illuminated panel lights underneath, flew over +2009-04-06,30.4211111,-87.2169444,Pensacola,FL,triangle,30,I saw 7 lights in the shape of the letter "V", They were all independant but flew together. +2009-04-06,36.1658333,-86.7844444,Nashville,TN,light,120,I went to get a pack of cigaretts, only a 2 min walk... but I drove because I felt lazy. got my cigarettes... walking back to my apart +2009-04-06,38.7669444,-90.4113889,Bridgeton,MO,disk,300,Silver/Blue Disk Rotating end over end East to West at least 20ꯠ' +2009-04-06,39.7683333,-86.1580556,Indianapolis,IN,triangle,7,wings up trianglur shaped craft moving faster than any jet and No flapping like a birds wings +2009-04-06,41.6030556,-93.7238889,Clive,IA,sphere,3,veering shooting star? +2009-04-06,36.1658333,-86.7844444,Nashville,TN,oval,120,NUFORC Home Page Web Report Indexes : by Event Date | by Location | by Shape | by Posting Date National UFO Reporting Center Sighting R +2009-04-06,48.1988889,-122.1238889,Arlington,WA,other,600,Star like motionless object pulsating blue and red, lasted only five minutes and was gone +2009-04-06,33.8313889,-118.2811111,Carson,CA,other,30,Invisible Craft flying above it was VERY LOUD! +2010-04-06,39.9611111,-82.9988889,Columbus,OH,triangle,12,((HOAX??)) A yellow triangle that made a big bang. +2010-04-06,33.1433333,-117.1652778,San Marcos,CA,oval,30,Out of this world looking craft! +2010-04-06,41.4994444,-81.6955556,Cleveland,OH,fireball,300,green fireball over cleveland,ohio +2011-04-06,41.3541667,-71.9669444,Mystic,CT,triangle,360,I saw a triangle ufo in the Mystic ct hotel area. +2011-04-06,41.2319444,-76.9994444,South Williamsport,PA,diamond,2,Unusual sighting in South Williamsport, Pa +2011-04-06,42.3708333,-72.5986111,Hatfield,MA,formation,7,April 6 2011 Formation Sighting Over Hatfield MA +2011-04-06,29.4238889,-98.4933333,San Antonio,TX,other,120,Several white lights outside my daughters home. +2011-04-06,36.175,-115.1363889,Las Vegas,NV,triangle,600,Triangle shaped UFO hovers overhead. +2011-04-06,47.7625,-122.2041667,Bothell,WA,unknown,3000,schachmatist ((name deleted)) seeking pyotr petrovich. ((NUFORC Note: Report from an individual who is acquainted with PD. PD)) +2011-04-06,35.9605556,-83.9208333,Knoxville,TN,egg,5,ball of light flying over Farragut/West Knoxville +2012-04-06,41.9005556,-87.8566667,Melrose Park,IL,light,180,I awoke at 4:22 AM, to let my dog out. As I opened my door to let the dog out, I noticed what, at first, I thought was an airplane in +2012-04-06,39.7391667,-104.9841667,Denver,CO,diamond,120,UFO- looked like a bright star with red wings. +2012-04-06,42.3313889,-83.0458333,Detroit,MI,other,600,Response to SHGbo+14a. Logansport, IN +2012-04-06,40.8566667,-74.1288889,Passaic,NJ,diamond,120,Silver and blue color +2012-04-06,47.6063889,-122.3308333,Seattle,WA,unknown,300,there here it's obveious +2012-04-06,41.43,-73.6805556,Carmel,NY,unknown,10,Shining light moving and then disappeared above Carmel New York +2012-04-06,40.5308333,-112.2975,Tooele (West Of),UT,oval,600,Blimp shaped craft near I-80 west of Tooele near Lackside/UTTR. +2012-04-06,40.3055556,-89.6027778,San Jose,IL,oval,300,Brillant blue oval botton red dome top bright white light back soundless going slowly +2012-04-06,40.4405556,-79.9961111,Pittsburgh,PA,light,6,UNBELIEVEABLE SPEED +2012-04-06,36.1988889,-115.1166667,North Las Vegas,NV,formation,300,Cluster Formation of Red Slow Moving Star-like Objects +2012-04-06,40.3355556,-75.9272222,Reading,PA,egg,180,Left Lebanon Pa.towards Reading Pa.around 9:35PM about 10-15 minutes into our trip before Myerstown i noticed an extremely Bright,Silve +2012-04-06,37.775,-122.4183333,San Francisco,CA,fireball,180,Fireball type object spotted hovering over San Francisco approx 3mins. +2012-04-06,60.7922222,-161.7558333,Bethel,AK,circle,30,Orange circle of light moving from SE to NW. +2012-04-06,37.3280556,-87.4988889,Madisonville,KY,light,120,Bright light /object in the Eastern sky. +2012-04-06,42.05,-71.8805556,Webster,MA,sphere,180,Large bright light over Webster MA/Thompson CT +2012-04-06,33.9136111,-98.4930556,Wichita Falls,TX,light,1800,Object is twice as bright as Venus in my Western sky, 4 of the last 10 or 12 nights for 30 minutes hovering, slowly moves W. from site. +2013-04-06,29.7630556,-95.3630556,Houston,TX,circle,300,Red light and circular shape. +2013-04-06,30.1763889,-85.8055556,Panama City Beach,FL,circle,900,At approximately 9:25pm on the 4/6/2013 3 formations that resemble round objects where in the sky (close to or above the NSA Base). +2013-04-06,35.0844444,-106.6505556,Albuquerque,NM,circle,120,Object appeared in photo after seeing military aircraft +2013-04-06,33.4222222,-111.8219444,Mesa,AZ,formation,600,Several yellow-orange lights in v formation break apart and zigzag until blinking out one by one +2013-04-06,38.2119444,-86.1219444,Corydon,IN,sphere,120,Round silver orb seen at Corydon, IN. +2013-04-06,28.6775,-81.3280556,Casselberry,FL,other,300,Orbs that were golden-rod/orange in color +2013-04-06,34.8525,-82.3941667,Greenville,SC,light,120,Four red/orange lights in cross formation hovering in sky, then disappear into thin air. +2013-04-06,33.6602778,-117.9983333,Huntington Beach,CA,unknown,480,String of lights travel across night sky in Huntington Beach Ca +2013-04-06,45.9963889,-68.4466667,Patten,ME,light,900,We saw 8 orange lights tracking from north-west to south-east while we were driving through Patten, Maine on Friday, 4/6/2013 at 20:30. +2013-04-06,36.9111111,-80.3202778,Floyd,VA,triangle,180,Floyd VA triangle UFO spotted 0n 4 April 2013. +2013-04-06,30.2669444,-97.7427778,Austin,TX,fireball,45,Three balls of light flying overhead in a zig zag motion. +2013-04-06,40.4405556,-79.9961111,Pittsburgh (In South Hills Area),PA,oval,300,Watched this object fly over home and further till it was gone. Moved slower than an plane. At first I thought it was a plane that may +2013-04-06,38.3030556,-77.4608333,Fredericksburg,VA,oval,90,Pure red oval, slow speed, east to west trajectory on a clear night, observed by prior military +2013-04-06,40.3408333,-76.4116667,Lebanon,PA,circle,60,Witnessed an orange in color light shaped as a circle, moving across the sky, from the southern horizon to the north. +2013-04-06,37.4852778,-122.2352778,Redwood City,CA,triangle,1200,6 yellow lights in two triangle formations +2013-04-06,42.3533333,-88.0933333,Round Lake,IL,light,900,Red lights moving se to nw +2013-04-06,41.5766667,-75.2591667,Honesdale,PA,formation,300,6 orange lights in steady formation flying over Honesdale, PA. +2013-04-06,40.4405556,-79.9961111,Pittsburgh,PA,formation,61,4 lights moving in triangular formation at low altitude over Squirrel Hill, PA. +2013-04-06,42.6555556,-70.6208333,Rockport,MA,circle,120,White center with twinkle of red/orange bright and constant, low in sky but higher than any buildings +2013-04-06,30.275,-89.7811111,Slidell,LA,fireball,1800,Mass amount of re objects caught on video in Slidell La. +2013-04-06,32.7763889,-79.9311111,Charleston,SC,formation,120,Nine orange lights seen flying over Charleston, SC. +2013-04-06,34.4211111,-84.1191667,Dawsonville,GA,light,90,Reddish orange light that passed southwest to northwest and then vanished in a clear sky. No wind present, no sounds, no other indicat +2013-04-07,44.98,-93.2636111,Minneapolis (Northeast Of),MN,circle,45,Orange/reddish circle object NE mpls flying below strom cloud near down town mpls. +2014-04-06,27.1675,-80.2663889,Palm City,FL,light,2,Blue light this time. +2014-04-06,28.5380556,-81.3794444,Orlando,FL,formation,300,RAPIDLY MOVING RED LIGHTS IN FORMATION OVER ORLANDO, FL. +2014-04-06,25.7738889,-80.1938889,Miami,FL,circle,5,Saw something in the sky floating then drop and vanish +2014-04-06,37.3058333,-89.5180556,Cape Girardeau,MO,circle,1,I was at work at McDonald's, it was around four in the moring overnight shift. Bleh. Well my friend comes through drive through and she +2014-04-06,33.6608333,-95.5552778,Paris,TX,sphere,30,I witnessed a two large yellow orange spheres pop out of the North East corner of the sun. ((NUFORC Note: Lens flares? PD)) +2014-04-06,42.3680556,-74.1586111,Cornwallville,NY,cigar,8,Saw a stationary silvery Cigar shaped UFO in a perfectly clear blue sky for 8 seconds then just disappeared +2014-04-06,41.3947222,-73.4544444,Danbury,CT,sphere,600,White orb hovers for 10 minutes over Danbury Airport. +2014-04-06,42.5277778,-70.9291667,West Peabody,MA,formation,180,10+ small, white lights--like stars in the day--were twinkling and fading in and out of view, in a formation circling around each other +2014-04-06,45.2086111,-117.8641667,Union,OR,flash,30,Light here light gone. +2014-04-06,40.5186111,-74.4125,Edison,NJ,flash,300,Multiple flashing lights. +2014-04-06,28.0680556,-80.5605556,Melbourne Beach,FL,light,1800,It was in the North East sky, looked like a long cigar shaped light beam, but no beginning or end point - if it were a beam it would ha +2014-04-06,45.4944444,-122.8658333,Aloha,OR,oval,480,Witnessed 3 glowing orange orbs fly in a straight line directly overhead in a steady direction, one after another with about 30 seconds +2014-04-06,40.7608333,-111.8902778,Salt Lake City,UT,diamond,120,Black diamond with green, red & white light moving slow and low over city Westbound +1963-04-07,27.6383333,-80.3975,Vero Beach,FL,disk,600,Vero Beach Fla, 1960's; low, huge hovering disk over highway shooting colored lights out the back with illuminated windows. +1967-04-07,25.7738889,-80.1938889,Miami,FL,disk,600,Follow up on the Crestview Elementary sighting. Date was April 7, 1967. +1968-04-07,41.3130556,-81.9469444,Columbia Station (Rt. 252),OH,sphere,600,Was stocking a small fish pound, and seen reflection of three SPHERES in triangle form 50'foot up. They glittered like a disco ball wit +1983-04-07,39.1588889,-108.7283333,Fruita,CO,triangle,900,Possible drone? +1983-04-07,21.3069444,-157.8583333,Honolulu,HI,oval,30,Waiakiki April 1983 Sighting at Twin Banyan Towers on Ohua Avenue off Kuhio Avenue moved silently between towers towards the beach. +1994-04-07,42.2458333,-84.4013889,Jackson,MI,light,240,Small light seen in jackson, michigan +1994-04-07,41.4825,-73.41,Brookfield,CT,light,30,Large, bright object crested over NW horizonmoving very fast, my friend and I both sawthe object, and another of my friendsreported sig +1995-04-07,36.3047222,-86.62,Hendersonville,TN,triangle,600,Triangle shape seen in Hendersonville in 95 +1997-04-07,38.8338889,-104.8208333,Colorado Springs,CO,cylinder,300,Dark. Between Fontaine and Drennan Rd. A tall, brightly litobject descended in field near reservoir west of Powers Rd. Tieredwith mul +1997-04-07,43.0388889,-87.9063889,Milwaukee,WI,other,300,Strange objects descend to tree tops, cruise across tree tops and vanish into Lake Michigan. +1997-04-07,30.2669444,-97.7427778,Austin,TX,triangle,1800,I was driving northbound on I-35, and was around 5 miles south of Austin when I noticed an intensely bright white light far ahead on th +1999-04-07,32.3122222,-106.7777778,Las Cruces,NM,oval,60,Black disc with greenish/bluish/white corona traveled parallel with I10 between Las Cruces and El Paso. +1999-04-07,46.8772222,-96.7894444,Fargo,ND,other,12,a friend and i were were walking outside and looked up at an airplane flying high in the sky. right away i noticed an oject flying behi +2000-04-07,41.2391667,-81.3461111,Streetsboro,OH,unknown,15,Rumbling Sound +2001-04-07,38.9177778,-83.9833333,Hamersville,OH,light,1800,Blue green lights over southen ohio +2001-04-07,41.4783333,-81.4638889,Pepper Pike,OH,cigar,10,Large, silver cigar, hovering low on horizion, half the size of my finger at arms length, in northeast. +2001-04-07,40.4861111,-74.4522222,New Brunswick,NJ,disk,120,4 blue flying objects hovered in the sky for two minutes, sudden reverse of flying direction during flight. +2001-04-07,43.0388889,-87.9063889,Milwaukee,WI,cigar,45,Object entered atmosphere as a streak, emitted a momentary high frequency, zig-zaging effortlessly from east to west +2001-04-07,38.005,-121.8047222,Antioch,CA,egg,688,I was driving to my paper route (east bound). It was a full moon here in Antioch and no clouds were in sight.The time was 11:23pm, I lo +2002-04-07,32.7152778,-117.1563889,San Diego,CA,light,240,Bright Stationary Object off Ocean Beach San Diego +2002-04-07,48.0841667,-121.9675,Granite Falls,WA,light,1200,a bright ???? +2003-04-07,48.5127778,-122.6113889,Anacortes,WA,rectangle,300,It came straight down towards us the stopped and floated in mid air for a minute or two then went straight up and was gone! +2003-04-07,35.925,-86.8688889,Franklin,TN,disk,7,My family and I were driving home from a grocery store when I saw an U.F.O. out the side window. +2004-04-07,35.1477778,-114.5675,Bullhead City,AZ,other,30,6 objects moved from south to north with no flashing lights towards Las Vegas. (area 51?) +2004-04-07,48.3725,-114.1805556,Columbia Falls,MT,light,240,A stationary light grew in brightness and then dimmed until it was not visible in the daytime sky. +2004-04-07,25.7738889,-80.1938889,Miami,FL,light,1203,The object was as high as a star and it was moving kinda fast leaving no trail of dust or light. Soon after, it stoped and vanished +2004-04-07,35.1477778,-114.5675,Bullhead City,AZ,other,600,Redish erratic light over Bullhead City, AZ/Laughlin NV. +2004-04-07,30.2669444,-97.7427778,Austin,TX,light,5,It seemed remarkable as it didn't look like any shooting star or object we had ever seen. +2004-04-07,26.5544444,-97.4247222,Port Mansfield,TX,cone,3,LARGE VERY BRIGHT SPHERE ,AS BRIGHT AS A FLASH BULB. +2004-04-07,42.1291667,-80.0852778,Erie,PA,diamond,37800,Strange, beautiful, confusing. I wonder what I saw?? +2004-04-07,32.0833333,-81.1,Savannah,GA,triangle,30,On a trip to Savannah,GA, my wife and I saw an strange object in the sky about 15 miles away from the Savannah exit on U.S.80. +2004-04-07,35.3858333,-94.3983333,Fort Smith,AR,changing,1560,My brother Jim whom is retired Air Force, thought he was showing me the north star, I went and got some binoculars and that is when we +2004-04-07,30.6277778,-96.3341667,College Station,TX,formation,10,6 dots moved across the sky and faded out. +2005-04-07,37.3566667,-77.4419444,Chester,VA,circle,180,Object hovered and shot off at high rate of speed and then disappered +2005-04-07,34.4838889,-114.3216667,Lake Havasu City,AZ,other,10,3 red orbs ? +2005-04-07,32.2686111,-107.7580556,Deming (Somewhere Near),NM,changing,1200,((NUFORC Note: Helium-filled heliostat. PD)) The shape-shifting object danced around at various speed, height and direction. +2005-04-07,47.32,-114.0930556,St. Ignatius,MT,sphere,3,four to five, silver/headlight like spheres, leap frogging through the clouded sky above Mission Range MT. +2005-04-07,41.2586111,-95.9375,Omaha,NE,diamond,1500,Diamond shape craft above the horizon. +2005-04-07,44.925,-93.4625,Hopkins,MN,triangle,7,The first time it's was about 11pm when my wife and I first saw it. It was going from east to west. It was triangle shape with five lig +2006-04-07,32.5091667,-92.1191667,Monroe,LA,disk,300,I saw a bright circle of white light in the shape of a disk, that hovered about 5 minutes and then it was gone. +2006-04-07,39.2616667,-121.015,Nevada City,CA,light,21600,Night sky lit up like daytime. +2006-04-07,36.7477778,-119.7713889,Fresno,CA,light,60,Light projecting strong beam of light (like headlights) in sky slowly moving, then disappeared leaving cloud +2006-04-07,38.6858333,-121.0811111,El Dorado Hills (Sacramento),CA,unknown,60,Plane/Comet looking craft in Sacramento area. +2006-04-07,36.8525,-121.4005556,Hollister,CA,unknown,180,Break of dawn, an orange sphere shooting thru the sky stops & hovers with an huge white light illuminating from it in a cone shape. +2006-04-07,38.5816667,-121.4933333,Sacramento (60 East Of),CA,light,120,Bright light at low altitude vanishes leaving a round cloud +2006-04-07,34.7538889,-77.4305556,Jacksonville,NC,cigar,2700,i saw an odd craft and was possibly obducted by space men . 500 Lights On Object0: Yes +2006-04-07,37.3394444,-121.8938889,San Jose,CA,other,10,big low flying shadow cover house then strange things started to happen with the power. +2006-04-07,36.2505556,-83.7975,Maynardville (Near),TN,light,5,Orbs appear during severe storm. +2006-04-07,34.0522222,-118.2427778,Los Angeles,CA,disk,300,It was a clear night and I was standing in my porch – when I looked up to the sky and saw this disk style object with color lights. It +2006-04-07,41.2586111,-95.9375,Omaha,NE,triangle,900,UFO seen as low as 65 feet!!!!!! +2007-04-07,47.6588889,-117.425,Spokane,WA,fireball,20,Strang orange glow in Eastern Washington +2007-04-07,38.8902778,-77.0844444,Arlington,VA,light,1200,Approaching intense bright white light with a rainbow spectrum in the center witnessed at sun down on 04/07/07. +2007-04-07,33.8980556,-84.2833333,Doraville,GA,disk,900,a bright light over roof to my house,slowed up, and went over my house.Size of a Sierra Van. 500 Lights On Object0: Yes +2007-04-07,34.1063889,-117.5922222,Rancho Cucamonga,CA,light,5,Bright orange ball of light. +2008-04-07,36.7080556,-119.555,Sanger,CA,light,2,second sighting ever and this month. +2008-04-07,44.2055556,-73.2466667,Ferrisburgh,VT,light,420,Very bright light in sky that turned orange before dimming out +2008-04-07,39.0036111,-87.6127778,Palestine (Near),IL,circle,600,Four witnesses see a large glowing circle exchanges fire with 6 fighter jets +2008-04-07,37.9319444,-121.6947222,Brentwood (Contra Costa),CA,other,900,UFO in the EAST BAY,CA 4/07/2008? +2008-04-07,42.0772222,-71.63,Uxbridge,MA,light,1800,Lights in sky moving in circle patern +2008-04-07,37.9319444,-121.6947222,Brentwood,CA,chevron,480,V-shaped, no sound, no light , Gliding slowly +2008-04-07,37.9319444,-121.6947222,Brentwood,CA,chevron,480,V-shaped gliding over my house. +2008-04-07,34.5036111,-93.055,Hot Springs,AR,unknown,3600,Sighted two bright objects which moved and suddenly became motionless +2008-04-07,41.6638889,-83.5552778,Toledo,OH,light,4,Faint blurred distant points of light traveling through the sky in Toledo, Ohio +2008-04-07,32.2094444,-99.7963889,Tuscola,TX,light,2,Ball of light then faded out. ((NUFORC Note: Iridium satellite?? PD)) +2008-04-07,41.0080556,-91.1638889,Mediapolis,IA,triangle,10,An object flying from the south slowed down near our house and then quickly flew toward the NW +2008-04-07,43.38,-71.7175,Salisbury,NH,triangle,300,My husband and I were laying in bed, watching a movie, when we saw two flashing lights through our balcony door. We got up and went out +2008-04-07,40.7538889,-79.8102778,Saxonburg,PA,unknown,240,Viewed red and white strob-like lights moving silently in a slow arc from north to west overhead at about 11pm on April 7th. +2008-04-07,26.1272222,-80.2333333,Plantation,FL,chevron,30,very large V shape object no lights and no noise at all traveling west to east . +2009-04-07,30.2669444,-97.7427778,Austin,TX,circle,1200,Bright Star like object +2009-04-07,30.2669444,-97.7427778,Austin,TX,unknown,20,A very bright object over Austin TX that follows plan then passes it like nothing seem to be investigating the plan. +2009-04-07,29.2105556,-81.0230556,Daytona Beach,FL,oval,2,Large glowing blue object blasts into space at hyper sonic speeds, appeared no more than 300 feet from surface +2009-04-07,27.6383333,-80.3975,Vero Beach,FL,light,5,Bright Green Light streaming from east to west, slowed then turned white. +2009-04-07,27.9472222,-82.4586111,Tampa,FL,sphere,1.5,A bright green sphere about the size of the moon shot across the sky in Tampa FL. +2009-04-07,27.4430556,-81.2538889,Lorida,FL,sphere,10,Single white ball streaking downward for 10 seconds. Sudden disappearance. +2009-04-07,32.4486111,-99.7327778,Abilene,TX,triangle,1800,Pictures were taken on cell phone. +2009-04-07,36.175,-115.1363889,Las Vegas,NV,formation,30,Green lights across las vegas, fast, tightly formationed and switching places, low flying and gone within 30 seconds. +2009-04-07,30.2944444,-81.3933333,Jacksonville Beach,FL,light,60,Unidentified lights over Jacksonville Beach +2010-04-07,34.0552778,-117.7513889,Pomona,CA,light,180,bright light moving across morning sky. +2010-04-07,43.5863889,-119.0530556,Burns,OR,disk,2,April 2nd 2010 We were traveling in the mountains It was a very bright sunny day I had been taking photos I captured this metallic ob +2010-04-07,36.1538889,-95.9925,Tulsa,OK,light,10,This is the best I can do. If straight above my head in relation to the surface of the earth is 90 degrees, it was east-northeast at ap +2010-04-07,36.1538889,-95.9925,Tulsa,OK,light,10,I saw the object at approx. 60 degrees to the east-northeast. Thought it was a shooting star, and pointed it out to my husband. As we w +2011-04-07,47.9252778,-97.0325,Grand Forks,ND,changing,10,Multiple objects over Eastern North Dakota. +2011-04-07,29.4238889,-98.4933333,San Antonio,TX,circle,12600,Hovering, silver disk viewed from Park Mountain towards downtown San Antonio, TX. +2011-04-07,39.9555556,-86.0138889,Fishers,IN,light,2,Bright 'orb'-type light seen in sky before seeing it quickly fall and disappear - Fishers, Indiana +2011-04-07,40.7141667,-74.0063889,New York,NY,cylinder,6,Hovering UFO over Central Park +2011-04-07,42.4133333,-73.6736111,Valatie,NY,light,300,04/07 - saw three white dashes/ lights in sky ,, approx central NY, Adirondack Mtns. but they could have been further away +2011-04-07,37.9886111,-84.4777778,Lexington,KY,sphere,300,Unidentified Red Glowing Object over south Lexington, KY +2011-04-07,41.0533333,-73.5391667,Stamford,CT,sphere,2,Amber spherical object +2011-04-07,35.4491667,-89.815,Munford,TN,unknown,60,Large hoovering craft that disappeared +2012-04-07,45.5236111,-122.675,Portland,OR,unknown,60,White/green lights hovering above freeway, shot straight upward +2012-04-07,31.7077778,-81.7425,Ludowici,GA,fireball,3,On about april, 7th at 2:35 A.M. I went outside to smoke. When I finished my cigarette and turned around I notced a flash at the 12 o' +2012-04-07,27.3361111,-82.5308333,Sarasota,FL,light,3,Bright neon green orb seen descending. +2012-04-07,47.6588889,-117.425,Spokane,WA,triangle,300,I saw four lights in perfect formation at about 60 thousand feet. +2012-04-07,41.926944399999996,-73.9977778,Kingston,NY,formation,60,Bright lights hovering in formation and splitting apart. +2012-04-07,41.6027778,-87.7438889,Oak Forest,IL,formation,900,Series of 14 to 20 yellowish flame lights. +2012-04-07,40.8533333,-73.4119444,Huntington Station,NY,light,30,Orange and Red glowing lights over Huntington Station, NY +2012-04-07,30.505,-97.82,Cedar Park,TX,changing,2700,Lights over cedar park +2012-04-07,39.6127778,-86.3741667,Mooresville,IN,light,120,Pinkish-orange small lights (8-9 of them) in odd formation over Mooresville, Indiana +2012-04-07,35.6008333,-82.5541667,Asheville,NC,fireball,300,Three orange dots rising from horizon and dying out one by one +2012-04-07,38.7908333,-121.2347222,Rocklin,CA,sphere,600,Two orange balls of light, seen moving across the skies of Rocklin, Calif., with smaller balls falling from them. +2012-04-07,28.9002778,-81.2638889,Deltona,FL,circle,16,The form of this object is circle with an aura or haze around it. The light was red anbar with lots of shine. That object was moving. +2012-04-07,48.2477778,-116.3061111,Hope,ID,disk,3600,Observed two Puslsating Red Craft moving and hovering over a lake for the better part of an hour +2012-04-07,32.7833333,-96.8,Dallas,TX,triangle,30,5 red lights in the shape of a triangle +2012-04-07,31.0905556,-88.2280556,Citronelle,AL,triangle,120,Triangle at night over Citronelle, AL +2012-04-07,34.0233333,-84.6155556,Kennesaw,GA,fireball,300,A strange flashing light flew southwest from Kennesaw, Georgia. +2013-04-07,29.1869444,-82.1402778,Ocala,FL,light,60,4.7.13 1:00 Ocala, FL Light 1 minute Red illuminated light the size of large pea traveling NW from the SE. +2013-04-07,48.0797222,-123.1005556,Sequim,WA,fireball,240,Very large yellow/orange/red orb crossing sky in N to S direction in the W sky; changed shape over 3-4 mins and trailing/emitting. +2013-04-07,39.6005556,-77.8208333,Williamsport,MD,light,7200,Red, Blue & White Strobes Stationary in the Night Sky. +2013-04-07,34.02,-117.9486111,La Puente,CA,light,420,Hovering light seen over La Puente. +2013-04-07,38.2972222,-78.4402778,Stanardsville,VA,fireball,180,Lasted a few minutes this time then (last time lasted 10) it headed father east and disappeared +2014-04-07,40.2338889,-111.6577778,Provo,UT,changing,3600,The sky was clear and dark enough to notice an orb of lights staying in one space. It did not move away from its position. +2014-04-07,30.3319444,-81.6558333,Jacksonville,FL,triangle,120,Hovering triangular craft with search lights. +2014-04-07,37.6625,-121.8736111,Pleasanton,CA,sphere,2,Description: Two spherical objects, as if anchored together. Summary: Unusual object entering the atmosphere.Color: Two blue ob +2014-04-07,29.2105556,-81.0230556,Daytona Beach,FL,rectangle,30,Rounded Rectangular wings, no visible body, 2 lights on each side of the wings, resembling angel eye type lights. +2014-04-07,40.1222222,-88.6452778,De Land,IL,cylinder,600,((HOAX??)) Sphere thru telescope exploded into several smaller spheres. +2014-04-07,33.7838889,-116.9577778,San Jacinto,CA,light,120,Bright light craft flew with no sound. +2014-04-07,42.4772222,-88.0955556,Antioch,IL,sphere,600,I witnessed orange spherical objects moving at a moderate even rate of speed. There was a line of approximately 14 spheres lead by 2 g +2014-04-07,41.0988889,-81.2427778,Rootstown,OH,sphere,900,Four blue spheres (3' in diameter) appeared in the field. Jumped around for a few minutes and hovered. Then they left one at a time. +2014-04-07,26.6155556,-80.0572222,Lake Worth,FL,disk,600,Definitely not an airplane! +2014-04-07,33.2888889,-117.2247222,Bonsall,CA,triangle,30,High flying fast moving triangular shaped object outlined in multi colored lights. +1968-04-08,46.0647222,-118.3419444,Walla Walla,WA,triangle,1200,The object moved up, down, hovered, then left with extreme speed on a huge trajectory up into space. We followed it on a surveyor's tr +1992-04-08,41.7636111,-72.6855556,Hartford,CT,unknown,25,stange light in the night sky unlike i never seen before +1992-04-08,34.2783333,-119.2922222,Ventura,CA,disk,600,Disc shaped object, multi colored lights around perimeter of the disc, bright spot light shining from bottom of craft, comfirmation +1997-04-08,38.2919444,-122.4569444,Sonoma,CA,chevron,4,Extremely massive matte grey/black boomerang with no center section; jets scrambled; no lights, possible aura. +1997-04-08,36.175,-115.1363889,Las Vegas,NV,rectangle,15,large, erratic, black object, movement reminiscent of paper falling, almost invisible edge on. +1999-04-08,33.0216667,-117.2802778,Cardiff-By-The-Sea,CA,fireball,600,A ball of orange light, 5X apparent size of a star. Drifted SW towards E. No flashing lights. Soundless except for once when it seemed +1999-04-08,43.1352778,-87.9355556,Glendale,WI,triangle,25,OBECT TRVELING FROM SOUTH AT AN ALTITUDE OF AOUT ONE MILE FROM SOUTH TO NORTH NORTHEAST TRIAGLE SHAPE WITH 3 LIGHT ON EACH CONER ORANGE +1999-04-08,35.6225,-117.67,Ridgecrest,CA,changing,1800,we were checking out the STELTH flying overhead when we (3 of us) seen 3 objects flying overhead ,they flew out of sight when we seen 2 +1999-04-08,40.7977778,-73.7,Manhasset (Long Island),NY,triangle,240,object was moving away in a westerly direction. very slowly and at times appeared to be standing still. very large and appeared triangu +1999-04-08,38.7013889,-90.1486111,Granite City,IL,light,1500,One large, orangeish light seen initially during thunder storm. Another similar light appeared a good distance away. +2000-04-08,27.6383333,-80.3975,Vero Beach,FL,diamond,600,I was driving through this wildlife conservation area route 60 towards Fl's toll road, there was hardly anyone on the road, very eery, +2000-04-08,47.6063889,-122.3308333,Seattle,WA,egg,1200,UFO's are for real! +2000-04-08,47.6063889,-122.3308333,Seattle,WA,egg,180,Ufo's over Downtown Seattle +2001-04-08,41.4819444,-74.9863889,Lackawaxen,PA,light,3,Brighter than a welders torch and diamond white! +2001-04-08,41.5758333,-87.1761111,Portage,IN,unknown,1200,unknown blue object that stooped car engine then turn red and disapeared. +2002-04-08,44.6722222,-88.2425,Pulaski,WI,changing,300,Object seen in Pulaski, WI that changed shapes and threw out a plethora of colors. +2002-04-08,27.9472222,-82.4586111,Tampa,FL,light,15,Firefly type light seen in Tampa knight skies. +2002-04-08,39.515,-84.3983333,Middletown (Suburb),OH,triangle,6,A triangular shaped object seen late at night. +2003-04-08,42.7047222,-121.9947222,Fort Klamath,OR,oval,1500,White oval light with in touching distance . +2003-04-08,42.5005556,-90.6644444,Dubuque (County Highway 151),IA,light,5,a very bright gold-bronze light appeared in front of my car and passed through and around the right side of the car. +2003-04-08,42.5005556,-90.6644444,Dubuque,IA,light,5,Following is the result of 3 Iowa MUFON members' investigation of an incident reported to NUFORC on: 4/9/2003 3:04:06 PM 15:04. A d +2003-04-08,33.4147222,-111.9086111,Tempe,AZ,cylinder,60,Noontime sighting on a sunny, cloudless day of a long, brightly glaring craft that disappears from view. +2003-04-08,47.8569444,-121.6958333,Gold Bar,WA,cigar,10,Three bright lights observed hovering over Skykomish River in Gold Bar, WA +2004-04-08,46.82,-67.9236111,Maine (Location Unspecified),ME,unknown,180,A dream where I traveled out of my body into space and back. +2004-04-08,35.2269444,-80.8433333,Charlotte,NC,disk,300,at 6:20 when i was waiting for my bus i looked up and i saw a disklike figure with three glowing orange lights around it it was going e +2004-04-08,41.85,-87.65,Chicago,IL,triangle,695,The craft appeared to be a black triangle very, very quiet in rather quick in speed. It had reddish blinking strobe like lights and wh +2004-04-08,35.9605556,-83.9208333,Knoxville,TN,disk,45,MUFON/TENNESSEE REPORT: Disc shaped object paces truck on Interstate hwy. +2004-04-08,40.7544444,-86.3566667,Logansport,IN,disk,2,it was a disc or saucer shaped object with rows of lights +2004-04-08,33.8702778,-117.9244444,Fullerton,CA,other,30,Standing ouside looking at the stars and a boomerang like object 100 foot wing span 1/2 mile up, no sound, and no lights. +2004-04-08,43.2872222,-93.2019444,Manly,IA,triangle,20,Black triangle, no lights, no sounds.... +2004-04-08,41.0647222,-86.2158333,Rochester,IN,circle,25,Round orange colored lights in the sky that lasted only seconds and disappeared. +2004-04-08,41.0647222,-86.2158333,Rochester,IN,disk,60,saucer-like with 6 lights that went on and off in 20 sec. intervals. +2004-04-08,41.0513889,-86.6030556,Winamac,IN,light,300,don't post this +2004-04-08,41.0647222,-86.2158333,Rochester,IN,unknown,180,i went to feed my dog with my sister and there were yellowish orange lights in the south sky. +2004-04-08,29.7630556,-95.3630556,Houston,TX,cylinder,10,UFO over Houston park +2004-04-08,35.9605556,-83.9208333,Knoxville,TN,other,480,MUFON/TENNESSEE REPORT: Possible explanation of Knoxville sighting +2004-04-08,35.9605556,-83.9208333,Knoxville,TN,other,480,Reddish Orange glow in night sky over next ridge. +2005-04-08,36.0725,-79.7922222,Greensboro,NC,disk,180,My dad and brother and me were watching our little 3yr old brother get on his bus to go to school, then my dad told us to look into the +2005-04-08,32.7833333,-96.8,Dallas,TX,unknown,900,Waiting for the bus home, i eyewitnessed at lest 10-15 at first maybe an little balloon in the air than i see two more, than other star +2005-04-08,43.1008333,-75.2330556,Utica,NY,circle,5,Shiny, circular craft flying in a straight line. +2005-04-08,47.1275,-118.3788889,Ritzville (Outside Of, Milepost 228, E On I-90),WA,unknown,120,Object with red lights around it, going on for about 2 seconds and off for about 2 seconds, about 50 feet up and 30 feet away from car +2005-04-08,39.1141667,-94.6272222,Kansas City,KS,circle,2,saw a growing burst of brilliant white light that slowly dimmed out of existance ((NUFORC Note: Possible Iridium satellite. PD)) +2005-04-08,42.0969444,-79.2355556,Jamestown,NY,unknown,7200,2 brightly lit hovering a/c spotted in W new york/ nw PA of april 05. ((NUFORC Note: Possibly Sirius and Jupiter? PD)) +2005-04-08,39.6416667,-77.7202778,Hagerstown,MD,unknown,600,The hospital is 8 stories and when it became directly over our heads we could tell it was only 50 or 60 more feet high. +2006-04-08,40.0175,-90.4241667,Beardstown,IL,formation,600,30-50 white/silver discs in broad daylight. +2006-04-08,35.5741667,-105.6744444,Pecos,NM,disk,600,Object with broad center area following airplane. +2006-04-08,34.3916667,-118.5416667,Santa Clarita,CA,circle,1200,While cutting up a fallen tree at my friend’s house in the forest (highway 14/Sand Canyon Rd area) I decided to take a break and lie do +2006-04-08,40.3875,-75.79,Oley,PA,sphere,120,A bright star looking object very quickly rose straight upward out of sight. +2006-04-08,43.4891667,-71.5827778,Sanbornton,NH,disk,300,we were sitting at a campfire and saw a round blinking light moving side to side back and fourth and I felt strange. +2006-04-08,33.4708333,-81.975,Augusta,GA,light,2,Group of flashing rapidly moving lights +2007-04-08,26.1219444,-80.1436111,Ft. Lauderdale,FL,other,5.5,Iluminated straight line in clear blue sky +2007-04-08,39.2902778,-76.6125,Baltimore,MD,light,8,Stationary white light then picking up speed from the east to the west; arcing across sky; too fast for plane +2007-04-08,41.5769444,-73.4088889,New Milford,CT,light,604800,Formation reapper/dissapear in the night sky. ((NUFORC Note: Possible sighting of Venus. PD)) +2007-04-08,39.2102778,-92.1377778,Centralia,MO,sphere,180,2nd sighting in a week's time of a shining red craft in the western sky over Mid-MO. +2008-04-08,36.3047222,-86.62,Hendersonville,TN,other,120,Ring with long arms and crown viewed in sumner county TN +2008-04-08,47.8052778,-122.1119444,Maltby,WA,sphere,90,The sigting bgan first with our work radios making a clicking noise then eventual static Nobody could make contact through our radios a +2008-04-08,39.2094444,-81.0519444,Harrisville,WV,light,120,Lime green bar of light in evening sky. +2008-04-08,36.7097222,-81.9775,Abingdon,VA,unknown,60,Plane follows unexplained light +2008-04-08,35.7825,-80.8875,Statesville,NC,changing,420,Brightly lit, triangular craft flying closely over my home. +2008-04-08,40.8622222,-73.6341667,Glen Cove,NY,unknown,20,White slow flashing light +2008-04-09,36.7647222,-88.2952778,Hardin,KY,cigar,1800,I WAS OUT IN MY YARD ON A CLEAR, SUNNY DAY THIS SPRING AND HAPPENED TO LOOK UP AND SAW A SHINY METALLIC CIGAR SHAPED VEHICLE. THE SUN W +2009-04-08,34.4716667,-104.245,Fort Sumner,NM,light,2,Odd light +2009-04-08,36.0625,-94.1572222,Fayetteville,AR,unknown,600,a object fell, then two hours pased. 500 Lights On Object0: Yes +2009-04-08,34.4208333,-119.6972222,Santa Barbara,CA,unknown,300,It seemed like it was in orbit but was way too big to be the space station. It was moving towards the WNW over Santa Barbara, CA at a +2009-04-08,41.6638889,-83.5552778,Toledo,OH,circle,300,Round craft with big bright lights near Toledo, OH. +2009-04-08,26.3394444,-81.7788889,Bonita Springs,FL,disk,3,Very bright solid gold disc sighted in Bonita Springs, FL +2009-04-08,33.9133333,-78.3041667,Holden Beach,NC,light,2400,Holden Beach NC - Big Orange Light Over The Ocean In The Night Sky +2010-04-08,29.4658333,-81.2580556,Bunnell,FL,changing,600,midnight April 8th, our home lost power there was a bright flash of light outside power came back on and we seen a hovering object +2010-04-08,29.9986111,-95.1763889,Atascocita,TX,disk,60,It was a circular object completely black except for flashing lights. +2010-04-08,39.0283333,-84.2177778,Amelia,OH,triangle,10,Strange triangular shaped object over Cincinnati, Ohio. +2010-04-08,33.9597222,-118.3997222,Westchester,CA,circle,15,Four circular objects emitting a dim redish light sighted traveling a great speed traveling east to west. +2010-04-08,33.94,-118.1316667,Downey,CA,sphere,3600,Orb hovers for more than an hour +2010-04-08,36.6777778,-121.6544444,Salinas,CA,cigar,3060,sightings of moving crafts over salinas california in the early a.m hours of april 8th 2010 +2010-04-08,32.7152778,-117.1563889,San Diego,CA,triangle,10800,4 Triangle UFO's Over San Diego, CA on April 8, 2010 +2010-04-08,30.19,-98.0863889,Dripping Springs,TX,oval,45,Pulsating light flew over Dripping Springs, Texas at a high rate of speed on Thursday evening 04/08/10 at 20:49 CST. +2010-04-08,30.19,-98.0863889,Dripping Springs,TX,oval,45,Pulsating light flew over Dripping Springs, Texas at a high rate of speed on Thursday evening at 20:49 CST. +2010-04-08,34.0552778,-117.7513889,Pomona,CA,fireball,1200,It was a light orange round ball of light with no sound and physical form flying nrth to south 9:45p Pomona,Ca +2010-04-08,28.4366667,-99.2347222,Cotulla,TX,triangle,60,Bright yellowish/orange in color lights, form triangle shape in the skies over Cotulla Texas! +2010-04-08,39.6333333,-105.3166667,Evergreen,CO,light,1200,2 vertical lights changing color and moving erratically in the night sky +2010-04-08,32.525,-93.75,Shreveport,LA,other,600,Mandolin shaped soundless craft, with colored lights on belly, and red sequence lights on side, two white light on front. +2010-04-08,46.9961111,-123.5105556,Brady,WA,light,600,A very bright maneuvering light moving at a high rate of speed at low level with no noise near Brady, Washington. +2010-04-08,46.9961111,-123.5105556,Brady,WA,light,600,Correction to the report submitted on this event. I called the FSS in Seattle and they told me the bottoms of those clouds where at thi +2010-04-08,46.9961111,-123.5105556,Brady,WA,light,480,I saw an unidentified bright light flying over us +2010-04-09,32.5091667,-92.1191667,West Monroe,LA,light,3600,bright orbs of light in the sky +2011-04-08,42.9316667,-76.5663889,Auburn,NY,triangle,600,Low flying-------triangle---- with at least 3 very bright white lights----------- Makes NO noise.--- Comes out on clear nights--- +2011-04-08,39.9277778,-122.1780556,Corning,CA,other,4,Unitentified object reported in northern California. +2011-04-08,42.0244444,-71.1291667,Easton,MA,light,6,bright , very fast moving/stopping white lights in upper night sky +2011-04-08,47.6588889,-117.425,Spokane,WA,circle,180,Circular, silver object flying with jet east over Spokane, April 11, 2011 +2011-04-08,35.6216667,-86.5925,Unionville,TN,circle,1800,Star exhibits unusally fast and erratic movements in the eastern sky. +2011-04-08,33.6602778,-117.9983333,Huntington Beach,CA,circle,900,Object was hovering in the sky in my neighborhood where I live in Huntington Beach California on Warner Ave. It kept changing colors i +2011-04-08,28.5380556,-81.3794444,Orlando,FL,triangle,300,Amber orbish lights passing in formation +2011-04-08,45.9047222,-122.7427778,Woodland,WA,triangle,60,Three lights over Woodland, WA. +2011-04-09,33.7738889,-117.9405556,Garden Grove,CA,sphere,18000,((HOAX??)) I am well versed in the field of astro physics this is amazing film. +2012-04-08,43.9663889,-111.6813889,St. Anthony,ID,flash,3,0:32 MS , St Anthony, ID, flashing star across the sky high speed , trail part of travel distant +2012-04-08,37.5536111,-77.4605556,Richmond,VA,changing,900,It was fast and then split. +2012-04-08,39.0997222,-94.5783333,Kansas City,MO,disk,3,4/8/12 bronze disc running over Kansas City +2012-04-08,33.9311111,-117.5477778,Norco,CA,light,120,At 8:00 pm on Sunday April 8th 2012 in an event lasting 2 minutes.My Husband and I witnessed a yellowish light slightly larger in size +2012-04-08,33.9172222,-118.0111111,La Mirada,CA,light,60,Solid white light turned simi-transparent red and then faded-out. +2012-04-08,25.7738889,-80.1938889,Miami,FL,circle,20,Pinkish/red UFO over Kendall,Miami Fl same size as venus moving at high speed,no sound...pulsing.Moving east to west 4/8/2012,ᅄ:25hr +2012-04-08,39.1458333,-121.5902778,Marysville,CA,light,45,4 hovering lights at very low altitude South of Marysville +2012-04-08,44.739444399999996,-93.1255556,Rosemount,MN,disk,120,Seen UFO when getting a little air. +2012-04-08,47.6063889,-122.3308333,Seattle,WA,sphere,300,Five orange orbs with flickering light inside, silent, moving slow over Lake Washington. +2012-04-08,47.6063889,-122.3308333,Seattle,WA,fireball,60,Silent moved from west to southeast across the sky and then faded away +2012-04-08,39.9611111,-82.9988889,Columbus,OH,oval,900,Yellow and orange oval spheres three of them +2013-04-08,41.5119444,-82.9377778,Port Clinton,OH,cylinder,1200,3 large cylinder shaped crafts flying near Lake Erie +2013-04-08,46.7313889,-117.1786111,Pullman,WA,light,300,6 balls of light over pullman washington Easter 2013 +2013-04-08,35.615,-87.0352778,Columbia,TN,other,120,Bright round object, moving different directions, speeds and altitudes at amazing speed. +2013-04-08,46.4163889,-117.0441667,Clarkston,WA,light,3600,Bright light in sky, dimmed, disappeared, flashed. friend and i chased it for an hour. +2013-04-08,38.2494444,-122.0388889,Fairfield,CA,triangle,300,4/8/2013 - Large Slow Moving Triangle shaped craft - Fairfield, CA +2013-04-08,42.1013889,-72.5902778,Springfield,MA,unknown,1395,Bright white light with redish orange lights blinking, that sped away so fast!! +2014-04-08,40.4863889,-86.1336111,Kokomo,IN,triangle,3600,Bright flashing red and blue lights just hovering for a long time. ((NUFORC Note: Possible star? PD)) +2014-04-08,39.7294444,-104.8313889,Aurora,CO,light,3600,I thought it was stars but theses were moving sideways. ((NUFORC Note: Possible sighting of stars?? PD)) +2014-04-08,32.3344444,-96.1511111,Gun Barrel City,TX,other,4500,Massive mushroom shaped ufo in the sky over Cedar Creek lake on 04/08/2014. +2014-04-08,35.5322222,-97.9547222,El Reno,OK,oval,3,UFO over lucky star caught on camera up close. +2014-04-08,42.2527778,-71.0027778,Quincy,MA,light,180,Slow moving white light orb witnessed in Quincy, Mass, 4/8/14. +2014-04-08,33.5091667,-111.8983333,Scottsdale,AZ,unknown,600,Crazy bright blue light. +2014-04-08,32.2216667,-110.9258333,Tucson,AZ,unknown,8,Silver object appears in small cloud, both disappear. +2014-04-08,34.3991667,-118.9172222,Fillmore,CA,oval,900,Red/Orange pulsating spheres flying circular patterns for 5mins continuous. +2014-04-08,31.8352778,-109.0305556,Rodeo,NM,light,60,Reddish-orange craft with no blinking nav lights followed at night by three (military) jets with blinking nav lights. +2014-04-08,30.2669444,-97.7427778,Austin,TX,unknown,10,Austin: Unexplained silent unlit object moving 100ft over the ground seen at close range +2014-04-08,48.9938889,-122.7458333,Blaine,WA,sphere,600,Shape shifting orb like object. +2014-04-08,39.7902778,-77.7280556,Greencastle,PA,triangle,600,I went outside to look for mars because of the cosmic alignment. Whenever I looked South, there were 6 red lights in the sky, heading e +2014-04-08,35.7111111,-78.6144444,Garner,NC,formation,180,Three low, slow moving, silent objects consisting of three horizontal lights each pulsating in and out of sight. +2014-04-08,41.6475,-88.0894444,Romeoville,IL,light,120,Two bright orange lights moving slow in sky. Suddenly one disappeared, other traveled for 30 sec saw bright purple light then it vanish +2014-04-08,34.0027778,-84.1447222,Duluth,GA,light,30,UFO with 2 White Lights. +2014-04-08,35.1894444,-114.0522222,Kingman (~30 Miles N On 93),AZ,light,7,Bright ball of light getting sucked up into "vortex" outside of Kingman, AZ. +2014-04-08,43.7913889,-89.3197222,Montello,WI,formation,40,Was traveling to Montello from portage on hwy.22 All of a sudden a red orange globe (looked like a street light in the sky) lit up. +2014-04-08,43.0388889,-87.9063889,Milwaukee,WI,light,600,Intelligent Light moving very slowly through the sky then disappears from view +1987-04-09,40.2972222,-74.73,Lawrenceville,NJ,other,480,Four octagon shape pods hooked together with pulsating lights. Most likely the bottom of the ship or objects body. +1998-04-09,38.8338889,-104.8208333,Colorado Springs,CO,other,900,Saw object hovering over Co Springs. Couldn't clearly make out the shape, but it had approx 10-12 lights, most white, a couple yellow a +1998-04-09,38.8338889,-104.8208333,Colorado Springs,CO,other,4,Saw a row of lights for about two seconds,they disappeared for about a second then the row of lights came on one after the other from r +1998-04-09,33.6411111,-117.9177778,Costa Mesa,CA,egg,600,one object sighted +1999-04-09,35.6527778,-97.4777778,Edmond,OK,fireball,5,west bound I 44 10miles east okla city ok fireball flash and then something faling to ground estimated altitude 18000 feet. light so br +1999-04-09,39.2666667,-74.6452778,Marmora,NJ,unknown,5,Bright Orange Light In Sky. +2000-04-09,33.7283333,-117.1455556,Menifee,CA,fireball,3,"Observed a craft similar to a green roman candle during nighttime, background black. Falling in an arch downward, with orange droplet +2000-04-09,33.1958333,-117.3786111,Oceanside (5-10 Minutes Drive /Miles South Of),CA,fireball,1.5,Bright fireball low in the southeast sky. Primarily white, although with a greenish tint. +2000-04-09,34.4208333,-119.6972222,Santa Barbara,CA,fireball,10,flurscent green fireball the approx size of a half moon coming from sky over ocean over highway to mountains on otherside of us.very br +2000-04-09,34.5036111,-93.055,Hot Springs,AR,cigar,21600,i was driving home and saw an enormous cigar shaped metallic object fying torward my vehicle at about 100 ft off the road +2000-04-09,34.1072222,-118.0569444,Temple City,CA,light,9,as i had submitted in march, again a satelite passing over due south, unnoticeable otherwise, initiates a strobe lens opening, intensif +2000-04-09,39.8016667,-89.6436111,Springfield (??) (Schuyler County),IL,oval,25,Observed bright red ovals. +2001-04-09,45.7811111,-122.5322222,Battle Ground,WA,fireball,3,AN ORANGE FIREBALL GOING FROM SLIGHTLY NORTH TO SOUTH BUT MOSTLY DOWN AND DISAPPEARED BEHIND THE TREES. IT LOOKED LARGE AND CLOSE ENOUG +2001-04-09,62.3238889,-150.1094444,Talkeetna (Matsue Area),AK,triangle,360,sitings in alaska +2001-04-09,44.5647222,-123.2608333,Corvallis,OR,fireball,8,Fireball Sighted by Child in the Northwest +2002-04-09,31.8541667,-110.9930556,Green Valley,AZ,circle,45,Had I not watched the Peter Jennings report, I probably would not have reported this to anyone! +2003-04-09,39.8547222,-76.5647222,Felton,PA,circle,10,this was a craft of some sort. not a star and not a plan. +2003-04-09,44.2447222,-92.2955556,Millville,MN,oval,120,star shaped moving south to west in straight, and up and down direction flashing and growing to return to star like self +2003-04-09,38.4405556,-122.7133333,Santa Rosa,CA,other,40,STAR LIKE OBJECT FLYING .GENTLEY ACROSS SKY AND TURNS UPWARD AND GONE +2004-04-09,33.9561111,-83.9880556,Lawrenceville,GA,cigar,720,Took several daylight photos of very unusual tubular cloud along with a small dark object and a blue orb. +2004-04-09,47.3552778,-123.0997222,Union (Hood Canal),WA,fireball,5,Bright Green Fireball Above Hood Canal +2004-04-09,35.3733333,-119.0177778,Bakersfield,CA,other,1800,Light Blue "boomerang" shaped object hovered. +2004-04-09,33.8838889,-84.5144444,Smyrna,GA,other,4,yellow (fire like) object flying thru sky at very very high speed. +2004-04-09,39.2672222,-76.7986111,Ellicott City,MD,other,60,alien sited walking dog in ellicott city,md 04/09/04 +2004-04-09,33.9561111,-83.9880556,Lawrenceville,GA,cylinder,780,Spotted a cylindrical cloud behaving contrary to laws of physics at 2 PM. Took 7 very good photos. +2004-04-09,47.4236111,-120.3091667,Wenatchee,WA,other,120,unless airplanes make 90 degree turns? +2004-04-09,36.3008333,-119.7819444,Lemoore,CA,circle,40,"Cluster" of red flashing lights moving at high rate of speed from North to South. +2004-04-09,40.7452778,-86.7647222,Monticello,IN,circle,60,Lights in the sky +2004-04-09,29.1869444,-82.1402778,Ocala,FL,fireball,3,at about 9 pm on Friday, 9 Apr, 2004, I saw what appeared to be a bright burning object falling directly west by southwest of Ocala, Fl +2004-04-09,40.7977778,-85.8205556,Wabash,IN,other,45,Five or more bright orange sphere shapes in the night sky. +2004-04-09,35.0525,-78.8786111,Fayetteville,NC,fireball,5,Orange-red fireball near Fort Bragg. +2004-04-09,29.9544444,-90.075,New Orleans,LA,light,20,Yellowish/orange star like light +2004-04-09,40.7722222,-79.53,Ford City,PA,disk,15,two disc shaped objects moving east to west at a very high rate of speed +2004-04-09,40.7722222,-79.53,Ford City,PA,triangle,10,the objects were reddish orange , no blinking light, but a continuous light +2004-04-09,33.4483333,-112.0733333,Phoenix,AZ,triangle,30,Apr. 9, 04 Phoenix AZ a dark huge triangular shaped, noiseless object flew over my home heading due North +2004-04-09,39.0508333,-74.7583333,Stone Harbor,NJ,unknown,300,there was a haze around it +2004-04-09,40.6608333,-86.2419444,Walton,IN,oval,20,orange lights that appeared and disappeared twice +2004-04-09,40.5186111,-78.395,Altoona,PA,chevron,15,Lighted chevron shaped object observed. +2004-04-09,39.4194444,-76.7805556,Owings Mills,MD,chevron,10,A boomerang shaped UFO with lighted edges flies by Oryan's (spelling) Belt. +2004-04-09,29.8944444,-81.3147222,St. Augustine,FL,disk,120,Disk lands in ocean +2004-04-09,32.4608333,-84.9877778,Columbus,GA,oval,5,10:30pm EDT Columbus GA 2 blue/green objects traveling north to south at high speed, no sound. +2005-04-09,38.0466667,-93.7041667,Osceola,MO,fireball,15,With a light that lite up the whole sky and land it fell from the southeast and went northwest with a huge tail of colors. +2005-04-09,42.0494444,-92.9077778,Marshalltown,IA,circle,4,Large round glowing object falling to the South East. +2005-04-09,40.7391667,-89.0163889,El Paso (Rural),IL,fireball,5,Large Meteor Re-Enters of El Paso +2005-04-09,40.6788889,-73.4175,Amityville,NY,disk,60,I noticed something in the sky and it just dissapeared. +2005-04-09,32.7947222,-116.9616667,El Cajon,CA,circle,240,12 noon clear sky wagon wheel obect flying east then banked to the north emitting a blue light +2005-04-09,42.6875,-83.2341667,Auburn Hills,MI,other,180,Five Dancing Dots +2005-04-09,31.9491667,-98.7369444,Sidney,TX,triangle,180,English words identified on black triangular craft. +2005-04-09,48.2933333,-122.6419444,Oak Harbor,WA,formation,7,silver formashon over oak harbor wa. +2005-04-09,42.3583333,-71.1263889,Allston,MA,triangle,10,large triangular craft with 16 glowing round disks from below +2005-04-09,31.9491667,-98.7369444,Sidney,TX,triangle,180,I just got finish watching a show about UFO's and then I went to the centers website and i say the photo of the Texas UFO and it looks +2005-04-09,31.9491667,-98.7369444,Sidney,TX,triangle,180,TRIANGLE WITH ENGLISH WORDS WRITTEN ON IT IS A PROVEN LIE. +2005-04-09,39.7172222,-74.9697222,Sicklerville,NJ,triangle,120,I noticed in the sky this Triangle Yellow Light moving slowly around a little forest that we have between our complex (Asten Woods) +2005-04-09,42.8583333,-70.9305556,Amesbury,MA,light,3600,blinking bright light greenish, yellow, red in NW sky on NH MA border. ((NUFORC Note: Possibly Sirius? PD)) +2005-04-09,41.2783333,-73.0261111,Orange,CT,oval,300,An oblong oval craft, larger than blimp, with a streak of colored lights about the length of a footbal field making huge rumbling noise +2005-04-09,61.5813889,-149.4394444,Wasilla,AK,light,10,birght light acceleratesat a high rate of speed. +2005-04-10,42.1013889,-72.5902778,Springfield,MA,circle,60,We noticed it had gotten smaller out of nowhere, but was still at the same distance. +2006-04-09,32.7833333,-96.8,Dallas,TX,changing,360,My UFO sighting over the Immigration Rally in Dallas, Tx. +2006-04-09,39.9522222,-75.1641667,Philadelphia,PA,cigar,60,Philadelphia - Seen UFO +2006-04-09,36.9544444,-94.7877778,Quapaw,OK,cigar,5,silver cigar shaped object goes extremly fast +2006-04-09,39.7475,-122.1952778,Orland,CA,sphere,60,Orb's overlooking there launch of a craft. +2006-04-09,39.7475,-122.1952778,Orland,CA,sphere,60,ORBS watching over a launch of there own. +2006-04-09,34.7463889,-92.2894444,Little Rock,AR,light,120,Bright light +2006-04-09,30.3580556,-90.0655556,Mandeville,LA,light,5,seen lights that looked like stars playing +2007-04-09,37.485,-119.9652778,Mariposa,CA,flash,1800,BETWEEN THE HOURS OF 0115 AND 0145 I WAS STANDING ON MY FRONT DECK AT HOME. WHILE LOOKING AT THE STARS I NOTICED A FLASHING TYPE OF LIG +2007-04-09,42.3313889,-83.0458333,Detroit,MI,light,30,bright comet like light streaked across the michigan sky line +2007-04-09,38.0247222,-93.2266667,Cross Timbers,MO,oval,300,Edge of oval object near Cross Timbers,MO +2007-04-09,35.36,-81.9294444,Spindale,NC,oval,120,Oval object over Forest City, NC moving fast, then abrutly changing direction and altitude +2007-04-09,35.9605556,-83.9208333,Knoxville,TN,disk,240,Disc-shaped object spotted seen about 15:00 hrs. for a duration of about 4 minutes. +2007-04-09,41.055,-73.8205556,Elmsford,NY,circle,2,Dark circular object floating stock still in the air. Was not seen when photo was shot. It's not in any of the other photos taken. +2007-04-09,40.3858333,-122.2797222,Cottonwood,CA,light,420,Incredible Sighting and top secret Helicopters +2007-04-09,35.2269444,-80.8433333,Charlotte,NC,oval,360,Weard light moving southeast of Charlotte, oval shape moving really slow +2007-04-09,37.8911111,-93.6227778,Collins,MO,unknown,300,Bright round red light followed by a sequence of bright orange rectangular lights at tree top level. +2007-04-09,37.9736111,-122.53,San Rafael,CA,light,10,Bright blue object races across whole sky. +2007-04-09,43.0116667,-88.2313889,Waukesha,WI,light,1200,indescribble light on sky +2008-04-09,37.5483333,-121.9875,Fremont,CA,oval,1200,UFO Spotted in Fremont Hills +2008-04-09,32.7152778,-117.1563889,San Diego,CA,other,720,White/Silvery kind of Boomarang shaped object, low and slow moving to the east of Lemon Grove chased by 2 Jets. +2008-04-09,31.7319444,-84.1708333,Leesburg,GA,light,20,Bright light appearing out of nowhere and speeding off +2009-04-09,48.4213889,-122.3327778,Mount Vernon,WA,triangle,4,My two friends and I saw a triangular formation of lights in the sky and when we went to video tape them, they simply disappeared. +2009-04-09,35.2269444,-80.8433333,Charlotte,NC,cylinder,360,Bright White/Chrome Cylinder against Carolina Blue clear sky. +2009-04-09,35.2269444,-80.8433333,Charlotte,NC,cylinder,420,Rotating Cylindrical object passes overhead. +2009-04-09,26.6155556,-80.0572222,Lake Worth,FL,oval,120,ufo between clouds +2009-04-09,40.6733333,-80.5766667,Calcutta,OH,circle,600,3 lighted circular craft over calcutta,ohio. +2010-04-09,37.8044444,-122.2697222,Oakland,CA,triangle,6,Triangle of lights speeding accross the sky from Oakland, CA +2010-04-09,37.9747222,-87.5558333,Evansville,IN,light,300,bright light spotted moving quickly over the morning sky +2010-04-09,39.0911111,-94.4152778,Independence,MO,light,20,7 to 10 lights in the sky an hour before sunset. Way high in the sky moving really fast. First few lights were white followed by gree +2010-04-09,33.8225,-113.5408333,Wenden,AZ,disk,60,We saw a very large read illumination of light surrounded by two white lights that simultaneously took off into the sky. +2010-04-09,32.7252778,-114.6236111,Yuma,AZ,circle,40,3 silent, cloaked circular objects +2010-04-09,39.7683333,-86.1580556,Indianapolis,IN,triangle,60,Black Triaglular aircraft with two white lights and one red going across Indianapolis sky. +2010-04-09,40.7763889,-73.4677778,Plainview,NY,unknown,300,Strange pattern of white, green, and red lights that hovered and had an erie humming noise. +2010-04-09,29.4238889,-98.4933333,San Antonio,TX,triangle,30,Triangular lights directly overhead moving silently and slow then saw edge of craft in moon light (circular). +2011-04-09,38.9783333,-76.4925,Annapolis,MD,circle,600,Stationary light over Annapolis, MD +2011-04-09,40.5983333,-124.1561111,Fortuna,CA,light,345600,5 different lights and sizes floating in our sky +2011-04-09,42.8863889,-78.8786111,Buffalo,NY,circle,15,Green Orbs, Western NY, 1-2AM 4/9/11 +2011-04-09,47.6777778,-116.7794444,Coeur D'alene,ID,other,30,object stood stationary but moved great distances in seconds and stood stationary again +2011-04-09,34.9675,-82.4436111,Travelers Rest,SC,sphere,420,High altitude star like cluster of very high speed spherical light objects, changing light intensity +2011-04-09,28.5380556,-81.3794444,Orlando,FL,formation,600,multiple lights, multiple colors, changing formation Orlando +2011-04-09,37.0297222,-76.3455556,Hampton,VA,circle,600,bright circle light movin in sky. +2011-04-09,40.2202778,-74.0125,Asbury Park,NJ,triangle,2700,My wife and I were watching TV at approximately 10:05pm when my wife looked out our bedroom window and noticed a strange object in the +2011-04-09,46.0494444,-118.3872222,College Place,WA,unknown,180,Orange ufo flying over College Place, WA +2011-04-09,40.5580556,-90.035,Canton,IL,unknown,10,2 green lights traveling subsonic with no sound +2011-04-09,40.6661111,-89.58,East Peoria,IL,cigar,10,Neon green cigar shaped object traveling at high speed,through low level clouds. +2011-04-09,40.8930556,-88.4052778,Saunemin,IL,circle,5,Object lit up the sky and shifted directions before zooming over my head and into oblivion. +2011-04-09,41.0286111,-89.4383333,Sparland,IL,circle,120,A bright green circular object was seen flying in the sky in Sparland, IL +2011-04-09,36.7280556,-108.2180556,Farmington,NM,triangle,900,the craft had and forward object protuding out of the fornt may or may not hand something onw the fornt of the shaft, then it what loo +2012-04-09,34.2783333,-119.2922222,Ventura,CA,light,60,Light in the sky that appeared as a bright star and then the light went out and appeared 1/2 size in other location. +2012-04-09,39.2544444,-76.7002778,Arbutus,MD,light,180,I was walking my friend to the bus stop when i noticed four bright lights in the sky. They were pretty far away but it seemed as though +2012-04-09,33.1433333,-117.1652778,San Marcos,CA,circle,900,Bright orange object +2012-04-09,42.5222222,-83.3061111,Franklin,MI,flash,1,I saw a shooting star that was something else. +2012-04-09,36.0966667,-81.1825,Moravian Falls,NC,unknown,600,Bright object seen over Moravian Falls NC +2012-04-09,35.7719444,-78.6388889,Raleigh,NC,light,120,A bright white light that was extremely fast with no sound, ejected 2 smaller objects in opposite directions. +2012-04-09,32.7152778,-117.1563889,San Diego,CA,sphere,60,Bright orb moving in northern sky +2012-04-09,34.035,-77.8938889,Carolina Beach,NC,fireball,900,Orange-pink lights/fireballs. Appeared singly and in pairs/patterns over the ocean. Could've been weaponry. +2012-04-09,39.2125,-76.7138889,Elkridge,MD,disk,4200,Five bright lights seen over elkridge, md. two of them seen through binoculars in great detail +2012-04-09,38.5766667,-92.1733333,Jefferson City,MO,light,40,Bright light. Very quiet. Moved at two different speeds. +2012-04-09,35.235,-75.6288889,Frisco,NC,sphere,7200,Reddish orbs over Frisco, NC +2012-04-09,42.1716667,-92.3061111,Dysart,IA,light,120,Lights in the sky over dysart iowa +2012-04-09,42.1716667,-92.3061111,Dysart,IA,light,120,Bright lights in the sky over dysart ia. +2012-04-09,29.3836111,-94.9025,Texas City,TX,oval,1800,Go to internet mysterius lights in Texas City Texas skys many news reports and actual video +2012-04-09,27.495,-82.7111111,Holmes Beach,FL,other,600,Fast moving red balls in the sky over the Gulf Of Mexico of the coast of Anna Maria Island +2013-04-09,35.9172222,-82.3011111,Burnsville,NC,other,60,Noiseless hovering craft. Clearly responed to human proximity. Witnessed for over an hour. Video footage. +2013-04-09,41.7425,-70.1625,East Dennis,MA,circle,60,Small bright object with red lights in East Dennis, MA. +2013-04-09,33.7186111,-116.3075,Indian Wells,CA,sphere,120,Amber ball of light glowing moving from Northeastern sky to Southeastern sky making no sound as it moved. +2013-04-09,39.3330556,-82.9825,Chillicothe,OH,sphere,3600,Round orange lights that fade in, are stationary, then fade out. One returned multiple times about 10 minutes apart. +2013-04-09,38.6272222,-90.1977778,St. Louis,MO,circle,120,Orange glowing circle moving across sky, no noise. +2013-04-09,34.4208333,-119.6972222,Santa Barbara,CA,unknown,2,2 very fast silent objects pass over being followed by a helicopter. +2013-04-09,37.775,-122.4183333,San Francisco,CA,fireball,60,Faster than any aircraft I've seen that is completely silent. +2013-04-09,39.9611111,-82.9988889,Columbus,OH,rectangle,300,Giant rectangular craft with cloaking technology witnessed +2013-04-09,40.0336111,-76.5047222,Columbia,PA,circle,300,A single round shaped ball of bright firey light somewhat simular to the appearance of a hot air balloon high in the sky moving across +2013-04-09,37.4852778,-122.2352778,Redwood City,CA,cigar,180,3 red flashing lights blinking 1 at first 3-4 times then all 3 a few times. Repeatedly +2014-04-09,42.0713889,-70.8097222,Pembroke,MA,triangle,3000,3 large slow quiet planes flying low over Pembroke to Boston +2014-04-09,40.4405556,-79.9961111,Pittsburgh,PA,formation,120,Bright orange lights in formation. +2014-04-09,32.8383333,-116.9730556,Santee,CA,light,15,Orange ball in sky in Santee Ca +2014-04-09,32.3122222,-106.7777778,Las Cruces,NM,other,600,There were blue lights in the night sky. +2014-04-09,60.5544444,-151.2583333,Kenai,AK,light,7200,Strange fast moving lights high in the sky +2014-04-09,31.0408333,-83.0752778,Lakeland,GA,light,300,Row of lights seen near Lakeland, GA. +2014-04-09,30.1763889,-85.8055556,Panama City Beach,FL,light,10800,Large, orange glowing “stars”, rapidly blinking lights, and USOs fill the night sky and gulf waters in PCB. +2014-04-09,33.7877778,-117.8522222,Orange,CA,unknown,30,Stationary object turns into red, then blue and then a glowing white and duplicates process and then flies overhead. +2014-04-09,34.2072222,-84.1402778,Cumming,GA,light,3600,Two bright oval shaped lights for an hour over Cumming night sky, in Spring 2014. +2014-04-09,26.1336111,-80.1133333,Sunrise,FL,light,1800,Very low bright light staying in area for more than 30 minutes but does move. +2014-04-09,37.3394444,-121.8938889,San Jose,CA,fireball,300,Circular object flying at night it was red and disappeared out of nowhere in a few minutes. +2014-04-09,40.3236111,-75.0602778,Buckingham,PA,triangle,120,Much quieter than a jet or a propeller plan yet not a glider. It made a mechanical sound. Shaped like a triangle with two white lights +2014-04-09,38.9988889,-84.6266667,Florence,KY,unknown,45,Several bright lights stationary in the sky, turned and flew east away from hovering spot, then blinked out. +2014-04-09,33.9491667,-83.5347222,Bogart,GA,disk,3600,UFOs in Bogart, Georgia. +2014-04-09,42.3266667,-122.8744444,Medford,OR,cone,3600,((HOAX??)) UFO's in Medford Oregon on April 9th 2014. +2014-04-09,44.6369444,-124.0522222,Newport,OR,oval,3600,Orange oval floating light on ocean unaffected by waves speeds up and slows down on the water. +1948-05-10,39.0791667,-85.7175,Scipio,IN,sphere,10,Round red glowing ball going west in Northern sky. +1964-05-10,36.7619444,-83.695,Pineville,KY,unknown,900,05/10/64 02:00 Little Creek KY humming noise/house shaking +1966-05-11,36.1538889,-95.9925,Tulsa,OK,rectangle,600,V shape object moving in a V shape. +1967-05-10,39.4736111,-118.7763889,Fallon,NV,oval,1200,05/10/1967 23:00 fallon, nevada, glow on horizen, followed by, hovering colored discs, 20 minutes +1974-05-10,33.9608333,-83.3780556,Athens,GA,circle,180,Bright red curcular light viewed as stationary....after 3 minutes took off at great speed...no contrails or lights. +1976-05-10,39.7930556,-123.2469444,Covelo,CA,disk,6,BRIGHT OBJECT ENTERS VALLEY WHILE WE ARE ON THE PLAYGROUND. +1976-05-10,39.9863889,-76.3152778,New Danville,PA,disk,900,A bright white glowing disc that sat stationary above the village for some minutes. +1977-05-10,29.5425,-95.0202778,Kemah,TX,light,15,A white "star" in the sky began to spiral and zig zag in the sky then zoomed off and disappeared. +1978-05-10,32.7152778,-117.1563889,San Diego,CA,changing,1500,UFO hovering behind our backyard, the night of May 10񫹺 +1978-05-10,41.7588889,-70.4944444,Sandwich,MA,triangle,300,Irregularly-shaped large elongated triangle with blue after-glow seen soundlessly moving over Cape Cod. +1980-05-10,45.8527778,-87.0216667,Gladstone,MI,light,180,UFO with Lights in Bay View Location on Little Bay de Noc Shore line +1980-05-10,45.8527778,-87.0216667,Gladstone,MI,light,180,UFO with Lights in Bay View Location on Little Bay de Noc Shore line. +1980-05-10,41.2222222,-73.0569444,Milford,CT,other,10800,Strange craft over house, possible abduction +1980-05-10,38.4119444,-121.2711111,Wilton,CA,light,4,Two lights, one amber, one green, taking turns passing each other, very fast, high up +1983-05-10,47.5675,-122.6313889,Bremerton,WA,triangle,5,Triangular-shaped object moving in perfect silence in the night sky +1985-05-10,40.7091667,-112.1008333,Magna,UT,sphere,15,25' mirror ball traveling 60' up at 300 mph on a clear morning. passed about 100 feet from us . +1986-05-10,37.4644444,-84.5066667,Crab Orchard,KY,light,900,A ufo hovered in the sky for about 15 minutes. It shot down a blue beam of light. +1987-05-10,40.8663889,-73.0361111,Selden,NY,other,20,Saw a star stop make two 90 degree turns then vanish +1989-05-10,32.2216667,-110.9258333,Tucson,AZ,other,1200,We chased Giant Gray Cubes through the desert near Tucson, AZ. +1991-05-10,40.7536111,-86.0688889,Peru,IN,disk,600,Saucer lights up farmhouse, tree, and puts on a light show for two unsuspected teenagers. +1992-05-10,32.4205556,-104.2283333,Carlsbad,NM,triangle,5,Triangle-shaped craft hovers silently over the Pecos River. +1992-05-10,44.5191667,-88.0197222,Green Bay,WI,disk,3,UFO VIDEO TAPED BY T.V. CAMERMAN +1992-05-10,42.3583333,-71.1263889,Allston,MA,triangle,5400,Large Triangular object just outside Boston +1993-05-10,41.3113889,-105.5905556,Laramie (South Of),WY,formation,60,Formation of Tremonton-like "daylight disks" in Wyoming +1993-05-10,33.4483333,-112.0733333,Phoenix,AZ,sphere,30,This was a brief encounter on a clear night. The silence of the passing of the object is what struck me the most. +1995-05-10,29.7630556,-95.3630556,Houston (West),TX,light,7200,Swirling lights coming out of larger light at high altitude. Fast with trails. Aware of us observing. +1995-05-10,33.8369444,-109.9636111,Whiteriver,AZ,light,300,lights over apache community +1997-05-10,30.2669444,-97.7427778,Austin,TX,flash,3,it flashed very bright and then took off at the speed of light with a blue trail following it. +1997-05-10,39.3194444,-88.4527778,Neoga (6 Mi. West),IL,triangle,300,A 300 TRIANGULAR SHAPED CRAFT, WITH HUNDREDSOF RED DOT LIGHTS, FLEW DIRECTLY OVER HEAD,MAKING NO NOISE, 200 HUNDRED FEET OVER TREE LINE +1997-05-10,33.9244444,-86.0225,Southside (Gadsden),AL,other,180,Two bright objects hovering one moment then taking off at high speeds, beyond aircraft speeds. These two objects seemed to stop and go +1997-05-10,34.8697222,-111.7602778,Sedona,AZ,light,600,A very bright palsing light with smaller bright object flying around larger object. +1997-05-10,32.895,-97.5455556,Azle,TX,circle,300,Saw circle of flames that then reduced size to single light,travelled quickly across the sky and was followed by military fighter plane +1997-05-10,48.4780556,-120.185,Winthrop,WA,other,7200,Objects observed in mountain sky +1998-05-10,47.6063889,-122.3308333,Seattle,WA,fireball,60,Walking from cruise ship to Space Needle. What appeared to be a Military flair white light with trailing smoke ?Airplane crash. Looki +1998-05-10,47.2372222,-93.53,Grand Rapids,MN,unknown,10,Too bright for this earth. +1998-05-10,42.1211111,-88.2577778,Carpentersville,IL,circle,60,Bright round object in sky +1999-05-10,36.1733333,-79.9891667,Oak Ridge,NC,triangle,1200,at apox. 3am I woke up to the dog going crazy and a strange hum.outside my father and I saw an object just sitting on the tree line +1999-05-10,34.7463889,-92.2894444,Little Rock,AR,triangle,300,Stealth Black Triangular Platform with bronze plasma looking lights on the corners +1999-05-10,35.1494444,-90.0488889,Memphis,TN,disk,75,Contact ((name delet @(901)((deleted)) or ((deleted)) Radio Show hotline @(901) for one page of complete account. +1999-05-10,42.2097222,-76.4936111,Spencer,NY,light,60,Light came from over our hill and started circulating above us. +1999-05-10,40.7161111,-73.8505556,Forest Hills,NY,triangle,8,Very large, fast moving triangular shaped object seen moving from SW to NE over Metro NYC nightsky. +2000-05-10,35.2269444,-80.8433333,Charlotte,NC,triangle,900,Silent craft floated over my head +2001-05-10,34.2747222,-87.7005556,Bear Creek,AL,fireball,600,It was intelligent +2001-05-10,41.0997222,-80.6497222,Youngstown,OH,sphere,2700,Well, We were walking in to a store when my girlfriend said look at those balls in the sky,I looked where she had pointed in the sky an +2001-05-10,32.7152778,-117.1563889,San Diego,CA,circle,86400,giant whirlpool seen of coast of san diego, ca. possible ufo site +2001-05-10,38.8055556,-123.0161111,Cloverdale,CA,other,4,Amorphous "something" seen at night in the skies over northern California, 5/10/01. +2001-05-10,30.2327778,-95.1608333,Splendora,TX,unknown,2040,it just stayed in one spot and changed color rapidly then after 30 min it feaded away with no noise or movement +2001-05-10,27.7688889,-82.7691667,Treasure Island,FL,unknown,3600,flashing lites over the gulf +2001-05-10,38.2861111,-111.4766667,Teasdale,UT,triangle,600,It was a black triangle moving across the night sky with 3 lights forming a triangle, when it banked and suddenly it was gone. +2001-05-10,33.2183333,-98.1583333,Jacksboro,TX,triangle,180,I thought it to be Satellites +2001-05-10,38.9716667,-95.235,Lawrence,KS,triangle,60,Possible Explanation for 9/29/1999 Lawrence, KS Sighting +2002-05-10,40.7608333,-111.8902778,Salt Lake City,UT,light,12,3 lights in triangle formation over Salty Lake city +2002-05-10,33.6305556,-112.3325,Surprise,AZ,unknown,7200,Voluntary isolation is rewarded with quite the celestial show. +2002-05-10,44.0583333,-121.3141667,Bend,OR,light,60,I did'nt see it at first.Then it came out from behind a tree I was a huge ball of light. +2002-05-10,44.2911111,-105.5016667,Gillette,WY,triangle,60,Black triangle glides right over my head. +2002-05-10,26.4972222,-82.0786111,St. James City,FL,chevron,900,On May 10, 2002, viewed a bright orange, chevron shaped object in the western sky of Pine Island, Fl. +2002-05-10,32.3480556,-93.5525,Elm Grove,LA,fireball,6,Fiery object sighted in NW Louisiana +2002-05-10,39.7683333,-86.1580556,Indianapolis,IN,fireball,5,We saw a strange orange fireball four times across the night sky. +2002-05-10,30.0797222,-95.4169444,Spring,TX,circle,60,fast/manuevering UFO over Spring, Tx. on night of 5/10/02, 10pm +2002-05-10,32.7152778,-117.1563889,San Diego,CA,triangle,300,Huge Triangle shaped object with amber lights at each point on the underside moving slowly over freeway +2003-05-10,43.7486111,-87.9769444,Plymouth,WI,disk,15,Large saucer floating in clear daylight +2003-05-10,41.4994444,-81.6955556,Cleveland,OH,disk,300,Seen fast spinning disc with flashing lights. +2003-05-10,47.9791667,-122.2008333,Everett,WA,light,30,I have done a little research after this experience and there have been a lot of sightings in the Seattle area. +2004-05-10,39.3994444,-84.5613889,Hamilton,OH,disk,900,Black Area In Night Sky +2004-05-10,39.7391667,-104.9841667,Denver,CO,triangle,180,Triangular sighting in Central Denver, 10 May 2004, at 3:35 AM ((NUFORC Note: NOSS satellites. PD)) +2004-05-10,34.2783333,-119.2922222,Ventura,CA,triangle,20,Lights in V formation +2004-05-10,32.2730556,-89.9858333,Brandon,MS,triangle,5,three softly glowing disks flying silently and swiftly in a triangular formation +2004-05-10,40.26,-74.2741667,Freehold,NJ,circle,30,What else could it have been? +2004-05-10,44.9238889,-92.9591667,Woodbury,MN,triangle,900,Witnessed 3 faint lights moving NNE to SSE. Lights formed a triangle and moved VERY slowly to the SSE. About 1/3 the speed of an no +2005-05-10,33.4222222,-111.8219444,Mesa,AZ,unknown,721,Sonic booms over Mesa? +2005-05-10,42.5847222,-87.8211111,Kenosha,WI,cylinder,180,Object metallic looking, hovering and then floated up and then sped off at a high rate of speed. +2005-05-10,39.2402778,-76.8397222,Columbia,MD,sphere,60,two silver ballls over skies in howad county vanish one by one +2005-05-10,38.9341667,-77.1777778,Mclean,VA,other,60,Three balls of light (BOLs), bobbing in circular formation, seen in midafternoon low over homes . +2005-05-10,48.2766667,-116.5522222,Sandpoint,ID,other,10,A missile/cigar-shaped object "suspended" just below the body of a small jet landing in Sandpoint. ID. +2005-05-10,29.9544444,-90.075,New Orleans,LA,cylinder,30,cylinderical ufo streaks low over New Orleans on weather tv broadcast +2005-05-10,40.7161111,-73.8505556,Forest Hills,NY,triangle,4,Two triangular shaped objects, flying parallel to each other, flew by, from east to west, very rapidly. +2005-05-10,32.7152778,-117.1563889,San Diego,CA,sphere,900,6 white lights moving over san diego +2006-05-10,46.7325,-116.9991667,Moscow,ID,triangle,14400,I was otside studying for a final and was looking up when what was a light at first darted and then instantly came to a stop. +2006-05-10,41.3763889,-123.475,Somes Bar,CA,light,8,Witnessed airplane sized light triple in size, shrink back and speed away at incredibly high rate of speed +2006-05-10,26.6402778,-81.8725,Fort Myers,FL,sphere,60,large red shere in Fort Myers, Florida +2006-05-10,39.7391667,-104.9841667,Denver,CO,cigar,30,I saw a bright white cigar shaped aircraft moving slow across the sky and suddenly disappear. +2006-05-10,37.8044444,-122.2697222,Oakland,CA,unknown,30,Flyby of strobing aircraft over bay area +2006-05-10,39.0416667,-94.72,Shawnee,KS,circle,30,a little after midnight i went outside and noticed big trails in the sky they were all over never seen anything like it before i though +2007-05-10,40.015,-105.27,Boulder,CO,circle,900,Strange formations, bright blue/ red / green lights forming in different locations in Boulder. +2007-05-10,34.09,-117.8894444,Covina,CA,light,600,Orange light moving south in the northeast sky. +2007-05-10,32.2216667,-110.9258333,Tucson,AZ,light,20,Lights move around each other and go opposite ways +2007-05-10,33.6597222,-85.8316667,Anniston,AL,light,7200,i did manage to get a picture of the cresent light on my camera phone... +2007-05-10,33.6305556,-112.3325,Surprise,AZ,light,660,Three lights tracing peculiar flight patterns across the sky +2007-05-10,33.5980556,-117.8722222,Corona Del Mar,CA,circle,900,Flying disk over Corona del Mar / Newport Beach, California +2007-05-10,37.8172222,-96.8619444,El Dorado,KS,light,3600,Bright light in sky, faded and then disappeared. +2007-05-10,39.3436111,-90.2125,Greenfield,IL,triangle,900,Sightings in Greenfield, IL +2008-05-10,35.72,-79.1775,Pittsboro,NC,light,3,One brillian pin-point of light appeared, without a trail or tail ,then dissappeared +2008-05-10,37.775,-122.4183333,San Francisco,CA,sphere,15,Two solid, bright, sphere shaped objects flying erractly and fast over Pac Heights, San Francisco. +2008-05-10,39.9338889,-74.8913889,Mt. Laurel,NJ,light,2700,The light began to zig zag across the sky from left to right really fast. +2008-05-10,41.4047222,-81.7230556,Parma,OH,sphere,2700,White light hovers over Pama +2008-05-10,41.85,-87.65,Chicago,IL,circle,60,Still UFO was observing something in the middle of the day +2008-05-10,40.4655556,-80.0658333,Mckees Rocks,PA,other,120,7 discs in a v formation +2008-05-10,34.6722222,-86.0341667,Scottsboro,AL,oval,1800,Dark, very big long, flat oblong flying object with one maybe 2 rows of very bright lights along the bottom. +2009-05-10,40.7438889,-74.0327778,Hoboken,NJ,circle,15,Round amber illuminated object flew overhead towards NYC at 12:15am on Mothers Day! +2009-05-10,38.6272222,-90.1977778,St. Louis,MO,changing,600,Diamond shaped object in southern sky, have compelling video +2009-05-10,34.1722222,-118.3780556,North Hollywood,CA,light,300,Lighted Possible Triangular Silent Object Passed By My Complex +2009-05-10,29.7955556,-90.8227778,Thibodaux,LA,light,60,Light that moved quickly across the sky and then vanished out of sight +2009-05-10,37.4283333,-121.9055556,Milpitas,CA,sphere,15,Ufo Milpitas +2009-05-10,29.4238889,-98.4933333,San Antonio,TX,chevron,15,Object quietly glides of neighborhood-no lights no sound!! +2009-05-10,39.9369444,-120.9461111,Quincy,CA,light,120,Magnitude -8 ball of light seen for 2 minutes over Quincy, California, moving from west to north. ((NUFORC Note: ISS confirmed. PD)) +2009-05-10,37.3861111,-122.0827778,Mountain View,CA,formation,3,two swept wing objects, in erratic formation, flying very, very fast at night, lit up very strangely +2009-05-11,47.6063889,-122.3308333,Seattle,WA,unknown,600,Hovering then slowly moving black object silhouetted by grey clouds over Seattle, WA (videotaped). +2010-05-10,42.7069444,-71.1636111,Lawrence,MA,oval,30,Oval light flying erratically in the midnight cloudy skys of Lawrence MA. +2010-05-10,37.2705556,-76.7077778,Williamsburg,VA,light,2400,zig zagging white light in sky. ((NUFORC Note: Probably a sighting of a "twinkling" star, we suspect. PD)) +2010-05-10,33.7763889,-112.5277778,Wittmann,AZ,formation,600,A formation traveling north. +2010-05-10,41.7108333,-87.7580556,Oak Lawn,IL,circle,600,Multiple mysterious fleets of UFOs in the night. +2010-05-10,40.9302778,-75.0283333,Knowlton,NJ,light,2400,~A close friend and I were outside; observed a bright object in the sky. ((NUFORC Note: Venus? PD) +2010-05-10,41.0594444,-124.1419444,Trinidad,CA,light,240,The flight pattern of the five reddish orange lights were west or northwest at about a 20 to 30 degree angle. +2010-05-10,48.55,-109.6833333,Havre,MT,light,300,Saw Three Bright Lights +2010-05-10,48.55,-109.6833333,Havre,MT,light,300,Sonic Boom followed by 3 UFOs +2010-05-10,28.5380556,-81.3794444,Orlando,FL,light,900,Orange Lights/Fireballs above the Lake +2011-05-10,37.4419444,-122.1419444,Palo Alto,CA,light,180,Silent, red and blue lights, hovering, circling then dropping fast. +2011-05-10,43.6136111,-116.2025,Boise,ID,unknown,120,Stationary flashing lights in SE sky from Boise, Idaho +2011-05-10,40.1302778,-75.5152778,Phoenixville,PA,light,600,i was leaving my buddys house walking to my car and i looked to the horizon and saw 4 flickering glowing orbs going in and out of focus +2012-05-10,33.8125,-84.6344444,Austell,GA,teardrop,2,I saw a huge blue light fill the sky then fall. +2012-05-10,25.7738889,-80.1938889,Miami,FL,fireball,60,Just a small flickering ball of orange-red traveling slowly through the sky. +2012-05-10,39.5297222,-119.8127778,Reno,NV,unknown,60,Unusual object over Reno/Stead NV +2012-05-10,28.5380556,-81.3794444,Orlando,FL,circle,480,Three small white orbs flying erratically extremely high in a perfectly blue sky during broad daylight. +2012-05-10,33.7488889,-84.3880556,Atlanta,GA,cylinder,300,Space shuttle with chemi-trail head upwards +2012-05-10,42.375,-71.1061111,Cambridge,MA,unknown,1200,Bright light descends over Cambridge, MA area, hovers, then breaks into three separate aircraft. +2012-05-10,45.6797222,-111.0377778,Bozeman,MT,light,2,4 lights, flying east, unusual trajectory, lasting only seconds. No sound. +2012-05-10,40.805,-81.9352778,Wooster,OH,sphere,1620,Unexplained spherical object. +2012-05-10,40.5219444,-111.9383333,Riverton,UT,unknown,2400,In distance, looked like a plane that decided to stay in one spot flashing its lights. +2013-05-10,39.9658333,-74.8055556,Lumberton,NJ,disk,45,2 objects white disk and stealth bomber shape. +2013-05-10,27.8002778,-97.3961111,Corpus Christi,TX,disk,15,UFO photographed in sky in Corpus Christi, Texas on May 10, 2013. +2013-05-10,33.9022222,-118.0808333,Norwalk,CA,oval,180,Fluorescent red non flashing object hovering over Norwalk. +2013-05-10,41.3080556,-72.9286111,New Haven,CT,changing,3600,Spinning white lights merging into one large solid white light +2013-05-10,43.1225,-123.4113889,Winston,OR,cylinder,900,Reddish orange & white, cylinder light, appeared in the S sky and hovered silently for 3-4 minutes before leaving sight eastbound. +2013-05-10,41.6005556,-93.6088889,Des Moines,IA,triangle,300,Triangular UFO seen by family of 6 just south of Des Moines on I35. +2013-05-10,37.1041667,-113.5833333,St. George (Northwest Of),UT,disk,60,Colorfully lit UFO followed my vehicle close to the ground for who knows how long east of Area 51 in Southern Utah late 5-13-2013. +2013-05-10,44.2619444,-88.4152778,Appleton,WI,formation,900,Color changing orb expands into three yellow orbs at low altitude, high rate of speed, no sound. +2013-05-10,34.7302778,-86.5861111,Huntsville,AL,light,120,Three Orange lights appeared and than vanished. +2013-05-10,41.0533333,-73.5391667,Stamford,CT,fireball,300,Glowing orange spheres northwest over stamfordct from coast. +1966-05-11,40.6186111,-80.5775,East Liverpool,OH,triangle,600,silver triangle seen early evening by school choir +1982-05-11,40.4991667,-74.3994444,Piscataway,NJ,disk,300,Air Force trailed UFO in Piscataway NJ 1982. +1991-05-11,33.6602778,-117.9983333,Huntington Beach,CA,other,120,Burning Magnesium Orbs +1991-05-11,33.4483333,-112.0733333,Phoenix,AZ,circle,120,Glowing white sphere moving rapidly west to east high rate of speed and absolutely silent. Phoenix PD confirmed sightings +1994-05-11,40.7141667,-74.0063889,New York City (Brooklyn),NY,circle,15,I observed a round black object pass in front of the moon through my telescope. +1996-05-11,39.8916667,-75.3,Norwood,PA,formation,120,18 Bright fast "Pearl" like UFOs in group between Philadelphia & Delawre crossed I-95 +1997-05-11,30.1022222,-95.2294444,Porter,TX,other,900,We saw "rocks" floating in the air, they drifted over the trees. They appeared to be floating. Atleast 10 cars were pulled over on th +1997-05-11,41.0263889,-73.6288889,Greenwich,CT,triangle,120,Slow moving, quiet very large triangular shaped craft just above the tree line. +1998-05-11,41.6008333,-87.6069444,South Holland,IL,disk,30,4 disk shaped objects traveling in a NNE direction.Emiting no sound and appearing to change course to ENE after reaching Lake Michigan. +1999-05-11,33.9525,-84.55,Marietta,GA,circle,3,Green ball off light +1999-05-11,36.0980556,-119.5594444,Corcoran,CA,other,30,It was dark so i only saw two lights. the one on the left was cnstantly blinking while the other was kept on. Both were green in color. +1999-05-11,37.6922222,-97.3372222,Wichita,KS,light,45,The sky was still blue. I noticed several commercial airliners in the sky. In front of one there was a star-like object. +1999-05-11,32.5091667,-92.1191667,Monroe,LA,light,15,I was in my driveway and I happened to look up and I saw a bright ball of light pass overhead , very low. It first made me think of a c +2001-05-11,34.1841667,-118.9097222,Newbury Park,CA,changing,1500,I observed 2 red flying objects moving across the sky, from right to left, then becoming one, for 20+min. +2001-05-11,29.7630556,-95.3630556,Houston,TX,light,1800,Low flying shape shifting light sphere spotted by commuters 3 days in a row +2001-05-11,41.4994444,-81.6955556,Cleveland,OH,cylinder,300,Long, silver cylindrical object without visible wingspan; First signted by observer "D" in southern sky approx elevation 45 degrees, mo +2001-05-11,39.4097222,-123.3544444,Willits (West Of),CA,light,120,A triangle formation of "satelites" moving apparently very high and fast. +2002-05-11,37.3394444,-121.8938889,San Jose,CA,circle,2,Green object in San Jose, CA +2002-05-11,34.1975,-119.1761111,Oxnard,CA,oval,1800,I was in the park one night. I go here every night with my friends. It was just like every other night but most people went in early, w +2002-05-11,48.7597222,-122.4869444,Bellingham,WA,triangle,15,V shaped object, 9-11 points (faintly glowing), no sound, fairly low to ground, fast moving. +2002-05-11,44.9194444,-123.3158333,Dallas,OR,light,60,Oregon UFO Review Case: "Satellite" changes directions, performing wild maneuvers. +2003-05-11,33.5225,-117.7066667,Laguna Niguel,CA,disk,1800,Shiny disclike craft floating above Laguna Niguel +2003-05-11,36.4011111,-93.7377778,Eureka Springs,AR,cylinder,300,2 discs and 1 cylinder seen on 5-11-03 over Eureka Springs, AR +2003-05-11,38.2541667,-85.7594444,Louisville,KY,other,120,it mopved slowly over my head and then rolled over several times and moved off in a different direction, it appeared to move pretty slo +2003-05-11,42.0722222,-87.7227778,Wilmette,IL,circle,600,As I was sitting in my back yard it started to thunder, than I looked up and there was a circle in the sky than it disapeared. +2003-05-12,41.3583333,-89.7372222,Sheffield (Uk/England),IL,circle,180,it was bonfire night the sky was light up with burning bonfires me and a friend with his girl friend and mine were sat on a wall at his +2004-05-11,40.3547222,-98.1383333,Deweese,NE,oval,5400,Five crafts fought in a arial battal. +2004-05-11,33.9830556,-118.0958333,Pico Rivera,CA,light,180,in mid-May 2004 at around 2:30am (PDT), i went outside to grab my book bag out of my car. when all of a sudden i saw two dark yellow/br +2004-05-11,33.9830556,-118.0958333,Pico Rivera,CA,circle,900,2 bright red circle shaped objects almost jellyfish like +2004-05-11,34.0522222,-118.2427778,Los Angeles,CA,oval,600,conical shaped object with a solid band of light on surface perimeter - viewed by atleast 8 hotel guests +2004-05-11,28.1138889,-81.6180556,Haines City,FL,unknown,37800,like a jellyfish with white christmas lites in it moving very slow +2004-05-11,28.0391667,-81.95,Lakeland,FL,formation,2700,East Lakeland sightings +2004-05-11,36.8655556,-87.4886111,Hopkinsville,KY,circle,600,Strange Red Object. +2004-05-11,27.6380556,-81.8241667,Bowling Green,FL,fireball,600,Five fire ball like lites disappearing and reappearing. Digital zoom camera showed C shaped formation and even a silver shape form +2004-05-11,39.7683333,-86.1580556,Indianapolis,IN,unknown,360,either one huge triangle with lights on each tip or 3 seperate crafts +2004-05-11,43.1008333,-75.2330556,Utica (~20 Miles North Of),NY,triangle,40,Triad of lights, maybe satelittes in formation, moving across the sky. +2004-05-11,28.0219444,-81.7330556,Winter Haven,FL,light,3600,Lights in the sky. +2004-05-11,28.2916667,-81.4077778,Kissimmee,FL,light,3600,i have no idea what this object can be at is this a UFO????? +2004-05-11,42.4405556,-76.4969444,Ithaca,NY,triangle,300,Triangle With USAF in Grey on Black on Underside of Fuselage +2005-05-11,35.4675,-97.5161111,Oklahoma City,OK,unknown,3,Bright orange light glowing through the kitchen window. +2005-05-11,33.4483333,-112.0733333,Phoenix,AZ,other,300,Bright White Lights Phoenix +2005-05-11,38.2325,-122.6355556,Petaluma,CA,flash,1,2 Flashes of light in the Petaluma Country +2005-05-11,39.0997222,-94.5783333,Kansas City,MO,unknown,1200,Whole bunch of lights flying in the air. +2005-05-11,43.6,-72.1708333,Montcalm,NH,oval,60,New Hampshire +2005-05-11,42.1513889,-71.65,Northbridge,MA,sphere,60,2 Darting UFOs, stationary at non-fixed intervals. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2005-05-11,37.9747222,-122.5605556,San Anselmo,CA,unknown,60,Bright as a distant star but moving across the whole sky on a "path." +2005-05-11,39.7458333,-75.5469444,Wilmington,DE,unknown,1800,Flashing red, green and white light. ((NUFORC Note: Sighting of Sirius?? PD)) +2005-05-11,40.7988889,-76.8625,Selinsgrove,PA,fireball,20,2-3 craft streak across the sky +2006-05-11,46.3525,-124.0530556,Long Beach,WA,sphere,45,Fast-moving glowing, gyrating shpere. +2006-05-11,30.2669444,-97.7427778,Austin,TX,cigar,60,White cigar shaped object hangs over Austin Tx then disapears in a flash of white light +2006-05-11,27.13,-80.8938889,Buckhead Ridge,FL,disk,480,We witnssed something enter the earths atmosphere desend and decelerate from a high rate of speed. +2006-05-11,38.6780556,-121.175,Folsom,CA,disk,300,bright orange object moving across horizon. ((NUFORC Note: Possible contrail?? PD)) +2006-05-11,32.4205556,-104.2283333,Carlsbad,NM,light,60,Strange light moving by moon. ((NUFORC Note: International Space Station seen over Carlsbad at 20:22 hrs. on this date. PD)) +2006-05-11,32.4205556,-104.2283333,Carlsbad,NM,light,60,Strange light moving by moon. ((NUFORC Note: Space Station flew over Carlsbad, NM, at 2022-2026 hrs. on this date. PD)) +2006-05-11,30.3494444,-97.37,Elgin,TX,circle,900,very bright object over Elgin Texas +2007-05-11,47.6063889,-122.3308333,Seattle,WA,sphere,2100,Spinning spherical light which dissappeared and reappeared several times, moving W to NW. ((NUFORC Note: Venus?? PD)) +2007-05-11,39.4666667,-87.4138889,Terre Haute,IN,circle,180,The craft was spotted on Highway 40 near Rose-Hulman Institute of Technology, a wetlands, and close to an airport with an air national +2007-05-11,35.1494444,-90.0488889,Memphis,TN,disk,120,Green disk +2007-05-11,37.2705556,-76.7077778,Williamsburg,VA,cylinder,300,Large gray cylinder seen over James River near Williamsburg, Virginia. ((1st report from witness)) +2007-05-11,34.4208333,-119.6972222,Santa Barbara,CA,other,180,Slowly moving crescent shaped object seen for 3+ minutes then disappearing. ((NUFORC Note: Student report. PD)) +2007-05-11,46.1852778,-123.5847222,Knappa,OR,unknown,2700,Very Bright Light moving in bouncing like movements in Knappa,Oregon +2008-05-11,28.0219444,-81.7330556,Winter Haven,FL,light,2,Light blue ball of light in Winter Haven +2008-05-11,42.2694444,-71.6166667,Westborough,MA,light,3600,Bright, white "double star" looking object with random red and green flashes underneath hovering in the southern sky. +2008-05-11,32.2216667,-110.9258333,Tucson,AZ,light,3600,A fast traveling object that covered great (irregular) distances while blinking multiple colors extremely fast. +2008-05-11,32.0952778,-96.4686111,Corsicana,TX,light,5,Green and White lights spotted near Corsicana, Texas fall from the sky north of 287 East of I-45. +2008-05-11,36.3125,-95.6158333,Claremore,OK,fireball,10,Large Fireball appears from nowhere in Rogers County Oklahoma. ((NUFORC Note: Possible meteor? Any other witnesses? PD)) +2008-05-11,32.7152778,-117.1563889,San Diego,CA,flash,2,Bright flash that appeared to be lightning. After looking for next lightning flash, a bigger flash hit me with a circular shape that w +2008-05-11,36.1538889,-95.9925,Tulsa,OK,fireball,2,Mother's Day Night Fireball! +2009-05-11,40.1577778,-83.0752778,Powell,OH,oval,300,4 moving oval lights in the sky that became one and disappeared +2009-05-11,38.7891667,-90.3225,Florissant,MO,formation,120,one light turned into 3 different lights and sped off. +2009-05-11,38.7891667,-90.3225,Florissant,MO,other,10,UFO descends from clouds and chases passenger jet over Saint Louis, MO. +2009-05-11,38.5816667,-121.4933333,Sacramento,CA,cylinder,300,Cylinder shape over Sacramento +2009-05-11,28.9002778,-81.2638889,Deltona,FL,light,120,Bright White light with large flash as it moved overhead. +2009-05-11,41.4766667,-74.0241667,New Windsor,NY,chevron,300,UFO Spotted In New Windsor, NY 2 beams of light into one, low rumble moving at a slow pace chevron shaped. +2010-05-11,33.6116667,-111.7166667,Fountain Hills,AZ,triangle,120,White lights flashing in my window +2010-05-11,40.4841667,-88.9936111,Bloomington,IL,circle,3600,My cousin and I have been going up on the roof of my 3-story building every clear night for the past week. ((NUFORC Note: Venus? PD)) +2010-05-11,33.3061111,-111.8405556,Chandler,AZ,formation,1800,Huge amber lights, intermittant, zooming and stationary, South of Chandler, AZ - 2200 & 2203 hours; 11MAY2010. +2010-05-11,43.6136111,-116.2025,Boise,ID,light,120,sporadically fast moving bright light too low to be a satellite and to high to be a plane fades into the stars after a minute +2011-05-11,40.1786111,-122.2347222,Red Bluff,CA,sphere,15,Two Orange Orbs/UFO flying by Red Bluff, CA. +2011-05-11,33.9227778,-116.5422222,North Palm Springs,CA,fireball,5,Fireball traveling from Palm Springs, Ca. towards Joshua Tree National Monument at 4AM on May 11, 2011. +2011-05-11,40.6855556,-76.1958333,Pottsville,PA,unknown,180,fast moving object stopped 6 cars after flying overhead +2011-05-11,36.925,-84.5208333,Alpine,KY,sphere,1200,Hovering, glowing spheres +2011-05-11,44.4997222,-96.2311111,Wilno,MN,other,420,5 unkown crafts over Wilno, MN +2011-05-11,41.2505556,-87.8313889,Manteno,IL,cone,600,Bright red Orbs, hovered and disepeared during storm +2011-05-11,34.0005556,-81.035,Columbia,SC,light,600,Yesterday, 11 May 2011, I noticed a white circle in the sky above my neighbor’s trees at the same time I heard a plan engine. Within +2011-05-11,47.4811111,-118.2533333,Harrington,WA,unknown,600,UFO over Harrington, WA. +2011-05-11,41.2505556,-87.8313889,Manteno,IL,circle,600,Dancing Lights in the NE sky, 3 bobbed up while 3 bobbed down. stayed in complete line. after 10minutes i could not see them anymore +2011-05-11,33.1191667,-117.0855556,Escondido,CA,light,2100,blue light +2012-05-11,34.6180556,-79.0088889,Lumberton,NC,triangle,180,Strange triangular shaped craft in the sky. +2012-05-11,37.0583333,-120.8488889,Los Banos,CA,light,900,Bright star like object, no sound, same object that has been appearing for the last month off and on. +2012-05-11,37.0583333,-120.8488889,Los Banos,CA,circle,600,Object appeared sw below and to the left of the moon. Object appeared first very bright then slowly fade to a dull shine . The object s +2012-05-11,38.12,-83.6147222,Salt Lick,KY,cigar,1800,Strange objects appearing and disappearing +2012-05-11,40.2141667,-77.0088889,Mechanicsburg,PA,sphere,1800,4 objects bright silver in apperance passed overhead in late afternoon +2012-05-11,44.8897222,-73.4363889,Chazy,NY,egg,30,Small egg shaped object with blinking white light rose into the sky +2012-05-11,35.9605556,-83.9208333,Knoxville,TN,formation,300,Orange lights in triangular formation. +2012-05-11,37.3394444,-121.8938889,San Jose,CA,changing,420,Two oblong flying objects changing shapes, flying from West to East over Santa Cruz mountains. Spotted them with bare eyes, then follow +2012-05-11,41.4994444,-81.6955556,Cleveland,OH,oval,120,At about 8:35 this evening i was standin outside and was lookin at the sky watching the jets fly by. there were 3 at the time. i notice +2012-05-11,46.3580556,-94.2005556,Brainerd,MN,fireball,7,blue fire ball +2012-05-11,35.9636111,-77.3083333,Oak City,NC,sphere,900,Two red spheres seen moving fast, low and silently then disappearing in to nothing. Martin County, NC. +2012-05-11,40.5891667,-80.2252778,Ambridge,PA,light,120,Four Bright yellow lights in night sky following each other then vanished upwards and disappeared. +2012-05-11,35.9605556,-83.9208333,Knoxville,TN,unknown,10,Cresent formation of 11 lights seen over I75 outside of Knoxville Th on May 11񫺜 at 22hundred hr +2012-05-11,35.9605556,-83.9208333,Knoxville,TN,unknown,15,Mayᄻ, 12 A cluster of lights were observed in the south sky over I75 at 22hundred hour traveling north +2012-05-11,35.5291667,-113.4247222,Peach Springs,AZ,unknown,345600,Lights observed on ground with smaller red light observed leaving and returning to larger lights. +2012-05-11,42.7119444,-73.2041667,Williamstown,MA,unknown,1200,Red lights from Albany area travelled 5-7 degrees west to northwest +2013-05-11,40.485,-106.8311111,Steamboat Springs,CO,fireball,3000,Orange orbs in northwestern Colorado/Steamboat Springs sky. +2013-05-11,34.0522222,-118.2427778,Los Angeles,CA,oval,600,2 small white flashing orbs following each other. +2013-05-11,40.2211111,-112.7436111,Dugway,UT,other,1800,Seen two huge white space shuttle looking objects in the sky just hovering and slowly moving! +2013-05-11,39.5744444,-106.0969444,Frisco,CO,other,60,Dark, aerodynamic shaped object near Frisco, CO. +2013-05-11,44.0783333,-116.9327778,Payette,ID,unknown,1200,Unidentified craft seen in sky above Payette, Idaho. +2013-05-11,39.9205556,-104.8652778,Henderson,CO,circle,80,Myriad of UFO’s captured; all seem to have the same form, except for three triangular shaped craft, orbs otherwise. +2013-05-11,33.3061111,-111.8405556,Chandler,AZ,light,600,Orange flame like balls floating across the sky, and some "taking off." +2013-05-11,25.7738889,-80.1938889,Miami,FL,sphere,1800,6 Dark Spheres hovering sky. +2013-05-11,43.1191667,-124.4072222,Bandon,OR,sphere,300,Two sets of three fire orange orbs were seen traveling northeast rising and disappearing in the clouds. +2013-05-11,41.4569444,-72.8236111,Wallingford,CT,light,60,Red orb of light moving across they sky on Barnes Rd. Wallingford. +2013-05-11,28.5380556,-81.3794444,Orlando,FL,light,240,05/11/13, 14 to 16 objects appeared, Orlando, Florida, 21:05 duration approx 4 minutes, redish color. +2013-05-11,38.7633333,-121.1627778,Granite Bay,CA,fireball,300,Four fireball orbs hover over Placer/Sacramento County Line near Folsom Lake. +2013-05-11,43.1191667,-124.4072222,Bandon,OR,sphere,720,Glowing orbs over the pacific in Bandon, Oregon. +2013-05-11,33.9547222,-118.2111111,South Gate,CA,fireball,600,I noticed three fireball objects make a triangular shape for about ten minutes. +2013-05-11,40.65,-81.4522222,Bolivar,OH,light,45,7 red glowing forms travelling north in formation then disappearing. +2013-05-11,41.2888889,-91.5522222,Ainsworth,IA,triangle,120,2 Triangle shaped crafts with red lights over Ainsworth, Iowa. +2013-05-11,35.198055600000004,-111.6505556,Flagstaff,AZ,light,1800,On Saturday May 11, 2013, I was stargazing in Flagstaff. What I thought was a star started to move. +2013-05-11,33.4483333,-112.0733333,Phoenix,AZ,formation,120,Amber Flickering Lights in Grid Formations Slowly Moving South. +2013-05-11,33.6694444,-117.8222222,Irvine,CA,oval,900,UFO sighting, 2 objects, May 11, 2013 approximately 10:30pm, Irvine, CA +2013-05-11,39.7391667,-104.9841667,Denver,CO,circle,180,Silent and Fast-Moving Orange Orb Over Denver +2013-05-11,41.4958333,-87.8486111,Frankfort,IL,triangle,120,Three red/orange objects in tight triangular formation flying low and slow north to south. +2013-05-11,40.7,-73.9061111,Ridgewood (Queens),NY,circle,180,Fiery red orange object. +1949-05-01,38.075,-81.1097222,Oak Ridge (Drive),WV,other,40,log shape whooshing object observed near charleston w.v. +1955-05-01,42.155,-71.0091667,Holbrook,MA,egg,60,I turned around and over the trees was a large yellow object shaped like a football without the tips on the ends. +1956-05-01,40.7988889,-81.3786111,Canton,OH,cigar,120,At first the silver disc was stationary. As it moved across the sky, it moved so rapidly, it could not have been man made. +1957-05-01,40.7988889,-81.3786111,Canton,OH,cigar,180,Cigar shaped object is motionless for more than a minute, then moves west at incomprhensible speed, then out of sight. +1959-05-01,39.9611111,-82.9988889,Columbus,OH,light,180,Red-orange lights over seen motionless over Lockborne AFB-one vanished and one sped out of sight. +1960-05-01,32.2216667,-110.9258333,Tucson,AZ,light,300,Lights only, no sound, moving across the night sky, then making a series of perfect right angle turns, like plowing a field. +1961-05-01,47.3075,-122.2272222,Auburn,WA,cigar,300,Grandmother saw a cigar shaped craft which she said was as long as the valley is wide. +1964-05-01,38.6786111,-121.2247222,Orangevale,CA,light,300,Chased by a single light - Sacramento, CA 1964 +1965-05-01,42.2697222,-104.7411111,Guernsey,WY,sphere,60,Round, silver object hovering overhead, three witnesses +1965-05-01,39.9625,-76.7280556,York County (Rural Area),PA,oval,600,Day light sighting of burniched aluminum sauser +1966-05-01,47.3811111,-122.2336111,Kent,WA,sphere,1200,Boeing testing a flying saucer +1966-05-01,41.7075,-86.895,Michigan City,IN,rectangle,1200,Rectangular ufo, extremely large, dark red, metal shapes visible, no noise, seen on a clear sunny day. +1967-05-01,36.3955556,-97.8780556,Enid,OK,disk,120,Proof in MY MIND!!! +1967-05-01,35.7563889,-83.9705556,Maryville,TN,cigar,1800,Star dancing UFO +1968-05-01,41.5894444,-94.1958333,Redfield,IA,cone,30,It was a nice day in may, it stayed directly above the railroad track. I just stood there watching the whole thing. +1969-05-01,41.0997222,-80.6497222,Youngstown,OH,disk,1800,woke one morning and for no good reason went to back door and witness a saucer above trees and below on ground a small saucer a unknow +1969-05-01,32.7152778,-117.1563889,San Diego (U. S. Naval Base),CA,oval,900,were on lunch break from navy school. saw a small white cloud and then a object caom out of it. then another came out. then flew straig +1969-05-01,39.0397222,-77.0555556,Wheaton,MD,disk,30,large saucer-shaped object sighted in Wheaton, MD in late 1960's +1969-05-01,32.7547222,-81.2422222,Estill,SC,cigar,2700,shining object frightens SC family +1970-05-01,40.7141667,-74.0063889,New York City (Bronx),NY,other,300,Bronx, NY : It was a solid silver -colored pyramid, spinning 100 feet above Public School 54's yard +1970-05-01,40.7141667,-74.0063889,New York City (P. S. 54),NY,other,180,I and scores of others witness a silver pyramid spinning in place abourt 50 feet above the school yard. +1970-05-01,29.7630556,-95.3630556,Houston,TX,disk,600,Saucer flew over house in Houston +1970-05-01,36.0102778,-84.2697222,Oak Ridge,TN,disk,300,I was standing in front of my house with my friends when the glint of something mettallic caught my eye. I looked up and saw what I ca +1970-05-01,41.805,-87.8691667,La Grange,IL,circle,30,Saucer sighting +1971-05-01,37.8016667,-80.4458333,Lewisburg,WV,triangle,900,I observed a triangular object hovering without sound for approximately 15 minutes during the night. +1971-05-01,34.7569444,-87.9727778,Cherokee,AL,light,1200,i was 13 when this event (i am 43 now ). we were returning home from visting friends when i was looking out at the sky. i saw a bright +1972-05-01,41.5066667,-90.515,Moline,IL,sphere,900,Craft was spherical with windows turning, going up and down not more than 25 feet of the ground. +1972-05-01,39.5166667,-75.5769444,Port Penn,DE,unknown,300,silver blue steaking object zips into center of starlight sky +1973-05-01,39.1433333,-77.2016667,Gaithersburg,MD,disk,240,Disk-shaped object with sequentially-flashing green lights around the perimeter -- 5/73 -- flying low. +1973-05-01,33.1811111,-102.2738889,Brownfield,TX,light,5400,Silent ,bright hovering light, seemed to be teasing us, for miles of desolate highway. +1973-05-01,39.0838889,-77.1530556,Rockville,MD,other,120,MY WIFE AND I WERE TO PICK UP MY MOTHER AT WORK IT WAS ON MARYLAND AVE.THAT WE SAW THE FIRST ONE IT WAS REALY BIG LIKE AN AIR PLANE I 7 +1973-05-01,29.3836111,-94.9025,Texas City,TX,disk,73800,Bright Burning Light Half Oval Object and 2 1/2 hours of lost time Sighting in Texas City, Texas May 1973 500 Lights On Object0: Yes +1974-05-01,36.7222222,-86.5772222,Franklin,KY,oval,300,Round Disk +1975-05-01,38.8047222,-77.0472222,Alexandria,VA,fireball,2,Pretty sure this was nothing other than a Meteor but it hit probaly a few miles from my house or thats the way it looked at least ..was +1975-05-01,39.5297222,-119.8127778,Reno,NV,disk,120,A disk shape hovering over my apartment building in broad daylight in a busy city. +1976-05-01,39.9175,-77.7980556,St. Thomas,PA,diamond,120,2 craft seen for a couple minutes. +1976-05-01,41.7,-71.6833333,Coventry,RI,formation,180,red orbs 'dancing' around a central orb +1976-05-01,39.7047222,-105.0808333,Lakewood,CO,triangle,420,lighte object over lakewood Colorado. event lasted almost 10 min. +1976-05-01,25.7738889,-80.1938889,Miami,FL,sphere,2400,Orange sphere with alternating sound, 30 feet in diameter +1977-05-01,34.8661111,-92.11,Jacksonville,AR,triangle,300,Luminious at a distance, very fire like ( massive blaze, orangish-red glow, turning amber up close. Very quiet. Triangular shape, +1977-05-01,32.855,-90.4055556,Yazoo City,MS,oval,3600,Two oval crafts with amber colored lights seen in1977. +1977-05-01,42.0333333,-87.8833333,Des Plaines,IL,oval,3600,Grandma's UFO +1977-05-01,42.1102778,-88.0341667,Palatine,IL,oval,3600,Oval shaped object flies over Palatine, while it hoovers; over a private school called: Little City. +1977-05-01,43.525,-84.1227778,Freeland,MI,other,240,stelth looking object. No sound & it hovered just 100-150 feet above us. Lights in a sequence on bottom. +1977-05-01,39.7391667,-104.9841667,Denver,CO,light,1800,two lazer like lights, one 6-12 inches off the ground, one dollar sized on the ground. +1977-05-02,41.1669444,-73.2052778,Bridgeport,CT,disk,1800,The craft was HUGE! Its diameter was big enough to fit a couple of good sized houses under it. Had windows, all the way around the to +1978-05-01,40.2666667,-74.9836111,Wrightstown,PA,light,900,I was contacted years ago by NICAP about a news story that was written about my experience in Bucks County Pennsylvania in either 1978 +1978-05-01,34.2438889,-116.9105556,Big Bear Lake,CA,disk,300,Disk / cigar object hovering east of Big Bear Lake, CA +1979-05-01,29.6513889,-82.325,Gainesville,FL,fireball,600,Glowing light moves slowly, hovers then shoots straight up into the sky and vanishes +1980-05-01,38.0280556,-121.8836111,Pittsburg,CA,oval,120,Saw bright white light coming from UFO, that left our atmosphere possibly, in Pittsburg, CA. +1980-05-01,47.6063889,-122.3308333,Seattle,WA,disk,300,It was very shiny silver and 2 Army helicopters followed it. +1980-05-01,40.7608333,-111.8902778,Salt Lake City,UT,cylinder,3600,Something in the Sky over Sugarhouse Park, Salt Lake City - Utah +1981-05-01,40.015,-105.27,Boulder,CO,fireball,3,While walking south a large comet like object swept out of the sky and turned horizonel at about a thousand feet from the ground and he +1981-05-01,32.7152778,-117.1563889,San Diego,CA,triangle,3600,I saw 5 UFO's this night, thanks to my girlfriend at the time who was connected to them. This was 1981. She took me out to watch them. +1982-05-01,40.4991667,-74.3994444,Piscataway,NJ,disk,900,In May 1982, I had a close up day light sightinh of a huge classic saucer shaped UFO. Neighbors also saw it. I reported it to the polic +1983-05-01,39.13,-94.5619444,North Kansas City,MO,other,120,Something Above Us that Day +1983-05-01,31.5786111,-91.2991667,Washington County (Rural),MS,diamond,7200,Diamond shaped craft sighting followed by missing time 500 Lights On Object0: Yes +1983-05-01,37.3769444,-77.5061111,Chesterfield,VA,cylinder,300,The date of this sighting is unknown, so I did best guess. This is among many many sightings I've had as a kid. This is the most memora +1984-05-01,41.525,-88.0816667,Joliet,IL,circle,180,Driving with Mom and saw a grey disk hovering over trees on the corner of our street +1984-05-01,34.4555556,-92.7294444,Glen Rose (Malvern),AR,triangle,1200,This happened some years ago: I had taken my dog outside, it was dark, pm. I noticed what I thought was a star, the longer I looked, I +1984-05-01,44.7677778,-93.2775,Burnsville,MN,rectangle,300,Enormous Rectangle object with rows of red and white lights +1985-05-01,35.3236111,-80.6561111,Harrisburg,NC,light,12,Ultraviolent,High velocity,silent light emitting no vapor trail or atmospheric turbulence related vapor. +1985-05-01,43.0388889,-87.9063889,Milwaukee,WI,light,1200,This was many years ago but this is what I can remember. I walked up to an open field it was a nice clear day. +1985-05-01,36.9741667,-122.0297222,Santa Cruz,CA,other,15,This took place at the campus of UC at Santa Cruz ((NUFORC Note: Possible sighting of YO-3A?? PD)) +1985-05-01,25.8897222,-80.1869444,North Miami,FL,circle,45,3 Large circular objects over North Miami +1985-05-01,40.925,-98.3416667,Grand Island,NE,sphere,30,I was a hovering sphere over the corn field near my house. +1985-05-01,32.8686111,-85.1905556,Lanett,AL,light,10,It came, it saw , it left but where did it go or come from? +1986-05-01,40.1044444,-74.9516667,Bensalem,PA,formation,7200,3 "stars" over bensalem spun away +1986-05-01,37.81,-85.9813889,Vine Grove,KY,oval,5400,My mother brother and friend were in the back yard looking around at the sky, why, at that point I had no Idea they told me they (broth +1987-05-01,44.5469444,-69.6216667,Winslow,ME,unknown,900,This sighting happened beck in the 80'S in winslow maine. I was about 7 or 8 and my brother was about 10 or 11. one night i snuck into +1988-05-01,41.4994444,-81.6955556,Cleveland,OH,circle,180,THREE ROUND SILVER CIRCLES, THEY JUST HUNG IN THE AIR, THEY STAYED STILL FOR A COUPLE OF MIN THEN DISAPPEARED. THE THREE SILVER CIRCLE +1988-05-01,29.7630556,-95.3630556,Houston,TX,unknown,1,We saw a lsilent ight in the sky that disappeard as soon as we noticed. +1988-05-01,42.7616667,-82.9013889,Ray Center,MI,disk,180,I would be the most famous person in the world if I had only had a camera! +1989-05-01,42.0661111,-91.7952778,Palo,IA,light,60,A bright light floated slowly ( and silently) over the barn. +1990-05-01,35.1894444,-114.0522222,Kingman,AZ,flash,300,Comet in Kingman? +1990-05-01,41.0036111,-80.3472222,New Castle,PA,light,900,Basball size ball of light moves 6 inches over car and up windshield. +1991-05-01,40.7141667,-74.0063889,New York City (Brooklyn),NY,circle,300,In the summer of 1991 around the months of May to September, the New York Post had a small paragragh printed, that anyone who thought t +1991-05-01,33.1191667,-117.0855556,Escondido,CA,cigar,2,Saw a blue shaped oblong (cigar shaped) object which was stationary at first and then acclerated at an incredible speed and disappeare +1991-05-01,33.7738889,-117.9405556,Garden Grove,CA,sphere,2700,Lazer like fire from staionary objects in sky! +1991-05-01,40.6805556,-73.4747222,Massapequa,NY,other,30,A large bright hexigon shape over Massapequa NY +1991-05-01,33.08,-83.2322222,Milledgeville,GA,disk,60,My sister and I witnessed a disk shaped UFO with many colored lights hovering over the golf course we lived across from. +1992-05-01,48.22,-122.685,Coupeville,WA,sphere,15,I was sitting on a bed in a house which had windows all along the backside of the house facing north. These windows had a view of an in +1993-05-01,31.1430556,-90.4586111,Magnolia,MS,cigar,300,Oval shaped object with flashing lights had no sound & it only was there few minutes & left as a flash thru the sky. +1993-05-01,47.4236111,-120.3091667,Wenatchee,WA,triangle,6,Amber objects in formation then breaking formation for several quick moves then back to formation. +1994-05-01,38.7144444,-84.8227778,Glencoe,KY,sphere,1800,Sphere hovering over pond. +1994-05-01,46.0980556,-88.3338889,Crystal Falls,MI,triangle,3600,Multiple encounters over approximately 50 mile radius. +1994-05-01,33.1444444,-116.1333333,Ocotillo Wells (Near),CA,fireball,14400,Large stationary fiery ball +1994-05-01,47.5002778,-111.3,Great Falls,MT,sphere,300,Ghost like bright sphere wobleing and hovering and folwoing me +1995-05-01,42.4005556,-76.0211111,Killawog,NY,light,300,I saw three balls of light. Two yellow and one red on one occation. One yellow ball exactly one week later@around the same time of day +1995-05-01,43.1836111,-89.2136111,Sun Prairie,WI,cross,120,Apparent cross shaped object seen in sky near Madison, Wisconsin. +1995-05-01,42.0833333,-71.0188889,Brockton,MA,triangle,120,came out of nowhere, disappeared into the sky +1995-05-01,39.9402778,-82.0133333,Zanesville,OH,unknown,120,loud sound coming from water +1996-05-01,43.1547222,-77.6158333,Rochester,NY,triangle,600,I saw three triangle shaped craft fly over my neighborhood. +1996-05-01,43.5863889,-119.0530556,Burns (100 Miles South Of, No City),OR,triangle,900,Bright lights at night in the desert that hovered over the road, then sped away. +1996-05-01,40.8611111,-79.8955556,Butler,PA,disk,180,Huge black object with giant lights hovers over Pittsburgh. +1996-05-01,32.2686111,-112.7380556,Why,AZ,light,1800,Approx. 10-15 clusters of boomerang shaped lights +1996-05-01,44.5263889,-109.0558333,Cody,WY,other,60,strange lights around Cody area +1996-05-01,32.0508333,-84.7991667,Lumpkin,GA,disk,240,Saucer object observed close enough to throw stones at in 1996. +1997-05-01,38.6411111,-83.7444444,Maysville,KY,disk,20,Golf tournament. "Scramble" Ball hit off tee. Looked up observed object.Other wittnesses said,do you see that.YES!Object disapeared. +1997-05-01,42.0083333,-91.6438889,Cedar Rapids,IA,triangle,900,Cedar Rapids Iowa blue lights hovering in the shape of a "V" with no sound and two witnesses +1997-05-01,40.7933333,-77.8602778,State College,PA,flash,20,Bright flash, long and slow disipation of a thick white trail +1997-05-01,27.7705556,-82.6794444,St. Petersburg,FL,triangle,300,I was hypnotized upon a star and a triangle shaped craft moved before my eyes about 50 FT away. +1997-05-01,43.0480556,-76.1477778,Syracuse,NY,unknown,7200,lights over central NY +1998-05-01,36.7647222,-88.2952778,Hardin,KY,triangle,30,We saw a triangle being followed by a helicopter! +1998-05-01,32.7152778,-117.1563889,San Diego,CA,light,600,Unknown source of very intence light, with intence feelings of malevolence directed at victim. +1998-05-01,31.9633333,-83.7825,Cordele,GA,diamond,60,riding down the road saw a diamond shaped metel looking object, so we followed it, and this is what happened +1998-05-01,40.7141667,-74.0063889,New York City (Manhattan),NY,triangle,600,Strangely moving craft, zigzagging in the distance that turned out to be a huge triangle with lots of lights when it flew overhead.. +1998-05-01,41.4994444,-81.6955556,Cleveland,OH,light,15,FAST MOVING SINGLE LIGHT IN NIGHT SKY HEADING SOUTH SUDDENLY STOPS PAUSES AND SHOOTS AWAY IN NORTH EAST HEADING. I CALLED OUT A FRIEND +1998-05-01,31.3380556,-94.7288889,Lufkin,TX,light,300,This object exucuted manuvers that no man made object could at speeds exceeding any winged craft. +1998-05-01,46.2811111,-87.4408333,Gwinn,MI,triangle,60,Triangle UFO Sighting Near Gwinn, MI. +1999-05-01,34.1083333,-117.2888889,San Bernardino,CA,triangle,600,1999 Camping with friend in backyard triangular craft 20ft away...perfectly silent completely still. +1999-05-01,47.9130556,-122.0969444,Snohomish,WA,other,45,I DIDN'T SEE THE CRAFT BUT THIS IS WHAT HAPPENED. MY WIFE AND I WERE IN BED WHEN WE HEARD AT FIRST A SOUND LIKE A SEMI WAS DRIVING DOWN +1999-05-01,38.2541667,-85.7594444,Louisville,KY,circle,12,I SHOT A 12 SECOND VIDEO OF UFO ABOVE CHURCHILL DOWNS ON DERBY DAY MORN. +1999-05-01,47.6063889,-122.3308333,Seattle,WA,oval,4,Over downtown, driving north on 1st ave, the object moved over the 2000 block buildings. +1999-05-01,39.4666667,-87.4138889,Terre Haute,IN,sphere,600,This object was watched and photographed by my son one day at high school band practice. It was a silver color and was noticed as it mo +1999-05-01,40.9644444,-76.8847222,Lewisburg,PA,triangle,4,Black, triangular craft outlined in red traveling soundlessly at 35mph over the Bucknell University Campus. +1999-05-01,34.1861111,-103.3338889,Portales,NM,formation,10,Briefly observed an asymmetrical v-shaped formation of 7 solid, silent, unblinking lights. +1999-05-01,35.4366667,-94.3480556,Van Buren,AR,fireball,5,A substantial flash of light in the sky. It appeared to be as small as an aircraft beacon at first, but immediatly became larger, then +1999-05-01,28.4055556,-80.605,Cape Canaveral,FL,circle,60,ufo seen by the US Coast Guard Cutter Laurel +1999-05-01,38.8922222,-89.4130556,Greenville,IL,fireball,2,Green Fireball in lightning pattern observed. +1999-05-01,29.7630556,-95.3630556,Houston,TX,light,20,I WILL ONLY LEAVE MY EMAIL ADDRESS - THIS IS REAL! +1999-05-01,42.0013889,-85.2386111,Sherwood (North Of),MI,light,30,3 objects moving slowly, in perfect unicent. thay then speed up, and vanished, as a air plane was coming into air space +1999-05-01,26.0108333,-80.1497222,Hollywood (At The I-95 Overpass @ Hollywood Blvd.),FL,teardrop,20,AS i came to the interstate overpass I noticed a teardropped object that emitted light.It kind of hovered 100 feet above. It then took +2000-05-01,40.7141667,-74.0063889,New York City,NY,flash,3,flashing lights zig-zag +2000-05-01,33.9375,-117.2297222,Moreno Valley,CA,changing,900,We noticed what we thought was a airplane wasn't moving after about 10 minutes. +2000-05-01,41.8875,-88.3052778,Geneva,IL,sphere,60,Follow up +2000-05-01,30.3027778,-90.9719444,Prairieville,LA,egg,3,bright, glowing egg-shaped object came down extremely fast: disappeared at tree level. +2000-05-01,30.2419444,-93.2505556,Westlake,LA,light,60,Objects left Earth towards Moon +2000-05-01,41.85,-87.65,Chicago,IL,sphere,60,have observed two spheres flying in trail formation west to east nearly collided into each other took evasive cws, one veered north out +2000-05-01,34.7463889,-92.2894444,Little Rock,AR,triangle,60,I first noticed one object moving from NE to SE. The object was visible at about 45 degrees in the NE sky. It moved silently at a unifo +2000-05-01,43.6675,-102.8983333,Red Shirt (Near),SD,light,180,A flying object that flew parallel with me caused electronic effects and a truly weird experience +2001-05-01,34.09,-117.8894444,West Covina,CA,other,1,some sort of being, beings captured from a digital camera +2001-05-01,40.8686111,-73.0019444,Coram,NY,light,10,big ball of light that shot up in the sky when i seen it and became one of the stars +2001-05-01,33.4483333,-112.0733333,Phoenix,AZ,disk,180,Daytime sighting in Phx Az of round whte object goint East for three minuets by 2 witness. No wind no sound. +2001-05-01,40.5686111,-75.095,Milford,NJ,cylinder,20,sat down on deck behehind house. looking east i saw a military plane ( ABOUT 50ꯠ FT) heading south. i see them often. this time som +2001-05-01,36.0397222,-114.9811111,Henderson,NV,unknown,180,I have no doubt of what I saw. +2001-05-01,27.2436111,-80.83,Okeechobee,FL,light,1800,strange light in the sky, to high to be street light and to low to be aircraft +2001-05-01,35.1391667,-97.3944444,Noble,OK,rectangle,120,Large rectangular space ship moving silently across the sky. +2001-05-01,39.3602778,-104.5963889,Elizabeth,CO,sphere,1200,I was driving home from work at approx. 11:00 pm, I saw a round ball of bright light in the sky. At first I thought that it may have +2001-05-01,44.0822222,-69.0577778,Owls Head,ME,diamond,15,Must have been an alien satalite sent to scan our planet...doubtful it was a ship carrying actual aliens +2002-05-01,33.5386111,-112.1852778,Glendale,AZ,light,1800,Mid-morning 11:30, clear skies, I watched three lights with erratic movement for 30 minutes before disappearing. +2002-05-01,39.2183333,-77.9055556,Rippon,WV,other,10,Round gold object with white "wings" near Rippon, West Virginia. +2002-05-01,18.3822222,-65.8316667,Rio Grande (Puerto Rico),PR,diamond,10,We were driving in fron of el yunque rain forest in Puerto Rico when suddenly a ufo came out of the forest.It had a very shining light +2002-05-01,41.85,-87.65,Chicago,IL,oval,180,Craft Orbiting the Moon... +2002-05-01,45.0994444,-123.3936111,Sheridan,OR,circle,600,3 round white lighted objects,hovering then moving quickly across sky,then hovered then went quickly up into space. +2003-05-01,37.6922222,-97.3372222,Wichita,KS,triangle,120,My friend ((name deleted)) and I were at a graduation party at a friend's house in Valley Center (Just a little NE of Wichita). +2003-05-01,43.0388889,-87.9063889,Milwaukee,WI,formation,120,FIVE SMALL FLICKERS CAME AND FLICKERED FAST AND THEN CAME TOGETHER AND LEFT. +2003-05-01,40.5575,-74.285,Woodbridge,NJ,changing,300,Mass of Black DOTS MORPHS into distinct V-shaped cloud +2003-05-01,33.6638889,-114.2291667,Quartzsite,AZ,sphere,300,Grey basketball tracking me from the front! +2003-05-01,38.4783333,-82.6380556,Ashland,KY,changing,600,Mid-afternoon sighting over Ohio River +2003-05-01,41.7141667,-72.6530556,Wethersfield,CT,cylinder,120,Metalic Cylinder with Humanoid Occupants +2003-05-01,33.8302778,-116.5444444,Palm Springs,CA,circle,2,Bright white light growing larger as it moved towards me. It frightened me as it grew larger and then it disappeared in the mountains +2003-05-01,47.6063889,-122.3308333,Seattle (West Seattle),WA,other,900,Strange message on phone line and dog uneasy +2003-05-01,47.6063889,-122.3308333,Seattle (West Seattle),WA,triangle,10,Silent, triangular craft sighted over West Seattle +2003-05-01,48.7258333,-119.0125,Wauconda,WA,light,60,large light crosses sky getting smaller and smaller then gets big and shoots off at high speed +2003-05-01,32.7558333,-111.6702778,Arizona City,AZ,egg,60,On May 1, 2003 at approximately 2303 hours, in the northwest sky, I noticed what appeared to be a slow moving egg shaped star. It was m +2004-05-01,34.5969444,-83.7633333,Cleveland,GA,cross,120,Black rectangular shaped craft observed with night-vision equipment. No sound or lights! +2004-05-01,46.0038889,-112.5338889,Butte,MT,triangle,120,I was driving east from Continental Drive onto Farrell Street and I saw an aircraft I thought was a small plane. I thought, "what kind +2004-05-01,33.4936111,-112.9363889,Tonopah (South Of),AZ,light,3060,Didnt see anything until the imiages were uploaded into the computer +2004-05-01,28.5380556,-81.3794444,Orlando,FL,sphere,300,BUBBLE IN THE SKY +2004-05-01,47.5675,-122.6313889,Bremerton,WA,unknown,1,Good evening, I was trying to find somewhere to report an observation. We live in Bremerton Washington. At about 7:24 PM Pacific Standa +2004-05-01,48.0163889,-117.2755556,Elk,WA,triangle,600,Triangles and helicopters give chase +2004-05-01,40.7141667,-74.0063889,New York City (Brooklyn),NY,sphere,120,Orange sphere with metallic object circling around it. +2004-05-01,36.175,-115.1363889,Las Vegas,NV,light,60,Several floating lights joined in a strange V shape formation on the Las Vegas strip. +2004-05-01,41.9761111,-72.5922222,Enfield,CT,triangle,180,Large slow moving triangle over Enfield +2004-05-01,38.3269444,-122.7061111,Cotati,CA,light,30,climbing light observed +2004-05-01,46.5927778,-112.0352778,Helena,MT,triangle,240,appx. 50' triangular, lighted craft hovering @ 100', then moving away proportionately as I approached. +2005-05-01,33.94,-118.1316667,Downey,CA,formation,900,4 orange-reddish objects lights in the sky traveling in non-static formation @ equal speeds and change in appearance +2005-05-01,45.5236111,-122.675,Portland,OR,light,300,Three reddish lights seen over Pearl District of Portland, OR +2005-05-01,45.5236111,-122.675,Portland,OR,disk,300,Orange disk-like orbs over Downtown Portland. ((NUFORC Note: Student report. PD)) +2005-05-01,45.5236111,-122.675,Portland,OR,oval,420,Three amber/orange objects patrol Portland skyline +2005-05-01,42.3625,-71.3619444,Wayland,MA,light,120,Light or energy flying object no lareger than 10-12 inches entered bedroom on more than one occassion +2005-05-01,42.6805556,-83.1338889,Rochester,MI,triangle,20,A triangular craft, disguised as three stars, slowly glided for 20 secs untill it went into some cloud coverage. HUGE!! +2005-05-01,38.9430556,-84.5441667,Independence,KY,other,300,stationary disk-like object seen near I-75/Independence, KY +2005-05-01,38.6652778,-78.4597222,Luray,VA,cigar,180,Extremely Long Needle (over 2ꯠ ft) UFO observed 1 May traveling over 1500 MPH at over 70ꯠ ft +2005-05-01,33.3763889,-117.2502778,Fallbrook,CA,changing,30,Huge bright liigt +2005-05-01,34.5794444,-118.1155556,Palmdale,CA,sphere,300,dancing light above lancaster +2006-05-01,38.7430556,-94.0697222,Kingsville,MO,other,300,On May 1, 2006, about midnight, I saw an object with alternating rectangualar white lights, totally silent, gliding close overhead. +2006-05-01,32.3863889,-96.8480556,Waxahachie,TX,changing,1800,as i was driving on the service rd to i35 beside and past the owens corning plant i observed over to the right and above my vehicle (i +2006-05-01,36.175,-115.1363889,Las Vegas,NV,diamond,150,Sighting from Stratisphere observation deck +2006-05-01,33.8527778,-96.5616667,Cartwright,OK,light,1200,Lights over Lake Texhoma. +2006-05-01,33.3811111,-117.5722222,San Onofre,CA,light,3,Light caught on camera while camping at San Onofre. +2006-05-01,43.9780556,-75.6097222,Carthage,NY,sphere,30,Red and blue sphere shaped object in the trees flew away +2006-05-01,39.7458333,-75.5469444,Wilmington,DE,triangle,600,triangular shape with lights +2006-05-01,40.5580556,-90.035,Canton,IL,triangle,240,A large black triangle with 3 lights was seen outside of Canton, Illinois on 5-1-06. +2006-05-02,34.7355556,-77.9955556,Wallace,NC,formation,60,In 2006, myself and a co-worker were on our way home. When we turned on our road I noticed a formation of lights over a set of trees. I +2007-05-01,39.9322222,-85.8480556,Fortville,IN,light,7200,2 solid lights, very fast, jerky movements, appeared to be shooting white lights. ((NUFORC Note: Sighting of stars? PD)) +2007-05-01,33.5205556,-86.8025,Birmingham,AL,other,2,Two objects possibly one moving quickly across the sky. +2007-05-01,34.9072222,-106.6886111,Isleta,NM,triangle,60,At 1:30 am, observed large black triangular craft flying southbound over Isleta Reservation, NM. +2007-05-01,40.7141667,-74.0063889,New York City (Brooklyn),NY,circle,30,Strange light in Brooklyn +2007-05-01,37.8391667,-94.3544444,Nevada,MO,triangle,10,Triangular craft seen hovering above pasture in Vernon Co., Mo. while driving by it on Hiway 54 in a storm +2007-05-01,39.1619444,-84.4569444,Cincinnati,OH,disk,60,saw a saucer(s) being transported southbound on I-75, heading towards Cincinnati +2007-05-01,29.8944444,-81.3147222,St. Augustine,FL,diamond,60,to the west very bright diamond shape that moved very slowly multicolored! ((NUFORC Note: Sighting of Venus. PD)))) +2007-05-01,46.4822222,-93.9575,Crosby,MN,circle,180,UFO close up and possible ET encounter +2007-05-01,39.5186111,-104.7608333,Parker,CO,circle,60,Strange lights over eastern Colorado +2007-05-01,33.6888889,-78.8869444,Myrtle Beach,SC,light,1800,One reddish-orange bright light with others coming out of it over the ocean and four smaller ones underneath. +2007-05-01,44.0747222,-89.2877778,Wautoma,WI,light,5,A bright kelly green light in the southern horizon. +2007-05-01,42.5775,-88.105,Paddock Lake,WI,fireball,5,Green fireball in western Wisconsin sky +2007-05-01,39.1433333,-77.2016667,Gaithersburg,MD,triangle,900,I saw several flying lights heading from north to south. ((NUFORC Note: Report from student. PD)) +2007-05-01,36.3291667,-80.4333333,Pinnacle,NC,rectangle,300,Rectangular object in the direction of HighWay 52 south, no sound, not moving, 2 amber colored lights +2008-05-01,39.0997222,-94.5783333,Kansas City,MO,changing,73800,MISSOURI INVESTIGATORS GROUP Report: ..out of the white came a boomerang craft "straight forward" and "flipped" on its side … +2008-05-01,38.6402778,-92.1222222,Holts Summit,MO,disk,3600,Upside down saucer shrouded. +2008-05-01,28.0219444,-81.7330556,Winter Haven,FL,light,15,Strange blinking light moving in random spots in Winter Haven Florida. +2008-05-01,37.4097222,-79.9127778,Daleville,VA,light,600,Saw an orangish fireball moving in erratic patterns in the sky for approximately 10 minutes over Carvins Cove. +2009-05-01,42.4972222,-82.9372222,Roseville,MI,triangle,6,very high, very fast, very odd +2009-05-01,31.5377778,-89.795,Carson,MS,sphere,600,same as 4/3/09 Sumrall, Ms +2009-05-01,39.3436111,-90.2125,Greenfield,IL,triangle,1800,UFO's in Greenfield, IL +2009-05-01,40.2030556,-79.9263889,Monongahela,PA,disk,300,Floating saucer over Mononongahela Valley Country Club in Monongahela, Pa. +2009-05-01,35.0844444,-106.6505556,Albuquerque (Near),NM,light,180,Bright light heading for Earth near Albuquerque, NM +2009-05-01,39.8636111,-77.0561111,New Oxford,PA,circle,90,Circular craft over new oxford. +2010-05-01,37.5072222,-122.2594444,San Carlos,CA,triangle,40,I can't explain what i saw but it is the first time in my life i saw something that i couldn't make up a story about. +2010-05-01,44.0077778,-116.9155556,Fruitland,ID,triangle,300,Triangular shaped something hovering over a dairy farm. +2010-05-01,41.6977778,-72.7241667,Newington,CT,circle,600,Silver Dots Above Clear Newington, CT Sky +2010-05-01,34.1083333,-117.2888889,San Bernardino,CA,formation,120,4 flashing red lights forming a square lthen a line flashing o and off +2010-05-01,26.1416667,-81.795,Naples,FL,cigar,300,Sighting on Vanderbilt Beach, Naples, Florida. +2010-05-01,42.375,-71.0397222,East Boston,MA,disk,600,A large,saucer shaped object,that i did not recognize. +2010-05-01,33.0738889,-106.0180556,Tularosa,NM,unknown,1800,UFO shot down over Civilians? +2010-05-01,36.9741667,-122.0297222,Santa Cruz,CA,circle,120,six orange lights fly over Santa Cruz, CA +2010-05-01,47.3294444,-122.5788889,Gig Harbor,WA,light,480,Unusual stationary, elongated and bright light directly across Henderson Bay +2010-05-01,29.4436111,-96.9408333,Hallettsville,TX,triangle,30,It was like a large glass like structure with about 3 lights midways between each point . It made no sounds and floated by like a ballo +2010-05-01,35.0808333,-106.3875,Tijeras,NM,circle,300,UFO over Sandia Mountains +2010-05-01,37.5536111,-77.4605556,Richmond,VA,disk,300,I saw a big tilted dark gray saucer-like object moving slowly in the night sky. +2011-05-01,42.8713889,-112.4447222,Pocatello,ID,light,180,I saw several bright red lights in the WNW sky that didn't blink and faded in less than three minutes from the time I first spotted the +2011-05-01,30.3933333,-86.4958333,Destin (Near),FL,cigar,600,What i saw was not of any thing made by human hands as we know them. +2011-05-01,42.0333333,-88.0833333,Schaumburg,IL,sphere,15,Three small spheres come together to create the shape of a triangle +2011-05-01,37.3394444,-121.8938889,San Jose,CA,sphere,720,white/red orb (photos taken) +2011-05-01,38.9516667,-92.3338889,Columbia,MO,fireball,120,A ball of light looked like it was hovering very high and then took off to the South. +2011-05-01,40.9561111,-72.9683333,Sound Beach,NY,light,240,White Light changed to orange ball. +2011-05-01,36.7280556,-108.2180556,Farmington,NM,changing,2700,the crafts made form several small lights made a SOLID METALLIC DIAMOND AND hoveredand disappeared. +2012-05-01,47.8658333,-114.2780556,Dayton,MT,unknown,120,Saw two UFO's circle plane while watching northern lights. +2012-05-01,33.9202778,-80.3416667,Sumter,SC,disk,40,((HOAX??)) 2 UFO Sumter South Carolina, May 1st 2012 +2012-05-01,37.2936111,-88.9752778,Karnak,IL,sphere,2,UFO Photographed By Fisherman In Karnak, Illinois +2012-05-01,42.3333333,-88.2666667,Mchenry,IL,light,180,While I was sitting down next to my goat barn I noticed a star like object that was changing colors..The light was going through the li +2012-05-01,35.4105556,-80.8430556,Huntersville,NC,rectangle,120,bright red orange and yellow +2013-05-01,41.7447222,-77.0775,Covington,PA,sphere,7200,Multi colored orbs in Covington, Pa week of May 1st. +2013-05-01,39.0838889,-77.1530556,Rockville,MD,triangle,300,Green triangle, and flashing lights. +2013-05-01,36.1155556,-97.0580556,Stillwater,OK,light,15,Bright "star" dimmed then picked up speed, shot across the sky then altered direction and disappeared. +2013-05-01,37.905,-121.1463889,Collegeville,CA,unknown,180,Three Orange Lights at ground level, rising into night sky. +2013-05-01,39.2191667,-121.06,Grass Valley,CA,other,60,1 to 4 red blinking and bouncing red lights. +2013-05-01,40.7141667,-74.0063889,New York City (Manhattan),NY,flash,300,White light traveling at an impossible speed in a perfectly straight line. +2013-05-01,41.3080556,-72.9286111,New Haven,CT,other,20,((HOAX??)) +2013-05-01,33.9886111,-83.8980556,Dacula,GA,fireball,60,Witnessed orange brightly lit fireball or sphere traveling west to east about a half a mile north of hwy 316 in dacula ga. +2013-05-01,40.7008333,-73.7133333,Elmont,NY,triangle,1800,Hovering in the sky still as I'm writing been there about 35 mins now. Lights change pattern so triangle appears to get bigger. +2013-05-01,42.865,-71.4938889,Merrimack,NH,sphere,9000,Multiple strange moving crafts spotted in Merrimack NH. +2013-05-01,43.2708333,-89.7219444,Sauk City,WI,oval,300,Craft floated west to east slowly, then hovered above a neighboring farm for 3-4 minutes, then slowly proceeded towards northeast direc +2013-05-01,44.4905556,-73.1113889,Essex Junction,VT,oval,15,Yellow/Green oval seen over Essex Junction, VT. +2013-05-01,40.5638889,-88.8988889,Towanda,IL,fireball,240,Hurrying outside and looking straight into the sky we all see a large, circular, red/orange light slowly moving across the sky coming. +2013-05-01,41.6638889,-83.5552778,Toledo,OH,oval,120,NA +2014-05-01,38.2972222,-78.4402778,Stanardsville,VA,flash,1200,Very bright hovering white flashing light with at least 2 small red lights north of Charlottesville, Virginia. +2014-05-01,35.235,-75.6288889,Frisco,NC,light,300,Several balls of light in erratic flight pattern followed by second craft at great speed. +2014-05-01,40.8333333,-83.9766667,Beaverdam,OH,other,300,The shape was like a bottom of a saucer with lights or smaller craft underneath it.It just hover the whole time.it was in the early mor +2014-05-01,43.6136111,-116.2025,Boise,ID,other,300,Bell shaped dark object stationary - approx. 1000 ft above the ground. +2014-05-01,21.3069444,-157.8583333,Honolulu,HI,other,5,My First UFO Sighting? +2014-05-01,38.3497222,-81.6327778,Charleston,WV,formation,300,5 orange lights observed moving S to N before independently disappearing +2014-05-01,33.4222222,-111.8219444,Mesa,AZ,circle,120,Spinning disc shape with red,and blue lights. Changing direction rapidly and hovering for several seconds +2014-05-01,38.6272222,-90.1977778,St. Louis,MO,fireball,360,Bright orange spheres/fireballs passing over my house. +2014-05-01,37.4136111,-79.1425,Lynchburg,VA,triangle,60,I was getting off work at 8pm, still daylight out when I stopped at my first intersection, And to my 11 o'clock and about 400 meters an +2014-05-01,34.7302778,-86.5861111,Huntsville,AL,other,600,My husband and I had just returned from a memorial service for our pastor's father.we got home around 8:30 and my husband had taken our +2014-05-01,39.1366667,-77.715,Purcellville,VA,other,600,Saw a black thing in the sky that looked like a cloud and it slowly disappeared +2014-05-01,34.2005556,-86.1663889,Boaz,AL,other,600,Blinking lights in straight line as long as a football field. +2014-05-01,34.9247222,-81.0252778,Rock Hill,SC,formation,480,Seven to eight bright lights spotted overhead accompanied by a deep humming and intense vibrations. +2014-05-01,34.0522222,-118.2427778,Los Angeles,CA,light,2700,A star like object, flashing red and blue as well as glimmering, in a west-southwest direction in Los Angeles. +2014-05-01,34.4466667,-85.9041667,Fyffe,AL,unknown,300,Huge object close, major lights blinking in sequence, dogs crazy, never seen anything like it. +2014-05-01,34.9158333,-85.1091667,Ringgold,GA,other,300,Object slowing moving East to West, 7 white lights in a straight line, No Sound. +2014-05-01,34.5097222,-88.2091667,Belmont,MS,formation,480,4 flashing lights about 1/4 mile wide headed south then southwest over Belmont, Ms +2014-05-01,40.3144444,-89.1697222,Mclean,IL,light,600,White light spotted over old Route 66 outside McLean. +2014-05-01,34.9158333,-85.1091667,Ringgold,GA,other,180,Straight line of blinking lights moving west over north Georgia. +2014-05-01,44.9430556,-123.0338889,Salem,OR,other,120,Large Orange Oblong Light Travelling Slowing Across The Sky. +2014-05-01,41.3908333,-72.86,North Haven,CT,circle,2400,8 circular star like objects coasting throughout a 45 min period 6 in one direction 2 the opposite +2014-05-01,33.8533333,-91.0277778,Rosedale,MS,circle,300,4 lights greatly spaced apart, too big to be United States Aircraft, red and white lights(4) slowly moving across the sky to SW. +2014-05-01,33.0580556,-112.0469444,Maricopa,AZ,unknown,300,We first saw one very bright light in sky and as we were driving another one appeared stayed for two min and then one again and then +2014-05-01,41.2616667,-75.8972222,Kingston,PA,cigar,60,Saw lights in the sky as i was driving home from work was making irregular movements couldnt have been a plane. +2014-05-01,32.64,-117.0833333,Chula Vista,CA,sphere,5,Dim, bluish spherical object travelling SW over Pacific Coast. +2014-05-01,34.6947222,-84.4822222,Ellijay,GA,other,300,((HOAX??)) Object was seen moving west over gilmer county. A vertical line of flashing lights. +2014-05-01,33.1505556,-96.8233333,Frisco,TX,cigar,120,I heard a noise in the sky, I knew it was not a plane because it was still hovering over the sky. the notice was too smooth and rumble +2014-05-01,33.0144444,-97.0966667,Flower Mound,TX,changing,360,((HOAX??)) Loud pulsing sound and 5 strobe lights seen over Flower Mound, Texas. +2014-05-01,33.2147222,-97.1327778,Denton,TX,formation,600,Strobe of 5 lights hovering over Corinth area. +2014-05-01,34.0027778,-84.1447222,Duluth,GA,other,30,One strange object moving extremely slow with very brite white lights. It was the level of the trees and no sound.The lights were not f +1965-05-12,40.6802778,-73.4555556,Massapequa Park,NY,oval,5,Fast quiet objects moving in formation with unheard of speed and precision. +1968-05-12,41.4730556,-87.0611111,Valparaiso,IN,unknown,109800,1968, Grey Squares in Sky, I'll take you with me cuz you're my friend, 9 o'clock past bozo circus noon, scary man, doll burning +1968-05-12,41.4730556,-87.0611111,Valparaiso,IN,unknown,109800,68 Grey Squares in Sky, I'll take you with me cuz you're my friend, 9 o'clock past bozo circus noon, scary man, doll burning +1968-05-12,41.2586111,-95.9375,Omaha,NE,disk,1200,Disk-shaped UFO with dome under perfectly clear conditions at less than 100 feet altitude, motionless. +1976-05-12,34.9416667,-118.9291667,Grapevine,CA,egg,40,METALIC EGG SHAPE CRAFT SIZE OF A HOUSE FLEW PAST OUR CAR ABOUT 100 FT TO THE RIGHT 50 FT OFF THE GROUND. +1980-05-12,39.0086111,-94.4633333,Raytown,MO,disk,900,shiny disk shaped with a raised dome on top in the middle,rotateing light[white] moved around bottom. +1980-05-12,39.785,-85.7694444,Greenfield,IN,light,60,Bright Spherical light seen over Hancock County field, disappears +1982-05-12,41.8741667,-80.1319444,Edinboro,PA,unknown,1920,Two red probe crafts ascended into "mother ship". Mother ship ascended in altitude and release one of the probes and then lost visual. +1985-05-12,40.5186111,-78.395,Altoona,PA,disk,600,object that hovered above me in the night sky with multi colored lights going around it. +1986-05-12,28.3644444,-82.1961111,Dade City (Near),FL,triangle,240,While camping in the late 80's we had several encounters with a silent triangular object 300-400ft above our camp site +1989-05-12,33.9136111,-98.4930556,Wichita Falls,TX,oval,120,One sunny afternoon I saw a flat bottom thick gray disk slowly moving east observing this over a minute. +1989-05-12,37.1147222,-81.5197222,Tazewell,VA,oval,120,me and my friend seen this thing come out of no where and it stayed only in one spot for seconds it moved at speeds i have never seen z +1992-05-12,29.7630556,-95.3630556,Houston,TX,triangle,300,MY UNCLE AND I WERE MOVING THAT NIGHT. WE WERE ON OUR WAY BACK TO THE OLD APT IT WAS ABOUT 1:00AM AND MY UNCLE AND I WERE DRIVING DOW +1994-05-12,44.5469444,-69.6216667,Winslow,ME,disk,60,fast moving high altitude pulsating disc +1995-05-12,37.0208333,-93.2058333,Ozark,MO,cigar,40,Clear blue sky,no wind,no sound,very large,and very wicked looking and lights on the second one. +1995-05-12,29.3777778,-95.1055556,Santa Fe,TX,chevron,7200,incredibly massive slow moving craft, chevron or wing shaped with multiple lights of the same hue of red. +1996-05-12,43.4666667,-112.0333333,Idaho Falls,ID,light,60,I never have told anyone about this because of the illegal nature of what we were doing when the event occured. Given the anonymous nat +1996-05-12,35.2030556,-85.9211111,Sewanee,TN,sphere,1200,Saw a perfect silver, metalic sphere move with unnatural physics in a crystal clear, afternoon sky. +1996-05-12,33.4213889,-96.5769444,Van Alstyne,TX,disk,10800,Close encounter in Texas, missing time. +1998-05-12,46.7208333,-92.1038889,Superior,WI,circle,120,high altitude,very fast +1998-05-12,35.5361111,-100.9594444,Pampa,TX,light,600,Bright light that would light up the sky and then dim. Also crossed great distances in short amount of time; disappeared and reappeare +1998-05-12,41.0030556,-87.9080556,Chebanse,IL,disk,180,Last night we had severe thunderstorms. I was 7 or 8 minutes from home and out in the country. To my right up in the clouds I thought I +1999-05-12,39.1652778,-86.5263889,Bloomington,IN,light,15,Light that was in a cloud bank above apartment complex. Appeared orange in the cloud, southwest stopped, moved northeast on parallel c +1999-05-12,44.6697222,-74.9816667,Potsdam,NY,sphere,40,I WAS DRIVING HOME FROM WORK AND I LOOKED UP AND OUT THE FRONT WINDSHEILD OF MY CAR, WHEN I NOTICED TWO IRREGULAR SHAPPED SPHERES JUST +1999-05-12,44.9430556,-123.0338889,Salem,OR,cylinder,300,3 of us standing in a large open area walking dogs. Watching some airplanes and than I tuned and saw the cylinder craft which flew int +2000-05-12,45.1475,-122.5758333,Molalla,OR,disk,10,I was on my way home when I noticed a dark disk hovering above the mountain range +2000-05-12,45.5236111,-122.675,Portland,OR,unknown,60,[This is being written by MUFON investigator, John Kirby, section director, Multnomah County, Oregon] Witness was stopped at a traffic +2000-05-12,34.09,-117.8894444,Covina,CA,other,300,Boomerang shaped craft with orange lights on bottom sighted in Covina, CA. +2000-05-12,28.0833333,-80.6083333,Melbourne,FL,light,45,very bright light moved across the night sky +2000-05-12,42.2327778,-76.3427778,Candor,NY,other,300,it was two rows of flashing lights. +2001-05-12,41.2844444,-84.3558333,Defiance,OH,light,600,It was a bright,orangish,circular light that slowly and silently traveled east in the sky. +2001-05-12,25.7738889,-80.1938889,Miami,FL,disk,18000,I saw 6 bright lights in the sky ( that were'nt airplanes. I can tell you that ) +2001-05-12,39.9611111,-82.9988889,Columbus,OH,circle,10,The date could be sometime in May, June or July. I was traveling north to south on the West outerbelt of Columbus, Ohio, heading for t +2001-05-12,35.4675,-97.5161111,Oklahoma City,OK,triangle,900,5/12/01 in okc, ok spotted and videoed a triangle shapped object moving & spinning east very slowly, reflecting a red light +2001-05-12,40.4163889,-120.6519444,Susanville,CA,sphere,15,A bright green outline with a black center......fell very fast behind a group of trees, about 100yds or less from me!!! +2001-05-12,45.7544444,-122.8763889,Scappoose,OR,triangle,600,UFO 1/10 of a mile away seen for 10 minutes in Scappoose, Oregon +2001-05-12,35.925,-86.8688889,Franklin,TN,formation,120,Triangular formation viewed in franklin, tn. Arc shaped flight path, than dissapeared. +2001-05-12,34.0522222,-118.2427778,Los Angeles (50 Ne Of),CA,light,300,I was recently in California visiting my son in an area 50 miles northeast of LA known as the high desert. We were outside with his tel +2001-05-12,40.7141667,-74.0063889,New York City (Staten Island),NY,formation,180,Staten Island ( UFO? ) Formation on 05/12/01 +2001-05-12,43.8841667,-121.4375,Sunriver,OR,triangle,1200,"VERY LARGE" Triangular shaped vehicle moving at a very fast steady speed NW to SE blocking out stars as it went. +2001-05-12,35.6527778,-97.4777778,Edmond,OK,oval,5,glowing red lights speeding across the sky +2002-05-12,28.5380556,-81.3794444,Orlando,FL,triangle,300,Three lighted triangular craft make no sound and erratically circle just north of Orlando for five minutes. +2002-05-12,28.7586111,-81.3180556,Lake Mary,FL,light,300,Slow moving bright white light, No sounds. +2002-05-12,40.7355556,-74.1727778,Newark,NJ,rectangle,6,Strange sound from sky near internation airport +2002-05-12,34.7863889,-76.8594444,Newport,NC,fireball,60,Bright Light and Sonic Booms +2002-05-12,46.4163889,-117.0441667,Clarkston,WA,other,900,Large soundless glowing orange thing that looked like two halves hooked together with a metallic cylinder. +2002-05-12,46.4163889,-117.0441667,Clarkston,WA,light,1200,very slow moving very bright light, disappeared after 15-20 min. +2002-05-12,33.7669444,-118.1883333,Long Beach,CA,fireball,25,Fast moving orange sky jumping, spark trail, disappearing, reappearing flying object on 5/12/02, 22:00-22:14pm +2002-05-12,40.8533333,-73.4119444,Huntington Station,NY,light,600,oval shaped lights moving in circles then coming together as one, with consecutive events lasting 10 minutes. +2003-05-12,38.7508333,-77.4755556,Manassas,VA,changing,600,Strange glow in the sky +2003-05-12,34.2247222,-118.4488889,Panorama City,CA,cylinder,720,bright red light moving slow in the sky +2004-05-12,34.0194444,-118.4902778,Santa Monica,CA,formation,1200,Extremely bright light formation and disc shape over Santa Monica mountains. +2004-05-12,43.1836111,-89.2136111,Sun Prairie,WI,other,120,Triangle formation of moving stars, and slow bright object with in minutes of each other +2004-05-12,40.015,-105.27,Boulder,CO,formation,30,5 glowing golden cigar shaped discs moving in formation +2004-05-12,47.6063889,-122.3308333,Seattle,WA,light,20,ufo at sunset +2004-05-12,34.0522222,-118.2427778,Los Angeles,CA,unknown,300,Did anyone else see what we saw in Downtown Los Angeles? +2004-05-12,29.5686111,-97.9644444,Seguin,TX,disk,600,We were walking my dog when one ship appered then two more appered and we got a very good view of them. +2005-05-12,42.9522222,-77.5905556,Honeoye Falls,NY,disk,120,While working in Honeoye Falls about 6:30 I spotted what vaguely resembled a canopy with some sort of faint object suspended below it. +2005-05-12,39.5186111,-104.7608333,Parker,CO,disk,240,it was 10-20 feet above my house. ((NUFORC Note: May not be a serious report. PD)) +2005-05-12,27.9011111,-81.5861111,Lake Wales,FL,formation,1800,Flashing lights that quickly moved across the sky, appeared and reappeared. ((NUFORC Note: Student report. PD)) +2005-05-12,34.3380556,-84.3766667,Ball Ground,GA,cross,60,On May 12th, 2005 I saw a cross-shaped ufo cross over my Northern Georgia home at 22:12 heading north at low altittude. +2005-05-12,39.3280556,-120.1822222,Truckee,CA,other,1800,Several variouse lights of different color and irratic movement. +2006-05-12,29.7630556,-95.3630556,Houston,TX,triangle,120,Tiangular UFO Hovering In Houston's Night Sky +2006-05-12,39.1619444,-84.4569444,Cincinnati,OH,disk,300,I saw an alian in it's space ship, in the car! +2006-05-12,29.5633333,-95.2858333,Pearland,TX,circle,10,Fast-moving, circular, white object observed for 8-10 seconds--day time sighting. +2006-05-12,34.7463889,-92.2894444,Little Rock,AR,circle,30,Well i was standing in my back yard when i saw the object approach from the south traveling north at a very high rate of speed. The thi +2006-05-12,37.2563889,-93.5075,Bois D'arc,MO,sphere,3600,Brilliant light seen from more than 60 miles away. ((NUFORC Note: Probable sighting of Jupiter, which is in the E sky now. PD)) +2006-05-12,37.2872222,-121.9488889,Campbell,CA,unknown,600,Bright, slow moving orange light in the San Jose area. +2006-05-12,38.6172222,-121.3272222,Carmichael,CA,triangle,240,My daughter and I whitnessed a triangular shaped craft with chaotic strobes over Carmichael, CA. +2006-05-12,36.1538889,-95.9925,Tulsa,OK,unknown,600,I was outside in my friends back yard on friday the 12th and noticed a bright light hovering about 3 miles away, i first disregarded it +2006-05-12,33.0197222,-96.6986111,Plano,TX,unknown,2,Big white flash in and thru my car +2007-05-12,41.85,-87.65,Chicago,IL,other,120,Object sighted after reviewing video taken from aircraft preparing to land +2007-05-12,39.8016667,-89.6436111,Springfield,IL,other,60,Daytime sighting of an unknown object following the vapor trail of passing commercial jet. +2007-05-12,40.9911111,-74.0330556,Westwood,NJ,oval,420,While taking some digital photos of a large American Flag I had just purchased for display outside my house, I noticed an object in the +2007-05-12,39.5297222,-119.8127778,Reno,NV,oval,180,White spherical object over Reno Nevada at 18:00 starting just above tree level, over airport then over mountains. +2007-05-12,43.073055600000004,-89.4011111,Madison,WI,unknown,1200,brilliant white, red, blue, green light hovering for 20 minutes, then droping in elevation w3/ out the light ever geting dimmer +2007-05-12,32.7152778,-117.1563889,San Diego,CA,triangle,15,Silent aircraft +2007-05-12,34.8238889,-89.9936111,Hernando,MS,flash,2,star like object with bizaar flight path appearing to stair step across sky at a rapid rate +2007-05-12,38.7316667,-82.9977778,Portsmouth,OH,light,90,Observation of unusual lights. +2008-05-12,32.7769444,-97.3941667,River Oaks,TX,unknown,120,it was a big black tenticle looking thing that was hovering . +2009-05-12,43.5780556,-70.3222222,Scarborough,ME,circle,5,fast, amber color, no noise, 5 seconds horizon to horizon, circular, spoked wheel looking +2009-05-12,41.3572222,-88.4211111,Morris,IL,light,900,Fast moving lights in trees. +2009-05-12,34.5008333,-117.185,Apple Valley,CA,triangle,180,2 silent triangle crafts +2009-05-12,40.7141667,-74.0063889,New York City (Manhattan),NY,light,120,Bright light over Manhattan +2009-05-12,44.8944444,-71.4963889,Colebrook,NH,light,90,bright light descending slowly in the east/northeast +2009-05-12,30.3502778,-89.1527778,Long Beach,MS,oval,30,Two reddish lights following one another at a very high rate of speed,following the mississippi coast line. +2010-05-12,46.5747222,-122.9069444,Napavine (Outside Of),WA,unknown,60,I was just driving home on North bound I5 near exit 71. There were a few people ahead of me and a few behind me, i wish i could know if +2010-05-12,47.4236111,-120.3091667,Wenatchee,WA,other,20,Flashing and red lights "dancing" and "looping" in the night sky. ((NUFORC Note: Probably a twinkling star?? PD)) +2010-05-12,39.7686111,-94.8463889,St. Joseph,MO,triangle,30,Triangular craft with white light and blinking red lights hovering over field in thunderstorm. +2010-05-12,40.5638889,-122.2377778,Palo Cedro,CA,unknown,300,Green streak in star trails image +2010-05-12,37.6819444,-121.7669444,Livermore,CA,light,600,Bright star-like object, roaming back and forth over Livermore, CA, hills at 12:00 hrs.. ((NUFORC Note: Good witness. PD)) +2010-05-12,36.8188889,-76.2752778,Chesapeake,VA,fireball,8,The bright fireball dimmeded in appearance, then changed its trajectory, before disapearing. +2010-05-12,40.3972222,-91.3847222,Keokuk,IA,light,10,We were just sitting there at my brothers right after dark. When we saw what look like a light larger then any star in the sky. It appe +2010-05-12,47.5675,-122.6313889,Bremerton,WA,light,180,bright star-like object traveling in a northeasterly direction implodes and dissapears, multi-witnessed numerous times in bremerton, wa +2010-05-12,45.7055556,-121.5202778,Hood River,OR,light,40,Bright white light acending. +2010-05-12,31.7380556,-99.9469444,Ballinger,TX,diamond,1800,Bright, oscillating, multicolored diamond shaped object in the western sky, disappeared rapidly to the west. +2010-05-12,37.585,-79.0516667,Amherst,VA,unknown,120,Mother and daughter see strange lights of ufo for the third time in same location. +2010-05-13,41.9166667,-88.1975,Lakewood (Village Of),IL,light,120,Group of red dots moving quickly +2011-05-12,38.8047222,-77.0472222,Alexandria,VA,fireball,12,My daughter and I were driving southbound on Route 1 richmond highway pass the intersection of lockheed blvd and route 1 from the left +2011-05-12,33.4483333,-112.0733333,Phoenix,AZ,oval,300,flying golf ball like objects over Phoenix +2011-05-12,37.7241667,-89.8611111,Perryville,MO,sphere,3000,fast moving Red/Bright Orange Lights over Perryville Missouri +2011-05-12,42.0988889,-88.2713889,East Dundee,IL,fireball,600,fireball hovering hovering over east dundee +2011-05-12,42.2788889,-87.8341667,Lake Bluff,IL,fireball,30,Intense Streak of Light Traveling North of Chicago +2012-05-12,47.4736111,-94.88,Bemidji,MN,fireball,3,Ball of colored light shoots across Bemidji sky +2012-05-12,41.4802778,-71.5230556,Kingston,RI,light,6,Red star weaving back and forth across the sky +2012-05-12,29.1397222,-98.905,Devine,TX,disk,45,Greyish dark spot hovering in the sky on a clear day. +2012-05-12,41.9486111,-71.0736111,Raynham,MA,sphere,120,Orange-yellow sphere (fire-like), travelling fast, changed direction +2012-05-12,41.7672222,-71.3652778,Riverside,RI,circle,300,flying redish orange balls without tails flying down the street at a high rate of speed. +2012-05-12,41.4994444,-81.6955556,Cleveland,OH,oval,5,I was outside with my stepson around a firepit and we were about ready to call it a night and I saw a craft in the air which I thought +2012-05-12,33.8583333,-118.0638889,Cerritos,CA,cigar,60,I was driving north on Studebaker Road in the City of Cerritos, California. I approached the intersection of 183rd and Studebaker Road +2012-05-12,45.1608333,-93.2347222,Blaine,MN,formation,300,7 bright red lights forming 2 triangles with a solitary over Blaine, MN +2012-05-12,39.7683333,-86.1580556,Indianapolis,IN,light,240,4 red lights traveling from the southern horizon to the northeast. Flickering but not flashing. Each light vanished one at a time after +2012-05-12,42.8077778,-87.9241667,Caledonia,WI,diamond,300,Bright orange lights..no sound..slow moving..diamond shaped. +2012-05-12,41.2708333,-73.7780556,Yorktown Heights,NY,circle,900,3 bright orange cirles where heading southeast around 9:00pm est. At a very slow speed. After several minutes 2 of the orange cirlces d +2012-05-12,45.7811111,-122.5322222,Battle Ground,WA,oval,240,Three round objects hovering over Battle Ground, WA +2012-05-12,46.8722222,-113.9930556,Missoula,MT,sphere,5,Single ufo's spotted within 2 days of one another in Missoula Montana +2012-05-12,33.7458333,-117.8252778,Tustin,CA,light,120,5 bright lights in a strange formation. +2012-05-12,42.5272222,-96.4827778,North Sioux City,SD,fireball,300,Orange/Red fireballs traveling various inconsistent speeds, no noise, called 911, blew me off, 8 witnesses +2012-05-12,44.8547222,-93.4705556,Eden Prairie,MN,circle,1200,Several reddish lights in the evening sky +2012-05-12,33.0916667,-97.0463889,Highland Village,TX,circle,900,Strange orange lights in the Texas sky, Highland Village, TX +2012-05-12,40.3408333,-76.4116667,Lebanon,PA,formation,300,Three reddish orange lights flying in formation over Lebanon, PA +2012-05-12,29.5633333,-95.2858333,Pearland,TX,circle,480,2 red, orange, yellow balls hovering then flying away in hyper-speed +2012-05-12,30.3155556,-89.2475,Pass Christian,MS,light,240,I saw at least 14 large, steady red lights in a straight, staggered flight path formation on 5/12/12 in Pass Christian, MS, +2012-05-12,43.55,-96.7,Sioux Falls,SD,other,120,Red light object +2012-05-12,30.8827778,-87.7730556,Bay Minette,AL,circle,420,Five orange lights in baldwin county no sound that i could hear +2012-05-12,35.6527778,-97.4777778,Edmond,OK,oval,900,Red and Green Lights over Edmond, Ok. +2012-05-12,43.55,-96.7,Sioux Falls,SD,circle,7,I was sitting at my computer and happened to look out the window. I saw a bright, large, blue shaped ball going from east to west towa +2012-05-12,42.6458333,-85.2908333,Hastings,MI,unknown,1800,Unexpained red lights +2012-05-12,35.6527778,-97.4777778,Edmond (Northeast Of),OK,light,240,Red and Green lights +2012-05-12,36.0525,-95.7905556,Broken Arrow,OK,circle,120,2 bright orange/red orbs traveling together seperate then fades out +2012-05-12,40.7408333,-74.3841667,Chatham,NJ,fireball,480,Reddish/orange orb moving at steady speed across +2012-05-12,32.7152778,-117.1563889,San Diego,CA,changing,60,7 or 8 sphers amber color +2012-05-12,37.4152778,-88.8977778,Vienna,IL,light,180,Bright hovering color changing light- red, orange, yellow, white +2013-05-12,47.6588889,-117.425,Spokane,WA,circle,4,Two white circles covering 65 degrees in 4 seconds +2013-05-12,41.525,-88.0816667,Joliet,IL,formation,420,5 orange balls of lights in V formation over Joliet, IL +2013-05-12,37.775,-122.4183333,San Francisco,CA,sphere,10,Two spheres seen near Sutro Tower-Twin Peaks in San Francisco, CA. +2013-05-12,42.2416667,-71.1666667,Dedham,MA,cigar,180,Floating Metallic Cylindrical Object, Vanished Afterwards. +2013-05-12,44.9430556,-123.0338889,Salem,OR,circle,120,Object sighted in West by South-west sky at about 21:20. Object appeared round/circular in shape with a dark center; had glow. +2013-05-12,41.2380556,-81.8419444,Brunswick,OH,light,240,Bright orange object emitting no sound seen flying over Brunswick, Ohio. +2013-05-12,34.8525,-82.3941667,Greenville,SC,light,420,Red/orange lights in a formation. +2013-05-12,32.7152778,-117.1563889,San Diego,CA,other,8,Three purple centrifugal ultraviolet round engines in a triangle formation pulsating centripetal burst of electric arcs.. +2013-05-12,42.2711111,-89.0938889,Rockford,IL,fireball,900,Eight globes like if they were full of fire inescapable from the bright globe flew silently over Rockford, IL. +1983-05-13,38.7013889,-90.1486111,Granite City,IL,disk,15,i observed this object quite a few years ago, my mother and i were in her car on the road i live on and noticed a saucer shaped object +1991-05-13,32.9952778,-94.9655556,Pittsburg,TX,unknown,300,Random flashing multicolored lights, with one spotlight, shining down onto my house. +1995-05-13,33.5091667,-111.8983333,Scottsdale (North Of),AZ,other,1200,Broad daylight sighting of enormous craft outside of Scottsdale Arizona May 13, 1995 around 2:00pm by husband and wife for about 20 min +1995-05-13,47.6063889,-122.3308333,Seattle (West Side),WA,triangle,120,MY father and I were looking at the stars and we saw a triangle UFO with 3 white lights on each corner and 1 red light in the middle... +1997-05-13,41.8741667,-80.1319444,Edinboro,PA,oval,240,A friend and I had just dropped off another friend in a suburban neighborhood. My friend was driving, and I was in the passenger seat. +1997-05-13,38.2325,-122.6355556,Petaluma,CA,triangle,30,A triangular formation of about 10 glowing,reddish lights suddenly appear and fly silently overhead. +1997-05-13,34.7391667,-112.0091667,Cottonwood,AZ,light,2700,My wife alerted me to a strange light in the sky. "A ufo" I was indoors - I replied " Oh yea...hmm"She insisted I com and take a look.L +1999-05-13,39.4666667,-87.4138889,Terre Haute,IN,triangle,15,I saw a large triangular craft with multicolored lights on the outside. I estimate the size between 150-250 feet across. There was no +1999-05-13,35.1494444,-90.0488889,Memphis,TN,sphere,5,Object traveled across sky at high speed into a small cloud and did not emerge. +1999-05-13,41.1366667,-95.8905556,Bellevue,NE,circle,3600,A Sphere or Cirle As bright as a star hover atleast 40-60ꯠ Ft. +1999-05-13,44.1858333,-88.4625,Neenah,WI,circle,3,I was heading up Interstate Highway 41 in N.E.Wisconsin when a very bright shooting object caught my eye. +1999-05-13,35.1494444,-90.0488889,Memphis (Century Arbor Apartments),TN,other,12600,Fiance and I both witnessed separate events where lights began streaking over the skies above our apartment. moving at rapid speed, ch +1999-05-13,26.9294444,-82.0455556,Punta Gorda,FL,light,4,See below for more on shape and number of craft +1999-05-13,46.6541667,-120.5288889,Selah,WA,light,14400,STATIONARY LIGHT OVER N/W SIDE OF MT RANIER WITH CHANGING LIGHT COLOR +2000-05-13,39.8513889,-104.9980556,Federal Heights,CO,sphere,20,Driving west bound until I saw a glowing sphere staying stationary over the west than fading out. +2000-05-13,39.0911111,-94.4152778,Independence,MO,triangle,8,silent triangle flyover multiple landing lights +2000-05-13,46.0911111,-94.5033333,Randall,MN,triangle,300,Large dark triangle against the clouds with deep orange/yellow lights on two of the three sides. +2000-05-13,38.3566667,-121.9866667,Vacaville,CA,light,15,Very large round center with circles clustered around it. It was bright and orange colored. +2001-05-13,42.7325,-84.5555556,Lansing (Just West Of, On I-96 Heading West),MI,light,5,Saw bright light shoot up in sky near Lansing, Michigan +2001-05-13,33.9166667,-117.8991667,Brea,CA,circle,60,CIRCULAR DISK OVER BREA IN ORANGE COUNTY +2001-05-13,32.7252778,-97.3205556,Fort Worth,TX,light,20,seen bright light northern sky stationary for approx 20 seconds. grew slightly brighter, then faded and finally disappeared +2001-05-13,39.6477778,-104.9872222,Englewood,CO,triangle,60,Formation of three silent lights traveling in a large perfectly unison traingle as if all apart of one single object +2001-05-13,38.6272222,-90.1977778,St. Louis,MO,oval,5,Emerged, maneuvered, glow around clouds, went back into clouds, five second m/l duration. +2001-05-13,43.8261111,-111.7888889,Rexburg,ID,light,2100,A very odd light that could not be a conventional aircraft that changed colors as if it was blending from one color to another. +2001-05-13,43.12,-85.56,Rockford,MI,circle,180,It was an incredibly clear night, with a dark sky and beautiful bright stars. To the East a round shape suddenly appeared with a const +2002-05-13,34.0522222,-118.2427778,Los Angeles,CA,oval,7200,Stationary star-like object suddenly moving for a period of time, then disappearing or stopping.It was a Moters day Party and alot +2002-05-13,39.6536111,-91.7344444,Monroe City,MO,teardrop,120,Driving a bigrig at 3:00 o'clock in the morning isn't always boring, especially when you are passed by a UFO +2002-05-13,37.8361111,-87.59,Henderson,KY,disk,300,I heard a wooshing sound and I walked outside to see what it was. It was a little cloudy. I saw a black object hovering about as high a +2002-05-13,47.6063889,-122.3308333,Seattle,WA,changing,60,A black object that rolled as it flew so it looked like a disc at times and alternately a circle. +2002-05-13,40.8325,-115.7622222,Elko,NV,unknown,1200,It played in the clouds +2002-05-13,39.0997222,-94.5783333,Kansas City (North ),MO,cigar,300,on /05/13/2002, at 1322hours my nephew herraldo,p,culbert reported to me that he a co-worker saw a cirgar shaped object in the sky o +2002-05-13,34.0952778,-118.1261111,Alhambra,CA,other,120,This craft was NOT unidentified. It was in fact a P-2 Orion used primarily as an electronic intelligence gathering craft.What I fo +2002-05-13,44.7930556,-89.7030556,Mosinee,WI,triangle,900,Low flying triangular craft seen near airport. +2002-05-13,42.7875,-86.1088889,Holland,MI,unknown,600,Craft with three lights on the rear creating a triangle cruising across the sky before turning around to the north and disappearing. +2003-05-13,33.8352778,-117.9136111,Anaheim,CA,cylinder,120,My car, and the ones behind me stoped, and the U.F.O.'s landed,when they were gone the cars started up. +2003-05-13,30.5080556,-97.6786111,Round Rock,TX,unknown,65,flashing star with blinking white lights +2004-05-13,30.3319444,-81.6558333,Jacksonville,FL,oval,2,oval shape bright as a full moon +2004-05-13,29.4238889,-98.4933333,San Antonio,TX,triangle,20,A peach colored blob moved straight toward me, became a triangle craft, turned around and vanished +2004-05-13,39.3702778,-78.0958333,Gerrardstown,WV,triangle,120,In the paper "The Journal" It stated that this month would be the month to see space satalites that would be visible in the night sky b +2004-05-13,35.3733333,-119.0177778,Bakersfield,CA,other,900,Two slow moving "tethered" objects" +2004-05-13,30.275,-89.7811111,Slidell,LA,circle,180,Ithink it was at about 30ꯠ feet as it was very small Redish orange in color +2004-05-13,33.3941667,-104.5225,Roswell,NM,light,300,High, fast moving, silent "light" flew horizon to horizon and was followed by 2 military aircraft within minutes, then filled the sky. +2004-05-13,41.965,-80.4075,East Springfield,PA,unknown,15,Bright white light suddenly dissapears +2004-05-13,36.0816667,-84.0538889,Heiskell,TN,light,600,Unexplained light in the sky over Heiskell. +2004-05-13,26.9677778,-80.1288889,Tequesta,FL,diamond,60,At first a shooting star +2005-05-13,47.6816667,-122.2075,Kirkland,WA,triangle,20,Black Triangle +2005-05-13,33.2,-117.2416667,Vista,CA,fireball,8,Red/Gold streaking light w/ sparking trail flies North to South in straight line over Vista, Ca. (Shadowridge) +2005-05-13,42.7972222,-78.8236111,Blasdell,NY,other,1200,Too slow and bright to be man made. +2005-05-13,32.8744444,-95.7652778,Emory,TX,rectangle,60,Man and wife experience a dramatic sighting of a UFO hovering nearby: A "disappearing cell phone radio tower" +2005-05-13,33.6469444,-117.6883333,Lake Forest,CA,triangle,300,Witnessed several different sets of lights flying very low. +2005-05-13,38.4022222,-122.8227778,Sebastopol,CA,other,5,Just before 11 PM I had finished checking my boxes out in the poolhouse/cottage ( where my office is) and was standing in the dark, enj +2006-05-13,30.2669444,-97.7427778,Austin,TX,light,60,I saw an intense light formation in the sky at 1a.m. in Austin, Tx., which stood still for a while, rose vertically, then vanished +2006-05-13,33.0461111,-96.9938889,Lewisville,TX,circle,5400,Circular objects observed over shcool campus. +2006-05-13,45.4944444,-122.8658333,Aloha,OR,oval,1,Oval Shaped Object in the sky above residential neighborhood +2006-05-13,33.8030556,-118.0716667,Los Alamitos,CA,light,300,Two lights came from one then all three ascened out of sight! +2006-05-13,37.4852778,-122.2352778,Redwood City,CA,sphere,600,two spheres seen hanging motionless in sky, a short, thin vapor trail, (or not) projected out of it. +2006-05-13,31.3111111,-92.445,Alexandria,LA,light,900,Fighter jets chased 3 lights above my house. +2006-05-13,40.8,-96.6666667,Lincoln,NE,light,120,Bright light that changed in intensity and emitted flare-like objects as it traveled towards me. +2006-05-13,39.2902778,-76.6125,Baltimore,MD,light,1200,Multiple UFO's flying over Baltimore Inner Harbor +2007-05-13,34.6086111,-98.39,Lawton,OK,fireball,7,I was visiting friends in Lawton and everyone had gone to bed. I was sitting in the backyard relaxing and enjoying the clear warm nig +2007-05-13,40.7141667,-74.0063889,New York City (Queens),NY,unknown,300,High Flying Metallic object seen over queens, NY. +2007-05-13,38.9822222,-94.6705556,Overland Park,KS,diamond,180,Strange Aircraft in the sky +2007-05-13,34.4047222,-103.2047222,Clovis,NM,disk,240,bright disk shaped object going down +2008-05-13,34.0975,-117.6475,Upland,CA,disk,300,ALTA LOMA, CALIFORNIA, BETWEEN ARCHIBALD AND HAVEN I TOOK PICTURE FROM BALCONY OTHER FIVE WERE OVER OUR HEADS FRONT OF THE HOUSE PLEASE +2008-05-13,34.0522222,-118.2427778,Los Angeles,CA,egg,120,Bright orange and silver glowing ball shaped objects in the Los Angeles Sky. 500 Lights On Object0: Yes +2008-05-13,38.7955556,-77.6141667,Gainesville,VA,fireball,10,Greenlight falling from sky over Haymarket, Virginia area. +2008-05-13,36.6844444,-121.8011111,Marina,CA,other,60,A single object moving slowly across the sky at low altitude. +2008-05-13,41.4488889,-82.7080556,Sandusky,OH,cigar,900,Something over lake Erie +2008-05-13,39.9522222,-75.1641667,Philadelphia,PA,other,300,Clear plastic housing and white lights made from another world seen in city at 300-350 foot distance +2008-05-13,39.9522222,-75.1641667,Philadelphia,PA,triangle,300,Boomerang-shaped UFO sighted over Philadelphia at dusk +2008-05-13,39.0397222,-77.0555556,Wheaton,MD,fireball,3,I was driving East on University Blvd. in Wheaton Md. between Georgia ave. and Viersmill Rd. and saw a fireball with a tail going in a +2008-05-13,34.9494444,-81.9322222,Spartanburg,SC,triangle,600,Unknow triangular shaped object moving at slow rate of speed then hovered as I viewed it with my two employees +2009-05-13,35.5463889,-77.0525,Washington,NC,light,60,large bright burning slow moving white light at dawn +2009-05-13,40.8305556,-84.9291667,Decatur,IN,cylinder,120,large cylinder object +2010-05-13,44.0522222,-123.0855556,Eugene,OR,circle,600,Circular object that looked like star in blue sky moved slowly south, stopped, changed directions and went north. +2010-05-13,33.8158333,-78.6802778,North Myrtle Beach,SC,oval,60,over the ocean objects +2010-05-13,39.4111111,-94.9013889,Weston,MO,unknown,300,Shiny Silver object in sky that seemed to hover in one spot then all of a sudden was gone, +2010-05-13,34.2522222,-118.2875,Tujunga,CA,sphere,5,object disappeared and reappeared in afraction of a second, and descending 90 degrees westward. +2010-05-13,40.8075,-91.1127778,Burlington,IA,light,120,An object flew over my house it looked like a regular star but it was moving very fast no flashing lights +2011-05-13,33.8622222,-118.3986111,Hermosa Beach,CA,light,2,Speeding light flying by window +2011-05-13,35.2225,-97.4391667,Norman,OK,formation,5,3 white lights in formation spotted over oklahoma city +2011-05-13,41.9277778,-74.2158333,Olivebridge,NY,light,5,Bright light shooting in what appeared to be an upwards trajectory +2011-05-13,37.0833333,-88.6,Paducah,KY,light,40,Two lighted objects streaked across the sky. +2011-05-13,31.8575,-103.0922222,Kermit,TX,triangle,2700,triangles over Kermit TX +2011-05-13,34.9247222,-81.0252778,Rock Hill,SC,triangle,30,Lighted object over South Carolina +2012-05-13,35.2494444,-112.1902778,Williams (25 Miles East Of),AZ,triangle,1.5,Extremely Large Triangluar Craft Travelling at Enormous Rate of Speed +2012-05-13,41.4994444,-81.6955556,Cleveland,OH,triangle,420,Triangular object with white cloudy fixed line triangular formation and bright shining prism light. +2012-05-13,43.9105556,-69.8211111,Bath,ME,unknown,300,As I was driving home, I noticed an orange-ish light on an object in the sky. I was exiting off route 1, heading to Bath. I thought it +2012-05-13,42.0722222,-87.7227778,Wilmette,IL,light,600,Several small amber colored lights (no sound), all traveling west, passed over Wilmette approximately at 8-9 pm on 5/13/12. +2012-05-13,41.2886111,-88.2516667,Diamond,IL,fireball,1200,50 UFO's near Diamond, IL. +2012-05-13,41.85,-87.65,Chicago,IL,unknown,300,Multiple red lights that floated up, and away from each other, formed a diagonal line, then disappeared. +2012-05-13,42.9027778,-73.6877778,Mechanicville,NY,circle,3600,bright orb light in sky moving slowly not plane or star +2012-05-13,35.0886111,-92.4419444,Conway,AR,unknown,180,5 red-orange orbs in formation flew close-by but made no sound. +2012-05-13,42.8597222,-89.5380556,Belleville,WI,changing,60,Red shape changing &quot;fire&quot; ball zigzaging in sky +2012-05-13,37.3394444,-121.8938889,San Jose,CA,fireball,600,Either a ground or sea vessel based launch of missiles viewed from a substantial distance. +2012-05-13,41.6005556,-93.6088889,Des Moines,IA,light,60,Came out on my deck and before me in the sky were approximately 8-10 orange orbs moving in a SW to NE arc. This grouping was followed b +2012-05-13,40.5866667,-122.3905556,Redding,CA,circle,240,Orange obect in sky +2012-05-13,47.9791667,-122.2008333,Everett,WA,light,15,a UFO moving across the sky out of a formation making a u turn and heading back in the direction from which it came at a high rate of s +2012-05-13,47.6063889,-122.3308333,Seattle,WA,light,120,My room mate and I live on the fifth floor of an apartment complex that looks over the downtown Seattle, Space needle and I-5. We were +2013-05-13,37.7741667,-87.1133333,Owensboro,KY,light,180,Red and white pulsating motionless orb emitted a single bright sparking flash remained for a few minutes then disappears. +2013-05-13,39.3702778,-74.5505556,Northfield,NJ,light,150,I saw what at first looked to me like a small fire flying absolutely silently through the sky. It did not blink; was silent. +2013-05-13,28.0183333,-82.1130556,Plant City,FL,fireball,120,Amber lights traveling north to south above tree line in Plant City, FL. +2013-05-13,34.1975,-119.1761111,Oxnard,CA,fireball,4,Green fireball. +2013-05-13,38.6275,-92.5663889,California,MO,circle,900,Bright orange round light in the Eastern sky. +2013-05-13,45.5236111,-122.675,Portland,OR,rectangle,360,4 red pulsing lights fly over Portland. +2013-05-13,32.7152778,-117.1563889,San Diego,CA,light,6,Three very dim lights appeared to be one object that moved without sound across the clear night sky. +2013-05-13,39.9611111,-82.9988889,Columbus,OH,changing,900,Three red-lighted objects forming a triangle shape in the sky moves around and then disappears! +1973-05-14,35.2827778,-120.6586111,San Luis Obispo,CA,unknown,300,It made a 90 degree turn at a high rate of speed, and disappeared through the atmosphere. +1973-05-14,34.6991667,-86.7483333,Madison,AL,disk,3600,This is a definate government cover-up +1974-05-14,35.9216667,-81.1766667,Taylorsville,NC,disk,180,DRIVING HOME WITH SON, Large disk shaped ufo appeared, had flashing lights of red, orange, white, port holes. houvered over trees then +1984-05-14,34.0522222,-118.2427778,Los Angeles,CA,disk,720,desert out of los angels duration 12 min 1984 3pm and clear skys 1500 meters ftom me bigger than house disapered fast +1987-05-14,37.1183333,-82.8269444,Whitesburg,KY,rectangle,180,I saw two large, rectangle objects, moving silently outlined with small lights at 3 and 5 hundred feet in air. +1993-05-14,47.7544444,-122.1622222,Woodinville,WA,unknown,300,The silent object was the largest thing I have ever seen above the ground. +1995-05-14,42.2586111,-87.8405556,Lake Forest,IL,unknown,300,3 AM. Delivering papers 1 block north of Fort Sheridan, off Sheridan Rd. Dark, floating, soundless UFO floats across sky. +1997-05-14,37.3394444,-121.8938889,San Jose (On The West Side),CA,circle,180,I saw a round object in the sky slowingmoving to the SE. It was below the cloudsand left no vapor tail. +1999-05-14,41.8388889,-89.4794444,Dixon,IL,triangle,300,It was a black triangle,around light on each corner that didn`t glow out,it took all the noise out of the air when it went over head +1999-05-14,34.5036111,-93.055,Hot Springs,AR,other,120,HEXAGON SHAPE BRIGHT BLUE LT.FLYNG IN EX PATTERN. SPEED STARTED AT SEV HUNDRD TO VERY SLOW. FLEW OVER HOUSE ONE BROKE PATTERN FLEW OVER +1999-05-14,42.4791667,-71.1527778,Woburn,MA,circle,900,circles of lights in the western sky of Woburn MA. +1999-05-14,33.8755556,-84.7622222,Hiram (Outside Of Atlanta),GA,other,3600,lights brighter than stars in west +1999-05-14,40.4591667,-90.6716667,Macomb,IL,formation,360,orange lights, fixed in sky no apparent object +2000-05-14,40.8883333,-73.8286111,Eastchester (Visible From),NY,circle,60,t approximately 3am I had entered my bathroom and decided to leave the lights off as I used the toilet. Staring out the window towards +2000-05-14,44.1930556,-90.6475,Millston,WI,disk,30,I was traveling down us highway 12 near Millston Wi. Car Suddenly killed and I had to coast to a stop. Car refused to start. I got o +2000-05-14,40.4463889,-74.1786111,Union Beach,NJ,triangle,120, I was at Union Beach at about 7:00 p.m. in full daylight, and we were walking along and my dad saw a "kite" but later we relized that +2000-05-14,39.6669444,-74.3197222,Stafford Forge,NJ,triangle,120,triangle craft was going across parkway from left to right very low and slow. there was no noise. it had red lights underneath not blin +2000-05-14,39.6030556,-74.3405556,Tuckerton,NJ,triangle,120,triangle shaped object very low over the garden state parkway ,no noise , very slow, then very fast, red lights with a yellow green glo +2001-05-14,34.4208333,-119.6972222,Santa Barbara,CA,sphere,120,Large yellow-tinged spheroid in predawn sky over Santa Barbara at 30ꯠ and 300mph +2001-05-14,38.9802778,-92.9905556,Blackwater,MO,disk,240,I would not believe it either if not for the photo taken with digital camera +2001-05-14,26.1272222,-80.2333333,Plantation,FL,light,600,a very bright light in a very overcast sky, which appered three times. +2001-05-14,32.2744444,-94.9783333,Overton,TX,circle,2400,Objects first appear from out of no where, one at a time, the first night about every 5 to 7 min, then the next 3 nights timing was clo +2001-05-14,37.9747222,-122.5605556,San Anselmo,CA,cone,1200,isosceles shaped object with blue and white headlights perceived within aura of colored lights +2002-05-14,42.9633333,-85.6680556,Grand Rapids,MI,other,2,Sonic boom? +2002-05-14,40.4258333,-75.1794444,Bedminster,PA,disk,5,big space crafts about 50 feet long +2002-05-14,29.7630556,-95.3630556,Houston,TX,circle,300,PEOPLE ARE STRANGE -- WHATS STRANGER IS THE FACT THAT SOME PEOPLE STILL BELIEVE THERE IS NO LIFE OTHER THAN OURS IN THIS UNIVERSE. +2002-05-14,35.1186111,-120.5897222,Arroyo Grande,CA,light,120,on central coast of cali june 14th 2002 9pm bright star colerd light fades and red colered light does wierd stuff at 11pm +2002-05-14,47.6063889,-122.3308333,Seattle,WA,light,30,Anomalous bright light. +2003-05-14,33.9383333,-94.3569444,Horatio,AR,teardrop,120,I saw lights and looked out my window looked out and saw two teardrop shaped aircrafts . +2003-05-14,35.1494444,-90.0488889,Memphis,TN,formation,240,One large craft with a red light released six others. The crafts hovered for several minutes then disappeared. +2003-05-14,31.7586111,-106.4863889,El Paso,TX,cigar,300,cigar shaped craft hovering over the neighborhood +2004-05-14,45.7544444,-122.8763889,Scappoose,OR,triangle,300,Massive triangle object moving from south to north covering the background stars +2004-05-14,32.7152778,-117.1563889,San Diego,CA,triangle,45,I was sitting on the patio in Point Loma (in San Diego, Ca) Friday, May 14th, 2004, looking up at the Big Dipper when I saw three red a +2004-05-14,30.3844444,-81.9388889,Bryceville,FL,disk,900,The eye may be sometimes decptive but if you get poked in it --it hurts! +2004-05-14,39.0483333,-95.6777778,Topeka,KS,disk,7200,On May 14, 2004, I saw a black, disk shped craft come out of a cloud bank and fly low over a park and a shopping center in Topeka, KS. +2004-05-14,38.4405556,-122.7133333,Santa Rosa,CA,circle,45,Orange circular object moved quickly to NE and was followed almost to the horizon. +2004-05-14,34.0194444,-118.4902778,Santa Monica,CA,sphere,60,They were transparent, but they clearly had a shape to them like soap bubbles. +2004-05-14,34.7538889,-77.4305556,Jacksonville,NC,other,300,brigth light seen in sky above Jacksnville, NC +2004-05-14,41.3144444,-81.8358333,Strongsville,OH,light,6,It started off almost right above me and ended up all the way across the sky and then seemed to hit something and made a 90 degree turn +2004-05-14,42.9897222,-116.0925,Grand View,ID,triangle,480,Large black triangle at high altitude moving NW to SE at slow rate. +2004-05-14,35.7913889,-78.7813889,Cary,NC,triangle,240,thought i was just my imagination for a moment...not so...could be huge transparant w-3 point white lite..or3 seperate objects . +2004-05-14,41.2586111,-95.9375,Omaha,NE,sphere,6,Omaha green sphere with tail +2005-05-14,39.1619444,-84.4569444,Cincinnati,OH,circle,600,Orange round object appears dims and reappears no sound +2005-05-14,40.5852778,-105.0838889,Fort Collins,CO,other,60,iT WAS LIKE HALF BALL HALF TRYANGLE AND WAS YELLOW AND SUDDENTLY DISAPPEARED. +2005-05-14,36.6888889,-100.2716667,Clear Lake (Beaver Co.),OK,unknown,40,Unknown sound of fast and low origin witnessed by three individuals. +2006-05-14,26.4611111,-80.0730556,Delray Beach,FL,light,180,Bright Lite moving in different directions +2006-05-14,41.6997222,-93.0477778,Newton,IA,light,600,Red dots in mid air +2006-05-14,41.6997222,-93.0477778,Newton,IA,light,600,Red dots in the sky +2006-05-14,33.9172222,-118.0111111,La Mirada,CA,light,3600,star in the sky during the day? +2006-05-14,25.7738889,-80.1938889,Miami,FL,light,180,White light moving slowly to the northeast changed to northwest, then northeast again, changed to red, then went to dim white again +2006-05-14,39.1619444,-84.4569444,Cincinnati,OH,circle,180,West side of Cincinnati-close to airport 10-11pm-Did anyone else see these? +2007-05-14,43.2341667,-86.2483333,Muskegon,MI,other,60,Unknown object in flight over the skies of Western Muskegon +2007-05-14,36.3302778,-119.2911111,Visalia,CA,light,300,2 bright orange lights seen in sky. Emitting sparks. +2007-05-14,40.7141667,-74.0063889,New York City,NY,light,7200,I saw two seperate lights that turned invisible and into airplanes. +2007-05-14,40.7141667,-74.0063889,New York City (Queens),NY,light,7200,Very bright star like object in the not too distant western horizon. Light emited seams to change. ((NUFORC Note: Venus. PD)) +2007-05-14,38.6272222,-90.1977778,St. Louis,MO,light,120,Object zig -zagging in sky. +2007-05-14,47.8602778,-122.2030556,Mill Creek,WA,flash,60,Flash of lights over Mill Creek +2008-05-14,43.0125,-83.6875,Flint,MI,light,90,Observed bright, rapidly flashing light, changing colors, direction and moving with unusual acceleration. +2008-05-14,43.0125,-83.6875,Flint,MI,light,30,Stange light, great speed, strange maneuvers +2008-05-14,35.2269444,-80.8433333,Charlotte,NC,cylinder,3,On 5-14-2008 at about 0030 hours I observed a very bright glowing green object(almost neon green) descending from the sky towards the g +2008-05-14,36.7069444,-97.0852778,Ponca City,OK,circle,20,Bright round orange object over Ponca City, OK., moving due east. +2008-05-14,34.8638889,-84.3241667,Blue Ridge,GA,light,4,Bright flashes of light that lit up sky, then ball of light speeding across +2008-05-14,34.4233333,-118.4711111,Canyon Country,CA,unknown,20,I saw a star explode and a ufo came flying out of it. There was absolutly no sound. +2008-05-14,42.7861111,-72.4869444,Hinsdale,NH,unknown,60,red and white lights seen over South Western New Hamphire +2008-05-14,39.7458333,-75.5469444,Wilmington,DE,sphere,4,Light sphere seen, exactly the same as the one in the British Police Helicopter footage. +2008-05-14,33.4483333,-112.0733333,Phoenix,AZ,light,900,red lights make shapes in arizona sky, again on 5-14-08 +2008-05-14,33.4483333,-112.0733333,Phoenix,AZ,other,900,Late-night red lights over Northwest Phoenix moving independent of each other. +2008-05-14,41.5222222,-81.3380556,Chesterland,OH,light,2,A bright ball of light (like a tiny moon) shot downward at an angle, then turned sharply and sped back up into the clouds. +2009-05-14,36.3008333,-119.7819444,Lemoore,CA,other,600,A large single aircraft wing with six bright lights,running across it , headed right at us,then up and over us at last min. +2009-05-14,34.0922222,-117.4341667,Fontana,CA,formation,1200,Green lights in fontana ca could be seen i you were out side at mid night +2009-05-14,37.775,-122.4183333,San Francisco,CA,disk,300,Objects when passing are very neutral. +2009-05-14,34.4208333,-119.6972222,Santa Barbara,CA,chevron,1800,My boyfriend and I were riding our bikes along the oceanfront heading east along the Santa Barbara coastline around 9pm when we stopped +2009-05-14,34.4208333,-119.6972222,Santa Barbara,CA,triangle,300,Triangle shaped craft with lights +2009-05-14,41.1091667,-79.4902778,Sligo,PA,unknown,600,Rising amber light very slowly rises then gives way to blinking red lights before speeding away to the north sky. +2009-05-14,36.1538889,-95.9925,Tulsa,OK,cigar,10,Large very bright bluish white "strip" of light seen on bottom of a large craft +2009-05-14,33.7475,-116.9711111,Hemet,CA,light,120,second time in one month a light makes a 90 degree turn overhead +2009-05-14,35.3588889,-81.0972222,Stanley,NC,light,20,Very large bright light in sky hovering, the flew out into space in 5 seconds and was gone. +2009-05-14,30.2669444,-97.7427778,Austin,TX,sphere,3,A Bluish-white object with glowing aura hurtles through the sky at great speeds +2010-05-14,33.4936111,-117.1475,Temecula,CA,changing,900,Big, Bright Hovering Light +2010-05-14,41.8238889,-71.4133333,Providence,RI,other,2,Star slides to left in sky, then Disappears +2010-05-14,42.0775,-73.9533333,Saugerties,NY,light,180,White flying light, that flew horizontal then dissapeared over Saugerties, New York. +2010-05-14,37.6775,-113.0611111,Cedar City,UT,light,120,stead single white dot heading southeast then rose straight up and vanished +2010-05-14,44.9430556,-123.0338889,Salem,OR,sphere,1800,various objects in the sky near Salem, OR +2010-05-14,39.5236111,-87.125,Brazil,IN,triangle,10800,3 FRIENDS SPOT GIANT LIGHT UFO THAT LINGERED FOR 4 HOURS ((NUFORC Note: Student report. PD)) +2010-05-14,43.7730556,-88.4469444,Fond Du Lac,WI,fireball,900,"Fireball-like" objects seen over Fond du Lac, Wi. +2011-05-14,40.7141667,-74.0063889,New York City (Brooklyn),NY,changing,1200,Brooklyn lights / VIDEO / 5.14.11 +2011-05-14,34.1847222,-101.7063889,Plainview,TX,triangle,15,Small black triangular object hovering slowly over my roof while star gazing. This object was pitch black, no lights no sound. It blend +2011-05-14,32.2216667,-110.9258333,Tucson,AZ,cigar,120,Cigar shaped UFO spotted in Tucson, AZ on May 14, 2011. +2011-05-14,26.1,-80.4,Weston,FL,circle,10,Circular object was seen flying by some clouds when two additional circular objects appeared out of the first and then all disappeared. +2011-05-14,25.9561111,-80.1394444,Aventura,FL,oval,20,8 oval objects traveling in a loose formation at approximately 500mph. ((NUFORC Note: Witness is airline pilot. PD)) +2011-05-14,39.9611111,-82.9988889,Columbus,OH,formation,300,UFO's over Columbus, OH! +2011-05-14,25.7738889,-80.1938889,Miami,FL,cigar,120,Orange color UFO's over Miami Sat.night.{05/14/2011} +2011-05-14,30.2669444,-97.7427778,Austin,TX,circle,5,Very large neon green circle was seen right outside my window. +2012-05-14,38.2541667,-85.7594444,Louisville,KY,disk,600,Brightly lit object flys slowly over treeline and vanishes +2012-05-14,35.1822222,-83.3816667,Franklin,NC,flash,20,There was a bright light in the sky that quickly flew off at a very fast speed. +2012-05-14,45.5236111,-122.675,Portland,OR,light,180,Bright orange light in the sky, moves fast and disappears. +2012-05-14,46.8722222,-113.9930556,Missoula,MT,light,7,2nd UFO sighting in Missoula Mt. in the space of 2 days +2012-05-14,36.3586111,-105.6088889,Ranchos De Taos,NM,teardrop,1200,Four large objects moving fast and in the same direction seen in middle of UFO swarm. +2012-05-14,29.6816667,-96.9027778,Schulenburg,TX,unknown,3,40 objects traveling northwest to southeast in formation at supersonic speed +2013-05-14,35.2269444,-80.8433333,Charlotte,NC,light,9,I went to my balcony at 4 am and looked over the city, there was a bright star, white in color that looked liked it was powering up and +2013-05-14,41.3469444,-74.1266667,Highland Mills,NY,light,120,Spherical solid white light moving through sky, stopped and disappeared. +2013-05-14,39.2666667,-81.5616667,Parkersburg,WV,cigar,60,I observed May 14 2013 at 20:15hrs, 1 white cigar shaped obj. 20ft or more in length flying at low altitude (no jet stream). +2013-05-14,37.3661111,-81.1027778,Princeton,WV,formation,1200,Sitting in wal-mart parking lot......noticed what appeared to be bright stars....after the sun went all the way down, the lights remain +2013-05-14,35.925,-86.8688889,Franklin,TN,triangle,10,Black Triangle Sighting in Franklin Tennessee, May 14, 2013 +2013-05-14,36.3547222,-79.6647222,Reidsville,NC,other,540,Cylindrical fireball type object slowly moving Northwest from Caswell County NC toward Danville, Virginia +2013-05-14,36.1538889,-95.9925,Tulsa,OK,unknown,60,Bright star moving across the sky at very slow speed. +2013-05-14,46.6316667,-114.0780556,Florence,MT,light,300,3 pulsating red lights crossing the valley. +2013-05-14,35.4086111,-80.5797222,Concord,NC,light,20,Looking at the moon in a NW direction. I suddenly noticed to my right side in a NNE direction an extremly bright light. +1949-05-15,32.6736111,-81.0205556,Grays,SC,light,300,I am not sure of the exact date or time of this event but it took place in the early morning hours somtime in the late 40's to early 50 +1952-05-15,47.3858333,-122.8263889,Allyn,WA,disk,10800,Close encounter involving physical examination in unknown craft. +1954-05-15,44.5647222,-123.2608333,Corvallis (Near; Small Town Of Alsea),OR,diamond,120,Disc top, or bottom to our view following, west to east, a 4 engine (prop) maybe a Tri Star (three rudders) About 1/2 way across our vi +1955-05-15,30.3838889,-87.275,Warrington,FL,fireball,300,fireball into pensacola bay +1959-05-15,42.0411111,-87.69,Evanston,IL,unknown,1200,Distant craft in the same part of the sky for 3 nights, seen by a group +1960-05-15,39.4666667,-87.4138889,Terre Haute,IN,other,300,Light Bar in Clouds UFO +1962-05-15,39.9536111,-74.1983333,Toms River,NJ,disk,180,Round, dark disk shaped object with lights all around it softly whirred by, hovering overhead for a few moments and then moved on. +1962-05-15,34.7130556,-95.8497222,Pittsburg,OK,changing,30,Large, red light, flanked by smaller red lights that appeared to change shape +1963-05-15,40.7141667,-74.0063889,New York City (Brooklyn),NY,other,600,SILENT, SUSPENDED WATER TOWER APPEARS OVER HOUSES IN SEA GATE, BROOKLYN, NEW YORK +1963-05-15,39.4013889,-76.6022222,Towson,MD,oval,20,Bright, rapidly moving object moving from east to west that reflected the sun as it made a slight turn to the Southwest. +1964-05-15,44.5047222,-72.3686111,Hardwick,VT,disk,300,3 Saucers seen flying in formation in a southern direction, sighting lasted about 5 minutes by 2 people... +1964-05-15,33.4416667,-94.0375,Texarkana (Outside City Limits),AR,disk,300,Saw very large flying object resting on ground on country road in middle of clear day. +1964-05-15,34.09,-117.8894444,Covina,CA,cigar,300,SLOWLY ROTATING CIGAR SHAPED METALLIC ,DAYLIGHT LOW ALTITUDE OBJECT +1965-05-15,48.4758333,-122.3241667,Burlington,WA,disk,300,One morning waiting for the school bus,my brothers and cousins noticed a silver disc in the clear sky.It seemed motionless for the firs +1965-05-15,34.0141667,-86.0066667,Gadsden,AL,sphere,45,Blue ball drifted down to within reach, backed away as I reached then shot away after I reached again. +1965-05-15,32.7677778,-117.0222222,La Mesa,CA,disk,120,Sighting in La Mesa,CA   +1966-05-15,21.3905556,-158.1547222,Nanakuli,HI,disk,360,Flying saucers hovering above our house... I'll remember for the rest of my life! +1966-05-15,34.5794444,-85.5905556,Mentone,AL,egg,10,Both objects skirted the top of the ridge, keeping equi-distant with each other; traveling very fast. +1967-05-15,47.3811111,-122.2336111,Kent,WA,disk,480,First it was clear, like glass, than it turned to metal, purple and silver mixing, and than solid silver. +1967-05-15,29.6513889,-82.325,Gainesville,FL,triangle,300,An equilateral triangle with a red glowing light on each corner (one each corner--three total. solid sillouette dark shape about the si +1967-05-15,37.8727778,-122.4633333,Belvedere,CA,teardrop,10,Teardrop outlined in white light with three white circular lights inside other wise dark interior of tear shape. +1967-05-15,34.0777778,-116.5386111,Palm Wells,CA,formation,600,small lighted spheres apparently hovering just above the ground; about a quarter mile away +1967-05-15,32.5091667,-92.1191667,Monroe,LA,light,60,My cousin's husband abd I were night fishing and saw a single light looking like a large star moving across the night sky at a pretty g +1968-05-15,38.6272222,-90.1977778,St. Louis,MO,oval,300,1968 sighting south st louis county , other people witness .5 min new 255 and lemay ferry rd +1968-05-15,44.5236111,-89.5744444,Stevens Point,WI,sphere,600,Stationary, metallic sphere with dark central spot seen high in northern sky +1968-05-15,41.9025,-85.7994444,Jones,MI,oval,1200,A black disc/oval shaped object was seen going directly up. +1968-05-15,40.2338889,-111.6577778,Provo,UT,sphere,300,fiery yellow-white orb hovered just above the ground in back yard of home just west of I-15 in Provo, Utah +1969-05-15,38.6272222,-90.1977778,St. Louis,MO,cigar,120,1969 forest park , cigar , brownish gray color went of to the west +1969-05-15,32.7833333,-96.8,Dallas,TX,light,60,A light came toward us and stopped directly overhead. It stayed there a couple seconds then shot off very fast. No noise. +1970-05-15,39.0997222,-94.5783333,Kansas City,MO,light,10,A brilliant, greenish light that suddenly appeared within a grey cloud overhead. +1973-05-15,47.2530556,-122.4430556,Tacoma,WA,sphere,120,No noise and hovering Close to Air Base +1973-05-15,61.3888889,-149.4819444,Chugiak,AK,rectangle,120,Black oblong boxes, connected by what looked like a hose, silently floating at tree top level with no lights about the size of big rigs +1974-05-15,32.2986111,-90.1847222,Jackson,MS,unknown,1800,I was followed at close range by an object with 3 very bright lights near Jackson, Miss. +1974-05-15,41.8277778,-73.9655556,Esopus,NY,other,5,Aqua-Blue orb moving north,northeast in the Hudson Valley Mid May 1974 at high rate of speed +1974-05-15,35.8305556,-96.3908333,Bristow,OK,cigar,300,Large, drab color, enormous, cigar shaped, no appendages on craft. Moving at moderately fast speed, (faster than any blimp could}. trav +1974-05-15,40.6577778,-73.8366667,Howard Beach,NY,disk,30,A daylight disk was sighted over Queens county of New York City in the spring of 1974. +1974-05-15,33.7488889,-84.3880556,Atlanta,GA,disk,300,We saw a silent, saucer-shaped craft with 4 porthole-size lights blinking in sequence left to right, blue, white, red and yellow. +1974-05-15,33.8838889,-84.5144444,Smyrna,GA,disk,120,We saw a disc-shaped object with a row of blinking lights traverse the sky silently, rapidly, and repeatedly. +1974-05-15,45.2311111,-122.7547222,Aurora,OR,disk,120,Flying Saucer hovers above car. +1974-05-15,40.8566667,-74.1288889,Passaic,NJ,cigar,1800,We thought it was we were looking at a sky full of stars...until they all started to move.... +1975-05-15,34.7463889,-92.2894444,Little Rock,AR,cigar,120,I came to a four way stop sign headed east, I looked to my left and noticed something in the sky, low moving fast about in a 15 degree +1975-05-15,33.2147222,-97.1327778,Denton,TX,other,120,bright red, heart shaped vehicle flying above tree tops mid-afternoon on a clear, sunny day day +1975-05-15,46.475,-117.6016667,Pomeroy,WA,disk,1200,saucer shaped very white. +1975-05-15,33.7938889,-84.6605556,Lithia Springs,GA,disk,300,A friend and i were riding down by the chattahoochee river right at dusk(on lower river road). When i saw a light off in the distance . +1975-05-16,43.9633333,-91.2561111,Holmen (Near Brookners Pond),WI,disk,900,saw disk fly in and hover above pond,the pond is about 100 foot dia.We were sitting on the pier,exceptionaly close,you could see every +1976-05-15,39.4838889,-76.4936111,Hydes,MD,changing,1200,this craft was 1000ft. in diameter. when it came over us, it stopped and then split into 4 wedge shapped craft. it split into 4, then l +1977-05-15,44.9430556,-123.0338889,Salem,OR,cigar,900,Slowly moving cigar-shaped object with unusual flashing lights seen in Salem, OR in 1970's. +1977-05-15,37.7111111,-77.4927778,Elmont,VA,disk,240,silver disk near Elmont Elementary School in 1977 +1977-05-15,44.98,-93.2636111,Minneapolis,MN,unknown,600,The red and green lights were in a triangular configuration and just hovered above the airport with no sound +1979-05-15,35.0844444,-106.6505556,Albuquerque,NM,circle,60,Near encounter (100 feet) for 1 minute. +1979-05-15,41.2586111,-95.9375,Omaha,NE,triangle,30,Silvery, triangular objects at low altitude. +1979-05-15,29.4238889,-98.4933333,San Antonio,TX,other,7200,in the backyard. I looked up and saw what I thought was a falling star. It came to a stop and hovered. Then it moved again. Then we n +1980-05-15,40.8305556,-121.5125,Hat Creek,CA,rectangle,7200,Do not have a clue what took place with my friend and I +1980-05-15,40.8022222,-124.1625,Eureka,CA,cigar,120,Rode the schoolbus with friend Joel to his house after school. When we stepped off the bus, we saw a shining craft in the sky, an elong +1980-05-15,40.9311111,-73.8991667,Yonkers,NY,triangle,180,Moved slowly over rooftops in early evening, +1980-05-15,35.4675,-97.5161111,Oklahoma City,OK,changing,300,Unusual spacecraft 15 feet above me. Did not hover, it was stationary, solid matter, as though it were a solid fixture. +1980-05-15,35.4675,-97.5161111,Oklahoma City,OK,changing,300,Unusual spacecraft 15 ft obove me. Stationary, solid matter. Did not hover. +1980-05-15,45.5608333,-94.1622222,St. Cloud,MN,other,180,Saturn shaped U.F.O. +1981-05-15,39.2191667,-121.06,Grass Valley,CA,cigar,5,Grass Valley CA, early 80's - Silvery silent slow-flying torpedo-shaped UFO seen over tree-tops. +1982-05-15,35.3619444,-86.2094444,Tullahoma,TN,oval,900,Reddish orange oval object that hovered over and dipped in front of my car during the 15 minute drive into town +1982-05-15,42.3313889,-83.0458333,Detroit,MI,triangle,900,It moved like no other flying planes I've ever seen with quick and sharp movements, had not sound. +1982-05-15,39.5297222,-119.8127778,West Reno (Out On Old Hwy 40),NV,other,60,Loud boom, so loud shook house. Went outside to see what happened. Saw hole in sky cover perfect circle. Moon in center of circle,full +1983-05-15,40.7997222,-73.6513889,Roslyn,NY,disk,180,Spacecraft hovering with bluish lights from rectangular windows ( 8 ) enormous in size - quiet - peaceful +1983-05-15,39.4097222,-123.3544444,Willits,CA,diamond,90,Saw dark diamond shaped UFO for 1 and a half minutes at tree top level. +1984-05-15,34.5969444,-83.7633333,Cleveland,GA,other,600,didnt seam to fly on air / had speed of light +1984-05-15,33.0144444,-97.0966667,Flower Mound,TX,disk,10,The glowing disc came from the South in the evening sky and silently moved North at a high rate of speed. +1984-05-15,39.1855556,-78.1636111,Winchester,VA,circle,6,I spent many hours looking at stars as preparation for navigation with a sailboat using a sextant +1985-05-15,39.2805556,-80.3447222,Clarksburg,WV,circle,120,Large Disc hovering over a National Guard Armoy for 2 minutes then gone. +1985-05-15,33.4147222,-111.9086111,Tempe,AZ,sphere,1200,Unexplained light cast into otherwise dark area blasts out of sight. +1986-05-15,35.4494444,-97.3963889,Midwest City,OK,unknown,180,This object was seen at night hovering over a building at a local Air Force Base in Oklahoma +1986-05-15,39.3772222,-105.8,Jefferson,CO,sphere,10800,saw a bright red sphere moving slowly from west to east on the north of our campsite. +1986-05-15,40.7141667,-74.0063889,New York City (Manhattan),NY,chevron,2400,Metallic UFO over Upper Manhattan +1986-05-15,36.7022222,-85.6916667,Tompkinsville,KY,triangle,20,Large L-shaped or triangle object, no lights,passed low overhead, no sound. Structure underneath. +1987-05-15,36.175,-115.1363889,Las Vegas,NV,oval,120,Las Vegas Orbs display " V" ariel perfomance in early morning sky +1987-05-15,42.2761111,-88.1919444,Island Lake,IL,light,0.01,4 red laser like lines +1987-05-15,31.0980556,-97.3425,Temple,TX,cigar,120,cigar shaped ufo seen in Temple +1988-05-15,40.5594444,-79.9588889,Allison Park,PA,sphere,120,glowing red shapeshifting ball sighted early morning +1988-05-15,39.4186111,-76.2947222,Edgewood,MD,sphere,45,Edgewood, MD boy sees a chrome sphere move laterally across sky and change directions near the Edgewood Arsenal Army base. +1988-05-15,41.4413889,-85.265,Kendallville,IN,triangle,900,Huge, black, triangular shaped craft. Made no sound & had mercurial lights that changed color. +1989-05-15,34.3622222,-92.8127778,Malvern,AR,triangle,600,Observed bright light approaching from west, drawing closer proved to be 3 separate lights on triangular craft, which passed directly o +1989-05-15,43.0966667,-71.4655556,Hooksett,NH,unknown,180,A strange, hovering craft making sharp turns. +1989-05-15,43.2722222,-75.1902778,Barneveld,NY,triangle,14400,large tringular object in the sky over my home +1989-05-15,38.7508333,-77.4755556,Manassas,VA,triangle,10,3 lights in triangle shape or form silently zipps over Manassas, VA +1989-05-15,35.6225,-117.67,Ridgecrest,CA,fireball,10,Fireball object SouthWest of Ridgecrest, CA, drops below hills and disappears. +1989-05-15,41.7247222,-73.4775,Kent,CT,chevron,120,Huge, soundless, V shaped craft seen in Kent,CT. +1990-05-15,40.7988889,-81.3786111,Canton,OH,circle,10,What is that mirror like ball in the sky? +1992-05-15,41.5886111,-83.8911111,Swanton,OH,light,60,A strange, faint, pulsating point of light was observed heading very slowly south amongst the stars in the night sky. +1992-05-15,40.1438889,-75.1161111,Willow Grove,PA,cone,5,A fairly large, gray, metallic object, cone-shaped with a flat, circular bottom spotted in the sky over Willow Grove. +1992-05-15,41.8338889,-75.8775,Montrose,PA,circle,240,white light +1993-05-15,32.1533333,-90.1311111,Florence,MS,fireball,5,green fireball w/long tail came straight down, when object reached horizon, was big flash like a huge explosion lit the whole sky for 1 +1993-05-15,41.2794444,-72.8155556,Branford,CT,diamond,600,Two objects with alternating blinking red lights move toward each other and forms a single object with four lights that speeds away. +1993-05-15,33.9791667,-118.0319444,Whittier,CA,light,1200,I was sitting on the steps out in the front of the building, and I looked up at the sky and saw between 15-20 glowing red balls of ligh +1994-05-15,45.5236111,-122.675,Portland,OR,sphere,600,While in light aircraft observed object below and behind follow in a race track holding pattern. Observed changes in heading altitude a +1994-05-15,35.8241667,-78.315,Zebulon,NC,other,120,Gigantic flat black ship with molded rooms on bottom and tubes leading to each room seen in Zebulon, North Carolina. +1994-05-15,41.6819444,-85.9766667,Elkhart,IN,sphere,90,I saw 6 spherical objects, silver or chrome in color. They were circling around eachother very close and at a high rate of speed. +1994-05-15,32.7919444,-115.5622222,El Centro,CA,triangle,600,Huge triangle being followed by an F-16 in the california desert.. +1994-05-15,39.4736111,-118.7763889,Fallon,NV,light,45,USN trained weather observer sighted 3 "solid" colored lights, two red, one white, moving south to north silently and periodically"rock +1994-05-15,34.9455556,-111.6394444,Munds Park (West Of),AZ,chevron,1200,V-shaped w/ 5 amber colored lights on the bottom +1995-05-15,40.5141667,-88.9905556,Normal,IL,triangle,1500,Large hovering triangle UFO seen at close distance, object followed us home, +1995-05-15,42.225,-73.735,Claverack (East Rt.23),NY,triangle,120,Saw two large triangles,hazy/transparent,hovering a few feet apart north of Rt.23 +1995-05-15,42.4005556,-76.0211111,Killawog,NY,light,240,Two sightings on two consecutive Thursdays of sphere like lights. +1996-05-15,36.1538889,-95.9925,Tulsa,OK,sphere,300,Spherical bluish green craft hovering over the water +1996-05-15,37.305,-93.4283333,Willard,MO,cigar,2700,huge object +1997-05-15,32.7152778,-117.1563889,San Diego,CA,disk,2700,huge disk +1997-05-15,42.865,-71.3744444,Londonderry,NH,light,60,Flying neon lights +1997-05-15,32.7666667,-96.5988889,Mesquite (Near Dallas),TX,teardrop,25,Small quiet very non dramatic teardrop shaped flying object appeared to be taking off. +1997-05-15,30.6277778,-96.3341667,College Station,TX,light,1200,following light +1997-05-15,32.7666667,-96.5988889,Mesquite,TX,circle,30,hoverd overhead about 30 seconds then took of north at very high speed +1997-05-15,26.8230556,-80.1388889,Palm Beach Gardens,FL,formation,3600,Red flare like lights in formation. Tv footage was very good. Airline piolt reported alt as 10ꯠ This story did not make it out of Pa +1997-05-15,28.8075,-81.5638889,Sorrento,FL,cigar,300,A cigar shaped craft with lights floated about 250 yards in front of us and made no sound. +1997-05-15,31.5491667,-97.1463889,Waco,TX,light,60,mama ship drops off baby ship +1997-05-15,35.6008333,-82.5541667,Asheville,NC,other,60,an object was sited around the asheville area that was travelling westward. it was brilliantly lit and appeared to be moving very fast. +1997-05-15,40.7211111,-73.1580556,Great River,NY,oval,2700,As I was leaving in my car from a building I happened to look up into the sky and noticed 6 hovering things. I stopped my car and got +1997-05-15,41.6833333,-86.25,South Bend,IN,triangle,120,object seen in real life is seen on tv too! +1997-05-15,33.9325,-114.005,Bouse,AZ,triangle,60,5/15/97 at 22:45pm, son and I saw a 150ft pie wedged shaped craft fly down our valley East to West at 30-40mph at 30ft altitude. At eac +1998-05-15,34.0888889,-88.6222222,Nettleton,MS,light,30,Red light viewed over Nettleton, MS light acended from trees and disappeared with two jets a minute behind. +1998-05-15,42.0333333,-87.8833333,Des Plaines,IL,other,900,Seen objeck going from N-E to S-W. Looked Like a black hourglass and was moveing up and doun in and out of clouds. +1998-05-15,40.7141667,-74.0063889,New York City (Bronx),NY,oval,180,On may 1998 I was going to cross the street with my child at that time the lite was green and i wanted to rush home so i press the but +1998-05-15,38.6772222,-87.5286111,Vincennes,IN,triangle,300,Triangular object hovered in evenig sky +1998-05-15,32.5727778,-89.335,Sebastopol,MS,light,900,Strange, unidentified light that makes seemingly intelligent responses to it's sighting. +1998-05-15,33.3805556,-84.7997222,Newnan,GA,light,60,very bright, with a beacon light too high to be helicopter,couldnt be airplane +1998-05-15,38.35,-104.7222222,Pueblo West,CO,triangle,900,It was about 11:30 at night, when my brother came into my room and told me to look out my window. He seemed very excited but also a lit +1998-05-16,43.1536111,-76.8788889,Rose,NY,triangle,60,Black Triangle over apple trees. +1999-05-15,37.3838889,-93.1511111,Fair Grove,MO,disk,300,2 saucers appeared to dance in the sky then drop and suddenly shoot straight up to the left and right then disappear +1999-05-15,41.7991667,-85.4191667,Sturgis,MI,unknown,45,It was a circle type shape that changed colors and spined as it got up higher in the sky.Then after about 45 seconed it disapered. +1999-05-15,33.7222222,-116.3736111,Palm Desert,CA,changing,45,BRIGHT ORANGE OBJECT WITH WHITE BRIGHT TRAIL TAILING FROM BEHIND LIGHTING UP THE WHOLE MOUNTAIN SIDE, TAIL DISAPERED OBJECT DIMED SLIGH +1999-05-15,39.9625,-76.7280556,York,PA,cylinder,5,Stationary grey/silver cylinder against a cloudless blue sky +1999-05-15,36.1008333,-92.9536111,Western Grove,AR,fireball,360,He was driving to my house in Anderson Flat, when he saw it, Blue fire ball, with a haze around it that change direction East and West. +1999-05-15,33.7488889,-84.3880556,Atlanta,GA,disk,10,Fast Silver Craft over Atlanta May 15th 1999. Saw craft through binoculars. Speed near Mach 3-4. Craft seemed to self-illuminate. Dayl +1999-05-15,43.5838889,-71.2077778,Wolfeboro,NH,light,120,I was called by a friend on the phone who said she and her husband had just seen a bright light moving silently and speedily across the +1999-05-15,40.7966667,-81.5216667,Massillon,OH,light,1800,Strobing lights brighter than usual ICAO ident lights. +2000-05-15,41.0933333,-75.0022222,Bushkill,PA,circle,180,Do things normally vanish into thin air? +2000-05-15,34.0522222,-118.2427778,Los Angeles,CA,triangle,300,Boomerang ship over Los Angeles in 2000 +2000-05-15,36.7427778,-88.2963889,Dexter,KY,disk,425,we saw an object in the air that went slower than an airplane and then went faster than the blink of an eye. +2000-05-15,40.3266667,-78.9222222,Johnstown,PA,disk,600,My First Daylight UFO +2000-05-15,40.9113889,-73.7827778,New Rochelle,NY,circle,5,A Round Bright Light the Size of a Beachball flied right over my brother and I heads before dissappearing +2000-05-15,36.2297222,-93.1075,Harrison,AR,light,300,It looked like one of the stars, until it began to slowly move. +2000-05-15,32.9855556,-80.11,Ladson,SC,other,600,A formation of hundreds of pulsating white lights, moving slowly parallel to the road +2000-05-15,35.4005556,-119.4686111,Buttonwillow,CA,chevron,900,Dark "Chevron" shaped craft with 3 white lights flying sideways near Buttonwillow, CA +2000-05-15,34.698055600000004,-118.1358333,Lancaster,CA,triangle,20,dark triangular object that emitted a stange sound +2000-05-15,47.5233333,-92.5363889,Virginia,MN,other,30,These objects were well lit of gold colors, in the shape of a boomerang, or a batwing. from the size of a double fist to a little large +2000-05-15,32.9952778,-94.9655556,Pittsburg,TX,light,300,A friend and I watched as alight approached from the horizon. As it got closer to us, it resolved itself into a cluster of red, green +2000-05-15,44.7980556,-93.5266667,Shakopee,MN,fireball,5,Fireball that changed course +2000-05-15,40.9402778,-74.1322222,Fair Lawn,NJ,circle,40,2000 UFO sighting northern NJ suberbs. +2000-05-15,41.4994444,-81.6955556,Cleveland (Approaching),OH,teardrop,4,Near miss - a UFO shot out from under our MD-80 and made a ninety degree turn off our right wing. +2001-05-15,38.9105556,-122.6091667,Lower Lake,CA,unknown,600,Hovering rolling lights. +2001-05-15,42.4736111,-73.1666667,Dalton,MA,triangle,600,The object was silent but seemed to "pulse" across the sky. +2001-05-15,40.7141667,-74.0063889,New York City (Manhattan),NY,oval,2700,Mass of UFO's converge above the sky of Lower Manhattan in broad daylight +2001-05-15,38.7627778,-93.7358333,Warrensburg,MO,cylinder,900,White cylinder fallowed airforce jets for about 10 to 15 min. untill out of sight. +2001-05-15,42.3805556,-76.8736111,Watkins Glen,NY,circle,900,UFO +2001-05-15,41.1366667,-95.8905556,Bellevue,NE,unknown,50,Bright lights "jumping" across the night sky. +2001-05-15,43.3236111,-76.1169444,Mallory,NY,flash,2,brilliant, flashing, point of white light, travelling at unexpected angles +2001-05-15,28.2438889,-82.7194444,New Port Richey,FL,fireball,600,Red-orange fireball,fell strait down. +2002-05-15,41.3116667,-75.8377778,Wyoming,PA,light,1800,Bright non-blinking Light/Lights Hovering . scanning local Forest area . NOT helicopters- read on. +2002-05-15,31.7952778,-94.1788889,Center,TX,triangle,5,spotted twice, triangular with white lights, no sound +2002-05-15,38.9458333,-105.2888889,Florissant,CO,circle,30,Clear, round, silvery object with a definate flightpath. Right across the sky. Fast! Faster than any other aircraft around it. +2002-05-15,36.9752778,-121.9522222,Capitola,CA,triangle,180,Small triangle with two props 3 feet from each wing tip and perfectly quiet at a low altitude. +2002-05-15,34.4263889,-117.3,Hesperia,CA,diamond,60,Glowing red, shaped like a diamond. +2002-05-15,33.5830556,-84.3394444,Morrow,GA,light,900,Stars in Broad Daylight +2002-05-15,37.9063889,-122.0638889,Walnut Creek,CA,light,180,One orb, followed by a jet, followed, in turn, by another orb. I am not certain exactly when this happened. +2002-05-15,42.2916667,-85.5872222,Kalamazoo,MI,light,4,Fast blue light without sound in Kalamazoo. +2002-05-15,41.2788889,-75.8786111,Forty Fort,PA,chevron,420,20 -25 chevron shaped, lite blue objects flying in a "v" shape hi alt. and hi speed +2002-05-15,40.8352778,-73.6241667,Glen Head,NY,triangle,35,It was many blinking lights in the ski. +2003-05-15,39.3375,-78.9183333,Burlington,WV,triangle,60,05/15/03 24:30 Burlington, W.V. Bright red glowing triangle, hovered,circled ,emitted warm air. +2003-05-15,32.5005556,-94.7402778,Longview,TX,light,900,"star" appeared to be jumping back and forth between two points, very weird. +2003-05-15,48.2413889,-122.3694444,Stanwood,WA,circle,60,Sighting of highly unusual flying object in daylight with excellent viewing conditions in vicinity of jet airliner. +2003-05-15,26.5625,-81.9497222,Cape Coral,FL,sphere,3,i heard fighter jets, and walked out to my pool area and seen a large bright silver orb. very shiny. 2 US military jets flew towards it +2003-05-15,33.0766667,-111.7386111,Sacaton,AZ,teardrop,180,Tearshape - flying with the bulb end first, smooth grey/white in color about 3 feet long. +2003-05-15,40.7280556,-74.0780556,Jersey City,NJ,oval,1,I WAS DRIVING MY CAR WHEN I LOOKED UP AT A STRANGE LIGHT AND OBJECT IN THE SKY. BY THE TIME I GOT TO PULL OVER TO GET A BETTER LOOK, IT +2003-05-15,36.1161111,-98.3166667,Okeene,OK,light,1200,Slow moving red light,with no sound. +2003-05-15,41.2619444,-95.8608333,Council Bluffs,IA,changing,300,small orange light morphing into large triangle(4-5 stories thick) with bright lights on underside +2003-05-15,34.0194444,-118.4902778,Santa Monica,CA,chevron,60,A glowing flock of birds in a symetrical V shape formation +2003-05-15,34.2783333,-119.2922222,Ventura,CA,triangle,5,Black low flying noiseless big triangular shaped craft seen during lunar eclipse +2003-05-15,34.2783333,-119.2922222,Ventura,CA,triangle,10,Triangle and silent with three lights +2003-05-15,44.0886111,-87.6575,Manitowoc,WI,other,180,Bizarre object scene over manitowoc airport +2003-05-15,30.1658333,-81.7066667,Orange Park,FL,teardrop,900,lights over the eclpise +2003-05-15,30.4055556,-86.6188889,Fort Walton Beach,FL,oval,15,Flying Police Car or UFO? +2004-05-15,42.9825,-77.4091667,Victor,NY,disk,35,Red and green flashing lights.spinning travaling fast. +2004-05-15,37.8347222,-97.3730556,Valley Center,KS,triangle,180,MISSOURI INVESTIGATORS GROUP Report: It was unmistakably a triangle. CLEARLY TRIANGULAR. +2004-05-15,40.6916667,-89.795,Hanna City,IL,other,7200,bluish white lights +2004-05-15,30.2263889,-93.2172222,Lake Charles,LA,oval,20,small silvery object blends into surrounding sky +2004-05-15,40.5580556,-90.035,Canton,IL,cigar,3,Dark colored cigar shaped object at high speed (no smoke trail) +2004-05-15,42.2411111,-83.6130556,Ypsilanti,MI,disk,8,5 to 7 saucers move around a few seconds and take off at high rate of speed in same direction. +2004-05-15,37.6941667,-122.0852778,Castro Valley,CA,sphere,60,Sighting over the hills in Castro Valley +2004-05-15,45.5236111,-122.675,Portland,OR,rectangle,600,Dark Cylinder/ Rectangular flying object dips in and out of low clouds over Portland, Oregon +2004-05-15,34.0522222,-118.2427778,Los Angeles,CA,light,900,Spotted Mylar Balloon looking object revolving as it floated above Hollywood Freeway by Vermont Ave. exit. Traffic was at a halt and I +2004-05-15,39.7763889,-74.8627778,Jackson,NJ,circle,600,White orb follows jet aircraft +2004-05-15,25.7738889,-80.1938889,Miami,FL,disk,5,Round glow passes over Miami from East to North West, faster than a jet plane at low altitude +2004-05-15,33.4222222,-111.8219444,Mesa,AZ,circle,3,Large bright light appeared in sky overhead and then quickly dropped down out of my sight. +2004-05-15,47.3225,-122.3113889,Federal Way,WA,cylinder,120,Concentric Cylinders Flat Silver Color with white light +2004-05-15,42.7261111,-87.7827778,Racine,WI,light,240,White light +2004-05-15,30.275,-89.7811111,Slidell,LA,oval,10,Bright white lights seen in open area on road +2005-05-15,34.1647222,-114.3002778,Earp,CA,triangle,16200,Massive number of UFO's observed in one location. +2005-05-15,36.175,-115.1363889,Las Vegas,NV,triangle,30,Huge, glowing triangle flying over route 215 in Las Vegas, NV +2005-05-15,47.8108333,-122.3761111,Edmonds,WA,unknown,60,Glow on porch and two beings plus a "man" +2005-05-15,42.6055556,-83.15,Troy,MI,light,5,A blueish green ball of light that took off on an upward flight in a matter of seconds and disappeared. +2005-05-15,34.4047222,-103.2047222,Clovis,NM,unknown,1200,saw bright, small object in the sky. may be hot air balloon +2005-05-15,36.0958333,-79.2672222,Mebane,NC,teardrop,420,Black object floating across Spring morning sky over Mebane +2005-05-15,39.2666667,-81.5616667,Parkersburg,WV,oval,20,Saw a ufo on the way to school near a cow field. ((NUFORC Note: Student report. PD)) +2005-05-15,34.4838889,-114.3216667,Lake Havasu City,AZ,disk,1800,Silver ufo dics observed from Lake Havasu City in broad light. +2005-05-15,36.7477778,-119.7713889,Fresno,CA,other,30,Irregular shaped silver object +2005-05-15,44.8041667,-93.1666667,Eagan,MN,disk,60,We saw them flying over the school about a half mile away. The came straight down and then stopped above the school and took off and di +2005-05-15,33.4669444,-117.6972222,Dana Point,CA,cross,60,The sun had just set at around 8 PM and I was looking in my binoculars in to the horizon which was still lit by the glow of the sunset. +2005-05-15,44.2336111,-83.8030556,Whittemore,MI,unknown,60,Sightings in iosco county michigan by 4 diffrent people +2005-05-15,36.175,-115.1363889,Las Vegas,NV,light,60,looked like a sattelite in speed,shape and color +2005-05-15,33.0677778,-80.9538889,Lodge,SC,formation,240,I saw 5 little lights circling a 6th larger light in CW rotation then the little lights stopped the rotated in the opposite dir.. +2005-05-15,28.5380556,-81.3794444,Orlando,FL,light,300,White lights ((NUFORC Note: Possible satellites? PD)) +2005-05-15,28.5380556,-81.3794444,Orlando,FL,sphere,300,Lights moving across the Central Florida sky ((NUFORC Note: Possible satellites? PD)) +2005-05-15,28.8827778,-81.3088889,Debary (Central Fl),FL,light,300,lights joining and flying in formation across central florida sky +2005-05-15,27.9472222,-82.4586111,Tampa,FL,unknown,60,Moving "star" that started out stationary and sped off at high altitude. +2005-05-15,33.7458333,-117.8252778,Tustin,CA,diamond,120,My friends and i were outside at a local park. and all of a sudden we see an extreemly bright light, non of us had seen something that +2005-05-15,37.8316667,-78.7377778,Faber,VA,triangle,90,craft was deltiod in shape had white lights at each end non blinking a red light in the center which blinked made a dull rumble when di +2005-05-15,31.7586111,-106.4863889,El Paso,TX,circle,120,bright blue space ship? +2006-05-15,42.1666667,-83.7816667,Saline,MI,disk,600,i was in a tent in my backyard with my friends, when we heard this loud, strange noise. i popped my head out of the tent and looked up +2006-05-15,39.6133333,-105.0161111,Littleton,CO,other,600,Dozens of tiny specks floating, pulses of light, green object; comet like +2006-05-15,36.8572222,-88.3502778,Benton (Aurora),KY,cigar,90,cigar shaped chrome object moves slowly at first, then zips across the sky ((NUFORC Note: Student report. PD)) +2006-05-15,38.6922222,-122.0161111,Esparto,CA,disk,3,Large circular object appears and disappears in place in broad daylight in a clear blue sky. +2006-05-15,41.2761111,-72.8688889,East Haven,CT,other,15,Daytime sighting, boomerang-like shape, camo color +2006-05-15,46.7325,-116.9991667,Moscow,ID,triangle,35,I was sitting in the passenger's side of the car, and i saw a dark triangular shape in the sky, and then drift in the clouds. +2006-05-15,37.9886111,-84.4777778,Lexington,KY,cigar,2,Large orange/red glowing cigar shaped object seen off Man O' War blvd. +2006-05-15,33.4352778,-112.3575,Goodyear,AZ,light,900,Arizona Lights In The Sky Are Back +2006-05-15,25.7738889,-80.1938889,Miami,FL,formation,300,Formation over Miami may ᄶ +2006-05-15,39.2902778,-76.6125,Baltimore,MD,egg,900,Stationary long objet with dome in middle. Red/orange & blue lights kept shining with varying degrees of intensity. +2007-05-15,47.6063889,-122.3308333,Seattle,WA,circle,3,Large circular object quickly streaked across sky heading north, lasted couple seconds then lost sight. +2007-05-15,40.8119444,-74.1247222,Lyndhurst,NJ,disk,120,UFO sited on fire - forest fire later reported caused by F-16 flare exercise +2007-05-15,39.0416667,-76.0666667,Centreville,MD,other,300,just above the treeline i saw a silver globe (not perfectly shaped) it had a heat type haze around it. it was perfectly still and was +2007-05-15,38.5922222,-89.9111111,O'fallon,IL,sphere,60,it was old and just repaired +2007-05-15,38.8113889,-89.9530556,Edwardsville,IL,triangle,900,Very large triangular shaped object with points of bright white light moving very slowly across a field and then following a highway. +2007-05-15,33.8583333,-118.0638889,Cerritos,CA,unknown,360,Very bright lights in a cluster hovering below the marine layer. +2007-05-15,28.8022222,-81.6447222,Mt. Dora,FL,unknown,15,Large Green Laser Shot into Sky +2007-05-15,26.3394444,-81.7788889,Bonita Springs,FL,circle,2700,White circle of multiple lights in Bonita Springs, FL +2007-05-15,38.8994444,-81.425,Reedy,WV,changing,2700,It started like a bright star,then moved quickly across the sky, changing colors. ((NUFORC Note: Star or planet?? PD)) +2007-05-15,41.5236111,-90.5775,Davenport,IA,triangle,480,Pyramid constilation UFO slowly move across night sky +2007-05-15,41.5963889,-72.8780556,Southington,CT,fireball,15,A fireball-like object twice the size of a star appeared and moved north with great speed, followed by a flash of light. +2008-05-15,33.4708333,-81.975,Augusta,GA,cylinder,10,Small Orb Decends from Sky, appears from no where +2008-05-15,42.325,-71.0958333,West Roxbury,MA,triangle,120,I saw a triangular shaped opject, lit at all three corners with a bluish light, move across the sky not too far above my house, +2008-05-15,36.6211111,-93.2152778,Hollister,MO,other,2,Hollister MO boomerang 2 to 3 seconds boomerang object flew right over me. about 5 am +2008-05-15,43.22,-78.3872222,Medina,NY,changing,2700,Saw 3 orange round lights motionless,change shapes and move eratically ,vanish and reappear.Have video +2008-05-15,38.2958333,-121.2433333,Herald,CA,disk,900,UFO in the sky on my drive home from school +2008-05-15,40.7280556,-74.0780556,Jersey City,NJ,changing,60,ufo jersey city blurr became 3 energy/light orbs which lapped & toyed with 747 jet +2009-05-15,44.3633333,-98.2138889,Huron,SD,light,900,Red flashing lights that apeared randomly across the sky. +2009-05-15,45.0788889,-123.4847222,Willamina,OR,formation,10,2 dozen flickering lights in perfect triangle formation +2009-05-15,40.7977778,-85.8205556,Wabash,IN,light,120,3 u.f.os over indiana +2009-05-15,34.4691667,-96.2161111,Lehigh,OK,light,180,Extremely fast moving, non-flashing, non-airline, non-meteoric, non-star Light +2009-05-15,41.0463889,-73.95,Orangeburg,NY,triangle,120,Triangular shape emerging from cloud spotted in NY. +2009-05-15,42.5005556,-90.6644444,Dubuque,IA,circle,10,Red glowing ball taking off before thunderstorm arrived on location +2009-05-15,38.7522222,-121.2869444,Roseville,CA,fireball,5,Bright, white to green round light moved very fast across evening sky +2009-05-15,39.3119444,-121.4166667,Loma Rica,CA,teardrop,2,Bright green spherical object seen from Loma Rica Road, Loma Rica, CA. +2009-05-15,34.4208333,-119.6972222,Santa Barbara,CA,light,20,Dim Green Lights viewed in the University of California, Santa Barbara +2009-05-15,32.5005556,-94.7402778,Longview,TX,unknown,5,My local television station had given the time of a passover of the international space station on this date (which I cannot remember e +2009-05-15,33.3527778,-111.7883333,Gilbert,AZ,light,180,UFO seen dancing in the Eastern Arizona sky on 5/15/09. +2009-05-15,37.6819444,-121.7669444,Livermore,CA,light,30,The event took place at roughly 10:15 PM. Me and three other friends where out in a large pitch black field playing "Airsoft" wile stan +2009-05-15,35.3272222,-96.925,Shawnee,OK,light,15,Orange light moving accross sky that turned bright white and vanished in Shawnee, OK 5/15/2009 +2009-05-15,48.3636111,-120.1211111,Twisp,WA,circle,600,Larger then planet size green glittering object with red lights in it, hovering high above town in the eastern sky. +2009-05-15,41.6061111,-73.1186111,Watertown,CT,circle,120,bright red orange light in nightsky full circle smoothe moving +2009-05-15,36.5569444,-89.9663889,Malden,MO,oval,15,Solid oval light moving extremely fast. +2010-05-15,36.8188889,-76.2752778,Chesapeake,VA,unknown,300,Bright, strange light. +2010-05-15,36.0525,-95.7905556,Broken Arrow,OK,light,300,Two orange lights moving across the sky in formation and then each one dimmed and disappeared. +2010-05-15,41.85,-87.65,Chicago,IL,sphere,360,A Pitch black sphere slowly hovered, moving in a south-eastern direction. +2010-05-15,33.4483333,-112.0733333,Phoenix,AZ,unknown,2700,Very Large Object. +2010-05-15,40.6686111,-74.1147222,Bayonne,NJ,light,15,A strange light/object that accelerated and changed altitude suddenly. +2010-05-15,39.7391667,-104.9841667,Denver,CO,light,10800,On May 15, 2010 I witnessed four ufo's that looked like bright stars or satellites. ((NUFORC Note: Satellites?? PD)) +2010-05-15,32.1430556,-81.3780556,Meldrim (Closest Municipality),GA,unknown,900,Saw triangular object with red and white lights hovering over the interstate. +2010-05-15,40.2169444,-74.7433333,West Trenton,NJ,light,3600,Static bright light witnessed on two separate nights. ((NUFORC Note: If in the NW sky, probably Venus. PD)) +2010-05-15,32.9477778,-112.7161111,Gila Bend,AZ,fireball,600,Driving West on the I-10 Freeway moments from entering I-8, as the sun set, I gained sight of the crescent Moon and slightly North West +2010-05-15,39.8308333,-77.2313889,Gettysburg,PA,other,30,Loud noise with line of changing colors and disappearing! +2010-05-15,39.3175,-74.595,Somers Point,NJ,light,45,I went outside to look at Venus and the Crescent Moon and caught a look at a light that appeared to be an airplane. I followed the lig +2010-05-15,36.175,-115.1363889,Las Vegas,NV,cross,30,Radially flashing lights on cross shaped object in Eastern sky. +2011-05-15,42.6827778,-89.0186111,Janesville,WI,triangle,480,Waiting at a bus stop, a lot of strange stuff happened only a minute before witnessing an object I will NEVER forget! +2011-05-15,33.8675,-117.9972222,Buena Park,CA,light,480,3 very bright lights in triangle formation move across sky +2011-05-15,33.5975,-112.2711111,Sun City,AZ,triangle,300,It was just before dark at dusk. I just moved in and was looking at the sky to my left. I saw an orange upside down triangle in the s +2011-05-15,42.7852778,-88.405,East Troy,WI,triangle,900,Red, white, green flashing lights, followed by a triangle shaped slow moving object that hovered over lake +2012-05-15,41.4941667,-87.5216667,Dyer,IN,sphere,60,Blue orb shaped craft.Getting off of work late at night while driving home possibly 12:30 a.m. I was rounding a stretch of road were I +2012-05-15,41.7141667,-72.6530556,Wethersfield,CT,fireball,5,((NUFORC Note: Witness provides no information. PD)) +2012-05-15,33.7475,-116.9711111,Hemet,CA,unknown,3,I'm not really sure what it was but while driving down stetson road next to Ryan Airport at around 3:15 a.m., I saw what looked like a +2012-05-15,27.3016667,-82.5516667,Siesta Key,FL,fireball,300,fireball flying low over canal waters went then flew higher slowly into space +2012-05-15,47.3794444,-94.6038889,Cass Lake (Driving Through),MN,unknown,4,Bright green hovering aircraft over Cass Lake, MN, and Brainerd, MN. +2012-05-15,40.2708333,-74.0166667,Oakhurst,NJ,flash,2,See above +2012-05-15,38.7291667,-87.6816667,Lawrenceville,IL,circle,180,UFO in southeastern Illinois +2012-05-15,40.0063889,-75.7036111,Downingtown,PA,oval,300,Reddish/orange objects flying in sync one behind the other. +2012-05-15,37.9722222,-81.1488889,Oak Hill,WV,chevron,20,a large boomerang shaped craft with glowing pulsating front edge soared silently at about cloud level for about 25 secs on clear night +2012-05-15,43.5863889,-119.0530556,Burns,OR,light,3600,Three orange lights perform amazing display near Burns, Oregon. +2012-05-15,34.1425,-118.2541667,Glendale,CA,fireball,1200,Three fireballs chased after police helicopter +2012-05-15,35.3519444,-75.5108333,Avon,NC,sphere,1200,Orange orbs hovering over the beaches of North Carolina along with erratically behaving white lights +2012-05-15,27.9472222,-82.4586111,Tampa,FL,circle,180,2 Orange Lights +2012-05-16,34.1425,-118.2541667,Glendale,CA,fireball,2700,Two of the red fireballs chasing police helicopter also have a photo +2013-05-15,26.5216667,-82.1894444,Captiva,FL,light,120,Sighting #13 of four amber lights of the same kind that have been seen at least 6 times in this area recently. +2013-05-15,34.8525,-82.3941667,Greenville County,SC,oval,120,Slow moving/hovering sparkler type light with no sound 250 feet in air 1230 at night. +2013-05-15,34.7047222,-81.2144444,Chester,SC,other,20,A small sphere that hovered above the air strip and zig zagged in the same area, hovered, and zig zagged some more. +2013-05-15,36.7477778,-119.7713889,Fresno,CA,circle,14400,MUCH TOO WINDY FOR PARACHUTE OR WEATHER BALLOON TO REMAIN STATIONARY. +2013-05-15,39.7391667,-104.9841667,Denver,CO,circle,60,Silver circle with black triangle ahead of storm. +2013-05-15,32.7252778,-114.6236111,Yuma,AZ,light,240,Yuma UFO May 15 with incredible movement. Video +2013-05-15,38.4416667,-81.9169444,Scott Depot,WV,sphere,120,Orange orb and slow moving meteorites in Putnam County, WV. +2013-05-15,36.0152778,-83.415,Dandridge,TN,sphere,300,Orange/red light at low altitude flying at steady speed +2013-05-15,26.5216667,-82.1894444,Captiva,FL,fireball,120,Four "fireballs" seen over Captiva Island, FL +2013-05-15,35.2155556,-94.2555556,Greenwood,AR,light,2700,Four of us saw 2 or more pulsating light flashes spinning in the same spot for a period of 45 minutes. Then several very bright flashes +2013-05-15,35.6869444,-105.9372222,Santa Fe,NM,unknown,600,Very large object at night, a large cabin lighted at the front, red light at rear, absolutly no navigation lights +2013-05-15,45.3055556,-93.7938889,Monticello,MN,unknown,30,Faint craft almost invisible with 2 burners like a fighter jet. +2013-05-15,33.5805556,-112.2366667,Peoria,AZ,light,300,Light Formation Seen Over West Wing Mountain, Peoria, Arizona. +2013-05-15,37.2152778,-93.2980556,Springfield,MO,light,900,blue light(s) disappearing and reappearing in sporadic flight pattern +2013-05-16,41.6483333,-70.4816667,Mashpee,MA,other,600,I WAS SLEEPING AND LIGHTS WORK ME UP THERE WERE FLASHING IN MY BEDROOM FIRST I THOUGHT IT WAS A AMBULANCE SO I GOT UP LOOK OUT SIDE LOO +1958-05-17,39.1619444,-84.4569444,Cincinnati,OH,diamond,86400,5/16/1958/ 1500 hours/ just getting dark,mount arity forest +1970-05-16,27.6383333,-80.3975,Vero Beach,FL,oval,120,My step-father and I were drining a coffee of coffee on our porch, waiting for my mother to get home from work...it was still daylight +1976-05-16,41.4138889,-73.3038889,Newtown,CT,fireball,300,meteor like object about 20 feet from us +1995-05-16,47.1719444,-122.5172222,Lakewood,WA,fireball,180,I didn't know that there was a place to report such things. It took place back when I was 16, I am 34 now. +1995-05-16,28.9538889,-95.3594444,Freeport,TX,other,180,my brother and i and a few of his friends were in the back yard of our property. As we were watching our kids on their trampoline we no +1996-05-16,39.0836111,-84.5086111,Covington,KY,other,1500,object trails three through city, seen by alot, video taped +1997-05-16,35.4675,-97.5161111,Oklahoma City,OK,triangle,300,3 TRIANULAR OBJECTS HOVERING APPROX. ONE MINUTE, OBJECTS QUICKLY DARTED UP THEN MOVED FROM EAST TO SOUTHWEST, AT MODERATE PACE. +1998-05-16,34.2255556,-77.945,Wilmington (Off Coast Of),NC,unknown,180,Dark figure buzzed our boat and it wasn't an airplane! +1998-05-16,43.676944399999996,-70.3716667,Westbrook,ME,oval,40,This was my Prom night last year, basically my date and I were on our way back to my house, we were on route by my car and I noticed an +1998-05-16,39.7661111,-105.0766667,Wheat Ridge,CO,cylinder,17,i was coming home, and i saw a bright light in the clouds. it was cylinder shapped with a pointed edge.then it dissipeared behind the c +1998-05-16,38.9822222,-94.6705556,Overland Park,KS,fireball,2,A fireball bounced out of the ground. +1998-05-16,45.2333333,-93.2911111,Andover,MN,light,420,my brothers and i thought we were looking at a shooting star that started moving in diferent directions as it started moving away and g +1998-05-16,37.7975,-121.215,Manteca,CA,triangle,50,object was flying from north to south.at arms length a silverdollar would have been the size.no noise,very low.2 large lights on bottom +1998-05-16,39.1416667,-104.0833333,Simla,CO,changing,7,went ouy looked up green ball of light decended like a metor then split and right object went off at 90 degrees. +1999-05-16,40.7905556,-73.2022222,Central Islip,NY,oval,720,Oval shapped lighted object split off into 4 smaller oval objects, followed me North then West, then East, for 12 minutes. +1999-05-16,42.5461111,-88.1655556,Silver Lake (On The Fox River),WI,light,30,four points of bright white light flying erraticly from east to west +1999-05-16,29.4238889,-98.4933333,San Antonio,TX,light,3600,My wife was sitting on the back porch that faces west I went outside and me and 3 other people watched it while I took pictures. +2000-05-16,35.2269444,-80.8433333,Charlotte,NC,egg,60,A small, white object followed a plane about to land at the Charlotte airport. +2001-05-16,38.4436111,-90.2011111,Columbia,IL,cigar,2700,A rectangular, yellow band of light from an object that made very quick, precise movements in any direction. +2001-05-16,34.4208333,-119.6972222,Santa Barbara,CA,disk,45,Played peek-a -boo behind a cloud, common for Santa Barbara. +2001-05-16,35.4675,-97.5161111,Oklahoma City (South West Of),OK,triangle,3,I was standing on the front porch of my home,which faces south, leaning against the railing and looking at the stars. I saw what looked +2001-05-16,32.6208333,-83.6,Warner Robins,GA,circle,120,I have never seen anything like this before +2002-05-16,38.6269444,-88.9455556,Salem,IL,sphere,2,Me and another person have witnessed a pinball-like object gliding through the sky on multiple occasions. +2002-05-17,39.0061111,-77.4288889,Sterling,VA,light,600,A star that skowly but surely changed its position near the moon. +2003-05-16,31.0558333,-97.4641667,Belton,TX,unknown,2700,Dozen or more lights darting in and out of a thunderstorm +2003-05-16,40.2794444,-86.5108333,Frankfort,IN,light,1200,Orange lights in the Indiana sky, 4 witnesses. +2003-05-16,40.6027778,-86.8672222,Brookston,IN,light,1200,2nd of 3 Sightings from March 2003 to April 2004 - Yellow/Orange Lights in Formation +2003-05-16,33.6408333,-117.6022222,Rancho Santa Margarita,CA,disk,60,shiny disc in the sky freaked me out +2003-05-16,30.5080556,-97.6786111,Round Rock,TX,other,3600,There was a large group of lights that were moving all over the sky just in one spot. +2004-05-16,40.6213889,-79.1527778,Indiana,PA,light,3600,Hovering and hiding UFO Light above Jimmy Stewart Airport in Indiana Pennsylvania +2004-05-16,40.1211111,-90.5630556,Rushville,IL,triangle,480,We saw a trianglar shaped craft in the back woods of western Illinois. +2004-05-16,43.1705556,-78.6905556,Lockport,NY,circle,300,Wierd moving lights in the sky +2004-05-16,38.7908333,-121.2347222,Rocklin,CA,disk,1200,Saucer spotted near Rocklin CA in clear, mid-morning. Observed for 20 minutes +2004-05-16,26.1416667,-81.795,Naples,FL,disk,5,what ever it was it was halin ass from a complete standstill to like out of sight 2 -3 second tops +2004-05-16,42.4030556,-86.2736111,South Haven,MI,sphere,3,Glenn Haven private beach, bonfire sunday night of the 16th. 3 of us enjoying the warm summer night. About 11:40pm Britney said "did yo +2004-05-16,33.4483333,-112.0733333,Phoenix (75 Miles West Of),AZ,circle,2,A light the shape and size of the moon moving East to West across the Suther sky about 5 to 10 degrees above horizon in the AZ desert +2004-05-16,33.4222222,-111.8219444,Mesa,AZ,circle,10,Gunsight AZ UFO sighting +2004-05-16,43.073055600000004,-89.4011111,Madison,WI,fireball,5,greenish-bluish fireball like object streaking across NW sky. +2004-05-16,32.2216667,-110.9258333,Tucson,AZ,sphere,5,Bright Sphere Falls Towards Horizon, then Moves Horizontally across Tucson Night Sky, May 16th, 2004 +2004-05-16,43.0388889,-87.9063889,Milwaukee,WI,fireball,15,Heading east toward Milwaukee, bright green fireball descending to the north, visible for about 15 seconds +2004-05-16,41.8661111,-88.1069444,Wheaton,IL,fireball,5,A large, comet-like oval green fireball with a short dark yellow tail passed overhead sotheast to northwest for about 5 seconds. +2004-05-16,42.3683333,-83.3527778,Livonia,MI,rectangle,1140,A bright light appeared in the sky West of our house and remained their for about 20 minutes and left with incredibale speed. +2004-05-16,42.9836111,-77.3261111,Farmington,NY,fireball,4,fireball came out of northern sky toward the south and vanished +2005-05-16,37.1694444,-104.5,Trinidad,CO,sphere,60,Object over Trinidad +2005-05-16,42.5355556,-72.5355556,Montague,MA,light,600,A bright light hovering silent over a field 150 yards out, it moved over th tracks and was gone. +2005-05-16,40.3041667,-73.9927778,Long Branch,NJ,other,600,I lived in an apartment right on the beach. It was approximately 4 or 5 in afternoon and partly cloudy. A friend and I were on the ba +2005-05-16,35.4675,-97.5161111,Oklahoma City,OK,triangle,480,triangular shaped craft two. hovering then following each other at highrate of speed. three extreemly bright light two white one red +2006-05-16,41.9902778,-70.9755556,West Bridgewater,MA,light,30,"Meteor" rapidly decelerates and changes direction, procedes to fly off as if it were a normal aircraft. +2006-05-16,47.8211111,-122.3138889,Lynnwood,WA,rectangle,900,A bright light caught my eye in the sky to the west. It seemed to hover in circles. I went to get binoculars, 6x30, & located object +2006-05-16,42.3027778,-72.775,Westhampton,MA,other,1200,Colorful spinning ferris-wheel-shaped object seen in Northwest sky. +2006-05-16,29.3625,-100.8963889,Del Rio (35 Miles Outside Of),TX,other,900,Sighting of prism like craft on the devils river in west Texas +2006-05-16,35.5941667,-119.34,Wasco,CA,unknown,600,it was a bright red +2006-05-16,42.7875,-86.1088889,Holland,MI,unknown,240,Object with shimmering lights (no sounds) at low elevation seen over Holland Michigan +2007-05-16,42.2411111,-83.6130556,Ypsilanti,MI,triangle,300,large triangle craft with more then normal lights turning at right angles quickly and slowly +2007-05-16,40.1794444,-118.4725,Lovelock,NV,cigar,900,Yesterday a friend called to let us know he had been in SFO,CA and left on the 16 and tried to visit us but no answer to his call.We ch +2007-05-16,26.2155556,-98.325,Mission,TX,circle,1800,Unkown Squadron +2007-05-16,44.0288889,-88.1627778,Chilton,WI,triangle,240,triangle made almost no noise +2007-05-16,32.7666667,-96.5988889,Mesquite,TX,unknown,10,Bright white glowing object in the southern sky +2007-05-16,45.5236111,-122.675,Portland,OR,light,10,Bright, Disappearing Object in Portland Night-Sky +2008-05-16,37.4791667,-82.5188889,Pikeville,KY,light,300,Four red sequenced blinking lights in a diagonal bar formation sighted in Kentucky. +2008-05-16,40.7141667,-74.0063889,New York City,NY,light,40,star like, zig zag flight +2008-05-16,48.7597222,-122.4869444,Bellingham,WA,light,5,2 green wobbly lights hovering at my second story window, 3 times about 10 minutes apart lasting 5 seconds each. +2008-05-16,33.0416667,-116.8672222,Ramona (Near),CA,light,20,Large light in the sky in San Diego County, the light turned off while I was watching it and did not reappear;was not a planet. +2008-05-16,35.9786111,-114.8316667,Boulder City,NV,light,300,Bright red/orange lights in the greater Las Vegas area +2008-05-16,38.6780556,-121.175,Folsom,CA,circle,15,Extremely fast, bright light flies then disapears +2008-05-16,35.4366667,-94.3480556,Van Buren,AR,changing,300,Strange Lights Hovering and Breaking Into Multiple Different Lights over Van Buren, AR +2008-05-16,38.8105556,-90.6997222,O'fallon,MO,light,2400,Bright flickering object seen in Western/Northwestern sky. ((NUFORC Note: Twinkling star?? PD)) +2008-05-16,40.5544444,-123.1819444,Hayfork,CA,fireball,1,Possible meterorite +2008-05-16,47.1302778,-119.2769444,Moses Lake,WA,circle,120,strobe lights going over highway and through field +2009-05-16,32.3122222,-106.7777778,Las Cruces,NM,cylinder,480,Large white cylinder UFO around passenger jet +2009-05-16,45.67,-121.8894444,Cascade Locks,OR,light,30,bright light bolting across the evening sky +2009-05-16,47.6816667,-122.2075,Kirkland,WA,changing,2700,THERE HERE! UFO'S EXPLORING IN KIRKLAND WA. ((NUFORC Note: Twinkling stars?? PD)) +2010-05-16,34.0702778,-117.395,Bloomington,CA,formation,600,Sighting by about 10 persons aged 6-50, orange redish pulsating globes, southern california +2010-05-16,41.9666667,-71.1875,Norton,MA,circle,50,Ufo flyover on a partly cloudy night +2010-05-16,39.7391667,-104.9841667,Denver,CO,unknown,2700,On May 16, 2010 I witnessed a number of strange objects in the day time sky. +2010-05-16,38.2775,-85.7372222,Jeffersonville,IN,circle,60,small white circlular craft, saw bright big colors, then in an instance gone +2010-05-16,39.9522222,-75.1641667,Philadelphia,PA,disk,300,3 disk shaped object's hovering over my house on may 16th 2010 +2010-05-16,45.16,-92.9930556,Hugo,MN,other,180,Two bright lights, pentagonal in shape an red in color, moved across the northern sky, hovered, then flew off quickly. +2010-05-16,42.2711111,-89.0938889,Rockford,IL,diamond,1080,((HOAX?)) At 11 O Clock Pm Me And My Friend Saw A Dimond Shped Object That Shot A Bliding Light At Us But No Damage +2010-05-16,45.8625,-122.6691667,La Center,WA,flash,5,bright blue/white light +2011-05-16,33.8702778,-117.9244444,Fullerton,CA,fireball,720,Giant fireball in the sky as well as a huge blue flash +2011-05-16,45.6091667,-94.4513889,Avon,MN,light,240,5 orange lights seen over Avon, Minnesota. +2011-05-16,32.7252778,-97.3205556,Fort Worth,TX,formation,900,10 flashing white lights hovering in place. Pyramid formation. Disappeared after 20 minutes +2011-05-16,41.6105556,-86.7225,Laporte,IN,cigar,1,cigar shaped craft +2011-05-16,42.44,-85.6488889,Plainwell,MI,flash,2,Extremely large and bright light seen on 8th Street and Miller Road in Plainwell, Michigan. +2011-05-16,41.5236111,-90.5775,Davenport,IA,circle,60,Silent moving, dark, circular object with reflective bottom moving over houses in Davenport, IA. +2012-05-16,47.1166667,-114.7791667,Lozeau,MT,triangle,480,IT WAS MIDNIGHT, AND MY NEIGHBOR WENT OUTSIDE TO PUT HIS DOGS IN THE KENNEL, AND OBSERVED A BLACK TRIANULAR SHAPED CRAFT, BELIEVED TO B +2012-05-16,39.8125,-85.1716667,Cambridge City,IN,unknown,120,Small object with green and red lights slowly flying and rotating near a state highway. +2012-05-16,44.8994444,-97.1147222,Watertown,SD,unknown,120,Unknown reconnaissance craft possibly fron Nevada or Califorinia areas.. +2012-05-16,41.6619444,-86.1586111,Mishawaka,IN,sphere,300,3 circular dark ufos seens south of Mishawaka, IN +2012-05-16,37.2152778,-93.2980556,Springfield,MO,oval,180,Bright orange oval object over Springfield Missouri +2012-05-16,33.9163889,-118.3516667,Hawthorne,CA,oval,30,Black, round to slightly oval unlit object (except for the little blink my daughter saw), fast moving in one direction +2012-05-16,37.2152778,-93.2980556,Springfield,MO,light,30,Springfield,MO. A white light the size of a star moving at a high rate of speed!! +2012-05-16,30.9636111,-81.7227778,Woodbine,GA,sphere,4,Green bright ball shooting across sky leaving orange trail and disappears +2012-05-16,34.2783333,-119.2922222,Ventura,CA,triangle,6,I opened the front door to look at the stars. The few stars I could see did not look bright tonight. A distortion pattern of the sky +2013-05-16,37.5536111,-77.4605556,Richmond,VA,triangle,30,9-10 circular lights in triangle formation off Chamberlayne exit RICHMOND, VA. +2013-05-16,37.7477778,-84.2947222,Richmond,KY,triangle,180,UFO Sighted Outside of Richmond KY. +2013-05-16,33.3652778,-117.0758333,Pala,CA,fireball,120,Bright Ball of Fire flying over Pala Rez Ca, this yellow fire ball moved fast and was quiet!!! Locals say it was Taquitz... +2013-05-16,39.5538889,-104.9688889,Highlands Ranch,CO,unknown,600,Floating high-altitude searchlight southeast of Denver, 5/16/2013 +2013-05-16,21.3069444,-157.8583333,Honolulu,HI,egg,60,Grey roundish object illuminating in the sky near diamond head, honolulu +2013-05-16,36.8252778,-119.7019444,Clovis,CA,other,10,Dark three curved shaped object at Clovis, CA +2013-05-16,38.8002778,-90.6263889,Saint Peters,MO,fireball,120,3 fireballs flying silently and slowly across sky +2013-05-16,41.85,-87.65,Chicago,IL,triangle,8,3 orbs in triangle formation (or 3 lights on a really big triangle?) over Chicago going NE to SW +2013-05-16,28.5491667,-81.7730556,Clermont,FL,fireball,720,4 mysterious lights over central Florida. +2013-05-16,41.2230556,-111.9730556,Ogden,UT,triangle,15,low flying silent triangular object with no lights. +2013-05-16,20.785,-156.4655556,Kihei,HI,fireball,3,A golden fireball in free fall west of Maui +1956-05-17,34.7744444,-96.6780556,Ada,OK,circle,20,This was a result of a prayer or telepathic request. Seti is a load of crap. +1976-05-17,41.2813889,-73.4986111,Ridgefield,CT,unknown,900,Saw individuals that were not human. +1983-05-17,30.4380556,-84.2808333,Tallahassee,FL,unknown,600,Faint light zips back and fourth across sky +1988-05-17,41.85,-87.65,Chicago,IL,chevron,900,V shaped tubular object . +1991-05-17,39.7588889,-84.1916667,Dayton,OH,oval,120,Ufo seen near Wright Pat airforce base +1993-05-17,44.4583333,-93.1613889,Northfield,MN,oval,5,Oval luminous object traveling north at tremendous speed. Elongated at exceleration. Was not transparent. Sky: unlimited,clear visib +1994-05-17,38.8986111,-92.1233333,Millersburg,MO,light,2700,Strange lights in Millersburg +1995-05-17,43.1547222,-77.6158333,Rochester,NY,flash,600,I was a superviser in a machine shop B shift,my guys had lunch at nine.They were going out to get something to eat,and I was still +1997-05-17,36.175,-115.1363889,Las Vegas (About 60 Miles Outside Of),NV,triangle,300,I seen something at night outside of Las Vegas. In short, this whatever it was, was silent, in what seemed to be in the shape of a tria +1997-05-17,45.5236111,-122.675,Portland,OR,oval,4,I sighted a rather large silver object,Oblong but not rounded it was visible for 5 sec.then gone in a blink. +1998-05-17,40.125,-79.8666667,Belle Vernon,PA,other,2400,Explosion of a bright white very high flying "Torroid" shaped craft. +1998-05-17,42.9205556,-83.045,Almont,MI,circle,15,We saw a torroid shaped object moving due south at a high rate of speed. +1998-05-17,38.8338889,-104.8208333,Colorado Springs,CO,light,10,small obj. size=bright star moving NNW to SSE altitude undetermined, but too low for satelite. Light began to dim then we assume it cl +1998-05-17,44.3733333,-86.0102778,Kaleva,MI,light,420,Light approached from the SE; nother approached from the N; close proximinity. ((NUFORC Note: Satellites?? PD)) +1998-05-17,40.7608333,-111.8902778,Salt Lake City,UT,triangle,10,My father was outside looking at stars, and he came in to get me. He told me that he had seen three lights go across the sky at a very +1999-05-17,42.489444399999996,-83.1447222,Royal Oak,MI,triangle,6,I am a 59 year old self employeed female. Yesterday right before a severe thunderstorm coming out of the SW and headed toward the NE I +2000-05-17,39.7458333,-75.5469444,Wilmington,DE,other,300,It was football-shaped, totally illuminated with white/grey(the body)2 rows of strobing white lites top and bottom +2000-05-17,30.275,-98.8716667,Fredericksburg,TX,teardrop,60,I saw a black, teardrop shaped u.f.o. flying overhead. +2000-05-17,40.8052778,-74.2041667,Glen Ridge,NJ,circle,60,Orb of fast-moving light sighted in GLen Ridge, NJ. +2000-05-17,35.614444399999996,-88.8138889,Jackson,TN,sphere,45,Sphere of light traveling in opposite direction disappear before near certain collison +2000-05-17,35.3733333,-119.0177778,Bakersfield,CA,cross,30,Very strange three sided large object hovering then moved slowly through Bakersfield Ca. neighberhood around Stockdale and Montclair +2000-05-17,45.5227778,-123.8880556,Bay City,OR,oval,15,Two large oval lights, side by side, like giant headlights in the sky. There was aircraft noise at 10:02pm I saw the lights at 9:45pm +2001-05-17,41.525,-88.0816667,Joliet,IL,sphere,180,Fifty foot across sphere about 60 feet above a busy street in a bright sunny day. but hidden in the trees of a park and golf course +2001-05-17,41.525,-88.0816667,Joliet,IL,sphere,300,Bolingbrook sighting in Illinois on May 17th 2001 +2001-05-17,42.0347222,-93.6197222,Ames,IA,triangle,180,Credible witnesses, using binoculars, checking details of huge, nearby object. +2001-05-17,42.0347222,-93.6197222,Ames,IA,triangle,240,Large triangular craft travels slowly at low altitude over Ames, IA +2001-05-17,38.6447222,-121.2711111,Fair Oaks,CA,triangle,180,Three frightened students and a teacher see a most unusual sight in the night sky... +2002-05-17,34.2783333,-119.2922222,Ventura,CA,cone,900,An unidentified object floats above the western sky and then vanishes only leaving a smokey trail behind. +2002-05-17,43.8005556,-70.1872222,Yarmouth,ME,light,600,Zig zagging object emitting bright light w/faint redish hue flying very high, hovering, circling - like a tadpole swimming. +2003-05-17,44.7677778,-93.2775,Burnsville,MN,cigar,2,cigar shaped UFO +2003-05-17,39.7697222,-74.8877778,Atco,NJ,oval,300,UFO spotted in Atco NJ in wooded area. +2003-05-17,42.7480556,-71.8547222,New Ipswich,NH,disk,120,Saucer/octogon shaped craft landed in the woods behind the church by my house. +2003-05-17,30.5080556,-97.6786111,Round Rock,TX,unknown,120,The lights seemed to be chasing each other, no patterns +2003-05-17,29.7630556,-95.3630556,Houston,TX,other,25,Several gray spheres moving together in a rolling pattern smooth and silent across the Houston sky +2004-05-17,38.6272222,-90.1977778,St. Louis,MO,light,30,moving light over St. Louis, MO +2004-05-17,40.2433333,-88.6425,Farmer City,IL,light,5,Saw a neon bright blinking light in straight line in middle of afternoon disappear behind a cloud. +2004-05-17,37.9841667,-120.3811111,Sonora,CA,disk,600,Two Silver Disc-Shaped Objects Hovered for 10 Minutes over Sonora, CA +2004-05-17,33.4147222,-111.9086111,Tempe,AZ,teardrop,4,Light over tempe +2004-05-17,37.3394444,-121.8938889,San Jose,CA,sphere,120,Light spotted early evening moving rapidly for 30 sec then becoming stationary appearing as white bell-jar shape. +2004-05-17,35.7697222,-91.6408333,Batesville,AR,light,240,Orange Pulsating light over Ramsey Mountain, Batesville, Arkansas on May 17th, 2004 at approximately 8:40 pm in the western sky. +2004-05-17,42.8691667,-84.9030556,Portland,MI,cylinder,1200,Lighted object in sky that danced around in the sky and moved closer to me and then farther away several times +2004-05-18,38.42,-82.0555556,Culloden,WV,light,900,i was cleaning and walked past my back window and a black figure ran past my window... i looked outside didnt see anything, then i star +2005-05-17,32.3861111,-94.8755556,Kilgore,TX,sphere,30,The object moved at incredible speed, making right angle turns and disappearing from sight. +2005-05-17,32.4486111,-99.7327778,Abilene,TX,light,20,two points of light traversing the west texas sky, one seemingly in pursuit of the other +2006-05-17,37.5536111,-77.4605556,Richmond,VA,fireball,120,Bright redish orange star object with no movement for 5 min, suddenly moving up and east out of sight +2006-05-17,40.9413889,-73.1063889,East Setauket,NY,circle,7,Small UFO moving in backyard with red and white lights +2006-05-17,47.1013889,-94.5869444,Walker,MN,circle,2700,Star like object in the sky moved side to side and up and down in a jaged motion extreamly bright. +2006-05-17,37.5630556,-122.3244444,San Mateo,CA,unknown,420,2 bright streaks of light with dark object above them observed in clear, cloudless sky. +2006-05-17,40.6083333,-75.4905556,Allentown,PA,triangle,120,The craziest thing that has ever happened in my life!! +2006-05-17,37.0977778,-89.5625,Benton County,MO,light,300,Moving lights across the sky +2006-05-17,34.02,-117.9486111,La Puente,CA,chevron,3000,UFO over the San Gabriel Valley +2006-05-17,45.4872222,-122.8025,Beaverton,OR,diamond,10,strange dim diamond shaped light pattern traveling across the sky NW to SE about 5-10 times a jets speed. +2006-05-17,36.7477778,-119.7713889,Fresno,CA,light,8,Fast light zig zagging over Fresno +2006-05-18,30.8780556,-97.4013889,Holland,TX,unknown,5,ADDING TO REPORT ABOUT SIZE OF EMITTING CIRCLE OF LIGHT WAS BIGGER THEN FULL MOON OR SUN ABOUT TWICE THIER SIZE ON NIGHT SKY. FORMER SI +2006-05-18,30.8780556,-97.4013889,Holland,TX,unknown,5,white light suddenly emitted bright white light in center yellow on middle and red on outside of emitted circle of huge display +2007-05-17,38.9516667,-92.3338889,Columbia,MO,cylinder,180,MISSOURI INVESTIGATORS GROUP Report: We all looked up an saw a cylindrical shaped obj. +2007-05-17,41.975,-88.0072222,Itasca,IL,other,60,Thimble-shaped orange-white object observed sitting in traffic +2007-05-17,40.2152778,-86.0263889,Atlanta,IN,light,5,Lights in a straight line that go out from left to right in the night sky +2008-05-17,42.9275,-83.63,Grand Blanc,MI,light,240,An orange glowing light moving extremely fast in the sky. +2008-05-17,34.1458333,-118.8047222,Westlake Village,CA,fireball,5,White fireball over city of Westlake Village +2008-05-17,38.8422222,-106.1305556,Buena Vista,CO,sphere,10,UFO in Buena Vista, Colorado +2008-05-17,39.0638889,-108.55,Grand Junction,CO,formation,900,Four bright objects 11 am over Grand Junction flight path, unexplainable. +2008-05-17,32.9536111,-96.89,Carrollton,TX,cigar,20,12: noon Carrollton, TX. Cigar metallic object traveling north at an incredible rate of speed for 20 seconds +2008-05-17,30.3569444,-87.1638889,Gulf Breeze,FL,oval,15,I am a Battalion Chief with the fire department. I was on duty standing behind one of our stations talking to three other firefighters. +2008-05-17,45.3841667,-122.7627778,Tualatin,OR,oval,900,2 Star looking objects observed in Tualatin, OR +2008-05-17,40.4775,-74.6272222,Hillsborough,NJ,oval,45,Hovered/Still-Red & gold pale blinking lights, watched it for about 45 seconds then it just vanished, not even a take off. +2008-05-17,29.8944444,-81.3147222,St. Augustine,FL,unknown,3,3 orange fireballs over the ocean in st. augustine beach +2008-05-17,32.7152778,-117.1563889,San Diego,CA,sphere,300,3 orange lights over pacific ocean seen from san diego +2009-05-17,30.4211111,-87.2169444,Pensacola,FL,sphere,5,Orange sphere with two blue spheres attached, moving west to east, Pensacola Florida. +2009-05-17,46.8772222,-96.7894444,Fargo,ND,other,15,2 luminescent glowing forms criss-crossing across the night sky. +2009-05-17,37.8044444,-122.2697222,Oakland,CA,light,300,Clear blue sky on Sunday morning. Very bright light at high altitude, probably about 6x brighter than Venus, but not larger than a very +2009-05-17,33.8311111,-87.2775,Jasper,AL,cigar,600,Cigar shaped, iridescent craft. Soundless...seen over Jasper,AL +2009-05-17,40.5852778,-105.0838889,Fort Collins,CO,circle,120,UFO moving out with jet following +2009-05-17,32.3122222,-106.7777778,Las Cruces,NM,sphere,7200,bright orbs in triangular formation over NASA facility in Las Cruces, NM 7:45pm 5/17/09 +2009-05-17,32.3122222,-106.7777778,Las Cruces,NM,cone,3600,Light oval shaped or circular object. +2009-05-17,32.3122222,-106.7777778,Las Cruces,NM,diamond,1200,Bright diamond shape craft stayed in one place . Looked like it changed from 1-3 crafts, appeared for about 20 min and tucked away behi +2009-05-17,37.3247222,-119.5652778,Bass Lake (Near),CA,disk,30,Prospecting for gold in california but found a UFO, or they found us +2009-05-17,41.6,-87.9380556,Homer Glen,IL,circle,240,There was a circular object with 3 lights on it, 2 yellow and 1 red, that moved downward at one point and came to complete stop. +2009-05-17,33.3805556,-84.7997222,Newnan,GA,light,60,swift blue light, like a butterfly flight pattern +2009-05-17,34.3675,-77.7108333,Hampstead,NC,triangle,300,Star Destroyer shaped ufo low in the night sky! +2009-05-17,44.0805556,-103.2305556,Rapid City,SD,unknown,5,Single, bright white light over Rapid City, SD. +2010-05-17,34.5286111,-86.2533333,Grant,AL,teardrop,900,2 Teardrop shaped crafts sighted, one followed us down the mountain +2011-05-17,41.2586111,-95.9375,Omaha,NE,triangle,1200,Triangle Object +2011-05-17,33.9966667,-77.9075,Kure Beach,NC,formation,300,One orange/red light appears, then another, and another, and another. Making 4 lights....then gone! +2011-05-17,33.6597222,-85.8316667,Anniston,AL,fireball,300,This fireball object appeared like a plane flying over at first then hovered over us and some other people walking for about 5 minutes +2011-05-17,42.1816667,-87.8002778,Highland Park,IL,rectangle,600,4 square lighted windows in the sky-stationary- above the tree line. +2012-05-17,48.6913889,-116.3152778,Bonners Ferry,ID,flash,1800,Out of the blue in sound sleep. Both my so and I were awakened. No noise or anything, we were just awake out of the blue. Then the sky +2012-05-17,44.6497222,-93.2425,Lakeville,MN,circle,300,red,orange color. moved fast appeared fast then disappeared fast. +2012-05-17,40.5002778,-79.7497222,Plum,PA,cone,180,strange orange light in sky +2012-05-17,47.5302778,-122.0313889,Issaquah,WA,flash,30,Traveling, silent bright blue lights flashing/lighting up the sky. +2012-05-17,35.5691667,-80.5819444,China Grove,NC,other,120,Saw something silver explode leaving a silver trail. +2012-05-17,42.4330556,-82.9241667,Harper Woods,MI,unknown,300,Bright orange light over lake St.Clair seem to dim then drop straight into the water. +2012-05-17,43.8013889,-91.2394444,La Crosse,WI,unknown,5,orange light at night +2012-05-17,40.7666667,-72.8525,Mastic Beach,NY,sphere,180,I live on the south shore of LongIsland on a flight path from JFK airport where passenger jets often fly when leaveing the US. East-nor +2013-05-17,45.2102778,-123.1975,Mcminnville,OR,unknown,3600,Two objects shooting at each other in the sky +2013-05-17,40.6836111,-73.5105556,Wantagh,NY,cone,60,My son and his 2 friends were on a second story deck when one noticed a V-formation of lights. The lights were orange-amber and extrem +2013-05-17,40.8622222,-73.6341667,Glen Cove,NY,circle,2700,Circular spots lights moving along the edges of serveral cloulds. It appeared as thought it was jumping from clould to cloud. +2013-05-17,36.9483333,-81.085,Wytheville,VA,sphere,300,Strangle Orange lights over Wytheville +2013-05-17,40.7569444,-72.9397222,Bellport,NY,triangle,1800,3 sightings by me the 2 by a friend 2 sightings were 3 orange lights in a triangle formation. The third was a horizontal. All 3 sightin +2013-05-17,36.3133333,-82.3536111,Johnson City,TN,light,300,20 or more Reddish Orange lights form a upward arch in the sky and start swirling , making formations then disappearing slowly. +2013-05-17,38.8338889,-104.8208333,Colorado Springs,CO,fireball,20,orb/fireball ufo seen white/yellow sparkling light silent +2013-05-17,40.5555556,-75.9822222,Hamburg,PA,fireball,300,Orange fireball no trail. Another one 20 minutes later. +2013-05-17,44.1858333,-88.4625,Neenah,WI,fireball,120,Flickering fire like objects in the sky moving fast eventually fade. +1970-05-18,27.9472222,-82.4586111,Tampa,FL,oval,3,2 Orange Luminous Oval shape objects side by side zig zagging at the same time as they moved forward very fast. +1979-05-18,41.9558333,-78.6441667,Bradford,PA,circle,300,It was in the spring of 1979 (or 1978) one of the two years I attended UP at Bradford campus. I was on the way to an overnight camp in +1986-05-18,36.905,-119.2952778,Trimmer,CA,changing,600,The craft floated along the hills above the homes, as tho taking a leisurely cruise against the mountainside... +1987-05-18,37.9747222,-87.5558333,Evansville,IN,other,900,i was taking my girlfrienend home it was around 1035 i was going west on brodway i was comeing up a hill and just about to pass a old c +1992-05-18,39.595,-75.1705556,Elmer,NJ,other,600,I was on the way home from my girl friends house at around 900 pm and as i passed by centerton lake i witnesed a huge object sitting +1993-05-18,48.3172222,-110.0125,Box Elder (Rocky Boys' Indian Agency),MT,triangle,3600,It was big and moved real slow. +1993-05-18,38.5816667,-121.4933333,Sacramento,CA,triangle,600,Triangle lights in the sky put on a laser light show, hovering over city. +1996-05-18,39.7111111,-75.4705556,Carneys Point,NJ,cylinder,5,Brownish black cylinder shaped object flew over my vehicle at 250 feet altitude, lasting approximtely 5 seconds then vanished. +1997-05-18,40.3777778,-76.6466667,Grantville (Rte. 443 And Appleby Road),PA,triangle,10,in church parking lot, my son and aunt, see triangle fly over head.at the intersection of RT 443 AND APPLEBY RD. very fast +1997-05-18,42.2458333,-84.4013889,Jackson,MI,light,300,There was a light that was folling us. Then it started flashing differnt colors. It flew away as fast as lighting. +1998-05-18,44.0805556,-103.2305556,Rapid City,SD,other,60,there was a light similar to a falling star, only bigger and longer in duration...i have seen plenty of falling stars and this was not +1999-05-18,29.4238889,-98.4933333,San Antonio,TX,fireball,15,Witness sees orange fireball w/ long yellow tail streak parallel to horizon. +1999-05-18,47.4830556,-122.2158333,Renton,WA,disk,180,3 disk shaped craft flying formation +1999-05-18,31.7127778,-110.0669444,Tombstone,AZ,egg,1200,White, shiny egg with 4 sleek "fins" (no seams)hovered and slowly rotated. Watched it with binoculars from Hwy 82. +1999-05-18,31.7127778,-110.0669444,Tombstone,AZ,egg,1200,White, shiny egg with 4 sleek "fins" (no seams)hovered and slowly rotated. Watched it with binoculars from Hwy 82 near Tombstone AZ. +1999-05-18,35.9819444,-87.1213889,Fairview,TN,light,300,Very bright light (we thought it was a planet) upper left of moon that just disappeared +1999-05-18,34.2783333,-119.2922222,Ventura,CA,oval,5,Oval shaped craft travelling e-w n/w, NO clearance or blinking lights seemed to be illuminated from inside. The color was ivory or yell +1999-05-18,31.5086111,-82.85,Douglas,GA,egg,300,I was on my way to work.I saw what looked like a big copper colored sphere.It split into two then four then eight. I did this until the +1999-05-18,32.3330556,-93.8361111,Keithville,LA,light,900,2 bright red, hazy, motionless objects were observed. +1999-05-18,40.7608333,-111.8902778,Salt Lake City (South Of),UT,triangle,180,large triangular craft came from the west - from the Oquirrh mountains - east toward SLC, then turned north on possible approach flight +1999-05-18,36.1658333,-86.7844444,Nashville,TN,chevron,120,Iwas driving south from Nashville on Nolensville Rd at 9:30 p.m. Lights to my right (west) just off the road caught my eye. This area +2000-05-18,37.775,-122.4183333,San Francisco,CA,light,45,A white star-like object moving south off the Pacific coast +2000-05-18,41.1611111,-79.0833333,Brookville,PA,diamond,600,Diamond Shaped, covered with lights, Approximately 200 feet in the air. +2000-05-18,38.0627778,-91.4033333,Cuba,MO,triangle,480,All ten of us watched this fly over our houses on a clear night with a full moon as its lights flashed simultaniously. +2001-05-18,42.0963889,-83.2919444,Flat Rock,MI,chevron,240,white glowing flying wing +2001-05-18,26.0519444,-80.1441667,Dania Beach (Fishing Pier),FL,light,120,US military tried to shoot down UFO off the coast of South Florida. +2001-05-18,37.2708333,-79.9416667,Roanoke,VA,sphere,45,orb-shaped ball of light that sat silent & still, then zoomed upward and out of sight. +2001-05-18,33.4052778,-86.8113889,Hoover,AL,triangle,20,page not available +2001-05-18,38.2855556,-85.8241667,New Albany,IN,light,20,Bright Lights Appear Then Move Off Very Dim In Orange Color +2001-05-18,35.9986111,-96.1138889,Sapulpa,OK,triangle,300,It was a floating craft that when it left shot away like a rocket (unlike an airplane). +2001-05-18,38.6105556,-122.8680556,Healdsburg,CA,triangle,2,Observation of similar object from points fifteen miles distant at approximate same time. +2002-05-18,32.9027778,-96.5636111,Rowlett,TX,disk,120,Silver disk moved quickly out of sight. +2002-05-18,42.0663889,-87.9372222,Mount Prospect,IL,light,60,Hexagonal formation of white lights with a blue light offset from the center and a bright red flashing light +2002-05-18,33.7488889,-84.3880556,Atlanta,GA,sphere,7,HBCCUFO CANADIAN REPORT: It appeared to be a shiny ball,heading to the southeast at high speed. +2002-05-18,48.1183333,-123.4294444,Port Angeles,WA,circle,120,craft at first appeared like it may have been a helicopter within close range. When we went to get the telescope, it started going fur +2002-05-18,36.9772222,-121.8983333,Aptos,CA,formation,5,7 unidentified aircraft speeding across the night sky and leaving no trace (vapor-trail, sonic boom) +2002-05-18,34.2783333,-119.2922222,Ventura,CA,teardrop,300,Bright green, teardrop shaped UFO!!! +2003-05-18,42.4791667,-71.1527778,Woburn,MA,rectangle,600,Multiple very colorful objects in the middle of a beautiful sunny day at the sky for 10-15 minutes.h +2003-05-18,33.4483333,-112.0733333,Phoenix,AZ,disk,180,four round bright discs with black roating circles in them flying in formation going east +2003-05-18,39.7391667,-75.5983333,Elsmere,DE,light,1391,Light came over Town of Elsmere then shot off. +2003-05-18,36.175,-115.1363889,Las Vegas,NV,unknown,240,6 distant lights in v-shaped form flying very slowly seen over Las Vegas Blvd, Nevada then fading as it passed overhead. +2004-05-18,42.5277778,-92.4452778,Cedar Falls,IA,oval,180,I was outside looking up in the sky when I noticed a oval white Halo bouncing about then it streamed acrossed the sky.As it came closer +2004-05-18,38.7908333,-121.2347222,Rocklin,CA,disk,600,Silver circular craft with bright Blue lights on underside zipping above trees at rapid speed in figure 8 pattern. +2004-05-18,42.6072222,-83.9294444,Howell,MI,disk,300,i saw ufo's +2004-05-18,42.1102778,-88.0341667,Palatine,IL,other,2,could have been a bird or plane but....white ghost/smoke like, no lights, silent, bird or plane shaped, no wing movement, traveling st +2004-05-18,42.1083333,-72.0791667,Sturbridge,MA,triangle,7200,crazy purple light dropped. 3 multi colored light triangular SUPERSIZE object +2004-05-18,39.8366667,-105.0366667,Westminster,CO,fireball,26,The fireball shaped craft was flying in the sky at 23:00 hours and blinked various different colors.The ufo spun sparingly in approxeme +2004-05-19,32.77,-108.2797222,Silver City,NM,circle,60,white object seen going north to south may 18񫺔 in western sky over Silver city,nm. in a.m. +2005-05-18,38.8113889,-89.9530556,Edwardsville,IL,sphere,10,ILLINOIS/MUFON REPORT: Black sphere seen flying rapidly in a straight-line course under clouds. +2005-05-18,34.9386111,-104.6819444,Santa Rosa,NM,sphere,4200,Stationary Spherical Light 1 Hour Duration over Santa Rosa, NM. ((NUFORC Note: Possible high-altitude balloon. PD)) +2005-05-18,39.7391667,-104.9841667,Denver,CO,light,60,bright white ball of light about 10:00 position in sky NE to SE seen by bionoculars towards end last five seconds stars were going by +2005-05-18,33.4483333,-112.0733333,Phoenix,AZ,diamond,600,lights hovering over a mountain range near the Cave Creek Rd approximately between Union Hills Rd and Greenway Rd. +2005-05-18,33.4483333,-112.0733333,Phoenix,AZ,light,1800,Phoenix Lights again over North Phoenix both yellowish orange and red near Deer Valley Airport. +2006-05-18,36.2488889,-82.5452778,Telford,TN,other,600,4 Bright Lights, formed Box then dissappeared. +2006-05-18,32.6175,-116.1888889,Jacumba,CA,cigar,120,My partner and I were going on a drive on I-8 out of San Diego east towards the Arizona border. We often go on weekend drives out this +2006-05-18,39.7686111,-94.8463889,St. Joseph,MO,cylinder,10,Floating gray cylinder seen dropping down behind some trees +2006-05-18,30.2458333,-87.7008333,Gulf Shores,AL,unknown,300,We saw a triangled shaped object in the sky in Gulf Shores ALA, approx one mile up not moving. +2006-05-18,35.3858333,-94.3983333,Fort Smith,AR,circle,1200,Orange lights seen from southern Fort Smith. Fort Chaffee military flares or UFOs ? +2007-05-18,29.7027778,-98.1241667,New Braunfels,TX,light,5,Zigzagging lights near municiple airport. +2007-05-18,41.7858333,-88.1472222,Naperville,IL,egg,120,Sighting of inverted egg or tear drop object +2007-05-18,34.9744444,-92.0163889,Cabot,AR,light,15,Star grows brighter then dims and shoots off like a rocket! +2007-05-18,29.9741667,-93.9922222,Nederland,TX,flash,4,A NEIGHBOR AND MYSELF WERE TALKING OUTSIDE WHEN WE SAW A BRIGHT FLOURESENT GREEN STREAK FLASH ACROSS THE SKY IT WAS IN THE DIRECTION OF +2007-05-18,31.0747222,-96.1425,Cross Roads,TX,other,120,glowing light and organic and tubular shaped metallic craft +2008-05-18,39.9522222,-75.1641667,Philadelphia,PA,chevron,2,V-shaped craft with 3 big, round, green lights +2008-05-18,33.7877778,-117.8522222,Orange County,CA,unknown,259200,I have noticed extrodinary changes in physical and mental ability, continues to this day. +2008-05-18,32.2216667,-110.9258333,Tucson,AZ,triangle,20,Triangular object, flying slowly south, with seven bright lights pointing outward and down from bottom of craft. +2008-05-18,33.1191667,-117.0855556,Escondido,CA,light,600,bright blue, high altitude, direction changing, speed changing light in the sky. +2008-05-18,43.073055600000004,-89.4011111,Madison,WI,light,2700,Roundish light traveling in a horizontal loop +2008-05-18,38.3605556,-75.5997222,Salisbury,MD,unknown,5,While sitting outside and taking a smoke break my freind and i witnessed a large flash through the clouds. It was blueish white and rad +2008-05-18,40.2463889,-80.2116667,Houston,PA,light,20,It moved across the sky and all of a sudden it disapeared +2008-05-18,41.0380556,-74.2944444,Wanaque,NJ,circle,1800,Single white light over the Wanaque Reservoir, New Jersey. +2008-05-18,33.9561111,-83.9880556,Lawrenceville,GA,disk,1800,I took pictures of the moon and after reviewing the pictures there's a saucer shaped object in it. +2009-05-18,37.5536111,-77.4605556,Richmond,VA,changing,1800,Thought I was seeing a aircraft flying towards me from south to west as I could see 2 lights that I took for wing tip lights. I watch +2009-05-18,36.2083333,-115.9830556,Pahrump,NV,flash,15,05/18/09 9:00 pm There was this large bright flashing light that moved rapidly across the southern sky. +2009-05-18,33.4222222,-111.8219444,Mesa,AZ,diamond,1200,Flying object seen in Mesa. ((NUFORC Note: Confirmed high-altitude research balloon. PD)) +2009-05-18,34.0952778,-118.1261111,Alhambra,CA,flash,5,bright light lit up Alhambra, CA 12:45am, so bright that all street lights turn off +2009-05-18,40.4966667,-80.6069444,New Cumberland,WV,light,60,High Altitude Bright Light during mid-day +2009-05-18,33.9686111,-112.7288889,Wickenburg,AZ,sphere,5400,yesterday's sighting has made me a believer +2009-05-18,33.4355556,-112.3488889,Avondale,AZ,light,5400,WHAT WAS THIS SQUID SHAPED OBJECT. ((NUFORC Note: Confirmed high-altitude research balloon. PD)) +2009-05-18,33.4483333,-112.0733333,Phoenix,AZ,sphere,21600,Bubble like sphere seen in Phoenix sky. ((NUFORC Note: Confirmed high-altitude research balloon. PD)) +2009-05-18,33.4933333,-112.3572222,Litchfield Park,AZ,teardrop,1200,Large, teardrop shaped, white light emitting, stationary. ((NUFORC Note: Confirmed high-altitude research balloon. PD)) +2009-05-18,34.4838889,-114.3216667,Lake Havasu City,AZ,circle,7200,small shinny dot in the air that will not move as high as an airplane. ((NUFORC Note: Confirmed high-altitude research balloon. PD)) +2009-05-18,35.2233333,-114.2222222,Golden Valley,AZ,cone,1800,A cone shaped object South East of my house in Golden Valley, AZ. ((NUFORC Note: Confirmed high-altitude research balloon. PD)) +2009-05-18,35.1677778,-114.5722222,Laughlin,NV,circle,1800,Laughlin sighting ((NUFORC Note: Confirmed high-altitude research balloon. PD)) +2009-05-18,43.3719444,-83.5833333,Vassar,MI,unknown,12,Three unlit aircraft escorted ( or followed ) by a helicopter. +2009-05-18,40.2794444,-75.3875,Harleysville,PA,triangle,180,triangle shaped craft making loud humming noises +2009-05-18,44.0805556,-103.2305556,Rapid City,SD,triangle,300,Triangular object over Rapid City +2010-05-18,33.3138889,-82.0969444,Hephzibah,GA,rectangle,60,Huge Rectangular Craft With LightsTraveling at a High Rate of Speed +2010-05-18,29.1869444,-82.1402778,Ocala,FL,light,600,Round globe light with a wobble paases by the sky night +2010-05-18,37.6459,-93.0942,Buffalo,MO,unknown,10,Red Glowing Ball +2010-05-18,45.5236111,-122.675,Portland,OR,diamond,420,saw & filmed a pulsating diamond shaped object which changed shape several times over Portland, Oregon about 9:30 PM +2010-05-18,38.6272222,-90.1977778,St. Louis,MO,light,6,Bright white ball, flash and and then dimmed straight path, out of nowhere +2010-05-18,46.5927778,-112.0352778,Helena,MT,disk,120,disk shaped object/ military choppers all around the object +2011-05-18,42.6158333,-70.6625,Gloucester,MA,disk,1200,Driving on main road, saucer-type craft floating about 500 feet from the ground. Very fast movement upon departure from area seen. +2012-05-18,39.0180556,-77.2088889,Potomac,MD,light,1200,Bright yellow light followed (intercepted) by red pulsating light +2012-05-18,36.3133333,-82.3536111,Johnson City,TN,circle,600,2, 3, then 4 red lights that stayed stationary, moved in and out and towards each other, at one point seemed very close. +2012-05-18,42.3369444,-71.2097222,Newton,MA,light,300,Dull orange lights flying in a line over Newton Mass +2012-05-18,40.5852778,-105.0838889,Fort Collins,CO,sphere,15,Small, round black object buzzed observers on top of Arthur's Rock in Fort Collins, CO. Trajectory was straight and very fast. +2012-05-18,38.545,-121.7394444,Davis,CA,circle,8,A fuzzy orange ball of light first seen as star approaches quickly before making turn and climing out of sight. +2012-05-18,36.0625,-94.1572222,Fayetteville,AR,egg,600,Black walnut shaped craft observed in broad daylight floating across sky with no sound +2012-05-18,36.1197222,-80.0738889,Kernersville,NC,cigar,300,strange the objects made NO sound at all. +2012-05-18,42.2711111,-89.0938889,Rockford,IL,disk,10,Burning disc observed over Rockford, IL +2012-05-18,42.9169444,-83.5063889,Goodrich,MI,light,240,Glowing, orange ball of light in the eastern sky 5-18-12. +2012-05-18,42.7244444,-83.0361111,Washington,MI,sphere,60,Orange ball traverses Southeast Michigan sky on May 18, 2012. +2012-05-18,42.5377778,-83.2330556,West Bloomfield,MI,light,30,Point of light travelling faster than any aircraft I've observed +2012-05-18,38.0911111,-81.4438889,Eskdale,WV,unknown,30,Bright like an arc welder +2013-05-18,38.6652778,-78.4597222,Luray,VA,circle,20,Two flashes of light to brighten the sky and a big green round flying object to appear to be falling for seconds then vanishes. +2013-05-18,42.0583333,-70.1791667,Provincetown,MA,cross,1200,Cross shape over Cape Cod +2013-05-18,40.4283333,-79.6977778,Murrysville,PA,fireball,3,Green fireball decending from above and vanished behind the hills. +2013-05-18,32.7833333,-96.8,Dallas,TX,sphere,15,Observation point: eleventh flour of ND building UT Southwestern Medical Center. Distance less than one mile at the beginning of observ +2013-05-18,40.3213889,-79.3402778,Bradenville,PA,sphere,5,green ball falls from the sky for 5 seconds. +2013-05-18,34.1722222,-118.3780556,North Hollywood,CA,triangle,900,Black triangular shape made up of 3 circles floating near Burbank Airport. +2013-05-18,48.7597222,-122.4869444,Bellingham,WA,formation,30,Bellingam 5 Craft Amber Formation 2000ft est. elevation, no noise. +2013-05-18,35.3394444,-97.4863889,Moore,OK,formation,120,Eight fiery red lights hang over downtown Moore, Oklahoma, just two days before deadly tornado strikes town. +2013-05-18,35.3394444,-97.4863889,Moore,OK,formation,180,Amber colored formation of lights in eastern sky. +2013-05-18,41.6105556,-87.0641667,Chesterton,IN,unknown,120,There were about 7 lights in a circle, they were red and white, they were flying in a circle, and disappeared into the clouds +2013-05-18,41.6666667,-70.1852778,South Yarmouth,MA,fireball,120,Orange and white ball moves across the sky then later jets +2013-05-18,36.8527778,-75.9783333,Virginia Beach,VA,fireball,360,24 orange lights traveling at a constant speed in some kind of formation, none of the lights strayed away. +2013-05-18,41.8994444,-87.9402778,Elmhurst,IL,circle,120,Intimidating Looking Red Disk Southwest of O'Hare Airport +2013-05-18,38.5816667,-121.4933333,West Sacramento,CA,oval,10,illuminated craft or reflecting light from below travelling from southeast towards northwest at aprox 75 degrees up then went dark +2013-05-18,44.9430556,-123.0338889,Salem,OR,oval,240,Orange oval glow flying/ hovering for 4 minutes outside Salem Or. +2013-05-18,36.2086111,-79.905,Summerfield,NC,unknown,120,There were several lights floating in the sky moving in the same direction. +2013-05-18,37.9747222,-87.5558333,Evansville,IN,light,120,Several red lights taking off from the groundin a row, following each other evenly spaced apart. +2013-05-18,47.1855556,-122.2916667,Puyallup,WA,fireball,180,There were 8 flare like objects in no certain pattern they were orange and stayed in the same spot and just slowly faded away it was a +2013-05-18,44.7822222,-88.6088889,Shawano,WI,formation,600,5-7 balls of orange light in formation. +2013-05-18,41.4758333,-75.1825,Hawley,PA,formation,600,5-18-13 sun-colored light in three formations in Wayne county PA (town of Hawley). +1966-05-19,37.9886111,-84.4777778,Lexington,KY,other,120,The Day I Realized We Are Not Alone: My First Sighting Of A Space Vehicle +1973-05-19,34.7302778,-86.5861111,Huntsville (Redstone Arsenal),AL,disk,2700,We were in the U.S. Army at the time and 18 years old.The night before we watched the Skylab as was reported on the radio to do a flyby +1989-05-19,32.04,-88.7280556,Quitman,MS,circle,3600,Circular craft outlined with white lights left perfect ring of fire behind +1990-05-19,33.9022222,-118.0808333,Norwalk,CA,other,60,ufo uncloaked before my very eye's appearing strikingly like the one appearing in movies of hanger 18 . +1995-05-19,34.1425,-118.2541667,Glendale,CA,triangle,90,Girlfriend and I saw three red lights forming a triangle shape moving north. My first thought, Helicopter, but no sound was heard, from +1995-05-19,33.9525,-84.55,Marietta,GA,diamond,180,It was about 10:30 p.m. and I was looking out side of my house at the stars. I saw a Jet going across the sky infront of me. I noticed +1997-05-19,42.2916667,-85.5872222,Kalamazoo,MI,changing,900,Bright ball of light, split into two balls of lights, then rejoined itself, changed color and shape repeatedly +1999-05-19,40.2786111,-84.9763889,Deerfield,IN,unknown,900,wierd in a way she had never felt. +1999-05-19,41.6005556,-93.6088889,Des Moines (East Of, 152 Mm On I-80),IA,light,1200,3 YELLOW LIGHTS SIMILAR TO STARS IN SKY, APPEARED TO BE IN A TYPE OF DOG FIGHT. THEY WOULD COME TOGETHER AND THEN FLY APPART. +1999-05-19,35.3733333,-119.0177778,Bakersfield,CA,circle,30,there was a party at my house for my daughters birthday i wanted to escape to a quiet place for a few minutes so i went out back and wa +1999-05-19,33.8352778,-117.9136111,Anaheim,CA,oval,30,slow moving, then abrubtly shot off in aprox 25 degree angle and quickly gone. +1999-05-19,32.7152778,-117.1563889,San Diego,CA,triangle,600,triangular, flat black, no relfection, no sound +1999-05-19,47.1633333,-122.0255556,Buckley,WA,other,600,Starting over Carbonado, going over Buckley, curving over Enumclaw towards Auburn. Description: Strobing white light connected to pink +1999-05-19,36.4241667,-89.0569444,Union City,TN,other,37800,at first we thought it was a star,but it was moving in a downward direction and it was slowly changing color from white to red and blue +2000-05-19,33.4483333,-112.0733333,Phoenix,AZ,circle,7200,It was unlike anything I had ever seen before. Hovering and dancing lights, round shape object. +2000-05-19,28.3858333,-80.7422222,Cocoa,FL,light,37800,Gold,amber lights hover along the horizon, then vanish +2001-05-19,45.7255556,-121.8180556,Carson,WA,light,60,A large bright light moved at a constant,very high rate of speed and crossed the entire sky in less than one minute. +2001-05-19,41.2822222,-76.145,Sweet Valley,PA,light,60,Odd lights in the night sky +2001-05-19,32.7666667,-96.5988889,Mesquite,TX,other,600,Black transparent square orb +2001-05-19,42.0644444,-72.5130556,East Longmeadow,MA,cylinder,600,Tan object over golf course +2001-05-19,42.1102778,-88.0341667,Palatine,IL,cigar,120,Metallic, missile shaped object flying extremely high above the clouds. +2001-05-19,32.105,-92.0777778,Columbia,LA,oval,300,oval flourescent colored ball coming right at us slowly, turned into four round balls of light just sitting still in the sky +2001-05-19,36.135,-81.6777778,Blowing Rock,NC,light,180,I was looking out at the lights below me and saw an orange dot above one of the towns below. It stayed in one place and did not move. +2001-05-19,40.7141667,-74.0063889,New York City (Westhampton Beach),NY,oval,15,Apparent formation of 5 to 6 lights first traveling south to north then north to south at high speed. +2002-05-19,34.2163889,-119.0366667,Camarillo,CA,sphere,86400,Liquid craft steals time +2002-05-19,42.3583333,-71.0602778,Boston,MA,oval,180,Floating balloons or UFO +2002-05-19,40.725,-73.2458333,Bay Shore,NY,circle,300,My friend and I were in the backyard next to the fire . I looked up and next to the moon I noticed a round whitish silvery object. I sa +2003-05-19,36.7477778,-119.7713889,Fresno (Near, I-5),CA,triangle,300,Totally silent craft bearing three, bright, white lights observed crossing I-5 near Fresno CA on 05-19-03 at 00:10. +2003-05-19,29.9058333,-90.1422222,Westwego,LA,teardrop,8,Body of teardrop blue and tip green. +2003-05-19,37.8869444,-122.2966667,Albany,CA,chevron,30,Chevron shaped aircraft spoted over Albany California again +2003-05-19,33.6305556,-112.3325,Surprise,AZ,circle,360,Flash of light out of which two objects diverged +2004-05-19,29.4238889,-98.4933333,San Antonio,TX,triangle,10,The Golden triangular flying object seemed to first be on a crash course with my vehicle, but after 10 seconds vanished into the sky. +2004-05-19,36.1538889,-95.9925,Tulsa,OK,disk,5,A disc, not very high up and moving very fast from north to south. +2004-05-19,36.3941667,-87.0366667,Pleasant View,TN,oval,240,Green oval glowing objects zipped across the sky. +2004-05-19,32.9477778,-112.7161111,Gila Bend (Yuma?),AZ,other,60,Very large object hoovers in sky for hour or so.. HUGH object. +2004-05-19,42.6458333,-85.2908333,Hastings,MI,triangle,20,big black triangle shaped object lasting 20 seconds or so overhead then gone without any sound +2004-05-19,39.7391667,-104.9841667,Denver,CO,circle,1200,Bright light hovering for a long time +2005-05-19,40.3369444,-104.9116667,Johnstown,CO,formation,120,2 starlike objects travelling together N to S/SE +2005-05-19,38.6019444,-80.7036111,Tesla,WV,triangle,120,Moving stars in a triangle pattern over tesla west virginia. appeared to be in a camoflauge mode +2005-05-19,31.7586111,-106.4863889,El Paso,TX,circle,6300,The objec t that my roommate and I viewed was not at all like anything I have ever seen in my life...please help me +2005-05-19,31.7586111,-106.4863889,El Paso,TX,sphere,4500,Unknown stationary shiny sphere +2005-05-19,33.4483333,-112.0733333,Phoenix (90 Mi Sw Of; On I-10),AZ,changing,900,3 objects sited 90 miles SW of Phoenix +2005-05-19,40.8811111,-74.6563889,Ledgewood,NJ,egg,6,Shiny chrome like eggish shaped object moving slowly but high up then disappearing after going behind some trees. +2005-05-19,34.1486111,-118.3955556,Studio City,CA,unknown,900,Metallic looking with periodic flashing/reflection. +2005-05-19,41.14,-104.8197222,Cheyenne,WY,oval,120,At 6:45 a silver light object came into view N. of Cheyenne,WY.It had no vapor trail moving at jet speed,but turning on a dime. +2005-05-19,32.3666667,-86.3,Montgomery (50 Miles West Of; Inflight),AL,unknown,7,Pilots see unknown +2006-05-19,37.9841667,-120.3811111,Sonora,CA,light,3,I looked up and caught a very bright light (3 times the size of Venus). It moved in small arc and then simply faded out. The way that o +2006-05-19,47.6063889,-122.3308333,Seattle,WA,circle,1800,silver round object,size of a small van +2006-05-19,40.5580556,-90.035,Canton,IL,oval,1200,Orange glowing oval shoots sparks +2006-05-19,42.4666667,-72.5791667,Sunderland,MA,oval,120,red and oval shaped +2006-05-19,41.1930556,-87.0555556,Wheatfield,IN,formation,30,4 bright orange lights in a row +2006-05-19,41.4994444,-81.6955556,Cleveland,OH,other,300,A UFO With Red, Blue & Green lights alternating between the colors and gliding and Hovering +2006-05-19,33.6888889,-78.8869444,Myrtle Beach,SC,light,480,1-2-3-4-Red/Orange orbs out at sea blink on for 30 seconds then gone. very strange +2007-05-19,37.323055600000004,-122.0311111,Cupertino,CA,circle,30,black dot rapidly flying across the sky in silicon valley. +2007-05-19,35.27,-91.6397222,Judsonia,AR,disk,180,Taking pictures of the sky +2007-05-19,39.9611111,-82.9988889,Columbus,OH,light,10800,bright stationary light in sky for approx.3hrs +2007-05-19,34.1063889,-117.5922222,Rancho Cucamonga,CA,circle,240,Very Bright Orange Light Moving Slowly +2008-05-19,35.614444399999996,-88.8138889,Jackson,TN,disk,14400,New Sighting in Jackson, Tennessee +2008-05-19,35.72,-79.1775,Pittsboro,NC,light,2,As a sixty-year old, i oftentimes wake up in the middle of the night-unable to sleep.Last week, (i wrote down somewhere the exact d +2008-05-19,36.9075,-76.7080556,Isle Of Wight County,VA,oval,360,Strange looking aircraft sighted above the water near Ft. Eustis +2008-05-19,42.5530556,-87.9333333,Pleasant Prairie,WI,egg,180,I observed a stationary egg shaped silver object, over Highway 31 in Pleasant Prairie, WI, on my way to work for about 2-3 minutes. +2008-05-19,39.3808333,-119.6427778,Virginia City Highlands,NV,circle,180,shiny round object flying along mountain ridge and then down to tree line +2008-05-19,19.7297222,-155.09,Hilo,HI,light,600,one thing to see one object, but three, where are they? +2008-05-19,33.6694444,-117.8222222,Irvine,CA,circle,600,Blue/White Circular UFO near UC Irvine's Mesa Court at 9:30 p.m. on 5/19/08 +2008-05-19,44.8277778,-92.9436111,Cottage Grove,MN,changing,9000,Multiple ufos with unusual lights over Cottage Grove, MN +2008-05-19,29.5847222,-81.2080556,Palm Coast,FL,triangle,300,Am a investigator here in the county on UFO's.I had recieved a phone call from a witness that she had seen a formation in a trianglular +2009-05-19,39.7911111,-74.9294444,Berlin,NJ,circle,20,We saw three lights move quickly and then turn into one light. +2009-05-19,42.2041667,-72.6166667,Holyoke,MA,changing,10,5 second sighting of rectangular object +2009-05-19,35.1477778,-114.5675,Bullhead City,AZ,rectangle,600,White box, stood still, then began to fade with a red glow.((NUFORC Note: Confirmed high-altitude research balloon. PD)) +2009-05-19,33.7319444,-84.9191667,Villa Rica,GA,sphere,1800,5 Ball like aircrafts +2009-05-19,41.4875,-82.1016667,Sheffield Lake,OH,flash,2,Bright white circular flash in the sky +2009-05-19,39.4152778,-81.455,Marietta,OH,formation,120,Procession of moving stars in an otherwise clear *still* night sky. +2009-05-19,36.1630556,-82.8311111,Greeneville,TN,light,3600,15 lights travel across the sky all with in 1 hour (not satilites acorrding to the satilite database) +2010-05-19,34.1625,-112.85,Congress (Near),AZ,sphere,900,I can describe it, but I still don't know what it was: alien probe, military, possible living organism. +2010-05-19,37.9158333,-122.3105556,El Cerrito,CA,triangle,30,An odd black triangle shaped craft with other unknown crafts slowly difted pass our house +2010-05-19,40.7141667,-74.0063889,New York City (Staten Island),NY,disk,180,Flying saucer making possible telepathic contact and the sacer made a noise. ((NUFORC Note: Student report. Hoax?? PD)) +2010-05-19,42.5972222,-82.8780556,Mt. Clemens,MI,cigar,240,Best I Can Describe Is A Flying Submarine. +2010-05-19,39.7558333,-77.5780556,Waynesboro,PA,light,2700,Very large and bright low hanging light in the sky, lasted for about 45 minutes before it dissapeared. +2010-05-19,27.3361111,-82.5308333,Sarasota,FL,changing,360,Red and Blue lights jerking across the sky and multiple helicopters circling the event during and after. +2010-05-19,40.5580556,-90.035,Canton,IL,circle,15,two sets of five/six bright yellow lights too high to be an animal, too low/big to be aircraft /star appear out of nowhere in rural IL +2011-05-19,48.7597222,-122.4869444,Bellingham,WA,changing,120,Cluster of objects flying as a cohesive unit -- morphed, changed shapes. Looked like a net or a grid. +2011-05-19,46.9966667,-120.5466667,Ellensburg,WA,light,60,bright object moving very fast across sky with no audible sound +2011-05-19,37.6688889,-122.0797222,Hayward,CA,light,180,STARS RE ARRANGING AND LIGHTS FALLING FROM THE HEAVENS. +2011-05-19,40.1527778,-76.6030556,Elizabethtown,PA,oval,30,Bright Oval Dissolved/Flickered in night sky +2011-05-19,34.1952778,-79.7627778,Florence,SC,fireball,20,((HOAX??)) Two fireballs just looking at me. +2011-05-19,40.8666667,-124.0816667,Arcata,CA,formation,300,Yellow Light UFO Formation over Arcata, CA +2012-05-19,41.3683333,-82.1077778,Elyria,OH,fireball,2400,Unusual movement from a red flashing light sited over Elyria, Ohio (left of the Big Dipper) +2012-05-19,39.8911111,-74.9222222,Marlton,NJ,sphere,90,Marlton , NJ 2 am 5/19/12 three orange orbs in straight line formation flying west to east +2012-05-19,47.6397222,-122.8272222,Seabeck,WA,triangle,240,Low flying very bright object with a blinking light that I could see for miles and miles. +2012-05-19,28.5380556,-81.3794444,Orlando,FL,light,300,Tried to watch shuttle launch, ended up seeing aliens. +2012-05-19,33.9202778,-80.3416667,Sumter,SC,disk,45,2 big saucer disc with light bulbs around the outside moving colors. +2012-05-19,32.3666667,-86.3,Montgomery,AL,flash,600,Object that was clearly at a stand still for 10 minutes and began to slowly move away , montgomery alabama +2012-05-19,33.6680556,-117.3263889,Lake Elsinore,CA,changing,1800,Extremely bright sphere over Canyon Lake, Canyon Hills area +2012-05-19,61.2180556,-149.9002778,Anchorage,AK,triangle,120,UFO between our neighbors house and ours in Anchorage, Alaska. +2012-05-19,38.8002778,-90.6263889,St. Peters,MO,circle,60,9 bright orange objects flying overhead with no sound ... heading from approximately southeast to northwest. I was out walking my dogs +2012-05-19,28.9783333,-96.6458333,Edna,TX,other,3600,Multiple vertical UFO's spotted over Edna, and Hope Texas area. May 18 and 19 2012. ((NUFORC Note: Sighting of Venus? PD)) +2012-05-19,40.0288889,-75.6211111,Exton,PA,light,20,Completely silent, bright, and randomly pulsating red ball or light flying rather slow over head then disappearing +2012-05-19,33.8941667,-83.9558333,Grayson,GA,changing,1200,9 pulsating, 3-tiered hour glass shaped objects seen by 5 adults over Grayson GA. 3/4 football field in size +2012-05-19,30.3672222,-89.0927778,Gulfport,MS,light,1200,Persistent strange glowing star over Gulfport, Ms., each evening (first noticed February of 2012). +2012-05-19,33.9561111,-83.9880556,Lawrenceville,GA,other,900,9 very bright, deep orange, silent and pulsating air objects disappear at light speed +2012-05-19,36.1538889,-95.9925,Tulsa,OK,circle,300,Four Round bright orange low and slow objects over Tulsa +2012-05-19,42.0038889,-87.9702778,Elk Grove Village,IL,fireball,300,As I was driving down Mecham Blvd headed toward Biesterfield Rd I saw orange glowing lights flying overhead. I pulled over and counted +2012-05-19,44.98,-93.2636111,Minneapolis,MN,circle,300,Red Lights over Minneapolis +2012-05-19,41.85,-87.65,Chicago,IL,other,7,5/19/12 saw 2 UFOs red dome front head yellow square body colors dotted-like; flying silently due NW. +2012-05-19,44.98,-93.2636111,Minneapolis,MN,triangle,30,I saw 3 blinking red lights that blinked from bright red to white in a triangle formation flying south at same speed. It was silent and +2012-05-19,41.3502778,-83.1219444,Fremont,OH,fireball,30,2 bright orange fireballs seen 90 minutes apart, one with an apparent solid mass structure. +2012-05-19,42.0027778,-71.5152778,Woonsocket,RI,light,180,Large bright fire orange in color,a perfect globe of light +2012-05-19,42.3313889,-83.0458333,Detroit,MI,circle,14400,3 craft hover over metro detroit from 9:45 pm 11:45pm and longer. ((NUFORC Note: Possible star? PD)) +2012-05-19,38.4219444,-77.4086111,Stafford,VA,fireball,180,Orange Glows flying east to west and then faded. +2012-05-19,41.4413889,-85.265,Kendallville,IN,unknown,180,Single file line of 8 objects fly below 5000 ft. at subsonic speed, displaying a front red-orange light, turn, disappear. +2012-05-19,37.12,-93.48,Republic,MO,fireball,1800,Ten fireballs passing over Republic, MO. Orange color. +2012-05-19,42.6555556,-70.6208333,Rockport,MA,light,900,Many red lights over downtown Rockport, MA coming from the western sky hovering in the northern sky +2012-05-19,43.6441667,-76.0863889,Sandy Creek,NY,sphere,1200,Three Red Orbs making strange movements at night in the eastern sky. +2012-05-19,39.7172222,-74.9697222,Sicklerville,NJ,other,180,((HOAX??)) Two flying green human looking objects with a slender looking female body, with butterfly wings arms and leggs. +2012-05-19,42.6763889,-76.8233333,Ovid,NY,circle,300,Bright orange lights moving very fast +2012-05-19,40.3266667,-78.9222222,Johnstown,PA,sphere,300,Orange glowing orb or sphere hovering above the tree line. +2012-05-19,41.2586111,-95.9375,Omaha,NE,other,300,4 objects flying into storm +2012-05-19,45.7916667,-97.7505556,Britton,SD,oval,4,two ufos flew together changed direction and flew away +2012-05-19,33.6188889,-117.9280556,Newport Beach,CA,flash,300,3 UFO's over Orange County, CA +2012-05-19,42.1102778,-88.0341667,Palatine,IL,light,300,2 Red flashing lights +2012-05-19,34.2072222,-84.1402778,Cumming,GA,circle,180,Two Glowing Orange Orbs in the Night Sky +2013-05-19,37.9975,-121.7113889,Oakley,CA,light,180,Went onto my back balcony at 4:30 this morning and saw a arc type light enter our atmosphere from the south,the arc light went over our +2013-05-19,35.6266667,-120.69,Paso Robles,CA,rectangle,2,Gray/White object moving very fast photographed over Paso Robles. ((NUFORC Note: Hummingbird or cicada, we suspect. PD)) +2013-05-19,44.8261111,-68.6938889,Eddington,ME,cigar,60,Large metalic cigar shaped object seen just before sunset. +2013-05-19,34.551944399999996,-77.9263889,Burgaw,NC,triangle,3,Gigantic Triangle Craft +2013-05-19,33.6305556,-112.3325,Surprise,AZ,sphere,600,5 Orange orbs coming from the White tank mountains heading east +2013-05-19,28.5380556,-81.3794444,Orlando,FL,formation,180,Glowing red/orange orbs/craft flying in a path. +2013-05-19,41.9125,-88.1347222,Carol Stream,IL,triangle,7,Orange Triangular Object Over Carol Stream IL +2013-05-19,39.9611111,-82.9988889,Columbus,OH,other,600,Strange lights over the sky in northwest Columbus +2013-05-19,43.5758333,-124.1738889,Lakeside,OR,circle,600,Bright white light moving super slow. Almost like not at all +2013-05-19,26.5886111,-80.0388889,South Palm Beach,FL,triangle,1200,Was driving north on the Florida turnpike. My son seen it in front of us lit with a blue aura on top and white on the bottom. It was +2013-05-19,40.7141667,-74.0063889,New York City (Glen Oaks/Littleneck Area, Queens),NY,light,120,As I was driving my friend and I noticed several dots(lights) in the sky that were shooting in all directions until they disappeared. +2013-05-19,38.0175,-77.5155556,Ladysmith,VA,light,4,Green flashing object moving extremely fast towards the East +1958-05-21,34.1722222,-118.3780556,North Hollywood,CA,sphere,604800,I was four years old. i would visit at my grandmothers house. she lived in north hollywood . i was playing in the front yard when a bal +1962-05-20,40.6183333,-74.7447222,Whitehouse (Near),NJ,light,1200,Bright light, "electrical sensation" and missing time. +1966-05-20,42.7919444,-83.6277778,Holly,MI,light,90,No visible craft, very early morning, outside, bright white illumination. +1968-05-20,40.9219444,-74.3458333,Towaco,NJ,circle,2400,I, and my wife at the time, saw what appeared to be the center star in a star cluster I believed was big bear move in a half circle and +1970-05-20,40.3355556,-75.9272222,Reading,PA,triangle,600,We saw this HUGE tringular craft with lights on each corner when I was 16, as it hoovered above us +1971-05-20,34.0858333,-81.1833333,Irmo,SC,circle,10,it was flying at 150 feet moving slow and flew over our house it was round with moving diffent collored lights around the edge. +1974-05-20,33.5213889,-84.3538889,Jonesboro,GA,disk,180,saucer came across the tree tops in the yard,swayed,then took off across hwy & 1/2 mile beyound then straight down +1976-05-20,41.9761111,-72.5922222,Enfield,CT,triangle,900,two objects came together in the sky. +1980-05-20,40.7608333,-111.8902778,Salt Lake City,UT,sphere,2700,Stationary silver ball very high in daytime May 1980 observed approximately 45 minutes. +1981-05-20,35.9938889,-78.8988889,Durham,NC,sphere,300,Big as a house & made no sound +1981-05-20,35.8197222,-88.9158333,Humboldt,TN,disk,600,I SAW a saucer shaped space craft come right over the top of my house within throwing distance! +1982-05-20,41.4988889,-72.9011111,Cheshire,CT,unknown,1200,A sighting of the Hudson Valley UFO +1983-05-20,46.9233333,-98.0027778,Valley City,ND,other,900,An object comprised of 4 or 5 metalic orbs in a row, moving West to East, and returning every 5 minutes following a parallel path. +1984-05-20,43.3269444,-83.0802778,Marlette,MI,unknown,120,Plane like object with windows ,completely silent and travels so fast like the blinkof aneye. +1987-05-20,29.3011111,-94.7975,Galveston,TX,changing,7200,i wrote to this site about 1 year ago and did not get a response from you.when i was 10 years old my mom called me and my brother a +1988-05-20,35.4452778,-100.2705556,Wheeler,TX,light,300,A star type bright light slowly moved by and disapeared in to the distance.The same object was seen 3 times in the same week. +1991-05-20,33.7488889,-84.3880556,Atlanta (However, I Have Heard Entire East Coast),GA,light,3600,"false dawn" +1991-05-20,44.4583333,-93.1613889,Northfield,MN,formation,480,7 UFOs flying in a train formation seen in Northfield MN, 1991 +1992-05-20,37.6811111,-122.1233333,San Lorenzo,CA,circle,300,Circular, 2 storys, rotating mirrored windows +1994-05-20,37.0430556,-100.9205556,Liberal,KS,sphere,1200,2 matalic spears connected to each other hovered in the southern sky for about 15-20 min. +1994-05-20,40.4405556,-79.9961111,Pittsburgh,PA,oval,12,1.What I saw was a series of lights flashing left to right up and down.I would say it was 100 meters away from my bedroom window.It fle +1995-05-20,32.7152778,-117.1563889,San Diego (Ocean Beach),CA,light,180,Two balls of light approached a point 1/2 mile out, over the ocean, and just south of the O. B. pier. At this point, the two balls of l +1995-05-20,39.0997222,-94.5783333,Kansas City,MO,triangle,600,Black, triangular object sighted during middle of day in large metro area. +1995-05-20,32.7666667,-96.5988889,Mesquite,TX,sphere,60,I was driving down East Glenn Dr. towards Faithion P. Lucas and noticed a very large round silver white object. At first I quickly tho +1995-05-20,35.2269444,-80.8433333,Charlotte,NC,light,300,A friend and I witnessed white lights the size of stars poking randomly through a cloudy night sky. +1995-05-20,38.6272222,-90.1977778,St. Louis,MO,cigar,3,Neon green cigar shape craft with neon red tail emission traveling noiselessly at high speed . +1996-05-20,40.8566667,-74.1288889,Passaic,NJ,disk,300,Interaction with an unknown silent object which tumbled in a straight line away and up at a shallow angle to where a silver dot was. +1996-05-20,35.9555556,-80.0055556,High Point,NC,fireball,120,I was one the way home one night when a round object passed over head it looked like lava and fire around it +1997-05-20,38.2541667,-85.7594444,Louisville,KY,circle,300,glow over louisville kentucky +1997-05-20,26.9338889,-80.0944444,Jupiter,FL,other,1200,Flame object giving off colored rings in the sky then exploding. ((NUFORC Note: Possible missile launch?? PD)) +1997-05-20,64.7511111,-147.3494444,North Pole,AK,unknown,10,Strange noisy craft in North Pole +1997-05-20,43.6630556,-116.6863889,Caldwell (Far West Of, Towards Oregon),ID,other,1200,My neigbor viewed what looked like a verticalcontrail,orange, for 10mins. at his work,then drovehome,viewed it for 10mins., I then ca +1997-05-21,34.0522222,-118.2427778,Los Angeles,CA,oval,1380,One of the items was shaped like an eclipse. I was so impressed that I retained notes of these occurences. Both occured on the same e +1998-05-20,42.1194444,-71.3255556,Norfolk,MA,other,20,Dim star that moved sharply, and intentionally +1998-05-20,40.0680556,-82.5197222,Granville,OH,light,180,I am a guard on a remote estate at the above location. On the night in question I witnissed a light traveling very fast west to east. T +1998-05-20,39.3641667,-74.4233333,Atlantic City,NJ,circle,60,I'm a retired police detective. I was at the sea wall in Atlantic City, talking to a Atlantic City Fireman. I notice a bright blue ligh +1998-05-20,40.0630556,-81.0744444,Morristown,OH,fireball,180,A huge bright white ball with a long jagged laight blue tail moving very slowly across the sky. +1998-05-20,42.1513889,-87.9597222,Buffalo Grove,IL,light,180,I saw an object that displayed Intelligence, bright light and great speed. +1998-05-20,40.7608333,-111.8902778,Salt Lake City,UT,chevron,4,Black bat-shaped object flying low, and slow, and silent, with no lights. +1998-05-20,44.4758333,-73.2125,Burlington,VT,light,20,On May 20, 1998, at 22:40, I was drawn to my 3rd floor studio apartment window (western side of building) by some noise on the street b +1999-05-20,36.4613889,-77.6544444,Roanoke Rapids,NC,cylinder,180,I was in my wife's graduation with some friends. Around 7:35 my friends were taping the event. When I asked them to look up they refuse +1999-05-20,47.8597222,-103.9258333,Cartwright,ND,rectangle,240,The aircraft was rectangle in shape and moved very slow with no sound. +1999-05-20,40.4797222,-85.6277778,Jonesboro,IN,sphere,1800,shiny sphere next to the setting sun +1999-05-20,43.073055600000004,-89.4011111,Madison (20 Miles South Of),WI,cone,600,Sides of cone were flickering white light. Object was about 3/4 of a mile away, just below clouds. My view was breifly blocked, then +1999-05-20,39.1652778,-88.3791667,Montrose,IL,circle,300,It was one craft that left many +1999-05-20,30.1763889,-85.8055556,Panama City Beach,FL,triangle,2,Triangular vehicle seen over ocean in Florida. +1999-05-20,30.1586111,-85.6602778,Panama City,FL,triangle,15,I saw a light streak that I thought was a shooting star except upon further attention it was the wrong color and too thick of a trail. +2000-05-20,41.24,-81.4408333,Hudson,OH,oval,180,as told to me at my job right after the sighting, My friend gail was traveling to work on route 91, into hudson,ohio. She was a ovel cr +2000-05-20,45.8016667,-68.4122222,Benedicta,ME,sphere,5,The object already in motion was hurtling away and ascending +2000-05-20,43.5061111,-90.6680556,Viola,WI,cigar,10,white rod shaped object flying lower than small plane viewed by one person during outdoor graduation ceremony +2000-05-20,37.0297222,-76.3455556,Hampton,VA,other,20,Daylight observation of strange shaped craft over interstate in populated area near local Air Force base. +2000-05-20,34.3916667,-118.5416667,Santa Clarita,CA,light,180,My family and I saw 4 bright steaks of light in the same exact area of the sky all which traveled in opposite directions.. +2000-05-20,34.698055600000004,-118.1358333,Lancaster,CA,unknown,180,Low flying,fast moving object, making abrupt turns and dissapeared at a steep ange below a small rise. +2000-05-20,47.8208333,-121.5538889,Index,WA,cone,1800,STRANGE LIGHTS SEEN OVER RIVER +2000-05-21,37.6866667,-96.9763889,Augusta,KS,fireball,360,Distant lights cross the Stars in Kansas,They Weave and Glow,What are They? +2001-05-20,48.0097222,-122.5247222,Freeland (Whidbey Island),WA,cylinder,900,At approximately 5:30 AM on 05-20-01 I was awakened by a bright light shining in my bedroom window deck door. This was unusual as we ha +2001-05-20,39.7391667,-104.9841667,Denver,CO,oval,600,Daytime sighting in Denver City Limits, witnessed UFO color, communications, movements of 6 flying craft. +2001-05-20,45.4944444,-122.8658333,Aloha,OR,diamond,720,Slow moving orange dimond. +2001-05-20,45.5230556,-122.9886111,Hillsboro,OR,light,3600,3 of us watched UFO for over 1hour by Hillsboro, Oregon last night instead of the Sapranos! very bright flashes and rainbow effects! +2001-05-20,38.3822222,-87.2127778,Winslow,IN,triangle,900,Three pair of triangle-shaped objects with four lights alternating blinks appeared flying rapidly in the sky. +2002-05-20,40.7141667,-74.0063889,New York City (Brooklyn),NY,cigar,60,cigar shaped slender long ufo observed for a minute with subseqeunt absence of the object after just about 10 to 15 seconds of not look +2002-05-20,46.0038889,-112.5338889,Butte,MT,unknown,600,Butte, Montana May 2002: A star appears to move, and is destroyed by some sort of missile or kamikazee spaceship. +2002-05-20,40.9477778,-90.3711111,Galesburg,IL,light,5,2 Fast, Small, Yellow Orbs. +2002-05-20,40.1794444,-74.8555556,Fairless Hills,PA,triangle,120,Triangular UFO seen directly over head flying 20 mph +2002-05-20,34.2783333,-119.2922222,Ventura,CA,cone,3600,It was amazing +2002-05-20,39.2902778,-76.6125,Baltimore,MD,changing,600,I observed it through my telescope. It changed shapes every 2 to 3 seconds. First an egg shape, then disc, and finally a triangle. It a +2002-05-20,33.0197222,-96.6986111,Plano,TX,light,120,Star-like object made two right angle turns before fading away. +2002-05-20,39.7686111,-76.68,Shrewsbury,PA,changing,600,At approximately 10:30 p.m. EST, an oval-shaped orange/blue/purple (changing) object was seen from Md. and Pa. on eastern horizon. +2003-05-20,40.7608333,-111.8902778,Salt Lake City,UT,changing,3,Live wether cam 5-20-03 Salt lake at noon KSL bright white with red diamond moving . +2003-05-20,35.9555556,-80.0055556,High Point,NC,triangle,20,This was my first siting and boy was this a real site to see! One night me and my wife, back in roughly 2003, was living with my grandm +2003-05-20,32.2216667,-110.9258333,Tucson,AZ,oval,1800,Whitish Grey somewhat Egg/Oval in shaped slowly hovering way up in sky, folding in half/quarter and back to Oval/Egg again. +2003-05-20,40.7141667,-74.0063889,New York City,NY,triangle,20,Triangular Bright White Object Over NYC Moving West to East 4:42 am. +2003-05-20,37.0833333,-88.6,Paducah,KY,cigar,180,White cigar-shaped object flashes a brilliant white light twice, then disappears. +2004-05-20,33.8388889,-83.9008333,Loganville,GA,other,1500,lighting the whole woods up 3 times as bright as the moon. +2004-05-20,47.1916667,-114.8908333,Superior,MT,formation,600,Pictures of night-flying UFOs over Superior, MT +2004-05-20,21.3069444,-157.8583333,Honolulu,HI,unknown,45,May 20, 2004 At approximately 8:20 P.M. Pacific Standard time, I saw in the northeastern sky a series of random light bursts that we +2004-05-20,46.7208333,-92.1038889,Superior,WI,light,180,I set my camcorder in the window in night vision mode fixed with an infrared filter which blocks the visible light ranges. After aprox +2004-05-20,32.9477778,-112.7161111,Gila Bend,AZ,disk,3600,7 bright yellowish-orange lights from a flying saucer were seen in sky surrounded by smaller white sparkling lights +2004-05-20,38.4783333,-107.8755556,Montrose,CO,circle,3,Spotted a UFO while watching a helicopter at night persuing a criminal +2004-05-20,42.3583333,-71.0602778,Boston,MA,egg,20,wobbly flying red object +2004-05-20,48.4758333,-122.3241667,Burlington,WA,diamond,360,I was taking my usual walk down the dike, when I noticed 3 dimond-shaped objects in the sky.Chaning color and shape... +2005-05-20,48.6330556,-112.3252778,Cut Bank,MT,light,1800,My wife and I were coming from a late night movie in Cut Bank, MT. +2005-05-20,46.2830556,-96.0772222,Fergus Falls,MN,circle,60,Woman reports witnessing a "bright red sphere" in the southern sky, viewed from her home. +2005-05-20,46.2830556,-96.0772222,Fergus Falls,MN,triangle,120,Man witnesses peculiar, orange-colored, triangular object against the night sky. +2005-05-20,46.2830556,-96.0772222,Fergus Falls,MN,triangle,300,I observed a bright orange triangle that made no noise and moved slowly into the North disappearing. +2005-05-20,37.4852778,-122.2352778,Redwood City,CA,other,1,My mother and I witnessed a strange "blackout" at 1:30 pm on a clear sunny day. +2005-05-20,42.2222222,-83.3966667,Romulus,MI,circle,420,Object was stationary, then moved to the right, stopped, one more move to right, stopped then vanished. +2005-05-20,21.3069444,-157.8583333,Honolulu,HI,light,1200,zig zagging light, floating oval object, and large dark colored object seen above park in honolulu. +2005-05-20,36.0397222,-114.9811111,Henderson,NV,sphere,87,Six photos of unusal object at sunset on May 20th 05. +2005-05-20,41.2752778,-75.8505556,Plains,PA,light,240,((NUFORC Note: Sighting of ISS. PD)) Light traveling straight down then vanished. +2005-05-20,32.7152778,-117.1563889,San Diego,CA,circle,120,My brother, and friend and I were outside enjoying the night when My brother looked up in the sky.He was saying how beautiful the s +2005-05-20,42.575,-70.9305556,Danvers,MA,other,90,Craft very low to the ground. No sound. Flew along at a slow speed. Never excellerated. +2005-05-20,47.6105556,-122.1994444,Bellevue,WA,circle,3,Extremely fast blue-ringed circle seen flying by Bellevue. +2006-05-20,35.7211111,-77.9158333,Wilson,NC,circle,120,Unusual ball of light flashed in the sky +2006-05-20,44.5530556,-94.2202778,Gaylord,MN,triangle,1200,flahing "star" moving around for 20 minutes near the big dipper. +2006-05-20,41.6269444,-88.2038889,Plainfield,IL,light,3,Single light moves through sky at alarming rate In Plaifield, Illinois +2006-05-20,33.0461111,-96.9938889,Lewisville,TX,other,5400,multi color changing lightning bolt. contained in a "flair" like star +2006-05-20,41.0263889,-73.6288889,Greenwich,CT,fireball,2,Meteorite in Greenwich, CT +2006-05-20,38.2769444,-112.6402778,Beaver (In Outskirts Of),UT,teardrop,30,Teardrop craft hovered in sky and then darted into a cloud and didn't come out. +2006-05-20,33.8358333,-118.3397222,Torrance,CA,other,30,Cloaked UFO shadow seen on low cloud layer +2006-05-20,38.3325,-82.9486111,Grayson,KY,circle,180,very shiney round ball very high in the air +2006-05-20,32.895,-97.5455556,Azle,TX,light,9,box kite shaped with cylinder center connecting the two ends +2006-05-20,39.7252778,-84.1741667,Oakwood,OH,light,30,High-altitude, moving, light that, when overhead, became brilliant; it accelerated off and disappeared into the night sky. +2006-05-20,28.5555556,-82.4505556,Spring Hill,FL,light,300,2 points of light seen from a small telescope +2007-05-20,40.5066667,-74.2658333,Perth Amboy,NJ,oval,900,Perth Amboy UFO Hovers over water tower. +2007-05-20,41.3405556,-87.6213889,Beecher,IL,disk,1200,Round Disc Flying With Us While Driving +2007-05-20,26.625,-81.625,Lehigh Acres,FL,unknown,300,Large Craft near canal have pictures I sent and called the Tower at RSW +2007-05-20,38.5816667,-121.4933333,Sacramento,CA,fireball,5,It was as fast as a shooting star, but shooting stars are not red, especially at dusk against a clear sky +2007-05-20,33.7455556,-117.8669444,Santa Ana,CA,light,900,lights over Santa Ana , CA, were about to collide when both lights disappeared in front of each other +2007-05-20,37.9736111,-122.53,San Rafael,CA,changing,180,Bright white, headlight beam of light, close to SF Bay in San Rafael, north of SR/Richmond Bridge +2007-05-20,28.5380556,-81.3794444,Orlando,FL,unknown,30,Twin White Lights seen as Possible UFO +2007-05-20,39.7391667,-104.9841667,Denver,CO,triangle,20,Flying object with Triangular shaped aura spotted in Denver +2008-05-20,42.2208333,-70.9402778,Weymouth,MA,light,180,Bright white light travelling from West to East. +2008-05-20,35.6869444,-105.9372222,Santa Fe,NM,circle,30,A bright solid round light above mountain south of Santa Fe, NM. +2008-05-20,32.2216667,-110.9258333,Tucson,AZ,disk,300,3 bright white looking metallic objects hovering over Tucson. +2008-05-20,37.9513889,-91.7711111,Rolla,MO,other,300,Bright White Light slowly moving across the sky +2008-05-20,41.9666667,-92.5766667,Tama,IA,light,120,BRIGHT WHITE LIGHT MOVING ACROSS SKY SEEN ON THREE OCASSIONS +2008-05-20,29.5686111,-97.9644444,Seguin,TX,oval,3,large disc object tilts on side, glowing clearly visible as and disappears immediately after the tilt 2-3 second duration +2008-05-20,43.1230556,-71.0119444,Lee,NH,light,1140,Off white, yellowish orb, eratic behavior, seen in sky. +2008-05-20,41.7486111,-77.3008333,Wellsboro,PA,oval,900,LOW FLYING/HOVERING OBJECT W/ RED/GREEN/WHITE LIGHTS W/ LOW HUMMING +2008-05-20,43.0480556,-76.1477778,Syracuse (Elbridge),NY,light,90,I saw a very bright light in the sky that passed and then "shot off into space." +2009-05-20,41.2330556,-80.4936111,Sharon,PA,circle,10,round light moved at regular speed moving out of Earth's atmosphere +2009-05-20,43.2363889,-120.6358333,Christmas Valley,OR,oval,1800,amber color really fast one appeared really close so i pulled over and got out to hear it and it took off and they were gone in a blink +2009-05-20,40.7141667,-74.0063889,New York City,NY,sphere,2,a probe or craft about a foot and a half in size whizzed over my face as i searched the sky above my face about 12 ft. +2009-05-20,40.7141667,-74.0063889,New York City,NY,sphere,300,a brilliant low flying green star was my last sighting. +2009-05-20,35.6008333,-82.5541667,Asheville,NC,disk,120,A saucer shape object appeared in the air a few hundred yards away and went downwards behind the trees. +2009-05-20,45.0655556,-93.2016667,New Brighton,MN,rectangle,4,At dusk, watching the first stars of the evening make their appearance a bright rectangle appeared at arround 90 degrees ( almost strai +2009-05-20,35.7719444,-78.6388889,Raleigh,NC,triangle,45,Triangle shaped craft with 4 white lights and 1 blinking red light passed silently overhead +2009-05-20,43.073055600000004,-89.4011111,Madison,WI,sphere,60,We thought the object was star, it was a white light which moved across the north north-eastern sky heading south and then faded away. +2009-05-20,41.5894444,-88.0577778,Lockport,IL,triangle,120,saw 3 bright white lights in a triangle shape for approximately 2 minutes and it vanished +2009-05-20,44.0313889,-70.105,Lisbon,ME,oval,300,Distinct Craft, huge bottom of the craft light, specific color light goes off and dissapears after 2 minutes, no flashing lights. 5 +2009-05-20,42.4383333,-74.6877778,Harpersfield,NY,teardrop,120,Walking at night on our property to investigate light activity beyond the tree line. We stood still for several minutes looking skyward +2010-05-20,34.0122222,-117.6880556,Chino,CA,unknown,20,sound - my wife and i were awaken by a sound that i have never heard before in my life it was very quick and very close to our house, i +2010-05-20,33.4222222,-111.8219444,Mesa,AZ,light,15,Two orange/amber lights moving across the sky in a SE to NW direction seen from backyard in Mesa, Arizona at 1:40 a.m on May 20, 2010. +2010-05-20,42.5238889,-83.2233333,Beverly Hills,MI,cigar,5,Fast moving, low flying, very large and long metallic object seen in daylight. +2010-05-20,27.9091667,-97.1497222,Aransas Pass,TX,light,9000,I saw floating lights dissapear and reappear many times over widespread areas going slowly west. +2010-05-20,44.0716667,-111.4475,Ashton,ID,other,1,Bright flash lit up entire horizon to the northward +2010-05-20,41.8713889,-72.3691667,Tolland,CT,light,10,2 red blinking orbs. +2010-05-20,40.7230556,-74.3111111,Springfield,NJ,triangle,600,Two of us saw a very large UFO for 10 minutes,not moving and silent. +2010-05-20,39.5061111,-77.6527778,Boonsboro,MD,oval,1200,A large ball of pulsating light with 2 smaller flashes of light shooting out from the sides then disappearing. +2011-05-20,47.6816667,-122.2075,Kirkland,WA,unknown,2400,Many people saw a flat black bow shaped UFO for 30 minutes and then suddenly disapPeared. +2011-05-20,32.5005556,-94.7402778,Longview,TX,fireball,60,One round Fire ball moveing very slowly over my shop about 60 ft high moveing from west to east in ETexas +2011-05-20,38.8916667,-121.2919444,Lincoln,CA,sphere,30,grapefruit sized blue globe!! +2011-05-20,34.1683333,-118.605,Woodland Hills,CA,oval,300,Oval, single craft, 2 white lights, 2 multi-colored lights, within 500 feet. +2011-05-20,30.6941667,-88.0430556,Mobile,AL,triangle,300,I was on my way home from work (overtime) and i was on this long road with trees on both sides of the highway. The road was practically +2011-05-20,42.6038889,-90.7844444,Sherrill,IA,triangle,360,Couldn't take one this craft shut power off to our and neighbors house all electrical devices also we malfunction i have a fuzzy video +2012-05-20,41.7416667,-70.4522222,East Sandwich,MA,other,45,4 Hovering Bright Lights In Cape Cod Sky Over Sandwich +2012-05-20,41.7416667,-70.4522222,East Sandwich,MA,rectangle,120,4 rectangle bright orange lights in sky in east sandwich, lasted about 2 minutes, basically lights were in 4 corners, never saw it come +2012-05-20,43.0388889,-87.9063889,Milwaukee,WI,fireball,120,Orange/Red burning ball sailing in midnight sky +2012-05-20,36.8352778,-76.2986111,Portsmouth,VA,light,3600,Bluish light going around in circles in the sky. +2012-05-20,40.6669444,-111.8872222,Murray,UT,light,60,3 alligned blinking white lights moving in same direction +2012-05-20,35.9138889,-81.5391667,Lenoir,NC,triangle,7,A friend and I witnessed a possible UFO take off about 250 feet away. +2012-05-20,37.7652778,-122.2405556,Alameda,CA,cigar,15,Craft resembling a plane disappears in broad daylight. +2012-05-20,33.9133333,-78.3041667,Holden Beach,NC,triangle,30,It seemed like just a red light coming at us at 100mph, once over us it seemed to slow down A LOT, it was triangle and had 4 lights tha +2012-05-20,43.7730556,-88.4469444,Fond Du Lac,WI,triangle,60,Sighting of huge yellowish triangular slow moving craft +2012-05-20,36.7477778,-119.7713889,Fresno,CA,light,120,Two orange lights traveling west to east of Central California +2012-05-20,34.1808333,-118.3080556,Burbank,CA,fireball,20,Glowing reddish fireballs gather to form V shape +2012-05-20,34.0513889,-84.0713889,Suwanee,GA,light,300,Red lights over Suwanee Georgia +2012-05-20,33.8302778,-116.5444444,Palm Springs,CA,oval,120,3 red cigar shaped UFO's flying overhead. 1 stopped and remained stationary for about 30 seconds. +2012-05-20,37.6775,-113.0611111,Cedar City,UT,circle,1200,Several orange orbs in sky and then disappearing. +2012-05-20,40.3013889,-79.5391667,Greensburg,PA,light,300,White light appeared in the middle of night sky. +2012-05-20,40.5622222,-111.9288889,South Jordan,UT,circle,900,Saw 18 large orange lights in night sky move forward and up until just a pinpoint white light. ((NUFORC Note: Comm. pilot rept. PD)) +2012-05-20,35.3394444,-97.4863889,Moore,OK,circle,600,Yellow-Orange circular sightingwith ascending lights hovering above Moore, OK +2012-05-21,30.3569444,-87.1638889,Gulf Breeze,FL,changing,900,I saw not a plane or a Helicopter. I saw this thing it was real.No sound but the sound of birds going to roost for the night. +2013-05-20,44.2113889,-69.2747222,Union,ME,light,600,2 bright lights in the sky. +2013-05-20,30.3319444,-81.6558333,Jacksonville,FL,other,180,Jacksonville, Fla spots red/yellow glow in night sky with changing, slower velocity and then going black +2013-05-20,41.0047222,-121.4372222,Fall River Mills,CA,sphere,2,As my wife and I were traveling east on ca hwy299 we noticed 4 round orange/red objects in the sky then all of a sudden 2 of them moved +2013-05-20,33.1958333,-117.3786111,Oceanside,CA,fireball,180,The circular object or light was bright orange in the center, and had a hazy red ring surrounding it. +2013-05-20,26.4611111,-80.0730556,Delray Beach,FL,light,120,Pulsing silent &quot;ultra bright light&quot; in the east skies of Delray Beach +2013-05-20,34.8027778,-86.9716667,Athens,AL,flash,300,Three quickly flashing lights one after the other repeating in order and moving together +2013-05-20,40.8255556,-73.6986111,Port Washington,NY,fireball,180,Bright orange glow with short fixed wings sighted +2013-05-20,40.6547222,-73.6722222,Lynbrook (Long Island),NY,fireball,30,A pea-sized white orb of light passed my window as I was trying to fall asleep. +2013-05-20,40.7438889,-74.0327778,Hoboken,NJ,oval,300,2 people standing in same place and one sees UFO and other doesn't but photos tell what she saw was real +1971-05-21,39.8466667,-75.7119444,Kennett Square,PA,disk,1200,after making incredible aerial manuevers, the object merged with 2 other objects and sped off +1979-05-21,31.135,-99.3347222,Brady,TX,unknown,300,Low object over roof of house +1984-05-21,32.5005556,-94.7402778,Longview,TX,triangle,10,Triangle object no lights no sound +1987-05-21,29.4238889,-98.4933333,San Antonio,TX,disk,600,We saw a UFO that night that was about 400 feet long that made no sound and had a beacon of light shining out of it like it was looking +1990-05-21,34.6855556,-82.9533333,Seneca,SC,light,300,Five reddish-orange, round lights that spanned about two miles. +1996-05-21,40.3819444,-80.3930556,Burgettstown,PA,triangle,180,triangular ufo over burgettstown,pa +1997-05-21,48.0905556,-105.64,Wolf Point,MT,fireball,300,Ball of light in Wolf Point Montana May 21, 1997 +1997-05-21,33.4483333,-112.0733333,Phoenix,AZ,other,7200,Bright object in SSE over Phoenix, May 21, 1997 in the morning sky. +1998-05-21,47.6588889,-117.425,Spokane,WA,light,4,looking north over the spires of Gonzaga University sighted a small, pea sized, light travelling west to east approx 45 degrees above t +1998-05-21,41.4202778,-78.7288889,Ridgway,PA,disk,120,It was a helicopter following case. +1998-05-21,42.1138889,-111.3880556,St. Charles,ID,other,32400,Ship flies into lake +1998-05-21,39.7391667,-104.9841667,Denver,CO,flash,1800,Humming then a loud subsonic boom or explosion +1999-05-21,40.5886111,-83.1286111,Marion,OH,sphere,1800,I have the message still and it is a matter of human security. 500 Lights On Object0: Yes +1999-05-21,37.4716667,-121.1286111,Patterson,CA,light,1200,On May 21st from 8:35pm-8:55pm, Me and my wife were in my backyard and our moon was at half full, on the dark side of the moon towards +2000-05-21,29.0255556,-80.9272222,New Smyrna Beach,FL,unknown,10,Fiery object spotted east of New Symrna Beach, Florida. +2000-05-21,34.5555556,-92.5211111,Bauxite,AR,triangle,180,The object moved left to right very slowly, closed to the ground with lights flashing like strobes. +2001-05-21,40.7141667,-74.0063889,New York City,NY,changing,1800,observence of four strange flying shining objects which we could not identify the exact shape because of light surounding them +2001-05-21,33.7488889,-84.3880556,Atlanta,GA,light,5,HBCCUFO CANADIAN REPORT: I saw another,coming from the southeast on a course to join the first craft. +2001-05-21,28.0680556,-80.5605556,Melbourne Beach,FL,light,1200,Bight, stationary lights located over the Atlantic ocean. +2001-05-21,36.9902778,-86.4436111,Bowling Green,KY,light,1200,LIGHT BALL +2001-05-21,36.175,-115.1363889,Las Vegas,NV,chevron,180,Bright lights larger than a plane, orangish in color over Las Vegas. +2001-05-21,47.6063889,-122.3308333,Seattle,WA,circle,30,I was sitting out on the chair, looking west to the sky as to enjoy. Then I noticed right away there was circle shape object was makin +2001-05-21,32.7677778,-117.0222222,La Mesa,CA,unknown,300,TWO ALIENS CAME TO MY ROOM - PLEASE READ THIS IS SERIOUS +2002-05-21,34.1975,-119.1761111,Oxnard,CA,diamond,900,Oxnard sighting of duel colored craft +2002-05-21,34.2163889,-119.0366667,Camarillo (Rural),CA,triangle,1800,The craft made two passes by my location, i got a good look at it, i beleieve to have been taken onboard for a short time. +2002-05-21,34.2783333,-119.2922222,Ventura,CA,sphere,900,UFO seen shining bright light onto a jail +2002-05-21,47.9033333,-91.8669444,Ely,MN,cigar,3600,it was a orange cirgar shaped thing that we saw in the bwca in mn. +2002-05-21,41.5930556,-81.5269444,Euclid,OH,cylinder,15,Cylindrical - shaped object, with multiple lights and one red beacon light +2002-05-21,27.9472222,-82.4586111,Tampa,FL,disk,120,High Altitude Silver Disc, Heading West. Over South Tampa, FL. 19:56 5/21/02 Want Radar Confirmation. +2002-05-21,40.1933333,-85.3863889,Muncie,IN,changing,360,It was the shape of a brihgte star than it Kinda turned recktangular shape and started flying. The center was rad and the ends yellow. +2002-05-21,35.7719444,-78.6388889,Raleigh,NC,light,60,bright light over raleigh nc +2003-05-21,39.7475,-122.1952778,Orland,CA,light,60,Two bright white lights heading north +2003-05-21,33.4147222,-111.9086111,Tempe,AZ,cylinder,120,STRAGE ROD-LIKE UFO SEEN OVER TEMPE ARIZONA +2003-05-21,28.6986111,-81.3083333,Winter Springs,FL,rectangle,60,Rectangular object change its shape to two spheres +2003-05-21,39.5347222,-107.7825,Rifle,CO,circle,600,big bright white dot +2003-05-21,37.6811111,-122.1233333,San Lorenzo,CA,light,5400,Lights moving from west to east. +2003-05-21,44.1986111,-88.6647222,Winchester,WI,light,60,Bright weaving object seen passing from WSW to ENE in northern Wisconsin +2004-05-21,40.4233333,-104.7086111,Greeley,CO,formation,300,formation of 9-10 +2004-05-21,29.5847222,-81.2080556,Palm Coast,FL,cross,3600,Pencil-shaped craft hovering in sky over Flagler County, FL. Three bright white lights which changed color before disappearing. +2004-05-21,38.3686111,-93.7780556,Clinton,MO,diamond,300,MISSOURI INVESTIGATORS GROUP Report: Diamond shaped craft.. I can't be to sure of this, but it had turned around in circles +2004-05-21,38.3686111,-93.7780556,Clinton,MO,diamond,300,MISSOURI INVESTIGATORS GROUP Report: UFO photo over Clinton, MO submitted by witness via email to the UFOMIG.com investigator +2004-05-22,39.2619444,-84.82,Harrison,OH,changing,6660,The object was directly over my car ,sitting still in the air and shining two white beams of light down on me. +2005-05-21,40.8,-96.6666667,Lincoln,NE,changing,1200,Lights over Lincoln, NE 5-21-06 +2005-05-21,34.6888889,-84.0222222,Suches,GA,triangle,30,Triangular shaped object buzzes a campsite in the north georgia mountains. +2005-05-21,19.6227778,-155.9522222,Holualoa,HI,changing,2400,3 bright lights that moved and changed shapes and colors, and appeard to be checking us out +2005-05-21,35.0613889,-106.1908333,Edgewood,NM,circle,30,flying lights hoovering over mountain silent. +2005-05-21,32.8311111,-85.7636111,Dadeville,AL,circle,30,round object ,greyish whiteish in color +2005-05-21,34.1975,-119.1761111,Oxnard,CA,circle,2400,There were bright white objects in the afternoon moving slowly in the sky one of them emitted a smaller object. +2005-05-21,33.0461111,-96.9938889,Lewisville,TX,changing,2700,Tumbling and spinning object. +2005-05-21,38.1905556,-116.3691667,Warm Springs,NV,light,8,Large bright blue-white lights tracking in formation with our car +2005-05-21,32.8577778,-97.2544444,Watauga,TX,circle,5,well I was sleeping over at my friends backyard we were playing a game. Then there was a small light and it was getting bigger and the +2005-05-21,32.7355556,-97.1077778,Arlington,TX,light,180,((NUFORC Note: Intl. Space Station. PD)) It looked exactly like a Star and vanished into thin air after about 3min. +2005-05-21,34.1477778,-119.1941667,Port Hueneme,CA,light,10,Star change's position. ((NUFORC Note: Possible satellite, we believe. PD)) +2006-05-21,33.4483333,-112.0733333,Phoenix,AZ,fireball,1,EAGLE VIEW of UFO over Phoenix Arizona +2006-05-21,33.4147222,-111.9086111,Tempe,AZ,sphere,15,Tempe Az Black Dot 10 seconds traveling N to S very fast and quite +2006-05-21,36.175,-115.1363889,Las Vegas,NV,sphere,900,Small white object over Las Vegas +2006-05-21,39.1580556,-75.5247222,Dover,DE,triangle,180,Floating Airliner? +2006-05-21,37.5536111,-77.4605556,Richmond,VA,triangle,60,Triangle of lights traveling SSW to NNE. ((NUFORC Note: Possible sighting of U. S. Navy "NOSS" triplet of satellites?? PD)) +2006-05-21,33.5538889,-117.2130556,Murrieta,CA,unknown,10800,Moon like object moving abnormally, unlike any aircraft, location not reasonable for it to be a spotlight +2007-05-21,41.1577778,-80.0888889,Grove City,PA,triangle,180,Multiple objects sighted at different altitudes over Grove City PA +2007-05-21,26.0730556,-97.2083333,Port Isabel,TX,disk,15,A disk flying east-west across the sky in southern Texas. (Padre Islands) +2007-05-21,28.5380556,-81.3794444,Orlando,FL,unknown,60,Red Light Seen to Pulse in Sky +2008-05-21,47.6063889,-122.3308333,Seattle,WA,changing,10,At approximately 11:30A.M. PDT, I witnessed a strange glowing object appear from out of the thick cloud covered sky and literally drop +2008-05-21,34.0636111,-83.1255556,Comer,GA,light,60,Object chasing jet +2008-05-21,35.9827778,-86.5186111,Smyrna,TN,circle,480,I saw a stationary bright round light, in the bright midday sun for a few minutes (a jet passed between us) eventually it moved on east +2008-05-21,37.6486111,-118.9711111,Mammoth Lakes,CA,light,120,Bright, silent light moving across the sky +2008-05-21,26.8230556,-80.1388889,Palm Beach Gardens,FL,light,240,white light, no noise, low fly by, watched till it disapeared +2008-05-21,38.0627778,-91.4033333,Cuba,MO,light,45,BRIGHT Bluish-white light moving silently through sky at very high speed +2008-05-21,42.3333333,-88.2666667,Mchenry,IL,unknown,120,Ball of light moving to the east slow and silent around 2 miles high. +2008-05-21,41.6833333,-86.25,South Bend,IN,triangle,60,I was driving home from work headed North on US 933 when to the east of me I thought I saw an airplane, but then realized it wasn't beh +2008-05-21,40.3294444,-104.8547222,Milliken,CO,light,10,Bright, Flying Lights Near Milliken, CO +2009-05-21,31.7586111,-106.4863889,El Paso,TX,triangle,1800,((HOAX?? No date provided)) 3 lights form triangle in el paso texas +2009-05-21,38.3030556,-77.4608333,Fredericksburg,VA,disk,120,2 craft visable. +2009-05-21,47.8211111,-122.3138889,Lynnwood,WA,sphere,50,light blue sphear followed by dark helicopter in may of 2009 (Washington State) +2009-05-21,40.2022222,-74.0125,Bradley Beach,NJ,circle,120,orange circles moving along side each other +2009-05-21,42.7619444,-72.5138889,Vernon,VT,light,600,A formation of lights breaking the sound barrier and doing odd manuevers. +2009-05-21,44.6377778,-68.8455556,Winterport,ME,fireball,600,My mother went out to the garage to put some trash away. She was gone for about 20 minutes, I decided to go check on her to make sure s +2009-05-21,38.2541667,-85.7594444,Louisville,KY,light,600,I witnessed what appeared to be a faint star moving at a high rate of speed. Then after the first one left our sight we witnessed two +2010-05-21,37.3394444,-121.8938889,San Jose,CA,light,300,Light very irregular movement in sky. +2010-05-21,61.5997222,-149.1127778,Palmer,AK,sphere,600,At about 12:27am on the 21st of May, while getting ready for bed and all was quiet, I heard the same sound I heard in mid-March when I +2010-05-21,32.8369444,-97.0816667,Euless,TX,changing,60,changing dark silver cilinder object hovering in sky in daylight appeared for 1 minute +2010-05-21,35.7719444,-78.6388889,Raleigh,NC,light,2,sudden white light moving vertcal disappeared then reappeared moving horizontal before disappearing again +2010-05-21,38.6272222,-90.1977778,St. Louis,MO,unknown,720,Very bright amber, green and red lights in the night sky moving slowly to the west northwest. +2010-05-21,41.1075,-83.7927778,Mccomb,OH,triangle,1200,Triangle shaped object with red pulsating lights with instant change of direction and speed. +2010-05-21,40.1416667,-93.8722222,Gilman City,MO,formation,600,Wide line of red flashing/pulsing lights which appeared to be at tree top level and about a mile across. +2010-05-21,33.9533333,-117.3952778,Riverside,CA,cigar,30,Large twinkling/flashing light with smaller one across from it, spinning like a baton +2011-05-21,40.9805556,-111.8866667,Farmington,UT,light,300,A bright light was seen very close to my property behind a stand of poplars, staying on for 30 seconds and then suddenly going off. +2011-05-21,39.8544444,-75.0394444,Magnolia,NJ,sphere,600,Bright Sphere +2011-05-21,35.9744444,-77.9658333,Nashville,NC,oval,360,Rumbling noise, lights, multicolor lights, medium speed going across the sky. +2011-05-21,39.6133333,-105.0161111,Littleton,CO,disk,600,UFO found in background of picture in CO +2011-05-21,47.0380556,-122.8994444,Olympia,WA,diamond,15,I saw red and white lights then 2 seconds later it disapered. +2011-05-21,41.8458333,-70.95,Lakeville,MA,light,600,Sow moving white-sliver point of light- daytime +2011-05-21,35.2269444,-80.8433333,Charlotte,NC,unknown,120,bright light or object moving rapidly across sky +2011-05-21,42.8247222,-83.2647222,Oxford,MI,fireball,420,Orange quiet fireball +2011-05-21,33.6130556,-86.1183333,Lincoln,AL,unknown,10,Two planes flying very close together , one with a contrail , the other had no contrail and just dissipated in a few seconds . +2011-05-21,42.489444399999996,-83.1447222,Royal Oak,MI,oval,300,Split second blinking blue lights, about the size of a fist at arm's length. +2011-05-21,47.4066667,-122.0375,Maple Valley,WA,triangle,70,Two separate triangles of light (one light per corner) +2011-05-21,44.5702778,-68.7363889,Orland,ME,circle,900,I was driving home and saw two light objects low under clouds moving very slowly; then saw six others come out of the clouds. +2011-05-21,40.1097222,-76.5036111,Mount Joy,PA,other,180,Three amber lights form perfect triangle, and slowly disappear one by one. +2011-05-21,35.614444399999996,-88.8138889,Jackson,TN,other,10,Cresent moon shaped row of solid white lights gliding acros the sky in a northern direction for about 10 sec. +2012-05-21,32.2216667,-110.9258333,Tucson,AZ,light,20,Looked similar to shooting star, but flew much slower and suddenly lit up with incredible brightness and disappeared +2012-05-21,35.9938889,-78.8988889,Durham,NC,light,30,Saw a light the size and color of the moon, but descending quickly. +2012-05-21,38.3566667,-121.9866667,Vacaville,CA,light,120,I was spending the night stargazing through my telescope, after the partial eclipse of the sun earlier that day. The sky had some scatt +2012-05-21,33.9533333,-117.3952778,Riverside,CA,changing,2400,Flying Orb videoed and photographed over Mt Rubidoux in Riverside, CA. +2012-05-21,34.5227778,-82.4944444,Belton,SC,cigar,1800,8 Cigar Shaped Craft +2012-05-21,45.7102778,-87.3047222,Bark River,MI,light,8580,Red white light low in the sky. ((NUFORC Note: Possible sighting of Vega in the northwest sky?? PD)) +2012-05-21,33.5311111,-111.9419444,Paradise Valley,AZ,circle,10,4 UFOs heading West orange glow moving in formation +2012-05-21,33.5311111,-111.9419444,Paradise Valley,AZ,circle,12,We saw four UFOs pass over our heads they were moving mostly east and a bit north. They seemed to be following each other. Orange cir +2012-05-21,37.3636111,-118.3941667,Bishop,CA,sphere,150,We witnessed a dark sphere with numerous bright red lights that moved slowly and silently 200 feet above their car. +2012-05-21,30.46,-97.9880556,Lago Vista,TX,circle,1380,I AM A 55 YEAR OLD RETIRED, PROFESSIONAL AND WAS IN THE BACKYARD LETTING MY DOGS OUT WHEN I FIRST SAW THE OBJECT. IT LOOKED LIKE A STA +2012-05-21,46.7208333,-92.1038889,Superior,WI,other,5,8-9 Foot Tall Greenish-Gray Figure Walking Into Forest Line Next To Road. +2012-05-21,47.8108333,-122.3761111,Edmonds,WA,fireball,20,Dark orange light in northern sky moves forward then away and drops quickly out of sight +2012-05-21,47.8211111,-122.3138889,Lynnwood,WA,unknown,5,Bright vanishing amber orb seen for several seconds. +2013-05-21,34.2072222,-84.1402778,Cumming,GA,light,1200,I witnessed a bright purple orb traveling across my neighborhood and instantly a green orb appeared and they seemed to communicate +2013-05-21,43.2286111,-88.1102778,Germantown,WI,fireball,900,May 21st 2013: Germantown, WI 3 people witness orange/red fireballs in northeastern sky +2013-05-21,47.0380556,-122.8994444,Olympia,WA,fireball,180,Giant flaming ball crept across horizon. +2013-05-21,36.8527778,-75.9783333,Virginia Beach,VA,circle,300,Orange like Firery ball steadily flying from one end of sky to another- no sound- no flashing. +2013-05-21,31.9516667,-97.3211111,Whitney,TX,triangle,3600,Very strange, big, bright lights, moving quickly, slowly, and also hovering that change directions quickly. +1997-05-02,33.1958333,-117.3786111,Oceanside,CA,other,600,What appeared to be a slow-burning, orange-colored object was slowly "floating" in a northernly direction directly over the beach just +1997-05-02,33.1958333,-117.3786111,Oceanside,CA,other,600,AN ILLUMINATED OBJECT WAS FIRST SIGHTED IN THE SOUTHEAST,ILUMINATED WITH AN ORANGE LIGHT OF MEDIUM INTENCITY.THE OBJECT WAS FLYING AT A +1997-05-02,44.9583333,-124.0166667,Lincoln City (North Of),OR,light,480,Obj. travelling n/nw at satelite altitude. intermittent (irregular) brilliant white bursts, faded to pale yellow. 2nd obj w/same m/o +1998-05-02,34.0522222,-118.2427778,Los Angeles,CA,triangle,20,Two objects aproached over the horizon when I was going out for the paper. They looked like two helocopters at first, but as they apr +1998-05-02,41.14,-104.8197222,Cheyenne,WY,unknown,120,The object moved n northwest roughly following a passanger jet it was lower than the jet it made no sound had no lights it seemed to re +1998-05-02,45.5236111,-122.675,Portland,OR,triangle,3,It was triangular in shape, but hard to describe, because of so many different angles. +1999-05-02,41.85,-87.65,Chicago (About 50 Miles South Of, I-55 South),IL,other,600,Appearing as a plane reflecting sunlight, would disappear and reappear for approx.5min, a second appeard "danced" around eachother and +1999-05-02,33.6680556,-117.3263889,Lake Elsinore,CA,other,60,The craft was boomerang shaped and was witnessed by the four people in my party, on a sunny afternoon. +1999-05-02,36.1077778,-87.6330556,Mcewen,TN,light,4500,The object moved across the sky in a southern direction at a very high rate of speed. About 20 min. later, the object was then being p +1999-05-02,30.7997222,-81.69,Kingsland,GA,triangle,172800,My wife sits out on a regular basis on nice nights and looks at the stars in front of our home. On this night she called me outside to +1999-05-02,37.6805556,-92.6636111,Lebanon,MO,cylinder,180,Hovered over vacant hospital for approx. 3 min., no noise and 3 visible lights: Blue, Yellow and Green. Then sped off and chased by ano +2000-05-02,43.7508333,-87.7144444,Sheboygan,WI,diamond,900,a pair of Lights traveling north-northeast of of HWY LS +2001-05-02,47.0530556,-122.2930556,Graham,WA,sphere,60,Dull orange sphere, pulsating noise caught on video, but not audible at the time +2001-05-02,34.0233333,-84.6155556,Kennesaw,GA,light,2,BLUE LIGHT SPECIAL AND THE TRACTOR BEAM STUNS KENNESAW RESIDENTS!! +2002-05-02,33.8358333,-118.3397222,Torrance,CA,chevron,7,Saw four lights moving in a chevron formation moving VERY fast, east to west through cloudless sky making no sound whatsoever. +2002-05-02,39.7588889,-84.1916667,Dayton,OH,disk,300,my friends and i were out side when we herd a boom. we looked up and there were two saucers. +2002-05-02,47.6588889,-117.425,Spokane,WA,triangle,120,Slow-moving black triangular craft, low in the air. Holding hand straight up in the air would "barely cover" the airplane. White flashi +2002-05-02,39.0997222,-94.5783333,Kansas City,MO,triangle,120,Silent triangular shaped craft observed in daylight +2002-05-02,38.2097222,-84.2530556,Paris,KY,circle,600,round with spot light and blinking lights around craft.also made a loud swirling sound. +2003-05-02,47.6063889,-122.3308333,Seattle,WA,circle,600,Black Object Seen In Seattle +2004-05-02,40.2397222,-76.9202778,Camp Hill,PA,unknown,900,Three objects appeared that observed us and moved me to another spot before disappearing. +2004-05-02,36.1658333,-86.7844444,Nashville,TN,changing,7200,It looked like a star then change to an elipse, then to blue and red, It lasted for at least two hours it was in the western sky at 4AM +2004-05-02,37.3688889,-122.0352778,Sunnyvale,CA,unknown,420,Blinking, moving object that traveled with an erratic but repeated pattern in the daytime sky above the silicon valley. +2004-05-02,34.0522222,-118.2427778,Los Angeles,CA,disk,3600,Metallic disc seen slowly tumbling over Venice Beach, CA heading north. +2004-05-02,30.6277778,-96.3341667,College Station,TX,cylinder,300,vertical bright cylindrical object +2004-05-02,33.5805556,-112.2366667,Peoria,AZ,unknown,1200,At first it was noticed when a plane flew by. Then after the plane was gone we noticed a flashing light that appeard to be moving back +2004-05-02,35.614444399999996,-88.8138889,Jackson,TN,cylinder,1800,After watching a unusual "star" disappear,I jacklighted the positon,got a reflection,It reacted,another cylinder appeared. +2005-05-02,38.0683333,-120.5386111,Angels Camp,CA,circle,120,Strange Object in Angels Camp, CA. ((NUFORC Note: Probable sighting of the star, "Sirius," we suspect. PD)) +2005-05-02,36.0725,-79.7922222,Greensboro,NC,sphere,20,UFO flies over Gas Station +2005-05-02,34.5794444,-118.1155556,Palmdale,CA,circle,600,Two (2) silver bright round disk(s) that touched then seperated, numerous times, seem to follow chemtrail over Palmdale, California. +2005-05-02,36.8252778,-119.7019444,Clovis,CA,light,60,Follow up on the lights observed on May 2, 2005 in Clovis, CA +2005-05-02,36.8252778,-119.7019444,Clovis,CA,light,60,Bright white light flased in the sky, followed by 2 red flashing lights move up and down, back and forth. +2005-05-02,31.1913889,-101.46,Big Lake,TX,light,37800,Bright white light in NW sky moved rapidly and erratically up, down, left, right and changed colors to blue ands blue green. +2006-05-02,47.2530556,-122.4430556,Tacoma,WA,triangle,7,((HOAX??)) 1 ship above bose elementary 3 lights on the ends. +2006-05-02,41.2586111,-95.9375,Omaha,NE,oval,7200,Troubles With Unexplained Laser Beams +2006-05-02,36.175,-115.1363889,Las Vegas,NV,circle,300,5 objects travelling at high speed and fliying in patterns that would defy currently known limits. +2006-05-02,37.3394444,-121.8938889,San Jose,CA,changing,1500,I saw a bright red VERY LARGE "star looking" object that shrunk and grew, Then shrunk to a small white blinking object that flew away. +2006-05-02,44.8480556,-93.0425,Inver Grove Heights,MN,circle,1200,Stationary object in sky for about twenty minutes, red flashes appear in the center +2006-05-02,30.1763889,-85.8055556,Panama City Beach,FL,unknown,120,A sequence of golden lights +2006-05-02,47.6741667,-122.1202778,Redmond,WA,triangle,120,Craft over Redmond, Wa - 3 lights flashing moving south east. Very large craft. +2006-05-02,30.1763889,-85.8055556,Panama City Beach,FL,light,1800,large orange reddish light in the night sky moving across sky instantly +2007-05-02,41.5244444,-90.5155556,Bettendorf,IA,unknown,300,Fats moving, pulsating lights +2007-05-02,40.7141667,-74.0063889,New York City (Manhattan),NY,triangle,7200,odd looking flashing orb above ground zero-World Trade Center & triangle craft with non-blinking white lights on each corner +2007-05-02,39.7391667,-104.9841667,Denver,CO,oval,30,Fast moving oval bright orange/amber domed object at low altitude. +2007-05-02,37.5536111,-77.4605556,Richmond,VA,teardrop,180,Looked up to see this almost yellow light up in the sky that shot from one side of the sky to the other. +2007-05-02,26.525,-80.0666667,Boynton Beach,FL,light,3000,Stationary star like light twinkling many colors seen for 50 minutes. ((NUFORC Note: Sighting of Venus? PD)) +2007-05-02,40.8616667,-80.2866667,Ellwood City,PA,triangle,360,Three triangle shaped objects stationary in sky. +2007-05-02,38.545,-121.7394444,Davis,CA,circle,1500,Saw a phasing orange/blue circular light , later saw a similar light at a different location in the sky +2007-05-02,33.8491667,-118.3875,Redondo Beach,CA,egg,3600,Light not resembling star or aircraft hovers high above South Bay, California. ((NUFORC Note: Venus or Jupiter?? PD)) +2008-05-02,31.6033333,-94.6552778,Nacogdoches,TX,light,600,White light appears over clear Texas sky? +2008-05-02,36.1866667,-94.1286111,Springdale,AR,changing,300,Town UFO Springdale, AR +2008-05-02,33.9725,-116.9763889,Cherry Valley,CA,light,60,flashing firework like lights coming from orb moving in a perfect circle at a constant rate. +2008-05-02,32.7252778,-97.3205556,Fort Worth,TX,oval,120,Craft with intense white light +2008-05-02,34.15,-114.2883333,Parker,AZ,unknown,60,1 then 2 orange objects in the sky that came then dis-appeared No sound +2008-05-02,34.4436111,-118.6086111,Valencia,CA,triangle,8,UFO sighting +2008-05-02,47.1302778,-119.2769444,Moses Lake,WA,light,10,Bright white light changes! +2008-05-02,43.9558333,-88.6780556,Fisk,WI,light,10,I saw a bright light in the SW sky that quickly moved out to the NW. +2008-05-03,39.5697222,-75.0480556,Malaga,NJ,sphere,60,what i saw had no tail it was a blue light it went across the sky then fell to earth. +2009-05-02,48.051944399999996,-122.1758333,Marysville,WA,triangle,5,I was on my back porch smoking, I was admiring stars when it flew overhead. If I had not been looking at exact location, I would never +2009-05-02,42.0347222,-93.6197222,Ames,IA,light,3600,Craft making 90 degree jagged cuts. +2009-05-02,31.7319444,-84.1708333,Leesburg,GA,flash,300,Pinpoint flash of light in stationary position four times, fifth flash off to the east then it was gone. +2009-05-02,31.0180556,-97.3025,Heidenheimer,TX,triangle,180,Triangle shaped, slowly moving object +2009-05-02,37.8044444,-122.2697222,Oakland,CA,rectangle,60,rectangular shaped object over Oakland, CA +2009-05-02,42.9633333,-85.6680556,Grand Rapids,MI,unknown,2400,3 objects one flared up. GR MI +2009-05-02,26.1,-80.4,Weston,FL,sphere,7200,Bright sphere over Weston FL +2009-05-02,37.2708333,-79.9416667,Roanoke,VA,unknown,2700,3 unidentifiable green orbs were seen flying in the sky on a cloudy night. +2010-05-02,44.0583333,-121.3141667,Bend,OR,disk,120,Silver disk over Oregon +2010-05-02,34.0752778,-84.2941667,Alpharetta,GA,light,60,I saw a glowing, red object fly through the sky, slowly headed in a SE, then E direction. +2010-05-02,37.8716667,-122.2716667,Berkeley,CA,circle,300,Blue dotted lights forming a circle. Bright white aura in the center looked like electricity. +2010-05-02,30.2669444,-97.7427778,Austin,TX,unknown,240,Amber lights seen in night sky in Austin, Texas +2010-05-02,42.9288889,-88.8369444,Fort Atkinson,WI,light,120,three lights over Fort Atkinson, Wisconsin at around 21:55 +2010-05-02,41.7344444,-87.7313889,Hometown,IL,diamond,300,Diamond shaped object with lights hovering then chased by military aircraft +2010-05-02,33.78,-118.2616667,Wilmington,CA,oval,40,Orb like object flying low over wilmington california night sky +2011-05-02,27.2155556,-81.8586111,Arcadia,FL,formation,1200,Formation of unknown orbs appear to be in unison +2011-05-02,29.5605556,-104.3716667,Presidio,TX,formation,7200,BRIGHT LINE OF LIGHTS OVER THE MOUNTAINS, ((NUFORC Note: Possibly "twinkling" stars? PD)) +2011-05-02,46.3580556,-94.2005556,Brainerd,MN,light,900,Two lights that hovered and moved irregularly far off in the distance. +2011-05-02,34.0194444,-118.4902778,Santa Monica,CA,formation,2400,Mulitple successive nighttime formations of round unlit objects in V formations at speed. +2012-05-02,33.1811111,-102.2738889,Brownfield,TX,triangle,300,Dual traingle craft spotted. ((NUFORC Note: Report from licensed pilot. PD)) +2012-05-02,36.2613889,-90.9711111,Pocahontas,AR,teardrop,1800,4 witnesses to an unexplained Ariel pursuit. +2012-05-02,35.91,-79.0755556,Carrboro,NC,circle,300,We were walking at night, and saw a large object (about 1/3 the size of the moon) that appeared to be a ball of fire moving in the sky +2013-05-02,42.4975,-94.1677778,Fort Dodge,IA,flash,600,Flashes after thundersnow, coworker is missing. +2013-05-02,39.6133333,-105.0161111,Littleton,CO,circle,180,Two, bright orb-like objects seen in sky; disappeared but photographed and noted a trail of parallel lines left by objects. +2013-05-02,44.2911111,-105.5016667,Gillette,WY,light,900,Seen white ball of light falling from sky then almost landed in Foothills before it sped off going North. +2013-05-02,41.5322222,-87.255,Hobart,IN,circle,10,There was a fast flying red orb flying through the sky. +2013-05-02,21.3069444,-157.8583333,Honolulu,HI,other,300,Jellyfish-like objects sighted above Honolulu sky. +2014-05-02,26.2155556,-98.325,Mission,TX,triangle,1800,Two triangular objects that were in a haze that sometimes had a soft green haze +2014-05-02,38.8338889,-104.8208333,Colorado Springs,CO,other,10,((NUFORC Note: No information provided by witness. PD)) +2014-05-02,45.9194444,-119.2880556,Mcnary,OR,cross,120,Cross shape object with orange lights above our home. +2014-05-02,34.4747222,-87.8663889,Belgreen,AL,formation,1800,UFO over Belgreen Alabama on May 2, 2014. +2014-05-02,32.7152778,-117.1563889,San Diego,CA,triangle,5,3 dim white lights in a triangle formation, crossed sky east to west, then moved apart. +2014-05-02,37.2386111,-76.51,Yorktown,VA,formation,60,Four, very bright orange spherical lights moving steadily in horizontal trail formation in night sky. +2014-05-02,36.0588889,-88.0977778,Camden,TN,sphere,5,((HOAX?)) Bright orange light in the shape of a sphere appeared in the sky for about 5 seconds and looked as though it was going down. +2014-05-02,33.5091667,-111.8983333,Scottsdale,AZ,fireball,180,Orange fireball-glow, North Scottsdale night sky moving in various directions.Bright ball, radiatiing fingers of light, dimmed to dark +2014-05-02,34.7877778,-82.6925,Liberty,SC,triangle,20,IT WAS TRIANGLE SHAPED WITH A POINT AT THE END SO I COULD NOT TELL IF IT WAS 1 GREAT BIG MILE WIDE ONE, OR IF IT WAS 4 SEPERATE ONES. +2014-05-02,40.0530556,-111.6727778,Salem,UT,sphere,600,A bright orange orb, pulsing light. +2014-05-02,33.2486111,-111.6336111,Queen Creek,AZ,light,30,Single red/orange light moving east to west at the speed of a satellite lasting thirty seconds +2014-05-02,35.9938889,-78.8988889,Durham,NC,flash,3,Low flying, fast moving, red/white light disappears into thin air. +2014-05-02,37.7975,-79.7913889,Iron Gate,VA,light,180,3 fiery orange lights in formation maneuvering through the night skyline +2014-05-02,41.4047222,-81.7230556,Parma,OH,fireball,40,Round orange red fireball over Parma. +1977-05-22,32.4366667,-111.2247222,Marana,AZ,sphere,3600,That's NOT the moon! +1980-05-22,34.7463889,-92.2894444,Little Rock,AR,unknown,15,Bright intense light awoke us at 2:00 am in Little Rock; 1980 +1993-05-22,39.0483333,-95.6777778,Topeka,KS,disk,2700,after almost causing a helicoptor to crash,a silvery disk-shaped object tracks my car and follows me home and allows us to view it for +1993-05-22,32.2216667,-110.9258333,Tucson,AZ,circle,120,Small circle of white lights observed to at first drift across sky, then radically change direction and accelerate out of sight. +1994-05-22,40.7544444,-86.3566667,Logansport,IN,disk,120,it was daytime and i know what i saw +1997-05-22,34.2694444,-118.7805556,Simi Valley,CA,formation,240,"Delta" shaped group of motionless bright red lights sighted over Simi Valley, Calif. +1997-05-22,40.7408333,-74.3841667,Chatham,NJ,disk,600,5/22/97 22:21 large object over morris/union county new jersey. ten degrees above horizon. +1998-05-22,39.7683333,-86.1580556,Indianapolis,IN,changing,300,I and my framing crew witnessed this together.We are framing a house on the north side of Indy. Alot of air trafic is going on this day +1998-05-22,45.4313889,-122.7702778,Tigard,OR,triangle,300,Tigard Oregon 1978 Black Pyramid shape-no noise-no lights-floated then sparks below before shot off 5 min. +1999-05-22,36.4797222,-121.7313889,Carmel Valley,CA,rectangle,600,Rectangular object spotted in sky. Soon after intial sighting two other objects floated down and away from the main object. Then all th +1999-05-22,38.9516667,-92.3338889,Columbia,MO,light,60,Noticed a lighted shape plowing through light cloud cover. +2000-05-22,29.7630556,-95.3630556,Houston,TX,light,2,I saw a bright green light streak across the sky, leave a small white spark behind and dissapear before my eyes. +2000-05-22,36.3302778,-119.2911111,Visalia,CA,fireball,2,shape was almost an oval but larger at ends. there were two of them. it was burning with a slight tail of fire. the colors were blue, +2000-05-22,35.6266667,-120.69,Paso Robles,CA,flash,7,I went out to get the mail. When I looked up I saw a very bright light in the sky. My first thought was that it was a really bright s +2000-05-22,38.8108333,-94.9269444,Gardner,KS,egg,20,This orange fireball suddenly slowed down and turned green, then suddenly dated off to the east. +2000-05-22,39.7588889,-84.1916667,Dayton,OH,unknown,10,small light in the sky, not blinking, below high clouds, and traveling VERY fast... +2001-05-22,48.1958333,-114.3119444,Kalispell,MT,light,1200,two friends of was camping in kalispell, MT. on 5-22-01 at 12 midnight soll a white object in the sky it look like it was flying around +2001-05-22,40.0758333,-102.2227778,Wray,CO,circle,15,We were playing football and something attracted my eye when I saw the football in the air there was a circle flying object in the sky. +2001-05-22,39.5297222,-119.8127778,Reno,NV,unknown,15,black unmarked helicopter +2001-05-22,44.0536111,-71.1288889,North Conway,NH,other,10,Moving Stars in Cetral New Hampshire Mountain Range +2001-05-22,33.7455556,-117.8669444,Santa Ana,CA,sphere,10,Pulsing spehre +2001-05-22,34.1591667,-118.5002778,Encino,CA,sphere,10,Blue/green spherical craft seen from Ventura Freeway in Encino, CA +2001-05-22,38.2541667,-85.7594444,Louisville,KY,oval,600,Southend. I noticed an object in the sky toward South Third Street. It was a rotating Oval like a blimp. +2001-05-22,38.2541667,-85.7594444,Louisville,KY,disk,180,It was big huge and close!!! It was shaped like saucer. +2001-05-22,38.2541667,-85.7594444,Louisville,KY,diamond,600,very unusal enough to make you really think enough to make me report this anyway +2002-05-22,34.2783333,-119.2922222,Ventura,CA,circle,420,A hovering saucer is sighted on Lake Havasu, Ariz at night.I was sitting on my porch and I saw a great big circle of lights in the +2002-05-22,40.7608333,-111.8902778,Salt Lake City,UT,other,1200,Three objects seen repeating formation below cloud cover by several witnesses +2002-05-22,29.9741667,-93.9922222,Nederland,TX,chevron,360,One morning I, looked up and..Wow !!! +2002-05-22,34.1975,-119.1761111,Oxnard,CA,disk,480,bright,disk in the clear sky +2002-05-22,33.0369444,-117.2911111,Encinitas,CA,diamond,1.5,huge bright object dropping toward the ocean or horizon? +2002-05-22,34.2572222,-118.9952778,Somis,CA,disk,1200,On May 22񫺒 I was leaving my job at Spearament Rhino and as I was walking to my car I noticed a strange light hovering over it a fe +2002-05-22,46.9966667,-120.5466667,Ellensburg,WA,oval,900,OVAL UFO IN KITTITAS VALLEY +2003-05-22,37.6922222,-97.3372222,Wichita,KS,sphere,60,Sphere shaped and bright light, bopping up and down moving at the same speed as the airplane I was in. +2003-05-22,40.9252778,-74.2769444,Wayne,NJ,cigar,30,A cigar shaped object flew over me a few times then left. +2003-05-22,38.6038889,-89.8072222,Lebanon,IL,cylinder,300,Sighted high flying Cylinder UFO with split contrail. +2003-05-22,45.9266667,-116.1213889,Grangeville,ID,disk,360,Disc or sphere shaped object - appeared like a very bright star at first +2003-05-22,47.3177778,-119.5525,Ephrata,WA,triangle,240,Object made no noise, was very jittery, when turning it did not bank. Also had red light on top and bottom along with 4-5 white lights +2004-05-22,37.9841667,-120.3811111,Sonora,CA,unknown,120,HBCCUFO CANADIAN REPORT: I watched, the other "star" began to drop as well. +2004-05-22,27.9472222,-82.4586111,Tampa,FL,unknown,60,It was circling another star and I ran inside to call everyone. +2004-05-22,39.5186111,-104.7608333,Parker,CO,sphere,10,I was standing in my yard Saturday afternoon.For some reason an objest caught my eye to the west flying straight along the cloud lines. +2004-05-22,41.8266667,-74.1266667,High Falls,NY,oval,2,High Falls, NY, UFO Sighting +2004-05-22,47.5405556,-122.635,Port Orchard,WA,circle,180,As my son and I were getting out of my car at Wal-Mart in Port Orchard I glanced up at the sky and noticed an object floating/drifting +2004-05-22,28.0194444,-82.7719444,Dunedin,FL,cross,180,two crafts one with a jet trail and one with out +2004-05-22,34.448055600000004,-119.2419444,Ojai,CA,light,3600,Luminiscent lights dancing in front of large cloud bank. +2004-05-22,44.8480556,-93.0425,Inver Grove Heights,MN,flash,120,My friend and I witnessed approximitly 12 greenish tinted lights standing still in the sky for approximitly 2 minutes... +2004-05-22,49.0002778,-122.2636111,Sumas,WA,light,120,We saw an object with a steady bright white light, no sound, low in the sky capable of changing its speed. +2005-05-22,37.6922222,-97.3372222,Wichita,KS,sphere,60,Sphere shaped and bright light, bopping up and down moving at the same speed as the airplane I was in. +2005-05-22,32.3863889,-96.8480556,Waxahachie,TX,cylinder,120,Cylindrical objects hover soundlessly over Dallas suburb May 22, 2005. +2005-05-22,33.7455556,-117.8669444,Santa Ana,CA,light,45,1: sphere caught in first part of day on video, 2: white light seen at night then disappears +2005-05-22,38.9938889,-105.0563889,Woodland Park,CO,flash,40,Flash "Camera Type" in the sky 3 times in differnt spots. Woodland Park, Co +2005-05-22,41.9352778,-87.8655556,Franklin Park,IL,teardrop,240,A yellowish-orange glowing shape rotating counter clockwise on what appeared to be an assymetrical axis. +2006-05-22,41.6486111,-70.3486111,Centerville,MA,triangle,74,Large triangel craft with large white dome at the bottom. +2006-05-22,41.3825,-89.2188889,Ladd,IL,fireball,60,We saw a bright firball going WNW and it lasted for about a minute and a half befor it burned out and probably landed as a meteorite. W +2006-05-22,41.6763889,-91.5802778,Coralville,IA,oval,1,a light and movement that I have never seen before +2006-05-22,42.3533333,-88.0933333,Round Lake,IL,oval,4,an orange football shaped object in round lake sky so fast it made after images(trail) +2007-05-22,33.4483333,-112.0733333,Phoenix,AZ,light,7200,Bright lite with a Red Haze from 12o'clock to 5 o'clock in the sky +2007-05-22,34.4211111,-84.1191667,Dawsonville,GA,triangle,120,Triangular shaped object seen in Dawsonvile, GA. +2007-05-22,41.6005556,-93.6088889,Des Moines,IA,changing,30,Shape Changing Tube or Rod with Pursuing Military Jets? +2007-05-22,47.9791667,-122.2008333,Everett,WA,light,180,Camano Island Wa. illumination 3 to 6mins. White illumination viewed from Everett Wa. 05/22/07 +2007-05-22,29.8530556,-84.6644444,Carrabelle,FL,other,8,Noticed four or five orange yellow balls of light horizonal in sky they were there and then they were gone in a matter of seconds +2007-05-22,33.2147222,-97.1327778,Denton,TX,circle,4,Denton TX Green ball shaped object moving upward at a fast rate +2008-05-22,35.3658333,-120.8488889,Morro Bay,CA,sphere,240,Bright orange sphere. +2008-05-22,29.4238889,-98.4933333,San Antonio,TX,sphere,5,I left my condo for work, looked up into the sky saw the moon with clouds around it, just then I saw an round object yellow in color mo +2008-05-22,42.1155556,-75.9591667,Johnson City,NY,light,12,Bright light traveling over Johnson City, NY heading over Binghamton 5/22/08 +2008-05-22,36.8813889,-81.7622222,Saltville,VA,circle,60,Huge Round Spherical LIght flew overtop my head and then flew over the mountainrange +2008-05-22,40.9561111,-74.8088889,Tranquility,NJ,other,180,plasma bright light traveling north at aslow rate of speed, very weird indeed. +2008-05-22,40.7302778,-80.3102778,New Brighton,PA,triangle,240,glowing triangle +2008-05-22,41.7955556,-86.0808333,Edwardsburg,MI,triangle,120,Triangular object hovered over car on US-12 +2008-05-22,34.2694444,-118.7805556,Simi Valley,CA,light,1500,A large amber light released a smaller amber light, which descended and disappeared, leaving the original light in 2 pieces (25 mins.). +2008-05-22,36.1658333,-86.7844444,Nashville,TN,disk,1200,this thing was really there +2009-05-22,46.5897222,-111.9147222,East Helena,MT,changing,2700,Extreamly bright circular light floating & changing shape in the early morning sky. +2009-05-22,34.0705556,-118.2041667,Lincoln Heights,CA,disk,4,Objects seen near Dodgers Stadium Los Angeles, CA Lincoln Heights area on 05-22-09 +2009-05-22,35.9572222,-75.6244444,Nags Head,NC,unknown,1800,20+ ufos seen by 15+ people launching from the ocean only to disappear in the sky +2010-05-22,41.2833333,-70.1,Nantucket,MA,cylinder,30,((HOAX??)) We saw a red tube in the sky. +2010-05-22,40.6577778,-73.8366667,Howard Beach,NY,circle,1800,A bunch of circlular moving into each other below the clouds +2010-05-22,35.7719444,-78.6388889,Raleigh,NC,fireball,180,25 slow moving, interactive fireballs seen in downtown Raleigh on Saturday night. +2010-05-22,37.775,-122.4183333,San Francisco,CA,oval,60,oval gray flying saucer +2010-05-22,42.2711111,-89.0938889,Rockford,IL,triangle,120,Transparent ship with triangular positioned lights in Rockford, Illinois +2010-05-22,40.1794444,-74.8555556,Fairless Hills,PA,fireball,240,Flame flying across sky +2010-05-22,44.28,-88.3183333,Little Chute,WI,light,40,Bright white light moving from north west to south east. Near the Big Dipper constellation. The Light disappeared after it went past th +2010-05-22,28.5380556,-81.3794444,Orlando,FL,light,600,((HOAX??)) It was bright orange like a street light then went dim +2010-05-22,45.5236111,-122.675,Portland,OR,light,1800,The object had a slight amber tint to it. It looked like a satellite, or star, but then it started to change directions. Almost like a +2010-05-22,41.3983333,-81.8047222,Brook Park,OH,light,900,4 lights, moving across the night sky, changing directions and speeds. +2010-05-22,29.3011111,-94.7975,Galveston,TX,fireball,120,Orange Craft Seen Over Galveston Bay +2011-05-22,35.4086111,-80.5797222,Concord,NC,cylinder,300,UFO seen over Charlotte Motor Speedway shortly after the race ended. +2011-05-22,37.6922222,-97.3372222,Wichita,KS,sphere,1800,Looking east about 3 miles over the airforce base i watched a small sphere make small sudden movements then shoot out to the southeast. +2011-05-22,33.0183333,-80.1758333,Summerville,SC,fireball,240,3 burning objects hovering. +2011-05-22,38.5069444,-96.2616667,Americus,KS,oval,3600,http://iwitness.weather.com/_Storm-Clouds/video/1583155/148597.html +2011-05-22,42.3211111,-85.1797222,Battle Creek,MI,triangle,45,((HOAX??)) Small triangular craft. +2011-05-22,42.1969444,-88.0933333,Lake Zurich,IL,triangle,1,Triangle of light in sky over Lake County, IL. +2011-05-22,42.325,-72.6416667,Northampton,MA,formation,60,((HOAX??)) Eight bright yellow lights flying north to south several hundred feet above the Connecticut river. +2011-05-22,29.4238889,-98.4933333,San Antonio,TX,disk,180,San Antonio UFO caught on camera. +2011-05-22,38.9458333,-105.2888889,Florissant,CO,flash,300,Bright white lights seen in the SW sky from Florissant. +2011-05-22,41.2505556,-87.8313889,Manteno,IL,fireball,120,Vibrant, stationary orange light hovering above farmland +2012-05-22,35.425,-78.815,Cape Fear,NC,oval,600,Bright light off Cape Fear, NC +2012-05-22,38.6644444,-80.71,Sutton,WV,oval,20,Bright oval light floating through the sky in a straight line. +2012-05-22,40.1786111,-122.2347222,Red Bluff,CA,diamond,180,THE OBJECT WAS A ROUNDED DIAMOND SHAPE WITH MULTIPLE RED AND WHITE LIGHTS BLINKING, UP TO 15 TO 30 OF THEM- IT FLOATED ACROSS THE SKY +2012-05-22,39.7286111,-121.8363889,Chico,CA,disk,1000,Cloaking of some type, its either Black Ops alive and well or it is Extraterrestrial in origin. +2012-05-22,34.4,-119.2991667,Oak View,CA,changing,300,WEDNESDAY 05/22/2012 15:30 DRIVING WEST HIGHWAY 33 FROM OJAI TO OAK VIEW, NOTED SILVER-WHITE REFLECTIVE OBJECT IN SOUTHWE +2012-05-22,42.8858333,-87.8630556,Oak Creek,WI,sphere,3600,silver balls with vapor trail. +2012-05-22,35.1494444,-90.0488889,Memphis,TN,sphere,900,Spherical metallic object high up in daylight sky gaining altitude and slowly heading west. One witness observed a spider like orange +2012-05-22,42.8858333,-87.8630556,Oak Creek,WI,sphere,3600,((HOAX??)) Saw mettallic spheres falling from sky. think they are intelegent. knew where it was going. +2012-05-22,43.3227778,-76.4175,Fulton,NY,circle,600,05/22/12 red orb over fulton ny +2012-05-22,34.7997222,-87.6772222,Florence,AL,light,5,My wife and I were standing outside talking to our neighbor, staring into the sky from time to time looking due north east. Suddenly, +2012-05-22,41.2586111,-95.9375,Omaha,NE,light,1800,Bright lights moving across the sky. +2012-05-22,42.2411111,-83.6130556,Ypsilanti,MI,diamond,60,Diamond/trapezoid craft flying north over Ypsilanti, Mi +2012-05-22,43.0830556,-73.785,Saratoga Springs,NY,changing,1800,Orange/Yellow strange lights above saratoga springs/schuylerville ny +2013-05-22,37.6688889,-122.0797222,Hayward,CA,changing,1800,Parked 50 feet above started as a black machine, then turned silver and slowly moved to the east changing shape to a ball of light. Lig +2013-05-22,33.635555600000004,-96.6086111,Sherman,TX,circle,120,4 staggered discs in sky +2013-05-22,38.9522222,-107.0619444,Pittsburg,CO,disk,15,I was opening my window, to let air in, and I noticed it in the sky, by the time I glanced a second time, it was GONE. +2013-05-22,38.5816667,-121.4933333,Sacramento,CA,triangle,1800,At 5:39 pm I was in my backyard and saw lights out of the corner of my eye and looked up in the sky to see a triangular craft with 8 ye +2013-05-22,38.3697222,-90.3783333,Imperial,MO,circle,5,Large round white ball flying across the sky super fast. +2013-05-22,33.5777778,-101.8547222,Lubbock,TX,triangle,300,8 yellow lights +2013-05-22,33.5777778,-101.8547222,Lubbock,TX,triangle,300,Yellow lights on a triangle loud noises. +2013-05-22,32.9341667,-97.0777778,Grapevine,TX,cigar,1800,Strange cigar shaped object over lake grapevine tx +2013-05-22,41.4019444,-74.3247222,Goshen,NY,fireball,900,2-3 bright lights suspended a couple hundred feet over the farms. +1973-05-23,40.6936111,-89.5888889,Peoria,IL,oval,300,Saw a U.F.O. over backyard at very close proximity to house located across from airport. Saw first hand object and passengers inside. +1975-05-23,29.4238889,-98.4933333,San Antonio,TX,disk,45,I was sitting on a barrel in the middle of the arena holding the reigns of my horse who began to walk around spooked a bit I look up an +1977-05-23,41.8127778,-74.2547222,Mettacahonts,NY,circle,60,Circular object with many lights moving very slowly at low height over rural upstate New York in the late 1970s +1985-05-23,34.7463889,-92.2894444,Little Rock,AR,circle,600,This is not something I take lightly. +1994-05-23,44.0583333,-121.3141667,Bend,OR,disk,12600,it came up to us as fast as it left us and shined us hard with white/blueish lights. lots of energy felt...and wind +1997-05-23,27.2155556,-81.8586111,Arcadia (Outskirts Of),FL,light,180,Me and my friend were traveling down I-75 towards Arcadia, Fl. when we saw a very bright pulsating white light hovering in a clearing, +1998-05-23,38.5733333,-109.5491667,Moab,UT,fireball,300,What I saw was I large fire ball going across the sky. I was there for about 5 minutes then vanished behind a cloud. +1999-05-23,30.2669444,-97.7427778,Austin,TX,light,3180,At 2:00am I observred what I thought was a single satelite moving north to south.Soon I noticed a multitude of these objects following +1999-05-23,47.1041667,-122.4333333,Spanaway,WA,other,7,DAYLIGHT SIGHTING Object sighted going from South the North, traversing the optical view in approx 5 seconds. The craft resembles an +1999-05-23,45.6961111,-121.285,Lyle,WA,circle,20,Circular flaming falling object in Eastern sky +2000-05-23,36.1538889,-95.9925,Tulsa,OK,circle,150,I saw a light traveling directly overhead,silently at 3000 ft. +2000-05-23,43.1836111,-89.2136111,Sun Prairie,WI,unknown,120,3 beams of light, silent, 7 other lights - South Central WI +2001-05-23,42.2575,-83.2111111,Allen Park,MI,triangle,30,On my way home Tue 22 may I was heading east on I-94,turned south on southfield road,which is a two lane divided highway.Thats when I n +2001-05-23,38.4783333,-82.6380556,Ashland,KY,sphere,1800,Seen Glowing Orb Change Shape And Then Return To Previous Shape And Follow Our Car +2001-05-23,36.8527778,-75.9783333,Virginia Beach,VA,light,3600,lights moving quickly in sky +2002-05-23,47.2530556,-122.4430556,Tacoma,WA,light,2700,Previous report and update plus one several years ago +2002-05-23,42.8125,-70.8777778,Newburyport,MA,teardrop,300,I witnessed a silent white teardrop shaped object. +2002-05-23,38.5816667,-121.4933333,Sacramento,CA,unknown,900,15 black dots making formations and staying in the same spot for 15 minutes +2002-05-23,40.3161111,-74.5141667,Cranbury,NJ,other,20,In the first sighting it appeared that the military plane was used as a cover or as a distraction to keep your eyes focused on the plan +2002-05-23,33.8925,-80.5183333,Wedgefield,SC,light,180,Entourage of pairs of lights which changed to single file, then leaped up toward the sky. +2003-05-23,33.9547222,-118.2111111,South Gate,CA,fireball,180,I was unable to sleep so I looked out my window and I saw an orange fireball moving slowly from the south east +2003-05-23,42.4694444,-93.8158333,Webster City,IA,triangle,180,Dark triangle shaped object moving slowly southwards with orange lights on each corner. +2003-05-23,42.4694444,-93.8158333,Webster City,IA,triangle,180,The following investigation details are result of Iowa MUFON's telephone and e-mail interviews with one of the three witnesses involved +2003-05-23,37.6688889,-122.0797222,Hayward,CA,light,180,UFO in Hayward, CA , more activity seen within last couple of days by others. +2003-05-23,32.7152778,-117.1563889,San Diego,CA,disk,60,As we were driving on the freeway, this ufo object nearly swwoped right in front of our car! +2003-05-23,48.55,-109.6833333,Havre,MT,formation,120,I saw what was either a craft shaped like a triangle, or three seperate crafts, flying in formation. +2004-05-23,34.0194444,-118.4902778,Santa Monica,CA,disk,60,A disk-like object viewed over Santa Monica, CA. +2004-05-23,47.6063889,-122.3308333,Seattle,WA,sphere,300,Six silver spheres with larger not -sphere, orange, in daylight. I got pics. +2004-05-23,37.3394444,-121.8938889,San Jose,CA,light,60,5/23/04 7:30 LARGE BRIGHT LIGHT HOVERING IN A CLOUD OR HAZE. +2004-05-23,41.2586111,-95.9375,Omaha,NE,oval,300,ufo spotted near hospital during labor and tornados. +2004-05-23,34.0605556,-86.7675,Hanceville,AL,oval,600,It was a green light that just sat there for a second. It had a slight pulse to it. It flew away to the east at a high rate of speed t +2004-05-23,39.9536111,-74.1983333,Toms River,NJ,circle,30,It was a large bright circular white light that moved across the sky for about 20 seconds then gradually turned to the size of a pin +2005-05-23,29.2855556,-81.0561111,Ormond Beach,FL,diamond,3600,Black, three dimensional, diamond shaped object which remained perfectly still for an hour and exhibited a faint orange glow around it +2005-05-23,30.2941667,-87.5736111,Orange Beach,AL,light,3600,Bright and huge star-like object in the sky during mid-day hours +2005-05-23,34.0552778,-117.7513889,Pomona,CA,light,10,illuminated object in the sky +2005-05-23,33.4483333,-112.0733333,Phoenix,AZ,teardrop,5,My wife and I were at South Mountain in PHX watching the moonrise. With all of the Pollution in the air... The moon looked like an oran +2005-05-23,45.9763889,-94.3622222,Little Falls,MN,other,2,Didn't see object when I took the picture. Noticed it while reviewing pictures. +2005-05-23,42.5830556,-83.3594444,Orchard Lake,MI,light,60,Nothing I have ever seen could fly in that exact formation and there was absolutely no sound +2005-05-23,31.8055556,-81.4308333,Midway,GA,triangle,60,I went outside at about 10:30 on what I believe the date to be as May 23rd 2005 to get some fresh air. It was a clear night and I could +2005-05-23,45.0244444,-123.9452778,Otis (Over The Ocean),OR,light,18000,Light in sky which was bigger than a star or planet and which simply hovered for several hours. ((NUFORC Note: Sirius?? PD)) +2005-05-23,35.7825,-80.8875,Statesville,NC,unknown,300,Orange/Red light: Stationary for about 3 or 4 minutes. Then it dimmed its light(s) and took off North... out of sight! +2005-05-23,38.2430556,-93.3816667,Warsaw,MO,triangle,10,Triangle Craft With Lights Spotted 6 Miles West Of Warsaw Missouri +2006-05-23,35.4105556,-80.8430556,Huntersville,NC,disk,3,was driving home from school along I-77 south around exit 25 and saw almost directly above the highway about 1/2 mile in front of me at +2006-05-23,37.7055556,-81.0986111,Shady Spring,WV,changing,3600,Colorful Objects in Night Sky over Shady Spring, WV. ((NUFORC Note: Possible sighting of celestial body, we suspect. PD)) +2006-05-23,37.2872222,-121.9488889,Campbell,CA,light,300,Bright orange light in the sky +2006-05-23,34.4811111,-87.2933333,Moulton,AL,light,180,A light proceeded across the sky from south to north i did not observe any thing to set it apart from an airplane +2006-05-23,36.6488889,-120.2516667,Tranquillity,CA,circle,180,bright white lite near Tranquillity/ Mendota +2006-05-23,32.2094444,-99.7963889,Tuscola,TX,light,120,Went outside to bring out the trash when I noticed over the hillside about 500ft above the hill was a light that was strobing, it defin +2006-05-23,41.4994444,-81.6955556,Cleveland,OH,sphere,6,Bright white sphere +2007-05-23,37.8716667,-122.2716667,Berkeley,CA,unknown,60,Spotted at noon in Berkeley, Ca. as a light in Eastern sky, that stopped for a brief period, changed course and disappeared into the cl +2007-05-23,30.2452778,-85.6483333,Lynn Haven,FL,disk,15,7 Witness a U.F.O +2007-05-23,38.4202778,-81.7908333,Cross Lanes,WV,oval,900,Hovering Orb +2007-05-23,40.7933333,-77.8602778,State College,PA,unknown,20,high altitude high speed craft made a 30 degree turn +2007-05-23,30.5080556,-97.6786111,Round Rock,TX,circle,10,Low object below clouds moving from south to north - red circular light +2007-05-23,31.7838889,-81.6077778,Allenhurst,GA,oval,5,oval shape light +2007-05-23,40.0483333,-86.4691667,Lebanon,IN,light,900,Light point and flash display for 15 min, similar to other previous witnesses in past few days. +2007-05-23,48.1183333,-123.4294444,Port Angeles,WA,diamond,900,Brightest light, hovering with humming sound- Port Angeles, WA. +2007-05-23,42.6525,-73.7566667,Albany,NY,egg,30,slow and lighted, it was completely visble in the night sky +2007-05-23,40.3858333,-122.2797222,Cottonwood,CA,changing,900,not a sound was made from ship but it stoped over us and we could just about throw a rock at it ! +2008-05-23,37.0841667,-94.5130556,Joplin,MO,triangle,12,Large, brown/rust triangular object seen descending slowly before fading away +2008-05-23,42.3180556,-84.0205556,Chelsea,MI,formation,300,Four lights in a row, evenly distanced apart – maybe a foot or less, in a straight line (relative to each other), that was on a slight +2008-05-23,34.8027778,-86.9716667,Athens,AL,light,10,Bright light appearing over Athens, Alabama and then winked out +2008-05-23,37.7741667,-87.1133333,Owensboro,KY,light,20,Light or orb observed during sunrise. +2008-05-23,41.7108333,-87.7580556,Oak Lawn,IL,egg,40,Flying Black Egg Craft? Is this the way a Chupacabra Travels? +2008-05-23,37.6688889,-122.0797222,Hayward,CA,circle,120,two circles looked like clouds wit blinking lights +2008-05-23,27.9375,-82.2861111,Brandon,FL,formation,180,At 11pm eastern time, i was driving west on compton road in brandon florida. as i approached a stop sign i looked into the distance and +2008-05-23,34.2694444,-118.7805556,Simi Valley,CA,circle,900,5/23/08 circular orange fire ball object went from 1 to 2 objects and droped embers +2008-05-23,37.2708333,-79.9416667,Roanoke,VA,triangle,1200,Approxiately 11:45 p.m., my wife and I were traveling 81 North to West Virginia and we noticed an object floating 100 yds away from the +2009-05-23,39.1619444,-84.4569444,Cincinnati,OH,triangle,120,triangle shaped 3 orange globes +2009-05-23,32.7458333,-96.9975,Grand Prairie,TX,sphere,10,Orbs seen very high just stationary +2009-05-23,45.6388889,-122.6602778,Vancouver,WA,unknown,2700,ufo sighting in Vancouver Washington +2009-05-23,39.4808333,-84.4577778,Trenton,OH,triangle,900,3 orange lights +2009-05-23,47.0980556,-122.2030556,Orting,WA,other,240,Very intense Hot white lights w/t-shaped body moving extremely fast. +2009-05-23,47.2152778,-123.0994444,Shelton,WA,light,120,Fast Moving Light +2009-05-23,41.4886111,-75.7088889,Clarks Summit,PA,light,15,an orange/amber light flying across sky +2010-05-23,42.6183333,-82.5311111,Algonac,MI,fireball,420,Fireball over canal, changed directions and eventually split into 3 lights forming triangle. +2010-05-23,37.2266667,-121.9736111,Los Gatos,CA,oval,300,I saw a large, dark, slow, loud, UFO that was 60 ft from the ground. +2010-05-23,32.7833333,-96.8,Dallas,TX,disk,10,UFO +2010-05-23,28.555,-82.3880556,Brooksville,FL,light,120,Red light seen towards the east coast of central florida +2010-05-23,41.1219444,-75.365,Mt. Pocono,PA,cross,1800,80-W and 380-N Intersection Sighting of Cross-Shaped UFO +2010-05-23,42.0841667,-88.0130556,Rolling Meadows,IL,circle,300,We saw a circular object flying low in sky with 3 bright blue rotating lights, and it was silent. +2011-05-23,41.6105556,-86.7225,Laporte,IN,cigar,1,Cigar shaped craft in the west +2011-05-23,42.3422222,-74.7175,South Kortright,NY,oval,3600,Crippled an at the bottom of our lake +2011-05-23,41.6105556,-86.7225,Laporte,IN,circle,1,bright circle shaped object near the sun looking south +2011-05-23,41.6033333,-98.9258333,Ord,NE,sphere,3600,The red spheres dimmed and dissappeared only to be followed by more red lights appearing and staying staying stationary in the sky but +2011-05-23,41.42,-87.7416667,Monee,IL,light,120,Small, orange light spotted on a back drop of clouds, then diminished and disappeared. +2012-05-23,30.4211111,-87.2169444,Pensacola,FL,oval,180,Dark oval shaped object had shooting star object launch from it overhead before continuing onward. +2012-05-23,29.4238889,-98.4933333,San Antonio,TX,circle,300,Saw a Round white object, in the air-above a tree, had bluish/white beam light from it, directly on me. +2012-05-23,38.7308333,-88.0852778,Olney,IL,triangle,73800,Thought I was star gazing, but found out there were no stars. +2012-05-23,38.7713889,-90.3708333,Hazelwood,MO,other,45,Stealth crescent banking maneuver . +2012-05-23,41.6005556,-93.6088889,Des Moines,IA,fireball,60,While driving east on 80/35 near the Merle hay exit A large cherry red to orange fireball. It moved as though it may land in front of m +2012-05-23,35.4675,-97.5161111,Oklahoma City,OK,rectangle,300,Rectangle transparent object sitting above HW I-35 stationary red & green lights on corners no sound +2012-05-23,40.6441667,-97.45,Exeter,NE,light,180,Tiny white light darts in the Great Plains evening sky! +2012-05-23,33.0580556,-112.0469444,Maricopa,AZ,sphere,60,Red flying globes +2012-05-23,42.1211111,-88.2577778,Carpentersville,IL,oval,120,3 slanted white dots sitting there with no movement. +2012-05-23,42.3313889,-83.0458333,Detroit,MI,oval,10800,Ufo's over Detroit, Dearborn western area. +2012-05-23,35.8305556,-96.3908333,Bristow,OK,sphere,7200,Illuminated spheres moving through the sky at consistent speeds moving in all directions. ((NUFORC Note: Possible satellites? PD)) +2012-05-23,41.85,-87.65,Chicago,IL,circle,5,I was driving in my car heading west on Belmont street around 5200 west 3100 south and was approaching the intersection of Long and Bel +2012-05-23,41.1855556,-88.3097222,Gardner,IL,sphere,2,Low flying green blinking sphere +2012-05-23,30.5755556,-90.9530556,Watson,LA,cigar,30,Cigar shaped,simi-transparent object,faint white light on either end,silently moving over Watson,La. +2012-05-23,40.7608333,-111.8902778,Salt Lake City,UT,other,30,2 star like objects in sky +2012-05-23,42.2411111,-83.6130556,Ypsilanti,MI,disk,300,One large craft flying from west to northeast over Ypsilanti MI; large, with blinking/flashing lights (red and white) +2013-05-23,32.8369444,-97.0816667,Euless,TX,cigar,3600,Cigar UFO DFW airport May 23rd DFW Airport. +2013-05-23,38.4,-105.2166667,Canon City,CO,chevron,900,A MYSTERIOUS, UNIQUE SIGHTING OF THREE ALIENS IN BROAD DAYLIGHT. +2013-05-23,44.5616667,-72.5988889,Morrisville,VT,light,300,Bright silent light seen in morrisville VT. Witnessed by one man taking a walk at 3;30 am +2013-05-23,34.0522222,-118.2427778,Los Angeles,CA,unknown,2,Strange directional "swoosh" sound in the sky near LAX draws attention of 3 witnesses to look up at an empty sky. +2013-05-23,43.6436111,-73.1991667,Bomoseen,VT,other,2,Lighting type flash, looked up an saw cigar shaped black object in Bomoseen, vt +2013-05-23,38.4202778,-81.7908333,Cross Lanes,WV,other,180,Orange polygon shaped aircraft. +2013-05-23,32.4608333,-84.9877778,Columbus,GA,unknown,60,Bright amber lights travelling toward airport and army base +2013-05-23,42.5630556,-114.46,Twin Falls,ID,formation,60,TWO BRIGHT ORANGE LIGHTS IN THE SOUTHWESTERN SKY SOMETIME BETWEEN 10:30 AND 11:00 PM. +1978-05-24,40.9444444,-74.0758333,Paramus (Route 4, Eastbound Lane),NJ,cigar,600,I don't remember the exact date It happened. In 1978 when i was driving home to new york state. I was driving home on route 4 west when +1983-05-24,34.2625,-118.4261111,Pacoima,CA,other,300,SOMETHING RIGHT AT MY WINDOW!!!! +1988-05-24,47.2997222,-96.515,Ada,MN,cigar,1.5,Cigar shaped craft over farmland +1990-05-24,44.0522222,-123.0855556,Eugene,OR,light,180,three vertical red lights in the sky +1993-05-24,42.8863889,-78.8786111,Buffalo,NY,rectangle,30,Shiny box like object floats in sky. +1995-05-24,35.2827778,-120.6586111,San Luis Obispo,CA,circle,5,red light moving in a circular motion +1996-05-24,35.1794444,-80.6475,Mint Hill,NC,triangle,15,Triangle shape silently hovering just over the trees and houses +1997-05-24,43.0386111,-78.8644444,North Tonawanda,NY,triangle,90,Low slow silent over houses,hand glider shaped, 1.5 x as big, 5' thick, round edges,dirty yellow,lit from inside like candle thru wax p +1998-05-24,40.2202778,-74.0125,Asbury Park,NJ,cigar,120,Green/Blue Cigar shaped craft seen travelling south to north, along coastline. Craft was then seen rising slowly north of Convention H +1999-05-24,33.5386111,-112.1852778,Glendale,AZ,disk,180,We saw a silver disc not moving at all at about 7ꯠ feet (estimate) and watched it for about 3 min. We had decided it must be a weath +1999-05-24,33.8352778,-117.9136111,Anaheim,CA,unknown,600,Saw a shine object hovering next to the moon. Looked like the sun glinting off metal +1999-05-24,34.2255556,-77.945,Wilmington,NC,formation,60.6,2 lights on the left and 4 lights on the right. all golden in color and same intensity heading at 330`. +1999-05-24,48.5466667,-117.9044444,Colville (15 Miles Ne Of),WA,circle,2,Very bright round ball of light, moving fast and low. No tail. Traveling W.to E. +2001-05-24,42.3263889,-85.2391667,Springfield,MI,fireball,900,((NUFORC Note: Witness submits terse report of alleged fireball sighting. PD)) +2001-05-24,41.6638889,-83.5552778,Toledo,OH,triangle,1200,One light craft and 1(possibly 2) triangular crafts +2001-05-24,36.0397222,-114.9811111,Henderson,NV,other,3600,Large light in southern Nevada for over an hour. +2001-05-24,32.7252778,-114.6236111,Yuma,AZ,diamond,7200,It was about 5:20 a.m. when my family and I looked at a UFO north of our home. It was like a diamond shape object. It had like one ligh +2001-05-24,35.0875,-84.0347222,Murphy,NC,light,600,I saw a flashing light move in all directions across the sky, then in a final bright flash it was gone. +2002-05-24,41.44,-87.6833333,University Park,IL,diamond,900,At one point the lights changed as I was talking to the police and came closer to the building I was watching from. +2002-05-24,45.3575,-122.6055556,Oregon City,OR,rectangle,600,Bright, non-circular object hovers far above Oregon City OR at dawn, 2002/05/24 +2002-05-24,43.073055600000004,-89.4011111,Madison,WI,unknown,240,very small pulsing lite over madison not moving in a line and moving slower than jets +2003-05-24,40.4555556,-109.5280556,Vernal,UT,flash,30,There were strobing lights that were stationary then appeared to take off and fly away in an faster than possible. +2003-05-24,39.6133333,-105.0161111,Littleton,CO,other,720,Large black object that never moved for 12 min +2004-05-24,47.3811111,-122.2336111,Kent,WA,triangle,2,Transparent triangle over Kent Washington +2004-05-24,39.4816667,-106.0377778,Breckenridge,CO,light,20,Group formation of transluscent light/objects. Moved in tandem, occaisionally thrusting. +2004-05-24,29.9838889,-90.1527778,Metairie,LA,formation,1800,round craft with bright center light and flashing blue, green and red lights stationary for 25 to 30 min. video recorded +2004-05-24,30.1758333,-84.3752778,Crawfordville,FL,changing,300,Bright light breaks up into three lights, which then fade. +2004-05-24,35.5155556,-93.3247222,Hagarville,AR,light,15,Orange light skips through sky near nuclear plant. +2004-05-24,48.0402778,-122.405,Langley,WA,sphere,180,5 objects chasing each other in the sky... +2005-05-24,59.7766667,-151.8313889,Anchor Point,AK,disk,300,Large UFO over Mt. ILIAMNA Alaska. ((NUFORC Note: Possible contrail behind a high-altitude jet?? PD)) +2005-05-24,47.1855556,-122.2916667,Puyallup,WA,light,2,object banked and disappeared quickly +2005-05-24,19.4308333,-155.2377778,Volcano,HI,disk,300,A UFO was seen over Hawaii near the Mauna Kea Observatories. +2005-05-24,32.7630556,-79.8369444,Sullivans Island,SC,light,1200,Two separate light events at same time off of Sullivan's Island, SC +2005-05-24,33.3061111,-111.8405556,Chandler,AZ,other,600,We saw a round, "covered-bowl"-shaped object, large as a house,of luminous white light,slowly move,hover, & float down out of view. +2005-05-24,32.7630556,-79.8369444,Sullivans Island,SC,disk,600,Orangish, multiple light source objects appear out of nowhere, then vanish in the order they appear. +2005-05-24,30.2669444,-97.7427778,Austin,TX,changing,90,fire and triangles in the sky over austin texas may 24 and 25 2005 +2005-05-24,37.3058333,-89.5180556,Cape Girardeau,MO,egg,600,Very large ,stationary,illuminated like a 100 watt bulb egg or football of light +2006-05-24,41.1413889,-73.3583333,Westport,CT,cigar,1,A PICTURE TAKEN OF THE MOON AND VENUS REVEALED THIS THING I THOUGHT TO BE A SHOOTING STAR. NO REPORTS OF SHOOTING STARS WERE REPORTED +2007-05-24,33.2147222,-97.1327778,Denton,TX,fireball,10,fireball with no sound +2007-05-24,33.3061111,-111.8405556,Chandler,AZ,circle,300,pulsating UFO sighted in Arizona, USA. +2007-05-24,40.2794444,-86.5108333,Frankfort,IN,other,10,Lights +2008-05-24,40.6911111,-73.5636111,North Merrick,NY,oval,20,there was a very large oval shaped object with a bright red glowing bottom +2008-05-24,37.9444444,-87.4052778,Newburgh,IN,light,120,Two circular lights about the size of the moon +2008-05-24,41.45,-71.45,Narragansett,RI,circle,300,I saw this object just above the moon and slightly to the left and it changed from whitish to light bluish and back to whitish.((Star?) +2008-05-24,40.1672222,-105.1013889,Longmont,CO,other,30,Daylight sighting of two small objects at altitude moving against the wind. +2008-05-24,38.9488889,-83.4058333,Peebles,OH,sphere,600,Glowing sphere spotted in telescope at dusk. +2008-05-24,34.2783333,-119.2922222,Ventura,CA,chevron,900,four illuminated chevrons that appeared to be made up of several pieces - similar to birds flying together. Ventura, CA +2008-05-24,40.0580556,-82.4013889,Newark,OH,light,1800,A strange light flashes in the sky and the lights reflect a dark circular object before it disappears completely +2008-05-24,26.2375,-80.125,Pompano Beach,FL,unknown,600,Possible UFO sighting it could've been the police helicopter flying zig-zagging, high in the air, strange. +2008-05-24,40.8611111,-79.8955556,Butler,PA,circle,2,it was a white orb with a red outline. it had a long tail that was white and red. +2009-05-24,32.3122222,-106.7777778,Las Cruces,NM,circle,900,On April 23, 2009 I saw three objects with bright lights that follow our vechicle on the freeway. +2009-05-24,32.0833333,-81.1,Savannah,GA,other,900,Savannah Morning Possible UFO +2009-05-24,45.3069444,-92.3619444,Amery,WI,unknown,30,Quite Bright light traveling at a high rate of speed +2009-05-24,42.325,-71.0958333,Roxbury,MA,sphere,40,it what's not a plane or a bird . this object was moving fast and climbing fast. +2009-05-24,46.6022222,-120.5047222,Yakima,WA,disk,2,Disc seen in pic after dowloading pic to computer over military base +2009-05-24,33.4483333,-112.0733333,Phoenix,AZ,circle,3,I noticed a small, white, circular object move a short distance in the sky, then all of a sudden disappear. +2009-05-24,29.7855556,-95.8241667,Katy,TX,unknown,1200,Two rows of three. Crafts hovering and slowly dissapear into the night. Red lights. +2009-05-24,44.0313889,-70.105,Lisbon,ME,oval,240,2nd time in 4 nights a Craft with a brightness with slight blue hue passed over Lisbon Maine. ((NUFORC Note: ISS overflight. PD)) +2009-05-24,47.0380556,-122.8994444,Olympia,WA,light,180,bright light moves quick +2009-05-24,45.7558333,-93.6541667,Milaca,MN,light,180,Ball of light in the sky +2009-05-24,43.2825,-76.2708333,Pennellville,NY,circle,120,Bright circular object spotted in Pennellville,NY - 5/24/09 10:00PM +2009-05-24,39.3708333,-84.2133333,South Lebanon,OH,light,60,may 24 th 2009 10:00 pm. south lebanon sighting over kings island. +2009-05-24,42.1269444,-89.2555556,Byron,IL,light,10,Bright light over camp ground near Byron ILL. +2009-05-24,36.7902778,-85.3705556,Burkesville,KY,light,60,A flashing light that changed directions three times and then streaked out of sight. +2009-05-24,41.2097222,-74.6080556,Sussex,NJ,light,420,5 UFOs and 2 sats? crossing same area of sky +2009-05-24,33.5386111,-112.1852778,Glendale,AZ,fireball,3,Rather large UFO falls to earth in a ball of fire over Southwest US +2010-05-24,42.29,-88.2247222,Holiday Hills,IL,triangle,3600,object in sky falls from sky stops for 30 - 40 seconds , illuminates then flies back up to stars +2010-05-24,21.3069444,-157.8583333,Honolulu,HI,sphere,60,I was on the Sandy beach at 0745 and had noticed something flying over me and as I looked I saw that there were 7 sliver spheres half s +2010-05-24,41.3830556,-71.6422222,Charlestown,RI,other,3600,Strange aircraft again over southern Rhode Island +2010-05-24,43.676944399999996,-70.3716667,Westbrook,ME,oval,1800,bright light in the sky in westbrook maine ((NUFORC Note: Either Venus, or a twinkling star?? PD)) +2011-05-24,39.1619444,-84.4569444,Cincinnati,OH,light,1800,Slow, low-flying lights making vast circles in the night sky (probably an odd airplane) ((NUFORC Note: Advertising lights?? PD)) +2011-05-24,43.5944444,-83.8888889,Bay City,MI,light,300,Pack of small lights traviling west to east dancing in and around mantaining straight path 35-40. +2011-05-24,32.8572222,-116.9213889,Lakeside,CA,circle,7,It was bright blue, round, moving unlike any aircraft I have ever seen, then disappeared!!! +2011-05-24,32.7152778,-117.1563889,San Diego,CA,unknown,1,Phone camera catches a square or triangle shaped craft accidentally from a moving vehicle near Miramar, San Diego. +2011-05-24,37.725,-122.155,San Leandro,CA,triangle,10,UFO San Leandro California +2011-05-24,30.3405556,-97.5566667,Manor,TX,light,5,Super-bright, white, star-like object appears near the star Merak +2012-05-24,46.6022222,-120.5047222,Yakima,WA,circle,10800,Two bright circular objects in the sky, appearing every night for five weeks now. ((NUFORC Note: Planets in E sky. PD)) +2012-05-24,40.8075,-91.1127778,Burlington,IA,light,60,Two lights seen flying overhead. +2012-05-24,47.9791667,-122.2008333,Everett,WA,oval,45,Strange lights over everett, hovering craft +2012-05-24,39.0169444,-94.2813889,Blue Springs,MO,sphere,600,Multi colored flashing orb. ((NUFORC Note: Television video of object suggested to us that the object was Vega, a star. PD)) +2012-05-24,37.6841667,-88.6327778,Carrier Mills,IL,light,300,Flashing colored light in sky disappears. +2012-05-24,41.45,-71.45,Narragansett,RI,circle,7200,8 witnesses viewed 9 ufo's in the Rhode Island sky. +2012-05-24,43.0125,-83.6875,Flint,MI,fireball,180,I observed a large unidentifiable object with a long tail of fire traveling across the sky. +2012-05-24,47.1855556,-122.2916667,Puyallup,WA,light,15,Blue/White object seen flying/stopping/flying above Puyallup, WA, flying Northbound above the clouds. +2012-05-24,41.7355556,-111.8336111,Logan,UT,triangle,300,Going back home and saw large, triangular, light, stationary over home. +2013-05-24,44.8272222,-89.1694444,Wittenberg,WI,light,300,Bright, Flashing, Red light in the Night sky Heading West, then North then was Slowing down. +2013-05-24,33.7222222,-116.3736111,Palm Desert,CA,fireball,300,red pulising lights making triangle formations and hovering +2013-05-24,28.0183333,-82.1130556,Plant City,FL,unknown,240,I was traveling souh on turkey creek road between 92 and Sydney and noticed a missile type of object Bursting through a top of a large +2013-05-24,28.5380556,-81.3794444,Orlando,FL,other,300,Constantly bright main body with around 4 smaller flashing object . +2013-05-24,44.8041667,-93.1666667,Eagan,MN,other,600,White luminous eyelet shaped craft hovered silently above a shopping mall. +2013-05-24,31.7163889,-86.2638889,Luverne (Near),AL,other,60,Blimp shaped object saw by 2 appearing to be hovering over trees. +2013-05-24,33.9241667,-84.3786111,Sandy Springs,GA,sphere,180,Sphere fell from sky in daylight and hit in woods directly behind my house; will keep hunting for it. +2013-05-24,28.5555556,-82.4505556,Spring Hill,FL,light,720,glowing cloud in sky +2013-05-24,28.0341667,-80.5888889,Palm Bay,FL,other,600,Bright Orange Light Slowly Flying Over Palm Bay Florida +2013-05-24,43.073055600000004,-89.4011111,Madison,WI,fireball,300,Ball of flames moving quickly across the sky +2013-05-24,41.6252778,-87.7175,Midlothian,IL,triangle,300,Group of orange lights flying close together +2013-05-24,34.4208333,-119.6972222,Santa Barbara,CA,light,240,Orange light over Santa Barbara +2013-05-24,38.885,-76.9161111,Capitol Heights,MD,formation,900,lights were seen on 214 in formation +1957-05-25,41.9266667,-73.9130556,Rhinebeck,NY,diamond,20,KITE SHAPED OBJECT CHANGED 3 COLORS AND JIGGED UP AND DOWN WHILE FLASHING, VERY, VERY BRIGHT. +1968-05-25,38.1838889,-83.4327778,Morehead,KY,light,300,Silent and fast, the 6 lights in the mountian skies were not normal to any of the 13 witnesses that night in Morehead, KY. +1968-05-25,38.7422222,-108.0683333,Delta,CO,sphere,45,Slow moving large red spherical object moving in a upward direction over the town. The object then split into two seperate objects and +1975-05-25,43.1547222,-77.6158333,Rochester,NY,flash,10,Prior to the full lunar eclipse I clearly saw an impact on the moon at the 11 o'clock portion of the moon followed by a much smaller af +1977-05-25,39.3913889,-87.6936111,Marshall,IL,cigar,1200,totally black object in the sky +1980-05-25,41.9294444,-88.7502778,Dekalb,IL,circle,1200,Circular object with alternating flashing lights with a bright beam of light focused on a tower. +1990-05-25,41.7205556,-74.6347222,South Fallsburg,NY,circle,30,Sitting on bench at golf course, looking up I saw round dark grey object not moving in the sky at cloud level. 4 times I looked down th +1991-05-25,42.8744444,-71.1816667,Hampstead,NH,disk,120,It sailed through the sky directly above our back yard without any kind of noise. +1991-05-25,36.6061111,-118.0619444,Lone Pine,CA,light,60,Mysterious Green Light following US-395 near Lone Pine +1992-05-25,41.8338889,-75.8775,Montrose,PA,oval,60,Large 100 ft long 50 ft high oval sphere shiny like a blob of mercury tree top level 100 yards away or closer. +1992-05-25,42.7316667,-93.7327778,Clarion,IA,oval,120,Football sized craft passed over my home in 1992 +1995-05-25,30.4455556,-86.5791667,Shalimar,FL,teardrop,30,A silver metallic, teardrop-shaped object in the skies north of Shalimar near main gate of Eglin AFB +1996-05-25,39.7286111,-121.8363889,Chico,CA,triangle,6,Silent, dark triangle shaped UFO sighting +1997-05-25,30.2669444,-97.7427778,Austin,TX,disk,90,Saw a fast movin UFO on the way back from getting a pizza. +1997-05-25,40.2152778,-78.2447222,Saxton,PA,formation,360,we were amazed by all of this +1998-05-25,43.073055600000004,-89.4011111,Madison,WI,cylinder,300,2 events separated by about 3-5 minutes +1999-05-25,47.7361111,-122.6452778,Poulsbo,WA,cigar,1800,Late at night, saw four or five lights about 200-300 ft in air, about 1inch (my scale) apart in a straight line (cigar?). +2000-05-25,35.198055600000004,-111.6505556,Flagstaff (Near Hwy 180 North Of),AZ,oval,10800,Bumbling light in the sky at 40 degrees +2000-05-25,32.7833333,-96.8,Dallas,TX,disk,180,Enormous silvery disk hovered for 3 minutes above Dallas Love Field airport (~10ꯠ ft). Two unmarked black copters pursued. +2000-05-25,41.7488889,-87.9183333,Burr Ridge,IL,triangle,60,Black Triangle Floats over treeline +2000-05-25,42.9825,-77.4091667,Victor,NY,disk,60,Fast moving disck like object with red and green flashing lights. +2000-05-25,38.9030556,-90.07,Cottage Hills,IL,chevron,420,Guitar pick shaped aircraft hovering above trees. +2000-05-25,33.4483333,-112.0733333,Phoenix,AZ,light,60,bright star-like light eratically flashing on and off over phoenix, not behaving like conventional craft, no sound +2001-05-25,35.7325,-78.8505556,Apex,NC,circle,30,Early morning, house filled with light, and there it was above me... +2001-05-25,33.1975,-96.615,Mckinney,TX,other,2,high flying reflective object, very fast, slightly larger than starsize with flipping appendage. +2002-05-25,35.0844444,-106.6505556,Albuquerque,NM,circle,2700,CRAFT AND IT'S PROBE MOTIONLESS OVER NUCLEAR DEPOT ONE HOUR AT AFB IN ALB,N.M. +2002-05-25,33.165,-97.0291667,Shady Shores,TX,unknown,600,normal jet disapears +2002-05-25,38.0683333,-120.5386111,Angels Camp,CA,sphere,180,Mothlike craft over angels camp CA +2002-05-25,41.1108333,-112.0252778,Clearfield,UT,light,300,Dot of light, varing in intensity, moving from West ot East +2002-05-25,39.6536111,-105.1905556,Morrison,CO,egg,120,Small red and black object seen flying over Red Rocks Park near Morrison, Colorado. +2002-05-25,34.2783333,-119.2922222,Ventura,CA,light,15,Light moving in the sky then dissappears +2002-05-25,35.6180556,-118.4722222,Lake Isabella,CA,light,2400,4 pinpoint lights in the sky that looked like satellites but exhibited unusual movements not characteristic with satellites. +2002-05-25,42.5847222,-87.8211111,Kenosha,WI,light,720,Lights coalesced from the north, flashed red yellow and blue, flew in large circles, and dissapeared again to the north. +2003-05-25,35.7547222,-118.4244444,Kernville,CA,light,7200,I went on a campin trip to Kern River California this Memorial Weekend. I was lookin at the beautiful sky that night. There were many +2003-05-25,34.2308333,-111.3244444,Payson,AZ,sphere,3600,object low in west sky from Payson, AZ, oval shape w/3 bright spots, moving slowly lower toward horizen +2004-05-25,31.2230556,-85.3905556,Dothan,AL,unknown,3600,A Light again +2004-05-25,41.2586111,-95.9375,Omaha (Near),NE,cone,75,Storm chaser witnesses red and white cone over Nebraska field. +2004-05-25,32.2216667,-110.9258333,Tucson,AZ,unknown,300,It shoot out a golden light +2004-05-25,26.7052778,-80.0366667,West Palm Beach,FL,light,480,3 lights in the sky, crossed paths, way too high to be planes +2004-05-25,30.5061111,-90.3408333,Robert,LA,triangle,900,ufo over robert la +2005-05-25,35.0308333,-76.6933333,Oriental,NC,disk,180,Eerie purple and greenish glow from craft of about 24 feet diameter that hoovered in tree limbs, or partly concealed by them, as three +2005-05-25,32.3666667,-86.3,Montgomery,AL,triangle,30,Triangular objects of incredible speed and movement +2005-05-25,43.1536111,-93.2008333,Mason City,IA,unknown,300,didnt notice untill my friend asked me if i saw what he saw the object was in the sky very far away, may have been in space but couldn +2005-05-25,37.775,-122.4183333,San Francisco,CA,changing,20,A shiny dime sized metalic object appeared out of nowhere and vanished within 20 seconds overr San Francisco +2005-05-25,41.6833333,-86.25,South Bend,IN,changing,1200,I witnessed a black shape-shifting black mass in the sky . +2005-05-25,44.7272222,-75.3213889,Lisbon,NY,formation,15,An orange light emitted smaller lights creating a symmetrical formation. +2005-05-25,26.2708333,-80.2708333,Coral Springs,FL,circle,360,My friend were on the patio when we noticed two bright lights dancing in the sky at around 10:15 PM in south Florida. +2005-05-25,29.9402778,-91.0247222,Napoleonville,LA,sphere,10,sphere,or orb of dim light passes over followed by a passing jet +2005-05-25,38.5816667,-121.4933333,Sacramento,CA,triangle,15,Triangle object, moving sideways, south-by-south west over Sacramento, CA. +2005-05-26,37.2875,-82.4713889,Hellier,KY,light,120,My two sister's wife, grandson,and myself saw three objects looking like stars, but flying south to north at a steady rate of speed the +2006-05-25,41.4244444,-91.0430556,Muscatine,IA,rectangle,120,Strange object passing through Muscatine +2006-05-25,33.5508333,-79.0416667,Murrells Inlet,SC,disk,120,The object was octagon shaped and looked like something from late BC to early AD. 500 Lights On Object0: Yes +2006-05-25,38.9011111,-77.2655556,Vienna,VA,circle,1200,Was blue did not move at all nere jupiter. +2006-05-25,38.7627778,-93.7358333,Warrensburg,MO,triangle,4,I saw what appeared to be a cloaked triangle object in the back drop of some strom clouds. +2006-05-25,37.4791667,-82.5188889,Pikeville,KY,changing,30,Blue light, split into smaller lights in triangle. +2007-05-25,40.8711111,-74.7344444,Budd Lake,NJ,teardrop,3,At exactly 3:45am on 25MY07, my friend and I were standing in the parking lot of my apt. bldg. ((NUFORC Note: Student rept. PD)) +2007-05-25,40.9275,-73.9977778,Bergenfield,NJ,other,300,May 25, 2007 - Silver object with lights in the eastern sky hovering in NJ +2007-05-25,46.6622222,-122.9627778,Chehalis,WA,rectangle,2700,orange and white rectangular, spinning object moved slowly west then south, shooting out things to the S. ((NUFORC Note: Star?? PD)) +2007-05-25,44.6497222,-93.2425,Lakeville,MN,light,4,Peculiar light streaks. +2008-05-25,40.8041667,-74.0125,North Bergen,NJ,oval,600,On my deck looking at ballons in the wind and saw two that did not move in any direction! +2008-05-25,44.1733333,-94.0336111,North Mankato,MN,cigar,120,Small white cigar shaped object, low in sky, hovered for 2 minutes, then disappeared, no trail. +2008-05-25,39.9866667,-75.4013889,Newtown Square,PA,other,8,May 25, 2008 (9:30 pm) translucent football cuts through cloud layer, no lights. +2008-05-25,42.5802778,-83.0302778,Sterling Heights,MI,light,240,Strange light moves steadily, stops, restarts, and then violently zig-zags and dissappears. +2008-05-25,43.5780556,-70.3222222,Scarborough,ME,triangle,25,A triangle shaped object with 3 yellow lights on bottom and a white light on each corner. +2008-05-25,43.0388889,-87.9063889,Milwaukee,WI,circle,120,At 11:00 PM lighting struck a silent, unlight craft and then started to glow a brilliant yellow illumination and flout across the sky +2008-05-25,36.7477778,-119.7713889,Fresno,CA,unknown,10,I am not the witness of this event. Approximately 23:50 hours my girlfriend, her sister and her boyfriend were driving on Interstate 5 +2009-05-25,44.98,-93.2636111,Minneapolis,MN,light,7,light moved from the nnw to the ssw then changed direction sharply and headed nnw, diffuse red in color. +2009-05-25,47.9252778,-97.0325,Grand Forks,ND,triangle,5,Shaped like ^ ---and had lights across it, they lights were in a row and moved in a row upwards then the lights went completely off +2009-05-25,33.4222222,-111.8219444,Mesa,AZ,sphere,5,May 25th, 2009 1 00 AM, i was sitting on my balcony. Smoking a cigarette , and talking to my girlfriend.i have been staying up all +2009-05-25,30.2091667,-95.7505556,Magnolia,TX,sphere,600,I observed a bright object that appeared to be burning getting brighter and then dimmer. +2009-05-25,41.2330556,-80.4936111,Sharon,PA,light,90,Round white light speeding over us then just disappearing. ((NUFORC Note: ISS?? PD)) +2009-05-25,34.0469444,-116.58,Morongo Valley,CA,disk,600,Hovering disk ascending. +2009-05-25,40.7597222,-74.4175,Madison,NJ,disk,600,Madison,NJ Disk in the sky for half hour +2009-05-25,61.2180556,-149.9002778,Anchorage,AK,disk,900,black/silver disc over anchorage alaska +2009-05-25,36.323055600000004,-86.7133333,Goodlettsville,TN,circle,20,2 circles shapes moving across the sky , was not a bird or a plane +2009-05-25,29.9986111,-95.2619444,Humble,TX,other,30,Boomerang shaped object flying due North. +2009-05-25,29.9986111,-95.2619444,Humble,TX,other,30,We saw a large boomerang shaped object with three lights along the wing front surfaces. It was black or, dark in color. Made no nois +2009-05-25,27.5061111,-99.5072222,Laredo,TX,other,1800,Four white lights chasing each other inside a cloud. ((NUFORC Note: Possible advertising lights? PD)) +2009-05-25,44.0805556,-103.2305556,Rapid City,SD,triangle,30,Loud humming triangular craft observed over Western South Dakota moving at high speed +2009-05-25,40.8094444,-80.2019444,Fombell,PA,light,60,single white light moving from northwest to southeast, very quiet, sped up slowed down, boxy like travel +2010-05-25,39.6005556,-82.9461111,Circleville,OH,other,90,I went outside to look at the stars, bored out of my mind and that is what I do when I get bored. I have been seeing an unusual amount +2010-05-25,36.175,-115.1363889,Las Vegas,NV,changing,60,25/5/10 OVER NEVADA WHITE IN COLOUR TURNED VERY QUICK BRIGHT SUNNY AFTERNOON +2010-05-25,36.175,-115.1363889,Las Vegas,NV,oval,300,Las Vegas Nevada. White orb in the sky spotted at 2:00PM, Orb then disappeared and re-appeared several times over a period of about 5 m +2010-05-25,40.4416667,-75.3419444,Quakertown,PA,cigar,30,White cigarette shaped object traveling northbound Quakertown Rt. 309 +2010-05-25,34.0522222,-118.2427778,Los Angeles,CA,light,30,Single bright light appeared to approach and then move off to the south in the sky over Los Angeles. ((NUFORC Note: Reflection? PD)) +2010-05-25,38.6272222,-90.1977778,St. Louis (Creve Couer),MO,light,30,White Light, circular, N to S flight path, dim at first then bright whight back to dim, 30 seconds +2010-05-25,32.7677778,-117.0222222,La Mesa,CA,teardrop,2,Tear drop comet looking objects in the sky +2010-05-25,35.0844444,-106.6505556,Albuquerque,NM,flash,600,a bright light over Albuquerque NM +2010-05-25,38.05,-85.5458333,Mount Washington,KY,triangle,2700,Flashing multi-colored lights appear to be in triangle shape form hovered for 45 mins then disappeared. +2011-05-25,35.0525,-78.8786111,Fayetteville,NC,triangle,10,We were sitting out on my back deck looking towards the southeast when all of a sudden we spotted two objects in the sky comming from t +2011-05-25,43.0608333,-88.4036111,Delafield,WI,formation,492,Five spherical objects motionless above the tree line. +2011-05-25,32.6730556,-97.4602778,Benbrook,TX,other,60,cluster of 10-12 randomly flashing, multi-colored lights +2011-05-25,30.4380556,-84.2808333,Tallahassee,FL,triangle,10,Triangular shaped UFO observed hovering at low level on the east side of Tallahassee, Florida +2011-05-25,39.1619444,-84.4569444,Cincinnati,OH,sphere,12,Red sphere over Cincinnati, OH +2011-05-25,39.1155556,-77.5638889,Leesburg,VA,formation,300,3 rapidly blinking (shimmering) lights in formation +2012-05-25,25.7738889,-80.1938889,Miami,FL,circle,360,Bright orange lights over Miami, Florida +2012-05-25,40.99,-94.7405556,Corning,IA,cigar,15,I was outside having a beer, and no I was not drunk. I was looking at the stars and saw three what I would describe as pen shaped objec +2012-05-25,47.5675,-122.6313889,Bremerton,WA,unknown,600,It was white and moving around, back and fourth +2012-05-25,39.1697222,-91.8827778,Mexico,MO,other,3600,Multiple UFO sightings in a single area on the outskirts of small town. +2012-05-25,42.7919444,-83.6277778,Holly,MI,light,60,There was one orange ball shaped object flying very low and vary fast from the Northwest to the Southeast over Holly Michigan. There w +2012-05-25,40.1447222,-84.1125,Fletcher,OH,light,120,Red/white moving lights over Miami County, Ohio +2012-05-25,36.3319444,-94.1183333,Rogers,AR,circle,120,Fireball over Rogers +2013-05-25,39.1580556,-75.5247222,Dover,DE,sphere,720,Two yellowish orange, bright sphere shaped objects in Dover, DE. +2013-05-25,41.6269444,-88.2038889,Plainfield,IL,triangle,300,Three exremely large white bright lights in the shape of an obtuse triangle hovering over Joliet and could be seen from Plainfield, IL. +2013-05-25,32.655,-79.9405556,Folly Beach,SC,sphere,480,Two large, extremely bright red/orange spheres moving in slow silent formation over the water at the beach. +2013-05-25,42.2155556,-79.8344444,North East,PA,circle,120,Five circular objects glowing orange like fire giving off a round halo. Each vanished separately and made no noise. +2013-05-25,36.1772222,-87.3397222,Charlotte,TN,rectangle,120,Me and my grandson were on hwy 49W and we saw a flat shiney silver object in the sky while driving. +2013-05-25,35.0136111,-97.3608333,Purcell,OK,disk,660,A small round object moved across sky from southeast to northwest at high velocity without vapor trail no noise at a altitude lower tha +2013-05-25,33.2558333,-116.3741667,Borrego Springs,CA,rectangle,600,Small object "floats" against the wind. +2013-05-25,40.9166667,-84.7027778,Convoy,OH,sphere,60,Shiny silver sphere, no lights, propellers, or smoke seen +2013-05-25,31.7586111,-106.4863889,El Paso,TX,sphere,480,Between 6:32-6:45 PM on clear blue sky noticed white "ball-shape" object high in sky moving eastward as nearby airline headed west. +2013-05-25,38.7713889,-90.3708333,Hazelwood,MO,cross,720,Triangular "T"-shaped object observed in St. Louis County. +2013-05-25,30.1022222,-95.2294444,Porter,TX,fireball,10,Large bright red orange fireball in sky emits two smaller fireballs then disappears. +2013-05-25,30.4752778,-90.1008333,Covington,LA,fireball,360,5 red/orange color-pulsing balls of light seen over Covington, LA +2013-05-25,31.3269444,-89.2902778,Hattiesburg,MS,fireball,20,Bright large red fireball moving SW over West Hattiesburg, MS. May 25, 2013 at 9:10pm. +2013-05-25,32.2216667,-110.9258333,Tucson,AZ,light,1200,A fleet of 20-30 glowing orange orbs flying in linear formation across the nightime horizon in Tucson +2013-05-25,36.8527778,-75.9783333,Virginia Beach,VA,circle,120,I was outside talking on the phone when I looked up at saw two strange orange lights in the sky. I saw a black circle fall from the sky +2013-05-25,42.0386111,-78.3411111,Portville,NY,unknown,900,Orange/Red flickering objects in the night sky above western NY +2013-05-25,42.3833333,-83.2966667,Redford,MI,fireball,900,Orange Fireballs Over Redford Michigan +2013-05-25,46.0038889,-112.5338889,Butte,MT,triangle,600,3 white lights in a triangle formation. +2013-05-25,35.7719444,-78.6388889,Raleigh,NC,light,600,Three orange lights moving slowly and quietly. +2013-05-25,36.0247222,-78.4747222,Youngsville,NC,light,600,20-30 Orange lights over Franklin County NC, flying very fast and in close proximity to one another +2013-05-25,39.9241667,-83.8088889,Springfield,OH,circle,1800,Red fireballs in sky completely red +2013-05-25,41.0997222,-80.6497222,Youngstown,OH,chevron,360,May 25, 2013 driving home on dark country road a brilliant red object appeared off to my right and went west. +2013-05-25,35.7572222,-86.5313889,Rockvale,TN,oval,4,Oval dark green disc with greenish halo around object moving extremely fast and horizontal. +1954-05-26,39.9355556,-91.4097222,Quincy (Rural),IL,disk,7,Saucer shaped object with lights and a dome seen near Quincy, Il. +1990-05-26,48.2413889,-122.3694444,Stanwood,WA,rectangle,600,It changed my life forever and my system of belief. +1990-05-26,38.9536111,-94.7333333,Lenexa,KS,other,600,Several clusters of lights crossing low over head that made No sound. +1994-05-26,38.5816667,-121.4933333,Sacramento,CA,triangle,300,A large triangular shaped craft passed over our car while at a stop sign on an empty street +1995-05-26,42.6583333,-83.15,Rochester Hills,MI,triangle,900,Triangle shaped UFO over Rochester Hills, MI in the summer over ྛ +1995-05-26,42.6583333,-83.15,Rochester Hills,MI,triangle,600,Large triangler ufo spotted in Michigan. +1996-05-26,37.4183333,-95.68,Neodesha,KS,unknown,120,We thought it was an airplane, then it zoomed away. +1997-05-26,41.0052778,-74.2911111,Pompton Lakes,NJ,disk,15,I was driving in a car. I saw a saucer metal shaped object, a metal I've never seen before, hovering in the sky, above the falls. It se +1998-05-26,39.7391667,-104.9841667,Denver (Downtown),CO,teardrop,15,I looked out and noticed waht appeared to be 2 Teardrop shaped balloons linked by a tether to one another, Metallic, shiny. The motion +1999-05-26,43.6366667,-113.2994444,Arco,ID,circle,1200,Stange Flying object +1999-05-26,33.7458333,-117.8252778,Tustin,CA,sphere,300,I SAW 4 SPHERE CRAFTS CLOSE TO TUSTIN HOSPITAL. 3 WERE CLOSE TO THE GROUNDƹ WAS HIGH IN THE AIR. THE 3 THAT WAS NEAR THE GROUND WERE S +2000-05-26,34.1161111,-118.1494444,South Pasadena,CA,chevron,30,Two boomerang-shaped crafts, one with an extra, brightly lit object flying just off its left wing tip. +2000-05-26,32.7252778,-114.6236111,Yuma,AZ,unknown,2700,We were heading west on I-8 & were approx 60 east of Yuma & south of the Yuma Proving Ground at apporx 1900 hrs. I looked out my window +2000-05-26,34.1808333,-118.3080556,Burbank,CA,disk,15,A faint orange illuminate crescent that moved in the sky. +2000-05-26,39.6133333,-105.0161111,Littleton,CO,fireball,2,Blue Light Ball Thing followed by fire or spark streaks, west of Highlands Ranch, Colorado. +2000-05-26,40.7280556,-74.0780556,Jersey City,NJ,sphere,90,My roomates and I were enjoying a late night barbeque in our backyard when a all three of us obsereved a large orange sphere moving qui +2001-05-26,39.0061111,-94.0722222,Bates City,MO,light,2,Two orange light flying in patterns now plane, nor plane, nor helicopter could match. +2001-05-26,45.5230556,-122.9886111,Hillsboro,OR,light,1200,Strange light in Hillsboro, OR (1 week after same type of sighting reported in Hillsboro by other witnesses.) +2001-05-26,35.0844444,-106.6505556,Albuquerque,NM,disk,7200,First look, I knew it wasn't something human made. +2001-05-26,28.3933333,-81.5388889,Lake Buena Vista,FL,unknown,2,Epcot UFO +2001-05-26,32.2216667,-110.9258333,Tucson,AZ,changing,3600,At aproximently 15:00 hours on 5/26/01 I woke up to my dogs barking. When I went outside to investigate I was Shocked by a VERY bright +2001-05-26,39.2666667,-81.5616667,Parkersburg,WV,other,120,Four huge lights flying at me 150 feet off the ground... +2001-05-26,34.0583333,-106.8908333,Socorro,NM,other,1500,Object seen in western sky stationary at 7:00 o'clock position from the Moon. Sky was light blue as the Sun was already behind the Moun +2001-05-26,47.0380556,-122.8994444,Olympia,WA,disk,240,young children experience a near abduction by a UFO in their own back yard in Olympia, Washington, May 2001. +2001-05-26,45.96,-108.1602778,Worden,MT,unknown,2,Small blueish-yellow/white light in the hills a few miles south of Worden, MT. +2001-05-26,39.6216667,-76.6288889,White Hall,MD,light,2700,A wwhite flashing UFO zipping below storm clouds. +2001-05-26,44.1597222,-75.0319444,Star Lake,NY,formation,240,I looked up at sky I saw a light flash once I thought it was light flashing on passing aircraft But then I saw light flashing until +2001-05-26,42.7261111,-87.7827778,Racine,WI,teardrop,300,this was so cool +2002-05-26,42.0983333,-76.0497222,Endicott,NY,cigar,120,Upstate NY sightings +2002-05-26,29.9972222,-98.0983333,Wimberley,TX,unknown,1800,Object high in the sky, above jet flying zones, moving in tiny loops and forward and quickly in reverse. +2002-05-26,34.7463889,-92.2894444,Little Rock,AR,light,5,bright light dims,disappears,then repeats the sequence once. +2002-05-26,35.0011111,-92.6297222,Bigelow,AR,light,180,More strange events in skies of rural Ark +2002-05-26,34.2783333,-119.2922222,Ventura,CA,disk,300,Me and my friend were not on any drugs or alcahol +2003-05-26,33.6863889,-117.66,Foothill Ranch,CA,oval,10,One squashed-oval object. Colour= burnt-orange, rimmed in a fuzzy neon light blue. Size= 3 or 4 large stars put together. +2003-05-26,37.3394444,-121.8938889,San Jose,CA,changing,1200,Skies over San Jose on this Memorial Day were full of Chemtrails. During Barbecue our party observed what we thought at first to be two +2003-05-26,29.4238889,-98.4933333,San Antonio,TX,triangle,600,The only dissapointment of it all is i DIDDNT have my camcorder on me. +2003-05-26,26.6402778,-81.8725,Fort Myers,FL,cigar,30,Rocket shaped object over a baseball field. +2004-05-26,36.0397222,-114.9811111,Henderson,NV,other,1200,i was entering my house when i noticed what appeared to be awindblown sheet around 250to300 yds. in the sky. on second glance ifigured +2004-05-26,32.2216667,-110.9258333,Tucson,AZ,light,3600,Light to the far west of Tucson +2005-05-26,37.9286111,-77.4561111,Ruther Glen,VA,cone,45,small shiny metalic circle high in the sky, could only view it when i blocked out the sun. +2005-05-26,41.1305556,-85.1288889,Fort Wayne,IN,light,600,I saw several strange white lights moving in multiple directions. ((NUFORC Note: Possible satellites, we believe. PD)) +2005-05-26,48.7597222,-122.4869444,Bellingham,WA,circle,15,Bright white light, traveling high and fast from Mt. Baker to Bellinham Bay then, lost sight due to trees. +2005-05-26,48.0111111,-122.7675,Chimacum,WA,flash,8,Flashing object seen shooting northwest high over the Olympic Peninsula! ((NUFORC Note: Possible tumbling rocket booster?? PD)) +2005-05-26,45.6388889,-122.6602778,Vancouver,WA,disk,35,I was sitting on my deck. I looked up as an airliner was going over the usual landing path in our area went overhead. Next to the air +2006-05-26,36.9822222,-76.6313889,Smithfield,VA,unknown,240,Flashing lights in the sky. Moving way too fast to be an aircraft and made no sound. +2006-05-26,38.1991667,-92.8333333,Laurie,MO,disk,1200,Spinning, brightly-lit flying saucer approached me from across the lake +2006-05-26,33.5091667,-111.8983333,Scottsdale,AZ,cigar,1200,Cigar shaped object over the McDowell Mountains +2006-05-26,42.0775,-78.43,Olean,NY,teardrop,600,Craft flying over head in the woods. +2007-05-26,38.9297222,-78.4638889,Maurertown,VA,circle,5,Bright green light in the shape of a soft ball. +2007-05-26,29.2105556,-81.0230556,Daytona Beach,FL,triangle,240,The UFO we saw in Daytona was most likely the TR-B3 or the XT-33, huge secret military reconnaissance aircraft. +2007-05-26,47.6063889,-122.3308333,Seattle,WA,circle,20,On front porch late at night, circular disk with triangle light formation flying overhead +2007-05-26,46.8772222,-96.7894444,Fargo,ND,changing,1800,BRIGHT HOVERING OBJECT. ((NUFORC Note: Venus. PD)) +2007-05-26,34.2255556,-77.945,Wilmington,NC,oval,1200,Near ILM airport ,before dusk we saw a oval orange tinted object not moving at first and then slowly moved and disapeared. +2007-05-26,39.5752778,-76.9961111,Westminster,MD,fireball,300,A huge Fireball changing shape and colors captured on video while moving over our house!. +2007-05-26,38.3566667,-121.9866667,Vacaville,CA,disk,60,(DAUGHTER)Tonight May 26, 2007 on Orange Drive in Vacaville at approximately 9:40 pm, my mother and I spotted a UFO. The object was sa +2007-05-26,41.9902778,-70.9755556,West Bridgewater,MA,other,60,BRIGHT GLOWING OBJECT WEST BRIDGEWATER MAY 26 10:10PM +2008-05-26,21.3069444,-157.8583333,Honolulu,HI,light,60,Orange light over Hawaii Kai, Honolulu +2008-05-26,40.4405556,-79.9961111,Pittsburgh,PA,disk,1.5,Bright yellow flying disk, dark center, observed flying over city of Pittsburgh Pa. +2008-05-26,42.6194444,-112.0102778,Lava Hot Springs,ID,changing,120,I observed about 30 amber lights which changed position and shape in the night sky over southeastern Idaho. +2008-05-26,38.8047222,-77.0472222,Alexandria,VA,light,600,Red and white lights sighted in Alexandria, VA. +2008-05-26,33.5538889,-117.2130556,Murrieta,CA,disk,1200,Flashing disc of red blue and white lights over Murrieta/Temecula that left with a comet looking flash +2008-05-26,29.2105556,-81.0230556,Daytona Beach,FL,other,360,Moving at constant speed, always upward in the same fashion as a falling and failing aircraft. +2008-05-26,47.9130556,-122.0969444,Snohomish,WA,teardrop,180,Three teardrop objects flying in a V pattern, followed by a fourth moments later. +2008-05-26,46.0041667,-95.6825,Evansville,MN,other,5400,It was a clear night and there were 3 objects in the sky that 8 people seen. ((NUFORC Note: Twinkling star?? PD)) +2009-05-26,47.0530556,-122.2930556,Graham,WA,triangle,600,boomerang UFO flying low over Graham, WA. +2009-05-26,26.9758333,-82.0908333,Port Charlotte,FL,light,25,Bright orange object moving slowly, stopped then dimmed out completely after a few seconds +2009-05-26,33.9163889,-78.1613889,Oak Island,NC,light,2700,Two reddish-orange lights appearing 2-4 seconds, then reappearing every 5-10 minutes, several smaller lights twinkling continuously +2009-05-26,30.8325,-83.2786111,Valdosta,GA,unknown,45,We could only see the lights,Very Large Lights. +2009-05-26,29.2769444,-89.3547222,Venice,LA,changing,1200,Five yelowish lights apeared in the sky, four where aligned in a row then the fifth seemed to fly up into the four then they dimmed out +2009-05-27,38.8916667,-121.2919444,Lincoln,CA,other,1980,On the morning of Tuesday the 05/26/09, I was in my bedroom and looked out my bedroom window and saw a very shinny object, very high in +2010-05-26,25.7738889,-80.1938889,Miami,FL,disk,600,((HOAX?? Date discrepancy.) my girlfriend and i were laying outside on a hammock around 3:30 we were both awaken by a humming noise +2010-05-26,35.6869444,-105.9372222,Santa Fe,NM,formation,60,Two gold "star like" objects moving silently in formation. +2010-05-26,34.0966667,-117.7188889,Claremont,CA,fireball,30,Around May 25th at 10:00, a huge, very slow moving fireball-like object could be seen from Claremont for 30 seconds. +2010-05-26,40.3266667,-78.9222222,Johnstown,PA,light,1800,Bright Orange (oval shaped) object over Johnstown PA flys for short period then remains stationary in sky for over 30+min +2010-05-26,36.2138889,-83.295,Morristown,TN,triangle,7200,triangular shaped craft in sky over east tennessee +2010-05-26,33.9022222,-118.0808333,Norwalk,CA,light,5,about 8 different shaped, circular lights. moving slow across norwalk, ca +2010-05-26,32.7355556,-97.1077778,Arlington,TX,light,3,A star like object moving up and down rapidly and disappeared in the sky +2011-05-26,47.4927778,-112.3913889,Augusta,MT,light,120,ICBM Sites Augusta, Montana, 1:00 A.M. brilliant lights, greenish red orb, with no contrails on vanishing. +2011-05-26,35.8691667,-81.5963889,Gamewell,NC,disk,30,I've never seen anything like this. I've emailed a video. No words to describe, sorry. +2011-05-26,40.5291667,-104.9847222,Timnath,CO,circle,15,3 circular translucent craft in triangle formation east to west over northern colorado +2011-05-26,36.175,-115.1363889,Las Vegas,NV,flash,300,Red and white flashing UFOs. +2011-05-26,35.7719444,-78.6388889,Raleigh,NC,circle,180,Three bright red circles of light form above for one minute and vanish. +2012-05-26,43.1536111,-93.2008333,Mason City,IA,other,240,acorn shaped with flames and a ring of white lights on bottom +2012-05-26,32.7152778,-117.1563889,San Diego,CA,light,60,Purple/blue flashing lights over night sky east of the I-15 south. +2012-05-26,37.6805556,-92.6636111,Lebanon,MO,unknown,120,UFO Over Lebanon, MO +2012-05-26,28.2438889,-82.7194444,New Port Richey,FL,light,15,Ball of white light turns to green streak across the sky vertically, heading downward. +2012-05-26,33.1022222,-84.3427778,Zebulon,GA,oval,180,Four burning balls of fire. +2012-05-26,34.2255556,-77.945,Wilmington,NC,other,2700,"Moon Lander" Shaped UFO Stormy day. +2012-05-26,38.2544444,-104.6086111,Pueblo,CO,fireball,20,A fireball object moving thru the sky, Pueblo Co. +2012-05-26,41.1175,-73.4083333,Norwalk,CT,light,7200,Four light balls traveling in southern sky from west to east at four seperate time intervals over two hrs. One at a time. First redish +2012-05-26,43.0280556,-73.3816667,Cambridge,NY,circle,60,Orange flaming sphere seen over cambridge, ny +2012-05-26,41.5261111,-87.8891667,Mokena,IL,circle,1200,White/yellow spheres sited in the night sky, +2012-05-26,33.3286111,-91.2816667,Lake Village,AR,light,600,Lake Village, Arkansas: observed 8 - 9 glowing white orbs passing over MS River +2012-05-26,38.2544444,-104.6086111,Pueblo,CO,circle,15,Orange firery ball moving slowly across horizon. +2012-05-26,30.3727778,-82.6230556,Deep Creek (Punta Gorda),FL,triangle,600,I went out to walk the dog. I saw the lights, ran inside to get my friend, called him out to look at the lights. We stood there, and sa +2012-05-26,43.0691667,-77.2991667,Macedon,NY,sphere,60,Bright orange light in sky moving downward, hesitated for a moment and disappeared behind the tress. +2012-05-26,38.9333333,-119.9833333,South Lake Tahoe,CA,fireball,60,Mothers Day 2012 Fireball sighting over Lake Tahoe. +2012-05-26,26.6841667,-80.6677778,Belle Glade,FL,light,1200,the objects moved and changed colors rapidly +2012-05-26,29.7630556,-95.3630556,Houston,TX,fireball,600,Houston Fireball Triangle +2012-05-26,39.9241667,-83.8088889,Springfield,OH,fireball,120,Floating fireball seen in Springfield, Ohio or Chinese Lantern? +2013-05-26,28.6802778,-81.5097222,Apopka,FL,disk,900,Green lit object with a red light spinning around object in late night sky +2013-05-26,46.5944444,-95.5722222,Perham,MN,light,7200,Blue/green orbs, following us. +2013-05-26,33.7877778,-117.8522222,Orange,CA,light,600,Ball of light over Southern California. +2013-05-26,38.5816667,-121.4933333,Sacramento,CA,circle,300,UFO in first frame then cloaked from video, iPad video five minutes. +2013-05-26,43.1136111,-88.4358333,Okauchee,WI,fireball,240,Very bright object over Okauchee lake. +2013-05-26,33.5805556,-112.2366667,Peoria,AZ,triangle,3600,3 white dot triangle. +2013-05-26,36.8352778,-76.2986111,Portsmouth,VA,fireball,180,Orange-red ball of fire flying through the sky. +2013-05-26,47.3811111,-122.2336111,Kent,WA,sphere,600,((HOAX??)) I was driving Down the Road And i saw this Orange-yellowish Glowing Light. I almost crashed my car looking at it. +2013-05-26,41.3966667,-73.0763889,Seymour,CT,oval,600,I seem a formation of stars that was very unusual for this time of day. I was on highway about 2 mins from exit, when I saw it disappea +2013-05-26,41.3966667,-73.0763889,Seymour,CT,oval,600,I seen a formation of stars that was very unusual for this time of day. I was on highway about 2 mins from exit, when it disappeared. +2013-05-26,34.7538889,-77.4305556,Jacksonville,NC,light,300,Three very bright orange lights above the tree lines traveling in the same pattern and direction. +2013-05-26,28.5380556,-81.3794444,Orlando,FL,light,300,Orange sphere's in sky over Orlando, Florida that seemed interested in the planes nearby +2013-05-26,39.7588889,-84.1916667,Dayton,OH,sphere,90,Sphere shaped object with colors moving at a abnormal rate of speed. +2013-05-26,41.88,-88.0077778,Lombard,IL,circle,60,BRIGHT RED OBJECT WITH AN ORANGE LIGHT ON THE UNDERBELLY WITH NO OTHER LIGHTS AND NO NOISE WENT OVERHEAD IN A NORTHWESTERLY DIRECTION +2013-05-26,40.6705556,-78.2388889,Tyrone,PA,light,3,Excessive speed of two bright orbs of light traveling SE to NE in arc over Earth. +2013-05-26,40.6955556,-73.3261111,West Babylon,NY,light,15,Bright light - Instantly the lights accelerated and disappeared from view. +2013-05-26,41.6033333,-80.3055556,Conneaut Lake,PA,light,2,Bright light shot across the sky in front of us near Conneaut Lake, PA on Rt. 285. +2013-05-26,40.5158333,-75.5555556,Macungie,PA,formation,2700,3 colorful objects in the sky that formed a crooked triangle. +2013-05-26,40.1741667,-75.0441667,Southampton,PA,fireball,120,Witnessed ten orange fireball objects going fast in the sky. The wind was not too strong and they were moving in the same direction. Th +2013-05-26,27.8625,-82.8486111,Indian Shores,FL,fireball,1800,Very bright orange/red fireball every couple of minutes flying east to west over the Gulf of Mexico. +2013-05-26,39.3361111,-77.0713889,Lisbon,MD,changing,180,Definitely caught my eye in the night sky! Other people had to of seen this! +2013-05-26,43.1547222,-77.6158333,Rochester,NY,light,120,Orange orbs near Lake Ontario. +2013-05-26,27.7705556,-82.6794444,Saint Petersburg,FL,oval,90,Red orange orb had while glow around it moving east to west no sound moving fast. +2013-05-26,27.7705556,-82.6794444,Saint Petersburg,FL,sphere,180,Orange Reddish sphere heading west in the sky rapidly and disappeared into a small dot. +2013-05-26,41.2102778,-75.8969444,Ashley,PA,light,180,Flashing light in the sky. +2013-05-26,39.7555556,-105.2205556,Golden,CO,circle,300,A bright light dropped out of the bucket of the Big Dipper. It went from the South to the North then disappeared. +2013-05-26,34.5033333,-82.6502778,Anderson,SC,light,900,Orange and red ball of lights moving slowing. +2013-05-26,44.6336111,-86.2344444,Frankfort,MI,light,900,8 orange/red orbs flying in a line accending from the east moving west over frankfort lights go out over lake michigan. +2013-05-26,42.7441667,-73.6919444,Green Island,NY,other,4,Large Glowing Object Like An Over Sized Bat Cleared Viewing Area In 3-4 Seconds +2013-05-26,41.3158333,-72.3294444,Old Lyme,CT,disk,3,Teenage Boy. +2013-05-26,30.1763889,-85.8055556,Panama City Beach,FL,fireball,90,Very bright fireball that seemed to change colors and go out and relight. +2013-05-26,33.3088889,-85.4847222,Wedowee,AL,fireball,180,Looked like a spot of fire traveling across the sky! then it disappeared into the darkness. +2013-05-26,33.3088889,-85.4847222,Wedowee,AL,fireball,180,Most of my family were celebrating Memorial Day weekend at Lake Wedowee, located in Alabama when Sunday night (5-26-13) one family memb +2013-05-26,34.1013889,-84.5194444,Woodstock,GA,other,120,Fireballs my A$$. +2013-05-26,29.3011111,-94.7975,Galveston,TX,sphere,3,Spherical object abour 4 ft.wide resembling a Beach Ball with an Orange internal light. +2013-05-26,42.2630556,-88.0038889,Mundelein,IL,fireball,480,Observed two orange/red balls cross the sky from NE to SW one after the other. +2013-05-26,40.2969444,-111.6938889,Orem,UT,light,60,Spheres of red/orange lights in the sky +2013-05-26,28.9002778,-81.2638889,Deltona,FL,fireball,360,Hovering bright orange/red orbs (large). +2013-05-26,41.3683333,-82.1077778,Elyria,OH,cylinder,300,2 lights hanging in sky over Elyria +2013-05-26,42.2916667,-85.5872222,Kalamazoo,MI,light,120,Pair of hovering orange lights. +2013-05-26,42.8708333,-85.865,Hudsonville,MI,oval,300,Orange lights over Hudsonville. +2013-05-26,29.9544444,-90.075,New Orleans,LA,circle,2100,15 orange glowing objects, triangle inside a circle, silently moving over New Orleans. +2013-05-26,42.4805556,-83.4755556,Novi,MI,formation,600,Lights Over Novi, Michigan. +2013-05-26,42.4805556,-83.4755556,Novi,MI,rectangle,60,Yellow/orange objects seen over Novi Michigan. +2013-05-26,26.2772222,-98.5633333,Sullivan City,TX,triangle,300,Triangle object flying over my house in South Texas. +1974-05-27,43.0769444,-86.1969444,Spring Lake,MI,oval,600,In the spring or early summer of 1974 we saw a dull gray object flying in a straight line over Spring Lake, Michigan at about noon time +1974-05-27,40.8119444,-74.1247222,Lyndhurst,NJ,circle,7200,A VERIFABLE UFO encounter... Holloman AFB 5/6񫹶 +1993-05-27,37.3183333,-84.9394444,Liberty,KY,cigar,600,huge black cigar shaped object over central ky. +1995-05-27,33.9244444,-86.0225,Southside,AL,circle,20,It traveled so quickly...like turning a light switch on to off. +1996-05-27,36.6438889,-116.3994444,Amargosa Valley,NV,light,3600,AUTHOR'S SUMMARY: Friend and I witnessed "flare like objects"hovered more than 10 minutes per.Obj's #ing above 20. Strange person(s) +1997-05-27,32.1630556,-91.7205556,Winnsboro,LA,other,600,well the object sort of came out from the north as i was riding my bike home. +1997-05-27,31.8591667,-97.3794444,Laguna Park,TX,cigar,300,At about 24:35 my friends and I were traveling to Laguna Park on Highway 56, when we saw an odd looking aircraft hovering above at abou +1997-05-27,38.8902778,-77.0844444,Arlington,VA,disk,2,As I was on my way home, I glanced to the right and saw 2 disk-shaped objects high in the sky. They seemed to be moving VERY fast. Afte +1997-05-27,39.3266667,-110.9638889,Huntington,UT,light,6,I'm 15 years old and this happened about a year ago but I just foundthis place to submit it. Me and my friend were sleeping in my backy +1997-05-27,37.6922222,-97.3372222,Wichita,KS,light,600,Before you read this you should think. Do you beleive? +1999-05-27,40.0394444,-84.2033333,Troy,OH,cigar,60,Broad Daylight, clear day, saw a cigar-shaped object that looked metallic or silver hovering or floating in the sky +1999-05-27,47.7625,-122.2041667,Bothell,WA,light,6,There was a bright light next to Mars, about the same shape, color, size of Mars. Located a little to the left of it. It was stationary +2000-05-27,39.1619444,-84.4569444,Cincinnati,OH,circle,1800,IT was a large circular motion of lights in a stationary position. +2000-05-27,42.5158333,-73.6105556,Nassau County (Long Island),NY,disk,600,Glowing object in Nassau County, NY on 5/27/00 +2000-05-27,34.0522222,-118.2427778,Los Angeles,CA,formation,45,Four aircraft, in an unusual flight path and pattern, travelled, at high speed from west to east over Los Angeles. +2001-05-27,33.4147222,-111.9086111,Tempe,AZ,oval,3600,We observed an object that appeared metalic and reflected light in the sky over Tempe, Az +2001-05-27,39.6216667,-76.6288889,White Hall,MD,light,900,The white lights were back again! +2001-05-27,41.1572222,-85.4883333,Columbia City,IN,light,21600,shafts of red and blue lights +2001-05-27,47.2152778,-123.0994444,Shelton,WA,formation,300,A strange craft flies over tents as camping we follow only waiting to see what happens next .... +2002-05-27,33.4483333,-112.0733333,Phoenix (North On 85, Towards),AZ,diamond,10,It was like someone ripped a pefectly shaped whole in the night sky. +2002-05-27,34.448055600000004,-119.2419444,Ojai,CA,light,10,My girlfriend and I took an evening walk, saw a brilliant stationary object which suddenly began to move outward and vanished. +2002-05-27,34.448055600000004,-119.2419444,Ojai,CA,sphere,5,While walking South to Besant Meadow with a dark sky, before Moon rise, bright sphere in east became very bright , then dimmed as it mo +2003-05-27,37.0841667,-94.5130556,Joplin,MO,unknown,10,circular reddish glowing bottom with boomerang shaped white lights moved quickly from north to south +2003-05-27,37.5483333,-121.9875,Fremont,CA,egg,1200,Egg shape craft, silver and reflective in the San Francisco bay area. +2003-05-27,33.3763889,-117.2502778,Fallbrook,CA,disk,60,A gunmetal colored suacer shaped vehicle +2003-05-27,33.4483333,-112.0733333,Phoenix,AZ,cigar,600,What was that cigar shaped object ? +2003-05-27,47.9791667,-122.2008333,Everett,WA,triangle,15,I-5 Triangle UFO in Everett +2003-05-27,42.7261111,-87.7827778,Racine,WI,circle,2,A round aircraft with white, yellow, and red lights on it which lasted 2-3 seconds. It appeared and then disappeared before my eyes. +2004-05-27,42.225,-121.7805556,Klamath Falls,OR,unknown,300,Solid radar return with no visual +2004-05-27,33.9908333,-118.4591667,Venice,CA,other,240,Around 8:30pm on May 27th, 2004, I got in my car with my dog planning to go to the supermarket. I got halfway down the street, approac +2004-05-27,35.9938889,-78.8988889,Durham,NC,sphere,180,sphere of white light follows plane, then disappears into the night sky +2004-05-27,42.4666667,-70.95,Lynn,MA,light,300,Fast moving light vanishes from sight +2004-05-27,35.0844444,-106.6505556,Albuquerque,NM,light,900,6 white lights over Albuquerque +2004-05-28,39.7994444,-88.4622222,Atwood,IL,circle,2,one opject, it shined, reflected light very well. It appeared high in the sky, very small looked greyish/white. when i noticed it, the +2005-05-27,39.7391667,-104.9841667,Denver,CO,disk,60,We saw a saucer shaped craft in the day time in a very populous area, hovering approx. 1000 feet in the air +2005-05-27,40.8130556,-73.5677778,Brookville,NY,formation,5,Five shiny, silver, dome shaped objects were seen flying across the sky in formation. +2005-05-27,27.7705556,-82.6794444,St. Petersburg,FL,circle,120,Grey circle gliding in the sky +2005-05-27,35.1391667,-97.3944444,Noble,OK,triangle,240,Fighter jet observed chasing a triangular craft in central Oklahoma +2005-05-27,37.2708333,-79.9416667,Roanoke,VA,fireball,30,Brilliant object fades then arches across sky and disappers. +2005-05-27,47.2530556,-122.4430556,Tacoma,WA,triangle,60,Saw triangle close up through 12 inch Dobsonian telescope. Duration of observation approximately 1 min. +2006-05-27,36.2613889,-90.9711111,Pocahontas,AR,oval,3600,Apparently intelligently controled objects spotted in Pocahontas Arkansas +2006-05-27,33.5091667,-111.8983333,Scottsdale,AZ,circle,180,Four lights - looked like the sun. +2006-05-27,42.1275,-87.8288889,Northbrook,IL,light,30,The lights were organized, with equal distnaces between the first three, second row of two, and one at the tip...making a perfect cone +2006-05-27,37.6058333,-76.5952778,Saluda,VA,changing,20,UFO(s) spotted at sprint car race in Virginia, 4 (?) objects spotted +2006-05-27,42.3958333,-71.1791667,Belmont,MA,triangle,1200,Star- looking, awkward moving, 3 lighted ufo. +2006-05-27,31.8972222,-98.6033333,Comanche (Southeast Of),TX,unknown,10,There was a bright emerald flying large object that sped across the sky in front of my vehicle and vanished as quickly as it appeared. +2006-05-27,42.3958333,-71.1791667,Belmont,MA,other,1800,follow up on a 3 light ufo, awkwardly moving. +2007-05-27,45.0725,-93.4555556,Maple Grove,MN,disk,7200,muted grey disk object observed silently hovering with three light green oval lights - moved extremely quickly - darting from one area +2007-05-27,28.2394444,-82.3280556,Wesley Chapel,FL,teardrop,20,Craft over Wesley Chapel Florida on clear afternoon. +2007-05-27,33.4763889,-100.8552778,Spur,TX,light,2700,Bright ball of light seen in evening sky in West Texas. ((NUFORC Note: Venus sighting? PD)) +2007-05-27,33.8752778,-117.5655556,Corona,CA,circle,180,bright orange light in sky kinda circular moving very slowly and dropped some kind flares +2007-05-27,33.8752778,-117.5655556,Corona,CA,fireball,900,Orange glow over Corona, California +2008-05-27,32.9125,-96.6386111,Garland,TX,rectangle,60,Large, red rectangle hovers over parking lot in Garland TX. +2008-05-27,42.8697222,-72.2822222,Swanzey,NH,sphere,1200,Strange silver sphere over Swanzey,NH +2008-05-27,47.4811111,-118.2533333,Harrington,WA,light,15,Peculiar reflection albedo from International Space Station +2009-05-27,30.3569444,-87.1638889,Gulf Breeze,FL,oval,600,brightness, changing shape, light trail +2009-05-27,39.0638889,-108.55,Grand Junction,CO,circle,5,Four large lights in V formation, going fast, passed over my house. +2009-05-27,36.0725,-79.7922222,Greensboro,NC,oval,20,oval shaped object flying overhead far faster than any airplane +2009-05-27,33.6888889,-78.8869444,Myrtle Beach,SC,light,20,Orange lights over the ocean sky of Myrtle Beach. ((NUFORC Note: Many other sighting reports from this area. PD)) +2009-05-27,33.4483333,-112.0733333,Phoenix,AZ,light,10,Round shape illuminated object going South and then becoming totally dark as it continued flying +2009-05-27,33.6888889,-78.8869444,Myrtle Beach,SC,circle,60,3 lights appeared over the ocean; lasting for several seconds; exactly like the sighting in Myrtle Beach on 9/08. +2009-05-27,33.8158333,-78.6802778,North Myrtle Beach,SC,circle,60,Around 10pm looking towards the Atlantic Ocean from North Myrtle, SC, we saw 3 progressively blinking reddish-orange lights. +2009-05-27,33.4330556,-79.1216667,Pawleys Island,SC,circle,1800,Strange lights in sky over Pawleys Island. ((NUFORC Note: Many other sighting reports. PD)) +2009-05-27,33.6058333,-78.9733333,Surfside Beach,SC,other,900,Two red dots moving in sequence and numerous flashes of light. ((NUFORC Note: Many other sighting reports from this area. PD)) +2009-05-27,33.6058333,-78.9733333,Surfside Beach,SC,unknown,2700,On 5/27/09 and 5/28/ 09, I and 16 members of my family witnessed and took video of lights hovering and moving off the coast at MB, SC. +2009-05-27,33.6888889,-78.8869444,Myrtle Beach,SC,sphere,180,This was not an airplane or distress flares. ((NUFORC Note: Many other sighting reports. PD)) +2009-05-27,31.7586111,-106.4863889,El Paso,TX,triangle,30,Triangular blueish lights seen over El Paso, TX. +2010-05-27,39.0638889,-108.55,Grand Junction,CO,unknown,240,UFO Over Western Colorado May 27, 2010? +2010-05-27,32.2216667,-110.9258333,Tucson,AZ,disk,600,((HOAX??)) Tucson, AZ Saucer caught on Video!! +2010-05-27,34.5794444,-118.1155556,Palmdale,CA,circle,120,round black orb about 10 feet wide was spotted. Reflect a white color as the Sun light hit object. Slow moving. +2010-05-27,42.9730556,-120.7763889,Summer Lake,OR,other,10800,multiple light emitting/color changing objects, much of the time moving at a high speed.. .((NUFORC Note: Twinkling stars? PD)) +2010-05-27,34.5008333,-117.185,Apple Valley,CA,light,2700,High Altitude Bright Objects appearing in the sky accompanied by smaller, faster objects. +2010-05-27,41.85,-87.65,Chicago,IL,fireball,15,((HOAX??)) Glowing Fireball witnessed by 6 sober people in front of a chicago bar. +2010-05-27,34.2783333,-119.2922222,Ventura,CA,light,600,I saw a red and white flashing object that moved in any way other than a straight line, and I think it noticed me. +2010-05-27,44.0216667,-92.4697222,Rochester,MN,light,3600,Appeared to be a plane, but had three bright lights and hovered. +2010-05-28,33.4483333,-112.0733333,Phoenix,AZ,light,1500,bright light over west phoenix ((NUFORC Note: Time of sighting not indicated by witness. Possible sighting of Venus. PD)) +2011-05-27,44.1636111,-93.9991667,Mankato,MN,changing,18000,((HOAX??)) The craft made things slow down and we blacked out a few seconds after we saw said craft. +2011-05-27,39.6477778,-104.9872222,Englewood,CO,cigar,45,Blue & White flashing UFO over Englewood,CO 5/27/2011 +2011-05-27,38.9258333,-79.8469444,Elkins,WV,circle,60,My wife was outside smoking a cigarette while I was in my office. She knocked on window and I immediately went outside because she had +2011-05-27,42.3811111,-88.1397222,Ingleside,IL,circle,1200,20 orange lights passing over Northern Illinois +2011-05-27,48.2933333,-122.6419444,Oak Harbor,WA,circle,600,Five bright orange, round UFO east of Oak Harbor, WA. ((NUFORC Note: Case solved by local investigator. "Chinese" lanterns. PD)) +2012-05-27,39.3869444,-94.5808333,Smithville,MO,fireball,60,No sound flying low small fireball type +2012-05-27,39.4155556,-119.2236111,Silver Springs,NV,oval,15,2 oval shaped craft, flying from north to south at approx. 10ꯠft. +2012-05-27,39.2058333,-89.4044444,Irving,IL,light,600,Stationary triangular pulsing red lights seen in Irving, IL on 05/27/12 at 17:30 hours. +2012-05-27,44.0522222,-123.0855556,Eugene,OR,oval,240,Black dot flashing color lights. +2012-05-27,34.1975,-119.1761111,Oxnard,CA,other,30,Neon red upside down Y craft +2012-05-27,41.995,-88.1855556,Bartlett,IL,fireball,45,A fireball was seen across the western sky of Bartlett, Il. +2012-05-27,45.5236111,-122.675,Portland,OR,light,240,Bright, amber, shimmering light in sky above Southeast Portland +2012-05-27,42.8666667,-88.3333333,Mukwonago,WI,light,90,Bright round light. White center red exterior. Traveled slow.No noise. +2012-05-27,44.2341667,-83.7233333,National City (Indian Lake),MI,sphere,300,Orange Sphere moving slowly and low in the sky +2012-05-27,43.8927778,-71.6763889,Thornton,NH,disk,120,May 27, 2012 Bright red light(s) hovering in the sky...Thornton, NH +2012-05-27,41.6469444,-73.5686111,Wingdale,NY,light,900,Star like object moving in abnormal flight pattern. +2012-05-27,42.5802778,-83.0302778,Sterling Heights,MI,light,300,2 orange objects over sterling hts, mi +2012-05-27,40.0516667,-84.3444444,Pleasant Hill,OH,light,120,Very fast and erratic light seen in the sky around Troy, OH. +2013-05-27,38.8461111,-77.3066667,Fairfax,VA,other,4,Glowing Saturn-Shaped Object: Fairfax, VA. +2013-05-27,40.7447222,-73.9491667,Long Island City,NY,light,1,Fast bright turquoise light moving towards the ground. +2013-05-27,47.1219444,-88.5688889,Houghton,MI,fireball,120,Bright fireball hovering low in the sky, when we stopped the vehicle it silently sped off and vanished within a minute. +2013-05-27,38.9916667,-74.8152778,Wildwood,NJ,light,10,Orange glowing orb floating in the sky. +2013-05-27,37.8455556,-83.8583333,Stanton,KY,fireball,600,Me and my friends seen three fire balls in the sky. They where circling each other. +2013-05-27,33.4483333,-112.0733333,Phoenix (Near),AZ,disk,30,Strange Disc Shaped UFO Flying under plane on Descent into Phoenix, AZ Airport. +2013-05-27,34.2072222,-84.1402778,Cumming,GA,sphere,300,Black balls with a red light underneath. +2013-05-27,36.0652778,-119.0158333,Porterville,CA,circle,15,UFO paralleling a man made aircraft during a suspected "chem-trail" operation caught on video. +2013-05-27,26.4516667,-81.9483333,Fort Myers Beach,FL,circle,60,2 pink-orange spheres floating over Fort Myers Beach. +2013-05-27,41.8005556,-73.1216667,Torrington,CT,fireball,180,2 fireballs in sky, hovered then vanished. +2013-05-27,40.6083333,-75.4905556,Allentown,PA,unknown,480,Two bright orange lights appeared from over a mountain South then hovered for about 2 minutes the disappeared East +2013-05-27,41.5622222,-72.6511111,Middletown,CT,fireball,420,Bright glowing red ball. Moved north. Stood sill for a few seconds then turned sharply to they east. proceeded north again and moved st +2013-05-27,39.3722222,-104.8555556,Castle Rock,CO,fireball,120,Bright orange light that changes speed then flickered out like a candle +2013-05-27,43.0386111,-78.8644444,North Tonawanda,NY,other,120,Bell shaped craft in no hurry sight sees Niagra Falls & Buffalo +2013-05-27,39.1155556,-77.5638889,Leesburg,VA,circle,120,Red light in the night sky. +2013-05-27,29.9911111,-93.9583333,Port Neches,TX,light,10,Star like UFO moving then climbed out of sight. +1977-05-28,43.6122222,-116.3905556,Meridian,ID,disk,1200,It passed over our house and the other houses dead center of them at such a slow speed, I couldn`t figure how it could stay in the air, +1977-05-28,43.6122222,-116.3905556,Meridian,ID,disk,1200,It passed over our house and the other houses dead center of them at such a slow speed, I couldn`t figure how it could stay in the air, +1977-05-28,34.0522222,-118.2427778,Los Angeles,CA,cigar,2,I was only 6 but I'll never gorget the silent metal stick that silently flew over me as I waited in the car that night on my birthday. +1987-05-28,42.8141667,-73.94,Schenectady,NY,chevron,600,At dusk the craft lingered over land, close to the Knolls Atomic Power Lab, Schenectady, NY town of Niskayuna +1987-05-28,36.9888889,-84.6,Burnside,KY,circle,300,cant explain thank about it almost everyday for 23 years +1995-05-28,32.2686111,-107.7580556,Deming (South Of),NM,unknown,120,travelling westbound on amtrak.....recorded object on video tape.....never timed it...just guessing....just found your website +1997-05-28,43.0794444,-75.7511111,Canastota,NY,light,14400,MULTIPLE LIGHTS SIGHTING AND VIDEO MAY 28, 19973 to 12 IN DIFFERENT FORMATIONS- 4 HOURS/2 NIGHTS10 WITNESSED- ONEIDA LAKE, NY.- WITH FU +1998-05-28,48.2413889,-122.3694444,Stanwood,WA,rectangle,60,Whatsit was circling above holding ponds and fields south of Stanwood +1998-05-28,35.6869444,-105.9372222,Santa Fe,NM,fireball,420,We saw the object in the sky south of Santa Fe just after sunset. It looked like a glowing white sphere against the indigo sky, and was +1998-05-28,33.8544444,-84.2172222,Tucker,GA,changing,300,a small group of lights flying in a birdlike formation slowly across the sky in a northeast direction. +1998-05-28,26.0625,-80.2333333,Davie,FL,flash,2,A bright flash of blue green light which expanded into a blue green colored sky bright enough to fill my car. +1999-05-28,37.4636111,-122.4275,Half Moon Bay,CA,unknown,8,My room lit up a brillant orange on three occasions. +2000-05-28,36.7477778,-119.7713889,Fresno,CA,formation,30,Conjoined formation of shape changing spheres crosses sky +2000-05-28,35.0588889,-119.4,Maricopa,CA,egg,60,Single Oblong Object w/ dull metallic sheen spotted at high altitude and moving slowly at approx. 2pm, clear, sunny day. +2000-05-28,32.3808333,-106.4788889,White Sands,NM,light,7200,bright lights playing tic-tac-toe in the sky for over 2 hours +2000-05-28,33.2341667,-97.5858333,Decatur,TX,changing,600,Bright white elongated light in western sky over Decatur Texas. +2000-05-28,30.0797222,-95.4169444,Spring (North Harris Co.),TX,unknown,600,Object with red/green/white light flew over Montgomery County, Tx., moving south to north...on 5/28/00 +2000-05-28,27.7705556,-82.6794444,St. Petersburg,FL,fireball,60,Large fusia colored ball descending slowly to the ground. color changed to orange/red and trail of smoke was visible +2000-05-28,38.5816667,-121.4933333,Sacramento,CA,triangle,10,Sighting of V shaped craft over Sacramento, California on 5/28/00 by three witness'. +2001-05-28,34.8986111,-117.0219444,Barstow,CA,light,10,I have a picture. I will send it. +2001-05-28,40.6677778,-81.2575,Waynesburg,OH,chevron,60,UFO sighting of boomerang in Ohio during Daylight. +2001-05-28,42.0333333,-88.0833333,Schaumburg,IL,light,60,Slow moving East Moving light intecepted by fast moving North Mover +2001-05-28,37.9830556,-89.0161111,Buckner,IL,oval,6,The object was there for 3 seconds and it turned at a 90 degree angle and was gone in 2 seconds. +2002-05-28,37.6922222,-97.3372222,Wichita,KS,triangle,300,A triangle shaped ship with three lights flew over head and changed directions without changing position +2002-05-28,33.8847222,-118.41,Manhattan Beach,CA,disk,45,Silver flying saucer floats, then wobbles then speeds away at lightspeed becoming a pinpoint of orange light. +2002-05-28,35.3733333,-119.0177778,Bakersfield,CA,unknown,20,Observed two lights moving fast and near miss to aircraft +2002-05-28,34.7463889,-92.2894444,Little Rock,AR,circle,10,orange light with other lights( up to 3) attached to the object,moving east to west at a high rate. +2002-05-29,42.575,-70.9305556,Danvers,MA,disk,300,Unusual object with 3 red/orange lights on it in a triangular formation witnessed by 3 people in clear daylight +2003-05-28,33.7513889,-84.7477778,Douglasville,GA,cylinder,10,observed a daylight star/cannister shaped object +2003-05-28,43.6136111,-116.2025,Boise,ID,triangle,10,A rapidly moving "shimmering shadow" with orange leading edges +2004-05-28,61.2180556,-149.9002778,Anchorage,AK,sphere,20,I saw a silver sphere over Anchorage, Alaska, It stopped hovered and then disappeared before my eyes. +2004-05-28,35.4675,-97.5161111,Oklahoma City,OK,changing,30,Dark shiny cylinder +2004-05-28,33.4147222,-111.9086111,Tempe,AZ,light,900,Two objects near the moon hover move and disappear. +2004-05-28,43.0113889,-75.0044444,Mohawk,NY,circle,120,White circular saucer, flashed an intense bright light, then disappeared. +2004-05-28,34.8697222,-111.7602778,Sedona,AZ,light,5,bluish bright light in Sedona moved very fast +2004-05-28,32.2216667,-110.9258333,Tucson,AZ,fireball,2,Extremely fast, huge, bright fireball. +2004-05-28,40.3266667,-78.9222222,Johnstown,PA,light,5,White light appeared as a star, just dimmed out. +2004-05-28,44.98,-93.2636111,Minneapolis,MN,light,5,I saw a light in the sky, it was moving around at odd angles, would disappear and reappear. I had pointed it out to two people who were +2005-05-28,38.2119444,-86.1219444,Corydon,IN,light,1200,Orange ball of light. Hung in sky fro about 10. min. started to move then shot off +2005-05-28,38.3566667,-121.9866667,Vacaville,CA,disk,300,Disk shaped object hovered briefly then travelled eastward, captured video footage of it as it left. +2005-05-28,43.3094444,-73.6444444,Glens Falls,NY,sphere,300,loss of satellite radio reception, "black dot" viewed in sky for 3-5 minutes. +2005-05-28,45.0025,-101.2330556,Eagle Butte,SD,light,4.5,a large bright light was taking our picture. +2005-05-28,37.6391667,-120.9958333,Modesto,CA,triangle,1200,Triangle shaped object with red and blue lights hovered for sometime. +2005-05-28,35.2427778,-81.0375,Belmont,NC,triangle,600,PERFECT Triangle shaped craft. 3 lights on bottom (round) with dull glow on entire underside. The craft was observed over Lake Wylie +2006-05-28,41.1219444,-75.365,Mt. Pocono,PA,light,60,the objects were too high to be considered planes and they were not flying in a straight line. +2006-05-28,40.4897222,-81.4458333,New Philadelphia,OH,triangle,3,A very fast moving triange with four red lights going straight as can be, and silent. +2006-05-28,39.9522222,-75.1641667,Philadelphia,PA,circle,120,May/2006 - Video: UFO Over Philadelphia? +2006-05-28,37.3541667,-121.9541667,Santa Clara,CA,oval,15,Fast moving gliding oval shaped object in the sky just before Great America Parkway Fireworks event on Sunday May 28, 2006. +2006-05-28,35.7511111,-86.93,Spring Hill,TN,flash,1,Flash/Pulse of light shooting through Big Dipper +2006-05-28,26.9338889,-80.0944444,Jupiter,FL,light,1,A light that looked like a star but moved erractically left to right and in a circular pattern. +2006-05-28,29.3927778,-98.2369444,Adkins,TX,sphere,60,Bright blue sphere, hovered then darted east and disappeared. +2006-05-28,42.0333333,-70.9597222,East Bridgewater,MA,flash,1200,While sitting outside, at the same moment two persons notices a bright flash in the northern sky, right of the big dipper. It was thou +2007-05-28,42.1013889,-72.5902778,Springfield,MA,triangle,180,May 28񫺗 Springfield,Ma. around l:00 a.m. in the morning +2007-05-28,35.0844444,-106.6505556,Albuquerque,NM,sphere,7200,white round object motionless over albuwuerque +2007-05-28,42.5161111,-76.9283333,Lakemont,NY,circle,10,Seneca Lake, Memorial day 2007, two jets, circular object approached behind them, then vanished. +2007-05-28,38.5816667,-121.4933333,Sacramento,CA,changing,240,flying object in sacramento +2007-05-28,45.5236111,-122.675,Portland,OR,circle,1200,7 craft appeared in the SE bright sunny day lit sky over Oregon, looked like white planets, moved slowly and gradually disappeared. +2007-05-28,28.5380556,-81.3794444,Orlando,FL,triangle,900,Triangle shaped object flying over Orlando, Fl. +2007-05-28,19.4975,-154.9508333,Pahoa,HI,flash,10,3 Green Illuminating Flashes and power outage +2008-05-28,41.8011111,-88.0747222,Lisle,IL,circle,600,Afternoon sighting of 15+ ufo's that changed colors and were the size of stars in the night sky. +2008-05-28,32.7833333,-96.8,Dallas,TX,disk,180,Disk or Saucer moving south to north in Dallas, Texas. +2008-05-28,41.114444399999996,-83.1780556,Tiffin,OH,unknown,300,Shining object stationary in the sky over Northwestern Ohio. +2008-05-28,30.6694444,-81.4627778,Fernandina Beach,FL,cigar,240,cigar shaped 8:PM May 28ᄸ North of Jacksonville Fl.going north, disappeared in a flash, no clouds.bigger than the jet near by. +2008-05-28,41.1411111,-73.2641667,Fairfield,CT,light,300,Bright object in sky suddenly disappears +2008-05-28,38.8466667,-91.9477778,Fulton,MO,light,30,Sonic boom by day, jet chasing ufo by night. +2009-05-28,37.725,-122.155,San Leandro,CA,unknown,5,On april 28 2009 at 3 am pacific time an alien appeared in the living room as i was sleeping on the couch. +2009-05-28,36.3433333,-106.1880556,El Rito,NM,light,2700,Bright object descended rapidly, leaving a shower of sparks, and turned in a J shape, then stayed the same. +2009-05-28,33.3527778,-111.7883333,Gilbert,AZ,oval,7200,my son called me @ 0545 he said woman on radio 104.7 reported 17 ufos over gilbert and just hovering and changing positions. I work in +2009-05-28,40.6197222,-111.8094444,Cottonwood Heights,UT,circle,180,Unusual object over Wasatch Front Range. +2009-05-28,35.0844444,-106.6505556,Albuquerque,NM,light,60,Los Ranchos Bright Light +2009-05-28,35.0844444,-106.6505556,Albuquerque,NM,light,60,Still for 5 seconds and very bright +2009-05-28,35.9605556,-83.9208333,Knoxville,TN,circle,180,bright white light in sky moving slowly to southeast. +2009-05-28,35.9488889,-85.0269444,Crossville,TN,light,60,large Bright light, no shape to describe, just light ....slow, zigzag then faded +2009-05-28,34.0027778,-84.1447222,Duluth,GA,circle,90,very bright circular object, white light, moving to the east +2009-05-28,40.3275,-80.0397222,Bethel Park,PA,other,300,I was sitting on my back deck and noticed an object moving eradically across the sky> I then saw a second object intersecting the path +2009-05-28,32.7833333,-96.8,Dallas,TX,unknown,120,A series of light about 13-15, they all were the size of a star...... flying over Dallas on 5.28.2009 at 11.50 pm +2009-05-29,36.7280556,-108.2180556,Farmington,NM,changing,480,80 to a100 strange lighted objects coming from the east skys +2010-05-28,44.1733333,-94.0336111,North Mankato,MN,sphere,17,Object flew from the southeast gaining slight altitude as it floated across the sky just under cloud level at a high rate of speed. Obj +2010-05-28,37.4716667,-121.1286111,Patterson,CA,triangle,30,3 lights hovering and flying past the freeway in Patterson, CA. +2010-05-28,42.2711111,-89.0938889,Rockford,IL,cylinder,420,Long black tube seen in Rockford IL +2010-05-28,36.8188889,-76.2752778,Chesapeake,VA,circle,600,Ufo orbs over skys in Chesapeake, VA +2010-05-28,44.5191667,-88.0197222,Green Bay,WI,unknown,45,Orange object seen moving across night sky. Did not have a trail, nor did it fragment, explode, or change size +2011-05-28,33.6602778,-117.9983333,Huntington Beach,CA,light,20,A light with a haze doing figure 8's through the sky at a moderate pace. +2011-05-28,39.5752778,-76.9961111,Westminster,MD,changing,840,Intensely bright, crescent shape to round in SE night sky +2011-05-28,32.7177778,-100.9172222,Snyder (30 West Of),TX,rectangle,300,Rectangular object flying low, slow with red light flashing. +2011-05-28,37.0841667,-94.5130556,Joplin,MO,disk,5,Bright disk cutting through TV tornado film, seen 06/14/11. +2011-05-28,39.0005556,-74.7997222,North Wildwood,NJ,fireball,600,fire ball +2011-05-28,38.1688889,-86.99,Dale,IN,fireball,1,Red and orange wavy fireball +2011-05-28,37.3872222,-92.8325,Niangua,MO,fireball,2400,Several objects, flying in groups of 2, 3 & 5 at a time, in no apparent formation,at intervals, from the east turning to the north. +2011-05-28,39.5205556,-74.4861111,Port Republic,NJ,fireball,15,Bright red glowing object in Port Republic, NJ (small town) +2011-05-28,42.8863889,-78.8786111,Buffalo,NY,unknown,240,Unknown silent, lighted craft hovered overhead, Buffalo NY +2011-05-28,47.5708333,-122.2208333,Mercer Island,WA,other,180,3 fire like balls in sky at night over Mercer Island, WA. +2011-05-28,40.7141667,-74.0063889,New York City (Queens),NY,disk,900,UFO in New York. We have photos and Details, the object was no doubt a UFO. +2011-05-28,40.7141667,-74.0063889,New York City (Queens/Whitestone),NY,unknown,15,I was sitting in my yard looking in an easterly direction, when I noticed an unidentified object moving in a northeasterly direction at +2011-05-28,41.8061111,-88.3272222,North Aurora,IL,changing,240,Strange object slowing moving west, arc north, disappear and return, shifting shape and color as it moved near North Aurora, Illinois. +2011-05-28,42.2527778,-71.0027778,Quincy,MA,light,45,Eight red lights formed two lines of four then form a vee formation and flew straight up. +2011-05-28,41.5769444,-73.4088889,New Milford,CT,unknown,600,Lavender colored lights in sky new milford CT 5/28/11 10:18 pm EST +2011-05-28,39.4811111,-76.6441667,Cockeysville,MD,light,60,Bright ball of light moving upward very fast eventually becoming a speck before disappearing within seconds +2011-05-28,32.2216667,-110.9258333,Tucson,AZ,flash,1,White flash lighted up the sky over Tucson, Az 05/28/11. +2012-05-28,40.7975,-81.165,Paris,OH,light,15,Large light breaks into smaller lights over Paris, OH +2012-05-28,38.7308333,-88.0852778,Olney,IL,light,7200,Orb down the road +2012-05-28,30.5475,-88.1752778,Theodore,AL,light,3600,My boyfriend and I were sitting out by my pool tonight in Theodore,Al gazing at the stars like usual. All of a sudden, we see a light m +2012-05-28,32.4205556,-104.2283333,Carlsbad,NM,light,15,star-like lights zipp across the sky out of Aries. +2012-05-28,41.2586111,-95.9375,Omaha,NE,circle,120,East to west movement of a circular obj. reddish orange light...this object shot upwards twords outerspace....then returned for another +2012-05-28,30.2363889,-93.3772222,Sulphur,LA,circle,60,Round reddish orange in color +2012-05-28,42.3583333,-71.0602778,Boston,MA,cigar,60,Large metallic-object, oblong shaped--disappeared completely from cloudless sky. +2012-05-28,37.2011111,-87.1788889,Greenville,KY,oval,600,Oval/Almond shaped craft, very bright moving quickly then slowly. +2012-05-28,39.8963889,-80.1794444,Waynesburg,PA,light,180,Two unidentified flying objects traveling at incredible speeds changing course +2012-05-28,37.0433333,-93.2941667,Nixa,MO,cylinder,45,I viewed a pill shaped object with no wing span moving at a high rate of speed. Covering the distance of horizon to horizon in seconds. +2012-05-28,33.4222222,-111.8219444,Mesa,AZ,circle,6,No tail of light like a meteor, just bursts of light from what seemed to be from deep space. +2012-05-28,41.2586111,-95.9375,Omaha,NE,circle,1305,Red glowing light seen over West Omaha sky evening of 05/28/2012 +2012-05-28,41.0352778,-111.9377778,Kaysville,UT,light,1200,Strange lights over kaysville, ut. +2012-05-28,39.5752778,-76.9961111,Westminster,MD,sphere,900,Sphere shaped orange glowing object in the night sky +2012-05-28,44.0663889,-73.2161111,Weybridge,VT,cylinder,300,Rwo rocket like objects weybridge vermont +2012-05-28,34.1480556,-117.9980556,Monrovia,CA,changing,900,Unique ufo light never seen ?or heard of????!!! +2012-05-28,40.1841667,-75.5383333,Royersford,PA,fireball,120,Orange fireball floats by royersford - limerick PA +2012-05-28,42.9730556,-77.8530556,Caledonia,NY,circle,1500,Two objects were in close proximity flying very slow and travelled away very quickly. +2012-05-28,45.6016667,-107.4605556,Crow Agency,MT,unknown,1800,9 orange-red lights over Crow Agency, MT +2012-05-28,35.7719444,-78.6388889,Raleigh,NC,light,1,Low flying bright light with no sound +2012-05-28,46.7833333,-92.1063889,Duluth,MN,triangle,5400,Triangle of lights observing us through our window above the tree line, and would move side to side and closer and away. +2013-05-28,28.5380556,-81.3794444,Orlando,FL,flash,2700,Large flashing light in the sky,directly over head that lasted at least 45 minutes. +2013-05-28,33.2775,-85.0980556,Franklin,GA,triangle,2700,Oblects would make impossible movements, very fast never in a straight line made no sound and seemed to have rotating lights. +2013-05-28,34.2855556,-118.8811111,Moorpark,CA,light,1200,6 very high bright lights silently meandering into various symmetrical formations. +2013-05-28,33.4486111,-84.455,Fayetteville,GA,fireball,900,Too erractic to be a normal action. +2013-05-28,33.4486111,-84.455,Fayetteville,GA,fireball,900,Too erratic to be a normal action. +2013-05-28,41.9430556,-86.5569444,Bridgman,MI,fireball,300,Vivid red craft. +2013-05-28,44.4583333,-87.5030556,Kewaunee,WI,other,1200,Small, silent, brightly lit, extremely manueverable, very low-flying craft 250' behind my rural home +2013-05-28,36.1658333,-86.7844444,Nashville,TN,light,50,Star like orb shoots thru sky seen in west Nashville. +1967-05-29,31.7586111,-106.4863889,El Paso,TX,light,3600,My Dad was a radar specialist. +1976-05-29,38.9333333,-119.9833333,South Lake Tahoe,CA,light,360,Single bright light blinked out and back to different positions; Emitted powerful triangular search beam to ground. +1977-05-29,43.9747222,-75.9111111,Watertown,NY,cigar,45,My friend and I were on our way to my summer place in Canada and had pulled off I-81 for a rest stop. We were looking at how beautiful +1978-05-29,39.9522222,-75.1641667,Philadelphia,PA,fireball,15,Ball of fire streaks eastward over Phila., lands in Atlantic Ocean one mile from Resorts Intl.. ((NUFORC Note: Meteor?? PD)) +1993-05-30,46.0647222,-118.3419444,Walla Walla,WA,fireball,2,slow moving fireball the day before a local crop circle story was in the newspaper +1996-05-29,46.8205556,-100.5308333,Menoken,ND,sphere,600,Brightly glowing ball of light motionless, then moving, then motionless.The object moved at various angles around an airport. +1997-05-29,43.3122222,-75.1222222,Hinckley,NY,light,300,A light of great magnitude was hovering overa barn.It did not make fast moves.IT lastedfor about five or six minutes.The disk wasorange +1998-05-29,39.1525,-84.7480556,North Bend,OH,triangle,45,Strange Humming sound, similar to high tension wires, floated northeast to southwest crossed river(ohio) slowly, low(50 meters) lights +1998-05-29,39.9525,-74.9927778,Maple Shade,NJ,sphere,20,Thought it was the North Star. Same brightness, color and size. Moved east to north in the NE sky about 60 deg. above the horizon. +1998-05-29,32.7833333,-96.8,Dallas,TX,disk,7,While inbound on Amer. Airlines Flt. 1409 from Atlanta to Dallas, just north of Dallas, @4ꯠ feet, I saw a small disk like object 2'x +1998-05-29,33.4483333,-112.0733333,Phoenix,AZ,oval,10800,Oval plastic looking craft, translucent, reflective, with numerous projections from the bottom. +1998-05-29,33.4483333,-112.0733333,Phoenix,AZ,cigar,145,The object appeared as a bright star in the northeastern sky from Chandler AZ +1998-05-29,33.4483333,-112.0733333,Phoenix,AZ,cigar,150,appaeared as bright star in NE sky, elevation hand+thumb, remain stationary for over two hours, whitish in color, appeared elongated, h +1999-05-29,38.1069444,-103.5097222,Cheraw,CO,triangle,1200,A phone call from my sister on her ay to work..... "Do you see that???,What the HELL is it???" +1999-05-29,36.175,-115.1363889,Las Vegas,NV,formation,180,I was listening to you on the Art Bell show when you had a recording of the woman of whom witnessed the sighting over the Monte Carlo C +1999-05-29,46.8902778,-124.1027778,Westport,WA,sphere,3600,I HAVE SEEN TO BE WHAT I BELIVE A UFO OF SOME SORT OVER THE COAST OF WASHINGTON. +2000-05-29,43.55,-96.7,Sioux Falls,SD,fireball,5,I am going out of my apartment reguraly to smoke cigaretes, and since I am working nights, I am a night owl you can say. I have seen me +2000-05-29,30.4380556,-84.2808333,Tallahassee,FL,disk,10800,A saucer that was turned vertical that flashed +2000-05-29,36.8252778,-119.7019444,Clovis,CA,light,900,Please respect my privacy. The object was bright and changed directions +2001-05-29,34.0522222,-118.2427778,Los Angeles,CA,teardrop,240,i heard a very strange humming sound. it woke me up so i opened my blinds and i looked outside into the feild and i saw a flashing tear +2001-05-29,35.2269444,-80.8433333,Charlotte,NC,sphere,300,Silver Orb traveling very slowly across sky +2001-05-29,33.8358333,-118.3397222,Torrance,CA,changing,900,I watched what I thought was an exhaust trail in the sky over Torrance as it moved, changed shape and color in the sky +2001-05-29,34.4466667,-85.9041667,Fyffe,AL,oval,900,Two UFO's were in front of our house toward the East. The one on the right was higher in the air. It looked to us as though they were c +2002-05-29,34.8697222,-111.7602778,Sedona,AZ,disk,360,Saucer shaped object sighted near Cathedral Rock in Sedona, Arizona in May񫺒. +2002-05-29,40.2794444,-86.5108333,Frankfort,IN,light,60,huge orange lights fading away then reappearing again 15 mins later +2002-05-29,37.5536111,-77.4605556,Richmond,VA,other,30,Star-like object that zig zaged, moved in different directions (diagonally), and had no constant speed. +2002-05-29,19.6255556,-155.0416667,Keaau,HI,sphere,10,Sphere of Light on the Island of Hawaii +2003-05-29,42.3708333,-71.1833333,Watertown,MA,cross,600,Lighted object hovers over Watertown Square. +2003-05-29,40.7141667,-74.0063889,New York City (Manhattan),NY,sphere,120,Silverly helium balloon-like object +2003-05-29,29.4238889,-98.4933333,San Antonio,TX,light,50,Orbital Sighting Not Satellite or Meteor +2003-05-29,33.4213889,-81.6858333,New Ellenton,SC,changing,180,CIrcular object witnessed. +2003-05-29,30.5080556,-97.6786111,Round Rock,TX,light,4,Blinking/fast moving light in clear sky +2003-05-29,40.5852778,-105.0838889,Fort Collins,CO,light,120,Saw bright light that would fade and reappear travelling very fast. +2004-05-29,33.1580556,-117.3497222,Carlsbad,CA,sphere,900,sphere with black bottom, mirrored top +2004-05-29,39.7530556,-105.0636111,Edgewater,CO,triangle,900,Four bright stationary objects observed to be hovering near a rainbow in daylight sky over Denver,Co. +2004-05-29,40.8813889,-74.1136111,Garfield,NJ,light,120,Bright Dime size white light moving N.W - S.E. fast and NO sound. +2004-05-29,38.7072222,-121.28,Citrus Heights,CA,unknown,1845,I saw a bright light traveling South by Southeast. As it headed south it gradually faded away. I didn't think much of it at first b +2004-05-29,39.535,-119.7516667,Sparks,NV,circle,40,Red light +2004-05-29,33.9686111,-112.7288889,Wickenburg,AZ,light,300,We were out camping and riding quads again over the Memorial day weekend. We were northeast of Wickenburg,Az about ten or twelve miles +2005-05-29,33.8358333,-118.3397222,Torrance,CA,other,900,OBJECT BLACKER THAN THE SKY HOVERING ABOVE GIANT POWER LINES +2005-05-29,39.0836111,-84.5086111,Covington,KY,chevron,180,Experimental Stealth craft over CVG airport? +2005-05-29,27.8658333,-82.3266667,Riverview,FL,unknown,15,moved really fast across the sky with no sound heard and the lights were white and flashed and they were not like those seen on an airp +2006-05-29,41.525,-88.0816667,Joliet,IL,oval,90,Amamolous Joliet, IL. Light +2006-05-29,35.3733333,-119.0177778,Bakersfield,CA,sphere,120,3 highly metallic, highly reflective spheres moving rapidly together, then quickly ascending out of sight +2006-05-29,38.2775,-85.7372222,Jeffersonville,IN,other,480,Multiple witness viewing of unusual object over major metropolitan area +2006-05-29,38.5161111,-90.2102778,Dupo,IL,cigar,120,Large dark cigar sighted over Dupo Illinois +2006-05-29,25.7738889,-80.1938889,Miami,FL,fireball,60,Red/White Ball seen from Passenger Plane, 4PM, over Miami Int. Airport, Memorial Day 06, approach. +2006-05-29,36.1819444,-81.2844444,Purlear,NC,other,180,4 Circling Bright Lights +2006-05-29,43.0480556,-76.1477778,Syracuse,NY,flash,4,A bright light that dimmed as it left the earths atmosphere +2007-05-29,28.5380556,-81.3794444,Orlando,FL,changing,60,black shape changing changing color and flying at a heigth of a three story building +2007-05-29,37.0058333,-121.5672222,Gilroy,CA,light,30,triangular 3 bright light craft flying silently near Gilroy, California +2007-05-29,41.9902778,-70.9755556,West Bridgewater,MA,unknown,1800,6 PEOPLE SIGHTING IN WEST BRIDGEWATER. ((NUFORC Note: May not be serious report?? PD)) +2007-05-29,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,180,Ball floating with lights around it then dimmed and flew and dissapeared. +2007-05-29,40.6225,-80.8380556,Salineville,OH,circle,10800,my husband thought he was seeing an airplane but it is no craft he knows of with roundshape flashing lights +2008-05-29,40.6913889,-73.8061111,Jamaica,NY,circle,3600,all heading in one direction .. so many of them but one of them was huge.. colors all around object... queens ny +2008-05-29,37.3394444,-121.8938889,San Jose,CA,sphere,120,Sphere UFO in high altiude moved slowly and stopped then moved again. I could notice that the movement of the craft was different from +2008-05-29,40.7002778,-73.5933333,Uniondale,NY,flash,60,High Altitude Flying Abnormally blinking object +2008-05-29,37.2152778,-93.2980556,Springfield,MO,cigar,300,Object entering atmosphere with fire trail, followed by three brightly pulsing objects +2008-05-29,29.7630556,-95.3630556,Houston,TX,sphere,20,05/29/2008 bule light headed SE. around 23:00 - 23:30 +2008-05-29,41.8072222,-91.4938889,Solon,IA,unknown,120,object hovering with two bright lights that made no noise and disappeared into a while puffy cloud type formation and glowed. +2008-05-29,36.0102778,-84.2697222,Oak Ridge,TN,formation,900,Lighting Formation over Clinch River in Oak Ridge, TN +2009-05-29,47.4958333,-121.7855556,North Bend,WA,disk,120,Shiny saucer seen over Mt, Si in North Bend, WA +2009-05-29,36.29,-83.5911111,Washburn,TN,other,180,planes without wings +2009-05-29,35.614444399999996,-88.8138889,Jackson,TN,disk,120,I was mowing the yard moving south and about to make a turn back to the north.A flash of light that was extremely bright got me looking +2009-05-29,35.9216667,-81.1766667,Taylorsville,NC,unknown,2700,one object red blinking lights, 8 objects white solid alternately blinking, starting in v formation then random 45 minutes duration +2009-05-29,36.1630556,-82.8311111,Greeneville,TN,light,120,Bright light flys over my head +2009-05-29,39.3772222,-76.54,Parkville,MD,disk,50,Baltimore, Maryland May 29񫺙 sphere that traveled from west to east. +2010-05-29,34.0005556,-118.1588889,Commerce,CA,circle,180,A bright like in the sky looked like a normal star then it started to get really bright and pulsating very fast and took off. +2010-05-29,26.1219444,-80.1436111,Fort Lauderdale,FL,unknown,180,Strange black object flies inland from ocean preceding sunrise +2010-05-29,44.98,-93.2636111,Minneapolis,MN,circle,300,A amber light with a surrounding halo was hovering above Wells Fargo Center for approximately 5 minutes on 3 separate occasions. It wo +2010-05-29,39.7136111,-82.5994444,Lancaster,OH,chevron,2,A white chevron UFO moving at high rate of speed in perfect visibilty. +2010-05-29,36.4072222,-105.5725,Taos,NM,formation,300,Two large craft that released a dozen smaller craft which dissapered as the larger craft kept flying +2010-05-29,36.4072222,-105.5725,Taos,NM,formation,600,2 larger craft that released a group of smaller craft. +2010-05-29,27.3361111,-82.5308333,Sarasota,FL,sphere,60,Large glowing red object moving slowly +2010-05-29,45.3575,-122.6055556,Oregon City,OR,triangle,180,Triangular light formation hovering over Oregon City/ West Linn area Oregon. +2010-05-29,41.0572222,-96.6444444,Ceresco,NE,fireball,300,A fireball behind a unknown shape craft over Ceresco Nebraska traveling at a high rate of speed. +2010-05-29,45.3575,-122.6055556,Oregon City,OR,light,300,Oregon City Sighting on 5/29/2010 - Approximatley 12 red-orange lights ascending in the east. +2010-05-29,28.2438889,-82.7194444,New Port Richey,FL,unknown,240,Slow moving, starlike object brightens and dims as it goes. +2010-05-29,41.6611111,-91.53,Iowa City,IA,changing,30,Iowa city group of lights +2010-05-29,36.9741667,-122.0297222,Santa Cruz,CA,light,120,Bright light hover over Santa Cruz, CA +2010-05-29,44.98,-93.2636111,Minneapolis,MN,circle,3600,UFO over mpls 5/28/2010. ((NUFORC Note: Possible sighting of Venus?? PD)) +2011-05-29,31.7586111,-106.4863889,El Paso,TX,oval,300,Strange Orb above El Paso. +2011-05-29,33.6888889,-78.8869444,Myrtle Beach,SC,oval,3600,((HOAX??)) The object was orangish in color with red lights hovering still above the ocean for about an hour and just faded away. +2011-05-29,36.7569444,-90.3927778,Poplar Bluff,MO,cone,265,UFO sighting in Poplar Bluff. +2011-05-29,38.0238889,-97.6694444,Burrton,KS,light,240,wow is ks a hot bed and were just not seeing it or hearing about it +2011-05-29,32.9311111,-96.4594444,Rockwall,TX,rectangle,180,Black slightly transparent rectangular UFO in Rockwall, Texas. +2011-05-29,37.6391667,-120.9958333,Modesto,CA,unknown,480,UFO making weird descent at a weird angle I've never seen before and I've seen all kinds of craft overhead for 30+ years, military/non. +2011-05-29,41.4902778,-72.2758333,Salem,CT,light,30,On May 29񫺛 about 9:00 pm, I look up and saw 2 Glowing lights like dull oblong candles moving side by side. +2011-05-29,26.2708333,-80.2708333,Coral Springs,FL,circle,120,This is the 2nd time we have seen these orange balls over the west part of coral springs. They hover together and move together and th +2011-05-29,41.5236111,-90.5775,Davenport,IA,triangle,9000,Triangle observed hovering over davenport near regional airport +2011-05-29,37.5483333,-121.9875,Fremont,CA,light,60,Lights that, at first glance looked like a plane that was going to crash. +2011-05-29,40.1597222,-74.0286111,Lake Como,NJ,circle,120,Ball of FIre over Lake Como, NJ +2011-05-29,42.4405556,-76.4969444,Ithaca,NY,formation,300,Three yellow-red 'orbs' changing formation in night sky +2011-05-29,40.5088889,-80.2394444,Moon,PA,light,2,Green Orb seen near Pitt International Airport +2011-05-29,34.9941667,-81.2422222,York,SC,light,6,green flames following orange ball +2012-05-29,39.4055556,-105.4727778,Bailey,CO,light,10,Object shined light on us after signaling SOS with a flashlight. +2012-05-29,47.2358333,-122.5491667,University Place,WA,sphere,420,Glowing orange white sphere gliding over the trees. +2012-05-29,37.6459,-93.0942,Buffalo,MO,triangle,45,Witnessed triangular shaped craft using clouds possibly as a cloaking device in the Ozarks. +2012-05-29,45.5236111,-122.675,Portland,OR,triangle,3,Black teardrop object above Portland, OR +2012-05-29,30.4211111,-87.2169444,Pensacola,FL,triangle,120,large dark trinagular object with many primatic lights on it. +2012-05-29,33.0183333,-80.1758333,Summerville,SC,fireball,60,Large, bright green light accomanied by a deep whirring noise +2012-05-29,45.6797222,-111.0377778,Bozeman,MT,sphere,360,Observer is familiar with night skies due to interest in astronomy and nightly airline traffic, and experienced with scientific observ +2012-05-29,46.2469444,-114.1594444,Hamilton,MT,light,15,Large intense white bright light in the late evening of May 29, 2012, near Hamilton, MT +2013-05-29,44.2619444,-88.4152778,Appleton,WI,circle,300,Nine orange fireballs +2013-05-29,33.9172222,-118.0111111,La Mirada,CA,flash,20,Bright flash over house +2013-05-29,33.8936111,-117.7263889,Chino Hills,CA,diamond,300,Three bright Yellow/Orange round spiked objects in diagonal line. +2013-05-29,38.3675,-76.7833333,Chaptico,MD,unknown,45,Saw black speck high in the clear sky which moved in a different direction, hovered, and then disappeared. +2013-05-29,40.8352778,-73.6241667,Glen Head,NY,circle,60,Orange reddish perfect circle flying across the sky at impossible speeds in a straight line. +2013-05-29,35.3991667,-78.8161111,Lillington,NC,unknown,3,Brilliant rear illumination as if there was a side by side Solar eclipse. Sound was like a turbo prop but speed was incredible. +2013-05-29,45.3194444,-93.2022222,East Bethel,MN,disk,3,Red and blue lights horizontally on saucer shape; rising straight up +2013-05-29,35.9555556,-80.0055556,High Point,NC,light,300,Standing in my backyard star gazing when i noticed one of the stars turned bright white and started moving NW. +2013-05-29,39.6711111,-76.8513889,Millers,MD,light,840,White Light Nortwest Baltimore County (Millers) +2013-05-29,35.3394444,-97.4863889,Moore,OK,triangle,172800,Multiple ufo sightings in the past 48 hours, detailed notes and drawings. +2013-05-29,42.4461111,-87.8327778,Zion,IL,light,10,Large bright light appeared for 10 seconds and then dissapeared. ((NUFORC Note: Witness formerly in U. S. Navy for 20 years. PD)) +2013-05-29,44.5263889,-109.0558333,Cody,WY,light,10,Bright white light/ resembling headlights extinguishing in seconds. +1959-05-30,39.1619444,-84.4569444,Cincinnati,OH,disk,3600,Large saucer shaped craft hanging motionless and silently over Cincinnati. 500 Lights On Object0: Yes +1962-05-30,32.9125,-96.6386111,Garland,TX,disk,600,THE OBJECT APPEARED TO COME DIRECTLY TO MY HOUSE, THEN LEFT WITH FAST ZIG ZAG SPEED BACK TO SPACE. +1963-05-30,38.4038889,-96.1813889,Emporia,KS,rectangle,60,I have witnessed many bizarre things in my life beginning at age 4.5, this is not the strangest. Try India. +1985-05-30,41.4458333,-74.4233333,Middletown,NY,rectangle,180,Rectangular object, 3 contiguous sections; the outer 2 sections a dark green, the inner a brighter lighter green. +1989-05-30,32.7152778,-117.1563889,San Diego,CA,other,180,Point Loma,Ca, Daughter and I was standing on our balcony, when a white object appeared out over ocean. We first thought it was a helic +1989-05-30,44.775,-117.8333333,Baker City,OR,unknown,900,Two humanoid shapes visible inside lit window of craft. +1991-05-30,32.3122222,-106.7777778,Las Cruces,NM,fireball,15,a hollow blue ball of lighting that turned to a fireball then took and umbrella shape and loomed for a second then disapeared. +1997-05-30,33.9236111,-84.8408333,Dallas,GA,sphere,4,yellow 'perfect' sphere crossed entire viewable sky in about 4 sec., flashing off/on intermittently +1997-05-30,32.1152778,-81.2472222,Pooler,GA,fireball,4,I was in the car at the gas station when a huge green fireball or light fly across the sky. It must have been going VERY fast. It flew +1998-05-30,42.3147222,-88.4486111,Woodstock,IL,cigar,20,I looked up in the sky and saw a green luminous cigar shaped craft. Right when I saw it it took off . A few seconds latr it came bac +1999-05-30,45.8405556,-119.2883333,Hermiston,OR,unknown,60,Extreme high UFO??? to me at least, moved like an airplane behaved like a shooting star. +1999-05-30,31.7586111,-106.4863889,El Paso,TX,sphere,900,15 minute event, daytime, partly cloudy, 5/30/1999, El Paso, Texas, 1:15P.M. +1999-05-30,33.8872222,-118.3516667,Lawndale,CA,circle,300,At Alondra Park I looked up at the sky because a small aircraft was flying overhead. I noticed 6 small circle shaped craft, not moving +1999-05-30,35.6266667,-120.69,Paso Robles,CA,cigar,600,the object was hovering in the sky and giving off a white and sum what orange glow.the object was in the western sky about 8 miles away +1999-05-30,42.085,-76.0541667,Vestal,NY,cylinder,300,Observed silvery tubular craft with bright white lights along the sides. No sound or vapor trail, no wings or tail structure. +1999-05-30,34.8788889,-96.4122222,Allen,OK,changing,18000,Saw 7 unidentified objects travelling from South-East to West over a period of 5 hours. +2000-05-30,34.61,-112.315,Prescott Valley,AZ,formation,600,Watched 3 bright objects travel across night sky in triangle formation with no noise. +2000-05-30,30.2283333,-88.0230556,Fort Morgan,AL,oval,5,Bright, Neon Green Oval shaped craft seen on the Alabama coast right after sunset. +2001-05-30,37.9772222,-122.2941667,El Sobrante,CA,disk,300,My dog woke me up at 3:20 AM, whining as though he had to go do his duty. It is extremely rare that he will wake me up. I got up, let t +2001-05-30,38.5816667,-121.4933333,Sacramento,CA,cylinder,180,Shiny cylindrical shaped object seen over Sacramento California +2001-05-30,41.85,-87.65,Chicago,IL,other,2,Curving streak of light zooming astonishly fast seen last night over Chicago, and I got it on tape! +2001-05-30,42.1275,-87.8288889,Northbrook,IL,flash,4,standing in the field west of wood oaks jr. highschool, I saw,in the south, 1ball of light (resembling the shape of a roman candle, but +2002-05-30,47.6063889,-122.3308333,Seattle,WA,oval,120,Large white sphere floating between clouds near Boeing field.. +2002-05-30,47.6063889,-122.3308333,Seattle,WA,other,20,Small Ascending Object Sighted in Mid-Morning Hours in Downtown Seattle, WA +2002-05-30,41.5569444,-83.6272222,Perrysburg,OH,other,120,Piggyback Jets? +2002-05-30,35.1338889,-94.5344444,Cameron,OK,triangle,180,Large, Low-Flying Object Sighted +2002-05-30,35.8680556,-83.5619444,Sevierville,TN,triangle,300,We saw eight triangle shaped ships and felt wind off the first four but heard nothing. +2002-05-30,36.1033333,-84.1319444,Clinton,TN,flash,1,The green light moved across the sky very rapidly. Was very bright. +2002-05-30,28.5555556,-82.4505556,Spring Hill,FL,triangle,300,Isosceles shape, large craft hovers over Spring Hill +2003-05-30,44.8622222,-93.5305556,Chanhassen,MN,light,30,Very bright light close to house +2003-05-30,33.1191667,-117.0855556,Escondido,CA,formation,5,was driving north on US 15 from poway during late rush hour noticed a group of small objects entering field of vision from the left at +2003-05-30,37.5483333,-121.9875,Fremont,CA,disk,30,The craft skipped across the sky very fast without making a sound. +2003-05-30,41.0469444,-95.7422222,Glenwood,IA,light,900,Strange lights running into eachother breaking off into more lights. +2003-05-30,41.6005556,-93.6088889,Des Moines,IA,sphere,300,3 spheres of multi-colors circled and shot straight up out of site. +2004-05-30,33.5725,-84.4133333,Riverdale,GA,light,1,Silent bright blue light rapidly decending towards ground. +2004-05-30,33.5016667,-117.6616667,San Juan Capistrano,CA,sphere,1800,sali a sacar basura fuera de mi hogar para depositarla en los contenedores y al regresar a la casa observe que en el cielo habian mucha +2004-05-30,42.1486111,-72.6083333,Chicopee,MA,disk,60,White disk flying over park +2004-05-30,34.8697222,-111.7602778,Sedona,AZ,sphere,60,Bubble visitor(s) in Sedona? +2004-05-30,41.8083333,-71.3375,Seekonk,MA,unknown,45,Two objects, only saw reflection. +2004-05-30,34.8833333,-82.7075,Pickens,SC,light,60,Blue light stricking in the sky. +2004-05-30,35.0427778,-120.475,Nipomo,CA,fireball,1200,As I was driving in a N dir. on Hwy. 101 from my home in Santa Maria, CA ((NUFORC Note: Contrail in sunlight. PD)) +2004-05-30,34.0966667,-117.7188889,Claremont,CA,flash,3600,A very slowly-moving star-like object flickering light blue and red and hovering low above the horizon. +2004-05-30,33.4483333,-112.0733333,West Phoenix,AZ,circle,1200,star like object that would appear than disppear within a few minutes +2005-05-30,33.8444444,-117.7763889,Anaheim Hills,CA,light,1620,Very slow almost hovering lights that seemed like aircraft lights but only moved maybe a mile in 27 minutes in an odd shaped path +2005-05-30,36.1988889,-115.1166667,North Las Vegas,NV,sphere,21600,3 White spheres in Las Vegas on memorial day. +2005-05-30,40.6686111,-74.1147222,Bayonne,NJ,changing,120,Green object on memorial day in the NJ skies +2005-05-30,31.0786111,-97.6052778,Nolanville,TX,disk,60,Small, off metallic orange saucer +2005-05-30,32.2216667,-110.9258333,Tucson,AZ,other,7200,((NUFORC Note: Likely sighting of Sirius. PD)) Moving star-like objects and Red Flashing Lights. +2006-05-30,36.1658333,-86.7844444,Nashville,TN,disk,10,White, flashing object, looked like an airplane, but traveling way too fast. +2006-05-30,37.2508333,-92.5102778,Hartville,MO,sphere,600,Strobing lights and "gateway" with sphere/disk shaped craft +2007-05-30,34.8697222,-111.7602778,Sedona,AZ,cylinder,2,30/05/07 sedona AZ 1200 hrs, clinder red and white, seen for seconds, 2 pictures taken +2007-05-30,40.7141667,-74.0063889,New York City (Brooklyn),NY,unknown,180,I was walking down the street and it was such a beautiful day, not a cloud in sight. Blue skies and everything!!! I looked in the sky a +2007-05-30,45.5236111,-122.675,Portland,OR,sphere,1800,2 very small white spheres hovered in same general area for 30 minutes +2007-05-30,34.7136111,-77.2455556,Hubert,NC,sphere,60,2 blinking lights observed from back porch for 1 minute duration. No sound. Dogs barking. +2007-05-30,32.8338889,-109.7069444,Safford,AZ,fireball,300,Fire ball in sky over Safford Arizona +2007-05-30,33.7455556,-117.8669444,Santa Ana,CA,rectangle,20,Rectangular light turning into a star, comming back, and disappearing. +2007-05-30,35.0844444,-106.6505556,Albuquerque,NM,disk,2700,Multi colored object(s) and one object emitting white light only in the Far West Mesa area +2007-05-30,40.8325,-115.7622222,Elko,NV,sphere,1209600,Two VERY bright , transluscent spheres over Nevada +2007-05-30,27.4952778,-81.4411111,Sebring,FL,circle,4,three orange lights like fireworks but they were deffinetly werent fireworks +2008-05-30,30.8461111,-93.2888889,Deridder,LA,light,60,There was no sound. +2008-05-30,40.1002778,-79.5872222,Scottdale,PA,light,60,Two large balls of light over a highway or above some fields. +2008-05-30,34.0983333,-118.3258333,Hollywood,CA,triangle,60,UFO in Hollywood. +2008-05-30,33.6188889,-117.9280556,Newport Beach,CA,disk,1200,Flying saucer with lights hovering above Newport Coast +2008-05-30,43.073055600000004,-89.4011111,Madison,WI,other,600,A black, parallelogram shaped object was seen on May 30, 2008. +2008-05-30,30.4211111,-87.2169444,Pensacola,FL,disk,180,Amber lights in formation (flying disk?) over I-10, headed towards Escambia Bay. +2008-05-30,29.7630556,-95.3630556,Houston,TX,sphere,2700,Tonight I and my little girl saw what appeared to be flying orbs of light over Houston. The direction of each craft was had no apparent +2008-05-30,37.2138889,-105.5638889,San Acacio,CO,cylinder,660,The lights where spaced in a perfect triangle +2008-05-30,29.9833333,-94.2025,Cheek,TX,light,8,bright light in the sky +2008-05-30,47.8569444,-121.6958333,Gold Bar,WA,unknown,300,The largest and brightest light I have ever seen in the sky with the exception of the sun (brighter than the moon but not as large). +2008-05-30,27.0438889,-82.2361111,North Port,FL,disk,30,Disc-like object with blinking red and green lights hovering over North Port, Fl +2008-05-30,47.4736111,-94.88,Bemidji,MN,other,180,Bright white light viewed in Hubbard county going faster then satellite's +2009-05-30,39.6836111,-75.75,Newark,DE,light,240,White haze/light moving at amazing speeds. Far greater than any known military or commercial aircraft +2009-05-30,42.4152778,-74.0225,Greenville,NY,unknown,10,two solid white objects close together in the sky...went from stationary to out of sight faster than I've ever seen.... +2009-05-30,39.7902778,-85.6127778,Charlottesville,IN,sphere,300,Silver Sphere in the Sky +2009-05-30,39.5791667,-104.8763889,Centennial,CO,disk,45,This sighting occurred in Centennial CO, on 05.30.09 @ 16:48. I am located off of Picadilly St. & Netherland St., just north of Smoky H +2009-05-30,41.9219444,-71.55,Smithfield,RI,chevron,600,Chevron shaped craft filmed in daylight. +2009-05-30,40.2455556,-74.8463889,Yardley,PA,oval,120,shiny silvery fast moving silent object seen in daylight +2009-05-30,39.0483333,-95.6777778,Topeka,KS,teardrop,2,strange object in the sky +2009-05-30,36.9111111,-80.3202778,Floyd,VA,sphere,2,Light in sky that moved and looked like a satellite but stopped completely still. +2009-05-30,40.0725,-74.7211111,Columbus,NJ,other,180,First time for everything ! +2009-05-30,35.2225,-97.4391667,Norman,OK,circle,600,Orange and Red light above Norman Oklahoma. +2009-05-30,42.1291667,-80.0852778,Erie,PA,fireball,120,Orange orb/fireball seen across sky. +2009-05-30,28.46,-98.1822222,Three Rivers,TX,light,180,This is the same craft I saw about 2 weeks ago (bright light in west sky, traveling west to east, altitude 12000 or less, travels no no +2009-05-30,41.47,-87.6363889,Steger,IL,formation,600,eleven cylinder objects seen over chicago suburbs in illinois +2010-05-30,36.7433333,-84.1597222,Williamsburg (2 Miles North Of; I-75),KY,unknown,5,Sudden appearance & equally abrupt disappearance of illuminated & extremely fast UFO flying in the night sky above I-75 South. +2010-05-30,38.7633333,-121.1627778,Granite Bay,CA,changing,600,Strange color and shape changing light over Northern California +2010-05-30,43.9747222,-75.9111111,Watertown,NY,circle,7200,Very fast moving lights that showed a circular formation; red and sometimes orange and white. ((NUFORC Note: Star? PD)) +2010-05-30,47.6063889,-122.3308333,Seattle,WA,rectangle,120,I was driving North on I-5 about to take the 405 exit, and over the hills/treetops I saw a dark gray object that was the shape of a lar +2010-05-30,36.175,-115.1363889,Las Vegas,NV,unknown,1800,Object with no contrails, fly erratically over Las Vegas Valley. +2010-05-30,40.32,-75.6105556,Gilbertsville,PA,unknown,600,Glowing object over Gilbertsville PA +2010-05-30,40.5247222,-111.8630556,Draper,UT,circle,2700,Two bright circles soaring independently through the sky, one remained bright green while the other changed from white to blue to red +2010-05-30,42.7875,-86.1088889,Holland,MI,teardrop,30,triangular formation of lights +2011-05-30,39.4580556,-104.8955556,Castle Pines,CO,light,900,One UFO with 2 lights and swirl of light below seen moving across the sky over Denver +2011-05-30,38.35,-104.7222222,Pueblo West,CO,triangle,600,two bright white lights with a translucent veil traveled from south west to North horizon just before dawn. +2011-05-30,40.5866667,-122.3905556,Redding,CA,disk,60,UFO in a lighting storm +2011-05-30,33.6602778,-117.9983333,Huntington Beach,CA,rectangle,1200,3 rectangular light-colored objects observed while driving north on 405 +2011-05-30,40.5141667,-112.0322222,Herriman,UT,fireball,300,Orange "flame" light over Herriman, UT +2011-05-30,32.7091667,-96.0080556,Wills Point,TX,unknown,120,Looked as if a door opened and closed and something left that location then dissapeared +2011-05-30,30.2669444,-97.7427778,Austin,TX,light,600,light s over austin texas 05/30/2011 have pics too +2011-05-30,39.4494444,-75.7166667,Middletown,DE,light,10,It was a meteor like object that moved at angles and no curves at a high rate of speed. +2012-05-30,39.6411111,-85.1411111,Connersville,IN,fireball,4,It looked to appear as a shooting star. This was closer and a little bigger than the shooting stars I've witnessed in my lifetime. It m +2012-05-30,44.1969444,-72.5025,Barre,VT,fireball,240,1 Orange fireball not moving +2012-05-30,33.4147222,-111.9086111,Tempe,AZ,unknown,1,Object with fiery tail shot off into the sky +2012-05-30,33.5172222,-82.0758333,Martinez,GA,cigar,180,My son and I were in our backyard and saw a long, cigar-shaped object with no wings, sound,or exhaust fly through the sky like a plane. +2012-05-30,40.8666667,-124.0816667,Arcata,CA,light,1800,red and green lights that flash and move quickly in all directions, then stationary. ((NUFORC Note: Twinkling star. PD)) +2012-05-30,27.0994444,-82.4544444,Venice,FL,cylinder,60,3 shiny cylindrical objects, 5 secs apart, flying N&gt;S, over the Gulf of Mexico near Venice, Fl. +2012-05-30,41.8183333,-78.5577778,Mckean,PA,fireball,60,Balls of fire seen in evening sky, over Erie Pa area. +2012-05-30,34.2180556,-80.2486111,Bishopville,SC,changing,600,Multi colored strobe array pulling away from a VERY bright white light. +2012-05-30,30.1577778,-95.4891667,The Woodlands,TX,formation,15,Three lights moving at the same rate of speed from west to east across the sky while dancing around each other. the lights moved about +2012-05-30,38.545,-121.7394444,Davis,CA,fireball,300,3 bright orange balls over Davis Ca +2012-05-30,38.2716667,-84.6863889,Stamping Ground,KY,light,360,Large bright white light in Stamping Ground, Ky followed by about five smaller ones. +2013-05-30,33.3527778,-111.7883333,Gilbert,AZ,circle,5,Went swimming and looked up at a airliner head east to west out of no were came a round silver object heading west to east past over th +2013-05-30,37.775,-122.4183333,San Francisco,CA,cylinder,3,High altitude rod or cylinder shaped object with white blinking lights observed in SF. +2013-05-30,40.3294444,-76.5155556,Annville,PA,other,240,Floating flamelike object meanders across the sky +2013-05-30,42.3125,-72.2083333,Gilbertville,MA,fireball,3600,Sharp smooth movments pulsing colors and silent +2013-05-30,33.7488889,-84.3880556,Atlanta,GA,circle,60,Very bright orange glowing object noted Atlanta, Georgia airport area. +2013-05-30,38.5816667,-121.4933333,Sacramento,CA,fireball,300,6-7 Orange/red fireballs seen over Sacramento. +2013-05-30,30.4063889,-87.6836111,Foley,AL,light,1800,3 Bright orange orbs in Foley, AL. +2013-05-30,39.3836111,-76.4325,White Marsh,MD,light,240,Green strobing light over Walmart in white marsh… +2013-05-30,39.3638889,-76.4525,Nottingham,MD,unknown,120,There was no tail to the objects and they were all moving in unison wi th each other, +2013-05-30,39.3638889,-76.4525,Nottingham,MD,unknown,120,There was no tail to the objects and they were all moving in unison wi th each other. +2013-05-30,37.9241667,-122.3880556,Point Richmond,CA,triangle,5,1 person witnesses a dark triangular UFO with lights in a star-like cluster that crosses 1/3 of sky in about 5 seconds. +2013-05-30,41.5386111,-75.9469444,Tunkhannock (Lake Carey),PA,unknown,30,Strange Three Tone Sound, above home and lake, Tv and Security monitors dim and power outage. +2013-05-30,45.5236111,-122.675,Portland,OR,unknown,30,Light seen in northern sky, did not behave like an aircraft, then disappeared. Happened twice. +2013-05-30,39.2258333,-82.0386111,Shade,OH,oval,7,Luminescent green and yellow object over Pratts Fork, Ohio +2013-05-30,38.3497222,-81.6327778,Charleston,WV,triangle,10,Blue Triangle over WV. +1965-05-31,40.6805556,-122.3697222,Shasta Lake,CA,disk,3600,silver disk craft approx 40ft diam. flys over school kids and teachersouside for school meeting and lands in back of school. +1983-05-31,43.2341667,-86.2483333,Muskegon County (Northern Part),MI,disk,1800,We observed a large, round object "hovering" over the highway in late may of 1983. +1991-05-31,42.2722222,-84.9633333,Marshall,MI,disk,15,Very low-flying, metallic saucer-shaped craft with multi-colored panels by major Michigan roadway in daytime. +1995-05-31,40.3977778,-105.0744444,Loveland,CO,other,30,NORAD Bulletin board says "800 unknowns tracked last year" +1998-05-31,32.2216667,-110.9258333,Tucson (28 Miles North Of, 233 Mm I-10),AZ,cone,300,Was driving south on I-10, fire and smoke rings coming off of object. A cone shaped object slowed down 400 feet next to the left side +1998-05-31,40.3033333,-87.9466667,Penfield,IL,disk,600,We seen two flying objects standing still in the sky about 30 feet in the air. They began to come straight down then disappeared. +1998-05-31,45.6388889,-122.6602778,Vancouver,WA,triangle,60,it was past dusk ant the oject was flying northwest to south east tward th portland area +1999-05-31,38.8338889,-104.8208333,Colorado Springs,CO,cylinder,600,Was heading to the store at 1900 hrs saw a non plane like craft going North to South glowing whiteish observed with Bino's def. not a p +1999-05-31,40.5675,-89.6405556,Pekin,IL,light,120,bluish white light moving to the east,faster than a normal aircraft,in a straight horizontal path,no flashing lights,observed light mov +2000-05-31,42.3583333,-71.0602778,Boston,MA,fireball,1,At 23:50 EST 5/31/00 I was standing near 95 Summer St. near the corner of Devonshire St. in Downtown Boston, looking southeast down Sum +2001-05-31,38.8133333,-82.7269444,South Webster,OH,light,900,Lights in the sky, random movement, color of a high sodium light in the northern sky. +2001-05-31,31.5394444,-110.7555556,Patagonia,AZ,circle,180,The object was very bright, brighter and much larger than Venus, round like a ball. +2001-05-31,40.31,-75.1302778,Doylestown,PA,other,5,Jettisoned star-like object falls, hovers, moves laterally +2002-05-31,40.2066667,-75.1,Warminster,PA,light,2400,A friend of mine in Warminster PA last night at 910pm while online stated that he was seeing from his window two unidentified phenomeno +2002-05-31,32.8138889,-96.9486111,Irving,TX,formation,300,Four lights maneuvering high in the sky and departing a a high rate of speed. +2002-05-31,33.9830556,-118.0958333,Pico Rivera,CA,light,1800,On the evening my daughter and witnessed two orange flying objects and one released a orange balls of light to earth that faded. +2002-05-31,44.0216667,-92.4697222,Rochester,MN,light,60,There were 2 erratic moving lights in the sky. +2003-05-31,42.1947222,-122.7083333,Ashland,OR,changing,1800,Ground-moving small black boomerang shaped unidentified object observed with witnesses in broad daylight near Ashland, Or. +2003-05-31,33.4483333,-112.0733333,Phoenix,AZ,cigar,10,Close encounter of the third kind +2003-05-31,33.6888889,-78.8869444,Myrtle Beach,SC,circle,900,Circular white disc, stationary high in sky during thunderbird airshow. with see through center and segmented outer edge +2003-05-31,41.2736111,-82.8416667,Bellevue,OH,light,45,A cloud lit up and changed to different colors in the middle of the night +2004-05-31,41.2794444,-72.8155556,Branford,CT,light,45,Star became extremely bright, then dim again. Then moved off to the South. ((NUFORC Note: Possible Iridium satellite flare. PD)) +2004-05-31,39.7047222,-105.0808333,Lakewood,CO,disk,20,Four objects dissapear before our eyes. +2004-05-31,40.8508333,-73.9705556,Fort Lee,NJ,oval,60,Right after the 5 US military jet planes passing by, Oval shaped, black, heavy-like, 70 degree tilted object was heading to north west +2004-05-31,37.3394444,-121.8938889,San Jose,CA,sphere,60,Round black object with rainbow-halo seen in San Jose sky after May 17, 2004 +2004-05-31,37.6391667,-120.9958333,Modesto,CA,unknown,120,'Bolt' from Canis Major-complete stop at Sextans;Briliant object leaves no contrail /debris Witnessed by 3-CALIFORNIA,USA +2004-05-31,34.9022222,-110.1575,Holbrook,AZ,sphere,8,This planet started to move very fast and then straight up until it got smaller and then vanished +2004-05-31,37.9841667,-120.3811111,Sonora,CA,triangle,300,Triangular Object with Lights over Lyons Bald Mountain in Sonora, CA Caught on Video +2004-05-31,41.2586111,-95.9375,Omaha,NE,unknown,600,Possible Explination for Lincon, and Omaha, NE sightings +2004-05-31,30.4505556,-91.1544444,Baton Rouge,LA,circle,90,I was in Louisiana on a business trip. Looking up to check the weather/cloud coverage I noticed an odd shape just floating through the +2004-05-31,39.0997222,-94.5783333,Kansas City,MO,triangle,30,It was triangle in shape with bright white lights on the vertices of th triangle with a red glowing light in the center of the triange. +2004-05-31,35.9605556,-83.9208333,Knoxville,TN,sphere,1200,Bright object observed slowly moving to west when another object (with red glow) was emitted and departed at a high rate of speed. +2004-05-31,35.9605556,-83.9208333,Knoxville,TN,sphere,1200,MUFON/TENNESSEE REPORT: Follow-up on Knoxville sighting +2005-05-31,32.4458333,-95.7036111,Ben Wheeler,TX,light,3600,Loud persistent humming accompanied by shape of light with no source creating the light. +2005-05-31,44.9808333,-85.715,Lake Leelanau,MI,light,300,Bright blue light over Lake Leelanau +2005-05-31,33.6888889,-78.8869444,Myrtle Beach,SC,light,5,UFO was a stationary beam of light that seemed to leave a light trail as it accelerated. At first I didn't really notice it because it +2005-05-31,45.0097222,-93.3488889,Golden Valley,MN,unknown,180,NOT a sattelite. +2005-05-31,41.9672222,-87.8075,Harwood Heights,IL,light,5,On may 31 2005 at about 10:30 pm I saw very fast moving light .It was flying across the "Big Dipper" constellation,making two circles w +2006-05-31,33.7222222,-116.3736111,Palm Desert,CA,light,600,Four Green lights in a line moving from South to North +2007-05-31,45.3325,-93.7458333,Big Lake,MN,sphere,120,orange/amberish orb sighted on the ground in the early morning hours +2007-05-31,30.3655556,-88.5561111,Pascagoula,MS,fireball,300,3 possible ufos over ocean? +2007-05-31,47.7625,-122.2041667,Bothell,WA,disk,60,After hearing that many photographs are taken and the object is never seen until the picture is uploaded I decided to get my camera and +2007-05-31,41.865,-80.79,Ashtabula,OH,circle,900,a bright light floating and then disappearing when noticed +2007-05-31,42.3313889,-83.0458333,Detroit,MI,fireball,300,Was talking with friends when we saw two fireballs flying accross the sky in southwest detroit. Lasted approx. 5 min. +2007-05-31,37.1288889,-84.0833333,London,KY,light,2,Extremely high speed lights in night sky. +2007-05-31,37.2152778,-93.2980556,Springfield,MO,egg,3600,MISSOURI INVESTIGATORS GROUP Report: Brightly lit object on May 31st seen flying east over SW Missouri around 11pm is the Sanyo blimp. +2007-06-01,37.2152778,-93.2980556,Springfield,MO,disk,1800,north on 65 hwy bright floating object moving east towards Rolla +2008-05-31,39.2997222,-75.605,Smyrna,DE,triangle,5,Large triangular craft with three bright lights. +2008-05-31,45.0791667,-93.1469444,Shoreview,MN,circle,10,bright light moved erratically across minnesota sky +2008-05-31,34.0336111,-117.0422222,Yucaipa,CA,circle,180,Two orange star looking objects in yucaipa, ca seen late at night were unexplain able. +2008-05-31,40.5852778,-105.0838889,Fort Collins,CO,triangle,300,LARGE DARK-GREY TRIANGULAR OBJECT W/ SINGLE WHITE STROBE seen south of Fort Collins +2008-05-31,26.6155556,-80.0572222,Lake Worth,FL,other,120,silver disc in the sky +2008-05-31,33.8894444,-118.1588889,Paramount,CA,cone,420,Day time sighting of bizarre cone shaped object seen hovering aloft. +2008-05-31,40.6936111,-89.5888889,Peoria,IL,other,360,An item moving at an incredible speed in a straight line with no sound. +2008-05-31,37.9444444,-87.4052778,Newburgh,IN,light,300,Five or more people saw a string of bright red lights hoving in the sky that disappeared +2008-05-31,40.3294444,-104.8547222,Milliken,CO,light,10,Bright, Flashing Flying Light Near Milliken, CO +2009-05-31,47.0380556,-122.8994444,Olympia,WA,light,60,two lights slowly hovering southward across the night sky that dimmed until they dissappeared +2009-05-31,38.2541667,-85.7594444,Louisville,KY,sphere,60,white sphere three other spheres seperated from first sphere. +2009-05-31,33.7938889,-84.6605556,Lithia Springs,GA,sphere,600,Sphere and green lit but unknown shape object +2009-05-31,41.2230556,-111.9730556,Ogden,UT,sphere,300,Spherical orb over the mountains in North Ogden Utah +2009-05-31,39.7391667,-104.9841667,Denver,CO,disk,120,Craft plummeted over Denver, CO, flashing orange and blue/green, flipping end over end, suddenly ascended rapidly out of sight +2009-05-31,35.8177778,-79.8033333,Randleman,NC,light,60,Bright light split into two dim lights then disappeared. +2009-05-31,47.8555556,-121.9697222,Monroe,WA,oval,900,Strange light seen hovering around the moon. +2009-05-31,30.2352778,-92.9213889,Lacassine,LA,sphere,300,big bright light flashing at tree level about 1 mile in front of me +2009-05-31,39.1619444,-84.4569444,Cincinnati (Milford),OH,sphere,120,My wife and I pulled onto shoulder of highway to observing a hovering sphere of light for 2 minutes! See long description. +2009-05-31,41.1569444,-83.4169444,Fostoria,OH,triangle,20,first sighting was 8 lights forming a V formation then vanished. Second sighting was 4 lights (V shaped again) +2009-05-31,40.4841667,-88.9936111,Bloomington,IL,light,10,slowly moving star like object +2010-05-31,38.2097222,-84.2530556,Paris,KY,light,4,very bright flashing light streaking over Paris KY, disappeared before reaching horizon +2010-05-31,42.2630556,-88.0038889,Mundelein,IL,unknown,120,Around 1:15 a.m. I witness a bright light over some clouds. At first looked like lightning but then it happen again same place or dist +2010-05-31,40.801944399999996,-72.8413889,Mastic,NY,circle,3,Green light with white outline zooming past and disapearing +2010-05-31,34.1705556,-118.8366667,Thousand Oaks,CA,circle,600,The first sighting was about 11:00am. The object appeared white, not shiny. Altitude, maybe around 5000 feet and very slowly moving to +2010-05-31,27.9472222,-82.4586111,Tampa,FL,cylinder,300,just a black cylinder that hovers with no sound. and a helicopter near by. +2010-05-31,35.0844444,-106.6505556,Albuquerque,NM,other,1800,lights shooting across NM sky. +2010-05-31,42.0372222,-88.2811111,Elgin,IL,fireball,300,Twinkling, firely light surrounded by or in front a red circular shape moved across the sky before hovering and dissappearing. +2010-05-31,42.0372222,-88.2811111,Elgin,IL,sphere,180,Firey orange orb seen in sky over Elgin, Illinois +2011-05-31,39.0997222,-94.5783333,Kansas City,MO,circle,5,UFO's spotted over kansas city mo +2011-05-31,29.0488889,-82.4611111,Dunnellon,FL,light,180,Two white dots whit lights shinning down over Dunnellon, FL. +2011-05-31,38.9244444,-105.0061111,Chipita Park,CO,oval,180,Driving west on Colorado Hy 24 near Chipita Park, Colorado. Talking on cell phone when me and my two kids noticed and aircraft to the n +2011-05-31,34.8038889,-81.2394444,Lowrys,SC,light,180,a light same speed as visible satellite moving north dims then gets brighter and dims repeatedly +2011-05-31,27.7705556,-82.6794444,Saint Petersburg,FL,flash,2,In a very clear night sky at 22:15 a light grew very bright overhead and then dissapeared. ((NUFORC Note: Iridium satellite?? PD)) +2011-05-31,41.7625,-70.7222222,Wareham,MA,light,120,near miss terrestrial objects. ((NUFORC Note: Possible hoax; date is flawed. PD)) +2011-05-31,39.7686111,-94.8463889,St. Joseph,MO,circle,60,multiple color UFO's over St. Joseph, MO +2012-05-31,35.9938889,-78.8988889,Durham,NC,light,140,UFO Sighting at 10 pm on Shannon rd. facing North/NE toward 15/501 The Lights first appeared insanely bright spinning counter clock w +2012-05-31,40.3013889,-79.5391667,Greensburg,PA,light,180,Star-like light suddenly vanishes after a few minutes +2013-05-31,40.5583333,-85.6591667,Marion,IN,egg,600,It looked like a small fire ball hovering over the outskirts of the ciity and moved very slow. +2013-05-31,41.4994444,-81.6955556,Cleveland,OH,oval,5,Silver object above Cleveland. +2013-05-31,36.0397222,-114.9811111,Henderson,NV,circle,20,It was 9 pm on 5 / 31 /13 when this red circular probe went over us ( we were walking ) it was going side to side and the light stayed +2013-05-31,42.7441667,-73.6919444,Green Island,NY,triangle,4,Triangle Shaped Object Glowing Orange/Yellow And Completely Silent - Object Very Large & Very Fast. +2013-05-31,44.5191667,-88.0197222,Green Bay,WI,fireball,300,Pulsing fireball object Green Bay, Wiscosin - W/NW over Pamperin Park. +2013-05-31,28.0183333,-82.1130556,Plant City,FL,other,15,Heard very very fast militiary type aircraft approaching from west to east and then the sound traveled verticle. Nothing visible. +2013-05-31,40.3980556,-77.0233333,Duncannon,PA,disk,1200,Light dims to show disk along Appalachian in Pa +2013-05-31,38.5816667,-121.4933333,Sacramento,CA,fireball,300,Orange red glowing orbs chaging patterns and directions then zapping out +2013-05-31,34.9494444,-81.9322222,Spartanburg,SC,circle,240,((NUFORC Note: Witnesses elect to submit no meaningful information. PD)) +2013-05-31,42.3441667,-79.3097222,Cassadaga,NY,triangle,480,We had 2 sightings of multiple craft within .25 mi area, within a span of one minute, 2 very different types of craft. +2013-05-31,40.3408333,-76.4116667,Lebanon,PA,circle,300,Bright low orange lights traveling from south to north +2013-05-31,33.5458333,-82.3161111,Appling,GA,circle,20,Two objects seem to change color above Appling,GA, seen by 2 civilians. +2013-05-31,36.7477778,-119.7713889,Fresno,CA,light,900,Formation of 6 orange orbs flying over fresno ca may 31st 2013 +2013-05-31,35.2619444,-81.1875,Gastonia,NC,fireball,300,Orange fiery light that flickered then disappeared. +2013-05-31,30.2669444,-97.7427778,Austin,TX,sphere,1800,100+ solid white objects/lights traveling SE to NW at 500-1500 feet overhead. +2013-05-31,30.4169444,-97.9288889,Hudson Bend,TX,unknown,1800,We we saw was unexplainable, but amazing and scary at the same time. +2013-05-31,44.8508333,-93.7866667,Waconia,MN,sphere,300,String of lights in the night sky! +2013-05-31,45.6388889,-122.6602778,Vancouver,WA,circle,300,Green/blue circle seen in Vancouver, Washington +2013-05-31,37.0583333,-120.8488889,Los Banos (Near; On Interstate 5),CA,circle,180,We saw three spherical-shaped, bright white lights erratically flying over a field adjacent to interstate 5 in approximately Los Banos, +2013-05-31,40.9008333,-73.3436111,Northport,NY,fireball,60,Oval fireball moving in straight line no sound no jet stream. +2013-05-31,38.0525,-84.73,Versailles,KY,triangle,300,Fireball in sky followed by large craft well lite . +2013-06-01,37.7397222,-121.4241667,Tracy,CA,fireball,300,We seen 6 red balls of fire floating thru the sky at 9:10 pm first 3 separate then the other 3 close together no sound at all really we +1995-05-03,42.9,-78.4922222,Alden,NY,light,1200,I was just about to goto bed and I looked out my window for some strange reason and I looked to the south and I saw this very bright li +1997-05-03,42.2966667,-89.6211111,Freeport,IL,triangle,600,Bright triangular object, slow speed and low sound, spotlight appeared on our group, 4 other objects seen on horizon. +1997-05-03,29.6158333,-95.5575,Stafford,TX,other,10,Through telescope,observed amoeba or translucent object containing lights of blue red and white.Seemed distorted though could not see t +1997-05-03,42.2966667,-89.6211111,Freeport,IL,triangle,300,Huge, black,silent, triangular craft seen moving low over house with 2 witnesses present. What was this thing? +1998-05-03,36.175,-115.1363889,Las Vegas,NV,triangle,180,Large dark triangle hovers, then moves off silently +1999-05-03,35.4675,-97.5161111,Oklahoma City,OK,flash,2,During the okla tornadoes, a local news helicopter was videotaping the approaching tornado,and after about two months,the local news st +1999-05-03,38.4405556,-122.7133333,Santa Rosa,CA,triangle,7,At approx. 9:40 pm 5/3/99, I was looking to the NW. sky, when I saw a perfect isocolese triangle with a large dimmly lit , amber light +2000-05-03,40.9636111,-91.5577778,Mt. Pleasant,IA,light,300,One craft crossed in front of an airplane that was flying at the same time. The three others were verry high up. All were visible with +2000-05-03,33.6305556,-112.3325,Surprise,AZ,light,2700,On the Night of May 3, 2000, Myself and 2 witnesses observed a light in the northwest sky that appeared to pendullum to the east and we +2000-05-03,41.5052778,-82.0283333,Avon Lake,OH,other,120,slaughterhouse 5 revisited +2000-05-03,33.6305556,-112.3325,Surprise (Witnessed From),AZ,unknown,2700,I was the first to see the unidentified object at approximately 22:00 hours PM. The "object" flickered brightly in four distinct color +2001-05-03,41.4044444,-80.3913889,Greenville,PA,disk,15,On the 3rd of May, 2001, I observed a shiny, silver object in the sky at an approximate 45 degree angle. The object appeared to be movi +2001-05-03,34.0194444,-118.4902778,Santa Monica,CA,formation,60,Formation of lights that looked like a flock of birds flying in formation in the shape of a large bird or eagle +2001-05-03,43.0388889,-87.9063889,Milwaukee,WI,cylinder,240,Can shaped ufo makes low-pich noise +2002-05-03,29.4238889,-98.4933333,San Antonio,TX,light,3,I was standing outside of a friends house. Looking above a house on the horizon. In the sky I saw a light which resembled a star. It wa +2002-05-03,34.3438889,-108.495,Quemado,NM,teardrop,0.5,A bright silver tiny object was observed descending at an unusual rate of speed on a 45 degree angle. +2003-05-03,40.7205556,-76.1913889,St. Clair (Outside Of),PA,light,5,Bright light hovers then shoots across sky at high speed +2003-05-03,32.8341667,-97.2286111,North Richland Hills (Smithfield Area),TX,oval,300,I saw a black oval shaped craft hovering over a pasture and flashing lights near my home. +2003-05-03,41.5936111,-87.6947222,Markham,IL,cigar,300,White object travels through morning sky. +2003-05-03,48.5344444,-123.0158333,Friday Harbor,WA,oval,15,It swooped down from the sky, dropped an object, and sped back up into the clouds. +2003-05-03,33.8302778,-116.5444444,Palm Springs,CA,sphere,120,Sphere paces airliner. +2003-05-03,33.8302778,-116.5444444,Palm Springs,CA,sphere,300,Multiple sightings of groups of small reflective silver spheres. +2003-05-03,40.805,-81.9352778,Wooster,OH,unknown,120,a moving dark cloud,hovers,fades in and out,small visible opening in sky, orange color object appears,ballon material look.disappears.. +2003-05-03,37.3280556,-87.4988889,Madisonville,KY,light,5400,Saw a orangish light that wandered in a NON aiplane-like fashion for at least 90 minutes +2003-05-03,40.8758333,-75.7327778,Jim Thorpe,PA,sphere,240,Fast, high-flying sphere flies miles above our heads in Hickory Run State Park. +2003-05-03,39.4152778,-81.455,Marietta,OH,light,5,Bright balls of light over SE Ohio +2004-05-03,37.6688889,-122.0797222,Hayward,CA,oval,300,Oval object with a rotating tethered object in the middle, observerd Oval blow up +2004-05-03,32.2986111,-90.1847222,Jackson,MS,disk,360,Disk over downtown Jackson, Mississippi on a clear sunny day +2004-05-03,44.9430556,-123.0338889,Salem,OR,circle,360,Object changed directions several times. +2004-05-03,34.0583333,-106.8908333,Socorro (Approx 30 Miles S. Of, On I-25),NM,light,10800,Driving North on I-25 south of Socorro, NM, my mother and I saw a bright light to the west that followed us to Albuquerque. ((Venus?)) +2004-05-03,33.2961111,-86.8436111,Helena,AL,chevron,20,Two adults witness boomerang-shaped object during a strange sequence of events +2004-05-03,43.0630556,-86.2283333,Grand Haven,MI,sphere,6,During the 6 second time frame, the television had static lines, like the ones that appear when using a blender or vaccuum. +2004-05-03,26.2030556,-98.2297222,Mcallen,TX,sphere,90,Me and a friend saw a shpere shape craft lingering near the power lines and when we got closer it began to withdraw. +2004-05-03,40.5852778,-105.0838889,Fort Collins (Seen From),CO,oval,120,"String of Pearls" White, cloud colored small ovals that stood still, linked up, and then 1 zoomed into space. +2005-05-03,41.3897222,-81.4413889,Solon,OH,unknown,120,Large dark soundless craft - white lights - criss-crossed shapes on bottom - low flying +2005-05-03,36.8466667,-76.2855556,Norfolk,VA,disk,240,When I was sitting there it was spinning around until it went up. +2005-05-03,45.4222222,-116.3144444,Riggins,ID,oval,21600,Unbelievable speed and able to stop and hover with no sound. +2005-05-03,39.5505556,-107.3241667,Glenwood Springs,CO,formation,23,WHO KNOWS WHAT THAT WAS? ((NUFORC Note: May not be a serious report. PD)) +2005-05-03,45.5236111,-122.675,Portland,OR,circle,120,05/03/05 23:30hours. the we seen in portland Oregon It moved from north to south and vanished. +2006-05-03,26.6402778,-81.8725,Fort Myers,FL,sphere,900,High altitude silver object visable 15 min hoovering slow sw trajectery early eve. +2006-05-03,26.0108333,-80.1497222,Hollywood,FL,triangle,7200,We saw a triangular shaped object, that was very far in space. It appeared to have blinking lights in an oval shape to one end. +2006-05-03,34.8647222,-106.0511111,Mcintosh,NM,triangle,2700,9pm on the 3rd. of may saw the bright colored star moving fast over the trigo fire, it stopped steady for 45 min. I took a picture. +2006-05-03,29.7630556,-95.3630556,Houston,TX,sphere,20,Colored spheres fly over Houston Texas! +2006-05-03,39.4805556,-86.055,Franklin,IN,triangle,300,Triangle craft hovering 5 minutes, no sound, lights, very dark black +2006-05-03,41.4513889,-75.6122222,Throop,PA,unknown,300,Very Bright objest in the sky. Green Lights on side and was being followed by regular planes. +2007-05-03,44.3461111,-74.3180556,Saranac Inn,NY,light,1800,White Lights in the Northeast sky +2007-05-03,39.9302778,-77.2483333,Biglerville,PA,disk,1380,Metallic object descended at odd angle, landed in wooded area where it stayed for about 20 minutes before disappearing quickly 500 Lig +2007-05-03,39.9611111,-82.9988889,Columbus,OH,light,480,Strange vapor trail +2007-05-03,39.4622222,-76.2794444,Abingdon,MD,triangle,120,A triangular shaped craft was seen hovering, and moving very slowly over a neighborhood in Abingdon, MD. +2007-05-03,39.4622222,-76.2794444,Abingdon,MD,triangle,120,Triangle craft seen "hovering" and moving very slowly. There was one row of 3-4 lights lit up on one side of the craft. +2007-05-03,41.0005556,-85.7686111,North Manchester,IN,light,180,Unknown Light. ((NUFORC Note: Possible tumbling rocket booster in orbit?? PD)) +2007-05-03,44.8838889,-84.3055556,Lewiston,MI,other,32400,what we saw was real, and the goverment knows it. +2007-05-03,34.1761111,-85.1613889,Silver Creek,GA,light,600,Helicopter and unidentified lights in sky +2007-05-03,42.8863889,-78.8786111,Buffalo,NY,light,300,Two small, dim orange lights abruptly do a 180 turn, one engaging in eratic zig-zag motions +2008-05-03,34.0522222,-118.2427778,Los Angeles (Downtown),CA,oval,120,Oval-shaped, metallic object w/ 2 bright lights pointing down spotted over Downtown LA; disappeared in 1 second. +2008-05-03,39.6172222,-104.9502778,Greenwood Village,CO,oval,5,UFO hoovers then speeds by +2008-05-03,34.9958333,-79.2263889,Silver City,NC,sphere,300,Black Sphere observed flying low over town in broad daylight +2008-05-03,39.7555556,-105.2205556,Golden,CO,teardrop,40,The metallic three pronged upside down teardrop object moved at a constant altitude and velocity Northwest in Golden, Colorado. +2008-05-03,44.5955556,-75.1694444,Canton,NY,light,3600,A flashing light hovered in the northern skies for more than an hour. +2008-05-03,30.3583333,-103.6605556,Alpine,TX,light,600,Three reputable witnesses see UFO over west Texas. +2008-05-03,41.5380556,-72.8075,Meriden,CT,other,240,Brightly glowing, Fast object rose veritcally then flattened out and flew past my house at speeds double anything i've seen. +2008-05-03,34.1647222,-114.3002778,Earp,CA,circle,600,2 bright orange orbs the same size arcing over the night sky near parker az +2008-05-03,30.5880556,-103.8941667,Fort Davis,TX,unknown,600,We watched an impossibly fast and agile object maneuvering in orbit for about ten minutes through night vision goggles. +2008-05-03,33.5980556,-117.8722222,Corona Del Mar,CA,changing,300,oval shape hovers and dances in sky over Corona del Mar, CA +2008-05-03,36.1538889,-95.9925,Tulsa,OK,circle,15,Three objects traveling North to South over Tulsa/Jenks, OK +2009-05-03,43.12,-85.56,Rockford,MI,cigar,30,Dated May 3, 2009, approx. 11:00 AM, while drift fishing on a clear breezy day, on the South/West side of Little Myers Lake, I looked u +2009-05-03,44.6336111,-121.1283333,Madras,OR,flash,30,Blue flashing light (Basket ball) sized. Fast Mover. +2009-05-03,33.5861111,-86.2861111,Pell City,AL,unknown,1200,RED LIGHT FLYING BACK AND FORTH FROM EAST HORIZON TO WEST HORIZON VERY HIGH UP. +2009-05-03,21.3069444,-157.8583333,Honolulu,HI,sphere,5,blueish greenish ball of light +2010-05-03,35.2247222,-88.2491667,Savannah,TN,unknown,30,bright silver gray color fish shaped object. Very shiny and bright. +2010-05-03,42.0805556,-70.9361111,Whitman,MA,triangle,30,Three red light in the shape of a triangle moving fast to the north +2010-05-03,42.3333333,-88.2666667,Mchenry,IL,other,60,I saw giant birds flying at very fast speeds in and out of a cloud on may 3rd 2010 +2010-05-03,42.3333333,-88.2666667,Mchenry,IL,disk,30,((HOAX??)) I thought they were birds but the way they were flying didn't make sense. +2010-05-03,38.2541667,-85.7594444,Louisville,KY,changing,1320,Bright objects and flashes over Louisville,Kentucky. +2010-05-03,41.2586111,-95.9375,Omaha,NE,diamond,240,Walking on the South campus of the University of Nebraska at Omaha. Was chased by Diamond shaped UFO which was approaching towards me. +2010-05-03,35.9605556,-83.9208333,Knoxville,TN,unknown,180,I just witnessed a large static formation or 1 very large craft over Fountain City. It moved fairly slow and made a low steady rumble a +2010-05-03,40.7933333,-77.8602778,State College,PA,light,300,Around 12 red lights moving in loose formation over State College, PA. +2011-05-03,36.1538889,-95.9925,Tulsa,OK,light,2,Fast moving low flying bright object makes path across south Tulsa neighborhood +2011-05-03,47.5302778,-122.0313889,Issaquah,WA,circle,7200,At first it looked like a large blinking star; it was lights flickering in a circular motion. ((NUFORC Note: Twinkling star?? PD)) +2011-05-03,29.7630556,-95.3630556,Houston,TX,unknown,3,white shining light over Houston,TX +2011-05-03,37.9825,-76.9616667,Caret,VA,light,30,it was a bright light and it zig zagged then it dissappeared +2011-05-03,42.4391667,-123.3272222,Grants Pass,OR,oval,300,Flickering orange oval hovering over Grants Pass, OR. +2011-05-03,37.4852778,-122.2352778,Redwood City,CA,sphere,300,Redwood City Sphere, third sighting +2011-05-03,34.0975,-117.6475,Upland,CA,rectangle,20,It first appeared like shooting star, but then turned in to a triangle with dim lights it lasted for twenty seconds then vanished. +2011-05-03,34.1683333,-118.605,Woodland Hills,CA,unknown,60,Possible UFO seen in CA +2011-05-03,33.9908333,-118.4591667,Venice,CA,triangle,15,Silent Triangle craft sighted Venice, CA May 3rd 2011 21:20 +2011-05-03,41.5236111,-90.5775,Davenport,IA,egg,600,Bright Light over Davenport, Iowa. +2011-05-03,37.3394444,-121.8938889,San Jose,CA,light,60,Bright light traveled at a great rate in the upper atmosphere above Santa Cruz mountains CA +2011-05-03,37.1041667,-113.5833333,Saint George,UT,fireball,360,Triangle of bright orange lights flying directly over St. George, Utah. +2011-05-03,45.3069444,-92.3619444,Amery,WI,light,5,Lights thought to be satellites making impossible movements +2012-05-03,40.1005556,-74.8522222,Bristol,PA,cylinder,28,"Venus" disappeared, but was UFO. +2012-05-03,42.1097222,-86.48,Saint Joseph,MI,rectangle,30,I just got home from a friends and now stood on the porch in the dark while I let the dogs out. I was facing South and I was looking up +2012-05-03,36.175,-115.1363889,Las Vegas,NV,fireball,600,FIREBALL OVER NELLIS AIR FORCE BASE +2012-05-03,42.1888889,-120.3447222,Lakeview (Near),OR,other,120,3 Orange lights over Warner Highway +2012-05-03,31.7091667,-98.9908333,Brownwood,TX,fireball,300,Fireballs sighted near Lake Brownwood Texas +2012-05-03,47.9791667,-122.2008333,Everett,WA,triangle,300,Large triangular shaped orange light hovering minutes over my home. +2012-05-03,33.6141667,-85.835,Oxford,AL,fireball,120,Fireballs in Oxford, AL +2012-05-03,41.0241667,-80.6630556,Boardman,OH,fireball,90,Huge Firey Orange light in the sky +2012-05-03,36.8055556,-114.0663889,Mesquite,NV,triangle,60,V shaped object eastern Neveda +2013-05-03,34.9530556,-120.4347222,Santa Maria,CA,teardrop,60,Red/orange object moves across night sky +2013-05-03,47.6063889,-122.3308333,Seattle,WA,other,3,LIGHT FLASH OVER SEATTLE 5/O3/13 1:05AM THURSDAY NIGHT / EARLY FRIDAY MORNING +2013-05-03,33.9908333,-118.4591667,Venice,CA,fireball,12,Walking out the door going to my car get ready for work. I look up at the sky and see this Orange Fireball. First O.M.G. Aircraft is on +2013-05-03,44.1969444,-72.5025,Barre,VT,light,120,3 reflecting objects seen in day sky in formation. +2013-05-03,37.5536111,-77.4605556,Richmond,VA,fireball,1800,Red flame orb cruising parelle interstate 64 heading east. +2013-05-03,40.5,-111.95,West Jordan,UT,triangle,15,There was a shadow of a triangle moving across the field but no aircraft above. +2013-05-03,41.9,-71.0902778,Taunton,MA,unknown,240,Unknown in Taunton. +2013-05-03,40.8175,-73.0005556,Medford,NY,cylinder,300,Large cigar shapedf object +2013-05-03,40.0288889,-75.6211111,Exton,PA,light,300,Orange lights in the sky when there was no wind +2013-05-03,40.2961111,-75.0825,Furlong,PA,sphere,1500,Multi-colored lights seen from Furlong, PA. +2013-05-03,40.5219444,-111.9383333,Riverton,UT,circle,1800,20-30 Red and Orange glowing Crafts moving slow for aircraft (30-40 MPH). +2013-05-03,40.5219444,-111.9383333,Riverton,UT,formation,1800,All 30 spaceships were bright white lights that were in a square/triangle formation that were heading south. +2013-05-03,38.2225,-85.3552778,Simpsonville,KY,unknown,180,Crazy. +2013-05-03,33.6602778,-117.9983333,Huntington Beach,CA,triangle,9,Extremely fast moving triangular craft with white spheres observed over Huntington Beach. ((NUFORC Note: Pilot report. PD)) +2013-05-03,38.3030556,-77.4608333,Fredericksburg,VA,light,180,Fast moving light that changed direction. +2013-05-03,48.4758333,-122.3241667,Burlington,WA,sphere,75,3 brightly lit amber/orange orbs moving S-SE spotted in night sky over Skagit County, WA. by multiple witnesses. +2013-05-03,40.1566667,-75.8330556,Elverson,PA,light,1200,1 Extremely bright white light preceded by strange "booming sounds." +2013-05-03,33.6,-117.6711111,Mission Viejo,CA,sphere,180,2 Large orange orbs sighted from Mission Viejo, CA. +2013-05-03,42.2769444,-72.4013889,Belchertown,MA,fireball,240,Orange/red lights in sky. +2014-05-03,34.2738889,-88.4091667,Fulton,MS,egg,5,Egg ufo. +2014-05-03,45.9175,-119.3413889,Umatilla,OR,circle,300,Ball with 4 orange lights in the sky. +2014-05-03,41.7561111,-124.2005556,Crescent City,CA,unknown,300,Large, bright object straight up and very high could be seen for 1/2 hour never moving until covered by clouds. +2014-05-03,40.7988889,-81.3786111,Canton,OH,sphere,30,I saw a small fuzzy gray sphere fly in the sky while taking a photo of the sunset. +2014-05-03,34.9941667,-81.2422222,York,SC,changing,180,fast moving +2014-05-03,30.0797222,-95.4169444,Spring,TX,sphere,1800,20+ glowing orbs seen over 30 minute period in eastern horizon +2014-05-03,34.4625,-78.1013889,Currie,NC,light,120,Brilliantly Lit Flying Object With Reddish Orange Lights. +2014-05-03,33.8941667,-83.9558333,Grayson,GA,sphere,20,On May 3 around 9 pm I was studying Mars with an outdoor telescope on a clear night when a perfectly round , bright light appeared Sout +2014-05-03,25.8572222,-80.2783333,Hialeah,FL,light,120,My wife stepped outside to get some laundry and she noticed a bright orange light hovering in the sky and called me to come out and see +2014-05-03,34.9244444,-80.7436111,Waxhaw,NC,circle,60,Bright orb that dimmed & got smaller before vanishing in the sky. +2014-05-03,41.88,-88.0077778,Lombard,IL,circle,20,Bright red & yellow colored ball flying west to east in a straight line. +2014-05-03,42.8383333,-71.1475,Atkinson,NH,sphere,300,Flashlight made UFO disappear +2014-05-03,39.2666667,-81.5616667,Parkersburg,WV,light,300,Several lights seen over Parkersburg, WV +2014-05-03,34.9244444,-80.7436111,Waxhaw,NC,circle,60,Bright orb that rapidly traveled west leaving a light trail and vanishing. +2014-05-03,36.0397222,-114.9811111,Henderson,NV,fireball,20,Very Strange Red Sphere Over Henderson, Nevada. +2014-05-03,35.8825,-80.0822222,Thomasville,NC,light,120,High Altitude bright light follows odd path in NC Sky +2014-05-03,35.4105556,-80.8430556,Huntersville,NC,sphere,10,Large glowing red mass resembled comet. +2014-05-03,43.8247222,-71.3036111,South Tamworth,NH,oval,120,5 adults and 1 child sitting by camp fire witnessed a strange orange light hovering over tree line by our home. As object moved closer +2014-05-03,34.9675,-82.4436111,Travelers Rest,SC,fireball,60,Orange/yellow fireball over Greenville, SC. +2014-05-03,34.1205556,-84.0044444,Buford,GA,unknown,300,Green, red & white alternating lights hovering and moving horizontally and vertically. +2014-05-03,33.1975,-96.615,Mckinney,TX,triangle,6,Beautiful night me and my wife were going to sit out back to enjoy the night as I opened the back door I looked up and saw a large tria +2014-05-03,41.9102778,-88.0716667,Glendale Heights,IL,formation,45,So, yesterday before midnight me and few other people come out for a cigarette and we seen weird green lights above the clouds hovering +2014-05-04,41.2222222,-73.0569444,Milford,CT,circle,900,7 +1990-05-04,34.005,-118.8091667,Malibu,CA,disk,10,i was surfing, with another guy, at County Line (across from Neptune's Net), when it came out of the fog bank just offshore. +1996-05-04,32.9375,-98.2466667,Graford,TX,light,900,At Possum Kingdom Lake (Graford, Tx) my wife and I spotted several star like objects moving across the sky in strange fashion. I am po +1997-05-04,33.6188889,-117.9280556,Newport Beach,CA,triangle,2,It was a clear night on Sunday,May 4 ྜྷ at 10.20pm. The craft approached from the sea, the west, and made a slight change on course to +1998-05-04,32.7152778,-117.1563889,San Diego,CA,disk,660,red and blue strobe lights circling the ufo +1998-05-04,35.1494444,-90.0488889,Memphis,TN,unknown,60,Between 4-6 dim, orange lights, traveling NNW-SSE. Straight line travel, no noise. +1998-05-04,31.1797222,-83.7891667,Moultrie,GA,changing,2700,It changed shapes slowly and was spinning slowly and it was creepy. +1999-05-04,37.5536111,-77.4605556,Richmond,VA,disk,240,Two craft flew slowly parallel for two minutes, then one stayed the course,the other veered off, sunlight gleaming off it`s side. Seeme +1999-05-04,26.2441667,-80.2066667,Margate,FL,fireball,30,Looked like a meteor but it was bright orange w/a long tail. It didn't fizzle out though. Traveled from west to east following the hori +2000-05-04,47.3294444,-122.5788889,Gig Harbor,WA,sphere,300,Sphere was moving extremely fast around the neighborhood as if surveying us. we were unable to constantly track it because of it fligh +2000-05-04,30.2975,-93.7433333,Deweyville,TX,diamond,10,A diamond shaped formation of black shiny diamond shaped objects in the middle of the day with no noise. +2000-05-04,33.3763889,-117.2502778,Fallbrook,CA,other,300,A V shaped air craft flew over me at low altitude while I was walking down the path through our avocado grove. +2000-05-04,39.0997222,-94.5783333,Kansas City,MO,sphere,3000,On May 4th, 2000 at 9:10 pm in Kansas City, Missouri, 8 witnesses observed a bright, color-changing pulsating orb in the night sky. +2000-05-04,38.7441667,-90.3052778,Ferguson,MO,circle,11,Three round white circles were seen traveling north to southbound in the sky. The objects became brighter on approach, then dimmed and +2000-05-04,28.2486111,-81.2813889,St. Cloud,FL,circle,7200,came real close to objects was not plane helicopter flares just incredible +2000-05-04,29.7630556,-95.3630556,Houston,TX,triangle,480,Saw a bright hovering light near the Transco Tower. +2001-05-04,33.4508333,-90.655,Indianola,MS,sphere,10,Green fireball seen heading east. +2001-05-04,37.5536111,-77.4605556,Richmond,VA,other,120,Unexplained aircraft slowly moving across lake area +2001-05-04,37.3861111,-122.0827778,Mountain View,CA,fireball,2,Luminous white/green ball of light with tail over San Francisco Bay Area going N-S at 22:48 PST May 4 ᄱ +2002-05-04,34.0494444,-116.9469444,Oak Glen,CA,light,120,object with shower of sparks flying level across the horizon +2002-05-04,34.614444399999996,-120.0788889,Santa Ynez,CA,fireball,30,classic Shuttle reentry sighting. sounding like a lift-off.Two visuals and three who heard object reentry. +2002-05-04,32.2216667,-110.9258333,Tucson,AZ,light,180,Bright soaring orb in Tucson seen 5/4/02 at 5am. 3 witnesses +2002-05-04,34.5008333,-117.185,Apple Valley,CA,other,40,The object was turning I could se a visible trail or tail when it vanished from the sky. +2002-05-04,40.8558333,-73.2011111,Smithtown,NY,circle,2,Transparent object, only visible by it's effect on the atmosphere +2002-05-04,38.5580556,-91.0119444,Washington,MO,disk,180,rotating saucer with lights very low with a lot of detail +2003-05-04,31.1955556,-98.7177778,San Saba,TX,formation,10,Strange group of 10 black ufos videotaped in broad daylight doing impoossible manuevers +2003-05-04,42.2791667,-71.4166667,Framingham,MA,light,1200,I was out walking during the day and saw something in the sky that did not appear to be moving or have any kind of a trail (like from a +2003-05-04,35.4913889,-92.0311111,Heber Springs,AR,light,2,Two lights in a series formation traveling at about 200MPH with no sound at close proximaty. +2003-05-04,40.1727778,-74.9930556,Holland,PA,unknown,180,Pulsating Light That "dances" across the sky +2004-05-04,40.1108333,-94.2230556,Mcfall,MO,fireball,3,I saw an orange sphere, or fireball, low to the ground at the same time another carrier saw it 100miles away. +2004-05-04,40.3408333,-76.4116667,Lebanon,PA,other,300,dumb-bell shaped object moving from south to north glowing with an amber color then disapears +2004-05-04,47.9791667,-122.2008333,Everett,WA,oval,2700,Strange moon shpaed object that continues to move from side to side ((NUFORC Note: Sighting of Venus, we suspect. PD)) +2004-05-04,32.4419444,-97.7938889,Granbury,TX,other,20,It was shaped funny and vannished. +2004-05-04,39.7391667,-104.9841667,Denver,CO,sphere,480,My husband and I observed an small bright red object flying over central Denver on a clear sky at dusk. +2004-05-04,33.1022222,-84.3427778,Zebulon,GA,light,50,SLOW MOVING BRIGHT RED LIGHT SOUTH TO NORTH CENTRAL GA. +2005-05-04,32.63,-83.6897222,Centerville,GA,triangle,300,pulsing blue light with irratic movement +2005-05-04,32.2427778,-94.4552778,Beckville,TX,light,300,Bright light moving steady across the sky from horizon to horizon. +2005-05-04,41.4097222,-85.8455556,Milford (Between Cities),IN,flash,5,It was the 4th of July and my parents and I were coming home from some fireworks. Occasionally, we would see small towns set off firewo +2006-05-04,26.3180556,-80.1,Deerfield Beach,FL,fireball,10,saw explosion or similar in night sky +2006-05-04,33.5386111,-112.1852778,Glendale,AZ,sphere,120,Bright metallic sphere that I can't explain. +2006-05-04,26.9758333,-82.0908333,Port Charlotte,FL,light,120,Dim light increasing in brightness, Headed Northward in FLorida... +2006-05-04,33.5091667,-111.8983333,Scottsdale,AZ,light,120,Phoenix Lights (Again) +2006-05-04,37.725,-122.155,San Leandro,CA,circle,120,four round ligths flying in triangle formation spoted over san leandro +2006-05-04,33.3702778,-112.5830556,Buckeye,AZ,light,600,Copper Lights Over Buckeye Arizona +2006-05-04,31.7586111,-106.4863889,El Paso,TX,other,1200,"dog fight' between stars +2006-05-04,33.7591667,-118.0058333,Westminster,CA,fireball,40,Twin orange balls seen over Westminster Ca +2007-05-04,39.8494444,-75.3561111,West Chester,PA,fireball,10,Two eyewitness accounts of sighting +2007-05-04,36.9613889,-120.0597222,Madera,CA,light,120,Strange orange light seen south of Madera. Went to get binoculars and a minute later the light was gone. +2007-05-04,43.0480556,-76.1477778,Syracuse,NY,light,3600,watched an unusual light in the sky for an hour on a starless night. moved slowly. ((NUFORC Note: Sighting of Venus? PD)) +2007-05-04,41.8930556,-70.9116667,Middleboro,MA,sphere,900,Two fast moving brights spheres moving together over wooded lake area +2008-05-04,29.0336111,-95.4341667,Lake Jackson,TX,other,5,Gaseous object with 4 bright lights speeds across sky over Lake Jackson, TX. +2008-05-04,36.2625,-85.3755556,Rickman,TN,circle,7200,IT WAS A BRIGHT OBJECT IN THE SKY +2008-05-04,33.415,-111.5488889,Apache Junction,AZ,light,37800,2 big, white orbs of light spotted near the Superstition Mountains. +2008-05-04,40.7258333,-73.5147222,Levittown,NY,disk,180,A disk with two blues lights in New York,Levittown. +2008-05-04,32.7833333,-96.8,Dallas,TX,diamond,30,I walked out on my porch to look through my new telescope. As I was putting it together I looked up to see where the moon was so I coul +2008-05-04,38.8813889,-94.8188889,Olathe,KS,sphere,30,Weird green ball seen moving swiftly +2009-05-04,41.9902778,-70.9755556,Bridgewater,MA,formation,900,Cluster of lights. One bigger, several smaller around it. Dimmed and brigtened. 495 s Massachusetts +2009-05-04,45.1230556,-92.5363889,New Richmond,WI,disk,4500,A saucer shaped object with changing colored light remained in one position in the sky for over an hour. +2010-05-04,29.2388889,-96.1997222,Pierce,TX,light,5400,Circular objects with very bright hallow ((sic. Halos)) aroung them +2010-05-04,31.4636111,-100.4366667,San Angelo,TX,unknown,45,3 unknown objects in the skies of west Texas +2010-05-04,34.3916667,-118.5416667,Santa Clarita,CA,formation,720,It was around 9:20pm last night (May 4, 2010) and it was pitch black; the sky was clear and we could see the stars, and there was some +2010-05-04,21.3155556,-158.0072222,Ewa Beach,HI,light,2,Two bright flashes lighting up the entire sky and a single light streaking down. +2010-05-04,21.5027778,-158.0236111,Wahiawa,HI,light,5,Bright green light over Schofield Barracks +2010-05-04,40.3219444,-75.3283333,Telford,PA,light,120,Abnormally moving varying luminocity light. +2010-05-04,40.9175,-77.0480556,Mifflinburg,PA,circle,25,Star like object +2010-05-04,38.7613889,-120.5855556,Pollock Pines,CA,sphere,2,Bright light in sky in Pollock Pines +2010-05-04,26.0625,-80.2333333,Davie,FL,other,600,Silent, translucent Y shaped object just above tree level, steady course with slow climb, approx 10mph +2010-05-04,45.5608333,-94.1622222,Saint Cloud,MN,oval,5,the bright blue oval object flew straight for 5 seconds then instantly vanished +2011-05-04,38.8338889,-104.8208333,Colorado Springs,CO,other,20,bullet shaped craft over the skies of colorado +2011-05-04,35.0844444,-106.6505556,Albuquerque,NM,other,2102400,((HOAX??)) Get the metal out of my body +2011-05-04,41.7858333,-88.1472222,Naperville,IL,changing,600,Clear sky, Highly reflective Round Object leaking fluid or vapor. +2011-05-04,33.9163889,-78.1613889,Oak Island,NC,light,180,No sound just a white light +2011-05-04,40.8894444,-111.88,Bountiful,UT,circle,1500,The Lights Over the Great Salt Lake and West Desert +2011-05-04,37.0763889,-79.8897222,Wirtz,VA,circle,60,The objects were circular with no blinking lights but they had a white light and stayed the same speed with each other then vanished +2011-05-04,37.2202778,-77.2883333,Prince George,VA,light,180,An object that resembles a star that slowly gets brighter, moves slowly, and then speeds up, fades. ((NUFORC Note: ISS? PD)) +2011-05-04,37.775,-122.4183333,San Francisco,CA,light,1200,Object covered by white and red light observed again +2011-05-04,38.3,-83.1741667,Olive Hill,KY,circle,120,Bright, slow moving orange craft over Olive Hill Kentucky. +2012-05-04,35.9941667,-79.9355556,Jamestown,NC,oval,120,Fiery reddish oval made from strings of light hovering. +2012-05-04,40.7186111,-74.5697222,Bernardsville,NJ,unknown,1800,Hearing strange sounds +2012-05-04,34.1519444,-85.6788889,Centre,AL,cylinder,900,Three large UFO's fly over Centre, Alabama +2012-05-04,40.6661111,-89.58,East Peoria,IL,other,120,Red light over East Peoria, IL +2012-05-04,40.7186111,-74.5697222,Bernardsville,NJ,unknown,10800,Bright light and strange sounds +2012-05-04,29.3777778,-95.1055556,Santa Fe,TX,circle,45,Seven circular balls of white to orange light's taking on to different spectacular flying formations in the sky. +2012-05-04,42.5277778,-92.4452778,Cedar Falls,IA,sphere,45,2 yellow red glowing spheres moved against the wind in irregular motion and changing speeds, one dissappeared and the other flew away, +2012-05-04,40.2969444,-111.6938889,Orem,UT,circle,5,15 white lights flying in V formation over utah county +2012-05-04,37.6547222,-122.4066667,South San Francisco,CA,light,2,A big bright white light streaks across the sky over US 101 for 2 seconds and disappears. +2012-05-05,43.4594444,-76.2291667,Mexico,NY,sphere,60,((HOAX??)) this oval or sphere or orb was moving from north to south moving very fast color was yellow whit white light around it +2013-05-04,33.9802778,-118.4508333,Marina Del Rey,CA,fireball,900,It was about 0015 on 5/4/13. I looked up into the sky when I got out of my car. I saw what looked like 5 fire balls hovering in the s +2013-05-04,43.4666667,-112.0333333,Idaho Falls,ID,chevron,3600,Fast moving boomerang shaped. +2013-05-04,47.5675,-122.6313889,Bremerton,WA,unknown,1800,White and red strobing lights gliding silently, changing directions, then appearing as three distinct solid white lights in a row. +2013-05-04,39.5297222,-119.8127778,Reno,NV,oval,45,Consumed the surrounding light like a vampire. distant benevolence?...... none. +2013-05-04,43.0966667,-71.4655556,Hooksett,NH,fireball,10,Big fire ball! +2013-05-04,38.345,-98.2013889,Lyons,KS,circle,2700,Flashing lights darting across the Kansas night sky +2013-05-04,42.4405556,-76.4969444,Ithaca,NY,circle,900,4 red lights flying around in the sky +2013-05-04,38.7891667,-90.3225,Florissant,MO,fireball,300,Orange fireballs in a diamond/trapezoid shape between Central Parkway and Humes Lane in Florissant, MO +2013-05-04,42.9955556,-71.4552778,Manchester,NH,light,480,Light in the sky going in circles. +2013-05-04,40.2961111,-75.0825,Furlong,PA,other,2400,Multi-colored lights over Furlong, PA. ((NUFORC Note: Possible twinkling stars?? PD)) +2013-05-04,45.4944444,-122.8658333,Aloha,OR,formation,180,Three Bright white lights in Triangular formation +2013-05-04,41.2380556,-81.8419444,Brunswick,OH,fireball,600,9 orange orbs in formations over 9 minutes. May 4, 2013 OH. +2013-05-04,41.1597222,-77.3616667,Mcelhattan,PA,sphere,300,8 or 9 bright orange orbs in pairs/seen by 3 people +2013-05-04,38.5816667,-121.4933333,Sacramento,CA,light,600,Never seen this before in my life. I was a little terrified. +2013-05-04,41.9888889,-88.6866667,Sycamore,IL,fireball,600,Three color shifting orbs move to close triangle then shoot straight up one at a time on same path +2013-05-04,45.2311111,-122.7547222,Aurora,OR,triangle,120,Three lights forming an equalateral triangle appeared and then disappeared while never changing position. +2013-05-04,43.1586111,-76.3330556,Baldwinsville,NY,unknown,300,6 Orange lights in Central New York +2013-05-04,41.525,-88.0816667,Joliet,IL,fireball,2400,Several fireballs over Joliet, IL. +2013-05-04,42.9638889,-78.7380556,Williamsville,NY,oval,45,Orange blue disk. +2013-05-04,30.2669444,-97.7427778,Austin,TX,triangle,10,Triangle ufo over austin tx. 9:35 pm may 4th . +2013-05-04,44.6369444,-124.0522222,Newport,OR,fireball,180,Two people witnessed five lights floating in formation, absolutely silent, headed from northeast to southwest over my hometown of Newpo +2013-05-04,43.6955556,-116.3530556,Eagle,ID,rectangle,10,Bright light green object moved across Idaho sky. +2013-05-04,39.6136111,-86.1066667,Greenwood,IN,fireball,1800,15+ Fireballs seen in formation in Greenwood Indiana; Bright Red glow changing to an orange than a white flash before returning to red. +2013-05-04,30.3880556,-95.6961111,Montgomery,TX,circle,600,Small objects with fire-like glow flying at low elevation, like balloons without gondolas. +2013-05-04,38.5922222,-89.9111111,O'fallon,IL,flash,60,Green light streaked across sky +2013-05-04,45.5236111,-122.675,Portland,OR,light,15,Moving object resembling a star makes sweeping turn before disappearing. +2013-05-04,26.525,-80.0666667,Boynton Beach,FL,fireball,120,Bright orange balls seen flying East to West over boynton beach. +2013-05-04,42.9633333,-85.6680556,Grand Rapids,MI,other,120,While I was driving south on the Beltline, there were a large cluster of 30 or so bright yellow-orangish lights glowing brightly. At f +2013-05-04,33.6602778,-117.9983333,Huntington Beach,CA,fireball,600,Red/White pulsating fireball, intelligently maneuvering in Huntington Beach sky. +2013-05-04,33.3627778,-112.1686111,Laveen,AZ,formation,3600,Blue, Red, and White Lights West of Phoenix AZ. +2013-05-04,43.3666667,-124.2166667,Coos Bay,OR,unknown,120,Two lights moving north appeared to be one object, confirmed was not ISS, about 1/2 degree apart with flare or brightening of one light +2013-05-04,30.2669444,-97.7427778,Austin,TX,other,6,UFO over austin. i just saw a 2nd batch but they were all together the 1st were a triangle, +2013-05-04,46.8158333,-87.7283333,Big Bay,MI,circle,60,Hugh Round Object with 8 Rectangular Bright white Lights on bottom Moving very fast to the east, about 30 to 60 seconds in sky , +2014-05-04,32.8138889,-96.9486111,Irving,TX,fireball,2,A friend and I were at Running Bear Park and I witnessed one fiery object falling from the sky behind the trees. Unfortunately, my frie +2014-05-04,28.5491667,-81.7730556,Clermont,FL,unknown,7200,Bright orangy object flying close to buildings and trees. +2014-05-04,37.5866667,-84.7938889,Junction City,KY,triangle,30,Triangular object with three rectangular Ulta Violet blue lights on the bottom. +2014-05-04,40.2561111,-75.4641667,Schwenksville,PA,other,180,Orange objects near Graterford Prison. +2014-05-04,35.614444399999996,-88.8138889,Jackson,TN,circle,15,Large slightly dim circle or disk moves across entire sky. +2014-05-04,35.8275,-83.9408333,Rockford,TN,light,1800,Strange lights over Maryville/Knoxville. ((NUFORC Note: Possible "twinkling" star?? PD)) +2014-05-04,33.8352778,-117.9136111,Anaheim,CA,fireball,180,Manuevering Fireballs in the Sky in Souther California +1958-05-05,38.9208333,-76.8719444,Palmer Park,MD,sphere,1200,I saw a white spherical light zig zaging across the sky leaving a plasma trail at unthinkable speed. +1959-05-05,37.9772222,-122.2941667,El Sobrante,CA,circle,120,Bright, yellow/orange circle, 10 ft. in diameter, silent, slow moving, 5mph, 50 ft. above ground-2 minutes, chased & threw rocks at it. +1964-05-05,40.0875,-108.8041667,Rangely,CO,unknown,900,Introduction +1965-05-05,38.6272222,-90.1977778,St. Louis County,MO,cigar,600,I was walking to church very early on the morning of May 5, 1965. Cutting across the rear of the adjacent school parking lot, a bright +1966-05-05,39.0347222,-76.9077778,Beltsville,MD,sphere,120,Green sphere speeding across the sky in 1960's +1970-05-05,40.7141667,-74.0063889,New York City,NY,changing,300,P.S.154 Sighting in the South Bronx +1971-05-05,48.9811111,-119.1994444,Molson,WA,circle,2,I was a boy, dad sis and I were at local farn getting milk. I took milk out to car alone. Looked up... +1971-05-05,39.6444444,-80.8577778,New Martinsville,WV,light,600,Object that changes colors follows our car. +1972-05-05,31.9827778,-98.0333333,Hico,TX,disk,5,Sometime in either 1972 or 1973 my grandfather and i were outside sitting down in hico texas when a white saucer type vehicle flew ver +1973-05-05,33.5377778,-92.4697222,Hampton,AR,fireball,30,It was a orange ball several thousand feet in the sky. +1975-05-05,34.7538889,-77.4305556,Jacksonville,NC,sphere,240,Silent rocking 4ft silver sphere hovering 2ft of the ground with tremendous takeoff speed. +1978-05-05,42.575,-71.9986111,Gardner,MA,oval,45,At the time I was six years old. It was light outside and I looked out our bay window and almost at eye level, I noticed what at first +1978-05-05,34.1477778,-118.1436111,Pasadena,CA,cigar,120,I submitted the following to a French UMMO site isn1997. For years I have been trying to track down a craft's symbol my 4 yr.ol +1979-05-05,40.3152778,-74.2466667,Marlboro,NJ,circle,4,Over 20 years ago I saw a bight yellow ball flash in Marlboro, NJ and then disappear. +1979-05-05,30.0472222,-99.14,Kerrville,TX,diamond,1200,Strange craft follows car into town, later family member see same craft. +1980-05-05,34.0522222,-118.2427778,Los Angeles,CA,light,5,Los Angeles CA. 28 years ago. Spheric light travelling at a steady speed. I knew of nobody to report it to. But now I can! +1980-05-05,37.6819444,-121.7669444,Livermore,CA,disk,300,3 people clearly see large saucer shaped object 1/2 mile away +1983-05-05,30.8527778,-95.4033333,Riverside,TX,circle,20,A red and orange ball of light above the trees. +1984-05-05,38.4369444,-82.3772222,Proctorville,OH,disk,8,green disk in clear blue skies up above my car. +1984-05-05,46.7216667,-92.4591667,Cloquet,MN,other,6900,Myself, a friend, two 9-yr old children watched a pulsating craft hover over the St.Louis River in Cloquet, just at the edge of town. +1987-05-05,42.2833333,-71.35,Natick,MA,disk,10,The object was saucer shaped since the bottom part of it was covered by the trees and there were hundreds of bright lights. +1988-05-05,36.8527778,-75.9783333,Virginia Beach,VA,unknown,120,A “group of four lights appeared in the sky, stopped dead still, then went back the way they came and shot straight up in the sky." +1989-05-05,34.8697222,-111.7602778,Sedona,AZ,other,60,-daytime triangular craft over Sedona +1991-05-05,35.1472222,-107.8508333,Grants (Southeast Of),NM,light,120,bright light travelling normal speed stops above us for minutes then shoots off in nighttime NM sky. +1992-05-05,34.005,-118.8091667,Malibu,CA,light,10,Light or Fireball fell out of the sky and as it was going to hit the ocean, it disapeared. +1993-05-05,41.805,-80.9483333,Geneva,OH,cigar,300,Enormous Cigar shaped craft, no wings, no windows, no sound, incredible rate of speed, over Lake Erie, in Ohio, chased by helicopter. +1994-05-05,43.2311111,-76.3011111,Phoenix,NY,unknown,300,It had my head in a vice-like grip and was "reading" me. +1994-05-05,33.6188889,-117.9280556,Newport Beach (Near),CA,flash,5,saw what I first thought was a comet or some other object. It looked like a falling star....it was very high up. I watched the object +1995-05-05,41.3502778,-83.1219444,Fremont,OH,cone,1500,2 cone shaped objects, at first where conjoined, then seperated and flew away. metalic at first then changed color as they where flying +1995-05-05,39.5211111,-105.3047222,Conifer,CO,circle,10,Turkey Creek Canyon Road, Conifer Colorado sighting (3 witnesses) +1996-05-05,40.7141667,-74.0063889,New York City (Bronx),NY,fireball,7,Me and two friends were in a park hanging out. We looked up and saw a "fireball" streak across the entire sky, which was visible to us, +1997-05-05,39.8338889,-99.8911111,Norton,KS,triangle,3,Triangular craft and other strange sightings +1997-05-05,39.8494444,-75.3561111,West Chester (Outside, On Rte. 202),PA,egg,10,Driving north alogn Rt 202 I noticed egg shaped metallic objectmoving through the sky. It was highly reflective and shone brightly.It +1997-05-05,30.2669444,-97.7427778,Austin,TX,light,15,Several lights appeared in the Northwestern sky. +1997-05-05,37.4947222,-120.8455556,Turlock,CA,light,3,I saw a line of bright lights like star, it lasted about 3 seconds and disappeared. +1999-05-05,28.5380556,-81.3794444,Orlando,FL,other,300,This object almost seemed alive +1999-05-05,42.3583333,-71.0602778,Boston,MA,light,300,star like object getting brighter and brighter and then moving slowly out of sight +1999-05-05,35.9272222,-89.9188889,Blytheville (S Of; Southbound I-55),AR,light,300,It was approximately 7 pm, clear, and still too light to see stars. A bright pinpoint of light appeared in the West-Southwest sky. +1999-05-05,39.6133333,-105.0161111,Littleton,CO,chevron,14400,I was in bed and I saw this bright light outside! Turned out to be a UFO! +1999-05-05,35.5944444,-77.6972222,Walstonburg,NC,other,1800,Round and round, dizzying +1999-05-05,21.4180556,-157.8036111,Kaneohe,HI,sphere,3,nighttime sighting of a glowing green sphere passing above us as we emerged from the mountain tunnel. +1999-05-05,37.3394444,-121.8938889,San Jose,CA,light,30,First seen from my backyard: a bright red light with a strobing white light. It looked about 1/2 the size of Mars and was flying in a +1999-05-05,33.4483333,-112.0733333,Phoenix,AZ,light,30,body experiments by aliens +2000-05-05,33.7488889,-84.3880556,Atlanta,GA,light,1200,Lights in the sky performing aerobatic manuvers impossible for regular aircraft to make. +2000-05-05,42.0266667,-96.0969444,Onawa (Near, On I-29),IA,changing,15,Ball of light separated into three lights and accelerated out of view. +2000-05-05,37.5705556,-101.7505556,Johnson County,KS,sphere,1800,White light with alternating green and red lights +2000-05-05,34.7369444,-82.2544444,Simpsonville,SC,light,1200,Observed curious point light source about 20 degrees above horizon. Source seemed to be flashing red to blue-green and slowly receded. +2001-05-05,36.9741667,-122.0297222,Santa Cruz,CA,disk,1200,Shiny, silver, metallic disc with three small lights horizontaly side by side on the outer edge and rotated. +2001-05-05,32.7947222,-116.9616667,El Cajon,CA,light,37800,On Saturday we were outside watching a world war II airshow at Gillespie field from our back yard when we noticed two bright star like +2001-05-05,34.4261111,-117.5713889,Phelan,CA,fireball,1800,Fire ball moved slowly stopped and headed toward the ocean Flames as a tale Watch for 30 min +2001-05-05,38.6272222,-90.1977778,St. Louis,MO,diamond,300,Black object travelling due north with another smaller object near it +2001-05-05,40.4077778,-74.9786111,Stockton,NJ,oval,7,AN OVAL CRAFT CHANGES SPEED AND DIRECTION LIKE NOTHING I HAVE EVER SEEN! +2001-05-05,33.6041667,-117.5861111,Coto De Caza,CA,light,180,10-20 bright lights observed in night sky +2002-05-05,27.5061111,-99.5072222,Laredo,TX,triangle,20,Massive object passing over house +2002-05-05,32.9761111,-96.595,Sachse,TX,other,1200,There was a bottled-shaped, bright bluish/violet craft that came down and hovered above us before circling us and flying away. +2002-05-05,28.0611111,-82.3025,Thonotosassa,FL,unknown,3600,I went to sleep and this isn't the first time this has happened. I woke up and could not move and it felt like a dream . But then i got +2002-05-05,28.5380556,-81.3794444,Orlando,FL,disk,60,A genuine craft not of manmade origin unless holograhic. +2002-05-05,47.6063889,-122.3308333,Seattle,WA,disk,1200,Shiny saucer shaped vehicle over downtown Seattle displayed various speeds and altitude accelerations. +2002-05-05,34.2541667,-110.0291667,Show Low,AZ,cigar,120,Gold colored cigar/cylinder shaped object traveling west to east in the sky at 1911 hours on 05/05/02 in Show LOw, Az +2002-05-05,40.7933333,-77.8602778,State College,PA,light,240,lights in the sky +2003-05-05,26.2375,-80.125,Pompano Beach,FL,teardrop,600,Upside down, tear drop shaped UFO in S Florida +2003-05-05,41.805,-80.9483333,Geneva,OH,sphere,1800,White sphere follows driver +2003-05-05,40.5583333,-85.6591667,Marion,IN,unknown,1200,It started to blink and then disappeared. +2003-05-05,30.3319444,-81.6558333,Jacksonville,FL,formation,120,Triangular formation of lights observed in a telescope, moving from west to east. +2004-05-05,39.7683333,-86.1580556,Indianapolis,IN,light,21600,Unidentified object in night skies over Indianapolis ((NUFORC Note: Venus. PD)) +2004-05-05,48.7597222,-122.4869444,Bellingham,WA,light,900,Little white dot visible very high in the daylight sky +2004-05-05,35.1677778,-114.5722222,Laughlin,NV,other,180,Laughlin, Nev 2004 sighting of bomerange of multiple round shapes reflecting lights from River Palm Hotel +2004-05-05,32.8338889,-109.7069444,Safford,AZ,fireball,6,fireball just above cloud level approached from eastern horizon and disappeared into western horizon +2004-05-05,35.6869444,-105.9372222,Santa Fe,NM,oval,6,three nights, in one week, glowing green and red, pulsating and then silver, very fast +2004-05-05,40.0072222,-104.7155556,Lochbuie,CO,light,10,Super fast white light flying horizontal for 20 sec. flash in mid-air then gone +2004-05-05,45.5236111,-122.675,Portland,OR,sphere,3,It was a very large globe-shaped object, very low and very fast, traveling in a very straight line. Color was deep orange-yellow, and +2004-05-05,27.1972222,-80.2530556,Stuart (Fl Turnpike Mm 128),FL,light,720,Traveling south on Fla Turnpike saw two very large bright lights stationary as we drove under them. +2004-05-05,43.4577778,-88.8372222,Beaver Dam,WI,light,2700,Very bright motionless light suddenly vanishes, and a separate fast moving light/object vanishes earlier ((NUFORC Note: Venus. PD)) +2004-05-05,48.5394444,-121.745,Concrete,WA,sphere,2700,We saw a large object that was bright yellow with five or six white lights shining from it, that completely disappeared before our eyes +2004-05-05,36.175,-115.1363889,L.as Vegas,NV,teardrop,60,Are you guys sure you don't work for the Government, perhaps the Air Force? To you, every sighting is venus. Well, if venus crashes i +2005-05-05,34.9552778,-90.0347222,Horn Lake,MS,cylinder,10,2 cylinder or tube objects above the city of Memphis. +2005-05-05,40.8152778,-73.1127778,Ronkonkoma,NY,rectangle,300,It was Thursday morning at 11:45 AM on the 5th of May 2005. I was parked in a shopping center waiting for my girlfriend to finish cash +2005-05-05,42.2011111,-85.58,Portage,MI,sphere,1800,Silver Sphere weaving in and out of a "contral" +2005-05-05,47.6588889,-117.425,Spokane,WA,fireball,1800,Dozens of free Flying Stars over Spokane on sunny afternoon, taking triangular formations. White and Red Pulsing. +2005-05-05,42.6555556,-70.6208333,Rockport,MA,rectangle,60,MUFON/MASSACHUSETTS REPORT: Rectangle seen in Rockport, MA +2005-05-05,41.3461111,-73.0794444,Ansonia,CT,triangle,120,Triangle, 3 lights, silent and slow. Low altitude. +2005-05-05,38.2541667,-85.7594444,Louisville,KY,triangle,900,objest appearig over small lake with beams entering water then assendind into sky +2005-05-05,26.2441667,-80.2066667,Margate,FL,light,60,It looked like a shooting star but it lasted to long,It lasted about a minute and a half. +2005-05-05,41.6716667,-72.9497222,Bristol,CT,triangle,210,Black Quiet Triangle Spotted +2005-05-05,37.2766667,-79.1011111,Rustburg,VA,unknown,300,it was four reddish orange lights then they turn white and it took off pretty fast faster then any plane i've ever seen +2006-05-05,27.5469444,-81.8116667,Wauchula,FL,unknown,3600,Significant sightings over Hardee County FL continue to be unexpained. +2006-05-05,34.0552778,-117.7513889,Pomona,CA,light,300,bright light then it was gone +2007-05-05,40.7377778,-96.8441667,Denton,NE,other,420,Object seen outside of Lincoln ,NE +2007-05-05,39.8288889,-84.8902778,Richmond,IN,cigar,40,diagonal line flashin bright white lights almost over center of Richmond +2007-05-05,35.3186111,-82.4611111,Hendersonville,NC,light,5,Do Stars shoot up? +2007-05-05,40.9169444,-72.6625,Riverhead,NY,circle,10,A very fast flying object on Digital camera video clip +2007-05-05,40.7141667,-74.0063889,New York City (Central Park),NY,circle,240,It showed up in sunny sky in Central Park, New York City 05/05/2007 +2007-05-05,21.4180556,-157.8036111,Kaneohe,HI,light,900,Large, bright, non-twinkling, stationary light we thought was a planet was completely gone 15 min. later. ((NUFORC Note: Venus?? PD)) +2007-05-05,45.4872222,-122.8025,Beaverton,OR,triangle,600,Triangle craft motionless in sky with three bright lights and one strobe seen in Beaverton, Oregon 9:00 PM May 5 2007 +2008-05-05,33.9525,-84.55,Marietta,GA,circle,300,U.F.O. over or very near Dobbings Airforce Base in Marietta, GA. with multi color changing lights. +2008-05-05,42.3266667,-122.8744444,Medford,OR,light,180,Bright white-blue light in the sky, the light moved, no sound, no other light. Object changed color, speed, and course quickly. +2008-05-05,39.2902778,-76.6125,Baltimore,MD,unknown,300,Strange lights dancing in a strobe pattern from west to east. +2008-05-05,34.1063889,-117.3694444,Rialto,CA,circle,3600,Others witnessed a very bright obj. in cloudless blue sky. Alternated bright, off of sunlight silver. ((NUFORC Note: Star?? PD)) +2008-05-05,40.7988889,-81.3786111,Canton,OH,sphere,900,Copper spherical object moving at great speeds +2008-05-05,34.5772222,-83.3325,Toccoa,GA,other,90,Small submarine like structure spotted +2008-05-05,38.8338889,-104.8208333,Colorado Springs,CO,light,5,an ambiant spotlight type object that flew very fast for 5 seconds heading from North to South then vanished. +2008-05-05,44.0941667,-72.7333333,Roxbury,VT,triangle,120,me and my friend saw two yellowich lights pulsating and, when it was on hovering above us, they changed to 3triangularyspacedbluelights +2008-05-05,36.6941667,-91.3991667,West Alton,MO,unknown,180,low flying light hovering in sky +2008-05-05,47.9791667,-122.2008333,Everett,WA,light,60,Disappearing bright light over Smith Island in Everett, WA +2008-05-05,34.0230556,-84.3616667,Roswell,GA,light,600,At around 11:30 last night I saw a lighted object traveling what I believe to be SW to NE. It was within view between two trees, then i +2009-05-05,38.8055556,-123.0161111,Cloverdale,CA,other,45,One white light in the north and 10 minutes later an orange teardrop shaped light that was followed by two jets patroling the night sky +2009-05-05,39.7683333,-86.1580556,Indianapolis,IN,rectangle,180,2 dimentional, matte gray rectangle, slowly moving apx, 1000 or 2000 ft. off ground, no lights +2009-05-05,25.7738889,-80.1938889,Miami,FL,triangle,3000,Brilliant lighted Triangular Ufo over Miami +2009-05-05,42.3583333,-71.0602778,Boston,MA,sphere,120,The object was metallic and spherical, and a light silver in color. It glided through the air slowly and seemed to hang in the air for +2009-05-05,33.8177778,-79.4494444,Johnsonville,SC,light,60,Johnsonville SC lights +2009-05-05,28.9002778,-81.2638889,Deltona,FL,light,15,bright light seen in deltona, florida +2009-05-05,26.2375,-80.125,Pompano Beach,FL,triangle,10800,Coroful sharp lights above Pompano Beach. ((NUFORC Note: Probably a "twinkling" star, we suspect. PD)) +2010-05-05,30.7436111,-98.0552778,Bertram,TX,light,240,slow moving bright lightb +2010-05-05,33.1030556,-96.6702778,Allen,TX,light,720,Very Bright blinking light in sky, brightest light I have ever seen. +2010-05-05,39.8427778,-82.8047222,Canal Winchester,OH,rectangle,9,Luminous rectangle, no lights or sound, tremendous speed. +2010-05-05,35.9230556,-78.4577778,Rolesville,NC,formation,300,Formation of 18-20 red flashing lights in the sky ... eventually disappeared +2010-05-05,35.9938889,-78.8988889,Durham (West Of),NC,light,1200,3 lights diagnal very close with the center light appearing the brightest. +2010-05-05,33.8302778,-116.5444444,Palm Springs,CA,other,30,V shaped craft flying over Palm Springs, CA +2011-05-05,33.6888889,-78.8869444,Myrtle Beach,SC,formation,120,We have just seen a straight formation of lights moving north in Myrtle Beach. Lights blink on then off. Atleast 5 to 6 lights in a r +2011-05-05,43.1547222,-77.6158333,Rochester,NY,triangle,300,three large triangle shaped aircraft +2011-05-05,46.4166667,-117.0166667,Lewiston,ID,fireball,240,3 fireballs around lewiston idaho +2011-05-05,41.85,-87.65,West Chicago,IL,light,120,white light zigzagged, came down, went up, headed north until out of sight +2011-05-05,32.1727778,-99.8075,Ovalo,TX,oval,20,Hovering, illuminated, white oval gradually disappears +2011-05-05,36.1988889,-115.1166667,North Las Vegas,NV,light,60,White light over N. Las Vegas, NV. ((NUFORC Note: ISS passed overhead here at 20:30 hrs. PD)) +2011-05-05,39.0305556,-97.5938889,Bennington,KS,light,120,An obj. that looked like a bright star, slowly descended straight toward the ground, slowly faded.((NUFORC Note: ISS over-flight. PD) +2011-05-05,28.565,-81.5863889,Winter Garden,FL,triangle,120,triangular shape and extremely fast +2011-05-05,30.0266667,-95.8441667,Hockley,TX,light,15,Bright bluish/white light, upon extinguishing reveals tiny dark red and dark green lights, high altitude, silent +2011-05-05,43.5408333,-116.5625,Nampa,ID,triangle,300,I was taking my evening walk in a westernly direction when I noticed a very bright light in the northwest. The light was many times bri +2011-05-05,39.7530556,-74.2233333,Barnegat,NJ,unknown,300,two red blinking lights moving very slowly than dissappeared +2011-05-05,45.3194444,-93.2022222,East Bethel,MN,circle,7200,Green circle light, that emited yellow and red colors, stayed fixed in sky for two hours. +2011-05-05,43.55,-96.7,Sioux Falls,SD,chevron,120,Three brillant white lights going one direction and stopping and two red chevron shaped objects going near opposite course +2011-05-05,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,1800,This is the third time I have experienced this phenomenon within the past year or so………today is May 5, 2011…… time from 11:20-11:50 p.m +2012-05-05,40.7763889,-73.4677778,Plainview,NY,fireball,120,Other worlds ARE,watching!!!! +2012-05-05,44.0663889,-73.2161111,Weybridge,VT,sphere,300,Three orbs flew over the road - maybe 30 seconds apart. An airplane enroute to BVT was flying in from SSW. As it got closer it became +2012-05-05,30.4941667,-92.4175,Eunice,LA,oval,300,White oval craft appears out of strange black cloud. +2012-05-05,37.8716667,-122.2716667,Berkeley,CA,oval,300,Low-altitude red-orange orb slows down, then recedes to the size of a star and disappears. +2012-05-05,32.2216667,-110.9258333,Tucson,AZ,fireball,300,Walked outside to see super moon & saw 1 first, almost looked like a plane on fire was low no sound -another followed when 2 of us were +2012-05-05,38.8338889,-104.8208333,Colorado Springs,CO,other,420,Box like saucer hovers and flies silently over Colorado Springs only a couple thousand feet above my head. +2012-05-05,33.3527778,-111.7883333,Gilbert,AZ,triangle,5,Fuzzy dim cloud moveing South to East, it passed in front of moon then could see a physical triangle shape +2012-05-05,40.6233333,-79.73,Natrona Heights,PA,sphere,600,Witnessed 5 orange/yellow glowing fireballs in Natrona Heights, PA +2012-05-05,33.8358333,-118.3397222,Torrance,CA,triangle,300,Black, silent, triangular, opaque object moving slow over los angeles +2012-05-05,42.7158333,-78.8297222,Hamburg,NY,light,30,A pale green light with short white tail crossed over I-`90 going north. +2012-05-05,44.8352778,-69.2744444,Newport,ME,circle,240,Strange lights that we cant explain as known aviation +2012-05-05,43.6136111,-116.2025,Boise,ID,sphere,600,6-8 yellowish orange spheres moving from downtown Boise towards the hills. +2012-05-05,33.3869444,-84.2830556,Hampton,GA,fireball,1800,30 min.long procession of 30 silent,slow moving ,orange fireball craft, going west to east over hampton ga. +2012-05-05,33.3869444,-84.2830556,Hampton,GA,fireball,1800,This is a photo of the last one in formation ,as an attachment to the report i filed from Hampton,Georgia on may 5th.2012 at 10 45 p.m +2012-05-05,28.5380556,-81.3794444,Orlando,FL,oval,600,Numerous bright, orange/red silent, glowing, pulsating oval objects traveling SE to NW for 5 to 10 min +2012-05-05,34.2072222,-84.1402778,Cumming,GA,flash,300,MULTIPLE UFO"S OVER CUMMING GEORGIA +2012-05-05,42.9033333,-78.755,Cheektowaga,NY,circle,60,Red/Orange Fireball south of Buffalo +2012-05-05,34.2647222,-118.5222222,Granada Hills,CA,oval,300,L.A. WESTERN SKY 3 OVAL NEON OBJECT +2012-05-05,39.5533333,-77.9952778,Hedgesville,WV,other,15,05/05/2012 Orange object spotted in Hedgesville, WV that appeared and vanished within 15 seconds at around 11 pm. +2012-05-05,35.7972222,-82.6841667,Marshall,NC,disk,600,UFO orbiting supermoon? +2012-05-05,32.2216667,-110.9258333,Tucson,AZ,changing,1200,Light in tucson sky +2012-05-05,33.9802778,-118.4508333,Marina Del Rey,CA,light,300,Five fiery orbs slowly assend into the sky's of Marina Del Rey +2012-05-06,45.3808333,-122.5936111,Gladstone,OR,circle,180,Ball of light with beam of light coming from it or spot light flowing from west to east +2013-05-05,41.6252778,-87.7175,Midlothian,IL,oval,1800,We wre standing infront of my house on the street i looked to the east and saw three redish orange lights in thenight sky, they were in +2013-05-05,33.7225,-111.675,Rio Verde,AZ,circle,600,Red flashing light the size of a star zig zagging in the sky for 15 minutes before disappearing. +2013-05-05,43.8013889,-91.2394444,La Crosse,WI,light,300,4 or 5 pulsating balls of orange light, not paper lanterns, some kind of formation, hovering. +2013-05-05,42.45,-73.2458333,Pittsfield,MA,triangle,480,Hovering object over Pittsfield, MA. +2013-05-05,42.575,-70.9305556,Danvers,MA,oval,30,Shiny, silver, oval oject hovering 500 feet above ground. +2013-05-05,25.7738889,-80.1938889,West Miami,FL,unknown,10800,Five to six different lights in the sky. Some fixed some moving. I have no idea what they are, but was able to get video of the bright. +2013-05-05,30.2238889,-92.0197222,Lafayette,LA,circle,600,Orange/red slow moving orb over Lafayette, LA. +2013-05-05,26.0108333,-80.1497222,Hollywood,FL,light,300,With group of friends heading south in the intercoastal back in from Atlantic Ocean using the Port Everglades inlet on boat when one of +2013-05-05,33.015,-96.5386111,Wylie,TX,triangle,45,Large triangle over head, white lights in corners, big and fast. +2013-05-05,47.3075,-122.2272222,Auburn,WA,sphere,1200,I was standing outside taking my smoke break at 9:45 pm Sunday night May 5, 2013 in the North side of town in Auburn, Washington. +2013-05-05,30.2669444,-97.7427778,Austin,TX,triangle,10,V shaped craft flew over in and out of clouds clearly visible that the lights were on one craft. 7 lights total with two out on a side. +2013-05-05,36.9886111,-121.8052778,Corralitos,CA,unknown,30,Bright light moving fast above the clouds followed by possible military aircraft. +2013-05-05,45.5236111,-122.675,Portland,OR,teardrop,3600,Firey light, orb flashing red, retro rocket flying backwards. +2013-05-05,35.5066667,-97.7622222,Yukon,OK,rectangle,108,UFO over LDS temple in Yukon, Oklahoma. +2014-05-05,40.0377778,-76.3058333,Lancaster,PA,circle,120,((HOAX??)) Orange light moving in night sky. +2014-05-05,43.4919444,-116.4191667,Kuna,ID,circle,600,Bright Orange light(orbs) 1 multiplied to 8, Moving in all directions and weird patterns went on for 10 minutes until disappered. Loud +2014-05-05,32.6536111,-83.7597222,Byron,GA,circle,3000,Round bright object, changes colors, completely silent and moves like nothing I have ever before. +2014-05-05,38.1041667,-122.2555556,Vallejo,CA,sphere,120,Two small objects flying in formation and what appeared to be an F series fighter plane chasing them. +2014-05-05,21.3069444,-157.8583333,Honolulu,HI,changing,120,Red light with bluish green light around it. Moving unlike any aircraft we have. Changed colors. No sound and hovered very low in kalih +2014-05-05,36.1658333,-86.7844444,Nashville,TN,triangle,300,One light falling splits into three different lights, falling in a triangle formation. +2014-05-05,26.3583333,-80.0833333,Boca Raton,FL,triangle,300,3 objects sighted in Boca Raton +2014-05-05,40.1855556,-75.4519444,Collegeville,PA,disk,180,2 green lights, 2 red lights; one object. +2014-05-05,42.9633333,-85.6680556,Grand Rapids,MI,triangle,5,Triangular craft with three dim orange lights. +2014-05-05,30.3958333,-86.2288889,Santa Rosa Beach,FL,fireball,480,Off of scenic Hwy 30A in Santa Rosa Beach, two orbs (fireballs) hovered stationary for well over 5 minutes. +2014-05-05,26.2708333,-80.2708333,Coral Springs,FL,light,1200,Bright color changing light. +1978-05-06,42.1538889,-88.1361111,Barrington,IL,triangle,600,Very large triangular humming (pulsing) craft with several lights moving slowly +1979-05-06,30.5755556,-90.9530556,Watson,LA,disk,300,observed metallic disk with revolving multi-colored light band hovering over neighbor's field +1979-05-06,30.1763889,-85.8055556,Panama City Beach,FL,light,5400,Five bright lights or glowing oval objects hovered over the horizon south of Panama City Beach, FL, during Memorial Day 1979. +1987-05-06,31.7586111,-106.4863889,El Paso,TX,disk,20,Saw a UFO before my daily run. +1995-05-06,41.6061111,-73.1186111,Watertown,CT,light,120,Strange Hovering Light - Noticed and Approached Us +1996-05-06,40.7141667,-74.0063889,New York City,NY,light,7200,We were followed by 4 dancing lights for over 70 miles +1996-05-06,40.7141667,-74.0063889,New York City (Queens),NY,light,7200,4 light s in formation +1997-05-06,47.6063889,-122.3308333,Seattle,WA,disk,420,Disc shaped object 8000' in SW Quadranttravelling N-S observed in Seattle from cornerof Aurora and Thomas.Object shimmered insunlight a +1998-05-06,47.3075,-122.2272222,Auburn,WA,sphere,720,Heard airplane, looked up and saw silver sphere. +1998-05-06,40.4258333,-89.7791667,Manito (2 Miles North Of),IL,triangle,90,2 unknown flying objects moving, far too complex for a plane. There is no area around where missles would be launched +1999-05-06,41.7797222,-71.4377778,Cranston,RI,egg,3,It flew over the highway +1999-05-06,61.2180556,-149.9002778,Anchorage,AK,disk,90,saucer shaped object intercepted by 2 military jets +1999-05-06,42.8944444,-71.2916667,East Derry,NH,light,90,I was lying down with sunglasses on. I saw a bright light with an aura around it in the opposite direction of the sun. I took my glasse +1999-05-06,35.1494444,-90.0488889,Memphis,TN,other,1,Daylight observation of a pin-point of light in western sky +1999-05-06,37.6422222,-104.0175,Delhi,CO,changing,300,Bright yellow-orange light that morphed into two, then one, then faded in and out before disappearing. +1999-05-06,38.6772222,-87.5286111,Vincennes,IN,circle,45,Bright lights two hung in sky for 45 seconds.....vanished +1999-05-06,34.7463889,-92.2894444,Little Rock,AR,triangle,600,A small triangle craft flew over me and then flew off into a field and looked like it landed in this field. +2000-05-06,34.7205556,-76.9366667,Broad Creek,NC,unknown,60,thought it was a shooting star, traveling east to west. but it made a abrupt 90 degree turn and headed south. then made another 90 de +2000-05-06,42.2222222,-71,Braintree,MA,light,600,A friend of mine in Braintree, Mass. was the observer and reported "sighting" to me. Witness observed very bright light in the West. ( +2000-05-06,33.6411111,-117.9177778,Costa Mesa,CA,disk,4,Looking due west,observing Ursa Major directly aboveƺ disc-like objects entered my field of vision at an extremely high rate of speed. +2001-05-06,36.175,-115.1363889,Las Vegas (70 Miles From),NV,light,3,Driving back to Los Angeles from Las Vegas at 1:20 am, I looked over to my left to admire the stars, and noticed a bright, white light, +2001-05-06,41.6105556,-86.7225,Laporte,IN,other,17,I was in car with friends and saw strange objects in the night sky +2001-05-06,26.0519444,-80.1441667,Dania Beach,FL,rectangle,1200,White cube shaped object:one corner turned to the left (north west) +2001-05-06,41.2097222,-74.6080556,Sussex,NJ,changing,1800,Shiny orange objects seen in Sunset colored sky in New Jersey on May 6 +2001-05-06,47.6063889,-122.3308333,Seattle,WA,other,600,bird of pray? +2001-05-06,34.1397222,-118.0344444,Arcadia,CA,fireball,15,Orange fireball with tail, like shooting star but much larger. +2001-05-06,37.8044444,-122.2697222,Oakland,CA,formation,10,Dim, fast-moving, rapidly-changing formation startles Bay Area satellite observer. +2001-05-06,38.4405556,-122.7133333,Santa Rosa,CA,unknown,10,Low flying craft with 2 huge Lights/Portals near San Franscio, Ca +2001-05-06,47.9791667,-122.2008333,Everett,WA,teardrop,5,Silent light moving fast and low across the sky. +2002-05-06,32.3866667,-83.3547222,Cochran,GA,light,300,While sitting in my vehicle, out of the corner of my eye, I noticed an object moving across the sky, nothing unusual. So I did not pay +2002-05-06,33.6680556,-117.3263889,Lake Elsinore,CA,fireball,60,I saw lights in the sky, after a while they disapeared into the dark stary sky. +2002-05-06,38.6272222,-90.1977778,St. Louis (Kirkwood),MO,disk,180,A saucer that glowed like the moon and was the size of the moon cruised over town at about 25 miles per hour from East to West. +2002-05-06,34.4016667,-86.4491667,Union Grove,AL,circle,15,At 8:40 pm a ball of light appeared for about 8 seconds over the trees in the pasture and then took off at a high speed into the sky. +2002-05-06,41.8097222,-87.9005556,Western Springs,IL,light,7,What seemed to be a satellite, grew to full moon brilliance, faded out, then kept on trucking. +2003-05-06,46.6022222,-120.5047222,Yakima,WA,sphere,5,Green sphere appears to be 1/2 to 3/4 that moon appears seen from yakima, washington +2003-05-06,36.8188889,-76.2752778,Chesapeake,VA,cigar,12,The object was cigar shaped and did not have any wings or rodar. +2003-05-06,38.7297222,-120.7975,Placerville,CA,diamond,600,white diamond shaped object with bright orange lights hovered over placerville from the west, then moved north at very slow pace +2003-05-06,34.2783333,-119.2922222,Ventura,CA,circle,45,My wife and I had just finished eating dinner at a local restaurant. Upon leaving the restaurant and walking to our car we saw three d +2003-05-06,47.3811111,-122.2336111,Kent,WA,flash,180,Bright craft slowly came toward me from over the neighbor's house (thought it was a star at first) +2003-05-06,41.2838889,-81.2241667,Mantua,OH,other,1440,I was at a block party with my husband when i saw a comet looking object in the sky, everyone stoped to gape and many people ran to get +2003-05-06,39.36,-84.31,Mason,OH,other,1440,The object was made out of a silver metal and from far away looked like a shooting star. So my husband and i went outside to watch it. +2004-05-06,45.3325,-93.7458333,Big Lake,MN,diamond,10,Small, burnt orange colored craft paralleled flight path of well-lit helicopter. +2004-05-06,37.725,-122.155,San Leandro,CA,oval,1200,Loud humming noise and oval shape with lights +2004-05-06,43.6136111,-116.2025,Boise,ID,oval,120,blueish grey oval spotted in the air +2004-05-06,41.1772222,-79.7080556,Emlenton,PA,other,3600,It looked like a cluster of fireballs. ((NUFORC Note: Venus. PD)) +2004-05-06,34.0752778,-84.2941667,Alpharetta,GA,sphere,20,White Sphere flying below and at right ange to an airliner. +2004-05-06,35.3733333,-119.0177778,Bakersfield,CA,unknown,360,Object was flashing orange/white lights and moving in circles very slowly and vanished +2004-05-06,35.2269444,-80.8433333,Charlotte,NC,changing,25,Un-earthly object descends from sky +2004-05-06,33.6105556,-95.0525,Clarksville,TX,sphere,600,Objects make transfer in night skies ? +2004-05-06,33.7438889,-90.7247222,Cleveland,MS,unknown,1800,It looked like a bright yellow star flickering b & r and also emitting these b & r lights around it. ((NUFORC Note: Venus? PD)) +2004-05-06,37.0841667,-94.5130556,Joplin,MO,changing,7200,disc shape with faces in middle, bright light changing into different shapes +2004-05-06,33.6305556,-112.3325,Surprise,AZ,light,900,A few months ago I reported seeing lights that I could not explain behind the white tanks mountains west of Phx.To be honest with you I +2005-05-06,34.8697222,-111.7602778,Sedona,AZ,light,300,Erratic lights west of Airport Mesa +2005-05-06,39.0169444,-94.2813889,Blue Springs,MO,unknown,420,Amber-ish burning light shapeshifting into an array of lights moving very in slow motion but fast at the same time.....can't explain it +2006-05-06,28.5380556,-81.3794444,Orlando,FL,formation,600,Corkscrew object seen in the Orlando,Fl skies +2006-05-06,34.8172222,-97.4055556,Maysville,OK,light,30,early morning moving light +2006-05-06,39.8366667,-105.0366667,Westminster,CO,light,15,Lights moving in triangle formation +2006-05-06,31.5544444,-110.3030556,Sierra Vista,AZ,unknown,420,Day light aerial object resembles flying domed skylight +2006-05-06,40.4277778,-74.4163889,East Brunswick,NJ,circle,300,Small circular object silver and black, moves across sky, hovers then disappears. +2006-05-06,42.3833333,-83.2966667,Redford,MI,sphere,900,At approximately 4:30 pm I was just sitting on the deck watching planes and looked up because I saw a commercial liner and I just watch +2006-05-06,26.6402778,-81.8725,Fort Myers,FL,sphere,900,Metalic object of sphereical shape exactly like the object I reported on 4/3/06 in the east 18:30 estimated 60 to 100ꯠ feet 60deg +2006-05-06,27.9011111,-81.5861111,Lake Wales,FL,formation,300,The formation of six lights appeard in Lake Wales, and vanished in about five minutes. +2006-05-06,45.1752778,-121.0802778,Maupin,OR,light,180,My girlfriend and I were camping on the Deschutes river and late one night at roughly 22:00 we happened to be looking up at the stars, +2006-05-06,27.6383333,-80.3975,Vero Beach,FL,circle,30,GROUPING OF AMBER COLORED ROUND LIGHTS ALL IN A HORIZONTAL POSITION, SAME LEVEL +2006-05-06,41.5033333,-74.0108333,Newburgh,NY,light,30,On 5/6/06 at 10:20 PM we spotted a big round ball of light moving swifly across the sky in Newburgh, NY. +2006-05-06,42.4916667,-71.6180556,Still River,MA,light,480,Bright Yellow/Pale Orange Light in the Northwest Sky over the Former Fort Devens +2006-05-06,41.2586111,-95.9375,Omaha,NE,triangle,120,Triangular-shaped, low-flying aircraft hovering over Omaha city street. +2006-05-06,44.05,-91.6391667,Winona,MN,formation,5,Four separate bright white lights traveling across the sky, distort the light from stars as they pass. +2007-05-06,46.8722222,-113.9930556,Missoula,MT,cone,300,Strange object enters atmosphere above Montana causing earthquake when it struck the earth... +2007-05-06,38.6244444,-76.9394444,Waldorf,MD,cigar,300,Hovering cigar shaped object. +2007-05-06,42.2916667,-85.5872222,Kalamazoo,MI,cone,600,A slightly conical black UFO hovered for roughly 10 minutes over Kalamazoo, Michigan. +2007-05-06,40.7141667,-74.0063889,New York City (Queens),NY,oval,2700,Brilliant white orbs, similiar to stars, in the sky over Queens, New York. +2007-05-06,43.0125,-83.6875,Flint,MI,other,480,WATCHED DISGUIESED UFO MANEVUER FOR SEVERAL MINUTES SOMETIMES AS CLOSE AS 100 YARDS +2007-05-06,41.1919444,-75.2516667,Canadensis,PA,changing,300,Silver sphere changed to rocket over PA. +2007-05-06,33.8752778,-117.5655556,Corona,CA,triangle,120,Red triangles and piercing sound in Southern California on 5/6/07 +2007-05-06,33.0197222,-96.6986111,Plano,TX,rectangle,300,Strange hovering object with strobing light and air force jet on pusuite +2008-05-06,38.05,-85.5458333,Mt. Washington,KY,light,30,Mysterious light travels slow, emits brilliant blue light which propels it across the sky, then ascends into obscurity. +2008-05-06,41.7636111,-72.6855556,West Hartford,CT,light,7200,ONE BIG CENTER LIGHT TWO SMALL LIGHTS TO THE RIGHT AND ONE SMALL LIGHT TO THE LEFT AT TIMES THE BIG CENTER LIGHT APPEARED TO HAVE RED L +2008-05-06,42.4908333,-76.2975,Dryden,NY,triangle,30,Larg triangle seen in the sky early in the morning. +2008-05-06,41.85,-87.65,Chicago,IL,changing,600,boomerang shaped object hanging in the air changed shape and looked like a string then metal ball +2008-05-06,41.5822222,-85.8344444,Goshen,IN,oval,240,A few orange flying ovals appear for four minutes after a fireworks show. 500 Lights On Object0: Yes +2009-05-06,45.3894444,-92.8477778,Lindstrom,MN,light,300,Looked like a satellite, but moved in all sorts of different directions at varying speeds. +2009-05-06,34.4838889,-114.3216667,Lake Havasu City,AZ,light,5,Big glowing orange balls in the sky +2010-05-06,40.3933333,-82.4858333,Mt. Vernon,OH,sphere,10,a huge orange ball of light shot across the sky with stealth spped then dissapered +2010-05-06,35.2269444,-80.8433333,Charlotte,NC,oval,720,2 White Oval Balls moving across Charlotte NC sky +2010-05-06,30.3319444,-81.6558333,Jacksonville,FL,triangle,73800,SILENT TRIANGLE SPARKLING LIGHTS INVISBLE CENTER. +2010-05-06,36.6505556,-94.4433333,Anderson,MO,unknown,3600,Possible UFO's hover over Anderson, MO Almost nightly. ((NUFORC Note: Venus? PD)) +2010-05-06,28.2916667,-81.4077778,Kissimmee,FL,triangle,240,At 9:15 pm, saw 2 ufos, 1 behind the other, not far from land. Their lights would go on & go all the way off, white to yellow. +2010-05-06,38.5816667,-121.4933333,Sacramento,CA,light,360,Three bright lights low in the night sky almost equidistant from each other over Sacramento, California. +2010-05-06,42.3416667,-72.5888889,Hadley,MA,light,180,bright amber light over Amherst-Hadley MA +2010-05-06,38.4369444,-82.3772222,Proctorville,OH,light,7200,it was likede it knew we were watching. +2010-05-06,38.2494444,-122.0388889,Fairfield,CA,unknown,120,Gliding green light seen over Fairfield, CA sky on 5/6/10, 23:23...turned yellow as it continued its course out of sight. +2011-05-06,41.6105556,-86.7225,Laporte,IN,oval,1,Bright oval object emerging from tree +2011-05-06,42.4472222,-71.225,Lexington,MA,triangle,25,Triangular tumbling object with red grey shimmering light flying over highway 95 Lexington Mass morning May 6th 2011 +2011-05-06,41.2058333,-76.0663889,Hunlock Creek,PA,triangle,30,Triangular shaped object viewed during daytime hours in Northeastern PA +2011-05-06,39.3077778,-123.7983333,Mendocino,CA,fireball,300,The dogs started barking. I walked outside to find my husband and happened to glance up b/c a light caught my eye. I continued to watc +2011-05-06,34.7302778,-86.5861111,Huntsville,AL,triangle,5,"very aggressive'' +2011-05-06,44.5438889,-73.1483333,Colchester,VT,chevron,180,Orange light arch in Vermont. +2012-05-06,41.3436111,-86.3097222,Plymouth,IN,circle,300,Unidentified flying object, red circle with yellow center floating in the sky. +2012-05-06,33.8358333,-118.3397222,Torrance,CA,unknown,300,A giant bird flying across Torrance. +2012-05-06,42.1686111,-92.0233333,Vinton,IA,triangle,120,Transparent triangular shaped object +2012-05-06,41.7108333,-87.7580556,Oak Lawn,IL,unknown,240,Pilot might of saw what I saw and object flying was maybe just a Chinese Candle or Chinese Latern. +2012-05-06,38.6858333,-121.0811111,El Dorado Hills,CA,light,300,Object moved at a rapid speed in several directions disappereared/reappeared. +2012-05-06,28.6802778,-81.5097222,Apopka,FL,fireball,1800,8-10 Orange Orbs observed by 8 witnesses and later 2 black helicopters arrive +2012-05-06,39.535,-119.7516667,Sparks,NV,light,240,Fire Red Bright Light Over Reno Nevada Moving Fast & Darting Right To Left 05/06/12 9:25PM +2012-05-06,36.5858333,-79.3952778,Danville,VA,unknown,1800,Red green and blue spinning light seen in the sky in front of Orion. 05-06-12. ((NUFORC Note: Sirius?? PD)) +2012-05-06,42.4711111,-76.9277778,Rock Stream,NY,sphere,60,Blue orb shows up in three pictures while taking shots of the moon +2012-05-06,41.025,-87.7138889,Saint Anne,IL,oval,1200,A blue object with circular flashes around it, and a soft hum. +2012-05-06,40.0422222,-87.6386111,Westville,IL,circle,660,3 red flashing ufos in a triangular formation. +2012-05-06,37.0833333,-88.6,Paducah,KY,light,4,Four flashing stobe lights moving quickly in the sky. +2012-05-06,41.5580556,-73.0519444,Waterbury,CT,disk,900,What's flying over the Clock Tower in Waterbury? +2012-05-06,39.6761111,-89.7044444,Chatham,IL,disk,240,11:55 pm over chatham 2 amber lights and a blue sphere +2013-05-06,33.18,-96.4977778,Princeton,TX,teardrop,180,Strafe objects and lights over house +2013-05-06,28.5380556,-81.3794444,Orlando,FL,formation,10,Formation of lights at high altitude moving across pre-dawn sky with lead light followed by three more lights in triangular formation. +2013-05-06,34.1952778,-79.7627778,Florence,SC,changing,180,It was 5:45am I looked up towards the west. There was only one star in the sky just above the tree line. It was very bright and twinkle +2013-05-06,42.575,-71.9986111,Gardner,MA,light,1200,Daylight Star? +2013-05-06,44.8108333,-73.0836111,St. Albans,VT,disk,120,COMPLETE VISUAL SIGHTING. +2013-05-06,43.3813889,-92.1138889,Cresco,IA,triangle,5,Silent and very fast triangular craft that was out of sight within a few seconds. +2013-05-06,47.3225,-122.3113889,Federal Way,WA,fireball,1408,Burning Ball in the sky in Federal Way Washington +2014-05-06,34.8238889,-89.9936111,Hernando,MS,light,15,Almost transparent, yet you could tell solid objects moving extremly fast, like a flash light beam in the night sky the other was chevr +2014-05-06,42.8247222,-83.2647222,Oxford,MI,light,30,Two bright lights moving in formation in sky. +2014-05-06,30.4761111,-88.3422222,Grand Bay,AL,circle,30,Bright red object over a pasture in South Alabama +2014-05-06,34.0141667,-86.0066667,Gadsden,AL,cylinder,600,Strange cylinder shaped object appeared huge in size and illuminating white lights over hwy 278 in Gadsden; disappeared in thin air. +2014-05-06,46.9966667,-120.5466667,Ellensburg,WA,light,300,Orange to red immensely bright circular moving light. +2014-05-06,32.9183333,-80.0222222,Hanahan,SC,diamond,1200,Object was a VERY large area sized diamond with a flashing light on each of the four points. The lights flashed sporadically and the ob +2014-05-06,32.525,-93.75,Shreveport,LA,other,10,Boomerang object spotted +2014-05-06,38.6272222,-90.1977778,St. Louis,MO,fireball,2,Red fireball light orb seen high up in neighbors yard in Maplewood of St. Louis County. +2014-05-06,34.7877778,-82.6925,Liberty,SC,oval,3600,Possible u.f.o. sighting in Liberty, SC. +2014-05-06,28.0833333,-80.6083333,Melbourne,FL,sphere,45,Saw bright orange orb about 1000 feet up about 1/8 to 1/4 miles away moving about 50mph. +1958-05-07,34.1722222,-118.3780556,North Hollywood,CA,circle,432000,A visit by a ufo object by a young child in 1958 +1963-05-07,42.4666667,-70.95,Lynn,MA,disk,21600,05/07/1965; @3:00am lynn,ma essex county usa; two abductees, 8 witnesses; two sauces, 1 burnt field +1975-05-07,41.0333333,-82.0122222,Lodi,OH,light,135,It was about 2:00AM I was seven years old, I look out the window when I herd a noise that was behind the the house it was a round red l +1978-05-07,32.7458333,-96.9975,Grand Prairie,TX,triangle,60,1978 Ufo Grand Prairie Century 4 drive In. +1989-05-07,33.4358333,-86.1058333,Talladega (Super Speedway),AL,rectangle,60,Rectangular object with rounded edges approx 20-30ꯠ ft alt seen above superspeedway +1993-05-07,34.8697222,-111.7602778,Sedona,AZ,formation,1800,numerous UFO's erratically streaming from red rock formation "guarded" by gov't black helicopters +1994-05-07,33.7669444,-118.1883333,Long Beach,CA,oval,1200,I observed the Craft at a close enough distance to know it was not anything man made +1995-05-07,33.4483333,-112.0733333,Phoenix,AZ,formation,1200,formations over phoenix +1997-05-07,34.0194444,-118.4902778,Santa Monica,CA,disk,120,On May 7, 1997 I was looking north to the Santa Monica mountains and saw what I believed to be a helicopter shining its lights down on +1997-05-07,36.5341667,-76.5766667,Corapeake,NC,flash,300,There were three fire balls, one over top of each other, which had three smaller dots around each in a triangular shape. +1999-05-07,40.6588889,-73.0894444,Cherry Grove (Fire Island),NY,changing,300,Object looking like a comet spotted over ocean at Fire Island. +1999-05-07,33.4483333,-112.0733333,Phoenix,AZ,sphere,15,I was taking photo's of Contrails with my Digital camera, taking pictures facing north, east and then to the south when I captured the +1999-05-07,41.1616667,-112.0255556,Roy,UT,changing,1440,On a walk saw a bright light. It was blinking. It moved slowly. It fadded in and out and changed color. Looked like a maple leaf that w +2000-05-07,45.5236111,-122.675,Portland,OR,other,5,seen while walking home from work. +2000-05-07,33.5422222,-117.7822222,Laguna Beach,CA,disk,3600,I usually jog around Laguna Beach in the morning, when all of a sudden I noticed a blinding blue light. As it came closer I noticed it +2000-05-07,39.7788889,-75.5986111,Greenville,DE,other,45,Brilliant Gold object observed through binoculars. Discription would resemble a "Straight Pin" Such as a ball at one end. +2000-05-07,42.2625,-71.8027778,Worcester County,MA,unknown,180,roomate saw three stars in the daylight +2000-05-07,39.6572222,-89.3894444,Edinburg,IL,triangle,300,A triangular object low across the sky +2000-05-07,37.9747222,-87.5558333,Evansville,IN,diamond,10,I spotted an amber colored diamond in the sky that seemed to shrink and fade until I could see it no more. I was looking to the west-no +2002-05-07,47.6063889,-122.3308333,Seattle,WA,other,180,Very unusual "aircraft"..??? +2002-05-07,37.8869444,-122.2966667,Albany,CA,chevron,45,Silent chevron shaped craft flying low over Northern California +2002-05-07,31.1277778,-92.0661111,Marksville,LA,triangle,180,It was a triangle shaped object with lights, hovering over a small airport next to a casino. +2002-05-07,37.775,-122.4183333,San Francisco,CA,changing,5400,Strange, hovering light in the San Francisco night sky - 5/7/02 +2003-05-07,35.8422222,-90.7041667,Jonesboro,AR,diamond,30,Diamond shaped fuselage with multiple red lights, sweepted wings with multiple white lights...amazing! +2003-05-07,34.7744444,-96.6780556,Ada,OK,rectangle,180,Unexplainable +2003-05-07,26.3583333,-80.0833333,Boca Raton,FL,triangle,120,Two objects in the sky were spaced evenly apart. Both were Triangle in shape. Each triangle craft looked like there 3 balls all attache +2003-05-07,34.2283333,-118.5358333,Northridge,CA,cigar,120,3 cigar shaped green flying objects moving from south to north, no way it was +2004-05-07,30.4055556,-86.6188889,Fort Walton Beach,FL,light,15,High speed white trail across the night sky with no sound. But too slow and long to be a meteor. +2004-05-07,34.2072222,-84.1402778,Cumming,GA,unknown,40,I think it could have been a meteor but my partner thought it could have been a UFO it was very bright and traveled across the sky smo +2004-05-07,26.2169444,-80.2261111,North Lauderdale,FL,oval,600,Oval-like shape object approx 10:25pm , row of blinking lights, lights alternated blue and red, while object ismaking a humming sound +2004-05-07,26.2375,-80.125,Pompano Beach,FL,triangle,480,Pompano/Ft .Lauderdale Beach Triangle craft disappears! +2004-05-07,37.76,-89.0772222,Carterville,IL,light,120,Small shining dot flies straight North ((NUFORC Note: Possible satellite. PD)) +2004-05-07,42.2711111,-89.0938889,Rockford,IL,sphere,2496,When the orb disappeared, It was like turning off a light... It was no longer visible. +2004-05-07,38.0491667,-87.2741667,Boonville,IN,sphere,360,Orange illuminated sphere moving west at high speed in a straight line. +2004-05-07,29.9544444,-90.075,New Orleans,LA,light,60,Pulses of light +2004-05-07,42.4363889,-89.3319444,Durand,IL,other,2400,Bright ((NUFORC Note: Venus. PD)) +2004-05-07,29.7630556,-95.3630556,Houston,TX,other,30,three blimp like objects glided in front of our car and disappeared into the trees. +2004-05-07,47.5675,-122.6313889,Bremerton,WA,other,180,at 22:35 i was using my teloscope.i saw a almost rectangular object that had orange lights on it.i saw it for 3 minutes until it took o +2004-05-07,29.4238889,-98.4933333,San Antonio,TX,light,900,wierd things in san antonio +2005-05-07,43.5277778,-71.4708333,Laconia,NH,disk,10,disk over Laconia +2005-05-07,35.2377778,-106.6061111,Corrales,NM,sphere,60,Sphere, cloud high +2005-05-07,36.3133333,-82.3536111,Johnson City,TN,fireball,20,Very bright object in sky. +2005-05-07,40.2066667,-75.1,Warminster,PA,light,2,Looking southeast from Warminster, PA. I saw a bright neon-green light angle toward the ground low in the sky (about a 60 degree angle) +2006-05-07,43.4666667,-112.0333333,Idaho Falls,ID,triangle,60,A BIG TRIANGULAR OBJECT +2006-05-07,27.9091667,-82.7875,Largo,FL,circle,25,round flying object, Largo, FL. +2006-05-07,47.6588889,-117.425,Spokane,WA,disk,300,two obects ,huge ,very high,moving west to east slowly stopped briefly appeared to intercept a smaller object then moved vertically ou +2006-05-07,41.3711111,-75.7352778,Old Forge,PA,formation,1800,UFO Formation over NE Pennsylvania +2006-05-07,41.85,-87.65,Chicago,IL,sphere,60,Brief sighting of globular object at extremely high altitude and speed entering and then leaving atmosphere. +2006-05-07,34.5794444,-118.1155556,Palmdale,CA,unknown,1800,The 3 of us watched the closest object for 30 minutes and noted 4 more farther out and higher up and could not figure out what it was +2006-05-07,38.5630556,-85.5397222,New Washington,IN,unknown,37800,low blinking stars, across the sky from one another. No movement, no sound,very distinct color. ((NUFORC Note: Possible stars. PD)) +2006-05-07,41.5236111,-90.5775,Davenport,IA,light,60,I was sitting on steps leading to my house. I was facing west when I noticed a light moving from a westardly direction that was very hi +2007-05-07,44.6366667,-123.1047222,Albany,OR,triangle,5,We saw something unusual and unforgetable along the river in Albany, Oregon +2007-05-07,41.8458333,-70.95,Lakeville,MA,light,30,Opened door to go to work and in front of my house the craft went just above the tree line and moved e-s-e 10sec-later that night went +2007-05-07,40.7141667,-74.0063889,New York City (Whitestone),NY,sphere,10,White shperical object seen near New York City +2007-05-07,39.0997222,-94.5783333,Kansas City,MO,other,2700,Bright lights seen in Western sky moving very slowly from SW to NE. +2007-05-07,33.7319444,-84.9191667,Villa Rica,GA,unknown,900,2 objects with Pulsating lights changing colors. They hovered in the same spot for about 15 minutes. ((NUFORC Note: Stars?? PD)) +2007-05-07,43.7025,-124.0955556,Reedsport,OR,circle,5,Huge blue light disappears into the trees and other cars blinking there lights at me and truck had his flashers on. +2007-05-07,35.2247222,-88.2491667,Savannah,TN,cigar,60,((HOAX??)) long shiny grey ship moving very fast! ((NUFORC Note: Report from student. PD)) +2007-05-07,45.3841667,-122.7627778,Tualatin,OR,light,2700,lights dancing across sky +2007-05-08,46.3477778,-86.9288889,Chatham,MI,diamond,3600,diamound shape ,strobe lights change colour no sound very fast-stood still over lake emitted white beam. +2008-05-07,41.6216667,-83.7116667,Holland,OH,circle,4,SPOTTED LARGE BALL OF WHITE LIGHT TRAVELING AT SLOWER SPEED THAN WHAT A SHOOTING STAR TRAVELS +2008-05-07,41.1016667,-80.7647222,Austintown,OH,oval,2,UFO over Austintown, Ohio? +2008-05-07,32.7922222,-80.1083333,Johns Island,SC,light,300,Light floating above pasture +2008-05-07,37.775,-122.4183333,San Francisco,CA,light,900,Bright red luminous round light seen moving slowly over SF Bay. +2008-05-07,39.4019444,-75.0397222,Millville,NJ,fireball,6,Fireball misty teardrop shape fell behind a tree line +2008-05-07,32.5630556,-97.1413889,Mansfield,TX,light,900,unidentifiable lights +2008-05-08,34.5025,-84.9511111,Calhoun,GA,disk,240,The craft was amazing with the speed it had, and I sat in shock. +2009-05-07,26.9616667,-82.3527778,Englewood,FL,light,900,Star like objects that change direction flash light,and speed up,and slow down.Almost every night. +2009-05-07,39.6313889,-106.5216667,Avon,CO,disk,15,MUFON/COLORADO REPORT: Low flying disc with flashing lights seen over Avon +2009-05-07,39.6552778,-106.8280556,Eagle,CO,flash,600,MUFON/COLORADO REPORT: Anomalous flashing strobe lights seen over Eagle CO +2010-05-07,43.9808333,-84.4863889,Gladwin,MI,unknown,600,Circles of lights the size of cars over tree tops +2010-05-07,33.4483333,-112.0733333,Phoenix,AZ,changing,7,Moved across the city of Phoenix in just a few seconds. +2010-05-07,37.8044444,-122.2697222,Oakland,CA,unknown,5,First Friday Oakland, CA UFO sighting +2010-05-07,41.8569444,-93.9216667,Woodward,IA,triangle,1500,Triangle shaped object hovering for extended period of time and then finally vanished. +2011-05-07,38.5816667,-121.4933333,Sacramento,CA,other,900,High slow moving ufo over Sacramento heading North. +2011-05-07,40.7686111,-73.7475,Douglaston,NY,triangle,60,Black Triangle object with a Round top or head photographed in the Little Neck area of New York. +2011-05-07,41.85,-87.65,Chicago,IL,circle,120,flying objects near chicago o'hare air port (footage capture) +2011-05-07,45.085,-69.0411111,Charleston,ME,other,80,Two slow moving very bright triangular shaped craft flying over treetops +2011-05-07,33.4483333,-112.0733333,Phoenix,AZ,oval,30,illumnated object traveling at fast rate of speed phoenix az. +2011-05-07,33.4483333,-112.0733333,Phoenix,AZ,changing,1200,Blue UFO Over ASU West +2011-05-08,44.05,-91.6391667,Winona,MN,egg,120,Strange object in night sky +2012-05-07,28.0391667,-81.95,Lakeland,FL,sphere,600,Orange Chinese lantern type orb in sky +2012-05-07,36.175,-115.1363889,Las Vegas,NV,oval,600,Dimly lit, oval-shaped object seen by drivers on highway; it was being pursued by helicopters. +2012-05-07,45.5236111,-122.675,Portland,OR,egg,180,Fireball with black rotating band sighted in SE Portland near Hawthorne 5/5/12 +2012-05-07,35.7913889,-78.7813889,Cary,NC,other,300,White, star-like object at dusk over Cary +2012-05-07,34.2783333,-119.2922222,Ventura,CA,formation,10,Five winged objects in formation flying silently and at extremely high speed. +2012-05-07,40.2986111,-83.0680556,Delaware,OH,circle,120,Circle of lights in Ohio +2012-05-07,47.4061111,-123.1380556,Hoodsport,WA,formation,3600,UFO'S OVER THE HOOD CANAL +2012-05-07,43.0388889,-87.9063889,Milwaukee,WI,diamond,300,Strange bright light which suddenly appeared in the south western sky over lake michigan..near milwaukee. Semblance of lights of a plan +2013-05-07,37.775,-122.4183333,San Francisco,CA,light,2,Flashing lights in the sky at night in sf +2013-05-07,32.8383333,-116.9730556,Santee,CA,disk,120,UFO CAPTURED OVER HAUNTED 1913 BARN +2013-05-07,33.5861111,-86.2861111,Pell City,AL,oval,300,Bright silver object that just vanished in the sky. +2013-05-07,38.4725,-90.8866667,Villa Ridge,MO,circle,120,Fireball in sky. +2013-05-07,39.9830556,-75.8241667,Coatesville,PA,circle,120,Circular object with lights like the points of a star in the front, it made no sound. +2013-05-07,41.5680556,-87.7202778,Country Club Hills,IL,flash,2,Standing on back patio. Looked above. 85 degree angle. Size of a star. Emitted 2 pulsating beams of high intensity white light. Noth +2013-05-07,45.5608333,-94.1622222,St. Cloud,MN,unknown,30,Bright orange object flew north from south-east sky, then disappeared. (St. Cloud, MN). +2013-05-07,41.2794444,-72.8155556,Branford,CT,light,180,White orb over Branford, CT and moving in sky between stars, not behaving like airplane nor shooting star. +2013-05-07,40.7425,-84.1052778,Lima,OH,fireball,300,In the lead were two, then two more side by side, then the last three strung out behind the four. +2014-05-07,42.3313889,-83.0458333,Detroit,MI,fireball,180,Fire balls in detroit sky. +2014-05-07,33.1027778,-86.7536111,Calera,AL,circle,240,Orange/red sphere with blue or green outline or ring. Moved very slowly to the west, then disappeared. +2014-05-07,28.2713889,-82.7197222,Port Richey,FL,unknown,1,Sonic boom denied by military source per McDill AFB, Lt Patrick Gargan. Reports by 911 from Holliday to Spring Hill Fl (about 40 miles) +2014-05-07,37.3394444,-121.8938889,San Jose,CA,disk,30,Black huge wobbling object disk shape going across sky in clouds +2014-05-07,44.6497222,-93.2425,Lakeville,MN,oval,90,((HOAX??)) Oval seen emitting haze, and later, smoke. Also took 2 pictures. +2014-05-07,30.3183333,-86.1302778,Seagrove Beach,FL,fireball,60,Around 8:30 pm I was on the balcony of our condo and saw two fireball type items in the sky east over Panama City. There was no noise a +2014-05-07,36.3302778,-119.2911111,Visalia,CA,fireball,180,Strange, slowly moving fireball like object in the sky. +2014-05-07,30.5475,-88.1752778,Theodore,AL,circle,120,Driving home and entered my neighborhood and saw 2 blinking lights in sky , to close to be airplanes. Then later was outside with 2 oth +2014-05-07,41.4858333,-73.0511111,Naugatuck,CT,unknown,300,Large formation of lights in western sky, flying north to south... +2014-05-07,38.2322222,-90.5627778,Hillsboro,MO,fireball,360,Round slow moving silent ball looked like a candlelight. Northbound. +1972-05-08,45.6625,-110.5602778,Livingston,MT,fireball,4,1972 fireball +1977-05-08,30.4852778,-92.8505556,Kinder,LA,sphere,1200,Multiple Daytime sighting of silver spheres. +1985-05-08,28.5380556,-81.3794444,Orlando,FL,triangle,600,Triangle shaped dark craft hovers and then flys off at phenomenal speed +1987-05-08,30.5780556,-98.2725,Marble Falls,TX,circle,600,Hovering white circle, half the size of the full moon explodes without sound shoots up into the stars and vanishes. +1989-05-08,37.5536111,-77.4605556,Richmond,VA,cigar,300,Cigar shaped object hovered, moved slowly for a short distance, then disappeared in a moment. +1997-05-08,34.3077778,-118.4483333,Sylmar,CA,other,600,Object looking like a shooting star but going upward. Going higher, a beam of light shone from the object until it disappeared. +1997-05-08,38.7072222,-121.28,Citrus Heights (A Suburb Of Sacramento),CA,other,120,Object of an unknown type cruising at a low rate of speed over the area of Citrus Heights +1997-05-08,47.3075,-122.2272222,Auburn,WA,triangle,60,we saw a "V" shaped object from beneath. It had at least 15 lights . no sound, it was traveling north bound right in the air traffic +1998-05-08,40.7141667,-74.0063889,New York City (Bronx),NY,triangle,600,I was waiting for the Bx32 bus with my wife; I looked up at the sky and saw two small triangular-shaped craft flying two-three hundred +1998-05-08,26.3180556,-80.1,Deerfield Beach,FL,light,600,Strange lights sighted over Deerfield Beach, Florida May 8, 1998 at 9:40 PM for 5-10 minutes. +1998-05-08,26.2375,-80.125,Pompano Beach,FL,triangle,900,At night looked like rocket with bright tail launched 200 miles north near NASA but in 7 minutes it was above us. Front nose with brig +1998-05-08,41.6252778,-87.7175,Midlothian,IL,other,300,Huge, black cube shaped object floating in the night sky. +1999-05-08,60.6902778,-151.2888889,Nikiski,AK,other,8,It was late at night, and I was up to my usual again, listening to Art Bell, looking for things in the sky. I had "One of those feeling +1999-05-08,33.7455556,-117.8669444,Santa Ana,CA,changing,1200,Time of day - 10:12am No clouds. No wind. 5/8/99 Santa Ana, Ca. I was on my way to the local stripmall to get an early lunch. Bei +1999-05-08,47.9791667,-122.2008333,Everett,WA,light,600,A intensive bright red light moving extremely slow and silent. +2000-05-08,40.9680556,-74.2961111,Pompton Plains,NJ,disk,600,silver craft seen near high school field . +2000-05-08,34.3988889,-119.5175,Carpinteria,CA,triangle,1800,Black triangular craft cruises over our house three times in one night. Has no sound. Very large. Tiny dim lights around edges. +2002-05-08,41.5380556,-72.8075,Meriden,CT,other,30,Bright object moving almost like a circuliar rocket. +2002-05-08,47.3294444,-122.5788889,Gig Harbor,WA,triangle,10,Triangle shaped object seen west of Tacoma. +2002-05-08,34.0522222,-118.2427778,Los Angeles,CA,cigar,90,Low Flying Cigar shaped object with no lights at night followed by helicopter(s) +2003-05-08,38.3686111,-93.7780556,Clinton,MO,circle,240,circular object with 5 lights seen in Henry county +2003-05-08,29.9544444,-90.075,New Orleans,LA,sphere,8,Silver sphere with wings appeared, disappeared, reappeared, did 90 degree turn, then disappeared. +2004-05-08,41.2375,-80.8186111,Warren,OH,light,300,I seen on the weather station that we had 11thousand ceiling hight and it was bright Light that I seen. It was very fast light and it w +2004-05-08,34.0522222,-118.2427778,Los Angeles,CA,circle,180,Large, ring shaped with inner ring. seen over los angeles +2004-05-08,40.7141667,-74.0063889,New York City (Bronx),NY,circle,7200,4 round UFO's spun very fast in circles and then came togetter and broke apart every 10-15 minutes. ((Advertising light??)) +2004-05-08,38.4247222,-82.2133333,Ona,WV,triangle,300,Three-lighted triangular object, slow moving outside Huntington, West Virginia. +2004-05-08,39.4666667,-87.4138889,Terre Haute,IN,circle,5,FAST AND LOW CROSSING. +2004-05-08,33.8583333,-118.0638889,Cerritos,CA,sphere,300,Circular non transparent object seen hovering inside house +2004-05-08,28.7925,-81.4241667,Wekiva,FL,light,1800,three lights in the sky motionless for an hour +2004-05-08,41.4994444,-81.6955556,Cleveland,OH,light,30,a fast light that stoped in the sky ,a shooting star could not do that said my husband +2004-05-08,45.3566667,-122.8388889,Sherwood,OR,sphere,1200,Sphere cluster release's smaller object's. +2004-05-08,37.7397222,-121.4241667,Tracy,CA,disk,4,15 meters brilliant silver object slowly floats then zips away on a clear day - gone in a fraction of second +2004-05-08,38.8588889,-82.8622222,Minford,OH,other,2700,Disc object with off shooting tubular lights +2004-05-08,33.8352778,-117.9136111,Anaheim,CA,other,1340,It is about 11:29 PM right now, I went outside to check on my car that is parked on the outside curb of my apartment when I saw a star +2004-05-08,40.4555556,-109.5280556,Vernal,UT,triangle,120,V-shaped craft with dimmed "mini-lights" around it. +2004-05-08,39.6133333,-105.0161111,Littleton,CO,formation,45,What appeared to be 3 normal stars began to move in perfect formation, then faded from view. ((NUFORC Note: NOSS satellite. PD)) +2004-05-08,38.1347222,-105.4652778,Westcliffe,CO,triangle,120,Triangle shaped object with3 points of light moved from north to south and then faded away, no noise. +2004-05-08,40.63,-79.9697222,Gibsonia,PA,light,120,While viewing Venus, off to the left and higher, it appeared at first to be a shooting star. It was a very bright white light with no +2004-05-08,39.3269444,-77.6644444,Knoxville,MD,triangle,120,Large triangle of three lights noislessly moves from West to East - occludes stars - fades rapidly. +2005-05-08,33.4483333,-112.0733333,Phoenix,AZ,sphere,10,Small sphere, moving very fast to the west, directly under my aircraft, 3귔 feet +2005-05-08,34.0211111,-118.3955556,Culver City,CA,triangle,20,Boomerang shaped aircraft 10 lights over Culver City, CA +2005-05-08,34.0708333,-112.15,Black Canyon City,AZ,unknown,600,saw a stationary very bright light that looked like a star at a very far distance. As we drove towards it , it started to move very slo +2006-05-08,39.7458333,-75.5469444,Wilmington,DE,triangle,600,Weird Lights +2006-05-08,40.4841667,-88.9936111,Bloomington,IL,unknown,70,Noiseless, motionless, seemingly shapeless object hovers over rooftops around midnight. +2006-05-08,40.4841667,-88.9936111,Bloomington,IL,unknown,70,Series of stationary lights in the sky, unmoving and constant for apprx an hour and ten minutes. +2007-05-08,40.3941667,-74.1175,Middletown,NJ,cigar,120,Seeing is believing but it scary as hell +2007-05-08,40.4847222,-83.9230556,Lakeview,OH,unknown,45,Bright red and white light over Indian Lake, Ohio moving slowly from west to east +2007-05-08,39.3419444,-78.7569444,Romney,WV,unknown,600,2AM dog went crazy trying to hide-- no moonlight in room, then object left and light came back. +2007-05-08,33.7488889,-84.3880556,Atlanta,GA,circle,600,UFO over ATLANTA appears near downtown +2007-05-08,32.7152778,-117.1563889,San Diego,CA,cigar,60,I saw the object whilst flying out of San Diego airport on board the airplane. It was a cigar shape, grey in colour, quite large and +2007-05-08,40.7141667,-74.0063889,New York City (Bronx),NY,sphere,120,Saw a Bluish silver colored spherical object stationary high in the sky over the afternoon sky in the eastern Bronx, New York. +2007-05-08,40.8472222,-73.8552778,Westchester (Northern),NY,disk,30,Small disk shaped object high in sky quickly appeared and disappeared on May 8th at 6:21pm. +2007-05-08,34.698055600000004,-118.1358333,Lancaster,CA,circle,180,bright moving star ((NUFORC Note: Satellite?? PD)) +2007-05-08,40.9483333,-80.6591667,North Lima,OH,formation,20,formation of 5 or 6 lights traveling at great speed +2007-05-08,43.6613889,-70.2558333,Portland,ME,light,300,Bright white light hovering near Portland International Jetport. Object turns bright red and silver, then disappears within seconds. +2007-05-08,40.6408333,-74.3111111,Clark,NJ,cigar,5,white colored cigar shape with a dome or ball shape on the end changing colors and then disappearing +2007-05-08,40.9277778,-73.7522222,Larchmont,NY,light,10,Invisible Space Craft exposing Super Bright Light at the bottom of craft momentarily before hyperspacing away "night sky" +2007-05-08,45.5236111,-122.675,Portland,OR,sphere,600,Blue flash and hovering white sphere in Portland Oregon +2008-05-08,42.9597222,-87.8613889,Cudahy,WI,circle,300,Bright light in Cudahy wisconsin +2008-05-08,33.6694444,-117.8222222,Irvine,CA,circle,600,Circluar shaped object outlined with blue lights flying over Irvine, CA +2008-05-08,36.175,-115.1363889,Las Vegas,NV,sphere,720,Witnessed a small object that actually stopped moving alltogether twice and lasted about 15 minutes before it disappeared out of site. +2008-05-08,34.8697222,-111.7602778,Sedona,AZ,disk,2,Pictures taken while on vacation. Did not see this by human eye. Downloaded picture to computer identifies definite disk shape and addi +2008-05-08,46.7586111,-122.0297222,Ashford,WA,disk,180,two ufo's in skies over mt. rainier state park. +2008-05-08,47.5675,-122.6313889,Bremerton,WA,light,30,White light does a fast U turn! +2008-05-08,33.8302778,-116.5444444,Palm Springs,CA,triangle,120,Black Triangle over Palm Springs California +2008-05-09,36.2741667,-87.0641667,Ashland City,TN,unknown,900,Bright light hovering above tree line +2009-05-08,38.4405556,-122.7133333,Santa Rosa,CA,sphere,300,A sight of an object, with 5 orange lights lined up horizontally, was seen hovering quietly between 500 to 1000 feet above houses. +2009-05-08,37.2152778,-93.2980556,Springfield,MO,fireball,6,UFO orbs appear during intense MCV thunderstorm +2009-05-08,44.3113889,-96.7980556,Brookings,SD,other,8,Strange fast moving silent orbs seen over South Dakota skies. +2009-05-08,39.0216667,-105.7952778,Hartsel,CO,light,3600,WE WERE NIGHT FISHING ON ELEVENMILE RESERVOIR WHEN WE NOTICED A FEW STRANGE LIGHTS ON THE WATER. MY BROTHER AND I HAVE FISHED SINCE WE +2009-05-08,37.8419444,-76.2761111,Reedville,VA,unknown,3600,Hovering lights +2010-05-08,42.2625,-71.8027778,Worcester,MA,cigar,1200,i was sitting outside when i saw 5 cigar craft .... +2010-05-08,42.575,-71.9986111,Gardner,MA,formation,8,Formation of 3 moving South to North over Mass. +2010-05-08,34.0522222,-118.2427778,Los Angeles,CA,flash,1,hablo espanol... pero vi una luz rapida, muy rapida (anormal) aparecio y desaparecio, con un recorrido circular. ojala les sirva e +2010-05-08,43.0333333,-112.4375,Fort Hall,ID,disk,120,silver disk hovering above house +2010-05-08,32.8794444,-111.7566667,Casa Grande,AZ,circle,5,round silver/geenish lighted object drops behind Casa Grande Mountain +2010-05-08,35.2269444,-80.8433333,Charlotte,NC,light,30,Distant light became bright and then dim and then slowly moved to the South. +2010-05-08,37.9061111,-122.5438889,Mill Valley,CA,cigar,5,Signted as I was driving south on Panoramic Hwy. The object Passed from east to west at very high speed 600-800 mph about 15 degrees a +2010-05-08,47.0530556,-122.2930556,Graham,WA,circle,60,Cluster of Orange Lights Moving Rapidly Across the Horizon In Changing Formations +2010-05-08,47.0530556,-122.2930556,Graham,WA,light,900,Several bright orange lights in the sky. +2010-05-08,45.4902778,-93.2475,Isanti,MN,other,20,This was a bright, fast moving object that was in view for about 15 seconds before disappearing. +2010-05-08,38.5458333,-106.9247222,Gunnison,CO,triangle,5,At about 10:30 pm a friend and I, both western state college students were outside and happened to look up at the stars at the same tim +2010-05-08,29.2105556,-81.0230556,Daytona Beach,FL,light,5,star sized moveing speck +2011-05-08,41.6986111,-88.0683333,Bolingbrook,IL,fireball,3600,Red fireballs +2011-05-08,36.3302778,-119.2911111,Visalia,CA,cylinder,180,The green glowing aircraft +2011-05-08,27.7705556,-82.6794444,St. Petersburg,FL,other,90,A seeming military aircraft in the air that does not move and is NOT a helicopter. +2011-05-08,39.5138889,-121.5552778,Oroville,CA,circle,600,White circle of light surrounded by a red halo is spotted by the Sun +2011-05-08,35.0844444,-106.6505556,Albuquerque,NM,triangle,2100,Reddish orange glowing triangular object appearing to viewers 30-35 minutes toward the West. +2011-05-08,33.4502778,-88.8183333,Starkville,MS,circle,120,Orange lit ciruclar aircraft cruising at a low altitude speed moving from south to north, with no audible exhaust. +2011-05-08,39.9880556,-81.1766667,Barnesville,OH,unknown,120,A flight of 12 aircraft flying silently in four V shaped formations of 3 were sighted on May 8 at 21:23 Hours over Belmont County Ohio. +2011-05-08,26.7052778,-80.0366667,West Palm Beach,FL,light,5,ok was outside, noticed the sky looked a bit brighter, then what i thought e=was a star began to move . not fast but unusual because +2011-05-08,41.6361111,-70.9347222,New Bedford,MA,light,300,12 silent amber moving lights were observed under a cloud cover lower than airplanes fly +2011-05-08,37.2255556,-107.5975,Bayfield,CO,diamond,120,Diamond-shaped craft near Bayfield, CO. +2011-05-08,37.9063889,-122.0638889,Walnut Creek,CA,changing,180,2 bright orange lights flying in formation, switching positions, flew apart, straight up then disappeared in the blink of the eye +2011-05-08,41.5775,-71.5380556,Exeter,RI,diamond,1200,A disbeliever firmly becomes a believer after spotting this thing in the sky. +2012-05-08,47.3075,-122.2272222,Auburn,WA,light,10,Weird light hovers and disappears +2012-05-08,44.0463889,-123.0208333,Springfield,OR,fireball,5,Fireball seen over Springfield, Oregon +2012-05-08,39.8005556,-76.9833333,Hanover,PA,sphere,60,Orange glowing orb, bright white light emitting from it, levitating 100 ft off ground and moved out of sight +2012-05-08,45.5608333,-94.1622222,St. Cloud,MN,triangle,120,I was traveling east on I94 at 0500 hours going to work, it was dark just before the sunrise it was cloudy low lying clouds. I notice a +2012-05-08,33.4483333,-112.0733333,Phoenix,AZ,sphere,10,A metallic sphere seen below the airplane while taking off from the Phoenix airport on a commercial flight. +2012-05-08,36.8252778,-119.7019444,Clovis,CA,light,600,Two self- synchronously blinking red lights in night sky +2012-05-08,34.035,-77.8938889,Carolina Beach,NC,fireball,240,3 fireballs observed above the ocean at Carolina Beach, NC +2012-05-08,37.7652778,-122.2405556,Alameda,CA,fireball,600,Small orange ball of fire floating upwards in Alameda, Ca. +2012-05-08,27.3361111,-82.5308333,Sarasota,FL,light,1200,Star like objects moving in a uncontrollable path. One stopped and then kept moving. +2012-05-08,41.7108333,-87.7580556,Oak Lawn,IL,light,50,Small White light being chased by maybe a helicopter +2012-05-08,43.1380556,-93.3791667,Clear Lake,IA,cone,600,BLUE/GREEN/WHITE Flashing Lights - cone shaped in the Northwestern Sky in Northern Iowa. +2012-05-08,32.7252778,-97.3205556,Fort Worth,TX,disk,600,Huge UFO over Fort Worth may 8, 2012 +2013-05-08,39.8016667,-89.6436111,Springfield,IL,triangle,3600,Triangle with with red/blue/yellow lites +2013-05-08,40.015,-105.27,Boulder,CO,egg,300,Slow-moving, silver craft seen over Boulder, CO +2013-05-08,33.5091667,-111.8983333,Scottsdale,AZ,unknown,60,Wispy white presence that jetted off after it perceived me to be watching. +2013-05-08,27.2927778,-81.3630556,Lake Placid,FL,light,300,Two amber lights that extinguished and then pairs of tiny silver lights moving away rapidly. +2013-05-08,45.3575,-84.2238889,Onaway,MI,triangle,60,Saw two jets in pursuit of craft or crafts. +2013-05-08,33.5777778,-101.8547222,Lubbock,TX,light,180,Sighting over Lubbock +2013-05-08,42.5158333,-73.6105556,Nassau County,NY,circle,300,Saw an orange-yellow circular glowing light in the sky +2013-05-08,33.7222222,-116.3736111,Palm Desert,CA,changing,30,Formation changing, oval mass of white dots, rapidly moving across the night sky. +2013-05-08,39.1647222,-122.9094444,Upper Lake,CA,light,3600,Very bright red light Hovering in the south horizon.glow very bright red then dim out and random secondary flashes of red +2013-05-08,36.7602778,-81.8630556,Meadowview,VA,triangle,600,Triangular with chasing lights. +2013-05-08,38.7694444,-90.7288889,Dardenne Prairie,MO,teardrop,10,One red/orange bright light moving out slowly in a teardrop formation and then leaving flickering trails. +2014-05-08,35.1494444,-90.0488889,Memphis,TN,rectangle,900,Standing at my window around 0:00 brilliantly lit objects the size of aircraft carriers, passed by, one by one. +1981-05-09,33.5091667,-111.8983333,Scottsdale,AZ,fireball,14400,An orange fireball above our backyard +1982-05-09,40.1672222,-105.1013889,Longmont (South Of),CO,disk,180,Hovering saucer +1993-05-09,34.1425,-118.2541667,Glendale,CA,light,30,we saw these lights many years ago never thought there was a ufo website.my friend told me about this one started looking on the site c +1993-05-09,39.5297222,-119.8127778,Reno,NV,cigar,300,looking directly east, saw object slowly moving north from south, stop, drop 3 fireballs, slowly moved south and with no hesitation, to +1997-05-09,36.175,-115.1363889,Las Vegas,NV,light,300,Set of 7 or 8 orange lights moving silently at airliner velocity, size and altitude over Las Vegas Nevada +1997-05-09,33.4483333,-112.0733333,Phoenix,AZ,light,180,6-8 lights were seen flying in formation s.of phoenix. They would cluster, form V shapes, inverted Vs, cluster in a stationary loation. +1999-05-09,38.4655556,-123.0077778,Monte Rio,CA,light,210,bright orange light steady from south to north30 seconds later same thing from west to east no noise no sonic boom.appeared to be well +1999-05-09,40.6186111,-80.5775,East Liverpool,OH,disk,120,it was on mother's day of 1999, on my way home from my mother's house. i was on route 11, the exit before beaver creek state park. on +2000-05-09,33.7747222,-84.2963889,Decatur,GA,sphere,3,brilliant object fell to earth in W/SW sky at a very steep angle. appeared similar to a meteor falling, but was far too large +2000-05-09,34.6086111,-98.39,Lawton,OK,sphere,10,Husband and I were driving on the interstate near the Deyo, OK. Exit sign..saw that sign a few minutes after our UFO incident, made it +2000-05-09,41.025,-80.7611111,Canfield (Oh/Pa Border),OH,disk,300,Observed a black saucer shape in the sky just above the horizon. +2000-05-09,33.9533333,-117.3952778,Riverside,CA,circle,85,fast moving unblinking silent light raced across the sky. +2000-05-09,30.9469444,-97.5383333,Salado,TX,other,240,we saw what looked like stars exactly, but were moving, very high, fast and slow, eratic movememts, backwards, zig zag. no way were air +2001-05-09,33.0738889,-106.0180556,Tularosa,NM,light,600,A light that changed color, that moved at a high rate of speed and hovered, that was silent. +2001-05-09,43.9125,-88.0355556,Kiel,WI,flash,1800,Pairs of orange flashing lights in the western Wisconsin sky. +2001-05-09,47.1302778,-119.2769444,Moses Lake,WA,triangle,30,Large, triangular formation of lights witnessed over the Grant Co. Intl. Airport. +2001-05-09,42.0347222,-93.6197222,Ames,IA,light,600,Four lights ascending, sitting stationary for awhile, then moving NE and disappearing +2002-05-09,41.1569444,-83.4169444,Fostoria,OH,cigar,3,I saw this type and color in 1967 +2002-05-09,40.7230556,-113.2888889,Knolls,UT,light,3600,ON I80 HEADED EASTBOUND--SALT FLATS AREA-- BEAMS OF LIGHT OR ENERGY COMING FROM A STATIONARY BRILLIANT STAR-LIKE SHAPE 200 FEET ABOVE +2002-05-09,37.0833333,-88.6,Paducah,KY,rectangle,2,The observation occurred in bright daylight in the afternoon. I was traveling north in a vehicle at 5 mph and observed a meteor-type fa +2002-05-09,42.2194444,-87.9794444,Vernon Hills,IL,flash,3,STREAK OF FIRE IN AFTERNOON SKY. +2002-05-09,34.0522222,-118.2427778,Los Angeles,CA,light,300,Lights Over Hollywood +2003-05-09,37.775,-122.4183333,San Francisco,CA,triangle,10,Black, Silent, Low Flying aircraft heading east over San Francisco. +2003-05-10,42.1013889,-72.5902778,West Springfield,MA,other,660,It was a clear, sunny day, the sky was blue and there were no clouds. As I was driving along, the sun glinting off something metalic ah +2004-05-09,38.4363889,-122.8686111,Graton,CA,triangle,4,Triangular Lights +2004-05-09,39.0508333,-74.7583333,Stone Harbor,NJ,teardrop,600,object dropped into the ocean, only to reappear ,and then go up behind the moon +2004-05-09,38.6272222,-90.1977778,St. Louis,MO,cylinder,900,shinny, cylindrical object seen above St Louis, Missouri +2004-05-09,40.0438889,-75.3880556,Wayne,PA,disk,240,Rotating Disc seen over Southeast, Pennsylvania +2004-05-09,33.4222222,-111.8219444,Mesa,AZ,circle,240,STATIONARY OBJECT, RED, GREEN LIGHTS, NOW AND THEN ((NUFORC Note: Venus or Sirius. PD)) +2004-05-09,43.2127778,-75.4561111,Rome,NY,triangle,180,triangluar shaped lights +2005-05-09,40.2013889,-77.1891667,Carlisle,PA,chevron,180,I was sitting on the front porch, not able to sleep. My dog was with me. Suddenly my dog became very agitated and seemed to want back i +2005-05-09,39.8022222,-86.2672222,Speedway,IN,unknown,120,No stealth interaction +2005-05-09,30.2669444,-97.7427778,Austin,TX,cigar,2,Long line of green rectangular lights in the hills of southwest Austin +2006-05-09,37.3797222,-122.1363889,Los Altos Hills,CA,light,1200,apparent aircraft develops comet-like tail which grows steadily, eventually losing its fan shape, becoming a luminous cloud +2006-05-09,37.3394444,-121.8938889,San Jose,CA,light,120,An artifically created cloud masks a bright light, then light and cloud disappear. +2006-05-09,39.1405556,-121.6158333,Yuba City,CA,light,300,bright lighted aircraft forms a cloud and disapears! +2006-05-09,36.0625,-94.1572222,Fayetteville,AR,cigar,600,A red cigar-shaped UFO with a glow around it flys up into the sky +2006-05-09,46.4166667,-117.0166667,Lewiston,ID,triangle,600,3 sets of lights (changing color) in a triangle formation moving slowly over Lewiston valley. +2007-05-09,43.7025,-124.0955556,Reedsport,OR,triangle,300,Hovering object above the trees, with strobe like lights +2007-05-09,42.7341667,-90.4783333,Platteville,WI,light,300,Bright light flying west to east at varying speeds. +2007-05-09,43.7730556,-88.4469444,Fond Du Lac,WI,diamond,15,5-9-07 diamond shape object with yellow lights was seen for 15 seconds in fond du lac wi +2007-05-09,47.7425,-121.9844444,Duvall,WA,flash,1,A streak of light grew brighter, then disappeared leaving a faint trail of smoke into the near horizon. +2007-05-09,38.8816667,-78.5061111,Woodstock,VA,light,15,Bright white stationary light resembling a star overhead slowly faded to a pinpoint. ((NUFORC Note: Iridium satellite? PD)) +2007-05-09,34.9247222,-81.0252778,Rock Hill,SC,other,10800,Total of 5 red/green/white flashing objects seen over a 3+ hour period. All were stationary! +2007-05-09,39.4380556,-99.2647222,Stockton,KS,light,259200,30 objects in an hour. +2007-05-09,33.6694444,-117.8222222,Irvine,CA,circle,300,Blue circle lights over Irvine campus +2008-05-09,35.0844444,-106.6505556,Albuquerque,NM,unknown,15,Im not too sure on the time a hour or two after nightfall. So maby 10=11pm. I was in back yard smoking and looking into the south west +2008-05-09,41.926944399999996,-73.9977778,Kingston,NY,diamond,1500,New sightings in the Hudson Valley, NY. +2008-05-09,42.2508333,-84.2130556,Grass Lake,MI,other,600,Square shape, bright lights +2008-05-09,48.1988889,-122.1238889,Arlington,WA,unknown,180,3 dark spots in sky flying in formation, turned into 4 and dissappeared +2008-05-09,42.6072222,-83.9294444,Howell,MI,light,34,I was watching tv when I saw two different lights one yellow and one red, as I stood up to look at it, my brother said "You see it too. +2008-05-09,26.1416667,-81.795,Naples,FL,rectangle,15,Square craft right over our car about tree top height from us!! +2008-05-09,46.0647222,-118.3419444,Walla Walla,WA,light,90,Bright aqua light seen hovering then moving at high speed not more than 100 feet above ground level. +2008-05-09,40.015,-105.27,Boulder (Gun Barrel Subdivision),CO,disk,64,The object made no noise, had no markings, and was not made in this world. +2008-05-09,34.3916667,-118.5416667,Santa Clarita,CA,triangle,600,Triangluar object with red lights on the corners. Moved slowy from North West to South East over Walmart Parking lot in Canyon Country. +2009-05-09,33.4936111,-117.1475,Temecula,CA,circle,14400,Southern California Bright Light/ UFO? Early Morning. +2009-05-09,38.5816667,-121.4933333,Sacramento,CA,changing,3600,clear night sky, bright object, changing shapes and moving quickly in every direction with no pattern. ((NUFORC Note: Star?? PD)) +2009-05-09,39.5297222,-119.8127778,Reno,NV,oval,1200,A shimmering dot like object seen thru binoculars at approx 45 degrees moving right-left eradically in field. +2009-05-09,32.2216667,-110.9258333,Tucson,AZ,circle,1800,Three Shinny objects spotted over Tucson AZ +2009-05-09,36.9786111,-76.4283333,Newport News,VA,triangle,180,Triangle craft with flashing red light flew out of a storm over newport news int'l airport VA. +2009-05-09,40.1044444,-74.9516667,Bensalem,PA,flash,900,Satellite Debris Perhaps? +2009-05-09,48.0152778,-122.0625,Lake Stevens,WA,light,180,Bright light travels across sky, dims, and flys into space. +2009-05-09,42.0983333,-76.0497222,Endicott,NY,light,60,Light darting at angles at night +2010-05-09,35.1494444,-90.0488889,Memphis,TN,light,5400,On Friday, the sky was really dark as if it was going to storm. Around 12:00 midnight, I heard winds blowing hard against my bedroom wi +2010-05-09,41.9444444,-71.2861111,Attleboro,MA,disk,120,UFO formation over Attleboro plaza +2010-05-09,36.0997222,-80.2444444,Winston-Salem,NC,other,300,Motionless winged black aircraft +2010-05-09,39.3897222,-74.5244444,Pleasantville,NJ,light,900,Lights in the Sky +2010-05-09,39.3897222,-74.5244444,Pleasantville,NJ,light,900,Star-like object in the sky. +2010-05-09,40.7933333,-77.8602778,State College,PA,flash,3600,Stationary blinking light +2010-05-09,38.2494444,-122.0388889,Fairfield,CA,triangle,35,Boomerang UFO +2010-05-09,33.1191667,-117.0855556,Escondido,CA,diamond,120,an orange diamond shape hovering in made air for a while swaying from side to side. then it just fades away without making a sound. +2010-05-09,33.7380556,-81.0980556,Swansea,SC,light,900,Bright white light that went below treeline close to Swansea S.C. +2010-05-09,33.4486111,-84.455,Fayetteville,GA,other,180,Two lights seen traveling from southwest to northeast over my location in Georgia at extreme altitude. +2011-05-09,40.5638889,-122.2377778,Palo Cedro,CA,unknown,6,That was when we saw 10-12 lights we have never seen before. All in a line, all red. We only saw it for 6 seconds +2011-05-09,38.5816667,-121.4933333,Sacramento,CA,disk,120,Fast white light in Sacramento sky off of Interstate-5 +2011-05-09,39.9880556,-81.1766667,Barnesville,OH,teardrop,300,after personal investigation by observer it was determined that sky lanterns were the objects observed as on Nov. 1st it was confirmed +2011-05-09,42.9511111,-123.3630556,Riddle,OR,rectangle,900,Very large craft with five large lights moving slowley over ridge line, with out any sound of engines. +2011-05-09,33.2197222,-82.7033333,Mitchell,GA,other,20,Balls of light appeared and quickly spilt in half and disappeared +2011-05-09,39.1233333,-122.8472222,Nice,CA,light,900,Flashing Light Sighting 5/9/11 in Nice (Lake County) CA +2011-05-09,37.1316667,-80.5766667,Radford,VA,unknown,90,Bright bluish green lights that illuminated the NW sky with no apparent source for the light. +2012-05-09,45.3038889,-93.5669444,Elk River,MN,cross,180,Clear, sunny afternoon, no clouds. Was outside doing yard work and looked up to see a white jet flying south over the house, leaving a +2012-05-09,45.0322222,-93.3383333,Robbinsdale,MN,fireball,30,5/9/12 approx 9:15pm sitting in the back yard looking into the Night sky .Guys...I watch the night sky enough to know the difference be +2013-05-09,41.6619444,-86.1586111,Mishawaka,IN,triangle,5,Red light triangle over Indiana +2013-05-09,27.6380556,-81.8241667,Bowling Green,FL,fireball,5,Red/Orange lights followed by white lights followed by storm, followed by satellite or shooting star. +2013-05-09,42.2916667,-85.5872222,Kalamazoo,MI,cylinder,120,Shiny Silver Wingless Pill-Shaped object flying with no trail over Kalamazoo. +2013-05-09,33.5225,-117.7066667,Laguna Niguel,CA,other,600,Two bright reddish orange lights moving slowly over Laguna Niguel. +2013-05-09,38.7838889,-90.4811111,St. Charles,MO,triangle,600,Triangular shaped UFo with 3 lights around it +2013-05-09,34.1952778,-79.7627778,Florence,SC,circle,60,Was outside with my dog. Looked up to view the stars. Noticed something that looked like a dimly lit star moving southeast at a fairly. +2013-05-09,34.2366667,-84.4908333,Canton,GA,oval,10,Black oval craft emitting a orange light trail completely silent. +2013-05-09,40.4405556,-79.9961111,Pittsburgh,PA,circle,300,My friend captured 3 images when leaving my home that evening roughly 45 seconds later. These images show a zoomed organge circled ligh +1949-06-10,61.2180556,-149.9002778,Anchorage,AK,disk,180,Disk encountered operation difficulties and crashed. +1950-06-11,38.2972222,-122.2844444,Napa,CA,disk,120,Saw a circular craft approximately 30 foot in diameter. It was glowing a green/purple rather subdued. I did not like the color. It h +1952-06-10,41.85,-87.65,Chicago (South Suburb),IL,circle,600,My sighting of two objects in Chicago, IL as a pre-teen in the early 50's +1954-06-10,40.3772222,-105.5211111,Estes Park,CO,cigar,300,1953 Estes Park, Colorado cigar shaped craft floating above pine trees on a ranch +1958-06-10,34.0852778,-117.96,Baldwin Park,CA,cigar,300,In 1958, an eleven year old girl sees a cigar shaped saucer hovering near her home. +1959-06-10,41.9163889,-83.3977778,Monroe,MI,unknown,1800,Observed three very high flying objects fly at unusual maneuvers +1960-06-10,39.9522222,-75.1641667,Philadelphia,PA,sphere,4,SPHERE 3 TIMES MOON SIZE, WITH MOVING COLORS WITH-IN IT +1964-06-10,38.4783333,-107.8755556,Montrose,CO,light,420,A father and son driving to work saw intense blue light fill valley. +1964-06-10,41.85,-87.65,Chicago,IL,circle,120,Disc shaped orange in color with darker crater shapes with in it +1966-06-10,35.7330556,-81.3413889,Hickory,NC,disk,1800,DISK SHAPED CRAFT IN SKY +1966-06-10,35.7330556,-81.3413889,Hickory,NC,disk,300,Bright Light in distance over mountains moves in very quickly, then moves slowly over suburban commercial district (Kmart). +1967-06-10,31.7586111,-106.4863889,El Paso,TX,light,900,2 objects dock -stay together 10 minutes then seperate in different directions -gain altitude until out of sight +1968-06-10,41.8088889,-88.0111111,Downers Grove,IL,disk,300,11:00 am, clear sky, three of us saw a disk-shaped aircraft fly by, about as high up as an airplane would be. +1968-06-10,34.1683333,-118.605,Woodland Hills,CA,disk,300,Saucer with dome & windows hovering erratically over residential area. Lit by full moon, totally silent, vanished without trace +1969-06-10,45.5236111,-122.675,Portland,OR,disk,180,WE WERE CLOSE ENOUGHT TO THROW ROCKS AT THEM WE WERE CONCERNED THAT THEY SEEN US I WAS SCARED +1969-06-10,39.0005556,-74.7997222,North Wildwood,NJ,triangle,180,Red Lighted Triangle landing in North Wildwood back bay area +1969-06-10,42.4394444,-83.7438889,Whitmore Lake,MI,light,300,star like object moving in a east to west directions suddenly stops. Watch object for about 30 secounds when a smaller light drops from +1970-06-10,48.1958333,-114.3119444,Kalispell,MT,cigar,1,Cigar shaped, silver object seen briefly over Kalispell, Montana +1970-06-10,38.2027778,-75.6927778,Princess Anne,MD,oval,300,Bright orange disk with vertical stripes, or ribs. Eastern Maryland. +1970-06-10,38.3363889,-75.0852778,West Ocean City,MD,light,60,Sighting to the North of Ocean City, Maryland at about the same date as that in Princess Anne, MD +1971-06-10,37.5483333,-121.9875,Fremont,CA,circle,2,pulsed humming sound, object zips overhead +1971-06-10,38.2872222,-75.6883333,Allen,MD,sphere,900,The ufo was above this radio tower. Me and my mom were watching it. It was about a half mile away as the crow flies. The ufo started t +1971-06-10,36.7416667,-94.3988889,Goodman,MO,disk,300,Metalic saucer hovers over us in broad daylight at around 500 feet low +1971-06-10,43.5391667,-89.4625,Portage,WI,cigar,120,Gray cigar-shaped object hovering +1971-06-10,47.6588889,-117.425,Spokane,WA,disk,300,Sighting of a large metal flying object. The object was metal, flat-bottomed, with a sloped dome in the center. An Air Force jet was +1972-06-10,41.9536111,-73.5111111,Millerton,NY,disk,1200,it desended at a tremendous rate of speed, stopped abruptly above the trees, suddenly a beam of blue white light lit up my car +1973-06-10,38.7838889,-90.4811111,St. Charles,MO,sphere,1200,Bright lights in the sky, 3 or 4 that we watched for some time before noticing in the soybean field right next to our house, a Huge sph +1974-06-10,32.4705556,-100.0125,Merkel,TX,disk,300,Very high daylight disc moving south to north, with no deviation of course or altitude or speed. +1975-06-10,42.6525,-73.7566667,Albany,NY,cigar,300,Albany NY 1975 varified sighting of multicolored flying object capable of high speed manuvers. +1975-06-10,30.6552778,-97.0011111,Rockdale,TX,other,3600,I cannot swear this was a UFO, but would like to compare our "sighting" with others to see what they think. +1975-06-10,42.6525,-73.7566667,Albany,NY,light,60,Bright Light +1977-06-10,27.5155556,-97.8558333,Kingsville (South Of),TX,disk,600,Transparent saucer followed by F-4 Phantoms. ((NUFORC Note: May not be a serious report. PD)) +1977-06-10,37.9577778,-121.2897222,Stockton,CA,disk,1800,I saw a saucer shaped craft that defied aerodynamiccs as we know it. +1977-06-10,28.8105556,-81.8780556,Leesburg,FL,other,120,My Cousin and I were behind her home in Florida. The home sat near a lake that was surrounded by tall pine trees. We were cleaning fish +1977-06-10,38.4405556,-122.7133333,Santa Rosa,CA,chevron,300,A very large boomerang shaped object very rapidly approached us,hovered less than 100 ft over a house then accelerated off into the nor +1977-06-10,41.9294444,-88.7502778,Dekalb,IL,other,600,I was 10 yrs old, it has bothered me since childhood as I am now 35...Please don't think I'm crazy but during the night of (summerish 7 +1978-06-10,31.7416667,-100.2858333,Tennyson,TX,flash,2,Astonishingly fast moving light. +1980-06-10,36.1480556,-98.9238889,Seiling,OK,circle,15,930pm looked into night sky and saw 4 circular objects flying through the sky, stop, circle around, and speed off ...disappearing. +1981-06-10,37.5483333,-121.9875,Fremont (Niles Canyon),CA,diamond,300,I saw two diamond shaped craft slowly descending vertically, disappearing behind the hill on the other side of the canyon. +1981-06-10,26.0108333,-80.1497222,Hollywood,FL,oval,30,A silent, slow moving oval craft followed my four diamond shaped objects. +1982-06-10,36.0725,-79.7922222,Greensboro,NC,sphere,600,Observed objects passing along the banks of city reservoir +1982-06-10,32.6858333,-117.1822222,Coronado,CA,egg,3,Two objects, high altitude, high speed, egg shaped, white aura, flew from edge of horizon to center vision then shot out into space. +1984-06-10,39.8630556,-84.3605556,Clayton,OH,disk,25200,saw 2 ufo's,lost 6 hours time. +1985-06-10,29.6513889,-82.325,Gainesville,FL,cigar,360,It was cigar shaped (looked like an airplane with no wings), as long as a football field, made no sound, had a large light near the fro +1986-06-10,39.1369444,-76.6986111,Severn,MD,triangle,120,myself and another person witnessd what appeared to be a glowing boomerang fly directly overhead of us with no sound or lights. +1987-06-10,37.0841667,-94.5130556,Joplin (Vicinity),MO,disk,900,Saucer with lights within yards of us at a truck stop at Oklahoma state line for 15 minutes. In June 1987. +1988-06-10,42.1033333,-76.2625,Owego,NY,disk,120,Large Shaped disk, redish flame around disk. +1988-06-10,44.8547222,-93.4705556,Eden Prairie,MN,light,30,Woke up at 300 am , compelled to go over to window, bright star light approaches windowshade. +1988-06-10,33.7488889,-84.3880556,Atlanta (North Of, Highway 85),GA,other,180,The craft was shaped like a dumb-bell +1988-06-10,30.4211111,-87.2169444,Pensacola,FL,light,60,UFO's that looked like stars moving quickly. +1988-06-10,41.2586111,-95.9375,Omaha,NE,oval,480,U.F.O hovering over trees in Nebraska +1991-06-10,40.7258333,-73.5147222,Levittown,NY,circle,300,My Mother her boyfriend and myself seen a spaceship like the one from Close Encounters of the 3rd kind hovering for like 5 minutes +1992-06-10,29.7630556,-95.3630556,Houston,TX,chevron,600,it had about 6-8 red rights along the wings, no movement (stationary in one spot)above apt complex, look like a stealth bomber but larg +1994-06-10,43.1911111,-96.0055556,Boyden,IA,flash,1,A flash of bright light on a dark night. +1995-06-10,41.7561111,-124.2005556,Crescent City,CA,oval,1200,there were two they were around us red white blue lights acting agressive got whithin a quarter mile of home and they turned around +1995-06-10,40.7141667,-74.0063889,New York,NY,triangle,10,Boomerang or Triangular 5 Blueish White Lights. +1996-06-10,44.8261111,-68.6938889,Eddington,ME,triangle,240,Triangular shaped UFO with blue lights hovering above field off of Route 46 in Eddington, Maine. +1996-06-10,33.6102778,-114.5955556,Blythe (North Of),CA,sphere,120,Orange luminescent globe hovering in desert sky then moving at the speed of a meteor. +1997-06-10,44.8352778,-69.2744444,Newport,ME,disk,300,Silver saucer with white flashing lights flew overhead +1997-06-10,40.7141667,-74.0063889,New York,NY,other,0.5,Extremely Fast and Small Flying Straw +1997-06-10,35.9605556,-83.9208333,Knoxville,TN,triangle,60,Myself and a friend was traveling north on whittle springs roads. As we approach the stop at the corner of edgewood. We both notice thi +1997-06-10,43.1547222,-77.6158333,Rochester,NY,triangle,900,another person and i were driving home on a semi - unoccupied road. i noticed a strange glow, an almost greenish light in the sky, in a +1997-06-10,38.2541667,-85.7594444,Louisville (Directly Over Metropolitan Area),KY,other,40,I was riding parallel to downtown Louisville on the Indiana side of the Ohio river. Was In "Floyds knobs" in New Albany, Ind....looking +1997-06-10,39.7555556,-105.2205556,Golden (I-70 E, By Exit For),CO,light,120,I70E Golden, CO exit. Lg bright object sped to ground. Maybe a minute later I saw a bright flash of light(it crashed?) +1997-06-10,40.9025,-76.2088889,Zion Grove,PA,light,10,I saw a bright light in the sky which moved faster than anything I have ever seen. +1998-06-10,41.85,-87.65,Chicago,IL,circle,2100,Three pearl like or chrone pin ball like objects in figure eight formation in sky +1998-06-10,35.405,-97.1625,Newalla (Canada),OK,other,60,Fast, tiny, lights, glowing not giving off light like a flashlight. +1999-06-10,43.3052778,-112.1822222,Firth,ID,disk,900,I was awaken by a humming sound, so I got up and walked to the window and saw two bright flying objects. +1999-06-10,41.0855556,-73.8588889,Sleepy Hollow,NY,circle,120,Stationary object about the brightness of a small bright star accelerated across the sky in a straight line. +1999-06-10,37.2152778,-93.2980556,Springfield,MO,light,10,Star-like object traveling very quickly W-E low to horizon just north of Springfield then abruptly turned towards the north-northeast. +1999-06-10,43.025,-108.3794444,Riverton,WY,triangle,120,Large triangle. +1999-06-10,38.485,-78.6252778,Shenandoah County (Over The Town Of),VA,sphere,25,I was looking at the stars as it was a very clear night. I saw what I thought was a star that started to move. As I watched it go acros +1999-06-10,36.0222222,-106.9577778,Cuba,NM,triangle,5,two women witness a triangular shaped craft +2000-06-10,41.7713889,-93.7127778,Polk City,IA,circle,300,Strange circular object seen moving against the wind, making irregular movement and sudden speed bursts. +2000-06-10,30.3319444,-81.6558333,Jacksonville,FL,light,3600,Three lighted objects, with strobing red, green and yellow lights, remained stationary for about 20 minutes before moving to the west. +2000-06-10,44.5236111,-89.5744444,Stevens Point,WI,circle,15,Clear translucent sphere traveling at fifty feet high in day light. +2000-06-10,40.7483333,-75.6122222,Slatington,PA,oval,300,One u.f.o. near the sun released another craft before leaving at a high rate of speed. +2000-06-10,38.2322222,-90.5627778,Hillsboro (Outside Of),MO,circle,900,A bright red circular object was falling slowly down in a straigt line leaving a trail of smoke brhind it. +2000-06-10,33.3527778,-111.7883333,Gilbert,AZ,unknown,600,bright red light with grey/white spheres clustered around it +2000-06-10,33.8536111,-118.1330556,Lakewood,CA,light,8,Single white star-like light traveling from north to south observed for about 8 to 10 seconds before disipating +2000-06-10,40.7258333,-73.5147222,Levittown,NY,cylinder,3900,There were neon green cylidrical shapes doing acrobatical stunts in the south west sky over Nassau county. These green objects would c +2000-06-10,40.4619444,-74.3386111,Parlin,NJ,unknown,4,Yellowish light with sound. Lasted for 3-4 sec. +2000-06-10,34.0194444,-118.4902778,Santa Monica,CA,light,15,A bright light traveling at Great Velocity from the south to the north over the ocean off the coast of Santa Monica Pier. +2001-06-10,34.0555556,-117.1816667,Redlands,CA,circle,120,orange ball drops tiny orange lights +2001-06-10,39.7458333,-75.5469444,Wilmington,DE,circle,10,Circular Shadow seen above Wilmington De on 6-10-01 +2001-06-10,42.6627778,-82.8425,Chesterfield,MI,disk,5400,A PACK OF WHITE BALLOONS +2001-06-10,33.3452778,-110.4525,San Carlos,AZ,light,1800,Bright Light seen in circular form over the eastern sky in AZ am. +2001-06-10,27.7705556,-82.6794444,St. Petersburg,FL,disk,300,disk slowly moving laterally and then hovering with white light. +2001-06-10,33.8463889,-118.0458333,La Palma,CA,light,3600,Me my wife and daughter went outside to the jucuzzi. My daughtersaid she saw something in the sky. We looked and all saw what seemed to +2001-06-10,46.6541667,-120.5288889,Selah,WA,unknown,120,I saw six stationary white-yellow lights high in the sky on I-82 outside of Selah, Wa. +2001-06-10,61.2180556,-149.9002778,Anchorage,AK,egg,900,Egg has other egg +2001-06-10,41.4294444,-88.2286111,Channahon,IL,triangle,120,Right Triangle +2001-06-10,36.2613889,-90.9711111,Pocahontas,AR,circle,120,silent Ball of light very high in the sky +2001-06-10,38.8516667,-94.3436111,Greenwood,MO,triangle,60,A friend and I were talking about satilites and how using your perephial vision makes them easier to spot. I only had to look for abou +2001-06-10,36.8161111,-100.5194444,Beaver,OK,light,30,Bright intermittent pulsing light, horizon to horizon, no sound, maybe orbital or very high object, craft, not airplane? +2001-06-10,41.5791667,-73.4961111,Sherman,CT,light,420,Seemingly high in space the 3 objects looked almost like satelites but appearred to be moving a little faster; moving from N/NW to S/SE +2002-06-10,34.2783333,-119.2922222,Ventura,CA,triangle,45,I was outside late monday night, having a cigarette. standing in my backyard , looking at the stars. suddenly , what i can only describ +2002-06-10,39.4055556,-105.4727778,Bailey,CO,oval,180,I was listening to your show late last night( about 2:30 AM ) while doing my computer work. Before going to bed I went out to check the +2002-06-10,33.1730556,-84.915,Hogansville,GA,egg,1500,"star" seen before darkness, looked with telescope, had arm rotating around it, to slow to be a satellite, the exploded. +2002-06-10,33.6888889,-78.8869444,Myrtle Beach,SC,changing,1800,Brightest, most brilliant lights and silent craft that we have ever experienced and can't explain. +2002-06-10,42.9955556,-71.4552778,Manchester,NH,sphere,60,white sphere over Manchester,NH. Minute duration +2002-06-10,40.8583333,-73.1,Centereach,NY,cone,600,The object seemed to cause the numbness in my hands. +2002-06-10,43.8377778,-123.2377778,Lorane,OR,triangle,600,Black triangle with searchlight west of Eugene Oregon +2002-06-10,34.185,-83.9252778,Flowery Branch,GA,light,4,I WAS FISHING OFF THE BOW OF MY BOAT LOOKING AT THE STARS AND NOTICED ONE OF THE BRIGHTER STARS, DID A U TURN AND TOOK OFF AND DISAPPE +2003-06-10,41.85,-87.65,Chicago,IL,circle,120,I was in the lincoln park area of chicago sitting in a park surrounded by many trees. I looked up to see an object that was about 300 +2003-06-10,34.8638889,-84.3241667,Blue Ridge,GA,triangle,600,Craft hovers out of Blue ridge dam +2003-06-10,39.8016667,-89.6436111,Springfield,IL,sphere,240,4 foot being produces "orb" of bright light and disappears. +2003-06-10,40.2169444,-74.7433333,Trenton,NJ,light,20,seven points of light moving together in the same direction a great speed. There paths criss-crossed +2004-06-10,40.7141667,-74.0063889,New York City (Manhattan),NY,other,1800,Massive UFO over World Trade Center Disaster Area +2004-06-10,35.3847222,-77.9930556,Goldsboro,NC,sphere,120,Silvery grey sphere was spotted over wayne county in North Carolina +2004-06-10,37.9841667,-120.3811111,Sonora,CA,cylinder,300,Cylindrical UFO Videotaped over Sonora, CA +2004-06-10,41.6072222,-81.0505556,Montville,OH,changing,300,We have experiance numerous sightings over the pasture. The objects vary in speed shape and formation. +2004-06-10,38.7208333,-75.0763889,Rehoboth Beach,DE,flash,10,UFO 40 miles off Rehoboth Beach Delaware coast +2004-06-10,41.8897222,-95.2319444,Manilla,IA,unknown,30,I saw 6 bright gold lights and then a flash of white light. +2004-06-10,45.5236111,-122.675,Portland,OR,unknown,1500,Weird lights revoling around a center light in the sky ((NUFORC Note: Advertising lights?? PD)) +2004-06-10,44.4097222,-103.5086111,Sturgis,SD,unknown,15,A ufo consisting of 2 white lights moving north easterly over I90 near Piedmont, SD. Sighted on June 10, 2004 +2005-06-10,40.6575,-73.5836111,Freeport,NY,unknown,30,Strange sight on Long Island...daytime +2005-06-10,29.6513889,-82.325,Gainesville,FL,triangle,60,Short sighting of UFO +2005-06-10,34.8525,-82.3941667,Greenville,SC,changing,600,Shiny, rotating object over Taylors June 2005 +2006-06-10,46.0494444,-118.3872222,College Place,WA,light,1200,12 or 13 amber lights seen moving from no. to so. one above the other over a wide area 20 mins. and slowly went out +2006-06-10,40.7544444,-86.3566667,Logansport,IN,light,120,bright white and red light 8 ft off the ground +2006-06-10,42.3966667,-88.1836111,Fox Lake,IL,oval,300,Hazy Red Oval shap with blurred moving light. Static in the sky. Became smaller in shape the dissapeared. +2006-06-10,47.6741667,-122.1202778,Redmond,WA,cylinder,5,appeared to blend in with the sky moving at a high rate of speed as if it was in a stealth mode, transpearent. +2006-06-10,45.5236111,-122.675,Portland,OR,fireball,300,Large glowing red orb +2006-06-10,47.6063889,-122.3308333,Seattle,WA,light,30,2 Bright and VERY slow moving lights show up as brighter than any stars and disappear +2006-06-10,37.6922222,-97.3372222,Wichita,KS,teardrop,5,3 pulsing , flashing lights in Ks +2006-06-10,35.2219444,-101.8308333,Amarillo,TX,unknown,5,Strange object and light +2006-06-10,39.9611111,-82.9988889,Columbus,OH,circle,180,6 circular objects sighted over Columbus, OH +2007-06-10,33.3702778,-112.5830556,Buckeye,AZ,light,180,Basically, it looked like a moving star. ((NUFORC Note: Venus or Jupiter?? PD)) +2007-06-10,39.7683333,-86.1580556,Indianapolis,IN,formation,20,Odd formation over Indy around 3 am +2007-06-10,32,-80.8458333,Tybee Island (Traveling Toward),GA,sphere,20,Blue orb moving slow but steadily across the Georgia coastline sky towards Tybee Island +2007-06-10,43.2341667,-86.2483333,Muskegon,MI,unknown,5,Shape "<". Five to seven lights on each side. Moved swiftly. Silent. +2007-06-10,44.9444444,-93.0930556,Saint Paul,MN,diamond,120,dark diamond/clover shaped objects over Saint Paul at dusk +2007-06-10,32.7152778,-117.1563889,San Diego,CA,circle,2,circular object with bright green illumnation traveled across visible sky from NE to SW in approx. 1 second +2007-06-10,42.5063889,-71.0733333,Wakefield,MA,circle,360,Rapid moving circular pattern of green light +2007-06-10,33.6888889,-78.8869444,Myrtle Beach,SC,triangle,1800,Bright glowing triangular object with red flash moving erratically in a fixed point. +2007-06-10,33.6694444,-117.8222222,Irvine,CA,circle,300,A Circular object with bright green lights hovering over near UC Irvine campus. +2007-06-10,31.5491667,-97.1463889,Waco,TX,light,120,Steady, bright white light in sky over Waco, TX +2007-06-10,41.7108333,-87.7580556,Oak Lawn,IL,light,60,Light buld like candle - Goverment? +2007-06-10,47.7988889,-122.4969444,Kingston,WA,sphere,30,Strange light blinking from the same location then a second sighting of a glowing oval object moving very fast. +2008-06-10,42.7325,-84.5555556,Lansing,MI,unknown,10,4 bright lights and 2 blinking red, dead silent and flying west VERY low very close to Lake Lansing from Wood St. +2008-06-10,41.9266667,-73.9130556,Rhinebeck,NY,cigar,6,Thin black cigar descending below treeline +2008-06-10,33.5833333,-95.9097222,Honey Grove,TX,sphere,240,I was out in my field again by our redneck clubhouse, and I looked up to see a bright, bright spherical object. It was clear sky's and +2008-06-10,40.6677778,-111.9380556,Taylorsville,UT,circle,180,Two multiple UFO sighting in SLC, UT. Two objects in first sighting, three in the second. +2008-06-10,41.7494444,-72.155,North Windham,CT,cigar,180,Cigar shaped ufo , anyone in Windham area seen ufos?? +2008-06-10,29.7630556,-95.3630556,Houston,TX,light,60,Bright White light seen moving across Houston nighttime skies. +2008-06-10,37.1305556,-121.6533333,Morgan Hill,CA,fireball,2,I saw an enormous fireball streak from north to south in the western sky very low on the horizon. +2008-06-10,34.7391667,-112.0091667,Cottonwood,AZ,other,1200,((HOAX??)) We saw the object on the horizon of Mingus Mountain. The light was very bright and then pulsated. +2008-06-10,38.4494444,-78.8691667,Harrisonburg,VA,unknown,15,June 10-12 saw bright light stopping and going;dissapearing while watching; assumed satellites changing direction +2008-06-10,36.3302778,-119.2911111,Visalia,CA,oval,60,Green circular of lights spinning and zipped across the sky in Visalia California within seconds. 500 Lights On Object0: Yes +2008-06-10,29.2105556,-81.0230556,Daytona Beach,FL,triangle,360,Triangle of nine lights over Daytona Beach. +2008-06-10,30.2669444,-97.7427778,Austin,TX,light,60,Pulsating star looking light moving fast and steady. +2008-06-10,41.7955556,-86.0808333,Edwardsburg,MI,changing,7200,Lights over Eagle Lake +2008-06-11,41.9266667,-73.9130556,Rhinebeck,NY,cigar,10,A dark cigar or disc descending, stopping and then going straight down +2009-06-10,33.5311111,-111.9419444,Paradise Valley,AZ,circle,300,Star-looking object beneath the clouds stopping and starting +2009-06-10,36.9880556,-121.9555556,Soquel,CA,triangle,15,Triangle w/three lights flying very low, very fast and silent. Nothing similar that I've ever seen. I'm not crazy. +2009-06-10,38.2088889,-89.0388889,Waltonville,IL,circle,60,UFO fleet witnessed in Southern Illinois, during the summer of 2009. +2009-06-10,47.7883333,-122.3075,Mountlake Terrace,WA,light,900,Bright Dot Hovering on Clear Day +2009-06-10,47.7558333,-122.3402778,Shoreline,WA,light,1200,Slowly pulsing light observed at very high altitude visible in broad daylight +2009-06-10,35.198055600000004,-111.6505556,Flagstaff (Near),AZ,triangle,3600,An extremely bright triangular object was seen hovering in the sky at dusk on Wed. June 15 near Flagstaff, Az. +2009-06-10,33.8536111,-118.1330556,Lakewood,CA,light,120,triangle formation +2009-06-10,30.2352778,-92.9213889,Lacassine,LA,sphere,120,Orb or spear above the an area where airplane had left chemtrails +2009-06-10,33.3941667,-104.5225,Roswell,NM,sphere,30,Single UFO flying at night splits into 2, then regroups back into 1 in skies over the desert near Roswell, NM +2009-06-10,39.3511111,-99.9719444,Penokee,KS,circle,600,Bright light with rotaton lights on outside of round body craft +2009-06-10,36.9469444,-80.9416667,Fort Chiswell,VA,triangle,4,a black triangle flew across the road in front of my truck,white lights under each corner,no strobes or colored lights +2010-06-10,41.7108333,-87.7580556,Oak Lawn,IL,circle,900,Fleets of UFO's 8-15 over Oak Lawn +2010-06-10,37.9747222,-87.5558333,Evansville,IN,circle,300,Extremely bright orange ring with yellow, fiery center seen over Southern Indiana +2010-06-10,40.6027778,-86.8672222,Brookston,IN,oval,120,Fast moving metallic oval object over Brookston, IN +2010-06-10,33.9830556,-118.0958333,Pico Rivera,CA,triangle,180,Lights in sky morphing into a dark triangle which hovered and the then flew off +2010-06-10,39.3488889,-110.8508333,Cleveland,UT,unknown,60,It looks like a static electric engine very quite and I believe it is large and had to be flown by someone. +2010-06-10,40.5852778,-105.0838889,Fort Collins,CO,light,600,Bright Light over Mountains +2010-06-10,38.7422222,-108.0683333,Delta,CO,oval,259200,Light in the sky that can stop moving, move in any direction, and has a ditinct light cycle. +2011-06-10,40.9113889,-73.7827778,New Rochelle,NY,unknown,2,fast, bright light overhead in lower westchester NY +2011-06-10,38.6125,-90.3244444,Maplewood,MO,egg,40,My daughter looked across the parking lot above a strip mall and asked if that was a hot air balloon. It was black or dark and looked l +2011-06-10,39.9777778,-105.1313889,Louisville,CO,fireball,30,Yellow Light with trail of sparks arcing across the sky +2011-06-10,32.5175,-96.8041667,Red Oak,TX,triangle,300,Triangular craft descends alarmingly low over TX +2011-06-10,41.4958333,-87.8486111,Frankfort,IL,light,300,An orange glowing orb floated silently over our home. +2011-06-10,40.5991667,-77.5716667,Lewistown,PA,fireball,20,Observed a bright, fire-ball suspended in the sky with 3 bright red points of light emitting from it. +2011-06-10,41.5619444,-73.6030556,Pawling,NY,fireball,10,It was my birthday party and me and my friends were hanging out on the trampoline outside my house. I am reporting this now because i j +2011-06-10,38.005,-121.8047222,Antioch,CA,circle,240,Orange over livermore Ca, viewed from antioch Ca +2011-06-11,42.3266667,-122.8744444,Medford,OR,circle,240,orange lights over so. Oregon +2012-06-10,38.8338889,-104.8208333,Colorado Springs,CO,circle,300,Interesting lights and movement near the US Air Force Academy +2012-06-10,44.0466667,-86.1786111,Fountain,MI,circle,3600,This is a light in the sky towards the horizon it looks like a dim star kinda hard to see if Ur not looking at it. I noticed it because +2012-06-10,36.0725,-79.7922222,Greensboro,NC,sphere,180,Orange sphere seen near PTI airport +2012-06-10,42.6827778,-89.0186111,Janesville,WI,unknown,60,Extremely fast star like object vertically descending night sky turns red. +2012-06-10,42.3636111,-87.8447222,Waukegan,IL,other,300,White light seen over Chicago, Seen by A Federal Officer +2012-06-10,40.6261111,-76.1238889,Landingville,PA,oval,180,Three people that seen a very brite glowing aircraft shoot across the sky. +2012-06-10,20.8569444,-156.3130556,Makawao,HI,circle,3,Circular orange glowing fuzzy orb traveling from west Maui mountains towards kihei looking from up country.probably over the ocean.no t +2012-06-10,34.1975,-119.1761111,Oxnard,CA,formation,300,We saw 6 red flying thing and dissapear ???? then a Roundish longish black thing up yhen coming down +2012-06-10,40.1052778,-85.6802778,Anderson,IN,light,240,8 red lights approached from the S heading NW +2012-06-10,43.0494444,-88.0075,Wauwatosa,WI,sphere,300,Orange-Red spheres absent of sound flying through the night sky. +2012-06-10,40.4405556,-79.9961111,Pittsburgh,PA,fireball,120,3 orange pulsating fireballs appeared abruptly and faded as if cloaking device used +2012-06-10,40.7608333,-111.8902778,Salt Lake City,UT,fireball,600,Bright orange fireballs east of Salt Lake City, UT +2012-06-10,40.7425,-84.1052778,Lima,OH,circle,120,Bright reddish orange orb shoots across sky with no sound at a high rate of speed at 10:30pm in Lima, oh. +2012-06-10,40.2338889,-111.6577778,Provo,UT,light,120,Solid Orange light flying thru sky +2012-06-10,44.6744444,-93.3788889,Credit River,MN,light,900,A star that wasn't a star +2013-06-10,29.4238889,-98.4933333,San Antonio,TX,disk,20,I watched it until it flew out of sight over San Antonio. +2013-06-10,42.0969444,-79.2355556,Jamestown,NY,fireball,120,Odd shaped "ball" of light came in from W curved NE, not fast, below cloud cover. Silent. Might have discharged very small s +2013-06-10,36.0988889,-78.3013889,Louisburg,NC,circle,5,This sighting of orbs were photographed inadvertently. I was taking a couple a photos, and realized I had photographed an orb. +2013-06-10,33.0766667,-111.7386111,Sacaton,AZ,circle,432000,Four silver, circular shaped objects over sacaton, az +2013-06-10,33.7397222,-116.4119444,Rancho Mirage,CA,flash,25200,Crafts observed of unknown type moving in formation then vanishing, followed by 5 large disk shaped ships. +2013-06-10,35.0844444,-106.6505556,Albuquerque,NM,formation,300,Disk and a small cluster of strange lights. +2013-06-10,28.0833333,-80.6083333,Melbourne,FL,fireball,60,Horizontal fireball +2013-06-10,41.6638889,-83.5552778,Toledo,OH,light,2700,Star like objects +1920-06-11,40.1238889,-86.0133333,Cicero,IN,unknown,60,((NUFORC Note: Probable hoax. Note date. PD)) Strange gathering of objects in the sky. +1963-06-11,44.2022222,-88.4463889,Menasha,WI,circle,3600,Bell shaped craft watched us play kick ball. +1966-06-11,42.2411111,-83.6130556,Ypsilanti,MI,disk,180,Hide and Seek with UFO +1981-06-11,41.8238889,-71.4133333,Providence,RI,diamond,1800,A sighting at a distance of 30 feet +1985-06-11,29.7630556,-95.3630556,Houston (Outside Of),TX,triangle,2400,Object passed over, caused vehicle power failure and animal agitation +1987-06-11,27.3361111,-82.5308333,Sarasota (Myaka State Park),FL,disk,300,state road 72 disk with lights around it flew in a fast horizontal motion. +1989-06-11,38.5816667,-121.4933333,Sacramento,CA,other,180,A cigar shaped ufo seen over apt. building near dusk,made 90 deg. turns and was silent +1993-06-11,38.4105556,-76.4555556,Lusby,MD,other,32400,Possible alien encounter and or abduction in 1993. +1994-06-11,42.1130556,-96.3561111,Macy,NE,fireball,60,SMALL PIECES, TURNED COLORS, AND BROKE INTO THREE PARTS THEN SHOT ACROSS THE DARK NIGHT. +1994-06-11,42.3583333,-71.0602778,Boston,MA,triangle,30,3 Red trianles +1996-06-11,43.8205556,-69.8152778,Phippsburg,ME,disk,900,UFO seen In maine +1996-06-11,47.6063889,-122.3308333,Seattle,WA,other,2700,metalic v - boomerang shaped craft over pugit sound in broad daylight +1996-06-11,35.2225,-97.4391667,Norman,OK,sphere,420,Silver Sphere sighted, Flew off! A USAF Jet circled the area in search of the object. +1997-06-11,39.5297222,-119.8127778,Reno,NV,cylinder,180,U.F.O.s sighted from commercial airplane. +1997-06-11,31.4636111,-100.4366667,San Angelo,TX,other,30,These objects were very close, noiseless, seamless in design, uniform in color, and unwavering in direction and motion. +1998-06-11,37.4716667,-121.1286111,Patterson,CA,disk,300,Just before Dusk I saw, 50 feet from my car a Flying Disk that had two Rings Rotating around its main body. It was trully awesome! +1998-06-11,27.9472222,-82.4586111,Tampa,FL,light,30,I saw a craft that probably was not from earth. +1998-06-11,39.0997222,-94.5783333,Kansas City,MO,light,300,Single white light, no flashing green, red or white light. Traveling from WNW to ESE. Followed about two minutes later by similar lig +1999-06-11,34.7463889,-92.2894444,Little Rock,AR,triangle,300,noticed a large triangle type craft hovering over a shopping center parking lot near some apartments in the early mourning hours in lit +1999-06-11,40.1075,-83.2675,Plain City,OH,light,10,Dash accross the Sky +1999-06-11,41.6055556,-74.1844444,Wallkill (Obj Seem To Be Over Pine Bush About 15 Miles W),NY,triangle,900,a seemingly wedge shaped craft (isoceles shaped presumably) with bright white lights at the points and another in the center. +1999-06-11,42.7883333,-71.2013889,Salem,NH,flash,10,A large flashing strobe, white in color, Saw it standing still high in the sky. Then moved a short distance, stood still for a few seco +2000-06-11,42.2791667,-71.4166667,Framingham,MA,sphere,120,Followed orange glowing object for 3/4 of a mile. +2000-06-11,27.8825,-98.6175,Freer,TX,circle,300,TEXAS MUFON REPORT: A 50 ft. circular object, with red & green flashing lights around it, was seen hovering just off Tx Hwy 44 +2000-06-11,42.5944444,-71.725,Lunenburg,MA,sphere,10,Spherical light of florescent like quality, started with apparent size of penny at arms length, and climbed rapidly at steep angle. +2000-06-11,34.3769444,-82.6958333,Starr,SC,other,120,I saw a robotic-like Dark gray "hummingbird" come up to my kitchen window! +2000-06-11,32.2216667,-110.9258333,Tucson,AZ,other,1200,daytime white \grey shaded irregular object. "floating " then gone approx. 30 -60 feet in size. +2001-06-11,40.3275,-80.5961111,Follansbee,WV,other,10,The craft appeared and looked like a pearl material and had a metal circle on the bottom. +2001-06-11,34.1952778,-79.7627778,Florence,SC,disk,600,We a UFO crashed very close to were we live. +2001-06-11,43.4194444,-83.9508333,Saginaw,MI,triangle,600,Triagular hovering UFO with a rainbow of colors flashing around it has emitted a small ball of light and disappeared over head . +2001-06-11,47.1855556,-122.2916667,Puyallup,WA,circle,180,Orange object with other faster objects breaking away from it ... +2002-06-11,41.0352778,-111.9377778,Kaysville,UT,other,10,Glowing Manta-ray Shaped Object Flies Over Kaysville on a Southwardly Course Parallel to Wasatch Mountains +2002-06-11,38.5816667,-121.4933333,Sacramento,CA,light,120,My cousin and I saw a light that looked like a star that moved very fast accross the sky and then disappeared. +2003-06-11,33.8536111,-118.1330556,Lakewood,CA,rectangle,420,I could not sleep so I got up and went outside standing on the top stair of my back porch, listening to the quiet night, I am facing Ea +2003-06-11,37.5275,-122.5122222,Moss Beach,CA,disk,600,3 objets approched us and somehow my car was mysteriously fixed. +2004-06-11,41.8786111,-71.3830556,Pawtucket,RI,other,600,The aircraft was hovering in the sky and then another one came and got next to it and they jsut dissapeared +2004-06-11,39.4961111,-88.1761111,Charleston,IL,other,120,3FT TRANSLUCENT OBJECT LEAVES 10 FT CONTRAIL +2004-06-11,42.8863889,-78.8786111,Buffalo,NY,oval,60,Saw black oblong oval shaped object which turned into a shining metallic color and dissappeared. +2004-06-11,31.7586111,-106.4863889,El Paso,TX,light,10,very bright star that faded quickly ((NUFORC Note: Flare from Iridium satellite? PD)) +2004-06-11,37.6922222,-97.3372222,Wichita,KS,light,8,Light blue object traveling at unnatural speed across eastern sky. +2005-06-11,42.8863889,-78.8786111,Buffalo,NY,light,60,bright ball of light moving at crazy angles and speeds +2005-06-11,30.3319444,-81.6558333,Jacksonville,FL,disk,1800,Witnessed saucer from afar glowind with white lights, constantly diming and disapearing ever so often. +2005-06-11,42.2711111,-89.0938889,Rockford,IL,light,120,possible satellite, but no scheduled viewing, and the object flash/glowed brightly for a second or two. +2005-06-11,33.6305556,-112.3325,Surprise,AZ,triangle,25,just a black triangle flying fast and silent. southeast direction. from my front yard. just flew into a cloud and never return +2005-06-11,39.6030556,-74.3405556,Tuckerton,NJ,circle,300,so the moon was comming up pretty fast, so we thought +2005-06-11,45.4983333,-122.4302778,Gresham,OR,triangle,1800,Red triangle shaped object with red lights sighted over Gresham ,Oregon. +2005-06-11,45.4983333,-122.4302778,Gresham,OR,fireball,420,Brite red light in sky +2005-06-11,45.4983333,-122.4302778,Gresham,OR,fireball,420,bright red light in the sky +2005-06-11,45.4983333,-122.4302778,Gresham,OR,circle,420,Below cloud line circular bright red glowing object possible small white middle rotating- AMAZINGLY CHILLING! +2005-06-11,45.4983333,-122.4302778,Gresham,OR,light,420,Woman witnesses peculiar red light in the southeastern sky. +2005-06-11,34.8986111,-117.0219444,Barstow,CA,circle,240,orange fireball, shape shifting, moves at ridiculous speed, encountered on wayt to las vegas. +2006-06-11,30.2669444,-97.7427778,Austin,TX,fireball,30,Triangle Formation Spotted over Austin TX +2006-06-11,33.4483333,-112.0733333,Phoenix,AZ,other,1800,I was lying in pooland notices bright cigar shaped object high in sky very birght. Intemittently to south I noticed flashing. Obects +2007-06-11,47.6063889,-122.3308333,Seattle,WA,flash,900,Flashes of light south of Burien, WA. +2007-06-11,37.7272222,-89.2166667,Carbondale,IL,triangle,15,Triangular object moving at an extremely slow speed covered the starlit sky as it flew across local neighborhood +2007-06-11,42.4419444,-75.5980556,Oxford,NY,circle,30,I was sleeping in the downstairs guestroom of our farmhouse since my husband was sick in our bedroom upstairs. In a partial sleep, I he +2007-06-11,32.3122222,-106.7777778,Las Cruces,NM,changing,25200,Bright object in sky moving at extremely fast speed and changing course abruptly +2007-06-11,34.5794444,-118.1155556,Palmdale,CA,sphere,60,silver sphere in the skys of palmdale +2007-06-11,43.0972222,-89.5041667,Middleton,WI,sphere,90,Orb over central Wisconsin +2007-06-11,41.1669444,-73.2052778,Bridgeport,CT,light,1200,RE: Sighting in Newtown, CT JUN 11 +2007-06-11,37.5586111,-122.27,Foster City,CA,sphere,240,Two black spheres and a triangular craft, all with several red and white lights. +2007-06-11,41.4138889,-73.3038889,Newtown,CT,light,300,Light object with red, green, and golden lights changing shape in the SE sky in Newtown, CT. ((NUFORC Note: Antares?? PD)) +2007-06-11,41.8763889,-86.5497222,New Troy,MI,light,10,Bright stationary light in Northern sky. +2008-06-11,42.2011111,-85.58,Portage,MI,light,3600,Star sized lights +2008-06-11,41.5033333,-74.0108333,Newburgh,NY,flash,5,Myself and a co-worker witnessed a bright metallic saucer shaped object in the morning while driving on the NYS thruway. +2008-06-11,39.1619444,-84.4569444,Cincinnati,OH,cigar,120,cigar shaped UFO +2008-06-11,33.4483333,-112.0733333,Phoenix,AZ,other,12,WITNESSED AN AIRCRAFT CLOAKING ITSELF +2008-06-11,39.8494444,-75.3561111,West Chester,PA,light,60,Light fading and dimming very slowly from behind moon to horizon moving very very fast +2008-06-11,30.3305556,-86.165,Grayton Beach,FL,unknown,600,Bright Light on Freeport Side of Choctawhatchee Bay +2008-06-11,29.7630556,-95.3630556,Houston,TX,light,1500,Light in the sky changing colors, moving very fast, dancing in one spot +2008-06-11,41.0127778,-81.6052778,Barberton,OH,cross,15,cross shaped object with blue and white lights hovering at very low altitude vanishes quickly +2008-06-11,41.7955556,-86.0808333,Edwardsburg,MI,cigar,300,Bright orange object reported in the Edwardsburg sky. +2009-06-11,47.7661111,-116.7855556,Hayden,ID,triangle,180,TRIANGULAR OBJECT WITH WHITE AND RED FLASHING LIGHTS +2009-06-11,33.4483333,-112.0733333,Phoenix,AZ,sphere,2700,Large, bright, white sphere seen to the west over Phoenix from Ahwatukee. ((NUFORC Note: Possible high-altitude balloon. PD)) +2009-06-11,33.4147222,-111.9086111,Tempe,AZ,teardrop,2700,extremely bright balloon-like object at high altitude, drifting west for 45 min. ((NUFORC Note: Possible high-altitude balloon. PD)) +2009-06-11,33.4222222,-111.8219444,Mesa,AZ,cone,2700,Brilliant cone-shaped light to the WNW of Mesa, AZ. +2009-06-11,33.4147222,-111.9086111,Tempe,AZ,sphere,1200,Bright white light in the Phoenix evening sky. +2009-06-11,47.6063889,-122.3308333,Seattle,WA,oval,1200,I am a trained scientist and skeptic. I come from a military and nasa background. This thing I am seeing and recording, hovering, is hu +2009-06-11,26.9294444,-82.0455556,Punta Gorda,FL,oval,70,bright red foating in space then moved side to side in mile a sec and up and down no sound with pics +2009-06-11,31.3111111,-92.445,Alexandria,LA,flash,3120,Recurrent orange and white lights over Alexandria, LA +2009-06-11,41.8177778,-88.1733333,Warrenville,IL,unknown,240,strange flying craft in paralell formation that was followed by red craft at rapid speed. +2010-06-11,39.9508333,-86.2619444,Zionsville,IN,disk,120,UFO takes off and flies away in rural indiana near crash site. +2010-06-11,27.7705556,-82.6794444,St. Petersburg,FL,light,600,Starnge light appears in Tampa Bay for 5-10 minutes then disappears. ((NUFORC Note: Twinkling star, or Venus?? PD)) +2010-06-11,41.0997222,-80.6497222,Youngstown,OH,triangle,60,3 orange lights making triangle. +2010-06-11,41.5244444,-90.5155556,Bettendorf,IA,triangle,90,three points of white light (triangle shape), no sound and very low directly above my house moving at maybe 70-80 knots +2010-06-11,42.9097222,-85.7630556,Grandville,MI,unknown,180,Flame object, moving low and fast +2010-06-11,41.2586111,-95.9375,Omaha,NE,light,20,bright light moving fast and just dissappeared +2010-06-11,34.8072222,-82.8208333,Six Mile,SC,light,20,My wife and I independently and in two locations saw similar unexplained lights at about the same time +2011-06-11,48.0152778,-122.0625,Lake Stevens,WA,unknown,1,I seen a very bright light flash in the are of the Big Dipper. +2011-06-11,32.948055600000004,-96.7294444,Richardson,TX,sphere,60,Black metallic sphere hovers over major highway +2011-06-11,33.7358333,-118.2913889,San Pedro,CA,sphere,600,At about 1600 hrs I was on my balcony, and I noticed first 1 dot, in the eastern sky, I went inside for my camera. +2011-06-11,48.9461111,-119.0502778,Chesaw,WA,other,1200,V-shaped UFO, poss. in trouble, soundlessly flying over tree line followed by 4 jets and 1 giant cargo plane. +2011-06-11,39.7391667,-104.9841667,Denver,CO,other,120,Black and shiny object flying over Denver CO +2011-06-11,41.3977778,-79.8316667,Franklin,PA,cigar,37800,missile shaped object with no wings, tail, contrail, or sound +2011-06-11,39.485,-80.1427778,Fairmont,WV,fireball,300,6/11/2011 West Virginia fireballs in the evening sky. +2011-06-11,39.4586111,-82.2319444,Nelsonville,OH,circle,120,Unidentifiable object observed over Nelsonville, Ohio. +2011-06-11,28.565,-81.5863889,Winter Garden,FL,changing,1200,two color changing orbs in the sky +2011-06-11,42.5377778,-83.2330556,West Bloomfield,MI,unknown,25,we saw a ufo with an orange light on it do impossible manuvers without making any noise whatsoever. +2011-06-11,40.0638889,-80.7211111,Wheeling,WV,light,300,8 yellow lights floating over horizon +2012-06-11,48.1958333,-114.3119444,Kalispell,MT,light,120,Bright light speeds out of atmosphere +2012-06-11,37.8769444,-89.1144444,Royalton,IL,sphere,10,I was walking home from my grandfathers who lives next door to us with my mother. She was already to the steps of the house when I look +2012-06-11,37.8772222,-122.1786111,Orinda,CA,unknown,120,About 5:35 AM (dawn breaking)look up at moon. Bright, stationary planet about 4 moon diameters to east of moon. Brightness about -3. +2012-06-11,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,15,Disc shaped object was flying rotating along the longitudinal axis +2012-06-11,48.9391667,-119.4344444,Oroville,WA,disk,15,Saucer shaped object heading north over Oroville Wa. +2012-06-11,37.2622222,-119.7,Coarsegold,CA,light,300,Possibly satellites but 1 in trail of the other and the other in the same orbit opposite direction. Very unusual. +2013-06-11,44.9238889,-92.9591667,Woodbury,MN,circle,2100,Circular silver object in the sky that moved, &quot;shot bright lights&quot; and disappeared and reappeared. +2013-06-11,41.6005556,-93.6088889,Des Moines,IA,light,60,Bright white turning red/orange close to ground then disapearing by des moines airport. +2013-06-11,43.0177778,-72.3216667,Surry,NH,light,300,Out of bed with bad leg cramp 3:30 a.m. Standing at window, saw what I thought was the moon shining through the trees, except then it +2013-06-11,33.6888889,-78.8869444,Myrtle Beach,SC,other,120,4 bright lights moving towards the ocean, then vanish into a cloud of lightning. +2013-06-11,39.4141667,-77.4108333,Frederick,MD,cigar,5,Reddish-Brown Cigar-Shaped Object Flies Over Frederick, MD. +2013-06-11,32.7152778,-117.1563889,San Diego,CA,sphere,180,It was a shiny metalic sphere +2013-06-11,35.7913889,-78.7813889,Cary,NC,light,10,Super fast low flying red light. No sound was heard. +2013-06-11,34.7302778,-86.5861111,Huntsville,AL,sphere,30,Three orange orbs, not moving, in Huntsville, AL +2013-06-11,34.551944399999996,-77.9263889,Burgaw,NC,fireball,5,Once in a lifetime sighting of a large metor like object that impacted the earth. +2013-06-11,33.9163889,-78.1613889,Oak Island,NC,unknown,1800,Blinking lights and orange orbs +2013-06-11,41.1575,-81.2422222,Ravenna,OH,triangle,300,Fiery orange object seen flying at night from west to east in a circular pattern. +2013-06-11,38.8338889,-104.8208333,Colorado Springs,CO,unknown,3,Fast moving ufo with orange and white circles. +2013-06-11,44.8755556,-91.9191667,Menomonie,WI,fireball,300,Large fireball like object floating in the sky during a down pour. +2013-06-11,33.6888889,-78.8869444,Myrtle Beach,SC,formation,15,Balls of red light over ocean doing a leap frog motion. +2013-06-11,40.115,-111.6541667,Spanish Fork,UT,light,600,Strange changing lights in mountains and moving lights in the sky over Spanish Fork, Utah. +1910-06-01,32.7091667,-96.0080556,Wills Point,TX,cigar,120,Cigar shaped object moving from West to East +1931-06-01,38.9172222,-97.2136111,Abilene,KS,disk,1800,This is a what my mother related to me regarding an experience my grandparents had. They did not tell anyone for 20 or more years beca +1939-06-01,34.9180556,-88.0641667,Waterloo,AL,fireball,300,4 high school students see bright, ground-level, slow moving fireball in the late 1930's +1941-06-01,43.9552778,-86.4525,Ludington (Hamlin Lake),MI,disk,30,As a boy some 60 plus years ago I saw a round silver disc in the sky when I looked up from playing with ant hills. +1942-06-01,33.66,-84.4102778,Hapeville,GA,unknown,180,bright object approchjng Venus, 1940's +1944-06-01,35.8880556,-106.3063889,Los Alamos,NM,disk,3600,Disk hovers over Los Alamos during the development of the atomic bombs; pursued by planes. +1945-06-01,30.5180556,-82.9483333,Jasper,FL,fireball,300,I belived it would be to our best Intrest to check this out . +1947-06-01,41.4994444,-81.6955556,Cleveland,OH,light,300,It was about 2:15 in the morning when my wife woke me from a deep sleep and began to complain of stomach problems. As I was getting out +1947-06-01,35.9911111,-106.08,Espanola (Outside Of),NM,circle,300,Saucer shaped object about ten feet in diam. +1947-06-02,32.6152778,-93.2866667,Minden,LA,unknown,10,High altitude sighting in 1947 +1950-06-01,32.7713889,-89.1166667,Philadelphia,MS,disk,600,Childhood sighting of disk witnessed by mother and sons. +1950-06-01,40.4405556,-79.9961111,Pittsburgh,PA,oval,1500,One larger white object & 2 smaller round white objects. +1954-06-01,29.7630556,-95.3630556,Houston,TX,disk,180,I fulfilled my duty by passing on an unusual accourance +1954-06-01,42.6763889,-76.8233333,Ovid,NY,disk,600,I saw two silver/gray objects of different shapes. +1954-06-01,39.8016667,-89.6436111,Springfield (Rural Area Near),IL,cylinder,600,This happened many years ago when I was a child. Object, 3' long, crystal type cylinder, pinkish color came in fast from the East and +1954-06-01,37.9158333,-122.3105556,El Cerrito,CA,light,300,It was a Sunday evening and must have been in November of Decemberme to Berkeley because it was dark and I needed to be in Berkeley for +1954-06-01,41.6638889,-83.5552778,Toledo,OH,disk,60,SEE ABOVE +1954-06-01,39.9522222,-75.1641667,Philadelphia,PA,disk,2,They Are Our Brothers +1955-06-01,47.5216667,-95.3980556,Bagley,MN,circle,7200,I was 5 years old at the time, family of 4 told they would remember nothing. I managed to break free of the (mind) control just before +1955-06-01,39.1619444,-84.4569444,Cincinnati,OH,disk,120,June 1955. Bronze saucer/cylindrical craft; approx. 3:30 p.m., no life form sited. +1955-06-01,38.0194444,-122.1330556,Martinez (Outskirts),CA,circle,1800,We observed a large object aprox.size "football field or larger" aproach us 45mph make 90 degree turn. color "red glowing ember".2000 f +1955-06-01,36.1033333,-84.1319444,Clinton,TN,egg,360,Egg shaped craft landed on lonly country road, seen by a family of five. +1956-06-01,38.8119444,-94.5316667,Belton,MO,other,600,THE EVENT WAS A PERSONAL CONTACT WITH AN ALIEN. SINCE I WAS ABOUT 6 YEARS OLD AND IT HAS BEEN A LONG TIME FORGIVE ME ANY DESCREPANCIES +1956-06-01,35.1494444,-90.0488889,Memphis,TN,cylinder,900,Object was glowing dull orange bent cylinder. Hovered noiselessly over RR tracks for a time, then took off straight up. +1957-06-01,31.7586111,-106.4863889,El Paso,TX,disk,7,The UFO did not make any sounds. The craft's disappearance from the sky was like a blurr. +1957-06-01,43.3094444,-73.6444444,Glens Falls,NY,disk,240,there was no mistakeing what i was looking at it was up close and they traveled very slowly +1957-06-01,32.8138889,-96.9486111,Irving,TX,light,300,tryangle over tx +1958-06-01,35.79,-78.2041667,Middlesex,NC,circle,3600,white glowing lights +1958-06-01,37.775,-122.4183333,San Francisco,CA,oval,120,A low flying huge silver flying saucer positions itself over home in San Francisco in 1958. +1958-06-01,40.7141667,-74.0063889,New York City (Bronx),NY,oval,10,7 brightly illuminated elliptical discs racing uniformly across the night sky were seen moving NNW to SSE equally spaced apart. +1958-06-01,31.9036111,-94.395,Timpson,TX,light,5400,Round lights,blMulticolored lights moving in circles on and around reswidence +1958-06-01,40.925,-98.3416667,Grand Island,NE,circle,180,Hovering craft 60-75' over roadway +1959-06-01,41.2783333,-73.0261111,Orange,CT,cylinder,3600,Sighted craft and transport of object to the ground +1959-06-01,40.2841667,-84.1555556,Sidney,OH,light,300,Saw a bright light shining down. Pulled over to the side of I75 and watched it about 5 min. before it took off very quickly heading ea +1959-06-01,40.2016667,-98.0675,Nelson,NE,cigar,600,this was told to me from the man who seen the object. it was after a softball game in the summer of 1959. he was in the country going h +1960-06-01,47.6063889,-122.3308333,Seattle,WA,oval,5,OBJECT WAS OVAL IN SHAPE AND HAD MANY LIGHTS ON THE INSIDE PERIMETER. THE COLOR WAS LIGHT GREEN, LIKE THE OLD LUMINOUS WATCHES THAT GLO +1960-06-01,46.6022222,-120.5047222,Yakima,WA,other,900,Shaped like an old fashioned oil derick-about 100 feet tall-stationary-made of pure light. We watched it,along with two or three other +1960-06-01,34.5794444,-118.1155556,Palmdale,CA,disk,300,Summer 1960 saucer with flashing lights (antenae?) hovered above Lilac View Street then shot straight up and out of sight. +1960-06-01,38.5816667,-121.4933333,Sacramento,CA,cigar,300,Brother sees ship and occupants...maybe more....... +1960-06-01,42.1866667,-86.2605556,Watervliet,MI,disk,300,3 Saucers seen hovering in daylight; seen clearly enough to see the lights revolving around the middle +1960-06-01,44.4591667,-69.6780556,Vassalboro,ME,oval,7200,Multi experiences with unknown. +1960-06-02,38.364444399999996,-98.7644444,Great Bend,KS,other,120,MISSOURI INVESTIGATORS GROUP Report: One night I saw a White cube that glowed like a light bulb. +1960-06-02,40.7608333,-111.8902778,Salt Lake City,UT,disk,300,I saw the craft in daylight hoovering over me. I viewed it for several moments and then it went straight up at an incredible speed, to +1961-06-01,40.4533333,-111.7772222,Alpine,UT,disk,2700,This sighting was in the early 1960s when I was 14 and had not heard of ufos yet, but watched it with friends for about 45 minutes. +1962-06-01,36.7472222,-95.9805556,Bartlesville,OK,unknown,120,Childhood visitation 1962, possible implant, first sighting 1977. other sightings of craft on several occasions. 500 Lights On Obj +1962-06-01,40.8616667,-80.2866667,Ellwood City,PA,disk,60,came down never touched ground had mist like around it, about 1 yard wide wide, hovered off ground right where I was sitting for about +1962-06-01,37.775,-122.4183333,San Francisco,CA,circle,900,My personal UFO sighting +1962-06-01,39.7294444,-104.8313889,Aurora,CO,light,5,object seen moving from one star to another +1962-06-01,37.9966667,-88.92,Benton,IL,disk,900,Saucer shaped object in daytime nearly landed next to me. When my mother ran out to me, it flew away. +1963-06-01,28.3858333,-80.7422222,Cocoa,FL,unknown,900,We are not alone, I swear it before God Almighty. +1963-06-01,38.6272222,-90.1977778,St. Louis County,MO,cigar,300,Cigar shaped craft hovering over swimming pool, March 1963, 02:00-03:00, slits along edge of hull of craft +1963-06-01,29.5013889,-97.4522222,Gonzales,TX,cigar,30,Object was cigar shaped,lights along side and exremely fast. +1963-06-01,35.35,-80.2002778,Albemarle,NC,disk,1200,outside playling ,neighbor starting yelling pointing up to the sky , went over to look the woman was scared she ran into her house told +1963-06-01,29.7630556,-95.3630556,Houston,TX,cigar,300,Cigar shaped UFO over north Houston,, before the building of IAH. +1963-06-01,36.6986111,-88.3952778,Kirksey,KY,triangle,60,Triangle shaped UFO seen in daytime in 1963 in rural West Kentucky community +1963-06-01,42.3636111,-87.8447222,Waukegan,IL,formation,900,Group of stationary objects high in afternoon sky with new objects entering group and some leaving +1963-06-01,42.489444399999996,-83.1447222,Royal Oak,MI,triangle,180,A hovering triangular craft, with moving white lights on the sides and a red light on the bottom. +1963-06-01,33.5422222,-117.7822222,Laguna Beach (South),CA,light,120,USO(s) - Unidentified Submerged Object(s) -- yeh! I know guys! You probably only care about lights in the sky! But hey I'm not the only +1963-06-01,38.0330556,-122.2658333,Rodeo,CA,sphere,300,Blue humming and vibrating sphere in my room +1963-06-01,38.8338889,-104.8208333,Colorado Springs (Mtns. Nw Of),CO,disk,300,UFO hovered and made right angle turns before shooting off at an incredible rate of speed when approached by a jet. +1963-06-02,37.775,-122.4183333,San Francisco,CA,disk,259200,San Francisco man, then 22, reported details of 1963 abduction to friend. 500 Lights On Object0: Yes +1964-06-01,32.7994444,-97.2688889,Haltom City,TX,light,600,Light beam travel across roof-tops...1964. +1964-06-01,35.4602778,-94.7872222,Sallisaw,OK,light,1800,''ON ICE PROJECT'' - UNDERGROUND CITY, 3 ET's - 2 were KIA in CRASH and 1 ALIVE POW DIED LATER, MILITARY INSTALLATION, +1965-06-01,35.2225,-97.4391667,Norman,OK,disk,30,Norman, oklahoma. 3 silver discs forming a triangle. 30 seconds. Looked like three nickels. bright silver. +1965-06-01,38.6272222,-90.1977778,St. Louis (Just Outside Of),MO,sphere,60,silverish SPHERE 1960s St Louis +1965-06-01,32.2686111,-107.7580556,Deming,NM,disk,21600,Just a large round silver disk and acorn type craft hovering low in around the center of Deming in around 1965. +1965-06-01,43.5277778,-71.4708333,Laconia,NH,cylinder,18000,A large object floated out of the sky, to hover over a cove, emitting a strange orange/green glow, remaining for hours in Laconia NH. +1965-06-01,44.9291667,-89.8402778,Marathon,WI,disk,60,disk 20 ft round silent zig zag and hovered very strange to watch silver color +1965-06-01,33.7669444,-118.1883333,Long Beach,CA,cylinder,5,At about 4 years of age, I observed a cylinderically shaped object fly over at about 2oclock due west. +1965-06-01,36.7533333,-86.1905556,Scottsville,KY,light,240,Blinding Light Hovered And Flew Over Us +1965-06-01,41.4819444,-81.7983333,Lakewood,OH,disk,120,UFO sightings in the Cleveland, Ohio area in around 1965. +1965-06-01,25.7738889,-80.1938889,Miami,FL,oval,7200,i can't remember the exact date,summer of 1965,my mother,sister & i,were driving on the mcarthur cswy back to miami from the beach.i wa +1965-06-01,43.1547222,-77.6158333,Rochester (Approching),NY,sphere,120,My wife and I were driving from Brockport to our home in Rochester, NY in the evening when we spotted three bright discs hovering in th +1965-06-01,37.6811111,-122.1233333,San Lorenzo,CA,light,600,Two objects rendevous at the moon. +1965-06-01,41.6638889,-83.5552778,Toledo,OH,sphere,3600,We chased a craft emmiting a pure shaft of light onto back country roads and watched it disappear into the night sky. +1965-06-01,18.4683333,-66.1061111,San Juan (Puerto Rico),PR,disk,300,Formation of multiple saucer craft +1966-06-01,36.6030556,-92.4280556,Gainesville,MO,disk,240,I saw a hovering, silent craft over my home that no one else mentioned, even though they were there! +1966-06-01,48.7597222,-122.4869444,Bellingham,WA,disk,45,When I saw the object it was not moveing, then it went stright down and stoped, then it went up at 45 degree angal to the left and sto +1966-06-01,41.85,-87.65,Chicago,IL,disk,300,It hovered straight across from me. +1966-06-01,43.176944399999996,-84.8463889,Carson City,MI,disk,300,My cousin & I were both 7 and we were behind our grandmother's when we noticed a silver, smooth, shimering disc about 20" wide and 10" +1966-06-01,34.9177778,-120.5138889,Betteravia,CA,other,30,Playing kickball, I was on home base and looked up to see a UFO that looked like a fireball in the shape of a cigar directly over me. +1966-06-01,31.2427778,-103.0641667,Coyanosa,TX,disk,600,Summer 1966 (or 1968): Small saucer seen by 3 youth to land and take off in dry creek bed near Coyanosa, Texas. +1966-06-01,31.8455556,-102.3672222,Odessa,TX,other,10,Silvery, football-shaped object rotates then accelerates upward until out of sight. +1966-06-01,40.0311111,-81.5886111,Cambridge,OH,disk,1080,We saw dark disc shaped objects emerge from the bottom of a "ligher than the evening sky" oblong light, fly around and reenter. +1966-06-01,38.8858333,-94.5327778,Grandview,MO,triangle,900,Depressed for 40 years from this happening… +1966-06-01,41.1327778,-73.7930556,Pleasantville,NY,disk,3600,Never revealed this before. Grounds-- GPL General Percision Labratory. I belive previously it was the Tommy Mansville estate. I believe +1966-06-01,38.8575,-76.8897222,District Heights,MD,disk,300,Observed UFO Sighting which stopped my moving vehicle on a lonely, tree lined road. +1966-06-01,41.4338889,-79.7066667,Oil City (Near),PA,sphere,1800,3 spheres, 3 colors, doing figure eight in sky. Stoped car race. everyone saw, no one remembers ? Has anyone else seen this ? +1966-06-01,40.0791667,-75.3019444,Conshohocken,PA,disk,600,Gun metal grey disk shaped craft seen at 50-60 ft. above the ground +1966-06-01,45.7833333,-108.5,Billings,MT,light,240,Bright white object over Billings, MT +1966-06-02,48.6011111,-93.4108333,International Falls,MN,disk,1200,2-UFO's wake three/eight yr. old children at different addresses and took control of our minds, emotions, heart and soul! +1967-06-01,34.8055556,-81.0116667,Edgemoor,SC,disk,120,Myself and 3 friends witnessed a circular shaped craft in the spring of 1967 hovering over a railroad track. +1967-06-01,44.9444444,-93.0930556,St. Paul,MN,disk,240,Fighter Jet chases UFO +1967-06-01,32.7152778,-117.1563889,San Diego,CA,circle,600,June 1967, 2 mirrored objects appeared miles overhead and were motionless for about 10 minutes then going straight up and dissappe +1967-06-01,37.9158333,-122.3105556,El Cerrito,CA,oval,120,My wife and I saw a flying saucer, which was at about 2000 ft. sitting still. It was oval shape, silver, and looked like something you +1967-06-01,41.0097222,-95.2252778,Red Oak,IA,light,20,Two unidentified extremely bright lights, one large - one smaller, clearly visible on a sunny clear day, moving at incredible speed.. +1967-06-01,33.7597222,-87.1833333,Cordova,AL,disk,1200,very large craft, siting dead still in mid air ,very low and in broad daylight, could see the seams in the metal +1967-06-01,43.0202778,-123.2919444,Myrtle Creek,OR,circle,900,10 PM August 1967 sphere observed by multiple witnesses moving along ridgleline 1/2 mile distance 500 Lights On Object0: Yes +1967-06-01,39.1619444,-84.4569444,Cincinnati,OH,cigar,600,i was a young girl and i know what a blimp looks like and this was NOT a blimp +1967-06-01,47.2033333,-122.2391667,Sumner,WA,formation,900,5 objects seen over Sumner WA June of 1967. Objects hovered very close to ground and shined lights. +1967-06-01,42.1933333,-79.2488889,Gerry,NY,disk,240,1967 object seen in gerry, new york made no noise as it flew in the sky. +1967-06-01,34.1141667,-116.4313889,Yucca Valley,CA,light,300,6 family members observe bright light for 5 minutes near Yucca Valley, CA 1967 +1967-06-01,40.6325,-79.59,Hyde Park,PA,other,60,Was 12 years old,walking to buddies home it was dark.all sudden bright lights in the sky.Look like satlight maybe one mile above me.To +1967-06-01,34.2783333,-119.2922222,Ventura,CA,cigar,600,Sighted light surrounding unknown being and heard sounds as being attempted to look inside home. +1967-06-01,43.6136111,-116.2025,Boise,ID,disk,600,Large Mining UFO mining resourses on Earth +1968-06-01,42.0986111,-75.9183333,Binghamton,NY,disk,2700,UFO saucer seen Binghamton, NY, 1968-69 +1968-06-01,39.7588889,-84.1916667,Dayton,OH,oval,60,I was 8. I was sleeping in a room with my two brothers. I woke up. I don't know why, I went to the window and saw a small ufo three fe +1968-06-01,41.85,-87.65,Chicago,IL,oval,240,What we saw had no wings, tail or struts. It’s fuselage was elliptical in shape with a blunted nose and tail. +1968-06-01,36.175,-115.1363889,Las Vegas,NV,light,600,A vivid orb of light in a completely clear blue, mid-day 1960s Las Vegas sky moved irratically within a small radius above our house. +1968-06-01,33.5844444,-92.8341667,Camden,AR,circle,7200,Orange ball observed by dozens +1968-06-01,41.9202778,-79.6405556,Corry,PA,fireball,900,Observed pink/orange glowing ball "bouncing" along railroad tracks for length of @ 2 city blocks, then shoot straight up and disappear +1968-06-01,45.7833333,-108.5,Billings,MT,circle,120,Round object with colored lights disappears instantly +1968-06-01,38.2494444,-122.0388889,Fairfield,CA,cigar,120,There real and this is the proof +1968-06-01,34.0141667,-86.0066667,Gadsden,AL,other,60,It was like nothing I had ever seen before. +1968-06-01,34.0005556,-81.035,Columbia,SC,triangle,10,When I was 10, both me and my brother saw a triangular-shaped UFO floating in front of our house. +1968-06-01,40.3788889,-74.5469444,Monmouth Junction,NJ,light,1209600,Object orbiting Jupiter +1968-06-01,29.82,-94.3838889,Winnie (Near),TX,fireball,120,was returning to Houston from Port Arthur...near Winnie....clear night....cloudless sky....emerged from car....studied sky....a +1968-06-01,39.9402778,-82.0133333,Zanesville,OH,disk,300,A LARGE UFO SITTING UP ABOVE MY TREE IN MY YARD +1968-06-01,47.4830556,-122.2158333,Renton,WA,changing,600,A huge orange ball over Lake Hills in Renton WA, that turned into a triangle over Boeing field and disappeared. +1968-06-01,48.2325,-101.2958333,Minot,ND,cigar,120,in 1968 while standing at gi corner a cigar shaped ship moved above me moving at a speed as that of a zepplin. it had colored lights al +1968-06-02,36.8252778,-119.7019444,Clovis,CA,cigar,60,Spring 1968: 20+ cigar shaped flying objects over Air Force Base in Fresno, California heading north. +1968-06-02,28.8002778,-81.2733333,Sanford,FL,fireball,240,Large glowing phenomena emitting many colors +1969-06-01,40.015,-105.27,Boulder,CO,other,300,This object looked like a bright star, zig-zagging, abruptly stopping & then zig-zagging @ a high rate of speed above Boulder, Colorado +1969-06-01,29.9888889,-97.8769444,Kyle,TX,oval,180,Large lemon shaped object crossed highway 35 .Car died, then object exploded about 1\2 mile away extremely bright white light no noise +1969-06-01,27.3361111,-82.5308333,Sarasota,FL,light,10,3 gold balls gather, split to 5 and disappear! +1969-06-01,42.1538889,-88.1361111,Barrington,IL,sphere,7200,((HOAX??)) shiny light and elecromagnetic energy. +1969-06-01,47.5836111,-110.7894444,Highwood,MT,disk,900,Black disc floating towards Great Falls. +1969-06-01,47.5836111,-110.7894444,Highwood,MT,disk,1800,Black disc floating towards Great Falls with bright spotlight. +1969-06-01,38.8822222,-77.1713889,Falls Church,VA,other,1800,round plate like structure +1969-06-01,38.0372222,-84.8966667,Lawrenceburg,KY,disk,300,It was a full moon when my brother and I observed 100 yards away for 5 minutes above the tree topics a metalic saucer shaped craft with +1969-06-01,37.8591667,-122.4841667,Sausalito,CA,unknown,900,friend and I were walking between the edge of Richardson bay and highway 101. Must have been between 9 PM and Midnight. it was foggy, +1969-06-01,41.0813889,-81.5191667,Akron,OH,light,10,Aerial light makes turns not possible for aircraft. +1969-06-01,42.2602778,-73.81,Athens,NY,rectangle,180,Rectangle shaped object was huge dark colored with some white lights. Oddly quiet and fast. +1969-06-01,38.6786111,-121.2247222,Orangevale,CA,unknown,2700,UFO over Orangevale, CA in May/June 1969 +1970-06-01,37.3041667,-77.2875,Hopewell,VA,disk,30,Saucer shaped object enters river. +1970-06-01,37.5841667,-122.365,Burlingame,CA,disk,7200,The disked hovered for over an hour then moved slowly and rapidly accelerated. +1970-06-01,37.4086111,-120.8491667,Hilmar,CA,disk,45,discription: object was a typical 2 pie pans placed lip to lip configuration, was seen hovering about 1/4 mile away at about 30-40 deg +1970-06-01,39.9611111,-82.9988889,Columbus,OH,disk,120,I SEEN A UFO WHEN I WAS ABOUT 13 YEARS OLD. THE YEAR WAS ABOUT1970, IT WAS IN THE FALL IN COLUMBUS OHIO. AT FIRST I THOUGH I SAW A BL +1970-06-01,43.3227778,-76.4175,Fulton,NY,circle,300,Clear round sphere's about the size of a soccer ball or larger floated slowly by +1970-06-01,42.7555556,-96.6055556,Westfield,IA,disk,300,I saw a UFO over a house, very close to roof. +1970-06-01,40.2344444,-84.4094444,Russia,OH,unknown,300,One "starlike" light observed making rapid turns, accelerating and decelerating. +1970-06-02,44.8925,-119.1425,Ritter,OR,disk,240,I was on a fishing trip with a friend . It was getting dark and we were looking upat the sky with my bionacers when i notched two white +1971-06-01,33.8161111,-98.6947222,Holliday,TX,disk,14400,bright orange glowing saucer shaped object that followed our car +1971-06-01,35.9669444,-83.1877778,Newport,TN,light,300,The light could move slowly or inordinately fast any direction in complete silence. +1971-06-01,39.8366667,-105.0366667,Westminster,CO,flash,30,I WAS TEN SLEEPING IN BACKYARD A SILENT BLINDING WHITE LIGHT ABOUT 50 FEET ABOVE ME MOVIG SOUTH ABOUT 10 MILES HR.IT LIT UP A HOLE BL +1971-06-01,31.5783333,-84.1558333,Albany,GA,disk,120,metallic saucer with row of orange glowing windows performed maneuvers via making upward or downward angles the shot across the sky +1971-06-01,45.6388889,-122.6602778,Vancouver,WA,disk,180,100 feeet in length blackin color daylight had neighbor see it had a sort of heat wave was 100 feet from it above parents house had tu +1971-06-01,40.6577778,-84.9519444,Berne,IN,disk,600,Day Light Sighting! As young boy playing outside, seen 2 silver round crafts high in the sky, being chased by 2 fighter jets. +1971-06-01,35.0080556,-90.7897222,Forrest City,AR,disk,120,The disc was silver no lights or seems but we only saw the bottom not the top or sides. +1971-06-01,31.1797222,-83.7891667,Moultrie,GA,cigar,900,Local DJ reports UFO above radio station. +1972-06-01,42.8247222,-83.2647222,Oxford,MI,light,600,As a child saw lights in the woods and had an encounter with being +1972-06-01,35.9172222,-82.3011111,Burnsville,NC,cylinder,120,I remember I was 9 years old and had the habit of getting up very early in the morning before anyone else. On this particular morning I +1972-06-01,30.2669444,-97.7427778,Austin,TX,light,300,lights traveling across the sky at high speed, one stopped and became brighter +1972-06-01,32.9263889,-96.8958333,Farmers Branch,TX,sphere,300,it was a orange sphere about the size of a vw bug +1972-06-01,40.0305556,-124.0719444,Shelter Cove,CA,disk,1800,Light overe ocean traveled at low speed until directly overhead at200 to 400 ft. classic saucer with dome on top appeared cast of gold +1972-06-01,44.8011111,-90.0791667,Stratford,WI,cigar,300,Cigar shaped, moved slowly. +1972-06-01,34.8525,-82.3941667,Greenville,SC,circle,120,Craft[ very bright green in color ] rose up above trees in a highly wooded area,zig zagged[like a climbing stairs motion]floated direc +1972-06-01,31.5544444,-110.3030556,Sierra Vista,AZ,sphere,600,Round bright object chase. +1972-06-01,29.3836111,-94.9025,Texas City,TX,light,240,My sighting was along time ago and some details are hard to remember.One summer nite i was takeing my sister to pick up some clothes fr +1972-06-01,42.2661111,-89.2411111,Winnebago,IL,triangle,1800,It seemed to hear what we were talking about. +1972-06-01,37.5055556,-84.8133333,Moreland,KY,light,1200,Ball of light over Lincoln County Kentucky +1972-06-01,38.1866667,-91.9469444,Vienna,MO,cigar,600,Cigar shaped craft with colored port holes moves slowly over tree tops. +1972-06-01,34.4183333,-84.3827778,Tate,GA,circle,900,Small domes underneath a black background...electrical charges between them. Small bolts of lighning underneath.Slight humming. Flew so +1972-06-02,30.3855556,-88.6116667,Gautier,MS,other,10800,We saw two stars slowly moving in the milkyway, stopping, starting, making right turns, shining a light. +1973-06-01,36.3727778,-94.2086111,Bentonville,AR,other,10800,Was I abducted in 1973???????????? +1973-06-01,47.8627778,-121.8152778,Sultan (Near),WA,circle,300,When I was about 12 years old a couple of men took some of the neighborhood kids camping while they cut some trees that they would come +1973-06-01,30.8302778,-82.01,Folkston,GA,light,14400,I left home in Macclenny Fla and drove north on rt. 23/121 into Georgia around 2am I came to a crossroads just out side of Folkston Ga. +1973-06-01,48.2933333,-122.6419444,Oak Harbor,WA,unknown,30,alien in the woods +1973-06-01,37.9736111,-122.53,San Rafael,CA,oval,1200,Sister and family see huge UFO at marin county civic center. +1973-06-01,18.3994444,-66.0502778,Rio Piedras (Puerto Rico),PR,oval,60,Was already dark at 6pm; asking a girl for a date in the company of another friend, in the middle of the street, like an instict I look +1973-06-01,44.8261111,-68.6938889,Eddington,ME,circle,60,dark circle dim lights from above showed shape stopped in it's path when we spotted it took 90% turn quick stopped turned parrellel too +1973-06-01,35.5455556,-80.6111111,Landis,NC,light,60,UNKOWN BRIGHT LIGHT-1973 NORTH CAROLINA +1973-06-01,30.2669444,-97.7427778,Austin,TX,sphere,900,Played with by a UFO +1973-06-01,37.5597222,-90.2938889,Fredericktown,MO,light,7200,One of my most unusual encounters +1973-06-01,30.4211111,-87.2169444,Pensacola,FL,circle,480,I have not told this but to a few friends ... ..Me and my dad ( who is now 77 ), my cousin along with a few campers years ago ( 1973 +1973-06-01,21.3069444,-157.8583333,Honolulu,HI,disk,20,UFO at Kam Drive-In Honolulu Hawaii +1974-06-01,37.8091667,-85.4669444,Bardstown,KY,disk,600,yellowish gold saucer with lights hovering over house +1974-06-01,40.6186111,-80.5775,East Liverpool,OH,fireball,3600,((HOAX??)) NONE +1974-06-01,41.3838889,-73.9461111,Garrison,NY,disk,10,Two 15 year olds see flying disk in the Hudson Valley +1974-06-01,46.5436111,-87.3952778,Marquette,MI,oval,300,We had no idea what it was and did not speak of it for years. +1974-06-01,38.9488889,-83.4058333,Peebles,OH,circle,300,the object, made no sound, and changed from a big , bright, light to a small green light and moved very fast,,,, +1974-06-01,34.2255556,-77.945,Wilmington,NC,triangle,180,Looks like a Star Wars ship,without the top, smooth, silent, no lights, large and low to the ground.. +1974-06-01,32.8,-94.7205556,Ore City,TX,circle,900,Very large glowing object and then some smaller ones +1974-06-01,38.8338889,-104.8208333,Colorado Springs,CO,circle,600,I witnessed a UFO sighting over 30 years ago. I have told this story for over the years and never knew who to go to until tonight afte +1974-06-01,29.91,-90.0325,Terrytown,LA,other,60,A large hot dog shape object, glowing red orange, just like the color of an electric stovetop. Object was seen floating above the Cres +1974-06-01,32.2216667,-110.9258333,Tucson,AZ,cylinder,900,UFO emerges from behind a single cloud +1974-06-01,37.1261111,-122.1211111,Boulder Creek,CA,other,1200,Extremely huge, very slow moving object seen in the sky by 7 witnesses. +1974-06-01,35.4991667,-80.8488889,Davidson County,NC,disk,540,UFO followed us and wouldn't leave us alone. +1974-06-01,33.7513889,-84.7477778,Douglasville,GA,other,3600,Grey rubbery like thing in body bag +1974-06-01,40.9605556,-102.3875,Ovid,CO,unknown,60,UFO stopped in the sky, then completed stops to form perfect rectangle and back into outer space to fast for human eye, light speed. +1974-06-01,38.7297222,-120.7975,Placerville,CA,chevron,3,Chevron shaped objects in formation +1974-06-01,41.2794444,-72.5988889,Madison,CT,sphere,2700,Event 1) Glowing sphere tracing shoreline and crashed into the water. Event 2) Datona Beach FL. Flat hourglass shaped black craft off +1974-06-01,44.2444444,-86.3241667,Manistee,MI,unknown,900,Mother ship emitting Scout Craft, in sight for about 20 minutes +1974-06-01,37.7561111,-94.3058333,Milo,MO,light,30,I was driving on a country road to my home. I was traveling east. About 100 yards before my lane, I looked south to see if the lights +1974-06-02,38.2972222,-122.2844444,Napa,CA,cigar,300,It was early evening, I was eight years old playing down the street (MacCloud St.) at my friends house when an adult nieghbor started p +1975-06-01,31.3444444,-109.5447222,Douglas,AZ,circle,1800,F4 Fighter-Intercepters scrambled to intercept object at over 90ꯠ foot altitude +1975-06-01,42.1166667,-86.4541667,Benton Harbor,MI,disk,10800,Glowing disk shaped object hovering in same position for hrs. at times dissapear then soon reappearing in same place . +1975-06-01,41.6611111,-91.53,Iowa City,IA,disk,600,Silver disk high in blue sky over Iowa 1975 +1975-06-01,40.1211111,-85.5580556,Daleville,IN,disk,20,Saucer lands on farm +1975-06-01,33.8536111,-118.1330556,Lakewood,CA,cigar,2,Metallic cigar shape in east darts across noon sky into western horizon in nano-second.. +1975-06-01,36.1658333,-86.7844444,Nashville,TN,triangle,300,a large black triangular shaped craft that hovered with small birds circling all around it (maybe a Thunderbird sighting) +1975-06-01,41.42,-73.955,Cold Spring,NY,oval,900,bluish-grey oval - very fast , over Hudson River - watched for a long time +1975-06-01,41.0997222,-80.6497222,Youngstown,OH,circle,300,I was about 7 ( which i know may be met with skeptisims), but i was on my back porch in a goverment housing project known as the Kimbl +1975-06-01,43.0388889,-87.9063889,Milwaukee,WI,changing,600,The hovercraft that watched our game +1975-06-01,42.1397222,-71.5166667,Milford,MA,disk,15,saucer shaped craft closely and clearly viewed for 15 seconds before disappearing in a streak at an incredible rate of speed +1975-06-01,39.7391667,-104.9841667,Denver,CO,circle,60,two bright round very near each other. +1975-06-01,37.4636111,-122.4275,Half Moon Bay,CA,oval,300,Bright starlike object near hovered horizon than ascended very fast. +1975-06-01,40.0641667,-76.4375,Silver Spring,PA,disk,900,Followed a light in the sky, until we saw it hovering and we parked under it, till it shot off again out of sight. +1975-06-01,39.1547222,-122.1483333,Williams,CA,oval,900,2 gold /yellow oval /egg shaped lights +1975-06-01,42.9658333,-78.8702778,Kenmore,NY,disk,2700,dark blue craft, ufo kenmore ny 1975 200' in the air 45 minutes +1975-06-01,42.9658333,-78.8702778,Kenmore,NY,oval,45,My UFO most likely same seen in Kenmore NY June 1, 1975 listed on your site alot like lake erie ufo. I have since purchased 19 Tremaine +1975-06-01,32.1572222,-94.3372222,Carthage,TX,unknown,5,I'm an amateur astronomer - a neighbor & I were out in the back yard with my 6 inch reflector - we both saw it (not thru the scope) - i +1975-06-01,33.3805556,-84.7997222,Newnan,GA,sphere,60,A glowing orange circle/sphere hovered, split in half, exploded into fire, came back together and sunk back into the horizon +1975-06-01,27.79,-97.6686111,Robstown,TX,oval,600,A HUGE UFO! +1975-06-01,34.4047222,-103.2047222,Clovis,NM,unknown,120,Saw oscillating light from a distance streak to the left then up and to the right out of sight so fast I could hardly believe what I ha +1975-06-01,39.8466667,-75.7119444,Kennett Square,PA,other,1800,House sized cube on axis, colored lights pulsing, moving slowly about 25 feet off the ground +1975-06-01,37.5536111,-77.4605556,Richmond,VA,disk,1800,Was heading Southbound on Interstate as a passenger in back of car, saw object behind us and it was making manuevers that no known airc +1975-06-01,38.7580556,-82.8913889,Sciotoville,OH,other,1200,Large circular cluster of lights, approximately 25-30' wide, approx. 100' above the ground was observed. +1975-06-01,32.5005556,-94.7402778,Longview,TX,disk,1800,Sighting of Summer 1975 in Longview, Texas +1975-06-01,44.98,-93.2636111,Minneapolis,MN,triangle,240,Large trinagular craft spotted over Mpls, MN in 1975 +1975-06-01,36.1658333,-86.7844444,Nashville,TN,light,2,sudden burst of brilliant yellow light +1975-06-02,34.4047222,-103.2047222,Clovis (Cannon Afb),NM,light,259200,I was stationed at Cannon AFB, NM in the 1970's. There was a period of approximately one week in which lights appeared over the base f +1976-06-01,40.7036111,-89.4072222,Washington,IL,light,900,Blus light, isolated road, possible missing time +1976-06-01,40.6111111,-111.8991667,Midvale,UT,chevron,30,Boomerang shaped set of lights over Midvale Utah. +1976-06-01,36.7533333,-86.1905556,Scottsville,KY,oval,600,Red Oval Light In Woods +1976-06-01,42.6072222,-83.9294444,Howell,MI,unknown,3600,Saw unexplained objects and beings +1976-06-01,47.3225,-122.3113889,Federal Way,WA,circle,60,Large Round Aircraft seen in Federal Way, Washington Approximately 1976 +1976-06-01,43.0480556,-76.1477778,Syracuse,NY,oval,1800,no noise, no dirt stirred up, two identical crafts never seen before, the ability to hover without making a sound +1976-06-01,37.5536111,-77.4605556,Richmond,VA,disk,1500,im not sure if i should tell you this. it's all coming back to me now. after all these years of being afraid not remembering it all. i +1976-06-01,28.5380556,-81.3794444,Orlando,FL,cylinder,600,Midday observation of cylinder type wingless craft with pointed top which flew horizontally. +1976-06-01,41.5380556,-72.8075,Meriden,CT,unknown,30,Saw a BIG unknown object in the sky several days or weeks after seeing a smaller object that confounded me. It looked similar to the s +1976-06-01,29.7272222,-90.5988889,Raceland,LA,circle,120,the silver object was approx 1/4 mile away, we were looking down the street towards a wooded area.The object to the north was glistenin +1976-06-01,34.0480556,-118.5255556,Pacific Palisades,CA,triangle,60,I was a thirteen year old boy who was at church in Pacific Palisades Calif.My mother and I were attending my Confermation from the cath +1976-06-01,41.0127778,-81.6052778,Barberton,OH,oval,240,Oval object, surrounded with multiple lights, first just hovering, then swerved and flew fast without sound. +1976-06-01,38.3775,-89.7952778,Fayetteville,IL,triangle,1200,20 min encounter with quite a machine +1976-06-01,41.0583333,-74.0988889,Upper Saddle River,NJ,disk,180,A slow moving low altitude craft with lights was view by myself and two others +1976-06-01,32.3255556,-88.9280556,Chunky,MS,disk,20,Silver disk with light beam +1976-06-01,31.9363889,-81.9286111,Glennville,GA,triangle,1800,Summer 1976 or 77 a huge triangular objet with bright white lights moving very slow making no noise moving in a serpentine manner. +1976-06-01,34.3541667,-119.0583333,Santa Paula,CA,rectangle,60,Hovering craft over the house. +1976-06-01,39.9611111,-82.9988889,Columbus,OH,light,120,The object moved at right angles. +1976-06-01,39.0836111,-84.5086111,Covington,KY,disk,6300,((HOAX??)) suucer type ship with 4 lights uner it and symbols moving aroud the body. +1976-06-01,43.0944444,-79.0569444,Niagara Falls,NY,flash,180,orange glowing object +1976-06-01,47.2530556,-122.4430556,Tacoma,WA,sphere,10,Orange Sphere +1976-06-01,30.3319444,-81.6558333,Jacksonville,FL,disk,120,Rotating Saucer Shaped Object with Multicolored Lights Flying Over Jacksonville +1976-06-01,31.3111111,-92.445,Alexandria,LA,light,180,Ball of light incapacitated my best friend and scared me +1976-06-01,39.0836111,-84.5086111,Covington,KY,disk,3600,The object was brightly lit throughout the entirety of its body. It moved very slowly from the south of the area I lived in. I could ta +1976-06-01,43.1836111,-73.4272222,Cossayuna,NY,unknown,900,I WAS SITTING WAS SITTING IN THE HOUSE WHEN ALL THE LIGHTS WENT DIM. THEN WE HEAR A LOUD HUMMING NOES AND IT FELT ALMOST LIKE PRESSURE. +1976-06-01,45.4983333,-122.4302778,Gresham,OR,changing,1800,We saw "it" and got the hell out of there! We then came back.......and so dit it! +1976-06-01,35.4872222,-80.6219444,Kannapolis,NC,oval,300,It was a clear starry night when i looked up and saw an oval shaped object with lights,hovering with no sound. +1976-06-01,40.0580556,-82.4013889,Newark,OH,circle,300,Craft hovers over our house in Newark Ohio across from the OSU Newark campus. +1976-06-01,31.5491667,-97.1463889,Waco,TX,sphere,4,I saw a hazy blue ball of light about four feet in diameter just off the ground. +1976-06-02,28.1138889,-81.6180556,Haines City,FL,sphere,1,a shooting making a right angel +1977-06-01,43.0361111,-71.1838889,Raymond,NH,triangle,120,Triangular object with multi-colored lights hovering at treelines +1977-06-01,34.4263889,-117.3,Hesperia,CA,egg,3600,stay away! +1977-06-01,26.2708333,-80.2708333,Coral Springs,FL,triangle,900,Right over the top of me and so close I may have been able to hit it with a rock +1977-06-01,40.6916667,-89.795,Hanna City,IL,cylinder,180,Encounter with small UFO drone-type object +1977-06-01,26.1272222,-80.2333333,Plantation,FL,circle,900,Two sightings in one night and within 5 minutes of each other. +1977-06-01,37.1041667,-119.3166667,Shaver Lake,CA,cigar,240,Extremely large object that appeared to be stalled or hovering above the tree line. The large object appeared to have a row of lights +1977-06-01,40.8813889,-82.6619444,Shelby,OH,circle,2,Ferris Wheel in shape and design glass in appearance and lights lining the frame +1977-06-01,41.5380556,-72.8075,Meriden,CT,oval,900,Large unidentified object seen in the sky in Meriden, Connecticut in the late 1970's. +1977-06-01,29.4238889,-98.4933333,San Antonio,TX,oval,600,the object just stood there quietly just starring at use it filled the sky . +1977-06-01,40.0813889,-121.55,Butte Meadows (Near),CA,unknown,30,Strange light beamed straight down over our campfire. There was no sound. +1977-06-01,44.4161111,-118.9519444,John Day,OR,oval,60,Large oval orange red craft seen in John Day. +1977-06-01,34.2694444,-118.7805556,Simi Valley,CA,disk,900,Noticed red lights to the north of Simi appearing to be in the mountains, girlfriend thought she was seeing Magic Mountain +1977-06-01,32.855,-90.4055556,Yazoo City,MS,oval,1200,Peaceful amber lights surround the small craft with high illumination +1977-06-01,42.7647222,-71.4402778,Hudson,NH,circle,30,Walking back home five of us spotted a bright object come up from the tree line, came to an abrupt stop a few hundred feet high +1977-06-01,39.1433333,-77.2016667,Gaithersburg,MD,cigar,60,Close encounter with metallic craft near Gaithersburg, MD in 1977 +1977-06-02,25.7738889,-80.1938889,Miami,FL,diamond,20,I cant tell you the exact time or date because it was so long ago.However it was late night and loud scaping noises on the roof woke us +1978-06-01,42.4391667,-123.3272222,Grants Pass,OR,disk,7200,Object landed on corner of street. Stayed there approx. 2 hours. Had red, blue, yellow, green lights along middle that spun. Approx. +1978-06-01,32.6733333,-95.7091667,Grand Saline,TX,light,15,Blinding white light over my pickup then suddenly I'm outside of my truck looking in an empty sky. +1978-06-01,39.3913889,-87.6936111,Marshall,IL,cigar,1800,Silent blimp directly above us. No sound or movement or reason. Middle of nowhere. Totally strange. +1978-06-01,39.7136111,-82.5994444,Lancaster,OH,sphere,5,Moving from the North to the south , a very white "light" moved in a straight line across the night sky. There were no blinking lights +1978-06-01,42.8708333,-85.865,Hudsonville,MI,other,120,rectangular football field length white steel girder ship that hoovered without a noise over my head in hudsonville, mi +1978-06-01,29.7855556,-95.8241667,Katy,TX,egg,60,egg shaped metalic object viewed over Katy, Tx in 1978 +1978-06-01,43.0302778,-83.1661111,Attica,MI,oval,900,feeling as i was pulled toward the craft that they were from another time, and they were not here to harm us... 500 Lights On Objec +1978-06-01,38.8466667,-91.9477778,Fulton,MO,fireball,14400,My friend & I had 4 hours of missing time. +1978-06-01,42.7008333,-73.1091667,North Adams,MA,sphere,120,Hi This is a sighting my mother had of a UFO, it was on a Monday in 1978 in a small town called North Adams Massachusetts. The time wa +1978-06-01,30.4211111,-87.2169444,Pensacola,FL,oval,900,Pensacola, FL- a space craft of immese size appeared without sound +1978-06-01,39.1666667,-90.7808333,Elsberry,MO,light,1200,MISSOURI INVESTIGATORS GROUP Report: My family and I witnessed the strange lights. +1978-06-01,39.2775,-74.575,Ocean City,NJ,triangle,600,Ocean City, NJ, triangle of 3 lights, hovered over condominium, no sound, departed with incredible speed +1978-06-01,39.9522222,-75.1641667,Philadelphia,PA,other,3600,Smaller craft came out of a slit in the sky above the roof tops in a residential neighborhood. It was a darker brushed metal color. +1978-06-01,34.0005556,-81.035,Columbia,SC,circle,900,A large circular craft with many different colored lights blinking around it (like they were windows or lights on the craft). +1978-06-01,40.9166667,-74.1722222,Paterson,NJ,disk,120,UFO on the night of the Paterson Falls View Festival +1978-06-01,41.2311111,-75.915,Lee Park,PA,disk,300,very bright light (white/purple) at the center of object and one smaller illuminating light on each side of the center light. +1978-06-01,41.1416667,-87.875,Bourbonnais,IL,disk,900,I remember this experience though I was very young, my brother (who is 8 yrs. older) and I were just talking about this sighting this e +1978-06-01,40.4602778,-88.0952778,Paxton,IL,unknown,5,White beacon of rotating white light followed by the same in green +1978-06-01,39.0036111,-77.4008333,Sterling Park (Near Dulles Airport),VA,disk,1800,My brother, sister and I saw several strange lights in the sky descending slowing towards the ground. My sis and bro looked thru binoc +1978-06-01,28.805,-97.0033333,Victoria,TX,oval,30,UFO seen over Texas skys in the late ྂs +1979-06-01,48.2325,-101.2958333,Minot,ND,rectangle,240,Large rectangular object hovering over Minot Air Base, ND. +1979-06-01,41.4994444,-81.6955556,Cleveland,OH,cross,1200,IT IS NICE TO KNOW THAT OTHERS HAVE SEEN "CROSS" SHAPED UFO'S WITH LIGHTS THAT STRETCH ACROSS BOTH LINES OF THE ENTIRE CROSS (+)! +1979-06-01,27.5061111,-99.5072222,Laredo,TX,circle,1800,Spinning circular black UFO with changing lights. +1979-06-01,37.7652778,-122.2405556,Alameda,CA,disk,180,This is a very delayed report: While stationed at the Alameda Naval air station in California. It was I believe early in 1979 when thei +1979-06-01,42.8386111,-84.1783333,Morrice,MI,disk,300,UFO with multi-colored lights spotted out in the country in Ingham county +1979-06-01,42.4405556,-76.4969444,Ithaca,NY,cigar,20,I was driving at nighttime from Dryden toward Ithaca NY on a country road when I saw a very large and bright white object in the sky. +1979-06-01,26.2441667,-80.2066667,Margate,FL,oval,300,Night, black, silent, round, oval, pulsating lights on edge, very close proximity +1979-06-01,33.4222222,-111.8219444,Mesa,AZ,other,2700,Events throughout my life +1979-06-01,38.3030556,-77.4608333,Fredericksburg,VA,other,420,this is a valid sighting +1979-06-01,33.2466667,-84.2641667,Griffin,GA,disk,90,Saucer shaped UFO. ((NUFORC Note: Possible hoax. PD)) +1979-06-01,35.9605556,-83.9208333,Knoxville,TN,light,900,light following a grid +1979-06-01,41.3630556,-79.7622222,Victory Heights (Franklin),PA,light,900,Lights and some kind of being (creature) starring back at me....... +1979-06-01,42.0805556,-70.9361111,Whitman,MA,sphere,120,a bluish white ball of light that moved with out a sound +1979-06-01,39.0708333,-89.8561111,Wilsonville,IL,circle,120,Wilsonville,IL 1979 also known at time for its radioactive waste dump in seventies +1979-06-01,37.6941667,-122.0852778,Castro Valley,CA,rectangle,300,saw boxkite shaped object with lights on corners, then driver saw tried to follow, to fast in blink of eye went 2 miles other direction +1979-06-01,42.9836111,-77.3261111,Farmington,NY,rectangle,300,Huge silent object witnessed in the sky in Farmington NY in 1979 +1979-06-01,36.8525,-121.4005556,Hollister,CA,egg,120,ORANGE BRIGHT EGG SHAPED OBJECTS +1979-06-01,40.5583333,-85.6591667,Marion,IN,triangle,3600,Space ship in a dream. +1979-06-01,43.0302778,-83.1661111,Attica,MI,disk,900,I am reporting this as it has been a long time and has bothered me for quite some time. I was about 7 or 8 at the time my parents and +1980-06-01,32.2744444,-94.9783333,Overton,TX,other,600,I was in house, heard noise like far away train,as sound got louder, could fell vibration in air. Went outside looked up and a low flyi +1980-06-01,39.2666667,-81.5616667,Parkersburg,WV,circle,180,Multi-colored craft hovering above me. +1980-06-01,34.5361111,-117.2902778,Victorville,CA,light,180,I was riding my motor cycle east bound on highway 66,as I looked left in broad daylight I saw three bright lights traveling east bound +1980-06-01,28.035,-82.3894444,Temple Terrace,FL,disk,180,disc shaped object spinning w/lights, no sound, hovering over me and husband in our pool in daylight. +1980-06-01,37.9747222,-87.5558333,Evansville,IN,circle,300,I was laying on my dad car looking up I saw a silver craft in the sky as clear as day on sycamore street in Evansville, Indana. +1980-06-01,32.3666667,-86.3,Montgomery,AL,disk,30,It looked like the comic book flying sausers when i was young._ silver , had lights , i was 100 ft away daylight. +1980-06-01,45.2333333,-93.2911111,Andover,MN,disk,1200,I heard a humming noise, craft hovered for 20 minutes then zipped away about 1/4 mile hovered again then dissappeared. +1980-06-01,39.0180556,-91.8969444,Auxvasse,MO,disk,600,Auxvasse MO. silver disk shaped object arox. 300 ft in diameter aprox 100 ft off the ground rotating, no sound. +1980-06-01,42.7158333,-78.8297222,Hamburg,NY,sphere,10,Observed bright white sphere hovering over vehicle +1980-06-01,41.3711111,-73.4144444,Bethel,CT,other,10,light seperated into four parts and flew away at right angles +1980-06-01,36.1630556,-82.8311111,Greeneville,TN,triangle,30,3 witnesses see 2 large triangularobjects hovering about 100 feet inair. No sound. Objects shoot laserbeam toward one another-disappear +1980-06-01,38.6497222,-90.3805556,Ladue,MO,triangle,120,black triangle with rounded corners 1980 St.Louis +1980-06-01,39.5138889,-121.5552778,Oroville,CA,sphere,120,Saw 2 glowing spheres going from West to East for about two minutes. +1980-06-01,32.1488889,-81.1633333,Port Wentworth,GA,cigar,1200,Object above tree in Port Wentworth , Ga +1980-06-01,33.5205556,-86.8025,Birmingham,AL,triangle,180,three lights that formed a triangle in the night sky +1980-06-01,33.0094444,-83.5338889,Gray,GA,other,10,low hovering large flat object with very loud roaring sound. +1980-06-01,35.6047222,-91.2816667,Newport,AR,unknown,2,A Flash of light from inside the cab of the truck. +1980-06-01,38.8333333,-76.9519444,Marlow Heights,MD,light,3600,Appeared to be a star moving at great speed, breaking up, disappearing then reappearing in another location. Very erratic behavior. +1980-06-01,35.7452778,-81.685,Morganton,NC,light,1200,Orange light splits into three pieces +1980-06-01,41.0530556,-82.7263889,Willard,OH,unknown,600,The vertical lights that were not like any machinery made it questionable. +1980-06-01,42.1655556,-88.2941667,Algonquin,IL,disk,900,As a teenager I saw a flying saucer do triangular patterns then disappear. It had lights and was spinning +1980-06-01,40.2066667,-75.1,Warminster,PA,disk,2700,Saw disk object wiht pulsing lights move at supersonic speed with no sound. +1981-06-01,44.8927778,-93.0347222,South Saint Paul,MN,chevron,1200,UFO seen above house with no noise and lights and did not hit power lines some how. Unbelivable sight especially as a young kid. +1981-06-01,40.8163889,-79.5222222,Kittanning,PA,disk,3,Huge dark gray metal disc with colored lights hovering above a tree. +1981-06-01,33.4222222,-111.8219444,Mesa,AZ,other,2100,I AM WONDERING WHY NO ONE IN AZ IS REPORTING THE FACT THAT THE MASS UFO SIGHTING SEEN 10 YEARS AGO WAS ACTUALLY THE SECOND TIME THIS HA +1981-06-01,41.6361111,-70.9347222,New Bedford,MA,disk,900,NEW BEDFORD MASS. UFO 1981 +1981-06-01,45.5236111,-122.675,Portland,OR,triangle,15,elongated triangle ship spotted around 1981, 3 witnesses. it put us in a daze making it hard to think +1981-06-01,39.5297222,-119.8127778,Reno,NV,light,60,"shooting star" does a 180, and makes off axis shifts over reno. +1982-06-01,39.4077778,-79.4069444,Oakland,MD,light,60,Bright light in woods moves toward witness; witness was left disoriented. +1982-06-01,40.2858333,-76.6505556,Hershey,PA,oval,30,Sleath Blimp sighted in Pa, +1982-06-01,48.0797222,-123.1005556,Sequim,WA,oval,600,3 Orange UFO's +1982-06-01,39.3391667,-94.2258333,Excelsior Springs,MO,triangle,1800,Two other friends and I (three of us )were in a parked vehicle conversing after dusk. We all saw what I am about to describe- three l +1982-06-01,42.7980556,-76.1097222,Tully,NY,triangle,120,tringular shaped object hovering while making a droning type noise. disappeared very quickly. +1982-06-01,31.3222222,-92.4341667,Pineville,LA,formation,600,This happened sometime in the early 80s as i was still in High School.I had taken our dog out,and had decided to sit on the porch for a +1982-06-01,29.4238889,-98.4933333,San Antonio,TX,other,10,My chidren and myself were visiting my brother. When it was time to leave. We all walk towards the car together. As I"m opening the doo +1982-06-01,42.0694444,-72.6152778,Agawam,MA,disk,120,i saw it in agawam but chanell 22 reported it in northhampton mass later that night on the news.it had colored lights rotating.it ho +1982-06-01,35.3619444,-86.2094444,Tullahoma County,TN,formation,120,HBCCUFO CANADIAN REPORT: The triangle and lights formed was about the width in the sky. +1982-06-01,47.5002778,-111.3,Great Falls,MT,circle,259200,Another troubling episode that has been even harder to explain when considering aspects of the Kicksburg, Pennslyvania UFO Sighting. +1982-06-01,28.6119444,-80.8077778,Titusville,FL,light,15,3 lights appear in the sky, rotating and seperate. +1982-06-01,33.6258333,-97.1330556,Gainesville,TX,light,60,I saw an object that closely resembled a star shoot across the sky extremely fast. +1982-06-01,41.29,-73.9208333,Peekskill,NY,chevron,900,Hundreds witness Large slow moving Craft at Drive-in +1982-06-01,39.6847222,-88.3063889,Arcola,IL,teardrop,900,Driving home at night I became mesmerized by a flying vehicle in my lane of traffic--football shaped on one end. +1983-06-01,32.7152778,-117.1563889,San Diego,CA,unknown,60,An object traveled directly above then flash and split into eight equal size objects traveling at same speed but opposite directions. +1983-06-01,42.3222222,-83.1763889,Dearborn,MI,disk,1200,Saucer with multi-colored lights near Fairlane Mall in Dearborn +1983-06-01,38.6272222,-90.1977778,St. Louis (Outside),MO,disk,180,This was way back in 1983 when this sighting took place. The saucer was sighted south from St. Louis as I was moving toward Dallas Tex +1983-06-01,29.9116667,-95.0619444,Crosby,TX,oval,600,Sightings in Crosby in the 80's +1983-06-01,33.4483333,-112.0733333,Phoenix,AZ,circle,600,Monstrous round silent UFO +1983-06-01,27.3361111,-82.5308333,Sarasota,FL,disk,17,YIKES! BELIEVE IT OR NOT, AT 13 I PRAYED TO SEE A UFO AND WITHIN 3-5 MINUTES I HEARD A LOW RUMBLING SOUND FOR 15 SEC. AND THEN SAW A DI +1983-06-01,36.2947222,-93.2919444,Alpena (Near),AR,sphere,300,Sphere with rows of windows Madison County, Arkansas 1982 or 1983 +1983-06-01,33.4483333,-112.0733333,Phoenix (Bartlette Lake),AZ,disk,14400,A saucer shaped ufo with many colors spining in the shape of the ship like a neon lite. +1983-06-01,40.3061111,-121.0047222,Westwood,CA,other,8,Huge Black Window. Square in shape with no depth. +1984-06-01,36.7416667,-88.6366667,Mayfield,KY,disk,600,a space craft a big as a small car floating over mayfield ky +1984-06-01,35.6013889,-84.4611111,Sweetwater,TN,unknown,600,I was a small child when this happened,but remember it like it was yesterday +1984-06-01,27.9472222,-82.4586111,Tampa,FL,cylinder,300,cylindrical shaped object with rotating display +1984-06-01,46.8802778,-117.3633333,Colfax,WA,oval,300,Sighting near Colfax, WA in the mid 80's and another in the Alpine Lakes Wilderness +1984-06-01,36.9902778,-86.4436111,Bowling Green,KY,unknown,1200,SOMETHING AIRBORNE HIT & DAMAGED OUR U-HAUL +1984-06-01,42.5063889,-71.0733333,Wakefield,MA,egg,120,UFO OR WATHER SATELLITE ? MY HEART TELLS ME =UFO +1984-06-01,30.6941667,-88.0430556,Mobile,AL,sphere,300,A single round object traveling due west stopped and another similar object emerged and flew southwest. First object continued west. +1984-06-01,31.5544444,-110.3030556,Sierra Vista,AZ,triangle,300,Silent delta wing aircraft +1984-06-01,40.1888889,-85.2041667,Parker City,IN,fireball,90,Orange/Red lights in sky +1984-06-01,40.9444444,-74.0758333,Paramus,NJ,cigar,300,Driving north at night (summer?)somewhere between 1980 and 1984, probably closer to the latter year on Route 17 north, probably between +1984-06-01,41.7602778,-81.1411111,Perry (Rural Highway, S.r.22),OH,other,600,Two polygonal cylinders hovering near S.R. 22 communicating with strobes +1984-06-01,31.63,-91.5544444,Ferriday,LA,other,8,My girl friend and I were leaving Ferriday La. about 10:00Pm. one night and just as we got even with the rest area about 3 miles out of +1984-06-01,41.8713889,-72.3691667,Tolland,CT,triangle,300,The triangular thing was slowly gliding just above the tree, (about 3 stories high) during the summer of 1984. It also was the size of +1984-06-01,34.0522222,-118.2427778,Los Angeles,CA,circle,600,Watched for about ten minutes a small balloon-shaped object that seemed to maneuver over a parking lot +1984-06-01,43.1894444,-85.9369444,Ravenna,MI,circle,1500,I would never have thought I would have so amazed by an object in small town USA in the middle of the night. +1985-06-01,35.8008333,-94.1347222,Winslow,AR,triangle,180,triangle shape ,redlight allaround the edge. hull looked like a grown carbon , as it passed over sound and wind stopped till it finish +1985-06-01,44.3,-120.8333333,Prineville,OR,other,900,Small silver pyramid object just above the power lines observed for about fifteen minutes in the mid 80's +1985-06-01,27.7705556,-82.6794444,St. Petersburg,FL,teardrop,120,UFO seen in St. Pete, Fl +1985-06-01,27.9472222,-82.4586111,Tampa,FL,disk,300,My two children and their friends ,playing on a swingset in our backyard,in tampa fl. called to me , "come outside mom nd see the ufo's +1985-06-01,38.4736111,-122.8891667,Forestville,CA,disk,30,My encounter with a Flying Saucer hovering over the moutains of Northern Californa in 1985. +1985-06-01,33.4305556,-96.3383333,Trenton,TX,oval,900,Red glowing object seen over small town several years ago. +1985-06-01,47.4736111,-94.88,Bemidji,MN,triangle,5,Triangular shaped object seen over rural road +1985-06-01,39.5297222,-119.8127778,Reno,NV,other,120,A silver Ball hovering over McCarran Blvd near Idewild park +1985-06-01,43.0386111,-78.8644444,North Tonawanda,NY,chevron,3600,7 lights in a chevron shape not sure it was one object lighted or 7 seperate ones +1985-06-01,47.9130556,-122.0969444,Snohomish,WA,triangle,3600,Triangle of three lights in the night sky, stationary but rotating like a wheel. +1985-06-01,36.1458333,-81.1608333,Wilkesboro,NC,fireball,60,We were fishing at the spillway at W Kerr Scott Dam in June I can't remember the date 1985. There was a large hill directly in front +1985-06-01,39.8266667,-75.0158333,Stratford,NJ,sphere,600,I was driving to work (night shift, RN)and saw a bright golden light on the western horizon, approximately 30 degrees above the horizon +1985-06-01,28.6775,-81.3280556,Casselberry,FL,other,300,Huge low hovering craft with different rectange shapes on it. +1985-06-01,38.4022222,-122.8227778,Sebastopol,CA,unknown,45,Hi Peter My sister and I called you a week or so ago- we were wondering about Jupiter in Sonoma County ( Sebastopol) Because of all o +1986-06-01,41.5930556,-81.5269444,Euclid,OH,other,1200,Unknown craft on the waters at Lake Erie +1986-06-01,33.7488889,-84.3880556,Atlanta,GA,sphere,120,Awakened by a orange glowing sphere floating in my bedroom in 1986. +1986-06-01,29.5519444,-98.2694444,Schertz,TX,oval,1200,A large round object hovered over my house very late at night, with lights all around it, that faded as I looked. +1986-06-01,34.1847222,-101.7063889,Plainview,TX,egg,300,seeing an egg shape object in the daylight sky +1986-06-01,43.0125,-83.6875,Flint,MI,unknown,600,Meteor shower? Sonic boom? I don't know... +1986-06-01,39.0044444,-76.8758333,Greenbelt,MD,unknown,600,Low, slow moving craft over NASA Goddard Space Flight Center +1986-06-01,40.7141667,-74.0063889,New York City (Brooklyn),NY,triangle,180,looking at night sky a large spaceship the size of football field passed overhead humming . A chill ran through me. +1986-06-01,37.4283333,-121.9055556,Milpitas,CA,light,45,A strange light in the sky appeared to "warp" out of sight. +1986-06-01,44.2694444,-83.5147222,Tawas City,MI,triangle,3600,Triangle craft with moving white light during meteor shower. +1986-06-01,35.1494444,-90.0488889,Memphis,TN,triangle,120,Three lights in a triangular formation. +1986-06-01,29.9544444,-90.075,New Orleans,LA,light,30,two lights circling each other in the night time sky then shooting away from each other in new orleans louisiana. +1986-06-02,51.88,-176.6580556,Adak,AK,light,180,I just watched a show on tv on the history channel. There was an event where an Japanese airliner reported an ufo sighting south of the +1986-06-02,41.8488889,-72.5722222,South Windsor,CT,circle,25,My brother and I were on top of our employer's building when i noticed a sphericle white light roughly 10 to 50 miles away. I thought i +1987-06-01,30.2366667,-93.0136111,Iowa,LA,unknown,15,A bright light came through the ceiling and paralyzed me and my friend. +1987-06-01,43.3666667,-124.2166667,Coos Bay,OR,disk,3600,Dome type object went straight up with a little round object along side and below.Object kept moving up and down side to side and chang +1987-06-01,37.775,-122.4183333,San Francisco,CA,other,14400,Abduction case,with 1 twist. Aliens left unearthly communications object as proof of contact! 500 Lights On Object0: Yes +1987-06-01,47.0380556,-122.8994444,Olympia,WA,egg,300,sighting years ago in WA +1987-06-01,25.7738889,-80.1938889,Miami,FL,light,1200,Sighting near turkey point nuclear power plant Miami, Fl. +1987-06-01,36.175,-115.1363889,Las Vegas,NV,unknown,15,Moon appears to split in half +1987-06-01,40.7141667,-74.0063889,New York City (Staten Island),NY,cigar,300,Three fast moving violently churning out of place red and black clouds +1987-06-01,43.2916667,-84.6075,Ithaca,MI,other,900,The light's +1987-06-01,43.0480556,-76.1477778,Syracuse,NY,oval,600,5 oval lights on craft (red, white, green) underneath lights 4 round red lights-seen when the sky was dark and clear Syracuse, New York +1987-06-01,39.2038889,-94.5544444,Gladstone,MO,disk,240,Flying saucer in Gladstone +1987-06-01,38.8588889,-82.8622222,Minford,OH,flash,10,Crackling sound, flash, and then swoosh sound. +1987-06-01,41.3358333,-73.8744444,Putnam Valley,NY,formation,900,A Little late reg info, but decided to repoert it. I would say that it covered the whole sky area that I looked at, flashing lighs, see +1987-06-01,34.7463889,-92.2894444,Little Rock (Outside Of),AR,formation,180,I saw a triangular 'star' formation with fourth moving 'star'. +1988-06-01,36.9486111,-84.0969444,Corbin,KY,disk,120,Huge Suacer or Disc, Cumberland Falls in Corbin Kentucky 1988 or 1989 +1988-06-01,34.5044444,-97.1191667,Davis,OK,light,600,My hubby and I were sitting on steps of a cabin at Turner Falls in Davis OK around midnight to 2 a.m. We were so amazed at all the sta +1988-06-01,26.2125,-80.25,Tamarac,FL,egg,5,It was a clear night, 2AM and on my way to my parents home.I was traveling West on Commercial Blvd. Turned North, onto, one block +1988-06-01,38.5366667,-82.6830556,Ironton,OH,unknown,300,I had an encounter with something not of this world. +1988-06-01,40.8755556,-123.5272222,Trinity Village,CA,unknown,120,satellite in orbit takes sudden right angle turn and disappears. +1988-06-01,38.4022222,-122.8227778,Sebastopol,CA,circle,120,Glowing red ball Sebastopol,CA +1988-06-01,27.0997222,-82.4577778,Venice Beach,FL,unknown,300,Venice Beach sighting orange lights +1988-06-01,44.1636111,-93.9991667,Mankato,MN,other,600,black submarine shapes oject at ligh speed and orange blasts +1988-06-01,29.3516667,-89.5241667,Buras,LA,disk,300,Disk shaped silent craft with 7 lights passed directly overhead of 3 witnesses, appeared high and huge. +1988-06-01,33.5080556,-89.9202778,Carrollton,MS,circle,30,Round large object on Hwy 82 in Carroll County +1988-06-01,33.6102778,-114.5955556,Blythe,CA,formation,1800,Lights over Calufornia desert simular to Phoenix +1988-06-01,39.0180556,-77.2088889,Potomac,MD,circle,3,Large orange ball traveled fast in night sky and then disappeared +1988-06-01,29.8944444,-81.3147222,St. Augustine,FL,sphere,120,Hovering Sphere over the ocean +1988-06-01,35.0844444,-106.6505556,Albuquerque,NM,sphere,180,Silent sphere with multicolored lights floats slowly over Albuquerque then shoots north then west out of sight. +1988-06-01,42.8255556,-78.8236111,Lackawanna,NY,unknown,240,spotlight at night, 90' away, no sound or wind. +1988-06-01,41.6594444,-81.4544444,Lakeline,OH,light,1200,2 Lights Over Lake Erie - 1988 +1989-06-01,32.7152778,-117.1563889,San Diego,CA,other,10800,Encounters, abductuin and informed of future changes coming and their reason for coming into my life and their response to changes. +1989-06-01,40.7583333,-82.5155556,Mansfield,OH,other,120,Fast, small, round low level ATC tower fly over. +1989-06-01,29.2105556,-81.0230556,Daytona Beach,FL,sphere,240,Saw a florescent orange sphere in the sky while driving to work. It was low.The bottom was in the tree tops. It seemed to glow from wit +1989-06-01,41.9266667,-73.9130556,Rhinebeck,NY,chevron,1800,sighting in Rhinebeck, NY 1989 Rt. 9 - Taconic State Parkway +1989-06-01,42.6647222,-77.77,Groveland,NY,light,60,A bright White Light seen by 4 teens in 1988 +1989-06-01,32.7833333,-96.8,Dallas (Dfw Airport),TX,cigar,180,Large cigar shaped metalic flying object +1989-06-01,19.7297222,-155.09,Hilo,HI,unknown,7200,Bright light at car level +1989-06-01,40.2322222,-76.885,New Cumberland,PA,rectangle,300,Small to medium sized black rectangular shaped craft several years above the tree line. +1989-06-01,42.45,-73.2458333,Pittsfield,MA,disk,45,It was about 100-200 yards away above some houses, it had blue lights circling... +1989-06-01,44.5880556,-72.0888889,Wheelock,VT,other,360,((HOAX??)) An image seen from earth to space makes right angle turns then at light speed takes off. +1989-06-01,41.9941667,-88.2922222,South Elgin,IL,unknown,45,flashing, tall, white strobe lights over an Illinois cornfield +1989-06-01,39.3108333,-91.4883333,Vandalia,MO,triangle,1800,Large black triangle, that made no noise and seemed transperant when looking up at it but solid and dark at a distance. +1989-06-01,33.4327778,-95.6572222,Enloe,TX,triangle,1200,Black Triangle spotted over rural Texas in late 80's +1989-06-01,40.7141667,-74.0063889,New York City,NY,unknown,10800,Alien working in a store in a busy neigborhood blending in with us. +1989-06-01,38.8158333,-76.75,Upper Marlboro,MD,disk,300,This account was seen by my mother and step father. I have interviewed them numerous times and just last night I questioned them again +1989-06-02,41.85,-87.65,Chicago (Near),IL,formation,120,3 specks of light/triangle formation/got brighter&larger/moved fast to rt side of commercial airplane. +1989-06-02,40.6936111,-89.5888889,Peoria,IL,circle,360,well this happened when i was about ten and im 16 now.At that time i shared a room with my sister.It was night time and for some reason +1989-06-02,40.6152778,-74.7708333,Whitehouse Station,NJ,disk,120,Mother and children see a UFO at close range as Army helicopters appear to be pursuing it. +1990-06-01,38.7891667,-90.3225,Florissant,MO,sphere,300,this was a sphere that happen to a McDonnell -douglas employee sometime ago, duration about 5 minutes +1990-06-01,40.9644444,-76.8847222,Lewisburg,PA,light,300,Plane collides with ball of light +1990-06-01,39.4272222,-75.2344444,Bridgeton,NJ,disk,60,i was ouside in the street walking to my car when the ground lighted up all around my i looked up and seen a ufo i could see it was sau +1990-06-01,38.4405556,-122.7133333,Santa Rosa,CA,sphere,180,Floating translucent sphere floats right by +1990-06-01,40.6083333,-75.4905556,Allentown,PA,other,60,It was a clear day and warm. I seen no lights on the object. The size of it was astonishing. +1990-06-01,39.7788889,-75.5986111,Greenville,DE,disk,30,White disc makes sharp turns and then shoots up as fast as lightning. +1990-06-01,47.0980556,-122.2030556,Orting,WA,disk,30,UFO in contact with commerical airliner +1990-06-01,32.7152778,-117.1563889,San Diego,CA,rectangle,900,I saw a ginormous, rectangular, metallic UFO in broad day light over the naval base. +1990-06-01,32.3255556,-90.9269444,Delta,LA,cigar,2,I was driving when I thought I was about to witness a plane crash, then it disappeared. +1990-06-01,33.0736111,-117.1633333,Elfin Forest,CA,unknown,20,Windows all bowed in simultaneously, sound, ears popping almost in pain. +1990-06-01,35.4397222,-95.9816667,Henryetta (Turky Pin Hollow),OK,light,3600,Viewed in summer ྖ with mother, colorful orb quietly travel in sky in unconventional manner. +1990-06-01,45.5947222,-121.1775,The Dalles,OR,triangle,1200,Triangle shaped with lights moving slowly, no sound +1990-06-01,33.8702778,-117.9244444,Fullerton,CA,circle,300,test aircraft or ufo? +1990-06-01,33.8702778,-117.9244444,Fullerton,CA,disk,600,already did this, forgot witness form +1990-06-01,38.8338889,-104.8208333,Colorado Springs (South Of, On Hwy 115 Near The Co. Line),CO,other,300,The UFO I saw was stationary, brightly flaming on the bottom and dripping profusely toward the ground. +1991-06-01,32.7252778,-114.6236111,Yuma,AZ,disk,25200,Loss of hours while driving to Yuma, Az +1991-06-01,40.3358333,-79.87,Port Vue,PA,sphere,600,Mother and daughter view glowing red sphere at 4:00 in an empty field 200 yards behind neighbor's back yard. +1991-06-01,38.7522222,-121.2869444,Roseville,CA,cigar,600,The cigar-shaped silver craft was stationary in the sky, then disappeared. +1991-06-01,40.7944444,-73.8188889,Whitestone (Queens, Over),NY,disk,1200,A disk shape object was spotted by my Dad while he was relax ing the back yard. He called to me sveral times .I thought he was pulling +1991-06-01,40.7905556,-73.2022222,Central Islip,NY,triangle,300,Huge Triangle UFO +1991-06-01,39.3641667,-74.4233333,Atlantic City,NJ,circle,600,Three intensely bright red cirlcles in a triangular formation travelling in tanden as seemingly high speed +1991-06-01,36.175,-115.1363889,Las Vegas,NV,other,7200,I was about seven when it happened. +1991-06-01,38.7133333,-77.7955556,Warrenton,VA,circle,300,A silver circle shaped disk with a dome on top and a shield that opened and closed in a cloud on a sunny day in Warrenton Virginia +1991-06-01,34.1141667,-116.4313889,Yucca Valley,CA,disk,259200,A UFO Experience of Time and Space in The Hi-Desert of Southern California +1991-06-01,42.6055556,-83.15,Troy,MI,disk,600,My wife 34,son 10 and his grandmother 68,saw a disk shaped object with lights hovering .5-1 mile up in the air near 14 mile and I-75 w +1991-06-01,44.8927778,-93.0347222,South Saint Paul,MN,triangle,90,It was huge , black , with lights and totally silent and triangle shaped +1991-06-01,44.5955556,-75.1694444,Canton,NY,light,180,Three, blue, circular lights were hovering in a triangle formation over a field in Northern, NY in June 1991. +1991-06-01,43.0125,-83.6875,Flint,MI,disk,120,UFO over Flint, Michigan 1991 +1992-06-01,40.1744444,-74.9230556,Langhorne,PA,triangle,180,The triangle of orange dots in the distance was suddenly a large mechanical mass hovering above me as I felt my heals leave the ground. +1992-06-01,18.2675,-66.7008333,Utuado (Puerto Rico),PR,unknown,2,Well, I can not say the exact date it was in 1992 and it was a cool but strange expirience. All we saw were diferent lights. Blue, yell +1992-06-01,40.7141667,-74.0063889,New York City,NY,cigar,720,cigar like encounter +1992-06-01,41.7613889,-88.4436111,Sugar Grove,IL,oval,600,First off, the first night my girlfriend and I were fishing in a stone quarry and it was time to go. Right before we started to pac +1992-06-01,33.4669444,-117.6972222,Dana Point,CA,sphere,60,Green glowing ball +1992-06-01,40.8,-96.6666667,Lincoln,NE,cigar,600,Former Airline Captain witnessed three craft flying a wedge formation as follows: Aprox. 100 ft. above ground level traveling from west +1992-06-01,39.2758333,-121.6588889,Live Oak,CA,triangle,420,Flash of blue energy followed by an object sighting. 500 Lights On Object0: Yes +1992-06-01,30.2669444,-97.7427778,Austin,TX,fireball,600,A bright gold glow during a silvery lightning storm +1992-06-01,33.4222222,-111.8219444,Mesa,AZ,changing,900,Back in the early 1990s during the Early DARK Evening I witnessed a set of lights over NorthEast Mesa Arizona heading from East to West +1992-06-01,34.0805556,-118.0719444,Rosemead,CA,oval,540,flashing lights with no particular pattern or order or timeing all differant colers +1992-06-01,40.2455556,-74.8463889,Yardley,PA,triangle,10,A dark, triangular low flying object passed over my house in Yardley Pa. in the summer of 1992 +1992-06-02,34.5644444,-92.5866667,Benton,AR,disk,180,Round object, appearing the undeside of a suacer, hovered near me, then silently "whisked"off across the sky at an amazing speed. +1993-06-01,43.2205556,-76.8152778,Wolcott,NY,unknown,900,lights in the sky over Wolcott New York +1993-06-01,40.6408333,-122.2313889,Bella Vista,CA,other,2400,Aggressive, Levitating Metallic Alien Robot thing +1993-06-01,26.1888889,-98.155,San Juan,TX,triangle,300,Flying triangles slowly floating about a light pole. Passed right above us! +1993-06-01,44.6377778,-69.5036111,Clinton,ME,other,10,Bright star +1993-06-01,39.0016667,-76.6877778,Crofton,MD,other,60,Blimp shaped craft with lights and orange glowing bottom. +1993-06-01,38.5816667,-121.4933333,Sacramento,CA,other,900,World war two military cargo plane. Similar to a jumbo jet huvering 15 feet above top of car. Silent with no jets or propeler on wings +1993-06-01,36.3319444,-94.1183333,Rogers,AR,cigar,180,Dull, metallic, cigar shaped object traveled from one cloud formation to another, then back to the other formation on the exact path. +1993-06-01,40.4405556,-79.9961111,Pittsburgh,PA,sphere,15,sphere sighted at "top of the triangle" resturant in pittsburgh, pa... +1993-06-01,47.3294444,-122.5788889,Gig Harbor,WA,disk,120,back in 93 +1993-06-01,41.5033333,-74.0108333,Newburgh,NY,disk,300,Newburgh ny has visiters +1993-06-01,38.8338889,-104.8208333,Colorado Springs,CO,cigar,900,Saw a UFO and spoke to a possible alien. +1993-06-01,35.3841667,-97.7241667,Mustang,OK,cylinder,3600,A plane like object without wings, with lots of windoows emitting light...I can't tell much more because I remember nothing after that. +1993-06-01,33.1958333,-117.3786111,Oceanside,CA,other,60,A space shuttle like craft +1993-06-01,37.3394444,-121.8938889,San Jose (Snell Rd / Blossom Hill Rd),CA,circle,300,I eye witnessed a floresent orange object that ended up darted off into deep space at light speed (lightning speed). It made no sound +1993-06-01,45.7833333,-108.5,Billings,MT,light,20,3 individual lights flying at night straight up in the sky. +1993-06-01,43.1116667,-88.4991667,Oconomowoc,WI,cross,3600,Hovering craft with illuminated cross in its center. +1993-06-01,41.3713889,-83.9419444,Mcclure,OH,formation,120,5 orbs high in the sky over Bowling Green, Ohio. One &quot;mother ship&quot; spotted above tree tops in McClure, Ohio. +1993-06-02,33.4483333,-112.0733333,Phoenix,AZ,oval,60,Several incandescent football-shaped craft appeared and manuevered in ways unlike any Earthly craft. +1993-06-02,40.7608333,-111.8902778,Salt Lake City,UT,egg,2,The late nite sighting +1994-06-01,44.9536111,-92.1733333,Wilson,WI,light,900,At night, a group of about five independently-moving lights, changing directions instantly in straight paths. +1994-06-01,33.1136111,-94.1641667,Atlanta,TX,other,14400,We saw a giant ball of light and lighting and some people like things moving around. +1994-06-01,20.8783333,-156.6825,Lahaina (Puamana) (Residential Oceanside),HI,circle,6,5 Bright glowing balls with NO comet trail traveling at great speed from north to south over hawaian islands +1994-06-01,38.801944399999996,-94.4525,Raymore,MO,triangle,600,4-5 lights & 1 large ship 10-11 years ago. Did you see it? +1994-06-01,36.7222222,-86.5772222,Franklin,KY,disk,120,Lady Drives Underneath A Disk Hovering Over Highway +1994-06-01,45.0025,-101.2330556,Eagle Butte,SD,formation,900,I was driving and noticed people parked and looking in the sky. We watched these lights move slowly with no sound. +1994-06-01,37.2152778,-93.2980556,Springfield,MO,circle,120,round dull metal efo covered in piping on the bottom +1994-06-01,41.9575,-88.0808333,Bloomingdale,IL,sphere,120,pulsing silver object in the daytime +1994-06-01,32.3666667,-86.3,Montgomery,AL,rectangle,300,Strange object over Montgomery Alabama +1994-06-01,43.9547222,-86.28,Scottville,MI,changing,300,A shape changing from round to disc which paced us for several minutes before speeding away. No sound. +1994-06-01,47.0344444,-122.8219444,Lacey,WA,rectangle,1800,Large carrier escorted by military copters over Puget Sound area. +1994-06-01,36.7280556,-108.2180556,Farmington,NM,triangle,120,Triangular object seen in Farmington . +1994-06-01,36.2030556,-119.0872222,Lindsay,CA,sphere,180,floating spheres or huge orbs in sky radiating one kind of light white light . +1994-06-01,32.3666667,-86.3,Montgomery,AL,triangle,10800,triangular object with 3 bright lights moved east to west across east montgomery over the v.a. hospital. +1994-06-01,40.8041667,-74.0125,North Bergen,NJ,disk,20,I have seen a disk shaped object in outerspace. It was a very calm and peaceful shade of florescent blue or soft powder blue light +1994-06-01,41.6666667,-70.1852778,South Yarmouth,MA,light,360,Very cloudy night, seeing bright light behind clouds and seeing many transparent green spheres shooting out from the clouds. +1994-06-01,36.175,-115.1363889,Las Vegas,NV,triangle,480,Black triangle seen in 1994 over Las Vegas. 911 called. +1994-06-01,40.6258333,-75.3708333,Bethlehem,PA,triangle,480,UFO Close Enough To Throw Rock At It, Makes No Noise In Bethlehem PA 1994 +1994-06-01,32.3666667,-86.3,Montgomery,AL,triangle,120,I was coming back to my college dorm at Auburn University at Montgomery -AUM (after grocery shopping one night) and I saw "something" h +1994-06-01,37.1305556,-121.6533333,Morgan Hill,CA,disk,3600,Foothill Sightings +1995-06-01,38.8338889,-104.8208333,Colorado Springs,CO,light,15,About 1am i saw a bright red light racing from the front range of Colo northeast and changed angles and dissapeared in 15 sec. +1995-06-01,38.8338889,-104.8208333,Colorado Springs,CO,light,15,There I was laying in a wheel barrel at lunch staring at the front range like countless other nights when a bright red light appeared +1995-06-01,38.4730556,-77.9969444,Culpeper,VA,unknown,300,alien abduction +1995-06-01,43.18,-73.7447222,Wilton,NY,light,50,Possible ufo meeting 01/1995 in Northern New York State +1995-06-01,18.3811111,-65.9016667,Canovanas (Puerto Rico),PR,other,900,spanish Eran las 2:30am cuando llegava a mi casa . estacione mi auto para poder entrar a mi casa cuando me disponia a abrir el porton d +1995-06-01,34.0522222,-118.2427778,Los Angeles,CA,circle,30,Huge stationary disk +1995-06-01,33.4222222,-111.8219444,Mesa,AZ,other,300,Bigger than a house floating in the sky.I know what,I saw, but don't know why! +1995-06-01,41.1575,-81.2422222,Ravenna,OH,triangle,300,i work up bout 12 am and something told me to look out the window i did across there a house that sit beside a line of pine trees that +1995-06-01,40.5152778,-107.5458333,Craig,CO,changing,1200,Very Shiny and Reflective Saucer seen on the South side of Craig, Colorado Summer of 1995 +1995-06-01,34.0522222,-118.2427778,Los Angeles,CA,formation,900,A silver polygon object with several satelight ships over downtown Los Angeles in the mid nintey's, stops and flys straight up. +1995-06-01,35.9938889,-78.8988889,Durham,NC,circle,10,A strange object moving at warp speed in the day +1995-06-01,27.7705556,-82.6794444,Saint Petersburg,FL,sphere,3900,Orange Sphere 10 foot wide just sitting out side our window for 20 minutes! What is it? +1995-06-01,33.4222222,-111.8219444,Mesa,AZ,oval,1800,Large gray Zeppelin or blimp shaped craft sighted north of Mesa, AZ +1995-06-01,36.5297222,-87.3594444,Clarksville,TN,formation,900,I saw strange lights,i grabbed a video camera and while i was tapeing a fort cambell chopper flew through the same shot. There were als +1995-06-01,44.6336111,-121.1283333,Madras,OR,other,109800,We were possibly abducted by a pyramid shaped UFO? while traveling in eastern oregon. +1995-06-01,42.7261111,-71.1913889,Methuen,MA,oval,60,A large yellow football shaped figure moving rapidly in sky in a horizontal movement. Very large. I saw it for about a minute. There wa +1995-06-01,41.2375,-80.8186111,Warren,OH,triangle,8,I was lying on my back on a trampoline star gazing at my brother in laws something ive done for 25 yrs.clear blue sky visability was 20 +1995-06-01,30.2669444,-97.7427778,Austin,TX,light,1800,Floating red light over Texas-matches other reports. +1995-06-01,25.4683333,-80.4777778,Homestead,FL,triangle,600,triangle lights with a flash slow moving no sound +1995-06-01,30.4211111,-87.2169444,Pensacola,FL,flash,300,Flash in a Pensacola sky +1995-06-01,41.8908333,-80.6763889,Kingsville,OH,other,30,Cube-shaped UFO +1995-06-01,40.1158333,-74.7866667,Roebling,NJ,light,600,My neighbor and I saw a white light executing right and left angles, no sound or shape, over a lake behind our houses. +1995-06-01,46.2633333,-119.4866667,Benton City,WA,unknown,120,very strange sighting +1995-06-01,34.0175,-78.2677778,Supply,NC,unknown,600,We spotted a craft moving VERY slowly and in complete silence approximately 200ft above us shining lights all about as if searching. +1995-06-01,42.0583333,-70.1791667,Provincetown,MA,unknown,45,Three white lights at high altitude in a triangle formation moving at "jet liner" speed +1995-06-01,36.0958333,-79.2672222,Mebane,NC,triangle,1800,I was inside my home recovering from surgery. My wife was at home with me. At app.11:30pm mydaughter returned from amovie with 2 frieds +1995-06-01,20.8911111,-156.5047222,Wailuku,HI,fireball,600,Fireball from the West Maui Mountains toward the Pacific Ocean +1996-06-01,38.5019444,-122.995,Guerneville,CA,diamond,600,It occurred late at night when i happened to be gazing at the stars on a clear night. i was looking all the big stars towards the nort +1996-06-01,41.2383333,-81.7452778,Hinckley,OH,unknown,300,I saw hovering lights and at a later date actual beings that were not human who may have been following me. 500 Lights On Object0: +1996-06-01,40.1672222,-105.1013889,Longmont,CO,other,2,Train like ufo on Airport Rd in Longmont +1996-06-01,27.8533333,-82.3827778,Gibsonton,FL,light,30,A 2 person witness to a UFO entering a type of "worm hole" +1996-06-01,39.9180556,-75.0716667,Collingswood,NJ,circle,6,Formation of 5-6 circular disks appears connected only edges illuminated orange/red no sound and traveled south to north in 5 seconds +1996-06-01,43.1919444,-89.4555556,Waunakee,WI,cylinder,240,This was not a strange light but s a very large easily defined object +1996-06-01,39.0347222,-76.9077778,Beltsville,MD,triangle,1,two small triangular craft very fast and absolutly silent +1996-06-01,47.6063889,-122.3308333,Seattle,WA,other,60,And lo, the star which they had seen in the west suddenly went before them and came to rest over the place... +1996-06-01,42.8144444,-83.7825,Linden,MI,disk,10,Disk shaped UFO seen directly above me. +1996-06-01,47.2572222,-122.7572222,Lakebay,WA,triangle,300,Two contact incidents of Black, Shiny, Triangular Craft that hovered just above tree line emitting low hum. +1996-06-01,36.3122222,-87.1413889,Chapmansboro,TN,cigar,180,cigar shaped, light tan and dark brown, quiet, hovering, verylow, appeared manufactured. +1996-06-01,29.8830556,-97.9411111,San Marcos,TX,oval,15,A Silver object, no sound, moving from North to South. It changed, glowed bright white and then just seemed to vanish. +1996-06-01,31.7586111,-106.4863889,El Paso,TX,disk,3600,Light's in Triangle Fromation +1996-06-01,44.0522222,-123.0855556,Eugene,OR,triangle,120,Diamond broach shape over Eugene, OR. +1996-06-01,34.8991667,-77.5469444,Richlands,NC,light,180,Bright single white light on a summer night sky in eastern N.C. +1996-06-01,29.9544444,-90.075,New Orleans,LA,changing,20,While a conversation with a friend a large mirror like objesct came out of the south west sky traveling at a moderate rate of speed. Th +1996-06-01,29.9544444,-90.075,New Orleans,LA,changing,20,The above report was mine and I just wanted you to know my name for your files. +1996-06-01,40.3266667,-78.9222222,Johnstown,PA,oval,3,bright blue-white oval light at high altitude, moving slowly S-N +1996-06-01,35.4494444,-97.3963889,Midwest City (Tinker Afb),OK,triangle,300,Triangle Shaped UFO after a weeks storm 1996 in Midwest City, OK. +1996-06-01,37.9780556,-122.03,Concord,CA,light,10,Man sees solid, red "satellite" moving E to W. Obj. suddenly joined by 2nd obj., then 3rd. All turn south, 2x wink out, 3rd goes N. +1996-06-01,41.85,-71.4666667,North Providence,RI,sphere,16,((HOAX?? Obscene)) A life situation loke no other. +1997-06-01,29.7630556,-95.3630556,Houston,TX,chevron,300,1997 Houston, Tx., midnite - 1a.m., observed silent, dark, Chevron shaped object, gliding very slowly overhead, tremendous size. +1997-06-01,40.8041667,-74.0125,North Bergen,NJ,light,120,I remember seeing lights over North Bergen, NJ +1997-06-01,33.4483333,-112.0733333,Phoenix,AZ,unknown,14400,((NUFORC Note: We suspect the possibility of twinkling stars. Just a guess. PD)) Stationary red-green=white lights. +1997-06-01,38.3241667,-85.4725,Crestwood,KY,circle,25,i was only 3. the craft was round.a green glowing light on the side. it was close to the ground so i could see the abduction portal on +1997-06-01,39.3994444,-84.5613889,Hamilton,OH,circle,600,3 sightings that I've seen that I want you to know of +1997-06-01,38.175,-122.2597222,American Canyon,CA,triangle,60,I SAW A TRIANGULAR SHAPED CRAFT AND I SAW INSIDE OF IT. +1997-06-01,21.35,-157.7208333,Waimanalo,HI,oval,300,Blurs out of atmosphere, makes speedy angled turns, not slowing down to take em and seems to be spastic at times, and also silent. +1997-06-01,37.4208333,-81.1994444,Lashmeet,WV,triangle,300,I saw a gray hazy metallic triangle shaped object with 3 blue lights and an appearance of being transparent in form. +1997-06-01,36.7477778,-119.7713889,Fresno (Outside Of),CA,oval,10,round silver floating ball crosses over airport then leaves at high rate of speed with 2 jets attempting to follow +1997-06-01,34.0094444,-118.1044444,Montebello,CA,circle,40,Report of fire ball hovering above a city street. +1997-06-01,32.7919444,-115.5622222,El Centro,CA,chevron,120,The big v shape UFO was moving in a slow motion towards the super Kmart in El Centro CA. when I saw it outside the store. +1997-06-01,29.7630556,-95.3630556,Houston,TX,other,780,3 objects at 30ꯠ ft traveling ssw at about600-700 mph +1997-06-01,41.5380556,-72.8075,Meriden,CT,sphere,600,A downing of a UFO? +1997-06-01,34.6422222,-82.4561111,Pelzer,SC,triangle,300,I was watching a few inmates who were on a small rec yard and it was dark out but we had a specific time for them to come in off the ya +1997-06-01,42.6525,-73.7566667,Albany (Area),NY,other,180,IT WAS JUST TURNING DARK=HUDSON RIVERS AT THE END OF MY BACK YARD=IT WAS VERY REAL AND THE ONLY UNUSAL THING I HAVE EVER WITNESSED IN M +1997-06-01,41.1075,-83.7927778,Mccomb,OH,triangle,30,Triangular object spotted between Gilboa and McComb. No sound. Light on each corner. +1997-06-01,28.5388889,-80.6722222,Merritt Island,FL,light,240,White yellow light "jumping" around in the sky over Brevard county, FL +1997-06-01,42.1013889,-72.5902778,Springfield,MA,chevron,240,Very big no sound +1997-06-01,31.7586111,-106.4863889,El Paso,TX,other,20,it was night so i couldnt see all the detail on the gigantic craft.i could tell it was probably black & rectangular mixed w/an oval sha +1997-06-01,40.6461111,-111.4972222,Park City,UT,circle,20,Very low flying, completly silent, lights flashing, in the middle of town and able to hover perfectly in one position. +1997-06-01,37.9358333,-122.3466667,Richmond,CA,other,300,Silent "Airplanes" at Low Altitude +1997-06-01,36.9033333,-104.4386111,Raton (South Of; Ft. Lincoln Rest Stop),NM,unknown,180,Observed unknown high speed, high altitude objects make non-balistic course changes. +1997-06-01,47.7558333,-122.3402778,Shoreline,WA,triangle,600,its been 10 years, did anybody else see what i saw in shoreline washington +1997-06-02,30.2669444,-97.7427778,Austin,TX,rectangle,2,Large rectangular, metallic, no sound, no lights, just above trees, not moving trees, Austin, TX end of 1996 thru 1997 +1997-06-02,39.2902778,-76.6125,Baltimore,MD,chevron,900,Object was "V" shaped,white with no rounded edges travelling south east in daylight.with no visible engines or markings. +1998-06-01,39.7391667,-104.9841667,Denver,CO,circle,4,I was looking towards the Mountains, west, when I saw a large bright golden circle shaped light raise from that area. It went accross +1998-06-01,35.3733333,-119.0177778,Bakersfield,CA,triangle,60,Black triangular object moving slowly through the night sky. +1998-06-01,35.0427778,-120.475,Nipomo,CA,light,900,My roomate and I were out early mending a horse fence in a very rural area, very dark and quiet. We were the only witnesses as far as +1998-06-01,30.3333333,-87.1375,Pensacola Beach,FL,light,60,...like insects near a light +1998-06-01,46.9966667,-120.5466667,Ellensburg,WA,light,8,10/10/1998 Bright white light moving very fast +1998-06-01,36.0997222,-80.2444444,Winston-Salem (North Of),NC,circle,180,white light moving at very fast speed then going verticle +1998-06-01,38.9780556,-122.8383333,Kelseyville,CA,triangle,600,It was low alt. very close, slow, had a spotlight, and looked like a black triangular stealth aircraft +1998-06-01,46.2858333,-119.2833333,West Richland,WA,oval,2,screaming large round ball metal ball crossing the afternoon sky caught on film around 1998 +1998-06-01,48.5466667,-117.9044444,Colville,WA,other,2,Halogen like dual lights race across highway, taking 90 degree turn north. +1998-06-01,41.6638889,-83.5552778,Toledo,OH,oval,3,i was riding my bike out of my drive way and out of the woods across the road a ball of light about 20 inches in diam. shoot out seemed +1998-06-01,33.3225,-81.1425,Denmark,SC,triangle,300,Triangle shape object, black with light with no sounds in the summer of 1998. +1998-06-01,40.9113889,-73.7827778,New Rochelle,NY,light,2,Blue illuminated round object +1998-06-01,38.8105556,-90.6997222,O'fallon,MO,triangle,1200,1998 BT over hwy 70 - OFallon Missouri +1998-06-01,44.9430556,-123.0338889,Salem,OR,other,1800,We were stargazing, when we saw a dot of light weaving between stars. +1998-06-01,30.2363889,-93.3772222,Sulphur,LA,sphere,3,Orb / Sphere seen over football Stadium +1998-06-01,40.7372222,-114.0366667,Wendover,UT,triangle,600,Huge dark Triangle in West desert sky +1998-06-01,46.8108333,-90.8180556,Bayfield (Near, Lake Superior, South Shore),WI,fireball,5,white/green ball with trailing tail and falling debris -slow moving +1998-06-01,39.4811111,-76.6441667,Cockeysville,MD,unknown,120,I HAD SENT TO YOU THE PHOTO OF THIS EVENT. I NEVER EVEN RECEIVED A THANKS OR AT LEAST A COMMENT. IT WAS A GOOD PHOTO OF THE STRANGE PH +1998-06-01,29.942777800000002,-90.3516667,Destrehan,LA,light,120,One reddish light splits into two smaller lights of same color & intensity, then they travel in different directions. +1998-06-01,34.4436111,-118.6086111,Valencia,CA,triangle,180,black triangle masks stars in Santa Clarita +1999-06-01,43.4675,-85.9419444,Fremont,MI,light,2700,Bounding, glowing neon orbs of light over Fremont, MI. Neon green orb hovering over neighbor's home for several minutes. +1999-06-01,47.6105556,-122.1994444,Bellevue,WA,circle,3,Bright light went vertical and disappeared +1999-06-01,39.3594444,-120.7980556,Washington,CA,fireball,3,Instant grn slow falling,large bright fireball/ball lightning. So.west to No.west +1999-06-01,46.2636111,-96.5877778,Breckenridge,MN,disk,120,We seen it realy close over our us ,I panic because over me was a ufo that I would read in fiction books.... +1999-06-01,47.3294444,-122.5788889,Gig Harbor,WA,circle,120,All of the above accounts were of round, bright white lights +1999-06-01,41.2888889,-72.6822222,Guilford,CT,unknown,300,No interaction, but eye contact made directly almost face to face with distinct humanoid figure with circular head. +1999-06-01,40.5622222,-111.9288889,South Jordan,UT,circle,2,Large Circular Object Appears and Disappears 'Into Thin Air' +1999-06-01,41.4527778,-82.1825,Lorain,OH,light,300,Lorain, OH UFO emerges out of Lake Erie +1999-06-01,41.6647222,-72.6397222,Rocky Hill,CT,sphere,300,Sphere shaped object traveled at right angles, and high speeds. +1999-06-01,33.9761111,-117.9044444,Rowland Heights,CA,light,5,A stable bright light, larger than anything practical shined into my room on the second floor, not making any noise, it disappeared rig +1999-06-01,27.0994444,-82.4544444,Venice,FL,disk,180,I am just finding out about this place and I wish I would have known years ago I would have called but back then I didn’t have a smart +1999-06-01,47.4830556,-122.2158333,Renton,WA,disk,60,it was a smooth silverish metallic object shaped like a dome- not exactly a saucer or disk- but a dome. +1999-06-01,32.2216667,-110.9258333,Tucson,AZ,other,60,High altitude boomerang shaped ufo flying diagonally. only visible looking straight up at it. +1999-06-01,39.9752778,-87.6358333,Georgetown,IL,other,600,They were about the same size of a small engine airplane +1999-06-01,35.3111111,-120.8313889,Los Osos,CA,cylinder,180,Strange small object rotates through air unaffected by its surroundings.. +1999-06-01,40.9994444,-75.1816667,East Stroudsburg,PA,cigar,10,I saw a large cigar shaped object fly across the sky very quickly and it gave off a larde red light. Then I saw it again the same nigh +1999-06-01,34.1013889,-84.5194444,Woodstock,GA,unknown,2,I was alone, walking through the house, when a huge sonic boom shook the house and rattled the windows so hard I thot they would shatte +1999-06-01,42.3458333,-71.5527778,Marlborough,MA,sphere,300,Metallic ball hovering in the sky in Massachusetts +1999-06-01,39.0769444,-84.1769444,Batavia,OH,light,7200,((HOAX??)) ufo 2007 +1999-06-01,37.3022222,-120.4819444,Merced,CA,circle,60,2 gold colored speherical objects w/ pointed ends +1999-06-01,34.3077778,-118.4483333,Sylmar,CA,rectangle,20,I was driving north on the 14 freeway towards LA where the 405 the 5 & the 210 meet . I looked up into the horizion to see a rectangula +1999-06-01,42.2911111,-71.125,Roslindale,MA,light,180,white light followed by many colored tail streaked across sky. +1999-06-01,47.6588889,-117.425,Spokane,WA,light,180,Silent erratic lights cross dry non-traversable lakebed, then chase observer at high speeds. +1999-06-01,38.9686111,-77.3413889,Reston,VA,disk,300,i WAS OUTSIDE ON THE BALCONY, IT HOOVERED ABOVE TREES WAS DISC SHAPPED, I COULD SEE the red running lights;there was no noise and then +1999-06-01,41.4488889,-82.7080556,Sandusky,OH,rectangle,5,Large rectangular craft flew at an angle over my head, and disappeared into the horizon. +1999-06-01,43.0716667,-70.7630556,Portsmouth,NH,oval,30,Hazy "white light" oval shaped craft emitted blue beam of light downward in proximity of Piscataqua River and US Naval Yard and Nuclear +1999-06-01,39.7588889,-84.1916667,Dayton,OH,sphere,300,LARGE ROUND OBJECT, CLOSE TO THE GROUND, HOVERS IN MID AIR FOR SEVERAL MINUTES, THEN DIVES OFF BEHIND THE TREES IN DAYTON, OHIO +1999-06-01,45.1805556,-89.6833333,Merrill,WI,light,300,Fast moving lights in a distance. Zig zagging moving with incredible speed. Repeated sightings in a week's time. +1999-06-01,39.4494444,-75.7166667,Middletown,DE,triangle,20,Triangular object, surrounded by very dim lights, moving fast and low. Very hot and silent. +1999-06-01,39.395,-75.6919444,Townsend,DE,unknown,120,Object with 6-7 lights that flew slow and quiet about 40 feet above the ground +1999-06-01,38.8922222,-89.4130556,Greenville,IL,fireball,2,Green fireball in typical "meteor" pattern observed. +1999-06-01,29.96,-90.2155556,River Ridge,LA,circle,180,Silver aircraft with 3 lights, beeping noise - hovered over my house and then in front of me while watching it from the street. +1999-06-01,27.8002778,-97.3961111,Corpus Christi,TX,other,1020,How did someone know when to come and get me, and where to look? +1999-06-01,36.595,-82.1888889,Bristol,TN,light,180,Brilliant white light over Bristol, TN traveling at super speed, then cutting a 45 degree angle then phasing out of sight. +1999-06-01,35.925,-86.8688889,Franklin,TN,triangle,180,large triangle UFO in Franklin TN +1999-06-02,42.6583333,-71.1375,Andover,MA,unknown,30,1 Enormous Sized Craft at Cruising Speed, Northbound Direction, Highway 495, Andover, Ma. Area, In The Early Morning. +2000-06-01,47.3075,-122.2272222,Auburn,WA,oval,25,Craft appears over Auburn,WA. then speeds away as quickly as it came. +2000-06-01,35.0844444,-106.6505556,Albuquerque,NM,light,2400,On a clear cloudless summer afternoon in the summer of 2000, I was hiking alone in the Sandia Mountains just east of Albuquerque, NM. +2000-06-01,32.8405556,-83.6325,Macon,GA,other,600,eight bird shaped objects flying in a figure eight pattern +2000-06-01,35.0455556,-85.3097222,Chattanooga,TN,disk,360,My brother and I were out playing basketball and then took a break. As I leaned against a pole, i looked into the sky and saw a really +2000-06-01,24.5552778,-81.7827778,Key West,FL,formation,1800,fleet of v shaped objects blot out sky over key west, florida +2000-06-01,35.6869444,-105.9372222,Santa Fe,NM,triangle,180,Huge triangular object in Jemez Mountians, New Mexico +2000-06-01,37.775,-122.4183333,San Francisco,CA,fireball,10,It was a full moon that night. I was driving my car on divisadero st. or in that vicinity and what caught my eye was a huge ball of fir +2000-06-01,40.7491667,-73.6411111,Mineola,NY,teardrop,360,Tear shaped object seen crossing the sky over Mineola, New York +2000-06-01,26.3583333,-80.0833333,Boca Raton,FL,triangle,600,UFO over Boca Raton, FL? +2000-06-01,47.1633333,-122.0255556,Buckley,WA,disk,30,Gigantic craft appears over Buckley, WA. then vanishes in silence. +2001-06-01,33.2944444,-83.9661111,Jackson,GA,rectangle,300,Opalescent rectangle flying through thunderhead; date/time approximate +2001-06-01,43.5172222,-70.3780556,Old Orchard Beach,ME,oval,1800,A glowing oval-shaped object with a ring around it with pulsating lights +2001-06-01,46.2113889,-119.1361111,Kennewick,WA,triangle,8,Observed traingular object with dim off-white lights on underside of each corner. Traveled with "no sound at all". +2001-06-01,47.7988889,-122.4969444,Kingston,WA,light,300,A light was sitting in one spot in the sky and then started zig zagging away, then dissappeared. +2001-06-01,37.7105556,-120.1969444,Coulterville,CA,fireball,4,Red/orange round object launching off the ground. +2002-06-01,41.9430556,-86.5569444,Bridgman,MI,triangle,2,The objest was Triagular, turned from red to orange to white, and shot what looked like giant sparks from it. +2002-06-01,36.2977778,-91.5158333,Cherokee Village,AR,light,2,Two lights, same spot, about one min. apart,one moveing east,one west. +2002-06-01,32.2047222,-95.8552778,Athens,TX,unknown,7200,I don't feel like I am in control of my life !!!! +2002-06-01,27.4986111,-82.575,Bradenton,FL,formation,120,6 black objects, no sound, no lights, high rate of speed, flying in formation at 3:00 am +2002-06-01,38.9127778,-75.3044444,Slaughter Beach,DE,light,300,Two bright lights traveling @ high speeds were sighted over the Delaware Bay. These were seen by 3 other people as well as myself. I ha +2002-06-01,43.073055600000004,-89.4011111,Madison,WI,cylinder,300,Tubular Shape and Glinting Object +2002-06-01,40.7141667,-74.0063889,New York City (Brooklyn),NY,fireball,30,Metallic Ball on Fire No Trails Enters Cloud But Does Not Exit Cloud +2002-06-01,40.0455556,-86.0086111,Noblesville,IN,disk,120,Red blur in the night sky changed speed, luminosity, and then accelerated when I went outside +2002-06-01,33.4483333,-112.0733333,Phoenix,AZ,light,20,Possible Iridium Flares,…strange +2002-06-01,45.6188889,-123.1130556,Banks,OR,light,600,Oregon UFO Review Case: Lights during road trip as phoned into OUFOR. +2002-06-01,39.8308333,-77.2313889,Gettysburg,PA,light,3600,it appeared to be a eraticlly moving star moving a foot in any and all directions at incredible speeds +2002-06-01,29.4238889,-98.4933333,San Antonio,TX,formation,300,Group of lights flying south in San Antonio, TX. +2002-06-01,46.4022222,-120.2608333,Zillah,WA,light,10,Three dim yellow lights travel at high speed over central washington. +2003-06-01,41.5266667,-124.0372222,Klamath,CA,light,20,Saw a light in the sky and then it darted toward the ground. +2003-06-01,36.1658333,-86.7844444,Nashville,TN,rectangle,15,Only saw object for a couple of seconds. White. square, no reflection. +2003-06-01,41.1413889,-73.3583333,Westport,CT,triangle,10,Westport, CT possible sighting +2003-06-01,34.9919444,-86.8469444,Ardmore,AL,oval,300,Was this a UFO? +2003-06-01,32.1358333,-81.6222222,Pembroke,GA,fireball,480,Unmoving Fireball with smoketrail UNDER it. +2003-06-01,40.7683333,-73.7775,Bayside,NY,oval,1200,Glowing object hovering over Shea Stadium +2003-06-01,34.1747222,-86.8436111,Cullman,AL,oval,300,UFO Sighted +2003-06-01,34.1747222,-86.8436111,Cullman,AL,oval,300,UFO Sighting +2003-06-01,34.1747222,-86.8436111,Cullman,AL,oval,300,UFO Sighting? +2003-06-01,38.8902778,-77.0844444,Arlington,VA,cigar,15,2 cigar shaped lights travelled parallel with each other and then one shot up into the sky +2003-06-01,33.8311111,-87.2775,Jasper,AL,oval,120,This object was very large appeared to have a yellow glow to it with a red amber light at the top and one at the bottom +2003-06-01,26.1416667,-81.795,Naples,FL,unknown,600,Pulsing light pusued by military jets +2004-06-01,37.4108333,-94.7047222,Pittsburg,KS,light,600,I was taking video and still shots of the moon which was full and very bright that night. The moon was in the south. There were large p +2004-06-01,30.4380556,-84.2808333,Tallahassee,FL,light,180,Flashes of light outside across our canal that appeared every 30 seconds for several minutes. +2004-06-01,41.85,-87.65,Chicago,IL,circle,120,Small white circular object hovered in the sky +2004-06-01,37.5297222,-122.0391667,Newark,CA,rectangle,2,San Francisco Bay Area southwest and about 80 degrees above horizon. +2004-06-01,38.0494444,-122.1575,Benicia,CA,formation,300,UFO's seen over Benicia, California as five objects converge and separate. 3 witnesses. +2004-06-01,47.1041667,-122.4333333,Spanaway,WA,changing,5,The outside rim of the objects seemed to wave all around like a fish's tail would, its very hard to describe. +2004-06-01,42.7694444,-71.0763889,Bradford,MA,disk,300,Enormous and loud disk in the sky +2004-06-01,34.198055600000004,-116.5536111,Rimrock,CA,other,600,Three objects appeared in the sky +2005-06-01,38.2119444,-86.1219444,Corydon,IN,triangle,600,Ball of light hung in sky then flew over. +2005-06-01,28.1758333,-80.5902778,Satellite Beach,FL,oval,2,UFO sighted in Satellite Beach,FL close encounter 4 blocks from beach +2005-06-01,28.1758333,-80.5902778,Satellite Beach,FL,unknown,2,Illuminous rose colored craft sited in Satellite Beach. +2005-06-01,39.7286111,-121.8363889,Chico,CA,fireball,180,Blue-green fireball appeared over Chico, then split into 4 smaller similiar shapes. News reports call it a meteor, no debris of any kin +2005-06-01,38.8813889,-94.8188889,Olathe,KS,unknown,10,MISSOURI INVESTIGATORS GROUP Report: I looked back and thought it could be just the sun shining through but there were 3 circles… +2005-06-01,35.0844444,-106.6505556,Albuquerque,NM,circle,2,1 circular partially clear object sat in sky for about 1/2 hour and did not move. It changed opacity several times, stayed in same posi +2005-06-01,36.8655556,-87.4886111,Hopkinsville,KY,light,1200,3 lights +2005-06-01,40.7141667,-74.0063889,New York City (Astoria; Queens),NY,rectangle,300,Rectangular-Shaped greyish-black object flying low over Astoria, Queens and Manhattan's West Side +2005-06-01,32.7763889,-79.9311111,Charleston,SC,changing,1200,WHILE I WAS OUT WITH A FRIEND DRIVING AROUND ON THE TOWN WE WENT OUT TO DINNER AND SAW SOME UFOS WE COULDN'T BEILEVE IT. +2005-06-01,33.4483333,-112.0733333,Phoenix,AZ,light,900,Visitors in the skies of Arizona not flares not airplains but UFO's +2005-06-01,32.9413889,-96.3811111,Fate,TX,triangle,1800,Four white lights moving fast dispersing blue laser lights from the object off of Interstate 30 west near Rockwall, Texas. +2005-06-01,33.4483333,-112.0733333,Phoenix,AZ,circle,60,a bright orange circular glow which projected two multing balls falling from it. +2005-06-02,37.5483333,-121.9875,Fremont,CA,triangle,120,Triangle ship at low flying altitude,at least one football field long in size. +2006-06-01,33.9813889,-81.2363889,Lexington,SC,rectangle,10,Rectangle with two large portals and a figure at the controls up VERY close. +2006-06-01,33.9813889,-81.2363889,Lexington,SC,rectangle,10,Spooky Near-Earth "Space Station" +2006-06-01,37.6438889,-98.7372222,Pratt,KS,changing,180,Star-like objects moving extraordinarily fast +2006-06-01,38.2122222,-119.0111111,Bodie (Near),CA,circle,7200,The object was approximately 30 feet in diameter; it appeared as a round sphere with yellow and orange pointed shafts of light eminatin +2006-06-01,43.6122222,-116.3905556,Meridian,ID,cigar,300,Bright lights approaching an intersection then dissapearing and green and red lights going into the sky +2006-06-01,30.6277778,-96.3341667,College Station,TX,triangle,300,triangular shaped craft; rapid flight then stationary, then rotate (not turn) short rapid flight, stop, rotate, etc., silent; +2006-06-01,39.8641667,-75.3788889,Parkside,PA,oval,600,unusual silver object moving norhwest to southeast at a very high altitude +2006-06-01,41.2230556,-111.9730556,Ogden,UT,egg,600,It moved slowly, was very very high, and reflected a lot of light (or produced light). +2006-06-01,42.6525,-73.7566667,Albany,NY,light,120,UFO streaks out of sky at a right angle at amazing speeds +2006-06-01,43.6122222,-116.3905556,Meridian,ID,fireball,3,Bright white tail burning east to west parallel to the ground. +2006-06-01,31.4636111,-100.4366667,San Angelo,TX,sphere,1800,4 Spheres of red green and blue lights flashing and moving slowly, situated in four different directions. +2006-06-01,34.7966667,-96.9591667,Stratford,OK,fireball,2,High speed low level light south of Stratford, Oklahoma at aprroxmiately 1500' elev. +2006-06-01,43.5408333,-116.5625,Nampa,ID,fireball,5,Incredible fireball breaking up over S/W Idaho +2006-06-01,43.6136111,-116.2025,Boise,ID,cigar,180,cigar shaped craft with fire tail. +2006-06-01,26.5625,-81.9497222,Cape Coral,FL,unknown,4,I know where these balls of light are probably sitting right now.I know the island they are under.NO JOKE +2006-06-01,38.8813889,-94.8188889,Olathe,KS,light,60,Bright white/greenish light rapidly tracking across northern sky West to East, stops, darting maneuvers 1-1.5min total time. +2006-06-02,40.7141667,-74.0063889,New York City (Manhattan),NY,sphere,300,Silver sphere or orb hovering over lower Manhattan Financial District +2007-06-01,38.0316667,-85.3425,Taylorsville,KY,unknown,900,2 bright white lights, COMPLETELY SILENT, 80 meters above ground, travels slow or it can hover in one spot. +2007-06-01,44.7577778,-90.2966667,Spencer,WI,circle,300,I Saw a circular shaped UFO over the direction of Spencer ,WI and then it flew into a cloud and disappeared. +2007-06-01,30.3580556,-90.0655556,Mandeville,LA,cigar,5,cigar shape which I initially thought was a plane but didn't have wings +2007-06-01,34.09,-117.8894444,Covina,CA,sphere,259200,Small silver UFO's and one big green UFO +2007-06-01,40.9172222,-85.2805556,Zanesville,IN,teardrop,300,Friend and I observed a lit teardrop object floating above bean field +2007-06-01,34.0752778,-84.2941667,Alpharetta,GA,triangle,1200,Triangle object with 3 lights followed by erratic light. +2008-06-01,45.6502778,-95.3894444,Glenwood,MN,formation,60,Three seperate, individual brite lights move in VERY fast, stop instantly, hover and then individually speed off at increadible speeds +2008-06-01,37.9202778,-91.9708333,Arlington,MO,oval,180,School bus size UFO hovering over river. +2008-06-01,36.9669444,-109.6372222,Mexican Water,AZ,triangle,7,Four corners area +2008-06-01,34.2011111,-118.5972222,Canoga Park,CA,disk,15,Golden Bright Saucer. +2008-06-01,35.198055600000004,-111.6505556,Flagstaff,AZ,sphere,3600,first things first i am not a english major... that said i was driving south towards flagstaff arizona on hwy 89 just past chandler whe +2008-06-01,41.9402778,-85.0005556,Coldwater,MI,cigar,60,what looked like two planes coming head on into eachother +2008-06-01,30.3083333,-97.9447222,Bee Cave,TX,disk,600,June of 2008, silver craft traveling over Bee Cave, TX. +2008-06-01,40.3941667,-74.1175,Middletown,NJ,sphere,120,Sphere, black in color, silent,no lights headed north +2008-06-01,31.2230556,-85.3905556,Dothan,AL,other,600,Multiple white horizontal UFOs stationary NE of Dothan, AL +2008-06-01,36.7769444,-92.2172222,Dora,MO,light,3,String of lights in the sky stationary for 3 seconds, then vanished! +2008-06-01,40.31,-75.1302778,Doylestown,PA,light,10,Giant blue glowing light, makes a few movements, shoots off into sky. +2008-06-01,40.8105556,-77.8186111,Lemont,PA,flash,60,Flashing light over lime quary +2009-06-01,38.005,-121.8047222,Antioch,CA,fireball,10,appeared too be a very large gigantic bright shooting like star which was fluorescent-white in color with a reddish-orange aura around +2009-06-01,34.0552778,-117.7513889,Pomona,CA,light,300,UFO OVER POMONA +2009-06-01,38.7955556,-77.6141667,Gainesville,VA,light,60,A light above my house took some of my roof and a file on my computer with UFO pictures. +2009-06-01,36.3647222,-93.5677778,Berryville,AR,chevron,10,A dark gray giant boomerang shaped UFO with 8 dim lights spotted at Berryville pond. +2009-06-01,33.7319444,-84.9191667,Villa Rica,GA,unknown,5,Intense bright light thru bedroom window, tree next to window bent over and touches ground. +2009-06-01,43.2825,-76.2708333,Pennellville,NY,circle,900,Circular Object Seen in Pennellville,NY +2009-06-01,34.1808333,-118.3080556,Burbank,CA,light,60,Bright light, rapid change of direction. High speed. +2009-06-01,33.4222222,-111.8219444,Mesa,AZ,other,60,Wabboling UFO effect. +2009-06-01,33.1633333,-96.3597222,Farmersville,TX,other,180,UFO following plane in Vapor trail +2009-06-01,41.2916667,-72.3766667,Old Saybrook,CT,light,60,Flickering light hovering over the Long Island Sound +2009-06-01,34.1861111,-103.3338889,Portales,NM,disk,10,Massive bright lights over the plains of New Mexico on a object that is not normal in this world . +2009-06-01,38.2330556,-78.3694444,Ruckersville,VA,light,37800,Unknown amount of lights appearing over town of Stanardsville, VA then flying high and coming down. +2009-06-01,42.6772222,-86.0061111,Hamilton,MI,light,2700,Bright light doing a 90 degree turn to come stand stationary over my house +2009-06-01,29.4238889,-98.4933333,San Antonio,TX,light,600,Saw 4-5 bright lights in sky zigzagging up/down and side to side in an extremely fast manner in San Antonio, TX at approx 12:45 am +2009-06-01,29.8830556,-97.9411111,San Marcos,TX,triangle,120,Triangle? +2010-06-01,39.7588889,-84.1916667,Dayton,OH,triangle,300,Elongated triangular shaped craft seen over east Dayton, flying south before splitting into 2 seperate lights. +2010-06-01,40.6805556,-73.4747222,Massapequa,NY,light,45,clear sky, 2 "light" objects high above, joining each other, then shooting off towards the west. third sighting. first time +2010-06-01,41.35,-72.0788889,Groton,CT,light,900,Bright light, too low to be a satellite, hovers 10 mins. then abruptly disappears. watched with binocs. +2010-06-01,42.8863889,-78.8786111,Buffalo,NY,formation,10,Low flying starlike orbs in urban area, triangle formation make for the sky silently at at unseen speeds +2010-06-01,47.3075,-122.2272222,Auburn,WA,teardrop,240,2 Buring Jellyfish in the sky +2010-06-01,40.7141667,-74.0063889,New York City (Queens Village),NY,cigar,240,Large cigar chaped object seen near Queens Nassau border--helicopter follows +2010-06-01,40.7141667,-74.0063889,New York City (Manhattan),NY,other,300,An unidentified, misshapen flying object east of Manhattan, moving eastward over Long Island, at a constant rate at a constant altitude +2010-06-01,40.0455556,-86.0086111,Noblesville,IN,fireball,420,Unknown light in sky headed toward Tipton +2010-06-01,39.7683333,-86.1580556,Indianapolis,IN,rectangle,60,Huge, translucent vertical rectangle spotted floating in sky before sunset around 20:00 in Central Indiana +2010-06-01,38.1758333,-92.7841667,Sunrise Beach,MO,changing,3600,I saw a very bright object in the western sky that appeared to have segmented lights. +2010-06-01,25.7738889,-80.1938889,Miami,FL,circle,300,Weird round object hovers over Miami skies before it's gone! +2010-06-01,37.3769444,-77.5061111,Chesterfield,VA,unknown,7200,four objects passing over chesterfield +2010-06-01,37.8286111,-92.2005556,Waynesville,MO,triangle,10,Approx 10-12 orange lights in a V-formation or triangle shape +2010-06-01,37.614444399999996,-93.4102778,Bolivar,MO,formation,8,June 01, 2010 V-shaped cluster +2010-06-01,27.4986111,-82.575,Bradenton,FL,changing,10,2 fast-moving lights which spun around each other, then separated and rejoined +2010-06-01,41.9541667,-72.3027778,Stafford Springs,CT,triangle,180,Triangle Ship Teleports +2011-06-01,43.0852778,-77.9425,Bergen,NY,triangle,120,Two triangle UFO's sighted in the small Bergen village in Rochester, N.Y. +2011-06-01,38.1502778,-92.6177778,Osage Beach,MO,light,15,Multiple ufo sightings in Osage Beach, Missouri area. +2011-06-01,41.9163889,-83.3977778,Monroe,MI,light,60,Single white light seen moving over Monroe, then out into space +2011-06-01,33.0916667,-97.0463889,Highland Village,TX,other,1200,UFO seen in highland village 500 ft. over lake lewisville lights were on then turned off. +2011-06-01,35.5327778,-90.4205556,Marked Tree,AR,light,600,Power outage and 4 distinct u.f.o.(s) over Marked Tree and Flash of light as they departed. +2011-06-01,31.5083333,-99.9197222,Paint Rock,TX,unknown,30,super bright white light +2011-06-01,40.0516667,-84.3444444,Pleasant Hill,OH,other,40,Two horseshoe crab shaped objects moving in unison made an abrupt 90 degree turn then climbed in elevation until they dissappeared +2011-06-01,38.4088889,-121.3705556,Elk Grove,CA,other,480,I saw a black silent bat-ray shaped object in daylight hours. +2011-06-01,45.0941667,-93.3561111,Brooklyn Park,MN,sphere,120,3 Red/Orange ball in night sky Brooklyn Park MN +2011-06-01,33.9133333,-78.3041667,Holden Beach,NC,circle,60,3 bright lights in formation. +2011-06-01,40.0377778,-76.3058333,Lancaster,PA,circle,600,4 witness confirmation on another's sighting +2011-06-01,41.5569444,-83.6272222,Perrysburg,OH,circle,180,Two red-orange balls of light traveled at fast, steady speeds across the sky only to disappear into nothingness 30 secoonds later. +2011-06-02,37.505,-105.0072222,La Veta,CO,rectangle,86400,((HOAX??) we were at my inlaws house in south co for a few days we took some pics down there , and found spheres and odd shapes, +2012-06-01,41.8711111,-71.5525,Greenville,RI,other,3,there was a loud boom and a flash of light +2012-06-01,47.4008333,-92.7069444,Cherry,MN,triangle,5,Saw a Silver, Triangle shaped craft above my car, that sparkled from the rear and then disappeared. +2012-06-01,36.1538889,-95.9925,Tulsa,OK,circle,20,Saw a glowing orange light traveling at constant speed and altitude no nav lights no sound. +2012-06-01,38.4327778,-90.3775,Arnold,MO,triangle,300,Multiple UFO identified late evening in Arnold Missouri, exhibited no sound, moving in sync with eachother, multiple orbs, triangle +2012-06-01,29.7855556,-95.8241667,Katy,TX,other,600,V-shaped light in sky +2012-06-01,38.6272222,-90.1977778,St. Louis,MO,sphere,600,20-30 glowing orange orbs travelled slowly across I-55 near the Meremec River. ((NUFORC Note: Report from STL policeman. PD)) +2012-06-01,37.3688889,-122.0352778,Sunnyvale,CA,fireball,180,Two fireballs flying low across night sky. +2012-06-01,26.1219444,-80.1436111,Fort Lauderdale,FL,circle,60,Strange flying objects in the sky +2012-06-01,44.9444444,-93.0930556,St. Paul,MN,fireball,300,Orange fireball seen in se sky looking toward downtown st paul for several minutes before disappearing, +2012-06-01,34.1791667,-118.7619444,Oak Park,CA,changing,300,Looked at the clear nights sky and observed something that 1st looked like a big bright white star,but after viewing the video it wasnt +2012-06-01,44.9444444,-93.0930556,St. Paul,MN,cylinder,120,An iridescent orange, cylinder shaped object spotted in St. Paul, MN +2012-06-01,46.6166667,-94.2166667,Breezy Point,MN,formation,300,9-10 Orange bright lighted objects hovering in a three near perfect perpendicular columns. +2012-06-01,29.4238889,-98.4933333,San Antonio,TX,fireball,1200,70 to 115 Red-Orange balls of light traveling in a line across the skies over San Antonio, TX +2012-06-01,47.0530556,-122.2930556,Graham,WA,light,180,Glowing bright red light observed suspended above pasture in Graham, Washington, June 1, 2012. +2013-06-01,38.8055556,-123.0161111,Cloverdale,CA,light,3600,Lights in sky move back and forth while other lights form patterns. +2013-06-01,43.3666667,-124.2166667,Coos Bay,OR,circle,180,6 lights red/green/yellow/blue floating in the sky. +2013-06-01,43.1330556,-115.6902778,Mountain Home (Outskirts Of),ID,chevron,120,Odd shaped flying machine, that can glide at very low altitudes. +2013-06-01,44.2619444,-88.4152778,Appleton,WI,light,600,Satellite-looking object coming to a complete stop. +2013-06-01,40.0377778,-76.3058333,Lancaster,PA,light,30,Bright light seen over SE PA. +2013-06-01,42.45,-73.2458333,Pittsfield,MA,cone,900,Static position, undetected movement, speed, static position, and distant altitude dissapearance. +2013-06-01,33.9236111,-84.8408333,Dallas,GA,fireball,30,Fireball flying low and slow no sounds heard. +2013-06-01,39.7391667,-104.9841667,Denver,CO,sphere,300,Saw flying spheres . +2013-06-01,45.5236111,-122.675,Portland,OR,teardrop,600,Blue/white light streaks across western horzion. +2013-06-01,40.6686111,-74.1147222,Bayonne,NJ,sphere,30,Orange orb over Bayonne, NJ. +2013-06-01,40.1138889,-87.8730556,Fithian,IL,other,300,Floating orange fire moving slowing, then quickly in a SE direction. +2013-06-01,39.1366667,-77.715,Purcellville,VA,circle,120,Orb travels across the sky looking identically like a moving star, Object vanishes after 2 minutes. +2013-06-01,38.6194444,-94.6805556,Louisburg,KS,fireball,900,13 lights over Kansas moving southeast and turning south. +2013-06-01,30.3677778,-97.9913889,Lakeway,TX,sphere,1800,100 star-like objects gliding through sky like a flock of birds. Later stopped high in sky and took on constellation-like formation. +2013-06-01,30.2669444,-97.7427778,Austin,TX,light,900,Large cluster of ufo's over Austin. +2013-06-01,38.5816667,-121.4933333,Sacramento,CA,unknown,180,20-30 orange/red lights flying over freeway +2013-06-01,42.4683333,-82.9555556,Eastpointe,MI,fireball,25,Amazing fireball. +2013-06-01,39.4805556,-86.055,Franklin,IN,oval,1800,Amber lights appearing from the south and moving north. +2013-06-01,40.4405556,-79.9961111,Pittsburgh,PA,fireball,120,Flying fireballs. +2013-06-01,38.7072222,-121.28,Citrus Heights,CA,fireball,120,3 fireballs/orbs seen in the east, one followed by two more, bright orange short lived. +2013-06-01,35.6697222,-81.2216667,Newton,NC,fireball,10,Fast Moving Fireball with Long tail, like a Jet stream moving in the sky. +2013-06-01,40.3266667,-78.9222222,Johnstown,PA,sphere,600,2 glowing orange objects rise slowly, then shoot off. +2013-06-01,30.4013889,-86.8636111,Navarre,FL,triangle,15,Triangle "glided" over bilboard by my house for 8 scnds then vanished, pursued by 8 emergency vehicles. +2013-06-01,38.6272222,-90.1977778,St. Louis,MO,formation,900,Orange Red formation of 7 craft hovering over St. Louis, Mo. +2013-06-01,44.8277778,-92.9436111,Cottage Grove,MN,changing,7,Small light that changed shape, went high speed and had no source present. +2013-06-01,33.7669444,-118.1883333,Long Beach,CA,sphere,45,I still have trouble believing this myself. +1960-06-12,47.5002778,-111.3,Great Falls,MT,formation,1200,SAC at Malstrom AF Base not Concerned! +1966-06-12,33.9488889,-118.4447222,Playa Del Rey,CA,light,300,Single Light UFO moving over Los Angeles, Accelerated at unbelievably fast speed and dissapeared over the Horizon. +1966-06-12,42.6288889,-85.0241667,Vermontville,MI,oval,2,These are real +1967-06-12,35.0536111,-94.6233333,Poteau,OK,light,900,Light changing color darting back and forth across the sky. +1968-06-12,44.9444444,-93.0930556,St. Paul,MN,circle,120,Witnessed a silver and round with 2 back high fins UFO when I was 12 +1968-06-12,42.2958333,-71.7133333,Shrewsbury,MA,rectangle,120,((HOAX??)) CRAFT WAS SQUARE LIKE A WINNABAGO BLACK NO NOISE DIDNT MOVE FOR OVER 2MIN WAS CLOSE LESS THAN QUARTER OF A MILE +1973-06-12,40.3244444,-79.7013889,Irwin,PA,other,300,A PENTAGON OF 5 RED LIGHTS HEADING WEST . +1974-06-12,43.8261111,-111.7888889,Rexburg,ID,oval,14400,One disc seems to be in trouble; second comes to help. +1978-06-12,34.0286111,-117.8094444,Diamond Bar,CA,unknown,900,one craft intered and stoped east of me moved to my south viewed me met two other craft and left in a tryangel formation +1980-06-12,35.1958333,-85.1847222,Middle Valley,TN,triangle,240,approx. 150' for all three sides, no apparent front or back. yellow to white glow at the three corners. magenta in center, no apparent +1982-06-12,43.0125,-83.6875,Flint,MI,sphere,180,A metalic object flying at a high rate of speed +1982-06-12,41.47,-87.6363889,Steger,IL,diamond,3,revolving diamond (football) like, fast, noiseless, three sided with 3 green lights per side. Chicago bound. +1989-06-12,26.0730556,-97.2083333,Port Isabel,TX,disk,600,Port Isabel Tx ྕ Surreal close encounter with hovering disc. +1989-06-12,29.7630556,-95.3630556,Houston,TX,other,3,I awoke to find a Grey crawling on my bed. +1991-06-12,41.0322222,-76.3083333,Mifflinville,PA,light,120,I left work in bloomsburg pa at 700pm heading east on I80 at 710pm about 1/4 of a mile from the bridge that crosses the river i saw a l +1994-06-12,30.1925,-81.3708333,Sawgrass,FL,other,360,A CLOSE RANGE SIGHTING OF A CRAFT WITH ANGLED DOWN SWEPT FORWARD WINGS WITH A LARGER CENTRAL BODY.IT HAD ONE LARGE RED LIGHT ONTHE BOTT +1994-06-12,30.1925,-81.3708333,Sawgrass,FL,other,360,This is an addition to my previous report. Minor details I felt should be included. +1995-06-12,43.6588889,-123.3175,Drain,OR,circle,300,Bright light flashes and shrinks before zipping off. +1996-06-12,40.2413889,-75.2841667,Lansdale,PA,triangle,1800,Winged Being and Ufo Sighting in PA. +1996-06-12,47.6063889,-122.3308333,Seattle,WA,light,5,Two young men, unloading van, see 3x pinpoints of light streak directly overhead. Arranged in a triangular shape. +1997-06-12,40.7355556,-74.1727778,Newark (South Of, Garden State Pkwy.),NJ,light,5,A bright light with a tail, like a fireworks, flew east to west across the highway, between 100 and 500 feet elevation??, distance ?? +1998-06-12,44.6613889,-84.7147222,Grayling,MI,sphere,300,We observed a large orange sphere in the night sky change into two. Then others were seen. +1998-06-12,44.3841667,-123.1086111,Halsey,OR,unknown,60,Loud noise, similar to that emmited when propane tanks on hot air balloons, but much louder. Skies bright, few clouds. Traveled betwe +1998-06-12,41.85,-87.65,West Chicago,IL,rectangle,180,We were standing in my driveway and this enormous thing flew over my house about 100 feet in the air. It was a dark mass in the sky wi +1998-06-12,34.0194444,-118.4902778,Santa Monica,CA,formation,7,A 'V' shaped formation of lights passed overhead with no sound at high speed. +1998-06-12,33.7825,-117.2277778,Perris,CA,light,180,I was driving south on Perris Blvd. when I happened to glance east towards lake Perris and saw a small, dull orange light hovering abou +1998-06-12,34.0094444,-118.1044444,Montebello,CA,light,3,Two to three second display of synchronized lights travelling really fast. +1999-06-12,42.2958333,-71.7133333,Shrewsbury,MA,other,180,Driving east on Route 20, saw silver metallic object suspended in clear sky, approximately one-half to one mile up. +1999-06-12,37.6922222,-97.3372222,Wichita,KS,cylinder,120,IT DISAPPEARED INTO THE VOID +1999-06-12,43.6202778,-85.2263889,Mecosta,MI,sphere,240,object viewed due North. Low on horizon. Hovered and stationary. Bright white light with alternating changing colors. Was viewed 4 +1999-06-12,41.6269444,-88.2038889,Plainfield,IL,light,10,I witnessed an extremely bright purple flash followed by a white light blinking and moving at high speed from north to south +2000-06-12,29.7630556,-95.3630556,Houston,TX,teardrop,10,FLYING OBJECTS OVER HOUSTON, TX JUNE 12, 2000 AROUND 11:30 -12:00 +2000-06-12,47.8211111,-122.3138889,Lynnwood,WA,triangle,35,Small black oblongish flattened triangle traveling N to W near North Seattle at elevation 30 degrees. +2000-06-12,29.7630556,-95.3630556,Houston,TX,disk,180,Fighter jet and UFO over North Houston +2000-06-12,32.8233333,-97.1702778,Hurst,TX,fireball,3,Large fireball moving from N-NE to S-SE over the Dallas/Fort Worth Metroplex +2001-06-12,37.7086111,-117.2347222,Goldfield (Near),NV,formation,180,Three red objects flying by +2001-06-12,32.895,-97.5455556,Azle,TX,light,2,Amber Light Vanishing +2002-06-12,47.5675,-122.6313889,Bremerton,WA,triangle,7,A lighted triangle shaped object that raced across the sky leaving no trail. +2002-06-12,37.2152778,-93.2980556,Springfield,MO,sphere,480,never moving orb +2002-06-12,31.9972222,-102.0775,Midland,TX,formation,480,Sighting of a formation of cigar shaped U.F.O.s +2002-06-12,36.8466667,-76.2855556,Norfolk,VA,other,120,WAS NOT SEEN IN NEVEDA, BUT IN NORFOLK, VA!!!! +2003-06-12,41.8327778,-87.9288889,Oak Brook,IL,triangle,900,3 light object hovering and stopping witnessed in afternoon in chicago area surburb near O'hare international airport +2003-06-12,38.6763889,-81.6602778,Kenna,WV,egg,3,First let me say this is going to sound crazy. I was watching National Lampoons vacation. When they were doing the Walley world scene +2003-06-12,34.2163889,-119.0366667,Camarillo,CA,triangle,300,Chevron shaped black object flying low ans slow with no sound and appeard to have been pursued by 3 navy planes. +2003-06-12,35.0844444,-106.6505556,Albuquerque,NM,unknown,1,Bright green dot made a half circle maneuver in the New Mexico sky, and i heard to sound +2003-06-12,34.1063889,-117.5922222,Rancho Cucamonga,CA,rectangle,180,We observed a bright orange object moving across the sky slowly form horizon to horizon. +2003-06-12,38.1141667,-82.6033333,Louisa,KY,circle,30,yellowish orange circular shaped light traveled across the sky --briefly changed to a bright white light +2004-06-12,40.7141667,-74.0063889,New York City (Bronx),NY,light,1200,blue shiney sparkle ball.Far away clear and slow moving. +2004-06-12,33.8358333,-118.3397222,Torrance,CA,disk,420,High up metal object w/sun reflecting from it @times,moving west,then northwestƿ min.time of viewing. +2004-06-12,33.7669444,-118.1883333,Long Beach,CA,light,3600,Lights moving over SoCal in the afternoon +2004-06-12,42.0983333,-76.0497222,Endicott,NY,sphere,1200,Glowing stationary sphere +2004-06-12,33.4483333,-112.0733333,Phoenix,AZ,light,300,Lights in southern sky seen from Phoenix on 6/12/04 +2004-06-12,42.075,-72.0338889,Southbridge,MA,other,10,Scanner beam passes through house and yard. +2004-06-12,33.5633333,-88.3161111,Steens,MS,light,5,White light streaking across the sky. 500 Lights On Object0: Yes +2005-06-12,41.85,-87.65,Chicago,IL,triangle,180,three triangular black objects hovering in a trianglular formation +2005-06-12,45.3938889,-92.8163889,Center City,MN,triangle,180,My Sister, my boyfriend, and I were driving back to our rural home in center city, MN. As we were driving we noticed three triangular. +2005-06-12,35.1322222,-118.4480556,Tehachapi,CA,chevron,120,Immense in size, Cheveron or "V" shaped, silent until it turned, then there was a thunderous roar. +2006-06-12,35.8655556,-84.685,Rockwood,TN,oval,420,I saw lights and thought it was just a plane but they weren't moving . There was about 4 lights on the object. They were all white exce +2006-06-12,47.5302778,-122.0313889,Issaquah,WA,light,1,Two very bright "stars" briefly appeared in the southern sky +2006-06-12,33.9608333,-83.3780556,Athens,GA,triangle,300,Low flying triangle +2006-06-12,30.4211111,-87.2169444,Pensacola,FL,other,120,Huge Sparkling UFO Horizontally Traverses Inside a Cloud While Emitting Light. +2006-06-12,30.4211111,-87.2169444,Pensacola,FL,light,30,Star-like object horizontally traversing low and slow in the morning sky. +2006-06-12,39.8366667,-105.0366667,Westminster,CO,circle,300,Eight circular objects destroyed one of their own. +2006-06-12,32.7447222,-116.9980556,Spring Valley,CA,disk,25,Light seen flashing from a saucer type object over Spring Valley. +2006-06-12,30.4505556,-91.1544444,Baton Rouge,LA,oval,45,It went like a shooting star +2007-06-12,44.3636111,-84.4102778,St. Helen,MI,light,8,sparks in the sky +2007-06-12,35.5913889,-92.4602778,Clinton,AR,disk,120,green football shaped object falling out of the western sky at a 45 degree angle on June 12th, 2007 +2007-06-12,46.0647222,-118.3419444,Walla Walla,WA,circle,360,Strange orange-red objects flying over Walla Walla, WA. +2007-06-12,46.0647222,-118.3419444,Walla Walla,WA,formation,360,Multiple Red/Orange lights in the sky moving around in seemingly random patterns. +2008-06-12,32.2038889,-95.3483333,Flint,TX,changing,7200,Bright star moving around all over the place. Changed from bright to dim over and over (pulsating or light revolving). +2008-06-12,43.5944444,-83.8888889,Bay City,MI,triangle,360,Large triangular craft sighted during thunderstorm. +2008-06-12,37.7477778,-84.2947222,Richmond,KY,light,7200,Flashing lights seen moving in the sky. +2008-06-12,41.4683333,-75.6033333,Olyphant,PA,triangle,240,I saw the object at about 1:53 am EST hovering for about 3 minutes. The aircraft then took off at a moderate speed to the northeast. It +2008-06-12,40.4533333,-111.7772222,Alpine,UT,formation,120,we were laying on a trampoline gazing at the stars when we saw six bright lights moving in a cluster. They were moving at a moderate sp +2008-06-12,39.6030556,-74.3405556,Tuckerton,NJ,light,120,encounter with beings, sightings, and physical encounters ((NUFORC Note: Possibly not a serious report??? PD)) +2008-06-12,42.5847222,-87.8211111,Kenosha,WI,light,120,An eerie glowing aircraft with no sound over Kenosha Wisconsin +2008-06-12,33.0461111,-96.9938889,Lewisville,TX,oval,1.5,orange glow seen in NE sky +2008-06-12,31.1972222,-91.0216667,Gloster,MS,circle,120,2 nearly vertical contrails seen. +2008-06-12,31.7586111,-106.4863889,El Paso,TX,cigar,240,6 flying cigar shape ufo's out side of El Paso,TX +2008-06-12,34.8780556,-83.4011111,Clayton,GA,light,15,Object traveling at a very high rate of speed, stopped, made right angle turn and continued on in night sky for a duration of 10-15 sec +2008-06-12,32.2038889,-95.3483333,Flint,TX,changing,7200,Very bright and then colored lights would ripple through middle and around quickly. ((NUFORC Note: Twinkling star?? PD)) +2009-06-12,47.7661111,-116.7855556,Hayden,ID,triangle,300,TRIANGULAR FLY BY AGAIN... 3 WHITE FLASHING LIGHTS ONE PULSING RED LIGHT +2009-06-12,29.5847222,-81.2080556,Palm Coast,FL,light,120,Lights Inside our house +2009-06-12,38.9516667,-92.3338889,Columbia,MO,disk,600,The craft I saw looks exactly like the picture posted on Coast To Coast for George Knapp by Kirk Mints. It was a clear early morning. +2009-06-12,33.4483333,-112.0733333,Phoenix,AZ,other,600,Unusual multi object form in the sky this morning in Phoenix Az +2009-06-12,33.8158333,-78.6802778,North Myrtle Beach,SC,disk,20,was disck shaped and was spinning +2009-06-12,34.4672222,-83.5738889,Alto,GA,other,900,Strange objects in the sky ove Alto, GA. +2009-06-12,40.7555556,-73.5880556,Westbury,NY,light,300,bright blue light over Long Island, moving then stopped then dissapeared with pictures +2009-06-12,38.2538,-94.3356,Butler,MO,unknown,720,((HOAX??)) 3-4 shiny objects in sky, no jet streams, no noise..appeared to have popped up in the sky from nowhere. +2009-06-12,33.9813889,-81.2363889,Lexington,SC,light,10,Bright light moves slowly, stops, and all of a sudden shoots off into space. +2009-06-12,40.5852778,-105.0838889,Fort Collins,CO,light,120,Amber light floating in one place, deposited several blue or green lights for 2 minutes before drifting away. +2009-06-12,42.7005556,-74.9247222,Cooperstown,NY,light,10,Event occurred at around 23:30 June 12, 2009. While sitting at the lake edge, watching planes and satellites pass overhead, I had seen +2010-06-12,43.1547222,-77.6158333,Rochester,NY,triangle,1200,red white and blue lights forming a triangle +2010-06-12,39.6577778,-77.1747222,Taneytown,MD,circle,2,green glowing circle shooting across sky and nightly white light +2010-06-12,41.1536111,-81.3580556,Kent,OH,circle,300,fire like object that moved as it was stopping and going +2010-06-12,47.6419444,-122.0791667,Sammamish,WA,sphere,300,a dozen+ small, bright, white roundish objects hovered for 1-2 min and then rose up into the atmosphere +2010-06-12,47.4236111,-120.3091667,Wenatchee,WA,light,270,Wenatchee, WA, June 12, 2010, 3:30 white lights hovering in sky, total of 6. +2010-06-12,33.7838889,-116.9577778,San Jacinto,CA,light,30,Hovering bright object vanishes petruding flashing light over san jacinto mountains +2010-06-12,33.7205556,-116.2147222,Indio,CA,flash,300,RED AND BLUE LIGHT THAT FLEW ERRATICALLY LIKE AN INSECT AT SPEEDS 3X OF A PLANE! +2010-06-12,47.885,-120.1572222,Manson,WA,unknown,900,Bright light over the horizon dropped and then disapeared. ((NUFORC Note: Venus?? PD)) +2011-06-12,27.2541667,-80.23,Jensen Beach,FL,sphere,120,Bright light explodes followed by blue stream traveling fast north to south above shoreline all power ceased fire reported south +2011-06-12,42.3147222,-88.4486111,Woodstock,IL,circle,300,Three fiery balls floating slowly then change shape and disapear. +2011-06-12,44.9583333,-124.0166667,Lincoln City,OR,fireball,240,A friend and I observed a cone shaped redish orange object overhead.We went out on the deck to observe it traveling in a S dir.. +2011-06-12,41.6116667,-93.885,Waukee,IA,circle,600,Circular ball of light moved very slowly through the sky in a straight line with no flashing lights on it. +2011-06-12,46.6022222,-120.5047222,Yakima,WA,light,1,Very bright flash of light. ((NUFORC Note: Possible Iridium satellite reflection/flare?? PD)) +2011-06-12,43.3005556,-73.5863889,Hudson Falls,NY,other,600,Spiral ufo seen in hudson falls. +2011-06-12,40.7602778,-83.9486111,Lafayette,OH,light,600,Slow moving, soundless, low flying orange light traveling directly over Lafayette Ohio. +2011-06-13,47.1719444,-122.5172222,Lakewood,WA,other,60,About a week or two ago I had decided to sleep outside in the backyard,with my dog curled up beside me I spent a good hour staring up a +2012-06-12,30.4380556,-84.2808333,Tallahassee,FL,triangle,3,3 light triangle shaped object moving fast and silent in a straight-line across my field of sight, witnessed by one other. +2012-06-12,26.9758333,-82.0908333,Port Charlotte,FL,oval,900,Saw 3 egg shaped objs, stat.,white blinking lights,and a blue light.Objs spaced far apart over the 1 a.m.sky. No sound. . +2012-06-12,40.7608333,-111.8902778,Salt Lake City,UT,triangle,30,Approx. 2ꯠ agl above downtown salt lake city. Headed straight flight, no sound north west. 7 to 9 bright white lights triangula +2012-06-12,40.7141667,-74.0063889,New York City,NY,other,5,UFO appears to be a metal looking creature with many antennas and a hole that has an opening appearing to be either the nose or mouth. +2012-06-12,44.0216667,-92.4697222,Rochester,MN,changing,5,Weird formation of multiple lights no sound +2012-06-12,41.2586111,-95.9375,Omaha,NE,light,3600,Omaha,Nebraska eye witness sighting orange and red light that flashed white light small red lights flew over and two red lights flew +2012-06-12,38.005,-121.8047222,Antioch,CA,circle,3600,I was looking up W nite sky 4:30am and noticed a blinking light. I do not have telescope but binoculars and i looked thru them. +2012-06-12,33.6305556,-112.3325,Surprise,AZ,changing,12,Object(s) inspecting what appear to be chemtrails. +2012-06-12,40.7266667,-115.585,Spring Creek,NV,sphere,1800,Glowing streak stretched across the sky clearly being investigated by a fleet of UFO's. +2012-06-12,36.1538889,-95.9925,Tulsa,OK,formation,2,Light formation. +2012-06-12,41.6105556,-86.7225,Laporte,IN,egg,1,UFO's buzz farm tractor and cars +2012-06-12,37.7477778,-84.2947222,Richmond,KY,other,13500,16 UFOs seen in under 4 hours! +2012-06-12,34.0522222,-118.2427778,Los Angeles,CA,fireball,1800,Multiple red/orange fireballs rising from the southeast horizon towards los angeles +2012-06-12,44.0583333,-121.3141667,Bend,OR,disk,3600,5 people witness ufo siteing. ((NUFORC Note: Possibly a sighting of Vega in the northwest sky. PD)) +2012-06-12,43.0208333,-78.4955556,Akron,NY,circle,1260,Description of possible UFO sighting and the UFO is still present. +2012-06-12,34.7538889,-77.4305556,Jacksonville,NC,circle,180,Bright circular light in the sky with glowing lights around the object. +2012-06-12,40.9911111,-74.0330556,Westwood,NJ,chevron,120,Saw craft coming from NYC and it had a large dome light on it. Dome light went off and it went behind a cloud and never appeared again. +2013-06-12,47.8108333,-122.3761111,Edmonds,WA,changing,480,Observed object above clouds,east of my house.Object was orange and appeared to glowing.I went to my trick to get my binoculars.Mt wife +2013-06-12,38.0280556,-121.8836111,Pittsburg,CA,circle,90,I was happening to open my bedroom window, when a glare from a silver aircraft caught my eye. This is to the south, towards Clayton/Mou +2013-06-12,33.4330556,-79.1216667,Pawleys Island,SC,formation,20,4 orange lights. +2013-06-12,33.8158333,-78.6802778,North Myrtle Beach,SC,circle,2,A police officer and two other adults witnessed three orange glowing balls of fire appear in the sky as if a light switch had been flip +2013-06-12,33.6888889,-78.8869444,Myrtle Beach,SC,light,12,On the evening of 6/12/2013 10:06PM, Sky was broken, but you could see stars and the moon. There had been a fireworks down in Surfside +2013-06-12,48.9244444,-122.0758333,Maple Falls,WA,circle,10800,Orb of flashing rotating colors in a grid pattern seen near Mt. Baker, Washington on the night of June 12, 2013. +2013-06-12,34.8697222,-111.7602778,Sedona,AZ,light,600,This is a mild sighting of something. I was driving on Upper red rock loop road when I noticed lights flashing and blinking over the mo +2013-06-12,48.1958333,-114.3119444,Kalispell,MT,egg,1200,Bright Orb/Sphere in western sky with Red/Blue/Green rotating lights. +2013-06-12,33.5736111,-79.0027778,Garden City Beach,SC,unknown,1200,Orange light of unknown origin spotted flying along coastline at Garden City Beach, SC, on 6/12/13. +2013-06-12,48.1958333,-114.3119444,Kalispell,MT,light,900,Orange circle (Like a super large sun at night) twice the size of a full moon. +1947-06-13,40.5216667,-79.8425,Oakmont,PA,unknown,600,a very brillant blue-white object coming towards us lowering above us and hovering over us a few minutes before shooting straight up +1960-06-13,39.9369444,-120.9461111,Quincy,CA,disk,120,A lighted object was silently descending vertically into the canyon, then stopped and hovered +1981-06-13,43.4066667,-124.2230556,North Bend,OR,oval,300,My wife, my self and my two boys,ages about 13 and 9 were coming home from town. We turned off of No. Bay Dr onto No.Way, we saw what l +1987-06-13,43.2966667,-87.9875,Cedarburg,WI,formation,2400,It was dark we looked into the sky notticed 5 bright red lights doing formation stunts +1991-06-13,27.7705556,-82.6794444,St. Petersburg,FL,other,10,Bluish object hovering,then gone. +1993-06-13,43.55,-96.7,Sioux Falls,SD,fireball,30,Fireball that changed color and split into 3 equal parts +1993-06-13,30.2238889,-92.0197222,Lafayette,LA,teardrop,1340,the quick moving "star" balls sped away faster than anything i had everseen and change color in the process of leaving. +1995-06-13,40.7858333,-74.7805556,Long Valley,NJ,disk,120,It was about 6 feet in cicumference and dissapeared in thin air without a trace! +1995-06-13,48.0797222,-123.1005556,Sequim,WA,oval,86400,I saw two oval shaped U.F.O.'s flying from one side of sky to the other.And then dissapeared. +1995-06-13,41.2586111,-95.9375,Omaha,NE,disk,600,There was not a sound when i was looking at the object or when it left the area as it dissapered +1996-06-13,31.0980556,-97.3425,Temple,TX,diamond,5,Diamond-shaped cluster of nonblinking white lights, objects indistinct, low altitude as planes ahd been flying overhead for an hour, si +1997-06-13,34.0736111,-118.3994444,Beverly Hills (Adjacent),CA,triangle,2400,I tried to get on to Art Bell on 1/17/04, but could not. What compelled me to write was that a) I am a journalist, and you talked about +1997-06-13,40.3077778,-75.3580556,Franconia,PA,fireball,10,It was a very large bright white fireball with a long fire trail behind it was moving at a very high rate of speed in a NW direction it +1997-06-13,28.5380556,-81.3794444,Orlando,FL,circle,30,two orange lights cossing back and forth from one another +1998-06-13,47.6588889,-117.425,Spokane,WA,oval,300,I DID NOT SEE THE OBJECT. IT CASTED A SHADOW ON ME. I LOOKED UP AND SAW A CLEAR BLUE SKY BUT THERE WAS A SHADOW ON THE GROUND THAT WAS +1998-06-13,45.4983333,-122.4302778,Gresham,OR,circle,600,Object crossing low in the sky over rooftops of homes. About 1 mile from where we were, and it was approx. A basketball size from our +1998-06-13,45.4983333,-122.4302778,Gresham,OR,cross,180,I was driving home and on 201st and holgate. I saw what I thought was a very low, slow plane. +1999-06-13,29.7963889,-99.2461111,Medina,TX,light,3600,WHILE AT A CAMP IN THE HILL COUNTRY WITH 85 STUDENTS FROM LAREDO A LIGHT THE SKY APPEARED TWICE IN DIFFERENT NIGHTS WITH WITNESSES AND +1999-06-13,39.8027778,-105.0869444,Arvada,CO,light,1200,Report to COMUFON: James Peters, 303-344-5576. Two observers. Very fast moving lights. Changes in direction and velocity. +1999-06-13,38.5597222,-120.9827778,Latrobe,CA,other,18000,sound coming from under your feet , no matter where you walk near the consumes river.this was a humming sound ,varying pitch ,you could +1999-06-13,43.6875,-84.9688889,Weidman,MI,other,30,On the evening of 6/13/99 my 14 year old son and I were fishing on the dock of my fathers house which is located on Lake-of-the-Hills i +2000-06-13,34.0522222,-118.2427778,Los Angeles,CA,light,2700,Bright star-like light similar to satellite. +2000-06-13,42.8666667,-106.3125,Casper,WY,oval,120,14yr old female sees oval shaped, distortion in sky with 3 lights on back +2001-06-13,37.3394444,-121.8938889,San Jose,CA,light,5,Blue-green tube-like light descending in 60 degree angle from left to right, in S.F. Bay Area, Calif. June 13, 2001, 1:45 am +2001-06-13,35.2269444,-80.8433333,Charlotte,NC,sphere,120,Shiny silvery orb following plane +2001-06-13,41.6463889,-73.4847222,Gaylordsville,CT,changing,300,Object changed shape, color, and brightness, then faded and dissapeared. +2001-06-13,42.7158333,-78.8297222,Hamburg,NY,light,3600,I was trying to sleep when out of no were came 4 red and white lights +2001-06-13,35.4630556,-92.51,Formosa,AR,other,15,one orange colored 'star' transformed instantly into eight....two vertical rows of four +2001-06-13,44.3836111,-89.8172222,Wisconsin Rapids,WI,other,300,Glowing red object flying across sky ten times faster then jet!!!!!! +2002-06-13,30.2669444,-97.7427778,Austin,TX,other,10,Buick seen in Austin, TX, with NUFORC sign on its side door. Thank you! Peter Davenport +2002-06-13,35.7825,-80.8875,Statesville,NC,formation,1200,A weird sighting in North Carolina where a strange formation with no sound hovered near a mans house for almost half an hour. +2002-06-13,37.6688889,-122.0797222,Hayward,CA,unknown,180,HBCCUFO CANADIAN REPORT: Object video tapes, darted in and out of the clouds. +2002-06-13,41.2586111,-95.9375,Omaha,NE,light,120,Bright, low altitude white light moving accross night sky at medium speed. +2002-06-13,37.6688889,-122.0797222,Hayward,CA,circle,600,My kids and I witnessed a round black object in the sky, that moved drastically at night with unbelievable disbelief. +2002-06-13,34.0522222,-118.2427778,Los Angeles (Knottsberry Farm Area),CA,changing,900,I WAS TRAVELING FROM SACRAMENTO CALIF,..TO SAN DIEGO CALIF.( HWY. # 5 ) IT WAS ALMOST MIDNIGHT ON THURSDAY , THE 13TH OF JUNE, 2002.(A +2003-06-13,33.5205556,-86.8025,Birmingham,AL,disk,420,Me and a friend were walking on the quad at Samford University when we noticed a saucer-like object hovering aprox. 1/4 of a mile above +2003-06-13,34.7211111,-116.1591667,Ludlow,CA,chevron,240,"Spliting Amber Chevron Shaped UFO's in Ludlow , Ca Hwy 40...6/13/2003 3am" +2003-06-13,34.1975,-119.1761111,Oxnard,CA,light,600,2 UFO's flew in the sky +2003-06-13,29.6194444,-95.6347222,Sugar Land,TX,other,300,Strange red glow in the sky +2003-06-13,34.8986111,-117.0219444,Barstow,CA,rectangle,600,There were red and blue lights round lights coming toward us. It was the size of a small car hovering. +2003-06-13,34.8986111,-117.0219444,Barstow,CA,rectangle,600,There were round red and blue lights on the object., hovering beside us as I was still driving, no sound. +2003-06-13,35.9555556,-80.0055556,High Point,NC,sphere,60,A round black object moving horizontal to ground. It made no sound and had no lights +2003-06-13,36.5091667,-86.885,Springfield,TN,sphere,30,Winesssed Glowing white/blue neon sphere and aliens in field while camping with my buddy. +2003-06-13,27.9091667,-82.7875,Largo,FL,other,2,3 large white star shaped objects +2003-06-13,29.2105556,-81.0230556,Daytona Beach,FL,unknown,60,3 stationary, orange, rectangular lights evenly spaced due east off the fl coast. +2004-06-13,34.9333333,-95.7694444,Mcalester,OK,diamond,23,solid fast very tangable NOT OF THIS WORLD as we know itp +2004-06-13,41.4686111,-75.5625,Jessup,PA,unknown,3,Basically seened UFO make a sideways U turn, lasted 3 seconds red in color, odd shape +2004-06-13,41.6638889,-83.5552778,Toledo,OH,circle,5,A white circle-shaped object was spotted a few moments before it became distorted, flickered, and disappeared. +2004-06-13,33.5633333,-88.3161111,Steens,MS,light,300,Pulsating lights disappearing, then reaperaing and changing location. 500 Lights On Object0: Yes +2004-06-13,47.4705556,-122.3455556,Burien,WA,teardrop,12,Silver teardrop 40' above ground. +2004-06-13,48.5575,-119.7486111,Conconully,WA,disk,5,Saucer-shaped object appeared to move across sky quickly in rural Washington ((NUFORC Note: Possible bird in flight. PD)) +2004-06-13,39.5186111,-104.7608333,Parker,CO,triangle,60,Triangular Craft +2004-06-13,34.0522222,-118.2427778,Los Angeles,CA,fireball,900,Two people observe pair of very bright comet-like objects over Los Angeles. +2004-06-13,37.9833333,-75.8541667,Crisfield,MD,sphere,120,It was a UFO About 9:30pm, I was just happed to be outside and I saw this--- Just a red-sphere, that I seen before...I have seen many +2004-06-13,41.7469444,-88.0502778,Woodridge,IL,light,9,The light appeared, traveled at a low speed, shook and took off. +2004-06-13,37.775,-122.4183333,San Francisco,CA,triangle,600,self-illuminated triangle-shaped craft flying in "v" formation +2004-06-13,31.9972222,-102.0775,Midland,TX,light,300,It was one solid light. +2005-06-13,26.1219444,-80.1436111,Fort Lauderdale,FL,circle,30,Circular Pink Object flying straight line in Ft Lauderdale. +2005-06-13,42.2966667,-89.6211111,Freeport,IL,flash,60,yellowish green flash moved from the south east to the north in a curve followed buy a jet 5 mins later +2005-06-13,34.2419444,-117.2847222,Crestline,CA,circle,10,Early mourning sighting +2005-06-13,46.165,-112.3713889,Elk Park,MT,triangle,60,Silver triangle shaped crafts hovering in a formation +2005-06-13,34.3916667,-118.5416667,Santa Clarita,CA,other,60,Very large, slow moving boomerang/flying wing craft with blinking red lights +2005-06-13,30.7436111,-98.0552778,Bertram,TX,oval,300,oval slow moving craft +2005-06-13,25.6788889,-80.3175,Kendall,FL,circle,300,Cars stopped to watch in awe. Light fell and then stood still, then turned sharply to right. +2006-06-13,41.6258333,-87.1333333,Burns Harbor,IN,oval,30,My husband and I were heading to Michigan city for lunch when I saw it. my husband only saw the thing for a few secounds, because he wa +2006-06-13,36.5297222,-87.3594444,Clarksville,TN,light,120,Pulsing light in the night sky +2006-06-13,28.8105556,-81.8780556,Leesburg,FL,fireball,2,strange leesburg aircraft? comet? +2006-06-13,33.426944399999996,-117.6111111,San Clemente,CA,triangle,900,Strange lights over coast of San Clemente +2007-06-13,44.9444444,-93.0930556,St. Paul,MN,cigar,45,At approximately 1730 hours on 06/13/07 I observed a White glowing Cigar shaped craft to the east of downtown St. Paul heading north. T +2007-06-13,32.5447222,-94.3672222,Marshall,TX,teardrop,6,green and red strip from west to east very bright fading out into eastern sky +2007-06-13,38.1041667,-122.2555556,Vallejo,CA,changing,3600,bright light formation of different colors, sometimes stationary, sometimes moving erratically +2007-06-13,32.525,-93.75,Shreveport,LA,teardrop,2,A green light in the sky... +2007-06-13,27.0438889,-82.2361111,North Port,FL,circle,600,Single UFO over Florida, June 13. +2007-06-13,34.9802778,-101.9183333,Canyon,TX,light,2700,Large white light spotted over Texas panhandle. +2007-06-13,32.5447222,-94.3672222,Marshall (Near),TX,teardrop,35,Traveling east on I20 below clouds blueish/white moving fast ,then changing color on the edge orange – red then disappear +2008-06-13,46.2113889,-119.1361111,Kennewick,WA,flash,120,Bright flashing lights moving through night sky +2008-06-13,31.6033333,-94.6552778,Nacogdoches,TX,circle,300,Large red circle flies West Direction to Home +2008-06-13,47.5708333,-120.6027778,Peshastin,WA,light,600,Erratic White Light +2008-06-13,36.175,-115.1363889,Las Vegas,NV,changing,600,star light object in vegas that stayed stationary then it into a cigar shaped object with both ends lit. after 10 minutes disappeared +2008-06-13,42.2430556,-71.0986111,Blue Hills,MA,disk,30,Disc that flashed 3x then slowly disappeared as if by active metamaterial cloaking +2008-06-13,37.6447222,-115.7427778,Rachel,NV,unknown,1800,UFO spotted over Area 51, apparent communication with base. +2008-06-13,33.4483333,-112.0733333,Phoenix,AZ,sphere,900,Bright sphere in clear, blue sky +2008-06-13,21.3069444,-157.8583333,Honolulu,HI,light,3,A florescent green light moving very rapidly from North to South. Moving at approximately the speed of a meterite but much larger. +2008-06-13,36.1538889,-95.9925,Tulsa,OK,light,600,A white light circling in and out of the side of a thunderstom and planes moving to intercept it. +2008-06-13,43.0302778,-83.1661111,Attica,MI,oval,600,Bright craft viewed in northern sky, craft hovered for 10 minutes while being watched with binoculars. Craft backed away slowly. +2008-06-13,47.4811111,-118.2533333,Harrington,WA,oval,45,Object seen over Harrington, WA on June 13, 2008 +2009-06-13,40.5752778,-74.3227778,Iselin,NJ,light,600,Bright illumination that moved over New Jersey Sky viewed from Iselin town +2009-06-13,39.9611111,-82.9988889,Columbus,OH,formation,10,I was in the backyard , sitting on a chair and thought it was geese , but it wasn't. +2009-06-13,44.4669444,-70.7138889,East Bethel,ME,sphere,300,large bluish sphere between storm clouds no sound heard, +2009-06-13,36.7222222,-86.5772222,Franklin,KY,light,60,slow moving white light got very bright then got dim and then vanished +2009-06-13,37.86,-77.4644444,Doswell,VA,circle,120,perfect circle grey with no lights. Doswell,virginia +2009-06-13,41.2869444,-96.2852778,Waterloo,NE,other,30,I saw, just above the tree line, a hovering object, probably a half mile a way. I slowed down my car... +2009-06-13,27.875,-82.8513889,Indian Rocks Beach,FL,disk,1800,At approximately 9:30 PM EST on Saturday June 13th - I and a group of others at "My Place on the Beach" outdoor section of the restaura +2009-06-13,27.875,-82.8513889,Indian Rocks Beach,FL,disk,1800,Ignore the contact info on last submission - I thought you were referring to OTHER witnessses and i realized you meant me. +2009-06-13,44.0463889,-123.0208333,Springfield,OR,light,120,bright orange reddish color object observed rising untill it just dissappeared. +2009-06-13,42.2486111,-88.6083333,Marengo,IL,fireball,20,orange fireball floating in the sky about 20 sec looking west from Marengo Illinois then seemed to flicker out +2009-06-13,30.2363889,-93.3772222,Sulphur,LA,light,1800,I thought satilites move in one direction only. When the lights stopped looked like a star. +2010-06-13,33.4483333,-112.0733333,Phoenix,AZ,oval,900,Oval shaped UFO near I-10 and SR-85 +2010-06-13,30.4188889,-97.0113889,Lexington,TX,triangle,1200,Triangular craft observed in South Central Texas +2010-06-13,34.4263889,-117.3,Hesperia,CA,light,7,Very bright object in front of big dipper; disappeared to nothing on 6/13/10 at 22:24 hours. ((NUFORC Note: Iridium satellite? PD)) +2010-06-13,42.3683333,-83.3527778,Livonia,MI,changing,300,6 bright red lights ascend in a line and form triangle, disappear and return. +2010-06-13,34.4777778,-83.7736111,Clermont,GA,other,600,dragonfly shaped light +2010-06-13,42.3241667,-83.4002778,Westland,MI,circle,300,3 large orange balls of light in motion formed a triangle then disappeared in the distance. +2011-06-13,33.5777778,-101.8547222,Lubbock,TX,oval,300,The enormous craft over lubbock texas. +2011-06-13,44.5191667,-88.0197222,Green Bay,WI,disk,900,Saw flashing lights in night sky that then appeared as large UFO +2011-06-13,43.5944444,-83.8888889,Bay City,MI,unknown,3000,Very bright white light low over Saginaw Bay, MI. +2011-06-13,41.4427778,-73.0630556,Beacon Falls,CT,other,3600,I turned over in bed and looked up into the night sky, to see a small white orb shoot across my window. +2011-06-13,38.9783333,-76.4925,Annapolis,MD,cylinder,900,White cylinders with fins moving over Eastport, Annapolis. +2011-06-13,36.7625,-80.735,Hillsville,VA,cigar,1800,10 unidentified cigar-shaped crafts "glide" over Hillsville, VA +2011-06-13,45.6188889,-123.1130556,Banks,OR,sphere,300,LARGE WHITE BALL OF WHITE LIGHT HOVERING OVER NEAR CEDAR CANYON RD AND HWY 6 AREA OF BANKS, OREGON. WHEN APPROACHED BY A JET IT LEFT IN +2011-06-13,38.9988889,-84.6266667,Florence,KY,sphere,120,very bright very fast object moving west to east +2011-06-13,47.7375,-120.3677778,Ardenvoir,WA,light,60,at approx. 22:18 PST I and 4 others witnessed a bright white light, not flashing, moving from south to north accross the horiz. +2011-06-13,47.5963889,-120.6602778,Leavenworth,WA,triangle,360,Bright triangular shape changing direction and moving irregularly. ((NUFORC Note: Sighting of Intl. Space Station. PD)) +2011-06-13,36.0725,-79.7922222,Greensboro,NC,teardrop,360,Orange Object Pursued by Plane in Greensboro, NC 2011 +2011-06-13,47.7375,-120.3677778,Ardenvoir,WA,light,60,A bright white light came from the south,, headed north, We saw this same light earlier in the evening, it dimmed considerably on its w +2012-06-13,39.4141667,-77.4108333,Frederick,MD,circle,20,Military transporting ufo on route 270 in md. ((NUFORC Note: It was reported as a piece of U. S. Navy military equipment. PD)) +2012-06-13,29.5847222,-81.2080556,Palm Coast,FL,circle,480,Multicolored lighted circle moving extremely fast appears to be checking out RC jet at three different times during flight. +2012-06-13,38.1666667,-80.9119444,Mt. Lookout,WV,cylinder,20,Silver cylinder obect flying close to public beach. +2012-06-13,30.255277800000002,-88.1097222,Dauphin Island,AL,sphere,2400,Multiple glowing orange orbs over the gulf coast near dauphin island +2012-06-13,39.9611111,-82.9988889,Columbus,OH,oval,15,Odd, glowing oval sped across sky in 10-15 seconds. +2012-06-13,33.4330556,-79.1216667,Pawleys Island,SC,fireball,240,Orange/red balls of light appear over ocean in Pawleys Island/ twinkling white lights +2012-06-13,42.9955556,-71.4552778,Manchester,NH,other,120,Red dot moving fast over Manchester, NH. +2012-06-13,42.9033333,-78.755,Cheektowaga,NY,circle,300,2 Orangish/Red Round Glowing Objects Spotted Near Buffalo Airport. +2012-06-13,40.8272222,-83.2813889,Upper Sandusky,OH,triangle,360,Slow Moving - Potential Triangular shaped aircraft +2012-06-13,36.175,-115.1363889,Las Vegas,NV,fireball,2,Heading straight for Earth with enormous speed a giant blazing fireball white center blue tail appeared out of nowhere, then vanished +2013-06-13,35.35,-80.2002778,Albemarle,NC,light,600,Orange lights traveling N to S +2013-06-13,35.2827778,-120.6586111,San Luis Obispo,CA,disk,30,A patterned flying object hovers until I completely pass by. +2013-06-13,40.3266667,-78.9222222,Johnstown,PA,fireball,600,Flaming Fireball floats across night sky +2013-06-13,33.7222222,-116.3736111,Palm Desert,CA,rectangle,120,Object with blue and white lights bouncing around.. +2013-06-13,33.6888889,-78.8869444,Myrtle Beach,SC,formation,15,Orange rotating lights over myrtle beach. +2013-06-13,33.5508333,-79.0416667,Murrells Inlet,SC,light,300,Beach front observed object red on top yellowish on bottom.Moving from south to north with no sound +2013-06-13,36.9741667,-122.0297222,Santa Cruz,CA,fireball,240,Fire that rose in the night's sky in Santa Cruz, CA +2013-06-13,41.1305556,-85.1288889,Fort Wayne,IN,triangle,120,Triangle shaped object with lights floating in a forward motion stops after we notice it reverses and disappear. +1957-06-14,44.4752778,-70.1886111,Livermore Falls,ME,diamond,300,A recalled childhood event +1962-06-14,43.2383333,-72.2111111,Lempster,NH,circle,300,pin point light that brcame huge and got brighter, then whent pinplint in the sky and shot to the south +1964-06-14,39.5297222,-119.8127778,Reno,NV,disk,900,I saw a luminous object which I can only desribe as a UFO... +1967-06-14,30.8363889,-83.9788889,Thomasville,GA,other,360,2 young men see strange barbell ufo in clear blue dauytime sky at low level. +1971-06-14,34.0291667,-94.7388889,Broken Bow,OK,triangle,180,Silent trapezoid (triangle with its head cut off). Oklahoma, 1971. +1972-06-14,40.6083333,-75.4905556,Allentown,PA,chevron,300,pink glowing boomerang[ufo]? seen moving across night sky. +1974-06-14,32.7677778,-117.0222222,La Mesa,CA,triangle,120,Triangular object with three steady red lights, one on each corner, hovering over Miramar NAS +1976-06-14,38.5502778,-82.7780556,Wurtland,KY,cigar,3600,Head lights in the sky during the daylight? +1978-06-14,34.0522222,-118.2427778,Los Angeles,CA,triangle,420,Triangle crafts in V formation slowly flew over parking lot in Los Angeles Crenshaw shopping area +1982-06-14,32.835,-116.7655556,Alpine (Highway 395),CA,light,1500,The siting is parallels area 51 in Nevada, the elevation abpove sea leval is significantly greater alt. than Area 51. +1985-06-14,41.4569444,-72.8236111,Wallingford,CT,rectangle,300,the object huverd about 900ft. no noise thousands of lites took off out of site in secounds no noise. +1986-06-14,38.8338889,-104.8208333,Colorado Springs,CO,sphere,120,Sphere light UFO seen near Pulpit Rock, CO. +1986-06-14,42.5291667,-85.8552778,Allegan,MI,other,300,pure white orb with tubular tail hovered over allegan dam +1986-06-14,40.9113889,-73.7827778,New Rochelle,NY,triangle,300,triangular shaped craft with 3 white lights and on red blinking light +1988-06-14,32.9536111,-96.89,Carrollton,TX,cross,240,Cross shaped object moving across the clear North Texas sky at 21:45. +1992-06-14,43.9630556,-71.0230556,South Conway,NH,sphere,1800,spherical ball of light about 2 ft in diameter and 20 yards away, interacting with me through movement +1992-06-14,35.7563889,-83.9705556,Maryville,TN,cylinder,1200,Unusual Aircraft near the Secret City +1993-06-14,44.7630556,-85.6205556,Traverse City,MI,triangle,60,The Black Triangle Over Thornapple Ln. +1994-06-14,34.005,-118.8091667,Malibu (North Of; On Pac. Coast Hwy.),CA,cigar,300,red and orange lights pulsing in random sequence/ seemed like communicating +1997-06-14,43.6122222,-116.3905556,Meridian,ID,triangle,180,My Child and friends were outside looking at stars when thay saw a triangle shape moving right over there heads than slow down than too +1997-06-14,45.6388889,-122.6602778,Vancouver,WA,light,300,My sister, boyfriend and I were drivinghome one night and saw a strange light inthe sky and stopped to check it out. Theobject made str +1997-06-14,45.3002778,-122.9719444,Newberg,OR,other,14400,i was sleeping on the trampoline when a v shaped object appeard over head hovered for a few hours and left +1997-06-14,30.2669444,-97.7427778,Austin,TX,triangle,20,Trianglular lighted object sighted over Austin Texas 6-14-97 at 11:20 pm.Seen from the intersection of Hwy. 71 and Hwy. 620, near Bee C +1998-06-14,39.9611111,-82.9988889,Columbus,OH,formation,180,Formation of lights, arranged in the pattern of an "arrow symbol" or "christmas tree." Hovered, moved, and hovered again. Afterwards, +1999-06-14,37.4086111,-120.8491667,Hilmar,CA,triangle,5,Large, whitish triangle rapidly crossing sky +1999-06-14,46.2113889,-119.1361111,Kennewick,WA,sphere,300,two sightings/ #1 orange earthlights follow each other & #2 massive silver ball moves at high altitude across sky +1999-06-14,27.8336111,-97.0608333,Port Aransas,TX,light,120,bright light moving slow. +1999-06-14,48.7597222,-122.4869444,Bellingham,WA,formation,900,One bright light similar to shooting star seen going in a S pattern across the sky and then looped around and disappeared. Aprox 15 mi +2000-06-14,44.3,-120.8333333,Prineville,OR,rectangle,360,is it someone eles or uss +2000-06-14,39.3436111,-90.2125,Greenfield,IL,other,900,Irregular shape with twinkling lights. +2000-06-14,38.6202778,-93.4091667,Green Ridge,MO,light,1200,Various sized lights create formations. +2000-06-14,39.3436111,-90.2125,Greenfield,IL,chevron,120,the perfect V over illinois +2000-06-14,34.2783333,-119.2922222,Ventura,CA,circle,7200,UFO aircraft seen on the horizen. +2000-06-14,43.1894444,-85.9369444,Ravenna,MI,light,6,I saw A light in the north sky tward the east heading south tward the moon. I pointed iit out to my two sons. It traveled from the nort +2000-06-14,39.0169444,-94.2813889,Blue Springs,MO,fireball,4,A small bright light traveling very fast almost horizontaly for a few seconds traveling east to west. +2001-06-14,32.7833333,-96.8,Dallas,TX,flash,60,A spotting of bright and unusual flashes from the sky. +2001-06-14,34.0513889,-84.0713889,Suwanee,GA,changing,60,Flattened cylindrical object floating through the sky. +2001-06-14,42.4525,-89.0722222,Rockton,IL,egg,1800,Burnt orange egg shaped craft seen hovering over field about 20 miles NW of Rockford Illinois, with a light projecting down. +2001-06-14,37.8772222,-122.1786111,Orinda,CA,changing,600,IT was 6/14/02, I had just woken up from a nasty dream about scary stuff, and I notice these three glowing things in the sky. I discard +2001-06-14,44.9430556,-123.0338889,Salem,OR,other,1500,3 Extraordinary close Ufo encounters!!!!!!!!!!!! +2002-06-14,43.9577778,-71.1680556,Albany,NH,light,300,I must be goin crazy but i wasnt someone else saw it too. +2002-06-14,34.1425,-118.2541667,Glendale,CA,disk,60,metallic saucer in broad daylight floating near verdugo mountains in glendale/los angeles area +2002-06-14,45.5872222,-122.3983333,Camas,WA,light,8,Appeared to be a satelite, then it zigzaged, then straight with speed variation +2003-06-14,42.8780556,-73.1972222,Bennington,VT,triangle,12,very fast moving lights, aircraft changing color and vanishing +2003-06-14,34.2255556,-77.945,Wilmington,NC,light,60,Two bright lights came into view as we were sitting on our back porch. They appeared to be fairly far away - like bright stars. No soun +2004-06-14,40.0580556,-82.4013889,Newark,OH,oval,1800,Unknown Object In the Sky +2004-06-14,26.6155556,-80.0572222,Lake Worth,FL,light,240,On the morning of 6/14 at 5:10 am, I saw a point of light traveling from west to east in a abnormal path. It had a up and down path Tha +2004-06-14,40.2969444,-111.6938889,Orem,UT,sphere,240,Sphere with left side lit by sun and slight bright line outlining the right +2004-06-14,33.4352778,-112.3575,Goodyear,AZ,disk,900,>>>The time was between 8:05 pm to 8:38 pm. Of course, I arrived home at 8:38p.m., but the sighting was between those times. My son an +2004-06-14,41.1544444,-96.0419444,Papillion,NE,rectangle,2100,Unusual rectangular green "bi-wing" object observed for 30 minutes. +2004-06-14,33.4483333,-112.0733333,Phoenix,AZ,light,120,Amber lights seen from plane over Phoenix ((NUFORC Note: Possible flares over Gila Bend firing range. PD)) +2004-06-14,33.4483333,-112.0733333,Phoenix,AZ,unknown,600,Incredible light show in South Phoenix +2004-06-14,33.5386111,-112.1852778,Glendale,AZ,formation,300,While putting the kids to bed, my wife pointed out very bright and unusual lights in formation to the sothwest. We live on a mountains +2004-06-14,33.4483333,-112.0733333,Phoenix,AZ,formation,300,Formation of lights seen in southwest sky +2004-06-14,33.4483333,-112.0733333,Phoenix,AZ,light,300,Our home is approximately 20 miles north of downtown Phoenix, in the planned community of Anthem, right off Highway 17 on the way to Fl +2004-06-14,42.4433333,-85.0180556,Bellevue,MI,triangle,1200,Triangled shape UFO +2005-06-14,33.9533333,-117.3952778,Riverside,CA,light,2400,Bright Rotating Light In Night Sky +2005-06-14,34.7302778,-86.5861111,Huntsville,AL,triangle,15,Three brilliantly colored purple lights streaked beyond the eastern horizon at a fantastic rate of speed. +2005-06-14,39.7391667,-104.9841667,Denver,CO,disk,120,3 Saucer Shaped Light Metallic Craft observed flying below a United Airlines Flight out of Denver. +2005-06-14,28.0219444,-81.7330556,Winter Haven,FL,oval,300,strange skies over Winter Haven +2005-06-14,37.6086111,-77.3736111,Mechanicsville,VA,circle,60,Large gray circular object a few hundred feet from the ground. +2005-06-14,41.2619444,-95.8608333,Council Bluffs,IA,triangle,30,Traingle UFO sighting clear veiw three witnesses and one stubborn person who wouldn't look +2005-06-14,33.4483333,-112.0733333,Phoenix,AZ,light,900,Yet again...more Phoenix Lights over North Phoenix, Peoria and Surprise. +2005-06-14,38.3083333,-95.9555556,Hartford,KS,circle,300,Two siblings witness a large hovering object at night with blinking lights. +2006-06-14,38.9333333,-119.9833333,South Lake Tahoe,CA,light,1800,Saw 3 lights zig zagging across the sky over lake tahoe. caught on tape. +2006-06-14,36.5958333,-91.6455556,Koshkonong,MO,sphere,120,A very slow flying orb at roughly 300' directly overhead spotlighted me. +2006-06-14,41.3136111,-81.7247222,North Royalton,OH,triangle,120,Triangular craft seen in Northern Ohio +2006-06-14,33.5538889,-117.2130556,Murrieta,CA,triangle,20,The UFO was the shape of a triangle, and each corner of the triangle was a dotted circle. The light coming off of it was white. +2007-06-14,37.6811111,-122.1233333,San Lorenzo,CA,light,7200,transforming light with shooting fireball +2007-06-14,36.5025,-120.3905556,Three Rocks,CA,light,600,UFO OVER 5 FREEWAY +2007-06-14,32.3863889,-96.8480556,Waxahachie,TX,light,10800,Bright light turned off and turned back on. Very bright, then dimmed to orange colored. +2007-06-14,36.8452778,-86.8872222,Russellville,KY,light,2700,Bright light in sky that shifted coarce very slowly, no plane, star, or planet. +2007-06-14,29.9230556,-82.7138889,Fort White,FL,unknown,30,North to South, shooting star no change in mangnitude continued southbound +2007-06-14,44.0163889,-69.1994444,St. George,ME,triangle,600,3 bright lights in triangle formation hovering over St. George Maine 6/14/2007@22:10 +2007-06-14,40.485,-78.725,Ebensburg,PA,light,300,I viewed a bright white light in the western sky that made sharp turns, hovered ,and displayed incredible speed. +2007-06-14,43.6461111,-108.2113889,Thermopolis,WY,unknown,15,UFO near Thermopolis WY +2007-06-14,41.6833333,-86.25,South Bend,IN,light,2700,We saw a huge light with a large craft behind it, low in the sky for about 20 minutes, then it slowly moved northwest +2007-06-15,40.8325,-115.7622222,Elko,NV,unknown,300,unknown light over retail store +2008-06-14,33.8169444,-118.0363889,Cypress,CA,fireball,2,Bright white fireball with a blue tail over Orange County. +2008-06-14,31.5491667,-97.1463889,Waco,TX,other,2,Three different single-color lights, red, green, and blue, each flashed once in the pattern of an opening Japanese-style fan. +2008-06-14,47.6105556,-122.1994444,Bellevue,WA,light,600,White and very bright red lights seen in Bellevue WA. +2008-06-14,40.5186111,-74.4125,Edison,NJ,disk,300,UFO seen in Edison NJ USA up close +2008-06-14,41.5644444,-87.5125,Munster,IN,sphere,120,very bright light jumped around before turning dark maroon an gone +2008-06-14,44.7319444,-93.2175,Apple Valley,MN,light,1800,Dancing White Lights In The Sky During Bright Day. ((NUFORC Note: Student report. PD)) +2008-06-14,43.0302778,-83.1661111,Attica,MI,circle,180,Attica, MI +2008-06-14,29.7027778,-98.1241667,New Braunfels,TX,triangle,240,triangle craft with lights +2008-06-14,34.2247222,-118.4488889,Panorama City,CA,circle,1200,panorama city ca silver circle space sheep ufo 20 minutes over my house 6/14/08 +2008-06-14,39.3,-85.2222222,Batesville,IN,circle,1800,Huge round black rimmed circle appeared in sky over Int 74 near Batesville, IN on 6/14/08 +2008-06-14,39.5538889,-104.9688889,Highlands Ranch,CO,fireball,60,Silent orange/yellow/red fireball hovered then sped off +2008-06-14,29.5425,-95.0202778,Kemah,TX,unknown,120,Bright Orange Light seen over Galveston Bay +2008-06-14,41.7955556,-86.0808333,Edwardsburg,MI,egg,600,Orange objects traveling in the same flight path over Michigan +2008-06-14,41.3322222,-87.7852778,Peotone,IL,light,90,Bright light got dimmer, emitted another light, both faded out. +2008-06-14,34.0480556,-118.5255556,Pacific Palisades,CA,flash,4,A bright flash like lightning followed by a fast moving very bright object like a comet +2008-06-14,42.1058333,-84.2483333,Brooklyn,MI,egg,1500,Three (total) egged shaped flying lights over Brooklyn, MI +2008-06-14,40.8325,-115.7622222,Elko,NV,light,960,2 large Red stationary lights , time span of 16 minutes, above Elko, Nv on 06/14/08 at 23:00 +2008-06-14,40.8325,-115.7622222,Elko,NV,light,420,Two brilliant, solid red lights moving slowly across the skies in Northeast Nevada +2008-06-14,34.0522222,-118.2427778,Los Angeles,CA,fireball,30,Bright Fireball in the Los Angeles Sky +2008-06-14,47.7883333,-122.3075,Mountlake Terrace,WA,fireball,2.5,Saw a bright white/blue light with a red tail going north, having passed over my house. +2008-06-14,34.4888889,-118.6219444,Castaic,CA,sphere,1,one bright greenish yellow spherical object shoots across the sky +2008-06-14,47.8108333,-122.3761111,Edmonds,WA,circle,5,On Saturday, June 14 between 2350-2375 hrs Pacific Time in Edmonds Washington, I witnessed a blue and yellow fireball blazing across th +2008-06-14,34.1083333,-117.2888889,San Bernardino,CA,circle,4,Bright white round object with orange and purple tail at high speed observed in mountains - 3 adult witnesses +2008-06-15,34.1866667,-118.4480556,Van Nuys,CA,formation,3,Their were 4 straight lines of lights with a trail of yellow tail traveling across the sky at a very fast speed and disappeared. 50 +2009-06-14,40.135,-86.2205556,Sheridan,IN,triangle,180,Beautiful triangle over Sheridan Indiana +2009-06-14,36.8297222,-84.8491667,Monticello,KY,changing,900,Two lights flying odd paterns and running into each other +2009-06-14,40.8325,-115.7622222,Elko,NV,light,900,My friend noticed a bright light outside my window. We watched it for a while. ((NUFORC Note: Probable star or planet? PD)) +2009-06-14,33.6305556,-112.3325,Surprise,AZ,circle,180,it was 2 in the mornig. me and my friend were just sitting outside until i looked up, there was a purple circle shaped object with spin +2009-06-14,25.7738889,-80.1938889,Miami,FL,other,300,We are not alone!!! +2009-06-14,36.175,-115.1363889,Las Vegas,NV,other,2,the turtle shaped craft blinked out..disappeared. +2009-06-14,37.8044444,-122.2697222,Oakland,CA,light,600,Strange light over Oakland during the day. +2009-06-14,40.3211111,-79.3797222,Latrobe,PA,sphere,180,Sphere of light changing to a cigar shaped object hovering in the sky. +2009-06-14,37.775,-122.4183333,San Francisco,CA,oval,600,4 UFOs over the Sunset District in San Francisco CA on 6/14/09 around 9:00 pm. +2009-06-14,41.6352778,-72.7691667,Kensington,CT,light,300,Moving unlike any jet from r to l north and south irratically light bright then dim then moving circular and gone. +2009-06-14,41.6413889,-80.1516667,Meadville,PA,unknown,2700,Somebody deliberately blew something up in space, which entered our atmosphere as a fire ball and fell beyond the horizon +2009-06-14,45.6625,-110.5602778,Livingston,MT,light,1,pinkish light launches straight up into low hanging clouds +2009-06-14,38.7955556,-77.6141667,Gainesville,VA,light,600,Virginia UFO Flashes Back to Spectators +2009-06-14,44.9238889,-92.9591667,Woodbury,MN,circle,45,nightime, fuzzy circle (a bit brighter than a nightime cloud) with an intermittently flashing amber light beneath, moving quickly NNW. +2009-06-15,41.3455556,-88.8425,Ottawa,IL,egg,240,It was this past Sunday when I looked up and say what I thought at first was a hawk flying very high like they do when looking for prey +2010-06-14,34.1808333,-118.3080556,Burbank,CA,circle,600,A metallic object is seen hovering really high above N Glenoaks blvd and Birmingham Rd around 6:10pm in bright daylight in burbank +2010-06-14,33.6602778,-117.9983333,Huntington Beach,CA,other,10,Low flying UFO with a single red and green light slight white glow around it over pacific coast highway in Huntington Beach CALI +2010-06-14,39.3488889,-110.8508333,Cleveland,UT,unknown,28,You can see the engines or where you would think engines would be clearly lite up on the underside. +2010-06-14,41.1416667,-74.3111111,Hewitt,NJ,light,30,White spec of light high up in sky that brightly flashes & disappears +2010-06-14,41.3305556,-74.1872222,Monroe,NY,unknown,30,Flash of white light and object gone. Monroe, NY +2010-06-14,40.7608333,-111.8902778,Salt Lake City,UT,light,10,Bright light over Western Salt Lake moves across the sky then vertically and disappears. +2010-06-14,40.4166667,-86.8752778,Lafayette,IN,fireball,180,Fireball seen low then disappears high. +2011-06-14,32.9572222,-95.29,Winnsboro,TX,other,30,a diamond shaped caft with a halo and long tail it was ice blue. +2011-06-14,39.7683333,-86.1580556,Indianapolis,IN,unknown,60,5-6 amber colored lights flying in formation. +2011-06-14,36.175,-115.1363889,Las Vegas,NV,teardrop,3600,Long duration daylight sighting of 2 craft west/southwest of Las Vegas strip +2011-06-14,37.6113889,-92.9091667,Long Lane,MO,sphere,180,driving on roberts rd. to hico creek,when just above the tree line,about 75 feet. 2 orange orbs moved right to left in a straight line +2011-06-14,38.0044444,-122.2977778,Pinole,CA,sphere,960,Silent sphere overhead becomes stationary in sky +2011-06-14,35.235,-75.6288889,Frisco,NC,light,600,Reddish-orange lights over ocean at Frisco/Buxton North Carolina - outer banks +2011-06-14,47.5708333,-122.2208333,Mercer Island,WA,light,900,Yellowish red lights over Lake Washington 6/14/2011 +2011-06-14,47.6105556,-122.1994444,Bellevue,WA,light,60,Man witnesses 7 or 8 unidentified lights move rapidly overhead. +2011-06-14,40.7719444,-73.9305556,Astoria,NY,cigar,15,Wingless airplane torso in the night sky close to LaGuardia airport. +2011-06-14,40.3433333,-111.72,Lindon,UT,rectangle,180,Bright object moving through sky over Utah. +2011-06-14,41.6736111,-88.0016667,Lemont,IL,circle,180,Brightly lit craft hovers above tree line, moves off into distance +2011-06-14,40.7141667,-74.0063889,New York City (Manhattan),NY,sphere,420,2 objects flying SUPER FAST speeds in Manhattan +2012-06-14,38.8033333,-76.99,Oxon Hill,MD,disk,3600,UFO SIGHTING CLOSE UP IN DMV AREA ON STREET +2012-06-14,40.8533333,-73.4119444,Huntington Station,NY,sphere,7200,Bright light at bottom and moving in a circular motion +2012-06-14,36.175,-115.1363889,Las Vegas,NV,cylinder,900,UFO sighted hovering over Nellis AFB, Las Vegas, NV. +2012-06-14,39.3302778,-84.4083333,Westchester,OH,rectangle,180,Large billboard shaped dark grey rectangular shape hovering above the I-75 freeway. +2012-06-14,33.4330556,-79.1216667,Pawleys Island,SC,circle,30,Three bright red lights in sky over the ocean at Pawley's Island, SC +2012-06-14,33.4669444,-117.6972222,Dana Point,CA,changing,1500,Large erratically moving object over Dana Point, CA +2012-06-14,33.5927778,-79.0088889,Garden City,SC,light,600,Sequence of bright lights over Garden City, SC. +2012-06-14,33.6888889,-78.8869444,Myrtle Beach,SC,light,900,Orange glowing lights then fading out several times in eastern sky +2012-06-14,43.0125,-83.6875,Flint,MI,fireball,10,My daughter and I were on our way home from Genesee Valley Mall. We were at a red light on the corner of Linden & Beecher Rd. I looke +2012-06-14,42.4733333,-83.2219444,Southfield,MI,other,2,Green Flash in Northern sky +2012-06-14,42.2408333,-83.2697222,Taylor,MI,fireball,3,green streak across sky. +2012-06-14,42.7977778,-83.705,Fenton,MI,fireball,10,Very close shooting star with bright colors. +2012-06-14,33.3138889,-82.0969444,Hephzibah,GA,cylinder,60,Red glowing object over Hephzibah during lighting storm +2012-06-14,37.3041667,-77.2875,Hopewell,VA,triangle,600,Triangle shaped craft with 4 white lighta in diamond pattern and blinking red light in center craft floating down courthouse rd for 5 m +2012-06-14,33.1566667,-94.9680556,Mount Pleasant,TX,sphere,1200,25 or more orange ,glowing orbs that seem to be floating in the sky, in north east Texas. +2012-06-14,41.1175,-73.4083333,Norwalk,CT,formation,420,12 HUGE ORANGE GLOWING ORBS +2012-06-14,27.4986111,-82.575,Bradenton (Northeast Area Of),FL,circle,120,Low flying orange fire like ball +2012-06-14,48.1797222,-117.0422222,Newport,WA,light,20,Bright light in the sky +2012-06-14,48.1797222,-117.0422222,Newport,WA,light,5,Horizontal white light moving at amazing speed. +2012-06-14,40.0455556,-86.0086111,Noblesville,IN,unknown,900,Silent crafts flying over Noblesville +2012-06-14,48.5619444,-122.3969444,Bow,WA,sphere,90,Silent bright light headed east- big and sort of orange. steady speed. +2012-06-14,41.7797222,-71.4377778,Cranston,RI,fireball,60,2 fireballs, bright white interiors, bright red flaming edges, moved SW across the sky, then disappered one at a time. +2012-06-14,41.7797222,-71.4377778,Cranston,RI,sphere,900,Bright spheres forming huge triangle. +2013-06-14,43.41,-86.3486111,Whitehall,MI,light,3,Orange yellow spherical light streaked across the rural forrested highway and disappeared beyond the treeline. +2013-06-14,37.5536111,-77.4605556,Richmond (Fishing Bay),VA,light,60,A witness and I saw 2 UFOs within 1 minute in Fishing Bay VA. +2013-06-14,42.9375,-70.8394444,Hampton,NH,sphere,60,Dark colored sphere or egg shaped solid object no lights no sound traveling as fast as a helicopter moving straight 1200 feet overhead +2013-06-14,34.1705556,-118.8366667,Thousand Oaks,CA,flash,15,Saw a large orange flash of light looking like a star t, was moving slowly and stopped, shrunk smaller and started moving quickly acro +2013-06-14,36.8588889,-120.455,Firebaugh,CA,unknown,120,Appeared to be the size of a large UFO with 3 perfectly round bright white lights, flying 100' off of ground, very slow & silent. +2013-06-14,34.1205556,-84.0044444,Buford,GA,light,600,Red lights over Buford, GA. +2013-06-14,41.7691667,-72.965,Burlington,CT,fireball,420,Glowing large fireball. +2013-06-14,45.5236111,-122.675,Portland,OR,disk,7,Green lit object over Portland changing direction. +2013-06-14,39.8016667,-89.6436111,Springfield,IL,circle,180,Red fire ball hovering and then lights going dim as it descended to above set of trees then lost it. +2013-06-14,39.8208333,-84.0194444,Fairborn,OH,triangle,600,I WAS RIDING MY BIKE WITH MY DAD AND WE NOTICED A BRIGHT FIREY LIGHT IN FAIRBORN OHIO ....THE LIGHT WAS SO BRIGHT AND AS IT GOT CLOSER +2013-06-14,39.8208333,-84.0194444,Fairborn,OH,triangle,600,To whom it may concern: ON FRIDAY JUNE 14, 2013 MY SON AND I DECIDED TO TAKE A NIGHT BIKE RIDE WHILE WE WERE RIDING THROUGH TOWN (FAIR +2013-06-14,40.3408333,-76.4116667,Lebanon,PA,light,540,Bright white non-blinking star-like lights began moving across Lebanon,Pa. night sky. +2013-06-14,43.3594444,-83.8816667,Bridgeport,MI,light,240,4 bright red lights moved across sky. +1937-06-16,45.1825,-122.8066667,Hubbard,OR,cylinder,10,It had a bluish tint with what looked like a candle light in the center traveling slowly south. +1947-06-15,44.05,-91.6391667,Winona (Aprox.20 Mi.north West Of),MN,disk,15,2 unmoving round objets side my side like eyes streight overhead above the fiew clouds that drifted under them. +1947-06-15,46.6258333,-99.1416667,Gackle,ND,other,3600,Alien hawk sighted in North Dakota +1947-06-15,43.073055600000004,-89.4011111,Madison,WI,disk,180,Three disks appear in the West, stop at zenith, and proceed Eastward a rapid rate of speed. +1948-06-15,35.6677778,-101.3969444,Borger,TX,disk,10,Dull silver disk flying west at incredible speed making no sound above swimmers in pool. +1950-06-15,42.3758333,-82.9375,Grosse Pointe Park,MI,oval,600,1951-52 Grosse Pointe, MI. Three saucer shaped objects entering into a large oval shapped object. +1950-06-15,30.7916667,-85.6797222,Bonifay (Near),FL,disk,10,The objects were discs, white, and I estimate were moving around 100 mph in a southerly direction. +1951-06-15,33.41,-91.0616667,Greenville,MS,disk,300,Sighting of white lights in evening sky west of Greenville MS circa 1951. +1952-06-15,30.3319444,-81.6558333,Jacksonville,FL,triangle,30,extremely fast triangle shape object with one light on rear comes to a sudden stop, then seems to shoot out of sight +1952-06-15,33.9866667,-118.1844444,Maywood,CA,circle,300,7 balls of *orange moon* lights in 2 V formations observed for 3 to 5 minutes until all sped off in 7 differen directions +1953-06-15,47.4236111,-120.3091667,Wenatchee,WA,disk,45,round, silver-colored, shiny, saucer-shaped object flew at a high rate of speed horizon to horizon - taking about 45 seconds +1953-06-15,47.4958333,-121.7855556,North Bend,WA,circle,120,My cousin and I who were children at the time, watched a round, smooth, silent object which had a pinkish glow, come across his field f +1954-06-15,39.8005556,-75.46,Claymont,DE,disk,10,It was just before noon on a warm sunny June day, I was 16 yrs old. Riding in the car with my brother-inlaw driving, my sister riding +1955-06-15,29.2105556,-81.0230556,Daytona Beach,FL,fireball,120,Three fireballs moved slowly along the beach, then suddenly accelerated and flew straight up into the night sky and disappeared. +1956-06-15,37.775,-122.4183333,San Francisco,CA,other,180,I saw a football shaped, silver metalic object,very high,going very fast. +1956-06-15,37.4419444,-122.1419444,Palo Alto,CA,fireball,600,Fireball landing, and when inspection attempted, retreating. +1956-06-15,42.8533333,-74.9858333,Richfield Springs,NY,cigar,120,SIX CIGAR SHAPED UFO'S OVER UPSTATE NEW YORK LAKE IN 1956/57. +1956-06-15,33.2,-117.2416667,Vista,CA,cigar,1200,bright orange cigar shaped craft, at least 3 miles long, 1/2 mile wide. +1956-06-15,35.8844444,-84.1536111,Farragut,TN,cigar,600,Cigar shaped craft seen in Farragut, TN community +1956-06-15,36.1538889,-95.9925,Tulsa,OK,flash,300,Mysterous Flash seen over Tulsa and as far as Dallas and Kansas City! +1956-06-15,39.5716667,-75.4675,Salem,NJ,disk,68,We walked out side during supper, woke up standing in the back yard, then I saw 5 of them watching me. +1956-06-15,40.7141667,-74.0063889,New York City (Queens),NY,light,60,I looked into the darkened sky and observed a light source that was moving in a circular motion. +1957-06-15,40.4511111,-85.37,Hartford City,IN,disk,300,flying sausers are as real as real gets +1957-06-15,42.5377778,-83.4811111,Walled Lake,MI,cylinder,1800,The glowing object was there one second and in a flash vanished. +1958-06-15,40.9311111,-73.8991667,Yonkers,NY,light,14,venus' dark side... +1958-06-15,37.4538889,-122.1811111,Menlo Park,CA,light,600,Saw noisless, extremely-low clear light slowly cruise past us and over hills, where "encountered" and newspaper-reported. +1958-06-15,29.7630556,-95.3630556,Houston,TX,disk,2700,Observed disk while driving. We stopped, got out and stood watching disk as it stopped directly over us. No sound or other disturbance. +1958-06-15,36.3377778,-96.8036111,Pawnee,OK,light,1800,I watched two Star like objects in the Eastern night sky with a smaller one moving between the two. +1958-06-16,36.9952778,-91.7036111,Mountain View,MO,other,7200,Mountain View, Mo. 1960's Lights with tails. +1959-06-15,46.8722222,-113.9930556,Missoula (Event At Superior),MT,unknown,20,Twenty nights of stalking, apparent abduction attempts by Grey "alien" creatures, 1959. +1959-06-15,44.98,-93.2636111,Minneapolis,MN,other,30,Silver Bullet +1959-06-15,37.2872222,-121.9488889,Campbell,CA,disk,720,3 glowing disc shaped objects +1960-06-15,39.2902778,-76.6125,Baltimore,MD,other,300,Three white lights flying in formation. +1960-06-15,39.1141667,-94.6272222,Kansas City,KS,disk,900,Short visit! +1961-06-15,34.7302778,-86.5861111,Huntsville,AL,triangle,240,The craft just sat over us, no sound, no lights. +1961-06-15,32.948055600000004,-96.7294444,Richardson,TX,light,1200,bright light doing manuvers then chased by jets +1961-06-15,34.3919444,-99.0180556,Frederick,OK,light,240,After sun down, large bright white lightmoving westward at high altitude and speed.Two minutes after its passing, a flight ofthree F-10 +1962-06-15,46.2752778,-122.9063889,Castle Rock,WA,sphere,900,My dad was a heavy equipment mechanic with a large timber company for many years and told me about a sighting he and his helper had dur +1962-06-15,42.4411111,-88.6411111,Lawrence County (Rural Agriculture Field),IL,disk,900,My motivation is to have this report of unknown craft observed at close range included in a database +1963-06-15,26.0108333,-80.1497222,Hollywood,FL,disk,7200,UFO landing in Hollywood, FL 1963 +1963-06-15,41.2222222,-73.0569444,Milford,CT,other,60,A solid black cylinder shape moving across the ground then rising like a shadow +1963-06-15,45.5827778,-122.3522222,Washougal,WA,unknown,900,Small craft and several even smaller craft, with bright lights. +1963-06-15,35.8422222,-90.7041667,Jonesboro (Arkansas State University),AR,cigar,21600,Summer 1963 - First appeared the disc over building on campus at dusk, then a sonic boom from air base 50 miles away. Craft zoomed up +1963-06-15,43.4197222,-85.8,Newaygo,MI,sphere,7200,on or about june 1963 I saw a chrome ball about the size of a beachball hovering over the trees while in a boat fishing. +1963-06-15,34.5438889,-85.3105556,Trion,GA,circle,1200,SLOW MOWING ROUND OBJECT WITH BRIGHT LIGHTS AROUND IT-HUGH COVERING SEVERAL ACRES-LEFT IN A SPILIT SECOND- WE SWORE WE WOULD NEVER TELL +1964-06-15,25.7738889,-80.1938889,Miami,FL,light,300,Very bright light in night sky leaving at incredible speed from an apparent hovering position +1964-06-15,47.5002778,-111.3,Great Falls,MT,sphere,1800,As I watched, they formed a circle at 1000 plus feet which must have been close to 1/4 mile accross. +1964-06-15,36.1538889,-95.9925,Tulsa,OK,circle,30,While crossing the driveway of my front yard, I happened to look straight up. There was no particular reason that I have ever been abl +1964-06-15,35.9197222,-88.7588889,Milan,TN,sphere,600,Large redish-orange sphere that slowly desended outside our house. +1964-06-15,42.6911111,-82.6886111,Anchorville,MI,disk,180,I saw into disc with clear openings under it, chased by police at tree top level, then hesitating directly above my home. +1964-06-15,30.5780556,-98.2725,Marble Falls,TX,light,30,Three rapidly moving high lights joined a larger light which then winked out. +1964-06-15,29.942777800000002,-90.3516667,Destrehan,LA,light,30,three lights in the night sky with very unusual behavior. +1965-06-15,34.1683333,-118.605,Woodland Hills,CA,circle,120,Circular black object in early morning sky, blocking out starfield, size of 33 1/3 record album at arms length; Woodland Hills, Calif. +1965-06-15,40.5041667,-98.2527778,Glenvil,NE,unknown,120,It was not a visual occurance but one of sound and motion. +1965-06-15,40.5697222,-79.765,New Kensington,PA,disk,10800,3 hours in a UFO +1965-06-15,42.6261111,-83.0336111,Utica,MI,disk,10,I saw 4 disk shapeed objects flying in fighter plane formation +1965-06-15,32.7666667,-96.5988889,Mesquite,TX,oval,300,night sky blinking red and blue lights +1965-06-15,35.4675,-97.5161111,Oklahoma City,OK,sphere,300,Big, bright light coming at us. +1965-06-15,27.7705556,-82.6794444,St. Petersburg,FL,unknown,30,object following an earth-orbiting satellite in the night sky. +1965-06-15,39.3916667,-81.2052778,St. Marys,WV,disk,20,White disc-shaped object witnessed in West Virgina in mid-1960s +1965-06-15,42.4183333,-71.1066667,Medford,MA,oval,300,At the Medford Drive in early or mid 60's. Slow moving flying object infront of screen for about 5 minutes. +1965-06-15,35.7688889,-119.2461111,Delano,CA,formation,900,Objects were seen at night headed towards radio free europe transmission towers. +1965-06-15,40.2452778,-75.65,Pottstown,PA,other,30,saw a yellow plane canopy shape ufo over a neighbors house when i was 10 years old. +1965-06-15,37.2652778,-97.3713889,Wellington,KS,unknown,1200,Red glow from unseen object +1965-06-16,33.9791667,-118.0319444,Whittier,CA,other,5,MY MOTHER AND I SAW A SUN-LIKE SHAPED SUN OVER A HILL IN WHITTIER,CA. EXPECTING 1000'S TO BUT NO ONE SAW EXCEPT US +1966-06-15,42.9169444,-89.2177778,Stoughton,WI,sphere,5,Our family abducted by aliens near Stoughton, Wisconsin in Summer of 1966 +1966-06-15,39.9611111,-82.9988889,Columbus,OH,circle,120,Directly overhead, stationary. Reddish-orange slowly pulsating light then moved south very rapidly. +1966-06-15,43.2166667,-123.3405556,Roseburg,OR,other,3600,i saw YHVH and afterwards there apopeared a ufo in the following week that took me from a tent and tatooed me, project blue book there. +1966-06-15,44.9430556,-123.0338889,Salem,OR,oval,1500,The pay off could be big for a little research. +1966-06-15,40.3355556,-75.9272222,Reading,PA,sphere,20,huge molten sphere with liquid surface blending colors. Moving approx. 120 mph south to north. maybe 5000 feet. seen by six people +1966-06-15,40.3980556,-80.1858333,Oakdale,PA,disk,600,Mesmerizing daylight, close encounter at Oakdale,PA Army base in summer of 1966, witnessed by at least 100 guys. +1966-06-15,39.1619444,-84.4569444,Cincinnati,OH,disk,600,Saucer shaped object over Crosley field +1966-06-15,39.8869444,-79.8669444,Mcclellandtown,PA,disk,10800,Was driving home on route 21 heading west. Craft flew over the 4 of us in our truck. Landed in a field to our right. We stopped, got +1966-06-16,39.2902778,-76.6125,Baltimore,MD,oval,1200,UFO-approx 1965-67 Bowleys Quarters MD, Silent flat oval shaped, glowing softly, colored sphere. +1967-06-15,47.3811111,-122.2336111,Kent,WA,disk,300,IN THE SUMMER OF 1967 I saw a saucer at 35 feet above my car! I saw things that were were concidered impossable for that time period. +1967-06-15,42.3313889,-83.0458333,Detroit,MI,sphere,60,huge metal ball shaped ship hanging low in air then moved away at 2 o'clock angle at great speed. +1967-06-15,35.6508333,-117.6608333,China Lake,CA,sphere,120,a silver sphere was filmed with a high speed tracking camera with data bar the sphere was 30 ft in diamer flying at 1900mph at a range +1967-06-15,40.5186111,-74.4125,Edison,NJ,other,2631600,the object was one color.orange +1967-06-15,43.3094444,-73.6444444,Glens Falls,NY,teardrop,900,Passed over our backyard +1967-06-15,36.0102778,-84.2697222,Oak Ridge,TN,sphere,720,Red Sphere in Oak Ridge. +1967-06-15,39.0175,-122.0566667,Arbuckle,CA,triangle,240,At dusk in 1966 or 67, three lights in formation or triangular craft with no visible substance floated silently into the West. +1967-06-15,40.7608333,-111.8902778,Salt Lake City,UT,disk,120,In June of 1967 while waiting in our car to get into a drive-in movie a saucer shaped craft hovered between us and the Wasatch Mountain +1967-06-15,32.0833333,-81.1,Savannah,GA,chevron,240,Five orange glowing spheres together in a line above the treetops. +1968-06-15,30.1586111,-85.6602778,Panama City,FL,light,900,A large circular bright light appeared abruptly and stationary,for 10 to 20 minutes in front of the USS Vigor(MSO-473) at two in the mo +1968-06-15,36.0725,-79.7922222,Greensboro (While Driving On The Turnpike In Wv),NC,triangle,120,Electric blue, long tail kite floating over W. Va. Turnpike seen over Greensboro NC at almost same hour +1968-06-15,41.0813889,-81.5191667,Akron,OH,disk,180,Disk in the City +1968-06-15,34.2011111,-118.5972222,Canoga Park,CA,cylinder,600,Observed a very long, shiny object over the San Fernando Valley in or around 1968. +1968-06-15,29.7352778,-94.9772222,Baytown,TX,cigar,7200,In support of sightings 7/15/66 & 6/15/68 in Galveston & Pasadena Texas +1968-06-15,37.3636111,-118.3941667,Bishop,CA,disk,1800,Bright light several thousand feet over the Owens Valley near Bishop, California. Attacked by airplanes and left at high speed +1968-06-15,38.2541667,-85.7594444,Louisville,KY,unknown,1200,Unknown light/object moving perpendicular/horizontal in seconds and disappearing then reappearing +1968-06-15,32.7391667,-96.8108333,Oak Cliff,TX,disk,1200,Disk with lighted windows hovers near apartment complex as we stood in parking lot and watched. +1968-06-15,32.7391667,-96.8108333,Oak Cliff,TX,disk,2700,Hovering disk with oval portholes in daylight hrs for a long time +1968-06-15,29.6908333,-95.2088889,Pasadena,TX,cigar,120,Cigar shaped UFO with it's tailend on fire +1968-06-15,40.6083333,-75.4905556,Allentown,PA,sphere,300,Craft and Crew sighted +1968-06-15,40.4405556,-79.9961111,Pittsburgh,PA,light,1800,Bright object observed hovering over a radar site by pilots, Air Force officers and tower personnel. +1968-06-15,36.9483333,-81.085,Wytheville,VA,disk,600,the domed saucer had lights around the dome, and hovered close to the ground-with a loud humming noise. +1968-06-15,35.2333333,-82.7344444,Brevard,NC,circle,300,4 people saw this same orange,glowing,silent,energy mass fly right by us...... +1968-06-15,37.485,-119.9652778,Mariposa,CA,unknown,600,Red lights shined into the back of the car.. just like the police have. +1968-06-15,38.8541667,-120.8583333,Garden Valley,CA,disk,15,06-1968 Late evening, forested foothill road, saucer 100 ft above car 3 witnesses, no recall for 8 years. +1969-06-15,40.7297222,-73.2108333,Islip,NY,other,1200,Sightings/Multiple witnesses +1969-06-15,34.7463889,-92.2894444,Little Rock,AR,cylinder,60,no sound or lights +1969-06-15,40.5186111,-78.395,Altoona,PA,other,600,Space ship hovered with colored lights going around not flashing just circling the ship +1969-06-15,30.6741667,-96.3697222,Bryan,TX,triangle,60,the lights of the first craft turned back on and 2 more identically lighted aircraft zipped in on both sides of the lead aircraft ..., +1969-06-15,38.8461111,-77.3066667,Fairfax,VA,oval,60,Huge blimp-like craft; lights around the middle of craft; no sound; hovering above the highway. +1970-06-15,41.448055600000004,-90.1541667,Geneseo,IL,unknown,1200,Early morning abduction +1970-06-15,29.7630556,-95.3630556,Houston,TX,disk,900,Saucer very low to ground +1970-06-15,40.5197222,-87.2477778,Oxford,IN,other,1800,Unknown Radio Broadcast 1970 +1970-06-15,41.2222222,-73.0569444,Milford,CT,disk,180,Witnessed a silver disk in 1970 +1970-06-15,41.85,-87.65,Chicago,IL,circle,300,Bright White Circular Disc descends along the outside of Chicago lake front hi-rise +1970-06-15,38.5463889,-120.7430556,River Pines,CA,disk,10,Grey to silver saucer shaped craft flew directly at and over vehicle at altitude of few feet . +1971-06-15,41.0333333,-74.6388889,Sparta,NJ,oval,7,Multi Colored, Stadium sized craft disappears at light speed +1971-06-15,42.0833333,-71.0188889,Brockton,MA,disk,1800,The Sighting +1971-06-15,28.6416667,-81.1236111,Chuluota,FL,triangle,3600,Light in the sky that stopped time +1971-06-15,37.3541667,-121.9541667,Santa Clara,CA,disk,7200,Pink disc plays "hide and seek" with private and miltary planes for 2 hrs.! +1972-06-15,34.4016667,-86.4491667,Union Grove,AL,formation,7200,UFOs observed by WWII veteran and multiple Army and National Guard members. +1972-06-15,36.0725,-79.7922222,Greensboro,NC,disk,180,Silent, rotating disk with alternating red and white light panels, approxomately 20 feet in diameter, 30 to 40 feet off the ground. +1972-06-15,39.5297222,-81.5063889,Lowell,OH,other,900,one incredibly large, silent luminous vessel hovering like a large shallow soup bowl inverted over another of the same size and shapec +1973-06-15,33.6602778,-117.9983333,Huntington Beach,CA,cigar,20,300' cigar,silverᄺ windows w/soft corners, 200' off ground, traveling from ocean inland at less than 50 mph. +1973-06-15,35.8880556,-106.3063889,Los Alamos,NM,cigar,30,Has anyone else reported a ufo over LOS ALAMOS NATIONAL LABORATORIES around this time? I know of at least 2 others that saw it. It was +1973-06-15,38.1352778,-80.2133333,Hillsboro,WV,circle,14400,Largo red object sitting over a ridge. If indeed it was hovering over this ridge it was very large. Well over 100 feet. It attracted my +1973-06-15,34.9475,-85.7144444,Bridgeport,AL,disk,30,Two objects, saucer and cigar shaped, at 3귔 ft. moving north toward Chattanooga, Tenn. +1973-06-15,27.9472222,-82.4586111,Tampa,FL,cigar,120,Whilewatching a friend of mine go-karting, I noticed a metallic cigar-shaped craft, several hundred feet in length move slowly over the +1973-06-15,40.9952778,-74.0125,River Vale,NJ,circle,20,Two large round very bright white objects with very fast precise movents, moving independently then dissapearing +1973-06-15,34.6058333,-86.9833333,Decatur,AL,circle,900,mid 1970's UFO over Decatur,Alabama +1973-06-15,38.595,-90.5461111,Ballwin,MO,disk,1200,In June, 1973 myself and 6 others watched a huge, silent, metallic disk hover over my house. +1973-06-15,38.7072222,-121.28,Citrus Heights,CA,chevron,5,Low flying, silent, wing shaped craft passed directly overhead while we were moon gazing; report on local TV breaking news. +1973-06-15,37.0297222,-76.3455556,Hampton,VA,formation,120,Low flying triangular formation? of silent blue lights in 1974 near Langley Va. +1973-06-15,37.1183333,-82.8269444,Whitesburg,KY,light,1200,Star-like light flashes different colors, hovers, and moves horizontally over 20 minute period. +1973-06-15,33.1027778,-86.7536111,Calera (Out-Skirts),AL,disk,900,Group to see the "un-explained"in the night sky. +1973-06-15,37.3394444,-121.8938889,San Jose,CA,triangle,900,triangles made of 9 lights--no object seen +1973-06-15,26.1591667,-97.9905556,Weslaco,TX,formation,10,06/15/1973+/- lubbock lights formation, Weslaco Texas, 10 +/- seconds, white light +1974-06-15,41.7752778,-78.7725,Westline,PA,light,3600,I was sitting with my friend at Red Bank where the bridge was at the Allegheny Resoivor. We had been fishing and saw a light cross the +1974-06-15,42.1291667,-80.0852778,Erie (Countryside),PA,circle,600,80' diameter silver disc observed from distance of 130' away. Disc was motionless,quite 100' off ground. 1974 +1974-06-15,42.4972222,-82.9372222,Roseville,MI,triangle,60,I saw a large black triangular object overhead which resembled a stealth bomber +1974-06-15,35.13,-94.6583333,Shady Point,OK,disk,300,it was silent, erratic, low altitude, no lights, daytime, very fast, hovered +1974-06-15,42.6827778,-89.0186111,Janesville,WI,other,300,Mostly sunny afternoon. I was hanging upside down on playground equipment at a parochial school. I saw twinkling objects in the Northwe +1974-06-15,42.6525,-73.7566667,Albany,NY,triangle,120,Airport radar confirms what I saw. Please read my whole discription. +1974-06-15,43.6666667,-92.9744444,Austin,MN,other,7200,brilliant multicolored cloudshaped entity (a pulsing cloud of beaming color) +1974-06-15,39.2758333,-121.6588889,Live Oak,CA,triangle,300,The triangle the flew over the house. +1974-06-15,42.0866667,-71.475,Bellingham,MA,other,300,The craft was about 30 to 40 feet in lenght, and about 20 feet above the ground. The trees and brush below it were pushed down and away +1974-06-15,32.7152778,-117.1563889,San Diego (Mission Bay Walk/Santa Clara Ct. M.b.),CA,sphere,180,Enormous object to star like size in a flash +1974-06-15,30.4211111,-87.2169444,Pensacola,FL,sphere,60,a sphere shaped object hovered over us while on the beach. A police officer was heard reporting seeing something at the same time. +1974-06-15,33.1027778,-86.7536111,Calera (Outskirts Of),AL,disk,900,Group of youth on hike see the"un-explained." +1975-06-15,28.3197222,-80.6077778,Cocoa Beach,FL,triangle,420,Very large very slow moving triangle shaped craft, no sound east bound over B-line Expswy between Orlando& Cocoa Bch , June-July 1975 +1975-06-15,41.4213889,-76.0588889,Noxen,PA,cigar,30,bright silver 75-100 ft long cigar shape, dark horizontal slits hovering silent 50-75 ft alt. over Schooley's Peak Noxen, PA. +1975-06-15,43.3227778,-76.4175,Fulton,NY,disk,60,My sister, friend and I riding bicycles along a country road when we stopped at a stream. We looked up and saw a disc shaped object wh +1975-06-15,30.4505556,-91.1544444,Baton Rouge,LA,disk,5400,Object hovered over Baton Rouge a long time then shot away +1975-06-15,39.4694444,-76.8297222,Reisterstown,MD,formation,2700,Saw est. 200-300+ halo style craft flying from SW/NE in the Greenspring Valley area - 1974-1975 +1975-06-15,64.7194444,-158.1030556,Nulato,AK,light,2700,Light floating around people in village of Alaska +1975-06-15,41.0336111,-73.5786111,Riverside,CT,disk,120,Hovering saucer seen during daylight by many witnesses +1975-06-15,44.98,-93.2636111,Minneapolis,MN,triangle,300,Sighting of triangle object and caveman (yeah, I know--sounds like I am out of my mind, but there were two of us) +1975-06-15,18.3566667,-66.0077778,Trujillo Alto (Puerto Rico),PR,oval,300,I SAW A FLYING OBJECT STANDING IN THE SKY WITH AN OVAL DIAMOND SHAPE AND ORANGE GLOW COLOR +1975-06-15,42.3313889,-83.0458333,Detroit,MI,triangle,1200,Craft was dark grey/gun metal, both small & large lights on under belly no sound. Moving along the Southfied Freeway +1975-06-15,40.155,-74.8291667,Levittown,PA,light,5,1 small bright light appeared to be chased by another. +1975-06-15,34.1952778,-79.7627778,Florence,SC,rectangle,2700,first spotted thought was a helicopter with search light. As it came closer we noticed that there was no sound and was traveling extrea +1975-06-16,37.5247222,-77.5580556,Bon Air,VA,cigar,3,A large illuminated cigar shaped object glides over head in front of me - no sound at all. +1976-06-15,31.9972222,-102.0775,Midland,TX,light,15,A 'dancing' star +1976-06-15,31.8455556,-102.3672222,Odessa,TX,disk,2700,In the summer of 1975 or 76 I had just gotten off work around 2:00 am. Went home and got into bed with my wife. I was lying there liste +1976-06-15,48.7005556,-96.1813889,Greenbush,MN,circle,900,was wakened to a slowly rotating circular object that changed colors. Seen by my neighbor at the same time. +1976-06-15,36.1455556,-119.0597222,Strathmore,CA,cigar,600,A very large, dirigible shaped craft gliding slowly over the field next door. +1976-06-15,40.7988889,-81.3786111,Canton,OH,cigar,420,Cigar shaped object seen in early afternoon by several witness for several min. in summer of 1976 or 1977. +1976-06-15,42.4522222,-71.1375,Winchester,MA,circle,300,IT WAS SHOCKINGLY ENORMOUS +1976-06-15,40.9275,-73.9977778,Bergenfield,NJ,cigar,1200,This object flew through the circle of colored lights and disappeared. +1976-06-15,40.7722222,-79.53,Ford City,PA,cigar,300,UFO black cigar shape with two smaller perpendicular cigar shapes crossing center. +1976-06-15,34.2694444,-118.7805556,Simi Valley,CA,light,1200,Large lighted silhouette of a face in the sky. +1976-06-15,40.8558333,-73.2011111,Smithtown,NY,disk,30,I was walking w/ my friends; we were abreast, but I was walking backwards. I was 16 yrs old. I looked up, and about 100 feet above me w +1976-06-15,40.7811111,-73.2466667,Brentwood,NY,disk,300,I might be a match for a report in your database +1976-06-15,40.5883333,-73.6583333,Long Beach,NY,disk,900,we saw craft flying and stopping between long beach and n.y.c.. It was too fast to be man made. +1976-06-15,42.2141667,-83.15,Wyandotte,MI,triangle,600,Close up view of Triangular shaped UFO -Spacecraft communicates by repeating light signals +1976-06-15,45.2880556,-122.5344444,Beaver Creek,OR,disk,60,Craft appears from over the top of house and stops over yard as kids are looking out the window at bed time. +1976-06-15,34.2694444,-118.7805556,Simi Valley,CA,circle,10,I can witness to the actual size of a craft +1976-06-15,41.2458333,-75.8816667,Wilkes-Barre,PA,disk,2100,This was the biggest reported u.f.o. sighting as long as i can remember it was the summer of 76 in hanover and wilkes-barre. it was aro +1976-06-15,36.1538889,-95.9925,Tulsa,OK,light,45,Light far away in sky racing away from a location & back twice to again race away and not return +1976-06-15,35.9883333,-96.6008333,Drumright,OK,unknown,900,Enormous Craft over a mile in diameter, witnessed flying at night and low to the ground ...... +1976-06-15,32.7025,-103.1355556,Hobbs,NM,flash,1,Large Flash of Light observed from an FAA control tower in New Mexico. +1977-06-15,36.1155556,-97.0580556,Stillwater (West Of),OK,light,120,Three of us saw a high flying jet/airplane begin zig-zagging across the sky for about 30 seconds. +1977-06-15,37.6775,-113.0611111,Cedar City (East Of),UT,triangle,15,It was long getting larger from front to back, blackᅢ feet up and made no noise. +1977-06-15,42.0883333,-87.9805556,Arlington Heights,IL,disk,1200,My Father, sister and my self saw a disc shaped craft, it looked like a classic "Bell" shaped saucer over Arlington Hts and rolling Mea +1977-06-15,41.1383333,-81.8638889,Medina,OH,disk,30,it looked like the mini-sub from voyage to the bottom of the sea,flew above us about 50 ft in the air +1977-06-15,38.5816667,-121.4933333,Sacramento,CA,disk,300,at least 300 foot dia. 50 foot in height . Light from bottom center. light from square ports 10 ft. by 10 ft. +1977-06-15,35.6008333,-82.5541667,Asheville,NC,unknown,600,Big As House, Rows of Brightly Lit Windows, Silent +1977-06-15,38.8966667,-121.0758333,Auburn,CA,triangle,3,UFO momentaily flies 50 to 60 feet above street, seemingly out of control, then flies off. +1977-06-15,39.1433333,-77.2016667,Gaithersburg,MD,oval,900,Summer of 1977 I saw a large oval black object hovering just over the tree tops going very slowly. +1977-06-15,43.1,-70.8341667,Newington,NH,disk,600,Circular, silent craft with revolving white lights on bottom. +1977-06-15,44.6369444,-124.0522222,Newport,OR,light,600,Zig-Zagging light similar to star moving around other stars changing intensity as if looping in/out light range +1977-06-15,32.7152778,-117.1563889,San Diego,CA,sphere,5,1977, Intense blue light over San Diego. +1977-06-15,42.1930556,-73.0922222,Otis (Reservoir),MA,disk,1200,60-80 ft in diameter, disc shaped, flat on top, red and green lights underneath. +1977-06-15,39.0483333,-95.6777778,Topeka,KS,light,15,it was changing colors, like most of the rainbow colors, not flashing just changing but the intensity ... same. +1977-06-15,45.8152778,-122.7413889,Ridgefield,WA,circle,30,when i was 8 or 9 i saw lights in the sky above my head like tiny christmass lights +1978-06-15,45.1969444,-96.0194444,Appleton,MN,light,3600,I woke up and saw it hovering noiseless over the neighbors horses and the highway. I awoke the whole family +1978-06-15,42.3583333,-71.0602778,Boston,MA,sphere,300,It was gold and round about the size of a golfball. +1978-06-15,41.0505556,-123.6730556,Hoopa,CA,oval,2700,Twinkling lights, oval shaped craft, no sound, hovered for 45 min. Around midnight, 1978 +1978-06-15,33.7877778,-117.8522222,Orange,CA,circle,10,UFO disappears behind trees +1978-06-15,40.7258333,-73.5147222,Levittown,NY,disk,60,I saw this disc in broad daylight clearly! +1978-06-15,37.4308333,-79.1233333,Madison Heights,VA,circle,120,Circular lighted object sighted +1978-06-15,42.6333333,-71.3166667,Lowell,MA,cigar,120,In summer of 1978 @ age 7,I looked out my third floor window and saw a steadily and slowly moving hot-dog shaped object,red-orange sun- +1978-06-15,44.9022222,-85.0608333,Mancelona,MI,disk,600,The craft hummed loudly, was saucer shaped and had lights that were rotating around the edge. +1978-06-15,30.4505556,-91.1544444,Baton Rouge,LA,oval,300,HUGE oval craft hovering over the treetops follows our car. +1978-06-15,35.0455556,-85.3097222,Chattanooga,TN,disk,30,On apartment deck. Saucer went overhead at 150 feet high. No lights, no sound. Diameter 150-200 feet. Black in color. Saw rivets where +1978-06-15,44.9022222,-85.0608333,Mancelona,MI,disk,600,We thought our foster daughter was kidding us, until we saw the metallic saucer shaped object humming loudly over the Michigan farmland +1978-06-15,48.2413889,-122.3694444,Stanwood,WA,other,5,Low level, high speed flyby +1978-06-15,44.9022222,-85.0608333,Mancelona,MI,disk,1200,On a warm summer night, we saw a saucer shaped UFO that hummed very loudly. +1978-06-15,41.8072222,-77.0777778,Mansfield,PA,unknown,300,Enormous dark craft very slowly and quietly crossed sky overhead from east to west +1978-06-15,47.6063889,-122.3308333,Seattle,WA,unknown,30,"Starwars" dog-fight in the night sky. +1978-06-15,40.8283333,-78.4352778,Madera,PA,fireball,600,Orange/yellow sphere of light without sound and traveled at intense accelleration with intelligence +1978-06-16,41.3263889,-76.9458333,Warrensville,PA,triangle,300,my friend and I were shooting pool at his home early in the morning, I belive it was a friday or saterday morning. when we heared a lo +1979-06-15,41.3116667,-81.5683333,Sagamore Hills,OH,unknown,120,In Ohio around 1979 I had and encounter with 3 aliens. 500 Lights On Object0: Yes +1979-06-15,34.0522222,-118.2427778,Los Angeles (Over I-10, On Most Rural Bayou Stretch),CA,unknown,120,Metallic UFO seen hovering silently, directly over eastbound lanes.Light underneath shined UP onto craft-was being moved by humandoid s +1979-06-15,43.4697222,-91.5108333,Dorchester,IA,other,300,Upright Y shaped yellow and black flying objects. +1979-06-15,30.4505556,-91.1544444,Baton Rouge,LA,disk,180,Several witness Silver Disc over Baton Rouge +1979-06-15,37.7975,-121.215,Manteca,CA,disk,3,blue belly: ship with blue light outlineing the bottom of saucer, white ball of light on each end. top: one white ball of light on top +1979-06-15,40.9319444,-90.9469444,Oquawka,IL,rectangle,600,lot of lights rectagular in shape and a sound ive never herd before +1979-06-15,30.4505556,-91.1544444,Baton Rouge,LA,disk,30,metallic disk emerged from one cloud and disappeared behind another. +1979-06-15,37.3394444,-121.8938889,San Jose,CA,disk,2400,1979 ufo and entities sighting up close +1979-06-15,36.4097222,-84.4905556,Huntsville,TN,oval,20,I saw a bright oval object at night in the sky it was big ,fast,and gasious yellow,orange, red glowing. +1979-06-15,35.8422222,-90.7041667,Jonesboro,AR,unknown,240,stars start mooving from dead stop +1980-06-15,45.8661111,-122.405,Yacolt,WA,disk,120,Small disc shaped object dropped into view less than 40 feet away from observers. +1980-06-15,41.1813889,-91.1852778,Wapello,IA,circle,600,Craft sucking water from pond. +1980-06-15,41.6661111,-81.3397222,Mentor,OH,disk,300,ufo in the summer of 1980 in mentor ,ohio no sound ,about the size of a football feild then left fast on a angle up then gone +1980-06-15,38.9516667,-92.3338889,Columbia (Central--Over Center Of Campus),MO,light,300,Summer of 80 or 81--just pre-dusk. Dark amber light with indistinct edges cruises due east over center of U campus. "Closes in on sel +1980-06-15,39.0061111,-77.4288889,Sterling,VA,disk,8,Glowing UFO over Sterling, VA +1980-06-15,36.1658333,-86.7844444,Nashville,TN,triangle,2400,A large dumbbell shaped ufo appeared, and then it seemed to be engaged (as if in violation of something) by three smaller triangle ufos +1980-06-15,37.775,-122.4183333,San Francisco,CA,disk,120,Two Unidentified Flying Objects. +1980-06-15,31.7586111,-106.4863889,El Paso,TX,light,300,Saw light travelling across skyI saw a white light at very high altitude travelling across the sky.I thought it was a satellite unt +1980-06-16,36.5619444,-96.1613889,Barnsdall,OK,other,3,football shaped white object traveling south to north east of Barnsdall, Ok . Probably summer 1980 +1981-06-15,39.3544444,-84.1272222,Morrow,OH,light,300,UFO sighting 1981 near Lebanon Ohio, large hovering object with pattern of red light-observed for 5mins +1981-06-15,40.4433333,-83.805,Huntsville,OH,unknown,90,I was driving west on rt.33,i noticed there was a lot of stars out that night and very clear.When i got to the exit i wanted to go home +1981-06-15,44.9666667,-92.3741667,Baldwin,WI,circle,120,I saw 3 cloud-like circles floating silently just above the treetops.Heading S-N. +1981-06-15,38.7038889,-107.6083333,Crawford,CO,fireball,60,fire ball +1981-06-15,39.1233333,-82.5330556,Wellston,OH,triangle,120,large tiangular craft hovering over the trees, dim light, then going very slowly towards the east. i was amazed!!! +1981-06-15,40.1786111,-122.2347222,Red Bluff,CA,unknown,600,unknown lights flying across sky +1981-06-15,46.9755556,-123.8144444,Aberdeen,WA,cylinder,3600,Cylindrical craft crashes near Aberdeen WA +1981-06-15,36.175,-115.1363889,Las Vegas (Desert Outside Of),NV,unknown,5400,1981 strange gyrating lights in desert outside Las vegas +1981-06-15,47.6063889,-122.3308333,Seattle (Downtown Area),WA,rectangle,180,Dark rectangle moved slowly across sky with swaying motion, possible telepathy with 2nd observer +1981-06-15,38.4194444,-83.8255556,Elizaville,KY,other,60,I was speeding through the town at about 70 MPH, the speed zone was 35 MPH. I looked in the rear view and saw a police car behind my c +1982-06-15,32.3263889,-109.4863889,Bowie,AZ,disk,300,Craft observed while driving through the Az desert,missing time. +1982-06-15,47.6063889,-122.3308333,Seattle,WA,triangle,600,Triangular object in the sky with movement in the blink of an eye. +1982-06-15,35.3847222,-77.9930556,Goldsboro,NC,disk,300,Driving home at night, saw lights that I thought were landing lights of an airplane, stopped my car, lights didn't move, huge object. +1982-06-15,58.301944399999996,-134.4197222,Juneau,AK,sphere,900,Deep black sphere about 1 meter diameter emits paralyzing orange beam +1982-06-15,38.8916667,-121.2919444,Lincoln (Approx 3 Miles East Of, On Hwy 193),CA,other,2,Silver,heart shaped craft flew left to right in front of my car. +1982-06-15,38.9822222,-94.6705556,Overland Park,KS,cigar,900,Followed object in my car for 13 blocks it stopped hung in air for 3min. then went opposite direction and was gone. +1982-06-15,32.5325,-93.5038889,Haughton,LA,disk,10,my sister and i saw a silver disk @ 90 ft long with a red vert stabilizer fly silently over our house tree top high, no sound & slow! +1982-06-15,40.7141667,-74.0063889,New York City (Staten Island),NY,cigar,300,Three UFOs disguised as "Clouds" +1982-06-15,31.585,-106.2722222,San Elizario,TX,disk,5,Recalled ufo sighting. +1982-06-15,42.0694444,-72.6152778,Agawam,MA,sphere,120,ufo reported by channell 22,in northhampton massachusettes +1982-06-15,42.6627778,-82.8425,Chesterfield,MI,other,300,I cant say what shape It was.It was to big . 500 Lights On Object0: Yes +1982-06-15,41.6361111,-70.9347222,New Bedford,MA,other,600,strange craft, erratic movement, no blinking lights or sound +1982-06-15,45.7111111,-91.8063889,Sarona,WI,circle,600,Large glowing, pulsating pink ball of light, hovered above the road, flew up, then made a series of loops, then disappeared out of sigh +1982-06-15,34.435,-77.8880556,Rocky Point,NC,triangle,3600,Triangle over Rocky Point, NC +1983-06-15,38.8055556,-123.0161111,Cloverdale,CA,egg,60,Luminous egg see over The Geysers east of Cloverdale, CA +1983-06-15,41.9733333,-74.2125,Shokan,NY,light,60,Bright starlike object disappears into space. +1983-06-15,42.3255556,-83.3311111,Garden City,MI,disk,240,Please dont think I'm crazy. The year was approx. 1983 or 1984.I was about 8 years old. I was living in Garden City Michigan with m +1983-06-15,35.6677778,-101.3969444,Borger,TX,other,60,300-400 foot boomerang-shaped object moving at 200 mph ?, one-half mile distant at about 2ꯠ ft altitude. Clear skies, daytime. +1983-06-15,48.2766667,-116.5522222,Sandpoint,ID,disk,90,It was early evening in the summer. I can remember hearing music coming from outside the house. My brother and I ran outside where my m +1983-06-15,35.2219444,-101.8308333,Amarillo,TX,triangle,600,V shaped craft large lights silent huge and took ten minutes to pass covered sky. +1983-06-15,33.4483333,-112.0733333,Phoenix,AZ,sphere,300,Sighting & Possible abduction +1983-06-15,39.5297222,-119.8127778,Reno,NV,light,300,square green flourscent light projecting a control beam of light by speed and depth from the sky to ground +1983-06-15,30.3319444,-81.6558333,Jacksonville,FL,triangle,180,Saw a triangle shaped object traverse sky on very clear night +1983-06-15,44.8422222,-92.9911111,St. Paul Park,MN,triangle,60,black triangle flew silently overhead at tree top level +1983-06-15,44.5625,-92.5336111,Red Wing,MN,triangle,900,Triangular UFO in EARLY 1980's... +1983-06-16,40.8758333,-81.4025,North Canton,OH,changing,600,help me discover it +1984-06-15,41.6888889,-98.3630556,Spalding,NE,light,3600,Observed bright light at close range, amasing movement, then hovered and my vehicle quit and lost all electrical system. +1984-06-15,40.3819444,-80.3930556,Burgettstown,PA,fireball,15,I was watching the tonight show and Dave Letterman was just coming on. I was laying on the couch, and out our front window I saw someth +1984-06-15,39.7155556,-82.9530556,Ashville,OH,disk,480,The sighting happened near Ashville Ohio in mann's trailer park.It was hot out ,the moon was bright and in the summer time June or July +1984-06-15,44.9786111,-87.1855556,Jacksonport,WI,disk,300,One large round disc. bright golden gleaming GORGEOUS OBJECT about 50 to 100 ft in diameter. It moved so rapidly. completely silent and +1984-06-15,48.1302778,-120.0025,Methow,WA,oval,900,UFOs refueling. +1984-06-15,37.0058333,-80.7475,Draper,VA,cone,60,During the summer of 1984 as I was going to work I was getting on the interstate, I-81north . As I was merging on to 81 I looked over m +1984-06-15,35.6008333,-82.5541667,Asheville,NC,circle,30,it must have been 30 or 40 foot around and it had many many lights on it +1984-06-15,47.9033333,-91.8669444,Ely,MN,diamond,3600,close encounter of the 5th kind (interaction with being from ufo) +1984-06-15,40.7583333,-82.5155556,Mansfield,OH,formation,5,Electric storm, 5 red dots in a row, taking off in an arcing shape outside object first then inside objects. +1984-06-15,39.015,-94.1983333,Grain Valley,MO,sphere,900,Spinning, Superfast, Sphere +1985-06-15,60.1041667,-149.4422222,Seward,AK,disk,5,While traveling from Anchorage to Seward, Alaska, a "typical" flying saucer whizzed directly over my Chevy Blazer coming from the other +1985-06-15,31.7586111,-106.4863889,El Paso,TX,disk,60,Slow moving metallic saucer during firing excercises circa 85 +1985-06-15,35.7163889,-77.265,Stokes,NC,disk,300,I think I was about 9yrs old, and my brother 5yrs old. We lived on farming land. We were out playing at the edge of the field one day w +1985-06-15,37.9513889,-91.7711111,Rolla,MO,circle,60,I went outside. As soon as I stepped ouside through the front door. I looked up and seen 3 different colored circles in a triangle form +1985-06-15,32.6833333,-84.7383333,Waverly Hall,GA,disk,120,Several witnesses, one UFO +1985-06-15,32.9855556,-80.11,Ladson,SC,circle,300,football-sized round.red and green lightssequential in movement.150 ft above trees.moving about 5 mph. heading for Chasn. AFB. +1985-06-15,40.7141667,-74.0063889,New York City (Brooklyn),NY,oval,60,Bright light over Sun Set Park, viewed from Park Slope on Fifth Avenue, Brooklyn 500 Lights On Object0: Yes +1985-06-15,37.6922222,-97.3372222,Wichita,KS,circle,1500,Massive fleet of amber green spheres flying in odd formation over Wichita, Kansas. +1985-06-16,36.8241667,-89.7808333,Grayridge (Outside Of; 1/2 Mile S.),MO,changing,60,June 5, 1985 Two men watch a saucer coming toward them in the short distance . +1986-06-15,41.5933333,-87.3463889,Gary,IN,other,30,I Saw An Alien Face To Face +1986-06-15,44.0288889,-88.1627778,Chilton,WI,triangle,1200,It was exactly the shape of a boomerang with small towers at each end and one larger in the middle. It flew very slowly and rotated. +1986-06-15,41.2975,-82.6055556,Milan,OH,disk,180,Perfect formation of discs shoots off to West +1986-06-15,34.4969444,-82.2872222,Princeton,SC,other,900,CLOSE 100FT UFO VISIT +1986-06-15,34.0633333,-117.65,Ontario,CA,other,1200,I seen a real off the 10 freeway in ontario +1986-06-15,41.5933333,-87.3463889,Gary,IN,unknown,120,A lime green light throughout the whole house and the air stone surged with power throwing water 2 feet in the air. +1987-06-15,41.7691667,-72.965,Burlington,CT,fireball,7200,I remember it being in June of 1987 but the actual day is hard to remember.There is a stretch of road that runs through Burlington +1988-06-15,34.0522222,-118.2427778,Los Angeles,CA,diamond,1200,Seeing this object so clearly and not able to describe it as I would like to convey what we were seeing is difficult. +1988-06-15,33.0786111,-116.6011111,Julian,CA,other,120,moved from outer space into lower atmosphere at rapid speed... +1988-06-15,40.8711111,-74.7344444,Budd Lake,NJ,triangle,3600,huge object over fileds Near Budd Lake,NJ +1988-06-16,41.3077778,-88.1466667,Wilmington (Just Outside Of),IL,unknown,120,i heard a strange throbbing humming sound that made me freeze until it passed. +1989-06-15,38.8444444,-82.1372222,Point Pleasant,WV,unknown,600,Strange object circles my backyard! +1989-06-15,40.2969444,-111.6938889,Orem,UT,formation,1200,12 BLUE FORMATIONS APPEAR +1989-06-15,35.3733333,-119.0177778,Bakersfield,CA,disk,180,ring of lights +1989-06-15,42.0833333,-71.0188889,Brockton,MA,disk,300,bright baloon like ufo with light circulating under it in brockton Mass. in 1989 . +1989-06-15,30.4211111,-87.2169444,Pensacola,FL,unknown,900,Orb of light, thought it was the north star, until it jetted up and away so fast that it left a streak of light behind it +1989-06-15,45.9963889,-68.4466667,Patten,ME,triangle,900,Patten Maine 1989 or 1990, sounded like a strong thunder storme on a clear night."moving towards Baxster State or Allegash" +1989-06-16,39.0997222,-94.5783333,Kansas City,MO,changing,20,Tumbling, white object which appeared to be disintegrating. +1990-06-15,44.0463889,-123.0208333,Springfield,OR,oval,1200,orange ballon dripping sparklers +1990-06-15,40.7536111,-86.0688889,Peru,IN,circle,300,CIRCLE OF APPROXIMATELY TEN LIGHTS SIGHTED HOVERING OVER PERU, INDIANA. +1990-06-15,40.2013889,-77.1891667,Carlisle (On Interstate 76),PA,other,300,The ship was beyond the abilities of our race and time +1990-06-15,31.7586111,-106.4863889,El Paso,TX,triangle,1800,Triangles over the Golf Course +1990-06-15,45.0408333,-93.2627778,Columbia Heights,MN,unknown,120,Something floated by me, no sound, no wind! +1990-06-16,34.7047222,-85.2819444,Lafayette,GA,circle,300,Three circle shape things? in the shape of a rianle then they would circle and disappear +1991-06-15,33.8080556,-84.1702778,Stone Mountain,GA,disk,60,Disk, super fast, very low, completely silent. +1991-06-15,35.4697222,-104.5272222,Trementina,NM,cylinder,300,Saw hoverering cylinderical object in the air withkout wings. Saw one small light at the top. +1991-06-15,33.6602778,-117.9983333,Huntington Beach,CA,circle,1200,Round all silver circle with black dots on inner edges with two white lights near it +1991-06-15,29.6513889,-82.325,Gainesville,FL,other,180,Nighttime sighting. UFO was on the ground. Occupant sighted. Did not stay long. +1991-06-15,36.7416667,-88.6366667,Mayfield,KY,triangle,15,Triangle Shaped object, Glowing red outline. +1991-06-15,43.1116667,-88.4991667,Oconomowoc (Heading Towards),WI,light,300,Bright object seen darting in the night sky. +1992-06-15,33.3705556,-105.2258333,Tinnie,NM,formation,180,Lights flying in the formation of the shape of a small aircraft, split into 3-4 seperate and different colored orbs and flew off fast! +1992-06-15,30.3319444,-81.6558333,Jacksonville,FL,formation,180,An very similar sighting to the one reported over Phoenix this year happened over Jacksonville in 1992. +1992-06-15,32.9102778,-96.1352778,Quinlan,TX,cigar,600,I stopped and got out of my truck to look at it and only seconds later the light on the bottom of the UFO, was turned off. y truck +1992-06-15,39.255,-90.0630556,Chesterfield,IL,triangle,14400,standing directly under craft for period of time, lost time, 1hr trip took 4hr's. +1992-06-15,44.8613889,-92.6236111,River Falls,WI,triangle,180,I and my brother were sitting on swings in aschool playground when a trianguler shaped object appiered. +1992-06-15,30.0686111,-81.8605556,Middleburg,FL,light,1500,Around the light itself, a cloud like bubble formed that was shaped like an egg... +1992-06-15,40.8066667,-74.1858333,Bloomfield,NJ,circle,600,Moving Yellow Lights awaken me on third floor +1992-06-15,35.2619444,-81.1875,Gastonia,NC,sphere,300,Bright Orb +1992-06-15,36.175,-115.1363889,Las Vegas,NV,light,30,Green light moving north at speed through east side of las vegas. +1992-06-15,37.3844444,-79.7313889,Montvale,VA,sphere,180,amber,orange ufo spotted in bedford county,virginia near "closed" airforce base. +1992-06-15,38.2211111,-90.3788889,Crystal City,MO,light,1,light hovered at low altutitude area close to mo/il border and shot upward at high speed. +1993-06-15,41.6005556,-93.6088889,Des Moines,IA,rectangle,300,My diesel engine saved me? +1993-06-15,39.0838889,-77.1530556,Rockville,MD,teardrop,180,My friend and I were in the third grade and we were sleeping in my back yard when the craft flew over down and to the right of the circ +1993-06-15,40.4483333,-122.2966667,Anderson,CA,other,5,All I saw was a blue-green light flash from one part of the sky to the other in a north/south direction. this flash started in the atmo +1993-06-15,47.2483333,-122.3116667,Milton,WA,circle,300,Saw circular object with red green and blue lights slowly floating about hundred ft above trees from east to west until it passed the t +1993-06-15,37.7397222,-121.4241667,Tracy,CA,light,180,red ball ufo following small plane in tracy, california in 1993. +1993-06-15,42.9633333,-85.6680556,Grand Rapids,MI,cigar,30,orangish-yellowish slightly glowing cigar shaped floating object cruising turtle slow in the clear starlit northern sky over kent co. +1993-06-15,35.1494444,-90.0488889,Memphis,TN,fireball,2,Blue-ish fireball speeds past the University of Memphis in winter of 1993-1994. +1993-06-15,47.6816667,-122.2075,Kirkland,WA,circle,60,Blue sphere moving slowly at low altitude, stopping twice to hover over road and then lake, vanishing with incredible speed +1993-06-15,38.8363,-92.0043,Williamsburg,MO,triangle,2700,Bright flash of light lit up our entire yard +1993-06-15,36.9786111,-76.4283333,Newport News,VA,circle,300,Approacing with the ultimate in techonoligal stealth , liken unto a Chamelon! +1993-06-15,39.7155556,-82.9530556,Ashville (2 Miles South Of),OH,light,20,Traveling "Stars" +1993-06-15,35.3338889,-81.8652778,Forest City,NC,other,600,I encountered an object around June or July of 1993. My family and I had just drove up to my house after returning from the store aroun +1993-06-15,32.5966667,-85.2386111,Salem,AL,triangle,3600,Triangular craft whit no lights or exhaust flying way too slow at less than 100 feet off the ground +1993-06-15,41.3358333,-71.9063889,Stonington,CT,light,10,Orange and white light spheres in the woods +1993-06-15,33.6197222,-86.6088889,Trussville,AL,light,60,UFO, resembling a star, flying across Trussville, AL in approximately 1993. +1993-06-15,39.7527778,-79.0811111,Salisbury,PA,triangle,240,Massive Black Triangle over Salisbury +1994-06-15,36.3008333,-119.7819444,Lemoore,CA,triangle,300,I saw a large, triangluar shaped object with off-white lights at each corner slowing moving about 3-500ft high in the sky. +1994-06-15,26.9338889,-80.0944444,Jupiter,FL,light,28800,TIME LOSS extremly fast light traveling north +1994-06-15,30.4380556,-84.2808333,Tallahassee,FL,egg,20,I saw an egg like object out of the side of my eye while driving, but it changed speed and shot away with no transition time. +1994-06-15,29.2105556,-81.0230556,Daytona Beach,FL,other,300,I saw it coming home one night the same day of a Shuttle launch in Daytona Beach,Fl. +1994-06-15,41.9566667,-86.2766667,Berrien Center,MI,triangle,180,I saw a huge, silent ,black, triangular shaped object float over the treetops of my home +1994-06-15,35.2705556,-86.1280556,Estill Springs,TN,light,420,Close encounter with round white light +1994-06-15,40.4811111,-82.5408333,Fredericktown (2205twp Rd180),OH,sphere,600,IDENTIFIED SPACESHIP FACT!!! +1994-06-15,39.1830556,-76.6405556,Ferndale,MD,cylinder,24,A well lighted object seen from my window... +1994-06-15,32.3666667,-86.3,Montgomery,AL,triangle,600,A huge, very low, black triangle traveling at a very low speed and making a low hissing sound traveled directly over my home. +1994-06-15,38.6272222,-90.1977778,St. Louis,MO,triangle,60,Hi. Top of the day too you. I have been keeping these stories to myself for a long time.I think the time is right to tell someone.I +1994-06-15,46.0227778,-114.1772222,Darby,MT,unknown,300,Stars moving in a straight line. +1994-06-15,43.6588889,-123.3175,Drain,OR,light,300,Large circle of light in the sky flashes brightly, then shrinks to star size and zig-zaggs away. +1994-06-15,47.3225,-122.3113889,Federal Way,WA,unknown,20,RE:Occurred : 6/15/1994 23:00 (Entered as : 1994 23:00) Reported: 7/13/2003 12:06:06 AM 00:06 Posted: 7/16/2003 Location: Drain, OR Sha +1994-06-15,41.14,-104.8197222,Cheyenne,WY,light,30,Star like object over F. E. Warren AFB, WY +1995-06-15,33.8536111,-118.1330556,Lakewood,CA,disk,15,Two red softly glowing round objects as your guest described on coast to coast 15 sec apart in 1995 +1995-06-15,41.1669444,-73.2052778,Bridgeport,CT,circle,1800,How could noone else have saw this. It was bigger than the moon. It was Orangey yellow. Maybee cause it was 2am. +1995-06-15,29.7975,-93.325,Cameron,LA,unknown,60,Object at high altitude and moving extremely fast makes instant course reversal without turning. +1995-06-15,37.1305556,-113.5075,Washington,UT,unknown,180,A red glow lighting up low lying clouds. After a few moments the glow got more clear and about a dozen red lights in no noticable arran +1995-06-15,33.4705556,-82.5047222,Thomson,GA,oval,15,Daytime metallic silver oval object in McDuffie County (Thomson) GA. +1995-06-15,42.9633333,-85.6680556,Grand Rapids,MI,disk,45,I saw bright object that huvered and then flew off with very high speed! +1995-06-15,33.7877778,-117.8522222,Orange,CA,oval,45,Possible sighting of Military Camouflage Technology +1995-06-15,33.1255556,-115.5133333,Calipatria,CA,circle,1200,orange glowing orb-like lights seen by myself and other prisoners at Calipatria State Prison. +1995-06-15,35.0844444,-106.6505556,Albuquerque,NM,disk,30,Three disk shaped objects appeared to the north. Objects were blue in color, nearly the color of the background sky. They were about ha +1995-06-15,34.4263889,-117.3,Hesperia,CA,light,60,zero to very fast moving star and meteor glows the night green. Crash & burn at Vandenburg ྛ +1995-06-15,20.2338889,-155.8019444,Kapaau,HI,teardrop,20,Brilliant teardrop shaped blue-green light +1995-06-15,33.7669444,-118.1883333,Long Beach,CA,chevron,60,Chevron/triangular orbs of light over Long Beach, CA. +1995-06-15,33.5386111,-112.1852778,Glendale,AZ,fireball,2,Author's Summary Line: "on orange ball of light appears over the mountains projects directly over head.. disappears"It was approx +1995-06-15,40.0361111,-75.5141667,Malvern,PA,triangle,1200,Triangular shaped with "mother of pearl" swirling light...six green square lights all on bottom +1995-06-15,25.7738889,-80.1938889,Miami,FL,light,900,Arizona lights...over Miami? +1995-06-15,38.6272222,-90.1977778,St. Louis,MO,triangle,60,Hi. Top of the day too you. I have been keeping these stories to myself for a long time.I think the time is right to tell someone. +1995-06-15,47.0044444,-122.5386111,Roy (Near),WA,sphere,8,A silent small light moved from horizon to horizon really fast, in about 10 seconds time +1996-06-15,35.9130556,-79.0561111,Chapel Hill,NC,circle,300,Large disc shaped UFO just over our house, no sound. 3 red lights in a triangle underneath. It was huge. +1996-06-15,41.6561111,-80.4241667,Linesville,PA,light,3600,witnessed flashes of light like explosions along the West,East, and SouthWestern horizons +1996-06-15,34.2541667,-110.0291667,Show Low,AZ,oval,600,Bright lights and no sound +1996-06-15,47.8108333,-122.3761111,Edmonds,WA,formation,900,Multiple circular UFO sighting in the sky above Edmonds, WA witnessed by police officer and police explorers. +1996-06-15,47.4936111,-92.7777778,Buhl,MN,rectangle,300,Saw flying rectangle that reflected sunrise colors +1996-06-15,34.1866667,-118.4480556,Van Nuys,CA,other,120,3 Christmas Tree Cookie Cutters in Triangle Formation +1996-06-15,39.5094444,-76.1644444,Aberdeen,MD,disk,300,6 spaceshuttle technology schemed saucer shaped vehicles seen over Aberdeen,Md in summer of ྜ. +1996-06-15,45.8152778,-122.7413889,Ridgefield,WA,oval,1200,extraterrestrial recovered by mother ship +1996-06-15,45.5236111,-122.675,Portland,OR,chevron,1500,06/15/96 15:00 Portland OR Chevron 25 minutes Mid day not moving very high almost downtown flat black chevron +1996-06-15,40.8611111,-79.8955556,Butler,PA,circle,600,huge round black object with huge lights spotted in sky over Butler Co. PA +1996-06-15,40.1536111,-88.9644444,Clinton (Us Highway 51),IL,circle,45,Daylight causing blue orb in Illinois +1996-06-15,33.6188889,-117.9280556,Newport Beach,CA,disk,30,Unidentified Disc in plain sight, 1000 ft away, for 30 seconds +1996-06-15,40.5575,-74.285,Woodbridge,NJ,light,3600,two stars appear to be moving in figure eight formations. +1996-06-15,42.1938889,-71.7605556,Millbury,MA,light,60,We had just finished playing hide and go seek, my neighbors and I. We were sitting on the driveway in the dark. We looked up to see a +1996-06-15,47.6777778,-116.7794444,Coeur D'alene,ID,formation,180,3 flying objects that trailed one after the other and flew in loose curves and heading roughly south. +1996-06-15,35.0525,-78.8786111,Fayetteville,NC,other,2,Incredibly fast green light traveling North to South, on several occasions +1996-06-15,38.1302778,-121.2713889,Lodi,CA,triangle,10,UFO (or something) seen in Lodi, CA (1996) +1996-06-15,38.1916667,-120.8280556,Valley Springs,CA,triangle,15,Triangular shape blocking out stars in front of the Milky Way. +1996-06-15,44.8113889,-91.4983333,Eau Claire,WI,rectangle,8,2 boys see rectangle shaped object w/4 orange/yelow lights fly silently over head. no blinking beacon lights, no sound, only a few hund +1997-06-15,28.6608333,-81.3658333,Altamonte Springs,FL,light,60,Fast moving star like light coming at us. +1997-06-15,41.1577778,-80.0888889,Grove City,PA,triangle,900,V-shaped object hovering over local hospital Several other local sightings. +1997-06-15,28.5380556,-81.3794444,Orlando,FL,disk,1500,A object appears over tree top one night. +1997-06-15,40.6936111,-89.5888889,Peoria,IL,disk,180,Two people see UFO hovering at a distance of 10 feet. +1997-06-15,32.3122222,-106.7777778,Las Cruces,NM,fireball,300,Circle shaped red fire ball in Las Cruces, NM +1997-06-15,35.0716667,-81.65,Gaffney,SC,cylinder,120,I was standimg in my back yeard i something shiny cought the coner when i look there was a bright silver cylinder and it was siting sta +1997-06-15,35.6527778,-97.4777778,Edmond,OK,disk,180,daylight sighting. saucer. up close and personal +1997-06-15,42.2458333,-84.4013889,Jackson,MI,sphere,25,Silver ball in Jackson MI +1997-06-15,35.7452778,-89.5297222,Ripley,TN,unknown,300,Invisible but never the less still there. +1997-06-15,40.5677778,-84.1936111,Wapakoneta,OH,egg,60,Egg Shaped Object in broad daylight. +1997-06-15,44.8547222,-93.4705556,Eden Prairie,MN,circle,2700,White balls in the Sky. +1997-06-15,31.4438889,-97.4088889,Mcgregor,TX,sphere,60,Small mettal ball seen over ranch. +1997-06-15,40.7608333,-111.8902778,Salt Lake City,UT,other,600,I was taking a walk near an elementary school and decided to sit down. It was the evening, but the sky was still bright. I was looking +1997-06-15,41.0813889,-81.5191667,Akron,OH,disk,7200,Me and my frend saw a bright light. +1997-06-15,39.9611111,-82.9988889,Columbus,OH,triangle,45,I saw a dark, triangular craft gliding across the sky in Columbus, Ohio. +1997-06-15,44.5211111,-68.9983333,Swanville,ME,light,300,It was a bunch of flashing lights almost like a strobe light +1997-06-15,45.1608333,-93.2347222,Blaine,MN,unknown,20,My name is Angie and the other two people with me at the time were my sister and her friend. We were driving back from a town called Ed +1997-06-15,40.8175,-73.0005556,Medford,NY,sphere,60,A sphere 15-20 feet wide chasing me and blinking on and off then dissapearing. 500 Lights On Object0: Yes +1997-06-15,47.6063889,-122.3308333,Seattle,WA,triangle,60,Saw triangle craft, news report says space junk, not from my angle. +1997-06-15,45.0025,-101.2330556,Eagle Butte,SD,light,2700,lighted crafts seem to take notice of us +1997-06-15,38.3,-83.1741667,Olive Hill,KY,light,10,Saw what I thought was a star, until it moved then disappeared. +1997-06-15,30.2272222,-81.3802778,Ponte Vedra,FL,fireball,5,Fast moving yellow cigar shaped fireball over heavily wooded area. +1997-06-15,33.6694444,-117.8222222,Irvine,CA,changing,10,Craft (looked exactly like Gulf Breeze pictures) flew along nearby hillside, close enough to be seen clearly. Completly silent. +1997-06-15,32.77,-108.2797222,Silver City,NM,unknown,30,the object had no nav. light and moved about in a strange pattern +1998-06-15,36.3208333,-118.0255556,Cartago,CA,sphere,300,huge white light alongside my vehicle on the highway late at night... +1998-06-15,43.3016667,-123.1,Glide,OR,sphere,30,A blue round light right in front of us +1998-06-15,34.1069444,-117.9344444,Irwindale,CA,light,60,Huge Bright Illuminating 'Ball Like' Object , underside has three green triangular lights, no sound. +1998-06-15,37.9577778,-121.2897222,Stockton (East Of),CA,fireball,120,explosion in the sky +1998-06-15,27.5155556,-97.8558333,Kingsville,TX,light,60,Star like object that appeared moving slowly due south then increased speed. Did not change direction. +1998-06-15,39.7091667,-84.0633333,Beavercreek,OH,other,300,I thought it was ORINS BELT, it was something i thought i would never see in my lifetime +1998-06-15,44.7341667,-85.1758333,Kalkaska,MI,cigar,300,Daylight sighting of object passing while I was making my rounds at gas processing plant. +1998-06-15,38.9458333,-105.2888889,Florissant,CO,circle,60,THE OBJECT MADE A HUMMING OR DRONING SOUND.IT CAME FROM WEST TO EAST ABOUT 100 FT. ABOVE THE GROUND MOVING AT ABOUT 100MPH. OR LESS. IT +1998-06-15,42.9005556,-78.6705556,Lancaster,NY,circle,60,On a partly cloudy day, a shiney, silver ball hovered and then shot straight across the sky moving south at great speed. +1998-06-15,41.0647222,-86.2158333,Rochester,IN,light,30,My friend and I saw two bright lights that moved at a incredible rate. 2 jets followed the lights and they disappeared. +1998-06-15,40.1044444,-74.9516667,Bensalem,PA,disk,900,My first and only UFO sighting in Nottingham Village on Delancy Drive +1998-06-15,37.6577778,-85.5911111,New Haven,KY,triangle,3600,It was a triangular shaped vessel that gave off a light blue light. It was night so I couldn't tell much more. +1998-06-15,30.6741667,-96.3697222,Bryan,TX,light,60,observed light above normal airways moving at a high rate of speed seemed to be swerving. watched it until could not see anymore. From +1998-06-15,38.6105556,-122.8680556,Healdsburg (Due S Of),CA,fireball,2,a green fireball wi blueish tints- disappearing above the horizon-15 degrees(?) burned up out (?) +1998-06-15,35.6527778,-97.4777778,Edmond,OK,fireball,5,confirm fireball over Edmond OK. +1998-06-15,42.3333333,-88.2666667,Mchenry,IL,light,240,light in sky chased away by two jets. +1999-06-15,40.3133333,-88.9736111,Heyworth,IL,circle,0.5,AN UNUSUAL object +1999-06-15,39.5297222,-119.8127778,Reno,NV,triangle,360,I have been an aiviation enthusiast 20+years passing my FAA exam at 97%.I am no expert but am aware of most aircraft type and capabilit +1999-06-15,27.8002778,-97.3961111,Corpus Christi,TX,triangle,10,black plane glides across the sky. +1999-06-15,40.7608333,-111.8902778,Salt Lake City (West Of),UT,triangle,2700,Between 8:15 and 9:00 I saw an object that seemed to hover over the Ocuirrh mountains just west of Salt Lake or further out It started +1999-06-15,34.0633333,-117.65,Ontario,CA,egg,600,Egg shaped object near Ontario International Airport, in Ontario Ca. +1999-06-15,29.03,-82.6688889,Inglis,FL,disk,1200,Steering wheel size disc does fantastic manuvers for 20 minutes. +1999-06-15,38.7838889,-90.4811111,St. Charles,MO,rectangle,900,Black Rectangle +1999-06-15,40.7972222,-75.9697222,Tamaqua,PA,disk,300,SMALL WHITE CRAFT SEEN DURING THE DAYTIME. +1999-06-15,40.0455556,-86.0086111,Noblesville,IN,circle,120,DRIVING SOUTH ON ST. RD, 213 MY FRIEND SPOTTED a BRIGHT SHINNING METALIC CIRCULAR OBJECT ,SHE ASKED IF I HAD SEEN IT . I SAID NO THEN A +1999-06-15,38.0194444,-122.1330556,Martinez,CA,sphere,300,LARGE RED SPHERE COVERD IN WHITE LIGHTS HOVERING. +1999-06-15,34.2569444,-85.1647222,Rome,GA,other,900,My then l0 year old and I noticed a shiny "glint" in the sky over the berry college campus. We at first thought it to be a love flying +1999-06-15,34.4741667,-101.3041667,Silverton,TX,cigar,1200,The u.f.o i saw was real, if you don't want to beleive me fine, but i know what i saw. +1999-06-15,40.7211111,-73.1580556,Great River,NY,disk,180,disks in a circle overhead +1999-06-15,40.9791667,-74.1169444,Ridgewood,NJ,light,900,it was just a light, it looked like a star but it was way too bright to be a star +1999-06-15,41.5580556,-73.0519444,Waterbury,CT,light,900,VERTICAL FLYING CRAFT DISAPEARING INTO SPACE. +1999-06-15,28.0338889,-82.6652778,Oldsmar,FL,fireball,3,night time- i saw a green flourescent firey ball disintegrate in the sky and vanish +1999-06-15,33.4483333,-112.0733333,Phoenix,AZ,triangle,180,triangular craft with three red lights sighted in western phoenix +1999-06-15,38.9863889,-81.9736111,New Haven,WV,sphere,30,The object slowly climbed up just above the horizon, disappeared, reappeared some distance away, and disappeared again. +1999-06-15,34.9530556,-120.4347222,Santa Maria,CA,oval,900,A 'Star' chases a UFO. +1999-06-15,38.8444444,-82.1372222,Point Pleasant,WV,triangle,3600,I saw a large triangular craft with 3 non flashing/blinking lights just above my car. +1999-06-16,34.0658333,-84.6769444,Acworth,GA,light,7200,Use of Spot Light +1999-06-16,39.7155556,-82.9530556,Ashville (5 Miles South Of),OH,light,30,3 "Stars" - 2 moved closer together and one went through those two.. +2000-06-15,44.0522222,-123.0855556,Eugene,OR,triangle,300,"DELTA" SHAPED OBJECT FLYS OVER AT 2:00 IN THE MORNING. +2000-06-15,34.0522222,-118.2427778,Los Angeles,CA,unknown,60,it didn't make any sound, no light beams like a police helicopter, no vibration from rudder as one would expect from heli. +2000-06-15,39.7588889,-84.1916667,Dayton (Wright-Patterson Afb),OH,other,1200,WPAFB Dayton OH, 3 cloud ufos, we were seen, followed by white vans who later asked me about ufo's. +2000-06-15,42.2505556,-83.1786111,Lincoln Park,MI,other,2,The object was approximately 24-36 inches in length and approximately 3 inches in width. The color was an illuminating silver. The sh +2000-06-15,44.8622222,-93.5305556,Chanhassen,MN,disk,5,I saw a quick glimpse of two dark orange sandy colored saucers probably about 20 feet each in diameter. +2000-06-15,41.0441667,-83.65,Findlay,OH,oval,300,I SAW THIS UFO COMING HOME FROM A SOCCER GAME.IT WAS ABOUT 9:00 PM.IT WAS ODD LOOKING - IT KIND OF FREAKED ME OUT. IT WAS AN OVAL SHAPE +2000-06-15,36.3361111,-102.0716667,Stratford,TX,triangle,120,This is an UFO to me, I am just curious if it is to others as well. +2000-06-15,39.0825,-74.8241667,Cape May Court House,NJ,light,15,Light instantly stopped moved instantly a few times followed by second one following. +2000-06-15,41.3897222,-81.4413889,Solon,OH,circle,30,red glowing circular object moving at high speed +2000-06-15,39.4019444,-75.0397222,Millville,NJ,triangle,600,unknown black triangle +2000-06-15,39.535,-119.7516667,Sparks,NV,light,300,Craftt, appearing much like a star, moved about in the Eastern sky above Sparks, NV, at 23:00 on 6/15/00. +2000-06-15,47.6063889,-122.3308333,Seattle,WA,other,25,UFO seen crossing I-5 Ship Canal Bridge from East to West (shaped like a rowboat, iridescent orange, with a small blue light at front) +2000-06-15,42.3922222,-88.2969444,Ringwood,IL,light,900,We witnessed 4 swirling balls of light that met in the night sky and dropped a shaft of light to the ground +2001-06-15,40.1672222,-105.1013889,Longmont (Near),CO,rectangle,300,UFO SITING 06/15/01 ALONG I-25 IN COLORADO +2001-06-15,35.6869444,-105.9372222,Santa Fe,NM,unknown,270,Three extremely bright objects observed in various locations over the skies of Santa Fe and Los Alamos, New Mexico. +2001-06-15,39.6133333,-105.0161111,Littleton,CO,disk,1200,black craft over clement park moving sw with looked like a bolt of lightning shooting from the bottom +2001-06-15,41.7858333,-88.1472222,Naperville,IL,sphere,480,Motionless chrome sphere on windy day +2001-06-15,32.7833333,-96.8,Dallas,TX,disk,30,Disk Tries to Hide +2001-06-15,39.5583333,-77.9541667,Spring Mills,WV,cigar,30,Cigar shaped craft over I-81 at truck stop . +2001-06-15,40.6219444,-74.245,Linden,NJ,rectangle,2100,Linden NJ ... Strange object in sky, same day as Carteret NJ sighting. +2001-06-15,42.0697222,-87.7877778,Glenview,IL,sphere,300,I saw a small color changing object that suddeny showed up, then dissapered. +2001-06-15,34.0633333,-117.65,Ontario,CA,fireball,2100,periodical blinking and changingcolor +2001-06-15,33.4483333,-112.0733333,Phoenix,AZ,circle,60,slowly disapppeared +2001-06-15,47.8555556,-121.9697222,Monroe,WA,circle,20,Sighted an object for 15-20 Sec. moving in a West to East direction. We initially thought it was a satellite, then a plane, then couldn +2001-06-15,36.8655556,-87.4886111,Hopkinsville ((West Of, On I-24),KY,fireball,900,orangeish light pulsing west of hopkinsville, ky on I-24, then 10 miles down the road again +2001-06-15,33.4938889,-84.9138889,Whitesburg,GA,other,1800,MUFON/GEORGIA FOLLOW-UP REPORT: Investigation of multiple unknown objects by MUFON of Georgia +2001-06-15,33.6888889,-78.8869444,Myrtle Beach,SC,sphere,300,3 disk shaped rotating objects emitting bright orange lights over Atlantic Ocean. +2001-06-15,45.5972222,-122.9922222,North Plains,OR,triangle,60,Big, black, silentƻ lights at each corner,triangle,wider then a 4 lane free way. +2001-06-15,33.5311111,-111.9419444,Paradise Valley,AZ,light,240,Carousel in the Sky +2002-06-15,42.8858333,-87.8630556,Oak Creek,WI,triangle,3,A dark silhouette of a triangle flew over my head silently. +2002-06-15,45.3841667,-122.7627778,Tualatin,OR,oval,4,Oregon UFO sighting +2002-06-15,33.4483333,-112.0733333,Phoenix,AZ,formation,180,We were driving in the desert eastward on hwy 8 about 25 miles east of Phoenix, AZ at approx. 1am. I looked out the passenger side win +2002-06-15,27.9655556,-82.8002778,Clearwater,FL,sphere,1800,4 red lights over the Gulf +2002-06-15,41.1175,-73.4083333,Norwalk,CT,unknown,120,four lights, one large, moved with no sound, very large craft. +2002-06-15,37.24,-93.7005556,Nickelville,MO,oval,3600,MISSOURI INVESTIGATORS GROUP Report: As the light was turning down the whole damn thing lit up from the center out. +2002-06-15,44.7630556,-85.6205556,Traverse City,MI,disk,120,I saw a silver metallic flying saucer over Traverse City, MI, speeding through the atmosphere. +2002-06-15,47.3811111,-122.2336111,Kent,WA,oval,360,round dark grey sphere motionless then slowly left smaller smaller till gone. as left size proportionate. +2002-06-15,29.7177778,-81.5083333,Hastings,FL,changing,5,THIS STRANGE SIGHTING WAS SEEN BY MY WIFE AND I RETURNING HOME FROM WORK. WE ARE BOTH MUNICIPAL EMPLOYEES. WHAT I SAW IS WHAT I THAUGHT +2002-06-15,33.6469444,-117.6827778,El Toro,CA,other,900,Standing at O'neill Reg. park. Facing the top of Saddleback Mtn.Object hung above to the right tip of mountain peak for about 15 min. W +2002-06-15,41.3138889,-81.6852778,Broadview Heights,OH,oval,300,Bright orange cigar shaped UFO outside of Cleveland, Ohio +2002-06-15,34.3738889,-80.0736111,Hartsville,SC,unknown,1,Red light streaks across sky and cuts a 90 degree angle, disappearing. +2002-06-15,41.8558333,-75.2241667,Equinunk,PA,egg,3600,7 ufo's stop over the upper delaware river valley +2002-06-15,33.8752778,-117.5655556,Corona,CA,fireball,900,saw redish orange fireball moving very slow in up and down motion in corona ca.2002 wuold stop for a while and keep moving +2002-06-15,40.1447222,-84.2425,Piqua,OH,unknown,60,Not sure what it was, the lights made me think it was a car, but I wasn't sure... +2002-06-15,37.5536111,-77.4605556,Richmond,VA,unknown,15,Very big slow moving object with lights +2002-06-15,29.9272222,-97.5641667,Dale,TX,circle,420,3 UFO's over Central Texas +2002-06-15,40.955,-74.1863889,North Haledon,NJ,fireball,120,A red ball of fire, watches us, then dives away. +2002-06-15,30.4391667,-97.6197222,Pflugerville,TX,light,90,I had just watched the shuttle and space station cross over from nw to se.Then about 2 mins after a twice as large sta5r looking th +2002-06-15,26.2708333,-80.2708333,Coral Springs,FL,light,45,there was only one bright light in the night sky. it hovered side to side in the distance, east to west. but it moved across the sky in +2002-06-15,40.9033333,-73.4602778,Lloyd Harbor,NY,triangle,900,Light turns to triangular craft when in focus. Continues above our heads. Then heads out at rapid speed. +2002-06-15,43.1547222,-77.6158333,Rochester,NY,light,20,I saw this white light flash 3 times and move to the right, flashed 3 times and moved to left and then flased again and dissapered. +2003-06-15,43.9180556,-123.0233333,Creswell,OR,other,900,i could tell you this: IT WAS NOT AN AIRPLANE! +2003-06-15,41.3947222,-73.4544444,Danbury,CT,light,10,High Flying craft dashes Due North at High Speed +2003-06-15,35.4816667,-86.0886111,Manchester,TN,light,2700,My girlfriend and I saw an object that resembled a moving "star" for about 45 minutes. +2003-06-15,36.6002778,-121.8936111,Monterey,CA,oval,15,Across the graveyard near Dennis the Menance park looking toward Carmel/Big Sur. Me EX Airforce! +2003-06-15,32.7325,-89.5361111,Carthage,MS,egg,1500,saw something weird on the 15th +2003-06-15,42.4791667,-71.1527778,Woburn,MA,fireball,1800,4 fire in the sky over the highway +2003-06-15,35.4816667,-86.0886111,Manchester,TN,disk,6300,Another (belated but discovered) Bonaroo witness. Science Major, SKEPTIC +2003-06-15,36.8527778,-75.9783333,Virginia Beach,VA,fireball,300,Glowing fireball type orb with a tail of some sort, with strange movements, and then unimaginable speed to disapear. +2003-06-15,36.8527778,-75.9783333,Virginia Beach,VA,sphere,60,I saw it too! +2003-06-15,35.4816667,-86.0886111,Manchester,TN,triangle,180,slow erie green craft +2003-06-15,41.1427778,-102.9775,Sidney,NE,other,15,A gelatinous lighted object in the midwest +2003-06-15,32.3863889,-96.8480556,Waxahachie,TX,circle,4,Sunday night, 6/15/03, Waxahachie. Moving south to north +2003-06-15,30.2263889,-93.2172222,Lake Charles,LA,disk,2,Unusal objects moving fast and quite over southwest Lousiana +2003-06-15,47.4158333,-120.2919444,East Wenatchee,WA,triangle,5,Two triangle shaped green and pink craft seen flying in a mist from east to west +2003-06-15,36.1333333,-98.5502778,Longdale,OK,diamond,15,Possible U.F.O. sighting over lake in Canton, Oklahoma. +2004-06-15,40.5622222,-111.9288889,South Jordan,UT,triangle,20,Outside at 01:30 in the morning it appeared over my head, a triangular shaped object that omitted a heat wave and no sound. +2004-06-15,38.7088889,-78.6486111,Locust Grove,VA,light,2,Light in night sky traveling at high speed and making a right angle turn without changing velocity. +2004-06-15,28.3641667,-82.6936111,Hudson,FL,light,120,At about 5 am I saw what appeard to be a white light in the sky over the Gulf of Mexico,off shore about 2 miles up and 3 miles out from +2004-06-15,32.7152778,-117.1563889,San Diego,CA,light,8,a beautiful bright light +2004-06-15,26.7052778,-80.0366667,Palm Beach,FL,other,600,I Saw A Bell Shaped object in Palm Beach Florida June 2004. My Pic is for scale only not actual but accurate. +2004-06-15,33.4483333,-112.0733333,Phoenix,AZ,disk,600,Dozen or so white spinning discs flying erractly over Central Phoenix +2004-06-15,41.4994444,-81.6955556,Cleveland,OH,light,120,Color-Changing Light Appears in Sky +2004-06-15,40.015,-105.27,Boulder,CO,light,240,Object avoids jets contrail, stops and changes direction +2004-06-15,39.7683333,-86.1580556,Indianapolis,IN,disk,180,i saw a disk come from behind my place +2004-06-15,44.8408333,-93.2980556,Bloomington,MN,unknown,2,BLURRED PHOTO OF UFO ? +2004-06-15,47.6063889,-122.3308333,Seattle,WA,diamond,30,Glowing white, diamond shaped object in the sky to the west , above Seattle slowly moving straight up. +2004-06-15,33.4483333,-112.0733333,Phoenix,AZ,light,45,Low, bright orange lights appear and multiply suddenly, then disapper as abruptly +2004-06-15,35.4713889,-93.4663889,Clarksville,AR,oval,120,I was outside on our deck with my wife looking for satellite's , sometimes we do this on really clear nights. after about 10 or 15 minu +2004-06-15,33.9966667,-77.9075,Kure Beach,NC,light,900,Strange Orange Lights seen off Carolina and Kure Beaches, North Carolina +2004-06-16,40.7391667,-89.0163889,El Paso,IL,changing,120,In June 2004, I was laying out in the back yard with my infant son, looking up at the sky, and saying things like: that is a bird, that +2005-06-15,38.1916667,-120.8280556,Valley Springs,CA,sphere,180,White sphere turns orange. +2005-06-15,38.4622222,-85.3036111,Pendleton,KY,light,180,Four lights came together and made a cresent moon with sparkling lights. +2005-06-15,47.4811111,-118.2533333,Harrington (5 Miles West Of),WA,diamond,180,Two adult males witness a large, fast-moving diamond-shaped craft in the morning sky. +2005-06-15,26.6402778,-81.8725,Fort Myers,FL,disk,1200,hey all you ufo peeps i am only writing this to verify another guys sighting here in swf there here alot ufo's and there disturbing the +2005-06-15,38.6272222,-90.1977778,St. Louis,MO,oval,60,I felt like it knew we were looking at it . I felt like it was looking at us. +2005-06-15,45.6275,-68.575,East Millinocket,ME,cigar,5,Seen on a clear day,was not moving at a high speed,saw no wings,heard no noise,no lights +2005-06-15,40.7141667,-74.0063889,New York City (Brooklyn),NY,unknown,600,Object Produces Vortex of Clouds. ((NUFORC Note: Student report. Possible hoax. PD)) +2005-06-15,27.6741667,-97.7483333,Driscoll (Near),TX,cylinder,1500,Three stationary cylindrical clouds in formation. +2005-06-15,35.3733333,-119.0177778,Bakersfield,CA,circle,60,Dark disk or hole in sky motionless, small shiney object looked to exit and fly away from dark one at high speed. +2005-06-15,32.7152778,-117.1563889,San Diego,CA,sphere,120,2 spheres +2005-06-15,35.4305556,-82.5013889,Fletcher,NC,cigar,120,Cigar-Shaped object in small town of NC. +2005-06-15,41.85,-87.65,Chicago (In-Flight Sighting),IL,disk,1,Hazy clear disc with a Christmas tree ball in the middle above Chicago +2005-06-15,36.1658333,-86.7844444,Nashville,TN,triangle,60,The object was two planes length away from our plane and moved very slowly in front of the plane. It was very flat. +2005-06-15,35.8177778,-79.8033333,Randleman,NC,other,60,It was about 6:30 pm, my husband and his co-worker had just arrived home and my son and I had went out to talk to my husband and co-wor +2005-06-15,28.0680556,-80.5605556,Melbourne Beach,FL,fireball,60,Strange fireball randomly appears over the ocean at dusk and after about a minute of hovering, expands, contracts and dissapears! +2005-06-15,41.4486111,-74.2858333,Lagrange,NY,light,2,Zig-zag across the sky +2005-06-15,39.2461111,-94.4188889,Liberty,MO,triangle,900,Big Triangle 3 Lights Craft +2005-06-15,33.4483333,-112.0733333,Phoenix,AZ,light,4500,Even more "Phoenix Lights", this time over what seemed to be Southwest Phoenix +2005-06-15,33.5441667,-84.2338889,Stockbridge,GA,triangle,30,bright lights hover then hit warp speed then go separate ways +2005-06-15,35.5363889,-82.6930556,Candler,NC,light,120,Bright red orb type light was seen on two seperate occasions, intelligently controlled and appeared to "scan" +2005-06-15,43.2755556,-82.6211111,Croswell,MI,other,120,orb accelerating and making 90 degree turns. +2005-06-15,38.2541667,-85.7594444,Louisville,KY,light,10,3 friends watched by a bluish light that moved with incredible speed 100 ft away. +2005-06-15,35.9938889,-78.8988889,Durham,NC,light,30,oddly blinking light with an irratic path goes east then circles to go north. +2005-06-15,40.8666667,-124.0816667,Arcata,CA,other,5,We had just returned from running up into the hills 40 miles (east from arcata california to willow creek california) because if a tsun +2005-06-15,44.8622222,-93.5305556,Chanhassen,MN,light,60,moving star moving in curvy random pattern in sky seen in the minneapolis area +2005-06-15,28.9002778,-81.2638889,Deltona,FL,light,4,large light travels very fast across sky. +2006-06-15,64.7511111,-147.3494444,North Pole,AK,oval,2,Large white ball in the sky +2006-06-15,29.4238889,-98.4933333,San Antonio,TX,light,1200,Light forms that disappear and reappear that seem to be dancing around each other. +2006-06-15,38.4,-105.2166667,Canon City,CO,teardrop,10,single teardrop shape with flat bottom seen in mid-morning commute +2006-06-15,39.4736111,-118.7763889,Fallon,NV,sphere,1800,UFO sighting east of Fallon, NV, at Navy target range B17. ((NUFORC Note: Witness is an air traffic controller. PD)) +2006-06-15,34.7538889,-77.4305556,Jacksonville,NC,fireball,180,5 or more balls of light darting back and forth. over the skies of Jacksonville, NC. near Camp Lejeune. +2006-06-15,38.5816667,-121.4933333,Sacramento,CA,unknown,5,3-4 lights fly low over I-5 in central California +2006-06-15,38.3683333,-92.2166667,St. Thomas,MO,light,7200,There were 2 Bright Red lights hovering in the sky near my house. +2006-06-15,34.2255556,-77.945,Wilmington,NC,light,300,Flying Silk ... +2006-06-15,39.3022222,-90.4069444,Carrollton,IL,rectangle,600,Strange Strobing light in the Southern Sky +2006-06-15,40.6966667,-74.9411111,Glen Gardner,NJ,disk,1800,The object was a bright white disc with a center dome an sparkling colored lights all over it ! +2006-06-15,27.9472222,-82.4586111,Tampa,FL,light,20,Two single, white lights travelling S to N at moderate speed & altitude caused electrical disturbance to car. +2006-06-15,41.7738889,-74.7388889,Ferndale,NY,unknown,1080,FIVE SEPARATE BRIGHT LIGHTED AIRCRAFTS SEEN OVER FERNDALE, NY. +2006-06-15,42.5991667,-114.7586111,Buhl,ID,triangle,300,A triad of star-like lights, arranged in the shape of a miniature Aries, slowly passed from NW to SE in a possible formation. +2006-06-16,40.1266667,-79.4288889,Acme,PA,other,300,I did NOT see a UFO ship. I saw what I feel was a UFO set of persons. My horse was a foal at the time and I was leading him (like walki +2007-06-15,39.6444444,-86.8647222,Greencastle.,IN,other,300,Y-shaped craft flying low over rural indiana, west to south-east. +2007-06-15,27.2936111,-80.3505556,Port Saint Lucie,FL,triangle,120,Triangle shaped craft above highway moving slowly North. +2007-06-15,37.2316667,-79.8108333,Hardy,VA,light,120,Lights and the thing can travel a long way, very quickly. +2007-06-15,41.9163889,-83.3977778,Monroe,MI,fireball,8,Blue-ish fireballs in sky. +2007-06-15,40.4163889,-120.6519444,Susanville,CA,circle,39,small while orb flying rapidly over farmland, we were driving and both saw it, the orb was not a kite, or small plane or radio control +2007-06-15,42.0083333,-91.6438889,Cedar Rapids,IA,unknown,300,Sun shining off of geometric shape, hovering still, over Cedar River in C.R. +2007-06-15,40.2338889,-111.6577778,Provo,UT,oval,20,Silver or white blimp-shaped object went behind Wasatch Mountains and out of sight. +2007-06-15,37.0513889,-122.0722222,Felton,CA,teardrop,1800,Large stationary, very bright light that changed shape and color. +2007-06-15,33.5508333,-79.0416667,Murrells Inlet,SC,light,900,Three orangish Red balls of light were observed hovering over the ocean, motionless, for 15 minutes. +2007-06-15,33.4330556,-79.1216667,Pawleys Island,SC,unknown,60,A shaft of light from the sky. +2007-06-15,38.7744444,-92.2569444,Ashland (Just Outside Of),MO,triangle,600,Triangular shape object in the sky with very bright lights! +2007-06-15,37.0841667,-94.5130556,Joplin,MO,light,300,MISSOURI INVESTIGATORS GROUP REPORT: I looked up in the sky and saw what I thought was a satellite. +2007-06-15,46.7311111,-93.9577778,Emily,MN,triangle,5,Large triange shape craft with many lights on bottom. +2008-06-15,33.8752778,-117.5655556,Corona,CA,fireball,5,Green Fireball witnessed over Corona, CA +2008-06-15,33.7877778,-117.8522222,Orange,CA,flash,3,Very large blue flashing light falling fast from the sky in Orange, Califronia (twice in ten minutes). +2008-06-15,42.5233333,-76.9769444,Dundee,NY,unknown,900,the object we saw changed multiple colors, hovered/moved like nothing i've ever seen. It also seemed to respond to a led light i had +2008-06-15,39.6861111,-74.9955556,Williamstown,NJ,fireball,20,A large, fiery white ball of light shot quickly across the sky towards the ground. +2008-06-15,35.1894444,-114.0522222,Kingman,AZ,unknown,900,Overwhelming sound and vibration with no craft visible +2008-06-15,39.9625,-76.7280556,York,PA,rectangle,10,Rectangular UFO being followed by military B52 aircraft. +2008-06-15,39.6527778,-78.7627778,Cumberland,MD,other,180,Transparent Bowl-Shaped Craft - Cumberland, Maryland +2008-06-15,32.64,-117.0833333,Chula Vista,CA,rectangle,900,clear rectangular plastic bag object with lights and hovering powers, with no sound only soft humm! +2008-06-15,41.0463889,-81.3980556,Mogadore,OH,cross,10,cross shaped lights in erratic flight pattern +2008-06-15,42.0166667,-84.0641667,Tipton,MI,unknown,420,BRIGHT Object in SE Michigan 6/15/08 10:45 pm +2008-06-15,39.5358333,-76.3486111,Bel Air,MD,disk,7200,pattern of lights going from right to left, then blinking, then repeating. A smaller bright white light shot off from it later +2008-06-15,44.5191667,-88.0197222,Green Bay,WI,circle,600,Orange object viewed at night near Lake michigan west of Green Bay. +2009-06-15,37.8313889,-122.2841667,Emeryville,CA,cigar,4,Fast moving linear object with three lights in a night sky. +2009-06-15,36.4219444,-94.4533333,Gravette,AR,other,300,Two moving objects in space +2009-06-15,35.5977778,-82.4,Swannanoa,NC,light,30,Bright, large white and blue object in Swannanoa, NC +2009-06-15,33.1191667,-117.0855556,Escondido,CA,teardrop,12,Large Light green flamelike shaped object or light flying horizontally +2010-06-15,28.5555556,-82.4505556,Spring Hill,FL,changing,3600,2 large objects seen in hernando: with smaller lighted objects coming from them +2010-06-15,39.5358333,-76.3486111,Bel Air,MD,oval,60,Oval shaped object in sky over Bel Air, Maryland +2010-06-15,46.3580556,-94.2005556,Brainerd,MN,unknown,6,First we seen this weird light shoot across the sky. Light orange in color. On highway 2 in pine center MN but im not exactly sure if. +2010-06-15,48.4213889,-122.3327778,Mount Vernon,WA,light,10800,Bright lights with flashes, changing direction, color and speed over a very large area of the sky. +2010-06-15,47.6105556,-122.1994444,Bellevue,WA,cigar,120,On June 15th at approx. 10AM in the morning I saw (from my balcony in the Cougar Mountain Park area of Bellevue) what looked like a mis +2010-06-15,36.7222222,-80.8230556,Woodlawn,VA,triangle,20,Triangle of 3 white lights over Woodlawn, VA +2010-06-15,48.9161111,-117.7805556,Northport,WA,formation,180,Several small objects in formation (not consistantly) with mil. jet at around 20-30k feet. ((NUFORC Note: Refueling formation? PD)) +2010-06-15,33.8722222,-117.8694444,Placentia,CA,teardrop,4,Very dim falling star with amber light flying horizontal at about 600mph in LAX landing path with no trail. +2010-06-15,35.9605556,-83.9208333,Knoxville,TN,triangle,120,Unusual diamond light pattern on a triangular object flying silent in Knoxville, TN. +2010-06-15,30.8205556,-88.0705556,Saraland,AL,light,120,3 lights of different color playing chase over south Alabama +2011-06-15,34.0230556,-84.3616667,Roswell,GA,circle,60,huge object with glowing lights flies over +2011-06-15,43.2825,-76.2708333,Pennellville,NY,light,180,At stated time I noticed a white bright solid light heading from W to E. ((NUFORC Note: Possible sighting of ISS. PD)) +2011-06-15,34.6647222,-83.0966667,Westminster,SC,light,180,bright light in the night sky. ((NUFORC Note: Sighting of International Space Station. PD)) +2011-06-15,35.2675,-75.5427778,Buxton,NC,light,45,Bright oblong objects hovering in the sky +2011-06-15,41.9583333,-70.6677778,Plymouth,MA,unknown,600,Fighter Jets trailing object in vicinity of reactor. +2011-06-15,38.4405556,-122.7133333,Santa Rosa,CA,unknown,10,White dot fast moving high altitude. +2011-06-15,47.5002778,-111.3,Great Falls,MT,chevron,10,Boomerang shaped object seen in daylight at Great Falls, Montana. +2011-06-15,35.1494444,-90.0488889,Memphis,TN,cigar,900,Red-colored, cigar-shaped craft seen flying over Memphis, Tennessee. +2011-06-15,38.9047222,-77.0627778,Georgetown,DC,disk,6,metallic disk hovering silent in crowded airspace shoots up out of site leaves smoke cloud +2011-06-15,29.9425,-89.9633333,Chalmette,LA,light,3000,9 small star like objects moving at different times across night sky. +2011-06-15,39.5127778,-115.9597222,Eureka,NV,light,300,Red lights, low humming, central Nevada, two witnesses. +2011-06-15,35.235,-75.6288889,Frisco,NC,light,60,Reddish-orange lights over ocean at Frisco North Carolina - outer banks - again on 6/15/2011 +2011-06-15,35.235,-75.6288889,Frisco,NC,formation,300,Evenly spaced low hanging silent, non blinking amber lights in an array on the beach at Frisco, NC on June 15, 2011 +2011-06-15,35.114444399999996,-75.9813889,Ocracoke,NC,light,12,Red lights over the Atlantic Ocean. +2011-06-15,39.2688889,-84.2638889,Loveland,OH,light,360,Moving light stops, gets brighter, then moves faster. ((NUFORC Note: Possible flare of reflected light from Iridium satellite?? PD)) +2011-06-15,38.2119444,-86.1219444,Corydon,IN,light,180,Single point of light that changed direction and rose out of sight within a second +2012-06-15,35.7913889,-78.7813889,Cary,NC,circle,480,A yellow round floating ball of light in the sky right above a house across the street from me. +2012-06-15,39.485,-80.1427778,Fairmont,WV,light,7200,Spinning UFO's over West Virginia +2012-06-15,32.2986111,-90.1847222,Jackson,MS,triangle,1200,Saw triangle moving slowly amongst the stars... +2012-06-15,32.2986111,-90.1847222,Jackson,MS,unknown,2,Saw one small flash of light then a reddish looking fireball that shot across the sky then disappeared then same a similar one after… +2012-06-15,42.1391667,-87.9288889,Wheeling,IL,light,120,Flashing white light, brighter then stars, very high in sky, shined a light kind of like helicopter but way to high in the sky for a pl +2012-06-15,37.5483333,-121.9875,Fremont,CA,circle,900,Golden UFO Sphere in the Sky +2012-06-15,40.4405556,-79.9961111,Pittsburgh (General Area),PA,oval,120,Yellowish orange orb +2012-06-15,37.2386111,-76.51,Yorktown,VA,circle,1800,Yorktown Beach on 6-15-12 we saw 5 or 6 lights flying seperately in the sky +2012-06-15,42.6608333,-77.0541667,Penn Yan,NY,fireball,5,We saw a white ball flying at a fast speed level to the ground at a height of 400 feet for five seconds. +2012-06-15,40.8680556,-73.4261111,Huntington,NY,light,6312000,Strange lights in the sky that move and follow me, and weird experiences. +2012-06-15,41.0025,-74.0408333,Hillsdale,NJ,fireball,420,Orange fireballs in triangular formation in evening sky over Northern Bergen County on June 15, 2012 +2012-06-15,38.9780556,-122.8383333,Kelseyville,CA,fireball,600,Fireball changing color and size while sitting still and silent. +2012-06-15,32.7763889,-79.9311111,Charleston,SC,other,1500,Appeared to be Japanese coating lanterns on 4 separate occasions. 2 people and video. Charleston SC. +2012-06-15,36.3352778,-92.385,Mountain Home,AR,unknown,360,Red brilliant light and white light +2012-06-15,47.6063889,-122.3308333,Seattle,WA,fireball,40,Several large orange lights flying in one row over Seattle +2012-06-15,41.9438889,-85.6325,Three Rivers,MI,fireball,600,We saw 5 to 6 orange glowing UFO's traveling in a row about 30 seconds apart across the highway. +2012-06-15,44.7894444,-93.6019444,Chaska,MN,formation,90,4 hovering orange lights on a cloudy night. Seen by 7 people +2012-06-15,29.5613889,-98.2266667,Cibolo,TX,unknown,40,Peculiar Object Sighted +2012-06-15,43.9705556,-89.8166667,Friendship,WI,diamond,1200,A reddish glow starting then orange ball floating moving south to north several every 2 min for 20min +2012-06-15,29.6513889,-82.325,Gainesville,FL,sphere,10,Series of amber orbs transiting NE to SW, singly, in pairs, and in threes, about 15 total. +2012-06-15,40.2794444,-75.3875,Harleysville,PA,fireball,1500,It was so wierd. It looked like it was floating over. The town going from red and white back and forth over 10 mins. +2012-06-15,40.7438889,-73.1391667,Oakdale,NY,diamond,180,Bright light and red and blue lights. +2012-06-15,42.7358333,-83.4188889,Clarkston,MI,triangle,10,Huge triangular craft in Metro Detroit area +2012-06-15,42.8141667,-73.94,Schenectady,NY,sphere,180,large silent fast then hover then blanked out,re appeared gone again 2days l8er came back by G.E. +2012-06-15,40.7163889,-73.3222222,North Babylon,NY,circle,43,UFO Sighting, I saw an Orange ball that appeared on the side of my house moving in a north west direction. It was a bright orange color +2013-06-15,36.175,-115.1363889,Las Vegas,NV,fireball,3600,Scattered, circular and circling lights from whitefish yellow to red just outside of west Las Vegas. +2013-06-15,45.7833333,-108.5,Billings,MT,changing,240,Shape changing craft above my house for 3 to 4 minutes!! +2013-06-15,33.7738889,-117.9405556,Garden Grove,CA,diamond,180,Orange in color diamond shaped lights seen in the sky hovering over garden grove. +2013-06-15,35.0716667,-81.65,Gaffney,SC,rectangle,300,Craft vanishes into thin air. +2013-06-15,44.5236111,-89.5744444,Stevens Point,WI,other,3600,Bubble looking objects that kept their sphere shape. +2013-06-15,42.0986111,-75.9183333,Binghamton,NY,sphere,120,Stationary sphere. +2013-06-15,41.3125,-81.1438889,Hiram,OH,disk,120,2 whitish saucers seen in hiram ohio +2013-06-15,36.5483333,-82.5619444,Kingsport,TN,cylinder,180,3 "Objects" following one another. Videoed as well. +2013-06-15,40.1261111,-82.9291667,Westerville,OH,formation,300,I was riding with a friend in his vehicle, en route to his house. We were on a main road, passing by the local reservoir. He noted that +2013-06-15,21.4180556,-157.8036111,Kaneohe,HI,circle,120,2 unidentified flying objects that moved at a high speed from South to North West far away as the stars. +2013-06-15,37.6583333,-97.6833333,Garden Plain,KS,light,180,It was not a star. +2013-06-15,40.7988889,-81.3786111,Canton,OH,unknown,240,Redish orange orbs, 9 or 10 flying west to east high in sky, no sound +2013-06-15,45.16,-92.9930556,Hugo,MN,unknown,1200,On 6/15/13 9 crafts appeared and surrounded us in Hugo Minnesota with sudden changes in lighting and directions at times. +2013-06-15,33.7283333,-117.1455556,Menifee,CA,light,300,Orange lights sighted above the city of Menifee Ca.. +2013-06-15,40.3616667,-76.1844444,Womelsdorf,PA,fireball,600,My daughter and her friend were driving home on main road in our area when her and her friend witnessed a bright fireball object that +2013-06-15,39.9544444,-74.3788889,Whiting,NJ,circle,60,I witnessed a latern-like orb of fire hovering quietly through the sky. +2013-06-15,37.6658333,-77.5066667,Glen Allen,VA,fireball,120,20 Yellowish Fireballs/Spheres over Glen Allen, VA. +2013-06-15,47.6063889,-122.3308333,Seattle,WA,unknown,15,Object with red and green lights hovered and then headed north disappearing from view in Fauntleroy neighborhood. +2013-06-15,34.2366667,-84.4908333,Canton,GA,fireball,240,Two different sets of 2 red fireballs that slowly rose and got smaller, flickered and disappeared over canton ga. Red in color, very br +2013-06-15,38.3325,-82.9486111,Grayson,KY,fireball,120,At least 5 or 6 bright orange orbs moving South to North noted by 3 people. +2013-06-15,41.4552778,-81.9180556,Westlake,OH,unknown,420,A few dozen, low-altitude lights flying silently in a loose formation in a south-to-north direction from inland to out over Lake Erie +2013-06-15,46.2511111,-119.9005556,Grandview,WA,sphere,240,Bright white light flying low and fast heading east. +2013-06-15,45.3561111,-92.6333333,Dresser,WI,unknown,1500,At least 10 amber circular silent lights moving in the sky in rural area of Dresser, WI +2013-06-15,43.2208333,-77.2833333,Ontario,NY,fireball,300,About 12 orange fireballs seen moving in an eastward flight pattern in Ontario, NY, on Saturday, June 15th, around 10:30 pm. +2013-06-15,44.9430556,-123.0338889,Salem,OR,sphere,600,Red lights floating east to west. +2013-06-15,47.6588889,-117.425,Spokane,WA,fireball,180,3 red/orange fireballs moved across the night sky and then disappeared, this happened in Spokane, WA. +2013-06-15,38.8541667,-77.5722222,Catharpin,VA,oval,600,Oval object hovering and then moving sideways without noise. Green and red lights +2013-06-15,38.4030556,-85.5741667,Goshen,KY,unknown,300,Four single file red lights with no sound flying a litttle faster than commerical airlines. +2013-06-15,37.3022222,-120.4819444,Merced,CA,fireball,180,Object also went from a bright red to orange. +2013-06-15,47.5302778,-122.0313889,Issaquah,WA,other,120,Red glowing UFO about South side of Squak mountain in Issaquah WA +1956-06-16,39.1619444,-84.4569444,Cincinnati,OH,disk,1200,glass like,you could see threw,craft was 20 feet in front of me,as i stepped closer, a ramp out of the side of the craft opened up and +1962-06-16,48.1366667,-123.7327778,Joyce,WA,other,180,Three minutes over Crescent Beach WA +1972-06-16,40.2338889,-111.6577778,Provo (South Of),UT,disk,120,Strange bright cloud moved with car for several miles, then zipped off as silver saucer. +1977-06-16,39.0838889,-77.1530556,Rockville,MD,disk,30,I saw a flying saucer. +1979-06-16,38.2972222,-122.2844444,Napa,CA,triangle,600,Triangular UFO SIghting Napa County Summer 1979 (on the way to Lake Berryessa) +1994-06-16,40.7988889,-81.3786111,Canton,OH,circle,8,Spotted a large reflective metal sphere observing heavy equipment. What was it !!!!!!!!!!!!!!!!! +1997-06-16,42.3477778,-123.3322222,Murphy,OR,other,3,A white lighted object appeared from the South West side flew to the North and disappeared. It appeared out of nowhere and disappeared +1998-06-16,38.6772222,-87.5286111,Vincennes,IN,light,240,seven lights, two miltiery jets +1998-06-16,41.6413889,-80.1516667,Meadville,PA,teardrop,2,shiny metalic double teardrop shape, silent fast in a clear sky +1998-06-16,38.6772222,-87.5286111,Vincennes,IN,light,240,seven lights, two miltiery jets. ((NUFORC Note: No other reports of military jet activity. Possible hoax. PD)) +1998-06-16,39.9794444,-77.2230556,Aspers,PA,circle,600,Friends were sitting in back yard talking and all of the sudden they start yelling to get a camera. When my friend walks out she spott +1999-06-16,39.9611111,-82.9988889,Columbus (Event Observed From Reynoldsburg),OH,unknown,45,Dark colored, high altitude, hover to slow NNW to fast West. Covered approx 45 degrees in about 10-12 seconds. +1999-06-16,32.0833333,-81.1,Savannah,GA,other,120,the space craft appeared out of no where and had no noise to it at all. +1999-06-16,40.305,-87.8005556,Potomac,IL,light,180,Strange light appeared in northern sky at about 15 degrees above horizon. Moved slowly upward and then faded out of sight. +2000-06-16,34.0555556,-117.1816667,Redlands,CA,light,300,Bright light moving accross horizon then breaking-up and falling to earth. +2000-06-16,45.5236111,-122.675,Portland (Southeast),OR,unknown,6,TheFull*MoonBathedTheSKY-WhileThe~*TWO-DOMES (BrightlyLit)`ObjectPlayed~likeA*rollercoaster +2000-06-16,38.6272222,-90.1977778,St. Louis,MO,other,180,UFO hovering over Mississippi river near St. Louis. +2001-06-16,40.1825,-80.6913889,Rayland,OH,light,180,a bright light that changes from orange to white (in the sky). slowly moved to the right,it took one hour to move when we notice. it mo +2001-06-16,27.4986111,-82.575,Bradenton,FL,oval,900,almost stationary circular light w/ circling arm w/ illuminated tip +2001-06-16,32.655,-79.9405556,Folly Beach,SC,teardrop,3,teardrop shape, bright, lime-green glowing orb +2001-06-16,42.0694444,-72.6152778,Agawam,MA,teardrop,90,Fast-moving, silent UFO with strobe-like flickering lights spotted over Western Massachusetts, 6/16/01 23:15 +2001-06-16,42.4594444,-83.1827778,Oak Park,MI,circle,120,Green/yellowish light on saucer object moving south to north in Southeastern Mich. +2001-06-16,43.073055600000004,-89.4011111,Madison,WI,other,30,V-shaped, 3-D, glowing fast moving silent craft. +2002-06-16,41.0244444,-81.0502778,Deerfield,OH,light,60,Light going N to S in Ohio, angles then disappears from sight. +2002-06-16,30.6694444,-81.4627778,Fernandina Beach,FL,circle,10,a bright red falling circle of light +2002-06-16,32.5158333,-93.7319444,Bossier City,LA,light,300,Bright blue/white light flies silently across evening sky. +2002-06-16,47.0380556,-122.8994444,Olympia,WA,other,600,Four adults couldn't identify an object that flew over Olympia Washington June 16, 2012. +2002-06-16,47.6588889,-117.425,Spokane,WA,light,600,I have been seeing a flickering white light, last evening again,much brighter than a star, it hovers and moves around the sky. +2003-06-16,40.4233333,-104.7086111,Greeley,CO,light,300,Bright unmoving amber light hovered in the southern sky for approximately five minutes. +2003-06-16,30.9036111,-84.5755556,Bainbridge,GA,other,30,Similar siting as in Trenton, Ohio - this one in Georgia +2004-06-16,39.6133333,-105.0161111,Littleton,CO,disk,10,Saucer spotted flying over 4 witnesses +2004-06-16,47.1208333,-117.3886111,Thornton,WA,disk,240,The object appeared to stay in the same place for at least 4 minutes. +2004-06-16,35.9197222,-88.7588889,Milan,TN,sphere,10,A chrome, sphere shaped object that flew into a small cloud. +2004-06-16,42.0347222,-93.6197222,Ames,IA,disk,180,1 disk shape object +2004-06-16,45.5236111,-122.675,Portland,OR,sphere,180,Object seen in sky over Downtown Portland Oregon moving very slowly coming from N.E. Direction to S.W. direction. Appeared silver in c +2004-06-16,33.4355556,-112.3488889,Avondale,AZ,circle,540,Estrella Mtn. Lights We caputred on tape !!! +2004-06-16,43.1338889,-70.9269444,Durham,NH,other,600,Large ship seen over Durham, New Hampshire +2004-06-16,36.8252778,-119.7019444,Clovis,CA,chevron,180,"V" shaped object with seven, dim, whitish lights, towing an orange dimpled disk that rolled from side to side. +2004-06-16,36.595,-82.1888889,Bristol,TN,other,240,MUFON/TN REPORT: Two joined objects spotted during nightly observations. +2004-06-17,41.5983333,-81.4186111,Willoughby Hills,OH,triangle,60,Triangle object, multiple witnesses, 100 feet from ground. Hovering over wooded area +2005-06-16,39.7011111,-89.1230556,Blue Mound,IL,triangle,120,Strange triangle ship petrifies me and ruins my cd player. +2005-06-16,34.2925,-80.3377778,Lucknow,SC,disk,86400,Sunny day UFO sighting in Cassatt, South Carolina. +2005-06-16,60.6902778,-151.2888889,Nikiski,AK,triangle,900,three of us were traveling to town when we witnessed what seemed to be a star shaped bright light. As we approched the light, we +2005-06-16,34.0966667,-117.7188889,Claremont,CA,circle,10,Unknown ball of light hovers over Mt. Baldy +2005-06-16,40.7302778,-80.3102778,New Brighton,PA,light,5,Flashing, color-changing lights and explosions in the sky. +2005-06-16,38.3325,-82.9486111,Grayson,KY,triangle,90,Three non-blinking lights in sky, moving in unison with no noise. +2006-06-16,41.9852778,-72.4466667,Somers,CT,diamond,120,1-2 diamond objects, low on western horizon, changing colors, hovering, and within 1/2 nearby air force jets headed toawrds object +2006-06-16,34.2572222,-118.4661111,Mission Hills,CA,light,15,lights mission hills +2006-06-16,26.1586111,-97.8236111,La Feria,TX,light,240,Shining moving light, bouncing from side to side gliding at a fast pace +2006-06-16,41.45,-71.45,Narragansett,RI,light,900,Bright stationary amber light then fading out +2006-06-16,31.7244444,-96.165,Fairfield,TX,formation,4,4 lights racing across the sky, then stop for a split second, one semicircles the others then all take a 90 degree turn and race away. +2006-06-16,47.6816667,-122.2075,Kirkland,WA,light,60,bright light followed by a series of other lit up objects +2007-06-16,46.8722222,-113.9930556,Missoula,MT,light,10,Bright white light moving steadily east and up, disappearing into space, over Missoula, MT. +2007-06-16,32.77,-108.2797222,Silver City,NM,unknown,2700,Strange happenings on I-25 in New Mexico +2007-06-16,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,600,small flat black disc takes odd flightpath over my neighborhood. +2007-06-16,32.2216667,-110.9258333,Tucson,AZ,light,300,I was sitting in my backyard talking with a friend on my cell phone. Four bright red lights in the southwest caught my eye. The lights +2007-06-16,37.6941667,-122.0852778,Castro Valley,CA,triangle,15,There was a red triangular spacecraft with black wings on the rear. +2007-06-16,40.1238889,-86.0133333,Cicero,IN,light,120,The object was a light red or peach colored light in the southern sky. +2007-06-16,42.8422222,-84.5691667,Dewitt,MI,circle,180,reddish circular oblct, appearing as if on fire, low in sky over Dewitt Michigan visible for 2-3 minutes +2008-06-16,38.5766667,-92.1733333,Jefferson City,MO,unknown,1800,Large number of UFO's +2008-06-16,28.5380556,-81.3794444,Orlando,FL,light,600,Glowing bluish white light blinking in and out of view , all over the early morning sky +2008-06-16,41.8088889,-88.0111111,Downers Grove,IL,egg,120,In the morning I looked outside my window to see a white mailbox shaped object with thin black lines and thick red lines floating above +2008-06-16,40.5861111,-98.3880556,Hastings,NE,unknown,17,((HOAX)) 3 UFO's appeared in the space of 15 seconds. 500 Lights On Object0: Yes +2008-06-16,34.1208333,-93.0536111,Arkadelphia,AR,unknown,60,Two greys spotted near caddo river (perhaps doing ground survey?) ((NUFORC Note: Probably not a serious report. PD)) +2008-06-16,34.1447222,-84.9330556,Euharlee,GA,disk,30,cilender shaped object in sky turned and appeared as a disk then sped off. +2008-06-16,39.6136111,-86.1066667,Greenwood,IN,sphere,120,five bright lights vanishing and reappearing moving different directions +2008-06-16,33.7091667,-117.1963889,Sun City,CA,fireball,120,Fireball and something "falling" from it viewed over Sun City California, June 16, 2008 +2008-06-17,38.364444399999996,-98.7644444,Great Bend,KS,triangle,6,Three bright lights hovering over Great Bend Kansas.. +2009-06-16,34.8986111,-117.0219444,Barstow,CA,oval,180,I saw five yellow lights in a row up in the sky. The five lights became one and then disappeared. There was not a cloud in the sky. +2009-06-16,48.7597222,-122.4869444,Bellingham,WA,light,180,A bright light moving in the night sky, and was joined by other lights. +2009-06-16,37.6391667,-120.9958333,Modesto,CA,flash,180,Glowing different colors alien space craft. ((NUFORC Note: Possible sighting of "twinkling" stars? PD)) +2009-06-16,40.8680556,-73.4261111,Huntington,NY,circle,300,Bright blue light visible during daylight hours moving across sky, +2009-06-16,30.4211111,-87.2169444,Pensacola,FL,changing,120,Shapshifting white lights moving over Pensacola Pier +2009-06-16,38.0194444,-122.1330556,Martinez,CA,light,1500,Bright Red Light Hovering in the sky +2010-06-16,36.9711111,-90.5494444,Williamsville,MO,sphere,15,Amber orb floats quickly across the sky +2010-06-16,37.0583333,-120.8488889,Los Banos,CA,other,300,Large orange and yellow dome in Los Banos California. +2010-06-16,41.85,-87.65,Chicago,IL,oval,120,Black object floating around airplane. +2010-06-16,33.9813889,-81.2363889,Lexington,SC,cigar,30,Black cigar shaped object hovering after storm over Red Bank in Lexington South Carolina +2010-06-16,46.0130556,-91.4844444,Hayward,WI,formation,120,Amber Lights in Northern Wisconsin +2010-06-16,43.1338889,-70.9269444,Durham,NH,other,600,((HOAX??)) Large ship seen over Durham, New Hampshire +2010-06-16,40.8611111,-79.8955556,Butler,PA,sphere,300,Orb and 6 Jet Fighters Spotted +2011-06-16,32.9477778,-112.7161111,Gila Bend (West Of),AZ,triangle,600,V-shaped craft makes banked turns at a high rate of speed while buzzing rooftops of businesses and homes. +2011-06-16,35.7477778,-95.3694444,Muskogee,OK,light,180,Bright light in the morning sky +2011-06-16,48.2933333,-122.6419444,Oak Harbor,WA,sphere,30,Ball of light shadowing an airliner +2011-06-16,40.31,-75.1302778,Doylestown,PA,changing,900,Dark in color, maybe black. Looked like a long, rectangular balloon. Kept bending with the wind. Seemed to be traveling straight down F +2011-06-16,33.8941667,-78.4269444,Ocean Isle Beach,NC,light,1800,Lights at Ocean Isle Beach +2011-06-16,33.8352778,-117.9136111,Anaheim,CA,disk,180,UFO seen flying over Disneyland during fireworks show. +2011-06-16,30.6322222,-87.0397222,Milton,FL,formation,300,I saw a row of orange lights off in the distance. +2011-06-16,40.1719444,-84.9813889,Winchester,IN,other,30,Orange-red "star-like" light moving at high rate of speed observed in East-Central Indiana, USA on 6/16/11 +2011-06-16,41.5286111,-109.4655556,Green River,WY,sphere,45,Two red orbs traviling west, over Green River, Wyoming. +2011-06-16,38.7838889,-90.4811111,St. Charles,MO,disk,8,Small disk, 5 bright blue lights on side, moved fast and smooth. +2011-06-17,40.5866667,-122.3905556,Redding,CA,light,1200,Bright light that came from the west and traveled east. ((NUFORC Note: International Space Station?? Hoax?? PD)) +2012-06-16,39.0911111,-94.4152778,Independence,MO,light,60,Strange light above rural Independence. +2012-06-16,27.3361111,-82.5308333,Sarasota,FL,unknown,120,UFO as bright as star with green tail of fire over Siesta key +2012-06-16,30.2263889,-93.2172222,Lake Charles,LA,circle,4,Object shrunk in size, and flew away at an amazing speed. +2012-06-16,39.9416667,-94.83,Savannah,MO,oval,45,Light in the sky +2012-06-16,38.7747222,-120.2958333,Kyburz,CA,unknown,60,Asteroid in the daytime? +2012-06-16,33.3702778,-112.5830556,Buckeye,AZ,fireball,9000,Red Fire Orbs over Arizona +2012-06-16,28.5152778,-82.5730556,Weeki Wachee,FL,fireball,120,Pulsating ball of light WNW sky of Weeki Wachee (Spring Hill)Florida +2012-06-16,44.8408333,-93.2980556,Bloomington,MN,unknown,60,Two reddish lights traveling slowly across sky about 40* high. Closer than airplanes fly in formation. +2012-06-16,37.3394444,-121.8938889,San Jose,CA,fireball,300,Three orange/red orbs in form of a triangle in the night sky. +2012-06-16,41.0647222,-72.4266667,Southold,NY,fireball,180,Fast moving noiseless fire-ry orange glowing ball flying in air +2012-06-16,33.7475,-116.9711111,Hemet,CA,changing,120,RED FIREBALL IN HEMET, CA, SKY. +2012-06-16,39.6291667,-75.6586111,Bear,DE,formation,420,Dull Orange Cicular Objects Fly in Formation over New Castle County +2012-06-16,43.7547222,-71.3972222,Moultonborough,NH,teardrop,120,On 06/19/2012 at approximately 2145 hrs, I was alone for a walk in the Lakes region of New Hampshire (Winnepasauke). I became slightly +2012-06-16,38.1302778,-121.2713889,Lodi,CA,fireball,600,At approx 9:50 pm 2 people noticed what looked like fireballs coming out of the Northwest sky moving slowly. First came on followed by +2012-06-16,44.8011111,-68.7783333,Bangor,ME,triangle,600,These photos were taken by my fraternity brother in Bangor, ME on the evening of June 16, 2012 around 22:00 hours. He didn't want to t +2012-06-16,44.0583333,-121.3141667,Bend,OR,circle,420,Unusual Orange Orbs spotted over Bend, OR +2012-06-16,47.1719444,-122.5172222,Lakewood,WA,circle,300,UFO Sighting 6/16/2012 in Lakewood/Tacoma, WA --2 Glowing Orange Circular Objects seen 3-5 minutes +2012-06-16,33.4222222,-111.8219444,Mesa,AZ,triangle,2,The triangle shaped craft sat there for a couple seconds and then shot off really really fast. +2012-06-16,41.2222222,-73.0569444,Milford,CT,circle,300,Flaming orange figure disappears in cloudy sky fast +2012-06-16,39.9402778,-82.0133333,Zanesville,OH,fireball,120,Bright orange "fireball" seen at dusk by 2 in Zanesville, Ohio +2012-06-16,41.5491667,-84.1416667,Wauseon,OH,circle,5,White light seen by 1 person +2012-06-16,38.545,-121.7394444,Davis,CA,triangle,300,3 white lights and 1 red seen over field in Davis +2012-06-16,36.175,-115.1363889,Las Vegas,NV,disk,14400,Numerous objects flashing lights hovering for hours. ((NUFORC Note: Twinkling star, we suspect. PD)) +2012-06-16,42.6522222,-78.8972222,Eden,NY,formation,240,Two unknown sets of amber lights +2012-06-16,34.165,-84.8,Cartersville,GA,sphere,900,Slow moving fireball in the sky. +2012-06-16,34.6719444,-94.7625,Muse,OK,light,95,Strobe light in the southern sky! +2012-06-16,32.7152778,-117.1563889,San Diego,CA,light,600,Dancing lights that would fly around and then merge into one light +2012-06-16,41.6005556,-93.6088889,Des Moines,IA,circle,35,3 circular orange reddish lights in the shape of a triangle seen in Des Moines, IA near the State Capitol building. +2012-06-16,44.8755556,-91.9191667,Menomonie,WI,fireball,120,Orange Fireball Flies Over Menomonie Wisconsin +2012-06-16,33.7455556,-117.8669444,Santa Ana,CA,light,240,Yellowish/orange spheres they were more than 10 +2012-06-16,39.8169444,-75.1555556,Woodbury Heights,NJ,circle,60,Bright red object fades to black, appears circular and is silent. +2012-06-16,42.7797222,-73.8461111,Niskayuna,NY,light,8,Bright white light / Extreme Acceleration +2012-06-16,41.6066667,-80.5725,Andover,OH,fireball,60,Bright orange fireball flies across the dark evening sky +2013-06-16,42.1291667,-80.0852778,Erie,PA,fireball,240,3 silent fireballs over Lake Erie shoreline. +2013-06-16,42.2708333,-83.7263889,Ann Arbor,MI,triangle,5,A triangular shaped craft containing one lit circle at each vertex was spotted flying over a park just after midnight. +2013-06-16,41.1411111,-73.2641667,Fairfield,CT,oval,60,NA +2013-06-16,39.5538889,-104.9688889,Highlands Ranch,CO,oval,300,Black oval or football shaped object seen very high in southwestern sky Father's Day afternoon +2013-06-16,45.1544444,-87.7944444,Porterfield,WI,cigar,180,Tube Shaped Craft Seen in Northern Wisconsin. +2013-06-16,42.0883333,-87.9805556,Arlington Heights,IL,unknown,120,Black object flying toward clouds abruptly stop and then descend staight down and disappear. +2013-06-16,20.8783333,-156.6825,Lahaina,HI,changing,1200,White-ish/blue lighted sphere that changed to a white triangle over west Maui +2013-06-16,41.1416667,-87.875,Bourbonnais,IL,circle,600,We saw 2 balls of white/yellow light in the sky, one disappeared while the other moved further away out of sight. +2013-06-16,43.0388889,-87.9063889,Milwaukee,WI,diamond,240,Object was hovering over 500 feet off ground, had no wings, no tail, fire coming from bottom, and certainly intelligently controlled. +2013-06-16,36.175,-115.1363889,Las Vegas,NV,fireball,60,Single silent fireball disappeared in Las Vegas headed north. +2013-06-16,32.2216667,-110.9258333,Tucson,AZ,light,300,Sabino Canyon Tucson Arizona night UFO sighting. +2013-06-16,41.8477778,-74.5483333,Grahamsville,NY,light,30,Faster than satellite, constant speed, constant direction changing bright to dim randomly for 5 to 10 sec at a time. +2013-06-16,41.6216667,-83.7116667,Holland,OH,formation,240,Formation of 13 bright white lights extending 1.5 miles or more. +2013-06-16,45.8405556,-119.2883333,Hermiston,OR,light,60,Two objects moving across the night sky at very high speed +2013-06-16,42.5,-96.4,Sioux City,IA,triangle,900,A triangular UFO was found hovering in the sky and remained there for several minutes until flying out of sight. +2013-06-16,41.6797222,-87.4944444,Whiting,IN,light,45,Unnaturally moving blue lights. 2 of them! +1953-06-17,29.3011111,-94.7975,Galveston,TX,cigar,180,It had been my habit before I opened my place of business each morning to do my early morning fishing. This one particular morning I ha +1955-06-17,40.3083333,-88.1558333,Rantoul,IL,light,600,We had fallen out to the parking lot awaiting marching orders to go to (chow) it was still dark and we saw a light approaching from the +1961-06-17,41.85,-87.65,Chicago,IL,disk,300,Disk shapped saucer over the city of Chicago. +1974-06-17,39.8302778,-75.2408333,Paulsboro,NJ,oval,120,Saw a large oval craft flying in a straight line above the clouds, near Philadelphia, PA +1976-06-17,38.1688889,-86.99,Dale (South Of),IN,other,180,GIANT FLYING ROCK FORMATION +1977-06-17,35.9175,-76.2525,Columbia,NC,oval,900,As I stood in my yard the object came toward me. Hovered above my yard at 100ft for ten mins. Rotated west and moved on. +1977-06-17,26.6155556,-80.0572222,Lake Worth,FL,cigar,900,Ball of "Fire " turns to Cigar - shaped craft +1981-06-17,29.9938889,-90.2416667,Kenner,LA,circle,420,Round Craft over Hwy in Louisiana,viewed from 2 blocks away. +1984-06-17,41.4527778,-82.1825,Lorain,OH,circle,420,can't be any ship we can build?? +1990-06-17,39.6894444,-84.1688889,Kettering,OH,other,900,Flying object shaped like a pagoda flew over neighborhood trees and homes. +1994-06-17,40.4147222,-74.3658333,Old Bridge,NJ,disk,300,silent, slow moving disc, with bluish green glow seen in old bridge NJ on june 17th 1994. +1996-06-17,41.4941667,-87.5216667,Dyer,IN,diamond,30,a black shaped object almost triangular shaped but slightly diamond shaped hovering above a tree by a park. +1996-06-17,32.7152778,-117.1563889,San Diego,CA,light,1200,Man witnesses a tiny, very bright obj. moving across sky. Obj. gains alt., brightens, remains motionless 20 min. Suddenly disappears. +1997-06-17,38.2325,-122.6355556,Petaluma,CA,light,180,The object, which was about 30 degrees above the horizon and towards the south, moved. It shot from its stationary position at a speed +1997-06-17,33.9830556,-118.0958333,Pico Rivera,CA,chevron,15,black,low flying from north to south,like from civic center to long beach silent,pencil thin very quick less then 1000ft elev.? appeard +1997-06-17,34.54,-112.4677778,Prescott,AZ,fireball,300,large, bright, green "shooting star", 5 minutes later shock wave + rattling windows. seen to the south. +1997-06-17,45.5236111,-122.675,Portland (Southeast),OR,light,300,Large brite white lights grouped together W/ one red light underneath. +1998-06-17,42.4972222,-82.9372222,Roseville (Memorial Field),MI,light,300,Me and my friend and his brother were swimming in my pool around 1:30 a.m when we saw a oval shaped object hover over my pool about 125 +1998-06-17,44.5647222,-123.2608333,Corvallis,OR,sphere,5,a green sphere heading from east to west at a very high speed, +1998-06-17,38.9783333,-76.4925,Annapolis,MD,teardrop,30,On the night of June 17th me and a few of my family members decided to take a walk to this park.to go to this park you had to walk thro +1999-06-17,32.8383333,-116.9730556,Santee,CA,sphere,180,I saw a light in the sky. It came closer until it was about 200 ft. away and about 100 ft. off the ground. It was perfectly spherical +1999-06-17,26.1005556,-97.29,Laguna Vista,TX,disk,1200,GOING OUTSIDE I LOOKED AT A PASSING AIRPLANE AND THEN WAY TO THE RIGHT AND MUCH HIGHER THAN THE PLANE I SAW OVER 20 SAUCER SHAPED OBJEC +1999-06-17,41.2619444,-95.8608333,Council Bluffs,IA,circle,60,Looking at Venus with scope and spotted a black sphere moving through the field of view very quickly. +1999-06-17,40.015,-105.27,Boulder,CO,light,5,June 17, 1999 Bright capsul shaped object which I thought was a star brightened and took off, then disappeared. +1999-06-17,37.9747222,-87.5558333,Evansville,IN,light,60,I was outside at work at the specified time looking up at approximately a 75 degree angle facing east. I noticed a small group of sta +2000-06-17,43.7508333,-87.7144444,Sheboygan,WI,unknown,90,Unusual Three points of light formation travel across sky in a northeast direction at 02:50 6/17/00 +2000-06-17,45.3841667,-122.7627778,Tualatin,OR,disk,5,Small silver disk shape far off, seen on a clear sunny afternoon for a few seconds, blinked out, did not reappear. +2000-06-17,34.1616667,-118.0519444,Sierra Madre,CA,sphere,600,Three lumious spheres seen in afternoon sky over Los Angeles +2000-06-17,42.4852778,-83.3772222,Farmington Hills,MI,changing,600,A silent flying/ hovering dark object that changed shape and lacked lights or color. +2000-06-17,27.79,-97.6686111,Robstown,TX,sphere,600,not conventional aircraft.........seen from outdoor patio +2000-06-17,40.115,-111.6541667,Spanish Fork,UT,sphere,2,While pulling out of my driveway I observe a pearl white sphere descending at an angle moving slower than a meteor. +2001-06-17,38.4805556,-102.7813889,Eads,CO,triangle,300,Very large triangular object, no lights, no sound, extreme acceleration. +2001-06-17,40.2452778,-75.65,Pottstown,PA,cigar,600,white, cigar shaped unidentified flying object over Pottstown, Pa. +2001-06-17,27.9472222,-82.4586111,Tampa,FL,diamond,60,UFO IN TAMPA ASSENDED INTO NIGHT SKY 6-17-01 +2001-06-17,36.595,-82.1888889,Bristol,TN,fireball,120,brilliant green object going down S.W. of Bristol +2001-06-17,33.9561111,-83.9880556,Lawrenceville,GA,circle,2,a round blue object shot accross the sky 200-300 miles an hour +2001-06-18,40.7141667,-74.0063889,New York City,NY,disk,30,I have a video clip of a UFO (seen and taped from a helicopter containing an unknown man and a woman). The tape shows clearly the UFO d +2002-06-17,18.2294444,-65.9213889,Juncos (Puerto Rico),PR,light,15,I saw an object with white lights and a white trail behind it as it flew... +2002-06-17,40.5886111,-83.1286111,Marion (Rural Area 10 Miles North Of),OH,disk,120,This one is a mystery to me. +2002-06-17,42.3313889,-83.0458333,Detroit,MI,triangle,1,Saw UFO with eyes closed, woke me up with a start from dead dreamless sleep, i live alone! +2002-06-17,37.4994444,-91.8569444,Licking,MO,light,120,Three large bright lights were seen moving vertically in the sky, vanishing as quickly as they appeared. +2002-06-17,41.2916667,-72.3766667,Old Saybrook,CT,light,20,UFO Sighting Monday Evening! +2002-06-17,40.3013889,-79.5391667,Greensburg,PA,circle,1800,June 17th 2002 21:25 saw ball of light in west-north-west sky for 10-30 minutes. +2002-06-17,32.6991667,-108.1313889,Hurley,NM,other,3,Check this meteor out! +2002-06-17,39.7597222,-121.6208333,Paradise,CA,formation,240,There were three steady star blue lights in a triangular formation traveling from north to south before midnight +2003-06-17,33.7358333,-118.2913889,San Pedro,CA,disk,60,a U.F.O half covered by a could with about 11 lights one in middle and then surrounding +2003-06-17,39.0319444,-76.5030556,Arnold,MD,other,25,Strange sounding looking shade +2003-06-17,44.0169444,-107.9547222,Worland,WY,light,15,The object was a dim point of light that grew to a brightness of twice what Venus would be and then disappeared & lasted ~ 15 seconds. +2004-06-17,47.1855556,-122.2916667,Puyallup,WA,sphere,1200,2 possible crafts seen over Puyallup,WA +2004-06-17,32.9627778,-117.035,Poway,CA,light,105,I was playing basketball and when I shot, I looked in the air and saw a little dot of light moving between the clouds. It moved forward +2004-06-17,33.4483333,-112.0733333,Phoenix,AZ,sphere,600,Third sighting this week: Saw two orange orbs (non-moving and silent) in sky over southwest Phoenix. +2004-06-17,40.7858333,-76.5183333,Ranshaw,PA,sphere,180,Fast moving UFO followed by two other objects which appeared to be domestic... +2004-06-17,40.5866667,-122.3905556,Redding,CA,light,1800,Star that moves in circles. +2005-06-17,41.8088889,-88.0111111,Downers Grove,IL,circle,120,Green and White Lights in Formation Over Strip Mall +2005-06-17,30.6052778,-94.9463889,Goodrich,TX,light,120,3 star like objects moving in unison with precision to the north, no change in direction, like small constellation moving fast +2005-06-17,38.7508333,-77.4755556,Manassas,VA,other,180,black cube that flashed coded lights +2005-06-17,34.0522222,-118.2427778,Los Angeles,CA,disk,300,Hovering black object spotted over my house. +2005-06-17,37.9136111,-89.8219444,Chester,IL,disk,30,a small, yellow, plain disk that hovered slowly moving down the back road. +2005-06-17,39.7391667,-104.9841667,Denver,CO,oval,600,this thing caught my eye and i was stunned to see this object in the sky ,the way it moved told me it was not an airplane!!!!!!!!! +2005-06-17,38.7011111,-90.3622222,Overland (St. Louis),MO,sphere,600,Slow moving sphere shaped object that lit up moving very slowly from the Northwest to Southeast in St. Louis Missouri. +2005-06-17,41.6475,-88.0894444,Romeoville,IL,sphere,600,Two brite pulses of light in a circular shape seen for 5-10 minutes moving away from each other at a good rate of speed +2005-06-17,34.7247222,-100.5336111,Memphis,TX,triangle,10,ufo in a small town +2005-06-17,33.8302778,-116.5444444,Palm Springs,CA,other,60,AN OBJECT THAT I THOUGHT WAS A SIDEWAYS AIRPLANE CAME CLOSE TO HITTING MY CAR. +2005-06-17,40.7141667,-74.0063889,New York City (Brooklyn),NY,unknown,40,possible ufo ?? +2005-06-17,37.6391667,-120.9958333,Modesto,CA,sphere,10,Orange translucent sphere's traveling at high speed just below the clouds in the direction of 135 degrees SE. +2006-06-17,30.0858333,-94.1016667,Beaumont,TX,light,120,I Brought my dog out at the time entered In the description to get some fresh air,no longer than a few seconds while we were outside st +2006-06-17,45.4208333,-122.6694444,Lake Oswego,OR,light,5,A white Ord light that keeps passing over +2006-06-17,32.4205556,-104.2283333,Carlsbad,NM,light,1200,2 red-orange "dots"& one white "dot" over Carlsbad, New Mexico... +2006-06-17,45.6388889,-122.6602778,Vancouver,WA,disk,1200,Clear or transparent 16 foot long 4 foot wide thing was 30 feet away slowly traveling towards the river while i visited mom~inla +2006-06-17,25.7738889,-80.1938889,Miami,FL,disk,60,A pair of four spot lights under a saucer shaped aura - located due north in west Miami-Dade Fla +2006-06-17,41.2752778,-75.8505556,Plains,PA,circle,600,Ring Shaped Black UFO over NE PA +2006-06-17,41.2752778,-75.8505556,Plains,PA,other,600,Black rotating donut or ring shaped object drifting slowly across the sky +2006-06-17,32.4205556,-104.2283333,Carlsbad,NM,sphere,7200,STATIONARY BLINKING SOS OR MORRIS CODE MESSAGE FROM SPACE +2006-06-17,41.8177778,-88.1733333,Warrenville,IL,other,3600,White Light Streak/Burst +2007-06-17,46.51,-114.0922222,Stevensville,MT,triangle,960,6/17/07 WAS OUT SIDE SEING MY GIRL OFF TO WORK AS SHE LEFT I LOOKET UP IN THE SKY ((NUFORC Note: Perhaps not a serious report?? PD)) +2007-06-17,39.1141667,-94.6272222,Kansas City,KS,other,3600,2 F - 16 fighter jets and black helicopter Circle in formation +2007-06-17,48.1525,-122.1813889,Smokey Point,WA,other,600,witnessed a cloaked object (like the predator movie/bent light), all the cat's in our area were following it. +2007-06-17,40.6627778,-73.5519444,Merrick,NY,oval,120,Father's Day Sighting, Long Island, NY +2007-06-17,42.2119444,-88.2380556,Cary,IL,light,35,Very Bright White Light Making No Noise At Low Altitude +2008-06-17,47.9130556,-122.0969444,Snohomish,WA,light,1200,Bright object observed over wooded park area near Clearview, WA in early morning +2008-06-17,36.8055556,-114.0663889,Mesquite,NV,disk,240,Large gray domed disc that was perfectly still and made no noise 2460 feet away and 500 feet high. +2008-06-17,32.6788889,-115.4980556,Calexico,CA,triangle,120,i was outside and i waslooking at the sky when i see the lights in shaped of a triangle and it hovered slowly from south to the north. +2008-06-17,42.2966667,-89.6211111,Freeport,IL,unknown,20,circle cluster of bright lights change to star like cluster and disappears! +2008-06-17,32.2216667,-110.9258333,Tucson,AZ,disk,300,White disk shaped object traveling from the north to the south +2008-06-17,42.1655556,-88.2941667,Algonquin,IL,teardrop,10,((HOAX??)) It was a glowing yellow object that left a thin vapor trail that evaporated soon after it dissipeared. +2008-06-17,32.2216667,-110.9258333,Tucson,AZ,triangle,420,more details on report filed two hours earlier +2008-06-17,32.2216667,-110.9258333,Tucson,AZ,triangle,420,Saw huge mass with many rapidly blinking lights moving slowly and soundlessly accross sky. +2008-06-17,34.9977778,-78.3236111,Clinton,NC,fireball,10,Clinton NC, around 21:31 hours an orange circular object was spotted west of U.S. Highway 421, it remained visible for only 10 seconds +2008-06-17,41.665,-86.0758333,Osceola,IN,oval,120,Red-Orange lighted oval with haze around it moving slowly across treetops, then speeding up, no sound. +2008-06-17,33.4483333,-112.0733333,Phoenix,AZ,formation,5,3 orange lights in formation over the Estrella mountain range. +2008-06-17,42.0111111,-87.8405556,Park Ridge,IL,triangle,135,((HOAX??)) Triangle Hovers & Shoots Out A Beam Of Light & Follows A Commercial Flight. +2008-06-17,33.2447222,-81.3588889,Barnwell,SC,rectangle,180,Rectangle shaped object in the south sky, followed by two jets. +2009-06-17,44.9430556,-123.0338889,Salem,OR,chevron,600,Vague chevron object with strange colored lights and erratic movement seen, with smaller lights/objects emitted from it as it traveled. +2009-06-17,41.6894444,-70.1569444,South Dennis,MA,other,300,3 sets of multicolored flashing lights flew silently over Dennis-definately not airplanes! +2009-06-17,41.85,-87.65,Chicago,IL,other,120,Flaming dot in the night sky +2009-06-17,33.8158333,-78.6802778,North Myrtle Beach,SC,light,2700,Series of amber (orange) lights over North Myrtle Beach S,C +2009-06-17,33.8158333,-78.6802778,North Myrtle Beach,SC,light,10,In the clear night sky, 3 bright lights appeared in a triangle formation, moved to a line formation, and disappeared to thunder. +2010-06-17,35.4194444,-105.2072222,Los Montoyas,NM,disk,20,10-15 miles S.E. of Las Vegas, New Mexico. Silver disc or round, +2010-06-17,41.8386111,-94.1069444,Perry,IA,cylinder,1200,36 bright objects flying across the sky in a short amount of time +2010-06-17,37.2397222,-96.9952778,Winfield,KS,other,300,Satellite sighting, NOT ISS, Winfield, KS 06/16 20:30 PM due overhead east to west. +2010-06-17,47.6063889,-122.3308333,Seattle,WA,sphere,300,Observed motionless black sphere in sky. +2010-06-17,40.0991667,-83.1141667,Dublin,OH,cigar,120,Appearing in the west moving east a cigar shaped object reddish orange in color moving fast followed by what appeared to be a F 16 +2010-06-17,39.2397222,-76.6805556,Halethorpe,MD,light,7200,brilliant green lights in the sky from east coast. ((NUFORC Note: Possible sighting of Venus, which currently is in the WNW sky. PD) ) +2010-06-17,41.8922222,-88.4722222,Elburn,IL,fireball,60,A large, amber glowing circular flying object was spotted, staying stationary for 40 secs before shifting to the left and disappearing +2010-06-17,33.9533333,-117.3952778,Riverside,CA,light,120,Light blue object, suddely turns brilliant white, leaves trail and wake +2011-06-17,40.3041667,-74.1008333,Tinton Falls,NJ,circle,600,Shaped flying saucer with brite multi colored lights blinking around it, then turns into grey blimp, then disappears +2011-06-17,33.9163889,-78.1613889,Oak Island,NC,light,2,Bright white light seen moving out from above cloud. +2011-06-17,36.0958333,-79.2672222,Mebane,NC,unknown,60,weird light flys by sounds like a Cessna. +2011-06-17,45.8661111,-122.405,Yacolt,WA,disk,1200,Bright moving star-like craft moved across the sky at low altitude wobbling-line course. +2011-06-17,30.4505556,-91.1544444,Baton Rouge,LA,circle,45,Unknown round object followed by two jets over Baton Rouge flying northwest at approx 11:00 AM +2011-06-17,41.5822222,-85.8344444,Goshen,IN,light,1,Startling white light traveling with incredible speed +2011-06-17,37.3433333,-85.3419444,Campbellsville,KY,other,30,Three spheres in shape of triangle going slow at first then going extremely fast and disappearing. +2011-06-17,40.8930556,-74.5822222,Wharton,NJ,triangle,180,Bright red UFO spotted over Northern New Jersey +2011-06-17,43.1755556,-76.1197222,Cicero,NY,fireball,120,We live across the road from a lake. We were both standing on our back deck and it is 9:30 at night so it is dark and all of a sudden w +2011-06-17,35.6919444,-84.8608333,Spring City,TN,fireball,240,Bright red, orange near Watts Bar in Spring City, TN +2011-06-17,33.8491667,-118.3875,Redondo Beach,CA,fireball,120,Two amber/red balls flying east from Redondo Beach towards Los Angeles +2011-06-17,44.0522222,-123.0855556,Eugene,OR,light,30,lights in the night sky near Mount Piscah, Oregon +2011-06-17,44.4758333,-73.2125,Burlington,VT,light,300,Formation of flying incandescent dots sighted +2012-06-17,43.6725,-111.9141667,Rigby,ID,unknown,7200,Many yellow and red lights seen by Snake River. +2012-06-17,36.03,-92.8044444,Saint Joe,AR,circle,60,UFO Circular light formation 6-16-2012 sighting @ midnight +2012-06-17,47.8602778,-122.2030556,Mill Creek,WA,sphere,30,A flame inside a clear sphere moving relatively slowly and relatively low (although my cell video makes it look quite high and far away +2012-06-17,33.6602778,-117.9983333,Huntington Beach,CA,sphere,180,Orange glowing balls moving together +2012-06-17,36.4247222,-121.3252778,Soledad,CA,sphere,90,Red, blue, and white light flashing rapidly the object stayed steady in the sky going up, down, left, right ((NUFORC Note: Star?? PD) +2012-06-17,35.3394444,-97.4863889,Moore,OK,circle,30,Bright red orb in sky that illuminated through windows of house. +2012-06-17,39.3722222,-104.8555556,Castle Rock,CO,other,120,Red Hot Air Balloon looking UFO in Castle Rock, CO +2012-06-17,39.2902778,-76.6125,Baltimore,MD,sphere,600,Our alien ancestors are really starting to make there present felt. +2012-06-17,42.3369444,-83.2733333,Dearborn Heights,MI,disk,240,saucer shape,shinny 3/4 size of a 737.and still light out. +2012-06-17,39.6847222,-83.9297222,Xenia,OH,rectangle,180,I noticed none of these objects while filming and my gut tells me there was some external 'influence' which did so. +2012-06-17,29.1869444,-82.1402778,Ocala (Driving Up I-75, Location Not Exactly Known),FL,light,30,Bright red light moving in a straight path across the sky, and suddenly vaporizing into thin air. +2012-06-17,37.3394444,-121.8938889,San Jose,CA,oval,900,South San Jose, bright orb flying over mountains near Almaden Valley. +2012-06-17,45.2897222,-122.3325,Estacada,OR,light,7,Very bright &quot;star&quot; fades and dissapears. +2012-06-17,40.6936111,-89.5888889,Peoria,IL,triangle,180,Several bright lights seen just above tree tops before quickly changing direction and disappearing +2012-06-17,43.0388889,-87.9063889,Milwaukee,WI,fireball,60,2 Orange/Amber Fireballs fly by Milwaukee, above Lake Michigan. +2012-06-17,39.4452778,-83.8286111,Wilmington,OH,unknown,300,Linear Light Area in the Sky +2012-06-17,42.9994444,-83.6163889,Burton,MI,light,1800,Three red lights seen appearing disappearing, and reappearing again in Burton, MI +2012-06-17,41.85,-87.65,Chicago,IL,light,30,Mysterious pink/purple orbs in the Chicago night sky traveling at great speed and high altitude. +2013-06-17,42.125,-72.75,Westfield,MA,disk,900,Large bright golden glowing object hovering over Barnes airport. +2013-06-17,41.0658333,-75.3202778,Scotrun,PA,sphere,600,There were 2 whilte lights round in shape about the size of baseballs dancing along the edge of the woods +2013-06-17,33.4483333,-112.0733333,Phoenix,AZ,disk,300,Visible fast slowed down rapid turn gone metallic figure. +2013-06-17,40.0375,-107.9125,Meeker,CO,egg,600,Meeker, Colorado, Football Shaped UFO on Video. +2013-06-17,39.2672222,-76.7986111,Ellicott City,MD,flash,3,Bright White Light Moving at High Rate of Speed East to West Above Route 40 @ Route 29 in Ellicott City. +2013-06-17,35.4833333,-86.4602778,Shelbyville,TN,diamond,7200,(Shelbyville) bright white orbs moving across sky and then disappearing, diamond shaped craft with lights over house. +2013-06-17,29.5425,-90.3380556,Cut Off,LA,fireball,120,My husband and I were otside checking out his FLIR when he noticed the fireball. He then points it out to me and all i can see is his o +2013-06-17,40.8,-96.6666667,Lincoln,NE,light,9000,West to east in the midwest +2013-06-17,44.8011111,-68.7783333,Bangor,ME,light,60,A flying, bright object was flying at a fast pace then slowed down and dimmed as it came to Earth. +2013-06-17,42.4927778,-92.3427778,Waterloo,IA,fireball,300,Glowing orange, orb like, fireball +2013-06-17,41.0144444,-75.6013889,Albrightsville,PA,fireball,10,Two red balls of fire streaking over our house. +1960-06-18,41.85,-87.65,Chicago,IL,oval,3,AS I LYE IN THE NIGHT, MY EYES FOCUSED ON HEAVEN, FIVE DISCS SILENTLY PASSED OVER SOMETIME ROUND ELEVEN. THESE OVAL SHAPED OBJECTS GAVE +1966-06-18,46.7833333,-92.1063889,Duluth,MN,disk,900,Intell at Winnepeg disembark and debreif all passangers from a NW 727 after a close encounter over Lake Superior. +1966-06-18,41.6977778,-72.7241667,Newington,CT,triangle,300,Sighting of UFO near the Connecticut Light & Power Bldg., Newington, CT +1976-06-18,46.9677778,-119.0386111,Warden,WA,light,900,Lights in the sky over Washington State +1981-06-18,32.2616667,-108.9138889,Mondel,NM,unknown,900,We did not make out an object, the light was too bright. +1983-06-18,39.3280556,-120.1822222,Truckee,CA,circle,30,Huge circular object with triangular shaped lite patterns on bottom humming sound bye lake outide of truckee CA +1985-06-18,43.7977778,-123.0583333,Cottage Grove,OR,sphere,10,Orange "golf ball" ufo's fly over Dorena Lake. +1987-06-18,39.6427778,-84.2866667,Miamisburg,OH,triangle,5400,Boomerang shaped craft over Miamisburg Ohio +1988-06-18,40.4797222,-85.6277778,Jonesboro,IN,light,600,Red star/planet like light moving from west to north. +1994-06-18,37.5536111,-77.4605556,Richmond,VA,oval,180,A bunch of us were playing B Ball and we all saw three OFOs lit up white. +1995-06-18,41.3472222,-73.6613889,Croton Falls,NY,oval,600,Blue lights zigzagging.. +1996-06-18,32.7152778,-117.1563889,San Diego,CA,circle,70,A brilliant white perfect circle changes to a circle within a circle and then becomes a distant dot in the sky. +1997-06-18,38.2855556,-85.8241667,New Albany,IN,cigar,3,the ufo was trailing the air craft +1998-06-18,47.6816667,-122.2075,Kirkland,WA,diamond,3,The crafts made no sound, we were watch stars saw oval plane, saw same 9/3/96 @2145hrs.nosound 6ufoformation-2second across horizonship +1998-06-18,36.6844444,-121.8011111,Marina,CA,teardrop,120,I witnessed a teardrop shaped object hurling across the night sky.... the event lasted for only a minute or so... it was strange... ver +1999-06-18,29.3011111,-94.7975,Galveston,TX,formation,1440,I went to the beach by myself.I was looking up and saw 5 U.F.O's in a bowling pin formation I looked at my watch and it was exactly 4:3 +1999-06-18,25.7738889,-80.1938889,Miami,FL,cigar,5,cigar shaped bright blue light shot across the sky and a trail followed +1999-06-18,40.5555556,-75.9822222,Hamburg,PA,disk,300,Husband and wife were driving N on Rte 61 and observed a black disc appx 4' diameter going S at about 600' high. Several miles to the S +1999-06-18,45.5236111,-122.675,Portland,OR,cigar,300,Sky was clear with the exception of a few clouds. A large silver/white cigar shaped craft moved from behind one of the clouds. No sound +1999-06-18,40.7141667,-74.0063889,New York City,NY,disk,60,In Battery Park saw Bronze colored Saucer In sky +1999-06-18,42.085,-76.0541667,Vestal,NY,cylinder,180,Observed similar long tubular object on 05/30/99. As it turned, the sun's rays reflected from a row of at least 20 windows along the s +1999-06-18,39.4736111,-118.7763889,Fallon,NV,light,300,single white light moving eratically west to east +1999-06-18,37.43,-122.2527778,Woodside,CA,fireball,180,Fireball with fire trail, moving on a southwesterly course then moving in loop back to the northeast and then toward earth +2000-06-18,40.7397222,-73.9358333,Sunnyside,NY,light,180,Odd Glowing Orb in front of Citybank building +2000-06-18,41.3305556,-74.1872222,Monroe,NY,rectangle,60,Large rectangular object with bright lights, flying low, extremely loud, and moving fast above us. ((NUFORC Note: Student report. PD +2001-06-18,35.7330556,-81.3413889,Hickory (Hwy 321 8mi S.),NC,chevron,120,juneᄱ.2:30p.flying wing traveled north(shadow only)nothing in sky! hwy321hickory,nc +2001-06-18,40.7141667,-74.0063889,New York City,NY,cigar,900,Star-like object in blue New York City sky. +2002-06-18,42.0083333,-91.6438889,Cedar Rapids,IA,formation,60,A formation of three black winged objects very high up was sighted on a clear morning. +2002-06-18,39.9205556,-105.0861111,Broomfield,CO,sphere,420,On 6/18/02 @ approx. 12:45 I saw a metallic sphere shaped object hoovering over Boulder CO. It then moved toward the east and vanished +2002-06-18,32.7833333,-96.8,Dallas,TX,circle,60,Saw a small bright object with fast erratic moves. +2002-06-18,47.6063889,-122.3308333,Seattle,WA,disk,600,black disk flipping over or rolling over end to end. +2002-06-18,34.1591667,-118.5002778,Encino,CA,triangle,60,Craft with 3 faint rectangle lights over Los Angeles +2002-06-18,43.5277778,-71.4708333,Laconia,NH,unknown,1800,Observed jet fighters discharging flares over the White Mountain area of NH +2002-06-18,43.7569444,-71.6886111,Plymouth,NH,fireball,180,Fireball in the sky behind the clouds???? Apparently the fighter jets saw it too????? +2002-06-18,43.7569444,-71.6886111,Plymouth,NH,fireball,600,Update to UFO sighting in Plymouth NH +2002-06-18,42.0411111,-87.69,Evanston,IL,circle,900,Bright circular object spotted hovering over a baseball field on a clear night for several minutes. +2002-06-18,43.5475,-71.4072222,Gilford,NH,sphere,900,Individual spherical yellow "Orbs", Linked movemnet of "Orbs", "Orbs" emitting other "Orbs" +2002-06-18,43.7547222,-71.3972222,Moultonborough,NH,changing,1200,Strange speeding objects emitting fireballs and smaller aircraft reported in Moultonborough New Hampshire. +2002-06-18,43.8005556,-70.1872222,Yarmouth,ME,sphere,180,Sphere object with flashing lights falling at a slow pace, apparently on fire, no indication of crashing impact, lost sight of object. +2002-06-18,42.2711111,-89.0938889,Rockford,IL,triangle,10,The object looked like a long triangle that was moving through the night sky. +2002-06-18,37.3394444,-121.8938889,San Jose,CA,circle,180,TOO MUCH ACTIVITY OVER NOTHERN CAL. SAN JOSE +2002-06-18,39.7597222,-121.6208333,Paradise,CA,light,180,I saw a pulsating light , marrow white in color traveling north to south around 2300 hours +2003-06-18,45.5236111,-122.675,Portland,OR,light,12,This object coud not have been a jet and it was not a "shooting star". +2003-06-18,33.8352778,-117.9136111,Anaheim,CA,triangle,300,I saw a triangular, see through object +2003-06-18,42.2141667,-83.15,Wyandotte,MI,sphere,600,Round Object seen hovering over steel factory. +2003-06-18,41.1411111,-73.2641667,Fairfield,CT,light,180,5 lights bouncing across the night sky. +2003-06-18,35.1552778,-120.6713889,Shell Beach,CA,triangle,300,Red light over ocean water +2004-06-18,39.0908333,-84.85,Lawrenceburg,IN,triangle,20,seen twice big with lights +2004-06-18,42.0072222,-87.9402778,Elk Grove (Rte. 53, Northbound),IL,disk,600,the object was floating back and forth ..... +2004-06-18,47.5675,-122.6313889,Bremerton,WA,circle,120,Silver Daylight Disk Seen within one Hour after Airforce #1 was in the area. +2004-06-18,36.5330556,-82.3269444,Blountville,TN,other,45,Three silver lobed shaped +2004-06-18,46.9813889,-123.6013889,Montesano,WA,changing,120,UFO Filmed Over Washington State. +2004-06-18,31.5686111,-93.4838889,Many,LA,sphere,300,Metallic sphere with smoke/steam tail, very bright. +2004-06-18,36.5330556,-82.3269444,Blountville,TN,other,55,tri lobed silver object +2004-06-18,39.9522222,-75.1641667,Philadelphia,PA,disk,25,Concave metallic disc spoted June 18th 2004 +2004-06-18,39.9522222,-75.1641667,Philadelphia,PA,disk,30,a friend and I saw a diskus shaped UFO, a black ring with a silver inside which was missing an inside, then just suddenly vanished. +2004-06-18,39.9522222,-75.1641667,Philadelphia,PA,disk,30,Silver disc with indented center +2004-06-18,41.9583333,-70.6677778,Plymouth,MA,egg,600,We saw an object that was almond shaped and was illuminated like the moon hovering across the sky. +2004-06-18,40.2291667,-74.9372222,Newtown,PA,light,5,Looking out at the horizon a saw a double blinking light far off rising above the treeline (20*)after 2 blinks (i initially thought it +2004-06-18,34.8697222,-111.7602778,Sedona,AZ,light,60,orange glowing craft follows planes over central arizona +2004-06-18,45.5608333,-94.1622222,St. Cloud,MN,light,5,I saw a light in the sky that traveled in a straight line. This light lasted approx. 5 seconds. this is the second time in a month +2005-06-18,42.1947222,-122.7083333,Ashland,OR,sphere,30,Brown spherical UFO seen in broad daylight +2005-06-18,40.7072222,-73.6763889,Franklin Square,NY,disk,1200,Look I feel kind of crazy writing this: But this is what I saw! I walked outside to smoke in my driveway. For some reason I looked up a +2005-06-18,33.6694444,-117.8222222,Irvine,CA,unknown,420,SILVER SHIMMERING OBJECT. COULD NOT DEFINE SHAPE. CAME TO COMPLETE STOP IN SKY. +2005-06-18,41.85,-87.65,Chicago,IL,circle,300,Neighbor caught some UFOs 2 bright white circular round objects flying over Chicago on his new digital video camera Saturday evening. +2005-06-18,40.7608333,-111.8902778,Salt Lake City,UT,sphere,1200,UFO sighting over Salt Lake City +2005-06-18,42.3583333,-71.0602778,Boston (North Of; On Flight Aa96 From),MA,teardrop,15,Horseshoe crab - shaped silver object quickly overtaken by our AA 757, at same altitude - not recognised as an aircraft. +2005-06-18,26.2708333,-80.2708333,Coral Springs,FL,triangle,120,On June 18th(?), 2005 a long triangle traveled slowly at 34 degrees in the eastern sky (from florida), then faded. +2005-06-18,44.81,-95.5452778,Granite Falls,MN,other,45,Cigar/Triangular shape, changing colors across skyline, met by darting white object +2005-06-18,32.2094444,-99.7963889,Tuscola,TX,flash,900,Strobing Light .. +2005-06-18,42.4405556,-76.4969444,Ithaca,NY,oval,120,Three oval objects with the one in the middle much larger and brighter flying fast in a diagonal pattern. +2006-06-18,43.5977778,-84.7675,Mt. Pleasant,MI,light,30,Light intensifies to shine on me. +2006-06-18,40.8611111,-79.8955556,Butler,PA,light,1800,Red and white flashing light moving in a tight, eratic pattern in the northern sky +2006-06-18,38.1916667,-120.8280556,Valley Springs,CA,flash,2,Family of four sees bright flash in night sky. +2006-06-18,26.4611111,-80.0730556,Delray Beach,FL,light,120,Objects sighted over Delray Beach Florida +2006-06-18,37.3394444,-121.8938889,San Jose,CA,triangle,300,2nd sighting; Metallic object rotating in the morning sky. +2006-06-18,37.6138889,-122.4858333,Pacifica,CA,cigar,30,Silver cigar dissapears reappears and then dissapears again. +2006-06-18,38.8338889,-104.8208333,Colorado Springs,CO,triangle,30,Metallic, triangular object spotted hovering in broad daylight near NORAD. +2006-06-18,44.98,-93.2636111,Minneapolis,MN,sphere,60,Two spheres flying in tight formation near Ford Parkway bridge +2006-06-18,41.7416667,-70.6583333,Onset,MA,sphere,120,In a lighted early summer evening, a dark spherical object flew north over water & trees of cove/inlet at low even height (~100 feet), +2006-06-18,34.2983333,-108.1341667,Pie Town,NM,cone,180,Object the color, magnitude, size of Jupiter appeared, was still and then moved at steady speed south to north +2006-06-18,37.1766667,-94.5652778,Carl Junction,MO,other,10,Fast moving light +2006-06-18,33.7488889,-84.3880556,Atlanta,GA,unknown,300,My girlfriend and I rode bikes down to the local elementary school for just a spot to sit and chill. While sitting on the swings i noti +2006-06-18,39.8302778,-75.2408333,Paulsboro,NJ,flash,20,Just lights. One light for 2 seconds, then a little lower, a light for 2 seconds, then a little lower, a light for 2 seconds but does n +2007-06-18,40.7608333,-111.8902778,Salt Lake City,UT,fireball,5,Green Fireball in Salt Lake. +2007-06-18,41.5580556,-73.0519444,Waterbury,CT,cigar,180,My wife and I were driving northbound on Route 8 towards Waterbury, Connecticut when I noticed a white object in the sky. It seemed to +2007-06-18,33.5091667,-111.8983333,Scottsdale,AZ,other,9000,A small white star next to the sun in Scottsdale, Arizona. +2007-06-18,38.6786111,-121.7722222,Woodland,CA,cigar,60,Cigar shaped object flying through sky then suddenly vanished. +2007-06-18,47.2358333,-122.5491667,University Place,WA,cone,1200,A silver cone/cylindrical shape appeared in the western sky. ((NUFORC Note: Sighting of Venus? PD)) +2007-06-18,33.5777778,-101.8547222,Lubbock,TX,cylinder,900,cylinder shaped object floating in the sky and then drifting off +2007-06-18,33.6469444,-117.6883333,Lake Forest,CA,oval,300,2 UFO'S THAT WERE NOT FROM HUMAN TECHNOLOGY +2007-06-18,45.6175,-121.1783333,Dallesport,WA,circle,1500,Bright light moving east sighted from the Columbia River gorge +2007-06-18,39.8266667,-75.0158333,Stratford,NJ,circle,180,Witnessed light streaking across sky. After several minutes, light suddenly disappeared. No sound, no blinking. +2007-06-18,45.5236111,-122.675,Portland,OR,light,30,Bright Light heading SE over PDX +2007-06-18,36.175,-115.1363889,Las Vegas,NV,light,10,White Sphere preforms complex manoeuvre in airspace over the southern edge of the Test Site +2007-06-18,40.2330556,-76.1375,Denver,PA,triangle,2400,Large triangle shape object witnessed at two locations in the same night. +2007-06-18,39.0436111,-77.4877778,Ashburn,VA,light,10,small white flashing light seen in the sky that zoomed away and disapeared at high rate of speed in ashburn, virginia and +2008-06-18,42.1130556,-70.8125,Hanover,MA,cone,10,The best way I can describe it is a sailboat with a blue flame for a sail. +2008-06-18,38.1041667,-122.2555556,Vallejo,CA,triangle,7200,AS I WAS LOOKING IN UP,THROUQH THROUGH BINOCHULARSAND ABSURVED FLNG GRY.TRI. LONGRwingsTHNstlthWASquietBUTmdeWINDYwhen QUIET,andFOG/MST +2008-06-18,43.8013889,-91.2394444,La Crosse (East Of),WI,disk,180,Metalic disk or saucer darts through the sky. +2008-06-18,40.7141667,-74.0063889,New York City (Brooklyn),NY,unknown,180,Couple of really fast flashing lights seen over brooklyn near JFK AIRPORT. +2008-06-18,42.0111111,-87.8405556,Park Ridge,IL,disk,900,((HOAX??)) Huge Black Boomerang & Gray Disk Spotted Within 15 Minutes--Park Ridge, IL...Near O'Hare Airport. +2008-06-18,33.9022222,-118.0808333,Norwalk,CA,disk,1200,UPDATED REPORT- 3 different objects in the sky Norwalk,CA +2008-06-18,33.9022222,-118.0808333,Norwalk,CA,oval,1200,3 different objects in th sky Norwalk.CA +2008-06-18,40.2625,-80.1875,Canonsburg,PA,circle,60,large glowing orange ball of light seen over horizion of small town +2008-06-18,41.6125,-88.7994444,Leland,IL,oval,300,Lights +2008-06-18,30.3319444,-81.6558333,Jacksonville,FL,triangle,60,UFO seen over St Johns River +2008-06-18,43.7977778,-123.0583333,Cottage Grove,OR,light,2400,Orange light appeared in the north-eastern sky over Cottage Grove, disappeared and reappeared several times. +2008-06-18,42.1947222,-122.7083333,Ashland,OR,light,2400,What everyone sees and only few notice. +2008-06-18,40.3461111,-94.8722222,Maryville,MO,cigar,420,I observed a bright stationary object on the ground soon after leaving Maryville, MO (7 miles NE of the town), between 23:10 and 23:20. +2009-06-18,34.1866667,-118.4480556,Van Nuys,CA,circle,360,Three orbs in the sky . Not making any sounds or moving in any derection! +2009-06-18,42.3266667,-122.8744444,Medford,OR,flash,20,reflective flashes from the sun on an unmoving object +2009-06-18,42.7491667,-91.6711111,Arlington,IA,light,240,just a glowing on and off light that suddenly darted. +2009-06-18,47.6588889,-117.425,Spokane,WA,sphere,60,Black sphere with red rotating light flying silent in sky. +2009-06-18,41.4447222,-74.0161111,Cornwall-On-Hudson,NY,unknown,3,Blue, red, and predomenantly yellow-lit object swooshed above the trees in a Nike symbol-shaped path. +2009-06-18,48.4633333,-115.8886111,Troy,MT,diamond,120,Diamond shaped object with NO sound moving from south to north +2009-06-18,29.7630556,-95.3630556,Houston,TX,triangle,60,Strange object over Houston, Texas (midtown) on June 18, 2009 +2010-06-18,37.9577778,-121.2897222,Stockton,CA,flash,5,Light streak then flashing blue light getting dimmer and dimmer each time +2010-06-18,33.635555600000004,-96.6086111,Sherman,TX,circle,120,weird big balloons trailing large airplanes +2010-06-18,39.6477778,-84.5272222,Gratis,OH,other,600,Video shot in Gratis, Ohio +2010-06-18,38.8402778,-77.4291667,Centreville,VA,sphere,60,Three Silver Metallic Spheres. Two Hovering by the Sun and One Flying North East. Report Includes Two Sightings by Others On Same Day. +2010-06-18,42.45,-73.2458333,Pittsfield,MA,light,180,I saw a light in the sky that I could not identify. +2010-06-18,43.6413889,-70.2413889,South Portland,ME,light,15,bright white light darts horizon to horizon in 15 seconds +2010-06-18,33.6258333,-97.1330556,Gainesville,TX,light,3600,I have been seeing this light north west of gainesville tx its is bright and seems to hover . ((NUFORC Note: Venus. PD)) +2010-06-18,39.1619444,-84.4569444,Cincinnati,OH,circle,300,Two bright round crafts darting around in the clear night sky. +2010-06-18,41.9833333,-71.3333333,North Attleboro,MA,circle,10800,strange light, stat. in the sky, Blinking from different sides, fading in and out. ((NUFORC Note: Possibly Venus. Not a UFO. PD)) +2011-06-18,41.85,-87.65,Chicago,IL,circle,45,fast moving bright orange light seen flying through sky in chicago then suddently dimmed and vanished +2011-06-18,32.7447222,-116.9980556,Spring Valley,CA,circle,1500,I've never seen anything like this before, two unidentifiable objects in roughly the same area going two different directions. +2011-06-18,40.6872222,-80.2716667,Monaca,PA,unknown,10,Observed one light source traveling across night sky at three separate in line intervals, followed by a right angle right turn, followe +2011-06-18,36.0625,-94.1572222,Fayetteville,AR,fireball,120,Lights Over Fayetteville +2011-06-18,40.7966667,-81.5216667,Massillon,OH,cone,120,We saw an orange cone shaped object sitting there. I walked inside my house and then out my front door and it was gone. +2011-06-18,30.0266667,-95.8441667,Hockley,TX,teardrop,5,Very bright Teardrop shape plunging vertically to the west +2011-06-18,40.7441667,-73.4825,Bethpage,NY,oval,360,five lights seen over bethpage ny +2011-06-18,40.7441667,-73.4825,Bethpage,NY,oval,360,My son, his girlfriend,and another friend were sitting in the front of the house. They saw a red glowing object coming from the west g +2011-06-18,31.0344444,-91.9755556,Moreauville,LA,light,10,Possible UFO in Moreauville, LA. ((NUFORC Note: Report from police office, who also is amateur astronomer. PD)) +2011-06-18,41.7013889,-71.1555556,Fall River,MA,circle,600,Orange lights over Massachusetts. +2011-06-18,47.7375,-120.3677778,Ardenvoir,WA,light,120,bright white light zig zagging north to south +2012-06-18,41.9761111,-72.5922222,Enfield,CT,sphere,45,Odd bright yellow light in the sky with speed changes and changed directions, emitted no sound at all +2012-06-18,38.8916667,-121.2919444,Lincoln,CA,other,30,Star like object appears next to Big Dipper and flies toward northern California's Sierra Nevada mountains.. +2012-06-18,39.2688889,-84.2638889,Loveland,OH,light,180,Floating crafts dancing with each other than leaving scene quickly. +2012-06-18,37.9716667,-100.8722222,Garden City,KS,light,120,Hovering lights above Garden City, Ks. +2012-06-18,41.6925,-86.9775,Beverly Shores,IN,sphere,3,Bright Blue blinking light traveling around earth then going out into space. +2012-06-18,40.8961111,-104.8744444,Carr (West Of),CO,changing,600,Bright light over mountains of Colorado +2012-06-18,32.5230556,-92.6377778,Ruston,LA,changing,300,Large group of flashing lights moving very slow +2012-06-18,41.3683333,-82.1077778,Elyria,OH,fireball,60,Red light like fireball over Elyria Ohio +2012-06-18,31.8541667,-110.9930556,Green Valley,AZ,circle,180,Sighted 3 unidentified objects in triangular formation over Green Valley, Arizona +2012-06-18,41.9761111,-72.5922222,Enfield,CT,light,60,Bright light at high altitude and then fades. Travelled slow like satellite but bright light was odd. ((NUFORC Note: ISS?? PD)) +2012-06-18,40.0411111,-86.8744444,Crawfordsville,IN,light,300,Thirteen red lights travel same path over Wabash College in Crawfordsville, Indiana. +2012-06-18,37.3930556,-94.0936111,Golden City,MO,fireball,2,Two red fireballs fell from the sky while I was out praying. +2012-06-18,46.6636111,-118.86,Connell,WA,light,180,Bright, white light with orange/red cylindrical protrusion extending from the bottom. Total silence of surrounding nature. ((ISS??)) +2013-06-18,43.2341667,-86.2483333,Muskegon,MI,light,45,White orb of light, impossible motions, and rates of speed. +2013-06-18,37.5536111,-77.4605556,Richmond,VA,light,120,Red light around big dipper +2013-06-18,42.2208333,-70.9402778,Weymouth,MA,circle,600,It was a decent length sighting i believe i was sitting my back yard when i saw a red circle fly over head at a high rate of speed abou +2013-06-18,41.2411111,-77.0013889,Williamsport,PA,changing,10800,the whole ship appeared in front of us +2013-06-18,33.4486111,-84.455,Fayetteville,GA,unknown,5,Strange luminous, transparent, oval/saucer shaped object with pink, orange, and yellow colors at 14:30 moving at incredible speed. +2013-06-18,42.0027778,-71.5152778,Woonsocket,RI,diamond,60,A UFO was sighted flying over a school in Woonsocket RI. +2013-06-18,31.3402778,-110.9336111,Nogales,AZ,flash,1800,North western sky. 6 blasts of yellow/orange lights. Each blast lasting about a second or two before disappearing. Then a second or two +2013-06-18,32.2216667,-110.9258333,Tucson,AZ,circle,1200,Lil yellow lights fading in and out in the sky. +2013-06-18,42.4169444,-88.0738889,Lake Villa,IL,circle,300,Orange/red silent object with very bright flashes of light. +1957-06-19,37.725,-122.155,San Leandro,CA,light,90,The night of Sputnik, a drag race in the sky of 5+ objects stole the show for us. +1964-06-19,32.2216667,-110.9258333,Tucson,AZ,triangle,10,Early 60's Triangle Craft +1977-06-19,39.8027778,-105.0869444,Arvada,CO,light,20,Two stars in the sky, moving and then dissappearing +1982-06-19,41.85,-87.65,Chicago,IL,disk,45,Silver metallic disc observed at Roseland little league baseball field. +1982-06-19,42.0372222,-88.2811111,Elgin,IL,circle,300,A circular object with alternating flashing lights +1984-06-19,41.2458333,-75.8816667,Wilkes-Barre,PA,other,900,Box shape, Large green and silent. +1985-06-19,38.4094444,-82.2947222,Barboursville,WV,cylinder,5,Fast moving cylinder object vanishes into sky. +1988-06-19,34.2366667,-84.4908333,Canton,GA,circle,180,Dull silver saucer just 30 feet over my house. Saw entire underbelly clearly. Read description. +1995-06-19,36.175,-115.1363889,Las Vegas,NV,sphere,900,Orange Sphere moves across sky and leaves green trail the entire lenght of the sky that remained long after the object was gone! +1995-06-19,37.3938889,-97.2808333,Belle Plaine,KS,triangle,420,A triangular craft with a light at each end and a slightly larger central light +1996-06-19,27.9472222,-82.4586111,Tampa,FL,disk,240,Disc shaped craft in downtwon Tampa, FL in 1996 +1997-06-19,32.5363889,-94.9425,Gladewater,TX,other,1800,It was an overcast night when a frind and I were leaving to go out for the night when I told my friend to look up and he couldn`t beliv +1997-06-19,40.8852778,-73.9527778,Englewood Cliffs,NJ,light,2,When I looked up a bright white light appeared. It began moving to the left and changed to a faint yellow. The light dimmed to the poin +1997-06-19,34.7391667,-112.0091667,Cottonwood,AZ,disk,1800,Disc with amber lights seen near Verde River. Disc was accompanied by other unidentified objects. +1998-06-19,32.2216667,-110.9258333,Tucson,AZ,unknown,10,Weird Light Beam +1999-06-19,21.3069444,-157.8583333,Honolulu (Waikiki),HI,other,30,for about 30 seconds it brighted up to like Jupiter or Venus,it was moving towards the East, between 30-45 degrees angle,s.e. of Cygnus +1999-06-19,33.0580556,-112.0469444,Maricopa,AZ,cigar,30,bright reflective object disappered in thin air +1999-06-19,27.8002778,-97.3961111,Corpus Christi,TX,circle,600,These five objects were about 300 to 600 feet above the ground, may 1/4 mile from us.These objects were not moving at first, appeared t +1999-06-19,38.5816667,-121.4933333,Sacramento,CA,light,40,just a light that headed north after about 40 seconds of seeing this it just faded out and didn't reapear. the light was about the sam +1999-06-19,32.7447222,-116.9980556,Spring Valley (Viewed From, San Diego Co.),CA,circle,90,While I was looking at the Moon, through my telescope. I noticed a black spec. I then blinked to make sure it was not something in my e +1999-06-19,41.8505556,-87.8819444,Westchester,IL,other,15,Sighting of an unidentified flying Object in the sky which had a shape similar to the structure above the capital building in Washingto +2000-06-19,38.9583333,-122.6252778,Clearlake,CA,circle,30,Bright Flashes +2000-06-19,41.7911111,-107.2380556,Rawlins,WY,disk,3,Brown saucer-shaped object with dome on top flying beneath low cloud cover +2000-06-19,40.7141667,-74.0063889,New York City,NY,triangle,45,Triangular shaped object, bright white on top and fire red on the bottom. It hovered 5ꯠ agl above hudsoon river nyc +2000-06-19,34.0194444,-118.4902778,Santa Monica,CA,triangle,15,i was walking my dog at about 9:40 pm-we live close to the beach, LAX and Santa Monica airport-so i'm always noticing airplanes in the +2000-06-19,41.1305556,-85.1288889,Fort Wayne,IN,other,5,Two dull orange lights side by side moving together in a straight line then made a slight arch in it's path. There wer no sounds and m +2001-06-19,29.2105556,-81.0230556,Daytona Beach (Outside Limits Of),FL,rectangle,120,On June 19, 2001 at 3:00 a.m., I saw a bright orange rectangular object flying in a horizontal direction between 2 clouds. +2001-06-19,44.0522222,-123.0855556,Eugene,OR,light,300,a stationary pulsing/flickering light randomly changing from white to orange. +2001-06-19,30.2394444,-81.3858333,Ponte Vedra Beach,FL,light,14400,LIghts in the sky that disappear and re-appear , with missing time.. +2001-06-19,34.0005556,-81.035,Columbia,SC,light,20,My friend and I observed a bright light that appeared to be a star, zig-zagging up and down while going straigt, at a very fast speed. +2001-06-19,35.2269444,-80.8433333,Charlotte,NC,unknown,8100,Lost time +2001-06-19,41.4438889,-120.8691667,Canby,CA,light,120,Small white light in the sky exhibited extreme speed and maneuvers +2002-06-19,34.0583333,-106.8908333,Socorro,NM,cylinder,2700,apparently two lighted objects showed themselves for nearly one hour moving, blinking,ect, +2002-06-19,37.5536111,-77.4605556,Richmond,VA,triangle,180,Floating triangle seen over Richmond. +2002-06-19,32.2216667,-110.9258333,Tucson,AZ,light,15,ligth in the sky got brigth then got dim while moving. +2002-06-19,29.7630556,-95.3630556,Houston,TX,light,2,Bright object in Houston sky +2003-06-19,33.7877778,-117.8522222,Orange County,CA,flash,2,Green Flash of light over Orange county +2003-06-19,38.9686111,-77.3413889,Reston,VA,sphere,10,the object was only about 50-foot above, stagnent, very quiet and looks like it's shut down waiting for thunderstorm going away... +2003-06-19,41.6047222,-80.8655556,Rome,OH,disk,180,The three disk stood in a triangle formation without making a sound, one blinking red light on the bottom of the disk, departed fast +2003-06-19,42.5791667,-71.4383333,Westford,MA,sphere,1200,Yellow sphere about half the size of the moon with dark rings floating in the northern sky. +2003-06-19,30.0463889,-94.885,Dayton,TX,unknown,2,helicopters chasing two small lights at high rate of speed +2003-06-19,41.6391667,-87.4547222,East Chicago,IN,light,300,Lights starts and stops in the sky. +2003-06-19,43.3344444,-75.7483333,Camden,NY,light,120,I was sitting on the couch looking out the screen door and i happened to see what looked like airplane lights but closer right over the +2003-06-19,41.4413889,-85.265,Kendallville,IN,light,1410,Even more lights in the sky, Reddish orange in color, very high, very fast, some movements. +2004-06-19,42.7919444,-83.6277778,Holly,MI,light,2700,I looked up into the sky and I saw what appeared to be 5 oblong shaped lighted clouds. +2004-06-19,36.8055556,-114.0663889,Mesquite,NV,flash,5,Bright flashes from a streaking object light up the sky and leave a large smoke trail over Mesquite, Nevada. +2004-06-19,36.0397222,-114.9811111,Henderson,NV,circle,20,ROYAL BLUE BALL WITH SMALL ORANGE BALLS WITH THICK RED FIRE STREAK +2004-06-19,33.4355556,-112.3488889,Avondale,AZ,fireball,15,June 19th, 4:55 am bright light seen in sky shooting down North of Phoenix, AZ bright flash greeninsh blue glow. +2004-06-19,33.4483333,-112.0733333,Phoenix,AZ,fireball,2,I was standing looking out my balcony sliding glass window-the window was open, sliding screen was closed-and I saw a flourescent green +2004-06-19,39.0997222,-94.5783333,Kansas City,MO,disk,120,I was driving home from work early in the morning, when about two hundred yards to the northwest of me, aproximately 200 feet in the +2004-06-19,33.7205556,-116.2147222,Indio,CA,other,45,OBJECTS WHITE, BOOMERRANG SHAPED FLYING VERY FAST AND VANISHED OR FLEW OUT OF SIGHT +2004-06-19,32.5772222,-116.6266667,Tecate,CA,cylinder,300,Long cylinder shape with no wings/rudder observed on a clear, cloudless day at noon. +2004-06-19,39.9611111,-82.9988889,Columbus,OH,light,600,Three lights in a triangle shape that eventually lined up and moved farther away until we couldn't see them any more. +2004-06-19,34.0522222,-118.2427778,Los Angeles,CA,light,600,Los Angeles my boyfriend and I had stopped at Vons in Vine to pick up milk, I waited in the car and parked facing East, towards Silverl +2004-06-19,42.3241667,-83.4002778,Westland,MI,diamond,1800,High Altitude Aircraft? +2004-06-19,40.0638889,-80.7211111,Wheeling,WV,other,60,Looked like it was playing tag with the stars +2004-06-19,48.8211111,-119.6322222,Loomis (Closest Town),WA,light,4,Two Bright White Lights In North Central Wa State +2005-06-19,30.4211111,-87.2169444,Pensacola,FL,rectangle,900,06/19/2005 01:00 Pensacola FL 3 points of light translucent, moving North, North East @ a high rate of speed no sound. +2005-06-19,47.6105556,-122.1994444,Bellevue,WA,oval,240,LIT CIGAR SHAPE, SIDE VIEW- OVEL SPOON SHAPE, TOP, BOTTOM VIEW- ORBED TRAILING TAIL,BELIEVED FL CRASH LANDED UFO +2005-06-19,41.6302778,-87.8538889,Orland Park,IL,sphere,1200,5 spheres rising and headed north, 2 silver, 3 white +2005-06-19,42.5358333,-113.7919444,Burley,ID,circle,15,the craft was traveling at a high rate of speed the 1st time it appeared. I was quizzical the 1st time I seen it and then it did a 45 t +2005-06-19,41.6619444,-86.1586111,Mishawaka,IN,oval,180,Oblong gray, underneath, from a distance circular like a sun to me, to my husband he says trianglelar +2005-06-19,39.1222222,-104.9166667,Palmer Lake,CO,disk,45,white silver disk moving fast instantly reversed direction and sped off +2005-06-19,35.0844444,-106.6505556,Albuquerque,NM,unknown,300,A brightly flashing object was seen in broad daylight. It rose suddenly, hovered, then dived and sped away. +2005-06-19,41.6563889,-76.8536111,Canton,PA,cone,120,Military aircraft and a UFo flying close by. +2005-06-19,34.0194444,-118.4902778,Santa Monica,CA,sphere,300,Shiny silver sphere moving at steady pace and altitude +2005-06-19,47.6447222,-122.6936111,Silverdale,WA,rectangle,30,A black rectangular object flew from south to north in a straight line at a constant speed making no sound. +2005-06-19,41.6833333,-74.8716667,Bethel,NY,sphere,5,It was in the middle of the day in broad daylight. Did anybody else see this? +2005-06-19,26.3180556,-80.1,Deerfield Beach,FL,other,1800,black dot not moving high in the sky +2005-06-19,45.4177778,-122.4577778,Damascus,OR,circle,60,a shining metallic sphere moved swiftly from ground level to high altitudes +2005-06-19,34.7302778,-86.5861111,Huntsville,AL,circle,10,CHROME TYPE "CIRCLE" SEEN FROM PLANE - WAS BELOW US, CAME UP TO OUR ALTITUDE THEN WHIPPED AWAY +2005-06-19,40.6588889,-74.3477778,Westfield,NJ,light,600,6 LIGHTS MOVED ACROSS THE SKY-COULD BE SEEN WITH BINOCULARS WERE NOT AIRPLANES-BROAD DAYLIGHT-THEY WERE SHINING IN THE SKY LIKE STARS +2005-06-19,33.9533333,-117.3952778,Riverside,CA,sphere,900,Red sphere with fire tail +2005-06-19,40.4775,-74.6272222,Hillsborough,NJ,rectangle,3600,Sun reflection off a stationary rectangular object in a completely clear blue sky. +2005-06-19,45.5827778,-122.3522222,Washougal,WA,other,10,An object was sighted that flew in an irratic pattern completely unlike any other airborne object ever seen. +2005-06-19,45.5236111,-122.675,Portland,OR,sphere,120,30+ spheres observed flying in formation during thunderstorm due to large multiple lighting flashes. +2006-06-19,39.0022222,-119.955,Zephyr Cove,NV,rectangle,180,Black triangle with one light at each end moving somewhat slow +2006-06-19,43.6136111,-116.2025,Boise,ID,unknown,600,LARGE FAST DISC REPORTED TO MHAFB YEARS AGO +2006-06-19,28.5555556,-82.4505556,Spring Hill,FL,sphere,3,shiny gold colored sphere ~ Hernando County, FL +2006-06-19,34.0522222,-118.2427778,Los Angeles,CA,other,120,I saw (starting from what seemed to be a 1/4 mile away) an object that I cognized as being black and the size of a refrigerator. It al +2006-06-19,40.5141667,-88.9905556,Normal,IL,circle,5,Bright green circular object flew slowly outside over our neighbor's house, then all of a sudden it was gone. +2006-06-19,34.8697222,-111.7602778,Sedona,AZ,light,600,Object over Sedona, AZ flashed, dimmed several times, and moved without sound in irregular patterns +2007-06-19,47.2372222,-93.53,Grand Rapids,MN,triangle,120,Saw three white objects in clear blue sky flying against the wind in triangular formation. +2007-06-19,41.9141667,-88.3086111,St. Charles,IL,sphere,10,I departed DuPage Airport in West Chicago, IL to the west at 10:00. About 10 minutes into the flight at 2귔 feet, I noticed something +2007-06-19,33.41,-91.0616667,Greenville,MS,triangle,600,the dark triangle with strait edges remained steady height and speed while two other similar objects hovering very near it +2007-06-19,40.9252778,-74.2769444,Wayne,NJ,cigar,25,Bright, Cigar Shaped UFO following Commercial Jetliner in NJ +2007-06-19,46.8722222,-113.9930556,Missoula,MT,unknown,5,Object falling from the sky east of Missoula +2007-06-19,40.4538889,-75.8183333,Fleetwood,PA,light,2,A ball of light dropped below the overcast, slowly moved south/southeast and suddenly shot upward. +2007-06-19,32.5091667,-92.1191667,Monroe,LA,light,2,I saw nothing, but the camera saw differently +2007-06-19,42.9105556,-87.8605556,South Milwaukee,WI,light,900,2 lights that looked like stars following each other. ((NUFORC Note: ISS orbiting with Space Shuttle. PD)) +2007-06-19,41.4913889,-87.6744444,Park Forest,IL,sphere,600,Twin dots heading southwest near chicago. ((NUFORC Note: ISS orbiting with Space Shuttle. PD)) +2007-06-19,41.85,-87.65,Chicago,IL,light,45,This turn was immpossible. +2007-06-19,42.6583333,-83.15,Rochester Hills,MI,light,300,Two bright lights were suspended in the sky and viewed from Rochester Hills, MI then suddenly disappeared. +2007-06-19,39.7294444,-104.8313889,Aurora,CO,unknown,240,Two fairly bright white lights moving in tandem. ((NUFORC Note: Witness addendum states that object was not Space Station. PD)) +2007-06-19,45.4872222,-122.8025,Beaverton,OR,unknown,60.2,2 Bright lights flying in formation, or maybe ONE craft. Got them on Video. ((NUFORC Note: ISS orbiting with Space Shuttle. PD)) +2007-06-19,47.6063889,-122.3308333,Seattle,WA,light,180,Two lights travel across Seattle sky and fade in to darkness. ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-19,38.8338889,-104.8208333,Colorado Springs,CO,light,10,2 bright white lights seeming connected flying faster than any plane or military craft;.then disappeared. ((NUFORC Note: ISS?? PD)) +2007-06-19,33.7475,-116.9711111,Hemet,CA,light,3600,Odd appearance of a light in the sky,not reported by and amateur observer. ((NUFORC Note: Star or planet? PD)) +2007-06-19,42.8694444,-85.6447222,Kentwood,MI,circle,60,Fast Aircrafts Chasing Each Other ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-19,44.9583333,-124.0166667,Lincoln City,OR,light,90,Bright lights of unknown origins witnessed by two individuals over the Pacific Ocean. ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-19,41.7194444,-84.2180556,Morenci,MI,unknown,20,2 white lights heading from souther Michigan to Ohio traveling one behind the other at a high rate of speed. ((NUFORC Note: ISS. PD)) +2007-06-19,42.0663889,-87.9372222,Mount Prospect,IL,light,600,I saw 2 stars towing each other and on shinning very very bright as it started to vanish. ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-19,42.5333333,-83.1463889,Clawson,MI,formation,600,Observed two lights in a line one forward and one in rear traveling south east towards detroit. ((NUFORC Note: ISS and Shuttle. PD)) +2007-06-19,37.3861111,-122.0827778,Mountain View,CA,formation,60,Two bright moving lights in formation vanish at terminator line ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-19,42.8522222,-83.4430556,Ortonville,MI,formation,240,Two lights following eachother, pulsing. ((NUFORC Note: Possibly ISS and Space Shuttle? PD)) +2007-06-19,41.6472222,-122.5188889,Grenada,CA,light,420,TWO BRIGHT LIGHTS FOLLOWING EACHOTHER ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-19,45.4872222,-122.8025,Beaverton,OR,other,300,two lights traveling to the south east in Beaverton +2007-06-19,42.3369444,-83.2733333,Dearborn Heights,MI,other,60,2 bright lights over Dearborn Heights, MI Ford and Beechdaly rd area. ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-19,37.3541667,-121.9541667,Santa Clara,CA,unknown,20,Two lights flying close together and then fading away. ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-19,48.1333333,-103.6333333,Williston,ND,light,240,circle lights, white colored. ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-19,42.5,-96.4,Sioux City,IA,light,1800,Outside on breezeless night with neighbors talking when several lights appeared across the sky. +2007-06-19,43.1413889,-95.1441667,Spencer,IA,formation,360,Twin glowing white lights silently traverse the sky in Spencer Iowa then fade out. ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-19,41.7958333,-87.9755556,Westmont,IL,light,5,Rapid moving lights. ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-19,27.7705556,-82.6794444,Saint Petersburg,FL,circle,120,three people were standing outside of their home aftewr taking a walk around midnight when they saw a white circle shaped craft with a +2008-06-19,34.2783333,-119.2922222,Ventura,CA,changing,20,Bright orange object, incredible speed, diamond shaped and turning +2008-06-19,37.7494444,-85.97,Rineyville,KY,triangle,300,Triangle in shape,spotted at about 10:30,lights were blue,object moved at moderate speed +2008-06-19,37.5483333,-121.9875,Fremont,CA,other,120,Fast Moving +2008-06-19,40.0377778,-76.3058333,Lancaster,PA,cigar,0.5,6/19/2008 Lancaster PA duration .5 seconds caught on film. Object appears to be cigar shaped with a cone on the top. +2008-06-19,34.8986111,-117.0219444,Barstow,CA,oval,660,Object observed over mountain rage for several minutes before shooting strigh up and out of sight. +2008-06-19,37.775,-122.4183333,San Francisco,CA,triangle,6,Sighting in San Francisco +2008-06-19,32.7922222,-80.1083333,Johns Island,SC,light,60,UFO sighting over Johns Island moving toward Charleston +2008-06-19,42.4152778,-71.1569444,Arlington,MA,light,300,Two balls of light holding planes midair +2008-06-19,40.1738889,-80.2463889,Washington,PA,oval,4,Ball of flame moving toward earth, seemed to bounce off and turn south +2008-06-19,37.2708333,-79.9416667,Roanoke,VA,other,600,Roanoke County Police respond to reports of strange object in the sky over Catawba area. +2009-06-19,32.895,-97.5455556,Azle,TX,fireball,2,Bright green ball of light shoots to the ground over Azle, Texas. +2009-06-19,33.7427778,-116.2883333,Bermuda Dunes,CA,fireball,15,UFO sighting in Bermuda Dunes, California. Coachella Valley over Santa Rosa Mountains. +2009-06-19,40.7141667,-74.0063889,New York City (Brooklyn),NY,cigar,1800,the lights were streaming straight across and i was fascinated +2009-06-19,40.7608333,-111.8902778,Salt Lake City,UT,other,60,two aircraft flying in formation low to the ground, in the city, of an unknown aircraft design, with no noise. +2009-06-19,38.0608333,-97.9294444,Hutchinson,KS,light,600,3 red lights in northern sky +2009-06-19,36.1397222,-96.1086111,Sand Springs,OK,cigar,120,A cigar shaped object with 5 lights running left to right.The outer light were pulsing.Sounds similar to another sighting over Shell la +2009-06-19,33.9791667,-118.0319444,Whittier,CA,light,600,One jumping light dissapears, +2009-06-19,41.2586111,-95.9375,Omaha,NE,changing,25,Willowcreek Park, Omaha, UFO sighting - June 19, 2009 +2009-06-19,41.1669444,-73.2052778,Bridgeport,CT,unknown,60,A very bright light was observed, dimmed, moved and then disappeared. +2009-06-19,29.0255556,-80.9272222,New Smyrna Beach,FL,unknown,45,Sporadic light over beachside New Smyrna +2009-06-19,32.7833333,-96.8,Dallas,TX,disk,1200,It's back! Second time watching a disk in the West sky with flashing red, white, green lights. Dallas, Texas +2010-06-19,33.7183333,-93.1338889,Bluff City,AR,circle,60,Bright circular yellowish orange light moved closer and then flew up and away! +2010-06-19,40.0505556,-77.5205556,Shippensburg,PA,light,300,6/19/2013 Shippensburg PA, Light 5 mintues Bright light dims in and out with vast amount of planes in area. +2010-06-19,39.9241667,-83.8088889,Springfield,OH,changing,60,I just seen a UFO with a circular laser type light above it! +2010-06-19,33.0197222,-96.6986111,Plano,TX,oval,120,UFO in mid-day over Plano, TX. +2010-06-19,31.7586111,-106.4863889,El Paso,TX,teardrop,900,4 UFO's hovered and moved side to side, up and down and glowed. not like any man made object, and dissapeared into thin air +2010-06-19,43.7569444,-71.6886111,Plymouth,NH,cigar,120,silent, bright blinking light, slow moving, close to the tree tops +2010-06-19,40.6855556,-76.1958333,Pottsville,PA,fireball,30,Fire Ball not seen more then 2 people +2010-06-19,32.7355556,-97.1077778,Arlington,TX,light,600,Bright Electric Blue Light in Arlington Texas Moving Very Fast in a Short Distance +2010-06-19,43.9747222,-75.9111111,Watertown,NY,other,300,At roughly 23:50 my mother, my younger sister, and I witnessed “star like” objects moving above the clouds. I had stepped out on our ba +2010-06-19,33.5225,-117.7066667,Laguna Niguel,CA,unknown,120,UFO sighted over Laguna Niguel, moving in circles and up and down erraticly. No sound. +2010-06-20,36.5663889,-121.9455556,Pebble Beach (U. S. Open Tournament),CA,circle,10,Strange object flies on and off screen during US OPEN interview with Phil Michaelson +2011-06-19,30.4752778,-98.1561111,Spicewood,TX,cylinder,900,I am a Commercial Pilot and trained observer with regard to aircraft and weather +2011-06-19,40.1791667,-75.1808333,Maple Glen,PA,rectangle,60,low ufo followed by black helicopter. +2011-06-19,26.3583333,-80.0833333,Boca Raton,FL,diamond,90,A diamond shaped object emitting a flame headed West towards the horizon in Boca Raton FL. +2011-06-19,40.7141667,-74.0063889,New York City (Brooklyn),NY,fireball,240,2 fireballs that went dim over brooklyn ny +2011-06-19,40.4405556,-79.9961111,Pittsburgh,PA,sphere,180,Observed 2-3 bright orange orbs just east of Downtown Pittsburgh +2011-06-19,41.85,-87.65,Chicago,IL,oval,420,Bright, Oval, Slow Moving, Single-Aircraft with blinking colorful lights hovering over Chicago, IL 10:30PM 6/19/2011 +2011-06-19,42.6525,-73.7566667,Albany,NY,fireball,60,((HOAX??)) fatersday night we were outside lookin at the sky my daughter says whats that we all look in the sky and see a light +2011-06-19,39.7683333,-86.1580556,Indianapolis,IN,light,120,Two orange lights moving same speed, same direction in an offset trail formation. +2011-06-19,40.8577778,-74.4263889,Parsippany,NJ,other,180,A hazy wave-shaped, orange and yellow light with a sharply defined white orb hovering bellow it in the skies of NJ +2011-06-19,40.8577778,-74.4263889,Parsippany,NJ,other,60,A boomerang-shaped object with yellow, orange, red lights, the size of a baseball field, hovered in sky with white orb moving around. +2012-06-19,36.3047222,-86.62,Hendersonville,TN,circle,2,Circular dot hovering daily. +2012-06-19,34.0805556,-118.0719444,Rosemead,CA,egg,60,Oval, egg-shaped object seen above Rosemead, CA. +2012-06-19,33.5805556,-112.2366667,Peoria,AZ,formation,60,3 lights in formation NW of Peoria, AZ. +2012-06-19,38.0683333,-78.8897222,Waynesboro,VA,cigar,120,Cigar shaped object over waynesboro 8 o'clock hour pm +2012-06-19,34.09,-117.8894444,Covina,CA,rectangle,3600,I saw twice at two locations: A VERY Black rectangular blanket in the sky once there was a bright round object shooting smallers balls +2012-06-19,45.5236111,-122.675,Portland,OR,cross,180,I was jogging alone along a path at Gabriel Park, when I noticed a collection of red and green lights hovering in the sky that seemed t +2012-06-19,45.5236111,-122.675,Portland,OR,fireball,300,Slowly moved across the sky from w to e over SE Portland. Bright light. ((NUFORC Note: We suspect a sighting of the ISS. PD)) +2012-06-19,45.6572222,-68.7102778,Millinocket,ME,diamond,300,Black Triangle in Northern Maine!!! +2012-06-19,41.5244444,-90.5155556,Bettendorf,IA,light,45,Distant white "stars" moving across the sky typically S of the big dipper. ((NUFORC Note: Overflight of satellites, we wonder? PD) ) +2012-06-19,48.22,-122.685,Coupeville (South Of),WA,light,180,UFOS that will not take snap-shots. +2012-06-19,34.53,-112.2405556,Dewey,AZ,sphere,30,Horizon moving orange light that totally vanishes after 30 seconds. +2012-06-19,35.9447222,-96.065,Kiefer,OK,fireball,5,No other bright stars in the southern sky and lower then regular stars..clear night,, outside 4-5 nights a week… +2013-06-19,33.6102778,-114.5955556,Blythe,CA,sphere,240,Orange/ Red sphere 25 to 35 feet across moving slow and on a low level altitude +2013-06-19,39.4352778,-84.2030556,Lebanon,OH,oval,300,Critical detail is that someone posted a video of sighting UFOs very near me just 3 days ago +2013-06-19,39.9,-75.2894444,Glenolden,PA,cylinder,90,Phila. area June 2013 daylight, bright object, zoomed in, 5 excelent photos of "What is this?" +2013-06-19,39.7902778,-77.7280556,Greencastle,PA,fireball,120,Large orange ball shaped object which burst into yellow flames and fell toward the ground. +2013-06-19,40.6233333,-79.73,Natrona Heights,PA,circle,120,An orange object sighted in the sky, orange flames shooting out of the bottom , without sound, vanishing 1-2 minutes. +2013-06-19,32.8338889,-109.7069444,Safford,AZ,light,30,Orang/reddish round lights, like a ball of fire, in east sky, night w/little moonligh. Appeared and disappeared like a flip of a switch +2013-06-19,35.9572222,-75.6244444,Nags Head,NC,triangle,300,3 yellow-green lights moving together across Nags Head and rotating slowly. +2013-06-19,33.7669444,-118.1883333,Long Beach,CA,circle,20,White round object seen in Long Beach, California. +2013-06-19,40.9583333,-75.975,Hazleton,PA,other,240,Bright white spherecal object with cone shaped points of extra bright light attached to the craft forward and stern. +2013-06-19,35.7883333,-83.5544444,Pigeon Forge,TN,fireball,120,UFO siting in Pigeon Forge, TN. +2013-06-19,38.5816667,-121.4933333,West Sacramento,CA,unknown,30,Reddish light traveling from NE to SW..silent then vanished 30 seconds later. +2013-06-19,40.8,-96.6666667,Lincoln,NE,circle,300,Bright light over SE Lincoln, 19Jun13 dimmed and flew away. +2013-06-19,39.485,-80.1427778,Fairmont,WV,unknown,360,Bright white object moving west to east. ((NUFORC Note: Probable sighting of the ISS?? PD)) +2013-06-19,40.4166667,-86.8752778,Lafayette,IN,light,50,Spiraling white lighted craft or object that disappeared, no noise,..not moving at fast speed, moving east. +2013-06-19,41.5033333,-94.3183333,Stuart,IA,light,4,Green moving light. +1947-06-20,37.6688889,-122.0797222,Hayward,CA,circle,1800,We where very close to five bright gold saucers for approx. twenty minutes. +1950-06-20,34.6580556,-88.5666667,Booneville,MS,disk,4,Youngster observes shiny disc-shaped craft +1950-06-20,29.3011111,-94.7975,Galveston,TX,sphere,600,Large orange-red lowering "Moon" object +1961-06-20,38.5925,-90.3572222,Webster Groves,MO,circle,120,webster groves mo ciecular craft with a light searching the ground fifty years ago +1965-06-20,35.0844444,-106.6505556,Albuquerque,NM,disk,300,Traveling in a pick up truck, we saw a bright glowing green disk fly over us. It made the engine & electrical of the truck stop immedi +1966-06-20,39.2680556,-84.5230556,Greenhills,OH,disk,600,I stood under a flying saucer spotted in daylight at 40 foot distance... WILD!!! +1966-06-20,40.8830556,-85.4975,Huntington,IN,disk,600,Saucer shaped object +1967-06-20,38.2494444,-122.0388889,Fairfield,CA,cigar,60,I believe +1968-06-20,40.7608333,-111.8902778,Salt Lake City,UT,light,3,Utah U F O +1968-06-20,41.0086111,-91.9625,Fairfield,IA,other,300,Huge object 100'-150'appearing like a chrome coated deflated balloon moved slowly over Fairfield, Iowa +1968-06-20,39.9625,-76.7280556,York,PA,egg,10,Egg shaped object lit-up like the moon. +1970-06-20,41.14,-104.8197222,Cheyenne,WY,circle,2700,followed by flying silent vehical for 45 minutes in wyomming +1972-06-20,42.0883333,-87.9805556,Arlington Heights,IL,disk,180,I was stopped at a stop sign. A Nike Site was on my left. A saucer the size of a small car hovered over the hood of my car and then b +1972-06-20,42.0883333,-87.9805556,Arlington Heights,IL,disk,60,I was at a stop sign on my way home to Rolling Meadows, between the Hospital and the Nike Site. A disk or saucer appeared above the ho +1972-06-20,34.0522222,-118.2427778,Los Angeles,CA,light,180,UFO's put on a show for mother and children over the Santa Monica ocean. +1974-06-20,40.8686111,-82.3183333,Ashland,OH,disk,60,Low flying disc shaped object with colored lights at it's base changing in and out or maybe rotating, quiet, serene. +1974-06-20,44.98,-93.2636111,Minneapolis,MN,light,180,It was a beautiful summer day and me and my close friend were walking my girlfriend home from school we were about 15 years old at the +1975-06-20,41.2375,-80.8186111,Warren,OH,circle,21600,my name is Guy back in school I was vic anyway I lived in warren Ohio, most of my life and back in the 1970s we had a lot of sightings +1975-06-20,46.3580556,-94.2005556,Brainerd (Near),MN,circle,900,Witnessed three circle of lights, pulsating at times and stationary at first, when moving moved at tremendeous speed and erratic moveme +1975-06-20,47.93,-97.0241667,East Grand Forks,MN,light,5,Has bothered me for years. I know what I saw. Cannot describe it here. I am 53 now and never will forget it. If you are interested in m +1975-06-20,47.6588889,-117.425,Spokane (14 Miles North Of) , Deer Park (1/2 Mile South Of),WA,disk,600,Disc shaped object, approximatly 100 ft in air. large light and a strob in center. around 20-30 ft deep. +1975-06-20,46.3580556,-94.2005556,Brainerd (Near),MN,cigar,120,This is confirming the sighting from a previous post +1975-06-20,42.4905556,-71.2766667,Bedford,MA,light,300,saw one flashing light in sky similar to aircraft lights on wings, saw 3 other similar lights flashing, all came together as one, took +1976-06-20,46.9086111,-67.8263889,Limestone (Loring Afb),ME,cigar,900,what i saw avoided radar and physics flying so slow +1977-06-20,41.7855556,-74.2294444,Accord,NY,triangle,1200,The object was triangular, totally silent and observed for 20 min and moved slowly with red & green lights and 1 white light. +1978-06-20,40.7205556,-76.1913889,St. Clair,PA,sphere,600,Glowing sphere of light near St Clair - Burma road fire tower late 1970's-1980 era +1978-06-20,41.7986111,-86.6105556,Three Oaks,MI,disk,900,Approx. 1000 feet above us. Bright window light illuminated entire craft. Approached and passed over maybe l0 M.P.H. +1979-06-20,39.4666667,-87.4138889,Terre Haute (Near),IN,changing,25,It changed shape from a cigar shape to a circle and back again. +1979-06-20,28.5380556,-81.3794444,Orlando,FL,circle,600,Several of my friends and I where in a school playground and a saucer with lights on bottom (colors) was about 200 feet above us and ma +1979-06-20,41.1180556,-73.9558333,Valley Cottage,NY,disk,1200,it was big enough to swollow it keep in mind this was a 4 or 5 bedroom home It was round or disk +1979-06-20,40.7691667,-73.1155556,Bohemia,NY,light,180,Driving on Pond Rd.Returning from my sister's house I saw a light that appeared to be to the street (I actually thought it was part of +1980-06-20,39.4272222,-75.2344444,Bridgeton,NJ,circle,240,The UFO flew directly over our heads at roof top level,speed approx 5 mi per hr. emitted no sound.with non flashing multi colored light +1981-06-20,31.9516667,-97.3211111,Whitney,TX,formation,600,A multi craft formation of various shapes and sizes. +1981-06-20,47.0380556,-122.8994444,Olympia,WA,sphere,240,Large orange illuminated sphere groming in size,stationary, just above treeline next to roadway. +1982-06-20,39.9180556,-75.0716667,Collingswood,NJ,light,3600,I was lounging in a pool back sometime in June of 1982. When I looked up at the stars and noticed a bright star shooting up, down, left +1982-06-20,37.5458333,-77.3280556,Highland Springs,VA,triangle,45,Bright green Triangle flying over the tree tops. +1982-06-20,42.1783333,-75.625,Harpursville,NY,triangle,1200,Large triangle shaped ship approx 40 to 50 ft tip to tip hovering over bridge +1984-06-20,38.5816667,-121.4933333,Sacramento,CA,circle,25,I worked at a west coast AFB. We had a project called Deep Space Probe. It is a powerfull telescope that would track satillites. On on +1984-06-20,30.1258333,-93.0797222,Holmwood,LA,oval,1500,Lake Charles native got a close up view of a large hovering disk on the hwy between Lake Charles and Bell City. +1985-06-20,42.7883333,-71.2013889,Salem,NH,sphere,2,Multi colored sphere like in +1985-06-20,41.12,-87.8611111,Kankakee,IL,cylinder,30,On the evening of June 20, 1985 I observed what appeared to be an Unidentified Flying Object at around 21:00 hrs. At the time, I was +1985-06-20,41.4527778,-82.1825,Lorain,OH,circle,1800,Circlear object appeared to be spinning Blue gray metal appeared to be glowing. +1986-06-20,32.2216667,-110.9258333,Tucson,AZ,fireball,180,SLOW-MOVING FIREBALL REPORTED SEEN IN TUCSON, ARIZONA IN BROAD DAYLIGHT +1986-06-20,65.2636111,-166.3608333,Teller,AK,oval,900,Oval shaped craft with red green and white lights with windows,that had a grayish beam coming down- us +1987-06-20,42.1944444,-71.8361111,Auburn,MA,fireball,5,Fireball went down into the woods. Moments later we heard rustling through the leaves, twigs breaking +1988-06-20,42.4791667,-71.1527778,Woburn,MA,light,720,-Working the night shift,and always watching the stars and shapes and distance of stars, starting like this looking up to the east from +1988-06-20,30.3116667,-95.4558333,Conroe,TX,fireball,60,Unknow 6 ft long ball of flame fire that pause, fly 3 circle around the tree then up it went. +1988-06-20,40.0336111,-76.5047222,Columbia,PA,oval,180,oval ring of lights hovering, moved vertically and fast +1989-06-20,39.0702778,-76.5455556,Severna Park,MD,unknown,7200,Occurred : 10/28/2003 01:00 (Entered as : 10/28/2003 01:00) Reported: 10/31/2003 3:23:47 AM 03:23 Posted: 10/31/2003 Location: Pasadena +1989-06-20,35.0844444,-106.6505556,Albuquerque,NM,formation,600,14 lighted objects on a clear night in New Mexico. +1990-06-20,47.5675,-122.6313889,Bremerton,WA,triangle,20,blazed along tree line then dissapeared. +1991-06-20,39.1580556,-75.5247222,Dover (Near),DE,triangle,14400,1991 dover delaware. triangular craft +1992-06-20,44.0077778,-116.9155556,Fruitland,ID,light,60,Bright light that zig-zagged in the sky. Speed of pattern and size is impossible with human-made aircraft. +1992-06-20,36.7477778,-119.7713889,Fresno,CA,oval,120,BIG NOISELESS CRAFT AT SPEEDS FASTER THAN ANY THING EVER HEARD OF. +1992-06-20,29.6538889,-82.5233333,Jonesville,FL,rectangle,240,Looked up to see a rectangular shaped object floating above me, it was the size of a football field. +1993-06-20,42.2208333,-70.9402778,Weymouth,MA,triangle,30,Was sitting on the back porch of my house with 2 of my friends and myself when we all noticed almost at the same time a strange triangl +1993-06-21,36.9741667,-122.0297222,Santa Cruz County,CA,other,180,hovering ball of moltant lava 15 ft from me took of at speed of light...... +1994-06-20,48.9391667,-119.4344444,Oroville,WA,triangle,180,White, Triangular shape +1995-06-20,33.2469444,-95.8997222,Commerce,TX,circle,300,I saw a craft in the sky that moved unlike all planes we see today! +1995-06-20,38.4902778,-89.7930556,Mascoutah,IL,sphere,900,Blue sphere following spotlight beam scared us to death. +1995-06-20,31.4622222,-97.1955556,Hewitt,TX,cigar,360,Sunny evening...shiney cigar shaped object moving slowly rotating...then disappeared, later followed by 3 military aircraft +1995-06-20,44.1986111,-88.6647222,Winchester,WI,circle,300,Orange glowing circle in the sky +1996-06-20,37.0475,-112.5255556,Kanab,UT,fireball,180,i was at a trailer park by the edge of the K hill call the K hill because it has a K on it for kanab. I was getting my 7 month old son +1997-06-20,46.3238889,-120.0075,Sunnyside (Granger, On Hwy 82),WA,light,300,3 bright red lights clustered together, at first thought airplane, no running lights or no sound, flew over Outlook Wa. and headed for +1997-06-20,29.1869444,-82.1402778,Ocala,FL,light,300,It was amber orange in color glowing and pulsating behind a cloud or vapor floated very slowly and split in two +1997-06-20,47.6063889,-122.3308333,Seattle,WA,other,0.45,on leaving work at giving time noticed fivebright spots in the sky, the spots were evenly spaced in a v shape,cloud cover was minimal, +1997-06-20,33.8222222,-111.9175,Carefree,AZ,circle,5,Large round object glowing a bright green, with also some yellow & white light dropping to the NE from SW, to near ground level at abou +1997-06-20,43.2416667,-75.2572222,Holland Patent,NY,circle,5,A bright blue light hovering over an open field. +1997-06-20,41.8766667,-77.4016667,Little Marsh,PA,triangle,180,Darkest night sky of year,moon not visible.Object traveled south-north very low,no sound,slow,two large front facing white cicles that +1997-06-20,37.4694444,-105.8694444,Alamosa (West Of),CO,light,300,Bright silverish-white light 5 degrees above horizon with occasional red flashes, appeared 50 miles North-West of Alamosa +1997-06-20,35.0419444,-89.6644444,Collierville,TN,oval,1800,Country side sighting of 4 UFOS with 4 witnesses. +1998-06-20,39.1580556,-75.5247222,Dover,DE,rectangle,30,In the Summer on 98 Myself and 2 friends were on our way to q shore house on the Indian River in Delaware, I was driving Interstate 95 +1998-06-20,41.605,-80.9536111,Hartsgrove,OH,light,15,Strange lights in the small town of Hartsgrve +1998-06-20,30.3319444,-81.6558333,Jacksonville,FL,circle,10,Completely Silent Small UFO with Spotlight Illuminated my bedroom durring early morning. +1998-06-20,45.5861111,-95.9136111,Morris,MN,egg,20,UFO in morning sky...jets following +1998-06-20,36.3125,-95.6158333,Claremore,OK,sphere,15,Nothing on this earth moves that fast! +1998-06-20,47.3483333,-122.1136111,Covington,WA,circle,1200,In backyard, looked up admiring sky and saw bright lights moving. +1998-06-20,32.3069444,-96.0063889,Eustace,TX,oval,60,Oval object streaking through sky, high rate of speed, trailing yellow and orange smoke, or dust particles behind it. +1998-06-20,43.1547222,-77.6158333,Rochester,NY,chevron,120,My girlfriend and I were sitting on my deck looking at the stars and this Triangular shaped craft "floated" or slid directly overhead. +1998-06-20,34.3608333,-117.6325,Wrightwood,CA,circle,300,Lights in the sky at summer camo +1998-06-20,35.7913889,-78.7813889,Cary,NC,circle,45,A red light from zero to light speed, no time flat. +1999-06-20,43.6136111,-116.2025,Boise,ID,other,30,Horse shoe shaped craft, very silent (no sound) 2ꯠ foot altitude, 4 dull lights on bottom, area between lights was reddish glow, fro +1999-06-20,43.6136111,-116.2025,Boise,ID,light,300,Solid white light,the appearance of a star, moved from the east to the west at a solw pace. No noise was audible and the light did not +1999-06-20,41.1669444,-73.2052778,Bridgeport,CT,light,10,Witnessed single object flying over at high speed +1999-06-20,40.4655556,-80.0658333,Mckees Rocks,PA,rectangle,5,BRIGHT silver rod with dimensions of 6 inch ruler. Estimate that it was very high, and at that altitude was traveling very fast across +1999-06-20,36.175,-115.1363889,Las Vegas,NV,oval,300,((name delete),a local reporter for ch.13 tv. news in Las Vegas, videotaped two objects, seen by many, above the new Venetian hotel in +1999-06-20,18.0519444,-67.0597222,Lajas (Puerto Rico),PR,disk,2700,My friend Carlo and I were driving on narrow road near the town of Lajas, Puerto Rico oon our way back to La Parguera where we intended +1999-06-20,33.5177778,-84.6697222,Palmetto,GA,circle,120,it looked like a cluster of lights @ the interstate exit,then it moved upward,& took off like a bullet +1999-06-20,45.8925,-111.5513889,Three Forks (North Of),MT,fireball,3,Just heard Peter on Art's show talk about the arc welder in the sky, and it crossed from north east to the south west over south centra +2000-06-20,46.6022222,-120.5047222,Yakima,WA,light,600,Four very bright yellow stationary lights in a 20 degree arc, fading out then popping up in a different position. +2000-06-20,37.7058333,-121.0838889,Salida,CA,triangle,600,triangle shaped ufo in salida, ca.june 20000 +2000-06-20,36.9008333,-82.0802778,Lebanon,VA,fireball,10,Yellow ball surronded by red fire, followed by a blue tail +2000-06-20,36.5222222,-82.7136111,Church Hill,TN,flash,60,Explosion in the air. +2000-06-20,38.8338889,-104.8208333,Colorado Springs,CO,unknown,1800,9 unknown lights off interstate heading towards colorado springs. 6 unknown lights over the mountains with planes and watching +2000-06-20,42.4083333,-71.0125,Revere,MA,disk,900,I observed a disk shaped, luminous tan colored UFO with tiny colored lights flashing on its surface moving slowly north by northeast. +2000-06-20,37.3397222,-91.8338889,Raymondville,MO,circle,90,WHITE HOT OBJECT, TRAVELING AT GREAT SPEED. +2000-06-20,44.9430556,-123.0338889,Salem,OR,changing,300,I SAW A BRIGHT ORANGE LIGHT IN THE SKY WHICH APPEARED TO HAVE A TAIL OF LIGHT THAT SUDDENLY SPLIT INTO TWO LIGHTS. +2000-06-20,34.3983333,-82.2469444,Ware Shoals,SC,unknown,120,The object at first appeared like a satellite however it slowed and became very bright then the object faded a bounced toward space. +2001-06-20,32.2216667,-110.9258333,Tucson,AZ,unknown,15,Flying creature in the sky, with form of human dark skin. And moved in a floating motion. ((NUFORC Note: Serious report?? PD)) +2001-06-20,37.7397222,-121.4241667,Tracy,CA,disk,300,The object seemed to dissipate at certain points and then reappear in a different spot in the sky. As if moving so fast that it became +2001-06-20,32.7763889,-79.9311111,Charleston,SC,circle,3600,large sphere stationary for an hour +2001-06-20,19.4975,-154.9508333,Pahoa,HI,circle,120,i was standing out on my front walkway of my house, when I saw a strange round shaped object fly over my head. i could actually see blu +2001-06-20,36.2841667,-82.1727778,Hampton,TN,triangle,15,it was a triangle it had lights all around it about 15 or 20 lights tney weren't blinking they were like the light you see when you loo +2002-06-20,36.3711111,-91.8225,Salem,AR,circle,10800,Brillant object over baseball game for 2 hours +2002-06-20,40.7336111,-77.8858333,Pine Grove Mills,PA,cylinder,90,a long bright object was observed over Pine Grove Mills, Pa., stationary at first then travelling at a high speed until disappearing. +2002-06-20,34.0522222,-118.2427778,Los Angeles,CA,other,30,Seperating Red Flashing Sphere with Lighting Speed +2002-06-20,40.345,-74.1844444,Holmdel,NJ,triangle,240,triangle of stars about the size of of the head of the constelation Leo. Moving very slowly from north to south along the eastern horiz +2002-06-20,48.1183333,-123.4294444,Port Angeles,WA,fireball,2100,It was a bright circular object with mullti-colored llights in the center in the western sky over the Straits of Juan de Fuca +2002-06-20,33.5172222,-82.0758333,Martinez,GA,light,1200,Ufo seen near power plants +2003-06-20,42.865,-71.3744444,Londonderry,NH,sphere,60,Strange object seen over Londonderry, NH. +2003-06-20,41.9402778,-85.0005556,Coldwater,MI,triangle,300,The craft emitted a low intensity green light, in broad daylight, no sound, very low, and easily covered an entire golf course in size +2003-06-20,39.5297222,-119.8127778,Reno,NV,circle,1800,Four of us were driving on Reno streets trying to find a hotel, I noticed a big pie shaped object hanging above the Circus Circus parki +2003-06-20,41.5066667,-90.515,Moline,IL,triangle,20,black metallic upside down triangle object appeared hovering 15 feet above and 10 feet away from side of I-74 bridge. +2003-06-20,38.1366667,-93.1694444,Edwards,MO,disk,45,I saw a large black disc travel from east to west in the Lake of the Ozarks area. +2003-06-20,41.85,-87.65,Chicago (Over Lake Michigan),IL,teardrop,120,a teardrop or fireball shaped object that hung in the sky; the object showed up on a long-exposure photograph. +2003-06-20,37.9,-86.755,Hawesville,KY,unknown,1,Stick Objects +2004-06-20,37.7808333,-90.4216667,Farmington,MO,light,300,It looked like a star, but then started moving, it zig zagged and went back the other way. We watched it for five minutes. +2004-06-20,30.5080556,-97.6786111,Round Rock,TX,light,180,two fast moving star-like objects that turned. +2004-06-20,39.9611111,-82.9988889,Columbus,OH,other,1,Was shooting digital shots for a client of thier building (I'm a professional photographer) The building faces North, so I was there +2004-06-20,42.1616667,-70.7944444,Norwell,MA,oval,300,White ovoid traveling towards the South East. +2004-06-20,41.0266667,-92.8055556,Albia,IA,other,600,Craft that changed from red to white to blue, and changed in shape. then darted out of sight. +2004-06-20,35.0308333,-76.6933333,Oriental,NC,circle,2700,Two Spheres sighted from the Camp Don Lee pier. +2004-06-20,33.9166667,-117.8991667,Brea,CA,formation,2,I briefly saw a formation of lights over norht Orange County, California late Sunday night, July 20, 2004. +2004-06-20,42.1947222,-122.7083333,Ashland,OR,light,3600,strange distant lights moving in zig zag patterns from south to north, one after another aprox. 1 minute apart. ((Satellites??)) +2004-06-20,47.6063889,-122.3308333,Seattle,WA,unknown,90,High Flight Speed Star Bright Lit Object Flying Toward Boeing Field Making Sharp TurnsThen South Of It and to Renton Field +2004-06-20,47.6063889,-122.3308333,Seattle (University District),WA,triangle,2,Adult witness observes peculiar, lighted triangular craft streak over University District in clear skies. +2004-06-20,47.6063889,-122.3308333,Seattle,WA,triangle,3,beautiful triangular craft moves quietly over Seattle +2005-06-20,35.2219444,-101.8308333,Amarillo,TX,other,3600,Craft shaped like a cube of bright swirling light, hovering over downtown Amarillo at 3:00 a.m., spot lights and heavenly music . . . +2005-06-20,39.8772222,-82.2891667,Glass Rock,OH,cigar,900,Possible U.F.O. in Glass Rock, OH. +2005-06-20,44.0816667,-91.3488889,Galesville,WI,formation,1200,The objects were dark and circular. They would disappear and then reappear in a different location.One object seemed to be in the shape +2005-06-20,27.7455556,-81.5308333,Frostproof,FL,fireball,120,Giant orange ball of light rising from the woods, and had no noise to it. +2005-06-20,37.775,-122.4183333,San Francisco,CA,formation,900,Light Color Formation Shapes Changing +2005-06-20,30.2458333,-87.7008333,Gulf Shores,AL,light,1800,Unexplained lights seen after aircraft passes over beach. +2005-06-20,39.05,-77.4011111,Potomac Falls,VA,triangle,300,I saw 3 lights at high altitude. At first I thought it was 3 separate objects but all 3 lights moved at the same speed (very slowly) di +2006-06-20,40.2719444,-81.8597222,Coshocton,OH,oval,5,Me and my friend was outside cookin some chicken on my grill and we heard a small boom sounded like a semi truck getting loaded but the +2006-06-20,40.7141667,-74.0063889,New York City (Queens),NY,unknown,3600,Five objects in sky around LaGuardia airport, N.Y.C., daylight. +2006-06-20,39.3702778,-74.5505556,Northfield,NJ,sphere,2,Was walking south on bike path in northfield near Zion rd. and looked up over the tree line to the south to see a greenish spherical li +2006-06-20,39.2402778,-76.8397222,Columbia,MD,fireball,20,There was a ball of fire moving horizontally across the sky and it was leaving a trail behind it as it moved. +2006-06-20,20.0005556,-155.5602778,Mana,HI,sphere,600,A large stealth dark spherish object, with no lights or noise, at close range to barking sands beach kauai +2006-06-20,32.2216667,-110.9258333,Tucson,AZ,changing,240,colored lights over the mountains around Tucson +2006-06-20,39.8494444,-75.3561111,West Chester,PA,egg,5,bright green egg shage light in SE pennsylvania sky +2006-06-20,38.7208333,-75.0763889,Rehoboth Beach,DE,light,20,bright green oblonged object flying vertical in sky +2006-06-20,33.9472222,-118.0844444,Santa Fe Springs,CA,egg,120,I saw an egg shaped noiseless object 200 feet above my car with red lights that disappeared after I yelled +2006-06-20,40.4166667,-86.8752778,Lafayette,IN,fireball,3,two fireballs that seemed to just disappear out of no-where +2006-06-20,33.6888889,-78.8869444,Myrtle Beach,SC,oval,15,I saw a bright oval object in the skies over Myrtle Beach SC. +2006-06-20,33.5405556,-89.2669444,Eupora,MS,other,10,Silent near invisiable arrow, reflecting stars, moved across thes sky at night. +2007-06-20,44.9902778,-123.025,Keizer,OR,oval,180,Very large, oval shaped craft with two steady white lights for and aft. ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-20,42.9633333,-85.6680556,Grand Rapids,MI,light,600,Pulsing light over Grand Rapids +2007-06-20,38.63,-112.12,Monroe,UT,circle,900,UFO's shooting at each other. +2007-06-20,44.2883333,-71.2258333,Glen House,NH,disk,10,Saucer UFO at Mt. Washington Auto Road in New Hampshire 02/20/07. ((NUFORC Note: We believe it's a bird, with wings upraised. PD)) +2007-06-20,44.9430556,-123.0338889,Salem,OR,disk,1200,i saw two shiny discs move trough the sky from north to south in the sunny afternoon, very slowly. +2007-06-20,41.6833333,-86.25,South Bend,IN,disk,1800,On this date I was on my way to visit my sister at Ball State when i looked out my window and saw something in the air. It was a grayis +2007-06-20,36.1627778,-85.5016667,Cookeville,TN,light,3600,Bright white star like object scene in daylight over Cookeville, TN for extended time. ((NUFORC Note: Star or planet?? PD)) +2007-06-20,41.5033333,-74.0108333,Newburgh,NY,light,45,Two bright lights in the evening sky. Small one trailered thee large light approx 500 feet.Direction ESE. ((NUFORC Note: ISS?? PD)) +2007-06-20,40.4416667,-74.1302778,Keansburg,NJ,light,300,2 objects sighted ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-20,39.1697222,-91.8827778,Mexico,MO,light,50,two bright white orbs come from northwest heading southwest no sound. ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-20,41.0266667,-92.8055556,Albia,IA,light,8,2 points of lights resembling planets disappearing. ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-20,33.0580556,-112.0469444,Maricopa,AZ,light,1500,Two amber colored orbs - Maricopa, AZ +2007-06-20,40.1933333,-85.3863889,Muncie,IN,triangle,120,Triangle craft with 2 bright white lights on back points floated past then paused, lights then turned orange and the craft disapeared. +2007-06-20,39.9022222,-95.8005556,Sabetha,KS,sphere,240,huge intensely bright balls of light over northeast kansas. ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-20,39.7391667,-104.9841667,Denver,CO,circle,120,Two UFO's seen above Denver sky. ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-20,40.1933333,-85.3863889,Muncie,IN,triangle,120,Black triangle with 2 bright white lights on back 2 points floated by, no sound. paused lights turned to orange craft disappeared +2007-06-20,35.3186111,-82.4611111,Hendersonville,NC,other,90,2 stars slowly moving in unison and climbing the sky until that faintly and slowly disappeared. ((NUFORC Note: ISS w/ Shuttle. PD)) +2007-06-20,38.2541667,-85.7594444,Louisville,KY,light,120,Two silent and very high flying objects moving southeast over Louisville, KY.((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-20,39.9611111,-82.9988889,Columbus,OH,light,180,2 bright objects, great distance from each other move in unison from W into SW, disappear simultaneously. ((NUFORC Note: ISS? PD)) +2007-06-20,39.1836111,-96.5713889,Manhattan,KS,light,1200,Star-like moving objects +2007-06-20,36.8455556,-121.5369444,San Juan Bautista,CA,fireball,120,In the dead of night a bright orb rose from the ground, changed colors, appeared to grow in size, and teleported away +2007-06-20,39.5213889,-85.7769444,Shelbyville,IN,light,120,2 bright lights, starlike, moving across the sky, one following the other. ((NUFORC Note: Space Shuttle w/ ISS?? PD)) +2007-06-20,46.7833333,-92.1063889,Duluth,MN,other,120,Orange round glowing object moving steadily north to south without any noise lower than the plane which I also observed +2007-06-20,46.9075,-97.345,Wheatland,ND,circle,120,Orange Sphereical Unknowen craft over Eastern North Dakota +2007-06-20,29.4658333,-81.2580556,Bunnell,FL,triangle,180,three large lights in the sky-triangular object no noise or movement-very low to the ground +2008-06-20,34.4208333,-119.6972222,Santa Barbara,CA,fireball,120,FRONT: LARGE BRIGHT WIDE LIGHT/ THE TAIL END CIGAR/SILVER OR WHITE . ABOUT 5 MILES AWAY, VERY CLEAR NIGHT +2008-06-20,34.2572222,-118.6002778,Chatsworth,CA,changing,300,Solid light in a boomerang shape slowly moves across Chatsworth, CA sky. +2008-06-20,34.5794444,-118.1155556,Palmdale,CA,light,120,Unidentified orange light travelling at high speed with sudden changes in direction. +2008-06-20,27.2936111,-80.3505556,Port Saint Lucie,FL,cigar,1500,large cigar shaped pulsating ufo. +2008-06-20,38.8055556,-123.0161111,Cloverdale,CA,sphere,45,bright red sphere moved radically in a clear starry night sky and we got the feeling that we were being watched after it disappeared. +2008-06-20,35.8808333,-84.5086111,Kingston,TN,triangle,300,3 white lights on each tip one red one in the middle flashing +2008-06-20,45.6388889,-122.6602778,Vancouver,WA,unknown,60,3 objects not moving, and then all of a sudden 2 slowly moved, and then the 3rd took off till it disappeared, and the 2 other took off. +2008-06-20,40.4919444,-107.2569444,Hayden,CO,disk,15,Observered unmistakeable very bright metallic saucer/disc hovering and moving slightly +2008-06-20,36.6116667,-119.5261111,Parlier,CA,light,300,Lost UFO Firing Up as it ascends for dissapearing in an instant. ((NUFORC Note: Hoax, or not, we cannot be certain. PD)) +2008-06-20,41.0933333,-75.0022222,Bushkill,PA,cigar,60,Cigar Shaped Aircraft +2008-06-20,39.0875,-81.9227778,West Chester,OH,triangle,180,Dark colored wing seen heading South-Southeast from Old Station Rd and Oregon Pass. Wing executed ~120 degree turn almost instantly +2008-06-20,47.7558333,-122.3402778,Shoreline,WA,other,300,UFO Photographed Over Puget Sound June 20 2008 7;53PM +2008-06-20,38.2325,-122.6355556,Petaluma,CA,cigar,300,My girlfriend reported seeing a cigar shaped craft with blinking lights around the middle south east of town as she stepped outside. +2008-06-20,42.3708333,-71.1833333,Watertown,MA,circle,120,Three objects moving SSW to NNE across Massachusetts night sky. +2008-06-20,40.8963889,-78.2208333,Philipsburg,PA,light,300,Noted star like object moving in relation to a telephone pole. It was moving in a westerly direction. There is no way to note speed +2008-06-20,39.835,-83.4652778,Newport,OH,formation,45,Pink Phoenix Lights type grouping +2008-06-20,46.8108333,-90.8180556,Bayfield,WI,light,60,A white light brighter than the stars moved slowly from south to north, seemed to slow, grew quite bright, then faded within 10 seconds +2009-06-20,39.1961111,-121.19,Penn Valley,CA,flash,600,Bizarre flashing lights +2009-06-20,35.3733333,-119.0177778,Bakersfield (Near I-5),CA,other,300,INTERSTATE 5 LIGHTS +2009-06-20,40.9477778,-90.3711111,Galesburg,IL,formation,240,Cluster of lights appeared just before sunrise and travelled across the sky. +2009-06-20,34.2366667,-84.4908333,Canton,GA,circle,3,very bright white circle light with a bit of a halo glow around it +2009-06-20,39.9191667,-75.4919444,Glen Mills,PA,disk,60,Photo's taken of UFO's near Rainbow. ((NUFORC Note: Photos appear ambiguous to us. May be birds, or insects, in flight. PD)) +2009-06-20,35.6955556,-85.0008333,Luminary,TN,cross,1200,2 UFO 's over Sequatchie Valley,Tennessee +2009-06-20,37.0058333,-121.5672222,Gilroy,CA,sphere,180,I saw a white sphere shaped object floating in the sky. I watched it float in place for a few minutes until it dissapeared. +2009-06-20,42.4972222,-82.9372222,Roseville,MI,rectangle,300,rectangle shaped object standing on end, moving from east to west, wind moving west to east @10-15 miles an hour. then stopped,hovered. +2009-06-20,42.5,-96.4,Sioux City,IA,triangle,1800,they made a triangular formation. +2009-06-20,34.1591667,-118.5002778,Encino,CA,light,37800,Pulsating white light over Encino, CA +2009-06-20,34.1591667,-118.5002778,Encino,CA,light,1200,My husband and I saw a light blue colored light pulsating and moving in place behind the clouds. We had never seen anything like it bef +2009-06-20,40.015,-105.27,Boulder,CO,light,300,Large round, fiery looking light flying slowly from south to north over Boulder, Colorado at 21:17 MST 06-20-09. +2009-06-20,42.3313889,-83.0458333,Detroit,MI,unknown,900,I saw 3 lights that looked like spotlights at first. They later started to gather together and play like children in the sky. It was +2009-06-20,38.4327778,-90.3775,Arnold,MO,disk,60,Circular with white light on underside and silent, low flying +2009-06-20,47.2797222,-122.6044444,Bayview,WA,fireball,600,Fireballs over Padilla Bay/Bayview area in Skagit county, Washington state. +2010-06-20,41.6572222,-87.68,Blue Island,IL,circle,300,the alien craft was black and disk shaped and it traveled so fast it literally disappeared and appeared to great distances. +2010-06-20,42.2711111,-89.0938889,Rockford,IL,circle,240,Circular, barely any light, huge, white-silver tinge, made no sound. +2010-06-20,42.2711111,-89.0938889,Rockford,IL,circle,300,We were walking at 2:35ish AM and my wife spotted this white no more of a shopping bag color ciruclar round shape in the sky, it was be +2010-06-20,32.7355556,-97.1077778,Arlington (Viewing From),TX,light,1800,Large bright star looking object moving slowly toward the northwest at 4AM +2010-06-20,33.6597222,-85.8316667,Anniston,AL,oval,600,the smoothest moveing object ever memorizing sliver off white color once i set my eyes focous on it i couldnt do anything but look then +2010-06-20,38.2972222,-122.2844444,Napa,CA,sphere,300,Small hovering bright light seen in the evening sky. +2010-06-20,41.4088889,-75.6627778,Scranton,PA,triangle,360,Huge football stadium sized craft. Transparent but edges were clearly lit up. Moved soundlessly and very slowly through the night skies +2010-06-20,43.7730556,-88.4469444,Fond Du Lac,WI,fireball,300,orange ball with sparkling rays omitting out of it moving across the sky +2010-06-20,40.4166667,-86.8752778,Lafayette,IN,fireball,3,Bright white light flew across sky and immidiately went straight up making a J shape and disapeared +2010-06-20,44.3863889,-88.2886111,Freedom,WI,rectangle,300,Low flying rectangular craft with changing color panels of light seen in the country on a back road. +2011-06-20,35.2619444,-81.1875,Gastonia,NC,unknown,240,We are right outside of Charlotte Nc and Saturday the 25th at around 10-1030 pm my husband and I were outside and both noticed what at +2011-06-20,48.4213889,-122.3327778,Mt. Vernon,WA,disk,300,I seen a u.f.o. while walking my dog as it hovered and flew away and i have seen 3 others scince +2011-06-20,39.9936111,-105.0891667,Lafayette,CO,disk,120,Elliptical shaped grey metal object moved west to east across summer sky around 6 to 7:30 p.m. +2011-06-20,37.3861111,-122.0827778,Mountain View,CA,light,600,White Light Moving Object Seen over Mountain View/Sunnyvale CA area +2011-06-20,43.9716667,-70.6097222,Naples,ME,unknown,40,Fishing remote pond in Canoe, observed bright light moving across sky that slows, stops and disappears . +2011-06-20,41.5066667,-90.515,Moline,IL,triangle,300,The UFO I saw was near an airport, Quad Cities International Airport to be exact, so the craft I saw may just be a normal plane or Je +2012-06-20,39.7683333,-86.1580556,Indianapolis,IN,circle,180,Large orange light on SW side of Indy, near I-465 +2012-06-20,42.2825,-83.1752778,Melvindale,MI,light,60,One big bright light that seem to be a star at first to high up to be a plane and as it moved turned to red and disappeared in the sky. +2012-06-20,40.1075,-83.2675,Plain City,OH,triangle,10,Fairly big orange transulsent triangular shaped object that was glowing and going very fast and it was silent +2012-06-20,38.0033333,-79.1561111,Greenville,VA,triangle,240,Triangle craft low slow silent +2012-06-20,39.8016667,-89.6436111,Springfield,IL,triangle,120,Man driving to work on Route 4 witnesses a gigantic craft hovering above roadway; other witnesses. +2012-06-20,45.8208333,-120.8205556,Goldendale,WA,fireball,60,Why was it necessary that a jet come from nowhere and deposited this contrail to dissapate the rainbow object? +2012-06-20,43.2319444,-105.2597222,Bill,WY,light,3,Bright Green Light With A Trail (Shaped like a Meteor) Descending Very Rapidly, then abruptly turning +2012-06-20,41.215,-86.7758333,North Judson,IN,triangle,60,Nearly Transparent Triangular Object Moved Very Slowly Across Sky Flew into Cloud and Did Not Reappear +2012-06-20,41.3113889,-105.5905556,Laramie,WY,circle,300,Laramie, small circular craft +2012-06-20,28.0777778,-82.7638889,Palm Harbor,FL,fireball,60,((HOAX??)) It was a fireball shape. It was very quiet but had a faint burning sound. It was very meticulous looking. +2012-06-20,44.3816667,-123.5952778,Alsea (Above),OR,light,60,Two bright balls of light ascending over forested area. +2012-06-20,42.7844444,-83.2397222,Lake Orion,MI,sphere,300,Orange light in sky over orion mi +2012-06-20,39.7391667,-104.9841667,Denver,CO,triangle,15,At approximately 8:15pm mountain time on Wednesday 6/20/12 I saw an Unidentified Flying Object over Denver Colorado. There was a weat +2012-06-20,42.9813889,-70.9483333,Exeter,NH,light,600,June 20, 2012, Exeter, NH - slowly-moving red/orange lights traveling in a wavering line across the evening sky, then fading away. +2012-06-20,36.6111111,-121.8505556,Seaside,CA,triangle,900,Triangular object seen in Seaside, California (same object seen in Redondo Beach on YouTube 2011) +2012-06-20,42.3266667,-122.8744444,Medford,OR,sphere,300,Large very bright sphere of white light in Southwestern sky coming to earth entering from south to north. +2012-06-20,45.6572222,-68.7102778,Millinocket (Near),ME,circle,180,Cool light +2012-06-20,42.8683333,-72.8719444,Wilmington,VT,sphere,60,Glowing sphere, hovering and then dissipating in close proximity to human beings +2012-06-20,47.6777778,-116.7794444,Coeur D'alene,ID,light,10,Bright light that dimmed out +2012-06-20,43.0202778,-78.8805556,Tonawanda,NY,fireball,90,Orange fireball seen in Tonawanda NY +2012-06-20,39.7683333,-86.1580556,Indianapolis,IN,light,60,Red flame flying through the sky. +2012-06-20,42.3180556,-84.0205556,Chelsea,MI,light,90,Single white light, no flashing green, red or white light. Traveling from WNW to ESE. +2012-06-20,47.9252778,-97.0325,Grand Forks,ND,circle,10,Orb of light flew across the sky, airforce planes circled area of spotting. +2012-06-20,37.3477778,-120.6080556,Atwater,CA,circle,25,Orb in the Night +2012-06-20,37.9872222,-122.5877778,Fairfax,CA,sphere,1320,Light orange sphere periodically brightening and dimming +2013-06-20,39.1619444,-84.4569444,Cincinnati,OH,light,180,6 orange-red lights over the night sky +2013-06-20,44.4686111,-71.1855556,Berlin,NH,circle,60,1 Large gold light below left of moon fades out 4 more large gold lights appear same area loud engine noise. +2013-06-20,44.0536111,-71.1288889,North Conway,NH,light,8,2 lights appear, dropped blinking red lit object from the center of them, then disappeared again leaving behind the red object. +2013-06-20,33.5927778,-79.0088889,Garden City,SC,light,1800,Bright orange lights in the night sky. +2013-06-20,33.8158333,-78.6802778,North Myrtle Beach,SC,light,60,Huge Orange Balls of disappearing and reappearing lights seen briefly over the Ocean at North Myrtle Beach +2013-06-20,39.6697222,-74.2322222,Beach Haven West,NJ,light,300,Bright white ball, no noise or flashing lights. ((NUFORC Note: Possible sighting of the ISS. PD)) +2013-06-20,43.3369444,-71.5658333,Canterbury,NH,light,10,Three red lights following each other with a weird force field window maybe.... +2013-06-20,43.3369444,-71.5658333,Canterbury,NH,triangle,10,3 flying objects with red lights flying from the direction of Shaker Village in Canterbury NH flying towards the north. +2013-06-20,33.6888889,-78.8869444,Myrtle Beach,SC,unknown,20,Strange moving bright lights. +2013-06-20,35.075,-85.0622222,Ooltewah,TN,formation,120,Bright orange/red lights in Big Dipper formation, stationary over Ooltewah, TN +2013-06-20,40.7655556,-73.0155556,Patchogue,NY,light,30,Slow moving light vanishes. ((NUFORC Note: Possible sighting of ISS?? PD)) +2013-06-20,33.8158333,-78.6802778,North Myrtle Beach,SC,fireball,60,One large red fireball descending from sky, which broke into 7 others and proceeded to blink and move sparatically. +2013-06-20,33.8158333,-78.6802778,North Myrtle Beach,SC,light,40,North Myrtle Beach orange lights...cool. +2013-06-20,33.9163889,-78.1613889,Oak Island,NC,formation,300,Strange formation of orange lights over the ocean appearing and reappearing at regular intervals +2013-06-20,44.3633333,-98.2138889,Huron,SD,light,600,Extremely bright light moving SE at a fast speed. +2013-06-20,33.7591667,-118.0058333,Westminster,CA,light,30,Enormous oval shaped light, flashing on and off, illuminating through clouds as it moved at high rate of speed through sky. +1952-06-21,42.7325,-84.5555556,Lansing (Few Miles Northwest Of, In The Country),MI,other,2,It was like a star that moved, it was 1952 before there was any space traffic or objects and was not an aircraft. +1957-06-21,33.9022222,-118.0808333,Norwalk,CA,disk,480,It was hovering about 20 feet from the ground and hovered for about 8 minutes. +1960-06-21,37.1894444,-84.1177778,East Bernstadt,KY,disk,90,The disc was about 30 feet across and moved silently; I was a five year old child. I was terrified and ran inside. +1966-06-21,35.2325,-97.2122222,Little Axe,OK,light,300,Extreme level flight, instant stop,hover, rapid disappearence +1968-06-21,42.3961111,-75.9575,Upper Lisle,NY,triangle,120,Silent slow moving huge dark grey triangular craft with 3 lights in each corner. +1969-06-21,40.8152778,-73.1127778,Ronkonkoma,NY,unknown,3600,A unidentified craft with multi-colored lights that hovered silently and could move at Incredible speeds, +1973-06-21,35.614444399999996,-88.8138889,Jackson,TN,oval,600,A massive silent object was a small dot in a matter of seconds leaving us watching in total darkness and amazement. +1976-06-21,34.7463889,-92.2894444,Little Rock (Southwest),AR,sphere,240,Flourescent ball approximately 20 feet in diameter.Followed automobile at treetop level.Was seen by police. +1977-06-21,31.4966667,-92.8591667,Chopin,LA,fireball,5400,Fireball light show in the Western Louisiana sky. +1978-06-21,42.6525,-73.7566667,Albany,NY,fireball,20,Orange fireball +1987-06-21,39.8308333,-77.2313889,Gettysburg,PA,unknown,900,I was visiting the site of the famous civil war battles by myself. At that night, I was restless and got out of bed. I looked out of +1992-06-21,42.7188889,-77.6766667,Conesus,NY,unknown,120,Eye contact with Creature +1993-06-21,39.1580556,-75.5247222,Dover,DE,teardrop,3600,it had a neon pink bottom and lime green lights on the bottom. +1994-06-21,43.55,-96.7,Sioux Falls,SD,sphere,300,Orange white round light seen by 2 witnesses +1996-06-21,39.1855556,-78.1636111,Winchester,VA,cone,60,I saw a cone with a flashing light at the top, "windows" in the center, and three lights in triangle formation on the base. +1997-06-21,42.2830556,-87.9530556,Libertyville,IL,disk,3600,I saw a disc shaped object glowing with a very bright, white light. It was the brightest and softest light I have ever seen. Even tho +1997-06-21,33.4483333,-112.0733333,Phoenix,AZ,cylinder,180,white cylendar, stationary, no markings, no lights, no sound. +1997-06-21,43.8486111,-73.4238889,Ticonderoga,NY,triangle,300,There was a flash of blue light in the sky, and then it disappeared +1998-06-21,37.6305556,-122.41,San Bruno,CA,disk,600,A huge saucer with a 2nd story on top was in the air ahead of us. It was fully lit as if w/ONE light; slowly floated/glided thru air w +1998-06-21,39.9202778,-80.7433333,Moundsville,WV,light,120,I was scanning the night sky with 7x50 binoculars when I noticed a light much higher than commercial aircraft usually fly. +1998-06-21,27.8002778,-97.3961111,Corpus Christi,TX,cylinder,8,Gentlemen I have always been someone who relies on experiential knowledge. I have always felt that the likelyhood of other intelligence +1998-06-21,30.2866667,-89.3761111,Waveland,MS,oval,300,I was on my pourch talking to my neighbor latr at nite.I looked up in the sky across the power lines about 1000 feet up and i saw a sma +1999-06-21,37.8805556,-84.5730556,Nicholasville,KY,light,300,My wife and I seen a bright light going across the sky and it passed in front of the moon and was brighter then the moon. It shot acros +1999-06-21,37.8805556,-84.5730556,Nicholasville,KY,triangle,30,We seen a Black Triangle with red and yellow flashing lights +1999-06-21,32.7947222,-116.9616667,El Cajon,CA,unknown,120,Spoke to Peter Davenport, report follows. +1999-06-21,37.5969444,-115.2233333,Hiko (Outside Of ),NV,sphere,2,There was a bright light aqua blue sphere that moved to fast to describe. +2000-06-21,45.5236111,-122.675,Portland,OR,cigar,20,objects seen while waiting on city buses +2000-06-21,39.705,-104.9330556,Glendale (Denver),CO,changing,1200,I observed a bright object changing shapes (spherical to oblong) and colors (gold, red, white) for twenty minutes in the Denver sky. +2000-06-21,44.3236111,-93.9577778,St. Peter (Outskirts Of),MN,circle,60,Bright yellowins green extrmely fast cirular object leaving a light trail as it traveled upward out of sight +2001-06-21,47.0625,-109.4275,Lewistown,MT,circle,2700,Bright light from sattelite sized object pans area in which we were camping +2001-06-21,46.4355556,-109.8336111,Harlowton,MT,circle,20,white orb that lasts for 20 seconds and then disappears. +2001-06-21,32.525,-93.75,Shreveport,LA,cigar,600,Cigar shaped intense white light surrounded by blue, then yellow in the distance +2001-06-21,47.5302778,-122.0313889,Issaquah,WA,other,600,2 objects, irregularly-shaped, both with something extending in a straight line beneath them, quite high in the sky. +2001-06-21,32.4013889,-98.8172222,Eastland,TX,light,120,Saw a bright light moving in the sky +2001-06-21,42.0347222,-93.6197222,Ames,IA,triangle,360,A very big triangle of 20 - 30 green spots +2001-06-21,34.1066667,-117.8058333,San Dimas,CA,diamond,60,Two Bright UFO's over the San Gabriel Mountains on June 21, 2001 +2002-06-21,26.7052778,-80.0366667,Palm Beach,FL,light,300,Blinking red/orange and white light in sky +2002-06-21,36.0041667,-120.1280556,Avenal,CA,unknown,2700,UFO at Lemoore NAS exit off I5 in CA. +2002-06-21,36.3302778,-119.2911111,Visalia,CA,changing,300,round like changed shape from round to flat shiny silver in color +2002-06-21,45.5236111,-122.675,Portland (Lake Oswego And Gresham),OR,sphere,7200,Oregon UFO Review Cases: The following 4 reports from Portland, Lake Oswego and Gresham appear to be the same object. +2002-06-21,45.5236111,-122.675,Portland,OR,light,4500,Oregon UFO Review Case: Object releases dark orbs in Portland skies...photographed. +2002-06-21,45.4208333,-122.6694444,Lake Oswego,OR,circle,1500,object was white sphere, appeared to be at least 6000 to 7000 ft up, object ABSOLUTELY fixed, nailed in place. size: BB held at arms l +2002-06-21,45.5236111,-122.675,Portland,OR,sphere,5400,I had just stopped in a local tavern after work (no alchohol prior; 1/2 beer before siting). Several individuals were going out and com +2002-06-21,42.44,-85.6488889,Plainwell,MI,circle,300,A dark and round, spinning object stealthly creeping across the evening sky +2002-06-21,41.8438889,-79.1452778,Warren,PA,sphere,300,wife and i were sitting on front porch late that night i seen a flash in sky i said to my wife must be heat lightning not more then 30 +2003-06-21,33.7513889,-84.7477778,Douglasville,GA,circle,1800,Two large object accompanied by 4 to 5 smaller objects hovered for about 1/2 an hour and then vanished +2003-06-21,41.6105556,-87.0641667,Chesterton,IN,light,10,light moving across sky fades then comes back on. +2003-06-21,39.6402778,-106.3736111,Vail,CO,sphere,360,MUFON/COLORADO REPORT: Silvery/white sphere seen moving in a mostly clear blue sky at about 6:30PM +2003-06-21,35.5363889,-82.6930556,Candler,NC,unknown,900,Bright light rapidly traveled from North to South and then hovered +2003-06-21,41.6005556,-93.6088889,Des Moines,IA,triangle,1800,It was a triangular shaped craft withfour lights +2003-06-21,35.6913889,-100.6377778,Miami,TX,triangle,240,I saw three orange lights hovering above the horizen that slowly changed colors then vanished. +2004-06-21,40.6997222,-73.8316667,Richmond Hill,NY,disk,5,The UFO was a saucer shape, and it had bright red lights. It didn't stay around too long. +2004-06-21,40.0580556,-82.4013889,Newark,OH,unknown,5,newark,oh-16:12 strong flash behind and above airplane-size approx. 1/2 tictac at arms length-3-5sec. +2004-06-21,33.3702778,-112.5830556,Buckeye,AZ,light,10800,Bright, bright lights that multiplied from 2 - 7 light/danced in the night sky over the estrella mountain traveling W 3 hrs /palo verd +2004-06-21,42.0347222,-93.6197222,Ames,IA,unknown,360,2 or 3 objects flashing lights that were red,blue,and white.The objects might have landed. +2004-06-21,32.5630556,-97.1413889,Mansfield,TX,light,300,5 lights moving in the sky +2005-06-21,45.6388889,-122.6602778,Vancouver,WA,circle,40,There were 3 brilliantly red objects in the form of a triangle. They moved into a straight line and as fast as ever, they moved in all +2005-06-21,39.7597222,-121.6208333,Paradise,CA,other,7200,In Paradise,California I observed 2 parallel lines of light at an angle between 3am and 4am in the west not moving or changing. +2005-06-21,34.1388889,-118.2130556,Eagle Rock,CA,disk,30,Mirror-like, saucer/disc shaped object +2005-06-21,40.7141667,-74.0063889,New York City (Bronx),NY,changing,900,Black morphing triangular object. +2005-06-21,34.0194444,-118.4902778,Santa Monica,CA,cylinder,7200,STAR. AT 10 O CLOCK POSTION. LOOKING WEST TOWARD SANTA MONICA BAY JUST OVER SANTA MONICA MOUNTAINS. THE ONLY STAR WITH A SOFT LIGHT.CYL +2005-06-21,41.6572222,-87.68,Blue Island,IL,triangle,60,solid black tri. moving slowly in stright line till went out of sight. +2005-06-21,42.4858333,-83.1052778,Madison Heights,MI,unknown,1200,possible aurora aircraft sighting? +2005-06-21,41.0413889,-79.5033333,Rimersburg,PA,circle,180,Was pulseing red and bright yellow colors from big to little. +2006-06-21,42.7283333,-73.6922222,Troy,NY,other,480,From Rt 7 NY I saw what look like mars up in the sky, a small red ball. What struck was that it was like looking at it through a 90 mm +2006-06-21,40.7297222,-73.2108333,West Islip,NY,unknown,25,Three Contrails +2007-06-21,34.8525,-82.3941667,Greenville,SC,cigar,120,Cigar shaped ships floating above mountain area outside city. +2007-06-21,31.7586111,-106.4863889,El Paso,TX,formation,900,Two white objects a mile apart viewed over El Paso and another, possibly a probe, detaching from them. +2007-06-21,33.2558333,-116.3741667,Borrego Springs,CA,oval,300,Shimmering lights were seen above Borrego Springs CA on Summer Soltice Night +2007-06-21,42.1213889,-84.345,Clarklake,MI,cigar,2400,black helicopters, disc and cigar sighted near Jackson, MI +2007-06-21,33.4355556,-112.3488889,Avondale,AZ,other,15,2 Objects - 925pm AZ +2007-06-21,33.6408333,-117.6022222,Rancho Santa Margarita,CA,light,45,drifting small white light - no noise +2007-06-21,46.6022222,-120.5047222,Yakima,WA,light,10,Fast, white, solid light. Fast, white, solid light. ((NUFORC Note: ISS?? PD)) +2007-06-21,42.475,-95.7852778,Correctionville,IA,triangle,180,triangular shape with 2 lights streaming off. ((NUFORC Note: ISS?? PD)) +2007-06-21,41.2683333,-110.9625,Evanston,WY,formation,600,Pair of slow lights in perfect formation. ((NUFORC Note: ISS and Space Station in formation. PD)) +2007-06-21,30.6941667,-88.0430556,Mobile,AL,fireball,2,Left my brothers home at 1115 pm on thursday night. Got in car and backed out of drive way. Saw bright green flash of light in southern +2008-06-21,32.2527778,-109.8313889,Willcox,AZ,flash,120,We saw what we thought was helicopter unbtil we noticed another helicopter that was much smaller and moved alot slower +2008-06-21,41.85,-87.65,Chicago,IL,sphere,1800,Glowing amber orb flying through sky at night +2008-06-21,40.5061111,-74.6205556,Hamilton,NJ,triangle,300,Triangle-shaped object with green, red, and blue lights hovering high in the sky +2008-06-21,33.4669444,-117.6972222,Dana Point,CA,disk,60,01:15 06/21/08 observed disk shape craft over ocean in Dana Point / Laguna Beach area +2008-06-21,43.9561111,-89.8180556,Adams,WI,triangle,10,Three lights in the southern sky outside bedroom window. Flying very low. No sound. +2008-06-21,39.0875,-81.9227778,West Chester,OH,triangle,300,Object in a triangular shape seen at 3:41 AM on cox rd. west chester ohio +2008-06-21,39.635555600000004,-84.9311111,Liberty,IN,fireball,120,Liberty, Indiana 11:00 p.m. Orange fireball, low, heading south to north then turning to the west and disappearing from sight. +2008-06-21,34.2133333,-118.5711111,Winnetka,CA,teardrop,10,shiny object in the clear sky hoovering, then suddenly disappears +2008-06-21,39.0416667,-94.72,Shawnee,KS,unknown,20,Very shiny bright , moving faster than anything I ever saw. +2008-06-21,38.2205556,-90.3958333,Festus,MO,triangle,480,v or triangular object hovering no lights no sound appeared to be rotating all directions +2008-06-21,39.8680556,-104.9713889,Thornton,CO,disk,5,I observed a silver disk directly above me in broad daylight in a highly populated area and it was watching me. +2008-06-21,30.3319444,-81.6558333,Jacksonville,FL,fireball,300,Bright fireball looked like a second sun hid behind cloud never came in front of it,it wasyellow/orange +2008-06-21,34.1722222,-118.3780556,North Hollywood,CA,sphere,90,6-21-08 Spherical UFO in North Hollywood CA +2008-06-21,39.6,-75.9416667,North East,MD,formation,180,There were three separate orange lights making a triangle formation. +2008-06-21,41.4138889,-73.3038889,Newtown,CT,light,5,bright star like light, shoots across sky, changes directions and then vanishes. +2008-06-21,40.9572222,-72.9080556,Shoreham,NY,circle,3,Swooping star, you'd have to see to believe. +2008-06-21,42.4805556,-83.4755556,Novi,MI,circle,120,UFOs over Novi, MIchigan +2008-06-21,34.2483333,-117.1883333,Lake Arrowhead,CA,other,20,Moving star, among stars +2008-06-21,38.2544444,-104.6086111,Pueblo (100mi Sw Of),CO,unknown,180,saw object move in a zig zag motion. with a bright white light that changed and dimmed. the object moved rapidly to the eastern horizon +2009-06-21,39.6136111,-86.1066667,Greenwood,IN,cylinder,5,((HOAX)) FLYING PICKLE JAR ATE MY CAT +2009-06-21,31.1238889,-97.9027778,Copperas Cove,TX,oval,120,Shiny, Oval object...didn't move for 2 minutes, then disappeared. +2009-06-21,33.4669444,-117.6972222,Dana Point,CA,sphere,10,Faint orange orb moving across sky +2009-06-21,37.3541667,-121.9541667,Santa Clara,CA,sphere,120,I saw a very bright flashing light as big and bright as Venus moving from the west to the east very slowly. The light would flash brigh +2009-06-21,33.7738889,-117.9405556,Garden Grove,CA,light,4,two objects, very high up. doing criss cross formations across the sky. +2009-06-21,41.3983333,-81.8047222,Brook Park,OH,light,1800,Slowly moving lights that stopped, hovered, then went out. Near large electric towers and power lines. +2009-06-21,37.7058333,-122.4608333,Daly City,CA,disk,20,At about 10:30pm, I was just coming home when I noticed some light in the corner of my eyes in the sky. When I looked up I could not be +2009-06-21,38.7669444,-90.4113889,Bridgeton,MO,unknown,15,bright light that was going at a faster than normal speed but would fade to dark but come back as bright +2009-06-21,39.7966667,-81.3361111,Summerfield,OH,light,3600,Thought it was a star, but then started moving and then stopping again. ((NUFORC Note: Probable star sighting, we suspect. PD)) +2009-06-21,44.3736111,-72.5502778,Worcester,VT,other,900,Saw a bunch of lights bunched together, they were all different colors and blinking. +2009-06-21,39.1836111,-96.5713889,Manhattan,KS,light,900,Manhattan Kansas, Boomerang like light and massive hang glider very high up without lights +2009-06-22,39.5522222,-79.7980556,Masontown,WV,light,120,A golden nickel light hovered the West Virginia Mountains over Cheat River. +2010-06-21,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,5,Two roundish lights sporadic movement +2010-06-21,38.3497222,-81.6327778,Charleston,WV,unknown,20,Craft moving gracefully but with unusual speed, and very quiet, shining multi-colored lights wildly. +2010-06-21,34.1425,-118.2541667,Glendale,CA,cone,15,Metallic cone shaped disc flying near 2 freeway in Glendale, CA +2010-06-21,33.1580556,-117.3497222,Carlsbad,CA,other,600,Saw 2 chem-trails flying over SD Co. going 2 different directions for approx 7-10 mins before...disappearing!!! +2010-06-21,38.2325,-122.6355556,Petaluma,CA,sphere,10,Two moving spheres over Petaluma and the bay area. +2010-06-21,40.2169444,-74.7433333,Trenton,NJ,triangle,1800,green lights moving at high speed over trenton new jersey. +2011-06-21,42.1013889,-72.5902778,Springfield,MA,cylinder,600,It was crazy +2011-06-21,48.0616667,-117.6316667,Loon Lake,WA,oval,1800,Multicolored lights on oval object +2011-06-21,45.5236111,-122.675,Portland,OR,unknown,28800,Many white lights/objects moving at high speeds throughout the day. +2011-06-21,43.5008333,-70.4433333,Saco,ME,oval,1200,Saw 5 unidentified large lights with no noise or sound over saco bay. about 937pm.Each one came from west location then stopped and al +2011-06-21,47.3144444,-116.5616667,St. Maries,ID,sphere,60,Silver Shere hovering over mountain about 5 miles away from us was about as big as a dime if you held it out at arms length. +2011-06-21,34.2694444,-118.7805556,Simi Valley,CA,disk,1800,A circle object with 4 smaller LED looking flashing lights in the inside. 2 lights flashing vertically and other 2 flashing horizontall +2011-06-21,20.785,-156.4655556,Kihei,HI,other,180,Sudden bangs of sound, went outside and flashing lights. know it was not 'right' +2011-06-21,34.4838889,-114.3216667,Lake Havasu City,AZ,sphere,2,1 orange orb, split in 2 then vanished. +2011-06-21,38.3566667,-121.9866667,Vacaville,CA,light,120,Moving star like object, fading in and out, and moving different directions. ((NUFORC Note: Could not have been the ISS. PD)) +2011-06-21,36.8527778,-75.9783333,Virginia Beach,VA,light,300,There was a bright red light that shot straight up out of the water on the ocean side of the Cheasapeake Bay Bridge Tunnel. +2011-06-21,34.4838889,-114.3216667,Lake Havasu City,AZ,flash,1,1 bright flash, followed by another 30 seconds later. +2012-06-21,36.2297222,-93.1075,Harrison,AR,fireball,600,The orange glowing ball was on top of trees and moving slowly from west to east.The orange glowing ball dipped down into the trees +2012-06-21,45.2102778,-123.1975,Mcminnville,OR,unknown,300,We were on are way home off a country road. And we noticed A triangle shape lights over the city of McMinnville or. the triangle lights +2012-06-21,37.9358333,-122.3466667,Richmond,CA,oval,300,Oval Craft w/three white lights stationary and clearly just inside fast moving clounds. Observed for several minutes but gone when I re +2012-06-21,32.5005556,-94.7402778,Longview,TX,triangle,300,4 triangular shapes flying single file in military precision +2012-06-21,39.7683333,-86.1580556,Indianapolis,IN,light,480,Unexplained star shaped colored object +2012-06-21,41.0272222,-78.4394444,Clearfield,PA,other,300,Star-Like object moving NW to SE +2012-06-21,34.2561111,-78.045,Leland,NC,unknown,900,We saw a very bright lights from same object not moving that flickered green, red and white at same time. Brighter than any star in sky +2012-06-21,33.7358333,-118.2913889,San Pedro,CA,light,120,Red lights in san pedro, ca +2012-06-21,39.0202778,-120.8169444,Foresthill,CA,other,240,One single object split in two and went in opposite directions, seen by five observers. +2012-06-21,40.3977778,-105.0744444,Loveland,CO,light,300,Light in North Eastern sky +2012-06-21,35.7325,-78.8505556,Apex,NC,flash,60,Satellite &quot;flaring&quot; in the same manner on two different nights two weeks apart. +2012-06-21,42.0986111,-75.9183333,Binghamton,NY,light,600,Light follows ISS. +2012-06-21,39.3869444,-94.5808333,Smithville,MO,light,3600,Unidentified Flying Objects we could not confirm was of US origin. They couldn't have been falling stars or satellites. +2012-06-21,42.2411111,-83.6130556,Ypsilanti,MI,triangle,600,Group of triangle shape &quot;ufo&quot;s fly westward over Ypsilanti, Mi at 10:30 on 6/21/2012 +2012-06-21,32.7763889,-79.9311111,Charleston,SC,light,2,Big white light (size of plane about 200 yards away) darted across the sky +2012-06-21,33.8302778,-116.5444444,Palm Springs,CA,circle,900,The whole planet,star lit up! Then it flashed to white so fast It was like someone playing with the on off switch. +2012-06-21,41.5236111,-90.5775,Davenport,IA,fireball,90,Two witness one amber fireball track south over the Quad Cities +2013-06-21,35.9230556,-78.4577778,Rolesville,NC,unknown,5,Green blinking orb traveling at a very high rate of speed. +2013-06-21,33.7488889,-84.3880556,Atlanta,GA,cylinder,60,Cylinder object seen near Downtown Atlanta. +2013-06-21,41.85,-87.65,Chicago,IL,rectangle,60,We saw what I can only describe as a "box kite with a pulsating red/blue light inside." +2013-06-21,38.8108333,-94.9269444,Gardner,KS,cone,120,Cone/pie-slice shaped craft with 4 bright white lights flying low over the town. +2013-06-21,32.7947222,-116.9616667,El Cajon,CA,triangle,900,21 June 2013 low altitude aerial contact in triangle shape, shifting colors from port & starboard side with 0 noise(trained lookout)USN +2013-06-21,42.0952778,-87.9375,Prospect Heights,IL,sphere,600,Orange spheres spotted over Northwest suburbs of Illinois. +2013-06-21,37.775,-122.4183333,San Francisco,CA,light,120,Bright light in the sky then dims out and vanishes as it moves south and east. ((NUFORC Note: Possible satellite?? PD)) +2013-06-21,38.5816667,-121.4933333,West Sacramento,CA,unknown,30,Unknown lighted or reflecting white-ish object traveling NW to SE, no sound,no red FAA required beacon lite +2013-06-21,40.6788889,-79.1877778,Creekside,PA,circle,600,13 red balls of light across night sky +2013-06-21,37.7477778,-84.2947222,Richmond,KY,triangle,300,Same triangle same area, same time of night, but a month later. +2013-06-21,34.2255556,-77.945,Wilmington,NC,sphere,60,Two silver sphere shaped objects flying in straight lines, come to a complete stop then proceed to dance effortlessly than disappear +2013-06-21,42.1577778,-78.7152778,Salamanca,NY,sphere,240,Four glowing spheres hovering in the sky. +2013-06-21,32.63,-83.6897222,Centerville,GA,disk,138,Disk shaped craft making a loud and scary noise. +2013-06-21,42.7008333,-82.9591667,Macomb,MI,disk,2700,My wife and I were sitting on our deck (which faces south) and about 2250 I noticed a red round object in the air. +2013-06-21,39.2666667,-81.5616667,Parkersburg,WV,light,30,Hovering red light over Parkersburg. +2013-06-21,42.4708333,-70.9180556,Swampscott,MA,light,5,Bright light appears suddenly in clear sky night sky and moves slowly. +2013-06-21,33.8388889,-83.9008333,Loganville,GA,fireball,5,Running south west parallel the rode pointe drive. White orange orb, fire ball. 20 to 40k feet +2013-06-21,42.1538889,-88.1361111,Barrington,IL,circle,2700,Three bright objects verticle stance. Top two fire orange with moving outer shell . One pretended to be part of satellite tower. +2013-06-21,45.5236111,-122.675,Portland,OR,circle,180,2 orange circles flying at a slow pase then disappeared. +2013-06-21,42.9633333,-85.6680556,Grand Rapids,MI,fireball,360,The way they traveled together with no sound was eerie!! +1972-06-02,35.6008333,-82.5541667,Asheville,NC,other,900,Large, white star or planet-shaped object that appeared to divide in 2 parts, circling each other, slowly, then accelerating until stop +1982-06-02,36.8252778,-119.7019444,Clovis,CA,light,60,Bright light or meteor lights up the sky in rural area outside fresno california +1989-06-02,32.8405556,-83.6325,Macon,GA,circle,120,Could have hit this one too. +1998-06-02,29.0188889,-81.9886111,Lake Weir,FL,triangle,300,I saw a trangular craft near US 441 and Sunset Harbor Rd on June 4th 1998 about 300 ft off the ground, moving slowly +1999-06-02,29.2105556,-81.0230556,Daytona Beach,FL,triangle,120,Four black triangles see close up. +1999-06-02,47.0380556,-122.8994444,Olympia,WA,chevron,10,Saw object flying very fast, noiseless, south to north. +2000-06-02,40.7536111,-86.0688889,Peru,IN,egg,120,Slow moving silver egg-shaped unidentified flying object observed from my front porch twice::::very concerned!!! +2000-06-02,33.3527778,-111.7883333,Gilbert,AZ,oval,240,I actually watched it with Binoculars for about 3 minutes. +2000-06-02,33.1191667,-117.0855556,Escondido,CA,light,600,My husband and I witnessed a bright reddish, gold light with no sound, change directions several times prior to disappearing. +2001-06-02,36.9030556,-102.9627778,Kenton,OK,disk,10800,I saw a big blue light while sleeping in my van in the desert. +2001-06-02,41.7636111,-72.6855556,West Hartford,CT,sphere,30,small gray sphere rising up then shoot straight over my house +2001-06-02,40.9252778,-74.2769444,Wayne,NJ,chevron,480,no lights or sound, flat, black, v-shape; suspended in the sky, slowly rotated. +2001-06-02,36.0525,-95.7905556,Broken Arrow,OK,triangle,720,spinning metallic triangle +2001-06-03,47.7625,-122.2041667,Bothell,WA,light,390,brilliant blue pulsating lights that were blinking in and out and swirling around one another ( Incredible ) +2002-06-02,32.2344444,-97.755,Glen Rose,TX,circle,37800,Unknown craft observed hovering near nuclear power plant +2002-06-02,27.8002778,-97.3961111,Corpus Christi,TX,disk,600,Strange white flying objects flying together in perfect unison. +2002-06-02,32.7355556,-97.1077778,Arlington,TX,sphere,600,6 white orbs going south to north in daylight sighting at high altitude. +2002-06-02,39.9522222,-75.1641667,Philadelphia,PA,light,30,Four balls of light travelling at high rate of speed are chased by 7 high altitude jets. +2002-06-02,41.7208333,-73.9605556,Highland,NY,circle,900,2 flying Ufo Over the Hudson Valley +2002-06-02,42.0833333,-71.0188889,Brockton,MA,other,3,Firey shooting star..? +2003-06-02,40.5594444,-79.9588889,Allison Park,PA,sphere,45,UFO Seen In Allison Park, PA along Rt.8 +2003-06-02,39.0875,-81.9227778,West Chester,OH,oval,1200,MUFON/OHIO FOLLOW-UP: A resident of West Chester reports dramatic sighting near his res.that was accompanied by a local power failure. +2003-06-02,39.0875,-81.9227778,West Chester,OH,oval,1200,Oval craft with two strobing ovals that seemed to be propulsion - bottom of craft was saturated in a deep blue light +2003-06-02,25.7738889,-80.1938889,Miami,FL,disk,10,Too much coffee kept me tossing all night.My second floor bedroom over looks a 8x16 foot balcony with 2 floor lenth doors facing north. +2004-06-02,37.8772222,-122.1786111,Orinda,CA,cigar,30,Cigar-shaped UFO, silver, non-descript moving North/Northeast in East Bay Hills of Contra Costa County, CA +2004-06-02,36.2083333,-115.9830556,Pahrump,NV,formation,3600,didn't see anythign nor did we hear anything but there they were. +2004-06-02,33.5091667,-111.8983333,Scottsdale,AZ,unknown,900,UFO passed through my field of vision while viewing a full moon through a high powered telescope. +2004-06-02,26.1219444,-80.1436111,Fort Lauderdale,FL,unknown,300,I was making pictures of my daughter on the beach. Two pictures out of 50 contain undentifined objects. While I was making them, i did +2004-06-02,36.1894444,-82.9586111,Mosheim,TN,disk,20,Mr. ((name deleted)) +2004-06-02,39.9116667,-75.2775,Collingdale,PA,light,8,A large bright white light appears short distance behind airplane +2004-06-02,40.155,-74.8291667,Levittown,PA,triangle,300,My boyfriend and I had spent about 5-6 hrs at his very religious grandparents house down in NE Philly (no drinking that night) and as w +2004-06-02,26.7052778,-80.0366667,West Palm Beach,FL,sphere,300,Red balls coming out of object !!! +2005-06-02,44.775,-117.8333333,Baker City (Presumed Location),OR,cigar,10,Large wingless crafts are practicing for T-bone accident with passenger jet... or maybe just having a good time. +2005-06-02,40.2091667,-75.4533333,Rahns,PA,other,5,Three red potato shaped objects seen +2005-06-02,38.6272222,-90.1977778,St. Louis,MO,cylinder,900,Bizarre, shiny, cylindrical object that moved intelligently for 15 minutes in broad daylight (St. Louis). +2005-06-02,47.6588889,-117.425,Spokane,WA,sphere,10,shpere looked like it exited a cloud at high speed going N.E. then vanished. +2005-06-02,36.426944399999996,-77.5958333,Weldon,NC,other,60,Silent, metallic Grey, Bell shaped object decends and then disapears. +2005-06-02,39.8769444,-90.3733333,Arenzville,IL,triangle,300,Seven bright orange lights , in the formation of geese flying , hung low in the sky , then disappeared. +2005-06-02,42.0083333,-91.6438889,Cedar Rapids,IA,other,10,Object heading direct west moving about 3 times the speed of a plane, with one light flashing, jumping from position to position. +2006-06-02,39.6836111,-75.75,Newark,DE,other,121,While sitting outside, witnessed an unusual aircraft, which changed speeds amazingly. +2006-06-02,32.3122222,-106.7777778,Las Cruces,NM,disk,900,White disk hover over New Mexico +2006-06-02,34.7369444,-82.2544444,Simpsonville,SC,circle,40,I was sitting outside on my front porch with a friend (we are in our late 20's), watching the sky. Suddenly we both see a white/yellowi +2006-06-02,38.8338889,-104.8208333,Colorado Springs,CO,teardrop,12,Craft near AFB followed aircraft then proceeded south at a constant rate through changes in direction and elevation +2006-06-02,42.4286111,-87.9238889,Wadsworth,IL,diamond,120,A silent white rectangle movved slowly across the sky above woods. +2006-06-02,26.1902778,-97.6958333,Harlingen,TX,triangle,300,Triangular shaped object with orange aura spotted in Harlingen, TX. on 6/2/2006 +2006-06-02,45.2333333,-93.2911111,Andover,MN,teardrop,10,Brilliant green craft observed near Anoka county rd 9 in Andover, MN., 1145pm 06/02/06 two witnesses +2007-06-02,25.9808333,-80.1486111,Hallandale Beach,FL,circle,10800,6/2/07 hallandale beach, florida. ((NUFORC Note: Possible sighting of "twinkling" star. Probably not a genuine UFO. PD)) +2008-06-02,38.1302778,-121.2713889,Lodi,CA,light,20,Small shiney glare in sky, like a plane, and disappeared rather than flew away. +2008-06-02,41.42,-73.955,Cold Spring,NY,light,60,Bright silent light moving slowly in a curve that disappeared. +2008-06-02,39.4019444,-75.0397222,Millville,NJ,triangle,10,Triangularƻ red lights on each point.Flew straight across sky very fast than it was gone.Made a loud sound . +2008-06-02,37.6391667,-120.9958333,Modesto,CA,sphere,300,ball of flame +2008-06-02,27.7705556,-82.6794444,St. Petersburg,FL,light,180,Orange glowing object +2008-06-02,36.0672222,-81.2538889,Boomer,NC,triangle,300,Triangular undentified flying object/aircraft traveled in a south western direction over boomer nc june 08. +2008-06-02,44.98,-93.2636111,Minneapolis,MN,light,1200,A three-light object was observed hovering and moving above the Wells-Fargo Bldg. in downtown Minneapolis, MN +2008-06-03,38.6786111,-121.2247222,Orangevale,CA,unknown,40,The obj. looked just like a star color and size from my angle; took a arc type path/ just dissapperd. ((NUFORC Note: Satellite? PD)) +2009-06-02,36.9336111,-106.9983333,Dulce,NM,light,300,Flashlight looking lights looking for something in feild in Dulce, New Mexico. +2009-06-02,40.7408333,-74.3841667,Chatham,NJ,circle,600,AWOKE , AND LOOKED OUT TOWARD THE WESTERN SKY AND SAW WHAT APPEARED TO BE A LARGE REDDISH-GOLDEN ORB HOVERING OVER THE TREES. INITIAL +2009-06-02,33.4147222,-111.9086111,Tempe,AZ,light,900,Three "star-looking" crafts flying in random directions in the middle of the day. +2009-06-02,34.2366667,-84.4908333,Canton,GA,oval,180,One second it was there and then the next it was just gone. +2009-06-02,37.3480556,-82.9552778,Leburn,KY,triangle,10,Large triangular craft, 3 large red orb shapes and peachy connectors connecting the orbs, lasted for maybe 10 to 15 seconds +2009-06-02,32.2216667,-110.9258333,Tucson,AZ,unknown,180,Witnessed 4-5 strange flashing objects moving erratically in the sky. +2009-06-02,40.7141667,-74.0063889,New York City (Bronx),NY,rectangle,20,Small UFO sighting at Yankee Stadium in daylight. +2009-06-02,42.2958333,-71.7133333,Shrewsbury,MA,light,1800,I observed a single white light in the sky almost directly overhead, about the same size as the stars or an airplane light. +2009-06-02,30.2669444,-97.7427778,Austin,TX,oval,3,Green light over the area around Austin. +2009-06-02,33.425,-94.0475,Texarkana,TX,triangle,600,Triangular Craft Traveling Across the Western Sky of East Texas: +2009-06-02,35.8944444,-85.7111111,Jefferson,TN,triangle,120,flashing lights that were some distance apart, blue and white, +2009-06-02,29.3872222,-82.4469444,Williston,FL,oval,3,A lit object in western sky, late nite, lasting only about 3 seconds, traveling north to south low to horizon. +2010-06-02,40.7266667,-73.6347222,Garden City,NY,cigar,900,This report is in response to one seen on 6/1 or 6/2 from a LIRR train on the Queens/Nassau border.I saw something in the western s +2010-06-02,33.5805556,-112.2366667,Peoria,AZ,egg,15,Silver, solid, egg shaped object heading NW. +2010-06-02,34.0983333,-118.3258333,Hollywood,CA,oval,2,deep black oval object flying smooth over Hollywood/Los Angeles. +2010-06-02,33.4147222,-111.9086111,Tempe,AZ,disk,300,Saucer shape, flying over Tempe, 6-7 white lights making a pattern as flew south. June 2, 2010 at apx, 9:10pm. +2010-06-02,40.7280556,-74.0780556,Jersey City,NJ,light,60,I saw an erratic flying object with a red blinking light. It was traveling west to east in the northern sky. It flew straight for a sho +2010-06-02,38.3,-120.6827778,Happy Valley,CA,other,600,I was driving down Happy Valley rd. Saw what I thought was a deer, no then is it a dog, no. +2010-06-02,27.3016667,-82.5516667,Siesta Key,FL,sphere,180,orange color, appeared about the sizeof a tennis ball, moved vertically until barely visible, then moved at a high speed westward +2010-06-02,37.6391667,-120.9958333,Modesto,CA,unknown,2,green light over modesto +2011-06-02,34.0775,-117.6888889,Montclair,CA,triangle,10,V shaped craft over san bernardino county viewed from montclair california. ((NUFORC Note: Possible hoax, we wonder. PD)) +2011-06-02,34.0975,-117.6475,Upland,CA,triangle,15,Triangle Shaped Craft over San Bernardino County +2011-06-02,38.6272222,-90.1977778,St. Louis,MO,circle,2,A luminous greenish circle was visible 2 seconds going fast out and then into clouds near St. Louis, MO +2011-06-02,38.7838889,-90.4811111,St. Charles,MO,light,6,Moving, green orb over St. Charles/St. Louis, Missouri +2011-06-02,29.8944444,-81.3147222,St. Augustine,FL,light,300,Glowing white orb floating across sky then stopped. Faded out, then re-lit. +2011-06-02,47.6397222,-122.8272222,Seabeck,WA,light,60,Video of bright light in sky near bangor sub base. +2011-06-02,47.3075,-122.2272222,Auburn,WA,other,30,Last night I went out on my porch for a cigarette and looked up at the clouds when out of nowhere because I did not see a cloud there c +2011-06-02,36.2522222,-85.9516667,Carthage,TN,light,5,Yellow ball of light appears then fades away over Carthage, Tennessee +2011-06-02,38.7891667,-90.3225,Florissant,MO,light,12,Unidentified green light. +2011-06-02,40.8666667,-124.0816667,Arcata,CA,flash,240,Two moving lights and a flash over Arcata, CA +2012-06-02,35.5913889,-92.4602778,Clinton,AR,light,120,((HOAX??)) Had 2 long lights turning around each other. +2012-06-02,42.9125,-82.4869444,Marysville,MI,circle,600,I saw 10 orange orbs about 100 yards away and about 1000 feet off the ground and disapeared in 5 to 10 mins. +2012-06-02,35.7572222,-86.5313889,Rockvale,TN,disk,60,I looked up at the the sky above me and saw a silver disc shaped object hover above me and then take off +2012-06-02,41.7408333,-87.8602778,Willow Springs,IL,circle,900,6/2/12 Willow Springs IL, Flashing bright white little circle lights formed a circle shape +2012-06-02,41.85,-87.65,Chicago,IL,rectangle,5,Large grayish rectangle outlined in the sky +2012-06-02,42.5630556,-114.46,Twin Falls,ID,flash,900,Erratic fast moving star like object with bright flash every few seconds +2012-06-02,39.3836111,-76.4325,White Marsh,MD,cigar,300,White Object over I-695E +2012-06-02,47.6105556,-122.1994444,Bellevue,WA,fireball,180,Orange lights/balls over Tiger Mountain. +2012-06-02,42.0083333,-91.6438889,Cedar Rapids,IA,circle,300,Strange Lights Across Cedar Rapids, Iowa Sky on June 2, 2012 @ around 9:15 pm CST +2012-06-02,41.7197222,-72.8325,Farmington,CT,fireball,240,Mysterious light source traveling in many directions, then randomly disappears, but is still able to see an object wandering in the sky +2012-06-02,38.4088889,-121.3705556,Elk Grove,CA,fireball,120,Orange ball of light seemed to be floating with green flashing lights +2012-06-02,40.1302778,-75.5152778,Phoenixville,PA,light,180,Orange-red lights in the sky in Phoenixville, PA +2012-06-02,45.7833333,-108.5,Billings,MT,fireball,300,Ten or more orange fireballs moving southerly along the east edge of Billings, MT. +2012-06-02,44.7319444,-93.2175,Apple Valley,MN,circle,60,White flickering then gone. +2012-06-02,45.2847222,-111.3675,Big Sky,MT,triangle,300,First 3 and after one more orange lights appeared and 5 min. after disappeard. +2012-06-02,35.6708333,-80.4744444,Salisbury,NC,circle,600,10 to 15 red string of lights, then started moving and eventually moved individually and dissappeared behind a cloud. +2012-06-02,38.9886111,-78.3588889,Strasburg,VA,fireball,60,8 glowing orange fireball objects moving slowly and silently to the northwest +2012-06-02,43.2122222,-77.4302778,Webster,NY,circle,120,Brite Orange slowly moving sphere shaped oblect traveling from South to North East +2012-06-02,47.0380556,-122.8994444,Olympia,WA,cone,300,12-15 cone-shaped objects (bright white with orange "fire" on one side) moving silently in clusters across north sky from wes +2012-06-02,38.9208333,-77.5041667,South Riding,VA,triangle,300,Triangle object seen over South Riding, Va. +2012-06-02,38.2855556,-85.8241667,New Albany,IN,fireball,300,Nine fireballs almost in a cricle moving around. +2012-06-02,45.6797222,-111.0377778,Bozeman,MT,formation,300,Reddish formation of dots in "Y" shape +2012-06-02,40.6366667,-80.2402778,Aliquippa,PA,light,15,Flashing lights moving at incredible speeds over Alliquippa +2012-06-02,45.6797222,-111.0377778,Bozeman,MT,formation,600,Four orange lights brighter than stars moving erratically and forming a Y +2012-06-02,35.5641667,-89.6463889,Covington,TN,rectangle,3,I saw a rectangular shaped craft made up of bright fuchsia lights appear out of nowhere before it went out of sight. +2013-06-02,47.4066667,-122.0375,Maple Valley,WA,sphere,5,A silent pulsing orange circular glowing object. +2013-06-02,34.3075,-80.9605556,Ridgeway,SC,changing,120,Unusually bright white light changes into 4 different distinct shapes, has bright blue light on 1 end, center& end light.. 6 good pix. +2013-06-02,28.0338889,-82.6652778,Oldsmar,FL,oval,600,Rose colored oval object in photo. +2013-06-02,30.3,-87.4275,Perdido Key,FL,sphere,300,Three spherical objects floating by while on the beach. +2013-06-02,41.5733333,-87.7844444,Tinley Park,IL,oval,300,Four Yellowish bright lights seemed to move in the same direction where two of them later moved in the opposite direction. +2013-06-02,36.7477778,-119.7713889,Fresno,CA,light,600,6 glowing white orbs and two military jets sighted, two orbs nearly collided +2013-06-02,35.4675,-97.5161111,Oklahoma City,OK,sphere,180,Multiple, spherical orange lights seen over Oklahoma City +2013-06-02,37.6922222,-97.3372222,Wichita,KS,sphere,30,Moving across the sky .. Orange sphere .. running totally silent +2013-06-02,37.6922222,-97.3372222,Wichita,KS,sphere,60,Orange pulsating sphere over Wichita, KS. +2013-06-02,25.4683333,-80.4777778,Homestead,FL,circle,60,3 bright red/orange, round objects traveling from west to east and silent and moving at an unbelievable rapid speed. +2013-06-02,41.4994444,-81.6955556,Cleveland,OH,cylinder,30,My boyfriend and I saw a red cylinder object in the sky up close above a house and it was big. +2013-06-02,39.7683333,-86.1580556,Indianapolis,IN,other,3600,Flashing multi-colored lights on a flying object +2013-06-02,45.5236111,-122.675,Portland,OR,light,300,Bright ball of light in the sky over Portland. +2013-06-02,44.8041667,-93.1666667,Eagan,MN,light,240,A very clear light flying across the clear sky. +2013-06-02,42.3241667,-83.4002778,Westland,MI,unknown,600,Three red glowing objects +1952-06-22,39.8494444,-75.3561111,Chester,PA,oval,300,My parents & I & my brother were walking to a resturant & we saw 4 flying objects flying in formation. My father called out to two wom +1972-06-22,45.3575,-122.6055556,Oregon City,OR,triangle,10,Triangular-Rounded Edges-Very Black-Rimmed evenly with small lights and unevenly on its underside. +1972-06-22,41.2411111,-77.0013889,Williamsport,PA,cigar,120,this is the adition to the report I sent with the same date, three more reports to follow +1972-06-22,41.9536111,-73.5111111,Millerton (Coleman Station Rd.),NY,disk,900,While driving home from work, a huge saucer shaped craft descended from the night sky, and hovered over the tree tops, 50 feet from my +1973-06-22,42.4386111,-73.1258333,Hinsdale,MA,disk,600,Witness large disk spin, move forward and disappear into thin air. +1975-06-22,40.1483333,-89.3647222,Lincoln,IL,oval,900,light in northeast sky +1976-06-22,37.4419444,-122.1419444,Palo Alto,CA,light,1800,A large amber ball of light responding to spotlight. +1982-06-22,39.9647222,-86.7144444,New Ross,IN,other,300,Spherical on one side, diamond on the other with the axis of rotation along the flat diamond side. +1993-06-22,38.2544444,-76.9638889,Colonial Beach,VA,cylinder,1800,Disapeering flying object +1995-06-22,40.9008333,-80.8569444,Salem,OH,rectangle,300,A friend of mine and I where in the woods camping and we kept seeing this bright light that would come on and go off so we went out of +1995-06-22,35.2219444,-101.8308333,Amarillo,TX,triangle,180,TRIANGLE UFO SIGHTING IN AMARILLO TX +1996-06-22,38.9938889,-80.2322222,Buckhannon,WV,triangle,120,A rather large triangular shaped disk was noticed about 800 yards away hovering at the level of tree tops. Me and a friend began to ex +1997-06-22,36.0725,-79.7922222,Greensboro,NC,light,45,two lights in tandem moving NE-SW +1998-06-22,37.9747222,-87.5558333,Evansville,IN,light,300,TO: National UFO Reporting Center From: ((Deleted)) Dear National UFO Reporting Center, I live in the city of Evansville, loca +1998-06-22,44.7322222,-92.4872222,Ellsworth,WI,light,900,A friend told me that he and his family were in their car when they saw a bright white ball of light just above the horizon. They stopp +1998-06-22,45.7761111,-111.1761111,Belgrade (Outside, Dry Creekroad),MT,unknown,3600,6.22.98-1:30 am : red flashing lights (flashing in two different sequences)hovering over a rural area.one of the lights was near belgra +1998-06-22,30.2669444,-97.7427778,Austin,TX,triangle,240,I saw a triangle craft, huge, black, white light in each corner, red light in center, hovering above me at about 200-300 feet altitude. +1998-06-22,33.475,-80.4866667,Santee,SC,cylinder,300,I was fishing and as I looked up I saw 3 cylinder-shaped objects in a triangle formation. They had a wierd white glow to them. That ( +1999-06-22,38.2541667,-85.7594444,Louisville (90 Minutes Out Of, Camp Crooked Creek),KY,unknown,30,A red light over the lake. Noone in the vicinity. +1999-06-22,38.9686111,-77.3413889,Reston,VA,sphere,2,large, spherical, very bright object, flew very fast from south to north, disappeared in an instant. +1999-06-22,43.4597222,-89.8683333,North Freedom,WI,light,120,Very bright light in the western sky moving north (very high)turned at a 45' angle and accelerated until it was gone. +2000-06-22,34.2575,-88.7033333,Tupelo,MS,disk,240,My daughter and I witnessed 3 brightly-lit craft just west of Tupelo, Ms. near Belden Truckstop. One left a trail, then one disappeared +2000-06-22,44.3577778,-104.81,Pine Haven,WY,egg,45,The object was not a airplane, or star, if anything it was some NASA satalite or a UFO +2000-06-22,41.8238889,-71.4133333,Providence (On The Coastline, Ssw Of),RI,egg,5,An egg shaped object passed in close proximity of my aircraft. +2000-06-22,44.5191667,-88.0197222,Green Bay,WI,light,600,Satilite looking dot that would "streak" every minute or so. +2000-06-22,38.69,-75.3858333,Georgetown,DE,light,3,Falling stars do not do figure eights. +2001-06-22,26.9338889,-80.0944444,Jupiter,FL,light,180,i saw a light zig zagging in the sky.at one point the light suddenly got bigger and seemed to explode or flash and to continue its zig +2001-06-22,42.3583333,-71.0602778,Boston,MA,circle,120,Small Orb over Boston Airport. +2001-06-22,41.8088889,-88.0111111,Downers Grove,IL,disk,30,Orange disc above Downers Grove, IL +2001-06-22,38.5969444,-90.5091667,Manchester,MO,circle,30,oval craft with tiangular shape on bottom. flashing colored lights on each corner of the triangle +2002-06-22,43.1433333,-77.1894444,Marion,NY,teardrop,600,A dark bell or teardrop shaped object hovered in the sky and disappeared behind some clouds. +2002-06-22,46.0038889,-112.5338889,Butte,MT,formation,180,FORMATION ABOVE BUTTE.. +2002-06-22,46.0038889,-112.5338889,Butte,MT,formation,240,silent formation above butte MT. +2002-06-22,35.9991667,-81.5641667,Patterson,NC,light,420,Ball of light,similar to the Brown Mountain Lights.....in Patterson. +2002-06-22,38.1361111,-81.0997222,Ansted,WV,light,240,Bizarre light in small town that changed colors, other strange sightings within the same week. +2002-06-22,38.1361111,-81.0997222,Ansted,WV,unknown,600,bright light in sky no stars seen moved around and changed colors then suddenly vanished +2002-06-22,44.9430556,-123.0338889,Salem,OR,light,40,I was looking out the front window of my house. Directly above me was the light. It was a bright white light moving directly east of my +2003-06-22,41.2586111,-95.9375,Omaha,NE,formation,45,14 Total Craft (Disc's) sighted, 3 Formations of glowing Disc's, (3) - (5) - (5) and a single one that was reddish +2003-06-22,33.2569444,-103.3172222,Tatum,NM,oval,60,BRIGHT LIGHT THAT HOVERED THEN MOVED AT GREAT SPEED. +2003-06-22,34.0522222,-118.2427778,Los Angeles,CA,circle,20,i was walking home from the movies and i was with my friend and these big lights were flashing and moving around in a triangular patter +2003-06-22,33.4222222,-111.8219444,Mesa,AZ,cigar,60,slow low white flying cigar shaped ufo over east mesa. +2003-06-22,37.8091667,-85.4669444,Bardstown,KY,oval,300,Two oval shaped UFOs in Bardstown KY +2003-06-22,35.5961111,-78.1244444,Kenly,NC,oval,6,extremely fast moving light with no sound +2003-06-22,39.2902778,-76.6125,Baltimore,MD,diamond,120,object appeared in flight pattern of aircraft, then changed course and climbed out of the atmosphere. +2003-06-22,33.6619444,-112.3405556,Sun City West,AZ,light,180,White light moves erratically through Arizona night sky +2003-06-22,43.6955556,-89.1275,Kingston,WI,light,120,It didn't move like a shooting star or plane and I wasn't alone when I saw it on two separate occasions. +2004-06-22,29.4238889,-98.4933333,San Antonio,TX,changing,600,funny mylar looking object +2004-06-22,34.9530556,-120.4347222,Santa Maria,CA,unknown,900,20:30 06/22/04To bright objects just above and north of the moon that disappered within about five mintues of each other. +2004-06-22,43.8844444,-91.235,Onalaska,WI,unknown,4500,Several bright objects seen moving with incredible speed and flight patterns in the night sky over Onalaska, Wisconsin +2004-06-22,42.8863889,-78.8786111,Buffalo,NY,light,7,I watched 2 objects fly from east to west. Much faster than the speed of commercial jets and military jets are a rarity in this area. A +2004-06-22,41.5930556,-81.5269444,Euclid,OH,light,10,Circular White Light +2005-06-22,40.7141667,-74.0063889,New York City (Staten Island),NY,triangle,10,it was the a-typical triangle craft....white lights on tips of triangle, low gliding movement, however sounded like conventional engine +2005-06-22,39.6283333,-84.1594444,Centerville,OH,other,900,15 objects were doing maneuvers and then 9 objects flew at a very slow speed in pattern over our heads. +2005-06-22,33.6416667,-105.8766667,Carrizozo,NM,cigar,10800,LIGHTED CLOUD IN SKY +2005-06-22,44.775,-117.8333333,Baker City,OR,light,420,Three lights in triangular formation. +2005-06-22,42.4791667,-71.1527778,Woburn,MA,light,30,It appeared like a satelite moving across the sky, stopped, did a "S" then streak off at 90 degrees. +2005-06-22,41.5316667,-94.0094444,De Soto,IA,triangle,300,3 lights defining a triangle shape moving slowly in a night sky. ((NUFORC Note: Possible sighting of U. S. Navy NOSS satellites. PD) +2005-06-22,33.0369444,-117.2911111,Encinitas,CA,light,900,On beach north of San Diego, a multi-color light cluster appears in southern sky, strobing, drifting silently east. +2005-06-22,39.4019444,-75.0397222,Millville,NJ,sphere,1800,One bright object moving awkwardly interacting with other man-made aircraft. +2006-06-22,39.9880556,-81.1766667,Barnesville,OH,triangle,20,3 red triangle-shaped lights +2006-06-22,29.7630556,-95.3630556,Houston,TX,unknown,300,small black object seen over IAH airport during thunderstorm flying from the NW to the SE while airport was shutdown for weather +2006-06-22,27.3361111,-82.5308333,Sarasota,FL,other,120,A bright shinny silver object over University Parkway +2006-06-22,39.1433333,-77.2016667,Gaithersburg,MD,fireball,15,I was driving in my neighborhood, at around 9:30 at night. The sky was clear. I was driving into my neighborhood from east to west. O +2006-06-22,41.8133333,-87.8180556,Lyons,IL,light,240,red blue white circil large lights flashing no sound moving fast +2007-06-22,36.7477778,-119.7713889,Fresno (20 Min. N Of),CA,egg,180,3 strange lights, hovering, flipping, and spinning like a top; very close to the I5freeway. +2007-06-22,41.3252778,-82.4933333,Berlin Heights,OH,fireball,2700,These lights were definitely not airplane lights...these things were huge glows. +2007-06-22,33.8358333,-118.3397222,Torrance,CA,light,1200,Los Angeles - Bright lights seen by 4 witnesses during shuttle reentry. 12-15 bright lights moved around the sky for 20 minutes. +2007-06-22,41.52,-88.2016667,Shorewood,IL,changing,30,Huge white blimp covered with clouds. +2007-06-22,34.2783333,-119.2922222,Ventura,CA,chevron,4,V shaped soundless aircraft +2007-06-22,33.4486111,-84.455,Fayetteville,GA,light,15,2 White flashing lights moving across the sky over Fayetteville, Ga. +2007-06-22,34.4208333,-119.6972222,Santa Barbara,CA,unknown,1200,two lights over santa barbara mountains +2007-06-22,40.6855556,-76.1958333,Pottsville,PA,sphere,60,Silent orange round light suddenly appears and flies over at high speed. +2007-06-22,39.4561111,-77.9641667,Martinsburg,WV,unknown,7200,Martinsburg WV, 10-12 lights, 2 witnesses, we see them quite frequently. Lights go from very dim to extremely bright +2007-06-22,41.5933333,-87.3463889,Gary,IN,light,105,white geometrically moving lights on a stationary craft over Gary, IN +2008-06-22,46.5747222,-122.9069444,Napavine,WA,light,30,small blue light , high altitude, fading out into space +2008-06-22,32.1444444,-95.1202778,Troup,TX,oval,600,Was working on a well site in Troup Texas around 0200. Off to the left a Bright red light caught my attention. Looked in the direction +2008-06-22,34.1363889,-118.7736111,Agoura Hills,CA,light,600,Strong, pulsating light that changed colors from red to green to white. Object appeared stationery in sky +2008-06-22,35.0455556,-85.3097222,Chattanooga,TN,flash,2,A real bright flash of light. +2008-06-22,37.3541667,-121.9541667,Santa Clara,CA,light,6,two lights moving very fast high in the night sky on June 22񫺘 +2008-06-22,28.8355556,-82.3305556,Inverness,FL,unknown,26,a purple-ish blue figure in the sky twirling in a box like motion, very very freaky!! +2008-06-22,27.8336111,-97.0608333,Port Aransas,TX,other,120,SIGHTING AT PORT ARANSAS TX. +2008-06-22,42.0188889,-87.8027778,Niles,IL,chevron,15,V-shaped craft observed over northern Chicago suburb. +2008-06-22,36.4033333,-88.5872222,Palmersville,TN,unknown,300,We saw a burning object flying slowly through the air with no identifiable features. +2008-06-22,28.8038889,-81.7258333,Tavares,FL,changing,3600,Several ufos in different shapes fly low over neighborhood in tavares, Fl. +2008-06-22,41.9941667,-88.2922222,South Elgin,IL,formation,300,three orange circular lights travelling WSW in area of South Elgin, IL, a far west suburb of Chicago. +2008-06-22,33.9986111,-96.7194444,Kingston,OK,circle,420,Twin Balls of Fire traveling south to north +2008-06-22,37.3541667,-121.9541667,Santa Clara,CA,rectangle,6,Two lights moving very fast high in the night sky +2009-06-22,32.2216667,-110.9258333,Tucson,AZ,chevron,1800,Strobing chevron-shaped ' ((NUFORC Note: Probable star sighting, we suspect. PD)) +2009-06-22,35.2155556,-94.2555556,Greenwood,AR,fireball,2700,Three orange fireballs in the sky forming a triangle. Two disappeared after 20 minutes but one stay for 45 minutes. +2009-06-22,29.7630556,-95.3630556,Houston,TX,unknown,7200,Things that are to take place in the days to come,will it be to late. 500 Lights On Object0: Yes +2009-06-22,35.4675,-97.5161111,Oklahoma City,OK,unknown,10800,Pulsating colored lights, southern sky, Oklahoma City. June 22 2009 +2009-06-22,39.4561111,-98.1058333,Beloit,KS,light,300,light with no aircraft beacons +2009-06-22,39.4830556,-88.3727778,Mattoon,IL,egg,10,Yellow egg shaped object in the eastern sky; flew south +2009-06-22,34.2541667,-110.0291667,Show Low,AZ,disk,4,Black disk with red and green non-flashing lights flew across the dark sky. +2009-06-22,43.9991667,-96.6486111,Egan,SD,cigar,180,White cigar shaped object in sight for 2 to 3 minutes sighting duration. No noise, contralis, etc. +2009-06-22,43.9991667,-96.6486111,Egan,SD,oval,180,2 to 3 minute sighting of bright oval shaped object.moving south. +2009-06-22,38.3552778,-87.5675,Princeton,IN,light,10,Very big bright white circular light flew away very quickly after I looked at it for a few seconds. +2010-06-22,34.5644444,-92.5866667,Benton,AR,cylinder,60,Cylinder shaped UFO with lights hovering above tree line in Benton, Arkansas. +2010-06-22,39.8208333,-84.0194444,Fairborn,OH,circle,120,V shape of orange lites in the sky +2010-06-22,42.0333333,-70.9597222,East Bridgewater,MA,fireball,420,UFO fireball seen over Wayside Farm in East Bridgewater +2010-06-22,34.54,-112.4677778,Prescott,AZ,light,1800,Sequential Orange Lights in Prescott, AZ. ((NUFORC Note: Possible contrails, illuminated by the setting sun? PD)) +2010-06-22,27.3016667,-82.5516667,Siesta Key,FL,circle,900,Big orange and yellow circle floating over the Gulf of Mexico seen from Siesta Key Beach. +2011-06-22,44.0266667,-116.9619444,Ontario,OR,light,2,Ontario Oregon: A bright yellow-ish light moved across the NE sky, too close and too fast to be a plane. +2011-06-22,43.3005556,-73.5863889,Hudson Falls,NY,fireball,120,strange green/blue fireballs +2011-06-22,41.1669444,-74.0436111,Pomona,NY,fireball,10,Green fireball seen while driving home after work streaked across sky appeared to have sparks coming off. ((NUFORC Note: Meteor? PD)) +2012-06-22,39.1652778,-86.5263889,Bloomington,IN,triangle,600,It was orange and had no sound. +2012-06-22,42.0663889,-87.9372222,Mt. Prospect,IL,fireball,35,Round, orange, flickering light, resembling fire observed by security officer +2012-06-22,35.0844444,-106.6505556,Albuquerque,NM,light,180,6/22/12 albuquerque new mexico silver lite 3min 6/23/12 +2012-06-22,43.6136111,-116.2025,Boise,ID,light,180,Multi-colored lights in motion +2012-06-22,38.4327778,-90.3775,Arnold,MO,circle,600,Blue orb hovered over a tree, 2 doors down from my house in Arnold, MO +2012-06-22,34.0658333,-84.6769444,Acworth,GA,triangle,60,A large aircraft (Triangle) about the size of a house or larger with no lights or sound and not moving above our tree line at house. +2012-06-22,38.4202778,-81.7908333,Cross Lanes,WV,triangle,120,It was triangular and had lights on all corners with a glow coming from the center +2012-06-22,35.0705556,-91.8794444,Beebe,AR,triangle,180,A friend and I were sitting at a stop light at the intersection of Old Hwy 67 and Main St. (old downtown) Beebe, I looked up to my ri +2012-06-22,39.9205556,-105.0861111,Broomfield,CO,light,60,Bright light moving steadily over Broomfield disappears +2012-06-22,43.105,-88.3419444,Hartland,WI,fireball,2,Brief, briliant, orange light to the NE. +2012-06-22,33.8352778,-117.9136111,Anaheim,CA,circle,180,We were at Disneyland walking around and I noticed a round orange sphere/UFO moving very slow in the sky. It was an odd orange color w +2012-06-22,32.9627778,-117.035,Poway,CA,sphere,10,Unexplained large orange object moving in the sky +2012-06-22,25.7738889,-80.1938889,Miami,FL,formation,60,Lights in the sky wink out in the vicinity of Turkey Point +2012-06-22,36.2083333,-115.9830556,Pahrump,NV,other,30,Fast moving object on NV - CA state line. +2012-06-22,36.8352778,-76.2986111,Portsmouth (City Of),VA,light,60,Bright bluish white circular light ascending and then hovering, than making a quick u-turn or 180, in comet like motion and descending. +2012-06-22,41.5572222,-87.6655556,Homewood,IL,cigar,60,Bright, fast-moving, glowing or flaming object moving south to north approx.10 - 15ꯠ feet. 'Flames' went out at passed overhead. +2012-06-22,33.1191667,-117.0855556,Escondido,CA,fireball,60,Fireball with droppings last night 06/22/2012 +2012-06-22,42.6977778,-75.2441667,West Edmeston,NY,fireball,60,Orange fireball in the evening sky +2012-06-22,45.0775,-83.7161111,Lachine,MI,unknown,120,Black bulky slow floating object above trees...flying humanoid? +2012-06-22,28.0833333,-80.6083333,Melbourne,FL,sphere,60,Orange hovering orbs over melbourne,fl near dairy rd and florida ave +2012-06-22,43.6936111,-88.3608333,Eden,WI,triangle,20,Fast moving high altitude triangle with three lights. No strobe or flashing beacon. +2012-06-22,41.85,-87.65,Chicago,IL,light,2040,6/22/12 On my second floor deck, viewed a shining white orb, high in the sky, soundless, travelling Northwest to Southeast. +2012-06-22,42.7241667,-114.5177778,Jerome,ID,cone,600,UFO Observed in Jerome, Idaho.. Multiple sightings, and multiple witnesses! +2012-06-22,44.0152778,-73.1677778,Middlebury,VT,fireball,900,Me and my friends were fishing tonight I looked up into the sky to see an orange light moving very slowly about dime size if held as fa +2012-06-22,34.4258333,-112.5861111,Wilhoit (North Of),AZ,other,15,Total ..5 round objects moving in circle ...followed each other then vanished one by one +2012-06-22,42.7194444,-82.4922222,Marine City,MI,light,900,VERY LARGE lights, and very fast moving. stayed rather low to the ground and moved against the wind +2012-06-22,40.3275,-80.0397222,Bethel Park,PA,fireball,60,It was a red pulsing orb and silently flew by my house from west to east. +2012-06-22,40.5819444,-74.9594444,Pittstown,NJ,light,120,Three orange lights moving around in sky. +2012-06-22,40.5819444,-74.9594444,Pittstown,NJ,light,120,Triangular formation of orange, maybe red lights in the sky. +2012-06-22,43.2122222,-77.4302778,Webster,NY,diamond,240,I saw a large strong light coming across the sky. It did not look like a satellite or a comet or asteroid. It certainly did not resembl +2012-06-22,43.6936111,-88.3608333,Eden,WI,light,30,Two synchronized objects that moved across the sky. +2012-06-22,44.8755556,-91.9191667,Menomonie,WI,fireball,60,Fluorescent green, glowing, football-sized obeject falling from the sky +2013-06-22,41.7013889,-71.1555556,Fall River,MA,teardrop,2,Possible ufo sighted in new england (Real Report) +2013-06-22,39.0875,-81.9227778,West Chester,OH,fireball,45,Orange Fireball West Chester Ohio, Moving West to East. +2013-06-22,46.6622222,-122.9627778,Chehalis,WA,oval,2,Silver object caught in photo. +2013-06-22,34.9244444,-80.7436111,Waxhaw,NC,unknown,10,Large star like flashing lights moving across the sky. +2013-06-22,42.4311111,-83.4833333,Northville,MI,light,120,Orange light witnessed going across Michigan night sky, not an airplane, not a firework, something else +2013-06-22,41.31,-122.3094444,Mt. Shasta,CA,sphere,3,6-22-13 approximately 3:30 am Looking southward (from the north) at Mount Shasta A big round white light appeared to enter our atmosp +2013-06-22,41.5444444,-73.2094444,Woodbury,CT,light,1200,Bright star-like lights moving in ways meteors and satellites do not move. +2013-06-22,42.2625,-71.8027778,Worcester,MA,egg,120,White metallic egg shaped object spotted in Worcester Ma. +2013-06-22,36.8430556,-83.3219444,Harlan,KY,sphere,60,Silver ball with bat wings. +2013-06-22,19.9430556,-155.7902778,Waikoloa,HI,fireball,30,This was an orange/violet energy ball that moved slowly and then accelerated at a high rate of speed and disappeared into a cloud. +2013-06-22,34.0230556,-84.3616667,Roswell,GA,fireball,120,Six bright orange completely silent objects moving from east to west, in intervals of about 5 minutes. +2013-06-22,39.1855556,-78.1636111,Winchester,VA,disk,120,Traveling along interstate 81, I looked over Shenandoah Valley to see the mountains. Level with the highest mountain peak, a metallic d +2013-06-22,33.8886111,-117.8122222,Yorba Linda,CA,light,600,Small craft with white light vanishes. +2013-06-22,28.9022222,-82.5927778,Crystal River,FL,sphere,900,Strange orange spheres appear over Crystal River,FL. +2013-06-22,35.9522222,-86.6694444,Nolensville,TN,fireball,120,Fireball heading south. +2013-06-22,47.7361111,-122.6452778,Poulsbo,WA,oval,60,Yellowish/Orange oval sphere observed in Poulsbo, WA. +2013-06-22,40.7141667,-74.0063889,New York City (Brooklyn),NY,other,60,Strange fast moving orange lights in the sky that did not function like airplanes. +2013-06-22,40.0930556,-83.0180556,Worthington,OH,fireball,300,3 flaming figures over a field in worthington +2013-06-22,42.6525,-73.7566667,Albany,NY,fireball,600,There were about 30 objects in a huge formation, round, reddish orange , globe figures. +2013-06-22,45.8202778,-88.0658333,Iron Mountain,MI,light,60,6 objects seen. +2013-06-22,40.4166667,-86.8752778,Lafayette,IN,unknown,120,3 orange lights in a delta pattern, moving north, then north-east. +2013-06-22,34.0522222,-118.2427778,Los Angeles,CA,unknown,60,Fast-moving white light. +2013-06-22,42.325,-72.6416667,Northampton,MA,oval,300,Yellow glowing oval seen by hundreds of spectators after a fireworks display in Northampton, MA +2013-06-22,41.3908333,-72.86,North Haven,CT,circle,600,About 8 round amber colored lights ascending from a very low altitude to what appeared to be a few thousand feet. They were over route +2013-06-22,41.1175,-73.4083333,Norwalk,CT,other,1800,I saw at least 10 red lights/fire balls, making formations. I observed this by the SONO area in Norwalk,CT +2013-06-22,38.0525,-84.73,Versailles,KY,circle,60,Picture of round shape in Kentucky sky +2013-06-22,38.7072222,-121.28,Citrus Heights,CA,fireball,900,Orange fire balls flying. +2013-06-22,41.0638889,-73.4369444,Rowayton,CT,circle,900,20 orange shining round objects moving silently across the night sky, mostly one following another, a few in a small group. +2013-06-22,41.3686111,-81.6380556,Independence,OH,fireball,90,At approx. 10:20 p.m. on 6/22/13 we observed a single fireball move from horizon to horizon from southwest to northeast. +2013-06-22,34.1083333,-117.2888889,San Bernardino,CA,circle,20,Circle shape crossing the moon. +2013-06-22,41.0933333,-75.0022222,Bushkill,PA,fireball,10,It was unlike anything that the these 8 adults had ever seen. +2013-06-22,43.5408333,-116.5625,Nampa,ID,light,120,Bright red light hovered in the sky. +2013-06-22,39.8288889,-84.8902778,Richmond,IN,circle,20,Multiple red round objects grouped in a v shaped form appeared moving across the sky then dissapeared into nowhere +2013-06-22,43.33,-78.555,Barker,NY,fireball,10,Fireball in the night sky. +2013-06-22,41.2736111,-82.8416667,Bellevue,OH,circle,30,4 witnesses, Bright flash followed by 2 circular amber colored objects traveling VERY fast across the sky in same flight path +2013-06-22,37.2677778,-76.0177778,Cape Charles,VA,changing,480,8 minute Eastern Shore sighting included multiple changes in pattern utilizing 12 lit objects +2013-06-22,40.8022222,-124.1625,Eureka,CA,light,360,Multiple red flickering lights moving in unison. +2013-06-22,41.0586111,-94.3611111,Creston,IA,light,10,Large white light moving quickly west to east +2013-06-22,33.5805556,-112.2366667,Peoria,AZ,unknown,60,Unexplainable loud noise. +2013-06-22,41.2888889,-72.6822222,Guilford,CT,sphere,240,8-10 round yellow lights grouped in 2 lines of 4 with one or 2 a short distance away +2013-06-22,40.0580556,-82.4013889,Newark,OH,fireball,300,Orange Fireball Shape Floats Across Sky +2013-06-22,41.1577778,-80.0888889,Grove City,PA,light,300,3 very bright orange lights moving silently across the nights sky from west to east then in minutes gone +1954-06-23,38.7041667,-77.2280556,Lorton,VA,other,120,My Mother heard what she believed was a UFO. +1955-06-23,39.5975,-74.2130556,Beach Haven Park,NJ,disk,60,3 women hanging clothes saw a UFO come down over bay, hover for 30 sec.,then take off so fast it seemed to disappear. +1959-06-23,44.98,-93.2636111,Minneapolis,MN,formation,7200,Flying while in the Marine Corps in a AD Skuraider & with a wing man, at apprx 6ꯠ ft observed Four Red cly objects estimating at 20, +1967-06-23,43.6136111,-116.2025,Boise,ID,light,120,Light landing on runway, traveling past end zone, travelling overland over roadless area then turning to merge into freeway traffice +1970-06-23,36.4202778,-81.4736111,West Jefferson,NC,sphere,1200,Eight orange glowing orbs in v formation visible for several nights at the same time. +1975-06-23,32.7355556,-97.1077778,Arlington,TX,triangle,480,The three craft slowly came in from the west and turned north. +1975-06-23,32.7355556,-97.1077778,Arlington,TX,triangle,480,Three rounded, triangular objects leisurely moving from West to North over an 8-minute period. +1975-06-23,32.7355556,-97.1077778,Arlington,TX,triangle,60,Triangular object with at least 5 round dim lights moving from West at very slow pace. +1980-06-23,39.9522222,-75.1641667,Philadelphia,PA,sphere,60,Low flying craft that defies explanation. +1985-06-23,40.0544444,-79.9322222,Daisytown,PA,circle,360,Observed five red lights spinning counter-clockwise,it moved slowly left hovered and and then moved back to the right into the wood li +1987-06-23,34.8986111,-94.8658333,Summerfield,OK,light,600,Unexplained Object seen in LeFlore County, Oklahoma. +1989-06-23,27.1675,-80.2663889,Palm City,FL,light,300,Bright orb, hovering just above the tree tops for about 5 minutes. It was a light green color. +1990-06-23,43.1722222,-73.3280556,Salem,NY,egg,2700,Object seen but nothing came out on film. +1991-06-23,40.7141667,-74.0063889,New York City (Far Rockaway) (Queens),NY,other,3600,22:00 hrs far rockaway n.y. +1994-06-23,34.0522222,-118.2427778,Los Angeles (Outside Of),CA,disk,30,UFO's are attracted to me. +1995-06-23,33.8675,-117.9972222,Buena Park,CA,light,180,I was sleeping on the livingroom sofa facing a sliding glass door with a mini-blinds covering the glass when a bright ball of light bec +1996-06-23,34.2308333,-111.3244444,Payson (Woods Canyon Lake),AZ,light,10,How can there be a bright light and no body has seen it, and why did I fall back to sleep so quickly. +1997-06-23,30.4941667,-92.4175,Eunice,LA,light,600,Circular bright white light above house +1998-06-23,43.9658333,-89.2175,Neshkoro,WI,other,9000,Fireballs, streaks of bright light followed by objects flying at high altitudes +1998-06-23,37.5536111,-77.4605556,Richmond,VA,unknown,300,At about 9:58 last night, I was letting my dogs out. I then saw 5 craft in what was almost a "W" formation. I was confused. I went back +1999-06-23,42.7675,-78.7441667,Orchard Park,NY,disk,60,The saucer floated with lights circling around it, and with a bright flash shot away. +1999-06-23,42.4391667,-123.3272222,Grants Pass,OR,circle,1200,I saw a ball above a jet and it was still, then it went south and up till it was no longer in site +1999-06-23,32.7152778,-117.1563889,San Diego,CA,circle,180,I was going to eat lunch at a pizza place in Ocean beach. On I8w I sas over the ocean, a bright blinding round ball of white lite with +1999-06-23,36.8527778,-75.9783333,Virginia Beach,VA,light,10800,very bright flash of lights chaging positons but staying in a general area. but it was very very high in the sky might have been 3 or 4 +2000-06-23,43.1905556,-112.3441667,Blackfoot,ID,light,15,Four lights in two sets, each set rotating/spiraling going north and changing red and white. +2000-06-23,37.775,-122.4183333,San Francisco,CA,circle,10,Saw dark circular object under the water just off SFO airport moving towards San Mateo Bridge at a fast speed. +2000-06-23,47.2530556,-122.4430556,Tacoma,WA,other,1800,there were two balls of light that then merged into one they very slowly and did not behave like a plane orf fire work +2000-06-23,47.2530556,-122.4430556,Tacoma,WA,light,600,Beginning on 6/23/00 and occurring each night for three consequetive nights, I saw what I first took to be a star. This star appeared +2000-06-23,33.5091667,-111.8983333,Scottsdale,AZ,light,15,A VERY bright light doing impossable turns, then dropping to a pinpoint of light ... +2000-06-23,35.1508333,-92.7438889,Morrilton,AR,rectangle,120,OVER THE CITY I WAS UP WALK ABOUT IN THE HOUSE LOOK OUT AT MY WORK SHOP I SAW A LIGHT TO THE WEST OF TOWN. I WALK TO THE FRONT OF MY HO +2000-06-23,34.9802778,-101.9183333,Canyon,TX,unknown,90,Brief but clear sighting of a noiseless lighted (3, reb, blue and white) object maneuvering and hovering. +2000-06-23,40.7091667,-112.1008333,Magna,UT,circle,60,Me and My friends were sleeping outside when we saw a UFO. +2001-06-23,40.4233333,-104.7086111,Greeley,CO,diamond,1.5,Large diamond shaped craft with white-yellow diamond shaped lights sighted in Greeley, CO +2001-06-23,41.6005556,-93.6088889,Des Moines,IA,fireball,10,slow moving green fireball +2001-06-23,33.2961111,-86.8436111,Helena,AL,fireball,10,Eight adults witness fast-moving bright object fly across the sky +2001-06-23,39.9369444,-120.9461111,Quincy,CA,light,10,Decending large white object, vectors to the North and dissappears. +2001-06-23,34.8722222,-89.6905556,Byhalia,MS,disk,540,disked shape, black except for blinding bright lights, does not fly as high as commercial jets +2001-06-23,30.6694444,-81.4627778,Fernandina Beach,FL,circle,300,Fernandina (Amelia Island) Florida, Circular Object Hovers, Emits Mist from 5 jets to Envelop itself, disappears +2001-06-23,35.8172222,-83.2469444,Cosby,TN,fireball,25,the objects made animpossible 90 degree turn. +2001-06-23,38.7027778,-120.0716667,Kirkwood,CA,other,60,an object in ca.had a large green light on the bottom.hexagon shape colored white.no sound was heard.a jet was seen within two minutes +2001-06-23,37.985,-103.5433333,La Junta,CO,triangle,5,perfect triangular objects flying in perfect form with incredible speeds. +2001-06-23,39.9369444,-120.9461111,Quincy,CA,light,60,Red light flares to brilliant white,changes course. +2001-06-23,41.7469444,-88.0502778,Woodridge,IL,light,10,Bright white light moving to a stop and slowly dimming out +2001-06-23,34.8761111,-83.9583333,Blairsville,GA,triangle,180,Strange triangular shape object +2002-06-23,34.2283333,-118.5358333,Northridge,CA,changing,900,I saw an object that reminded me of a stone skipping in the sky everytime it bounced it got higher and faster. +2002-06-23,32.2216667,-110.9258333,Tucson,AZ,disk,180,It was about 6:47 and we were driving to Sonic when all of the sudden I noticed a silver disk hovering in the air then two more appeare +2002-06-23,34.0966667,-117.7188889,Claremont,CA,cigar,1800,Two distant three-sectioned cigar-shaped white UFOs observed for half an hour, one of them approached by an apparent jet. +2002-06-23,40.7994444,-78.0544444,Port Matilda,PA,other,3600,We were playing Hide-and-Go-Seek at night and then they appeared in the sky... +2002-06-23,37.2705556,-76.7077778,Williamsburg,VA,light,2,A light flying really fast and really low +2003-06-23,30.1586111,-85.6602778,Panama City,FL,light,720,Panama City UFO +2003-06-23,43.6136111,-116.2025,Boise,ID,light,10,Extremely bright light that faded to a small red point of light and accelerated rapidly +2003-06-23,47.5405556,-122.635,Port Orchard,WA,light,120,2 BRIGHT LIGHTS GOING AT AVERAGE SPEED +2004-06-23,46.2069444,-119.7677778,Prosser,WA,light,1080,Bright light seen in night time sky dims in intensity several times before disappearing +2004-06-23,43.0986111,-77.4422222,Fairport,NY,sphere,120,Odd orb like object hovering very closely above the canal that was joined by another and took off suddenly after a couple moments. +2004-06-23,41.1305556,-85.1288889,Fort Wayne,IN,light,120,Was clear sky and saw shimmering light (like a star) that appeared to move in many directions in short timeframes +2004-06-23,39.7136111,-82.5994444,Lancaster,OH,light,120,A red/pink pulsing object performing strange flight patterns. +2004-06-23,33.4222222,-111.8219444,Mesa,AZ,changing,20,Black Orb Morfed Into DIsk +2004-06-23,38.9341667,-77.1777778,Mclean,VA,triangle,3600,I am a member of a 50 caliber rifle owners club in Northern VA. Our rifles fire the 50 caliber cartridge developed for the Browning 50 +2004-06-23,41.1883333,-80.9783333,Newton Falls,OH,changing,1380,there was strange lighted objects in the woods that hummed and were cold that left a trail... +2005-06-23,47.3075,-122.2272222,Auburn,WA,light,40,Bright Light with direction change +2005-06-23,35.655,-82.6963889,Leicester,NC,fireball,2,it was a fast moving fireball with no tail or trail ,moving from west to east near asheville nc +2005-06-23,34.5025,-84.9511111,Calhoun,GA,triangle,1200,Triangle object with smaller craft behind +2005-06-23,43.5405556,-72.3994444,Hartland,VT,sphere,3600,((NUFORC Note: Probable twinkling star. PD)) Red white sphere. +2005-06-23,32.1838889,-96.8844444,Italy,TX,light,30,((HOAX))whatthef_ _ _ +2005-06-23,40.5186111,-74.4125,Edison,NJ,flash,2,flash of light...then disapeared~ +2005-06-23,41.6833333,-86.25,South Bend,IN,rectangle,900,Repeated white rectangle and round object by airport and hiding behind cloud +2005-06-23,29.7630556,-95.3630556,Houston,TX,other,50,I live in Sharsptown, a residential community located in the southwestern side of Houston, Texas. On Thursday, June 23rd 2005 at approx +2005-06-23,32.8997222,-94.5561111,Avinger (Lake O' The Pines),TX,cylinder,15,A white cylindrical object apparently without wings flew from SSE to NNW and I took a very good picture of it. +2005-06-23,40.0236111,-79.8841667,Brownsville,PA,triangle,90,Triangular craft made of 3 white lights moving very slowly over southwestern PA. +2006-06-23,36.5297222,-87.3594444,Clarksville,TN,sphere,7200,Orb over home in Clarksville, TN. +2006-06-23,33.4483333,-112.0733333,Phoenix,AZ,other,3,blue and white crescent shaped object above South Mountain +2006-06-23,39.7391667,-104.9841667,Denver,CO,disk,60,Daylight Disk near Denver +2006-06-23,29.7630556,-95.3630556,Houston,TX,egg,120,Dual White/Black/Red Ovalesques over Clear Lake, Texas +2006-06-23,43.4577778,-88.8372222,Beaver Dam,WI,unknown,120,Several high flying "dots" seen on clear summer evening. +2006-06-23,33.5919444,-84.27,Rex,GA,other,20,Brownish gold object over Rex, GA +2006-06-23,39.4380556,-99.2647222,Stockton,KS,sphere,30,commercial plane veeres off course to avoid possible collision with ufo +2006-06-23,33.5172222,-82.0758333,Martinez,GA,light,600,Ive filed a similar report on April 8 2006. I saw the formation again sunday night around 11 30 afeter arriving home from work. +2007-06-23,35.6708333,-80.4744444,Salisbury,NC,disk,10,Very Strange UFO Sighting!!!! +2007-06-23,43.6105556,-72.9730556,Rutland,VT,disk,10,very thin black disk with very well rounded shape, clear as day floats effortlessly and turns on sides in sky , +2007-06-23,45.5827778,-122.3522222,Washougal,WA,formation,10800,100's of orbs +2007-06-23,40.4991667,-77.7416667,Mcveytown,PA,cigar,45,Large, unmarked, white cigar-shaped UFO seen by daughter in clear blue afternoon sky. +2007-06-23,40.7141667,-74.0063889,New York City,NY,circle,2700,Large, intense stationary bright light seemed to fade in and out over New Jersey. +2007-06-23,38.6194444,-94.6805556,Louisburg,KS,circle,300,Bright orb shapped object moving from West to North to East. +2007-06-23,33.8936111,-117.7263889,Chino Hills,CA,diamond,600,UFo was observed on the opposite flight pattern as planes on final approach to LAX. UFO was moving west to east until it dissaperared +2007-06-23,30.4761111,-88.3422222,Grand Bay,AL,fireball,5,Decending Green fire ball traveling east to west over south Mobile county , Alabama +2007-06-23,34.1722222,-118.3780556,North Hollywood,CA,circle,900,6/23/07 Total of five round objects against the moon's light, but not all at the same time. +2007-06-23,28.2486111,-81.2813889,Saint Cloud,FL,fireball,600,Red glowing light west of Kennedy Space Center +2007-06-23,41.9125,-88.1347222,Carol Stream,IL,sphere,30,Speefy fat disk shaped craft spotted against a cloudy sky. +2007-06-23,42.7975,-73.265,North Pownal,VT,oval,180,The object traveled in a direct path. +2007-06-23,40.6752778,-121.4297222,Old Station,CA,light,60,A bright object in the night sky flashed brighter as it moved through the sky. +2007-06-23,44.6180556,-75.4075,Heuvelton,NY,triangle,720,I since seeing the UFO know that Humans are at a devastating disadvantage in the event of war with that technology and its owners.. +2008-06-23,34.2694444,-118.7805556,Simi Valley,CA,light,900,I got off of work looked to southern sky saw a red bright light no blinking.I thought wow mars is really red. I drove home looked up in +2008-06-23,43.073055600000004,-89.4011111,Madison,WI,oval,900,White oval above treetops in Madison, WI - changed direction and color +2008-06-23,43.073055600000004,-89.4011111,Madison,WI,oval,900,White oval floating over treetops near Madison, Wisconsin airport +2008-06-23,61.2180556,-149.9002778,Anchorage,AK,teardrop,180,rotating teardrop over trees/highway +2008-06-23,28.5380556,-81.3794444,Orlando,FL,light,3,Blast of white light in the sky. +2008-06-23,47.5675,-122.6313889,Bremerton,WA,sphere,1200,2 bright lights next to each other hovering for 20 plus minutes, then vanishing to the left. +2008-06-23,40.7141667,-74.0063889,New York City (Brooklyn),NY,sphere,120,Flaming Ball Sighted +2008-06-23,27.3361111,-82.5308333,Sarasota,FL,triangle,300,((HOAX??)) Two craft with seven orange lights on each, and a vague, dark triangular shape that housed the lights. +2008-06-23,42.7977778,-83.705,Fenton,MI,unknown,300,Object moving north just west of City of Fenton at approx. 10PM. Bright orange light...looked like a fireball. No sound. After seem +2008-06-23,36.7097222,-81.9775,Abingdon,VA,rectangle,3600,2 LARGE rectangle, 1 tubed craft seen over Abingdon, VA +2008-06-23,47.6063889,-122.3308333,Seattle,WA,light,2,Strange Green Light sighted floating horizontally for 2 seconds over Phinney Ridge in Seattle, not matching normal flight patterns +2008-06-23,41.1219444,-74.5808333,Franklin,NJ,light,180,Two blinking lights flying impossibly close to each other seem to stand still before flying off in different directions. +2008-06-23,37.9513889,-91.7711111,Rolla,MO,light,15,My husband is a medical assistant in a doctors office and i am a stay at home mother of 3. +2008-06-23,41.1544444,-96.0419444,Papillion,NE,unknown,2,Bright light behind a haze changed from white-ish yellow to blue colors. +2008-06-23,39.4527778,-94.3419444,Holt,MO,unknown,300,Red and white alternate blinking lights, erratic trajectory, high in the sky +2008-06-23,38.9591667,-85.8902778,Seymour,IN,triangle,600,Three objects in sky above Seymour +2009-06-23,27.8002778,-97.3961111,Corpus Christi,TX,changing,600,A single extremely luminescent light jolted continuously and changed shape for hours. ((NUFORC Note: Star?? PD)) +2009-06-23,33.6597222,-85.8316667,Anniston,AL,unknown,7200,UFO Spotted Over Atlanta +2009-06-23,40.7141667,-74.0063889,New York City (Queens),NY,light,300,Moving light that stayed bright as it flew off into the distance. +2009-06-23,39.7625,-87.2291667,Rockville,IN,oval,15,city in space and not ours +2009-06-23,32.7152778,-117.1563889,San Diego,CA,disk,1800,Saucer shaped object, over the seas of San Diego,brightly illuminated by the sun, seemed too blend it self in to the colors of the sky. +2009-06-23,33.4147222,-111.9086111,Tempe,AZ,fireball,2,A fireball spotted in southern Arizona 6/23/09 at about 8 pm +2009-06-23,32.2216667,-110.9258333,Tucson,AZ,unknown,900,Red and Orange lights as many as 10 UFO"S seen In Tucson +2009-06-23,41.2372222,-82.12,Lagrange,OH,diamond,2700,one light broke apart into two and 2 odd shaped crafts with lots lights hovered over our heads +2009-06-23,33.3527778,-111.7883333,Gilbert,AZ,light,7,HOVERING LIGHT IN THE SKY. +2009-06-23,41.8505556,-87.7936111,Berwyn,IL,other,2,small very bright pin prick of light zig-zagging across the sky extreamly fast. +2009-06-23,29.4238889,-98.4933333,San Antonio,TX,flash,30,bright flash of white light seen over san antonio texas. +2009-06-23,41.4819444,-81.7983333,Lakewood,OH,light,60,Motionless silent flashing colored lights +2009-06-23,40.6422222,-79.8511111,Curtisville,PA,triangle,300,Happend tonight and last night never seen anything like this +2009-06-23,34.6016667,-105.2077778,Vaughn,NM,triangle,10,Trucker witnesses very large, unlighted triangle hover above his truck. +2010-06-23,43.2327778,-100.8530556,Rosebud,SD,circle,120,strange orange glow +2010-06-23,41.2230556,-111.9730556,Ogden,UT,light,120,Light in Utah sky moving erratically. +2010-06-23,33.4352778,-112.2972222,Cashion,AZ,oval,600,slanted oval. stationary for about 2 minutes. disappeared then reappeared 2 seconds later. gone in 5 mins. as diminishing turned blue +2010-06-23,27.9472222,-82.4586111,Tampa,FL,rectangle,300,I was driving at about 6:20 pm, bright daylight, in late rush hour when I saw a large, gray, rectangular shape floating low in the sky +2010-06-23,40.4208333,-74.5611111,Kendall Park,NJ,oval,120,I looked to the right of my backyard and saw a oval shaped object in the sky +2010-06-23,47.0380556,-122.8994444,Olympia,WA,sphere,300,Saw UFO,s in olympia WA +2010-06-23,45.3002778,-122.9719444,Newberg,OR,light,300,Bright red dot that resembled a star, but moved and then faded away. +2010-06-23,47.4475,-122.4586111,Vashon,WA,diamond,5400,Silent diamond shapes with 6 or 7 yellow or brilliant white lights giving them their sense of shape over Puget Sound, WA +2010-06-23,41.1594444,-73.7652778,Chappaqua,NY,sphere,120,I large sphere separating into 5 smaller ones +2011-06-23,30.2238889,-92.0197222,Lafayette,LA,light,240,Bright colors, changed speeds of colors changing. +2011-06-23,41.7141667,-72.6530556,Wethersfield,CT,changing,600,I was looking over the horizon in the direction of Glastonbury, I was in Wethersfield accompanied by my girlfriend. We both saw lights +2011-06-23,39.9355556,-91.4097222,Quincy,IL,other,600,Seven unusual objects passed over Quincy Illinois observed by four people two of them experienced pilots. +2011-06-23,38.0133333,-122.6627778,San Geronimo,CA,oval,480,Large flying balloon-shaped object: top portion appeared solid, bottom portion appeared to be the color of a high heat flame. +2011-06-23,39.9777778,-105.1313889,Louisville,CO,light,5,White light grew in size and disappeared. ((NUFORC Note: Possible flare from Iridium satellite?? PD)) +2011-06-23,35.3394444,-97.4863889,Moore,OK,light,780,Bright Blue lights over Moore, Oklahoma. +2012-06-23,43.2127778,-75.4561111,Rome,NY,disk,900,Object appeared to be pulsating and vibrating the lights on the bottom were strobe like and very bright it made no sound . +2012-06-23,39.8397222,-74.1905556,Forked River,NJ,triangle,3600,Triangle shaped object in the sky at 1:48am with blinking lights, flies straight up into the sky +2012-06-23,39.3677778,-94.3619444,Kearney,MO,fireball,420,Intense, multicolored light hovered silently just above treeline... +2012-06-23,44.3891667,-69.3033333,Liberty,ME,light,10800,Very bright light shining on our house in the middle of thick woods for 2+ hours then turning and &quot;driving&quot; through trees +2012-06-23,44.2097222,-69.0652778,Camden,ME,light,3600,PREVIOUSLY REPORTED LIGHTS IN THE SKY OVER CAMDEN, MAINE, ON JUNE 23RD WERE &quot;SKY LANTERNS&quot; RELEASED AT A WEDDING. +2012-06-23,42.1388889,-83.2416667,Woodhaven,MI,fireball,900,Red fireball staying in place in Woodhaven Sky seen by 4 people +2012-06-23,44.0302778,-71.6863889,North Woodstock,NH,rectangle,5,((HOAX??)) HIGH SPEED UFO CAPTURED ON FILM +2012-06-23,40.5594444,-79.9588889,Allison Park,PA,unknown,3600,"Solar" glowing "object" during sunset. +2012-06-23,34.2783333,-119.2922222,Ventura,CA,fireball,600,A very bright star, that flickered like a little like fire for about 10 mins and then disappeared. +2012-06-23,44.2097222,-69.0652778,Camden,ME,fireball,3600,ABOUT THIRTY BRIGHT ORANGE LIGHTS DRIFTED SLOWLY EAST AND ROSE UPWARDS OVER CAMDEN MAINE, BETWEEN 9 PM AND 10 PM JUNE 23RD, 2012, +2012-06-23,40.7163889,-73.3222222,North Babylon,NY,circle,600,Round yellow orange fiery ball looked like a candle inside a bubble. Came over my backyard from northwest to southeast no sound at all. +2012-06-23,41.9430556,-86.5569444,Bridgman,MI,oval,300,Saw 2 UFO's oval shaped near Michigan Indiana border along I 94 glowing plasma orange and visible 5 mins +2012-06-23,33.94,-118.1316667,Downey,CA,oval,20,Silvery white oval object very high in the night sky traveling very fast from west to east +2012-06-23,35.6511111,-78.8338889,Holly Springs,NC,disk,10,I saw a UFO over Holly Springs, NC at 9:30 pm on June 23, 2012 +2012-06-23,42.7008333,-73.1091667,North Adams,MA,oval,120,This THING moved from the right then back to the left so crazily fast that i almost lost it... never seen nothing like this +2012-06-23,39.1619444,-84.4569444,Cincinnati,OH,light,180,Two amber / orange orbs flying in night sky near Cincinnati on 6-23-12. +2012-06-23,46.7833333,-92.1063889,Duluth,MN,sphere,1200,12-15 globes of light hovering above the northern hillside. +2012-06-23,32.5769444,-80.1708333,Seabrook Island,SC,unknown,2400,Witnessed 7 fast, strangely manuevering lights in South Carolina +2012-06-23,42.7088889,-78.5783333,South Wales,NY,sphere,60,Soundless orange/red sphere shaped light heads east in night sky then disapprears +2012-06-23,33.9022222,-118.0808333,Norwalk,CA,light,30,Bright light in the sky then disappear +2012-06-23,39.7663889,-75.1447222,Sewell,NJ,light,300,Large star ufo +2012-06-23,41.865,-80.79,Ashtabula,OH,light,180,Very bright light moving south east +2012-06-23,40.7425,-84.1052778,Lima,OH,fireball,120,The power went out and it came from the south moving north. Seemed to circle around and come back. Moved very quickly. The just vanishe +2012-06-23,46.4083333,-105.84,Miles City,MT,fireball,120,UFO/Fireball Seen in Miles City, Montana +2012-06-23,41.3136111,-81.7247222,North Royalton,OH,fireball,600,Firelight in the sky, approaching very fast then flaming out. +2012-06-23,42.2411111,-83.6130556,Ypsilanti,MI,triangle,300,Triangle craft traveling back and forth East and West over Ypsilanti around 10:30 +2012-06-23,36.2013889,-84.7591667,Deer Lodge,TN,cigar,15,A cigar shape object with no sound or light flying at a high speed +2012-06-23,42.1997222,-87.8091667,Highwood,IL,sphere,60,Five bright orange orbs moved across the sky then disappeared +2012-06-23,41.760555600000004,-88.32,Aurora,IL,fireball,120,Husband and wife witness strange floating firey object over Aurora, IL sky +2012-06-23,42.8625,-73.3286111,Hoosick,NY,light,3600,Bright star like object moving across the sky, then fading and disappearing. +2012-06-23,38.7430556,-94.8252778,Spring Hill,KS,circle,120,We were out at a friends swimming and just hanging outside by the pool. My friends kept giving me a lot of shit because I was laying do +2012-06-23,34.2083333,-77.7966667,Wrightsville Beach,NC,changing,1800,multiple objects blinking different colors over ocean and 3 bright white lights scanning beach at ground level +2012-06-23,36.5483333,-82.5619444,Kingsport,TN,triangle,45,Today at about 23:09 Eastern Standert Time I saw a red, flashing triangle of lights. The triangle was East South East and moved to the +2012-06-23,38.4405556,-122.7133333,Santa Rosa,CA,light,300,2 bright orange lights over Santa Rosa Ca. +2012-06-23,38.4405556,-122.7133333,Santa Rosa,CA,light,300,Yellow Orange lights over West Sonoma County CA +2012-06-23,42.5630556,-114.46,Twin Falls,ID,fireball,1401,They jump down and left from big light with too fast speed. ((NUFORC Note: Possibly not a serious-minded report? PD)) +2012-06-23,44.1580556,-72.4508333,East Barre,VT,other,900,multiple red star like objects over a long duration of time +2012-06-23,42.5836111,-83.2455556,Bloomfield Hills,MI,fireball,420,We saw this burning red light which at first looked like airplane lights or a helicopter lights, but for a helicopter it was too faraw +2013-06-23,39.7683333,-86.1580556,Indianapolis,IN,unknown,240,NOTE-This is based on what actually happened. The UFO explained, however, is real and the way it was seen is not changed in any way. +2013-06-23,32.8383333,-116.9730556,Santee,CA,circle,10,Bright green light over Santee Ca. +2013-06-23,45.5236111,-122.675,Portland,OR,other,90,Four Lights/Objects in Night Sky Over Portland +2013-06-23,39.6283333,-84.1594444,Centerville,OH,fireball,600,Orange orbs drift over Centerville. +2013-06-23,36.175,-115.1363889,Las Vegas,NV,triangle,3600,Red, Blue lights, hovered around, remote control, manmade, but not of any clearly discernable type. +2013-06-23,33.7413889,-118.1038889,Seal Beach,CA,sphere,10,Daylight black sphere descends over Seal Beach golf course and disappears behing trees. +2013-06-23,34.5033333,-82.6502778,Anderson,SC,other,2,Was driving down 85 and saw what can only be described as a HUGE ripple of silver thin paper like material as big as a football field. +2013-06-23,32,-80.8458333,Tybee Island,GA,fireball,120,Fireball on Tybee Island, GA. +2013-06-23,32.5158333,-93.7319444,Bossier City,LA,light,600,Aerial orange/red light. +2013-06-23,26.1219444,-80.1436111,Fort Lauderdale,FL,light,900,Red orange lights spaced minutes apart moving E to W at aircraft speeds total of 7 lights over 10 minutes +2013-06-23,34.0522222,-118.2427778,Los Angeles,CA,circle,600,Fireball looking circle in the sky. +2013-06-23,25.7738889,-80.1938889,Miami,FL,flash,1266,I believe we witnessed an UFO +2013-06-23,35.265,-116.0736111,Baker,CA,fireball,600,Ring in shape with appear to be 8 fireballs making the ring and then just disappeared. +2013-06-23,36.5816667,-86.5163889,Portland,TN,light,120,Moving northwest to east south east. no strobe lights. silent. look and movement like a satellite, but much lower altitude and brigh +2013-06-23,29.7630556,-95.3630556,Houston,TX,light,20,While watching the Super Moon one craft appeared in sky and went to a point in the high southern sky and disapeared at a certain point +2013-06-23,36.3936111,-78.9830556,Roxboro,NC,triangle,20,Triangular craft flying under 1000 ft and under 100mph RED LIGHT AT CENTER +2013-06-23,38.8338889,-104.8208333,Colorado Springs,CO,light,180,Slowly and evenly pulsing light that alternated between invisible and extremely bright as it travelled North. +2013-06-23,20.8783333,-156.6825,Lahaina,HI,fireball,1800,Glowing fireballs caught on tape over lahaina 6/23/13 +2013-06-23,40.0930556,-83.0180556,Worthington,OH,other,180,Flame to red object that flew towards the moon. +1956-06-24,36.9613889,-120.0597222,Madera,CA,sphere,120,Half spherical object with portholes on the side. Mid 1950's in Central California. Day time. +1977-06-24,42.3583333,-71.0602778,Boston,MA,sphere,900,Boston Harbor light show +1978-06-24,30.3672222,-89.0927778,Gulfport,MS,other,600,Orb of light enters body, awake temporarily paralyzed, followed by prophetic visions and drawings +1984-06-24,34.0005556,-81.035,Columbia,SC,oval,900,I do not know whats going on. I have strange dreams of very hightech information thats ruining my life. +1984-06-24,30.4380556,-84.2808333,Tallahassee,FL,unknown,10800,FLASH CAR DIED AND I T WAS 4 HRS LATER +1995-06-24,34.0522222,-118.2427778,Los Angeles County,CA,triangle,37800,Me, and six of my friends watched these lights in triangular shape hover in the air, and didn't break formation and then move westward. +1996-06-24,39.7294444,-104.8313889,Aurora,CO,changed,3600,Obj. hovered 100 ft above car. Red, blue lights on corners. Changed shape from cube to pyramid to triangle. Landed 800 ft away. +1997-06-24,37.775,-122.4183333,San Francisco,CA,oval,10,close oval white object transforms self to a circular green object - both had trails of same color +1997-06-24,36.7477778,-119.7713889,Fresno,CA,light,3600,western sky i observed a bright light just after the setting sun.about 9:pm +1998-06-24,30.2669444,-97.7427778,Austin (Area),TX,other,2700,my fiancee' and i were driving to her mother's house in hutto after work for a visit at about 11 o'clock at nigt. it was clear out, whi +1999-06-24,43.8208333,-72.5216667,South Royalton,VT,circle,10800,it just appeared and stayed there flashing colors for sometime then something came off it and disappered. After sometime it came back t +1999-06-24,47.6063889,-122.3308333,Seattle (Fremont Bridge),WA,sphere,2,Six or seven luminous spheres streaking west to east. +1999-06-24,34.0983333,-118.3258333,West Hollywood,CA,sphere,8100,4-5 p.m., 1 Sphere, 3-4 thousand ft., to the NE- Directly over the banana tree next to my house. It moved around slowly in the same are +1999-06-24,44.98,-93.2636111,Minneapolis,MN,light,600,From 4:35 p.m. to 4:45 p.m. on 6/24/99, Minneapolis, MN 55454, on Washington Avenue ("7 Corners"), I saw in the north sky a bright whit +1999-06-24,39.9355556,-91.4097222,Quincy,IL,changing,600,was in the western sky, was flashing bright colors and looked as if once in a while shot off a red light. moves northwest and gets lowe +1999-06-24,33.9325,-114.005,Bouse,AZ,cylinder,600,On 6/24/99 facing south, between 21:50-22:00, saw a cylinder w/domed head appear suddenly above Earth and towards the Moon to disappear +2000-06-24,47.3225,-122.3113889,Federal Way,WA,sphere,60,Two black round shaped objects heading sw equidistant from each other moving rather slowly under high storm cloud cover then seeming to +2000-06-24,37.2297222,-119.5086111,North Fork,CA,light,60,Flashing white l:ight travels 100 degrees across the sky in under a second and then slows down to the speed of a satellite +2000-06-24,38.8813889,-94.8188889,Olathe,KS,light,5,A bright light was observed going from south to north. It flased 4-5 times when first seen, stopped flashing then disappeared. +2000-06-24,40.3752778,-80.7038889,Wintersville,OH,cylinder,7,Dark cylinder with shadowy wing halo...... +2000-06-24,40.4155556,-74.1913889,Hazlet,NJ,circle,15,Two men saw a white "snowball" pass through night sky, altering course rapidly +2000-06-24,47.6741667,-122.1202778,Redmond,WA,chevron,10,Chevron shaped object glowed a bright, shimmering gold color. +2001-06-24,42.6380556,-83.6172222,Highland,MI,triangle,900,Me and a friend saw a ufo +2001-06-24,33.4222222,-111.8219444,Mesa,AZ,unknown,180,At approximately 10:31 am, Sunday morning, I was outside on our back porch smoking a cigarette when a flight of three Air Force trainer +2001-06-24,34.2575,-88.7033333,Tupelo,MS,unknown,3600,UFO over Tupelo, Mississippi ???? +2001-06-24,33.9488889,-118.4447222,Playa Del Rey,CA,triangle,10,Triangular Craft Seen Passing over LAX. +2001-06-24,29.9688889,-95.6969444,Cypress,TX,changing,300,White oblong object, clear sky, dailight, light wind, other aircraft in sky, no light detected. +2001-06-24,39.760555600000004,-86.5263889,Danville,IN,unknown,2,neon green light like a comet shooting across the sky +2001-06-24,29.2105556,-81.0230556,Daytona Beach,FL,other,4,Green object traveling North to South..ascending slightly upwards +2001-06-24,36.8044444,-97.2825,Blackwell,OK,disk,180,strang multi colored ship seen above overpass +2001-06-24,37.3541667,-121.9541667,Santa Clara,CA,light,20,2 high flying objects traveling at great speeds across the night sky. +2001-06-24,41.4530556,-72.4616667,East Haddam,CT,egg,30,Unbeielveable speed and brightness never seen before +2002-06-24,26.3180556,-80.1,Deerfield Beach,FL,sphere,1200,White spherical light moves in circular path, then irregular path, then turns itself off and on & off like a lightbulb& zips away! +2002-06-24,33.5225,-117.7066667,Laguna Niguel,CA,rectangle,10,A brief experience with a reflective surface in the sky. +2002-06-24,33.4483333,-112.0733333,Phoenix,AZ,light,30,Bright object in the daylight sky +2002-06-24,40.7141667,-74.0063889,New York City,NY,light,7200,Brilliant starlike object (Unidentified Flying Object) visits south of Manhattan +2002-06-24,37.9063889,-122.0638889,Walnut Creek,CA,unknown,10,Bright moving object high in the sky. Changed intensity as it moved. +2002-06-24,26.3180556,-80.1,Deerfield Beach,FL,disk,1200,Luminous white saucer shaped object zig zags around the moon +2003-06-24,46.8261111,-119.1741667,Othello,WA,oval,3600,round objects jump side to side and up and down very fastly +2003-06-24,35.1894444,-114.0522222,Kingman,AZ,light,1320,the object moved at speed from one place to enother +2003-06-24,39.9611111,-82.9988889,Columbus,OH,light,2,Unknown flash of light. +2003-06-24,34.54,-112.4677778,Prescott,AZ,sphere,120,It moved about a mile or less out into the desert and stoped, then I could see the ground light up beneath it for a moment and then it +2003-06-24,33.8358333,-79.0480556,Conway,SC,circle,240,It was a perfect circle that appearted transparent. Outline of darker white. 3 red lights moving very slow. Disappeared instantly. +2004-06-24,37.8858333,-122.1169444,Lafayette,CA,unknown,120,Green light and white flashes light up tree's outside my house, and we see ufo dissapear into the night sky. +2004-06-24,37.0058333,-121.5672222,Gilroy,CA,light,240,3 BRIGHT LIGHTS HEADING SOUTH 3:00 AM YOU COULD NOT HAVE MISSED THEM! +2004-06-24,41.1175,-73.4083333,Norwalk,CT,other,300,as i was going up i95 i saw a T shaped object peer through the clouds +2004-06-24,33.4483333,-112.0733333,Phoenix,AZ,oval,120,we were at swim lessons, my husband saw molecules in the air then we saw oval shaped craft traveling north 300 mph & 1 mile high, +2004-06-24,45.5230556,-122.9886111,Hillsboro,OR,oval,1,Daytime High speed orb caugt on video +2004-06-24,32.8719444,-97.8663889,Peaster,TX,cigar,20,Cigar-shaped object with fins left huge smoke trail +2004-06-24,47.4158333,-120.2919444,East Wenatchee,WA,sphere,1200,Black sphere moves and hesitates in sky before joining two others. +2004-06-24,40.8927778,-73.9730556,Englewood,NJ,oval,90,MY FAMILY AND I SAW A BLACK OBJECT, NORTHERN DIRECTION OF ENGLEWOOD N.J., OVAL IN SHAPE FLYING IN A CROSS-PATTERN, NO SOUND, BALLOON LI +2004-06-24,40.9561111,-72.9683333,Sound Beach,NY,unknown,5,lunar crossing event +2004-06-24,35.0613889,-106.1908333,Edgewood,NM,light,10,APPROXIMATELY THIS TIME THURSDAY EVENING ON A DARK NIGHT 6/24/04 9:29P.M. I SAW 2 WHITE LIGHTS, PERHAPS A MATCH HEAD IN SIZE AT ARMS LE +2004-06-24,43.2122222,-77.4302778,Webster,NY,light,600,Dancing lights in the night sky over Webster, NY. +2004-06-24,33.5169444,-83.6961111,Newborn,GA,sphere,600,The silver object in Newton County. +2004-06-24,41.3558333,-82.2538889,South Amherst,OH,circle,60,bright white/yellow/red circle of light, moving towards me, then just "blinked out" +2004-06-24,35.9605556,-83.9208333,Knoxville,TN,diamond,60,A large bright mettalic red-orange diamond shaped craft appeared and dissapered making no noise. +2004-06-24,33.3480556,-112.6766667,Palo Verde,AZ,oval,1200,Witnessed and video taped 3 objects in Phoenix Sky by Palo Verde +2004-06-24,40.8,-96.6666667,Lincoln,NE,circle,120,I watched two dim lit objects in the night sky and one object flew straifgt and the second object zig zaged and stopped in mid flight,t +2005-06-24,39.0638889,-108.55,Grand Junction,CO,circle,10,Bright White Circled Craft passes over Grand Junction. +2005-06-24,33.5091667,-111.8983333,Scottsdale,AZ,triangle,10,3 SMALL LIGHTS IN A BACKWARD TRIANGLE PATTERN MOVING INUNISON THEN DISAPPEARING. +2005-06-24,35.9197222,-88.7588889,Milan,TN,sphere,1500,Large chrome sphere shaped craft seen in Tennessee +2005-06-24,47.3075,-122.2272222,Auburn,WA,circle,1800,Saw a small round metalic dot at very high altitude. It moved very slowly until out of sight. +2005-06-24,27.4463889,-80.3258333,Fort Pierce,FL,light,7200,Date:6/24/2005; City: Fort Pierce Florida USA; Shape: Dark object and Ligths; Duration: 1:30 minutes +2005-06-24,25.7902778,-80.1302778,Miami Beach,FL,chevron,600,SAW A CHEVRON UFO WHILE RIDING MY BICYCLE +2005-06-24,38.9805556,-76.9372222,College Park,MD,triangle,60,Triangular aircraft. +2005-06-24,39.7683333,-86.1580556,Indianapolis,IN,triangle,20,6/24/05: 5 lights forming a triangular shape in Indianapolis on Meridian Street +2005-06-24,39.7611111,-79.9816667,Bobtown,PA,triangle,900,fast moving point of light preceeds large slow triangle over Pennsylvania. +2005-06-24,43.1086111,-77.4877778,East Rochester,NY,circle,25,Objects in the sky over Rochester, NY +2005-06-24,41.1538889,-80.7016667,Girard,OH,triangle,37800,SMALL TRIANGULAR LIGHTS AT HIGH ALTITUDE FLARING BRIGHTLY THEN DIMMING OUT .AFTER FLYING SHORT DISTANCE +2005-06-24,35.265,-116.0736111,Baker,CA,triangle,300,giant triangle spotted of I-15 N to vegas between barstow and baker, Ca, june 24th at 11pm. +2006-06-24,39.7588889,-84.1916667,Dayton,OH,egg,600,Objects appeared over Dayton, Ohio, +2006-06-24,48.0841667,-121.9675,Granite Falls,WA,sphere,120,My doughter went in the Post Office to check our mail, I was sitting in the car waiting for her to come back while waiting I happend t +2006-06-24,38.9516667,-92.3338889,Columbia,MO,cylinder,30,UFO MISSOURI INVESTIGATORS REPORT: I was in the front yard of my home and saw a glistening aluminum fuselage. +2006-06-24,26.2030556,-98.2297222,Mcallen,TX,light,3600,My wife ,my mom,my son and I where outside in our patio talking and I saw a flash in the sky,then I looked the sky and I saw a bright s +2007-06-24,42.7597222,-105.3816667,Douglas,WY,light,1800,Bright orange lights appear in remote Wyoming area, twice! +2007-06-24,30.6647222,-97.9222222,Liberty Hill,TX,flash,120,long delay flashing light +2007-06-24,34.5794444,-118.1155556,Palmdale,CA,light,20,4 lights in sky do strange things. +2007-06-24,41.6719444,-73.0533333,Plymouth,CT,unknown,30,Slow moving star like object +2007-06-24,41.6436111,-83.4869444,Oregon,OH,oval,3600,Large oval shape, bright white and gray in color. +2007-06-24,38.2008333,-84.8733333,Frankfort,KY,triangle,30,It was my first sighting, and it scared me to death. +2007-06-24,38.2008333,-84.8733333,Frankfort,KY,triangle,15,2nd time in one night, please read this and the end… ((NUFORC Note: Possible sighting of +2007-06-24,37.8769444,-94.0211111,El Dorado Springs,MO,cigar,120,I have seen this same type of silver cigar shaped craft twice in a month. Both times it was going from left to right (south to north), +2007-06-24,32.7152778,-117.1563889,San Diego,CA,other,900,there is no explaination for this sighting,not of this world, defies logic. +2007-06-24,38.9516667,-92.3338889,Columbia,MO,cylinder,60,MISSOURI INVESTIGATORS GROUP Report: I was outside doing lawn work when I looked up and saw what looked like a plane. +2007-06-24,39.3955556,-80.3002778,Shinnston,WV,disk,180,silver disk hovering with 3 red nonblinking lights,,, watched for a minet and then it shot off +2007-06-24,41.2411111,-77.0013889,Williamsport,PA,fireball,120,Fireball in the sky over the Susquehanna River in Williamsport, PA. +2007-06-24,38.4530556,-85.6702778,Charlestown,IN,triangle,300,3 lights in a triangular shape glidding thru the sky +2007-06-24,33.6694444,-117.8222222,Irvine,CA,circle,300,...a flying circular disk with bright lights on the bottom outer rim. It was about 6-20 feet in diameter, spinning and hovering +2007-06-24,38.2919444,-122.4569444,Sonoma,CA,cross,720,Flickering, cross shaped, white vertical core light with blue center and extremely bright with glows off and out to sides, top & bottom +2007-06-24,33.8272222,-78.6430556,Cherry Grove Beach,SC,light,15,White light, stationary, then moved to south very very quickly and disappeared. +2007-06-24,27.3361111,-82.5308333,Sarasota,FL,light,120,white twin lights, sarasota florida, june 27, 2007 +2008-06-24,25.6788889,-80.3175,Kendall,FL,formation,10,Medium to low altitude 3 light balls of light no define formation, cloud cover heavy can not be confused with weather balloon or other +2008-06-24,48.4111111,-114.3366667,Whitefish,MT,light,15,A small traveling light in the sky increased in brightness and then faded away. +2008-06-24,29.7630556,-95.3630556,Houston,TX,oval,1200,Daylight object passes by moon and makes random movements. +2008-06-24,39.8027778,-105.0869444,Arvada,CO,other,600,Two objects seen (daytime) over Arvada Colorado +2008-06-24,36.0725,-79.7922222,Greensboro,NC,chevron,5,Chevron shaped UFO over skies of Greensboro, NC +2008-06-24,35.7330556,-81.3413889,Hickory,NC,light,20,Bright red light in the sky disappeared +2008-06-24,41.4569444,-72.8236111,Wallingford,CT,oval,3,green fireball shaped object +2008-06-24,41.595,-72.6458333,Cromwell,CT,light,10,blueish green ball of light fly in the sky below the clouds in a curved and crooked direction +2009-06-24,32.6152778,-93.2866667,Minden,LA,unknown,1200,lights seen in eastern sky in Minden, La., at conference centre at Caney Lake!!!!! +2009-06-24,32.9411111,-97.1338889,Southlake,TX,light,3600,UFO over North Texas 6/24/09, Star like object, video captured +2009-06-24,30.0969444,-95.6158333,Tomball,TX,light,1800,Light in nightsky +2009-06-24,29.8830556,-97.9411111,San Marcos,TX,triangle,30,Triangular low flying, slow traveling, low-toned dark object with steady green and red lights. +2009-06-24,32.4486111,-99.7327778,Abilene,TX,rectangle,1080,This happens to me all my life. +2009-06-24,42.8986111,-75.6405556,Morrisville,NY,other,30,Bright/fast moving object in the night sky +2009-06-24,42.725,-70.9916667,Georgetown,MA,unknown,60,Unknown Strobe Lights Changing Directions in Sky +2009-06-24,29.5847222,-81.2080556,Palm Coast,FL,formation,120,Two crafts with lights seen over Palm Coast, Florida. +2009-06-24,34.0522222,-118.2427778,Los Angeles,CA,light,360,Flashing Light above LA +2009-06-24,42.8986111,-75.6405556,Morrisville,NY,cigar,20,Large bright light in the sky and when it turned it appeared to be cigar shaped with a red light on its front. +2010-06-24,40.3116667,-75.3255556,Souderton,PA,sphere,5,Extremely bright blue circle +2010-06-24,44.5861111,-69.5513889,Benton,ME,circle,5,As I was sitting in my car I notice out of the corner of my eye a very large bright white light that seemed to be moving very fast acro +2010-06-24,47.6063889,-122.3308333,Seattle,WA,light,3600,Looked like a star but it rotated and signaled other white beams of light and just hanged there. ((NUFORC Note: Twinkling stars? PD)) +2010-06-24,40.2961111,-74.0513889,Eatontown,NJ,fireball,2,Bright, very brief streak of light on Rt 18 North Near Eatontown. ((NUFORC Note: Possible meteor?? PD)) +2010-06-24,40.5866667,-122.3905556,Redding,CA,light,300,Low flying ball of bright light - gliding across the sky. ((NUFORC Note: Sighting of International Space Station. PD)) +2010-06-24,39.5786111,-76.6158333,Monkton,MD,fireball,5,Green fireball to the North +2010-06-24,40.4086111,-75.9219444,Temple,PA,light,5,Strange quick moving light spotted over Temple, PA +2010-06-24,39.9147222,-77.905,Fort Loudon,PA,fireball,3,Green Fireball Sighted Over Franklin County PA +2010-06-24,41.6116667,-93.885,Waukee,IA,light,120,Bright Zig-Zagging Light over Des Moines, 6/24/10 +2010-06-24,36.4202778,-81.4736111,Jefferson,NC,light,60,Bright star-like orb moving in sky. +2010-06-24,47.0075,-122.9080556,Tumwater,WA,light,240,Venus-sized object transversing sky at wrong time to be iridium flare +2010-06-24,32.7922222,-80.1083333,Johns Island,SC,light,5,UFO sighting then fades away slowly over Johns Island +2011-06-24,30.5786111,-97.8527778,Leander,TX,unknown,60,6/24/2011 large rear red pulsating lights from a flying craft. +2011-06-24,38.9697222,-76.8802778,New Carrollton,MD,other,2,Set of sky flashes lit up entire sky with out any radar anomaly or storm. +2011-06-24,36.3486111,-82.2108333,Elizabethton,TN,light,300,12- 15 orange colored lights moving across the sky,in elizabethton, tn, numerous unrelated witnessess +2011-06-24,42.2711111,-89.0938889,Rockford,IL,other,3,Very large object glides across opening in clouds for a brief view. +2011-06-24,47.9791667,-122.2008333,Everett,WA,rectangle,15,Observed a stationary cube-shaped object hovering at the edge of rain clouds. +2011-06-24,36.6438889,-116.3994444,Amargosa Valley,NV,other,1200,Terror +2011-06-24,37.4791667,-82.5188889,Pikeville,KY,changing,180,Object seen in sky above Pikeville. Appeared to change shape several times +2011-06-24,42.8741667,-77.2883333,Canandaigua,NY,light,360,A small fleet of UAP flying over a residential street. +2011-06-24,31.5622222,-89.4975,Seminary,MS,circle,600,strange solid circular lights that floated slowly and then disappeared +2011-06-24,47.7086111,-91.9444444,Babbitt,MN,circle,600,Bright, fast moving "star" heading east over Birch Lake RV Park in Babbitt, MN. +2011-06-24,38.7072222,-121.28,Citrus Heights,CA,formation,6,3 Translucent gray equidistant circles connected by straight bars +2012-06-24,41.2052778,-76.0052778,Nanticoke,PA,light,120,10+ red-orange orbs in sky +2012-06-24,37.2152778,-93.2980556,Springfield,MO,light,120,Two yellow orbs of light flying in formation. +2012-06-24,43.0388889,-87.9063889,Milwaukee,WI,rectangle,600,5 glowing objects +2012-06-24,38.595,-90.5461111,Ballwin,MO,circle,600,At about 1:00am CDT on June 24th 2012 in Ballwin, Missouri myself and one other witness spotted 4-5 what appeared to be glowing/flaming +2012-06-24,36.0955556,-79.4380556,Burlington,NC,unknown,300,Red orbs in night sky in formation no sound. ((NUFORC Note: Date is flawed. Hoax?? PD)) +2012-06-24,38.595,-90.5461111,Ballwin,MO,light,120,Saw three orange colored fireball type lights to the east forming somewhat of triangle, 2 stayed east 1 went up to NW direction +2012-06-24,35.6180556,-118.4722222,Lake Isabella (Kern River Valley),CA,light,60,Big bright star dropped 3 little lights then flew away. +2012-06-24,37.614444399999996,-93.4102778,Bolivar,MO,disk,900,Multiple lights and Disc shaped craft spotted south of Bolivar. +2012-06-24,42.5583333,-70.8805556,Beverly,MA,light,5400,2 bright white lights hovering over north shore area of boston +2012-06-24,35.4427778,-84.5930556,Athens,TN,oval,60,Amazing bright light that slowly moved a crossed the sky stopped then went back the way it came. +2012-06-24,43.8013889,-91.2394444,La Crosse,WI,unknown,300,Bright Orange Lights +2012-06-24,46.9811111,-123.8880556,Hoquiam,WA,fireball,600,UFO Fireballs seen in Hoquiam Washington by local and Police department +2012-06-24,41.7005556,-93.4619444,Bondurant,IA,cigar,240,Large cigar shaped object with lights in sequence from left to right then right to left traveling at high speed in a straight line +2012-06-24,33.32,-87.9027778,Gordo,AL,light,120,Object I saw was very high altitude and silent and it was a constant light going across the sky. +2012-06-24,37.8044444,-122.2697222,Oakland,CA,changing,600,Dark undulating circular blob over Oakland +2012-06-24,35.9827778,-86.5186111,Smyrna,TN,light,180,Stationary light looked like a star or planet moved across the sky and turned into what looked like a cigar shaped craft +2012-06-24,39.535,-119.7516667,Sparks,NV,sphere,600,ROUND METALIC PULSATING BRIGHT OBJECT OVER WINGFIELD SPRINGS (SPARKS) THAT DISAPPEARED THEN REAPPEARED IN DIFFERENT SPOT +2012-06-24,38.8466667,-91.9477778,Fulton,MO,light,900,Odd white lights moving at different speeds. +2012-06-24,40.4416667,-74.1302778,Keansburg,NJ,circle,300,Light hovering over Raritan Bay +2012-06-24,37.3058333,-89.5180556,Cape Girardeau,MO,light,30,Bright green/yellow light traveling nw to se about the speed of passenger jet, but somewhat lower than those. +2012-06-24,41.6022222,-72.9872222,Wolcott,CT,light,60,Red object over NH County, CT +2012-06-24,37.5483333,-121.9875,Fremont,CA,light,10,Two sightings in two days both different types. +2012-06-24,38.7838889,-90.4811111,St. Charles,MO,circle,25,Reddish Orange Glow, no sound 4 witneses +2012-06-24,36.9922222,-91.9697222,Willow Springs,MO,light,30,3 different white lights were seen, all faded then disappeared. no sound was heard. +2012-06-24,35.4913889,-92.0311111,Heber Springs,AR,light,5,Brightly lit object, no sound,disappeared over our home. +2012-06-24,42.2411111,-83.6130556,Ypsilanti,MI,triangle,900,Triangle shaped craft traveling East over Ypsilanti +2012-06-24,41.2458333,-75.8816667,Wilkes-Barre,PA,fireball,120,Two sphere like lights, flickering like a flame off in the distance, flew across the sky. They started a sizeable distance apart from o +2012-06-24,29.7630556,-95.3630556,Houston,TX,teardrop,2,Falling teardrop-looking light of different colors. +2012-06-24,37.7741667,-87.1133333,Owensboro,KY,sphere,120,Orange, bright, round object flying just above tree line... +2012-06-24,47.3552778,-123.0997222,Union,WA,unknown,240,6 red lighted objects seen flying over Hood Canal near Alderbrook Resort in Union WA. +2012-06-24,40.1536111,-82.6852778,Johnstown,OH,fireball,120,Bright Orange Ball of Light appeared suddenly +2012-06-24,42.2916667,-85.5872222,Kalamazoo,MI,other,45,My friend and I were playing catch(baseball) in the street when I turned around to look at the stars and across the trees line came a s +2013-06-24,44.4169444,-94.9252778,Morgan,MN,fireball,5,Bright flash in night sky turns to visible extremely bright fireball/craft. +2013-06-24,36.0725,-79.7922222,Greensboro,NC,triangle,900,3 triangle figures floated quietly across the sky at about 100 feet. The one in the front looked like a arrow it was the biggest it had +2013-06-24,36.6222222,-81.1511111,Independence,VA,circle,60,Blue colored disc shaped object moving quickly from west to east. See from New River in Grayson County, Virginia +2013-06-24,26.5216667,-82.1894444,Captiva,FL,light,7200,I and a friend first saw 2 UFOs at her house, and when I got home a few minutes later I saw the same two, and then eventually 7. +2013-06-24,39.1619444,-84.4569444,Cincinnati,OH,fireball,1200,6 orange fireball craft from south , then went east. +2013-06-24,35.4325,-93.6152778,Hartman,AR,sphere,180,Speeding ball of light slows way down changes direction and disappears in clear sky. ((NUFORC Note: ISS sighting. PD)) +2013-06-24,39.72,-84.325,Liberty,OH,sphere,60,Quick moving pulsating sphere. +2013-06-24,43.065,-124.1377778,Myrtle Point,OR,oval,10,CRAFT CAME IN FROM OCEAN AT FAST PACE. CRAFT MADE NO NOISE I HAD CAMERA IN UTILITY ROOM 10 FEET AWAY GRABBED AND SHOT PICTURE. THIS CRA +2013-06-24,30.7436111,-98.0552778,Bertram,TX,light,180,Round brightly lit object moving slow and low. +2013-06-24,46.1291667,-107.5544444,Custer,MT,light,30,Yellow fast moving object, west of Custer, MT / Did it land? +1954-06-25,31.8108333,-99.1316667,Thrifty,TX,circle,45,6-25-1954, Red circle of light in Thrifty, Texas. USA. +1962-06-25,41.1627778,-73.8619444,Ossining,NY,unknown,900,refueling in summer 62 ossining ny +1965-06-25,45.5236111,-122.675,Portland,OR,disk,120,The object was stationary. +1965-06-25,39.9522222,-75.1641667,Philadelphia,PA,cigar,600,A cylinder shaped vessel decended then hovered. It was the size of a bus but larger in diameter. The craft had no wings, windows, tail, +1966-06-25,44.0805556,-103.2305556,Rapid City (Ellsworth Afb),SD,disk,600,UFOs visited our Minuteman ICBMS during the summer of 1966 and I was there. +1966-06-25,44.0805556,-103.2305556,Rapid City (Ellsworth Afb),SD,unknown,345600,I KNOW THIS INCIDENT HAPPENED, AND I BELIEVE HE IS TELLING IT THE WAY HE KNOW'S IT. +1968-06-25,21.3069444,-157.8583333,Honolulu,HI,circle,480,it was a night that was extremly dark, my friend mark and I were playing army, and I rolled under neith a parked car, and rolled back o +1969-06-25,41.5066667,-90.515,Moline,IL,unknown,900,True Storys of UFO'S 1968 LIGHT & 2ND STORY UFO WAS DULL SILVER IN COLOR IN 1977, 1978񫹻 +1970-06-25,41.7002778,-73.9213889,Poughkeepsie,NY,disk,240,Approximately at 15:00 my friend spotted object in sky. He said to me "hey there is one of those UFO's they talk about". I thought he +1972-06-25,42.6525,-73.7566667,Albany,NY,cigar,10,Sighting report: Cigar shapped object over the Hudson River, Albany N.Y. 30 years or so ago +1973-06-25,40.6186111,-80.5775,East Liverpool,OH,sphere,30,3-D ufo sighted in 1973 and finally someone to share it with. +1974-06-25,42.4030556,-86.2736111,South Haven,MI,disk,900,Small craft docked on the side of a much larger craft. Within 200 feet of both. +1976-06-25,33.4483333,-112.0733333,Phoenix,AZ,disk,37800,viewed saucer manuveurs and air force search for extended period of time from close range +1976-06-25,41.0997222,-80.6497222,Youngstown,OH,disk,120,in late june of 76 a large disk flew n over my house the turned west a vanashed. +1980-06-25,42.1630556,-123.6469444,Cave Junction (Outside Of),OR,unknown,300,Men In Black Encounter in Oregon +1982-06-25,39.4666667,-87.4138889,Terre Haute,IN,light,60,In June, I witnessed a bight object on a clear night moving east to west, then vanish out of sight in 3 seconds +1986-06-25,47.2152778,-123.0994444,Shelton,WA,circle,60,Gigantic Kingdome shaped craft with orb over front yard +1987-06-25,36.2083333,-115.9830556,Pahrump,NV,other,1200,Unknown Cloud Around Object and changed color then vanished +1991-06-25,48.3613889,-119.5822222,Okanogan,WA,disk,180,Silver disk sighted hovering & moving slowly 0.5-1.0 mile above the ground in the area of Okanogan, WA. +1992-06-25,34.1658333,-81.35,Chapin,SC,other,300,Two balls of light beneath the tree canopy swoop over my car and vanish. +1992-06-25,30.5888889,-98.3836111,Granite Shoals,TX,disk,300,object was about 6 feet in diameter. the center of the saucer stood still as the top and the bottom of it rotated in a very fast motio +1993-06-25,42.4858333,-83.1052778,Madison Heights,MI,cylinder,300,Illuminated cylindrical craft hovers slowly and silently over residences..... +1996-06-25,38.5580556,-91.0119444,Washington,MO,diamond,240,Triangle/Diamond with white lights, hovering and rotating around axis +1997-06-25,33.4483333,-112.0733333,Phoenix,AZ,chevron,1200,An Alpha-shaped craft with a large sphere in the middle of the arms appeared at a high altitude and maneuvered for 15 minutes. +1998-06-25,41.4994444,-81.6955556,Cleveland,OH,sphere,420,eight perfectly round balloons passed over head and dissapeared into a cloud +1998-06-25,38.5733333,-109.5491667,Moab (Near, In Arches National Park),UT,light,420,We were on vacation in Arches National Park, watching a satellite and shooting stars on an exceptionally dark, clear night. Then, in t +1998-06-25,35.198055600000004,-111.6505556,Flagstaff,AZ,sphere,120,NE of Winona 3 miles Arizona at an archaeological site called Ridge Ruin. Spheres, glowing red to yellow settle down, move above site, +1998-06-25,43.7486111,-87.9769444,Plymouth,WI,circle,60,I was on the deck behind my house and i saw the craft. it flew across the sky and disappeared over the horizon. +1998-06-25,32.3122222,-106.7777778,Las Cruces,NM,circle,180,My father and i were driving home from El Paso, Texas, to Las Cruses, New Mexico. Half way to las cruses,(which is about a 30 min. driv +1999-06-25,40.4483333,-122.2966667,Anderson,CA,egg,5,I saw what appeared to be a white shooting star (no tail), 4x larger than the brightest star in the sky, moving very fast. It suddenly +1999-06-25,41.885,-87.7844444,Oak Park,IL,other,2700,2 unidentidfied objects moving east-west. The first with 3 lobes, the second a rectanglular object with light at "front". +1999-06-25,43.4666667,-112.0333333,Idaho Falls,ID,unknown,10,3 lights above a well known park +1999-06-25,34.7302778,-86.5861111,Huntsville,AL,oval,30,A oval shaped object that changed shapes and vanished in thin air. +2000-06-25,32.7833333,-96.8,Dallas,TX,diamond,45,Object traveling south suddenly makes an immediate change of direction 45 degrees to the left, speed increased threefold and disappears +2000-06-25,41.7797222,-71.4377778,Cranston,RI,unknown,120,((HOAX?? STUDENT REPORT)) Cranston ri UFO sighting in sports field at Cranston West High School. +2000-06-25,45.4944444,-122.8658333,Aloha,OR,cigar,540,A tube like object slowly moving south at a steady speed until it disapeared. +2000-06-25,40.7141667,-74.0063889,New York City (Flushing/Meadel Park/Queens ),NY,oval,1800,that day like around 19:30 hrs me and my family observed this object approximately north east of la guardia airport, i saw it first, th +2000-06-25,33.7877778,-117.8522222,Orange,CA,light,15,Two objects flying in formation over Orange County +2000-06-25,40.7608333,-111.8902778,Salt Lake City,UT,light,120,Two white lights, blinking intermittently every 5-6 seconds. After 1 minute, they became dimmer, until we could no longer see them. +2001-06-25,48.4213889,-122.3327778,Mount Vernon,WA,triangle,180,What is out there? +2001-06-25,47.6063889,-122.3308333,Seattle,WA,sphere,180,Pulsating sphere hovers and then disappears +2001-06-25,32.8138889,-96.9486111,Irving,TX,unknown,300,For the past few nights ( June 25 - 27 ) at around 7:30pm each night, I observed 3 aircraft flying in the same path about a minute apar +2001-06-25,39.8744444,-76.8661111,Spring Grove,PA,other,120,At around 7:55pm I was setting up my 35mm camera to take photos of the night sky."I'm an amature astronomer". When I saw these two boom +2001-06-25,38.010555600000004,-77.9088889,Mineral,VA,light,15,This was a very large round white light with hazy light emitted from the left of it. It appeared to be coming towards us. +2001-06-25,26.9294444,-82.0455556,Punta Gorda,FL,light,60,Bright light appears out of nowhere, diappears leaving vapor trails +2001-06-25,28.3858333,-80.7422222,Cocoa,FL,other,60,large cylinder shaped craft in cloud vanishes. +2001-06-25,38.9516667,-92.3338889,Columbia,MO,circle,7,Something that apeared to be a star moved and disapeared towards outterspace. +2001-06-25,25.7738889,-80.1938889,Miami,FL,cone,300,Foggy Cone +2001-06-25,29.1869444,-82.1402778,Ocala,FL,triangle,15,triangular shape with aura of lights +2001-06-25,28.5380556,-81.3794444,Orlando,FL,other,120,A CLOUD WITH A LIGHT INSIDE THAT DISSIPATED +2001-06-25,32.0833333,-81.1,Savannah,GA,unknown,120,Slow moving object (like a helicopter) - bean of light coming out of bottom - disappeared suddenly +2001-06-25,39.9586111,-75.9197222,Parkesburg,PA,light,180,strange object in sky flying with no noise +2001-06-25,26.9294444,-82.0455556,Punta Gorda,FL,light,300,Intense white light surrounded by a mist over Punta Gorda Florida +2001-06-25,27.3361111,-82.5308333,Sarasota,FL,triangle,20,Evening sky was dark and clear with bright stars....Object approached slowly from the EAST...a large triangular shape object appearing +2001-06-25,26.7052778,-80.0366667,West Palm Beach,FL,light,300,Spotlight within its own generated haze searches around,locks onto us with the lightbeam, then blasts into deep space +2001-06-25,27.495,-82.7111111,Holmes Beach,FL,light,3,Blue and red light starts off very bright and then disappears +2001-06-25,26.6402778,-81.8725,Fort Myers,FL,cone,120,My husband and were taking a swim in our community pool after dark when we looked up and saw a object that looked like an upside down c +2001-06-25,29.2105556,-81.0230556,Daytona Beach,FL,unknown,120,Stationary LIGHT and CLOUD observed in Daytona Beach +2001-06-25,31.8055556,-81.4308333,Midway,GA,other,180,DID ANYONE SEE THIS +2002-06-25,44.8508333,-93.7866667,Waconia,MN,light,30,I saw an alien +2002-06-25,45.5236111,-122.675,Portland,OR,cigar,600,The objects I saw were beyond our atmosphere. The size of the cigar object had to be huge for me to see it at that distance. +2002-06-25,39.2611111,-81.6719444,Washington County,WV,circle,120,A circle light in the Sky +2002-06-25,40.0455556,-86.0086111,Noblesville,IN,cigar,2700,Cigar shaped object with red beam hovers for 45min during storm +2002-06-25,31.8541667,-110.9930556,Green Valley,AZ,rectangle,300,This was not the first night I saw these lights so I'll start at the begining. Last month sitting on my porch I looked up and there was +2002-06-25,44.551944399999996,-69.6322222,Waterville,ME,light,300,On the evening that my son and I saw what I could not explain,we were sitting on my front steps looking towards the east.my son had got +2002-06-25,41.3775,-71.8277778,Westerly,RI,light,300,traveling at fast speeds as high as the stars on a clear night then gone out of sight +2002-06-25,45.5236111,-122.675,Portland,OR,circle,900,Object appeared in the low horizon and it looked to me to be venus, but then was moving east and rising slightly untill it was about 4 +2002-06-25,47.0980556,-122.2030556,Orting,WA,other,20,Object (satellite?) displayed short, intense increase in magnitude before vanishing ( near Ursa Major). +2002-06-25,46.9755556,-123.8144444,Aberdeen,WA,circle,15,STAR LIKE OBJECT MOVING QUICKLY FROM SW TO NE +2003-06-25,64.895,-163.6763889,Council,AK,oval,15,Multiple sightings in Council Alaska possible abuctions of two known persons in the 1980's (1) and 1990's(1)... between August and Febr +2003-06-25,37.3908333,-88.7469444,Grantsburg,IL,other,1800,Large rectanble of blue light, window perhaps at the front of some craft with brilliant round ball of light zipping around it. +2003-06-25,48.1183333,-123.4294444,Port Angeles,WA,light,300,Alot of lights in the ski of difrent sise's. +2003-06-25,39.5994444,-110.81,Price,UT,circle,120,My cousin and I were headed home on the freeway around 2:00 a.m. I was driving and talking to her. I turned to look at her, she was si +2003-06-25,33.5225,-117.7066667,Laguna Niguel,CA,disk,1200,Gray-silver disk moving to the East-SE slowly above tree level rotating from vertical to horizontal +2003-06-25,38.0044444,-122.2977778,Pinole,CA,formation,60,3 black circles flying in a triangle formation toward the North in the middle of the afternoon. +2004-06-25,47.0380556,-122.8994444,Olympia,WA,oval,3,at approx. 3 am while watching the night sky with my wife i saw several faint blinks of light out of the corner of my eye and when i sh +2004-06-25,30.5080556,-97.6786111,Round Rock,TX,fireball,300,Round Rock,Texas pool party turns into local mystery! +2004-06-25,43.0388889,-87.9063889,Milwaukee,WI,cigar,4,white, cigar or cylinder shaped object against the bright blue Northwest sky +2004-06-25,47.6063889,-122.3308333,Seattle,WA,disk,600,Circular,Flat objects Emittng bright orange yellow glow. Smoke coming out of a hole in the side of both crafts. +2004-06-25,45.5236111,-122.675,Portland,OR,fireball,120,A bright red object flying in the sky above our heads just above the trees +2005-06-25,33.1975,-96.615,Mckinney,TX,light,2,Fast Moving Green Light +2005-06-25,34.8525,-82.3941667,Greenville,SC,unknown,900,Third kind of encounter? ((NUFORC Note: Witness elects to remain totally anonymous. PD)) +2005-06-25,34.2483333,-117.1883333,Lake Arrowhead,CA,oval,180,large oval shaped object surrounded by lights seen over San Bernardino mountain ridge +2005-06-25,42.0852778,-83.6825,Milan,MI,disk,1800,Rotating object, looked at first like a star. Rotating lights of red, white, green. ((NUFORC Note: Twinkling star?? PD)) +2005-06-25,35.6697222,-81.2216667,Newton,NC,egg,240,Small Silver Floating Eggs seen in NC +2005-06-25,47.8211111,-122.3138889,Lynnwood,WA,sphere,600,Observed 3 spherical shaped objects in the sky above our heads. One moved slowly away to the south. +2005-06-25,37.2152778,-93.2980556,Springfield,MO,changing,600,Circular unidentified object directly above our apartment complex +2005-06-25,37.2152778,-93.2980556,Springfield,MO,other,240,My son laid on our pick nick table and pointed above our apartment complex, and asked,"What is that, is that a hot air balloon? This i +2005-06-25,32.7252778,-114.6236111,Yuma,AZ,triangle,60,Massive triangle reported to Yuma county Sherriff office over Yuma, AZ. flying south to Mexico +2005-06-25,40.8533333,-73.4119444,Huntington Station,NY,sphere,300,Object looked like a firery wheather balloon. +2005-06-25,42.9047222,-77.6116667,Lima,NY,unknown,3600,These are my sky observations for June 25-27, 2005 using 8x binoculars. There will be more. +2005-06-25,38.6155556,-95.2675,Ottawa,KS,light,3,The light was moving west to east in an eratic manner,with no sound. +2005-06-26,36.3358333,-94.4605556,Decatur,AR,changing,300,3 SHAPES SEEN MOVINGATHIGHOFSPEEDNORTHEAST +2006-06-25,40.0377778,-76.3058333,Lancaster,PA,unknown,6,Green/Blue light in the sky - Very low and very fast with NO noise +2006-06-25,42.2575,-83.2111111,Allen Park,MI,other,60,it was huge just above the trees black with windows & a bright light that lit up the sky +2006-06-25,34.5361111,-117.2902778,Victorville,CA,egg,900,Blue bugish oval with insect like undercarage and leaning one side top knot +2006-06-25,37.8144444,-82.8072222,Paintsville,KY,cigar,120,Ciguar shaped UFO seen over Paintsville,Ky. +2006-06-25,36.8352778,-76.2986111,Portsmouth,VA,fireball,120,A large white light in the sky traveling horizontally that appeared to be dropping fireballs +2006-06-25,42.3458333,-71.5527778,Marlborough,MA,light,3,Bright round object at low altitude that proceeded east and then vertical out of sight within 2-3 seconds of eye contact. +2006-06-25,27.4463889,-80.3258333,Fort Pierce,FL,sphere,5,UFO appears twice consecutively at almost same exact time. +2007-06-25,41.6638889,-83.5552778,Toledo,OH,disk,5400,Unidentified Object Sighted +2007-06-25,32.4638889,-86.4597222,Prattville,AL,triangle,10,Dark triangular craft. Was flying slow, as well as low. No lights. Strange, loud, pulsating, humming sound. +2007-06-25,44.1025,-85.1469444,Marion,MI,light,900,Two lights in the sky at the same height; one to the east and one to the west. ((NUFORC Note: Venus and Jupiter? PD)) +2007-06-25,33.4147222,-111.9086111,Tempe,AZ,changing,1800,Star like objects flickering and flying very fast in the day time. No sound. +2007-06-25,38.6272222,-90.1977778,St. Louis,MO,unknown,1200,Black floating objects flying over St. Louis, Mo. +2007-06-25,36.2077778,-119.3463889,Tulare,CA,rectangle,720,Flashing strobe lights moving and stopping midair, changing direction quickly and changing altitude. +2007-06-25,27.4986111,-82.575,Bradenton,FL,light,20,Two star like lights, one moving towards the other, dissappears,now that I look again, the other one is gone too. +2007-06-25,32.7152778,-117.1563889,San Diego,CA,triangle,300,one night my friend I saw a grey triangular shaped object and didnt know what to say eachother =0 +2007-06-25,38.2325,-122.6355556,Petaluma,CA,unknown,10,As we were driving south on hwy. 101 through petaluma, all 3 of us in our vehicle noticed a bright light traveling towards the earth. U +2007-06-25,35.0525,-78.8786111,Fayetteville,NC,cigar,10,I was driving up to Raleigh, NC on I-95 N from Fayetteville, NC to visit some friends. It was about 10:30 at night. I am pretty sure it +2007-06-25,33.5016667,-117.6616667,San Juan Capistrano,CA,disk,20,((HOAX)) Gray Type A Alien form in metallic saucer with red glow and yellow beams. +2008-06-25,40.7888889,-76.5591667,Shamokin,PA,other,900,Reddish shaped object seen in Shamokin Pa 8 people are witness to what they saw +2008-06-25,33.3702778,-112.5830556,Buckeye,AZ,unknown,300,3 shiny object in sky. One still the other two moved to the right and left. +2008-06-25,42.0866667,-71.475,Bellingham,MA,oval,30,Oval beige object with vibrating yellowish-white light in center. +2008-06-25,36.4197222,-82.4766667,Gray,TN,triangle,600,((HOAX??)) bright red and white lights over gray,tn. +2009-06-25,46.8722222,-113.9930556,Missoula,MT,light,14400,Bright orbs hover for hours. +2009-06-25,46.8722222,-113.9930556,Missoula,MT,light,14400,Bright white orb hovers for over 4 hours. ((NUFORC Note: Probable star. PD)) +2009-06-25,34.4208333,-119.6972222,Santa Barbara,CA,changing,600,Black object tumbling and moving in sky over Santa Barbara, CA on June 25, 2009 7:15 pm +2009-06-25,34.9888889,-90.0125,Southaven,MS,disk,600,Disc Shape Hovering in Southaven MS +2009-06-25,44.7825,-69.3838889,Pittsfield,ME,other,14400,Bright dull lights over treeline. +2009-06-25,42.7761111,-71.0777778,Haverhill,MA,other,300,The UFO appeared straight overhead and was a hexagon. +2010-06-25,28.3644444,-82.1961111,Dade City,FL,teardrop,2,White-Green, Teardrop shaped light falling from the sky at approx 12:20 am in Dade City, FL. ((NUFORC Note: Meteor?? PD)) +2010-06-25,36.175,-115.1363889,Las Vegas,NV,flash,10,Disc shaped object fashing red light in s spinning motion like 10 flashes per sec. +2010-06-25,28.1875,-82.7397222,Holiday,FL,other,180,An exploding star up in the sky over West central Florida. +2010-06-25,34.5794444,-118.1155556,Palmdale,CA,light,180,white lights moving towards Mojave, Northern direction. No marker lights visiable with binoculars. +2010-06-25,36.9902778,-86.4436111,Bowling Green,KY,disk,300,Flying disk-shaped object seen traveling in a straight line +2010-06-25,47.9791667,-122.2008333,Everett,WA,light,300,Red Glowing Light viewed in Western Washington +2010-06-25,39.5069444,-84.7452778,Oxford,OH,fireball,300,Strange little fireball during International Space Station overpass +2010-06-25,41.7533333,-86.1108333,Granger,IN,light,60,Bright red light over Granger, IN +2010-06-25,41.5755556,-72.3325,Colchester,CT,light,120,Light beam appeared in vehicle from undetermined source. +2010-06-25,42.1397222,-71.5166667,Milford,MA,triangle,40,Triangle type craf with lights over Milford +2010-06-25,40.4405556,-79.9961111,Pittsburgh,PA,disk,120,Medium sized circular object moving in a circular fashion while flashing vigorously. +2010-06-25,43.1008333,-75.2330556,Utica,NY,light,60,Fast moving light seen from passenger jet over upstate NY +2010-06-25,48.7597222,-122.4869444,Bellingham,WA,light,60,Bright white light, Flying w to e. no change in direction no red or green lights no sound., very fast, very low, bright. if i was to sa +2011-06-25,39.5586111,-111.8611111,Levan (Yuba State Park),UT,light,5,Bright light flying out of our atmosphere above Yuba Lake, UT. +2011-06-25,35.4675,-97.5161111,Oklahoma City,OK,circle,600,((HOAX??)) I saw a circular object spinning in the stars. ((NUFORC Note: We are uncertain whether the report is a serious one. PD)) +2011-06-25,44.2113889,-114.945,Stanley,ID,light,1200,3 alternating color, fast moving lights over Stanley Lake in Stanley, Idaho. +2011-06-25,30.6325,-97.6769444,Georgetown,TX,changing,172800,Strange crafts to Orbs here on a daily basis. +2011-06-25,46.6022222,-120.5047222,Yakima,WA,light,300,Bright starlike object that moved position in a small area of sky seen north of Yakima during middle of day +2011-06-25,43.3077778,-113.9438889,Carey (15 Miles East Of; On Hwy 20),ID,rectangle,180,Rectangular object observed for three minutes, then it instantly vanished. +2011-06-25,42.8666667,-88.3333333,Mukwonago,WI,unknown,600,Five to Six bright orange colored lights with no sound seen at 2100 time over Mukwonago, Wisconsin. +2011-06-25,43.2561111,-86.2675,North Muskegon,MI,light,240,Two orange lights spotted one after the other over Muskegon Michigan +2011-06-25,35.0072222,-80.9452778,Fort Mill,SC,light,120,Series of 6 silent fiery-orange lights moving across night sky +2011-06-25,35.2619444,-81.1875,Gastonia,NC,light,180,Saw 2 low flying objects with bright lights, no noise.. +2011-06-25,34.0922222,-117.4341667,Fontana,CA,other,240,06/25/2011 A brief sighting of what appeared to be an offset horse shoe with 2 bright white lights. +2011-06-25,47.1041667,-122.4333333,Spanaway,WA,light,10,shooting star like object that gets really close and moves up and down then shoots off without a noise! +2011-06-25,38.6272222,-90.1977778,St. Louis,MO,triangle,30,I was taking a few pictures of an approaching storm front on June 25, 2011, South St. Louis County, Missouri, facing west. In the lower +2011-06-25,34.3886111,-103.0508333,Texico,NM,light,150,Possible fighter jet shooting at UFO +2011-06-25,47.1041667,-122.4333333,Spanaway,WA,triangle,10,v shaped object near mcchord afb +2011-06-25,32.948055600000004,-96.7294444,Richardson,TX,triangle,2700,Triangle Craft With Intemittent White Green and Red lights +2012-06-25,34.9577778,-90.1516667,Walls,MS,triangle,2400,Light Signals to music. Ship. Creature. +2012-06-25,35.8358333,-81.9891667,North Cove,NC,oval,10,Roundish silver object traveling high rate of speed in NC +2012-06-25,35.3619444,-86.2094444,Tullahoma,TN,light,1200,While fishing on Normandy Lake in Tullahom Tn, my son and I noticed something glowing in the sky high above us. We turned off our blac +2012-06-25,33.8641667,-111.4669444,Sunflower,AZ,cigar,8,High Speed Cigar shaped object along Mountain Range near SunFlower Arizona. +2012-06-25,35.2919444,-93.7297222,Paris,AR,disk,180,Bright light and gray aircraft flying low and quietly on a summer night. +2012-06-25,38.9494444,-84.8538889,Rising Sun,IN,light,30,UFO by Antares +2012-06-25,42.6827778,-89.0186111,Janesville,WI,cigar,240,Bright white UFO, in the shape of a cigar or disc, observed over Janesville, WI at approx. 11:34-11:38 on June 25th, 2012. +2012-06-25,40.4277778,-74.4163889,East Brunswick,NJ,other,300,Stange dark winged objects circling over Rt 18. +2012-06-25,38.3363889,-75.0852778,Ocean City,MD,sphere,600,Orange/Red Fire Ball Sighting at Ocean City Maryland +2012-06-25,33.7797222,-116.4644444,Cathedral City,CA,rectangle,600,We saw bright lights in the night sky that shined right at us and our quick exit felt like it saved us. 500 Lights On Object0: Yes +2012-06-25,40.1797222,-76.1791667,Ephrata,PA,fireball,60,Ball of light hovers above hillside slowly climbs to cloud height hovers again then disappears. +2012-06-25,30.5755556,-90.9530556,Watson,LA,fireball,90,Traveling east on 1019 two orange fireball shapes went slow across road , going upward Then 3rd one traveling same direction beginning +2012-06-25,38.9180556,-78.1947222,Front Royal,VA,teardrop,30,Comet like object with attached long white light trailing behind it, streaking across sky +2012-06-25,37.0297222,-76.3455556,Hampton,VA,circle,180,Fast traveling bright circular light in Hampton skies 6-25-12 +2012-06-25,41.1413889,-73.3583333,Westport,CT,light,180,Low, silent procession of orange 15-20 lights slowly flying over Westport to over Long Island Sound +2012-06-25,43.0972222,-89.5041667,Middleton,WI,light,2,Bright light traveling east to west at a fast speed +2012-06-25,41.6638889,-83.5552778,Toledo,OH,light,120,2 Orange lights moving South +2012-06-25,35.0238889,-85.0238889,Apison,TN,light,60,Spotted one object that looked like a bright star in the clear night sky. It was moving N and then took a slight left heading NW. Objec +2012-06-25,41.395,-82.5552778,Huron,OH,light,1800,Five Red lights in linear formation seen over Lake Erie. +2012-06-25,41.2458333,-75.8816667,Wilkes-Barre,PA,light,900,Circles of light rotating in two circular patterns +2013-06-25,38.2541667,-85.7594444,Louisville,KY,oval,15,Driving home from work, about midnight going down highway 71southbound. the weather was clear, moon was visible, normal air traffic fl +2013-06-25,44.0272222,-89.8877778,Arkdale,WI,flash,25,Satellite type UFO that flashed bright white several times across the sky +2013-06-25,37.48,-86.2938889,Leitchfield,KY,other,30,Low flying tubular light bar sighted in Kentucky early morning sky. +2013-06-25,36.1658333,-86.7844444,Nashville,TN,formation,3600,Above is what I heard over a ham radio. +2013-06-25,35.4872222,-80.6219444,Kannapolis,NC,circle,60,The black dot stayed on a steady course. +2013-06-25,37.4419444,-122.1419444,Palo Alto,CA,cylinder,600,Silver cylindrical shape with 4 smaller cylinders around the center hovering over the oval area of Stanford Univ campus. +2013-06-25,40.7519444,-80.3194444,Beaver Falls,PA,light,1,We were standing in front of our house when my friend suddenly seen a yellow orange orb light move slanted toward the ground from above +2013-06-25,35.2305556,-89.7402778,Lakeland,TN,circle,30,Ball of light or fire over East Shelby County +2013-06-25,33.7475,-116.9711111,Hemet,CA,fireball,120,Six red lights, each looked to be a round ring of lights, possibly solid, moving apparently west in the s.e. sky low on the horizon. Th +2013-06-25,30.4188889,-97.0113889,Lexington (West Of),TX,light,300,Star-like light followed by normal air-craft +2013-06-25,36.175,-115.1363889,Las Vegas,NV,light,600,Huge bright lights shaped like actual stars. +2013-06-25,25.7738889,-80.1938889,Miami,FL,light,600,On my way home from work heading north on the Florida turnpike from homestead I spot about 10 objects in the air that had red lights on +2013-06-25,26.3097222,-80.2375,Parkland,FL,sphere,90,Bright orange spheres move silently across south Florida sky for 90 seconds before disappearing. +2013-06-25,40.7569444,-72.9397222,Bellport,NY,circle,60,Round glowing orange ball craft hovering at a slow speed. +2013-06-25,39.515,-84.3983333,Middletown,OH,changing,90,Orange light witnessed by 2 residents of Middletown, Ohio that split into 4 objects. +2013-06-25,38.8902778,-77.0844444,Arlington,VA,fireball,600,Orange sphere type object moving in a zig-zag type pattern over Roslyn, Virginia. Lost power when it was hovering. +2013-06-25,44.6941667,-75.4866667,Ogdensburg,NY,light,900,Hazy light in sky. +2013-06-25,41.2411111,-77.0013889,Williamsport,PA,fireball,60,Orange glowing ball over Williamsport, PA +1968-06-26,45.3363889,-92.9969444,Wyoming,MN,disk,60,I sent this in the other day tothe national reporting site as well....My brothers and I and other friends have saw ufo's in the area ov +1976-06-26,46.8772222,-96.7894444,Fargo,ND,disk,300,Well. it's been 35 years, just about. I have finally contacted one other person who was with that night. Besides me, my sister, her fri +1980-06-26,43.7852778,-116.9422222,Parma,ID,unknown,1,Bright Flash- Pregnant wife getting up off of ground, 30 feet away. +1988-06-26,38.2972222,-122.2844444,Napa,CA,chevron,5,Chevron-slowly flying from SE to NW reminded me of a stealth plane with the edges in red-orange flames. Rest of object was cloaked (in +1990-06-26,41.0580556,-74.7530556,Newton,NJ,circle,120,It was at tree top level and it was not a plane. It was to low and i could tell it was round. +1994-06-26,34.1808333,-118.3080556,Burbank,CA,light,60.3,A row of lights in the night sky vanished after they split formation. +1997-06-26,40.7372222,-114.0366667,Wendover (Approx. 20 Miles E Of Nv. I-80),UT,disk,35,Object flew towards us from S.E. and then parallel to us at 75 mph. Appox. 8 lights on outer circumference of disk shape, only lights v +1998-06-26,34.5008333,-117.185,Apple Valley,CA,other,1800,3 observers witnessed a "manta-ray" shaped craft move west over mountain range for 30 min. No lights or windows were visable.VERY LARGE +1999-06-26,47.6063889,-122.3308333,Seattle (Georgetown),WA,disk,600,slow moving, low altitude saucer heading N by NW, moving in a straight line, very steady. The disk seemed to be round but would at tim +1999-06-26,38.5816667,-121.4933333,Sacramento,CA,light,180,Two Star-like lights seen in East Sacramento +2000-06-26,45.6797222,-111.0377778,Bozeman,MT,light,15,2 men see strange light "driving" around in the sky north of bozeman. +2000-06-26,34.0522222,-118.2427778,Los Angeles,CA,unknown,20,I observed a very fast, silent object(s), heading roughly south to north while the lights occasionally seemed to tightly "pinwheel" +2000-06-26,32.7152778,-117.1563889,San Diego,CA,light,3.5,I saw a single blue-green light in the sky traveling north to south at a high rate of speed without a sonic boom or engine noise. +2000-06-26,37.1041667,-113.5833333,St. George,UT,light,1200,Small non blinking lights flying with the stars +2000-06-26,37.0802778,-77.9975,Blackstone,VA,light,120,Fast moving lights over the Virginia Sky +2000-06-26,36.175,-115.1363889,Las Vegas,NV,light,120,Strange light moving over Vegas at a great speed +2000-06-26,45.4983333,-122.4302778,Gresham,OR,other,45,Orange object that traveled in a zig zag line +2000-06-26,41.85,-87.65,Chicago (O'hare Airport),IL,oval,10,UFO spotted over o'hare airport. ((NUFORC Note: Sighting by airline employee. PD)) +2001-06-26,41.3722222,-73.7338889,Mahopac,NY,circle,3600,The most amazing thing I had ever seen! +2001-06-26,35.0427778,-120.475,Nipomo,CA,sphere,120,Daylight sphere/orb follows above conventional aircraft +2001-06-26,42.2711111,-89.0938889,Rockford,IL,light,900,We saw a large reddish light in the Southern sky, visible in one spot for about 10 minutes, at 10:20 pm, June 26, 01, in Rockford Ill. +2002-06-26,39.4886111,-83.6369444,Sabina,OH,sphere,2,I was on my way home from work. At approximately 3:09 am I saw a bright green orb arc through the sky going in a south easterly directi +2002-06-26,45.8641667,-122.8052778,St. Helens,OR,disk,900,Fast moving object that moved left to right, stopped, then right to center, then center to left at 1 minute intervals +2002-06-26,36.6605556,-115.9936111,Mercury,NV,other,1200,High power broadband radio transmission observed near Area 51 +2002-06-26,27.9472222,-82.4586111,Tampa,FL,sphere,60,Small flying blue orb of light about the size of a basketball +2002-06-26,46.215,-119.9955556,Mabton,WA,triangle,1200,2 objects flew slowly and quietly with 4 white lights and 3 green lights. +2002-06-26,40.26,-74.2741667,Freehold,NJ,disk,120,it was a large hovering aircraft with many luminous lights that glided off in a manner unlike any other aircraft i had ever seen +2002-06-26,42.0427778,-88.0797222,Hoffman Estates,IL,fireball,90,Orange fireball across the sky over Hoffman Estates IL +2003-06-26,39.1011111,-74.7180556,Avalon,NJ,changing,90,lights on the finger tips with a luminous glow and rapid up down side to side multicolored UFO's +2003-06-26,37.7058333,-122.4608333,Daly City,CA,disk,300,flying orange brigt disk object with a second coming out below the center a dot bright green color +2003-06-26,40.2291667,-74.9372222,Newtown,PA,disk,600,Saucer like object flies above community pool. +2003-06-26,32.7947222,-116.9616667,El Cajon,CA,unknown,900,The most critical thing is how fast and the angle it went at before disappearing. +2003-06-26,36.3008333,-119.7819444,Lemoore,CA,triangle,1800,I observed a something that apeared to be a glowing orange and white ball over Naval Air Station Lemoore. I was observing this about 5 +2004-06-26,40.7608333,-111.8902778,Salt Lake City,UT,unknown,345600,The person who asked if anyone had information on an Arizona Circle might be interested in this. Check aliendave.com +2004-06-26,46.8772222,-96.7894444,West Fargo,ND,triangle,5,triangular craft in west fargo, ND +2004-06-26,37.614444399999996,-93.4102778,Bolivar,MO,light,60,MISSOURI INVESTIGATORS GROUP Report: Starlike object moves very slowly west of Hwy 13 in Boliver then hovers. +2004-06-26,37.7944444,-93.5777778,Humansville,MO,light,60,At first, I thought it was a star. But, I noticed it was moving very slowly. +2004-06-26,41.3661111,-81.8544444,Berea,OH,oval,15,Bright, white elongated oval craft over Berea, Ohio, traveling north to south. +2004-06-26,25.7738889,-80.1938889,Miami,FL,cylinder,30,Cylindrical object, no visible wings, moving slightly upward despite nose pointed downward, vanished suddenly +2004-06-26,40.0638889,-80.7211111,Wheeling,WV,light,10,Brigh light just blinked out. ((Space debris event??)) +2004-06-26,40.2113889,-76.1236111,Reamstown,PA,unknown,10,Bright object crossed the sky leaving a shimmering banner like trail while at least one other object followed before disappearing . +2004-06-26,41.7177778,-76.7794444,Granville Summit,PA,light,5,Three silent orange streaks, two in front, one behind traveling at a high rate of speed in the same path. +2004-06-26,34.0522222,-118.2427778,Los Angeles,CA,light,300,Two white lights, high in the sky. ((NUFORC Note: Possible sighting of re-entering space debris. PD)) +2004-06-26,41.1655556,-80.8577778,Lordstown,OH,fireball,20,meteorite type observation ((NUFORC Note: Possible sighting of re-entering space debris. PD)) +2004-06-26,40.9644444,-74.8788889,Johnsonburg,NJ,fireball,120,four fireballs sighted in nj ((NUFORC Note: Possible sighting of re-entering space debris. PD)) +2004-06-26,41.4952778,-79.4561111,Tionesta,PA,light,60,Four Green Meteors ((NUFORC Note: Possible sighting of re-entering space debris. PD)) +2004-06-26,40.0377778,-76.3058333,Lancaster,PA,light,120,5 bright lights with bright light trails behind them moved quickly accross the night sky and were gone. +2004-06-26,43.2680556,-82.5308333,Lexington,MI,unknown,15,Streaking, burning objects over Michigan ((NUFORC Note: Possible sighting of re-entering space debris. PD)) +2004-06-26,41.3116667,-81.5683333,Sagamore Hills,OH,fireball,600,Unidentified aerial event at night. One large ball of flame and 3 smaller blue diamond shaped flames. +2004-06-26,40.6805556,-122.3697222,Shasta Lake,CA,light,60,wierd satellight? ((NUFORC Note: Possible sighting of re-entering space debris. PD)) +2004-06-26,42.7358333,-83.4188889,Clarkston,MI,unknown,15,5 streaks of bright light tracking accross the sky. Like a falling star, yet this continued accross the entire skyline until it disappe +2005-06-26,48.4111111,-114.3366667,Whitefish,MT,circle,60,Bright flying object with red and white flashing lights, soundless, moving erradically. +2005-06-26,41.7747222,-74.2986111,Kerhonkson,NY,formation,45,Three points of light in a triangle formation. ((NUFORC Note: Possible NOSS satellites. PD)) +2005-06-26,36.7477778,-119.7713889,Fresno,CA,triangle,300,Sighting of flying triangle with lights in weaving motion like a sting ray about 150-200 ft. off the ground +2005-06-26,30.1522222,-94.7388889,Hardin,TX,flash,3600,large flashes of light spotted 06/26/05 in southeast texas skies over 1 hour duration +2005-06-26,41.6008333,-87.6069444,South Holland,IL,changing,360,Dark rectangular object in the sky which later appeared as a dark teardrop +2005-06-26,40.155,-74.8291667,Levittown,PA,oval,900,Unidentified black oval object in South Eastern Pennsylvania sky disappears +2006-06-26,37.6086111,-77.3736111,Mechanicsville,VA,disk,30,2 disk shaped UFO's over Mechanicsville, VA. +2006-06-26,39.0997222,-94.5783333,Kansas City,MO,sphere,1020,UFO sighting in Kansas City - two craft exit a larger craft +2006-06-26,42.1625,-71.0416667,Randolph,MA,disk,10,a silver shiny disk with a hole in the middle flying erratically to the toward the east. +2006-06-26,43.1702778,-70.5966667,Concordville (York Beach Area),ME,disk,300,This object was Inadvertently photographed off of Cape Neddick (Nubble Light) York Beach, Maine. ((NUFORC Note: Seagull. PD)) +2006-06-26,30.4380556,-84.2808333,Tallahassee,FL,cylinder,240,Traveling east to west then south to north. +2006-06-26,33.6305556,-112.3325,Surprise,AZ,light,7,falling star, or ufo? +2006-06-26,38.545,-121.7394444,Davis,CA,unknown,1,Object blurred by orange, yellow lights going northwest extremely fast over my rooftop in Davis, CA headed toward direction of Woodland +2007-06-26,41.1305556,-85.1288889,Fort Wayne,IN,oval,300,Dark, Figure Eight Craft +2007-06-26,43.6136111,-116.2025,Boise,ID,disk,180,4 white or cream disk-shaped UFOs in pairs about a minute apart over Boise, Idaho +2007-06-26,30.2458333,-87.7008333,Gulf Shores,AL,light,900,Red lighting object over gulf +2007-06-26,42.3952778,-94.6336111,Rockwell City,IA,fireball,1269,Fire Ball +2007-06-26,33.8388889,-83.9008333,Loganville,GA,light,120,Bright White Light, Northeast Georgia +2007-06-26,40.2969444,-111.6938889,Orem,UT,light,300,Sattelite looking UFO stops suddenly +2007-06-26,33.6888889,-78.8869444,Myrtle Beach,SC,light,3630,Large Orange Lights Appear in Formations +2007-06-26,38.6272222,-90.1977778,St. Louis,MO,unknown,600,Another night, another sighting over St. Louis, Mo. +2007-06-26,41.7691667,-72.965,Burlington,CT,unknown,60,object makes fishhook turn in connecticut sky +2008-06-26,43.9727778,-74.4213889,Long Lake,NY,light,2,light in the sky +2008-06-26,40.9008333,-73.3436111,Northport,NY,formation,60,series of white lights over oak street +2008-06-26,33.425,-94.0475,Texarkana,TX,other,180,I saw this object once before at night from the side and app. 1/2 mile away about 6 months ago, but it was right over head this time (1 +2008-06-26,41.5580556,-73.0519444,Waterbury,CT,sphere,600,Four bright white sphere's out of the north, south, east and west approximately the size of the full moon! +2008-06-26,37.3791667,-105.0997222,Cuchara,CO,light,1800,Orange Light UFO while camping near Cuchara, Colorado +2008-06-26,40.4277778,-74.4163889,East Brunswick,NJ,light,3,Bright Blue Ball flying extremely fast over the night skies of Central New Jersey +2008-06-26,40.8047222,-73.3366667,Dix Hills,NY,circle,2,The UFO had a light on the bottom and accelerated in a curved path out of sight. +2009-06-26,44.4758333,-73.2125,Burlington,VT,circle,60,Horizontal flaming metior going accross the sky. +2009-06-26,47.5302778,-122.0313889,Issaquah,WA,light,10,Golden light seen Issaquah WA +2009-06-26,37.775,-122.4183333,San Francisco,CA,fireball,1,A flying ball of light faster than a comet near Mt. Tamalpais. +2009-06-26,33.7488889,-84.3880556,Atlanta,GA,circle,20,Piedmont Park: Circular UFO with Blue Lights! +2009-06-26,40.2861111,-96.535,Filley,NE,unknown,30,This object lit up like a miniature sun several miles across and then shot off into space. +2009-06-27,40.9008333,-80.8569444,Salem,OH,oval,45,2 oval orange objects parallel then converging then disappearing after 45-60 seconds +2010-06-26,38.3725,-85.9863889,Greenville,IN,other,180,3 spoke UFO, blue and white lights, muted jet sound heard when floating directly overhead +2010-06-26,38.3725,-85.9863889,Greenville,IN,other,180,Three spoke shaped craft with white lights in center and at spoke ends, blue lights between white ones +2010-06-26,38.2855556,-85.8241667,New Albany,IN,triangle,120,Clear sky, full moon (behind me) three spoke object, blue and white lights, white changed intensity,, soft jet sound +2010-06-26,41.4088889,-75.6627778,Scranton,PA,fireball,180,Giant ball of fire in the sky. +2010-06-26,44.2619444,-88.4152778,Appleton,WI,circle,300,A circular object from the sky fell to the ground with a loud wooshing sound. +2010-06-26,37.1966667,-89.7361111,Delta,MO,light,120,Just a little after 5:00, I was riding my four-wheeler down my yard to the barn to feed the horses and get ready for my rodeo. I looked +2010-06-26,35.4869444,-93.8275,Ozark,AR,unknown,300,We observed a rapidly moving light in the morning that was only outshone by the moon and sun. +2010-06-26,37.12,-93.48,Republic,MO,light,600,Light in sky moving in different directions changing colors. +2010-06-26,39.8402778,-88.9547222,Decatur,IL,rectangle,2,((HOAX??)) small and white +2010-06-26,41.85,-88.3125,Batavia,IL,sphere,300,Orb sited under cloud,disappears, then a minute later see it falling out of the sky like a metorite, jet chasing it. +2010-06-26,41.85,-88.3125,Batavia,IL,sphere,300,UFO CRASH OVER BATAVIA> +2010-06-26,41.85,-88.3125,Batavia,IL,sphere,300,sphere in sky. +2010-06-26,33.1580556,-117.3497222,Carlsbad,CA,disk,3,Shinny golden matalic disk/sauser shaped object seen for 2-3 secs....then disappeared! +2010-06-26,32.7152778,-117.1563889,San Diego,CA,oval,120,June 26 San Diego north county 5 lights +2010-06-26,37.7922222,-78.6986111,Schuyler,VA,other,30,Shooting star like object, that changes direction +2010-06-26,38.595,-90.5461111,Ballwin,MO,light,180,A low altitude slow moving extremely bright light. +2010-06-26,40.864444399999996,-76.5527778,Elysburg,PA,flash,600,Several flashing blueish lights in a row, lights remained for several minutes and were witnessed by many people +2010-06-26,35.4866667,-80.8602778,Cornelius,NC,fireball,600,Red fireballs moving slowly overhead then disappearing in Cornelius, North Carolina. +2010-06-26,42.7844444,-83.2397222,Lake Orion,MI,oval,90,Balloon shaped clear bubble with what appeared to be fire inside moving over the lake +2010-06-26,36.8766667,-89.5877778,Sikeston,MO,unknown,45,Four lights all moving in their own circle meeting at the same point, sikeston missouri +2010-06-26,39.7686111,-94.8463889,St. Joseph,MO,sphere,20,Three orange spheres float across sky +2010-06-26,47.6063889,-122.3308333,Seattle,WA,light,120,Strange orange light hovering in the sky seen during ISS visible overflight. +2010-06-26,43.0255556,-102.5558333,Pine Ridge,SD,light,3600,Pine Ridge, South Dakota - Bright Orange Light, June, 26th, 2010 +2011-06-26,41.8463889,-71.8880556,Dayville,CT,changing,600,Slow Moving shape shifting craft with glowing ring. +2011-06-26,40.4958333,-74.4247222,Highland Park,NJ,fireball,120,Orange fireballs in the sky +2011-06-26,39.7588889,-84.1916667,Dayton,OH,circle,300,Circular craft with lights around the entire parameter hung low and immobile in Dayton ohio +2011-06-26,35.0525,-78.8786111,Fayetteville,NC,triangle,300,fayetteville nc 6-26-2011, triangle ufo 10pm +2011-06-26,39.4097222,-123.3544444,Willits,CA,oval,120,Red, orange, gold slow-moving crafts appeared and vanished June 26, 2011 California. +2011-06-26,40.5852778,-105.0838889,Fort Collins,CO,light,60,Big Star looking craft ....like a planet. ((NUFORC Note: Sighting of International Space Station? +2011-06-26,44.5366667,-122.9058333,Lebanon,OR,circle,600,It went across the sky. It was orange, high in the sky. ((NUFORC Note: We have requested more information. PD)) +2011-06-26,40.7163889,-73.3222222,North Babylon,NY,light,900,2 sperate sighting I will never forget! +2012-06-26,31.7586111,-106.4863889,El Paso,TX,circle,1200,Giant red circle, shrinks into the sky. +2012-06-26,28.0194444,-82.7719444,Dunedin,FL,cylinder,600,UFO Sighting on 6/26/2012 at 1:00am Intense Deep Bright Orange Intensifying Object Just Above Tree line on the West Coast of Fl. +2012-06-26,28.0194444,-82.7719444,Dunedin,FL,cylinder,600,Very Bright Chubby Orange Glowing Cylender Object that intensified in color and sort of moved back & forth. +2012-06-26,32.3122222,-106.7777778,Las Cruces,NM,changing,3600,Lights appear and then rotate upwards into the sky. +2012-06-26,36.5483333,-82.5619444,Kingsport,TN,fireball,60,Soccer ball sized fireball travels horizontally over government property; then zig zags and disappears. +2012-06-26,32.3663889,-96.1005556,Mabank,TX,light,240,Large, bright ultra white light traveling across the sky +2012-06-26,41.6005556,-93.6088889,West Des Moines,IA,light,120,orange glowing object in clear black sky amazing speed +2012-06-26,35.2269444,-80.8433333,Charlotte,NC,light,240,Bright orange light a luminating northwest from my home +2012-06-26,35.1494444,-90.0488889,Memphis,TN,cylinder,60,Extremely reflective cylinder shaped object hovering then completely disappeared. +2012-06-26,38.6125,-90.3244444,Maplewood,MO,cigar,60,Cigar-shaped object that hovered about a minute, then it disappeared. +2012-06-26,35.3394444,-97.4863889,Moore,OK,fireball,60,fireball object in plain view, CREAPY CIRCUMSTANCE.. +2012-06-26,32.9658333,-97.6833333,Springtown,TX,light,60,Glowing orange light hovering then moving slowly out of sight about 2 miles above the ground. +2012-06-26,33.6197222,-86.6088889,Trussville,AL,oval,240,Very fast very large very bright ufo spotted over chalkville mtn rd trussville alabama 35235 +2012-06-26,45.1077778,-87.6141667,Menominee,MI,diamond,25,Orange fireball traveling parallel to horizon suddenly vanishes +2012-06-26,42.3313889,-83.0458333,Detroit,MI,light,30,I saw a very faint light traveling northward and it disappeared and then another appeared traveling southwards in opposite direction +2012-06-26,42.3313889,-83.0458333,Detroit,MI,diamond,180,I saw a bright blinking white light cross the sky low enough for me to see that it was diamond shaped +2012-06-26,36.7477778,-119.7713889,Fresno,CA,sphere,20,Object being chased by 2 fighter jets +2012-06-26,41.6580556,-90.5844444,Eldridge (Towards; Going North On Utica Ridge Road),IA,triangle,300,Triangle UFO over farmhouse and trees on Utica Ridge Road, towards Eldridge, Iowa +2013-06-26,39.9966667,-74.9930556,Cinnaminson,NJ,light,30,Bright light zig zags across the sky near Philadelphia +2013-06-26,37.7975,-120.9955556,Escalon,CA,light,1200,6/25/13 about midnight.Looking out my window toward the south, I saw what appeared to be two stars side by side. These were much l +2013-06-26,39.7588889,-84.1916667,Dayton,OH,fireball,60,Orange glowing orb +2013-06-26,41.2586111,-95.9375,Omaha,NE,light,20,A object at what i guess 30 thousand feet take a sharp turn then disappeared +2013-06-26,42.0188889,-87.8027778,Niles,IL,cylinder,600,Black horizontal object floating with low lying clouds over Niles, IL +2013-06-26,41.5758333,-87.1761111,Portage,IN,diamond,300,Cluster of reddish-orange diamond shaped lights in a diamond formation twinkle before completely disappearing in North West Indiana +2013-06-26,34.9247222,-81.0252778,Rock Hill,SC,cone,420,Was driving down Charlotte Avenue to take my daughter by her house. Saw an odd oblect in the sky. I stopped in the middle of the road +2013-06-26,36.9741667,-122.0297222,Santa Cruz,CA,light,6660,Bright White Light. ((NUFORC Note: Possibly a star?? PD)) +1967-06-27,33.5386111,-112.1852778,Glendale,AZ,light,600,Glendale, AZ, 11:00 Pm, white sphere silently appeared in sky, It moved to 12 " in front of my face, flew off. +1971-06-27,37.3688889,-122.0352778,Sunnyvale,CA,other,300,Hard to describe floating box scared the heck out of two teenage girls many years ago +1983-06-27,36.1538889,-95.9925,Tulsa,OK,circle,300,looked like a ball bearing, perfectly round, very shiny -went along power lines up and down evenly with the lines - even over the woode +1997-06-27,45.4983333,-122.4302778,Gresham,OR,triangle,120,Clear night & sky - no other aircraft. Saw strange lights in NE not like regular aircraft. Am trucker, kept catching glimpse of lights +1997-06-27,40.7163889,-73.3222222,North Babylon (Long Island),NY,triangle,1215,To whom it may concern, my name is((Name deleted)). On the night of June 27, 1997, me and my friend (Deleted) saw a U.F.O. I can tell +1997-06-27,33.6116667,-111.7166667,Fountain Hills,AZ,other,900,Brother in law of MUFON Investigator sees large black object hovering stationary over mountains in the NE +1998-06-27,40.2169444,-74.7433333,Trenton (Hamilton Township),NJ,disk,300,The craft hovered over a neighbors home. +1998-06-27,43.1302778,-77.4758333,Penfield,NY,circle,120,A small bright object accross the sky and disappeared. No glamorous close up sighting, but extremely high for an airplane, much, much t +1999-06-27,34.4263889,-117.3,Hesperia,CA,fireball,5,Bright Bluish-white fireball was seen very low above the Southwest horizon. From here that would be in the direction of Fontana or Onta +1999-06-27,38.9822222,-94.6705556,Overland Park,KS,circle,120,My brother and I saw a circle that moved, made a trail, and disappeared in a minute. +1999-06-27,48.1183333,-123.4294444,Port Angeles,WA,sphere,20,Me-LOKING FROM CAMPER-SKY LIGHT-SOUTH TO NORTH WEST +1999-06-27,38.3566667,-121.9866667,Vacaville (Near),CA,diamond,1800,Three women in a car had a diamond shaped UFO hover less than 30 feet over their car. The object was observeed to shift shape bewteen +1999-06-27,46.6311111,-68.4066667,Ashland,ME,triangle,120,I was standing outside when I saw a light in the distance. It was very far away, headed in a NE direction. It was moving very slowly. +2000-06-27,44.8897222,-73.4363889,West Chazy,NY,unknown,180,The object had a dull orange glowing center with between 5&8 white strobe lights flashing very quickly with no noticeable patern. +2000-06-27,33.415,-111.5488889,Apache Junction,AZ,light,360,Tinkerbell? ball of fast moving white light +2000-06-27,35.3733333,-119.0177778,Bakersfield,CA,fireball,90,I observed what I believed to be a meteor, however I watched it cross the entire sky for about 90 seconds. +2000-06-27,38.5733333,-109.5491667,Moab,UT,circle,10,An adult female, camping in the Utah wilderness, reports she and a companion saw a bright light project a beam downward; mighttime, 10- +2000-06-27,42.3583333,-71.0602778,Boston,MA,light,10,Bright light moving quickly east to west viewed from the boston common +2000-06-27,39.7663889,-75.1447222,Sewell (Washington Township),NJ,triangle,120,observed UFO at two different times within 1-2 minutes time +2001-06-27,46.8722222,-113.9930556,Missoula,MT,changing,5,fastest craft must be huge +2001-06-27,33.6694444,-117.8222222,Irvine,CA,other,120,3 rust-colored, stealth fighter-shaped UFOs. +2001-06-27,42.2708333,-83.7263889,Ann Arbor,MI,egg,600,Translucent egg-shaped balloon like object in early morning sky in Ann Arbor, MI. +2001-06-27,34.1477778,-118.1436111,Pasadena,CA,cylinder,10,HIGH FLYING CYLINDER EXPOSED BY BRIGHT SUN. +2001-06-27,34.0522222,-118.2427778,Los Angeles,CA,cigar,2700,cigar like object changing orientation for about 40 min over LA on clear day +2001-06-27,46.2113889,-119.1361111,Kennewick,WA,other,300,Six cloverleaf shaped craft seen exiting a thunderstorm moving south at a high rate of speed +2001-06-27,39.0838889,-77.1530556,Rockville,MD,triangle,30,Triangular object silhouetted against moon - digital photograph +2002-06-27,41.1108333,-112.0252778,Clearfield,UT,light,3,Red and blue light make tight S turn then shoot back over Wasatch Range +2002-06-27,37.6922222,-97.3372222,Wichita,KS,teardrop,60,UFO sighted at 9pm cst flying due north at approx. 100-200 mph inverted cone 3'-5' diameter approx. 400' up in the sky, with no sound. +2002-06-27,35.3061111,-78.6091667,Dunn,NC,teardrop,45,three glowing lights make triangle +2002-06-27,33.4483333,-112.0733333,Phoenix,AZ,fireball,3600,2nd Phoenix sighting very similar to 1997 sighting +2002-06-27,31.7605556,-93.0861111,Natchitoches,LA,oval,1200,flashing object jetting around the sky +2002-06-27,40.8663889,-73.0361111,Selden,NY,formation,240,TRIANGLE SQUARE SHAPED OBJECTS OVER SKYS OF SELDEN +2003-06-27,47.6063889,-122.3308333,Seattle (West Seattle),WA,light,90,Bright lights in sky over West Seattle +2003-06-27,37.1041667,-113.5833333,St. George,UT,sphere,1200,Reflective object hanging in the sky over St. George, Utah +2004-06-27,40.8358333,-78.8766667,Smithport,PA,formation,60,5 very bright objects in triangular formation moving from western horizon to eastern horizon at very low,fast pace +2004-06-27,41.6661111,-81.3397222,Mentor,OH,light,120,A light fading in and out brightness going north and south. +2004-06-27,45.3566667,-122.8388889,Sherwood,OR,circle,600,small craft grew enormous and blue as it came crashing down towards me. +2004-06-27,45.5236111,-122.675,Portland,OR,sphere,90,Object seen in sky traveling from southwest to northeast. Silver/white in color with no visible wings and approximately 1000-1500 feet +2004-06-27,30.2669444,-97.7427778,Austin,TX,sphere,5,an unexplainable occurrence +2004-06-27,27.8336111,-97.0608333,Port Aransas,TX,light,4,Blue Light Streaks Accross the South Texas Sky +2004-06-27,29.5633333,-95.2858333,Pearland,TX,fireball,10,It appeared to be a very large meteor or possibly comet.Bright white nose edge & forming cone shaped blue ball with a very long blue tu +2004-06-27,30.19,-98.0863889,Dripping Springs,TX,egg,10,An oval, chartreuse and white, very bright object moving from south to east parelling the horizon with a long, bright tail. +2004-06-27,41.0813889,-81.5191667,Akron,OH,other,7200,sightings in akron ohio multi colored and shaped object +2004-06-27,47.6063889,-122.3308333,Seattle (Skyway),WA,cigar,600,Stationary daylight star with tail +2004-06-27,30.6325,-97.6769444,Georgetown,TX,triangle,3,Black triangles, rushing air sound and high rate of speed in area north of Austin on 06/27/04 +2004-06-27,40.7141667,-74.0063889,New York City,NY,fireball,1,Fireball flashed and streaked across the Manhattan sky northward and disappeared in a little over a second +2004-06-27,33.4147222,-111.9086111,Tempe,AZ,disk,4500,5 lights in a saucer shape hovering and disappearing over phoenix metro area +2004-06-27,40.0638889,-80.7211111,Wheeling,WV,light,5,Lasted for about 3-5 seconds. +2004-06-27,47.8569444,-121.6958333,Gold Bar,WA,circle,60,pulsating light crosses sky +2005-06-27,35.2269444,-80.8433333,Charlotte,NC,chevron,900,Chevron shaped Grey Object seen hovering +2005-06-27,38.8338889,-104.8208333,Colorado Springs,CO,triangle,180,colorado springs, colorado saw a object at night 3 multi-colored lights +2005-06-27,30.2263889,-93.2172222,Lake Charles,LA,triangle,10,Bright Silvery White Traingular UFO +2005-06-27,36.0305556,-75.6763889,Kill Devil Hills,NC,sphere,90,Dark Orb Moves Erratically over the Beach -- Outer Banks, NC +2006-06-27,47.5963889,-120.6602778,Leavenworth,WA,unknown,60,6/27/2006, approx. time 00:15AM, 12 miles east of Leavenworth, Washington at Ingalls Creek Road. Directly above, coming from wester +2006-06-27,45.5236111,-122.675,Portland,OR,disk,6,brght blue flashing disc +2006-06-27,30.2669444,-97.7427778,Austin,TX,unknown,5,rectangular arrangement of white lights head North . Spacing between lights did not change +2006-06-27,33.2,-117.2416667,Vista,CA,oval,7200,Oval, spotlight, UFO or UFOs +2006-06-27,34.0522222,-118.2427778,Los Angeles,CA,light,300,birght object steaks upward, burns out, another object continues on and sprays some kind of "rain" like cloud and keeps moving. +2006-06-27,33.9533333,-117.3952778,Riverside,CA,unknown,600,as me and my wife were siting in our lawn as i looked up to the south i saw what looked as a low long light passing then falling at a 9 +2006-06-27,35.4675,-97.5161111,Oklahoma City,OK,light,5,Large object moving West to East (light bars) with blury darkness around them. +2006-06-28,47.0380556,-122.8994444,Olympia,WA,light,180,glowing light travels slowly across the sky fades and then vanishes +2007-06-27,40.7280556,-74.0780556,Jersey City,NJ,other,600,Worm shaped object seen by at least 6 adults from Jersey City back yards +2007-06-27,40.7438889,-74.0327778,Hoboken,NJ,changing,300,Stick shaped UFO moving slowly at a very high altitude North East over Northern NJ +2007-06-27,37.0058333,-121.5672222,Gilroy,CA,light,180,pulsing light 20-50 miles out from gilroy probably over saratoga or los gatos +2007-06-27,41.7108333,-87.7580556,Oak Lawn,IL,light,6,Green light moving toward 103rd st from 95th & central - Moved for 6 seconds while I was on my cellphone I told my friend it was going +2008-06-27,33.4661111,-94.2883333,Hooks,TX,triangle,180,triangle light pattern heading North / North West near Hooks Texas +2008-06-27,43.0116667,-88.2313889,Waukesha,WI,other,180,I was sleeping when i started to dream that i was watching my self sleep i was loooking through some ones eyes as i watched my self sle +2008-06-27,40.8325,-115.7622222,Elko,NV,light,600,((HOAX)) strange light in the night sky +2008-06-27,33.66,-86.8127778,Gardendale,AL,disk,30,UFO seen above Gardendale Alabama while driving on the interstate into work at 8:00 am. +2008-06-27,40.4861111,-74.4522222,New Brunswick,NJ,rectangle,10,I saw a rectangular object or projection above the town of new brunswick nj +2008-06-27,29.4238889,-98.4933333,San Antonio,TX,other,60,I was traveling I-10 west and saw a hovering object . It appeared as if it was hovering between Fred Rd and DeZavala on I-10. +2008-06-27,40.015,-105.27,Boulder,CO,flash,10,Light flash +2008-06-27,42.7844444,-83.2397222,Lake Orion,MI,fireball,180,On a pontoon boat and witnessed the bright fireball type object low to the ground then dissappear into the sky +2008-06-27,44.948055600000004,-91.1505556,Cadott,WI,oval,420,Bright light appear and disappear several times, moving very slow over Cadott, Wisconsin +2009-06-27,58.301944399999996,-134.4197222,Juneau,AK,triangle,10,Triangular shaped craft with red lights seen lowering from the sky. +2009-06-27,34.8686111,-81.2277778,Mcconnells,SC,diamond,240,Strange white diamond shaped object about 20 ft acrosss travel directly overhead the car no sound then the object disappeared across th +2009-06-27,39.8208333,-84.0194444,Fairborn,OH,triangle,300,Triangle craft over I-70 on June 27th, and 4:30 AM, near Fairborn, OH +2009-06-27,33.1580556,-117.3497222,Carlsbad,CA,light,10,I live in Carlsbad Ca.,in the last three weeks I see super bright egg shaped floating objects they move slow just floating, they get re +2009-06-27,47.4066667,-122.0375,Maple Valley,WA,cylinder,900,Elongated object spotted over Maple Valley +2009-06-27,32.4313889,-80.67,Beaufort,SC,circle,3,Ball streaking through sky during fishing show (TV). +2009-06-27,33.7041667,-116.725,Mountain Center,CA,light,180,Orange Light Disappears Above Me +2009-06-27,38.6522222,-85.6252778,Lexington,IN,unknown,600,Contrail of short length, abrupt begining and end in clear sky, black smoke, very small object separated from smoke trail, no aparent m +2009-06-27,33.4222222,-111.8219444,Mesa,AZ,light,15,Bright light moving quickly across the sky that suddenly expands to 20X it size and then shoot into outer space. +2009-06-27,39.9522222,-75.1641667,Philadelphia (Penn's Landing),PA,formation,60,UFO seen during June 27th fireworks at Penn's Landing +2010-06-27,40.8305556,-121.5125,Hat Creek,CA,diamond,15,Two sightings of the same object within 22 hours of each other in Northern California +2010-06-27,33.0183333,-80.1758333,Summerville,SC,triangle,300,Charleston Area UFO June 27, 2010. +2010-06-27,39.9508333,-86.2619444,Zionsville,IN,changing,900,30 red balls seen twice +2010-06-27,33.0197222,-96.6986111,Plano,TX,light,1800,Red-Gold Orb over Plano,Texas. +2010-06-27,40.1516667,-75.3369444,East Norriton,PA,triangle,30,triange lights seen accelerating westbound from east norriton +2010-06-27,41.8097222,-87.9005556,Western Springs,IL,circle,120,Flashing bright lights, cirular clockwise movement going straight. +2010-06-27,36.6002778,-121.8936111,Monterey,CA,light,1200,Two brilliant blue and green lights that were observed for about 15 mins. that moved in an erratic fashion independent of each other. +2011-06-27,37.0297222,-76.3455556,Hampton,VA,other,600,I saw a fleet of UFOs +2011-06-27,37.0297222,-76.3455556,Hampton,VA,unknown,600,The date I am not sure of but it was approximately the date I entered. I was standing out on the back deck of my parents' home and not +2011-06-27,43.0388889,-87.9063889,Milwaukee,WI,light,420,2 light colored objects turning color and traveling at rapid rates and turning red and dissapearing. +2011-06-27,42.4772222,-88.0955556,Antioch,IL,triangle,2,((HOAX??)) A lighted boomerang shaped object in the sky. +2011-06-27,41.0533333,-73.5391667,Stamford,CT,light,120,Ice Blue - White Lights over Stamford, CT +2012-06-27,44.98,-93.2636111,Minneapolis,MN,unknown,600,Objects Generating Intense Burst Of Light And Disapear +2012-06-27,37.0583333,-120.8488889,Los Banos,CA,triangle,300,Triangular UFO sighted near Los Banos on Hwy 5 in CA on 6/27/12 at 2:15AM +2012-06-27,47.6063889,-122.3308333,Seattle,WA,egg,900,lights started appearing out of nowhere. +2012-06-27,36.6002778,-121.8936111,Monterey,CA,cylinder,180,two lights with a glow around them twenty feet in front of a car +2012-06-27,36.175,-115.1363889,Las Vegas,NV,cigar,900,((HOAX)) Luminescent cigar shaped unidentified flying object seen flying low over Las Vegas in daytime followed by mil. helicopters. +2012-06-27,38.5394444,-75.0555556,Bethany Beach,DE,sphere,5400,Hovering double sphere shape bright metalic craft just under the cloud ceiling on Delaware shore +2012-06-27,41.8388889,-89.4794444,Dixon,IL,other,120,Circular grouping of white dots in the daytime sky didnt move but would slowly disapear +2012-06-27,42.3313889,-83.0458333,Detroit,MI,oval,10,AMAZING DAY OVAL UFO +2012-06-27,37.725,-122.155,San Leandro,CA,disk,900,Two flat disk shaped long objects hovering in sky +2012-06-27,35.0844444,-106.6505556,Albuquerque,NM,other,60,White flashing fading light in the sky +2012-06-27,38.8105556,-90.6997222,O'fallon,MO,circle,180,Glowing orange flying object with black haze surrounding it. +2012-06-27,34.9025,-79.0119444,Parkton,NC,light,7200,Orange ball of light +2012-06-27,39.4522222,-74.7280556,Mays Landing,NJ,sphere,60,close encounter with blue sphere of light +2012-06-27,39.3772222,-76.54,Parkville,MD,triangle,10800,I'm confident all these were not the space station and I am confident these were not airplanes. +2012-06-27,41.2380556,-81.8419444,Brunswick,OH,sphere,180,Bright and orange, sphere-like object, that appeared to increase in size but froze for 2min, then faded and eventually disappeared. +2012-06-27,33.6411111,-117.9177778,Costa Mesa,CA,light,900,4 Red UFO's drift over John Wayne Aiport +2012-06-27,32.9477778,-112.7161111,Gila Bend,AZ,fireball,600,stationary fireballs seen in sky south of interstate 8 and west of Gila Bend about 20min +2012-06-27,47.6063889,-122.3308333,Seattle,WA,circle,240,SW sky. right of the half moon about 5 fingers as you hold your hand up to the sky. A bright orange ball moving right to left fairly sl +2012-06-27,40.5555556,-75.9822222,Hamburg,PA,unknown,600,3 steady white lights with flashing red and green lights over Berks County, Pa. +2012-06-27,41.4047222,-81.7230556,Parma,OH,fireball,180,Red/orange ball of fire rising up then shooting across sky +2012-06-27,38.7908333,-121.2347222,Rocklin,CA,light,1800,Flashing Red Llight Over Rocklin, Ca +2012-06-27,34.2541667,-110.0291667,Show Low,AZ,light,1800,Brightly lit object moves erraticly through Eastern Arizona sky. +2012-06-27,38.6388889,-81.4022222,Walton,WV,light,10,Circle of light flashed five times and took off and dissapeared +2012-06-27,41.6611111,-91.53,Iowa City,IA,fireball,300,Hovering fireball north of Iowa City +2012-06-27,36.1538889,-95.9925,Tulsa,OK,formation,360,Flashing lights in formation moving west to east over a 6 minute period in Tulsa OK +2013-06-27,40.1672222,-105.1013889,Longmont,CO,changing,600,7 bright, white round UFOs seen over Longmont, CO on 6/27/13 +2013-06-27,27.9655556,-82.8002778,Clearwater,FL,circle,1800,Throbbing multicolored light witnessed over Clearwater Beach. +2013-06-27,27.9655556,-82.8002778,Clearwater,FL,triangle,120,I think I saw the TR-3B/Aurora aircraft tonight… +2013-06-27,33.3702778,-112.5830556,Buckeye,AZ,light,1380,Orange/Amber Orb of Light. +2013-06-27,39.0833333,-78.2183333,Stephens City,VA,light,1800,Four lights rotating, traveling with car. ((NUFORC Note: Possibly advertising lights?? PD)) +2013-06-27,38.9430556,-84.5441667,Independence,KY,sphere,120,2 luminous shapes moving slowly across the sky, one after the other. +2013-06-27,33.1383333,-95.6008333,Sulphur Springs,TX,light,3600,Numerous lights frequently orbit our area. +2013-06-27,41.1408333,-96.2394444,Gretna,NE,light,180,Orange objects appear over Gretna Nebraska +2013-06-27,38.9430556,-84.5441667,Independence,KY,rectangle,60,Gigantic lantern moves rapidly across sky in KY! +2013-06-27,44.9383333,-93.7175,Minnetrista,MN,light,300,Ball/circle lights in stationary position in Western sky. +2013-06-27,39.6333333,-105.3166667,Evergreen,CO,triangle,300,Triangle shape of lights, traveling at a fast speed toward lighting storm. +2013-06-27,36.1866667,-94.1286111,Springdale,AR,fireball,120,Fleet of orange lights +2013-06-27,47.6063889,-122.3308333,Seattle,WA,light,1800,Dark orange pulsating lights - not conventional aircraft as by how they moved and were full of light. +2013-06-27,32.835,-116.7655556,Alpine,CA,other,30,Football shaped object w/no lights being chased by a helicopter. +1959-06-28,33.3941667,-110.7858333,Globe,AZ,rectangle,300,Rectangular shape consisting of what resembled plumbing joints connecting the four sides together hovered above us and shot straight up +1964-06-28,38.8047222,-77.0472222,Alexandria,VA,disk,600,1965 or 64 Chestnut Pl Alex, VA dusk saucer like with spinning top like red/blue/green bottom of object. +1965-06-29,44.4591667,-69.6780556,Vassalboro,ME,disk,60,round about 300 " in diameter .silver with windows.no sound +1968-06-28,34.7391667,-112.0091667,Cottonwood,AZ,circle,2700,It was dusk and still very warm, so my family and I went out on our porch to cool off. The porch faced west toward Mingus Mountain, we +1992-06-28,42.2458333,-84.4013889,Jackson,MI,cylinder,120,Late eighties or early eighties day time low flying silver cylinder UFO flying perpendicular to ground +1995-06-28,43.6613889,-70.2558333,Portland,ME,changing,1200,It was still light out we sat under it for 3 min +1996-06-28,33.4147222,-111.9086111,Tempe,AZ,changing,1800,Huge pearl-like object over South Mountain +1996-06-28,42.5377778,-83.4811111,Walled Lake,MI,light,420,Blinking light moved W to E. Faded out, came back, dropped "real quick" when plane approached, then went back up behind it. +1997-06-28,39.9241667,-83.8088889,Springfield,OH,disk,60,I was at a friend's house sitting on the back patio. The time of day was sunset, although it was still bright out. I was sitting down +1998-06-28,41.6794444,-77.0641667,Blossburg (5 Miles East Of),PA,light,60,Sudden brilliant light, faded to very dim blue light, which travelled slowly north. +1998-06-28,39.2672222,-76.7986111,Ellicott City,MD,sphere,360,glowing golden with red flashes at 78 degrees north east. Alt about 2000 feet . had wobbling effect when red fashes occoured about eve +1998-06-28,47.0744444,-111.9625,Craig (5 Miles East Of),MT,oval,10,On the above date and time, myself and two others were camping on my property 5 miles east of Craig, Mt. in the Big Belt Mts. The sky w +1998-06-28,42.5833333,-71.8027778,Fitchburg,MA,circle,300,There was an extremely bright white light - in a very cloudy sky. It was skipping about in the sky very fast, couldn't keep track of it +1998-06-28,42.3761111,-122.9152778,Central Point,OR,light,5,late June 1998 two bright "stars" briefly chase each other over Southern Oregon +1998-06-28,38.5816667,-121.4933333,Sacramento,CA,cigar,900,With binoculars, I saw a flat object with several steady white lights and two or more flashing red and white lights. +1999-06-28,38.8338889,-104.8208333,Colorado Springs,CO,triangle,20,craft was seen hovering 100ft above the ground at the southeast corner of Powers and Platte at 9PM on 6/28/99 for about 20 seconds nort +1999-06-28,30.505,-97.82,Cedar Park,TX,cylinder,2,Watching the full moon with binoculars(6/28/99 9:30 cst) I witnessed two objects cross left to right,steady speed,appeared close to the +1999-06-28,43.9966667,-122.905,Jasper (5 Miles S.e. From Springfield, Or),OR,triangle,3,From the north, at aprox. 5 to 6 K', level, turning abruptly to a southerly dir. and an aprox. climb angle of 45 deg. & went out of sig +2000-06-28,43.0827778,-70.9355556,Newmarket,NH,oval,300,Black oval w/ multi-colored lights a frightening sight for two teens. +2000-06-28,35.0844444,-106.6505556,Albuquerque,NM,light,600,the star in the night sky stated dancing, only to return back, hidden. +2000-06-28,38.6272222,-90.1977778,St. Louis,MO,triangle,3,While sitting at a stop light, I was looking lazily at the sky when a traingular object "popped" into view... +2000-06-28,30.545,-83.8702778,Monticello,FL,light,60,Bright White Light +2001-06-28,41.6638889,-83.5552778,Toledo,OH,triangle,900,In Toledo Ohio on June 28 at 12:45 am a Red Bowed shape object was seen in the sky. It followed our car and then disappeared. +2001-06-28,40.0197222,-75.305,Bryn Mawr,PA,triangle,3,A triangluar shaped craft appeared in a rectangular shaped aura in Bryn Mawr, PA. +2001-06-28,33.6,-117.6711111,Mission Viejo,CA,light,3600,this was a ufo triing to blend in with the stars, and nothing to be in the way not to make it a plane +2001-06-28,34.2694444,-118.7805556,Simi Valley,CA,circle,1200,((NUFORC Note: Witness reports observing a "circle." PD)) +2001-06-28,44.4908333,-103.8588889,Spearfish,SD,light,2700,On a camping trip, I saw what I've been waiting for all my life. +2001-06-28,45.6388889,-122.6602778,Vancouver,WA,chevron,20,V Shaped object moving westward at 23:43 pm on June 28, 2001 in Vancouver, Washington +2002-06-28,40.7141667,-74.0063889,New York City (Staten Island),NY,egg,30,Silver egg shaped UFO low flying in New York +2002-06-28,36.0997222,-80.2444444,Winston-Salem,NC,disk,600,Black disk shaped object seen in broad daylight in Winston-Salem, NC +2002-06-28,43.6275,-89.7708333,Wisconsin Dells,WI,egg,120,A giant egg shape trail moving slowly side to side and left after a couple minutes +2002-06-28,40.805,-81.9352778,Wooster,OH,circle,1200,It moved slow and made no sound. I have aviation experience and never seen anything like it. +2003-06-28,35.0844444,-106.6505556,Albuquerque,NM,circle,60,Photos of UFO in sky above Sandia Peak, NM +2003-06-28,37.3861111,-122.0827778,Mountain View,CA,unknown,4,I was walking home from a friend's house at around 4:30 AM after a night of playing board games. By the time I was about a 1/4 of a bl +2003-06-28,38.1302778,-121.2713889,Lodi,CA,oval,120,MY GIRFRIEND, BROTHER AND I WERE DRIVING SOUTHBOUND ON HAM LN.. I WAS DRIVING MY GIRLFRIEND WAS IN THE PASSENGER SEAT. SINCE MY JEEP HA +2003-06-28,28.5380556,-81.3794444,Orlando,FL,circle,2700,I saw something......then I felt something +2003-06-28,34.5227778,-82.4944444,Belton,SC,formation,1500,3 lighted circular air crafts +2003-06-28,42.1397222,-71.5166667,Milford,MA,unknown,2,At first i thought it was a star.. but then it got faster and it shined bright for a second.. then it dimmed then disapeard. it didnt +2003-06-28,36.8527778,-75.9783333,Virginia Beach,VA,light,18000,Bright green light "draws" serveral strange marks over the Atlantic Ocean +2003-06-28,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,360,A friend and I saw a round domed object metallic in appearance and rather large with lights located around the bottom edges and top. +2003-06-28,35.5961111,-78.1244444,Kenly,NC,light,900,A hazy,thin white line grew in brightness and slowly split open and burst with a white light! +2003-06-28,41.0602778,-111.9702778,Layton,UT,light,60,Tiny pinpoints seen moments apart, moving North at a steady, unwavering rate. +2003-06-28,40.7141667,-74.0063889,New York City (Manhattan),NY,disk,600,Light blue diskshape with a blinking red light on bottom above east river. +2003-06-28,40.7141667,-74.0063889,New York City (Queens),NY,disk,900,6/28/03 23:30 4 witnesses. This sighting happened at the Howard Beach Subway Station at JFK Airport. JFK is located in the southeastern +2003-06-28,35.13,-94.6583333,Shady Point,OK,disk,900,Completely dark with stars out, no moon. Pale almost translucent,very distinct shape,all 5 to 6 disk shaped objects. Rotating in a circ +2003-06-28,39.1405556,-121.6158333,Yuba City,CA,other,60,I saw a swiftly moving object which looked like a star in the night sky. It moved to quick to be anything I knew of. It manuevered. +2004-06-28,39.9611111,-82.9988889,Columbus,OH,unknown,60,Cloud formations with a light emmiting from the center of one. +2004-06-28,42.5463889,-71.1741667,Wilmington,MA,oval,60,Driving north on rt. 38 in Wilmington, I looked up into the sky at an angle of about 11:00and watched 10 small oval( like an egg on its +2004-06-28,42.4927778,-92.3427778,Waterloo,IA,rectangle,600,Strange triangle like plane that moved really really fast! +2005-06-28,47.4702778,-115.8008333,Mullan,ID,other,60,Weird things happening in the mountians of northern Idaho. +2005-06-28,34.4263889,-117.3,Hesperia,CA,disk,600,,I Had seen 2 Matilic shape crafts in the sky ,i had gone in to the Building in which ,I work and got my Friend she came out and ,I had +2005-06-28,26.1416667,-81.795,Naples,FL,sphere,2,White sphere with contrail. +2005-06-28,33.5441667,-84.2338889,Stockbridge,GA,other,2,a bright flash oval like object crossed in front of car from left to right +2005-06-28,41.6347222,-84.9994444,Angola,IN,light,30,Bright lights above Crooked Lake +2005-06-28,44.0522222,-123.0855556,Eugene,OR,unknown,1200,UFO flashing color changing lights over Eugene OR +2005-06-28,42.0527778,-124.2827778,Brookings,OR,diamond,120,A very bright, white-blue diamond shaped object crossed the sky from west to east,... +2005-06-28,32.9477778,-112.7161111,Gila Bend,AZ,disk,900,((NUFORC Note: Witness elects to remain totally anonymous; provides no contact information. PD)) +2005-06-28,32.9477778,-112.7161111,Gila Bend,AZ,disk,900,shocking unbelievable +2006-06-28,41.7561111,-124.2005556,Crescent City,CA,unknown,2,a flash f light then a craft fly north toward brookings +2006-06-28,30.1763889,-85.8055556,Panama City Beach,FL,diamond,5400,hypersonic acft +2006-06-28,42.8666667,-106.3125,Casper,WY,light,5400,8 objects viewed at different times that pulsated and flew upward in a spiral pattern +2006-06-28,45.2788889,-92.985,Forest Lake,MN,light,1320,Lights moved from sky to tree level, to house level and then slowly but in an unorderly way zizzaged darkened and dissapeered. +2007-06-28,42.9633333,-85.6680556,Grand Rapids,MI,light,10,Pulsing lights +2007-06-28,35.6180556,-118.4722222,Lake Isabella,CA,circle,300,A bright white round object with no specific outlines due to the reflection and altitude. +2007-06-28,47.6063889,-122.3308333,Seattle,WA,disk,600,black wingless bell-shaped object floating over downtown Seattle +2007-06-28,47.6063889,-122.3308333,Seattle,WA,other,1200,Black blob moving over Seattle +2007-06-28,30.5041667,-90.4611111,Hammond,LA,cigar,10800,A object appeared to hover over Hammond LA, the object changed colors the object was disc shaped +2007-06-28,35.3227778,-83.8075,Robbinsville (Near),NC,light,300,Four orange lights seem in Graham county, North Caroline. +2007-06-28,33.5736111,-79.0027778,Garden City Beach,SC,light,7200,Orange lights near Myrtle Beach S.C. appear at roughly 22:00 from 6/25 - 6/28 +2007-06-28,39.1652778,-86.5263889,Bloomington,IN,oval,60,Orange light changeing to amber +2007-06-28,33.6888889,-78.8869444,Myrtle Beach,SC,light,10,Red/orange lights over ocean appearing, moving horizontally, then disappearing +2008-06-28,33.6411111,-117.9177778,Costa Mesa,CA,other,2,Extremely fast, dark gray colored octagonal craft with equidistant dim red lights +2008-06-28,46.2858333,-119.2833333,Richland,WA,light,5,Strange light falls slowly in a spiral +2008-06-28,41.3525,-73.0088889,Woodbridge,CT,light,120,Mystery Light over Woodbridge, CT 06/28/08 +2008-06-28,40.9008333,-73.3436111,Northport,NY,sphere,300,Multiple sightings of a flashing bright white light flying in the tree line of the woods behind my yard this summer, 2008 +2008-06-28,32.8994444,-105.9597222,Alamogordo,NM,light,40,Bright red light hauling ass through the sky. +2008-06-28,26.1,-80.4,Weston,FL,cigar,10,Yelllow covered object over Weston, Florida +2008-06-28,40.7888889,-76.5591667,Shamokin,PA,cigar,120,Reddish orange round object +2008-06-28,42.9316667,-76.5663889,Auburn,NY,circle,120,Craft that looked like it was on fire or emitting a fire appearance glow. +2008-06-28,32.895,-97.5455556,Azle,TX,triangle,30,strange triungular craft sighted. +2008-06-28,42.4625,-83.1041667,Hazel Park,MI,circle,240,We saw a circular orange glowing object first going fast across the sky then it went at a slower pace. +2008-06-28,36.6061111,-118.0619444,Lone Pine,CA,oval,300,Saw a flat, elongated, oval-shaped, grayish object with three lights on the underside gliding silently east of Death Valley +2008-06-28,47.6588889,-117.425,Spokane,WA,disk,21600,Bright, pulsating lights on round object in Northern sky in Spokane on 6/28/08 +2008-06-28,32.895,-97.5455556,Azle,TX,triangle,13,Strange triangular craft with bright light on the nose. +2008-06-28,30.3933333,-86.4958333,Destin,FL,circle,60,3 small white/yellow circles +2009-06-28,39.9927778,-74.7880556,Mount Holly,NJ,oval,10,Three red lights that appeared to be the after burners of 3 craft flew silently overhead and dissappeared behind the tree line. +2009-06-28,38.7955556,-77.6141667,Gainesville,VA,cylinder,60,Large Red Glowing Orb Seen Landing In Virginia +2009-06-28,33.4483333,-112.0733333,Phoenix,AZ,diamond,1800,All birds flying in 1 direction away from the UFO's and clouds avoided the UFO's. +2009-06-28,37.8736111,-122.4555556,Tiburon,CA,triangle,30,Blue/green transparent triangle shaped object appearing over Blackies Pasture in Tiburon, CA. +2009-06-28,36.9902778,-86.4436111,Bowling Green,KY,circle,4,Two round gold reflecting discs stationary over kentucky +2009-06-28,32.7833333,-96.8,Dallas,TX,circle,1,round bright light with wedge of red light on it. Stationary in sky. Larger than full moon. Not a plane. Not a star. Not the moon. +2009-06-28,39.9,-79.7166667,Uniontown,PA,triangle,1200,Saw a triangular shaped object in the night sky above the Uniontown Mall, and moved very quickly with lights. +2009-06-28,39.1697222,-91.8827778,Mexico,MO,light,15,The light moved into view with no sound in the eastern sky, stopped and became really bright , dimmened then left. +2009-06-28,29.495,-98.6183333,Leon Valley,TX,formation,30,5 round orb-like lights gliding over the nights sky. +2010-06-28,33.5386111,-112.1852778,Glendale,AZ,unknown,1,A light seen traveling through the sky at high altitue at a very high speed before dissappearing +2010-06-28,39.7338889,-90.2288889,Jacksonville,IL,oval,300,Oval white light with no navigational lights travelling to the northeast. +2010-06-28,40.8611111,-79.8955556,Butler,PA,teardrop,180,i look up and it was east of butler very big stll not moving then vanished turned clear +2010-06-28,43.3266667,-78.3891667,Lyndonville,NY,circle,15,6/28/10- UFO spotted next to Lake Ontario in Lyndonville, NY +2010-06-28,39.2013889,-85.9213889,Columbus,IN,cigar,600,Chrome Blimp, miles in the air, travels halfway across horizon at same speed before beginning to emit a disturbing chemtrail. +2010-06-28,42.7341667,-90.4783333,Platteville,WI,cigar,900,While driving home we saw a Cigar/Oval shape, silver object reflecting off the sun in Southwestern Wisconsin. +2010-06-28,33.4483333,-112.0733333,Phoenix,AZ,teardrop,120,15 or 16 yellowish white lights coming from the west formed a large X and held that position, ascended and disappeared . +2010-06-28,29.7630556,-95.3630556,Houston,TX,changing,1800,ufo sighting in houston,texas +2010-06-28,39.7391667,-104.9841667,Denver,CO,sphere,45,Glowing orange orb over south metro Denver. +2010-06-28,34.4838889,-114.3216667,Lake Havasu City,AZ,light,60,Three red and orange lights in arc formation above Lake Havasu, AZ. +2010-06-28,43.6819444,-86.4197222,Mears,MI,sphere,600,Silent ball of light passed over as we attempted to make contact. It then came back and shined a brilliant light back at us +2010-06-28,41.6458333,-88.6216667,Sandwich,IL,sphere,60,Possible UFO Sighting in Sandwich, IL. +2010-06-28,40.8,-96.6666667,Lincoln,NE,light,480,I saw an orange light almost directly above my house, in east Lincoln. It was a little bigger than a star. +2010-06-28,38.9794444,-90.9805556,Troy,MO,other,15,Star/Planet Shaped Flying Object +2011-06-28,36.0397222,-114.9811111,Henderson,NV,fireball,1.5,Meteor? +2011-06-28,33.6888889,-78.8869444,Myrtle Beach,SC,unknown,10,We are staying around 70th/71st North Myrtle and saw the lights last night from our balcony @ approx 10:30p.  Strangest thing we have s +2011-06-28,39.7391667,-104.9841667,Denver,CO,sphere,300,Several spheres over Denver - Visibile with polarizing glasses and invisible to normal glasses. +2011-06-28,39.6133333,-105.0161111,Littleton,CO,sphere,240,Small light colored or silver sphere moving in circular pattern +2011-06-28,42.1291667,-80.0852778,Erie,PA,cigar,20,Reflective cigar shaped craft sighted over erie, pa; gone in seconds. +2011-06-28,39.9725,-74.5833333,Browns Mills,NJ,teardrop,30,teardrop shape +2011-06-28,44.2947222,-90.8513889,Black River Falls,WI,fireball,600,((HOAX??)) White and orange orb hovering over campsite, followed by continued sightings by myself and friends +2011-06-28,37.2152778,-93.2980556,Springfield,MO,triangle,90,Daytime triangular craft flying above Springfield, Missouri +2011-06-28,42.0347222,-93.6197222,Ames,IA,light,600,While taking my dogs out, I noticed a very bright light in the NW area of the sky, it was moving very slowly and at first I thought it +2011-06-28,36.1961111,-86.6225,Hermitage,TN,triangle,180,Object with lights flying my direction in a "casual" manner and vanishes. +2011-06-28,33.8941667,-78.4269444,Ocean Isle Beach,NC,light,3600,Strange Lights over Ocean Isle Beach, NC +2011-06-28,33.8941667,-78.4269444,Ocean Isle Beach,NC,light,3600,Strange lights over Ocean Isle Beach +2011-06-28,33.8158333,-78.6802778,North Myrtle Beach,SC,triangle,120,Three orange/reddish triangular lights over North Myrtle Beach! +2011-06-28,33.4666667,-79.1,Litchfield Beach,SC,light,1740,Quick, flashing lights over Litchfield Beach, SC +2011-06-28,38.1502778,-92.6177778,Osage Beach,MO,disk,180,Single slow cruising orb over the grand glaze bridge +2011-06-28,44.8769444,-73.3391667,Isle La Motte,VT,changing,300,An orb that disappeared into vapor and a flying vessel with a bank of four tail lights, +2011-06-28,41.6736111,-88.0016667,Lemont,IL,sphere,1800,Very bright light in heavily travelled airspace. ((NUFORC Note: Could not have been ISS at 23:00 hrs.. PD)) +2011-06-28,37.9886111,-84.4777778,Lexington,KY,sphere,120,Orange orbs flying at 500 feet elevation in a formation. Three in a line and a fourth trailing behind +2011-06-28,42.3713889,-83.4702778,Plymouth,MI,fireball,10800,2nd ufo sighting in that area. ((NUFORC Note: Student report. PD)) +2011-06-28,35.801944399999996,-86.9113889,Thompsons Station,TN,circle,120,There were two sightings of a quiet bright orange circular UFO that flew overhead at two different times. +2011-06-28,42.4222222,-88.6136111,Harvard,IL,light,120,two bright stationary lights one dim light originating from bright light moving away then fading. +2012-06-28,41.8786111,-71.3830556,Pawtucket,RI,sphere,60,((HOAX??)) I had just finished watching a rerun of ghost hunters and i got on my laptop and as usual i go to google. +2012-06-28,42.3266667,-122.8744444,Medford,OR,sphere,45,Ball of light crosses Southern Ore sky +2012-06-28,34.1511111,-118.4483333,Sherman Oaks,CA,diamond,1800,Something Metalic over Sherman Oaks California +2012-06-28,36.175,-115.1363889,Las Vegas,NV,disk,3600,disc shaped flying object with 2 person in +2012-06-28,40.5866667,-122.3905556,Redding,CA,flash,600,Hovering/slow moving shiny object. +2012-06-28,47.4875,-117.5747222,Cheney,WA,triangle,300,Several white triangular objects in the sky above our meadow, way too high to be birds +2012-06-28,40.26,-74.2741667,Freehold,NJ,fireball,10,Orange ball of fire seen by family in car +2012-06-28,38.3683333,-81.6997222,South Charleston,WV,light,7200,Highly erratic flight pattern by unknown object flying around multiple other common aircraft. +2012-06-28,34.1705556,-118.8366667,Thousand Oaks,CA,disk,240,Saucer with rotating lights on bottom flying over 101 Hwy Newbury Park, California. +2012-06-28,40.8680556,-97.5916667,York,NE,fireball,60,Large round red silent light +2012-06-28,32.2411111,-92.7158333,Jonesboro,LA,fireball,5,Blue flaming object heading westward over Caney Lake, la then low power boom. Then smaller booms. 10:39 pm. ((Meteor??)) +2012-06-28,40.6336111,-74.4077778,Plainfield,NJ,circle,600,ufo sighted over Plainfield NJ +2013-06-28,39.2666667,-81.5616667,Parkersburg,WV,circle,30,Large bright white light traveling quicky in the Northwest sky. +2013-06-28,47.6063889,-122.3308333,Seattle,WA,other,1,Possible UFO appears in a photo. ((NUFORC Note: Appears to be a seagull, with one wing raised above the bird's body. PD)) +2013-06-28,39.0408333,-98.1444444,Lincoln County,KS,unknown,1,Massive, swirling cloud formation in circular pattern +2013-06-28,42.6333333,-71.3166667,Lowell,MA,rectangle,180,It was sunny already, a rectangle object emitting light was observed and a jet following it. +2013-06-28,33.4352778,-112.3575,Goodyear,AZ,light,300,Perpendicular Light Formation. +2013-06-28,48.2933333,-122.6419444,Oak Harbor,WA,cylinder,85,I saw a black cylinder with a dome at one end and flame at the other with thrust sound moving slowly skyward. +2013-06-28,33.9136111,-98.4930556,Wichita Falls,TX,light,180,Clusters of reddish orange lights. +2013-06-28,34.09,-117.8894444,Covina,CA,oval,1200,Green oval and purple oval UFO in covina +2013-06-28,36.685,-93.1197222,Forsyth,MO,oval,60,I saw several red light in the sky. +2013-06-28,41.52,-81.5563889,Cleveland Heights,OH,circle,630,5 (five) bright orange-redish dime size Orbs flying in the eastern sky in Cleveland Heights, Ohio. +2013-06-28,39.6133333,-105.0161111,Littleton,CO,circle,2700,5 circular rotating lights in clouds over Littleton Colorado during storms +2013-06-28,45.52,-121.5955556,Parkdale,OR,triangle,60,Witnessed a triangular shaped craft with bright white lights travel across the sky then quickly shot straight up and disappeared. +2013-06-28,37.8805556,-84.5730556,Nicholasville,KY,fireball,20,Two fireballs with sonic booms. +2013-06-28,30.2669444,-97.7427778,Austin,TX,light,120,Round white light moves across the eastern part of the sky with incredible speed and disappears. +2013-06-28,42.0333333,-88.0833333,Schaumburg,IL,light,15,Bright circular light moves and fades to black. +2013-06-28,47.3352778,-116.8875,Plummer,ID,fireball,600,Close flyby and possible landing of orange fireball type object! +1964-06-29,33.7488889,-84.3880556,Atlanta,GA,changing,900,UFO over drive-in theatre. +1968-06-29,39.6236111,-77.4111111,Thurmont,MD,disk,3600,I've been visited many times but I can't remember anything , other than they mean us no harm. +1979-06-29,44.9444444,-93.0930556,St. Paul,MN,light,10,watched a yellow pt of light drop strt down, it stopped at roughly 45 deg l.o.s. to hor. it stopped, hovered a sec or two, then apparen +1986-06-29,27.9472222,-82.4586111,Tampa,FL,light,17,i was looking up at 12 oclock, with city light polution around, saw star sized lite going s. for aprox. 7 sec. 90 to lft. 3sec. n. 4se +1995-06-29,44.1636111,-93.9991667,Mankato,MN,other,180,Ball lightning phenom +1996-06-29,41.8136111,-71.3705556,East Providence,RI,light,3600,A large white pulsating light +1996-06-29,41.8136111,-71.3705556,East Providence,RI,light,2700,Very bright white obj. changes shape from circle to oval. 1/3 apparent diam of moon at closest approach. Blinking lights at top. +1997-06-29,33.8333333,-111.95,Cave Creek,AZ,triangle,900,One object, triangular (V-shaped) with 3 yellow lights, one at center of the V and one on each side at the end, with red lights at each +1997-06-29,36.7280556,-108.2180556,Farmington (Approx. 3 Miles N Of),NM,unknown,180,Saw what appeared to be two satellites flying in formation, but don't believe that objects were satellites or airplanes. +1998-06-29,39.5297222,-119.8127778,Reno,NV,circle,2700,objects appeared stationary at first, some floated like a hang glider. after about 15 minutes objects began to dart around sky and disa +1998-06-29,46.6022222,-120.5047222,Yakima,WA,fireball,10,A large, bright green was moving south. It was coming from the Ellensburg area. It was moving slow, stopped in mid air, then shot off a +1998-06-29,36.9486111,-84.0969444,Corbin,KY,unknown,300,it was seen in the clouds during a storm. a glowing cloud with bright round lights not unlike car headlights were on some of the time. +1999-06-29,39.8016667,-89.6436111,Springfield,IL,cigar,40,U.F.O, Seen while driving home. +1999-06-29,39.9561111,-75.0583333,Pennsauken,NJ,light,7200,I WAS WALKING FROM MY HOUSE WHEN I SAW 2 BRIGHT LIGHTS ABOUT 7OO FT FROM THE GROUND. +1999-06-29,41.7002778,-86.5094444,New Carlisle,IN,unknown,3000,At first I thought the object was a finish to some fireworks. Lights though continued to flash in same spot. After about 35-40 minutes, +1999-06-29,33.4483333,-112.0733333,Phoenix,AZ,rectangle,120,a rectangular craft with glowing engines flew across the sky at about 22:15 in the end of July or begining of August. +2000-06-29,39.7286111,-121.8363889,Chico,CA,circle,15,obect with incredibale manuvering capabilities +2000-06-29,35.6266667,-120.69,Paso Robles (Lake Nacimiento Region),CA,light,3600,Very bright, Color-Changing Light Seen Above Foothills; Moving in Left-Right and Up and Down Pattern +2000-06-29,44.98,-93.2636111,Minneapolis,MN,sphere,4,Light over minneapolis +2000-06-29,38.5766667,-92.1733333,Jefferson City,MO,triangle,1200,Bright Light and V shaped lights moving to the east. +2000-06-29,39.1961111,-121.19,Penn Valley,CA,circle,90,Having 1st beer (drinking day) on deck, yellow lite on, decended NW to SW erratic in <90s. AFB said no activity in area. +2001-06-29,40.6763889,-74.2911111,Kenilworth,NJ,triangle,60,I looked up in the sky, and saw what looked like a triangle, all the corners were lit, and the bottom looked as if it were glowing, I p +2001-06-29,47.6063889,-122.3308333,Seattle (North),WA,unknown,1200,I saw a stationary white object outside the north window where I work +2001-06-29,47.9680556,-92.8080556,Gheen,MN,unknown,180,NOTICED IN THE SOUTHERN SKY AN OBJECT THAT APPEARED TO BE A STAR BUT WAS MOVING TO THE NORTH AT A HIGH RATE OF SPEED. +2002-06-29,40.7608333,-111.8902778,Salt Lake City,UT,sphere,3,Cluster Sightings in the skys of Salt lake city. +2002-06-29,38.0194444,-122.1330556,Martinez,CA,oval,2,Large glowing ovoid descends rapidly west of Martinez, California. +2002-06-29,34.0522222,-118.2427778,Los Angeles,CA,cone,1200,upon looking at a orange colerd coneshape object slowly moving west to south around 3:45AM +2002-06-29,38.2972222,-122.2844444,Napa,CA,sphere,40,UFO's over Napa, Ca. sky. +2002-06-29,37.7477778,-84.2947222,Richmond,KY,other,1200,small mystery object over Wal-Mart +2003-06-29,36.0083333,-119.9608333,Kettleman City,CA,triangle,60,Slow moving triangular craft travelled NW across southbound I-5... made aircraft landing 2000 ft. W and parallel to I-5 +2003-06-29,41.1616667,-112.0255556,Roy,UT,oval,1800,UFO over Northern Utah/Hill Air Force Base +2003-06-29,44.8769444,-73.3391667,Isle La Motte,VT,light,15,Almost looked liked the object consumed the cloud or came from it +2003-06-29,47.8108333,-122.3761111,Edmonds,WA,light,1800,Two orange sun dogs near horizon seen from Edmonds looking west +2003-06-29,41.6713889,-89.9361111,Prophetstown,IL,flash,1,Three huge moving bright white flashes, the whole thing lasting only a fraction of a second. +2003-06-29,37.2202778,-77.2883333,Prince George,VA,sphere,120,Two large, animated, glowing lights Prince George +2003-06-29,36.8527778,-75.9783333,Virginia Beach,VA,light,1200,While packing to leave my beach house, I looked up and saw a large, odd-shaped cloud that was very clearly glowing with a blue-green li +2004-06-29,37.614444399999996,-93.4102778,Bolivar,MO,disk,1800,I saw 9 total ufo's in Bolivar, Mo.on 6/29/04 and others saw them too. +2004-06-29,48.5127778,-122.6113889,Anacortes,WA,oval,420,came down towards the ground and stopped in mid air for a minuete or two then went straight up and was gone. +2004-06-29,42.3583333,-71.0602778,Boston,MA,cigar,15,THERE WERE LARGE LIGHTS OUTSIDE MY WINDOW. +2004-06-29,47.0380556,-122.8994444,Olympia,WA,triangle,10800,Triangle shaped craft with three lights +2004-06-29,39.3994444,-84.5613889,Hamilton,OH,unknown,600,Black Area +2004-06-29,40.3844444,-77.8825,Mt. Union,PA,light,1500,At Creation East in Mt. Union Pennsylvania, a small light moved irregularly, giving the appearance of a UFO +2005-06-29,35.2188889,-99.5052778,Carter,OK,triangle,240,A low-flying triangular shaped object with three blinking lights flew for about four minutes, then vanished. +2005-06-29,26.5863889,-80.0522222,Lantana,FL,unknown,120,This is in reply to the report. I looked at the pictures and I can clearly see that this is an aircraft moving away from the witnes +2005-06-29,35.6527778,-97.4777778,Edmond,OK,sphere,60,Spherical gray or black object with rotating ring of lights making humming noise. +2005-06-29,34.7538889,-77.4305556,Jacksonville,NC,fireball,1200,in a building about 180 feet above ground observed two fireball shaped objects appear split and vanish +2005-06-29,26.5863889,-80.0522222,Lantana,FL,unknown,120,4 lights moving slowly and disappearing with loud boom +2005-06-29,45.4316667,-84.9919444,Harbor Springs,MI,light,5,moving planet-like object just disappears +2005-06-29,41.2230556,-111.9730556,Ogden,UT,light,1800,Four lights witnessed in West Weber county +2005-06-29,32.7252778,-97.3205556,Fort Worth,TX,light,240,Dual object +2006-06-29,47.7883333,-122.3075,Mountlake Terrace,WA,light,600,White, still object several miles up, disappeared & reappeared 10 degrees east, disappeared again. +2006-06-29,45.0791667,-93.1469444,Shoreview,MN,sphere,10,bulb like sphire out of nowhere +2007-06-29,40.6030556,-84.4916667,Neptune,OH,circle,180,six round orb lights in the sky and low to the ground +2007-06-29,41.7108333,-87.7580556,Oak Lawn,IL,circle,20,There was lots of traffic on the way to work. I was going past Denny's a restraunt traffic was moving 5 feet per 2 minutes. I saw a Fen +2007-06-29,33.4483333,-112.0733333,Phoenix,AZ,rectangle,240,2 red objects in the sky. Moved slowly at first. stopped for about 2 min. then quickly dissappeared. +2007-06-29,41.1238889,-100.765,North Platte,NE,triangle,300,Went to my truck and looked up and saw 3 very very hight lights moveing in a tri shap. shift and move north slowly , as watching the 3 +2007-06-29,40.0455556,-86.0086111,Noblesville,IN,fireball,180,Bright fireball spotted over Noblesville Indiana +2008-06-29,39.9522222,-75.1641667,Philadelphia,PA,cylinder,10,lastnite i saw a cylinder in the sky orange in color no tail 06/29/08 +2008-06-29,41.8011111,-74.7469444,Liberty,NY,disk,3600,Object hovered in the sky and then shot half way across the sky. There were yellow lights gyrating around it. +2008-06-29,37.3058333,-89.5180556,Cape Girardeau,MO,oval,900,5 silver, oval shaped objects moving slowly over Cape Girardeau, towards Illinois. +2008-06-29,35.6508333,-88.3933333,Lexington,TN,other,1800,On June 29񫺘 at approx. 8pm ,my 4 and 6 yr old girls asked what was an object in the sky was, if it was a shooting star? I told them +2008-06-29,30.6322222,-87.0397222,Milton,FL,triangle,7200,During a power outage I heard unusually loud roaring from a nearby naval base and saw a triangular shaped orange craft. +2008-06-29,36.323055600000004,-86.7133333,Goodlettsville,TN,diamond,10,Brief appearance of a very bright light at dusk and sudden disappearance as the object shot to the right. +2008-06-29,32.3122222,-106.7777778,Las Cruces,NM,unknown,5400,UFO's Over Las Cruces? +2008-06-29,37.78,-121.9769444,San Ramon,CA,disk,300,Disc/Saucer shaped with running lights +2008-06-29,42.6875,-83.2341667,Auburn Hills,MI,unknown,3600,Moving stars? +2009-06-29,40.7141667,-74.0063889,New York,NY,egg,300,For five minutes around midnight of 28 june we watched a silent slow-moving well-lit disc-shaped object moving from north to east.. +2009-06-29,36.175,-115.1363889,Las Vegas,NV,disk,300,Disk-like, very bright object in the sky with lights +2009-06-29,37.3394444,-121.8938889,San Jose,CA,light,45,I was standing on my balcony facing the south east when a lit object caught my attention. I thought it may have been an airplane when i +2009-06-29,43.0347222,-83.5180556,Davison,MI,light,3600,Lights spotted over Port Huron/Lapeer MI. ((NUFORC Note: Star or planet, we suspect. PD)) +2009-06-29,33.6305556,-112.3325,Surprise,AZ,light,300,20 or more silver/white/light flat objects near Phoenix, AZ spotted noon June 29, 2009 +2009-06-29,34.5361111,-117.2902778,Victorville,CA,diamond,10,Three diamond shaped craft at high altitude flying in perfect unison west of Victorville Ca. +2009-06-29,33.8838889,-84.5144444,Smyrna,GA,cigar,60,Very shiny cigar shaped object north of Smyrna, GA around 2:50 pm. +2009-06-29,40.5741667,-74.6102778,Somerville,NJ,unknown,600,NJ UFO? +2009-06-29,27.3361111,-82.5308333,Sarasota,FL,unknown,540,During a severe storm this looked like a fire in the sky +2009-06-29,34.9244444,-80.7436111,Waxhaw,NC,light,600,Slow travelling non-blinking light high in the sky that changed travel direction +2009-06-29,44.4713889,-116.7336111,Midvale,ID,fireball,240,Large orange fireball, turning to orange light heading North to South in central Idaho sky, hovering at times then disappearing. +2009-06-29,42.2138889,-83.1938889,Southgate,MI,circle,600,2 Very bright red round looking objects in southern sky. +2009-06-29,38.3397222,-122.7,Rohnert Park,CA,triangle,120,Triangle object dropping fireballs +2010-06-29,35.1225,-85.3438889,Signal Mountain,TN,light,2700,It seemed as if the military or some other sort of corporation was trying to identify this object that was in the sky that night. +2010-06-29,41.5769444,-73.4088889,New Milford,CT,light,3600,bright white light stands in the sky in conneticut. ((NUFORC Note: Possible sighting of Venus?? PD)) +2010-06-29,38.0491667,-87.2741667,Boonville,IN,light,4,A light drifted slightly to the left in the sky and then shot off into the distance and dissappeared. +2010-06-29,41.7688889,-87.8577778,Hodgkins,IL,light,6,at 11:17 pm I was at work taking a smoke break in baever oil co smoking area I obesereved a tiny white lite traveling south to north th +2010-06-29,39.7338889,-90.2288889,Jacksonville,IL,light,1200,Ball of light, west of city, was wiggling, observed for 20 min. ((NUFORC Note: Sighting of Venus? PD)) +2010-06-29,38.8402778,-97.6111111,Salina,KS,light,3600,Flashing red light in south western sky emits light orbs and is seemingly pursued by a fightert. ((NUFORC Note: Celestial body? PD)) +2010-06-29,38.4730556,-77.9969444,Culpeper County,VA,cigar,65,Orange, 3 lights with smaller lights frlying from and returning to it. +2011-06-29,39.7913889,-74.1955556,Waretown,NJ,triangle,45,It was triangular shape, with odd sound coming from it, and had flashing white and orange lights. +2011-06-29,36.7958333,-89.9577778,Dexter,MO,light,300,Star like object flying across horizon in Dexter, MO. +2011-06-29,37.9747222,-87.5558333,Evansville,IN,light,60,Orange Light Flying Over Evansville, Indiana! +2011-06-29,36.0652778,-119.0158333,Porterville,CA,disk,2700,disk shaped object getting brighter and dissapearing also moved a little. ((NUFORC Note: Possible sighting of celestial body? PD)) +2011-06-29,38.1502778,-92.6177778,Osage Beach,MO,disk,14,Bright unidentified object over Osage Beach +2011-06-29,43.1977778,-70.8741667,Dover,NH,unknown,10,A metallic object in the sky vanished before our eyes, with no clouds or anything else to obscure our view. +2011-06-29,32.7152778,-117.1563889,San Diego,CA,light,60,Star-Like UFO Flying Over S. CA (night) +2011-06-29,40.3280556,-79.6155556,Jeannette,PA,light,120,Silent light heading over night sky. +2011-06-29,38.3219444,-75.6205556,Fruitland,MD,light,5,We saw a bright light slowly fade while moving slowly. ((NUFORC Note: International Space Station over-flight. PD)) +2011-06-29,37.6391667,-120.9958333,Modesto,CA,light,300,A bright white light that looked like an asterisk flew high in the sky in an arc, then dimmed to a red dot before disappearing. +2011-06-29,40.7141667,-74.0063889,New York City (Staten Island),NY,light,30,I saw a brilliant white light moving. ((NUFORC Note: We suspect that the object was the International Space Station. PD)) +2011-06-29,37.6391667,-120.9958333,Modesto,CA,diamond,8,Very bright diamond shaped flying object that got dimmer and faded away. +2011-06-29,33.7444444,-118.3861111,Rancho Palos Verdes,CA,sphere,5400,Bright, amber colored sphere dances around night sky near coast of RPV, CA; remained stationary multiple times before moving. +2011-06-29,41.1669444,-73.2052778,Bridgeport,CT,circle,10,On JN 29 between 22:30 and 23:00 hrs while viewing the NE sky, observed 2 circular objects the size of a dime with a faint aura +2011-06-29,36.3302778,-119.2911111,Visalia,CA,light,300,Bright light that disapeared. ((NUFORC Note: Could not have been the ISS, which was over Washington at 22:15 hrs. this date. PD)) +2011-06-29,30.2347222,-92.2683333,Rayne,LA,light,6,It was around 11:25 July 29, 2011. I was walking home from my girlfriends. As I was walking up to my driveway I noticed a growing ball +2011-06-29,37.9886111,-84.4777778,Lexington,KY,sphere,120,Four orange balls flying very low with three in a line and a fourth behind moved slowly across sky with absloutely no noise. +2012-06-29,45.8852778,-95.3772222,Alexandria,MN,triangle,30,6 red non blinking triangle shape lights +2012-06-29,36.06,-86.6722222,Antioch,TN,light,10,Star like object grows in brightness then fades away. ((NUFORC Note: Probably a sighting of an Iridium satellite. PD)) +2012-06-29,41.1919444,-111.9705556,South Ogden,UT,other,120,Large v shaped craft offset connected to two spheres +2012-06-29,33.9830556,-118.0958333,Pico Rivera,CA,fireball,300,Yellow orange fireball traveling southeast seen by one witness in Los Angeles area. +2012-06-29,42.5586111,-113.7630556,Heyburn,ID,triangle,120,3 circles slowly moving across the sky in unison +2012-06-29,38.8338889,-104.8208333,Colorado Springs,CO,light,3,UFO streaks past helicopter during Colorado wildfires +2012-06-29,42.0411111,-87.69,Evanston,IL,light,180,Orange light, non-blinking, appearing to follow passenger jet +2012-06-29,30.6322222,-87.0397222,Milton,FL,sphere,300,Bright Yellow Orange Sphere travelling under the moon, from right to left.. +2012-06-29,35.9605556,-83.9208333,Knoxville,TN,other,180,Gray floating objects. One with reddish glow below. +2012-06-29,36.595,-82.1888889,Bristol,TN,unknown,60,Strange black shadow that blocked the moon along with weird rush of wind. +2012-06-29,36.9958333,-85.9119444,Glasgow,KY,formation,60,Orangeish red lights almost like firelanterns. +2012-06-29,35.4833333,-86.4602778,Shelbyville,TN,egg,1200,Erratic dim, and bright oval objects, moving across sky. +2012-06-29,45.5236111,-122.675,Portland,OR,fireball,90,Orange and yellow orb over portland moved northeast. +2012-06-29,48.7597222,-122.4869444,Bellingham,WA,fireball,180,Hovering red lights over Bellingham, WA bay +2012-06-29,48.7597222,-122.4869444,Bellingham,WA,light,240,Awesome! +2012-06-29,28.4366667,-99.2347222,Cotulla,TX,other,5,Large low flying UFO 18 miles outside of Cotulla, TX +2012-06-29,45.795,-88.0719444,Kingsford,MI,light,5,Fast moving light, showed 4 sharp perfectly spaced points of light through binoculars, +2012-06-29,44.5366667,-122.9058333,Lebanon,OR,oval,300,Bright Orange object moving slowly dropping something bright toward ground. +2012-06-29,40.3977778,-105.0744444,Loveland,CO,flash,3,Over little thompson river, on county 9 east. It was very smokey from the wild fires over the front range, it reappeared next day +2012-06-29,47.6063889,-122.3308333,Seattle,WA,light,240,I saw about 8-9 red-orange lights hover over the Eastside of Seattle and change formations from triangles and lines before disappearing +2012-06-29,30.2238889,-92.0197222,Lafayette,LA,light,180,((NUFORC Note: Witness provides no information. PD)) +2012-06-29,40.8022222,-124.1625,Eureka,CA,sphere,300,Driving at night near the Northern California Coast - six orange orbs in the sky +2012-06-29,39.3772222,-76.54,Parkville,MD,fireball,45,Witnessed an orange, yellow, white with red glow UFO on June 29th, 2012, slowly desending in Parkville Maryland. +2012-06-29,42.8711111,-97.3969444,Yankton,SD,light,300,Steady deep red light. +2013-06-29,40.0455556,-86.0086111,Noblesville,IN,circle,1800,15 orange floating cirlces above noblesville 6/29/13. +2013-06-29,47.6936111,-114.1622222,Polson,MT,fireball,8,DULL RED/ORANGE OBJECT, LOOKED LIKE IT WAS ON A LOW ORBIT, THIS LASTED ABOUT 8 SECONDS. +2013-06-29,35.6919444,-84.8608333,Spring City,TN,oval,60,Very bright blue/white shiny oval object, no sound & stationary, smooth solid with no windows or other features. +2013-06-29,35.0455556,-85.3097222,Chattanooga,TN,triangle,30,Triangle shaped object; pure white in color +2013-06-29,40.9816667,-95.1038889,Stanton,IA,sphere,90,Solid Sphere observed over Viking Lake State Park. +2013-06-29,36.2944444,-76.2513889,Elizabeth City,NC,other,600,Red glow observed during storm, Locating of glow lines up to Harvey Point. +2013-06-29,30.4261111,-88.8908333,D'iberville,MS,light,45,Saw 2 orange/copper color glowing objects trailing each other just over tree line headed south! They were not moving very fast. As they +2013-06-29,38.9780556,-122.8383333,Kelseyville,CA,unknown,600,Extremely bright hovering light. +2013-06-29,40.2291667,-74.9372222,Newtown,PA,light,2700,Red orange lights moving in sky. +2013-06-29,27.9011111,-81.5861111,Lake Wales,FL,sphere,10,Orange, low flying & silent orb in bad weather. +2013-06-29,43.1586111,-76.3330556,Baldwinsville,NY,circle,180,Three orange orb-like structures were seen for around 3 minutes. +2013-06-29,43.1586111,-76.3330556,Baldwinsville,NY,sphere,180,Three equidistant orange spherical orbs were seen by four of us for about three minutes. +2013-06-29,39.9241667,-83.8088889,Springfield,OH,fireball,600,Red floating fireball seen over downtown Springfield, OH. +2013-06-29,47.8108333,-122.3761111,Edmonds,WA,light,600,Approximately 24 Orange Lights Over Puget Sound. +2013-06-29,40.1997222,-76.7313889,Middletown,PA,light,300,2 sets of bright lights seen and did not leave area for approximatly 5 minutes. No sound. Witnessed by 8 people. +2013-06-29,39.7683333,-86.1580556,Indianapolis,IN,cylinder,15,((HOAX??)) Massive cylinder shaped object, thousands of feet long. ((NUFORC Note: Witness provides no personal data. PD)) +2013-06-29,46.0994444,-91.8247222,Minong,WI,light,180,Four unexplainable lights came from the north and move in separate directions and disappeared. +2013-06-29,44.8613889,-92.6236111,River Falls,WI,light,1200,Mysterious lights over River Falls, WI. +2013-06-29,44.9444444,-93.0930556,St. Paul,MN,other,90,30 Bright Orange UFO's flying in line from North to South. +2013-06-29,35.8455556,-86.3902778,Murfreesboro,TN,fireball,120,Light in sky moving vertically fast and changed into disc shape. +2013-06-29,38.9686111,-77.3413889,Reston,VA,light,600,Several white lights darted and zoomed in random patterns across a small area of sky. +2013-06-29,40.4872222,-85.6130556,Gas City,IN,fireball,300,Four fireballs rising from the horizon into the clouds. +2013-06-29,37.3769444,-77.5061111,Chesterfield,VA,light,360,Hovering circular ball of light that kept flashing. Followed it to figure out exactly where it was. It eventually faded away. +1939-06-30,34.5227778,-82.4944444,Belton,SC,sphere,10,Dark red arched acrossed southern sky at dusk in summer of 1939. +1946-06-30,39.7811111,-120.6155556,Blairsden,CA,sphere,10,Looked up and saw sphere or disk 30-50 feet in diameter which was white or pale green in color. +1946-06-30,47.8208333,-121.5538889,Index,WA,fireball,30,Greenish fireball flying nearly horizontal and Greyish figure 1-2 Mo. later +1947-06-30,39.2902778,-76.6125,Baltimore,MD,oval,8,I wasn't the only saw them +1948-06-30,39.2902778,-76.6125,Baltimore,MD,oval,8,Two UFO"S in flight over Baltimore leaving trails no sound that influence me. +1949-06-30,35.9605556,-83.9208333,Knoxville,TN,other,900,We saw a small object the size of a car shaped like a jet that hovered near the ground in 1949 or 1950. +1950-06-30,45.9697222,-89.8919444,Lac Du Flambeau,WI,disk,30,saucer like disc submerging from waters, disapears instantaneously, water boils before submerging. +1950-06-30,38.3902778,-105.1180556,Florence (??),CO,disk,3,Possible ufo in a western movie. (NUFORC Note: "Rio Grande," with John Wayne. Reported to NUFORC before. PD)) +1950-06-30,38.3902778,-105.1180556,Florence (??)),CO,light,0.5,The move classic Rio Grand , in the sean between John Wayne and Ohair where he gives her flowers UFO moves in from uper left to right b +1951-06-30,40.7555556,-73.8858333,Jackson Heights,NY,disk,5,While watching a movie "Captain Horatio Hornblower", the HMS Southerland in a battle with a French castle and four French ships,(about +1951-06-30,33.5205556,-86.8025,Birmingham,AL,unknown,3,I was suddenly aware of most of the sky being filled with a white light. No sound. It moved away quickly (one to three seconds) with no +1952-06-30,31.4227778,-103.4927778,Pecos,TX,disk,7200,West Texas to Carlsbad NM +1952-06-30,40.7141667,-74.0063889,New York City (Bronx),NY,disk,60,We were flying kites on the roof when someone yelled look at that.A disk was(approx.the size of a dime at arms length) was sitting in t +1952-06-30,47.3075,-122.2272222,Auburn,WA,oval,60,Early nighttime sighting of huge oval object for 1 minute. +1952-06-30,25.7738889,-80.1938889,Miami,FL,disk,18000,No one is able to believe +1953-06-30,41.4994444,-81.6955556,Cleveland,OH,fireball,35,The object came from the north from Canada meteor shaped fire ball with crackling sounds and a little tail and sparks glowing red and o +1953-06-30,46.1469444,-122.9072222,Kelso (Cowlitz Co. Hills),WA,oval,300,Three UFO's witnessed by local people in the northwest U.S. in the early 1950s still unexplained. +1954-06-30,33.9163889,-118.3516667,Hawthorne,CA,light,120,Stationary light for several minutes (far away), takiing off suddenly at great speed. +1954-06-30,34.1477778,-118.1436111,Pasadena,CA,circle,300,An incandescent white circular object passed over Pasadena, CA and ejected a smaller version of itself. +1955-06-30,34.6452778,-118.2172222,Quartz Hill,CA,disk,2,childhood ufo +1955-06-30,33.5777778,-101.8547222,Lubbock,TX,cigar,120,Cigar shaped cloud and left very fast. +1955-06-30,35.8655556,-101.9727778,Dumas,TX,light,600,1955 - Air Force jets pursue lights over small Texas community. +1955-06-30,34.7227778,-76.7263889,Morehead City,NC,disk,300,Mid 1950's Saucer in North Carolina, Multiple Witnesses. +1956-06-30,40.1438889,-75.1161111,Willow Grove,PA,light,7200,Willow Grove Naval Air Station, PA. +1956-06-30,37.3058333,-89.5180556,Cape Girardeau,MO,diamond,300,Angular UFO sighted as a child +1956-06-30,40.4861111,-74.4522222,New Brunswick,NJ,disk,600,Four Saucers, over the City of New Brunswick, NJ, in the summer of 1956 +1956-06-30,29.7630556,-95.3630556,Houston,TX,triangle,900,NA +1957-06-30,42.5466667,-83.2113889,Birmingham,MI,unknown,300,Grey alien drills into my back when I was a child in the 1950's +1957-06-30,40.7141667,-74.0063889,New York City,NY,teardrop,600,glowing lights lead the way +1957-06-30,40.8075,-91.1127778,Burlington,IA,circle,90,Slow travel when observed, followed by an abrupt direction change with unbelievable acceleration. +1957-06-30,35.2783333,-93.1336111,Russellville,AR,sphere,600,Huge orange ball floating over Russellville, Arkansas, in late 50s. +1957-06-30,43.33,-78.555,Barker,NY,disk,180,1957 Four miles south of Barker NY, 6 kids, 1 adult saw saucer at dusk, 2 kids saw it again in daylight next day +1957-06-30,37.8869444,-122.2966667,Albany,CA,circle,60,What looked like a moving star and a stationary star seemed to collide, whereupon the stationary star also began to move. +1957-07-01,32.7833333,-96.8,Dallas,TX,other,300,vee shaped lights 7 to 11 over dallas texas in 1957 with no sound. +1958-06-30,47.6447222,-122.6936111,Silverdale,WA,cylinder,32400,Cylindrical craft hovered above the house with blinking lights of multiple colors for a long duration of time. +1958-06-30,33.6675,-84.0177778,Conyers,GA,teardrop,300,Sighting of a UFO ca. 1958. +1958-06-30,44.2097222,-69.0652778,Camden (Penobscot Bay),ME,disk,2,Mother and pre-teen son witness a silver disc crash into Penobscot Bay. +1958-06-30,38.4861111,-97.2277778,Durham,KS,light,2,1950's Durham, KS evening after dark 2 bright lights going across southern sky for several seconds +1958-06-30,29.7955556,-90.8227778,Thibodaux,LA,fireball,90,Historical Sighting I have related this many times, but never committed it to writing until now. I was motivated to write this by the +1959-06-30,43.5977778,-88.2788889,Campbellsport,WI,circle,1200,I was a radar operator at Fallon NAS, we were a parasite unit of the air force. We got a call from the Navy control tower to check out +1959-06-30,40.7141667,-74.0063889,New York City (Bronx),NY,oval,1200,My husband and I didn't believe in UFO's until we actually saw one! +1959-06-30,33.4483333,-112.0733333,Phoenix,AZ,disk,60,1959 Saucer shaped object sighting Phoenix Arizona +1960-06-30,41.9675,-76.4305556,Litchfield,PA,other,600,When I was around 10 years old I was going to where my dad was baling hay on top a hill.My brother Glenn was with me and when we ca +1961-06-30,36.0725,-79.7922222,Greensboro,NC,cigar,10,Silver cigar craft came out of the woods +1961-06-30,28.5380556,-81.3794444,Orlando,FL,disk,300,Orlando sighting in early 1960's, midday, group of children and parents, at a birthday party. +1961-06-30,33.9172222,-118.0111111,La Mirada,CA,cigar,172800,Everyone in my family remembers the nightly sightings of 5 orange cigar shaped objects that appeared in the sky over several days in th +1961-06-30,32.8519444,-100.4652778,Rotan,TX,sphere,1800,large, beeping orb with lighted spires +1962-06-30,34.2647222,-118.5222222,Granada Hills,CA,sphere,5,Ping-pong size floating ball observed through window in San Fernando Valley, 1962 +1962-06-30,34.52,-115.5119444,Cadiz,CA,unknown,10,We saw a silver brushed sillhoutte about the size of a person floating about 1-2 ft above the ground with no features of any sort. +1962-06-30,42.489444399999996,-83.1447222,Royal Oak,MI,disk,600,Ship over Royal Oak, early 60s +1962-06-30,40.7441667,-73.4825,Bethpage,NY,triangle,300,While I was a young boy playing in my dads belair around 1962 or 1963. I saw multiple bright white lights traveling west to east about +1962-07-01,28.5380556,-81.3794444,Orlando (Nearby),FL,sphere,1500,Sphere with lights encircling its equater hovering above a lake in Florida for 25+minutes in the 1960's +1963-06-30,40.3266667,-78.9222222,Johnstown,PA,rectangle,300,very large, stealth shaped, as big as a football field. dome on bottom that rotated. an the dome was iluminated +1963-06-30,33.0011111,-97.4841667,Newark,TX,disk,120,30 someodd years later and I finally saw proof of my early morning sighting +1963-06-30,40.7608333,-111.8902778,Salt Lake City,UT,disk,120,SAUCER5 SHAPED AND SILVER +1963-06-30,33.8352778,-117.9136111,Anaheim,CA,disk,1200,First sighting 1963 disk shaped 50 foot diameter, no noise and was stable when stopped over my head. +1963-07-01,35.8241667,-78.315,Zebulon,NC,other,600,Glowing football in night sky witnessed by five people +1964-06-30,46.8711111,-89.3138889,Ontonagon,MI,rectangle,180,Large rectangular shape heading up River St. to Lake Superior. +1964-06-30,46.9811111,-123.8880556,Hoquiam,WA,other,300,I was about five or six years old, I was on my way down a primitive road to play baseball with the rest of the kids, out in the field t +1964-06-30,40.3930556,-90.1547222,Lewistown,IL,other,120,Not a craft, but a humanoid being that emanated light... +1965-06-30,48.5466667,-117.9044444,Colville,WA,flash,30,Bright as day in the middle of the night. +1965-06-30,41.31,-122.3094444,Mount Shasta,CA,cigar,1800,Metallic cigar shaped object, windowless, soundless, motionless, unlighted, daytime/clear blue sky sighting over old Drive-in movie the +1965-06-30,29.1869444,-82.1402778,Ocala,FL,cigar,3600,Abductioin observed by Sherif Deaputy and myself +1965-06-30,36.0013889,-94.0080556,Elkins,AR,disk,600,On a clear night you could see the saucer +1965-06-30,36.8188889,-76.2752778,Chesapeake (Norfork Area),VA,egg,20,lookng out bedroom window saw object going by aprox distance 1500ft away and about1000ft high speed about 400-600mph. whole object woul +1965-06-30,42.7972222,-78.8236111,Blasdell,NY,oval,30,It was a summer night. While I was walking, going into my house I looked up above my neighbors house about 30 feet above the roof. And, +1965-06-30,41.4733333,-74.5388889,Otisville (Near),NY,unknown,30,Light extending to ground than back to central area than qutckly moving from one section of sky to another +1965-06-30,33.7091667,-117.9527778,Fountain Valley,CA,sphere,300,Round orange object with a tail traveling down from the, that stopped in midair and hovered, then disappeared toward the east +1966-06-30,40.6325,-78.9838889,Manor,PA,oval,5,Bright light drifts past window and lights up whole room. +1966-06-30,36.7536111,-120.3805556,Mendota,CA,disk,300,Disc shaped in 1966. Stopped my parents' car. +1966-06-30,40.7141667,-74.0063889,New York City (Bronx),NY,circle,10,Orb or throgsneck bridge. +1966-06-30,38.6591667,-87.1727778,Washington,IN,circle,30,Small spinning circular shaped object passes between houses but doesn't come down. +1966-06-30,41.7283333,-122.5266667,Montague,CA,other,600,Fast moving star object over Montague, CA. +1966-06-30,35.8422222,-90.7041667,Jonesboro,AR,disk,120,Clear day, a disk shape with rotating multi colored lights, silently hovering over trees in the back yard. +1966-06-30,39.9277778,-122.1780556,Corning,CA,disk,300,2 small (2 ft) & 1 large saucers seen at close range by multiple witnesses, Northern CA about 1966 +1966-06-30,40.0438889,-75.3880556,Wayne,PA,cigar,30,Rocket-like UFO Seen Flying Over Suburban Philadelphia In Summer of 1966 +1966-06-30,40.2761111,-123.6352778,Blocksburg,CA,disk,600,? +1966-06-30,34.9494444,-81.9322222,Spartanburg,SC,light,900,Summer of 1966 - bright orange round object first thought to be rising full moon +1966-06-30,35.6869444,-105.9372222,Santa Fe,NM,disk,300,three eyewitness's and picture in news paper of ufo +1966-06-30,38.8966667,-121.0758333,Auburn,CA,other,300,Craft was low to the ground, and stopped at witnesses. +1966-06-30,36.0997222,-80.2444444,Winston-Salem,NC,other,1200,Football shaped objects with lights hoovers in neighborhood and streaks of with great bursts of speed and returns. +1967-06-30,42.8330556,-108.73,Lander,WY,light,600,They were just lights, but very curious lights at that. +1967-06-30,39.7252778,-84.1741667,Oakwood (Dayton),OH,circle,180,In the forty years since, I have yet to see anything that will explain away what I witnessed in the middle of the night. +1967-06-30,34.4358333,-119.8266667,Goleta,CA,unknown,10800,Chased by Grays in Santa Barbara in 1967 +1967-06-30,30.275,-89.7811111,Slidell,LA,circle,60,I appreciate this forum to report what I saw. I was a young lad who went outside to feed the dog in the back yard. While walking back t +1967-06-30,39.2486111,-94.9,Lansing,KS,light,300,Silent light darts to avoid collision. +1967-06-30,33.5602778,-81.7197222,Aiken,SC,oval,180,Strange oval shaped silent metallic object about 2000 feet ovrehead with four oscillating lights +1967-06-30,42.0697222,-87.7877778,Glenview,IL,circle,900,Large ball of light hovering above the road in Glenview, Illinois - 25 - 30 observers - 1967 or 1968. +1967-06-30,34.91,-86.4277778,New Market,AL,triangle,60,Discs in V-formation flying over Northern Alabama in the summer of 1967 +1967-07-01,40.6936111,-89.5888889,Peoria,IL,disk,120,2 or 3 saucers flying in formation in the sky during the day that shot off quickly. +1968-06-30,33.9791667,-118.0319444,Whittier,CA,sphere,420,A sphere of blue/white light/energy descended from the night sky to just outside my window. It was 8-10" and brissling with an electri +1968-06-30,33.4511111,-86.9966667,Hueytown,AL,oval,600,Almond colored disc four witnesses saw beings in vehicle. +1968-06-30,42.1944444,-71.8361111,Auburn,MA,other,720,UFO sighting outside of window hovering 25 feet away +1968-06-30,36.7069444,-97.0852778,Ponca City,OK,light,300,Fast moving red 'dot' in the night sky, suddenly made a sharp right angle turn and flew into space. +1968-06-30,33.66,-86.8127778,Gardendale,AL,disk,6,daylight sighting of flying disk in late 1960s in North Central Alabama +1968-06-30,42.8711111,-97.3969444,Yankton (Gavins Point Dam),SD,unknown,1200,Blue sky black, beam of light, South Dakota camp rangers on blow horns "what you have just seen was a rare phenomenon of the weather. +1968-06-30,43.2363889,-120.6358333,Christmas Valley,OR,disk,240,Step-father and his crew saw a silent, silver colored disk following (above) the power lines. +1968-06-30,38.3519444,-97.2041667,Hillsboro,KS,unknown,300,No saucers no lights Just 6 olive dull green humanoids about 7ft came to Hillsboro Missouri and studied me and left +1968-06-30,37.9577778,-121.2897222,Stockton,CA,disk,600,It simply vanished Right in front of my eyes. +1969-06-30,29.9888889,-97.8769444,Kyle,TX,oval,180,object expoded before hitting the ground in 1969 near San Marcos Texas. +1969-06-30,38.8627778,-87.2255556,Westphalia,IN,egg,3600,ret. mst. u.s.a.f +1969-06-30,43.2363889,-120.6358333,Christmas Valley,OR,disk,300,We saw three silent silver colored disks zoom in from different directions, instantly stop, hover , and then zip off. +1969-06-30,42.3313889,-83.0458333,Detroit,MI,light,30,We were under brilliant illumination that was much brighter than the 2:30 pm afternoon clear day sunlight. +1969-06-30,39.7683333,-86.1580556,Indianapolis,IN,disk,1200,Large silver sphere/saucer-shaped object that hovered for several minutes. Emitted dots (in data-style format) from side. +1970-06-30,21.3069444,-157.8583333,Honolulu,HI,sphere,2,ufo patrols the coastline skies of hawaii; not a shooting star, nor meteor;nor a scheduled airliner. +1970-06-30,47.3811111,-122.2336111,Kent,WA,disk,30,We saw a saucer silently pass over our panicking horses and then our barn. Had alternate flashing lights a round it, blue and green +1971-06-30,42.8386111,-84.1783333,Morrice (Near),MI,disk,40,We were walking and came to the corner of S. Corey Rd. and Lovejoy Rd. when all of a sudden over our right shoulders we saw the craft. +1971-06-30,39.7588889,-84.1916667,Dayton,OH,oval,30,Dayton, Ohio sighting +1972-06-30,37.2708333,-79.9416667,Roanoke,VA,unknown,300,WHAT LOOKED LIKE STARS IN SKY THAT WERE MOVING IN FORMATION +1972-06-30,35.9172222,-82.3011111,Burnsville,NC,circle,600,I saw the same type of UFO at two different times in my life, once at age nine and again at age 30. +1972-06-30,41.4644444,-81.5088889,Beachwood,OH,disk,120,i was a passenger in a vehicle and as i looked up in the sky ( it was a clear, bright summer day) i saw 3 or 4 metallic (bright) saucer +1972-06-30,28.1458333,-82.7569444,Tarpon Springs,FL,light,480,N ine colored hovering spheres and helicopters rbelow spotted from holiday lake est. over florida power +1972-06-30,35.9138889,-81.5391667,Lenoir,NC,disk,60,APPROX. SUMMER 1972 AT A DRIVE INN WITH PARENTS AND BROTHERS AND SISTER.MY BROTHER KEPT SAYING HE SAW SOMETHING.AFTER LOOKING I SAW A D +1972-06-30,39.1094444,-87.6563889,Hutsonville,IL,disk,120,A low pitch humming noise and a series of bright lights noted at ground level near an electrical power plant +1972-06-30,36.4369444,-77.2291667,Conway,NC,disk,1800,A metallic looking large Disk shaped Object landed in the Fields,and nothing ever grew again. +1972-06-30,36.0725,-79.7922222,Greensboro,NC,light,300,Fluorescent orange boomerang shapes. +1973-06-30,29.1869444,-82.1402778,Ocala,FL,unknown,1200,Unknown flying object circled home at high rate of speed creating a vacuum and making a high pitched whistling/whooshing sound. +1973-06-30,37.1183333,-82.8269444,Whitesburg,KY,cigar,600,Cigar shaped craft stopped overhead - burned circle later in yard. +1973-06-30,33.6188889,-117.9280556,Newport Beach,CA,formation,10,Flying V shaped lights, newport beach, ca.1973 +1974-06-30,32.4608333,-84.9877778,Columbus,GA,disk,180,as close as a telephone pole +1974-06-30,37.2152778,-93.2980556,Springfield,MO,circle,1200,Very close and very vivid +1974-06-30,34.0522222,-118.2427778,Los Angeles,CA,sphere,300,white sphere with 3 triangular-shaped points, made loud humming/ringing noise +1974-06-30,38.0608333,-97.9294444,Hutchinson,KS,cigar,7500,Ufos becom Ifos +1974-06-30,40.7141667,-74.0063889,New York,NY,disk,900,Glowing, bi-convex, disc-shaped craft cruised up the canyons of Manhattan in daylight for all to see. +1974-06-30,39.9258333,-75.12,Camden,NJ,rectangle,300,bronze colored ufo hangs over high street in camden new jersey in the early 70's +1974-06-30,43.0255556,-74.9863889,Herkimer,NY,cigar,120,It was mid -1974 or 1975 , heading west after sunset ( it was dark) , I came up a slight rise & noticed a peculiar steady light quite +1974-06-30,41.9944444,-70.725,Kingston,MA,disk,600,Saucer emits beams of light +1974-06-30,40.7141667,-74.0063889,New York City (Bronx),NY,circle,600,When we were asked to leave. +1974-06-30,48.2325,-101.2958333,Minot,ND,other,1800,Translucent arch over road, small cloud that changed colors and sparkled. +1974-06-30,37.3341667,-79.5233333,Bedford,VA,light,180,Strange light on mountain, power outage in house, then flew over our vehicle. +1975-06-30,41.0263889,-73.6288889,Greenwich,CT,sphere,30,this was a long time ago about 1974-1976 dont know. then i found this site and decided to report it +1975-06-30,40.9525,-72.9258333,Rocky Point,NY,light,900,Moving light viewed from a house in Rocky Point. +1975-06-30,33.8886111,-117.8122222,Yorba Linda,CA,formation,3600,I am reporting this years later. One night I could not sleep, and so I was looking outside my window from the couch I slept on at my gr +1975-06-30,43.6522222,-94.4608333,Fairmont,MN,cigar,300,saw an extremely large cigar shaped ship moving slowly and very close to the ground. +1975-06-30,44.2722222,-88.3388889,Kimberly,WI,triangle,1200,Black triangle sighted in 1975, Kimberly, Wisconsin. +1975-06-30,37.2152778,-93.2980556,Springfield,MO,circle,1200,Very close and very vivid +1975-06-30,38.2541667,-85.7594444,Louisville,KY,circle,600,MY SISTER,MY YOUNG DAUGHTER AND I WAS DRIVING ON I 64 GOING WEST WHEN I LOOKED UP AND SAW THIS CRAFT HOVERING OVER THE LEFT FENDER OF M +1975-06-30,42.0177778,-95.355,Denison,IA,unknown,120,Red Geometic "Amebia" +1975-06-30,34.5033333,-82.6502778,Anderson,SC,circle,300,no noise, with no light, but with white glow, no markings, very close to ground and moving slow 1974-75 +1975-06-30,25.7902778,-80.1302778,Miami Beach,FL,light,300,10 bright lights move slowly north across south beach sky in 1975 +1975-06-30,25.7738889,-80.1938889,Miami,FL,sphere,1800,Corroborating Witness +1975-06-30,35.9983333,-76.9463889,Windsor,NC,disk,120,Disk-shaped object with glowing red dome hovered a few feet from the ground, came close, then shot off. +1975-06-30,40.0377778,-76.3058333,Lancaster,PA,unknown,600,Both my wife and I worked at the Park City Mall, and were just coming home from work on a warm, humid summer night. We lived in an apa +1975-06-30,34.0686111,-118.0266667,El Monte,CA,other,3,it was a dark winter eve. 2 round disk appeared on the horizon and flew from SW traveling NE very fast no noise. im a pilot +1976-06-30,40.5172222,-75.7777778,Kutztown,PA,disk,240,UFO sighted NE of Kutztown, PA-1976 +1976-06-30,43.8355556,-101.8938889,Cactus Flat,SD,fireball,5400,Fiery oranges red object hovering over Minuteman II Launch Facility alarms sounded security team dispatched to investigate. +1976-06-30,37.3394444,-121.8938889,San Jose,CA,sphere,3600,remembered +1976-06-30,41.9463889,-86.3388889,Berrien Springs,MI,disk,300,I have seen two UFOs clearly. +1976-06-30,42.375,-71.1061111,Cambridge,MA,diamond,60,Jefferson Park, Cambridge Mass, 2 children sight 50ft craft-speak about it 30+years later +1976-06-30,37.0597222,-86.6069444,Hadley,KY,oval,120,1976 20:00 Hadley Ky oval 1-2 minutes silent nearby shape moving north to south +1976-06-30,34.2694444,-118.7805556,Simi Valley,CA,light,35,Thought were satellites, but too low and 90 degree "turns", twice. +1976-06-30,42.1297222,-76.8211111,Elmira Heights,NY,circle,1200,Not dreaming becasue I went back to the same police officer +1976-06-30,30.4288889,-90.5486111,Springfield,LA,disk,180,My body was scanned by a beam from a small flying object and I received a message of kindness/love. +1976-06-30,28.555,-82.3880556,Brooksville,FL,disk,60,Upclose saucer experience +1977-06-30,35.2783333,-93.1336111,Russellville,AR,light,1200,Hovering over the Nuclear Plant +1977-06-30,33.9791667,-118.0319444,Whittier,CA,triangle,7200,Huge Triangle over Whittier in 1977 +1977-06-30,37.3394444,-121.8938889,San Jose,CA,flash,15,Between 1973 and 1977 retuning home from dinner with my parents between 8:00pm and 9:00pm. I was lying down in the back seat passenger +1977-06-30,42.375,-71.1061111,Cambridge,MA,other,600,What is described as the Dover Demon I 100 percent saw no question with 4 other people +1977-06-30,41.2147222,-79.3855556,Clarion,PA,diamond,3600,Lights and Craft in Clarion, PA +1977-06-30,42.1097222,-86.48,St. Joseph,MI,oval,300,Detailed Observation of Hovering UFO in St. Joseph, Michigan on July 30, 1977 +1977-07-01,33.9561111,-83.9880556,Lawrenceville,GA,disk,120,Silent saucer seen hovering over pine trees then zoomed away. +1978-06-30,36.8525,-121.4005556,Hollister,CA,disk,18000,Silver Disk Shape Object Flys over Motorcross Hill Climbers Heads in Hollister, CA +1978-06-30,27.7705556,-82.6794444,St. Petersburg,FL,formation,60,Personal confirmation that UFOs cloak themselves and could be in our skies at any given time of day or night. +1978-06-30,41.055,-73.8205556,Elmsford,NY,disk,120,u.f.o. thay are real +1978-06-30,41.865,-80.79,Ashtabula,OH,cylinder,2700,I am 30 years late reporting it. I was in the gulf area in Ashtabula Ohio with my sister and brother in law. It's hard to explain but t +1978-06-30,42.7652778,-71.4680556,Nashua,NH,disk,120,when i was about 10 yrsw old my dad sent me to the store for bread. i left the house and headed south 3 houses and turned left (east) f +1978-06-30,29.3625,-100.8963889,Del Rio,TX,oval,120,I was driving back to base when I spotted a white light hovering over the runway. +1978-06-30,40.7141667,-74.0063889,New York City (Bronx),NY,oval,900,It was clear as day and there was NO mistake +1978-06-30,42.2408333,-83.2697222,Taylor,MI,disk,300,Symbols on bottom in Michigan +1978-06-30,25.7738889,-80.1938889,Miami,FL,light,300,Five bright, round, white lights in formation were seen, three together and two together, but then they suddenly disappeared. +1978-06-30,40.4991667,-74.3994444,Piscataway,NJ,unknown,300,Hello. I am a 37 year old female. I have seen UFO’s two times in my life. The first time I saw a UFO I was around 1978 or 1979. I was a +1978-07-01,33.2466667,-84.2641667,Griffin,GA,disk,120,UFO came down and went behind a hill 300 yards away. +1979-06-30,40.0877778,-76.1852778,Leola,PA,light,180,1 bright light in a dark night sky. +1979-06-30,41.1572222,-85.4883333,Columbia City,IN,triangle,900,That night east of C. City on US 30 in the 70's +1979-06-30,33.0416667,-116.8672222,Ramona,CA,light,180,It was a greenish glowing object which moved at unimaginable great speed. +1979-06-30,39.0708333,-89.8561111,Wilsonville,IL,circle,240,Wilsonville,IL 1979 also known at time for its radioactive waste dump in seventies +1979-06-30,39.3741667,-88.2436111,Janesville,IL,fireball,900,anesville WI +1980-06-30,38.3686111,-93.7780556,Clinton,MO,rectangle,2400,Repeated Encounter in about 1980 +1980-06-30,38.9333333,-119.9833333,South Lake Tahoe,CA,light,300,Hi there, well this happen a long time ago however lives with me and even i have 4 witness I know there are much more I will explain . +1980-06-30,27.9472222,-82.4586111,Tampa,FL,circle,120,MISSOURI INVESTIGATORS GROUP Report: I seen a pancake shaped object with rectangler size windows all around it with lights. +1980-06-30,32.2047222,-95.8552778,Athens,TX,light,30,I saw light moving, in my experience in an inexplicable manner, then at incredible speed disappearing into the sky at near verticle. +1981-06-30,42.05,-71.8805556,Webster,MA,other,120,Lake side beach. Webster mass +1981-06-30,31.9516667,-97.3211111,Whitney,TX,formation,300,9 craft were eventually visible for approximately 5 minutes.The lead in the formation was a large round light, followed by 7 smalle +1981-06-30,41.9486111,-71.0736111,Raynham,MA,disk,120,Saw a silver disk shaped object suspended in the sky at a downward slant two nights in a row +1981-06-30,42.7958333,-74.6175,Sharon Springs,NY,circle,14400,my friend and i were driving in a car. i was the pasenger. i just happend to look up and saw part of a circular craft maybe 15 feet abo +1981-06-30,37.0030556,-88.2344444,Grand Rivers,KY,unknown,10,Silent, lighted object passing leisurely overhead. +1981-06-30,37.6805556,-92.6636111,Lebanon,MO,triangle,300,Enormous triangular object blocked stars as it moved slowly over house +1981-06-30,39.395,-86.5625,Paragon,IN,sphere,300,Orange ball in sky that looked like ablong sun that put out no light. +1982-06-30,39.2191667,-121.06,Grass Valley,CA,cigar,900,Cigar craft "encountered" over home in Grass Valley, Calif. 1981/82. Reported to Beale Air Force Base. +1982-06-30,42.3255556,-83.3311111,Garden City,MI,disk,600,Circular - Rotating and hovering east to west and back again at night in Garden City, MI in the early 1980's. +1983-06-30,37.2705556,-76.7077778,Williamsburg (Near),VA,circle,600,Light which released multiple yellow orbs which returned to craft (light) near Williamsburg VA 1980s +1983-06-30,42.8583333,-70.9305556,Amesbury,MA,triangle,180,I was driving up a long hill to the top in my car . About 3 quaters of the way up the hill the stars in the sky blacked out and a huge +1983-06-30,32.7152778,-117.1563889,San Diego,CA,other,720,SILVER UFO OVER CENTER DOWNTOWN SAN DIEGO. +1983-06-30,32.2816667,-93.8238889,Stonewall,LA,oval,300,Objects over northern DeSoto Parish, Louisiana 1983 +1984-06-30,31.7586111,-106.4863889,El Paso,TX,circle,1200,bright light over desert in el paso tx 1984 +1984-06-30,34.5827778,-117.4083333,Adelanto,CA,sphere,600,Saw a flashing light that turned out to be something perfectly round floating above the ground +1984-06-30,33.2147222,-97.1327778,Denton,TX,light,15,Brilliant white "sparkling" light, like a 100ꯠ sparkler-sticks, appearing suddenly and moving silently across the sky above trees. +1984-06-30,41.2222222,-73.0569444,Milford,CT,sphere,1800,We saw a sphere hovering at treetop level. It was huge and made no sound or reflection on the water below. +1985-06-30,25.9808333,-80.1486111,Hallandale Beach,FL,disk,600,THE OBJECT WAS STATIONERY A FEW HUNDRED FEET IN FRONT OF ME +1985-06-30,31.9516667,-97.3211111,Whitney,TX,formation,600,9 Objects in formation over Lake Whitney +1985-06-30,41.1961111,-84.9197222,Harlan,IN,disk,300,Harlan, Indiana mayhurst drive disc shaped craft with multi-flashing colors of light going around counter-clockwise on side of craft.. +1985-06-30,29.7855556,-95.8241667,Katy,TX,triangle,3600,Black triangle over Katy Texas in mid 1980s. +1985-06-30,40.9166667,-74.1722222,Paterson,NJ,disk,2,Back in 80's while our family lived in Paterson by the Eastside HS area. I remember walking to the store with a friend of mine. It was +1985-06-30,28.8525,-81.6855556,Eustis,FL,light,120,I was driving my 8 year old son from daycare back home on 441 about 2 miles norh of Eustis, FLorida one spring evening in 1985. I was d +1985-06-30,41.0338889,-73.7633333,White Plains,NY,chevron,6000,A nighttime sighting of an arrow or triangle shaped craft, which moved very slowly, almost hovering, with no noise. +1985-06-30,32.7152778,-117.1563889,San Diego,CA,light,4,Man driving car with nephew enveloped in white light of high quality. Man observed no shadows even under dashboard. Man could not look +1985-06-30,39.0061111,-77.4288889,Sterling,VA,circle,120,Unknown object in sky, over Sterling VA in the early 1980s +1986-06-30,35.8422222,-90.7041667,Jonesboro,AR,disk,30,disk shape ufo up close I saw every detail of the ship +1986-06-30,47.6063889,-122.3308333,Seattle,WA,other,300,I saw a black, worm-like,flying object similar to that reported 10/8. The wx was clear and sunny and the wind was northerly. I was in +1987-06-30,43.2341667,-86.2483333,Muskegon,MI,light,180,lights over the road +1987-06-30,45.3513889,-89.6663889,Irma,WI,oval,2530,4:45am while going to work had the camera with me noticed a very bright and pulsateing object headed strait for me this all happened in +1987-06-30,40.7988889,-81.3786111,Canton,OH,light,18000,I was abducted and I lost time. 500 Lights On Object0: Yes +1987-06-30,28.7927778,-81.0594444,Osceola County,FL,other,1800,This huge UFO blew me away in the 80's along with dozens of others on Fl. Turnpike SE of Orlando. +1987-06-30,39.6988889,-78.18,Hancock,MD,triangle,3720,THE NEXT DAY "THE LIGHTS IN THE SKY" WAS ON THE NEWS ON TV RADIO AND NEWSPAPER.."JUST AFTER SUNSET IT GOT COOL AND A FAINT FOG CAME +1987-06-30,28.2486111,-81.2813889,St. Cloud,FL,other,120,Huge UFO Seen in Osceola County, Central Florida, Summer of 1985 or 1986 +1988-06-30,33.4483333,-112.0733333,Phoenix,AZ,unknown,3600,Lights seen in Phoenix, AZ back in the late 1980's. +1988-06-30,36.2297222,-93.1075,Harrison,AR,triangle,1800,Numerous Lifelong Sightings. +1988-06-30,38.2541667,-85.7594444,Louisville,KY,circle,180,UFO Sighted Thursday June 30, 1988 at about 23:15 N of Elizabethtown and S of Louiseville on I-65 close to State Park +1989-06-30,41.6005556,-93.6088889,Des Moines,IA,disk,1800,craft hovering over Des Moines River in Iowa +1989-06-30,33.9255556,-116.8755556,Banning,CA,triangle,1800,My son and I saw two triangular craft hovering about 100 feet above the roadway. +1989-06-30,41.7169444,-74.3961111,Ellenville,NY,other,120,Large building type UFO that is tall but rounded, never heard of sighting of a UFO like this one. +1989-06-30,32.9777778,-111.5169444,Coolidge,AZ,triangle,60,UFO's or not +1990-06-30,33.9533333,-117.3952778,Riverside,CA,cylinder,240,Tubular shaped object at high altitude over souther calif +1990-06-30,33.5091667,-111.8983333,Scottsdale,AZ,triangle,600,PHOENIX LIGHT OVER SCOTTSDALE IN 1991 +1990-06-30,37.2297222,-119.5086111,North Fork,CA,other,900,Five or six soundless lights on airship seen moving from east to west in foothills of Californ ia +1990-07-01,34.9530556,-120.4347222,Santa Maria,CA,circle,5,It was just siting there when i turned bak after 5 seconds it was gone +1991-06-30,40.6408333,-74.8816667,Annandale,NJ,unknown,90,Unknown bright light object +1991-06-30,40.0186111,-78.5041667,Bedford,PA,triangle,1500,1991 - Bedford, Pa-Triangular-3 Red Lights-Ship rotated to it's side-20-25 minutes +1991-06-30,38.2594444,-120.7622222,Paloma,CA,chevron,1200,I believe what we witness was a opening to a worm hole or a fold in space +1991-06-30,48.4111111,-114.3366667,Whitefish,MT,disk,900,Flying Saucer from north (Canada) descends on Whitefish, Montana, hovers silently, gone like a bullet. +1991-06-30,32.7947222,-116.9616667,El Cajon,CA,diamond,120,Those sightings of orange /red lights in the sky have been happening for years now, just much more frequent lately. +1991-06-30,41.5033333,-74.0108333,Newburgh,NY,diamond,300,very low flying diamond making no sounds +1992-06-30,41.6611111,-72.78,New Britain,CT,rectangle,15,the object was like a green rectangular light +1992-06-30,45.6572222,-68.7102778,Millinocket,ME,triangle,1800,Alternating red lights in the Northern Maine Woods +1992-06-30,28.4055556,-80.605,Cape Canaveral,FL,other,300,the object would stop move at fast speed in straight line stop again and travelled at right angles +1993-06-30,33.7091667,-117.1963889,Sun City,CA,light,15,Strange lights move over our heads while releasing bright flashes of light. +1993-06-30,47.2380556,-123.4066667,Matlock,WA,sphere,10,I am not posting an official report. I am curious as to why I never heard any report of this sighting on any media, or from any other. +1993-06-30,43.1547222,-77.6158333,Rochester,NY,changing,300,Shape changing craft. +1993-06-30,41.2975,-82.6055556,Milan,OH,triangle,900,Giant Black Delta Triangle Cut Corner'sƻ huge circular white light's underneath.90% silent and very slow +1993-06-30,40.7141667,-74.0063889,New York City (Yonkers),NY,other,150,V shaped lights.huge.noisless.flying very slow +1993-06-30,38.9711111,-81.9144444,Racine,OH,light,600,Dozens of skittering, zipping, moving lights in an area of the sky...surrounding a much larger,, stationary, pulsating light. +1994-06-30,42.1013889,-72.5902778,Springfield,MA,triangle,1200,Missing time with triangular craft. +1994-06-30,33.0163889,-86.3122222,Weogufka,AL,light,1200,A NURSE BEING FOLLOWED BY A BRIGHT LIGHT ON HER WAY HOME FROM WORK ONE NIGHT. +1994-07-01,38.2008333,-77.5894444,Spotsylvania,VA,disk,30,Please take this very serious. I have witnessed numorous UFO's, during the day only. Please I will take a lie detector, or any other +1995-06-30,40.7988889,-81.3786111,Canton,OH,unknown,300,I was taken against my will +1995-06-30,40.9008333,-73.3436111,Northport,NY,light,300,I was 15 years old when my friend and I spotted this light moving in the sky in a strange fashion. Up, down, and sideways in all direct +1995-06-30,37.3547222,-117.3641667,Gold Point,NV,cigar,300,Myself and another man went to check on a test I was running on gold. When we arived at the sight, the other man said their is a UFO. I +1995-06-30,39.2191667,-121.06,Grass Valley,CA,circle,259200,Giant lenticular cloud over music festival +1995-06-30,42.3266667,-122.8744444,Medford,OR,disk,4,A metallic disc with a brilliant amber colored light passed directly overhead at incredible speed at low altitude. +1995-06-30,27.8002778,-97.3961111,Corpus Christi (Water Garden),TX,circle,120,perfectly round object w/lights around perimeter, large one in cent., made a hoovering sound, lights glowed white to yellow to orang +1995-06-30,42.0708333,-83.2466667,Rockwood,MI,changing,2700,Green sky's and strange unatural cloud activity followed by sudden lights +1996-06-30,40.7608333,-111.8902778,Salt Lake City,UT,circle,180,wired hypnsis wheel lights on craft +1996-06-30,34.4838889,-114.3216667,Lake Havasu City,AZ,other,600,Two large mother ships first witnessed merging together, and then observed silently passing over the northern edge of town. +1996-06-30,38.5816667,-121.4933333,Sacramento,CA,light,300,pulsating light over my neighbors yard about 5 houses away and 30 to 40 feet in the air. +1996-06-30,39.8022222,-75.0644444,Blackwood,NJ,disk,7,Comet sighting PLUS! +1996-06-30,43.0947222,-71.7311111,Weare,NH,light,180,Bright White Ball that seemed to teleport instead of fly. +1996-06-30,39.5533333,-77.9952778,Hedgesville,WV,disk,600,disk shape object with beam +1996-07-01,40.4811111,-74.4836111,Voorhees,NJ,disk,20,Circular metallic ship, dome top, 5-6 circular green lights on the bottom +1997-06-30,48.0633333,-114.0716667,Bigfork,MT,triangle,20,I woke up balf a sleep shook x-husband said do you see the light? he raised up half way said 'ya' and he fell back to sleep i looked at +1997-06-30,27.0994444,-82.4544444,Venice,FL,cigar,600,"Bouncing Ball" follows car in Venice Florida +1997-06-30,34.2163889,-119.0366667,Camarillo,CA,circle,1800,1997 Camarillo, Calif. huge bright light moved at a fast rate of speed then hovered over my car then disappeared. 30 min. pos. 5/31/06 +1997-06-30,61.2180556,-149.9002778,Anchorage,AK,cylinder,900,Walking dog in the day and saw a silent and still chrome cylindrical object in the sky. +1997-06-30,35.6708333,-80.4744444,Salisbury,NC,light,10,Shining like a sparkler and brighter than the sun in broad daylight. +1997-06-30,35.0808333,-106.3875,Tijeras,NM,cigar,120,steadily moved across the sky & then hovered, 2x, creating a triangle formation & then dissapearing. +1998-06-30,41.6833333,-86.25,South Bend,IN,unknown,300,gray in my room +1998-06-30,41.3580556,-93.5572222,Indianola,IA,diamond,120,Orange-Copper Glowing Diamonds... +1998-06-30,41.5244444,-90.5155556,Bettendorf,IA,light,5,I saw a pair of strange lights in the early morning sky that disappeared in a strange fashion. +1998-06-30,42.6183333,-82.5311111,Algonac,MI,triangle,1200,there were three lights which made a triangle in the skys over Canada. the light would grow bright enuff to light up the sky and then d +1998-06-30,40.1105556,-88.2072222,Urbana,IL,cylinder,2,Silver Metalic cylinder over Urbana +1998-06-30,34.2569444,-85.1647222,Rome,GA,sphere,180,Craft connecting balls black with connecting rods no noise or light emmision. speed est. 80-100mph. low altitude and decending west to +1998-06-30,39.1072222,-76.5713889,Pasadena,MD,cigar,120,A long, white cigar shaped object flew across the sky, disappearing a couple of times, then shooting straight up. +1998-06-30,38.6244444,-76.9394444,Waldorf,MD,oval,60,Noticed singular exceptionally bright light which appeared to rotate around a soild oval or disk shaped object, bottom of which was fai +1998-06-30,34.0522222,-118.2427778,Los Angeles,CA,unknown,1800,Lit object stayed stationery about 20 minutes, then went south and up in about 2 minutes. +1998-07-01,32.2986111,-90.1847222,Jackson,MS,cylinder,180,((HOAX??)) This event happen in the late 90s. +1999-06-30,40.4925,-121.8880556,Shingletown,CA,circle,10800,Hovered above property... Red blue white..green...I think...flashed Back .....we flashed a flashlight.... +1999-06-30,39.9347222,-75.0311111,Cherry Hill,NJ,oval,60,We were driving in the car when the passanger saw an object flying faster than any jet could. The object moved away at such a speed th +1999-06-30,47.2530556,-122.4430556,Tacoma,WA,unknown,240,Huge slow moving, humming craft. +1999-06-30,41.88,-88.0077778,Lombard,IL,sphere,30,Black sphere +1999-06-30,26.0730556,-97.2083333,Port Isabel (South Padre Island-Beach),TX,oval,12,Silent, high speed amber oval, high altitude, no beacon lights, no contrail, heading straight west by northwest. +2000-06-30,21.3155556,-158.0072222,Ewa Beach,HI,triangle,7200,Triangular, translucent craft Ohau 2000 +2000-06-30,36.175,-115.1363889,Las Vegas,NV,triangle,45,Boomerang shaped object blended in with the night at least a mile long and about four stories high with 6 or 8 engith +2000-06-30,28.5380556,-81.3794444,Orlando,FL,rectangle,10,Military or other? +2000-06-30,39.6536111,-105.1905556,Morrison,CO,rectangle,1.5,large black rectangle anomoly appeared high in sky for 1.5 seconds +2000-06-30,41.8005556,-80.3691667,Springboro,PA,circle,1800,i saw a ufo land and aliens come out +2000-06-30,41.2441667,-74.5511111,Wantage,NJ,circle,600,Two glowing yellow objects, floating in the sky. +2000-06-30,44.23,-69.7758333,West Gardiner,ME,cigar,180,2 crafts, one cigar shaped with bright lights seen over West Gardiner, Maine +2000-06-30,42.8780556,-73.1972222,Bennington,VT,other,300,Huge ship with lights everywhere. +2000-06-30,30.2669444,-97.7427778,Austin,TX,cylinder,30,We had a daylight sighting of a large cylindrical object in Austin, Tx which lasted 30 seconds before the object disappeared. +2000-06-30,40.8,-96.6666667,Lincoln,NE,formation,600,orange v formation over lincoln, NE +2000-06-30,39.2833333,-84.3169444,Sycamore,OH,triangle,1500,I seen a very low flying craft 500 Lights On Object0: Yes +2000-06-30,41.2230556,-111.9730556,Ogden,UT,sphere,300,GOIN TO GAS STATION WHEN THERE WAS AN ORANGE BRIGHT LIGHT +2000-06-30,41.2041667,-73.6441667,Bedford,NY,light,300,Bright xenon light streaks and zig zags for several minutes over Pound Ridge Reservation. +2000-06-30,42.8863889,-78.8786111,Buffalo,NY,triangle,120,Sighting of a traingle object the size of a small jet plane with a few light hovering over trees and moving in a slow circular motion. +2000-06-30,36.8525,-121.4005556,Hollister,CA,circle,1800,Bright Round Object Winking Off and On Fast Manuevers and a Triangle Next Night Appeared +2000-06-30,35.6266667,-120.69,Paso Robles (Lake Nacimiento Region),CA,formation,120,"Small, Satellite-Like Formation of 3 Lights, Performs Figure-eight Movements Around One Another in Night Sky" +2000-06-30,44.9444444,-93.0930556,St. Paul,MN,circle,300,Bright White light in Orbit. suddenly dimmed in brightness. flew southwest to northeast, Witnessed By 2 people. +2001-06-30,27.1188889,-82.4444444,Nokomis,FL,other,14400,The object did in fact move and it took at least three different forms. +2001-06-30,39.8780556,-83.9369444,Enon,OH,light,300,Hovering bright light with no noise. +2001-06-30,29.7325,-81.8836111,Florahome,FL,circle,180,((HOAX??)) WE SAW A REDISH ROUND BALL OF LIGHT HUVERING OVER A POWERLINE IN A FILED. +2001-06-30,27.5872222,-82.4252778,Parrish,FL,other,10,There was a craft behind our house being escorted +2001-06-30,26.4611111,-80.0730556,Delray Beach,FL,unknown,2,row of lg bright lights appear and disappear about the height of street lights +2001-06-30,33.7738889,-117.9405556,Garden Grove,CA,rectangle,30,Ufo up close and personal!upducted.???? +2001-06-30,34.2419444,-117.2847222,Crestline,CA,light,1800,ball of light, circled around lake, split into 2 and went over the mountains fast. +2001-06-30,34.2419444,-117.2847222,Crestline,CA,other,360,Light with purposeful maneuvering +2001-06-30,34.2419444,-117.2847222,Crestline,CA,light,600,Strange light circles over Lake Gregory fireworks show--Hundreds must have seen it. Light then splits in two. +2001-06-30,33.3061111,-111.8405556,Chandler,AZ,disk,1.5,Green, glowing saucer shaped object that paused , then speeded to the west. +2001-06-30,34.2419444,-117.2847222,Crestline,CA,light,420,Bright steady light was observed over Lake Gregory Forth of July celebrate. +2001-06-30,31.1358333,-102.2238889,Mccamey,TX,oval,300,driving into town when car just died thats when we saw a yellowish oval floating overhead +2001-06-30,43.0388889,-87.9063889,Milwaukee,WI,light,10,traveling light that grows in intensity +2001-06-30,41.6080556,-74.2994444,Pine Bush,NY,triangle,600,Black triangle with red lights very up close sighting with 3 witnesses, Red Mill Rd. in Pine Bush NY. +2002-06-30,40.5861111,-98.3880556,Hastings,NE,other,1,I was driving in my work truck, north bound on the by pass road (Hastings, NE) by the over pass next to the waste water treatment facil +2002-06-30,34.9675,-82.4436111,Travelers Rest,SC,light,2700,Well we walked out own the back porch to relax a little. Outside there were thunder storms in the area and also heat lighting. I look +2002-06-30,39.7391667,-104.9841667,Denver,CO,light,1800,the dot of light in the sky stayed still for about 15 minutes and then zoomed across the sky. +2002-06-30,34.8697222,-111.7602778,Sedona,AZ,triangle,1200,Large triangle, silent, 50 to 100' altitude. 20 Minutes. Later 3 small triangular crafts, 8-10'wide, 10-12' alt. 45 sec. +2002-06-30,39.5963889,-119.775,Sun Valley,NV,light,15,I thought it was a police chopper with it's light but there was no chopper or police car behind me. +2002-06-30,40.2413889,-75.2841667,Lansdale,PA,formation,60,3 red lights in triangular formation seen in Lansdale, Montgomery County, Pennsylvania. +2002-06-30,21.3069444,-157.8583333,Honolulu,HI,circle,6312000,Green glowing UFOs and some that look like stars in the shape of circles with many encounters. +2002-06-30,27.0438889,-82.2361111,North Port,FL,light,60,exploding/imploding and fading stars in Florida +2003-06-30,36.175,-115.1363889,Las Vegas,NV,unknown,600,I flashed my flashlight at it and it flashed back at me and started to come my way +2003-06-30,35.8666667,-76.7488889,Plymouth,NC,other,1200,A bluish-whitish glowing ragged line of light in the shape of a large "W" lying on its side. +2003-06-30,37.775,-122.4183333,San Francisco,CA,cigar,600,My husband and I were sitting on a bench at a marina in Berkeley CA looking across the Bay at the skyline of San Fransisco (SF). There +2003-06-30,38.4425,-75.1938889,Bishopville,MD,other,1200,Fireball going into a double circle type cloud formation. +2003-06-30,39.7475,-122.1952778,Orland,CA,light,30,Rapidly moving bright white light +2003-06-30,33.4483333,-112.0733333,Phoenix,AZ,unknown,120,I was driving west on Broadway Rd. When I noticed a shiny small dot in the sky. It was in the direction towards Sky Harbor Airport. The +2003-06-30,34.0522222,-118.2427778,Los Angeles,CA,fireball,180,A round ball of flame hovering over a residential neighborhood in Los Angeles, CA c.2003 +2003-06-30,41.6611111,-91.53,Iowa City,IA,oval,360,Bright silver object low in Summer morning sunlight. +2003-06-30,41.7613889,-88.4436111,Sugar Grove,IL,other,2,It was reflective and I could see what seemed like rivets all over it plus it had four half circle things from top to under it. +2003-06-30,36.1658333,-86.7844444,Nashville,TN,triangle,240,I have pictures +2003-06-30,43.0480556,-76.1477778,Syracuse,NY,fireball,1800,((HOAX??)) basicly thats what happened but i recorded them on VIDEO +2003-06-30,34.1083333,-117.2888889,San Bernardino,CA,disk,60,It had so pleasent smooth blush-white light with a smooth rotation that I was stuck kept looking at it! +2003-06-30,39.5994444,-110.81,Price,UT,triangle,600,Ufo sighting by two teenage girls +2003-06-30,40.7302778,-80.3102778,New Brighton,PA,other,600,Black triangle surrouned by silver sphears moving south towards Pittsburgh, PA. +2003-06-30,43.8422222,-88.8358333,Ripon,WI,circle,3600,Strange object sat still in sky for 45 minutes like a star, then very quickly passed over me. +2003-06-30,39.5994444,-97.8608333,Jamestown,KS,circle,10,large light frightened the crap out of us. +2003-06-30,39.3994444,-84.5613889,Hamilton,OH,flash,3,Witness of reported flash over hamilton +2003-06-30,40.7091667,-112.1008333,Magna,UT,light,60,Small light moving to the North +2004-06-30,46.8366667,-95.01,Hubbard,MN,other,1800,It was the strangest blue light we had ever seen and then it changed and started following us all the way home. +2004-06-30,18.4683333,-66.1061111,San Juan (Puerto Rico),PR,diamond,900,they look like stars 1 bright the other ambar the speed it move e-w and up +2004-06-30,32.7763889,-79.9311111,Charleston,SC,rectangle,3600,Clear floating rectangular cube +2004-06-30,33.7222222,-116.3736111,Palm Desert,CA,cross,1800,I cant be certain on the date but I know it was in 2004 we kept having power surges that eveing i thought it was just maybe my house s +2004-06-30,30.3319444,-81.6558333,Jacksonville,FL,rectangle,120,very low hovering black rectangular object on a sunny day +2004-06-30,41.85,-87.65,Chicago,IL,fireball,60,fire ball moving horizontally across sky +2004-06-30,39.7286111,-121.8363889,Chico,CA,other,30,Man floating thru the air +2004-06-30,28.1875,-82.7397222,Holiday,FL,other,120,A small square cloud came down, bounced off a wal,l made 3 crop circles and went into the sky +2004-06-30,36.175,-115.1363889,Las Vegas,NV,circle,5,An alien space or an u.f.o that is not an alien space craft. +2004-06-30,45.8152778,-122.7413889,Ridgefield,WA,light,30,Moving light in sky, flashes and causes sky to give the effect of rippling by Ridgefield, WA. +2004-06-30,38.1863889,-89.6055556,Coulterville,IL,triangle,50,Triangle craft landed on the ground. +2004-06-30,32.7152778,-117.1563889,San Diego,CA,sphere,1200,2 lights hovering around south san diego, bordering tijuana. +2004-06-30,41.6688889,-87.7386111,Alsip,IL,triangle,120,Triangle Ufo flying down 1115th st. Alsip ,IL 2004 +2004-06-30,33.9533333,-117.3952778,Riverside,CA,light,4,Above March Air Force Base, a neon green light appears in the night sky, then shoots across the sky. +2004-07-01,30.0927778,-93.7363889,Orange,TX,other,180,Red Ufo ship about one street block in length +2004-07-01,34.0552778,-117.7513889,Pomona,CA,circle,120,Picture was taken right after my grandmother's funeral, right over her home 500 Lights On Object0: Yes +2005-06-30,40.9255556,-73.1413889,Stony Brook,NY,sphere,2,Flying sphere hovering above us, shining light and then disappearing +2005-06-30,42.5630556,-114.46,Twin Falls,ID,light,30,Bright star that grew larger (approached) and suddenly streaked away at 90degree angle. +2005-06-30,47.1302778,-119.2769444,Moses Lake (Near),WA,light,1800,Moving light and cone of light with flashes of lightning +2005-06-30,33.6102778,-117.7244444,Laguna Woods,CA,circle,300,My elderly mother saw golden disk flying over trees +2005-06-30,45.4872222,-122.8025,Beaverton,OR,light,120,I was observing a very bright "Star" or planet , it began moving! +2005-06-30,42.5,-96.4,Sioux City,IA,other,2700,I saw a barrel shaped object two hundred feet above morningside Lutheran church. It was n Not shiny. It resembled a 55 gallon oil drum +2005-06-30,34.9830556,-85.2861111,Rossville,GA,cigar,30,My wife and I saw a rocket shaped missle slowly landing on Missianary Ridge in Rossville Georgia. +2005-06-30,40.5852778,-105.0838889,Fort Collins,CO,circle,600,3 discs in V formation rotating in sun, and changing formation of foothills of Fort Collins Co., +2005-06-30,27.7705556,-82.6794444,Saint Petersburg,FL,cigar,900,In 2005 I was walking to a phone booth to call my husband and I felt that I was being watched,I looked up and there it was,I told my hu +2005-06-30,30.3319444,-81.6558333,Jacksonville,FL,light,7200,I was flying at 45 thousand feet in a Lear Jet when I sat back in the seat and looked up into the sky and saw a bright star like object +2005-06-30,37.3541667,-121.9541667,Santa Clara,CA,disk,120,Black disk shaped object motionless observing airport free falls and wobbles back up and vanishes. +2005-06-30,39.5963889,-119.775,Sun Valley,NV,fireball,10,There was no sound from this basketball size thing. +2005-06-30,40.5186111,-78.395,Altoona,PA,circle,120,This is a UFO sighting in Prospect Park in Altoona in PA back in the year 2005. +2005-06-30,41.9125,-88.1347222,Carol Stream,IL,sphere,30,6 sphear shaped dissapearing craft sighting +2005-06-30,43.2166667,-123.3405556,Roseburg,OR,cigar,120,Cigar Mother ship loading and unloading small craft over Douglas County, Oregon +2005-06-30,29.7630556,-95.3630556,Houston,TX,oval,720,While eating dinner at a restaurant in the village I noticed a very bright light directly east of me and coming in my direction. It wa +2005-06-30,39.5963889,-119.775,Sun Valley,NV,other,20,A Ball of red and orange with a tail like a comet kept up with my car. My son and I saw it. +2005-06-30,37.3402778,-95.2608333,Parsons,KS,unknown,25,Nine red - lighted UFO. +2005-06-30,36.395,-86.7794444,Ridgetop,TN,other,900,A Green light over city was reported to be a fire on next day newspaper. +2005-06-30,43.5391667,-89.4625,Portage,WI,light,60,Bright, White ,Totally Silent Light filmed in Portage. +2005-06-30,38.7366667,-76.5897222,Friendship,MD,diamond,120,Two Diamond shaped craft spotted over southern Maryland +2005-06-30,41.8380556,-75.5911111,Jackson,PA,fireball,30,((HOAX??)) Looked like it was a red moon coming up over the mountain. I think I may have +2005-06-30,32.9341667,-97.0777778,Grapevine,TX,light,10,I was talking on my cell phone by the pool and i was looking up into the night sky, I had been there for at least 20 minutes when I saw +2006-06-30,42.6583333,-71.1375,Andover,MA,fireball,30,Small red dot zipping around in the sky. Like someone was using a lazer pointer in the sky. +2006-06-30,42.0963889,-83.2919444,Flat Rock,MI,oval,60,Oval shaped UFO with two revolving lights disappeared into woods in Flat Rock, MI. +2006-06-30,27.7636111,-98.2386111,San Diego,TX,rectangle,60,In a moving car we saw this 300yd wide rectangle climbing straight up in the sky. +2006-06-30,34.2163889,-119.0366667,Camarillo,CA,circle,60,On June 30, 2006, My 2 daughters and a friend were exiting south-bound 101, Pleasant Valley\Santa Rosa Exit left, when they looked up t +2006-06-30,34.6883333,-99.9116667,Hollis,OK,circle,1,UFO picture taken by deercamera. +2006-06-30,39.7391667,-104.9841667,Denver,CO,other,10,V Shape ufo over my head silent moving with no light on about 200 yards above blocking out the star in the sky in Denver, Colorado +2006-06-30,28.5380556,-81.3794444,Orlando,FL,sphere,60,2 spheres of metallic color and composition---last for 50 sec maybe----at the same time a plane passing by +2006-06-30,34.1683333,-118.605,Woodland Hills,CA,disk,300,Saw a black saucer like object fly out of the Woodland Hills, CA area south of Ventura Boulevard. +2006-06-30,39.1502778,-123.2066667,Ukiah,CA,teardrop,60,gituar pick shaped object traveling north that was very thick and larger than the valley +2006-06-30,28.0391667,-81.95,Lakeland,FL,changing,2100,I was driving south bound down North Florida Avenue approaching Lakeland Regional Hospital when I saw what looked like a large black tr +2006-06-30,27.9655556,-82.8002778,Clearwater,FL,light,5,Blue light over Clearwater Causeway +2006-06-30,37.7788889,-89.5866667,Raddle,IL,triangle,480,silent object with a curved V shaped amber lights sited in the country near the Mississippi River at approximately 10:40pm. +2007-06-30,37.3386111,-92.9069444,Marshfield,MO,triangle,30,small triangle of lights witnessed in webster county mo, at kk and pine grove rd. +2007-06-30,47.6063889,-122.3308333,Seattle,WA,light,600,Glowing orbs in the sky over seattle +2007-06-30,37.3386111,-92.9069444,Marshfield,MO,triangle,60,triangle shaped object in webster co mo at pine grove rd and kk +2007-06-30,42.1291667,-80.0852778,Erie,PA,oval,600,I was very young when I saw a UFO, and so do not remember the exact date. I was looking out a second-floor window of my house when I no +2007-06-30,25.7902778,-80.1302778,Miami Beach,FL,sphere,10,A spherical object that moved impossibly fast, flashing light across the noon sky. 500 Lights On Object0: Yes +2007-06-30,40.7141667,-74.0063889,New York City (Brooklyn),NY,triangle,120,We saw a triangle UFO fly by our window in Brooklyn. +2007-06-30,41.9427778,-79.9847222,Waterford,PA,cigar,240,((HOAX??)) my grandmother reported seeing a silver cigar shaped flying object over her country home… +2007-06-30,26.1219444,-80.1436111,Ft. Lauderdale,FL,light,180,Two unusual objects spotted in the night sky over Fort Lauderdale, FL +2007-06-30,32.7252778,-114.6236111,Yuma,AZ,disk,20,Huge saucer slowly moving then vanishes +2007-06-30,64.7511111,-147.3494444,North Pole,AK,formation,10800,((HOAX??)) Strange ships and electrical interference. +2007-06-30,39.7683333,-86.1580556,Indianapolis,IN,light,120,Bright red light over Indianapolis +2007-06-30,43.0011111,-84.5591667,Saint Johns,MI,rectangle,30,Red/orange retagular shaped light in Northwestern sky +2007-06-30,41.5963889,-72.8780556,Southington,CT,fireball,900,After fireworks display, many people including ourselves saw very fast moving objects one after the other moving west to east. Speed v +2007-06-30,32.7358333,-96.275,Terrell,TX,triangle,10,Triangular object might have been new Stealth technology. But who's? +2007-07-01,33.5422222,-117.7822222,Laguna Beach,CA,circle,300,UFO sighting in Laguna Beach! +2007-07-01,39.4830556,-88.3727778,Mattoon,IL,rectangle,180,Red rectangle with bubble low in the sky. +2008-06-30,42.6652778,-76.6169444,King Ferry,NY,other,120,Bullet shaped craft +2008-06-30,44.3777778,-83.8047222,Hale,MI,light,600,video shows Lights in my backyard are the same as reported in Texas 2008 +2008-06-30,41.7208333,-73.9605556,Highland,NY,triangle,300,Two objects come in contact in the sky nose to nose and one revolves around the other. +2008-06-30,29.6513889,-82.325,Gainesville,FL,circle,180,Two quick moving lights in the sky sighted in Gainesville, FL +2008-06-30,36.8252778,-119.7019444,Clovis,CA,circle,900,LARGE CIRCLE CRAFT RED ORANGE LIGHTS ((NUFORC Note: Student report. PD)) +2008-06-30,35.3538889,-109.0530556,Lupton,AZ,circle,15,It was back in 2008, I know you want reason spotting, but the UFO, that I seen was in the day. I went for a walk, came back walk up o +2008-06-30,28.5380556,-81.3794444,Orlando,FL,circle,240,What I saw at this sight was a large disc shapped craft flying over a small part of Orlando, not very many people were outside at the t +2008-06-30,41.0997222,-80.6497222,Youngstown,OH,fireball,600,12+ fireball-like objects were video taped in Youngstown Ohio +2008-06-30,36.1866667,-94.1286111,Springdale,AR,cigar,30,silver cigar shaped object reflecting off sunlight sudenly disappears +2008-06-30,40.7691667,-73.1155556,Bohemia,NY,disk,180,7-12 crafts hover in clouds (with a noise) and silent in blue skies +2008-06-30,38.4191667,-82.4452778,Huntington,WV,cigar,300,cigar shape objects came from the South heading toward the Ohio River to the North +2008-06-30,42.3458333,-71.5527778,Marlborough,MA,cylinder,30,Cylinder, vertical,silver, no noise, perpendicular to strong winds, straight path. Changed shape to bow. +2008-06-30,48.0905556,-105.64,Wolf Point,MT,sphere,120,Multiple witnesses observe small light near ground get large and fly off into the sky. +2008-06-30,28.8827778,-81.3088889,Debary,FL,flash,600,It was a cloudless night during sunset and it was still bright and I looked into the sky and saw a bright star and it disappeared. +2008-06-30,42.4361111,-123.1708333,Rogue River,OR,light,300,two ufos circled each other +2008-06-30,42.2708333,-83.7263889,Ann Arbor,MI,triangle,120,Object was black and triangular with white lights on each corner +2008-06-30,35.2219444,-101.8308333,Amarillo (Local Area And Se),TX,light,600,"Flash Bulb" like lights hovering at 100 ft over Hwy 287 outside of Amarillo +2008-06-30,46.8083333,-100.7833333,Bismarck,ND,rectangle,480,2 red lighted objects over Bismarck Nd +2008-06-30,40.3933333,-82.4858333,Mt. Vernon,OH,circle,900,Pale yellow sphere over Ohio seen by one. +2008-06-30,46.6022222,-120.5047222,Yakima,WA,light,20,BRIGHT LIGHT IN SKY TURNS INTO SMALL LIGHT IN A BLINK OF THE EYE AND FLYS NORTH UPWARD INTO THE SKY +2008-06-30,45.8641667,-122.8052778,St Helens,OR,light,10,bright light to the west that needs explanation. +2009-06-30,46.8722222,-113.9930556,Missoula,MT,sphere,5,Third sighting in 2 weeks, bright glowing solid white/yellow orb over Montana; definitely not a star or planet; moving slowly +2009-06-30,32.5808333,-93.8925,Blanchard,LA,triangle,300,Three lights in a triangular formation +2009-06-30,42.0527778,-124.2827778,Brookings,OR,changing,180,I have something no one else in the world has. +2009-06-30,26.1005556,-97.29,Laguna Vista,TX,oval,300,oval sphere hovering at 500 feet over my truck pulled my pistol +2009-06-30,30.0797222,-95.4169444,Spring,TX,cone,300,I saw a large cone shaped object coming out of the pond. 500 Lights On Object0: Yes +2009-06-30,41.8455556,-87.7538889,Cicero,IL,oval,300,Football-shaped-lit object moving in the sky +2009-06-30,36.5297222,-87.3594444,Clarksville,TN,light,600,Saw lights towards Hopkinsville, KY, there were about 10 of them +2009-06-30,31.7586111,-106.4863889,El Paso,TX,fireball,45,When I lived in El Paso TX, my roomates told me about this light that they see repeatedly out the window. +2009-06-30,43.3869444,-76.3783333,Mt. Pleasant,NY,disk,1800,MT PLEASANT, NY, SAUCER SHAPE CRAFT 2100-2330 +2009-06-30,33.2183333,-117.0333333,Valley Center,CA,oval,45,A UFO was spotted flying from the top of Palomar Mountain +2009-06-30,31.7952778,-94.1788889,Center,TX,other,60,Star-like object observed at night falls out of sky. ((NUFORC Note: Possible sighting of ISS? PD)) +2009-06-30,43.0125,-83.6875,Flint,MI,circle,30,Circular flying object with red white and blue sets of lights. +2010-06-30,47.8211111,-122.3138889,Lynnwood,WA,other,300,I woke up at around 2:40- 3am one night cant remember the day. I came out to my balcony to smoke a cigarette I was just about to light +2010-06-30,35.0536111,-94.6233333,Poteau,OK,other,120,Shadow in the Atmosphere +2010-06-30,38.5922222,-89.9111111,O'fallon,IL,circle,1800,Object moved back and forth and changed colors. red, white, yellow,gold. +2010-06-30,39.5963889,-119.775,Sun Valley,NV,other,5,This ball made no sound, and I saw no power source. +2010-06-30,38.5580556,-91.0119444,Washington,MO,cylinder,1200,MISSOURI INVESTIGATORS REPORT: In clear blue sky my friend saw what at first thought was a com. plane until realized saw no wings. +2010-06-30,36.8766667,-89.5877778,Sikeston,MO,unknown,2700,Blue lights scanning the sky line +2010-06-30,41.6638889,-83.5552778,Toledo,OH,triangle,60,5 amber lights in a V-shape seemed stationary then dissapeared +2010-06-30,42.5,-96.4,Sioux City,IA,light,15,Strange disappearing / re-appearing object over Sioux city +2011-06-30,40.5852778,-105.0838889,Fort Collins,CO,flash,3,Flash ball over Ft. Collins, Colorado +2011-06-30,39.4666667,-87.4138889,Terre Haute,IN,oval,2700,RP advised she saw two lights separate into four lights and back into two. Hovering for appx 30 min in the area. Could not see specific +2011-06-30,35.2230556,-93.1577778,Dardanelle,AR,light,30,Two white lights moving together. +2011-06-30,41.85,-87.65,Chicago,IL,teardrop,8,lightning was behind a cloud and this tear drop shaped bright light with a dark spot in the middle was in the dark in front of the clou +2011-06-30,37.59,-86.5488889,Falls Of Rough,KY,triangle,900,Two hypotenuse-shaped triange craft, joind by a cylinder, traveling in broad daylight with no sound. +2011-06-30,37.7477778,-84.2947222,Richmond,KY,cigar,1200,UFO spotted in Richmond,Ky near The Bluegrass Army Depot..??Is this Aliens or Government cover up +2011-06-30,38.6155556,-95.2675,Ottawa,KS,sphere,10,Ball of fire +2011-06-30,47.2372222,-93.53,Grand Rapids,MN,teardrop,300,((HOAX??)) ((NUFORC Note: Date is flawed. PD)) Bright shiny object changed shape as it took off! +2011-06-30,33.8941667,-78.4269444,Ocean Isle Beach,NC,light,15,Orange Light +2011-06-30,35.9572222,-75.6244444,Nags Head,NC,sphere,120,Large bright and pulsating orange red spherical light observed traveling south to north. +2011-06-30,35.2422222,-87.3347222,Lawrenceburg,TN,oval,180,Large white ball, very high in sky, moved very fast, light beam downward to ground, went over my home then light went out which made is +2011-06-30,38.6269444,-88.9455556,Salem,IL,egg,120,MY SON AND GRANDSON WHO LIVE 4 BLOCKS SOUTH OF ME WERE OUTSIDE ON THEIR POOL DECK.THE CALLED ME AT 9:48PM AND REPORTED SEEING A LAR +2011-06-30,42.9133333,-85.7052778,Wyoming,MI,triangle,120,18 Lights in the sky flying faster than ANY aircraft! +2011-06-30,37.3058333,-89.5180556,Cape Girardeau,MO,light,120,Orange Light passing over city, silent. +2011-06-30,37.9883333,-85.7158333,Shepherdsville,KY,circle,3600,moving light comes to dead stop and gets super bright ((NUFORC Note: Possible flare from Iridium satellite. PD)) +2011-06-30,36.4072222,-105.5725,Taos,NM,light,2100,White light over New Mexico +2011-06-30,32.7152778,-117.1563889,San Diego,CA,light,45,2 Star-like UFO's Flying over San Diego at the same time. +2011-06-30,41.6683333,-74.1030556,Modena,NY,light,300,Lights over the Shawangunk Mountain Range. +2012-06-30,39.0997222,-94.5783333,Kansas City,MO,cigar,300,Five fast.cigar shape images going in circles above our neighbor hood. +2012-06-30,40.6083333,-75.4905556,Allentown,PA,fireball,240,Red flying object, for about 4 minutes in our neighboorhod. It did not made any noise and it was able to fly horisontally and vertic +2012-06-30,39.9522222,-75.1641667,Philadelphia,PA,light,180,((HOAX??)) unidentified object mm n ts +2012-06-30,41.1669444,-73.2052778,Bridgeport,CT,circle,1200,8 orbs seen in sky +2012-06-30,40.8022222,-124.1625,Eureka,CA,fireball,60,Gigantic Red Ball of light at a very high altitude that vanished. +2012-06-30,39.7730556,-75.0516667,Turnersville,NJ,fireball,600,Fireball like objects seen flying over south Jersey. +2012-06-30,44.765,-69.7197222,Skowhegan,ME,circle,300,hovering orange light +2012-06-30,34.7744444,-96.6780556,Ada,OK,disk,180,White, disk shaped object above Ada, OK. +2012-06-30,41.2586111,-95.9375,Omaha,NE,sphere,180,Metallic, green sphere hovering in the sky in the daytime just south of the Dodge Street Exprsway, Omaha, NE +2012-06-30,48.5127778,-122.6113889,Anacortes,WA,disk,60,Daytime UFO in Anacortes, WA +2012-06-30,28.0777778,-82.7638889,Palm Harbor,FL,fireball,120,((HOAX??)) Fireball in sky. +2012-06-30,33.4222222,-111.8219444,Mesa,AZ,triangle,120,Triangle craft with flashing lights. +2012-06-30,41.8005556,-73.1216667,Torrington,CT,fireball,300,Large Fireball enters the earth above Litchfield County +2012-06-30,40.7319444,-73.1861111,East Islip,NY,fireball,180,Pulsing bright orange light +2012-06-30,41.4847222,-80.4377778,Jamestown,PA,disk,90,Orange Orb/Disc over Pymatuming Lake +2012-06-30,32.8572222,-116.9213889,Lakeside,CA,fireball,300,Glowing orange orb that pulsated like fire and flew silently overhead. +2012-06-30,42.9316667,-76.5663889,Auburn,NY,light,300,Saw formation in the South,counted 15 red orbs traveling East until they vanished. +2012-06-30,33.0183333,-80.1758333,Summerville,SC,light,180,Three red lights in triangle formation over Summverville, SC. ((NUFORC Note: Report from retired submariner. PD)) +2012-06-30,39.6555556,-85.9669444,Acton,IN,circle,900,Reddish Orange circle seen on Interstate 74. Acton, IN +2012-06-30,42.9144444,-73.5141667,Johnsonville,NY,circle,45,Fire in the sky +2012-06-30,43.1008333,-75.2330556,Utica,NY,circle,240,We observed three round globes over a portion of East Utica. +2012-06-30,46.4916667,-124.0488889,Ocean Park,WA,sphere,120,Bright red light observed over Southwest Washington coast by 2 people +2012-06-30,42.1291667,-80.0852778,Erie,PA,sphere,15,Witnessed two incredible UFOs heading east Erie, PA 6/30/12. +2012-06-30,41.7672222,-71.3652778,Riverside,RI,circle,1200,My kids were out side playing when one of them look up to the west and saw a lot of redish Orange orbs in the sky they ran the house to +2012-06-30,41.5380556,-72.8075,Meriden,CT,cylinder,1800,Upright cylinder, bright orange, almost on fire like, 5 together, evenly spaced, same path of travel. Several witnesses, 3 more lappea +2012-06-30,42.7813889,-75.6480556,Lebanon,NY,fireball,60,Witnessed four bright red orbs hovering in the sky on Rte 20 near Lebanon Valley Speedway +2012-06-30,40.9261111,-75.0930556,Columbia,NJ,sphere,60,Round, bright orange object moving erratically over Warren County NJ +2012-06-30,41.9163889,-83.3977778,Monroe,MI,sphere,120,Orange ufo sighted in Monroe near I-75 +2012-06-30,30.4013889,-86.8636111,Navarre,FL,light,900,No smoke trails or sound. Traveling incredibly fast. +2012-06-30,41.1827778,-80.7655556,Niles,OH,changing,60,Square box in shape color red to orange, shape changed from square to circle color red to yellow. +2012-06-30,39.7686111,-94.8463889,Saint Joseph,MO,fireball,40,Fireball acros the nigth sky never seen anything like it moving slow front aest to west spectacular but fraining +2012-06-30,41.6638889,-83.5552778,Toledo,OH,light,1800,Star like ufo +2012-06-30,48.9938889,-122.7458333,Blaine,WA,light,120,Orange lights over Drayton Harbor +2012-06-30,47.5675,-122.6313889,Bremerton,WA,oval,30,Kitsap county ufo sighting +2013-06-30,34.7302778,-86.5861111,Huntsville,AL,sphere,30,Floating orbs that split into multiple orbs. +2013-06-30,41.025,-80.7611111,Canfield,OH,diamond,20,((HOAX??)) Jun 30th 5:30 pm I spotted a very quick inhuman object with 4 purple lights that's possibly very dangerous. +2013-06-30,39.7763889,-74.8627778,Jackson,NJ,other,30,Pear shaped object 200 yards silently passed by. +2013-06-30,33.9930556,-117.9677778,Hacienda Heights,CA,light,120,UFO red light follows plane LAX path over Hacienda Heights. +2013-06-30,44.2619444,-88.4152778,Appleton,WI,light,60,Flash above. +2013-06-30,34.54,-112.4677778,Prescott,AZ,fireball,30,Silent, single bright orange orb heading east over Prescott, AZ, 7-10ꯠ ft above at a high rate of speed. +2013-06-30,41.1586111,-101.0022222,Hershey,NE,rectangle,120,Fire ball/box. +2013-06-30,40.5002778,-79.7497222,Plum,PA,fireball,60,3 fireballs in the night sky perfectly lined up diagonally. +2013-06-30,45.6797222,-111.0377778,Bozeman,MT,unknown,180,White flash, traveling light, bright white light. +2013-06-30,42.3313889,-83.0458333,Detroit,MI,circle,45,Orange glowing light. +2013-06-30,38.2541667,-85.7594444,Louisville,KY,unknown,180,A group of at least 100 lights in the sky on Sunday night, June 30, 2013 at 11 p.m. +1951-06-03,35.2013889,-77.2069444,Jasper,NC,oval,300,MIDDAY OVAL SHAPE, ANITQUE COLOR OBJECT SITTING HALF WAY BETWEEN TALL PINE TREES AND THE GROUND. +1960-06-03,33.7455556,-117.8669444,Santa Ana,CA,disk,300,Saucer shaped craft seen June 1960 over Santa Ana, California +1980-06-03,42.2586111,-87.8405556,Lake Forest,IL,triangle,900,June 1980 +1991-06-03,41.8388889,-89.4794444,Dixon,IL,disk,600,saw what we thought was a helicopter in trouble. disk was approx 35feet above ground and sitting motionless making no noise approx 40 f +1995-06-03,43.0480556,-76.1477778,Syracuse,NY,formation,20,High altitude V-formation of 7 objects +1997-06-03,32.0147222,-93.3419444,Coushatta,LA,light,600,two orange lights in the stars +1999-06-03,45.5230556,-122.9886111,Hillsboro,OR,triangle,600,Black shape w/red lights...Sat about 1.5 Miles NW of the Hillsboro Airport. Not moving..No sound....Lights went out & object sped away +1999-06-03,39.3375,-78.9183333,Burlington,WV,other,6,Driving home from town and looked to my left and saw a circular object with a dome-shape on top. It was eye-level but the funny thing +1999-06-03,34.3077778,-118.4483333,Sylmar,CA,oval,30,Opaque or pale white single UFO, shapped like a Manta_ray. Gliding over Olive View Medical Center in early a.m. +1999-06-03,39.8680556,-104.9713889,Thornton,CO,triangle,480,See below. +1999-06-03,42.6330556,-88.6436111,Delavan,WI,circle,300,looled like star or planet untill it changed colors blue then red then back to white +1999-06-03,47.7180556,-116.9505556,Post Falls,ID,triangle,1200,My friend and I were sitting outside talking when she noticed a large object moving in the sky, there were clouds and we were able to s +2000-06-03,45.8527778,-87.0216667,Gladstone,MI,light,120.3,A large ball of light appeared just over tree tops and ascended quickly skyward. +2000-06-03,35.0844444,-106.6505556,Albuquerque,NM,sphere,3600,Saw a large, bright, spherical object being stationery in windy skies over the Albuquerque International Airport. +2000-06-03,34.01,-109.4580556,Greer,AZ,triangle,3600,Three lights arranged in a triangle shape, red-orange, moving slowly and very far away. +2000-06-03,34.3908333,-110.5525,Overgaard,AZ,triangle,2700,At 7:30 pm, the sky was still blue when we saw 3 large separate red lights moving in a triangular formation in the northeastern sky. +2000-06-03,21.4180556,-157.8036111,Kaneohe,HI,other,60,Two witnesses observe a "V" formation of lights moving across the night sky. +2000-06-03,45.7186111,-123.9338889,Manzanita,OR,fireball,1800,Three bright orange/yellow lights, appeared to meet up over the ocean and travel inland. +2000-06-03,45.7186111,-123.9338889,Manzanita,OR,light,9900,There were orange colored lights coming from the northwest traveling in a line at a fast speed. The most at one time were 3. One appear +2000-06-03,43.2916667,-84.6075,Ithaca,MI,flash,1,I witnessed a very fast moving white light that suddenly exploded into a bright white flash. +2000-06-03,40.7141667,-74.0063889,New York City (Brooklyn),NY,chevron,3600,Satellites searching area before and after 2 chevron UFO 's were seen. +2001-06-03,34.2255556,-77.945,Wilmington,NC,fireball,5,firey blue ball +2001-06-03,39.7391667,-104.9841667,Denver,CO,disk,420,A Very Descriptive, Multi-Ship, Broad Daylight Observation in Denver in 2001 +2001-06-03,47.3225,-122.3113889,Federal Way,WA,oval,300,Unusual object sighted in Pacific Northwest sky +2001-06-03,35.8455556,-86.3902778,Murfreesboro,TN,flash,1,strange flash of something shiny over Rutherford County, TN. +2001-06-03,40.6913889,-73.8061111,Jamaica,NY,unknown,420,My girlfriend and I had rented a room at Jetts Motel for the weekend. On the way home we decided to walk from the motel to Hillside and +2001-06-03,47.5288889,-121.8241667,Snoqualmie,WA,unknown,15,Snoqualmie satelite/ufo +2001-06-03,46.8219444,-123.095,Rochester,WA,light,4,Extremely fast blue/green light +2002-06-03,39.6133333,-105.0161111,Littleton,CO,changing,60,black, relatively stationary craft seen changing shape in windy skies +2002-06-03,36.2597222,-86.6477778,Old Hickory,TN,sphere,120,round light +2002-06-03,28.5555556,-82.4505556,Spring Hill,FL,triangle,360,Strange lights in the sky over Spring Hill. Triangular in shape no sound +2002-06-03,32.7833333,-96.8,Dallas,TX,unknown,10,Well, I was outside of my house with a friend. We were trying to make out the constellations when all of a sudden I saw a very bright l +2002-06-03,35.7452778,-81.685,Morganton,NC,triangle,300,the triangle moved slowly above the trees moving from west to east.the object did not make any noise. +2003-06-03,35.1597222,-99.3594444,Retrop,OK,disk,180,I was contacted this morning by a person who wanted to file a report of a sighting on 6/3/03 at about 10:35 PM just south the town of R +2003-06-03,48.3613889,-119.5822222,Okanogan,WA,circle,120,6/3/03 northern Washington, erratic circular light moving across the sky +2003-06-03,39.0638889,-108.55,Grand Junction,CO,light,5,I was in clifton just leaving my sisters place when a bright light in the sky cuaght my attention. +2004-06-03,46.7163889,-122.9530556,Centralia,WA,fireball,3,A number of witnesses reported the objet to have crashed or hit just South of Chehalis, however two reliable witnesses saw the same obj +2004-06-03,48.1183333,-123.4294444,Port Angeles,WA,flash,3,Bright Flash over Washington Penninsula ((NUFORC Note: Dramatic meteor. PD)) +2004-06-03,48.7597222,-122.4869444,Bellingham,WA,unknown,30,STRANGE, LIKE I ALMOST DIDNT REMEMBER IT ((NUFORC Note: Dramatic meteor. PD)) +2004-06-03,47.6588889,-117.425,Spokane,WA,flash,1,Quick flash lit up WHOLE sky for split second like nuclear explosion at 2:42am. ((NUFORC Note: Dramatic meteor. PD)) +2004-06-03,37.7780556,-81.1883333,Beckley,WV,unknown,60,Sighted an object that could only be seen through the lens of sunglasses. Appeared as a bright star. +2004-06-03,35.0844444,-106.6505556,Albuquerque,NM,sphere,120,The object appeared to be a metallic looking sphere that flew in an erratic manner. +2004-06-03,33.7513889,-84.7477778,Douglasville,GA,triangle,45,saw a triangular glowing light pattern +2004-06-03,40.31,-75.1302778,Doylestown,PA,changing,480,A rectangular-shaped object with glowing orange neon lights surrounding its perimiter with separating and high speed capabilities +2004-06-03,42.1397222,-71.5166667,Milford,MA,circle,120,a big white light, circle shot to the ground then stopped made a circle and shot horitonally upwards +2004-06-03,40.5408333,-74.5880556,Manville,NJ,light,3600,moving light in the sky that brightens and dims, also darts occasionally +2004-06-03,47.6063889,-122.3308333,Seattle,WA,light,3,3 lights travelling across western sky ((NUFORC Note: Possibly U. S. Navy "NOSS" satellites. PD)) +2005-06-03,32.2094444,-99.7963889,Tuscola,TX,disk,2,Object there, then gone .. +2005-06-03,39.6477778,-104.9872222,Englewood,CO,circle,60,1 object turned into 4 objects and hovered below a storm cloud for approx one minute and disappeared back into the thunderstorm. +2006-06-03,38.8002778,-90.6263889,St. Peters,MO,cylinder,300,Saw 2 objects in broad daylight within 20 minutes +2006-06-03,34.4233333,-118.4711111,Canyon Country,CA,circle,600,Object trailing a commercial airplane. +2006-06-03,34.0522222,-118.2427778,Los Angeles,CA,sphere,1800,High and fast flying craft over LA, CA doing formations and STOPPING. If Military, why maneuveurs over LA? +2006-06-03,28.2486111,-81.2813889,St. Cloud,FL,egg,120,Low flying object in central Florida. +2007-06-03,26.0108333,-80.1497222,Hollywood,FL,triangle,60,Triangular, bright flashing purple and green lights, moving much faster than any plane. +2007-06-03,40.8830556,-85.4975,Huntington,IN,oval,180,two black objects flying slowing south +2007-06-03,38.801944399999996,-94.4525,Raymore,MO,triangle,900,Noticed a VERY strange object over head and was to quit to have a motor and to big to be any type of bird . at First it looked like a s +2007-06-03,30.2941667,-87.5736111,Orange Beach,AL,light,300,star like object flys in night sky +2007-06-03,29.7630556,-95.3630556,Houston,TX,sphere,15,A reddish/orange sphere (1/2 of a full moon), was seen moving steadily across the sky from SW to NE. +2008-06-03,37.2705556,-76.7077778,Williamsburg,VA,sphere,3600,Multiple light phenomena witnessed in the sky above the Jamestown area of Williamsburg +2008-06-03,35.3394444,-97.4863889,Moore,OK,cigar,180,Wife and I saw cigar shaped object, silver, shiny for about 1 minute not moving anywhere and then vanish. +2008-06-03,41.4825,-73.41,Brookfield,CT,light,5,3 large bright lights quickly appearring and disappearing +2009-06-03,36.2138889,-83.295,Morristown,TN,light,2,Some thing falls from the sky. +2009-06-03,34.1222222,-117.5972222,Alta Loma,CA,unknown,60,Weird sound over Rancho Cucamonga +2009-06-03,34.1008333,-117.7669444,La Verne,CA,rectangle,120,Black rectangular object hovering over La Verne Ca. north of 210 fwy +2009-06-03,34.5811111,-113.2038889,Bagdad,AZ,light,7200,was a bright yellow light growing and dissapearing. +2009-06-03,32.2216667,-110.9258333,Tucson,AZ,other,600,Witnessed 6-7 blinking crafts for the second day in a row. +2009-06-03,39.0066667,-76.7794444,Bowie,MD,disk,45,Oval shaped disk with rim of red lights hovering down into woods. +2009-06-03,30.2352778,-92.9213889,Lacassine,LA,circle,300,bright white light flashing coming from the east, above tree level but below cloud level. +2009-06-03,47.7661111,-116.7855556,Hayden,ID,formation,1500,3 CONCURRENT SIGHTINGS WITHIN 25 MINUTES OF EACH OTHER: At 23:25 on 6/03/09 my girlfriend and I were stargazing when I noticed what I +2009-06-03,47.7661111,-116.7855556,Hayden,ID,other,14400,20 Glowing Boomerang shaped objects during 5 sightings over 4 hours +2010-06-03,34.7538889,-77.4305556,Jacksonville,NC,triangle,300,Triangle UFO chased by osprees +2010-06-03,38.7208333,-82.9583333,South Shore,KY,unknown,45,Two lights moving at a pace that had to be other than a ballon without sound. +2010-06-03,38.8105556,-90.6997222,O'fallon,MO,fireball,300,Light's in the sky over O' Fallon Missouri +2010-06-03,40.5852778,-105.0838889,Fort Collins,CO,circle,3,Green circle low in the sky in Fort Collins +2011-06-03,40.0377778,-76.3058333,Lancaster,PA,sphere,604800,bright orange orbs every night/ planes chasing. ((NUFORC Note: Probably not a UFO, we suspect. PD)) +2011-06-03,34.2175,-118.3694444,Sun Valley,CA,fireball,60,This happened a couple months ago but only decided to report it now, being that maybe some else has seen the same thing. I was driving +2011-06-03,34.1480556,-96.3619444,Kenefic,OK,other,120,This was not manufactured on earth but whoever built it looks like they are using very similar aircraft technology. +2011-06-03,42.8405556,-106.3652778,Mills,WY,circle,40,2 round objects spotted, broad daylight. White in color and moving very fast. Flying together. No wings +2011-06-03,27.9655556,-82.8002778,Clearwater,FL,light,180,Group of red/orange flashing lights that individually speed out of sight +2011-06-03,36.0955556,-79.4380556,Burlington,NC,formation,60,Several lights in sky, Thought to be stars at first, video and composite of pictures made, several witnesses, Burlington, NC USA +2011-06-03,42.2175,-78.2755556,Cuba,NY,sphere,300,((HOAX??)) 8-10 red objects in nighttime sky at 22:00 hrs.. +2011-06-03,43.6613889,-70.2558333,Portland,ME,light,105,Bright orange orb observed flying over Casco Bay from the Eastern Promenade. +2011-06-03,41.9141667,-88.3086111,St. Charles,IL,sphere,1680,3 Amber Orbs Spotted Over Rural Area in Midwest +2011-06-03,42.9572222,-83.8305556,Swartz Creek,MI,fireball,90,Four orange lights in the night sky vanish, two by two. +2011-06-03,31.0558333,-97.4641667,Belton,TX,triangle,30,Triangular shaped object with the round white light's at each tip. +2012-06-03,39.0875,-81.9227778,West Chester,OH,light,120,9 Lights Seen +2012-06-03,32.6080556,-80.085,Kiawah Island,SC,circle,120,UFO as in Unidentified. Left a trail like spaghetti in photos & pulsating. didn't get pic of the 2nd flying red craft. +2012-06-03,42.0083333,-91.6438889,Cedar Rapids,IA,light,360,Dancing BRIGHT BRIGHT white orbs in the night sky. +2012-06-03,41.4808333,-87.6377778,South Chicago Heights,IL,egg,300,White egg shaped object over south chicago heights moving from west to east. +2012-06-03,41.2794444,-72.5988889,Madison,CT,rectangle,2,Box shaped object witnessed hovering above Madison connector. +2012-06-03,37.7652778,-122.2405556,Alameda,CA,formation,180,Triangular craft moves like leaf and later 3 multicolor fading lights form PERFECT triangle and turn counterclockwise +2013-06-03,40.6213889,-79.1527778,Indiana,PA,triangle,20,((HOAX?? Contact information is flawed.)) A solid green triangular light sped across the sky, stopped, and continued again. +2013-06-03,35.3805556,-106.4786111,Algodones,NM,oval,60,UFO sighting NM crashing behind treeline then dissapears- was illuminating blue from the bottom with 2 apparnet thrusters with no sound +2013-06-03,37.5536111,-77.4605556,Richmond,VA,fireball,30,4 fireballs flying in formation over Henrico. +2013-06-03,34.7302778,-86.5861111,Huntsville,AL,light,180,Bright Light moved at a steady pace in a northeast direction. No sound. No blinking lights. Altitude appeared to be around 20ꯠ ft. +2013-06-03,42.8744444,-71.1816667,Hampstead,NH,triangle,3,Green cloudy light shooting across the sky +2013-06-03,36.9902778,-86.4436111,Bowling Green,KY,fireball,300,Observed slow and low flying single orangey, reddish ball of light in sky. +2013-06-03,34.0522222,-118.2427778,Los Angeles,CA,circle,240,Glowing orb changing colors and zigzagging across the sky over Westwood, Los Angeles +2013-06-03,35.9488889,-85.0269444,Crossville,TN,light,300,Bright light going west to east over eastern Tennessee. ((NUFORC Note: Possible sighting of the ISS? PD)) +2013-06-03,43.0527778,-74.3441667,Gloversville,NY,light,180,Silent white ball of light slowly arched across sky +2013-06-03,35.3733333,-119.0177778,Bakersfield,CA,cigar,240,Looked like mars, but brighter, vertically. Moving unnaturally, undirectionally through the sky at a controlled speed +2013-06-03,37.1041667,-113.5833333,Saint George,UT,circle,180,3 orange-red glowing objects travelling in a linear fashion. 2 disappear mid-air; 1 lands +2013-06-03,34.2072222,-84.1402778,Cumming,GA,light,600,Two objects that looked like stars/planets..at first were stationary then moved off independently of one another in opposite directions +2013-06-03,39.6416667,-77.7202778,Hagerstown,MD,oval,600,3 bright noiseless lights chasing each other. ((NUFORC Note: Possibly advertising lights? PD)) +2013-06-03,34.0522222,-118.2427778,Los Angeles,CA,fireball,900,Slow moveing golden fire balls stopped and hovered then glowed red and ascended out of sight slowly. +2013-06-03,34.3077778,-118.4483333,Sylmar,CA,fireball,30,3 YELLOW TURNING ORANGE THEN RED LIGHTS & DISAPPEARING IN THE SKY +2013-06-03,39.7683333,-86.1580556,Indianapolis,IN,other,5,10-20 orange dots, 5 feet off the ground, 2 witnesses. Didn't make a exact shape, but vanished after 5 seconds. +2013-06-03,34.1205556,-84.0044444,Buford,GA,circle,30,Watched until it went past the horizon. +2013-06-03,40.4533333,-111.7772222,Alpine,UT,sphere,7200,Unidentified Flashing Object. ((NUFORC Note: Possible star, we suspect. 160 degrees is not in the northern sky. PD)) +2013-06-03,43.6136111,-116.2025,Boise,ID,fireball,103,Glowing, burning object. See video link to YouTube +2013-06-03,42.4405556,-76.4969444,Ithaca,NY,light,300,Star-like bright-white UFO over Ithaca, NY in June 2013. +2013-06-03,38.5347222,-105.9983333,Salida,CO,oval,15,Orange oval object rapidly moving from north to south until it faded from view. +2013-06-03,39.3111111,-94.9222222,Leavenworth,KS,light,120,Two objects light up then slowly disappear as they travel across sky. +2013-06-03,38.6772222,-87.5286111,Vincennes,IN,sphere,300,The colored light was gone in a blink of an eye. +2013-06-03,35.6969444,-82.5608333,Weaverville,NC,circle,300,Bright unexplained light captured on video traveling over Weaverville, NC. +2013-06-03,41.8297222,-86.2541667,Niles,MI,circle,180,Large circular orange light flying across the sky. +1967-06-04,34.6058333,-86.9833333,Decatur,AL,light,180,Strange light shivered across sky, stopped overhead, tried to land, stopped, and then took off out of sight in 2 seconds. +1969-06-04,38.1719444,-75.9413889,Chance,MD,disk,300,AN DISK SHAPED CRAFT ON THE EASTERN SHORE OF MARYLAND +1977-06-04,38.1111111,-85.8702778,Valley Station,KY,circle,300,Bright lighted craft hovering telelphone pole level in Valley Station Kentucky. 500 Lights On Object0: Yes +1992-06-04,39.12,-90.3283333,Jerseyville,IL,other,600,large flame observed over jerseville/IL summer 1992 +1993-06-04,42.4858333,-83.1052778,Madison Heights,MI,cylinder,300,Most Spectacular U.F.O Sighting In History...... +1994-06-04,29.3011111,-94.7975,Galveston,TX,triangle,2,Previous Stealth sighting in Williamsburg area +1996-06-04,34.2541667,-110.0291667,Show Low (Rural),AZ,other,3600,UFO Crash - 1996 - Apache County, AZ +1997-06-04,34.8788889,-76.9016667,Havelock,NC,other,600,Unusual aircraft or ?? +1997-06-04,41.0338889,-73.7633333,White Plains,NY,other,360,Florescent UFO seen by threepassing thru clear area then thru trees at tree level. UFOwas silent and moved evenly. +1998-06-04,32.7386111,-115.9933333,Ocotillo,CA,triangle,720,On a morning hike, we settled to rest after walking 4 miles on a desert trail. We stopped to drink some water and eat some snacks. My +1998-06-04,41.85,-87.65,Chicago (Downtown),IL,sphere,180,i was taking my kids to school in the morning,i was on highway 290 heading east when i noticed a shining chrome like object in the sky! +1998-06-04,30.1763889,-85.8055556,Panama City Beach,FL,triangle,900,: Panama City Beach FL Back Beach Road +1999-06-04,33.4483333,-112.0733333,Phoenix (Approx. 35 Miles South Of),AZ,oval,20,viewed a very bright object aprox. 35 miles south of Phoenix on I-10 while traveling south to Tucson. BRILLIANT -WHITE LIGHT VIEWED FOR +1999-06-04,40.5741667,-74.6102778,Somerville,NJ,light,15,the 3 of us were sitting out in my pool listening to the near by fireworks. i was looking up at the stars when i noticed on begin to m +2000-06-04,43.0388889,-87.9063889,Milwaukee (South),WI,disk,300,We saw a bright row of lights in the sky attached to a saucer-shaped craft. We saw the craft land in a nearby street and approached it +2000-06-04,43.0388889,-87.9063889,Milwaukee,WI,disk,120,slow moving 'star' that morphed into incredibly bright series of white lights, then back and disappeared +2001-06-04,36.7477778,-119.7713889,Fresno,CA,sphere,7200,Sphere/disc shaped object that appeared in the sky over fresno ca. +2001-06-04,47.17,-122.6013889,Steilacoom,WA,other,120,Slightly elongated "Stop Sign" shaped with a hole in the center, silent, pulled 90 degree turns +2001-06-04,43.8844444,-91.235,Onalaska,WI,light,60,Split Second Encounter Over West Central Wisconsin +2001-06-04,47.2530556,-122.4430556,Tacoma,WA,light,30,A light, reddish orange in color, resembling that of an aircraft, approached from the West briefly, then dipped and disappeared. +2002-06-04,36.6758333,-114.62,Moapa,NV,flash,0.5,Daytime shooting star? +2003-06-04,31.9877778,-93.4430556,Evelyn (North Of),LA,unknown,600,Had stoped to check my tires an lights on my truck.I'm a truck driver,ex law officer an milatery.an hate typing.There was not a clo +2003-06-04,40.7091667,-112.1008333,Magna,UT,unknown,7200,Magna was crawling with UFO activity on the 4 of June 2003. +2003-06-04,27.9472222,-82.4586111,Tampa,FL,other,20,What was thought to be a released childs balloon suddenly becomes extremely fast round black object that dissapears out of sight. +2003-06-04,32.7252778,-114.6236111,Yuma (Outside Of),AZ,light,9000,Several hovering globes of yellow/orange light in the sky outside of Yuma, AZ +2003-06-04,40.0377778,-76.3058333,Lancaster,PA,circle,120,Birght continual white light object at high altitude +2003-06-04,45.4944444,-122.8658333,Aloha,OR,fireball,15,Fireball seen behind trees moving vertically then up into the sky +2003-06-04,34.7302778,-86.5861111,Huntsville,AL,disk,900,The object has been seen by both my husband and me two times, at night. The object is a glowing crescent, the color of the sodium (Na) +2003-06-04,33.4483333,-112.0733333,Phoenix,AZ,light,1800,I am a security officer assigned to a sensitive area which I will not disclose. The sighting was from this location, but not at this lo +2004-06-04,33.5386111,-112.1852778,Glendale,AZ,other,3000,Cloudlike smudge moving in a N to S orbital path. Occasional flickering and small flashes were observed. Size was about 120% of a full +2004-06-04,36.6002778,-121.8936111,Monterey,CA,diamond,360,scary but interesting all the dogs in neighberhood were howling like the had seen a demon +2004-06-04,47.4066667,-122.0375,Maple Valley,WA,oval,180,after the incident was gone we talked about it and really wondered what it really was +2004-06-04,44.0522222,-123.0855556,Eugene,OR,cigar,180,"blimp" like shaped object moving across the sky at sunset. Absolutely silent. Let us have a good look, but got no pic. ((Contrail??) +2004-06-04,34.5361111,-117.2902778,Victorville,CA,light,300,TWO BRIGHT YELLOW LIGHTS LINE ABREAST APPEARED FOR 30 SECONDS OVER A FIVE MINUTE PERIOD. +2004-06-04,39.6552778,-106.8280556,Eagle,CO,flash,20,One witness saw a bright flash south of the big dipper. Other two witnesses focused on the area and saw a second bright flash directly +2004-06-04,41.8975,-84.0372222,Adrian,MI,circle,3600,craft with blue and red aura around it ((Twinkling star??)) +2004-06-04,42.4166667,-90.4288889,Galena,IL,light,40,Moving star like light, flashes, changes direction, then fades away ((NUFORC Note: Iridium satellite flash. PD)) +2004-06-04,39.5297222,-119.8127778,Reno,NV,light,120,Satellite looking object making right angle turn +2005-06-04,32.4486111,-99.7327778,Abilene,TX,light,2,Slow flashing light +2005-06-04,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,300,Slow moving star-like object seen during daylight hours +2005-06-04,39.0997222,-94.5783333,Kansas City,MO,changing,900,((NUFORC Note: Possible hoax?? PD)) WHILE MY AND MY WIFE WERE OUT CRUSING AROUND WE STOPPED TO GET GAS AND SAW A UFO. +2005-06-04,45.9975,-121.5269444,Trout Lake,WA,light,6300,Four UFOs in less than 2 hours, all of which "parked" above us, witnessed by a dozen people. +2005-06-04,37.9841667,-120.3811111,Sonora,CA,other,120,Flashing Object Observed over Sonora, CA on Evening of June 4, 2005 +2005-06-04,36.4277778,-81.6238889,Creston,NC,flash,120,Fast flying object that zig zagged across the sky. +2006-06-04,42.9633333,-85.6680556,Grand Rapids,MI,cylinder,180,Cylinder or Cigar over Grand Rapids +2006-06-04,38.2541667,-85.7594444,Louisville,KY,disk,420,flying discs and rectangles in clouds. 500 Lights On Object0: Yes +2006-06-04,33.7455556,-117.8669444,Santa Ana,CA,formation,1200,Multiple White Flying Objects Appearing From Behind the Moon +2006-06-04,42.2411111,-88.3161111,Crystal Lake,IL,changing,180,UFO Sighting in Crystal Lake +2006-06-04,41.85,-87.65,Chicago,IL,disk,60,Silent wobbling disk with white-illuminated underside moving southwest above downtown Chicago +2007-06-04,36.175,-115.1363889,Las Vegas,NV,unknown,3,See you later: appears to leave the Earth! +2007-06-04,47.3177778,-119.5525,Ephrata,WA,sphere,65,Brilliant White Orb of Light, Dim Red/Orange Orb seen on edge of electrical storm +2007-06-04,38.801944399999996,-94.4525,Raymore,MO,oval,6,On Monday evening June 4, 2007 at approximately 8:45PM my daughter observed from her bedroom window a dark grey oval shaped object movi +2007-06-04,35.7883333,-86.6744444,College Grove,TN,light,300,bright object appearing to be about the luminosity and size of Venus. ((NUFORC Note: Overflight of ISS. PD)) +2007-06-04,32.8186111,-85.1794444,Valley,AL,sphere,20,Very bright sphere of light that managed to defy the laws of physics in rural Alabama. +2007-06-04,36.9752778,-121.9522222,Capitola,CA,chevron,4,4-5 dim amber lights in chevron formation, silent, extremely high speed, South to North. +2007-06-04,34.0513889,-84.0713889,Suwanee,GA,light,78,High bright object transverses Atlanta skyline +2007-06-04,35.4872222,-80.6219444,Kannapolis,NC,oval,30,Glowing oval object over North Carolina sky +2007-06-04,31.9972222,-102.0775,Midland,TX,light,3600,Multiple Lights In Sky ((NUFORC Note: Venus and Jupiter sighting, combined with a sighting of a satellite?? PD)) +2008-06-04,33.5205556,-86.8025,Birmingham,AL,unknown,240,I was camping with my friends in a restricted area. I went off 20 yards by my self to use the restroom and smoke a cigarette since my +2008-06-04,29.9230556,-82.7138889,Fort White,FL,fireball,2,large bright (fluorescent) green ball falling at an angle, no tail, sky brightened as it exploded or crashed behind the tree line +2008-06-04,35.3733333,-119.0177778,Bakersfield,CA,other,480,Large object -- appeared top be burning. ((NUFORC Note: Possible contrail?? PD)) +2008-06-04,35.7477778,-95.3694444,Muskogee,OK,oval,300,I was out side doing my yard work, and I happen to look up and I saw this object just sitting there about 75 to 100 feet up, and the cl +2009-06-04,29.4238889,-98.4933333,San Antonio,TX,cigar,60,Cigar shaped object over the San Antonio International Airport Thursday June 4th 2009 10:12 am CDT +2009-06-04,30.2352778,-92.9213889,Lacassine,LA,circle,900,June 4,at 9:30pm I am outside looking up and I seen a fleet of lights coming from the Gulf shore heading directly over me. They made no +2009-06-04,36.3302778,-119.2911111,Visalia,CA,formation,120,formation fly lights over California +2009-06-04,41.7636111,-72.6855556,Hartford,CT,triangle,5400,Stars moving strange on the night of 4th of July fire works. +2009-06-04,35.0455556,-85.3097222,Chattanooga,TN,light,600,Silent blue light and motionless white light seen in sky over Chattanooga +2010-06-04,38.7741667,-76.0766667,Easton,MD,teardrop,600,Discolored grass after thought to be Alien encounter. ((NUFORC Note: We cannot certify that this is a serious report. PD)) +2010-06-04,26.6583333,-80.2416667,Wellington,FL,disk,20,Dark, extremely low and slow-flying, thick, disc-shaped UFO appeared over rooftop of neighbor's house. +2010-06-04,41.3747222,-83.6513889,Bowling Green,OH,circle,20,Two hour period of anomalies (crafts) in which at least 1500 passed from the easter horizon toe the west. +2010-06-04,31.7586111,-106.4863889,El Paso,TX,fireball,10,Yellow/orange light floating back and forth in el paso's westside +2010-06-04,46.8083333,-100.7833333,Bismarck,ND,light,1800,green spotlight and 3 lights +2011-06-04,47.3225,-122.3113889,Federal Way,WA,flash,25,Camera flash like object +2011-06-04,47.8555556,-121.9697222,Monroe,WA,circle,180,((HOAX??)) That was just wierd, i've never seen one of them do that before. +2011-06-04,33.94,-118.1316667,Downey,CA,rectangle,900,It was a rectangle craft that looked pretty normal first but turned out to be something very different. +2011-06-04,40.1577778,-83.0752778,Powell,OH,light,60,Four orange lights over Powell, Ohio +2011-06-04,41.8097222,-72.8311111,Avon,CT,disk,4,2 disk shaped objects flighting in formation over Connecticut +2011-06-04,44.2022222,-88.4463889,Menasha,WI,unknown,600,Red and White lights form in a circle near North end of Lake Winnebago +2011-06-04,43.1547222,-77.6158333,Rochester,NY,fireball,600,Fireball in Rochester ny +2011-06-04,41.5047222,-73.97,Beacon,NY,triangle,60,Hovering Triangle in Beacon New York +2011-06-04,38.3566667,-121.9866667,Vacaville,CA,other,600,Bright firey red orange crescent shaped object hwy 505 north Vacaville Calif 6/4/11 10:30pm +2011-06-04,42.3583333,-71.0602778,Boston,MA,light,4,Sat outside and saw lights appear and disappear in the sky. +2012-06-04,38.5816667,-121.4933333,Sacramento,CA,formation,3600,I could her no soud or see them move but they were there and changed positions in formaion . +2012-06-04,38.5816667,-121.4933333,Sacramento,CA,formation,3600,I could not hear sound or see them move but I saw the formations by the Lunar Moon. +2012-06-04,32.7833333,-96.8,Dallas,TX,egg,86400,I found 2 small orange pods with alien like organisms , curdle up in the fetal position, growing inside then. +2012-06-04,41.995,-88.1855556,Bartlett,IL,fireball,300,We were watching the fireworks display that started around 9:30 pm.We live in Bartlett, Il, a far west Chicago suburb. Initiall +2012-06-04,40.0830556,-74.0686111,Point Pleasant,NJ,oval,900,July 4th, Point Pleasant Beach, NJ Infrared light seen floating at a low altitude over Atlantic Ocean while waiting for fireworks. +2012-06-04,41.8388889,-89.4794444,Dixon,IL,rectangle,120,Bright yellow/red fire like long object moving at slowly across the sky in a straight line. +2013-06-04,40.0455556,-86.0086111,Noblesville,IN,light,180,Very bright white star like object slowly moves across the sky intercepted by a blinking red light. +2013-06-04,40.0791667,-75.3019444,Conshohocken,PA,circle,10,White sphere seen in Eastern sky around sun moving very fast then zoomed up into space. +2013-06-04,47.6105556,-122.1994444,Bellevue,WA,sphere,60,5 Bright Orange Objects flying over Bellvue, WA. +2013-06-04,31.3269444,-89.2902778,Hattiesburg,MS,flash,600,Bright Flash of Light in Three Different Places +2013-06-04,39.2888889,-77.86,Charles Town,WV,circle,2,Like a falling star but not. It's fastest object I've ever seen. +2013-06-04,39.2883333,-77.2041667,Damascus,MD,cigar,180,One long, thin, silver UFO with no marking, lights or landing gear. It had no windows - hard to tell the front from the rear of it. It +2013-06-04,38.6272222,-90.1977778,St. Louis,MO,sphere,360,Spheroid obj executes vert. climb to 25ꯠ ft. in less than 3 mins. ((NUFORC Note: Exceptionally reliable and capable witness. PD)) +2013-06-04,33.9525,-84.55,Marietta,GA,oval,300,I was driving southbound on interstate 75 after work. I looked up in the sky about halfway between 0and zenith and there was what appea +2013-06-04,33.2961111,-86.8436111,Helena,AL,formation,12,Appear to see two white drones while a radar &quot;blob&quot; phenomenon occurs near Redstone +2013-06-04,40.1633333,-76.3952778,Manheim,PA,fireball,600,Bright orange light hovering then moving silently over head over rt 72 in manheim towards lebanon pa +2013-06-04,36.8188889,-76.2752778,Chesapeake,VA,sphere,600,A mid-level altitude, brilliant sphere flew over SW Chesapeake, VA on 06/05/13. +2013-06-04,46.2811111,-87.4408333,Gwinn,MI,other,240,4 Amber Lights in a Trapezoid formation then move to a Triangle formation and fade out over KI Sawyer AFB Gwinn, MI +2013-06-04,26.3394444,-81.7788889,Bonita Springs,FL,changing,3600,Amazing ball of light that changed colors, shapes, and morphed into different forms. ((NUFORC Note: Possible star? PD)) +2013-06-04,45.6797222,-111.0377778,Bozeman,MT,disk,120,An Extremely Bright And Quiet Ball Of Fast Moving Light +2013-06-04,39.0436111,-77.4877778,Ashburn,VA,light,25,Two Unidentified Objects exit Earth's Atmosphere at Physically Impossible Speeds +2013-06-04,47.6105556,-122.1994444,Bellevue,WA,light,600,5 orange lights seen above lake Washington, Bellevue, WA +2013-06-04,47.6816667,-122.2075,Kirkland,WA,light,180,Fast bright white light over Kirkland. +2013-06-04,38.7838889,-90.4811111,St. Charles,MO,changing,3600,Shape shifting object seen over Friedens, Bright changing lights +2013-06-04,42.5630556,-114.46,Twin Falls,ID,sphere,1438,UFO over twinfalls ,id this is real red flying blinking light change in to 3 blinking light and one big orange light fly +2013-06-04,44.8408333,-93.2980556,Bloomington,MN,oval,3600,Large oval ring of lights. +1956-06-06,32.5386111,-86.315,Elmore,AL,sphere,3600,Me and my cousins where playing near morter creek, near elmore ,out in woods.A disk shaped sphere came out of sky and it was hover +1959-06-05,39.8027778,-105.0869444,Arvada,CO,circle,3600,small round one over Rocky Flats at high altitude in 1959 +1964-06-05,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,5400,white ufo round flying saucer, had a top and bottom and rotated in opposite directions, moved from one place to another so fast it seem +1967-06-05,47.2530556,-122.4430556,Tacoma,WA,other,120,These were black half spheres in a triangular formation +1969-06-05,33.4816667,-81.5138889,Windsor,SC,disk,1800,what was this? ufo or NO ? No doubt a ufo back then.,. +1970-06-05,41.4994444,-81.6955556,Cleveland (Lakewood),OH,disk,900,I was asleep with my mom and little brother when for some wierd feeling I opened my eyes .I was faceing a window and looked outside to +1976-06-05,42.2041667,-72.6166667,Holyoke,MA,disk,15,a disk flew over a group of girls in 1976 +1979-06-05,40.9166667,-74.1722222,Paterson,NJ,other,2,I realize this happened 27 years ago, but I could never forget it. I was driving on I -80 heading west, passing the city of Paterson; a +1980-06-05,41.7519444,-87.9738889,Darien,IL,unknown,120,I thought at first it might be a helecoper, but there was no sound coming from it, nothing +1981-06-05,33.8925,-80.5183333,Wedgefield,SC,disk,30,Wedgefield SC sighting +1981-06-05,33.6888889,-78.8869444,Myrtle Beach,SC,light,10,2 lights zig zag in sky +1990-06-05,40.1244444,-87.63,Danville (Rural),IL,unknown,1200,object hovered in place south of our vantage point very close. Had no sound, faint feel of electric charge in air, strobing lights in +1991-06-05,32.9786111,-115.5294444,Brawley (Rest Stop Close To; Near Yuma),CA,light,1800,At a rest area in southern California my family and I vidiotaped a number of orange lights above a water tower that didn't move that al +1992-06-05,40.7141667,-74.0063889,New York City (Manhattan),NY,light,25,((HOAX??)) 1992 UFOs over Manhattan. +1994-06-05,33.4472222,-84.1469444,Mcdonough,GA,other,15,I and two others saw a reddish orange ball of light with a tail traveling through the night sky under clouds while fishing. +1994-06-05,41.6527778,-70.2833333,Hyannis,MA,other,60,boomerang sliver shiny shaped object +1995-06-05,41.760555600000004,-88.32,Aurora (Outside),IL,triangle,300,TRIANGULAR SHAPED OBJECT MOVING TOWARDS ME THINKING IT IS A AIRPLANE I WAS LOOKING TO GET A GOOD LOOK IT WAS VERY LOW HEARD NO SOUND FL +1997-06-05,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,120,Sighting Over Brooklyn New York +1997-06-05,37.6688889,-122.0797222,Hayward,CA,other,60,It was hat-shaped and and entirely lighted up and it landed in an in an industrial area +1998-06-05,40.9166667,-74.1722222,West Paterson,NJ,disk,120,at approx. 3:30 a.m. est I was awaken by an intense wind tunnel like sound coming from outside my window.Upon looking out my window, I +1999-06-05,41.6005556,-93.6088889,Des Moines,IA,other,4,Looked like shooting star, Except they had no tail, went from south horizion to north horizion at a very high rate of speed +1999-06-05,39.7458333,-75.5469444,Wilmington,DE,egg,300,In June 1999 a shiny silver egg shaped craft was seen in North Wilmington, DE +1999-06-05,29.7963889,-99.2461111,Medina,TX,light,1200,ON JUNE 5ƾƿ I WAS ON A LEADERSHIP CAMP WITH ABOUT 85 CHILDREN AT CAMP CORPUS CHRISTI 2 MILES WEST OF MEDINA TX. WHILE SETTING UP LIGH +1999-06-05,34.7302778,-86.5861111,Huntsville,AL,flash,90,Around midnight I heard this noise and I looked outside and there were like 5 or 6 blinking lights up in the sky....they were in a row +2000-06-05,37.6866667,-96.9763889,Augusta,KS,light,300,V-shaped craft with 7 dim blinking lights +2000-06-05,38.5366667,-82.6830556,Ironton,OH,triangle,1800,Black triangle with paulsing orb on underside. +2000-06-05,33.8358333,-79.0480556,Conway,SC,triangle,900,22:00 HOURS CONWAY SOUTH CAROLINE TRIANGLER SHAPED OBJECT SIGHTED MOVING ERRATICALLY TOWARDS WEST. +2000-06-05,33.4322222,-84.8694444,Sargent,GA,unknown,300,I was sitting in my living room at about 11 on June 5 and had been smoking a little hash. Sorry, I do this from time to time. Well, a +2001-06-05,46.6022222,-120.5047222,Yakima,WA,light,480,Just a light +2001-06-05,30.3655556,-88.5561111,Pascagoula,MS,disk,1200,one object. white on top and red on bottom spinning and darting. Black backgound. I have pictures on my camcorder. You should see.!!! +2001-06-05,40.2338889,-111.6577778,Provo,UT,light,600,Strange light sits above mountain, and disappears +2001-06-05,28.0680556,-80.5605556,Melbourne Beach,FL,fireball,240,Fireball inside a cloud on the ocean in the Bermuda Triangle area. +2001-06-05,42.5463889,-71.1741667,Wilmington,MA,triangle,60,There was a strange light, at three points to form a triangle. I knew it was a triangle because they stayed equaly apart. The lights we +2001-06-05,38.8813889,-94.8188889,Olathe,KS,other,300,Peanut sape heading north, low and fast, No noise +2002-06-05,36.0102778,-84.2697222,Oak Ridge,TN,sphere,1800,Dark sphere hanging in the sky just before sunset. +2002-06-05,48.5569444,-113.0125,Browning,MT,fireball,4,just got done watching the nba finals game one, i was walking out the door to my friends house when i looked to the east and half way u +2002-06-05,39.2888889,-77.86,Charles Town,WV,light,3,I would have reported this sooner if I had knon there was somewhere to report it. I was looking out my bedroom window when I saw a whit +2002-06-05,60.7922222,-161.7558333,Bethel,AK,other,120,Strange flyover witnessed +2003-06-05,36.0152778,-83.415,Dandridge,TN,oval,30,the object was oval shaped and was silver. +2003-06-05,40.7141667,-74.0063889,New York City (Brooklyn),NY,cigar,600,Was traveling on kent ave in brooklyn in my work truck when i saw something in the sky.I snapped a pic of it and i would like to send i +2003-06-05,34.9919444,-86.8466667,Ardmore,TN,egg,2700,HBCCUFO CANADIAN REPORT: Hovering egg shaped object. +2003-06-05,36.0397222,-114.9811111,Henderson,NV,other,1200,Two pulsating blue objects stayed motionless near Black Mountain. +2003-06-05,41.4413889,-85.265,Kendallville,IN,light,300,Solid star appearing red light, very fast, no flashing or trail was left +2003-06-05,41.1108333,-112.0252778,Clearfield,UT,triangle,7,3 triangle white glowing luminous shapes flying formation hovered then changed direction and disappeared +2004-06-05,35.7330556,-81.3413889,Hickory,NC,fireball,10,Fireball seen in Western NC +2004-06-05,47.0530556,-122.2930556,Graham,WA,circle,105,Meteor like object seen South of Mt. Rainier +2004-06-05,37.7291667,-93.2991667,Polk (South Of),MO,unknown,20,Object/being +2004-06-05,38.6858333,-121.0811111,El Dorado Hills,CA,changing,1200,Bright light with red around center moved towards us +2004-06-05,40.7213889,-89.2727778,Eureka,IL,circle,25,Round black object flying North at high speed +2004-06-05,38.4786111,-120.0027778,Lake Alpine,CA,other,20,While fishing at Lake Alpine, I saw what I thought to be a silver aricraft, possibly a Cessna 140 or an Ercoupe, as these planes often +2004-06-05,42.3683333,-83.3527778,Livonia,MI,circle,5400,Six round, silver balls in the upper atmosphere flew at formation, stayed in one spot. +2004-06-05,38.4405556,-122.7133333,Santa Rosa,CA,light,900,About 7pm PDT 6/5/04 I saw two small bright objects to the South East about 45 degree elevation over Sonoma Mountain. The tiny dots wer +2004-06-05,35.0716667,-81.65,Gaffney,SC,fireball,60,Fireball seen in South Carolina +2004-06-05,38.5816667,-121.4933333,Sacramento,CA,disk,1244,I captured on camera, a UFO flying over the state Capitol in Sacramento Ca. +2004-06-05,39.8366667,-105.0366667,Westminster,CO,chevron,10,amber orb chevron fly -by over evening backyard party +2004-06-05,45.1002778,-91.4886111,Bloomer,WI,light,3600,Moving lights ((NUFORC Note: Probably Venus or Jupiter, we suspect. PD)) +2004-06-05,36.0080556,-93.1863889,Jasper,AR,triangle,30,Triangle formation of lights in the sky ((NUFORC Note: Report not inconsistent with U. S. Navy NOSS satellites. PD)) +2004-06-05,36.1302778,-118.8172222,Springville,CA,triangle,600,triangular and transparent flying craft seen saturday night +2005-06-05,34.5113889,-93.2408333,Royal,AR,light,4,Bright Blue/White Meteor-like Object Manuvering Over Arkansas +2005-06-05,40.2202778,-74.0125,Asbury Park,NJ,disk,120,I already reported this just a few minutes go--but forgot to mention--on my way home from work every steet light went out in rows as I +2005-06-05,40.2202778,-74.0125,Asbury Park,NJ,disk,120,Sudenly a shiny object appeared...It seemed to go up --then down---and wavered ---it shined as a 'silver' metalic object---almost in th +2005-06-05,34.698055600000004,-118.1358333,Lancaster,CA,light,10,Dissolving "Stars" ((NUFORC Note: Satellites. PD)) +2005-06-05,38.4408333,-92.9916667,Stover,MO,other,180,strange disk shaped object with rotating white and orange lights motionless then vanishes in seconds +2005-06-05,38.9858333,-119.1619444,Yerington,NV,cylinder,5,BLUE GREEN Cylinder/Bullet object with RED aura seen over Yerington, Nevada +2005-06-05,33.4483333,-112.0733333,Phoenix,AZ,formation,120,6 lights appear and then 2 more fly down and move into a formation with the others +2005-06-05,36.8688889,-94.3677778,Neosho,MO,cross,20,I thought it was the moon at first behind the clouds and then it moved +2006-06-05,37.9061111,-122.5438889,Mill Valley,CA,other,180,red lights in square formation with blinking center light +2006-06-05,29.2855556,-81.0561111,Ormond Beach,FL,fireball,15,streak of flame heading east very bright +2006-06-05,36.7477778,-119.7713889,Fresno,CA,triangle,60,triangle shape object hideing with strobe lite distraction almost invisable +2006-06-05,32.7252778,-97.3205556,Fort Worth,TX,unknown,1800,there were white red and blue lights hovering in all directions.it moved unlike any man mad aircraft and i watched it for about 20-30 m +2006-06-05,43.6275,-89.7708333,Wisconsin Dells,WI,cylinder,300,12:00 noon.on my wayback to work for lunch. i was on a tractor when something caught my eye above some tall pine trees...a cylinder sha +2006-06-05,45.3194444,-93.2022222,East Bethel,MN,teardrop,300,Saw an object, and several Military jets flew toward it in an area where we rarely see military jets overhead. +2006-06-05,36.0102778,-84.2697222,Oak Ridge,TN,cigar,180,Cigar Shaped Craft changes direction 180 degrees with no loss of speed +2006-06-05,38.7891667,-90.3225,Florissant (North St. Louis Co.),MO,sphere,60,Observer. 2006-06-05, 22:30L, N on Shackelford Rd/Broadway Dr, 30mph, urban/rural area. Sighted approx 40 deg angle crossing road one +2006-06-05,27.9472222,-82.4586111,Tampa,FL,disk,300,Bayshore Blvd. flying disc. +2006-06-05,34.2694444,-118.7805556,Simi Valley,CA,light,300,Strange yellow oval of light weaving at sharp angles, definitely not any type of plane or helicopter. +2007-06-05,40.5813889,-79.5666667,Apollo,PA,other,20,At Approximately 18:00, Tuesday June 6 as a thunderstorm approached from the west, I was on my back deck. I looked to the North north w +2007-06-05,41.85,-87.65,Chicago,IL,light,60,Bright green/white lights hovering over Chicago area. +2007-06-05,41.2411111,-77.0013889,Williamsport,PA,fireball,180,Bright orange fireball +2007-06-05,41.8088889,-88.0111111,Downers Grove,IL,light,240,Large, glowing bluish/white object glides eastbound over northern Illinois and Chicago. +2007-06-05,40.6083333,-75.4905556,Allentown,PA,unknown,1200,Extremely bright 'twinkling' star-like light hovering in cloudless night sky. ((NUFORC Note: Venus sighting?? PD)) +2007-06-05,37.7477778,-84.2947222,Richmond,KY,unknown,240,orbs in the kentucky sky +2007-06-05,40.7141667,-74.0063889,New York City (Manhattan),NY,light,2,Large, bright, comet-like object seen disintegrating over Upper East Side of Manhattan near 85th Street and 3rd Avenue. +2007-06-05,39.1652778,-86.5263889,Bloomington,IN,unknown,10,Large, Low and Fast Silver Object Over Bloomington IN +2007-06-05,44.9975,-91.7269444,Colfax,WI,light,1800,Very large, and very intense light in clear dark night sky moving erratically and appeared to have landed. ((NUFORC Note: Venus?? PD) +2008-06-05,34.9616667,-89.8294444,Olive Branch,MS,flash,2700,Strange sightings over north Mississippi +2008-06-05,26.2441667,-80.2066667,Margate,FL,fireball,10,Bright light moving quickly towards the ground vanishing behind some trees. NOT a shooting star. +2008-06-05,35.2269444,-80.8433333,Charlotte,NC,circle,10800,Moving Craft Overlooking Charlotte, NC +2008-06-05,41.9172222,-87.8955556,Northlake,IL,cigar,2,Possible UFO, around commercial Jet plane +2008-06-05,38.6786111,-121.2247222,Orangevale,CA,sphere,12,Large white glowing like object taveling verticall.disapears under airplain. +2008-06-05,38.9516667,-92.3338889,Columbia,MO,triangle,120,Two bright white headlights, triangle shape on bottom with lights and row of red and green lights on back +2008-06-05,35.489444399999996,-120.6697222,Atascadero,CA,light,120,Saw an Object moving to the South South East and changed course and gained altitude and disappeared into the night sky. +2008-06-05,36.7477778,-119.7713889,Fresno,CA,light,60,Bright light southbound over Fresno, Ca. +2008-06-05,39.2666667,-81.5616667,Parkersburg,WV,circle,60,Bright white light flying in the sky, hovering and diapeared before our eyes. ((NUFORC Note: Satellite?? PD)) +2008-06-05,33.2336111,-82.2325,Keysville,GA,changing,900,Shape changing light formations, and two hovering vessels, eye level, at very close range +2008-06-05,38.52,-89.9838889,Belleville,IL,light,30,Brite White Light in Southwest Sky Near STL. +2008-06-05,36.1002778,-86.1319444,Watertown,TN,light,180,Strange blinking lights that hover appearing in the sky several nights in a row, all at the same time each night. ((Star??)) +2009-06-05,33.7455556,-117.8669444,Santa Ana,CA,unknown,3600,((HOAX??)) Grey Alien Being +2009-06-05,36.0397222,-114.9811111,Henderson,NV,triangle,300,Very tall and slim pyramid shape on it's side. The point was heading south. Black. silent +2009-06-05,40.9572222,-73.9638889,Demarest,NJ,triangle,120,First craft I have seen, posted a report back a few years ago about an oval type portal that appeared at my old home in Englewood NJ. +2009-06-05,28.805,-97.0033333,Victoria,TX,light,1800,Unexplained objects in broad daylight over Victoria, TX. +2009-06-05,34.0522222,-118.2427778,Los Angeles (Lincoln Heights),CA,disk,4,Two different types of objects were filmed on June 5th 2009 near Dodger Stadium 3:00 PM +2009-06-05,30.2419444,-93.2505556,Westlake,LA,sphere,50,Moving ball of Light +2009-06-05,35.9411111,-80.4094444,Advance,NC,sphere,20,Greenish orb being chased by lighted military helicopter and blacked out helicopter. Flying SW approx 150 ft off ground. Orb was very +2009-06-05,38.4088889,-121.3705556,Elk Grove,CA,other,420,3 UFOs in Sacramento, Ca. Viewed from Elk Grove, CA. the same night News Air10 Helicopter filmed UFO sighting. +2009-06-05,39.1666667,-79.7025,St. George,WV,sphere,300,orange light in south +2009-06-05,46.4913889,-122.9366667,Winlock,WA,light,300,saw strange like fly toward us and then shoot srtaigh up furhter into the sky,this is 5th time seeing this light. +2010-06-05,39.0483333,-95.6777778,Topeka,KS,rectangle,45,Two orange objects, side by side moving south over Topeka, Ks +2010-06-05,37.8619444,-84.6616667,Wilmore,KY,light,2,Bright white light flying over wilmore Kentucky +2010-06-05,38.2541667,-85.7594444,Louisville,KY,light,5,Neon green burning light +2010-06-05,36.2552778,-94.1305556,Lowell,AR,other,900,v shaped light in eastern sky over Lowell, AR. +2010-06-05,41.85,-87.65,Chicago,IL,light,120,Amber/orange unknown light +2010-06-05,33.5091667,-111.8983333,Scottsdale,AZ,circle,900,100's of star like objects move in a synchronized way across a night sky and slowly disappear, Arizona. +2010-06-05,38.5816667,-121.4933333,Sacramento,CA,light,20,A light that, at first, appeared to be a star, suddenly flashed several colors and flew away from the Earth until it disappeared. +2011-06-05,41.2230556,-111.9730556,Ogden,UT,other,2,Bright green flash of light, oval shaped with petals like you would see on a flower, no tail only lasted a second. +2011-06-05,29.8944444,-81.3147222,St. Augustine,FL,sphere,240,Black sphere flying in weird directions went behind a tree, then seen a blimp shaped object jet off. +2011-06-05,42.8863889,-78.8786111,Buffalo,NY,diamond,10,Unidentified flying object or anomaly caught on HD video appears to be diamond shaped with light. +2011-06-05,29.8944444,-81.3147222,St. Augustine,FL,light,120,Bright Glowing white orb flying from NW to E then stopped and Moved South +2011-06-05,41.2586111,-95.9375,Omaha,NE,triangle,8,This is the second time I and my friend seen this object the first one was in April can't remember the exact date and the one I saw yes +2011-06-05,34.6086111,-98.39,Lawton,OK,sphere,60.3,Luminous flying sphere observed near Lake Quanah Parker, Wichita Mountains Wildlife Refuge, Lawton, OK +2012-06-05,34.1511111,-118.4483333,Sherman Oaks,CA,unknown,120,I saw a ufo flying about 15 floors off the ground , might have been lower - seemed impossible for a plane to fly that low in such a di +2012-06-05,37.7588889,-77.4802778,Ashland,VA,light,20,Ball of Light +2012-06-05,33.5538889,-117.2130556,Murrieta,CA,cylinder,300,Saw a silver cigar shaped object flying virtically in Murrieta Ca skies this morning. +2012-06-05,36.6797222,-79.3733333,Blairs,VA,circle,60,2 circular red objects in the sky that took off fast in the sky +2012-06-05,33.5588889,-97.8483333,Bowie,TX,oval,7,Gaseous green object seen from vehicle as about the size of a nickel, seemed to be crashing, and no engine noise or sonic boom. +2012-06-05,40.2966667,-120.5230556,Janesville,CA,disk,360,One matalic disk huvering in the sky over the mountin for a few Min. then speeding north at a very high rate of speed into the clouds. +2012-06-05,34.0522222,-118.2427778,Los Angeles,CA,light,300,9 UFO lights in my back yard. MUST SEE. +2012-06-05,48.5344444,-123.0158333,Friday Harbor,WA,light,180,Object admitted light only. ((NUFORC Note: The ISS was not visible at this time. PD)) +2012-06-05,34.0522222,-118.2427778,Los Angeles,CA,circle,120,"Rings of Fire" +2012-06-05,34.0752778,-84.2941667,Alpharetta,GA,sphere,180,About a dozen silent pulsating reddish-orange orbs in the sky +2012-06-05,37.6922222,-97.3372222,Wichita,KS,light,2,Bright strange green/blue spark emitting object seen over Wichita Ks +2012-06-05,32.8047222,-97.4447222,Lake Worth,TX,unknown,5,Green light shoots out of tree line and dives into lake +2012-06-05,40.4655556,-80.0658333,Mckees Rocks,PA,circle,600,Saw 2 bright orange lights followed by two more +2012-06-05,40.4655556,-80.0658333,Mckees Rocks (Kennedy Twp.),PA,circle,300,Two red/orange circular objects moving from NE to SW over McKees Rocks & Kennedy Twp. Just W of Pittsburgh. +2012-06-05,36.805,-98.6661111,Alva,OK,fireball,5,Bright blue ball of light over alva, ok. +2012-06-05,33.3061111,-111.8405556,Chandler,AZ,circle,120,Single flashing orb appearing just above the horizon +2012-06-05,35.5125,-77.1008333,Chocowinity,NC,light,20,Big slow moving light in Chocowinity NC +2012-06-05,41.4244444,-91.0430556,Muscatine,IA,light,240,Wandering white light flying north, while three red/white constant lights remained stationary +2012-06-05,35.1594444,-84.8766667,Cleveland,TN,light,300,Rhythmically moving point of light slowly crossing the northern sky near Chattanooga +2012-06-05,41.6661111,-81.3397222,Mentor,OH,circle,240,Weird star behavior. +2013-06-05,39.7683333,-86.1580556,Indianapolis,IN,disk,180,Weird sounding bright white light, round but not flat shape UFO, faster then the speed of light gone within a blink of a eye. +2013-06-05,37.2708333,-79.9416667,Roanoke,VA,light,60,UFO flap in Roanoke, VA - almost daily +2013-06-05,41.6977778,-72.7241667,Newington,CT,unknown,10,Bright solid white and blue orb over Newington. +2013-06-05,57.5033333,-134.5838889,Angoon,AK,sphere,600,One appeared first at 1:20 am; hovered in place for about two minutes before heading north, was joined by a second light. +2013-06-05,30.0969444,-95.6158333,Tomball,TX,light,15,Red Light in my room from outside. +2013-06-05,40.7372222,-114.0366667,Wendover,UT,changing,7200,Two hovering objects +2013-06-05,38.7763889,-76.5555556,Deale,MD,fireball,60,Confused +2013-06-05,47.3352778,-116.8875,Plummer,ID,cylinder,300,Silvery cylinder +2013-06-05,36.0955556,-79.4380556,Burlington,NC,circle,600,5 Orange lights seen over Burlington, NC +2013-06-05,29.9688889,-95.6969444,Cypress,TX,circle,300,My neighbor knocked on my door and asked me to come outside because he was seeing something he had not ever seen before in the sky. +2013-06-05,36.0725,-79.7922222,Greensboro,NC,light,300,Orange flaming sphere seen at night +2013-06-05,38.8402778,-97.6111111,Salina,KS,light,360,Bright blue object moving erratically through the night sky. +2013-06-05,34.5958333,-92.4888889,Bryant,AR,formation,180,Unexplainable! +2013-06-05,42.0986111,-75.9183333,Binghamton,NY,diamond,180,Object with rapidly flashing lights gliding through night sky silently over Binghamton,NY +2013-06-05,43.0416667,-72.7916667,Wardsboro,VT,sphere,240,2 slow moving white orbs travel towards a dim star then fade away. +1952-06-06,39.6333333,-105.3166667,Evergreen,CO,disk,18000,Childhood abduction and mental and visual encounters through out life. +1955-06-06,30.4211111,-87.2169444,Pensacola,FL,light,300,orange fireball . +1956-06-06,41.0813889,-81.5191667,Akron,OH,other,30,Akron Ohio, 1956, Bright object similar to flying wing. 10 pm. See full description. +1957-06-06,40.7683333,-73.5255556,Hicksville (Long Island),NY,circle,15,My friend and I saw 7 perfectly circular objects fly over us. We were laying in his back yard looking up to see any shooting stars. +1958-06-06,39.1619444,-84.4569444,Cincinnati,OH,diamond,86400,odd shaped diamond saucer,light could pass threw it,about thirty feet longᄿ feet high,three feet from touching the ground,glass looki +1960-06-06,28.4055556,-80.605,Cape Canaveral,FL,fireball,14400,It was as if a huge ball of light zoomed down from the sky and just disappeared before my eyes. +1965-06-06,33.6533333,-84.4494444,College Park,GA,circle,240,Seeing an object close to the Atlanta Airport +1967-06-06,42.0083333,-91.6438889,Cedar Rapids,IA,oval,120,Bright-as-chrome object hovering +1968-06-06,34.4838889,-114.3216667,Lake Havasu City,AZ,cigar,15,Lake Havasu - 1968 - silent cigar shaped chrome object hanging right in front of me, disappeared in an instant +1968-06-06,46.7833333,-92.1063889,Duluth,MN,disk,120,a ship hoovered over this police car +1968-06-06,48.2325,-101.2958333,Minot,ND,disk,1800,Minot 1968 missle arming +1968-06-06,40.7933333,-77.8602778,State College,PA,oval,2,Bright, oval object twice size of home low to ground. +1970-06-07,41.8088889,-88.0111111,Downers Grove,IL,disk,600,Flying saucer traveling through the sky in the middle of the day! +1971-06-06,34.5361111,-117.2902778,Victorville,CA,light,1800,Blinking star randomly, instantly, jumping about in an area about 20 to 30 deg. above Mojave horizon. +1973-06-06,43.4536111,-96.4338889,Larchwood,IA,diamond,600,Diamond shaped object seen by family of 5 driving near TV transmission tower in South Dakota at Iowa Border. +1974-06-06,29.9916667,-81.6783333,Green Cove Springs,FL,circle,3600,Ever seen an orb, and then the mother ship. I have. Then they gave me something. +1974-06-06,33.6102778,-96.4105556,Bells,TX,triangle,600,Bright triangular pool rack 100 feet away 10 min. 100 foot length silent radical strobes blue green red hypnotic +1975-06-06,35.2269444,-80.8433333,Charlotte,NC,disk,1200,This disk with various colors of light 'oozing' around the bottom section was seen just above the trees at the corner Dotger Avenue and +1975-06-06,37.9886111,-84.4777778,Lexington,KY,circle,1200,laser lights in kentucky +1976-06-06,32.7152778,-117.1563889,San Diego,CA,circle,120,Classical flying saucer desacends over San Diego. +1976-06-06,32.5838889,-117.1122222,Imperial Beach,CA,light,60,Zig Zagging star like object zaps another Star like object with light beam +1976-06-06,40.7583333,-82.5155556,Mansfield,OH,disk,1800,ONE HUGE MOTHERSHIP +1977-06-06,38.2972222,-122.2844444,Napa,CA,disk,3600,flying saucer had landed on a driveway then went straight up into a pinpoint in one second +1982-06-06,40.7355556,-74.1727778,Newark,NJ,fireball,600,theire out there just like we,re here. +1982-06-06,41.7,-71.4166667,Warwick,RI,disk,120,Two orange/gold saucer shaped craft +1983-06-06,43.4066667,-124.2230556,North Bend,OR,oval,240,My wife, two kids, ages 9 and 13 and myself. We were going home east just turning from No.BAY Dr, onto No. Way. As we all looked up the +1986-06-06,38.6272222,-90.1977778,St. Louis,MO,unknown,180,As I looked out from our DC-9 window I saw a huge aircraft.It had rows and rows of brightly lit windows. +1990-06-06,37.8455556,-83.8583333,Stanton,KY,disk,600,Multi colored lights attached to saucer shaped craft at night +1991-06-06,38.9805556,-76.9372222,College Park,MD,other,1800,heavy looking object; stationary; hovering and very loud +1992-06-06,34.1797222,-85.7613889,Leesburg,AL,light,120,A light on the horizon moving in quick and unusual manner before disappearing. +1995-06-06,32.7833333,-96.8,Dallas,TX,light,10,Bright light came out from behind nothing, stopped on a dime and then proceeded to fly back behind nothing... cloudless sky. +1995-06-06,42.8694444,-85.6447222,Kentwood,MI,circle,15,Silver/gray circular object high on horizon +1995-06-06,42.8694444,-85.6447222,Kentwood,MI,sphere,15,Circular Object +1995-06-06,39.7555556,-105.2205556,Golden,CO,other,900,Witnessed a Barbell like object that rotated irratically, changed directions several times, and finally dissapeared. +1997-06-06,47.7625,-122.2041667,Bothell,WA,light,60,At about 9:45 PM, Friday June 6th, I saw a relatively large round orange/yellow fiery light glide straight across the sky from the NE t +1998-06-06,40.8686111,-82.3183333,Ashland,OH,cone,300,two silver cone shaped objects +1998-06-06,28.6,-81.6741667,Montverde,FL,egg,4,IT WAS JUST BEFORE DARK WHEN I WAS I WAS RIDING HOME ON MY FOURWHEELER , WHEN I SAW A BRIGHT YELLOW OBJECT ABOUT THREEHUNDRED FEET UP I +1998-06-06,39.5297222,-119.8127778,Reno,NV,formation,120,My wife and I were on our way to Reno. I was looking at a large cloud formation that was pouring out an unbelievable amount of rain. Wh +1998-06-06,40.8583333,-74.1641667,Clifton,NJ,sphere,600,I was sitting down when it came from the north. I call my wife, she saw it slow and hovering towards the eastern sky.It was visible for +1998-06-06,36.6777778,-121.6544444,Salinas,CA,fireball,10,Fireball flickers to a huge tumbling black potato, eyes and all, looking rock +1998-06-06,27.9472222,-82.4586111,Tampa,FL,light,25,5 G light, only alien, or they figured out how to reverse gravity, or the sense of. +1998-06-06,43.0772222,-78.1872222,Elba,NY,light,20,Saw brief white light travel allong the horizon, stop midflight and then continue on a different course, at extreem rates of exellera +1998-06-06,27.6383333,-80.3975,Vero Beach,FL,light,60,FLAME COLOR LIGHT BRITE AND STEADY FLEW ACROSS TO THE EAST AT 2000 FEET. APPEARED TO HAVE AN OVERHEAD REFLECTION OF AN OBJECT HOVERING +1998-06-06,38.6272222,-90.1977778,St. Louis,MO,diamond,4,Saw hourglass shape object travel at a great speed across horizon going east to west. object covered distance in about 3 or 4 seconds. +1999-06-06,42.3472222,-89.0388889,Machesney Park,IL,light,5,Exiting my car after returning from work, I noticed a unusual light to the left of true north at about ll oclock. It "blinked out" aft +1999-06-06,34.0983333,-118.3258333,Hollywood,CA,circle,1200,I witnessed what I believed to be three stars at first. Then they began to glide across the sky. +1999-06-06,38.5816667,-121.4933333,Sacramento,CA,unknown,1200,Stationary in sky for 15 minutes, then shot away into sky faster than sound, maybe as fast as light. +1999-06-06,44.8011111,-68.7783333,Bangor,ME,light,180,A bright light hovering in the sky, closes into itself, then takes off at an incredible speed. +1999-06-06,34.0194444,-118.4902778,Santa Monica,CA,formation,8,Seen traveling north in western sky about 2 degrees below (Mars?)looked like birds in formation at first, but very fast and no flapping +2000-06-06,38.7077778,-77.0863889,Mt. Vernon,VA,rectangle,2,I spotted a short black rectangle in the sky moving moderately fast. +2000-06-06,32.7947222,-116.9616667,El Cajon,CA,sphere,30,SPHERICAL BRIGHT OBJECT IN SOUTHEASTERN SKY OF SAN DIEGO COUNTY EARLY JUNE 6񫺐! +2000-06-06,36.1538889,-95.9925,Tulsa,OK,circle,300,Two Balls of Light sighted in Tulsa, Ok. +2000-06-06,38.6272222,-90.1977778,St. Louis,MO,oval,60,Highley reflective silver oval/disk seen in sky above St. Louis, MO 6/6/00 +2001-06-06,48.3375,-117.2961111,Cusick,WA,cigar,3000,I was walking in a field when at my three o'clock I saw a UFO. +2001-06-06,21.4447222,-158.19,Waianae,HI,sphere,10,we saw this in broad daylight, and the sky was perfectly clear. +2001-06-06,38.8461111,-77.3066667,Fairfax,VA,disk,30,I was looking out my office window when I saw a metallic looking saucer like craft moving in erratic motions. It couldn't have been mor +2001-06-06,29.4236111,-95.2438889,Alvin,TX,cigar,60,Flying Submarine whistles over treetops frightening three teenage witnesses in Alvin, Texas then shoots off and vanishes +2001-06-06,34.0522222,-118.2427778,Los Angeles,CA,disk,3600,Bright light motionless in the sky, then quickly changes direction and shape. +2001-06-06,40.1672222,-105.1013889,Longmont,CO,triangle,600,Cloaked Triangle shaped outlined with "stars". +2002-06-06,42.9711111,-73.7930556,Malta,NY,triangle,4,Saw a slow moving Triangle-shaped craft flying over wooded residential area. +2002-06-06,26.3583333,-80.0833333,Boca Raton,FL,flash,1800,My husband does not sleep well so I wake up at night to tell him to come back to bed. He gets up every night between 4:30 to 5:30 and g +2002-06-06,37.9780556,-122.03,Concord,CA,other,420,Chrome orbs size of a basket ball moving from 0mph to speed of ?at about 10 thousand feet up. +2002-06-06,36.8527778,-75.9783333,Virginia Beach,VA,triangle,600,Black triangular object silently hovered in sky at cloud level for aprox 10 mins before the darkness of night and storm obscured it. +2002-06-06,36.175,-115.1363889,Las Vegas,NV,triangle,60,orange glowing triangular +2002-06-06,26.6402778,-81.8725,Fort Myers,FL,light,120,i was sitting at the pool,in my apartment bulding,it was about 9:30 pm when it happend.there was no stars in the sky,because it was clo +2002-06-06,30.4141667,-87.5977778,Elberta,AL,light,5,A stationary light no different in appearance then a star started to move in a straight line south at a high rate of speed and then dis +2002-06-06,36.7477778,-119.7713889,Fresno,CA,triangle,300,Triangle shape moving slowly approximately 600 feet to the southeast moving southwest over Fresno. Brilliant red lights flashing, fain +2002-06-06,32.8111111,-115.3794444,Holtville,CA,light,600,unusual lights in the sky +2002-06-06,35.3858333,-94.3983333,Fort Smith (Area),AR,sphere,180,My family and I were driving down a country road on our way home from visiting friends. My son and I were on the passenger side, ( fron +2002-06-06,36.175,-115.1363889,Las Vegas,NV,oval,2700,4 Oval shaped UFOs at Luxor, Las Vegas +2002-06-06,38.3363889,-75.0852778,Ocean City,MD,unknown,5,star sized object spinning circles over Ocean City Maryland in 2002 +2002-06-06,36.175,-115.1363889,Las Vegas,NV,sphere,180,Green Globes over Las Vegas +2002-06-06,38.9516667,-92.3338889,Columbia,MO,disk,30,MISSOURI INVESTIGATORS GROUP Report: Noticed something flying over highway. +2002-06-06,42.7369444,-84.4838889,East Lansing,MI,light,600,Satellite type objects just faded out of sight (existence?) +2003-06-06,30.2944444,-81.3933333,Jacksonville Beach,FL,sphere,60,We saw two spherical, hazy objects, parallel, descending from west to east, crossing paths, continuing southeast. +2003-06-06,47.8555556,-121.9697222,Monroe,WA,circle,10,The Deaf inmate at Monroe State Facility, called his Deaf Friend about the sighting, and Questioned him,He explained so clearly what He +2003-06-06,38.8047222,-77.0472222,Alexandria,VA,sphere,14,Object was circular in shape and dark as it appeared from my P.O.V. (about a couple miles away). It dropped vertical and made a 90 * +2003-06-06,32.7833333,-96.8,Dallas,TX,circle,90,The objects were round and one passed in from of the moon,it apeared to increase 1000 times size and glo from the back. +2003-06-06,40.9494444,-72.5819444,Jamesport,NY,light,180,the object was a very bright oval light with no sound +2003-06-06,40.2425,-82.8591667,Sunbury,OH,light,20,Observed unusual red/white/ and yellow light source in the western sky +2003-06-06,43.073055600000004,-89.4011111,Madison,WI,circle,120,I drive a cement truck. While on site job, I an a few othe people sited an object in the skiy. It was between 11:00 and 12;OO A. M. It +2003-06-06,41.1383333,-81.8638889,Medina,OH,oval,3600,I was driving home from work and I saw an object about 100 feet above my head. It was oval shaped with two lights. It was not moving a +2004-06-06,29.9955556,-97.4308333,Rockne,TX,other,1800,yellow-orange-domed shaped object moving slowly from south to north and blinking out. +2004-06-06,38.4783333,-82.6380556,Ashland,KY,changing,600,Round object spotted in Kentucky sky. +2005-06-06,41.6619444,-86.1586111,Mishawaka,IN,light,6,UFO crosses sky in the dead of night. +2005-06-06,40.7141667,-74.0063889,New York City (Bronx),NY,disk,360,I WAS GONA TAKE VIDEO OF A CAR THAT I WAS GONA PUT FOR SALE ONLINE FROM THE FIRE ESCAPE AND I SAW WHAT LOOKED LIKE A BIRD SOME PEOPLE W +2005-06-06,41.7305556,-88.3458333,Montgomery,IL,unknown,120,a slow moving light too far to be an airplane that faded away +2005-06-06,41.85,-87.65,Chicago,IL,other,15,I Thought I Saw a UFO! +2005-06-06,34.0027778,-84.1447222,Duluth,GA,circle,15,Spotted a black round object traveling at fast and steady pace WSW around noon, June 6th, 2005 +2005-06-06,33.8158333,-78.6802778,North Myrtle Beach,SC,circle,40,My family & I spotted strange objects in the sky in Myrtle Beach, SC, then found one in a photo we took there +2005-06-06,32.2686111,-107.7580556,Deming,NM,disk,60,Surprised to find flying disk in photograph +2005-06-06,42.8666667,-106.3125,Casper,WY,rectangle,1200,A CD case like craft hovered for 20 minutes over mountian line. +2005-06-06,39.0997222,-94.5783333,Kansas City,MO,triangle,180,triangular shaped object over kansas city missouri june 6 05 740 am +2005-06-06,32.5158333,-93.7319444,Bossier City,LA,changing,240,It was dark and round with lights, then changed into a rectangular form with lights. +2005-06-06,34.6086111,-98.39,Lawton,OK,unknown,30,Satellite-like object over Lawton, OK, June 6th 2005 +2006-06-06,37.6658333,-77.5066667,Glen Allen,VA,formation,30,Formation opens in th eground the morning of 6/6/6 with a ball shooting into the ground +2006-06-06,37.9841667,-120.3811111,Sonora,CA,disk,2,UFO with (humourous) psychic component +2006-06-06,36.175,-115.1363889,Las Vegas,NV,unknown,900,Three flying objects seen over Las Vegas +2006-06-06,43.6136111,-116.2025,Boise,ID,triangle,60,Large Black Triangle shaped craft seen north of Boise Idaho +2006-06-06,40.6408333,-74.3111111,Clark,NJ,light,10,clark new jersey 10:14 06/06/06 garden state parkway flash of light +2006-06-06,25.7738889,-80.1938889,Miami,FL,circle,180,It did a 360 +2006-06-06,25.7738889,-80.1938889,Miami,FL,circle,120,I never used to belive in aliens but now I do. +2006-06-06,31.7586111,-106.4863889,El Paso,TX,changing,27,THIS IS THE THIRD TIME AT THE SAME PLACE AND IN THE SAME TIME(7:45 P.M.). OVER THE MILITARY TERRITORY (FORT BLISS) HERE IN EL PASO TEX +2006-06-06,28.6608333,-81.3658333,Altamonte Springs,FL,fireball,600,The objects merged as one. +2006-06-06,28.6608333,-81.3658333,Altamonte Springs,FL,fireball,600,The three objects merged as one. +2006-06-06,40.2022222,-74.0125,Bradley Beach,NJ,sphere,5,Blue3/white sphere /.no entrails / fast moving direction south east to north west close to atlantic ocean . +2006-06-06,33.4483333,-112.0733333,Phoenix,AZ,sphere,180,Ball of light +2006-06-06,42.6072222,-83.9294444,Howell,MI,oval,3600,UFO Video Account in Howell, digital video footage length of 37 minutes. For image see: http://www.ufodoc.com/ +2006-06-06,45.5236111,-122.675,Portland,OR,light,900,It was just starting to get dark on tuesday night. I was walking up the stairwell in my dorm, and noticed a strange bright white light +2006-06-06,45.7833333,-108.5,Billings,MT,light,2100,5 lights in the sky, one dripping blue sparks, incredible flash +2006-06-06,25.0861111,-80.4475,Key Largo,FL,formation,3600,six dim points of light in circular position out in space! +2007-06-06,39.1266667,-82.9855556,Waverly,OH,other,900,I counldnt believe my eyes +2007-06-06,39.6836111,-75.75,Newark,DE,light,300,Object traveling at an extreme speed and maneuvers not capable by any known aircarft +2007-06-06,38.5833333,-90.4066667,Kirkwood,MO,oval,30,Large object in north to south orbit +2007-06-06,43.3005556,-73.5863889,Hudson Falls,NY,light,20,Large, silent, fast moving and very bright light was seen in the night skies over upstate NY on 6-6-07. +2007-06-06,40.7919444,-73.5402778,Jericho,NY,other,420,Nasa's Space station.-----Duuuuugghh!! Gosh, you freek'n idiots. +2007-06-06,40.8094444,-80.4227778,Darlington,PA,unknown,180,I witnessed moving object which looked like a star fly through the sky and then change directions at a 90% angle. +2007-06-06,30.2283333,-88.0230556,Fort Morgan,AL,light,600,Anomalous lights witnessed near Gulf Shore, AL +2007-06-06,30.2458333,-87.7008333,Gulf Shores,AL,changing,2040,Orange Glowing Unidentified objects over the Gulf seen by 4 different people at once. +2007-06-06,38.1838889,-83.4327778,Morehead,KY,other,2040,We saw an intense light in the night sky on 06-06-2007 shaped like a cross… ((NUFORC Note: Sighting of Venus or Jupiter?? PD)) +2007-06-06,47.7361111,-122.6452778,Poulsbo,WA,circle,300,The cat and I witnessed a flying, colorchanging circle. 500 Lights On Object0: Yes +2007-06-06,33.2147222,-97.1327778,Denton,TX,changing,240,Very large green white light in Denton, TX. +2007-06-06,38.0525,-84.73,Versailles,KY,unknown,420,thought it was a shooting star but it just stoped and turned orange +2007-06-06,37.7533333,-84.7666667,Burgin,KY,disk,10800,Orange disk in Kentucky sky. ((NUFORC Note: Venus. PD)) +2007-06-06,36.8252778,-119.7019444,Clovis,CA,circle,120,UFO over Clovis California in June 2007 +2008-06-06,41.5119444,-82.9377778,Port Clinton,OH,light,1,thought it was a star but then it moved became enlarged and bright ((NUFORC Note: Possible sighting of an Iridium satellite. PD)) +2008-06-06,39.3869444,-94.5808333,Smithville,MO,oval,60,One golden light (which took off quickly), and 3 bright star colored objects making rapid movements in a w or vv formation. +2008-06-06,38.5816667,-121.4933333,Sacramento (Approx. 45 Mi. From; Heading To San Francisco),CA,disk,60,Alien probe/craft sighted above rolling hills in California +2008-06-06,42.8666667,-88.3333333,Mukwonago,WI,circle,3,I saw a helicopter watching a flying marshmallow. +2008-06-06,40.4405556,-79.9961111,Pittsburgh,PA,sphere,900,3 UFOs sighted over a nighborhood, moving in strange, irregular patterns. +2008-06-06,40.1388889,-75.5027778,Mont Clare,PA,light,5,goldish orange bright light that was sparkling or flickering that disappeared completely in an instant. +2008-06-06,42.0111111,-87.8405556,Park Ridge,IL,circle,120,((HOAX??)) It was a very large and extremely bright white orb moving slowly in a SW direction slightly southeast of O'Hare Airport. +2008-06-06,42.2630556,-88.0038889,Mundelein,IL,light,120,bright light, over the North suburbs of Chicago +2008-06-06,38.8902778,-77.0844444,Arlington,VA,triangle,2,"Bat-wing" aircraft swiftly crosses night sky on south-to-north trajectory +2008-06-06,38.7455556,-83.845,Ripley,OH,light,30,Large bright light, no sound in the shape of a circle, with bright white halo,moving west to east +2008-06-06,39.7988889,-82.7011111,Carroll,OH,light,30,Very bright light over the Ohio Valley +2008-06-06,39.9611111,-82.9988889,Columbus,OH,circle,90,Object of solid blue light moves quietly over our house and travelled away from us, then quickly fading into nothing. +2008-06-06,38.7705556,-81.5533333,Gay,WV,light,120,White light going accross the sky horizontally at a rapid speed, then turned red and disapeared +2008-06-06,40.4233333,-78.4341667,Duncansville,PA,unknown,1200,Tonight is very dark I seen a bright light raying upwards. It disappeared like a tv screen turning off. +2008-06-06,36.0397222,-114.9811111,Henderson,NV,diamond,10800,It looked like there were two suns, I saw this for a couple nights while the sun was going down. +2008-06-06,36.0958333,-79.2672222,Mebane,NC,unknown,120,strange moving light in the night sky above Mebane, North Carolina +2008-06-06,37.99,-84.1797222,Winchester,KY,light,7200,Objects in the sky and planes flying around them. +2008-06-07,34.1205556,-84.0044444,Buford,GA,triangle,900,What is a red triangle under the left arm mean? +2009-06-06,36.8525,-121.4005556,Hollister,CA,circle,60,Orange glowing disc over Hollister, CA +2009-06-06,37.5194444,-97.0125,Douglass,KS,fireball,300,Red light over horizon, Southwest, viewed outside of Douglass, Kansas, early morning, before sunrise +2009-06-06,41.7013889,-87.7791667,Chicago Ridge,IL,fireball,60,Airplane looking orange fireball, like a plane going down. +2009-06-06,40.6805556,-73.4747222,Massapequa,NY,cylinder,1200,Large pink caterpillar-like object hovered overhead. It seemed to crawl across the sky. It was daytime. +2009-06-06,26.4516667,-81.9483333,Fort Myers Beach,FL,light,900,Walking south on the beach, full moon turned around and my eye caught a flickering red and orange light coming toward us. It appeared t +2009-06-06,41.0241667,-80.6630556,Boardman,OH,unknown,60,My brother and I were driving down a road that is sort of a main road. Up ahead we saw a bright orange colored light up in the sky. T +2009-06-06,41.1180556,-73.9558333,Valley Cottage,NY,circle,300,Me and my friend sitting in her back yard sow what we thought was a shooting star +2009-06-06,34.1866667,-118.4480556,Van Nuys,CA,circle,600,At about 11PM Sunday i was standing in my parking lot and noticed 2 orbs of light they had a amber glow! they were there for about 10 m +2010-06-06,41.1772222,-79.7080556,Emlenton,PA,sphere,2700,orange orb in sky moved through sky stopped directly above and shot into space +2010-06-06,40.7141667,-74.0063889,New York City (Brooklyn),NY,sphere,3600,Star like object and reddish sphere sighting. ((NUFORC Note: Venus?? PD)) +2010-06-06,44.2911111,-105.5016667,Gillette,WY,light,195,Multiple white soaring lights in one section of sky. +2010-06-06,42.5936111,-83.5994444,Milford,MI,unknown,30,Milford light with at least 4 60 degree angles in a 60 degree sighting in less than 1 minute +2010-06-06,33.6680556,-117.3263889,Lake Elsinore,CA,changing,2400,These oval and flat objects moved in an incredibly fast and were a transparent and metallic in color disappearing and reappearing. +2010-06-06,33.6680556,-117.3263889,Lake Elsinore,CA,oval,2700,Two clusters of oval, metallic-sided objects were seen flying high above Lake Elsinore. ((NUFORC Note: Wife's report. PD)) +2010-06-06,41.760555600000004,-88.32,Aurora,IL,sphere,480,Black / opaque/ silent sphere transversing the evening sky +2010-06-06,34.0775,-117.6888889,Montclair,CA,teardrop,2,I saw an object come out of some sort of light speed and dissapear in montclair CA. +2010-06-06,31.7419444,-99.3213889,Santa Anna,TX,light,2,Santa Anna Tx has more UFOs than a person can count. Almost Daily we see them. +2010-06-06,37.1672222,-87.6925,Dawson Springs,KY,triangle,40,we were looking northwest and a triangular form was moving in a circle slowly , there was only 3 lights and 2 of the lights disappeared +2010-06-06,42.2711111,-89.0938889,Rockford,IL,light,1800,Hovering white light that dims then regains full white light while dropping in altitude slowly and then stopping to hover. +2010-06-06,41.2458333,-75.8816667,Wilkes-Barre,PA,sphere,30,Large, very slow-moving white/yellow sphere. +2011-06-06,35.1225,-85.3438889,Signal Mountain,TN,sphere,120,Fast moving super bright illuminated sphere that slowed and changed direction +2011-06-06,40.4819444,-75.7580556,Lyons,PA,other,8,Was brown, almost like a weathered telephone pole, totally noiseless with no lights. ((NUFORC Note: Witness is astronomer. PD)) +2011-06-06,42.1686111,-88.2575,Barrington Hills,IL,unknown,60,Single bright red light bordered by two much smaller white lights. +2011-06-06,42.5005556,-90.6644444,Dubuque,IA,light,120,Bright BRIGHT BIG white light w/ 2 smaller lights blinking red and orange +2011-06-06,34.5008333,-117.185,Apple Valley (Above),CA,unknown,20,lights seen above lucerne valley ca. +2011-06-06,40.5741667,-74.6102778,Somerville,NJ,light,60,On the night of June 6 2011 aproximately around 11:31 am i saw 2 distinct white colored lights fly over my house. It was a crystal cle +2012-06-06,45.2788889,-92.985,Forest Lake,MN,oval,2,White/Blue Unknown Craft in Forest Lake, MN +2012-06-06,31.2788889,-97.8880556,Pidcoke,TX,triangle,60,Triangle-shaped craft observed just to the south of Gatesville, Texas. +2012-06-06,41.0747222,-73.7755556,Valhalla,NY,sphere,600,3 Floating Dark Grey Orbs (2" thick) and Extremely Bright Stationary 3-Dimensional Search Light At Westchester Medical Center +2012-06-06,41.85,-87.65,Chicago,IL,sphere,705,Flying serpent worm like object +2012-06-06,47.3811111,-122.2336111,Kent,WA,other,300,Sharp metallic craft seen from hwy167 near kent wa broad daylight!! +2012-06-06,41.2222222,-73.0569444,Milford,CT,sphere,300,Orange and yellow round object transiting area at low altitude (no noise or tail) was spotted by 3 adults. +2012-06-06,41.2222222,-73.0569444,Milford,CT,unknown,300,It was a red and orange cloudy glow with an uneven yellow border. Estimate it to be about 3000 feet doing around 250 kts +2012-06-06,32.7763889,-79.9311111,Charleston,SC,other,60,Fast craft +2012-06-06,34.0005556,-81.035,Columbia,SC,light,20,Very bright light passing overhead at observational speed +2012-06-06,32.7963889,-113.5402778,Dateland,AZ,circle,600,Two UFO aligned with one another along side I-8 underneath the moon. +2012-06-06,45.5236111,-122.675,Portland,OR,light,120,Three red lights in triangle formation +2012-06-06,35.6008333,-82.5541667,Asheville,NC,teardrop,420,Five orange silent hot air balloon shapes ascending the night sky. +2012-06-06,37.7430556,-81.1230556,Daniels,WV,unknown,60,Small white light floats at constant speed in straight line over Daniels, WV. +2012-06-06,40.4591667,-74.3613889,Sayreville,NJ,sphere,900,Orange red lights in sky above sayreville NJ +2013-06-06,47.7625,-122.2041667,Bothell,WA,unknown,120,Wobbly white light north of Seattle, WA. +2013-06-06,41.0638889,-80.0566667,Slippery Rock,PA,light,240,Bright light flashes me followe next day by weird creatures coming out of my mirror. +2013-06-06,39.8083333,-104.9333333,Commerce City,CO,fireball,120,Observed moving object in sky traveling east changing course to northeast upon changing course excellerated speed and changed back to e +2013-06-06,37.775,-122.4183333,San Francisco,CA,other,120,RE: Telephone Contact at 9:00 PM, Friday, 7 June, 2013. This morning at Approx. 10:00 AM, as I entered a Clinic in Downtown San Fra +2013-06-06,45.7763889,-92.6825,Grantsburg,WI,unknown,180,Flying wedge or flying V. Slow moving and huge. +2013-06-06,38.8,-120.8891667,Coloma,CA,cylinder,3600,Two large pink and blue cylinder objects hanging in sky over Sierra Nevada Mountains. +2013-06-06,48.4213889,-122.3327778,Mount Vernon,WA,light,600,Strange light with uncomperhensable flight capablities, 2 black helicopters +1945-06-07,36.0997222,-80.2444444,Winston-Salem,NC,disk,2,I always thought this sighting should be on an official list, now, 60 yrs. later, it is. +1950-06-07,39.0255556,-77.0766667,Kensington,MD,oval,600,Reflective oval seen hovering over Washington D.C. +1972-06-07,41.52,-81.4888889,Lyndhurst,OH,oval,30,Reading entry from Beachwood in 1972 reminded me that I saw the same type thing. +1973-06-07,29.6655556,-95.0191667,La Porte,TX,disk,60,Saucer shaped object with glowing orange light that vanished behind a solitary cloud in broad daylight. +1974-06-07,33.2469444,-95.8997222,Commerce,TX,light,120,It was three lights in a triangle. It hovered. It sat there for a couple of minutes. There was two other persons there that saw it. One +1985-06-07,36.1538889,-95.9925,Tulsa,OK,disk,300,Silver disk in the afternoon Tulsa Ok. +1986-06-07,30.1586111,-85.6602778,Panama City,FL,other,30,3 transparent Delta-wing shaped obects flying in formation over the Gulf of Mexico in 1986 +1986-06-07,30.3116667,-95.4558333,Conroe,TX,disk,300,3 lights - red, yellow, and blue ufo seen in Conroe, TX +1989-06-07,40.3247222,-80.5777778,Hooverson Heights,WV,other,60,zig zaging point of light witnessed by dozens in northern West Virginia +1996-06-07,39.2475,-114.8877778,Ely (60 Miles South Of, Us Highway 93),NV,triangle,240,a triangular craft app 300 ft wide moved in an easterly direction very slowly app 200 ft off the ground with no lights on itat abo +1997-06-07,38.2775,-85.7372222,Jeffersonville,IN,light,300,Deep red colored bright light, same intensity as white aircraft landing lights. Exhibited non-ballistic motion. +1997-06-07,35.5261111,-98.7072222,Weatherford (2 &Amp; A Half Miles South Of),OK,fireball,120,It was a huge ball of fire falling one moment then accelerating upwards the next. +1997-06-07,42.2527778,-71.0027778,Quincy,MA,cylinder,5,I WAS RIDING IN THE CAR WITH MY MOM WHEN A STRANGE MISSILE SHAPED OBJECT FLY OVER THE ROAD AT LOW ALTITUDE +1997-06-07,38.6272222,-90.1977778,St. Louis,MO,cylinder,180,A long, finger-shaped, metal object hovered over the creek behind my house for several minutes. +1998-06-07,34.0522222,-118.2427778,Los Angeles,CA,triangle,30,Expanding pencile share very long and thin. +1998-06-07,33.4483333,-112.0733333,Phoenix,AZ,fireball,2,Bright flickering, lightning like flash, white/yellow glowing sparks, followed by three dull booms after 2-3 minutes +1998-06-07,42.2791667,-71.4166667,Framingham,MA,other,300,IT WAS NOT A CRAFT IT WAS A HUGH LIGHT. 20 FEET FROM MY WINDOW. YELLOW GREEN IN COLOR, NOT ILLUMINATING . WHEN IT WENT 'OFF' THREE +1998-06-07,34.7177778,-111.9208333,Cornville,AZ,fireball,10,Large object, possibly a meteor or space debris flew into view in the southern sky, between Cornville and Phoenix, Az . +1998-06-07,43.9747222,-75.9111111,Watertown,NY,circle,120,Two lights traveling in sync dissapeared behind the moon. +1998-06-07,38.6630556,-90.5769444,Chesterfield,MO,fireball,300,2 fireballs chasing each other, one runs into another, hear a soft explosion, and it vanishes. +1999-06-07,45.6388889,-122.6602778,Vancouver,WA,sphere,1305,We were standing in the back of my friend Anna's house and saw diving, Acrobatic stunts that planes could not do, like leave the atmosp +1999-06-07,40.2969444,-111.6938889,Orem,UT,diamond,120,it was a very bright light kind of like a diamond ring glareing that did'nt blink, the ship was diamond shaped and made a souring sort +1999-06-07,37.3488889,-108.5852778,Cortez,CO,circle,300,Star-like object at 60 degrees traversed sky, wavered, made 90 degree turn, blinked bright and dim, then disappeared. +1999-06-07,37.3488889,-108.5852778,Cortez,CO,light,300,Husband and I were looking at the sky and saw a light similar to a star move quickly across the sky. +2000-06-07,43.3269444,-83.0802778,Marlette,MI,oval,10,THE CRAFT WAS OVAL VERY SHINY SILVER WITH VERTICAL AND HORIZONAL DIVIDERS MAKING SQUARE COMPARTMENTS ALL AROUND . THIS WAS THE FIRST OF +2000-06-07,37.6391667,-120.9958333,Modesto,CA,sphere,240,6or7 JUNE Modesto CA. Year 2000.spherical METALIC OBJECT.NW sky heading North 100mph.stopped reversed then resumed north . +2000-06-07,28.9002778,-81.2638889,Deltona,FL,unknown,300,RE: Space Craft in arth orbit. +2000-06-07,47.9033333,-91.8669444,Ely (Boundary Waters Ca),MN,light,180,Unusual light over the Boundry Waters +2000-06-07,28.9002778,-81.2638889,Deltona,FL,unknown,300,Space craft in earth orbit +2000-06-07,33.4147222,-111.9086111,Tempe,AZ,unknown,4,While walking on broadwalk on south west corner of Tempe lake heard and saw purple wavering across night sky about 7 stories above. +2000-06-07,37.0080556,-101.8897222,Elkhart,KS,circle,120,was sitting on my front porch with granddaughter when3 lights appeared above some trees +2001-06-07,42.3833333,-71.4166667,Sudbury,MA,unknown,900,Yellow light close to moon emits beam through trees +2001-06-07,47.0380556,-122.8994444,Olympia,WA,light,2700,Electric Ball Rises Slowly Above Olympia +2001-06-07,37.0675,-93.5519444,Billings,MO,circle,2,My wife and I were driving east on Missouri Rt 14 about 1 mile west of Billings MO when we both witnessed a green object which resembl +2001-06-07,40.1672222,-105.1013889,Longmont,CO,fireball,2,Green fireball in northern sky, moving rapidly to the left toward earth, and disappeared. +2001-06-07,45.7452778,-87.0644444,Escanaba,MI,light,180,A UFO sighted near Escanaba Mi on the Night of Thursday the 7th 2001.... +2002-06-07,41.5875,-109.2022222,Rock Springs,WY,light,600,These three objects of luminating light were just suspended in mid air, then gone. +2002-06-07,34.2572222,-118.6002778,Chatsworth,CA,disk,10,It was a large, round, very shiny with little black jets and a small dome on top. It was rotating and it made no sound at all. +2002-06-07,34.2575,-88.7033333,Tupelo,MS,sphere,10,Tupelo woman has daylight sighting +2002-06-07,44.9280556,-74.8922222,Massena,NY,disk,120,first sighting, felt compelled to report to an agency. this was not an airplane as far as i know. +2002-06-07,41.9,-71.0902778,Taunton,MA,other,60,Any explanations? +2002-06-07,41.0019444,-74.3269444,Bloomingdale,NJ,triangle,300,Redish-Orange light, zigzag movement, no sound.. VERY STRANGE +2002-06-07,39.8402778,-88.9547222,Decatur,IL,unknown,120,Sparkling UFO sighted outside of Decatur Illinois on Friday, June 7th, 2002 @ 23:00 +2002-06-07,43.0716667,-70.7630556,Portsmouth,NH,triangle,3600,Video taped sighting over the ocean in Pourtsmouth New Hampshire +2003-06-07,34.1388889,-118.3525,Universal City,CA,triangle,30,Two triangle shaped objects with lights on each end. +2003-06-07,45.4208333,-122.6694444,Lake Oswego,OR,oval,5,Oregon UFO Review Case: Football shaped UFO with purple glow and lights seen from inside tent during camping. +2003-06-07,37.8044444,-122.2697222,Oakland,CA,cylinder,60,Large, gray cylindrical object at or near Oakland Airport +2003-06-07,35.4794444,-86.9830556,Culleoka,TN,unknown,1800,Objects with solid lights moving towards one another. +2004-06-07,34.1072222,-118.0569444,Temple City,CA,formation,5,Blue light trail over San Gabreil Valley making circles! +2004-06-07,30.4752778,-90.1008333,Covington,LA,fireball,5,fireball traveling over Interstate 12 in Louisiana +2004-06-07,30.7619444,-86.5705556,Crestview,FL,circle,30,It was an amazingly clear, calm night, 3/4 moon and no wind or breeze. My husband, my 2 sons, and I went outside for a late night walk +2004-06-07,30.7194444,-86.0444444,Argyle,FL,sphere,30,It was brightly illuminated...like the moon...and about half its size....seen by mother and daughter +2004-06-07,30.3580556,-90.0655556,Mandeville,LA,fireball,30,YELLOW/ORANGE FIREBALL WITH ILLUMINATED SILVER TAIL EMITING BRILLIANT SPARKS - 100FT ABOVE US +2004-06-07,38.3269444,-122.7061111,Cotati,CA,formation,120,satalite due-3 viewed ((NUFORC Note: Possible sighting of NOSS satellite triplet. PD)) +2004-06-07,43.2363889,-120.6358333,Christmas Valley,OR,other,2400,Bright lights changing color and pattern above skyline, like I've never seen before. +2004-06-07,32.7561111,-91.8722222,Bastrop,LA,fireball,30,huge round green pulsing light floating toward the ground outside Bastrop Louisiana +2005-06-07,43.0388889,-87.9063889,Milwaukee,WI,unknown,3600,Odd long-interval flashing lights surrounding bright star (Jupiter?) at very high altitude for almost an hour. +2005-06-07,39.1786111,-94.1930556,Sibley,MO,other,180,I and children were looking at a commercial jetliner coming towards us, from west to east, when son saw "another one" in the sky, I tur +2005-06-07,44.8041667,-93.1666667,Eagan,MN,circle,180,5 Dark Round-Orbs in a String Form Decending form the Cloud Bank +2005-06-07,38.8952778,-98.8594444,Russell,KS,cone,1500,WHEN I WAS COMING THROUGH TOWN I SAW A HUGE CONE UFO RED PECULIAR LIGHTS OVER RUSSELL KANSAS. +2005-06-07,40.9413889,-73.1063889,East Setauket,NY,circle,1250,White flashing object hovers and retreats back over 40 minute time frame. ((NUFORC Note: Possibly a celestial body. PD)) +2005-06-07,32.7763889,-79.9311111,Charleston,SC,changing,600,WHILE DRIVING ON THE INTERSTATE I SAW A UFO AND IT DISAPPEARD AS QUICK AS IT CAME +2005-06-07,43.7972222,-90.0772222,Mauston,WI,light,4,Four large horizontal red lights in Mauston, WI. Starts as 4 lights, goes to 2 lights and then disappears +2005-06-07,40.9911111,-74.0330556,Westwood,NJ,triangle,60,While observing Jupiter from the back yard, we noticed a very large triangular object at high altitude (+20K feet). The color of the ob +2005-06-07,37.4716667,-121.1286111,Patterson,CA,sphere,15,On 6-07-05 around 10:00pm there was a Jet going over head leaving a long trail at first I didnt think much of it, but I had my Camcord +2005-06-07,32.7152778,-117.1563889,San Diego,CA,unknown,900,12-15 red lights over the Pacific (many miles out) changing formation, but NOT moving, and very distinct from our beach condo +2006-06-07,39.3355556,-87.8819444,Martinsville,IL,changing,1200,hovered were silent and acelerated very fast when left and had green and blue flashing light goin around the entire craft +2006-06-07,37.7305556,-88.9330556,Marion,IL,disk,240,Red Object Over Marion, Illinois +2006-06-07,47.6588889,-117.425,Spokane,WA,changing,7200,Noticed a pulsating star which looked liked Sirius, only it was to the far North. +2006-06-07,41.7408333,-87.8602778,Willow Springs,IL,disk,120,Next to the UPS building on Willow Springs rd. I was looking up at the cumulos clouds gathering and saw 2 saucer shaped crafts just hov +2006-06-07,29.7630556,-95.3630556,Houston,TX,disk,180,Still in the sky, gone in an instant +2006-06-07,37.1544444,-90.6955556,Piedmont,MO,circle,1800,Many bright orange glowing lights just over the horizon&behind the mountains,near the dam@Clearwater Lake in Missouri(CRAZY!!) +2006-06-07,37.1544444,-90.6955556,Piedmont,MO,formation,1800,18 orange round balls in 30 min, at clear water lake +2007-06-07,33.3458333,-84.1091667,Locust Grove,GA,cigar,180,Cigar ufo over Locust Grove,Ga. 500 Lights On Object0: Yes +2007-06-07,36.175,-115.1363889,Las Vegas,NV,light,600,UFO over Las Vegas on June 7. 2007 +2007-06-07,34.2038889,-83.4572222,Commerce,GA,light,300,White light over Jackson County/Commerce Georgia. July, 2007. +2007-06-07,41.45,-71.45,Narragansett,RI,chevron,600,Large, silent, low, gliding craft over the RI shoreline +2007-06-07,36.7477778,-119.7713889,Fresno,CA,triangle,360,brite ufos forming triangle pattern +2007-06-07,36.7477778,-119.7713889,Fresno,CA,triangle,360,brite ufos forming triangle pattern. ((NUFORC Note: Possible advertising light?? PD)) +2007-06-07,47.6063889,-122.3308333,Seattle,WA,light,300,Strobe-type light moving quickly +2007-06-07,42.2916667,-85.5872222,Kalamazoo,MI,triangle,60,((HOAX??)) Triangular black craft with 6 lights on the bottom flew behind my house. +2007-06-07,39.4141667,-77.4108333,Frederick,MD,light,2700,Star suddenly moved and disappeared! ((NUFORC Note: Probable sighting of Venus, Jupiter, and "twinkling" star? PD)) +2008-06-07,32.2216667,-110.9258333,Tucson,AZ,changing,300,Changing shape low in Davis-Mothan AFB landing pattern. +2008-06-07,38.9783333,-76.4925,Annapolis,MD,changing,3600,Hover/Vibrating white lights; emitting beams and dots of light, from 03:30-04:30 6/7/2008 over Annapolis, MD +2008-06-07,38.2538,-94.3356,Butler,MO,fireball,180,Me and others witnessed an extrodinary bright light, ball looking in the sky moving somewhat slowly. +2008-06-07,42.35,-71.1569444,Brighton,MA,oval,360,I have been researching UFOs for about 6 months now. As I researched the subject I was believed more and more, but there was always apa +2008-06-07,40.4975,-74.4888889,Somerset,NJ,rectangle,300,Dark, vaguely rectangular object hovering in Central New Jersey. +2008-06-07,37.3861111,-122.0827778,Mountain View,CA,triangle,360,Mysterious triangular objects over Mountain View +2008-06-07,39.6988889,-78.18,Hancock,MD,light,90,Circular light flying low, not blinking and no sound. +2008-06-07,36.2077778,-119.3463889,Tulare,CA,sphere,180,It was a round object of amber color was seen hovering over homes, it shot straight up and out of sight. +2008-06-07,38.9736111,-90.0013889,Dorsey,IL,light,75,Bright light crosses sky, hovers, then shoots off into the sky, disappearing in 2-3 seconds. +2008-06-07,39.7686111,-94.8463889,St. Joseph,MO,light,180,6/7/2008 mysterious light sighting in St. Joseph, MO. ((NUFORC Note: Sighting of Internation Space Station confirmed. PD)) +2008-06-07,35.1494444,-90.0488889,Memphis,TN,light,60,this object became visible as i was standing in front of my house facing it to the north and the object was moving in the north-west to +2008-06-07,42.1058333,-84.2483333,Brooklyn,MI,triangle,300,Orange & Red triangular lighted with no sounds. +2008-06-07,34.5036111,-93.055,Hot Springs,AR,changing,7200,Lights and light came down upon us. very weird triangular formation after seeing 15 or so solid white lights move across the night sky. +2008-06-07,35.2827778,-120.6586111,San Luis Obispo,CA,other,1800,Bishop's peak visitor? +2008-06-07,34.4211111,-84.1191667,Dawsonville,GA,disk,10,see above +2008-06-07,34.4211111,-84.1191667,Dawsonville,GA,disk,10,See description +2008-06-07,37.0841667,-94.5130556,Joplin (South Of),MO,unknown,600,Two bright lights flying high overhead in SW Missouri +2008-06-07,33.3705556,-96.0686111,Wolfe City,TX,sphere,180,White sphere moves from horizon to horizon and back again in a matter of seconds. ((NUFORC Note: Could not have been ISS. PD)) +2008-06-07,34.5566667,-93.6338889,Mount Ida,AR,light,3600,Multiple UFO's seen on Lake Quachita near Hot Springs Arkansas. +2008-06-07,33.5791667,-95.3919444,Pattonville,TX,light,2,Bright then dull light supersonic speed +2008-06-07,33.7488889,-84.3880556,Atlanta,GA,cigar,50,Around midnight, two witnesses observed a bright light in the sky that, upon observation, appeared to be a large and wingless aircraft. +2008-06-07,34.1425,-118.2541667,Glendale,CA,light,300,strange light above Glendale, CA +2009-06-07,41.14,-104.8197222,Cheyenne,WY,light,180,I looked out my bedroom window and saw an object in the sky that was changing colors quickly, the lights were neon. It sat in the sky f +2009-06-07,28.555,-82.3880556,Brooksville,FL,fireball,3,Blue fireball falling; disappears before reaching horizon +2009-06-07,40.7141667,-74.0063889,New York City,NY,fireball,300,green glowing low flying star shape is unmistakeably a ufo +2009-06-07,36.175,-115.1363889,Las Vegas,NV,oval,300,Hovering Gray Egg +2009-06-07,36.175,-115.1363889,Las Vegas (Northwest),NV,sphere,300,Object seen floating over North West Las Vegas +2009-06-07,32.9125,-96.6386111,Garland,TX,triangle,300,On Sunday, June 7, 2009 at 8:20 PM CT; I saw an unknown object in the sky. I was located in Garland, Texas zip code 75044 +2009-06-07,38.9430556,-84.5441667,Independence,KY,light,120,bright red light with white belly +2009-06-07,36.8527778,-75.9783333,Virginia Beach,VA,light,2,Brief, bright light--high in the sky. +2010-06-07,39.4183333,-92.4380556,Moberly,MO,changing,1500,I have noticed a very bright twinkling light several nites in a row and it will appear in the west sky ((NUFORC Note: Venus. PD)) +2010-06-07,41.7108333,-87.7580556,Oak Lawn,IL,light,60,Oak Lawn Lights Crash HD 3D Effect +2010-06-07,33.9255556,-116.8755556,Banning,CA,light,30,strange light moving back and forth until it disapper; lasted for 30 seconds. +2010-06-07,32.7152778,-117.1563889,San Diego,CA,triangle,15,floating tranparent wing in the sky over san diego +2010-06-07,44.4888889,-71.5697222,Lancaster,NH,light,480,2 yellow lights over Lancaster, NH. +2010-06-07,41.7625,-70.7222222,Wareham,MA,light,30,Bright star like object, then dimmed rather quickly but moved slowly. ((NUFORC Note: Possible sighting of Iridium satellite? PD)) +2010-06-07,40.6905556,-76.2625,Minersville,PA,light,420,The UFO was glowing white,red,and green and had others next to it, also moved upwards and had airplanes next to it. +2011-06-07,35.4816667,-86.0886111,Manchester,TN,sphere,20,Green light trailing behind car on unlit highway +2011-06-07,40.0108333,-89.2822222,Mount Pulaski,IL,light,120,Stationary, shining, reddish/orange light that suddenly disappeared. +2011-06-07,33.7397222,-116.4119444,Rancho Mirage,CA,formation,360,At least 24 silver objects flying in formation - going west and east and making a mosaic pattern. Then formed a > and flew south. +2011-06-07,39.8366667,-105.0366667,Westminster,CO,circle,600,White orb, Colorado sky, 17:45pm +2011-06-07,40.8680556,-73.4261111,Huntington,NY,flash,4,Flashing light, not an aircraft or shooting star. Rapid directional change. +2011-06-07,39.1072222,-76.5713889,Pasadena,MD,light,240,Saw unusual object that was not familar as other aircraft we see constantly +2011-06-07,43.365,-76.2827778,Palermo,NY,light,180,Looking out my living room window at 10:30 pm I noticed a big orange ball of light hovering over the treeline across the street +2012-06-07,39.8366667,-105.0366667,Westminster,CO,cylinder,10,Extremely fast moving, sharp turning object flying +2012-06-07,39.7391667,-75.5983333,Elsmere,DE,triangle,15,Small triangular shaped craft, which made zig zag movement in the sky. +2012-06-07,33.7488889,-84.3880556,Atlanta,GA,triangle,1200,Daytime UFO sighting, odd shaped and slow moving craft vanishes behind cloud. +2012-06-07,34.2163889,-119.0366667,Camarillo,CA,disk,30,Silver disc hovers high over rush hour traffic then speeds off over Pacific Ocean. +2012-06-07,39.8466667,-79.9,Masontown,PA,light,150,Very slow & bright light. No aircraft ident. or post. light. Sighting lasted for about 2.5 minutes. Weird movements. Went NE. +2012-06-07,41.4730556,-87.0611111,Valparaiso,IN,unknown,240,9 objects in groups of 3 with bright red front lights flew silently NE to SW over Valparaiso, IN at 10 pm CDT. +2012-06-07,45.6388889,-122.6602778,Vancouver,WA,light,300,Silent unwavering white glowing light, changed direction +2012-06-07,33.4483333,-112.0733333,Phoenix,AZ,triangle,300,Three large orange lights / triangular craft, North-Central Phoenix +2012-06-07,44.9430556,-123.0338889,Salem,OR,light,90,Lights over Salem, Oregon +2012-06-07,37.3386111,-92.9069444,Marshfield,MO,disk,60,Ufo on 18 wheeler. ((NUFORC Note: Probably the U. S. Navy UAC, the X-47B, being transported to the Washington, D.C., area. PD)) +2012-06-07,43.0347222,-83.5180556,Davison,MI,triangle,120,Between 11:00pm and 11:30pm I saw a huge boomerang shaped object fly silently over head at an incrediable speed heading north. +2012-06-07,44.0216667,-92.4697222,Rochester,MN,oval,600,BRIGHT ORANGE LIGHTS IN SKY IN SE ROCHESTER MN +2012-06-07,43.0747222,-73.1544444,Arlington,VT,sphere,300,Two separate white orbs of light that just fade out of sight +2012-06-07,40.7933333,-77.8602778,State College,PA,light,30,Orange orb sighted near State College. +2012-06-07,40.7933333,-77.8602778,State College,PA,light,30,Standing on our back deck, looking toward the south, I noticed an orange orb floating about 15 degrees above the treeline. It was stati +2012-06-08,34.0633333,-117.65,Ontario,CA,other,10,Orange balloon shaped UFO over Ontario California!! +2013-06-07,41.6819444,-85.9766667,Elkhart,IN,fireball,180,7 fireballs in a row in the southern skies at 1:30 am. +2013-06-07,29.6513889,-82.325,Gainesville,FL,fireball,10,Ball of bright orange fire moving low across night sky +2013-06-07,35.5277778,-94.2705556,Rudy,AR,formation,120,Three round flat lights in a perfect triangle. +2013-06-07,38.9822222,-94.6705556,Overland Park,KS,sphere,600,~10 nonuniform red orbs over Overland Park- A cluster-spread within cluttered airspace w/ plane, 2 jets & stars. +2013-06-07,28.5555556,-82.4505556,Spring Hill,FL,light,900,Ominous sun like light, not projecting, like burning within a craft of some sort. +2013-06-07,32.7591667,-97.7969444,Weatherford,TX,sphere,600,Line of multiple lights moving east to west / one low moving pulsing sphere. +2013-06-07,38.3708333,-97.6638889,Mcpherson,KS,unknown,180,Blue, red, and purple lights shooting north. +1950-06-08,39.0997222,-94.5783333,Kansas City,MO,disk,900,The ufo came from the East, as I was looking North. It hovered briefly above the house across the street from me; that house was on a s +1965-06-08,37.2766667,-79.1011111,Rustburg,VA,light,180,Saw a huge white ball of light in 1965 that moved from a mountain right up to a car on a flat piece of land with people around it. +1973-06-08,41.0272222,-78.4394444,Clearfield,PA,light,15,Daytime large ball of light shoots into the middle of the sky and stops for a few seconds then shoots off over the horizon at 120 deg. +1974-06-08,36.1538889,-95.9925,Tulsa,OK,unknown,1500,((HOAX???)) Wedding Cake Ship Sound was heard. +1975-06-08,40.1719444,-84.9813889,Winchester,IN,fireball,10800,ORB, small craft; 3 or 4 of us seen this. +1980-06-08,32.2216667,-110.9258333,Tucson,AZ,diamond,600,a bunch of us were outside building a gazebo & working on the garden when i was on the roof of the gazebo taking a break... looking alm +1981-06-08,40.6027778,-79.565,Vandergrift,PA,disk,180,Dark round large disk like shape with colored lights in the center,silent , just above tree tops. +1990-06-08,39.3752778,-122.5430556,Stonyford,CA,sphere,20,neon green, round,traveled very very fast. no sound no flashing. +1993-06-08,42.2625,-71.8027778,Worcester,MA,teardrop,720,"TearDrop" Shape UFO in the Park. +1994-06-08,43.4666667,-112.0333333,Idaho Falls,ID,changing,600,Strange, form-changing objects seen over Idaho Falls. +1996-06-08,42.5083333,-89.0316667,Beloit,WI,other,1200,Oddly shaped black object hovering high in the daytime sky for about 20 minutes and then dissappearing. +1997-06-08,37.3541667,-121.9541667,Santa Clara,CA,changing,120,It sped off at a teriffic speed, changing size and color. +1997-06-08,47.4830556,-122.2158333,Renton,WA,disk,360,Disc Shape. 3 witnesses. Flight was a little wobbly. +1998-06-08,41.49,-71.3133333,Newport,RI,light,1500,Clear night+high visabilityƺ yellow lights,even shading,no vertical movement,close proximatey,very long visual time +1998-06-08,38.6630556,-90.5769444,Chesterfield,MO,unknown,420,See three UFO in a diamond formation causing electrical disturbances in area. +1998-06-08,44.9430556,-123.0338889,Salem,OR,light,60.5,TWO PULSING LIGHTS PASSED FROM HORIZON TO HORIZON ON A NORTH TO SOUTH TRAJECTORY +1999-06-08,30.3319444,-81.6558333,Jacksonville,FL,other,20,unknown craft saw on flat bed trailer being escorted by highway patrol +1999-06-08,39.5297222,-119.8127778,Reno,NV,other,10,I saw some kind of craft about the size of a foot-ball field for about 10 seconds before it disappeared before my eyes. It was moving v +1999-06-08,42.9955556,-71.4552778,Manchester,NH,rectangle,5400,When 1st seen at 10:45pm it seemed to be a bright blue-green rectangle. Soon it seemed to become narrower but very elongated. A brigh +1999-06-08,43.1547222,-77.6158333,Rochester,NY,other,10,I've witnessed a fast blinking green light that would not blink at times, which disapeared after a total of 10 seconds.The next night I +1999-06-08,41.6819444,-85.9766667,Elkhart,IN,light,35,From latitude 41.682 longitude -85.977 looking SSE ~63° stationary object moved very slowly NNE. Could not make out shape using binocul +1999-06-08,46.2397222,-119.0994444,Pasco,WA,light,600,bright white light, I thought it was a star at first,circled the tri-cities area , moved very fast, and zig zaged several times at impo +2000-06-08,47.9033333,-91.8669444,Ely,MN,diamond,60,We were camping in the Boundary Waters Canoe Area on Basswood Lake near Ely, Minnesota. That particular evening we fished until 11:00p +2000-06-08,45.2216667,-122.5808333,Mulino,OR,cigar,240,They both went outside and as my brother in law discribed it was the typical cigar shaped shining object lower than the planes flight. +2001-06-08,37.5536111,-77.4605556,Richmond,VA,changing,900,Small black object stationary high in the sky, may have split into two. +2001-06-08,38.9516667,-92.3338889,Columbia,MO,triangle,60,While taking the pooch for a ride I saw an unusual craft +2002-06-08,37.0058333,-121.5672222,Gilroy,CA,triangle,20,Triangular Craft in Gilroy California +2002-06-08,37.0058333,-121.5672222,Gilroy,CA,triangle,20,TRIANGLE FORMATION OF FUZZY SOFT WHITE LIGHTS 150' FEET OFF GROUND FAST, QUIET! +2002-06-08,37.7933333,-79.9941667,Covington (On Highway 64),VA,changing,30,Silver Aluminum UFO observed by a sceptical Baptist Pastor above the Mountains of Virginia +2002-06-08,40.6952778,-80.305,Beaver,PA,cigar,90,At the front of the chemtrail, was an intensely, luminous, white diagonal line with a dark area at its mid center. +2002-06-08,38.5816667,-121.4933333,Sacramento,CA,other,300,its a rectangle and half circle on top shaped, the rectangle side has flashing white "windows" it flashed across randomly one by one "w +2002-06-08,33.8083333,-84.4819444,Chattahoochee County,GA,circle,3600,Phoenix Lights Spotted +2002-06-08,37.7791667,-97.4669444,Maize,KS,flash,10,Object reflects green light to the ground +2002-06-08,32.2216667,-110.9258333,Tucson,AZ,light,6,A bright light travelling high in the sky appeared out of nowhere when it diminished in size and quickly disappeared. +2002-06-08,43.2341667,-86.2483333,Muskegon,MI,triangle,10,A large triangle with lights on the corners moving west to east. +2003-06-08,40.6366667,-74.9102778,Clinton,NJ,disk,30,Disk shaped craft seen hovering over Round Valley Resovoir in Clinton, NJ +2003-06-08,40.6669444,-74.8961111,High Bridge,NJ,disk,10,Bright disk-shaped craft hovered above mountains then quickly left. +2003-06-08,47.7544444,-122.1622222,Woodinville,WA,unknown,600,Black helicopters and a strange hum!? +2003-06-08,38.0380556,-92.7113889,Linn Creek,MO,disk,300,Silver saucer shaped object vanishes when approached by helicopter. +2003-06-08,39.7391667,-104.9841667,Denver,CO,diamond,60,flattened black diamond cruises over Denver in bright blue sky +2003-06-08,34.2783333,-119.2922222,Ventura,CA,other,60,An object following a military jet, disappears +2003-06-08,36.0155556,-86.5819444,La Vergne,TN,disk,1,Picture of a UFO while taking pictures of the sky? +2003-06-08,47.9791667,-122.2008333,Everett,WA,diamond,1200,Diamond Shaped Craft +2003-06-08,42.9955556,-71.4552778,Manchester,NH,light,300,Flashing neon green lights across the night sky +2003-06-08,37.9975,-121.7113889,Oakley,CA,light,300,2 lights merge, then disappear. +2003-06-08,35.4366667,-94.3480556,Van Buren,AR,light,300,Bright lights over Arkansas +2003-06-08,39.0997222,-94.5783333,Kansas City,MO,triangle,900,brite triangular shaped object hovering over hiway 435 in Missouri +2004-06-08,33.5205556,-86.8025,Birmingham,AL,circle,45,Was at the rail yard, out-skirts of town, at given time, on report. Saw what appeared to be neither "space debris" but a round object +2004-06-08,41.6972222,-86.245,Argos,IN,other,300,Stealth Bomber shaped object at 1:00 postion of moon.Taken 5:15AM June 8񫺔 ((NUFORC Note: Bat in flight. PD)) +2004-06-08,44.9366667,-93.6658333,Mound,MN,triangle,120,3 red lights that formed a triangle in the sky moving slowly and then just disappeared. +2005-06-08,36.8688889,-94.3677778,Neosho,MO,sphere,3600,brilliant "star" that hovered and moved while other stars remained stationery +2005-06-08,42.6738889,-85.6447222,Wayland,MI,light,45,Bright orange bobbing light +2005-06-08,41.5838889,-73.8091667,Hopewell Junction,NY,light,10,single point of light grew and traveled slowly then disappeared +2005-06-08,33.4483333,-112.0733333,Phoenix,AZ,light,300,More "Phoenix Lights" over North Phoenix at approximately I-17 Freeway and Carefree Highway +2005-06-08,33.4483333,-112.0733333,Phoenix,AZ,light,300,Bright Lights seen West side of Phoenix. +2005-06-08,36.2552778,-94.1305556,Lowell,AR,triangle,60,Large silent triangular craft sighted. +2005-06-08,46.6022222,-120.5047222,Yakima,WA,triangle,2,Trianglular craft spotted over Yakima. +2006-06-08,33.425,-94.0475,Texarkana,TX,light,600,Light close to the moon, moved then went out. ((NUFORC Note: Probably a sighting of Jupiter near the Moon. PD)) +2006-06-08,35.5961111,-78.1244444,Kenly,NC,unknown,120,Aircraft went from traveling horizonal slow pace, to stopped position, and then vertically to unknown speed! +2006-06-08,31.0236111,-87.4938889,Atmore,AL,other,1200,late at night / horseshoe shaped craft / 17 lights off and on / 20 mins then vanishes / sees crafts often / +2007-06-08,48.0152778,-122.0625,Lake Stevens,WA,light,90,Extremely bright light traveling west to east on erratic course. +2007-06-08,42.1711111,-87.8444444,Deerfield,IL,triangle,300,Black Triangle over Chicago Suburbs spotted twice. +2007-06-08,37.1694444,-104.5,Trinidad,CO,disk,960,Shiny object hovering, egg shaped , silver moving back & forth in one spot for about 14-15 minutes at 1:45pm then vanished. +2007-06-08,43.8727778,-93.3011111,Ellendale,MN,light,180,Light coming from "hyperspace" and slowing to a normal speed with no sound and observed for 3 min. ((NUFORC Note: ISS?? PD)) +2008-06-08,43.7569444,-71.6886111,Plymouth,NH,light,10,Red blinking light, then a dash across the sky. +2008-06-08,41.9841667,-86.1086111,Dowagiac,MI,light,120,3 lights at the leading edge of an approaching storm +2008-06-08,42.2011111,-85.58,Portage,MI,sphere,30,round yellow metallic object flew near my house just before thunder storm. +2008-06-08,42.2011111,-85.58,Portage,MI,sphere,40,Round yellow object escaping from storm +2008-06-08,37.775,-122.4183333,San Francisco,CA,circle,1500,solid, white object seen over S. F. Bay in high atmosphere, momentarily stationary +2008-06-08,41.0933333,-75.0022222,Bushkill,PA,light,20,The light speed up fast and then followed behind us and then ziped away and was gone.but yet there was no sound. +2008-06-08,41.5933333,-87.3463889,Gary,IN,other,420,diamondlike shaped object +2008-06-08,35.0844444,-106.6505556,Albuquerque,NM,other,600,Bright stationary circular object in high atmosphere in broad daylight gives way to five smaller moving crescents +2008-06-08,34.54,-112.4677778,Prescott,AZ,triangle,3,On 6/8/08 a large dark triangular UFO spotted over Watson Lake, Prescott, AZ:. +2008-06-08,33.3316667,-105.6725,Ruidoso,NM,sphere,600,Ruidoso, Mexico observed a light object followed by an aircraft traveling west to east it was a sphere bright in color +2008-06-08,39.0916667,-104.8722222,Monument,CO,oval,180,Brilliant shiny object passed over the house. ((NUFORC Note: Probably ISS. Please see table below. PD)) +2008-06-08,43.55,-96.7,Sioux Falls,SD,other,5,Glowing Orangish/Yellowish aircraft witnessed South from Sioux Falls S.D. +2008-06-08,40.9466667,-124.0994444,Mckinleyville,CA,other,180,Bright light making quick, fast turns across the sky +2008-06-08,34.1975,-119.1761111,Oxnard,CA,light,600,Bright as a star it silently flew overhead turned red then disappeared into the night sky. +2008-06-08,30.2669444,-97.7427778,Austin,TX,light,60,Steady, silent moving light moving over Northeast Austin, and vanishing. ((NUFORC Note: Probably ISS. Please see table below. PD)) +2008-06-08,44.98,-93.2636111,Minneapolis,MN,light,60,lighted object circling over Minneapolis, then makes a few dramatic directional changes and zooms away. +2008-06-08,40.4811111,-74.4836111,Voorhees,NJ,light,10,Star looking object Splits Into Two +2008-06-08,31.1430556,-89.4097222,Purvis,MS,other,1200,Stars in Baton shape floated from Southwest to the North +2009-06-08,41.8238889,-71.4133333,Providence,RI,teardrop,420,UFO seen floating over providence, RI +2009-06-08,40.9252778,-74.2769444,Wayne,NJ,other,3600,extremly fast unknown plane possibily DoD spraying chemtrails Wayne, NJ. ((NUFORC Note: We suspect they were "contrails." PD)) +2009-06-08,31.3222222,-92.4341667,Pineville,LA,light,180,Series of white lights in the southwestern sky. +2009-06-08,37.7975,-121.215,Manteca,CA,other,1309,((HOAX??)) A big, bright, white star appeared out of no where and started moving to the sky and made lops. +2009-06-08,34.0522222,-118.2427778,Los Angeles (Lincoln Heights),CA,circle,45,UFO in Los Angeles Late night 6/08/09 +2009-06-08,33.9172222,-118.0111111,La Mirada,CA,light,120,An extremly bright, sporadically moving object seen flying then slowly fading into nothing before our eyes. ((NUFORC Note: ISS?? PD)) +2009-06-08,40.4655556,-80.0658333,Mckees Rocks (Pittsburgh),PA,other,7,Lighted, silent "H" shape object over McKees Rocks (Pittsburgh, PA) +2010-06-08,41.3686111,-81.6380556,Independence,OH,changing,300,The object changed shape and moved slowly and eratically +2010-06-08,28.5388889,-80.6722222,Merritt Island,FL,light,900,low flying bright light above home star shaped light fast horizontal movement in night sky +2010-06-08,32.2216667,-110.9258333,Tucson,AZ,formation,300,5 stationary blinking lights in a diagonal line, NW Tucson +2011-06-08,33.9213889,-78.0205556,Southport,NC,formation,7200,Went outside to enjoy the weather at night with some friends and noticed 3 pulsing lights towards Oak Island. They came and went for a +2011-06-08,33.4666667,-79.1,Litchfield Beach,SC,circle,60,Orange Circular Blinking Lights Over The Ocean At Litchfield Beach, SC +2011-06-08,33.8158333,-78.6802778,North Myrtle Beach,SC,fireball,1800,Orange balls over ocean no ships in area +2011-06-08,35.114444399999996,-75.9813889,Ocracoke (On Ferryboat),NC,other,900,onboard ocracoke island ferryboat multiple sighting +2011-06-08,33.4330556,-79.1216667,Pawleys Island,SC,sphere,3600,Several orange, sphere shaped UFOs appeared off the coast of Pawleys Island, SC on 06/08/2011 +2011-06-08,33.8805556,-78.5125,Sunset Beach,NC,sphere,900,Orange/Red Light pulsing over ocean +2011-06-08,33.6888889,-78.8869444,Myrtle Beach,SC,formation,2700,Bright orange balls of light in random formations and quickly moving, chased by military jets +2011-06-08,33.9133333,-78.3041667,Holden Beach,NC,light,240,Saw a number of bright orange flashing lights. They appeared and disappeared after few seconds. This happened a number of times for 4- +2011-06-08,41.6744444,-72.8586111,Plainville,CT,circle,240,During and a thunderstorm small blue orbs of light appeared in the sky and near the ground, flashing +2012-06-08,42.0986111,-75.9183333,Binghamton,NY,other,7200,The moon is out full in the sky, but it is behind clouds. It's still dark at 2:00am. While i was taking my dog outside to go to the bat +2012-06-08,38.5816667,-121.4933333,Sacramento,CA,light,45,Bluish pulsing light moving East to West over Sacramento, CA +2012-06-08,33.6130556,-112.3238889,El Mirage,AZ,circle,240,So a strong light and got my camera I start filming try to focus the lens and I knew it was something out of the normal after checking +2012-06-08,33.7488889,-84.3880556,Atlanta,GA,light,900,Whirl driving home from work headed west on I-20. I saw a star like object in the sky. I have seen this object almost everyday for the +2012-06-08,34.7391667,-112.0091667,Cottonwood,AZ,cylinder,60,Silver cylinder observed in the middle of the day in Cottonwood, AZ +2012-06-08,47.6063889,-122.3308333,Seattle,WA,circle,900,Several bright lights dropped out of cloud coverage/night time followed by same grouping minutes later by myself and neighbor. +2012-06-08,41.8386111,-94.1069444,Perry,IA,light,180,Large sphere of light seen going over Perry, Iowa. +2012-06-08,42.7652778,-71.4680556,Nashua,NH,fireball,300,Fireballs moving in the same direction, uniform enough to be a government air craft. +2012-06-08,34.0852778,-117.96,Baldwin Park,CA,fireball,240,Flying over residential area. +2012-06-08,39.9402778,-82.0133333,Zanesville,OH,sphere,180,Glowing white orb in the sky. ((NUFORC Note: Possible sighting of the ISS?? PD)) +2012-06-08,29.2105556,-81.0230556,Daytona Beach,FL,circle,600,Orange ball of light over Daytona Beach by the Boardwalk +2012-06-08,40.2108333,-75.2786111,North Wales,PA,circle,12,There was a circle shaped object moving very fast with blue lights flashed very fast. +2012-06-08,42.5938889,-86.1016667,Fennville,MI,oval,60,UFO sighting in Michigan sky. +2012-06-08,42.2708333,-83.7263889,Ann Arbor,MI,fireball,3600,Numerous fast moving, large red lights in Northern sky at night +2012-06-08,42.5083333,-89.0316667,Beloit,WI,changing,30,UFO changing before my eye's absolutely no sound. +2012-06-08,37.6688889,-122.0797222,Hayward,CA,other,20,Unknown object was seen from where i live. +2012-06-08,42.7325,-84.5555556,Lansing,MI,light,120,Fleet of orange lights crosses the night sky +2012-06-08,40.5583333,-85.6591667,Marion,IN,unknown,180,Red, orange and green flicker of lights over G.M. plant observed from directly south by Marion Airport. +2013-06-08,40.7583333,-82.5155556,Mansfield,OH,circle,1200,A circular flashing craft was seen over the south Mansfield area. +2013-06-08,36.8527778,-75.9783333,Virginia Beach,VA,triangle,60,Orange Lights in Triangular Formation over Virginia Beach. +2013-06-08,41.6647222,-72.6397222,Rocky Hill,CT,fireball,300,Looked like a kite with dots in each side and Sorta like a diamond with 5 dots 1 in middle and 1 the left right top and bottom, and 7 +2013-06-08,39.9347222,-75.0311111,Cherry Hill,NJ,changing,900,Boomerang shaped silver metallic object on clear day stationary and rotating. +2013-06-08,38.2966667,-85.76,Clarksville,IN,other,180,BROWN BLANKET LIKE OBJECT FLOATING AND DISAPEARING ONTO THE SKY +2013-06-08,40.1797222,-76.1791667,Ephrata,PA,sphere,900,I saw 5 red orbs travel up over the horizon, and disappear in the same area. +2013-06-08,36.0838889,-87.7947222,Waverly,TN,changing,180,Fifty feet away,size of basketball orange and darting in trees. +2013-06-08,38.2972222,-122.2844444,Napa,CA,sphere,60,Yellow/Orange glowing sphere sighted by 4 people over Napa CA +2013-06-08,44.0247222,-88.5425,Oshkosh,WI,sphere,120,Flying fiery sphere for 2 minutes. +2013-06-08,39.5297222,-80.1169444,Rivesville,WV,cross,180,Spherical object that turned into a cross pattern . +2013-06-08,34.365,-77.6308333,Topsail Beach,NC,light,60,Big bright slow moving light that made no sound +2013-06-08,41.1338889,-81.4847222,Cuyahoga Falls,OH,light,180,Yellowish light in sky +2013-06-08,42.5194444,-70.8972222,Salem,MA,chevron,600,5 orange circular objects in shape of right faced cheveron to the right of the Salem Powerplant. Two of the objects joined at one point +2013-06-08,40.4283333,-79.6977778,Murrysville,PA,sphere,300,Red-orange spheres flying over Murrysville, PA valley and PA Turnpike. +2013-06-08,36.8466667,-76.2855556,Norfolk,VA,circle,300,Video taped 20-25 bright amber colored objects slowly moving in the night sky that slowly faded as they increased in altitude. +2013-06-08,44.7133333,-93.4225,Prior Lake,MN,circle,420,Several round red lights in the northwest sky. +2013-06-08,33.2486111,-111.6336111,Queen Creek,AZ,unknown,30,12 or so flying objects at a high rate of speed appear to be stars flying in formation +2013-06-08,37.3394444,-121.8938889,San Jose,CA,diamond,180,A bright red oranged diamond light figure with green flares in the bottom passing by quitly moneuvering as it took off +2013-06-08,27.8002778,-97.3961111,Corpus Christi,TX,oval,120,Color-changing slanted oval in the night sky. +2013-06-08,41.6638889,-83.5552778,Toledo,OH,oval,60,Orange orb type object-Star like objects almost daily. +2013-06-08,43.8736111,-116.4983333,Emmett,ID,sphere,120,Slow round craft that made no noise +2013-06-08,45.4313889,-122.7702778,Tigard,OR,light,90,5 lights moving in formation over Tigard Oregon 06/08/13 +2013-06-08,36.8527778,-75.9783333,Virginia Beach,VA,fireball,300,3 fireballs going vertical. +2013-06-08,40.3266667,-78.9222222,Johnstown,PA,fireball,300,5 or 6 fireball looking objects slowly went through the sky then one by one went out. +2013-06-08,39.7683333,-86.1580556,Indianapolis,IN,triangle,60,Triangle shape formation over Indianapolis. +2013-06-08,41.6302778,-87.8538889,Orland Park,IL,other,600,3 lights in a triangle and singular lights followed. +2013-06-08,40.3294444,-75.9655556,Wyomissing,PA,egg,10,Blue Craft Traveling at an Extremely High Rate of Speed w/ Zero Sound +1964-06-09,39.2902778,-76.6125,Baltimore,MD,sphere,30,June, 1964; 9;00 PM: immense counter-rotating double domed craft only 100 feet above me +1970-06-09,40.8022222,-124.1625,Eureka,CA,oval,60,silver globe spotted over humboldt bay +1972-06-09,40.4483333,-122.2966667,Anderson,CA,circle,10,Two round reddish orange metallic disks few overhead and were seen for about seven seconds. +1986-06-09,38.2541667,-85.7594444,Louisville,KY,cigar,120,Daylight Cigar shaped UFO sighting, with Witness! +1990-06-09,39.3752778,-122.5430556,Stonyford,CA,sphere,60,Letts Lake sighting, CA +1996-06-09,33.9255556,-116.8755556,Banning,CA,light,2100,Young woman on Hwy. I-10 watches bright light for 40 miles. Light turns slate gray, or black, changes shape. Suddenly disintegrates! +1997-06-09,36.6002778,-121.8936111,Monterey (North Of),CA,other,900,saw blue green bright flash covering entire horizen, then few miles down the road off of highway 1, saw two perfect circles of fire in +1997-06-09,40.31,-75.1302778,Doylestown,PA,triangle,15,V-shaped object / glowed with dim light +1997-06-09,42.2916667,-85.5872222,Kalamazoo,MI,formation,1800,Collection of white objects at extreme height in broad daylight that looked like living things, but were not. +1997-06-09,42.7919444,-83.6277778,Holly,MI,triangle,180,Triangle craft crosses over US 23 North of Holly, MI on 06/09/1997 @ 22:30 +1998-06-09,34.1083333,-117.2888889,San Bernardino,CA,diamond,600,A 3 dimentional diamond spacecraft that just spinned arround it stayed in the same place for at least ten minutes,It spit out 4 colors +1998-06-09,25.9013889,-97.4972222,Brownsville,TX,light,900,I just called a friend that also witnessed the UFO to verify the time. As for the sighting goes. About ten of my closest friends and my +1999-06-09,33.0888889,-96.8861111,The Colony,TX,unknown,30,Object with three, bright red lights came out of object with three bright white lights. +1999-06-09,33.4483333,-112.0733333,Phoenix (North Scottsdale),AZ,light,3600,Two bright amber lights seen over Phoenix +1999-06-09,36.175,-115.1363889,Las Vegas (Over),NV,light,240,9:14 P.M. I was in the house when my husband who had been sitting out in the yard stuck his head in the door and said to come outside t +1999-06-09,36.175,-115.1363889,Las Vegas,NV,light,60,4 quickly moving red lights in the NW sky just to the right of Venus. +1999-06-09,47.9791667,-122.2008333,Everett,WA,disk,1500,Craft with multicolored lights drifted above us. +1999-06-09,38.5816667,-121.4933333,Sacramento,CA,light,5,Orange-white light traveling approx. from South to North at about 25 to 30 degrees above horizon, very fast. No blinking or pulsing to +2000-06-09,41.5775,-92.7833333,Lynnville,IA,disk,20,It was a bold color of light gray,about 3inches across in diameter, and a flat oval shaped saucer,it made a very unusual beeping sound +2000-06-09,46.2858333,-119.2833333,Richland,WA,teardrop,60,Teardrop shaped object sighted over Richland Washington. +2000-06-09,33.3527778,-111.7883333,Gilbert,AZ,light,900,Large red light seen over the Phoenix area in the north sky +2000-06-09,39.0255556,-77.0766667,Kensington,MD,cylinder,2,Large, oval shaped very bright, white light (like a flash bulb) object, about 150 feet above us +2000-06-09,39.1730556,-77.2719444,Germantown,MD,triangle,60,Arrowhead shaped formation of red lights moving with no sound from east to west over Germantown, MD. +2000-06-09,45.1486111,-93.1513889,Circle Pines,MN,light,15,flaring white light +2001-06-09,39.4036111,-76.9505556,Eldersburg,MD,unknown,900,I saw a object land, I heard loud noises accompanied by squealing animals, the object then raised in the sky and split into two objects +2001-06-09,34.0522222,-118.2427778,Los Angeles,CA,cigar,1200,I was walking to the restroom from the parking lot of Carl's Junior when I noticed an object far away. Not caring, because of so many +2001-06-09,47.6063889,-122.3308333,Seattle,WA,rectangle,30,My wife and I had just left the Hub at the University of Washington where we had attended a graduation ceremony for the Department of E +2001-06-09,43.4666667,-112.0333333,Idaho Falls,ID,cylinder,180,Saw a multi-colored UFO fly from one side of me to the other for 2-3 mins. +2001-06-09,40.7141667,-74.0063889,New York City (Staten Island),NY,light,54000,PINPOINT OF LIGHT OVER STATEN ISLAND +2001-06-09,40.3355556,-75.9272222,Reading,PA,egg,900,Saw a white grocery bag like object climb to over 10ꯠft with a smaller white object trailing the larger one to the SW. +2001-06-09,38.5891667,-121.3016667,Rancho Cordova,CA,circle,1500,In the summer of 2001 my brother (Mark) called me (Allen) I live here in Salem, Oregon. Mark was and still lives there in Sacramento, C +2001-06-09,33.415,-111.5488889,Apache Junction,AZ,light,180,There were 4 very bright unusual lights appearing suddenly & disappearing just as suddenly. +2001-06-09,35.2494444,-112.1902778,Williams,AZ,sphere,10,Two kids see a green-ish glowing sphere in woods outside of Williams AZ. +2001-06-09,36.175,-115.1363889,Las Vegas,NV,unknown,300,It was making maneuvers that would be impossible for any known aircraft to make and would have killed any person inside the aircraft +2001-06-09,42.4805556,-83.4755556,Novi,MI,light,3,Bright green object moving north, north-west observed or suburban Detroit Michigan. +2001-06-09,46.355,-85.5094444,Newberry,MI,formation,120,3 satilites moving in triangle formation from north west to south east. +2002-06-09,33.4483333,-112.0733333,Phoenix,AZ,other,180,The whole incident made me think of a teenager that has gotten his fathers car and was just out seeing what that baby could do. +2002-06-09,47.2530556,-122.4430556,Tacoma,WA,oval,900,Just a disc shaped object that I watched for about 15 minutes. Object moved around in the sky and there was aircraft in the area. Cloud +2002-06-09,47.2530556,-122.4430556,Tacoma,WA,unknown,600,At about 3 PM on Sunday afternoon a friend and I were lying in the backyard doing a crossword puzzle and I just looked up into the sky, +2002-06-09,39.3769444,-97.1244444,Clay Center,KS,sphere,600,The object was following a passenger jet. The obeject was a mettalic shaped sphere and was on the starboard side of the plane. +2002-06-09,41.1544444,-96.0419444,Papillion,NE,cigar,180,Chrome-like cigar w/ wings, quiet, low flying in unusual flight pattern, with no identification markings. +2002-06-09,36.1658333,-86.7844444,Nashville,TN,unknown,600,unusual overhead occurence while on family walk. +2002-06-09,47.6063889,-122.3308333,Seattle,WA,circle,180,it was between 1000 and 1030pm - i was in my back yard with my telescope, however i did not need my telescope to see this! I live on th +2002-06-09,48.7597222,-122.4869444,Bellingham,WA,light,60,Extremely Bright Object Crosses Sky at Twilight (at least 2x brightness Sirius/planets) +2002-06-09,46.5147222,-122.1588889,Glenoma,WA,unknown,20,I was outside looking at the stars sitting next to a fire with a friend of mine just relaxing in general.We were noticing that the bird +2002-06-09,47.7544444,-122.1622222,Woodinville,WA,light,60,Very bright star +2002-06-09,42.4391667,-123.3272222,Grants Pass,OR,oval,120,Sighting of very fast object near Grants Pass, OR that made strange moves, and was pursued by jets. +2003-06-09,41.1280556,-101.7191667,Ogallala,NE,formation,600,Three objects traveling in formation at approx.3:30am +2003-06-09,40.8825,-121.6597222,Burney,CA,circle,600,Formation of 3 flying orbs over the skys of burney california. +2003-06-09,36.7472222,-95.9805556,Bartlesville,OK,light,1800,3 lights over Bartlesville, OK. +2003-06-09,26.5625,-81.9497222,Cape Coral,FL,formation,420,I have never seen anything like this before +2003-06-09,38.9536111,-94.7333333,Lenexa,KS,sphere,900,Six small silvery-white spherical shapes, moving very rapidly across the daytime sky, one at a time over 15 minutes. +2003-06-09,33.4355556,-112.3488889,Avondale,AZ,sphere,180,Strange zig-zagging object traveling from S.W. to N.E. +2003-06-09,35.1405556,-85.2327778,Hixson,TN,triangle,180,wish i didn't hesitate on getting my camara. +2003-06-09,29.4238889,-98.4933333,San Antonio,TX,light,20,Orbital Sighting Not Satellite or Meteor +2003-06-09,47.1855556,-122.2916667,Puyallup,WA,fireball,60,It gave of light like a search light but was red and falling from the sky with smoke behind it +2003-06-09,33.4483333,-112.0733333,Phoenix,AZ,light,600,Three lit objects moving about on I-10 in Phoenix, AZ +2004-06-09,37.725,-122.155,San Leandro,CA,circle,900,Humming oval shaped object with tiny red lights on bottom +2004-06-09,44.7966667,-68.7619444,Brewer,ME,diamond,120,Watched 3D cube for 2 min out office window. +2004-06-09,41.5580556,-73.0519444,Waterbury,CT,circle,120,Circular UFO seen in Waterbry,CT. by people at a car wash on Watertown Ave. Summer of 2004 +2005-06-09,37.6547222,-122.4066667,South San Francisco,CA,disk,15,California Bay Area sighting +2005-06-09,41.1305556,-85.1288889,Fort Wayne,IN,triangle,10,triangle shaped UFO with a light on each end +2005-06-09,38.8047222,-77.0472222,Alexandria,VA,other,7440,siteing over alexandria va 22304 this is for real +2005-06-09,41.8005556,-73.1216667,Torrington,CT,light,30,Two Jupiters!!! +2005-06-09,40.2013889,-77.1891667,Carlisle,PA,unknown,900,I stepped outside for a ciggetett. As I looked up at a star, I noticed flaches of light at different points around this particular star +2005-06-09,38.8813889,-94.8188889,Olathe,KS,rectangle,600,A rectangular object appeared coming up over a line of trees and rose into the sky and began to make circles, another joined it and mao +2006-06-09,29.6655556,-97.505,Harwood,TX,sphere,2,Glowing ball speeds over small country town at incredible speeds +2006-06-09,41.760555600000004,-88.32,Aurora,IL,cross,1140,((HOAX??)) I seen a Cross shaped figure in the somewhat dark sky.. ((NUFORC Note: Student report. PD)) +2006-06-09,36.1197222,-80.0738889,Kernersville,NC,sphere,1080,One main cbject and seven smaller objects that came out of the main object. +2006-06-09,40.7141667,-74.0063889,New York City (Bronx),NY,sphere,12,Ok I usually am very sceptical when it comes to appearances of apparitions, imaginary susperstitions, aliens, ufo's and things of that +2007-06-09,36.7022222,-85.6916667,Tompkinsville,KY,light,300,a white orb in the sky moving in the sky and then dissappearing. +2007-06-09,39.8027778,-105.0869444,Arvada,CO,chevron,240,We thought we were looking at a kite until it started to move strangly. +2007-06-09,41.7469444,-88.0502778,Woodridge,IL,light,600,Fours UFO's seen in Woodridge, IL, 6/9/07 +2007-06-09,41.85,-87.65,Chicago,IL,formation,900,4 objects spoted over Lake Michigan in Chicago +2007-06-09,42.2916667,-85.5872222,Kalamazoo,MI,other,900,Four Orbs in one object flying above Kalamazoo +2007-06-09,42.7677778,-78.6136111,East Aurora,NY,circle,900,Very small red, round light over the southwest sky hovered and appeared to be blinking, flashed a white light and disappeared +2007-06-09,36.6775,-76.9227778,Franklin,VA,unknown,30,2 objects change shape.... +2007-06-09,41.9125,-88.1347222,Carol Stream,IL,cigar,240,Bright green object slowly moving across the sky. +2007-06-09,38.2205556,-90.3958333,Festus,MO,other,300,silent ship w/3 blue lights on bottom with escort of 3 craft +2007-06-09,38.4436111,-90.2011111,Columbia,IL,triangle,60,Triangular object moving across the sky on a clear night in Metro East St Louis. Moving fast and straight from E-SE to W-NW at high alt +2008-06-09,25.7738889,-80.1938889,Miami,FL,rectangle,2,Rounded rectangular object spoted above Downtown Miami. +2008-06-09,42.8688889,-76.9780556,Geneva,NY,light,7200,Light / Star - faint at first. Increasing in brightness, with red / purple strobe light, appearing and disappearing +2008-06-09,33.5833333,-95.9097222,Honey Grove,TX,light,8,Well to begin with, my two brothers and I were out in our field by our redneck clubhouse just talking about different stuff, and all of +2008-06-09,42.1194444,-71.3255556,Norfolk,MA,cigar,60,No lights, no trail, no haze around the object, no beams , no change in color, no landing , no sound, +2008-06-09,37.3541667,-121.9541667,Santa Clara,CA,oval,300,White oval object hovered high in the sky for about three minutes +2008-06-09,32.2216667,-110.9258333,Tucson,AZ,fireball,600,Burning Embers Sighted in Sky Near Tucson +2008-06-09,33.6008333,-86.9561111,Adamsville,AL,sphere,120,Evening sighting, one spherical object, two witnesses. +2008-06-09,42.6333333,-71.3166667,Lowell,MA,egg,600,Blimp-like Craft crossing Lowell, MA super slowly... proceeded by Tactical Craft +2008-06-09,39.5186111,-104.7608333,Parker,CO,sphere,600,Flying Ball of Fire in Parker Colorado +2008-06-09,39.5186111,-104.7608333,Parker,CO,fireball,60,A fireball swooped down over my friends and mines heads (50ft up) and ascended into the horizon opposite the one it came from. +2009-06-09,33.1975,-96.615,Mckinney,TX,oval,15,((HOAX)) Erratic flying UFO with meteor like shape and several lights flies over Mckinney, TX +2009-06-09,47.3075,-122.2272222,Auburn,WA,formation,20,3 Lights Flashing in Auburn, Washington +2009-06-09,40.4405556,-79.9961111,Pittsburgh,PA,light,1500,daytime sighting, no clouds just blue sky and a very bright white light. i took pictures +2009-06-09,34.15,-114.2883333,Parker,AZ,unknown,3600,5 amber colored lights flashing one after another in a straight, horizontal line. +2009-06-09,38.7691667,-94.6561111,Stilwell,KS,changing,60,Silent, unidentifed object moves in a southwestern direction from the North and changes shape/ lighting +2009-06-09,33.3763889,-117.2502778,Fallbrook,CA,other,600,Square flying object w/white lights on corners, red light on sides, white in center. Another had one BIG red light and moved VERYY fast +2009-06-09,39.9980556,-79.7833333,Smock,PA,formation,30,vertical stack of brillaint white lights. +2009-06-09,38.4191667,-82.4452778,Huntington,WV,fireball,1,I looked up and saw a round object streak through the sky. +2009-06-09,47.7625,-122.2041667,Bothell,WA,light,60,2 very bright star-like lights traveling close together at same speed, dimmed and disappeared. +2010-06-09,36.3302778,-119.2911111,Visalia,CA,light,120,3 small white lights in the shape of a triangle, one object only +2010-06-09,26.4377778,-81.8069444,Estero,FL,light,6,There was no noise, flames or tails like a shooting star. +2010-06-09,31.1502778,-81.3697222,St. Simons Island,GA,other,600,I saw a series of bright flashing lights hovering in one place over the trees on the horizon. +2010-06-09,32.7458333,-96.9975,Grand Prairie,TX,other,3,Three white lights appeared in the sky, made a J pattern, and then disappeared. +2010-06-09,27.7205556,-82.4333333,Ruskin,FL,triangle,600,White, red, blue lights. Six lights total. Very silent, until it started moving. Made loud humming sound. +2011-06-09,46.6022222,-120.5047222,Yakima,WA,light,6,bright, white, star-like object, moving silently west to east in the northern sky over Ahtanum, WA +2011-06-09,41.7636111,-72.6855556,Hartford,CT,light,19,UFO in Hartford, Connecticut. Are they watching us??? +2011-06-09,39.7683333,-86.1580556,Indianapolis,IN,oval,600,Acorn shaped object with light on bottom +2011-06-09,34.7863889,-86.7138889,Monrovia,AL,unknown,120,Lat night around 10:00 cst. Me and a friend were outside and I looked up and saw a very bright red and white light. I told my friend to +2011-06-09,47.6063889,-122.3308333,West Seattle,WA,sphere,600,Orange Reddish Orb at first! +2011-06-09,41.8061111,-88.3272222,North Aurora,IL,light,1200,Two lights in north aurora, white to yellow to orange in color, slow in movment +2012-06-09,45.5236111,-122.675,Portland,OR,formation,60,Five orbs floating low in sky. ((NUFORC Note: We wonder whether the lights might have been advertising lights. PD)) +2012-06-09,47.6983333,-96.1408333,Mentor,MN,oval,1800,Oval blueish Orb zig zaging as it moves and dissapears suddenly. +2012-06-09,37.5630556,-122.3244444,San Mateo,CA,light,180,Light in the sky flashing 11 seconds as if rotating about the craft the same way a lighthouse does. object/light high in the sky moving +2012-06-09,39.4055556,-105.4727778,Bailey,CO,light,180,Bright white satellite light, stopping and swerving extremely organically for minutes. +2012-06-09,39.9808333,-75.3088889,Havertown,PA,sphere,120,Yellow orb, changes to white flashing light, moving across the night sky +2012-06-09,33.7488889,-84.3880556,Atlanta,GA,oval,900,Can be seen on Google maps at this location: XXXX Kings Gap Rd Hamilton GA 31811-4702 United States +2012-06-09,44.0805556,-103.2305556,Rapid City,SD,changing,120,Crazy +2012-06-09,35.2269444,-80.8433333,Charlotte,NC,circle,120,Two orange circles moved slowly, then proceeded faster separated and disappeared in cloud +2012-06-09,34.2163889,-119.0366667,Camarillo,CA,fireball,300,Eight amber lights +2012-06-09,42.1816667,-88.3302778,Lake In The Hills,IL,other,420,We where siting outside all 5 of us and from a distance I saw three lights but they where not flashing like planes do.I thought it's to +2012-06-09,40.8963889,-78.2208333,Philipsburg,PA,circle,120,Witnessed three glowing orange objects traveling northewest in a triangular formation with a forth following behind +2012-06-09,39.7683333,-86.1580556,Indianapolis,IN,triangle,120,Triangular shaped fyling objects with orange amber lights. +2012-06-09,41.525,-88.0816667,Joliet,IL,fireball,60,Two orange lights seen over Joliet, Illinois +2012-06-09,28.5380556,-81.3794444,Orlando,FL,light,300,My cousin an I and my 3 year old daughter went into my backyard, to relax near my pool. While talking i noticed a perfect line of at le +2012-06-09,41.6827778,-88.3513889,Oswego,IL,light,600,Saw at least six orange lights floating in a northeast direction +2012-06-09,33.8722222,-117.8694444,Placentia,CA,fireball,240,Six bright UFO'S with fire underneath them +2012-06-09,39.9783333,-86.1180556,Carmel,IN,formation,1320,At 10:10 p/m My wife and I just finished dinner,went on a small walk and seen over 25 ufo's enter the air space and proceed to set up s +2012-06-09,43.7730556,-88.4469444,Fond Du Lac,WI,circle,25,A orange ball Norht east +2012-06-09,44.9444444,-93.0930556,Saint Paul,MN,fireball,120,Fireball over Como Lake, St Paul , MN. No sound ! +2012-06-09,42.0969444,-79.2355556,Jamestown,NY,light,120,3 red lights and one white light moving fast in the clear night sky +2012-06-09,41.0813889,-81.5191667,Akron,OH,fireball,900,Some something that was not explainable. +2012-06-09,42.4841667,-76.4802778,Lansing,NY,flash,60,Large strobe light like flashes +2012-06-09,41.0813889,-81.5191667,Akron,OH,fireball,300,Fire ball, then triangle of 3, then several covering sky and spreading as they headed W or WNW. +2012-06-09,39.0088889,-75.4661111,Frederica,DE,disk,6,Yellowish-Gold falling star, that stopped, changed colors and vanished. +2013-06-09,40.4233333,-104.7086111,Greeley,CO,circle,5,I saw a blue fire ball coming down to earth from the west. +2013-06-09,44.4375,-73.0686111,Williston,VT,fireball,5,Large bright orange object travelling west to east with very long tail with landing trajectory +2013-06-09,37.4136111,-79.1425,Lynchburg,VA,sphere,120,Yellowish orange sphere/light around Timberlake/Waterlick area. +2013-06-09,41.8488889,-72.5722222,South Windsor,CT,oval,240,Orange round objects in formation proceeding in upward movement from northwest sky. +2013-06-09,41.7636111,-72.6855556,West Hartford,CT,light,4,I saw a light that looked like a star that was standing still then it moved fast and disappeared. +2013-06-09,43.1547222,-77.6158333,Rochester,NY,formation,120,Red Light with white yellow ora in sky near lake Ontario, Greece, Ny +2013-06-09,45.4208333,-122.6694444,Lake Oswego,OR,light,180,2 orange/red lights seen over Lake Oswego at night +2013-06-09,41.7002778,-73.9213889,Poughkeepsie,NY,circle,300,Large glow of light. +2013-06-09,37.7808333,-90.4216667,Farmington,MO,other,2,Huge Fluorescent Blue Orb Much Larger Than The Moon. +2013-06-09,34.7463889,-92.2894444,Little Rock,AR,disk,3,THE CRAFT WAS A SAUCER SHAPE WITH THE OUTER CIRCLE BEING LIT WITH A PROMINENT LIGHTING. THERE WAS A WHISTLE NOISE WHICH CAUGHT MY REA +1945-07-10,36.8352778,-76.2986111,Portsmouth,VA,formation,180,1945 RED FLICKERING V FORMATION CRAFTS MOVING EXTREEML FAST . +1950-07-10,40.8338889,-80.5405556,East Palestine (Outside Of),OH,light,300,Lights observed moving in and out of a thunderstorm +1951-07-10,40.2338889,-111.6577778,Provo,UT,disk,1800,Observed a gray, saucer shaped object for 30 minutes, clear blue sky, no clouds, hover, move slowly, and accelerate out of sight. +1957-07-10,40.6936111,-75.1905556,Phillipsburg,NJ,cigar,420,cigar shaped, after nightfall, Phillipsburg NJ, witnesses +1957-07-10,39.2902778,-76.6125,Baltimore,MD,other,60,ON THE ABOVE DATE,MYSELF AND THREE OTHER BOYS HAD ENTERED THE BACK GATE OF THE CARLINS DRIVE INN THEATER TO SEE A MOVIE. WE HAD BEEN T +1958-07-10,42.9033333,-78.755,Cheektowaga,NY,teardrop,20,White teardrop shaped object observed during the daytime +1962-07-10,42.1955556,-74.1341667,Tannersville,NY,light,120,1962 shiny object flying over New York Catskills south to north at approx 10ꯠ feet with two USAF jets chasing it. +1963-07-10,42.0411111,-87.69,Evanston,IL,disk,420,We watched the saucer with lights for five minutes as it remained stationary above us at about a 45 degree angle. +1964-07-10,41.2844444,-84.3558333,Defiance,OH,light,420,bright object with beam of light and right angle turn in flight +1965-07-10,34.2819444,-118.4380556,San Fernando,CA,other,3600,The shape of the object looked- like a parachutte ( glowing ) moving very slowly across the sky - form my observations it looked like +1969-07-10,40.7608333,-111.8902778,Salt Lake City,UT,circle,2100,the craft were moving very slowly and was low just over the top of buildings. +1969-07-10,41.0138889,-93.3063889,Chariton,IA,circle,300,It was disk shaped and brilliant white on the bottom,flew at a high rate of speed and changed direction at 90 degree turns. +1971-07-10,29.9544444,-90.075,New Orleans,LA,oval,5400,One thousand saucers observed telescopically crossing the sun over a ninety minute period. +1971-07-10,45.5608333,-94.1622222,St. Cloud,MN,light,15,I was 15 at the time, and lived on a farm. Finished supper and walked out of the house to work in the barn. Between the out buidings I +1973-07-10,44.3875,-68.2044444,Bar Harbor,ME,circle,2700,Brilliant, white, perfectly round objects, jetting back and forth, up and down, in night skies. +1974-07-11,40.5886111,-83.1286111,Marion,OH,sphere,300,Spherical colored lights swooping and circling over a wheat field. +1975-07-10,41.7758333,-72.5219444,Manchester,CT,unknown,3600,Nightime visitation in Connecticut-1973; this was a probable abduction. 500 Lights On Object0: Yes +1975-07-10,41.6313889,-72.4602778,Marlborough,CT,disk,1800,UFO sighting of a mother ship over our secluded country farm house. +1976-07-10,33.4483333,-112.0733333,Phoenix,AZ,disk,6,Phoenix, AZ, mid-July, 1976, 11:30 am, shiny silver disk- shaped object hovering over vacant lot at about 200'. +1976-07-10,41.3144444,-81.8358333,Strongsville,OH,triangle,120,I looked up and saw three lights in a triangle shape moving quietly across the sky spinning. +1977-07-10,41.6155556,-87.5294444,Calumet City,IL,circle,60,Perfectly round with blue and orange perimeter lights. Windows all around the perimeter. +1978-07-10,42.9633333,-85.6680556,Grand Rapids,MI,triangle,300,Dark, Black Triangle Craft +1979-07-10,39.1072222,-76.5713889,Pasadena,MD,formation,1200,July 1979. It was in the eastrern sky. A formation of about 10 crafts. formations within formations diferent colors in each formation. +1980-07-10,41.1175,-73.4083333,Norwalk,CT,oval,15,multi colored lights over some trees near downtown norwalk ct. +1981-07-10,45.1361111,-92.0947222,Connorsville,WI,light,600,Object or light makes 90 degree turns in night sky +1982-07-10,41.0241667,-80.6630556,Boardman,OH,light,240,The importance of this experience to me is more about the mental message that was imparted to me than the actual physical sighting. +1983-07-10,40.7141667,-74.0063889,New York City (Bronx),NY,fireball,5,FireBall in the Bronx...... Early 80"s +1983-07-10,43.1330556,-115.6902778,Mountain Home,ID,oval,900,There was 6-7 oval, pure white objects of about 30' X15'.One circled my car twice and then shot away. +1984-07-10,38.5558333,-93.9605556,Blairstown,MO,light,1800,Round neon light blue ball passing east to west across the sky. +1984-07-10,41.9927778,-120.2961111,New Pine Creek,CA,light,3600,White light moving W to E to Big Dipper. Hung there until it disappeared +1985-07-10,43.0125,-83.6875,Flint,MI,triangle,600,Sleek Triangle Object, Two rows of lights +1985-07-10,28.0183333,-82.1130556,Plant City,FL,triangle,60,Summer 1985 sighting +1987-07-10,42.2711111,-89.0938889,Rockford,IL,triangle,40,It about five after ten on a clear wind calm night. A friend and I were in a natural area on the property of a local hospital listening +1988-07-10,47.8555556,-121.9697222,Monroe,WA,other,300,sighting from the past +1989-07-10,29.2105556,-81.0230556,Daytona Beach,FL,other,10,Blue Green fanning light covered entire night sky at the same time as power outage. Daytona summer 1989 +1989-07-10,40.7583333,-82.5155556,Mansfield,OH,light,900,Ball of light enters van twice and dissolves through door and occupants experience missing time. +1992-07-10,39.1619444,-84.4569444,Cincinnati,OH,sphere,120,Glowing orb floating at treetop level +1992-07-10,29.7630556,-95.3630556,Houston,TX,triangle,900,The object glided quietly above us, while we were in the pool on Summer in 1992 +1992-07-10,48.7052778,-119.4383333,Tonasket,WA,unknown,1800,Red/Green lights with sharp movements near tonasket Washington in 1992 +1992-07-10,37.6391667,-120.9958333,Modesto,CA,circle,15,Spinning circle in the sky +1993-07-10,40.0675,-74.5311111,New Egypt,NJ,disk,240,UFO w/ green lights seen just above tree tops at night in or near New Egypt, N.J. +1993-07-10,40.0675,-74.5311111,New Egypt,NJ,circle,105,UFO w/ green lights seen twice in NJ at night in N.J. on 539 +1994-07-10,41.2844444,-84.3558333,Defiance,OH,light,10,White light shining down like a spot light then zipping back and forth and upward. +1996-07-10,34.2072222,-84.1402778,Cumming,GA,rectangle,45,It was holding me down wth enormous strength i had t roll wildly to break loose and it dissappeared! +1997-07-10,47.1855556,-122.2916667,Puyallup,WA,unknown,900,Blinding green light lit up my bedroom with the blinds fully closed..with no noise. +1997-07-10,43.8844444,-91.235,Onalaska,WI,sphere,30,Large shiny silver ball, stop in mid flight and then moved off quickly at a sharp right angle, and dissappeared.large +1997-07-10,43.8844444,-91.235,Onalaska,WI,sphere,30,Silver ball, became stationary and shot at a sharp right angle at a high rate of speed and disappeared +1997-07-10,46.0130556,-91.4844444,Hayward,WI,disk,180,I was driving with my son and noticed what I thought was a plane, but wondered why it was so low above the tree line...the as it moved +1997-07-10,33.1383333,-96.1105556,Greenville,TX,other,1200,AT FIRST I THOUGHT IT WAS A AIRPLANE BUT THE CRAFT STARTED TO SLOW DOWN MY SON WAS GETTING OFF THE BUS IN FRONT OF OUR HOUSE, AND HE AS +1997-07-10,40.4166667,-86.8752778,Lafayette,IN,fireball,900,The fireballs were hang in one spot in the air. I was driving my truck east on Indiana route 25 into Lafayette, IN. They seemed about +1998-07-10,47.1394444,-122.0969444,South Prairie,WA,other,420,I noticed an object approx. the size of the full moon moving slowly towards the West. All of the sudden it made a sharp turn towards th +1998-07-10,40.9113889,-73.7827778,New Rochelle,NY,cigar,10,A Shuttle Like UFO hovering in the West End part of New Rochelle, New York for seconds before vanishing +1998-07-10,38.4327778,-90.3775,Arnold,MO,light,5,Bright ball of light appears briefly in suburban St. Louis +1998-07-10,40.7966667,-74.4819444,Morristown,NJ,unknown,15,Object was small, dark colored and shape was not distinct (possibly flat?) Every 2-5 sec entire back end of object emitted bright red g +1998-07-10,44.6119444,-73.0091667,Westford,VT,disk,180,summer of 98... saucer shaped ufo with bright blue lights sighted +1998-07-10,31.4636111,-100.4366667,San Angelo,TX,formation,5,We saw five lights in the southwest sky that changed formation and disappeared. All within a matter of about 5-10 seconds. +1999-07-10,39.9611111,-82.9988889,Columbus,OH,light,1500,A light in the sky was seen moving slowly through the sky. After moving to the north, the light started to fade, moving away from us to +1999-07-10,45.6388889,-122.6602778,Vancouver,WA,circle,240,Very slow moving on southward heading orange pulsating light. Same size orange glow was dropped? and left trail when falling then vani +1999-07-10,41.2586111,-95.9375,Omaha,NE,teardrop,900,Hovering teardrop type shape with vertical "smokestack" coming out of top, Driving west on I-80, witnessed it dissapear. +1999-07-10,32.7152778,-117.1563889,San Diego,CA,sphere,1200,Spherical craft hovered over baseball stadium, made series of rapid manuevers, then flew away extremely fast. Rotating disc appeared, a +1999-07-10,32.2216667,-110.9258333,Tucson,AZ,egg,1200,object traveled at treetop level west untill it was due south of our home. It then sank below the tree line. About 10 minutes later it +1999-07-10,45.5236111,-122.675,Portland,OR,cigar,300,Cigar shaped object, reflective silver/white in color seen moving silently through the sky. +1999-07-10,47.6063889,-122.3308333,Seattle,WA,light,180,Blue light rise maybe 20-40 miles away. Blue light for 3 seconds then small light maybe red/white (dim). object accelerated to altitude +1999-07-10,45.3002778,-122.9719444,Newberg,OR,circle,2400,Bright red object, moved alittle than stayed stationary until it fizzled out. Was it Baloon with flare? Red Sun? Meteorite coming towar +2000-07-10,45.4463889,-122.6380556,Milwaukie,OR,light,30,I was going out to roll up windows in car. Just stepped one foot onto porch when this bright light caught my eye in the sky. It was whi +2000-07-10,42.0411111,-87.69,Evanston,IL,other,60,I saw a bright light similiar to a starburst fade out and disappear and then faded back to a very bright light. It was about 3:10 a.m. +2000-07-10,39.8083333,-104.9333333,Commerce City,CO,light,1800,Three star like objects seen in broad daylight on two seperate days +2000-07-10,36.8527778,-75.9783333,Virginia Beach,VA,unknown,2,last summer while recording a low flying airplane at my rc club field,something above the airplane flew by with great speed super fast, +2000-07-10,37.165,-118.2886111,Big Pine,CA,other,30,strange car occupants? +2000-07-10,43.9786111,-90.5038889,Tomah,WI,cigar,120,A co-worker and I were having our break outside at the factory at which we work. We both saw a cigar shape object to the north and o +2000-07-10,41.8088889,-88.0111111,Downers Grove,IL,sphere,180,The gaurd of the building I work in was called by the gaurd of teh sister building asking what the "lights " were. he proceded outside +2000-07-10,35.198055600000004,-111.6505556,Flagstaff,AZ,other,7200,I was on my way home, when I noticed some flashing in the sky around the mountain thinking it was the towers then one shot out northeas +2001-07-10,39.0875,-81.9227778,West Chester,OH,fireball,1,I was looking at the stars when I spotted a UFO +2001-07-10,36.7477778,-119.7713889,Fresno,CA,unknown,7200,ATNOSPHERIC LENSING?? ? +2001-07-10,18.5027778,-67.0247222,Isabela (Puerto Rico),PR,disk,240,Follow-up sighting on UFO rash and belated report of big UFO / SpaceHarbor-like event. +2001-07-10,43.2127778,-75.4561111,Rome,NY,triangle,120,large triangle gray to black in color. large cluster of red an white lights under center of craft.Engin sounds louder then B52s. Movein +2001-07-10,41.6716667,-72.9497222,Bristol,CT,other,3,i was walking down my street at night on my way home. when i noticed a orange glowing ufo in the night sky hovering. +2001-07-10,36.1302778,-118.8172222,Springville,CA,light,15,Two very very bright lights were seen going across the sky one directly above the other. They were traveling north to south and one was +2002-07-10,40.5308333,-112.2975,Tooele,UT,fireball,60,Ball of light with helicopters in persuit. +2002-07-10,43.1547222,-77.6158333,Rochester,NY,unknown,120,Large star like object moving slow and vanishing. +2002-07-10,35.2269444,-80.8433333,Charlotte,NC,light,5,Blue light traveling at high rate of speed. +2002-07-10,36.2702778,-121.8063889,Big Sur,CA,unknown,300,Hot wind followed by bright light. +2002-07-10,39.5127778,-80.2491667,Farmington,WV,light,10,Small light seen zig-zagging over West Virginia camp +2002-07-10,40.8427778,-73.2933333,Commack,NY,light,20,An extremely bright light spec moving very slowly across they sky and soon fading making no sounds. +2002-07-10,35.9127778,-100.3816667,Canadian,TX,unknown,600,there were three lites traveling across the sky in formation exactly the same distance from one another and it was huge and there was n +2002-07-10,47.6741667,-122.1202778,Redmond,WA,light,240,Star like light crawls across Washington Sky. +2002-07-10,26.5625,-81.9497222,Cape Coral,FL,circle,10,I saw a bright star like light moving around thousands of feet in mere seconds +2002-07-10,33.8752778,-117.5655556,Corona,CA,light,120,Flying light object observed flying in a precise motion in the Northern sky +2003-07-10,34.8561111,-100.2133333,Wellington,TX,light,240,looks like a star +2003-07-10,21.2827778,-157.8294444,Waikiki,HI,circle,900,incredable speed +2003-07-10,47.6447222,-117.5922222,Airway Heights,WA,sphere,2700,Orange sphere of light hovering several hundred feet above Fairchild Airforce Base. +2003-07-10,43.4925,-70.4538889,Biddeford,ME,cross,900,they are here. +2003-07-10,45.1219444,-95.0430556,Willmar,MN,triangle,1800,Black, unlit, triangular, silent, stationary, object hovering at high altitude, July 2003 in Willmar Minnesota USA. +2003-07-10,41.3572222,-88.4211111,Morris,IL,light,15,Red light circling over an area, then shooting off. +2004-07-10,43.1905556,-112.3441667,Blackfoot,ID,chevron,600,ever since then we started to look up at the sky and where surprised to see how many sighting we were encountering. +2004-07-10,45.4358333,-89.1833333,Elcho,WI,diamond,1200,Multi-colored flashing lights hovering over small-town in Wisconsin +2004-07-10,34.2011111,-118.5972222,Canoga Park,CA,light,180,I SAW A SILENT FUZZY BLINKING ORANGE/YELLOWISH BALL OF LIGHT ZIPPING OVER THE STREETS BEFORE SUNRISE. +2004-07-10,25.9561111,-80.1394444,Aventura,FL,oval,2700,As I was driving back from a nightclub with my girlfriend I saw in the sky what seem to be an airplane, but what called my attention wa +2004-07-10,42.3702778,-87.9019444,Gurnee (Near, On I-55 North),IL,oval,40,Oval object brushed metalic, watched it for about 30 sec and then it disappered. Very low to ground, +2004-07-10,43.2880556,-77.7936111,Hilton,NY,circle,300,Saw object in sky moving erratically. +2004-07-10,45.6358333,-84.7869444,Levering,MI,other,3,Strange, cross-and-semicircle-shaped craft was seen in broad daylight by 2 observers on Lake Michigan. +2004-07-10,33.7461111,-117.6361111,Silverado,CA,light,600,Unidentifiable lights that have no visible body. Daytime. +2004-07-10,33.9244444,-85.6113889,Piedmont,AL,circle,600,Several objects in sky - seemed to be twirling and flashing red - green - blue and white lights and would hover then very quickly move +2004-07-10,30.4783333,-90.0375,Abita Springs,LA,formation,2,Distant objects in formation visible in sunset photos +2004-07-10,34.5636111,-111.8536111,Camp Verde,AZ,triangle,120,Bright gold triangle seen moving silently, smoothly, and quickly across the night sky from Phoenix area towards California. +2004-07-10,36.175,-115.1363889,Las Vegas,NV,sphere,60,A glowing balloon-like object with a slight orange glow moving across the sky. +2004-07-10,34.0522222,-118.2427778,Los Angeles,CA,light,10,Strange star like light that quickly changed direction and speed and then quickly sped off into the distance +2004-07-10,26.2375,-80.125,Pompano Beach,FL,light,900,Small light similar to a star flashed twice and appeared to move in an erratic pattern. +2004-07-10,40.7988889,-81.3786111,Canton,OH,light,60,An unusual chase of two unidentified flying objects were seen in the sky. +2004-07-10,41.6027778,-87.7438889,Oak Forest,IL,light,18000,red ligths in the sky 3 of them +2005-07-10,40.0958333,-80.7247222,Martins Ferry,OH,sphere,1800,while exiting my backyard pool,,,observed an aircraft flying overhead,,the sky was very blue with no clouds around,,as the aircraft pas +2005-07-10,45.3069444,-92.3619444,Amery,WI,cigar,50,Metallic, wingless, cigar-shaped object travelling west to east in early afternoon. +2005-07-10,39.0836111,-84.5086111,Covington,KY,cigar,300,2 strange objects in the sky over the interstate that disappeared. +2005-07-10,42.9005556,-78.6705556,Lancaster,NY,other,600,The crown object and balls slowly came out of the West and moved to the Northeast +2005-07-10,41.3983333,-81.8047222,Brook Park,OH,circle,1200,2 bright lights over Brook Park OH during home coming days before fireworks +2005-07-10,41.3983333,-81.8047222,Brook Park,OH,light,240,Reddish star looking object moving across sky, stopped overhead, changed directions and until it disappeared. +2005-07-10,41.4994444,-81.6955556,Cleveland,OH,light,120,Shortly before 10 PM with clear sky I noticed object with strobe light,, slightly zig-zagged, changed colors and vanished. +2005-07-10,37.8216667,-121.9988889,Danville,CA,light,10,A group of three bright lights, each moving a different direction. +2005-07-10,47.2372222,-93.53,Grand Rapids (Near),MN,triangle,60,Three light triangle over cabins near Grand Rapids, MN +2005-07-10,40.3041667,-74.1008333,Tinton Falls,NJ,circle,15,Illuminated, circular object traveling at igh altitude, high rate of speed and increaseing in altitude before loseing sight. +2005-07-10,41.3983333,-81.8047222,Brook Park,OH,circle,1200,It was Sunday night and quite clear at the time. My sister and I were in our back yard looking at the stars and one object caught our +2005-07-10,41.3983333,-81.8047222,Brook Park,OH,light,600,Sat motionless & silent & then flew off into distance. +2005-07-11,32.7963889,-113.5402778,Dateland,AZ,cone,3600,object over a dairy farm about a mile to a mile and a half before Dateland, Arizona. Visiable for about 1hour. +2006-07-10,40.1672222,-105.1013889,Longmont,CO,circle,180,white orbs or lights following plane then leaving plane to "dance" and suddenly shoot off to the south. +2006-07-10,33.8702778,-117.9244444,Fullerton,CA,sphere,7200,Metalic ball over orange county summer 2006 +2006-07-10,45.5236111,-122.675,Portland,OR,circle,300,Video taped a Black vibrating object near contrail +2006-07-10,33.4483333,-112.0733333,Phoenix,AZ,circle,10500,An Orb over Phoenis on July 10, 2006 10pm to 1am. ((NUFORC Note: Sighting of Jupiter?? PD)) +2006-07-10,34.2255556,-77.945,Wilmington,NC,circle,2,Unknown length of time of light moving at increbile speed and not a shooting star. +2007-07-10,28.0611111,-82.3025,Thonotosassa,FL,other,15,Ground object semi transparent shooting upwards very quickly out of sight.... +2007-07-10,43.073055600000004,-89.4011111,Madison,WI,light,900,i have pictures of brilliant streaks of light, by the fastest moving object i ve ever seen. +2007-07-10,27.9655556,-82.8002778,Clearwater,FL,disk,240,4 phosphorus discs flying in a continuing circular pattern while flying together to the center at every two or three rotations +2007-07-10,36.175,-115.1363889,Las Vegas,NV,disk,120,Disk shaped object with rotating lights seen from the Las Vegas strip. +2007-07-10,38.2769444,-107.0952778,Powderhorn,CO,disk,300,A close night sky incounter. +2007-07-10,27.8083333,-82.8113889,Redington Beach,FL,circle,600,Small white circle flying faster than an airplane, and hovering in one spot for 9 minutes. +2007-07-10,47.6816667,-122.2075,Kirkland,WA,light,3,Can attest to the probability that the sightings were not of any conventional aircraft or natural phenomena of which I am aquainted. +2008-07-10,38.3913889,-86.9311111,Jasper,IN,circle,900,Four bright lights seen over Jasper, IN +2008-07-10,29.4238889,-98.4933333,San Antonio,TX,formation,10,Group of star like objects moving rapidly to the north over the San Antonio airport 12:36am July 10, 2008. +2008-07-10,47.6063889,-122.3308333,Seattle,WA,light,1800,Blue and Red Light/w random flashes on all sides and one beam of white light shining down but not touching the Ground +2008-07-10,42.7441667,-73.6919444,Green Island,NY,light,1,Four Lights In Upper Atmosphere Moving At 25ꯠ MPH Could Be Faster Depending On Height +2008-07-10,39.9375,-77.6613889,Chambersburg,PA,other,60,07/10/08 13:46 Chambersburg PA Mercury Capsule shape 1 minute Shape appeared near the sun +2008-07-10,42.6047222,-73.77,Glenmont,NY,sphere,15,spherical object +2008-07-10,38.9558333,-76.9458333,Hyattsville,MD,rectangle,1200,A very bright object, (small, distant and oblong) against an early evening sky observed for 15 minutes disappears within 10 seconds. +2008-07-10,36.0305556,-75.6763889,Kill Devil Hills,NC,unknown,600,At least 5 orange crafts following each other with 2-3 minutes of separation +2008-07-10,32.9411111,-97.1338889,Southlake,TX,light,30,Witnessed UFO stationairy, begin to slowly move, went near vertical and literally climbed out of the atmosphere at incredable speed! +2008-07-10,40.4405556,-79.9961111,Pittsburgh,PA,unknown,30,U.F.O. flew in straight line then Dissappeared behind the trees. +2009-07-10,34.1283333,-117.2077778,Highland,CA,triangle,120,Big triangular-shaped craft with many lights underneath, including a large white one. +2009-07-10,39.5522222,-79.7980556,Masontown,WV,formation,60,bright yellow boomerang shaped formation, there one minute and gone the next +2009-07-10,38.3497222,-81.6327778,Charleston (West Of I-77),WV,light,120,Large craft spotted west of I-77 +2009-07-10,43.0388889,-75.0708333,Frankfort,NY,circle,7200,Flashing lights in Central NY sky +2009-07-10,33.4936111,-112.9363889,Tonopah,AZ,triangle,1800,((HOAX??)) "WE ARE NOT ALONE" ALIEN CONTACT, AND CONVERSATION July10, 2009! +2009-07-10,29.9986111,-95.2619444,Humble,TX,fireball,120,A UFO that consisted of a pulsating orange and yellow light and it flew over making no sound. It pulsated and slowly disappeared +2009-07-10,35.7719444,-78.6388889,Raleigh,NC,light,10,A strange bright light appeared to the west of Raleigh, NC at 19:15 hours on 9=10=09. +2009-07-10,43.0905556,-73.4991667,Greenwich,NY,light,240,Two bright lights moving north accelerating at unknown speed. ((NUFORC Note: ISS sighting. PD)) +2009-07-10,33.2447222,-81.3588889,Barnwell,SC,circle,90,redish orange ball emerging from shooting star trail. +2009-07-10,36.5925,-78.6163889,Henrico,VA,light,5,Large, soundless blue light moving swiftly and quickly across the horizon leaving no trail. Definetely not an airplane. +2009-07-10,44.8113889,-91.4983333,Eau Claire,WI,light,60,2 separate bright round lights moving quickly in straight lines SW to NE 2 min. apart. ((NUFORC Note: ISS sighting? PD)) +2009-07-10,34.2747222,-87.7005556,Bear Creek,AL,circle,4,It was moving very fast. It was a little bigger than a dime compared the stars. It was circle and bright. It swerved and disappeared. +2009-07-10,40.7608333,-111.8902778,Salt Lake City,UT,disk,3600,6 UFOs seen over Salt Lake City July 10th, 2009 +2009-07-10,29.2433333,-81.0377778,Holly Hill,FL,egg,60,WE SAW OUT OUR FRONT PORCH THAT FACES DUE EAST...FROM THE SOUTHWEST WE SAW A BRIGHT LIGHT HEADING NORTHEAST AT A HIGH RATE OF SPEED, FA +2010-07-10,41.1202778,-76.5302778,Millville,PA,light,3600,Millville, PA, crowd witnesses 3 red lights hovering the sky, then watches as these light disappear, reappear, then disappear agin. +2010-07-10,41.1202778,-76.5302778,Millville,PA,unknown,3600,2 lights the danced over the fireworks in millville PA +2010-07-10,38.8105556,-90.6997222,O'fallon,MO,other,45,I have video of this could be useful. ((NUFORC Note: We cannot certify that this is a serious-minded report. PD)) +2010-07-10,40.5686111,-75.095,West Milford,NJ,light,30,I don't care if people believe me I am just telling a true story that I'm freaking out over (all I watch are space shows) +2010-07-10,39.2672222,-76.7986111,Ellicott City,MD,oval,300,UFO sighting Ellicottn City, MD +2010-07-10,35.7719444,-78.6388889,Raleigh,NC,rectangle,10,Saw a retangular object about the size of large plane on July 10, 2010, which emitted an amber light from the bottom. +2010-07-10,46.0516667,-122.2983333,Cougar,WA,other,600,Sometimes these UFO'S are not visible to the naked eye....but a camera can capture the moment. ((NUFORC Note: Possible bird. PD)) +2010-07-10,39.6580556,-83.735,Jamestown,OH,disk,720,Silver saucer about 35 to 50 feet long., disappearing in front of my face +2010-07-10,39.5533333,-77.9952778,Hedgesville,WV,light,14400,Bright star-like craft flying over the valley just about every night and posted web info on it just seems to disappear. +2010-07-10,41.4277778,-85.7525,Syracuse,IN,teardrop,900,Orangey-pink orb that appeared to have a bright flame burning inside traveled over a lake SW to NE in a straight line. +2010-07-10,26.6355556,-80.0963889,Palm Springs,FL,unknown,8,Orange glowing round globe or ball hovering about 25 degrees above horizon then rapidly accelerating and disappearing to Northwest. +2010-07-10,32.895,-97.5455556,Azle,TX,teardrop,3,Tear drop shaped craft was spotted traveling at a very high rate of speed +2010-07-10,32.3511111,-95.3008333,Tyler,TX,fireball,300,Red/Orange Fireball Moving Over Tyler, TX at Speed of Airplane +2010-07-10,39.6269444,-78.2275,Berkeley Springs,WV,light,600,bright star-like moving object turning into bright light, then vanishes to the stars again +2010-07-10,26.525,-80.0666667,Boynton Beach,FL,light,2400,Strange light in Palm Beach County +2010-07-10,42.6372222,-77.5961111,Springwater,NY,fireball,300,July 10 2010 9:30pm Fireball in western NY +2010-07-10,43.7358333,-113.3655556,Moore,ID,light,3600,ALIEN LANDING OF UNKNOW ORIGIN TO GO ALONG WITH STRANGE BEHAVIOR OF WILD ANIMALS AND PEOPLE IN THE AREA 500 Lights On Object0: Yes +2010-07-10,41.4683333,-75.6033333,Olyphant,PA,sphere,30,a fire ball looking object came across the sky, changed directiong and then disappeared. +2010-07-10,41.9833333,-71.3333333,North Attleboro,MA,fireball,300,5 or 6 objects appeared low in the sky as fireballs / dome shaped objects +2010-07-10,47.6063889,-122.3308333,Seattle,WA,fireball,40,Bright Flash and Light +2010-07-10,40.6408333,-74.3111111,Clark,NJ,cigar,60,Cigar shaped brightly lit craft glided well below a departing airplane. +2010-07-10,42.6811111,-82.7369444,New Baltimore,MI,fireball,420,fireball flying in the sky with visible flames. +2010-07-10,42.4391667,-123.3272222,Grants Pass,OR,light,120,blueish light floating over grants pass ,oregon +2010-07-10,40.7583333,-74.9797222,Washington,NJ,light,90,Bright light rockets into space after gliding above myself and fellow companions. +2010-07-10,47.9791667,-122.2008333,Everett,WA,oval,120,Amber oval object in sky over Everett WA +2010-07-10,34.3077778,-118.4483333,Sylmar,CA,triangle,180,3 pulsing lights with fast moving red light going round it. +2010-07-10,41.1338889,-81.4847222,Cuyahoga Falls,OH,triangle,20,V shaped UFO over Ohio +2010-07-10,34.0141667,-86.0066667,Gadsden,AL,light,4,I and friend over the past week have seen 7 sighting of a bright light that apears in the western sky... ((NUFORC Note: Venus? PD)) +2010-07-10,39.6988889,-78.18,Hancock,MD,light,420,Star sized light stops and flashes very brightly, seemingly in response to a flashlight. +2010-07-10,40.7933333,-77.8602778,State College,PA,light,9,Bright light flies overhead and suddenly disappears +2010-07-10,41.7166667,-75.4925,Union Dale,PA,cylinder,120,amber orb beneath vehicle gliding silently in a controlled manner, hovered approx., 80ft above us +2010-07-10,41.5008333,-83.7183333,Waterville,OH,circle,420,Bright orange circular object in Waterville, Ohio sky +2010-07-10,41.0463889,-73.95,Orangeburg,NY,cylinder,60,Long cylindrical row of round white lights observed for about 1 minute. Object disappeared in a flash of yellow light . +2010-07-10,41.1202778,-76.5302778,Millville,PA,light,3600,3 red lights viewed for 1 hour over central PA +2010-07-10,40.9633333,-72.1852778,East Hampton,NY,circle,30,Strange light in the sky +2010-07-10,41.1202778,-76.5302778,Millville,PA,formation,3600,A formation of red lights seen over Millville PA. +2010-07-10,28.5555556,-82.4505556,Spring Hill,FL,diamond,900,Strange Lights in the sky over Pasco County, Florida +2010-07-11,39.6580556,-83.735,Jamestown,OH,disk,720,Walked out of my front door around noon. Looked up and saw 2 crafts. There was a silver saucer just barely moving. Below the saucer +2011-07-10,46.8722222,-113.9930556,Missoula,MT,light,5400,Flashing green, red, blue, and white lights hovering above and scanning valleys north of Missoula. ((NUFORC Note: Star?? PD)) +2011-07-10,41.5244444,-90.5155556,Bettendorf,IA,fireball,240,Saw 8 fireballs floating over Bettendorf high school in a group. After a couple minutes they dispersed. The appeared to fly or "drive" +2011-07-10,40.7141667,-74.0063889,New York City (Brooklyn),NY,sphere,300,Spheres over Brooklyn +2011-07-10,34.0238889,-118.1711111,East Los Angeles,CA,disk,600,I was outside my home enjoying the summer breeze until a teal colored object in the sky caught my attention. At first I thought it was +2011-07-10,41.1669444,-73.2052778,Bridgeport,CT,light,5,Small bright light traveling Northwest over clear blue sky. +2011-07-10,42.6919444,-73.725,Menands,NY,unknown,300,Round flame colored object traveling east to west at great speed, then slowed to a stop, sped up and then traveled slowly west +2011-07-10,42.2702778,-77.6061111,Canisteo,NY,fireball,60,At around 9:30 PM July tenth 2011 in Canisteo N.Y., I observed a yellow red bright light for about one to two minutes. +2011-07-10,43.1713889,-70.6094444,York Beach,ME,circle,600,Eight round orange obects observed over York Beach. +2011-07-10,42.5636111,-84.8358333,Charlotte,MI,fireball,600,A fireball type ufo is seen outside my house frequently and the light dies after a few minutes. +2011-07-10,33.9938889,-96.3705556,Durant,OK,fireball,300,Wife, son and I observed two fireball objects and one silver object over Okla. +2011-07-10,40.7141667,-74.0063889,New York City (Brooklyn),NY,oval,99,Brooklyn UFO / VIDEO AND PHOTO / 7.10.11 +2011-07-10,44.2527778,-91.5013889,Arcadia,WI,light,1800,Strange light moves way too fast to be of this earth. +2011-07-10,40.6466667,-73.1575,Ocean Beach (Fire Island),NY,light,30,4 orange lights low in the sky observed from Fire Island, NY. ((NUFORC Note: Witness include former Air Traffic Controller. PD)) +2011-07-10,48.0905556,-105.64,Wolf Point,MT,light,240,Orange-reddish lighs-bright lights pulsating coming from west then disappearing +2012-07-10,43.5611111,-91.6358333,Spring Grove,MN,circle,7,Bright light over South East Minnesota. +2012-07-10,44.3,-120.8333333,Prineville,OR,fireball,300,Color changing light, randomly bobbing and circling--would have thought this was a star if I had just glanced at it for a second +2012-07-10,40.8325,-115.7622222,Elko,NV,light,3600,Bright lights in sky. +2012-07-10,44.8547222,-93.4705556,Eden Prairie,MN,circle,600,Circular shaped emitted multi color laser beam in my back yard. +2012-07-10,33.8594444,-84.6838889,Powder Springs,GA,fireball,120,Fireball looking object during lighting storm +2012-07-10,40.4394444,-84.0402778,Jackson Center,OH,egg,3,High speed disc +2012-07-10,45.3041667,-83.4769444,Presque Isle,MI,formation,60,Orange/yellow light formations/ fade out left to right then reapear in other places...5-7 orbs maybe +2012-07-10,41.3605556,-93.7905556,Bevington,IA,triangle,60,Triangular object with yellow lights hovering in air, along the road +2012-07-10,41.5119444,-87.9655556,New Lenox,IL,sphere,300,Huge glowing orange sphere over New Lenox IL seen by 4 witnesses +2012-07-10,41.7,-71.6833333,Coventry,RI,fireball,15,Orange balls, flying very fast, seen over Coventry +2012-07-10,30.4055556,-86.6188889,Fort Walton Beach,FL,diamond,3,Bright white Diamond shaped craft with bright vapor trail seen in Fort Walton Beach, FL 7/10/12 +2012-07-10,39.2902778,-76.6125,Baltimore,MD,sphere,600,Two Orange Orbs flanked by four smaller ships. +2012-07-10,40.9008333,-73.3436111,Northport,NY,light,600,Four circular hazy lights circling and criss-crossing in the sky for 5-10 min. +2012-07-10,32.7152778,-117.1563889,San Diego,CA,sphere,120,Bright orange flickering orb in sky +2012-07-10,45.7838889,-84.7277778,Mackinaw City,MI,sphere,240,Glowing Orb +2012-07-10,26.1272222,-80.2333333,Plantation,FL,light,60,Bright red/orange light hovering high in the South Florida western sky then suddenly disappeared +2012-07-10,47.6541667,-118.1488889,Davenport,WA,light,900,Bobbing controlled light. +2013-07-10,45.8322222,-93.4261111,Ogilvie,MN,light,10,White/blue light appeared in upper body portion of the constellation &quot;Hercules&quot;...it started small in size, grew as it got br +2013-07-10,39.7683333,-86.1580556,Indianapolis,IN,light,3,Blue light turned and went over the house. +2013-07-10,36.865,-87.8352778,Cadiz,KY,circle,40,Orange lights one object. +2013-07-10,40.2969444,-111.6938889,Orem,UT,sphere,60,Glowing, hovering object descends straight down to the ground +2013-07-10,38.4088889,-121.3705556,Elk Grove,CA,circle,1200,6 bright star like objects moving fast in the night sky +2013-07-10,39.3994444,-84.5613889,Hamilton,OH,other,2400,Pulsating giant spiked ball floats in West Hamilton sky +2013-07-10,45.5230556,-122.9886111,Hillsboro,OR,light,1200,Bright light above coastal range observed for 20 mins +2013-07-10,41.7758333,-72.5219444,Manchester,CT,fireball,120,Fireball over Manchester, CT +2013-07-10,30.3319444,-81.6558333,Jacksonville,FL,egg,5,UFO sighting in Jacksonville, FL +2013-07-10,43.0761111,-76.0011111,Minoa,NY,unknown,600,A dozen Amber lights flying in a line. +2013-07-10,33.6102778,-114.5955556,Blythe,CA,sphere,300,Two large Orange/Red spheres moving slow and very low. +2013-07-10,33.1433333,-117.1652778,San Marcos,CA,triangle,900,UFO sighting above San Marcos, CA. +1963-07-11,43.6480556,-93.3680556,Albert Lea,MN,oval,360,It was a round blue that glowed and moved toward us slow without making any noise. +1969-07-11,40.1219444,-75.2169444,Whitemarsh,PA,fireball,180,Three minutes hovering silent, orange-red fireball 10 feet across 400 feet high and the vanished +1970-07-11,42.7325,-84.5555556,Lansing,MI,light,1800,extremely high altitude, medium bright light emitting faint, glittery orange streaks in all directions +1979-07-11,39.0997222,-94.5783333,Kansas City,MO,cylinder,4,I was camping out hoping to see Skylab come down when I saw a red arrow move across the sky. +1980-07-11,38.1961111,-120.6794444,San Andreas,CA,unknown,7200,Lost time very strange.Sense of everything was O.K. +1981-07-11,39.8438889,-74.7105556,Tabernacle,NJ,rectangle,300,Heard humming. Went outside. 75 ft rectangle shaped object 30 ft. above my house. Hovered silently 5 mins.then headed North. +1991-07-11,44.6366667,-123.1047222,Albany,OR,egg,900,three black egg shapes +1994-07-11,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,7,I just turned around for 1/2 a second, and it was GONE!! +1996-07-11,42.5847222,-87.8211111,Kenosha,WI,other,2.5,It was a warm July evening. I was down by Southport Beach, on the shorelines of Lake Michigan. It's a city beach in Kenosha, so i was +1997-07-11,40.5594444,-79.9588889,Allison Park (Hampton Twp.),PA,cylinder,360,As I was driving near the site of a radio tower under construction, I noticed a black, barrel shaped object hovering near it. I stopped +1997-07-11,31.7586111,-106.4863889,El Paso,TX,cigar,18000,UFO with five army helicopters following it over FT BLISS. +1997-07-11,33.4483333,-112.0733333,Phoenix (Ouside Of, At Lake Pleasant),AZ,triangle,60,We witnessed a huge triangular object moving steadily above our heads at about 25-30? mph. It was metallic and had reddish orange ligh +1998-07-11,41.1383333,-81.8638889,Medina County,OH,light,2700,was driving in car going into medina. ilooked in sky and seen light thought it was the moon. then i look at the other side of the sky a +1998-07-11,42.4258333,-71.3044444,Lincoln,MA,sphere,300,Sole witness to object. At Hanscom Field/Hanscom Air Force Base watching aircraft. I am a self taught expert on all types of aircraft +1998-07-11,41.85,-87.65,Chicago,IL,light,60,Series of star-like points, approximate visual magnitude +3, shifting positions among each other, but as a group moving uniformly in a +1998-07-11,41.9352778,-87.8655556,Franklin Park (60131),IL,circle,1,Yellow circle in northeast sky moving northward +1999-07-11,40.4591667,-74.3613889,Sayreville,NJ,oval,180,I saw a glowing orange oval shaped craft hovering in the southern sky. +1999-07-11,38.7508333,-77.4755556,Manassas,VA,sphere,600,i witnessed a bright spherical object that hovered at a low alt. and moved very slowly. the object dissapeared and reapearred a moment +1999-07-11,46.2511111,-119.9005556,Grandview,WA,flash,30,Strobing lights moving in irregular pattern @ 40 degrees above horizon 2 came together and then separated light intensity would change +1999-07-11,37.8805556,-84.5730556,Nicholasville,KY,triangle,45,Seen I triangle going from west to east +1999-07-11,37.8805556,-84.5730556,Nicholasville,KY,unknown,50,Bright lights +2000-07-11,44.9430556,-123.0338889,Salem (Approx. 30 Miles North Of),OR,unknown,8,Slow moving, horizontally flying object. +2000-07-11,41.3908333,-74.9663889,Shohola Falls,PA,light,120,After having pulled off the road at the Shohola Falls gameland access, I was enjoying a star filled sky which was "very clear" tonight. +2000-07-11,41.535,-73.3666667,Bridgewater,CT,changing,180,A slow moving white light that came to a halt and then formed a circle of five small white lights which rotated in a clockwise directio +2000-07-11,41.8005556,-73.1216667,Torrington,CT,sphere,900,It seemed to hover ,change color and take off +2001-07-11,46.5927778,-112.0352778,Helena,MT,light,300,Two lights as bright as meteors moving north & east respectively almost collide, swerve and change direction dramatically. +2001-07-11,39.6066667,-75.8336111,Elkton,MD,light,10,i had to take my dog out to do his thing !!! it was a really nice night and a lot of stars out. my dog was doing his thing and i was lo +2001-07-11,41.4994444,-81.6955556,Cleveland,OH,light,900,A grouing of 3 lights forming a triangle, one very large light at the top with 2 small ones at the base. Lights remained stationary. +2001-07-11,42.1130556,-70.8125,Hanover,MA,cylinder,8,Silvery trashcan shaped object with strange aura observed during rush hour traffic +2001-07-11,33.7877778,-117.8522222,Orange,CA,fireball,6,A large fireball type object appeared to be flying very rapidly across the sky coming from the south towards the north and then dissape +2001-07-11,42.4391667,-123.3272222,Grants Pass (Murphy Area),OR,egg,2,Large egg shape UFO, solid (no blinking lights) white light with blue tones in it. The UFO was traveling north to south at a very high +2001-07-11,42.4391667,-123.3272222,Grants Pass,OR,teardrop,30,large tear shape object flying north to south +2002-07-11,40.5852778,-105.0838889,Fort Collins,CO,triangle,60,3 flashes then 7 dim lights flying in a "V" shape. +2002-07-11,39.2902778,-76.6125,Baltimore,MD,flash,1335,Light Invasion In The Sky +2002-07-11,43.1138889,-84.0883333,Easton,MI,circle,180,On 7/11/02 at 21.30 hours a white flashing light with a ring of red lights was seen over Easton Ma. +2002-07-11,40.0580556,-82.4013889,Newark,OH,circle,2700,huge moving star like light +2002-07-11,41.3966667,-73.0763889,Seymour,CT,disk,600,A saucer that mimicked our plane and helicopter blinking lights. +2002-07-11,39.0875,-81.9227778,West Chester,OH,light,15,very bright white light stayed stationery 10 sec then faded to nothing. +2003-07-11,40.7141667,-74.0063889,New York City (Bronx),NY,light,9000,Craft was near the moon and appeared to have landed on it. +2003-07-11,33.9930556,-117.9677778,Hacienda Heights,CA,light,7200,Color changing craft seen above Los Angeles suburbs +2003-07-11,34.0902778,-96.7713889,Madill,OK,light,900,A bright stationary light in the ski and physical abnormalities shortly later. +2003-07-11,40.015,-105.27,Boulder,CO,triangle,180,Triangular "constellation" of star-like objects float silently across the sky at very high altitude. +2003-07-11,39.6133333,-105.0161111,Littleton,CO,sphere,60,white balloon-like object flying on its own volition, i.e. not with wind direction +2003-07-11,35.7511111,-86.93,Spring Hill,TN,oval,10,Whitish-silvery, oval shaped object appeared in the sky NW of Spring Hill, TN at 19:12pm +2003-07-11,39.7555556,-105.2205556,Golden,CO,unknown,480,3 lights triangular shaped, AAA fire, lights warping out, stealth-type fighter +2003-07-11,40.725,-73.2458333,Bay Shore,NY,light,600,Strange red lights over Bay Shore +2003-07-11,40.5069444,-111.4125,Heber City,UT,disk,639,1 UFO goes in front of the moon! +2003-07-11,38.5816667,-121.4933333,Sacramento,CA,light,1500,9 bright lights appeareing, moving, then disappearing +2003-07-11,25.7738889,-80.1938889,Miami,FL,cylinder,7200,the strong bright light blinks every 5 seconds . a square cilinder shape +2004-07-11,47.9791667,-122.2008333,Everett,WA,light,7200,5 lights. 3 flickering red and green in a triangular formation and 2 flyers +2004-07-11,34.0922222,-117.4341667,Fontana,CA,light,4,5 objects moving at a great speed went from almost striaght above us and disappeared in the eastern sky, objects were moving eratically +2004-07-11,41.85,-87.65,Chicago,IL,light,2,Large "Star" Moved Across Night's Sky +2004-07-11,29.4238889,-98.4933333,San Antonio,TX,sphere,7200,Two Bright Objects above San Antonio, Texas. +2004-07-11,20.8947222,-156.47,Kahului,HI,light,300,Bright light (low flying) moving south toward Haleakala....no sound...non-aircraft, non-meteor +2004-07-11,28.1458333,-82.7569444,Tarpon Springs,FL,disk,60,During the aftermath of the second hurricane to hit Florida I was cleaning up debris to be taken to a site the county had set up for di +2004-07-11,38.2541667,-85.7594444,Louisville,KY,circle,300,I NOTICED THE LIGHT WAS BEHIND THE CLOUD NOT IN FRONT THERE WAS NO OTHER LIGHT IN THE BLUE SKY TO PROJECT THE LIGHT FROM ANOTHER DIR. +2004-07-11,41.0941667,-101.8875,Brule,NE,light,180,I saw a light, as bright as the brightest star moving northeast, at aproximately 22:00 MT. It was moving slow, and then would speed up +2004-07-11,36.135,-81.6777778,Blowing Rock,NC,flash,120,A dim light seen at night brightened into an extremely bright light, dimed down and disapeared. +2004-07-11,36.135,-81.6777778,Blowing Rock,NC,flash,20,((NUFORC Note: Possible Iridium satellite sighting? PD)) Small light brightens in night sky and then disapears. +2005-07-11,46.0086111,-122.8433333,Kalama,WA,circle,600,STATIONERY FOR TEN MINUTES, THEN TOOK OFF RAPIDLY, FOLLOWED THE COLUMBIA RIVER +2005-07-11,42.9980556,-74.6833333,Saint Johnsville,NY,oval,1020,2 police officers observe oval shaped object in sky in Saint Johnsville, New York. +2005-07-11,38.1916667,-120.8280556,Valley Springs,CA,light,1800,All I heard was the wind. The object never made a noise. +2005-07-11,35.7211111,-77.9158333,Wilson,NC,diamond,120,Myself and two others witnessed a strange object over North Carolina skies. +2005-07-11,39.0997222,-94.5783333,Kansas City,MO,other,900,a star shaped metallic object with lights at the points +2005-07-11,38.6172222,-121.3272222,Carmichael,CA,other,180,Box shaped object spinning on corner changing colors while reflecting sunlight +2005-07-11,41.675,-73.3522222,New Preston,CT,cigar,120,enormous linear ufo New preston CT. ((NUFORC Note: Possible satellites flying in formation, we suspect. PD)) +2005-07-11,41.010555600000004,-74.1183333,Waldwick,NJ,unknown,240,Bright red glowing craft seen approximately 200 feet above our heads. +2005-07-11,36.7477778,-119.7713889,Fresno,CA,light,1680,UFO Sighting +2005-07-11,44.5047222,-114.2308333,Challis,ID,oval,120,A light flew across the sky to a blinking star, then disappeard. +2005-07-11,43.6136111,-116.2025,Boise,ID,light,300,Slow moving light that disappeared +2005-07-11,40.6213889,-79.1527778,Indiana,PA,triangle,10,Seven Lights In A Triangular Shape Sighted Over Indiana, Pennsylvania +2006-07-11,48.2933333,-122.6419444,Oak Harbor,WA,light,15,Object fading out of sky, traveling south +2006-07-11,43.0388889,-87.9063889,Milwaukee,WI,sphere,120,Four spheres witnessed by two people......5-10K feet in the air. +2006-07-11,40.9791667,-74.1169444,Ridgewood,NJ,light,180,white star-like light moving across the sky. ((NUFORC Note: ISS?? PD)) +2006-07-11,32.2216667,-110.9258333,Tucson,AZ,changing,300,THe object was pursued by F-14s from the nearby airbase +2007-07-11,43.38,-71.7175,Salisbury,NH,circle,10,Large ball of white light that appeared to land. +2007-07-11,47.6063889,-122.3308333,Seattle,WA,light,1,Bright lights blinked once and went off above the houses +2007-07-11,42.9633333,-85.6680556,Grand Rapids,MI,other,10,Pulsing Light Back Again +2007-07-11,39.0997222,-94.5783333,Kansas City,MO,light,120,Shiney parallel objects seen over KCKC and then KC north. +2007-07-11,43.1116667,-88.4991667,Oconomowoc,WI,teardrop,30,((HOAX??)) A bright teardrop object reported over Oconomowoc. +2007-07-11,39.9525,-74.9927778,Maple Shade,NJ,triangle,60,Dark triangle with bright white light in center flew from east to west across the sky in less than a minute. +2007-07-11,44.9483333,-93.3477778,St. Louis Park,MN,formation,300,2 Objects directly overhead, travelling at the same speed and distance, heading south/southeast +2007-07-11,33.0416667,-116.8672222,Ramona,CA,unknown,1500,10 red and white lights moving erratically across Ramona skyline +2007-07-11,27.0994444,-82.4544444,Venice,FL,sphere,1200,Large bright circular object hovered for 20 minutes then moved off North Northwest at a very slow speed. +2007-07-11,41.6736111,-88.0016667,Lemont,IL,sphere,180,4 orange glowing spheres with a plamsa emissions around each craft. +2007-07-11,46.6022222,-120.5047222,Yakima,WA,unknown,600,it was a strobing light, I could see it moving in weird directions. +2007-07-11,46.955,-112.6808333,Lincoln,MT,unknown,1500,Unknown lights and unexplained observation on Lewis and Clark Pass, MT 11 July 2007 +2008-07-11,37.6938889,-85.8591667,Elizabethtown,KY,triangle,180,Large Triangle craft, white lights on all 3 corners, 1 red light and 1 white light on each side if the craft. No Noise. All 4 witnesse +2008-07-11,32.9411111,-97.1338889,Southlake,TX,unknown,2,Witnessed two bright white flashes of light that illuminated the inside of my house +2008-07-11,41.7672222,-71.3652778,Riverside,RI,circle,180,Round white object spotted traveling faster than a conventional aircraft, no smoke trail/tail +2008-07-11,47.1672222,-122.4036111,Midland,WA,circle,1800,Two bright circles staying consistantly the same distance from each other were spotted above my location. They rose into the sky moving +2008-07-11,47.6063889,-122.3308333,Seattle,WA,changing,240,Static object observed in clear skies in high commercial air traffic area. +2008-07-11,41.5647222,-87.5388889,Lansing,IL,triangle,120,Meteor objects leading toward formation of triangle lights. +2008-07-11,45.6625,-110.5602778,Livingston,MT,circle,180,Several black circles, altogether. It hovered over the mountain peak,,as we all sat on our front porches, and seen clearly. It was H +2008-07-11,48.051944399999996,-122.1758333,Marysville,WA,chevron,300,Bright white boomerang shaped object over Marysville, WA +2008-07-11,40.0455556,-86.0086111,Noblesville,IN,disk,7200,((HOAX??)) 5 stationary objects-5-7 moving. +2008-07-11,38.4730556,-77.9969444,Culpeper,VA,circle,1365,Hoovered, disappearing in and out, then full disc shape came apparent with circleing yellow lights around the disc. +2009-07-11,47.3811111,-122.2336111,Kent,WA,triangle,240,Craft seen in Kent, Wa. +2009-07-11,29.2105556,-81.0230556,Daytona Beach,FL,other,7200,1 large bright light with 2 small red, green, white ones moving erratically. ((NUFORC Note: Star. PD)) +2009-07-11,34.1808333,-118.3080556,Burbank,CA,rectangle,10,Black rectangle shaped object hovering above Burbank: I was driving down Stagecoach St. in Bell Canyon when i saw this object. +2009-07-11,42.0111111,-87.8405556,Park Ridge,IL,oval,40,The object stayed in the sky in one spot for about 40 seconds after i spotted it, then i turned to point it out and it disappeared +2009-07-11,41.8444444,-90.1886111,Clinton,IA,light,300,clinton, iowa ufo sigthing +2009-07-11,39.9202778,-80.7433333,Moundsville,WV,circle,300,22:15pm Moundsville,WV Circle of light 5minutes duration Brite light over Moundsville 7 / 11 / 2009 +2009-07-11,46.7208333,-92.1038889,Superior,WI,light,600,Light travels in sky, accelerates and then disappears. ((NUFORC Note: Sighting of ISS at 22:10 hrs. PD)) +2009-07-11,42.9825,-77.4091667,Victor,NY,light,30,While on the deck, I looked up when the sun just went down. It was not quite completely dark. A small, white light came from behind t +2009-07-11,34.4211111,-84.1191667,Dawsonville,GA,other,1800,((NUFORC Note: Twinkling star. PD)) +2009-07-11,27.7705556,-82.6794444,Saint Petersburg,FL,triangle,30,NO AIRCRAFT THIS HAD NO SOUND NOT A LIGHT SHOW +2009-07-11,37.8591667,-122.4841667,Sausalito,CA,light,1800,Several white orbs of diffuse light circling and zig zagging above my house in Sausalito. ((NUFORC Note: Advertising lights? PD)) +2010-07-11,41.0036111,-76.4552778,Bloomsburg,PA,unknown,1800,Pulsing red lights arrive for fireworks. +2010-07-11,46.2858333,-119.2833333,Richland,WA,light,60,Orb light that just fades out and disapears +2010-07-11,38.3094444,-93.5463889,Tightwad,MO,light,7200,bright yellow rotating lihht +2010-07-11,43.0605556,-88.1063889,Brookfield,WI,circle,180,3 orange disc shaped lights observed in eastern sky near Milwaukee, moving north, stopped and formed triangle. +2010-07-11,43.0986111,-77.4422222,Fairport,NY,triangle,900,Red and White lights blinking and dancing across the sky rapidly. +2010-07-11,34.0230556,-84.3616667,Roswell,GA,circle,180,orange ball across Roswell, ga. +2010-07-11,39.0416667,-94.72,Shawnee,KS,unknown,120,Two Slow moving +2010-07-11,37.595,-120.9566667,Ceres,CA,changing,7200,Nightime ufo sitng cenral valley northern california 7-10-2010 ((NUFORC Note: Sighting of star or planet?? PD)) +2010-07-11,40.4619444,-78.2,Williamsburg,PA,light,90,Bright light by Jupiter +2010-07-11,34.5633333,-87.8422222,Frankfort,AL,chevron,15,chromed object in sky +2010-07-11,37.7652778,-122.2405556,Alameda,CA,circle,900,A fleet of white circular UFOs over Alameda, CA. +2010-07-11,40.8558333,-73.2011111,Smithtown,NY,flash,900,It was early evening when my wife, and two of my son and I were in my pool when one of my sons was the first to notice high in the sky +2010-07-11,47.9791667,-122.2008333,Everett,WA,circle,900,UFO flying away from Boeing Field direction +2010-07-11,38.4588889,-90.5363889,High Ridge,MO,triangle,3600,UFO hovering moving in very slow - later moving in a zigzag line going southeast +2010-07-11,39.9522222,-75.1641667,Philadelphia,PA,light,1800,Bright light in sky seen in Philadelphia. ((NUFORC Note: Possible sighting of Venus. PD)) +2010-07-11,42.5791667,-71.4383333,Westford,MA,unknown,20,Bright object in sky suddenly switched direction, faded and dissapeared. +2010-07-11,40.9977778,-72.2930556,Sag Harbor,NY,light,120,Strange light in the sky +2010-07-11,39.6577778,-77.1747222,Taneytown,MD,light,3600,I noticed that the stars didn’t seem right. There was an unusual pattern. ((NUFORC Note: Probably a star or planet? PD)) +2010-07-11,40.4405556,-79.9961111,Pittsburgh,PA,disk,1200,Stationery for 20 min., when viewed through binoculars, it appeared as though it had lights around. ((NUFORC Note: Venus? PD)) +2010-07-11,39.7102778,-111.8355556,Nephi,UT,oval,600,A UFO went through a wormhole then went through a nother one. +2010-07-11,43.6136111,-116.2025,Boise,ID,other,20,Large translucent orange/gold v-shaped object flying from wast to west in straight line +2010-07-11,39.6988889,-78.18,Hancock,MD,light,600,Moving light responded to a flashlight +2010-07-11,37.0919444,-84.6041667,Somerset,KY,circle,15,Round, sound-less yellow light seen moving at slow speed then disappering. +2010-07-11,47.9325,-119.0369444,Electric City,WA,circle,300,Grand Coulee Damn sighting of "fireball" that turned in mid air while changing speeds intermitently. +2011-07-11,28.5380556,-81.3794444,Orlando,FL,light,4,A yellow beam of light came up from the ground flashing about 4 times and then vanishes. +2011-07-11,35.9130556,-79.0561111,Chapel Hill,NC,fireball,300,Orange fireball appeared briefly in the sky and passed over me. +2011-07-11,42.1502778,-84.0377778,Manchester,MI,other,600,((HOAX??)) I got on top of this hill and i looked up and seen a very bright amber object and it was very c +2011-07-11,41.6469444,-73.5686111,Wingdale,NY,sphere,3600,There were 6 spheres (1 larger orange and 5 smaller red flashing) circled around my home. +2011-07-11,38.6580556,-77.25,Woodbridge,VA,cross,1200,UFO flying high in sky moving all four directions for a prolonged period of time +2011-07-11,30.6325,-97.6769444,Georgetown,TX,changing,1200,large floating in every direction like stars +2011-07-11,42.3313889,-83.0458333,Detroit,MI,sphere,15,A VISUAL SPHERE ON A LIVE SHOT OF DETROIT ON THE WEATHER CHANNEL AT 4:10PM +2011-07-11,35.1494444,-90.0488889,Memphis,TN,cigar,1200,We saw 6 separate objects flying different directions with and without airplanes and in different flight paths than the planes! +2011-07-11,37.8361111,-87.59,Henderson,KY,light,120,SLOW MOVOING ORANGE REFLECTING TYPE LIGHT FLYING NORTH EAST +2011-07-11,45.2166667,-85.0138889,Boyne City (Rural),MI,fireball,240,GIANT floating 'candle light' moved across sky above Boyne City Michigan around 9pm at night. +2011-07-11,34.5133333,-110.0777778,Snowflake,AZ,light,240,Different colored blinking lights making right angles under heavy cloud color. +2011-07-11,36.4702778,-86.6513889,White House,TN,fireball,120,Yellow and red oval orb flying horizontally over us in the city of White House, Tennessee. +2011-07-11,36.175,-115.1363889,Las Vegas,NV,sphere,20,Red glowing sphere or northwest las vegas (lone Mountain & 215) +2011-07-11,43.6275,-89.7708333,Wisconsin Dells,WI,triangle,900,4 Triangular shapes above Wisconsin Dells +2012-07-11,41.3877778,-81.6047222,Valley View,OH,light,120,Red pulsating light moving south.... +2012-07-11,21.5902778,-158.1125,Haleiwa,HI,fireball,180,6 to 8 fireballs over the Pacific off the North Shore of Oahu +2012-07-11,39.6580556,-80.1713889,Jakes Run,WV,light,600,Not a plane. Not a star. The most amazing thing I ever saw. +2012-07-11,40.5866667,-122.3905556,Redding,CA,light,120,White fireball streaking downward +2012-07-11,36.0305556,-75.6763889,Kill Devil Hills,NC,light,30,Sets of parallel orange lights appearing and disappearing over ocean +2012-07-11,42.3966667,-88.1836111,Fox Lake,IL,light,120,Slow moving strange red lights over Pistakee Lake. +2012-07-11,43.0986111,-77.4422222,Fairport,NY,fireball,600,4 red/orange lights/fireballs in sky over Fairport NY +2012-07-11,35.9144444,-79.9722222,Archdale,NC,fireball,30,Fireball which looked like a large airplane engulfed in flames +2012-07-11,46.2397222,-119.0994444,Pasco,WA,unknown,180,UFO Near Lightning Storm +2012-07-11,44.0216667,-92.4697222,Rochester,MN,other,120,Came from tower with flashing lights on st marys property towards 11th ave sw +2012-07-11,40.2141667,-77.0088889,Mechanicsburg,PA,circle,8,Strange ball of light flashed in and disappears. +2012-07-11,40.8519444,-76.6713889,Stonington,PA,flash,240,2 Bright lightly strobing objects in the area of the Constellation Scorpius. +2012-07-11,42.1669444,-76.8208333,Horseheads,NY,unknown,10,Central NY Single craft/ object +2012-07-11,41.1411111,-73.2641667,Fairfield,CT,fireball,3,Large yellow/white fireball seen in fairfield +2013-07-11,35.5608333,-97.5511111,The Village,OK,circle,10,9 amber red circles. +2013-07-11,25.9647222,-80.1225,Golden Beach,FL,other,2700,((HOAX??)) Boomerang shaped orange discs moving at speed high speeds and slowing , changing altitudes in one particular area. +2013-07-11,42.0083333,-91.6438889,Cedar Rapids,IA,triangle,60,3 orange lights at dusk, moving in sync just over NW horizon, top two faded before bottom one. +2013-07-11,30.2283333,-88.0230556,Fort Morgan,AL,light,300,The object appeared from the ground and started to rise straight into the air at a slow rate. I thought it was a helicopter at first un +2013-07-11,42.0541667,-71.74,Douglas,MA,circle,480,Glowing lights over Worcester seen from Douglas +2013-07-11,38.7838889,-90.4811111,St. Charles,MO,light,540,Hovering crafts dropping colored balls +2013-07-11,39.0133333,-114.1219444,Baker,NV,light,10,Ball of light hovering behind trees in Grerat Basin National Park. +2013-07-11,36.5963889,-82.1886111,Bristol,VA,light,900,Clear night sky with minimal clouds. I walked outside to my truck after picking our children up from a day with their grand parents and +2013-07-11,41.3361111,-75.9636111,Dallas,PA,fireball,7,Single orange fireball. +2013-07-11,42.2416667,-71.1666667,Dedham,MA,light,2,Dedham bright white light no sound. +2013-07-11,42.7847222,-92.6675,Clarksville,IA,other,240,I see them nightly and they aren't that low but some higher and move fast and all over the place some blink colors and some move slow a +2013-07-11,36.6083333,-83.7166667,Middlesboro,KY,fireball,40,Orange/Fireball object appeared in the sky the object traveld a short distance before flashing a disappearing into thin air. +2013-07-11,47.8125,-116.8955556,Rathdrum,ID,circle,5,Large dim orange circular object travels across sky at enormous rate. +1946-07-01,43.6413889,-70.2413889,South Portland,ME,oval,10,motionless, dark oblong, noon sky over ocean, felt Energy-Pull of Observing craft; when spotted,accelerated straight upwards fast +1947-07-01,47.5225,-120.4686111,Cashmere,WA,formation,120,THE SIGHTING. It was a clear, summer’s evening in 1947 (or 1948 – I can’t be sure of the exact year). The sun had just set over th +1947-07-01,33.9866667,-118.1844444,Maywood,CA,disk,120,1947 UFO sighting Date: ? sometime in early summer Time: after dark (between 7 - 9 pm) Place: Maywood IL not far from O’hare Airbase (n +1947-07-01,40.6263889,-80.0561111,Wexford,PA,unknown,10,I have told this to people over many years. While on school vacation at my uncles junk yard one evening I noticed on the horizon at dus +1949-07-01,64.8377778,-147.7163889,Fairbanks,AK,disk,120,Enormous metallic disc in Alaska sky, 1949. +1949-07-01,32.6322222,-87.3191667,Marion,AL,formation,60,GEORGIA UFO GROUP Report/Tom Sheets: Witness Debriefing-Alabama Orbs, 1949 +1951-07-01,47.7005556,-117.1052778,Otis Orchards,WA,disk,120,Cigar shaped Disc darting back and forth (East/West), Western shores of Liberty Lake, WA & West, @ &lt; 45 degre angle to So. Horizon +1952-07-01,46.63,-95.0886111,Sebeka,MN,other,1800,Silver donut shape object sighted over rural Minnesota. +1952-07-01,42.3313889,-83.0458333,Detroit,MI,sphere,300,object sits stationary for 5 minutes and then accelerates out of sight in 5 seconds. +1953-07-01,38.8338889,-104.8208333,Colorado Springs (Mtsn Nw Of),CO,disk,10,Absolutely huge UFO hovered 40 feet above house in total silence before instantly disappearing without a trace. +1954-07-01,34.0522222,-118.2427778,Los Angeles,CA,circle,15,In 1954, I saw a red glowing disc traveling thousands of mph straight over the Los Angeles night sky. +1955-07-01,47.6480556,-121.9127778,Carnation (On Tolt River, Cascade Mts.),WA,disk,480,1955 daytime sighting of a saucer craft by a family of four while on a picnic on a Sunday in the Cascade Mts. of Washington. The famil +1955-07-01,34.1191667,-94.0163889,Dierks,AR,cigar,10,Cigar-shaped craft, 8 feet long with flashing liglhts, hovering above ground +1956-07-01,40.2680556,-96.7466667,Beatrice (14 Mi Sw Of),NE,other,120,Large pale silver dome seen over a hill and also near the house of SE Nebraska farm. +1957-07-01,37.6513889,-80.7544444,Talcott,WV,sphere,15,A sphere that looked like a white light came across the horizon from West to East, an Air Force Jet followed about 3-4 sec later. +1957-07-01,29.3625,-100.8963889,Del Rio,TX,cigar,15,Owners New Car Has Paint Purned Off By UFO. +1958-07-01,40.1933333,-85.3863889,Muncie,IN,unknown,300,A star sized object circled the sky and then shot straight out of sight at very great speed. +1959-07-01,36.1455556,-119.0597222,Strathmore,CA,disk,240,the gathering of static electricity from atmosphere by ufo alien or USA craft possible unmaned +1959-07-01,46.2752778,-122.9063889,Castle Rock,WA,cigar,30,Large, cigar-shaped aircraft with evenly spaced windows drifted silently over the tree tops at night. +1960-07-01,45.5236111,-122.675,Portland,OR,unknown,1800,Stationary Lights Over Portland OR Around 1960 +1961-07-01,33.9561111,-83.9880556,Lawrenceville,GA,circle,120,I could have hit it with a rock +1962-07-01,41.85,-87.65,Chicago,IL,disk,600,Summer of 1962 Chicago "Plane towing lighted sign" flap +1962-07-01,47.6063889,-122.3308333,Seattle,WA,other,30,randomly moving starlike shape +1963-07-01,40.7141667,-74.0063889,New York City (Brooklyn),NY,oval,180,CRAFT FLYING ACROSS THE NEW YORK CITY SKYLINE +1963-07-01,35.8422222,-90.7041667,Jonesboro (Arkansas State University),AR,disk,28800,Craft (typical saucer style] appeared low over bldgs., sonic boom from jet from airforce base 45mi. away. Craft went straight up and ou +1963-07-01,38.3908333,-93.3344444,Lincoln,MO,other,28800,Lights in the Sky? What are they and where did they c ome from? Benton County Missouri July 1񫹫 +1963-07-01,38.3908333,-93.3344444,Lincoln,MO,other,28800,This report is based upon a witness who said that a great armada of bright lights in the Benton county sky was so bright that it was l +1964-07-01,39.82,-75.0066667,Laurel Springs,NJ,other,300,Large glowing rock, covered the sky, very low, just above the trees, appeared/dissappeared silently, darkened the sky. +1964-07-01,41.2586111,-95.9375,Omaha,NE,disk,600,At dusk, we saw a saucer-shaped object that hovered silently for 5 minutes, then darted out of sight +1965-07-01,41.1133333,-74.2458333,Ringwood,NJ,disk,30,Daylight sighting of silent hovering disc over Wanaque reservoir +1965-07-01,39.4183333,-92.4380556,Moberly,MO,light,900,Bright light crossing the sky, circles the full moon, and crosses back across the sky. +1965-07-01,29.9544444,-90.075,New Orleans,LA,unknown,60,Spec of light in sky changes course around another spec of light. +1966-07-01,39.1580556,-75.5247222,Dover,DE,disk,300,In the region within an hour of Dover AFB, Delaware +1966-07-01,39.9241667,-79.8358333,New Salem,PA,oval,30,Witnessed oval shaped object with flame in rear. +1966-07-01,39.6044444,-76.4780556,Jarrettsville,MD,light,1800,Two large, 30' diameter spheres of light appx. 30' apart, appx 20-30' overhead, seen by 60? people, passing slowly overhead silently, n +1966-07-01,39.9241667,-79.8358333,New Salem,PA,sphere,30,4 adults and 2 children witness spherical object with apparent flame coming from rear, flying across sky in front of them silently. +1966-07-01,38.4344444,-82.1325,Milton,WV,light,30,One light into two +1966-07-01,42.425,-71.0666667,Malden,MA,sphere,1800,blue-white star, larger than any other in sky-- making regular 90' turns- for over 30 min.'s +1966-07-01,32.7458333,-96.9975,Grand Prairie,TX,other,30,Fast moving silent craft over water +1967-07-01,27.8002778,-97.3961111,Corpus Christi,TX,other,600,MIB event. +1967-07-01,40.82,-74.3652778,East Hanover,NJ,cigar,600,no moon,observed colored blinking lights apox. 150' up in southern sky. +1967-07-01,38.8338889,-104.8208333,Colorado Springs,CO,triangle,60,Triangular object in 1967 +1968-07-01,32.7833333,-96.8,Dallas,TX,other,10,Three shooting stars that were obivioulsy communicating with each other +1968-07-01,33.4147222,-111.9086111,Tempe,AZ,triangle,120,Late 1960's UFO Sighting Tempe Arizona Triangle Formation Objects +1968-07-01,41.5836111,-72.8927778,Plantsville,CT,light,120,Large bright blue light in the sky +1968-07-01,41.0036111,-80.3472222,New Castle,PA,disk,120,Three types of UFOs in the summer of 1968 in Western PA. +1968-07-01,40.7608333,-111.8902778,Salt Lake City,UT,circle,120,Reddish ball shaped objects. +1968-07-01,39.1619444,-84.4569444,Cincinnati,OH,disk,120,Fast moving craft over downtown Cincinnati riverfront +1968-07-01,34.4208333,-119.6972222,Santa Barbara,CA,formation,300,Five white lights hovering...Not weather balloons! +1969-07-01,41.6716667,-72.9497222,Bristol,CT,unknown,10,My friend and I were riding bicycicels. I looked straight up and obserevd a UFO 100ft.above us. It wasabout 30 ft. in dia. It was cover +1969-07-01,47.5302778,-122.0313889,Issaquah,WA,disk,60,Issaquah, WA sighting - summer 1969 +1969-07-01,33.9791667,-118.0319444,Whittier,CA,disk,420,In the summer of 1969 living in Starlight Estates located in Whittier, California and overlooks the city of Whittier. Around 6:00 PM ( +1969-07-01,46.5180556,-95.3758333,New York Mills,MN,disk,1800,30 Minute Encounter with Hovering Saucer 300 Yards Away +1969-07-01,34.2308333,-111.3244444,Payson,AZ,disk,300,The disc illuminated bright lemon yellow light through it's large square windows, moving slowly and beeping intermitingly +1969-07-01,33.2416667,-87.1580556,Chambers County (Area Of Al-Ga Line),AL,circle,300,MUFON/GEORGIA FOLLOW-UP REPORT: Two hovering circles of light(s)/objects +1970-07-01,29.4238889,-98.4933333,San Antonio,TX,oval,600,San Antonio UFO sighting in 1970 while parking with girlfriend. +1970-07-01,41.5894444,-88.0577778,Lockport,IL,light,60,3 lights chasing or following each other. Speeding up, slowing down, turning 90 degrees in an instant. +1972-07-01,33.8080556,-84.1702778,Stone Mountain,GA,circle,600,Drone or Survey Mission in Stone Mountain? +1972-07-01,41.7627778,-87.8,Bedford Park,IL,other,10,This was a sighting of a glowing being. The date is approximate. I think I was about 8 years old and it was summer. A friend and I were +1972-07-01,40.2338889,-111.6577778,Provo (South Of),UT,disk,1800,1972,Utah-small bright cloud,I'm driving south realize cloud is moving,suddenly cloud turnsinto silver saucer and shoots across desert. +1972-07-01,37.2872222,-121.9488889,Campbell,CA,oval,300,In the summer of 1972 or 1973, a friend and I were sitting on the front steps of our house in Campbell, CA. We were facing towards Sara +1973-07-01,42.1291667,-80.0852778,Erie,PA,light,300,War of the Worlds +1973-07-01,39.1433333,-77.2016667,Gaithersburg,MD,disk,30,Black round obj with seq flashing green lights, 6-8 in wide viewed at arm's length, and seen in daylight -- and no wings! +1973-07-01,43.0175,-74.1944444,Perth,NY,light,900,Bright orange glowing stationary object +1973-07-01,33.955,-96.8622222,Powell,OK,sphere,3,My mother and I saw a sphere of light travel through the house, while sitting watching TV. +1973-07-01,32.8405556,-83.6325,Macon,GA,disk,60,GEORGIA UFO GROUP/MUFON (joint post)-Debriefing of Witness-Probable Wave of 1973 +1973-07-01,37.9358333,-122.3466667,Richmond,CA,other,20,Three differently shaped, silent UFOs during two events, northbound over Richmond, California in early 1970's +1974-07-01,47.4066667,-122.0375,Maple Valley,WA,light,7200,I saw a light shining through the clouds that looked like the inside of a reflector telescope, with a dark rounded off square with a da +1974-07-01,36.8572222,-88.3502778,Benton,KY,fireball,20,Flying Object appeared to be a fire ember +1974-07-01,41.6619444,-86.1586111,Mishawaka,IN,circle,300,I was a pizza delivery person back then, working for Rossina Pizza in Mishawaka, Indiana(they still are open). I was driving westbound +1974-07-01,48.9466667,-122.4508333,Lynden,WA,light,300,It was early evening yet not yet completely dark on a clear night. In an slightly rural area. Our parents and siblins were already in t +1975-07-01,40.7608333,-111.8902778,Salt Lake City,UT,light,6,Light streaked across the horizon faster than any jet aircraft. +1975-07-01,37.2622222,-119.7,Coarsegold,CA,circle,12,Small white light pursuing large green disc or ball. +1975-07-01,39.0997222,-94.5783333,Kansas City,MO,oval,180,Object over south Kansas City, MO. Lights on bottom, flying low. +1976-07-01,37.2516667,-89.0233333,Grand Chain,IL,fireball,600,UFO near nuclear plant +1976-07-01,27.8002778,-97.3961111,Corpus Christi,TX,cylinder,300,UFO in broad daylight in front of a baseball game. +1976-07-01,34.6391667,-120.4569444,Lompoc,CA,circle,120,A 2.5 foot diameter disc shaped ufo disguised as the full moon suddenly moves to within inches of my face. 500 Lights On Object0: Y +1976-07-01,39.9522222,-75.1641667,Philadelphia,PA,oval,1800,While driving north on 7th st our 3 year old son shouted for my husband and I to look up in the sky. We looked up, and saw what I thou +1976-07-01,41.855,-84.3538889,Hudson,MI,cigar,600,Cigar shaped craft spotted just before dark- observed also by police officer +1976-07-01,34.0141667,-86.0066667,Gadsden,AL,disk,30,Flashing lights and scrambled jets +1976-07-01,32.7152778,-117.1563889,San Diego,CA,light,1800,Faint star-like object became larger and sat over the ocean for at least ten minutes. +1976-07-02,32.7152778,-117.1563889,San Diego,CA,triangle,90,Summer of 1976, San Diego, CA, visiting Father stationed in CA for 3 weeks. One evening saw large red Triangular shaped object. +1977-07-01,42.7261111,-87.7827778,Racine,WI,disk,300,Craft hovering stationary over trees in residential neighborhood +1977-07-01,33.6597222,-85.8316667,Anniston (Ft. Mcclellan U.s. Army Base),AL,disk,5,Approx. six glowing silent objects flying over head at high rate of speed in broad daylight at ft. mcclellan, Alabama july 1977 +1977-07-01,25.7738889,-80.1938889,Miami,FL,triangle,5,Over downtown Miami, 1 mile triangular - no fewer than 300ꯠ peope saw it. +1977-07-01,42.7977778,-83.705,Fenton,MI,circle,5,At dusk a large round craft with green lights appeared instantly over a hill hovered over my car and then backed up and disappeared. +1977-07-01,30.7580556,-98.2280556,Burnet,TX,light,1800,AN ABSOLUTE TRUE SIGHTING OF SOMETHING FAR SUPERIOR TO OUR PRESENT TECHNOLOGY. +1977-07-01,42.7652778,-71.4680556,Nashua,NH,disk,900,Saucer shaped object +1978-07-01,40.1183333,-75.1780556,Oreland,PA,other,300,Electric Blue Half dome with possible alient encounter. +1978-07-01,44.8897222,-93.3497222,Edina,MN,triangle,150,7/1/78 01:00hours Edina/Minneapolis. MN. single very slow moving black triagle, 2 min visible +1978-07-01,35.1494444,-90.0488889,Memphis,TN,triangle,2700,2 huge triangle shaped objects, low to the ground moving very slow. we follow them for several miles before they vanish. +1978-07-01,34.0522222,-118.2427778,Los Angeles,CA,circle,1800,bright multi-colored lights emanate from disc flying/hovering silently approx 500 ft in the air +1978-07-01,41.3625,-74.2716667,Chester,NY,chevron,120,6 chevron shaped objects seen in the daytime sky doing "loop-de-loops" at high altitude +1978-07-01,39.9369444,-120.9461111,Quincy (15 Miles Southeast Of),CA,triangle,120,A black object suspended about 150 feet from me, with 2 beings. They appeared to be watching me. I waved, and it zoomed off. +1978-07-01,35.0525,-118.1730556,Mojave,CA,sphere,180,While building the CHP office in Movaje, Ca I observed a very small object @ 1 meter from me hoovering. I was on the roof of the buil +1978-07-01,33.8313889,-118.2811111,Carson,CA,unknown,300,For about 5 minutes I watched an odd shaped object in the sky over the city of Carson, Ca, that was then chased by 4 Military jets. +1978-07-01,33.9533333,-117.3952778,Riverside,CA,triangle,600,3 triangular shaped ufos over an empty field in Riverside, CA with beams of light searching the field; no noise, no wind, not copters +1978-07-01,41.6638889,-83.5552778,Toledo (Near),OH,light,300,I was listening to Peter's interview with George Noory on June 4th. I thought I would mention this. My companion at the time also saw +1978-07-01,39.7269444,-76.3269444,Delta,PA,disk,1200,Space craft hovers over pond +1978-07-01,40.7544444,-86.3566667,Logansport (East Of),IN,sphere,30,50 ft. sphear over farm house moved off exces of mach1 visible untill fading out of sight. +1978-07-01,41.1111111,-74.0688889,Monsey,NY,triangle,900,My boyfriend and I saw a triangular shaped object spinning in circles, lights rotating..It jut across the evening sky within the stars +1978-07-01,40.9113889,-73.7827778,New Rochelle,NY,oval,45,UFOs are REAL! 45 SECONDS OVER MY HEAD IN A STILL POSITION - and then IT ZOOMED AWAY. +1978-07-01,33.3805556,-84.7997222,Newnan,GA,rectangle,600,the spot lights that were circeling on the roof tops of our house. +1979-07-01,32.1533333,-90.1311111,Florence,MS,disk,300,Around midnight came to a T section silver disc was hovering treetop level above trailer & zoomed up & to the left & disappeared with n +1979-07-01,39.7286111,-121.8363889,Chico (Hwy 70 At 179 Junction),CA,other,300,A large slow moving craft was observed, first at a distance as a bright light, then passing directly overhead. +1979-07-01,39.7286111,-121.8363889,Chico,CA,rectangle,420,A huge solid black mass, silently glided directly over us from the NNE going SSW then did a perfect 90 degree turn directly over us and +1979-07-01,40.7672222,-74.2052778,East Orange,NJ,disk,120,When I was about seven years old, saw a flying saucer with lights outside my window, telepathically asked me if I was alone +1979-07-01,33.7125,-115.4013889,Desert Center (North Of),CA,light,900,White light, aprox 10 to 15 miles away, moving in the formation of a square. +1979-07-01,42.0805556,-70.9361111,Whitman,MA,disk,60,As I was walking my dog up our front walk that +1979-07-01,42.0805556,-70.9361111,Whitman,MA,disk,60,I was walking my dog up our front walk that's when I saw this huge round thing with lights hovering between two trees.. +1979-07-01,44.3147222,-84.7647222,Houghton Lake,MI,light,1500,Orange lights over Houghton Lake MI +1980-07-01,32.9594444,-117.2644444,Del Mar,CA,unknown,5,No craft, just a person. 3-4 feet tall. Blue, large eyes and smirking. +1980-07-01,42.8352778,-88.2763889,Caldwell,WI,triangle,6,Three unlit triange shapes moving slowly in formation 500ft above with little sound +1980-07-01,43.1372222,-89.7466667,Black Earth,WI,oval,90,Bright, orange, silent oval that looked like a lower-case "e" moving slowly across the sky. +1980-07-01,41.6763889,-71.9155556,Plainfield,CT,circle,15,Circular UFO with lights around outer edge in night sky +1981-07-01,36.5697222,-115.6697222,Indian Springs,NV,light,2700,LIGHTS IN THE SKY NORTH OF INDIAN SPRINGS +1982-07-01,37.8713889,-109.3422222,Monticello,UT,unknown,60,im not exactly sure what the date was but we were sleeping out on the lawn. saw a object zig zagging across the sky. it would appear to +1982-07-01,40.0977778,-74.2180556,Lakewood,NJ,sphere,46800,No one else remembered leaving for the entire day. 500 Lights On Object0: Yes +1982-07-01,39.1230556,-93.1966667,Marshall,MO,light,1200,A large light a long time ago. +1982-07-01,40.7141667,-74.0063889,New York City (Manhattan),NY,disk,5,Walking home in Manhattan summer 1982 we witnessed a huge brightly lit disc hovering over us. +1982-07-01,42.1816667,-87.8002778,Highland Park,IL,cylinder,120,I stood below a very large silent floating cylander with spokes and lights projecting out of it. +1983-07-01,40.5083333,-85.8255556,Swayzee,IN,unknown,1800,Hovering green, blue, and yellow lights over a wooded area, landing, then taking off into the night sky. +1983-07-01,45.0441667,-96.7602778,Strandburg,SD,formation,180,Oval multicolored object that had sharp-jagged twinkling lights around it. Green, red and gold lights. +1983-07-01,41.7,-71.4166667,Warwick,RI,disk,900,Large matalic disk shaped object hovoring over field, 30' from street, 20-25 feet off ground. +1983-07-01,37.4108333,-94.7047222,Pittsburg,KS,flash,60,A large lightening bolt appeared to come out of a white truck horizontally and strike a power pole. +1984-07-01,40.7141667,-74.0063889,New York City (Yonkers),NY,triangle,900,6-8 light formation moving slowly w/o sound +1984-07-01,41.29,-73.9208333,Peekskill,NY,triangle,240,Hudson Valley area. Large, silent, triangle shaped vehicle hovered about 100-200 ft over the house for about 3-4 minutes. +1985-07-01,33.8030556,-118.0716667,Los Alamitos,CA,changing,60,Goodyear Blimp turns into UFO. +1985-07-01,48.051944399999996,-122.1758333,Marysville,WA,unknown,15,7/85 2030 looking eastward bright silver object hi in atmosphere moved at incredible speed no contrails +1985-07-01,40.8005556,-73.7288889,Great Neck,NY,rectangle,600,Giant UFO sighting on Long Island in the mid 1980's +1985-07-01,39.8544444,-75.0394444,Magnolia,NJ,egg,1200,1985 ufo over Magnolia Public School +1986-07-01,42.0569444,-94.7286111,Glidden,IA,disk,60,Silver disk motionless in the sky. +1986-07-01,39.2616667,-121.015,Nevada City,CA,disk,900,4 saucers follow cars then hover above Yuba River in Nevada City. Flashing circle of lights that hum under craft. +1987-07-01,32.8880556,-84.3266667,Thomaston,GA,circle,1800,MUFON/GEORGIA FOLLOW-UP REPORT: Low hovering 'ovoid' circle of lights +1987-07-01,34.9883333,-80.3672222,Marshville,NC,other,7200,UFO in clear sight of entire town, egg shape(on its side)many colored lights,memory tampering,nose bleed,abduction. +1987-07-01,33.7358333,-118.2913889,San Pedro,CA,triangle,600,((HOAX??)) I was right under it when it pass over my head. 40ft. up. +1987-07-01,36.2977778,-91.5158333,Cherokee Village,AR,cylinder,180,MISSOURI INVESTIGATORS GROUP Report: This object passed directly overhead, diagonally, back to front, horizon +1988-07-01,64.7511111,-147.3494444,North Pole,AK,unknown,4800,Flash of light and loss of time +1988-07-01,37.1083333,-92.4147222,Norwood,MO,circle,1200,Ball of Fire in Field and White Lights Darting in the Sky +1988-07-01,34.2541667,-110.0291667,Show Low,AZ,unknown,60,He mentally told me "its ok were just passing through" +1988-07-01,35.265,-116.0736111,Baker,CA,light,180,Ball of light (3' wide) paces car on right side of freeway, then bolts 90 degrees to horizon at unbelievable speed +1988-07-01,32.2216667,-110.9258333,Tucson,AZ,triangle,600,One extremely large, dark gray triangular shaped object with no lights or markings on it over Tucson, AZ. (1988) +1988-07-01,40.2455556,-74.8463889,Yardley,PA,triangle,1800,U.S. Government tape of UFO's +1988-07-01,32.2216667,-110.9258333,Tucson,AZ,triangle,180,I saw a very large, dark gray triangular shaped object in daylight, which was not identifiable. +1988-07-01,34.1397222,-118.0344444,Arcadia,CA,rectangle,300,Our dog was barking at something. His bark was the bark as if he didn't want to leave the porch but wanted to summon someone in the fa +1989-07-01,45.2305556,-123.8622222,Hebo,OR,sphere,15,Ball of orange light over Mount Hebo, OR +1989-07-01,42.0083333,-91.6438889,Cedar Rapids,IA,triangle,900,I think my sighting as a child may have something to do with my current abilities +1989-07-01,41.3113889,-105.5905556,Laramie,WY,other,30,Small dark speck paces airliner, seen from ground. +1989-07-01,44.5191667,-88.0197222,Green Bay,WI,circle,600,This is an event that me or my wife never reported to anyone but friend's and family.We live in an upstair's apartment of a two story h +1989-07-01,34.2575,-88.7033333,Tupelo,MS,disk,10,The object was a football shaped object with no lines it had a pulsating green haze and a trail of green light. +1989-07-01,42.3041667,-76.1869444,Berkshire,NY,chevron,600,Chevron shaped craft flying towards north-western sky between Binghamton and Ithaca, New York. +1989-07-01,41.2294444,-73.9875,Stony Point,NY,triangle,600,large triangle object above hudson river +1989-07-01,44.1266667,-70.8922222,Lovell,ME,triangle,600,Black Triangle over Lake Kezar in Lovell Maine in the Late 1980's +1990-07-01,37.1041667,-119.3166667,Shaver Lake,CA,light,120,Intense light over Shaver Lake, California. +1990-07-01,37.1041667,-119.3166667,Shaver Lake,CA,triangle,240,Triangle Craft Shaver Lake Ca. Moved very slowly away from us but then shinned very bright light at us! +1990-07-01,40.6152778,-74.7708333,Whitehouse Station,NJ,unknown,120,Slept at my friends house for the night when his brother and mother burst into our room to show us strange lights outside. By the time +1990-07-01,40.6866667,-73.3738889,Lindenhurst (Long Island),NY,triangle,1800,LIndenhurst, Long Island New York -- Triangular Craft +1990-07-01,40.3930556,-90.1547222,Lewistown,IL,light,900,Bright Light Lewistown, Illinois Late 1980's or early 1990's. +1990-07-01,32.7152778,-117.1563889,San Diego,CA,other,30,like a large high-voltage tower on its side, with lights, moving slowly +1990-07-01,37.9255556,-122.5263889,Corte Madera,CA,fireball,420,stationary fireball changes color and redefines speed as it moves north +1990-07-01,34.1083333,-117.2888889,San Bernardino,CA,unknown,300,Three bright pinpoint lights (looked like stars or comets) approaching equidistent in thirds from horizon to meet in sky above. The lig +1990-07-01,38.2775,-85.7372222,Jeffersonville,IN,triangle,600,Triangular dark shape hovering above closed ammunition plant in Southern Indiana. +1990-07-01,44.1636111,-93.9991667,Mankato,MN,oval,600,my girfriend and i saw an opaque outline of an oval elongated object with lights foreward, midship and aft dissappear within an instant +1990-07-01,25.7738889,-80.1938889,Miami,FL,fireball,10,Large fireball object passes quickly over Biscayne Bay, Miami, Florida +1990-07-01,34.0922222,-117.4341667,Fontana,CA,light,300,A bright light in the shy that seem like chopper's light however without any sound or movement. The light disappeared into the sky aft +1990-07-01,38.5816667,-121.4933333,Sacramento,CA,light,900,AT APPROX 2300HRS, I NOTICED A YELLOWISH ORANGE LIGHT MOVING SLOWLY FROM SOUTH TO NORTH, IT STOPPED AND HOVERED FOR ABOUT 15 MINUITES B +1991-07-01,42.2175,-78.2755556,Cuba,NY,triangle,600,My wife and I were driving home to Jamestown NY where we lived at the time from her parents in NJ traveling west on Route 17, she was d +1991-07-01,40.9125,-73.8375,Mount Vernon,NY,disk,420,I was at action park in mount vernon New Jersey in the wading pool And was looking up for the blue skies. What I say Was the 3 Ships mo +1991-07-01,29.7630556,-95.3630556,Houston,TX,light,3600,Two multicolored stationary distant lights in sky +1991-07-01,41.0127778,-81.6052778,Barberton,OH,circle,600,Star like UFO hovers and then zooms across the sky. +1991-07-01,42.7622222,-84.8963889,Mulliken,MI,disk,1325,On the night of a meteor shower around 6-8 years ago from this date, a friend and I witness what we believe was 4 unidentified spacecra +1991-07-01,45.3038889,-93.5669444,Elk River,MN,light,120,Basketball sized orb of light, burst with intensity after about 2 minutes then disappeared. +1991-07-01,40.4933333,-90.0486111,St. David (Near),IL,triangle,240,flying triangle in fulton county illinois (1991) +1992-07-01,44.3572222,-73.3925,Willsboro,NY,fireball,1800,It was basically a ball of pulsating light, there was no wings, no rotors, and discernable body or fuselage. +1992-07-01,37.7138889,-97.1361111,Andover,KS,cigar,180,cigar shape, south central kansas 1992 or 1993 +1992-07-01,33.0183333,-80.1758333,Summerville,SC,triangle,120,Triangular ship with bright white lights and complex outer body. +1992-07-01,35.9572222,-75.6244444,Nags Head,NC,circle,1200,I lived a summer in Nags Head to complete a hotel internship for my university. I lived in a house with a Christian family. They call +1992-07-01,32.9125,-96.6386111,Garland,TX,triangle,300,Triangle UFO in Garland, TX in 1992 +1993-07-01,36.0811111,-79.1694444,Efland,NC,triangle,1800,large craft hovering in field +1993-07-01,37.5969444,-120.865,Hughson,CA,rectangle,2400,Orange beams of light +1993-07-01,29.7855556,-95.8241667,Katy,TX,sphere,15,An orange ball making two opposite 45 degree angle turns crosses the sky to the south in 5 - 7 seconds. +1993-07-01,29.7630556,-95.3630556,Houston,TX,disk,10,Sighted silver disk in motion on a cloudless, sunny day. +1993-07-01,37.7666667,-120.8461111,Oakdale,CA,triangle,900,triangle slowly moving object with "lightning" emitting from the front of it +1993-07-01,35.4675,-97.5161111,Oklahoma City,OK,triangle,300,2 triangle craft over OKC. 1 travled N to S. 2 traveled W to E. The craft were very high, could only see their shape with binoculars. E +1994-07-01,33.8722222,-117.8694444,Placentia,CA,light,1800,Mistaken for the moon, the light gave birth to others and "danced" in the night sky. +1994-07-01,42.1033333,-73.5505556,Copake,NY,light,600,Distant, Strange, Moving/Dancing/Fighting? Lights +1994-07-01,39.7683333,-86.1580556,Indianapolis,IN,other,15,A multi-titled, multi-colored possibly foursided pyramid seen before I entered 2nd grade, brother saw same thing years later. +1994-07-01,37.0891667,-122.0852778,Ben Lomond,CA,light,2700,Multiple lights, very distant, moving and turning rapidly, playing and dancing together for 45 min+ +1994-07-01,40.7988889,-81.3786111,Canton,OH,circle,120,The Metalic Orb that's as reflective as a mirror and moves like nothing I've ever seen +1994-07-01,42.2666667,-72.6694444,Easthampton,MA,triangle,720,Close encounter with hovering black triange, fighter jets chased it away! +1994-07-01,39.2333333,-84.1613889,Goshen,OH,triangle,1800,Fleet of UFOs over Goshen, Ohio...Summer 1994 +1995-07-01,47.2091667,-122.7555556,Longbranch,WA,light,2700,Bright light in the sky, periodically moving to new locations practically instantly, with multiple military aircraft chasing later on +1995-07-01,36.7280556,-108.2180556,Farmington,NM,cone,3600,Large white and green object spotted for appx 1 hour. +1995-07-01,33.6888889,-78.8869444,Myrtle Beach,SC,light,15,Odd lights seen over ocean in Myrtle Beach, SC. +1995-07-01,41.1366667,-95.8905556,Bellevue,NE,unknown,60,Silent craft flying extremely low dropping flaming embers +1995-07-01,34.8525,-82.3941667,Greenville,SC,oval,900,My roomate and I were on our way to work around 1995 when we witnessed a UFO. It was 5:45 AM and obviously still dark outside. We wer +1995-07-01,40.8163889,-79.5222222,Kittanning,PA,circle,600,Large round disc hovering only 400 to 500 feet off the ground with glass dome on top +1995-07-01,33.3088889,-85.4847222,Wedowee,AL,sphere,1800,MUFON/ISUR (GEORGIA) REPORT: Investigation-Glowing Orb Chases Church Van +1995-07-01,38.9591667,-85.8902778,Seymour,IN,other,120,A giant glowing object resembling a car headlight floated across the night sky and then shot straight up through the clouds +1995-07-01,44.1858333,-88.4625,Neenah,WI,triangle,30,Large triangle with pulsing light over Wisconsin +1995-07-01,39.99,-77.3108333,Wenksville,PA,light,1200,Two bright red lights flying in the air +1995-07-02,40.7141667,-74.0063889,New York City (Staten Island),NY,circle,30,round , noiseless, clearly under the influence of something intelligent +1996-07-01,30.1763889,-85.8055556,Panama City Beach (Behind Club Lavela),FL,light,60,Its was a crisp clear night during the summer of 1996 and my roommate and I were sitting on the beach behind some local clubs.We had go +1996-07-01,43.4261111,-73.7127778,Lake George,NY,light,3600,Small points of light moving randomly +1996-07-01,34.0522222,-118.2427778,Los Angeles,CA,formation,2700,Bright "Pearl" cluster seen looking northwest from Bev.Hills,W.Hollywood area. Observedfor more than half hour. Objects spun and lighte +1996-07-01,33.8169444,-118.0363889,Cypress,CA,oval,7200,WHITE CIRCULAR LIGHTS +1996-07-01,44.6366667,-123.1047222,Albany,OR,egg,300,In the early evening, I saw a white, egg-shaped object making its way across the sky. +1996-07-01,34.5136111,-102.8825,Bovina,TX,unknown,120,Blue & White Lights +1996-07-01,29.7855556,-95.8241667,Katy,TX,diamond,1800,Saw 3 diamond shaped crafts. Two small flanking a huge mother ship. Each had 3 lights each. Mother had red/green lights around belt. +1996-07-01,32.0508333,-84.7991667,Lumpkin,GA,disk,120,Stewart County sighting in 1996, New Story Never Heard Before Til Now. " I was as close as 30 yards away" +1996-07-01,43.9144444,-69.9658333,Brunswick,ME,light,9,What I saw was a bright flash of gold light that appeared in one part of the sky, it died down and apeared in adifferent part of the sk +1996-07-01,47.8555556,-121.9697222,Monroe,WA,triangle,60,Enough time has lapsed that my apprehension has waned. This was observed by xxxxxxxxxxxxxxxxxxxxxxxxxxxx, on date stated. I was at 'Ced +1997-07-01,40.26,-74.2741667,Freehold,NJ,light,5,Strange Orange Light +1997-07-01,32.3861111,-94.8755556,Kilgore,TX,circle,5,Dear Sir, In reference to the sighting in east texas. I spoke with with my friend y((name deleted)) (903 XXX-XXXX). +1997-07-01,32.3861111,-94.8755556,Kilgore,TX,circle,5,Two police officers, out on a hunting expedition, witness a dramatically bright "fireball" close to their position. +1997-07-01,41.8905556,-80.3666667,Albion,PA,cigar,900,Was silent, seen by two customers of mine, who are not UFO buffs +1997-07-01,41.2586111,-95.9375,Omaha,NE,disk,60,UFO sighted in plain daylight cruising at low altitudeand without audible sound in Omaha. +1997-07-01,40.5061111,-74.6205556,Hamilton,NJ,other,180,sighting in NJ +1997-07-01,40.7141667,-74.0063889,New York City (Manhattan),NY,sphere,60,Black sphere hovering over lower Manhattan. +1997-07-01,41.926944399999996,-73.9977778,Kingston,NY,disk,180,A bright saucer UFO rose up from behind distant woods, turned left and glided out of sight. +1997-07-01,40.9397222,-123.6302778,Willow Creek,CA,sphere,300,Blue orb appears out of nowhere, lights up huge area, and then sets behind my house on mountain-side. +1998-07-01,44.8344444,-85.2825,Rapid City,MI,sphere,3600,((HOAX??)) ufo help +1998-07-01,40.8813889,-74.1136111,Garfield,NJ,unknown,3,I was observing the night sky in my friends backyard when I saw a bright small object crossing the night sky at an incredible rate of s +1998-07-01,32.8794444,-111.7566667,Casa Grande,AZ,circle,600,2 large orbs westsouthwest hovering yellow orange in color from about21:00 until 21:10. This also happend a year ago in June +1998-07-01,36.7477778,-119.7713889,Fresno,CA,triangle,120,While on the roof of a 10 story building, looking north/east, I saw what appeared to be a trangle object flying very slow, then increas +1998-07-01,35.9366667,-121.0805556,Lockwood,CA,cigar,600,UFO sighting in Lockwood, California +1998-07-02,38.7522222,-121.2869444,Roseville,CA,circle,900,Observed from Roseville, Ca. and Sierra Nevada mountains, +1999-07-01,35.7452778,-81.685,Morganton,NC,diamond,30,a diamond-shaped, auburn-colored craft appeared in the sky and after traveling a very short distance, emitted 2 objects from either sid +1999-07-01,33.4483333,-112.0733333,Phoenix,AZ,unknown,30,An object flys from North to South, makes turn into space. +1999-07-01,43.9827778,-124.0986111,Florence,OR,cigar,5,Went on vacation in Florence Or. Driftwood II park. Bright cigar shape craft. Looked like it was going to land on the beach. This was +1999-07-01,33.0161111,-92.7241667,Junction City,AR,light,120,a bright star looking object that glowed brighter then dissapeared +1999-07-01,33.5205556,-86.8025,Birmingham,AL,flash,4,I looked in the sky and saw a flash, but I only saw a glance of it. It was dark. But it didn't go down like a meteor,it went up and dis +1999-07-01,44.7213889,-73.7241667,Dannemora,NY,unknown,3600,Bright orange ball moves slowly over Chazy Lake, then vanishes over trees. 500 Lights On Object0: Yes +1999-07-01,47.6588889,-117.425,Spokane,WA,sphere,600,We were over the Spokane river and saw two large silver black sphere shaped crafts it felt as though one craft was perfectly in mathima +1999-07-01,35.2269444,-80.8433333,Charlotte,NC,other,60,Noisy, "sky train" moving slowly with suden accellaration +1999-07-01,35.1111111,-81.2266667,Clover,SC,light,600,On the night of the Sept.01񫺏 I observed within the space of 10 minutes 2 meteorites followed by a burst of light seen in the sky (c +1999-07-01,42.3763889,-71.2361111,Waltham,MA,triangle,1200,Massive silent and fast, July 1999 in Waltham Ma. +1999-07-01,36.045,-117.9463889,Coso Junction,CA,light,120,was standing on the porch of a mini market/gas station where i worked..and looked up to the west for some reason and saw a bright green +1999-07-01,38.5347222,-105.9983333,Salida,CO,cigar,180,Large cylindrical object steadily crossed the sky in the light of the moon.It did NOT display FAA blinking light. +1999-07-01,38.5347222,-105.9983333,Salida,CO,cigar,60,Shiny object heading west, 10 miles east of Salida.Planes appear to have chased it away. +1999-07-01,44.3483333,-106.6983333,Buffalo,WY,cylinder,180,Small, clear, blinking object seen in northern Wyoming +1999-07-01,41.5286111,-109.4655556,Green River,WY,other,3600,Rare occurence of lights from the home of close encounters(the movie) +1999-07-01,38.8922222,-89.4130556,Greenville,IL,fireball,5,Green fireball of double ball pattern (colon configuration : with one tail) observed. +2000-07-01,47.0791667,-119.8547222,George,WA,light,2,Vivid green tailed light seen slightly arcing in the SE sky,lasting less than 2 sec , while driving on a remote road in Eastern WA +2000-07-01,38.4405556,-122.7133333,Santa Rosa,CA,sphere,18000,lots and lots of lights +2000-07-01,46.8083333,-100.7833333,Bismarck,ND,light,600,A small light slightly bigger than the surrounding stars darting to and fro for about ten minutes. +2000-07-01,29.4569444,-94.6394444,Crystal Beach,TX,triangle,45,large black triangle completely silent with very dim lights on each corner +2000-07-01,43.6155556,-84.2472222,Midland,MI,light,240,Observation of stationary then moving bright light in sky, possibly linked to large dark object passing overhead 10 min later. +2000-07-01,35.265,-116.0736111,Baker,CA,cigar,1800,the object was fast quiet and meant business as it chased us, we then knew we were in danger!! +2000-07-01,35.265,-116.0736111,Baker,CA,cigar,2400,it was aclear night in the desert.this craft chased our car three times at speeds of 90mph almost touching car. +2000-07-01,34.448055600000004,-119.2419444,Ojai,CA,triangle,1200,Saw one Small craft and one large craft ,Both very bright. +2000-07-01,33.7358333,-118.2913889,San Pedro,CA,oval,15,Black oval moving without lights in the night sky. +2000-07-01,41.2844444,-84.3558333,Defiance,OH,cross,300,Small silent aircraft like object observed in rural area that did not "behave" like any known object, such as a bird or toy plane. +2000-07-01,41.2230556,-111.9730556,Ogden,UT,oval,3,Our family was discussing the day’s events while driving in the car. 4 people in the car. My daughter and myself in the front seats. I +2000-07-01,37.9577778,-121.2897222,Stockton,CA,disk,900,Saucer hovers three stories above car, lights around rim, no sound, +2000-07-01,33.4483333,-112.0733333,Phoenix,AZ,formation,120,The lights stretched out in a arc type fashion, stationary, evenly spaced and appeared to be as big as Camelback Mountain. +2000-07-01,39.7663889,-75.1447222,Sewell,NJ,rectangle,30,a black rectangular void in which unknown objects were going in . +2000-07-01,43.0638889,-77.2336111,Palmyra,NY,unknown,7,I saw two rows of well lit windows suspended over the trees. +2000-07-01,40.7141667,-74.0063889,New York City (Staten Island),NY,triangle,300,triangle shaped,lights on bottom,silent,no aircraft tail,flat +2000-07-01,37.3394444,-121.8938889,San Jose,CA,fireball,25,Long, steady flight path leaving a trail the width of a finger held at arms +2000-07-01,36.6777778,-121.6544444,Salinas,CA,fireball,15,One brightly lit ball that left a trail. +2000-07-01,34.698055600000004,-118.1358333,Lancaster,CA,disk,30,TWO GOLDEN DISCS CROSSED THE NIGHT SKY, VERY RAPIDLY, STRAIGHT LINE, SILENT. +2001-07-01,38.5222222,-77.2938889,Quantico,VA,light,15,Bright light coming closer and then disappearing +2001-07-01,34.7488889,-112.1130556,Jerome,AZ,formation,180,Three lights in formation +2001-07-01,37.9622222,-122.3444444,San Pablo,CA,circle,2,bright moon sized object appeared to be over hills in Marin county as seen from Contra Costa County, Ca +2001-07-01,26.0027778,-80.2241667,Pembroke Pines,FL,fireball,37800,The objects were close to 50 feet across, travelled at extreme speeds and left a trail of mattallic grey dust fading withing ten second +2001-07-01,41.85,-87.65,Chicago,IL,sphere,5,Sphere seen from atop a high rise building +2001-07-01,41.3113889,-105.5905556,Laramie,WY,other,300,Blood-red cloud splits in two and rains onto ground. +2001-07-01,40.1672222,-105.1013889,Longmont,CO,cigar,30,Cigar shaped craft with 5 or 6 red and white lights +2001-07-01,48.051944399999996,-122.1758333,Marysville,WA,oval,30,My husband and I were out on the deck which faces the north to north west area. We were roasting some chickens on the grill when I spot +2001-07-01,45.4983333,-122.4302778,Gresham,OR,circle,600,Bright circular object seen moving in a South to North direction fading in and out of sight, and difficult to pick up by binoculars. +2001-07-01,34.1480556,-117.9980556,Monrovia,CA,rectangle,300,3 shiny stationary metallic edged shapes in a row around 8pm. +2001-07-01,45.065,-88.0341667,Coleman,WI,disk,2,Bright light in sky, vertical movement +2001-07-01,24.5552778,-81.7827778,Key West,FL,sphere,30,Spere formation over Key West +2001-07-01,36.6333333,-93.4166667,Kimberling City,MO,formation,3600,We may have been an experament +2001-07-01,40.5141667,-88.9905556,Normal,IL,other,0.5,bright greenish blue light (unlike anything we've ever seen) moving at an incredible speed from mid sky to lower horison +2001-07-01,41.7827778,-87.8780556,Countryside,IL,egg,5,neon blue eggshaped object fell from sky very large no lights no sound lots of mass and leveled out when approched ground +2001-07-01,41.7375,-84.8333333,Clear Lake,IN,light,3,Highh speed hhigh altitude circular green light/object, 07.01.01 +2002-07-01,47.2033333,-122.2391667,Sumner,WA,disk,10,At 09:21 I saw what is referred to as a daylight Disk. The sky was fifty percent overcast. the clouds were cumulus, big,white and puffy +2002-07-01,38.2972222,-122.2844444,Napa,CA,changing,300,The object appeared to be rectangular with fire under it, then rose very high and appeared round and on fire. +2002-07-01,36.9786111,-76.4283333,Newport News,VA,circle,15,Single orb starts in the sky, then becomes encircled by other orbs, then spins away. +2002-07-01,42.6836111,-78.3380556,North Java,NY,triangle,600,three lights flew overhead at night +2003-07-01,47.1302778,-119.2769444,Moses Lake,WA,other,7200,many fast moving objects +2003-07-01,31.4227778,-103.4927778,Pecos (South Of),TX,light,600,Jet following white blinking object. +2003-07-01,38.9780556,-122.8383333,Kelseyville,CA,light,120,red ball of light in late night sky +2003-07-01,46.6022222,-120.5047222,Yakima,WA,oval,300,Butterly shaped rainbow UFO +2003-07-01,35.9080556,-75.6761111,Manteo,NC,light,1200,3 strange lights 7/1/03 outer banks nc +2003-07-01,47.6063889,-122.3308333,Seattle,WA,teardrop,600,GREEN GLOWING OVAL WITH TAIL +2003-07-01,33.9616667,-118.3522222,Inglewood,CA,disk,2280,Strange Red Craft/ UFO Nightmares +2003-07-01,47.1302778,-119.2769444,Moses Lake,WA,sphere,15,ok I was sitting out on my drive way with my best friend (we were under 18 so no alcohol was involved) but anyway we'd relax on warm ni +2003-07-01,41.85,-87.65,Chicago,IL,fireball,1350,a bunch of mysterious fast moving objects appearing to have red and green strobe lights. +2003-07-01,41.7,-71.6833333,Coventry,RI,changing,180,energy wings that took up the whole sky breaking into three small white lights and jetting off- no sound what so ever +2003-07-01,39.7683333,-86.1580556,Indianapolis,IN,other,4,In a moonlit sky, traveling from the west and turning to the southeast, it traversing an open space 30 degrees above the horizon to a p +2003-07-01,42.6766667,-71.425,Tyngsboro,MA,cigar,60,My son and I were stargazing when we observed what looked like a flashing bright green & yellow pill shape object traveling (skipping) +2003-07-01,36.0644444,-75.7061111,Kitty Hawk,NC,light,1800,Strange glowing haze like light over Kitty Hawk NC. +2003-07-01,34.9530556,-120.4347222,Santa Maria,CA,triangle,900,Triangle Object over Pismo Beach, California +2003-07-01,42.6072222,-83.9294444,Howell,MI,cigar,300,Craft with whight, blue, and red lights seen in the sky +2004-07-01,33.5386111,-112.1852778,Glendale,AZ,sphere,7200,one definite orb, standing still in the sky, and a huge craft with an immense wing span slowly flying above phoenix +2004-07-01,42.0072222,-87.9402778,Elk Grove,IL,other,300,VERY high altitude dumb-bell shaped UFO +2004-07-01,40.1261111,-74.0497222,Manasquan,NJ,triangle,15,VERY LARGE triangle shaped craft +2004-07-01,46.6022222,-120.5047222,Yakima,WA,unknown,90,Amazing moving BRIGHT white light +2004-07-01,34.0805556,-118.0719444,Rosemead,CA,light,30,Long luminescent green light/object +2004-07-01,36.3302778,-119.2911111,Visalia,CA,triangle,30,i was looking for mars and saw a triangular blicking object +2004-07-01,44.8897222,-93.3497222,Edina,MN,triangle,180,Low flying triangular object with a round white light at each corner of the triangle. +2005-07-01,39.2341667,-93.9352778,Henrietta,MO,circle,120,Circular object hovers over house, changes colors and disappears in Missouri. +2005-07-01,40.9116667,-85.9244444,Roann,IN,diamond,120,Positive UFO photos +2005-07-01,39.4369444,-104.9591667,Sedalia,CO,other,20,Fast hummingbird UFO possibly? Speed and sounds never heard. +2005-07-01,42.2222222,-71,Braintree,MA,sphere,120,Small metallic sphere seen suspended 40 feet in air.. In BROAD DAYLIGHT 3:00.. in Braintree +2005-07-01,47.6063889,-122.3308333,West Seattle,WA,light,240,Bright light in broad daylight, moving slowly over the puget Sound, West Seattle area. +2006-07-01,42.1080556,-85.9744444,Decatur,MI,light,1200,Star like objects moving rapidly through night sky. +2006-07-01,28.6119444,-80.8077778,Titusville,FL,triangle,600,ufo sighting over Cape Canaveral 10:00 pm sat. July 1st +2006-07-01,45.2102778,-123.1975,Mcminnville,OR,circle,900,UFO seen above hills in McMinnville Oregon- (2 witness see UFO 5+ occasions-) +2006-07-01,38.1916667,-120.8280556,Valley Springs,CA,disk,60,hovering object formed a cloud in front of my eyes +2006-07-01,45.1719444,-93.8744444,Buffalo,MN,disk,45,These were not fireworks +2006-07-01,42.1194444,-71.3255556,Norfolk,MA,sphere,60,It was a ball of opal or white with a little pink and green sheen to it. Not metal. No sound and it was pretty close to a plane. +2006-07-01,33.9163889,-81.5136111,Leesville,SC,other,20,radial light seen as two object separate in night sky +2006-07-01,44.8297222,-122.7933333,Sublimity,OR,sphere,20,Bright white spherical objects when stationary blinking white and red when travelling +2006-07-01,38.2494444,-122.0388889,Fairfield,CA,light,300,red light over Suisun City, Ca seen from Fairfield, Ca +2007-07-01,35.075,-85.0622222,Ooltewah,TN,changing,7200,brillant lights an some think am afraid to say +2007-07-01,38.7297222,-120.7975,Placerville,CA,light,30,1-2 sized orange light orb flew out of my throat and mouth. +2007-07-01,34.0194444,-118.4902778,Santa Monica,CA,circle,600,Cluster over Santa Monica, CA. +2007-07-01,41.5755556,-72.3325,Colchester,CT,disk,3,Briefly saw multicolored disk fly by fmaily car as we drove down a back road. +2007-07-01,28.0194444,-82.7719444,Dunedin,FL,triangle,900,Slow hardly no sound huge in size low flying +2007-07-01,34.4208333,-119.6972222,Santa Barbara,CA,oval,180,I saw a bright emerald green gigantic object hovering over the Pacific Ocean for two to three minutes. +2007-07-01,46.4166667,-117.0166667,Lewiston,ID,light,300,I was walking back from my shop to my house and looked up. The sky was partly overcast, but no rain, a few stars were visible. My att +2007-07-01,46.2113889,-119.1361111,Kennewick,WA,triangle,180,triangle ufo with red lights on each end, round edges, carnival ride noise +2007-07-01,45.5230556,-122.9886111,Hillsboro,OR,triangle,180,Quiet triangular craft, bright white lights, reduced to rapidly flashing blue & red lights, disappeared like a twinkling star +2007-07-01,30.7108333,-94.9327778,Livingston,TX,circle,60,Bright, circular white light moving over East Texas was easily seen with full moon out. ((NUFORC Note: Possible satellite. PD)) +2008-07-01,40.7544444,-86.3566667,Logansport,IN,sphere,60,Sphere shaped UFO / orange/red glow underneath over logansport IN +2008-07-01,48.3636111,-120.1211111,Twisp,WA,oval,30,2 lights heading north suddenly shifted direction due east, traveling 20 miles in as many seconds revealing a massive, visible oval UFO +2008-07-01,39.6133333,-105.0161111,Littleton,CO,circle,300,UFO seen in Littleton CO near airplane +2008-07-01,35.5083333,-78.3397222,Smithfield,NC,egg,2,Eggshaped ufo spotted near plane +2008-07-01,34.7355556,-77.9955556,Wallace,NC,chevron,10,Black chevron triangle with 5 dim circular lights/city block size/silent, flying tree top level +2009-07-01,48.4111111,-114.3366667,Whitefish (Just Outside Of),MT,unknown,30,Very Bright Object in the sky near Whitefish, Montana. ((NUFORC Note: Possible Iridium flare? PD)) +2009-07-01,38.9488889,-83.4058333,Peebles,OH,fireball,30,unusual lights over my house in Adams County, Ohio +2009-07-01,32.8138889,-96.9486111,Irving,TX,oval,10,Oval shaped aircraft shimmered in the sky and disappears +2009-07-01,37.3394444,-121.8938889,San Jose,CA,changing,180,sun shines of fuselage of very large high altitude object, small stationary light visible afterwards +2009-07-01,42.3266667,-122.8744444,Medford,OR,triangle,2,I saw a triangle shaped object in the sky above my back yard in Oregon. +2009-07-01,36.0725,-79.7922222,Greensboro,NC,sphere,2,Small metallic orb flying NE at an altitude of several hundred feet. +2009-07-01,33.4222222,-111.8219444,Mesa,AZ,light,600,2 brilliant lights in the Mesa, Arizona sky +2009-07-01,38.2855556,-85.8241667,New Albany,IN,unknown,600,A night out driving turned moment of awe thanks to moving lights above the trees. +2009-07-01,34.6988889,-76.7405556,Atlantic Beach,NC,light,1800,two red/ orange lights over ocean +2009-07-01,48.9466667,-122.4508333,Lynden,WA,light,10,Odd light in the sky +2009-07-01,38.4783333,-107.8755556,Montrose,CO,circle,10,solid bright light hovering in sky. +2009-07-01,42.4563889,-72.4102778,Shutesbury,MA,sphere,30,the light was very bright, like lightning bright. +2010-07-01,41.8458333,-71.0833333,Berkley,MA,light,600,one thing is for sure it was a bright white light no sound got bigger as it got next to me and a buzzing feeling +2010-07-01,39.5505556,-107.3241667,Glenwood Springs.,CO,light,180,Never seen any flying object like that or new something like that exsisted +2010-07-01,38.935,-74.9063889,Cape May,NJ,cylinder,30,highly reflective cylinder +2010-07-01,34.0805556,-118.0719444,Rosemead,CA,fireball,1200,July 1񫺚 20:00 rosemead, california fireball 20min a bright orange red beaming light flying over in rosemead , then disappeared +2010-07-01,34.9919444,-86.8469444,Ardmore,AL,unknown,180,Two red lights and a blue light over highway 53 near Ardmore, AL. +2010-07-01,35.6225,-117.67,Ridgecrest,CA,circle,37800,Light flashes, dark grey "satellite", periwinkle blue and white "satellite" +2010-07-01,42.6333333,-71.3166667,Lowell,MA,fireball,300,6 fireball lights seen overhead +2010-07-01,41.7688889,-88.6408333,Hinckley,IL,light,3600,Bright lights hoving between trees and water tower +2010-07-01,34.5794444,-118.1155556,Palmdale,CA,triangle,300,headed north west, over palmdale, followed by chase jet a triangle like pattern of lights with red light in the middle. Possiable TR3B +2010-07-01,40.1213889,-75.3402778,Norristown,PA,teardrop,28800,Teardrop bright light shaped craft seen in Norristown 6-29-10 and every night after at 10pm. ((NUFORC Note: Venus in wnw sky? PD)) +2010-07-01,33.8313889,-118.2811111,Carson,CA,triangle,37800,red/Orange light in Carson, CA ; Flashed, Shot out beams +2010-07-01,46.8722222,-113.9930556,Missoula,MT,fireball,180,Glowing orange fireball over Missoula, 10:30 p.m., July 1. +2010-07-01,35.0072222,-80.9452778,Fort Mill,SC,fireball,300,Five fireballs fying slowly across the Fort Mil, SC, sky at night; sighting of a possible alien. (NUFORC Note: Serious report?? PD)) +2010-07-01,42.8255556,-78.8236111,Lackawanna,NY,triangle,300,Approx 11 PM on July first I witnessed an array of three solid red lights and one pulsing bright white light fly over Botanical Gardens +2010-07-01,40.8263889,-74.1072222,Rutherford,NJ,fireball,30,Starships. ((NUFORC Note: Possibly satellites. PD)) +2010-07-01,39.9522222,-75.1641667,Philadelphia,PA,unknown,30,Four solid red lights sighted north of Philadelphia moving south in no particular formation disappeared one by one. +2010-07-01,39.0169444,-94.2813889,Blue Springs,MO,light,15,MISSOURI INVESTIGATORS GROUP REPORT: Noted a single light in NW sky traveling from my south moving NE. +2011-07-01,42.0333333,-71.2194444,Mansfield,MA,light,60,Two bright lights seen moving together at constant pace slowly dimming into darkness +2011-07-01,33.6888889,-78.8869444,Myrtle Beach,SC,circle,300,2 circular objects appearing as clusters of orange lights moving parallel to the coast off Myrtle Beach, SC. +2011-07-01,39.1433333,-77.2016667,Gaithersburg,MD,triangle,120,Strange high frequency noises heard in the sky. +2011-07-01,39.02,-86.7288889,Cincinnati (Suburbs),IN,rectangle,240,One reddish orange aircraft. +2011-07-01,42.5608333,-77.6963889,Dansville,NY,sphere,120,Witnessed an object in the night sky while camping that was orange like the sun fly overhead two times in a span of twenty minutes +2011-07-01,38.6786111,-121.7722222,Woodland,CA,unknown,180,What i seen with my own eyes. +2011-07-01,41.176944399999996,-112.0030556,Riverdale,UT,circle,60,soft white or opaque circular object +2011-07-01,36.6111111,-121.8505556,Seaside,CA,triangle,60,Two flying triangle shape objects +2011-07-01,37.8091667,-85.4669444,Bardstown,KY,fireball,1,Three Fireballs seen over Bardstown +2011-07-01,33.4936111,-117.1475,Temecula,CA,fireball,3600,Fireball that hovered for about an hour and changed shape +2011-07-01,41.7966667,-85.0052778,Kinderhook,MI,changing,300,Four witnesses see a black object fly overhead about 1ꯠ ft up and 300 yards away in clear evening light. +2011-07-01,47.4625,-92.5397222,Eveleth,MN,sphere,240,Three people see orange spherical UFO over Eveleth, MN. +2011-07-01,39.6469444,-106.9511111,Gypsum,CO,chevron,600,Chevron-shaped object in the sky above Eagle County, Colorado +2011-07-01,44.4583333,-93.1613889,Northfield,MN,fireball,60,Pulsating fireball hovering above tree line +2011-07-01,38.8119444,-94.5316667,Belton,MO,cross,45,A bright cross shaped, fire colored with diamond shaped aura flew straigh nort directly over head of me heading towards k.c., mo. +2011-07-01,43.2208333,-77.2833333,Ontario,NY,oval,180,ORANGE GLOWING OBJECT, HOVERING FIRST, THEN RAPIDLY ACCELERATING IN ONTARIO, NY +2011-07-01,38.5580556,-91.0119444,Washington,MO,triangle,120,;@ Approx 9:45 pm tonight my wife and I were sitting on our deck.Heard fire works going off in our Subdivison. I look to the South +2011-07-01,36.0997222,-80.2444444,Winston-Salem,NC,light,120,Bright as a star moving steadily across the sky then rose in altitude and vanished. ((NUFORC Note: ISS over-flight at 21:57 hrs. PD)) +2011-07-01,45.0941667,-93.3561111,Brooklyn Park,MN,fireball,180,red/orange balls over brooklyn Park target going east to west +2011-07-01,37.3316667,-83.0327778,Carrie,KY,circle,900,orbs of light in the sky +2011-07-01,36.1658333,-86.7844444,Nashville,TN,sphere,15,Yellow/Orange/Red Sphere seen in up close, in Middle TN. +2011-07-01,28.5380556,-81.3794444,Orlando,FL,triangle,120,Large Black Triangle object/White lights on corners/ Red light on center bottom and 3-6 white lights on bottom/ Slow moving +2011-07-01,42.8711111,-97.3969444,Yankton,SD,unknown,60,Yellow/orange light, had points, in the atmosphere and close to us, moved funny, faded away into the sky. +2011-07-01,41.1338889,-81.4847222,Cuyahoga Falls,OH,circle,180,it was friday night 11:30. i was in my back yard looking at the stars and i saw one that was moving very slowly. it came from the +2011-07-01,39.6444444,-86.8647222,Greencastle,IN,light,35,small light that turns on huge spot light with images in center of spot light. +2011-07-01,33.1975,-96.615,Mckinney,TX,circle,30,Orange ball of light. +2011-07-01,40.3477778,-79.8644444,Mckeesport,PA,light,60,Bright reddish-orange light observed crossing the sky from SE to NW in the direction of Pittsburgh. +2011-07-01,42.6525,-73.7566667,Albany,NY,fireball,1200,Glowing amber fireball hovering over Albany, NY, 7-1-2011 +2012-07-01,34.551944399999996,-77.9263889,Burgaw,NC,circle,120,Bright Orange Plasma Ball Photos. +2012-07-01,40.5408333,-74.5880556,Manville,NJ,fireball,900,Me and my girl friend and our best friend were sutting on my front pourch i was looking at the moon bugging my self out then we started +2012-07-01,40.4405556,-79.9961111,Pittsburgh,PA,light,900,Watched 2 craft in the night sky, one that went extremely fast, one that went extremely slow. +2012-07-01,34.2275,-83.8844444,Oakwood,GA,light,480,Three Bright White Lights observed in morning sky...OAKWOOD, HALL COUNTY Georgia JULY 1st. +2012-07-01,40.1797222,-76.1791667,Ephrata,PA,cone,2,Gold Metallic cone shape object in the sky above Ephrata +2012-07-01,41.49,-71.3133333,Newport,RI,circle,600,I saw a red fire ball that I thought was a plane on fire coming down diagonally from the sky.it landed in the ocean at first beach in N +2012-07-01,39.7683333,-86.1580556,Indianapolis,IN,sphere,6,I was traveling home lastnight and coming over the last hill before I turn into my neighborhood there's a fair skyline over an abundanc +2012-07-01,41.2083333,-96.1208333,Millard,NE,light,360,High altitude, high speed erratic moving light in the sky. +2012-07-01,39.0169444,-94.2813889,Blue Springs,MO,circle,180,At least 12 large round bright red lights seen in sky East of Blue Springs, MO on July 1, 2012 +2012-07-01,42.4841667,-76.4802778,Lansing,NY,circle,600,We saw two sets of two orange glowing lights travel from the north to south direction followed by a gray craft. +2012-07-01,41.22,-74.8716667,Dingmans Ferry,PA,oval,180,Saw orange/amber burning kind of orb flying low and silently North to South and then completely vanish as jet approached from the South +2012-07-01,41.0263889,-73.6288889,Greenwich,CT,light,300,Watched 3 bright orange lights flying then suddenly disappearing. +2012-07-01,40.8625,-76.7947222,Sunbury,PA,oval,300,Orange Globe Hovering over Sunbury. +2012-07-01,40.6955556,-73.3261111,Babylon,NY,fireball,60,At 10:30 p.m., I saw in the sky what looked like an airplane on fire heading south towards the Great South Bay in New York. +2012-07-01,40.6955556,-73.3261111,Babylon,NY,fireball,60,Red pulsating object visualized by my wife and I over Babylon NY, moving due South and abruptly disappearing.. +2012-07-01,42.2408333,-83.2697222,Taylor,MI,light,45,7-1-12 Orange lights spotted over Taylor,Mi near Metro Airport +2012-07-01,47.6063889,-122.3308333,Seattle,WA,other,45,A yellow orange shield shaped object about 3 to 4ft tall with a flame inside traveling in a S/SE direction at treeline. +2012-07-01,37.9747222,-81.5291667,Whitesville,WV,rectangle,2,On film @ angelanwv youtube. http://m.youtube.com/watch?v=A67fxy0O78s We had a windstorm on 6-29-12 that caused a blackout until 7-4-12 +2012-07-02,39.1619444,-84.4569444,Cincinnati,OH,disk,1200,I, and a friend, and her date were outside and noticed a strange orange light in the sky. At first glance we thought it was a star. But +2013-07-01,34.1686111,-80.0627778,Lamar,SC,triangle,240,((HOAX??)) 4 winged shaped ufos flying 2 or 300 feet with 2 jets flowing and a government car in the middle of the day. +2013-07-01,43.073055600000004,-89.4011111,Madison,WI,light,600,Saw a light like a star moving south non blinking disappeared. 5 min later saw 2 more one moving south and one moving east. +2013-07-01,47.6063889,-122.3308333,Seattle,WA,sphere,300,Black sphere over Seattle +2013-07-01,41.52,-88.2016667,Shorewood,IL,other,60,An orange glowing object, overhead, initially thought to be spent fireworks casing. However, it continued to glow consistently. It's di +2013-07-01,41.5380556,-72.8075,Meriden,CT,circle,120,There were several UFO passing by the wendys Restaurant in which I was eating over 12 different ones one after another one. +2013-07-01,39.0005556,-74.7997222,North Wildwood,NJ,circle,120,Red glowing orb sailing from north to south. +2013-07-01,39.0005556,-74.7997222,North Wildwood,NJ,fireball,60,This was a low flying, relatively fast moving orange glowing object. It was heading from South to Northwest. It did not appear to cha +2013-07-01,45.0761111,-93.3325,Brooklyn Center,MN,cigar,60,Two cigar shaped objects one on top of the over outlined in white lights at dusk above trees on Twin Lake. +2013-07-01,46.275,-84.5147222,Kinross,MI,light,2700,I saw a UFO near Kinross MI on July 1, 2013. +2013-07-01,31.8313889,-83.7380556,Arabi,GA,chevron,120,Pair of very low flying objects for the third time +2013-07-01,46.7325,-116.9991667,Moscow,ID,circle,180,3 floating figures in sky shaped and looked like a fire ball, but disappeared. +2013-07-01,34.9888889,-90.0125,Southaven,MS,fireball,420,Red and orange fireball flying slow and low heading towards tunica ms. Flying ball came out of wooded area +2013-07-01,43.3058333,-100.6577778,Mission,SD,unknown,300,A silent flaming disk traveling at a high rate of speed in the sky. +2013-07-01,40.7141667,-74.0063889,New York City (Bronx, Riverdale),NY,light,720,At least 2 white blinking lights hovering over NJ for 12 minutes by Riverdale, the Bronx. +1956-07-12,37.6922222,-97.3372222,Wichita,KS,unknown,90,Small, Silent, Metalic, And Very , Very Fast ! +1964-07-12,42.8819444,-122.8983333,Drew,OR,circle,1200,Date/Time 07/1964 City: Drew State: Oregon Shape Silver(Metallic) Disc Duration 30 min Summary object hovered above work location . +1965-07-12,35.0525,-78.8786111,Fayetteville,NC,circle,900,Right around 215 in the morning a green orb came in my bedroom and hovered for about 10mins to 15min. Ive been haunted by this for all +1965-07-12,34.0522222,-118.2427778,Los Angeles,CA,cigar,15,7/12/65 Santa Monica, California Cigar shaped, glowing red/orange in front, blue back half 15 seconds +1972-07-12,41.5963889,-72.8780556,Southington,CT,disk,900,Connecticut Siting - Daylight - 2 Silver and Black Saucers - Separated but moving as if they were one. +1973-07-12,41.1175,-73.4083333,Norwalk,CT,cigar,900,Strange lights in Norwalk, CT +1974-07-12,44.7930556,-89.7030556,Mosinee,WI,oval,900,this was clear looking and had lights in a band all the way around made no sound and felt like electricity +1976-07-12,41.7,-71.4166667,Warwick,RI,cigar,1800,I saw a fast moving, brightly lit, huge object, within 25 ft of me for half an hour. +1977-07-12,41.6005556,-93.6088889,Des Moines,IA,triangle,180,never made a sound +1977-07-12,37.5741667,-122.3783333,Hillsborough,CA,cigar,5,Cigar shaped ufo moving at speed of falling star but stoped. +1977-07-12,27.7705556,-82.6794444,St. Petersburg,FL,disk,120,Rare sighting of ufo formation shadow on the ground. +1978-07-12,41.9202778,-79.6405556,Corry,PA,light,420,1978 FLYING WAY TOO FAST TO BE A PLANE +1987-07-12,45.0847222,-93.0097222,White Bear Lake,MN,disk,1200,True Minnesota Sighting July 1987 +1990-07-12,33.0738889,-106.0180556,Tularosa,NM,unknown,57600,IN 1990 I WAS WORKING A MINING CLAIM NORTH WEST OF TULAROSA NM. I WAS ALONE I DONT DRINK OR DO DRUGS. I WAS EATING MY LUNCH AT 1100 THE +1990-07-12,45.0788889,-123.4847222,Willamina,OR,rectangle,120,RAINBOW PHOTO IN OREGON SHOWS TRIANGLE OBJECT IN SKY. +1993-07-12,41.6619444,-86.1586111,Mishawaka,IN,circle,300,two craft cicled one another for a short while, then stopped, and rapidly ascended upward out of view. +1993-07-12,43.0944444,-79.0569444,Niagara Falls,NY,formation,30,While walking with two friends in single file. First in line stopped and said something to second friend who was also second in line wi +1994-07-12,41.2872222,-84.5536111,Sherwood,OH,unknown,420,I saw 2 unidentified objects, one chasing the other, watched them for 6 minutes, then were gone. +1994-07-12,38.1502778,-92.6177778,Osage Beach,MO,changing,420,Bright Object in sky that appeared to be falling then stopped split into two object then back to one then sped off. +1995-07-12,40.7608333,-111.8902778,Salt Lake City,UT,disk,1200,i saw what i saw, i cant deny what my eyes have seen and unless i can speak to the source will never know the truth. +1995-07-12,44.0261111,-90.0738889,Necedah,WI,light,600,Green Lightts spotted dropping into river and leaving, returns every year +1997-07-12,33.8169444,-81.1011111,Gaston,SC,light,15,I drive a sweeping truck for a living,and this night an employee and i were heading to our next stop,when we both noticed a red light s +1997-07-12,39.4808333,-84.4577778,Trenton,OH,disk,480,Saucer/lights, no sound. Lasted around 7 mins and it was daytime. +1998-07-12,39.6283333,-84.1594444,Centerville,OH,light,60,Bright flashing light in an orangish color from the sky. +1998-07-12,34.6058333,-86.9833333,Decatur,AL,other,120,8 Tentcle type things made of beams attached to a circular craft. +1998-07-12,35.6708333,-80.4744444,Salisbury (E Ridge Rd.),NC,fireball,20,Bright self illuminated object traveling SE to NW Changed direction at least twice at very high speed and at very sharp angles say at l +1998-07-12,42.6383333,-79.0280556,Angola,NY,formation,600,I saw 4 distinct shapes in the sky flying very slowly . They flew in formation eastward , then wheeled back west . After a few min. of +1999-07-12,36.9741667,-122.0297222,Santa Cruz (@ 3200ft Near Bonnie Doon Airport),CA,circle,300,Writer 47 Yrs old located at W.End Henry Cowell Rewdood State Park at my Private Residence 3200 Ft. off the Pacific Coast Santa Cruz, C +1999-07-12,43.3369444,-71.5658333,Canterbury,NH,circle,120,LARGE ORANGE REDDISH BALL MOVEING SLOWLY THE HILLS, VERY EARLY IN THE MORNING. +1999-07-12,32.7355556,-97.1077778,Arlington,TX,unknown,900,One vehicle stopped and changed directions. The other vehicle approached and they circled each other. Then one left heading south and +1999-07-12,39.7286111,-121.8363889,Chico,CA,light,120,A bright, steady light traversed the sky over my area from SSW to ENE. It appeared to be at great altitude be cause the light seemed to +1999-07-12,45.4208333,-122.6694444,Lake Oswego (Portland),OR,light,1200,My boyfriend and I saw 3 peach colored lights (spheres) hovering for about 20 minutes over the south sky. +1999-07-12,39.9547222,-82.8122222,Reynoldsburg,OH,sphere,2700,I was looking out my 3rd floor window and looked to the north west , toward the airport and saw bright lights floating just above the t +2000-07-12,41.3977778,-79.8316667,Franklin,PA,disk,3600,Disc shaped object over NW Pa +2000-07-12,45.5236111,-122.675,Portland,OR,cylinder,45,I saw a cylindrical object hovering and moving in a "square" pattern and then it sped away at a great rate of speed. +2000-07-12,41.6655556,-74.4302778,Spring Glen,NY,disk,5,Observed a typical type saucer traveling from Northwest to Southeast at approximately 2ꯠ to 2귔 feet above ground. The Saucer was +2000-07-12,33.3527778,-111.7883333,Gilbert,AZ,light,900,The object was south of the phoenix area. It was red in color and pulsated dim to bright. It appeared to be stationary. It also puls +2000-07-12,33.3527778,-111.7883333,Gilbert,AZ,unknown,600,Observed a bright red large glowing light moving very slowly over Gilbert, AZ from the west to the east +2000-07-12,33.3527778,-111.7883333,Gilbert,AZ,circle,1200,A BRIGHT OBJECT CAME OUT OF THE WEST SLOWLY AND LOW, THEN ROSE TO THE HIEGHT OF THE STARS. +2000-07-12,33.3527778,-111.7883333,Gilbert,AZ,diamond,300,It look like a red diamond in the sky...... +2000-07-12,33.3527778,-111.7883333,Gilbert,AZ,diamond,300,The shape appeared to be more of a "collapesed star or diamond" it was a bright red light moving very slow. The shape move slowly eas +2000-07-12,33.3527778,-111.7883333,Gilbert,AZ,fireball,300,A very slow bright & shiny red fireball. It looked like the fireball was from space because it was higher than the airplanes. +2000-07-12,33.3061111,-111.8405556,Chandler,AZ,circle,720,blood red object videotaped with 2 camera over Phoenix valley +2000-07-12,33.5386111,-112.1852778,Glendale,AZ,light,300,I saw and then video taped a red ufo that would pulsate ,and then a white ufo shot over the top of the red one I was taping. +2000-07-12,33.3527778,-111.7883333,Gilbert,AZ,light,120,red bright pulsating light +2000-07-12,35.0227778,-93.0475,Casa,AR,cigar,7200,TINY GREEN SKIPPING LIGHTS IN CASA NEAR PETTITJEAN MT. +2000-07-12,42.1591667,-79.5955556,Sherman,NY,light,60,Me: I think I saw a streak or some sort of flashing that lasted for an unimaganably small amount of time (I saw this part out of the co +2000-07-13,36.1658333,-86.7844444,Nashville,TN,sphere,2400,while driving on a backroad two passengers saw a sphere hovering in the sky. It dissapeared in a white flash after 30 minutes. +2001-07-12,47.6741667,-122.1202778,Redmond,WA,sphere,2,Greenish-white sphere seen heading North over I-405, Kirkland/Lynnwood area +2001-07-12,48.1988889,-122.1238889,Arlington,WA,light,3,brilliant green flame seen at approximatly 600 feet +2001-07-12,48.1172222,-122.7591667,Port Townsend,WA,fireball,600,My friend and i saw a bright object that looked like a planet or a star, but was way too bright to be either, even venus. +2001-07-12,33.3316667,-105.6725,Ruidoso (Bonita Lake),NM,flash,10,Flash of Light, followed by a orange fireball +2001-07-12,37.9747222,-87.5558333,Evansville,IN,circle,45,WHITE SILENT CIRCLE THAT FADES IN BRIGHTNESS, TRAVELING SOTHWEST TO NORTHEAST AT 5ꯠ FEET +2001-07-12,36.1658333,-86.7844444,Nashville,TN,oval,40,what i saw was not of this world +2001-07-12,40.7966667,-74.4819444,Morristown,NJ,light,5,UFO sighting on 7/12/01 +2002-07-12,44.0805556,-103.2305556,Rapid City,SD,light,120,spooky light that shines at you but tries to act like a star in a constellation afterwards. +2002-07-12,42.8713889,-112.4447222,Pocatello,ID,triangle,1800,Multiple Objects +2002-07-12,40.7302778,-80.3102778,New Brighton,PA,cigar,25,In the middle of a narrow chemtrail's haze, hovered a luminous diagonal white line. +2002-07-12,47.9130556,-122.0969444,Snohomish,WA,circle,60,Tiny, white dots +2002-07-12,42.8863889,-78.8786111,Buffalo,NY,unknown,6,I was standing in the backyard (house is double - built facing west) when i obseved pigeons on the roof. I made jestures in an attempt +2002-07-12,40.9280556,-75.915,Beaver Meadows,PA,oval,4,The noiseless, glowing oval orange craft hovered above just to disapear as I look away to tell friends. +2002-07-12,45.5230556,-122.9886111,Hillsboro,OR,changing,600,fire in the sky +2002-07-12,32.3413889,-90.3216667,Clinton,MS,triangle,120,Triangular object seen twice within one hour, in a city area, 4 witnesses. +2002-07-12,41.3977778,-79.8316667,Franklin,PA,light,60,A light moved across the sky. +2002-07-12,44.8011111,-68.7783333,Bangor,ME,cigar,60,two bright white lights(front and back), no noise, moving slow, low to ground, near airbase/airport +2003-07-12,35.6008333,-82.5541667,Asheville,NC,light,90,I saw a bright light that seemed to be sucked into another dimension when I looked at it, and there was a loud "booming" sound as it di +2003-07-12,34.1063889,-117.5922222,Rancho Cucamonga,CA,oval,1200,The object floated on the sky making no noise whatsoever +2003-07-12,39.8208333,-84.0194444,Fairborn,OH,cigar,120,cigar shapped craft,moving very fast and very high;with no contrail! +2003-07-12,39.8466667,-75.7119444,Kennett Square,PA,oval,5,oval shaped flaming light +2003-07-12,38.4783333,-82.6380556,Ashland,KY,disk,1800,we saw a light, then 20 or 30, mother saw aleans supposedly, and we woke up 30 minutes later in a different place on the road. +2003-07-12,37.6447222,-115.7427778,Rachel,NV,unknown,180,6 objects flying north near area 51 +2003-07-12,45.065,-87.1241667,Baileys Harbor,WI,light,20,Sattelite? ((NUFORC Note: We observe that description of event is not inconsistent with the sighting of an Iridium satellite. PD)) +2004-07-12,44.4244444,-111.3702778,Island Park,ID,disk,180,Object coming out of the sky +2004-07-12,39.9369444,-120.9461111,Quincy,CA,egg,180,Shimmering egg shaped object heading north over CA. +2004-07-12,33.9022222,-118.0808333,Norwalk,CA,disk,109800,Sitting outside in the afternoon I saw a tiny light in the sky. Thought it was a star but kept an eye on it. It changed directions, it +2004-07-12,38.4191667,-82.4452778,Huntington,WV,cylinder,60,cylinder shaped craft enters cloud bank and never reappears +2004-07-12,45.5608333,-94.1622222,St. Cloud,MN,sphere,60,This time I saw what looked to be spherical, and in the broad daylight!! +2004-07-12,36.865,-87.8352778,Cadiz,KY,circle,20,Round very bright object that appeared in a instant. Very high in the sky then moved to the south. +2004-07-12,39.6005556,-82.9461111,Circleville,OH,oval,30,MAYBE THEY WERE HUNGRY??? +2004-07-12,36.1397222,-120.3591667,Coalinga,CA,triangle,600,previously reported triangular craft flying low over Interstate 5 +2004-07-12,40.7141667,-74.0063889,New York City (Yonkers),NY,oval,7200,Mind Controlled by Aliens +2005-07-12,45.4872222,-122.8025,Beaverton,OR,changing,45,Changing shape visited, and hovered over suburban area. +2005-07-12,29.96,-90.2155556,River Ridge,LA,other,3,Strange long light opens in the sky. +2005-07-12,35.2269444,-80.8433333,Charlotte,NC,formation,20,6 or 7 lights flying in half a 'vee' formation +2005-07-12,33.3061111,-111.8405556,Chandler,AZ,light,10,Star=like object at sunset simply disappears in mid-flight... +2005-07-12,34.15,-114.2883333,Parker,AZ,formation,180,((NUFORC Note: Possible "NOSS" satellites. PD)) Clear night moving triangle formation across night sky, followed by flashing lights. +2006-07-12,31.5544444,-110.3030556,Sierra Vista,AZ,changing,3600,Bright chemtrail or similar during early morning phenomenon. ((NUFORC Note: We suspect a "contrail," not "chemtrail." PD)) +2006-07-12,32.2216667,-110.9258333,Tucson,AZ,unknown,2700,smoke trails and lights +2006-07-12,32.77,-108.2797222,Silver City,NM,changing,5400,Unusual cloudlike formation with extending tendrils seen over Silver City, New Mexico +2006-07-12,32.77,-108.2797222,Silver City,NM,circle,1800,2 ufo sightings silver city new mexico July 12, 2006 +2006-07-12,40.1302778,-75.5152778,Phoenixville,PA,unknown,240,Saw a small star like object traversing the sky at a high altitude north to south. +2006-07-12,35.7913889,-78.7813889,Cary,NC,sphere,3,white orb moves into cloud +2006-07-12,27.9472222,-82.4586111,Tampa,FL,circle,300,Black Circular object flying high over tampa Florida +2006-07-12,30.1763889,-85.8055556,Panama City Beach,FL,unknown,18000,alot light flashing red white and blue over panama city beach +2006-07-12,46.5925,-90.8836111,Ashland,WI,disk,60,We saw six UFOs on that night. It was really freaky... It was freaky sleeping afterwards. +2006-07-12,46.9811111,-123.8880556,Hoquiam,WA,triangle,60,White lights to form a triangular shape with two red lights in the center floating low over a city block. +2006-07-12,40.0363889,-88.9569444,Maroa,IL,changing,2,What looked like a star got really bright then returned to normal and moved across the sky. ((NUFORC Note: Iridium satellite? PD)) +2007-07-12,39.7683333,-86.1580556,Indianapolis,IN,light,15,Light. ((NUFORC Note: Flare of Iridium satellite? PD)) +2007-07-12,36.175,-115.1363889,Las Vegas,NV,light,7200,Lights (red, green, yellow, orange and blue) rotating around a brilliant white light due west of Las Vegas at about 30 degrees. +2007-07-12,40.7141667,-74.0063889,New York City (Queens),NY,light,1500,Floating "object" from which round ball of white light detached and hovered in definite pattern formation, numerous times. +2007-07-12,37.8030556,-89.0275,Herrin,IL,circle,120,the object turned as the wind blew +2007-07-12,39.8402778,-88.9547222,Decatur,IL,disk,180,UFO hovering just feet above a neighboring house. +2007-07-12,45.2944444,-123.1752778,Carlton,OR,cylinder,60,A four foot round cigar shaped object made of branches hanging in the sky by itself. Totally motionless. +2007-07-12,39.7286111,-121.8363889,Chico,CA,circle,600,Plane chasing lights moving oddly +2007-07-12,41.9141667,-88.3086111,St. Charles,IL,fireball,600,I think there were humans aboard this giant ufo craft, The air forces span for hours. ((NUFORC Note: Star or planet? PD)) +2007-07-12,34.4263889,-117.3,Hesperia,CA,light,4,A small craft size light moving south to north at 9:32 PM on Thursday, July 12, 2007 over Hesperia, Ca. +2007-07-12,41.245,-75.9311111,Larksville,PA,light,15,the sighting was like a reverse metiorite sighting. +2007-07-12,45.4983333,-122.4302778,Gresham,OR,light,15,Strange light attracting smaller lights of eradict movements during lighting and thunder storm sky empty of commercial aircraft +2007-07-12,41.88,-88.0077778,Lombard,IL,sphere,180,Round craft flying low over Unincorporated Lombard +2008-07-12,41.3894444,-82.0191667,North Ridgeville,OH,flash,30,Bright lights darting in the sky +2008-07-12,42.9980556,-74.6833333,Saint Johnsville,NY,triangle,900,big black triangle shaped craft +2008-07-12,24.5552778,-81.7827778,Key West,FL,fireball,180,I was in the back yard having a cigarette when I saw a shooting star or so I thought. The object looked like a fireball coming down fr +2008-07-12,41.7797222,-71.4377778,Cranston,RI,light,720,See's light over Cranston +2008-07-12,32.1530556,-94.7991667,Henderson,TX,unknown,5,Object with pulsating red and white lights appears in the middle of the sky and travels to the horizon at extremely high velocity. +2008-07-12,43.2233333,-85.5513889,Cedar Springs,MI,light,180,Orange orb and 3 flashes in the northern sky/horizon +2008-07-12,41.2844444,-84.3558333,Defiance,OH,circle,278,Strange light, accompanied by sulfur odor +2008-07-12,46.8711111,-89.3138889,Ontonagon,MI,triangle,4800,((HOAX??)) first an orb and then a triangle 20 minutes apart. +2008-07-12,36.505,-101.7825,Texhoma,OK,unknown,600,The green light zoomed across the lake leaving a splitting wake that parted the water. +2008-07-12,47.2483333,-122.3116667,Milton,WA,formation,180,saw shapes in the sky moving west +2008-07-12,36.3133333,-82.3536111,Johnson City,TN,disk,30,Watched 2 disks travelling at high speed over Boone Lake, TN. +2008-07-12,44.5402778,-123.3663889,Philomath,OR,rectangle,120,Staionary rectangular object in sky near Mary's Peak spoted from car but disapeared when we pulled over to look. +2008-07-12,32.7763889,-79.9311111,Charleston,SC,light,120,Two lights in the sky that stopped and hovered above us before shooting off in different directions very fast. +2008-07-12,42.425,-71.0666667,Malden (Boston),MA,oval,180,Large very bright (white) oval shaped object with big red light and center and green lights around +2008-07-12,36.3352778,-92.385,Mountain Home,AR,circle,420,I was amazed that these objects did not move and it was too high, and silent, to be helicopters +2008-07-12,45.5236111,-122.675,Portland,OR,oval,15,the object was very illuminated in the night sky much brighter then the brightest star in the dipper it was passing by. +2008-07-12,32.7252778,-97.3205556,Fort Worth,TX,triangle,10800,Large triangular shaped craft with white lights blinking or rotating around it. ((NUFORC Note: Twinkling stars? PD)) +2008-07-12,34.1063889,-117.3694444,Rialto,CA,light,9000,Ziggzagging white and red/white lights over Rialto, CA +2009-07-12,36.175,-115.1363889,Las Vegas,NV,light,2,green light seen over nellis afb shoots into outerspace. +2009-07-12,34.0202778,-117.8644444,Walnut,CA,other,4,object flying right above a sedan vehicle +2009-07-12,44.4583333,-93.1613889,Northfield,MN,unknown,60,Basically a dark spot in the night sky with very distinct non-aircraft lights, Went from SW to NE +2009-07-12,37.3394444,-121.8938889,San Jose,CA,circle,7200,Spotted 7 total objects in the daylight sky. 2 stayed for over 10 mins before flying away. Polarized sunglasses aided view . +2009-07-12,44.0872222,-69.7994444,Richmond,ME,triangle,300,i was traveling west on 197 headed to work on a sunday night, a bright white light appeared on horizion +2009-07-12,38.6927778,-75.075,Dewey Beach,DE,fireball,300,Large fireball over Dewey Beach, Delaware +2009-07-12,46.7833333,-92.1063889,Duluth,MN,oval,600,A minor amber color trail, (from where we were) extremely slow movement, and an odd amber coloration like the "Phoenix Lights". +2009-07-12,40.4405556,-79.9961111,Pittsburgh,PA,sphere,180,Deep-Orange Pulsating Object flying slowly over a suburb of Pittsburgh +2009-07-12,36.7327778,-83.0822222,Ben Hur,VA,unknown,20,Large round ball of &quot;fire&quot; over Ben Hur, VA Summer of 2009 +2009-07-12,27.9375,-82.2861111,Brandon,FL,circle,2,Ball of light falls from the sky. +2010-07-12,42.3136111,-122.9658333,Jacksonville,OR,diamond,13,Single golden diamond shaped object, very fast. +2010-07-12,43.6613889,-70.2558333,Portland,ME,light,20,Venus sized light +2010-07-12,47.9372222,-119.8752778,Azwell,WA,light,300,Bright pulsing light, +2010-07-12,32.7833333,-96.8,Dallas,TX,other,1,UFO over I75 and I635 in Dallas TX 07-12 2010 at 8pm +2010-07-12,34.1808333,-118.3080556,Burbank,CA,changing,600,Numerous black parachute-like objects, very fast-moving, split off in different directions, then one triangular-shaped flat object. +2010-07-12,37.7397222,-121.4241667,Tracy,CA,other,900,Bright blue light over Tracy, CA +2010-07-12,44.5727778,-116.675,Cambridge,ID,sphere,7200,A second sighting in a small rural Idaho town. +2010-07-12,40.4797222,-85.6277778,Jonesboro,IN,light,30,Slow moving light from East to West about 70 degrees up ,Blinking very slowly, then dissappeared. +2010-07-12,35.7330556,-81.3413889,Hickory,NC,disk,625,it is not the first time the passed 2 weeks that we have seen this object. ((NUFORC Note: Venus. PD)) +2010-07-12,38.9783333,-76.4925,Annapolis,MD,light,5,Yellow lights in formation; very fast; no sound. ((NUFORC Note Report from former military aviator. PD)) +2010-07-12,31.4636111,-100.4366667,San Angelo,TX,light,12,Ultra bright ball of light flying very low over texas. +2011-07-12,42.9294444,-85.2130556,Saranac,MI,triangle,300,Three lights slowly and silently passed over my house +2011-07-12,44.8833333,-69.4480556,Hartland,ME,sphere,180,UFOs over Great moose Lake, Maine 7-12-11 +2011-07-12,28.3858333,-80.7422222,Cocoa,FL,light,300,Moving Light Flash in the Northern Sky +2011-07-12,40.7086111,-113.1166667,Clive,UT,cigar,1500,25+ mins: Hovering crafts seen near lakeside military area/ Clive Utah +2011-07-12,35.1494444,-90.0488889,Memphis,TN,cigar,1800,More Objects Over Memphis +2011-07-12,39.3458333,-84.5605556,Fairfield,OH,disk,120,Saucer with Winged-Shaped Lights +2012-07-12,47.9447222,-122.3033333,Mukilteo,WA,fireball,480,Red light seen over Mukilteo, WA. ((NUFORC Note: Report from witness with commercial/ATP pilot rating. PD)) +2012-07-12,39.0997222,-94.5783333,Kansas City,MO,diamond,7200,All the ships were moving indepently and then they conected and then move at the same time +2012-07-12,41.1016667,-80.7647222,Austintown,OH,sphere,10,On the morning of 07-12-12 at exactly 0312 hours while working, I was looking up and into the southeast over Youngstown, Oh. and obsere +2012-07-12,39.6836111,-75.75,Newark,DE,flash,600,Red blinking light near Venus on 7/12/12 +2012-07-12,40.8152778,-73.1127778,Ronkonkoma,NY,circle,1200,Stange unidentified red flashing lights in Southern sky moving west +2012-07-12,37.0583333,-120.8488889,Los Banos,CA,triangle,180,A triangle shaped object turning different colors and shapes zig zagging at a high speed +2012-07-12,33.8158333,-78.6802778,North Myrtle Beach,SC,fireball,20,Large fireball seen over North Myrtle beach. +2012-07-12,38.6272222,-90.1977778,St. Louis,MO,fireball,300,Glowing orange balls of light moving silently throught the sky +2012-07-12,39.0427778,-75.5722222,Viola,DE,other,120,Mysterious light resembling fire scanning cylinder +2012-07-12,35.1427778,-120.6402778,Pismo Beach,CA,disk,60,Dark Silver Sphere Hovering Above the Street With red and green lights. +2012-07-12,41.1538889,-80.7016667,Girard,OH,oval,180,Once in a lifetime +2012-07-12,39.3958333,-101.0519444,Colby,KS,cylinder,480,Cylindrical object at night +2012-07-12,29.8944444,-81.3147222,St. Augustine,FL,fireball,180,Red fireball? flys across St. Augustine sky! +2012-07-12,27.3016667,-82.5516667,Siesta Key,FL,diamond,600,While in the pool at our condo, I noticed a red light in the sky far out over the Gulf. Over several minutes it moved closer traveling +2012-07-13,41.7711111,-81.05,Madison,OH,sphere,120,Strange object with red and white lights appears from behind my woods. +2012-07-13,45.1244444,-92.6733333,Somerset,WI,light,3600,Lights in the Sky +2013-07-12,35.2269444,-80.8433333,Charlotte,NC,oval,120,Orange and blue oval lights lit up! the night sky like daylight & dissapeared very hight rate of speed. +2013-07-12,45.8322222,-93.4261111,Ogilvie,MN,light,10,Blueish white light of increasing intensity then faded to black after a sharp cources correction. +2013-07-12,36.0997222,-80.2444444,Winston-Salem,NC,light,600,My boyfriend and I was pullin in our drive way when we saw two lights which looked almost as spotlights moving in a circular motion abo +2013-07-12,33.8352778,-117.9136111,Anaheim,CA,light,5,A bright star-like white light suddenly appeared around 8 a.m., a dark shaft appeared hanging down from it, then vanished. +2013-07-12,43.0986111,-77.4422222,Fairport,NY,circle,60,A circle craft being followed by two military jets which were close together and NO SOUND from the 3 of them. +2013-07-12,33.8136111,-85.7613889,Jacksonville,AL,circle,180,Circle Appears from cloud cover and moves west. Photos available +2013-07-12,41.3302778,-80.7255556,Cortland,OH,fireball,120,Red-orange fireball travelling from northeast to southwest bright enough to be seen as it passed behind clouds +2013-07-12,32.7833333,-96.8,Dallas,TX,other,30,BOX SHAPED OR SQUARE SHAPE UFO OVER DOWNTOWN DALLAS +2013-07-12,42.4405556,-76.4969444,Ithaca,NY,fireball,600,Bright orange slow moving light. +2013-07-12,30.2458333,-87.7008333,Gulf Shores,AL,circle,300,Silent Red/Orange ball of light traversing west to east over Gulf of Mexico. +2013-07-12,34.7877778,-82.6925,Liberty,SC,cross,60,It's a bird! It's a plane! It's a what?! +2013-07-12,38.2541667,-85.7594444,Louisville,KY,circle,30,A circular bright white light flickering with a red light in the center in the northwest sky. +2013-07-12,45.7833333,-108.5,Billings,MT,flash,10800,Flashing white lights with orange glow & loud sounds during event +2013-07-12,44.3269444,-72.7530556,Duxbury,VT,circle,900,Orange Light Circles in Sky over Central Vermont. +2013-07-12,38.4088889,-121.3705556,Elk Grove,CA,circle,60,Bright star like object moves fast before stopping and immiting bright white light +2013-07-12,41.1305556,-85.1288889,Fort Wayne,IN,oval,30,Fast, silent, squadrons of oval shaped almost transparent objects flying at night +2013-07-12,37.5,-80.1111111,New Castle,VA,triangle,300,A triangular shaped craft floated through the valley. +2013-07-12,38.6125,-90.3244444,Maplewood (St. Louis),MO,other,60,White Glowing, size changing Orb sighted by 2 in Maplewood, Mo. +2013-07-12,47.3075,-122.2272222,Auburn,WA,sphere,480,White glowing sphere slowly travels across night sky, hovers a minute then ascends up through clouds +2013-07-12,48.7597222,-122.4869444,Bellingham,WA,triangle,900,12 strobing white lights, moving south to north, that stopped and got smaller until it appeared to be a constellation. +2013-07-12,35.5847222,-80.8102778,Mooresville,NC,unknown,5,Extremely bright light shot through the sky +2013-07-12,35.2269444,-80.8433333,Charlotte,NC,fireball,5,Ball/sphereical shape passes over me while driving and implodes blue then disappears +1952-07-13,38.8902778,-77.0844444,Arlington,VA,oval,1200,1952 green disc-shaped object circling over Washington, DC area +1957-07-13,38.4277778,-82.4572222,Chesapeake,OH,disk,600,A silent,spinning daylight disc. +1968-07-13,40.5066667,-74.2658333,Perth Amboy,NJ,circle,120,Hovering circular object over Perth Amboy Drive In +1970-07-13,18.1886111,-66.3066667,Barranquitas (Puerto Rico),PR,other,60,The object that I saw, up close and personal,chose me. It did'nt just fall from the sky. It was put there. +1974-07-14,45.3861111,-91.0380556,Conrath,WI,disk,900,Saucer Shaped Vehicle Looked Like Saturn But I could see Windows in it. and it looker like some small people looking back at us. +1975-07-13,47.7558333,-122.3402778,Shoreline,WA,egg,300,When driving north on I-5 just north of Seattle we noticed a group of persons standing on the side of the freeway pointing and looking +1979-07-13,34.3916667,-118.5416667,Santa Clarita,CA,disk,40,Up close over backyard pool +1980-07-14,44.5047222,-72.3686111,Hardwick,VT,cylinder,40,The craft passed over us very slowly making no sound about 30 ft above the car we sat in. +1985-07-13,40.9355556,-74.1866667,Haledon,NJ,chevron,30,V shaped craft sighted twice over rural area. +1986-07-13,39.8963889,-80.1794444,Waynesburg (Outside Of),PA,diamond,600,3 orange discs witnessed by 4 people in Greene County, western Pa. in the summer of 1986 +1986-07-13,33.4483333,-112.0733333,Phoenix,AZ,fireball,1200,one fireball in the sky then 3 black shapes come from the fireball and floted and three more black shapes come from fireball some moved +1990-07-13,41.3358333,-71.9063889,Stonington,CT,triangle,120,Tringular object hovering silouhetted against bright starlit night. Country road where absolute dark was at the time (norm) 2 mile dirt +1993-07-13,39.0483333,-95.6777778,Topeka,KS,triangle,300,I saw a triangular UFO with three lights on it one evening in 1993. +1998-07-13,42.5416667,-96.5055556,Mccook Lake,SD,unknown,9,Four white lights, 60 - 80 mph, completely silent in close proximity. +1998-07-13,41.4788889,-87.4547222,Schererville,IN,sphere,300,Red dot split in two pieces - shot in different directions +1998-07-13,35.3733333,-119.0177778,Bakersfield,CA,unknown,5,Electrical interference (TV/lights), massive, fast-moving shadow covering whole yard and more. Silent. +1998-07-13,43.4666667,-112.0333333,Idaho Falls,ID,triangle,30,Saw two triangular objects in near proximity of each other with circular white lights near the points of each of the objects. I soon r +1999-07-13,38.9675,-89.7638889,Livingston,IL,sphere,120,While driving on I-55 near Livingston, Il saw bright light in sky, much larger than the stars +1999-07-13,30.7013889,-91.4361111,New Roads,LA,triangle,20,Translucent watery appearance with waves like heat waves. +1999-07-13,42.0405556,-87.7825,Morton Grove,IL,fireball,3,I to saw what looked like a comet at about 12:30 PM. I was out on the drive way with a friend large comet with a long tail. It was very +1999-07-13,47.2530556,-122.4430556,Tacoma,WA,cigar,300,Silvery craft looking like a Boeing 777 shape sized craft w/no discernable wings or tail (except a small vertical stabiler, looked like +1999-07-13,40.9113889,-73.7827778,New Rochelle,NY,circle,7,It was about 7:30pm and I was observing the fishermen and planes land at a nearby airport. +1999-07-13,46.8722222,-113.9930556,Missoula,MT,cigar,180,Coming home late from a soccer match, I saw the objects moving from behind a local mountain towards the south end of town. They moved s +2000-07-13,33.3527778,-111.7883333,Gilbert,AZ,circle,1500,A red brilliant light hovered above my community for approximately 25 minutes, quickly disappearing into the sky. +2000-07-13,33.3527778,-111.7883333,Gilbert,AZ,circle,900,FOR THE SECOND NIGHT IN A ROW THE SAME OBJECT RETURNED OUT OF THE WEST AGAIN MOVING TO THE SOUTH EAST.FROM MY VANTAGE POINT IT STOPPED +2000-07-13,33.3527778,-111.7883333,Gilbert,AZ,light,600,Looked like a red dot or few red dots just below the cloud level. +2000-07-13,33.5386111,-112.1852778,Glendale,AZ,fireball,720,This time I went out to a hill to try to video tape the UFO again. And it came back at about the same time. I video taped the red UFO f +2000-07-13,33.3527778,-111.7883333,Gilbert,AZ,circle,660,A bright red object, pulsing high in the sky, hovered for approximately 11:00. It made no sound nor had a jet trail. +2000-07-13,42.1027778,-77.2338889,Addison,NY,circle,900,i thought it was a star till it started moving. +2000-07-13,34.0625,-118.1219444,Monterey Park,CA,cigar,1500,brightlights it moved like a snake or wave motion look like a sting of lights with curves at each end +2000-07-13,43.8844444,-91.235,Onalaska,WI,fireball,480,2 "objects" or "fireballs" travelling at high speeds over West Central Wisconsin +2000-07-13,40.1213889,-75.3402778,Norristown,PA,light,900,The objects I observed looked like just any other star in the sky,except they moved ... +2000-07-13,40.7413889,-74.36,Summit,NJ,disk,120,Couple of people in our house saw a brigh Saucer/ circle shaped object moving west to North on clear skies. The object was emitting wh +2001-07-13,39.3419444,-78.7569444,Romney,WV,fireball,20,WE ARE WALKING TOWARDS MY HOUSE (ME AND MY FRIEND) AND A BIG ORANGE FIRE BALL JUST SITTING THERE IN THE SKY......WE DIDN'T KNOW WHAT TO +2001-07-13,37.505,-105.0072222,La Veta,CO,changing,20,On the horizon, bobbing and weaving changing colors with tenacity. +2001-07-13,43.6955556,-116.3530556,Eagle,ID,circle,479,smal circular light in sky lasted 6 min. +2001-07-13,42.9708333,-82.425,Port Huron,MI,triangle,8,Triangle shape in the sky moving fast with rows of dim lights. +2001-07-13,45.8958333,-119.4902778,Irrigon,OR,cigar,45,Very Large cigar/cone shaped object witnessed over Columbia River. +2001-07-13,35.9130556,-79.0561111,Chapel Hill,NC,triangle,3600,Strange objects near Research Triangle Park, NC +2001-07-13,39.9611111,-82.9988889,Columbus,OH,sphere,180,I HAVE BEEN DOING ASSTRONOMY, FOR YEARS,AND HAD JUST FINISHED SETTING UP MY TELESCOPES. IWAS LOOKING FOR A SATELLITE, THAT WAS DUE TO F +2001-07-13,40.805,-81.9352778,Wooster,OH,circle,3600,A circular white light that changes from red to blue to green in a circular motion as a strobe light in the SW part of the sky. +2001-07-13,42.4727778,-122.8016667,Eagle Point,OR,other,10,Silent flaming yellow-green object +2001-07-13,48.3597222,-107.8736111,Malta,MT,light,1200,Strange triangular light sighting over Northern Montana +2001-07-13,42.2711111,-89.0938889,Rockford,IL,sphere,300,((NUFORC Note: Witness indicates observing a "sphere," but offers no other details. PD)) +2001-07-14,28.5380556,-81.3794444,Orlando (State Rt. 474, W. Of),FL,sphere,600,Unknown object tracks two witnesses at close range in Green Swamp. +2002-07-13,41.4036111,-75.3988889,Hamlin,PA,fireball,180,i saw a ufo +2002-07-13,35.1494444,-90.0488889,Memphis,TN,chevron,60,It was a glowing, dull yellow/green, silent, three dimensional horizontal triangle. with verticle cylinders on the end. +2002-07-13,40.7538889,-79.8102778,Saxonburg,PA,changing,399,2002 it was in the evening when I saw it shine in the sky. +2002-07-13,39.7391667,-104.9841667,Denver,CO,triangle,900,we taped a triangle shaped object changing shape and color then just disappeared within 15 min +2002-07-13,39.7683333,-86.1580556,Indianapolis,IN,disk,60,Metallic disk observed in the sky in broad daylight. +2002-07-13,45.5236111,-122.675,Portland,OR,oval,180,When I was about 10 I was staying at my grandmothers house in Portland. It was pretty warm that day and it was not subsiding, so my gra +2002-07-13,38.9716667,-95.235,Lawrence,KS,cigar,120,Long Cigar shaped object that was far off but giant hovered for about 2 min +2002-07-13,40.9444444,-74.0758333,Paramus,NJ,formation,70,Three unknown objects maneuver, pulse, then fade out on a clear July night over northern New Jersey. +2002-07-13,40.9008333,-73.3436111,Northport,NY,light,180,blue light changing shape and brightness +2003-07-13,29.9986111,-95.2619444,Humble,TX,unknown,3600,My wife and kids, and I, were watching the stars after midnight when a giant, asymmetrical, pulsing amoeba-like mass of light appeared. +2003-07-13,30.2452778,-85.6483333,Lynn Haven,FL,rectangle,20,An orange rectangular silent fast moving light high in sky over my house +2003-07-13,29.3625,-100.8963889,Del Rio,TX,light,30,bright light dead stop then moved and disappeard at "warp" speed +2003-07-13,38.5816667,-121.4933333,Sacramento,CA,unknown,120,The UFO was an unusually bright white light moving slowly in a north to southward direction. +2003-07-13,38.9125,-75.4283333,Milford,DE,unknown,60,Long dark gray metallic object spotted in front of cloud, moving slower than a plane. +2003-07-13,40.485,-106.8311111,Steamboat Springs,CO,light,480,5 or 6 lights in day sky. +2003-07-13,41.1208333,-78.1141667,Karthaus,PA,flash,60,in the afternoon when we noticed what seemend to be a very bright white light in the woods +2003-07-13,40.5758333,-73.8486111,Belle Harbor,NY,changing,300,The thing I found most odd was the object appeared to remain motionless. +2003-07-13,42.8863889,-78.8786111,Buffalo,NY,light,300,i was sitting in front of my house smoking a cigertte and when i looked up over a larg empty feild right across from me i saw somthing +2003-07-13,41.005,-75.28,Bartonsville,PA,formation,600,Large object with nine bright small objects moving independently nearby +2003-07-13,40.7141667,-74.0063889,New York City (Brooklyn),NY,sphere,900,Watch Spherical object for 15 Minutes over Brooklyn +2003-07-13,40.7141667,-74.0063889,New York City (Staten Island),NY,sphere,3600,7 dots in the sky moving in unfamiliar fashion +2003-07-13,39.7391667,-104.9841667,Denver,CO,light,180,Bright single light in sky, that was stationary for a while, moves up and down, and turns into blue & red light +2004-07-13,47.6063889,-122.3308333,Seattle,WA,circle,30,Luminous round object over Seattle +2004-07-13,39.5297222,-119.8127778,Reno,NV,light,10800,there was colored lights crossing back and forth across the navada mountains and a bright blue flame in a field +2004-07-13,41.7858333,-88.1472222,Naperville,IL,triangle,900,Bubbling clouds, black triangle ufo, possible cloud manipulation. +2004-07-13,29.7630556,-95.3630556,Houston,TX,circle,1200,Circle floating in and out of clouds on a dead still day at about 2000 feet. Near Hobby airport departure lanes (surprisingly close to +2004-07-13,29.7630556,-95.3630556,Houston,TX,oval,1200,White oval moving in still sky from near downtown to over Astrodome area. Did not rise above clouds and did not move above clouds so no +2004-07-13,33.7877778,-117.8522222,Orange,CA,sphere,600,Black sphere seen at 400 feet AGL moving slow at dusk +2004-07-13,39.7683333,-86.1580556,Indianapolis,IN,light,1800,Watched at least 6 bright lights hover for up to 20 + mintues and then headed south. +2004-07-13,48.051944399999996,-122.1758333,Marysville,WA,light,360,what was this strange light in the sky +2004-07-13,33.4483333,-112.0733333,Phoenix,AZ,light,120,Free moving single light floating above Phoenix in the middle of a lightning storm +2005-07-13,45.8769444,-93.2936111,Mora,MN,cigar,180,I have seen a UFO from 100 yards away. +2005-07-13,46.9863889,-94.2111111,Longville,MN,light,600,It looked like a planet - but moved +2005-07-13,35.7719444,-78.6388889,Raleigh,NC,light,180,We woke to a rapidly flashing light beamed into one of the bedroom windows that produced a strange drugged feeling with panic and an in +2005-07-13,47.4236111,-120.3091667,Wenatchee,WA,cylinder,180,apparently solid cylinder , no wings . Very bright with bumps on it's surface. Very graceful movement +2005-07-13,39.7294444,-104.8313889,Aurora,CO,light,60,we saw a flying something in the sky it was flying southeast it looked like a star or shooting star but it wasn't. It was flying for a +2005-07-13,41.7747222,-74.2986111,Kerhonkson,NY,unknown,2,Bright light illuminates daytime sky over Kerhonkson, NY at funeral for elderly witness to at least 2 UFOs +2005-07-13,47.6063889,-122.3308333,Seattle (Downtown; Shoreline),WA,triangle,1200,High, stationary, triangular-shaped object in sky +2005-07-13,47.6063889,-122.3308333,Seattle (Downtown; Shoreline),WA,other,1200,Metallic object "hovering" at altitude over downtown Seattle for at least 10 - 15 minutes - 07/13/05 +2005-07-13,44.0583333,-121.3141667,Bend,OR,light,900,Extremely bright light over Mt. Bachelor. ((NUFORC Note: Possibly Venus?? PD)) +2005-07-13,38.1394444,-90.555,De Soto,MO,formation,300,Witnessed two points of light come together above, fly in fast circular revolution then separate +2005-07-13,32.3186111,-102.5452778,Andrews,TX,unknown,60,a bright blue light doing teleporting right by us or moving very fast blinking on and off the light and then kept going east and was no +2005-07-13,29.4238889,-98.4933333,San Antonio,TX,circle,2,Witnessed a circular bright light in the san antonio sky that dropped vertically rapidly and disappeared +2006-07-13,46.6022222,-120.5047222,Yakima,WA,fireball,3,Something flew by E-WA +2006-07-13,32.5838889,-117.1122222,Imperial Beach,CA,changing,120,San Diego CA, Bright orange light traveled east , then faded and parachute/ jellyfish shaped object floated downward slowly. +2006-07-13,44.1336111,-89.5230556,Hancock,WI,cigar,240,shining bright light +2006-07-13,37.4852778,-122.2352778,Redwood City,CA,circle,5,Bright light moving at a high rate of speed from south to north. +2006-07-13,42.1502778,-84.0377778,Manchester,MI,light,120,Orangish white light +2006-07-13,39.6313889,-106.5216667,Avon,CO,light,60,Two solid white lights flying in formation over the Colorado Rockies +2006-07-13,34.0522222,-118.2427778,Los Angeles,CA,triangle,7200,I watched this event for about 2 hours. It first appeared as a very intense bright light just over the Grifith Park observatory in Los +2006-07-13,33.4330556,-79.1216667,Pawleys Island (Near Litchfield),SC,light,1800,Sporadic, orange lights, unlike any common aircraft appear over the ocean +2006-07-13,33.9866667,-118.1844444,Maywood,CA,unknown,120,I wouldn't quite say crafts but that I would label them objects. I was laying down on my lawn looking up at the stars and wondering abo +2006-07-13,31.7319444,-84.1708333,Leesburg,GA,formation,120,5 to 6 round lights converging into one object that disappeared and then reappeared as one shortly thereafter only to disappear again +2006-07-13,32.4313889,-80.67,Beaufort,SC,circle,30,Circle Lights Over the Ocean from Beaufort, South Carolina +2006-07-13,42.1213889,-84.345,Clarklake,MI,light,30,Bright pulsing light stops, shoots off at an amazing speed +2007-07-13,44.9583333,-124.0166667,Lincoln City,OR,triangle,10,Three lights traveling south to north up the oregon coastline Friday July 13th at aprox. 1:13AM +2007-07-13,45.4463889,-122.6380556,Milwaukie,OR,other,600,Four bright Lights, humming sound, stationary at times and moved at times +2007-07-13,40.8766667,-73.325,East Northport,NY,circle,7200,round circle with beam, the beam shot around down the street cousin, sister friend and i saw it happend 3 times since 2004 +2007-07-13,47.0380556,-122.8994444,Olympia,WA,unknown,360,Evergreen State College, Strange lit up sky with no noise. ((NUFORC Note: Hoax?? Date is flawed. PD)) +2007-07-13,43.0388889,-87.9063889,West Milwaukee,WI,sphere,10,white orb/sphere moving across blue sky at a high rate of speed then changes direction +2007-07-13,38.6272222,-90.1977778,St. Louis,MO,triangle,240,Big triangle thing the size of a medium sized bank. ((NUFORC Note: Cannot certify whether this is a serious report. PD)) +2007-07-13,30.3933333,-86.4958333,Destin,FL,light,6,6 orange lights over Destin, FL +2007-07-13,40.7608333,-111.8902778,Salt Lake City,UT,oval,120,Two Cloud like Oval objects came out of the Clouds over the Wasatch Mountains, Salt Lake City, Utah!!! +2007-07-13,41.2458333,-75.8816667,Wilkes-Barre,PA,light,2400,bright red circle object floating around sky. Moving fast, slow and up and down, Have Video +2007-07-13,38.6272222,-90.1977778,St. Louis,MO,triangle,360,THe ufo was a triangle and it tryed to abduct me and it happend before 8 years ago. 500 Lights On Object0: Yes +2007-07-13,38.9516667,-92.3338889,Columbia,MO,light,120,A bright object was seen moving across the sky, north to south. +2007-07-13,42.6627778,-82.8425,Chesterfield,MI,light,120,About a dozen bright orange lights spotted in the sky in Chesterfield, MI at 10:00 PM 7/13/2007 +2007-07-13,35.1894444,-114.0522222,Kingman (South Of),AZ,triangle,2100,Huge triangular ships( 2) flying over Phoenix, AZ, along with pulsing orbs and fighter jet engagement +2007-07-13,35.5225,-97.6186111,Warr Acres,OK,diamond,1200,glowing hovering object viewed multiple times +2008-07-13,39.7219444,-85.8891667,New Palestine,IN,light,1200,2 lights moving in a circular pattern +2008-07-13,33.0313889,-111.3866667,Florence,AZ,light,3600,stationary bright object changing colors in sky over Az +2008-07-13,46.2997222,-118.3138889,Prescott,WA,light,300,Eastern Washington lights +2008-07-13,42.7861111,-72.4869444,Hinsdale,NH,unknown,60,Saw a triangular lights move in a northeast direction +2008-07-13,42.7977778,-83.705,Fenton,MI,unknown,25,Nocturanal lights following US Spy Satellite. ((NUFORC Note: ISS & Space Shuttle?? PD)) +2008-07-13,28.6802778,-81.5097222,Apopka,FL,oval,60,Silver object darting in and out of dark cloud between Orlando and Tampa. +2008-07-13,42.3563889,-73.2852778,Lenox,MA,oval,120,A small, oval, metallic object was seen rocking back and forth while flying in a straight trajectory over Lenox, MA. +2008-07-13,39.6477778,-104.9872222,Englewood,CO,changing,1200,Pearl like object seen hovering over Englewood, Colorado +2008-07-13,35.0133333,-78.6941667,Stedman,NC,disk,60,Silver Cigar Shaped Object Seen +2008-07-13,27.0591667,-80.1366667,Hobe Sound,FL,cylinder,60,White cylinder object flying south over Atlantic Ocean just off coastal South Florida near Hobe Sound heading towards Miami +2008-07-13,42.375,-71.1061111,Cambridge,MA,other,15,Yellow and metallic Craft +2008-07-13,42.4391667,-123.3272222,Grants Pass,OR,cigar,180,strange object seen in Grants Pass, Oregon +2008-07-13,39.4141667,-77.4108333,Frederick,MD,cylinder,3600,UFO reported in Frederick, MD. +2008-07-13,29.7630556,-95.3630556,Houston,TX,sphere,15,lit circle travling south to north across sky in 10-15 seconds in houston +2008-07-13,42.0697222,-87.7877778,Glenview,IL,unknown,30,4 SLOW ASCENDING OBJECTS HEADING EAST WITH RED FLAMES +2008-07-13,41.8108333,-78.28,Port Allegany,PA,fireball,120,Large multi colored fireball seen in Port Allegany +2008-07-13,43.9272222,-112.2052778,Hamer,ID,light,7200,We saw several light objects in pairs stationary in the sky and then move in different directions at a high rate of speed. +2008-07-13,36.2741667,-87.0641667,Ashland City,TN,unknown,30,Strange lights from behind clouds +2008-07-13,32.1736111,-81.3908333,Eden,GA,teardrop,3,Green teardrop splits in two and flies off at incredibly high speed +2008-07-13,47.2530556,-122.4430556,Tacoma,WA,light,360,We were outside at around 11:20 - 11:30 pm and I happen to look up and see a light in the sky that as you look you could tell that it w +2008-07-13,42.4391667,-123.3272222,Grants Pass,OR,unknown,60,UFO heading East flashing bright white light turning Northwest then West as it flashed in a non flashing pattern. +2009-07-13,33.7797222,-116.4644444,Cathedral City,CA,oval,1200,Oval shaped, color-changing lights, erratic movements, appearing and reappearing. +2009-07-13,39.6894444,-84.1688889,Kettering,OH,diamond,600,Multiple UFOs seen over East Dorothy Lane +2009-07-13,42.1686111,-88.2575,Barrington Hills,IL,other,4,Nearly vertical series of lights (12 or 14 bluish with fucshia at the top) over Barrington Hills lasting for four seconds. +2009-07-13,33.8752778,-117.5655556,Corona,CA,triangle,300,Triangular shaped object flying erratically yet fluid in the sky. +2009-07-13,33.4483333,-112.0733333,Phoenix,AZ,cigar,50,Daylight sighting of a long cigar shaped object that slowly disappears +2009-07-13,41.3222222,-74.8027778,Milford,PA,oval,5,Odd craft over Milford, PA +2009-07-13,38.5488889,-86.62,French Lick,IN,light,60,Bright stationary light in the southern sky of southern Indiana. +2009-07-13,38.6161111,-88.7902778,Iuka,IL,other,1200,BIG ORANGE CIRCLE GLOW OF LIGHT OVER FIELDS OF ILLINOIS. +2009-07-13,43.1919444,-89.4555556,Waunakee,WI,other,5,Car-type headlights near tree-line, with shadows. +2010-07-13,45.7838889,-84.7277778,Mackinaw City,MI,disk,7200,Bright light that moved left to right, and up and down +2010-07-13,39.8916667,-105.7625,Winter Park,CO,other,1,Metallic silver like object in the cloudy sky +2010-07-13,43.6027778,-111.1105556,Victor,ID,changing,600,Rod shaped appearance that in photos look more like double lights during daytime. +2010-07-13,48.1127778,-98.8647222,Devils Lake,ND,cylinder,75,Photograph of rod or cylinder shaped object +2010-07-13,46.2113889,-119.1361111,Kennewick,WA,other,300,VERY large aircraft flying low, slow, and silently. +2010-07-13,45.2325,-88.0075,Crivitz,WI,oval,1345,Oval, silver-white pie shaped object hovers in one spot, dances, dims & brightens it's lights! +2010-07-13,46.2069444,-119.7677778,Prosser,WA,light,900,Three lights in tirangle formation over the sky nea Tri-Cities WA. +2010-07-13,37.0833333,-88.6,Paducah,KY,circle,600,UFO spotted in rural Paducah, Ky neighborhood +2010-07-13,47.6063889,-122.3308333,Seattle,WA,fireball,120,A friend saw the lights reported from Beacon Hill Seattle on 7/17/2010 and took Pics, +2010-07-13,40.4166667,-86.8752778,Lafayette,IN,light,10,White light slowly moving across sky suddenly sped off in seconds +2010-07-13,33.5225,-117.7066667,Laguna Niguel,CA,formation,10,Orange Orbs in Orange County +2011-07-13,45.6797222,-111.0377778,Bozeman,MT,unknown,7200,That star is acting like a foosball! ((NUFORC Note: Possible sighting of a bright star or planet?? PD)) +2011-07-13,39.1530556,-77.0672222,Olney,MD,changing,10800,UFO with "tentacles" hovering in Olney, Maryland. ((NUFORC Note: Possible sighting of celestial body?? PD)) +2011-07-13,42.9005556,-78.6705556,Lancaster,NY,fireball,15,I was in the backyard watching from a portable dvd and turned my head toward the sky ,not sure why .And I saw seven to eight objects in +2011-07-13,45.4944444,-122.8658333,Aloha,OR,circle,120,UFO sighting after power outage +2011-07-13,37.2622222,-119.7,Coarsegold,CA,disk,120,UFO Sighting on the way up to the mountains on a road trip with family +2011-07-13,41.2458333,-75.8816667,Wilkes-Barre,PA,light,120,Very bright stationary object observed during broad daylight. +2011-07-13,39.2333333,-84.1613889,Goshen,OH,cylinder,600,The craft glowed a bright white and it was still daylight. +2011-07-13,40.7280556,-74.0780556,Jersey City,NJ,fireball,12,Very fast green hazy fireball over jersey city NJ +2011-07-13,42.3805556,-76.8736111,Watkins Glen,NY,fireball,1200,Adult female witnesses 8 bizarre objects in the night sky. ((NUFORC Note: See other reports from siblings of witness. PD)) +2011-07-13,38.3605556,-81.7375,Dunbar,WV,light,1800,Orange light over Charleston, WV area +2011-07-13,33.7122222,-84.1052778,Lithonia,GA,triangle,4,Triangle craft with bright lights surrounding the perimeter. +2011-07-13,39.9611111,-82.9988889,Columbus,OH,other,30,Amber fire lantern over midtown Clintonville in Columbus, Ohio hovers for 10 seconds then quickly disappears into the sky +2011-07-13,42.3805556,-76.8736111,Watkins Glen,NY,light,600,Three lights in the night sky over upstate NY moving erratically and very quickly +2011-07-13,39.1752778,-89.6541667,Litchfield,IL,fireball,300,One round fireball hovering over central illinois then dissapearing +2011-07-13,42.3805556,-76.8736111,Watkins Glen,NY,light,600,Strange, Non-Aircraft Moving, Pulsing Lights Observed in Rural Upstate New York +2011-07-13,33.9608333,-83.3780556,Athens,GA,light,5,I was standing outside and I saw a bright blue light descend down at a 90 degree angle west from my location at the aprtment. It was br +2012-07-13,41.6005556,-93.6088889,Des Moines,IA,unknown,600,Floating white light with dim blinking light still in the sky with no sound. +2012-07-13,42.0494444,-92.9077778,Marshalltown,IA,changing,120,Unexplained reddish orange light over Marshalltown IA +2012-07-13,35.2269444,-80.8433333,Charlotte,NC,triangle,10,Black triangle 36 sighted in backyard early AM that leaped from ground to higher branch or line. +2012-07-13,37.0833333,-88.6,West Paducah,KY,circle,60,I live by a airport and I see planes everyday in and out, I went outside to check on my dog because I put her in the garage because it +2012-07-13,41.5930556,-81.5269444,Euclid,OH,circle,300,I've never seen anything like that before. 500 Lights On Object0: Yes +2012-07-13,28.5380556,-81.3794444,Orlando,FL,circle,125,5 balls of light +2012-07-13,47.1855556,-122.2916667,Puyallup,WA,cone,30,Cylinder shaped dark brown craft, not shiny, no sound. +2012-07-13,43.114444399999996,-71.1002778,Nottingham,NH,circle,240,Silent circular ball of light seen over Pawtuckaway Lake then flickers out. +2012-07-13,30.3672222,-89.0927778,Gulfport,MS,triangle,120,Soft red glowing object hovering n. Gulfport....guitar pick shaped. +2012-07-13,40.7008333,-73.4625,North Massapequa,NY,fireball,30,Fireball seen in sky over long island. +2012-07-13,32.7152778,-117.1563889,San Diego,CA,fireball,180,Moving fireball in the night sky, changed course and color multiple time at rapid speed in San Diego +2012-07-13,40.3797222,-79.8097222,North Versailles,PA,light,300,Several dozen orange lights in the sky over North Versailles Pa on July 13, 2012, around 21:15 hours +2012-07-13,43.2166667,-123.3405556,Roseburg,OR,light,55,Light come up from horizon, stop, turn and fade before reaching horizon again. +2012-07-13,43.2166667,-123.3405556,Roseburg,OR,light,60,Bright light come over horizon, turn and disappear. +2012-07-13,34.7369444,-82.2544444,Simpsonville,SC,sphere,300,20 lights in sky faded out. +2012-07-13,42.1291667,-80.0852778,Erie,PA,light,300,We saw 3 orange lights about 50-100 feet apart moving in tandem up in the sky. +2012-07-13,40.9858333,-74.7425,Andover,NJ,formation,1200,While on the deck last night with my wife, she called me outside to look a this object she had notice coming from the south out of hack +2012-07-13,30.1758333,-84.3752778,Crawfordville,FL,other,120,Hot air ballon shaped object +2012-07-13,41.6638889,-83.5552778,Toledo,OH,light,3600,Once again seeing star like objects traveling through the sky, some going south to N,others going north to S in the same path. +2012-07-13,40.5677778,-84.1936111,Wapakoneta,OH,fireball,120,Orange flying object in the sky +2012-07-13,40.805,-72.7613889,East Moriches,NY,fireball,300,Orange Fireball spotted over East Moriches, NY +2012-07-13,40.6444444,-80.4163889,Industry,PA,fireball,120,We viewed a firey orange globe come into sight, stagger, then disasseapear at the pace of an airliner. +2013-07-13,42.5030556,-83.1836111,Berkley,MI,light,10,I witnessed a solid, very bright orb (light) make an 8-10 second scoot across the sky, before dematerializing, or vanishing. +2013-07-13,31.8911111,-85.1455556,Eufaula (Close To),AL,light,3,((NUFORC Note: No information provided by witness. PD)) +2013-07-13,38.2541667,-85.7594444,Louisville,KY,other,10,Very bright, whitish light with long yellowish tail +2013-07-13,42.1080556,-85.9744444,Decatur,MI,rectangle,120,Orange light moving across sky at 1 am, no noise and no flashing or flickering. +2013-07-13,34.2572222,-118.6002778,Chatsworth,CA,light,900,Bright star like object with red flashing lights +2013-07-13,33.8333333,-111.95,Cave Creek,AZ,teardrop,105,Flash, followed by falling teardrop ship, with fading redish trail. +2013-07-13,46.9966667,-120.5466667,Ellensburg,WA,sphere,300,3 spheres circling around then moving to the west. ((NUFORC Note: Daylight sighting. Not advertising lights. PD)) +2013-07-13,32.8608333,-91.3883333,Oak Grove,LA,other,45,Blinding shiny arrow shaped super fast aircraft. +2013-07-13,39.8772222,-75.065,Haddon Heights,NJ,triangle,300,Triangular craft over Haddon Heights, NJ +2013-07-13,43.2047222,-77.0247222,Sodus Center,NY,light,60,3 orange orbs sail slowly through night sky over Sodus Center, N.Y.. +2013-07-13,45.6797222,-111.0377778,Bozeman,MT,light,1260,The sun was just going down and we saw a very bright light in the sky to the west. I asked my girlfriend if she saw it, she did but sa +2013-07-13,40.8686111,-73.0019444,Coram,NY,cone,300,Coram Red glowing/flickering....something...what was it? +2013-07-13,29.5072222,-95.0947222,League City,TX,circle,180,Two identical UFO's spotted, one appeared to lose power and altitude. +2013-07-13,33.6058333,-78.9733333,Surfside Beach,SC,light,180,Four angular bright orange lights in a row with a fifth one below them. +2013-07-13,33.5336111,-82.1308333,Evans,GA,fireball,900,Will send pictures if needed. Called 911 just to see if any else reported it. Even had to go to neighbors house to get him to witness. +2013-07-13,40.6258333,-75.3708333,Bethlehem,PA,formation,180,Driving home in a rain storm on Route 22. Saw five orange colored lights in sky going from an east to west direction. Did not observe a +2013-07-13,33.5336111,-82.1308333,Evans,GA,fireball,240,At least 7 fireball type objects in the sky over Evans (Augusta) GA. +2013-07-13,42.2583333,-72.575,South Hadley,MA,light,360,2 Bright Red Lights - Then 2 More! Turning at weird angles and silent. +2013-07-13,33.1191667,-97.0252778,Lake Dallas,TX,fireball,120,Burnt orange orb in the sky +2013-07-13,38.9988889,-84.6266667,Florence,KY,unknown,600,Several bright lights above Florence, KY all moving in a uniform manner, circling the area. +2013-07-13,36.8466667,-76.2855556,Norfolk,VA,light,300,Yellow Light magnitude = to Jupiter. Location: approx 5 Degress South of Vega/Altair (Mid) axis. I was taking +2013-07-13,41.6027778,-87.7438889,Oak Forest,IL,circle,30,On july 13񫺝 approximately 9:45pm i observed 5 orbs that were a grayish white solid color. Thought they could of been birds. But whe +2013-07-13,41.0036111,-80.3472222,New Castle,PA,other,600,Four strangely shaped orange/ red orbs floating across sky in PA. +2013-07-13,41.4705556,-81.1452778,Burton,OH,light,300,5 Objects Silently move across sky, then disappear +2013-07-13,42.3222222,-83.1763889,Dearborn,MI,fireball,120,Silent orange fireball moves across sky. +2013-07-13,42.6733333,-72.8222222,Heath,MA,light,2700,Small red lights that independently moved rather slowly. At times these movements were quick bursts of speed followed by slowing down. +2013-07-13,38.3697222,-90.3783333,Imperial,MO,light,40,Redish glowing round light which suddenly disappeared +2013-07-13,44.3805556,-73.2280556,Shelburne,VT,formation,180,A formation of three reddish orange lights were sighted flying at low altitude over Lake Champlain near Shelburne, Vermont. +2013-07-13,47.2152778,-123.0994444,Shelton,WA,cigar,2,Cigar shaped very fast with bright glow almost like fire. +2013-07-13,41.24,-81.4408333,Hudson,OH,fireball,120,Three fireball like lights in triangle formation moving together then breaking apart +2013-07-13,39.5588889,-84.3041667,Franklin,OH,cylinder,600,Multiple UFO Sighted West of Franklin, OH. +2013-07-13,41.6833333,-86.25,South Bend,IN,light,300,Six Red/Orange objects fly over South Bend, Indiana. +2013-07-13,41.9141667,-88.3086111,St. Charles,IL,formation,120,Many orbs moving through the sky in a formation, flickering, moving at the same pace. +2013-07-13,39.6408333,-76.6594444,Parkton,MD,light,3600,Witnessed 15+ crafts on two different occasions the same night. +2013-07-13,41.5119444,-87.9655556,New Lenox,IL,circle,600,7 red lights in sky. +2013-07-13,40.7583333,-82.5155556,Mansfield,OH,oval,45,Bright orange oval object hovering and then streaking across the sky. +2013-07-13,46.8722222,-113.9930556,Missoula,MT,triangle,1800,Rounded triangle craft slowly hovers 200 ft above home +2013-07-13,42.4311111,-83.4833333,Northville,MI,sphere,120,((NUFORC Note: No information provided by witness. PD)) +2013-07-13,33.0197222,-96.6986111,Plano,TX,sphere,300,Yellow sphere observed by two people sitting still and then moving around before leaving +2013-07-13,32.7833333,-96.8,Dallas,TX,triangle,60,It look triangle in shape off laprada and 635 in Dallas TX with puslating lights. +2013-07-13,41.8994444,-79.8455556,Union City,PA,fireball,35,4 balls of red light spotted. +1947-07-14,43.0480556,-76.1477778,Syracuse,NY,cigar,900,WHILE LOOKING OUT THE SECOND STORY WINDOW OF HIAWATHA COTTAGE AT ELMCREST CHILDREN'S CENTER I SAW A BIG (200 FT.?) CIGAR SHAPED CRAFT O +1947-07-14,37.9358333,-122.3466667,Richmond,CA,circle,1800,THIS SIGHTING TOOK PLACE WHEN I WAS A CHILD. I WAS 9 1/2 yrs. old. IT was the summer vaccation for the school children .WE had been ou +1956-07-14,38.5816667,-121.4933333,Sacramento,CA,disk,420,Circular object, slow moving, disappeared, silvery contrail appeared as if the object wanted to be seen +1963-07-14,42.3277778,-77.6613889,Hornell,NY,unknown,600,Bright object moving across the sky then stopping and going back the way it came. +1964-07-14,46.2469444,-114.1594444,Hamilton,MT,oval,900,Summer of 1964, red-orange saucer-ovals sighted from Missoula, to Darby, Montana. +1968-07-14,34.7694444,-92.2669444,North Little Rock,AR,circle,15,UFO seen / chased by jets over Little Rock AR in late 60s. +1971-07-14,37.9305556,-80.9033333,Danese,WV,unknown,300,Traveling at a speed of 1500 MPH and stopping instantly displaying Super Bright Search Lights no Noise. +1973-07-14,35.8238889,-80.2536111,Lexington,NC,oval,300,My Aunt, Uncle, and myself witnessed an oval UFO while traveling in Uncles car. +1975-07-14,42.0294444,-85.0013889,Girard,MI,unknown,2700,have watched the lights .. come ... go.. .bright ...split and disappear +1977-07-14,39.2758333,-121.6588889,Live Oak,CA,triangle,3600,The Triangle over Live Oak +1977-07-14,43.1775,-85.2527778,Greenville,MI,unknown,30,An aircraft hovered over a car coming in our direction & then reversed, hovering over our car. +1978-07-14,47.6588889,-117.425,Spokane,WA,disk,1200,A friend and I were driving and saw something odd in the sky coming towards us. We pulled over along with some other people to watch. +1979-07-14,42.9522222,-77.5905556,Honeoye Falls,NY,cigar,120,Cigar shape ufo with gateway +1980-07-14,42.7158333,-78.8297222,Hamburg,NY,triangle,10800,Triangular UFO sends probes into Lake Erie +1984-07-14,36.8352778,-76.2986111,Portsmouth,VA,circle,300,circular object headed towards the sky +1987-07-14,38.5816667,-121.4933333,Sacramento,CA,other,60,grey alien was seen in Sacramento in july, 14th. +1994-07-14,34.8788889,-76.9016667,Havelock,NC,unknown,30,all in all i saw a gray/silver ship that i could only see a triangleish part of. +1994-07-14,41.1463889,-74.7527778,Branchville,NJ,circle,300,2 horizontal lines - 3 top, 4 under zigzag type. all 7 of us saw the lights as a different color +1995-07-14,42.4413889,-84.9241667,Olivet,MI,disk,900,Silver Disk, reflecting against sun.Floated about 5 min. then disappeared.Reappeared about a minute later. Tried tophotograph but it di +1995-07-14,34.4838889,-114.3216667,Lake Havasu City,AZ,light,120,BRIGHT LIGHT SUNSET +1996-07-14,30.3333333,-87.1375,Pensacola Beach,FL,sphere,60,Blue Angles interupted by UFO/F-16 Crashes in area same Day +1997-07-14,44.9430556,-123.0338889,Salem,OR,light,360,AT FIRST THOUGHT IT WAS A PLANE BUT OBSERVING THROUGH BINOCULARS, SAW ONE VERY BRIGHT LIGHT AND 3 SMALLER ONES... THEY WERE NOT BLINKIN +1997-07-14,39.9522222,-75.1641667,Philadelphia,PA,oval,300,The ufo that closely observed college students on campus. +1997-07-14,30.2458333,-87.7008333,Gulf Shores,AL,circle,3600,Large, circular craft encased in cluds and eventually "joined" with a smaller circle. Hovered for approx 1 hour near the Gulf Shore. D +1997-07-14,40.7608333,-111.8902778,Salt Lake City,UT,other,600,While on the roof of our 26 floor condominium building we saw what appeared to be a cloud or haze moving across the sky at about the sa +1997-07-15,37.6688889,-122.0797222,Hayward,CA,fireball,36,I observed several types of crafts over this period of time and many were daylight sightings.Also may have seen entity(e.t). +1998-07-14,28.9825,-95.9691667,Bay City,TX,unknown,1200,My friend and I were out in the back yard letting his dogs go to the bathroom and in the distance we saw a giant sphere that kept on re +1999-07-14,42.1013889,-72.5902778,Springfield,MA,light,180,2 bright white strobes. 1 behind other. medium/low alt. slow/medium speed. 10 deg. down from zenith. curved course NW to NE. totally si +1999-07-14,43.6875,-84.9688889,Weidman,MI,light,300,3 lights seen in formation. +1999-07-14,42.6583333,-83.15,Rochester Hills,MI,light,30,light as bright as Venus traveled from west to east,no sound,no aircraft lights even through binaculars. +1999-07-14,40.7616667,-73.3297222,Deer Park,NY,disk,300,we saw a craft as we were driving down the road. +1999-07-14,43.915,-87.7472222,Cleveland (Newton, Silver Creek),WI,fireball,2,Bright Fireball in the northwestern part of the sky +2000-07-14,45.5236111,-122.675,Portland,OR,flash,15,big blue flash and a blue zigzaging light +2000-07-14,40.3013889,-79.5391667,Greensburg,PA,other,600,Strange glow in the woods +2000-07-14,42.7283333,-73.6922222,Troy,NY,disk,30,I watched a very bright object flying west for about 30 seconds before it took off at great speed . +2000-07-14,35.4675,-97.5161111,Oklahoma City,OK,cigar,60,Shining silver cigar, suspended in the sky, reflecting the sun, then turning dark, then disappearing... +2000-07-14,35.1494444,-90.0488889,Memphis,TN,triangle,60,another triangle seen in memphis tennessee +2000-07-14,39.9369444,-120.9461111,Quincy,CA,egg,15,Bright oval light covering 30 dgrees in 15 seconds on 07/14/00. Winked out of sight. +2000-07-14,34.7463889,-92.2894444,Little Rock,AR,light,180,A "star" looking object traeling across the sky, dissapearing behind a tree, then coming back out brighter then fading to blackness. +2000-07-14,47.0380556,-122.8994444,Olympia,WA,light,2,Unexplained bright light at satellite level which did not conform to ordinary sky sightings. +2000-07-14,36.8766667,-89.5877778,Sikeston,MO,chevron,1200,Chevon Shaped Craft in Southeast Missouri +2000-07-14,29.7955556,-90.8227778,Thibodaux,LA,fireball,18300,Riding in my uncles boat we saw a dome shape craft that flew at tree level, it was orange and accasionally changed white. +2001-07-14,33.8444444,-117.7763889,Anaheim Hills,CA,teardrop,900,small, white, slowly moving object too high for an airplane, had to stare at the sky for about a min to even see it. +2001-07-14,39.62,-78.2927778,Great Cacapon,WV,light,600,Bright disappearing lights in sky near Great Cacapon, WV 7/14/01 +2001-07-14,40.1016667,-76.0855556,New Holland,PA,light,240,Me and my friend were driving along when I looked up and saw this hovering light over this small mountain/hill. What I saw I can sure w +2001-07-14,39.9522222,-75.1641667,Philadelphia,PA,light,120,green light looked like rocket exhaust +2001-07-14,36.6436111,-93.2183333,Branson,MO,fireball,10,Object see over Branson, Missouri +2001-07-14,34.1347222,-116.3122222,Joshua Tree,CA,light,5,A large, very bright white, round satellite-appearance light, moving slowly. Then made an extremely fast "W" maneuver, and then vanishe +2002-07-14,39.5488889,-89.2944444,Taylorville,IL,circle,120,bright, white circular light +2002-07-14,39.3994444,-84.5613889,Hamilton,OH,other,120,saw dome shaped object in yard w/ whirling white light on top, flew off straight ahead as fast as lightning +2002-07-14,46.5925,-90.8836111,Ashland,WI,unknown,600,Flash of brightlights & weird noisies appeared and strange happennings went on. +2002-07-14,41.6508333,-73.7633333,Lagrangeville,NY,oval,20,we saw a grayish (oval) object hover over a spot that stuck there for about 10 seconds. +2002-07-14,37.6391667,-120.9958333,Modesto,CA,changing,960,rectangular light changed colors to half circle as well as shape in eastern sky from northern California +2002-07-14,42.6583333,-83.15,Rochester Hills,MI,circle,2700,Circle with hole in the middle and pulsating, moving in eastern direction +2002-07-14,44.9430556,-123.0338889,Salem,OR,circle,300,Oregon UFO Review Case: Baseball sized pink object over head. +2003-07-14,47.0980556,-122.2030556,Orting,WA,triangle,14400,Strange lights in Orting, WA +2003-07-14,45.4872222,-122.8025,Beaverton,OR,oval,1260,White-pink oval object seen & photo'd while rising up thru high cloud. +2003-07-14,33.0183333,-80.1758333,Summerville,SC,sphere,1,Red light slipping effortlessly through sky. +2004-07-14,34.0961111,-118.105,San Gabriel,CA,other,180,An object in the sky that resembled a star. It was traveling in a straight line and then went backwards. +2004-07-14,41.85,-87.65,Chicago,IL,other,120,it was spying on us. it flew away when we looked at it. +2004-07-14,36.301944399999996,-88.3266667,Paris,TN,disk,30,I was sitting on a curb, I looked to my right and saw the object sailing by at a pretty fast speed. +2004-07-14,37.9886111,-84.4777778,Lexington,KY,light,300,very large round object, pulsing red light, stationary within the storm with 60-70 MPH winds +2004-07-14,47.5675,-122.6313889,Bremerton,WA,light,180,The object changed colour and flashed. +2004-07-14,38.6786111,-121.7722222,Woodland,CA,light,3,slow light vanishing up into nothing what seemed to be outerspace. +2004-07-14,37.8347222,-97.3730556,Valley Center,KS,oval,120,using night vision saw fast moving oval object brite no trail no other lights 2 minutes moving due north dime size at arms length but o +2005-07-14,36.2297222,-93.1075,Harrison,AR,cross,1920,There were seven U.F.O. s that circled my house. +2005-07-14,28.0777778,-82.7638889,Palm Harbor (Clearwater),FL,light,1320,saw a light in the sky i thought was a planet, and after a few minutes it shot off and disappeared. Reappeared later, then disappeared. +2005-07-14,39.1222222,-104.9166667,Palmer Lake,CO,light,3600,Mysterious flashing stars appear and disapear in night sky. +2005-07-14,38.3697222,-90.3783333,Imperial,MO,circle,900,4-5 ft. circular UFO floating about 45 feet of the ground seen above house. +2005-07-14,46.3775,-120.3075,Toppenish,WA,formation,180,I John Presho was traveling west on the Fort Road (2-lane rural highway between Toppenish, Wa. and Fort Simcoe, Wa.), my two Grandchild +2005-07-14,34.4358333,-119.8266667,Goleta,CA,sphere,300,bright sphere seen over Goleta holding still for several mins. then moving slowly towards outterspace. +2005-07-14,40.7,-73.9061111,Ridgewood,NY,fireball,3,NYC Area Possible Meterorite... +2005-07-14,37.7797222,-119.0744444,June Lake,CA,sphere,120,Orange sphere passes over mountain residential area very slowly, then chased by F-18's 12 mins later. +2005-07-14,33.4483333,-112.0733333,Phoenix,AZ,light,240,Several beams of light vanished and leave only clouds of smoke. +2005-07-14,35.4777778,-94.2216667,Alma,AR,light,25,A light going fast in a straight line & jagged to the left once & then dissappeared +2006-07-14,45.1602778,-93.0886111,Lino Lakes,MN,other,30,I was sitting in my bed, listening to my iPod when I looked out the windo and saw what at first I thought was an airplane. So, I looke +2006-07-14,35.9911111,-106.08,Espanola,NM,unknown,3600,brilliantly flashing flying objects +2006-07-14,34.0522222,-118.2427778,Los Angeles,CA,circle,105,((NUFORC Note: Celestial body?? PD)) I have seen this craft consistently for the last few weeks. I took my telescope and studied it. +2006-07-14,43.0347222,-83.5180556,Davison,MI,light,2,A red blinking craft hovers across the road in Davison Michigan +2006-07-14,43.0605556,-88.1063889,Brookfield,WI,unknown,5,Fireball UFO spotted during a thunderstorm. ((NUFORC Note: Possible hoax?? PD)) +2006-07-14,40.7611111,-73.8655556,East Elmhurst,NY,disk,120,I was looking outside and saw a craft going east. I ran to get a camera, but i was late. Then another appeared but it was to late when +2006-07-14,40.4036111,-73.9919444,Highlands,NJ,light,15,bright white cigar shaped object/bright white light over Atlantic Ocean/Sandy Hook Beach +2006-07-14,27.2936111,-80.3505556,Port Saint Lucie,FL,circle,10,There was a large red circle of light in the sky, about 1000 feet above the ground, it remained still,hovering and then blasted off sky +2006-07-14,30.1763889,-85.8055556,Panama City Beach,FL,flash,14400,many flashing lights over panama city beach +2006-07-14,33.7205556,-116.2147222,Indio,CA,fireball,2,shooting star shoots upwards!!! +2006-07-15,34.0522222,-118.2427778,Los Angeles,CA,circle,7200,THis first appeared like a bright white light near or over the Griffith Park Observatory. When viewd throug a telescope it looked lik n +2007-07-14,42.4775,-83.0277778,Warren,MI,light,120,floating orange cylinder of light, Warren Mi +2007-07-14,45.4594444,-69.5911111,Greenville,ME,light,600,Bright light seen above horizon moving up and down erratically towards the northeast. +2007-07-14,43.073055600000004,-89.4011111,Madison,WI,formation,4,Four orange objects in formation followed by another. +2007-07-14,27.7705556,-82.6794444,St. Petersburg,FL,light,3600,My friend and I were at the beach and around 2 a.m. we were outside on a balcony looking west toward the water. I looked up in the sky +2007-07-14,44.8897222,-93.3497222,Edina,MN,light,10,Stationary light became very bright with halo, moved north as it dimmed into orangish color & vanished. +2007-07-14,41.7108333,-87.7580556,Oak Lawn,IL,light,1500,4 slow lights across sky than one really fast one 5 minutes apart +2007-07-14,41.6388889,-87.6072222,Dolton,IL,triangle,40,A pyramid shaped craft, not upright but triangle side. flew over my house and car. Startled my wife and daughter. +2007-07-14,41.0886111,-74.1441667,Mahwah,NJ,sphere,7,Perfectly round, clear/white sphere at a very high altitude moving at a very high speed +2007-07-14,34.0522222,-118.2427778,Los Angeles,CA,sphere,30,Silver object over Los Angeles +2007-07-14,45.7616667,-116.2997222,White Bird,ID,oval,2,Bright fast moving object very low in the skymoving west to east. +2007-07-14,41.2147222,-79.3855556,Clarion,PA,light,1800,Light moving high in the atmosphere in many diredtions, speeds, and even cricles. +2007-07-14,29.1869444,-82.1402778,Ocala,FL,oval,120,Bright flickering light traveling in a zig zag pattern and eventually having a burst of speed and disappearing. +2007-07-14,36.5091667,-86.885,Springfield,TN,circle,120,circle object that flew in arch then disappeared +2007-07-14,33.6694444,-117.8222222,Irvine,CA,circle,900,A circular object with bright blue lights floating near UC Irvine campus. Object flew in a circle for 10 or so minutes. Object then n +2008-07-14,33.5091667,-111.8983333,Scottsdale,AZ,circle,600,A gigantic red cloud with an inner flickering light was seen hovering over the Scottsdale/Tempe area at 2 am on July 14th, 2008 +2008-07-14,47.0227778,-91.6705556,Two Harbors,MN,light,300,Three bright white lights traveling together, two out front and one chasing, over Lake Superior! +2008-07-14,45.2311111,-122.7547222,Aurora,OR,other,120,On July 14, 2008 at 10:30 am I was driving my company van south on HWY 99 coming into Aurora, Oregon. I looked to the left (southeast) +2008-07-14,33.4483333,-112.0733333,Phoenix,AZ,light,7200,Three lights in a triangluar shaped formation floating over horizon for a good two hours. +2008-07-14,34.54,-112.4677778,Prescott,AZ,oval,60,Craft went into cloud and disapeared. +2008-07-14,38.1597222,-85.5877778,Fern Creek,KY,other,4,19:32 PM 07/14/08 VERY SMALL OBJECT , MOVING VERY RAPIDLY, AT VERY EXTREME ALTITUDE +2008-07-14,38.1597222,-85.5877778,Fern Creek,KY,other,5,LOOKING DUE NORTH @ APPROX 19:32 PM I SAW A VERY SMALL SILVER OBECT ABOUT THE SIZE OF A PIN HEAD,ALTITUDE AND SPEED VERY EXTREME!!!! +2008-07-14,44.5647222,-123.2608333,Corvallis,OR,disk,120,Saucer with lights that wobbled up and down but in straight line across the dusk sky. +2008-07-14,34.1063889,-117.5922222,Rancho Cucamonga,CA,light,900,Light travelling, then glowing brightly and disappearing. Saw 2 within 20 minutes. +2008-07-14,34.2072222,-84.1402778,Cumming,GA,sphere,120,Orange round object moving horizontally and silently over my house. +2008-07-14,39.9522222,-75.1641667,Philadelphia,PA,triangle,120,Double set of pinpoint red/orange steady lights viewed at 200 feet distance, definitely craft. +2008-07-14,33.1191667,-117.0855556,Escondido,CA,light,600,Unusual, pulsating blue light near Cygnus +2008-07-14,30.1586111,-85.6602778,Panama City,FL,sphere,5,glowing spheres emitting red beams +2009-07-14,44.8480556,-93.0425,Inver Grove Heights,MN,light,1,Bright light shoots across the sky underneath the clouds and then vanishes. +2009-07-14,29.2105556,-81.0230556,Daytona Beach,FL,other,7200,1 white bright object with 3 small red green and white ones around it. ((NUFORC Note: Twinkling star? PD)) +2009-07-14,41.9288889,-95.4936111,Dow City,IA,unknown,1,green shooting star that led me to discover a light with blue and red strobes on it! +2009-07-14,36.0397222,-114.9811111,Henderson,NV,other,1200,Large Red Balloon over Las Vegas +2009-07-14,36.2083333,-115.9830556,Pahrump,NV,unknown,180,Small white object at high altitude +2009-07-14,32.7152778,-117.1563889,San Diego,CA,formation,1500,Walking back from lunch noticed 2 other people on street looking up on a clear blue sky. My friend and I looked up and saw a formation +2009-07-14,41.1175,-73.4083333,Norwalk,CT,formation,15,3 Objects meet in the sky, then fly off into different directions +2009-07-14,32.3122222,-106.7777778,Las Cruces,NM,unknown,9,A very large brightly lit object floats over buildings without a sound and disappears. +2009-07-14,41.9375,-70.0333333,Wellfleet,MA,disk,60,Wellflleet , Cape Cod, MA sighting July 14, 2009 Flat- grey metal saucer w/white light beam @ 22:15 +2009-07-14,36.4388889,-118.9036111,Three Rivers,CA,light,30,Star/Satellite like object in the sky that changed direction +2009-07-14,33.7877778,-117.8522222,Orange,CA,other,35,blue and red row of lights flying unusaul pattern over orange county, califonia +2010-07-14,36.2027778,-120.1019444,Huron,CA,disk,300,Upside down triangular obect with red pulsating lights floating above a airfield in Nothern California +2010-07-14,39.9611111,-82.9988889,Columbus,OH,diamond,30,UFO spotted and then switched directions abruptly. +2010-07-14,39.6477778,-104.9872222,Englewood,CO,oval,540,I think about this almost every day and how lucky I was to witness this! There really are ET's +2010-07-14,33.6305556,-112.3325,Surprise,AZ,other,30,9:10 PM in Surprise AZ. I saw what I thought was a Cresant moon, then realized it was to small to be the moon. It was bright Gold, al +2010-07-14,43.1547222,-77.6158333,Rochester,NY,light,30,Bright, fast moving blue light in Eastern sky. +2010-07-14,42.045,-71.9305556,Dudley,MA,light,1200,Pulsating white glow and active dark forms appear high in sky near Southern Worcester County, MA. +2010-07-14,42.045,-71.9305556,Dudley (S. Worcester Co.),MA,light,900,There was an anomaly of circular light with dark, changing shapes passing in and out of it. +2010-07-14,47.9791667,-122.2008333,Everett,WA,formation,300,3 bright lights in a triangle formation over Everett +2010-07-14,36.175,-115.1363889,Las Vegas,NV,light,540,Fast moving light , it had levels of lights . White like colors sparkling from it as it change pattern 2 time . +2011-07-14,41.7297222,-93.6055556,Ankeny,IA,triangle,180,TRIANGLE FORMATION LIGHTS OVER CHURCH ANKENY, IOWA +2011-07-14,41.85,-87.65,Chicago,IL,oval,25,Very large white oval travelling at 300 miles per hour spotted over Chicago +2011-07-14,37.5566667,-120.9144444,Keyes,CA,light,120,Double light moving north-north east +2011-07-14,26.5625,-81.9497222,Cape Coral,FL,sphere,240,Two crafts, one silver and one black chasing each other performing angular movements.Looking from our 5th. floor balcony we saw the pla +2011-07-14,34.6777778,-76.9511111,Emerald Isle,NC,circle,5,Orange light at Emerald Isle beach on July 14, 201. +2011-07-14,41.4994444,-81.6955556,Cleveland,OH,circle,180,Orange-red flickering ball floating over lake Erie west of the cuyahoga river. Floated then took of upward and west until disappeared. +2011-07-14,42.6738889,-85.6447222,Wayland,MI,fireball,2700,Two "fireballs," 20 minutes apart, in different counties. +2011-07-14,33.0197222,-96.6986111,Plano,TX,light,20,A white light in the night sky brightened, faded, maneuvered unlike a star/plane/satellite and disappeared. +2011-07-14,42.2222222,-71,Braintree,MA,other,360,House shape object with lights and a encounter +2011-07-14,25.7738889,-80.1938889,Miami,FL,triangle,10,Large dark triangle with alternating blue and red lights flying over Miami +2012-07-14,32.7666667,-96.5988889,Mesquite,TX,circle,300,Metalic or white no lights +2012-07-14,48.5569444,-113.0125,Browning,MT,fireball,5,First lightening,then a flamming fire ball comes down with a tail of orange and yellow colors. +2012-07-14,39.4666667,-87.4138889,Terre Haute,IN,circle,120,Bright light in sky in Terre Haute, IN just west of Hulman airport at approximately 2:15 a.m. 7/14/2012 +2012-07-14,37.0919444,-84.6041667,Somerset,KY,circle,5,Bright white circle of light appears, moves from south to north extreamly fast the disappears in thin air +2012-07-14,38.7191667,-90.2602778,Jennings,MO,circle,1800,Circular fireballs. +2012-07-14,43.7694444,-74.8172222,Eagle Bay,NY,oval,3,Crystal clear UFO caught on camera. +2012-07-14,39.7294444,-104.8313889,Aurora,CO,oval,300,UFO spotted in SE skies this past summer. +2012-07-14,47.6447222,-117.5922222,Airway Heights,WA,light,180,Two UFO's in sky. +2012-07-14,41.2663889,-79.2427778,Fisher,PA,fireball,300,7 fiery pulsating lobes seen rising from woods near Fisher, PA on July 14, 2012 +2012-07-14,40.0391667,-74.0502778,Mantoloking,NJ,fireball,1200,Orange balls, fireballs, steady movement +2012-07-14,38.8113889,-90.8527778,Wentzville,MO,oval,1200,8 or 9 orange orbs on Wentzville night sky. +2012-07-14,39.5522222,-84.2333333,Springboro,OH,formation,300,4 Glowing lights traveling in formation in the western sky in Springboro, Ohio +2012-07-14,39.8366667,-84.4113889,Brookville,OH,light,45,Four white lights moving into random formations seen above trees +2012-07-14,27.725,-82.7413889,St. Pete Beach,FL,fireball,600,20-30 ORANGE/RED FIREBALLS TRAVEL NORTH OVER ST PETE BEACH AND VANISH OVER GULF +2012-07-14,27.725,-82.7413889,St. Pete Beach,FL,fireball,600,20-40 ORANGE/RED FIREBALLS TRAVELING NORTH OVER ST PETE BEACH-DISAPPEARING OVER GULF +2012-07-14,41.2188889,-86.4230556,Culver,IN,circle,2400,Round orange light/object moved in line, stopped & stayed in place, seemed to quiver, then left abrubtly. Repeated this several tiimes. +2012-07-14,29.9938889,-90.2416667,Kenner,LA,light,120,Five motionless red lights in a roughly triangular formation sighted in north Kenner, Louisiana. +2012-07-14,45.5061111,-91.7380556,Rice Lake,WI,light,1800,Small fast moving "star" UFO, disappeared and then reapeared in different part of the sky, +2012-07-14,45.9933333,-123.9213889,Seaside,OR,disk,600,Reddish-gold object seen in Seaside, Oregon on July 14, 2012. +2012-07-14,32.5972222,-82.3338889,Swainsboro,GA,circle,60,Two blue lights, spherical in shape approached my car from behind and wound up left of my car at equal speed. +2012-07-14,33.4936111,-117.1475,Temecula,CA,unknown,1200,Flashing lights in the sky. +2012-07-14,45.4313889,-122.7702778,Tigard,OR,cigar,240,Orange/red, glowing object, flew from tree-line level to the sky, to the distant atmosphere. +2012-07-14,41.2563889,-74.3602778,Warwick,NY,circle,600,3 of us saw 2 large reddish glowing objects moving together across the sky There was no sound They were definitely not planes +2012-07-14,40.3383333,-83.6772222,Zanesfield,OH,circle,600,5 red balls of light flying in an arc formation in Logan County Ohio +2012-07-14,36.8525,-121.4005556,Hollister,CA,light,120,Formations of lights hovering in the sky, then moving up in an angle. +2012-07-14,34.2247222,-118.4488889,Panorama City,CA,light,30,UFO sighting 7/14/12 over Panorama City CA. +2012-07-14,40.0391667,-74.0502778,Mantoloking,NJ,light,900,Orange-Reddish orbs flying over the sky that seemed like they were on fire. +2012-07-14,38.5394444,-75.0555556,Bethany Beach,DE,disk,180,Yellow lighted large disk soundless over Bethany Beach De +2012-07-14,38.3363889,-75.0852778,Ocean City,MD,oval,45,Bright round orange object appeared in sky above Ocean City, MD +2012-07-14,41.5513889,-70.6152778,Falmouth,MA,oval,300,Orange balloon with glowing sack, traveling in a straight line, quiet, steady speed. +2012-07-14,41.760555600000004,-88.32,Aurora,IL,fireball,60,Circular orange firey object floating 50 meters above the ground spotted in Aurora, IL +2012-07-14,39.1052,-92.2249,Hallsville,MO,sphere,180,Bright white round object. +2012-07-14,37.775,-122.4183333,San Francisco,CA,other,60,Orange/red pulsing orb seen in overcast SF sky, flying low northbound +2012-07-14,34.8638889,-84.3241667,Blue Ridge,GA,light,180,We were sitting on a dock and star gazing when I spotted a tiny light slowly moving across the sky. It would intermitandly stop and fai +2013-07-14,26.3583333,-80.0833333,Boca Raton,FL,unknown,600,Witnessed 9 glowing orbs traveling south to north in West Boca Raton, Florida just after midnight on July 14, 2013. The first 4 seemed +2013-07-14,38.2097222,-84.5588889,Georgetown,KY,sphere,300,2-red objects seen above Georgetown, KY. +2013-07-14,29.9544444,-90.075,New Orleans,LA,other,10800,((HOAX??)) Organized objects some jets some idk over NOLA. +2013-07-14,35.6752778,-83.7558333,Townsend,TN,sphere,60,At around 6:20 Est. my wife and I were driving around Cades Cove loop in the GSMNP located in Townsed, TN. I noticed what looked like a +2013-07-14,39.3772222,-76.54,Parkville,MD,formation,900,Up to 50 flashing lights moving together +2013-07-14,35.2288889,-89.515,Oakland,TN,circle,180,Brilliantly colored Orange/Red Circle travelling E to W in Oakland, TN on July 14, 2013. +2013-07-14,35.2288889,-89.515,Oakland,TN,circle,180,Orange / Red Orb in Oakland, TN traveling at constant speed and altitude on 07/14/13 appx. 21:00. +2013-07-14,32.5158333,-93.7319444,Bossier City,LA,light,900,Orange orbs spotted +2013-07-14,39.9338889,-74.8913889,Mount Laurel,NJ,formation,900,Husband and myself witness some glowing pulsating lights in the night sky, we could not make out the shape of the craft, but he saw a f +2013-07-14,42.1711111,-87.8444444,Deerfield,IL,fireball,180,Red/Orange fireballs or lights above northern Chicago suburbs +2013-07-14,38.6580556,-77.25,Woodbridge,VA,sphere,30,I noticed the object moving from southwest to northeast. The object was a pulsating sphere that turn a brilliant bright whitish color. +2013-07-14,40.0063889,-75.7036111,Downingtown,PA,circle,120,Me, My sister and Brother were all hanging out on the deck and we saw this bright ball of light moving extremely fast across the sky an +2013-07-14,43.1536111,-93.2008333,Mason City,IA,fireball,180,Slow moving orange/fireball. +2013-07-14,41.5513889,-70.6152778,Falmouth,MA,light,3600,12 silent orange lights +2013-07-14,44.7822222,-88.6088889,Shawano,WI,unknown,600,I observed a very fast moving object traveling northernly direction heading towards Lake Superior . It was very bright and very high +2013-07-14,38.1494444,-79.0719444,Staunton,VA,light,3600,White/orange pulsating orb in skies over Staunton, VA. +2013-07-14,33.3061111,-111.8405556,Chandler,AZ,triangle,5,I saw these lights as I was driving from the 101 South onto the 202 East San Tan Freeway. I saw the lights first in front of me as I wa +2013-07-14,45.5827778,-122.3522222,Washougal,WA,light,7,Light flashing really bright, reappearing then flashing again and not moving in normal aviation flight form. +2013-07-14,41.5236111,-90.5775,Davenport,IA,fireball,600,Fleet of "fireball" type ufo seen! +2013-07-14,42.0983333,-76.0497222,Endicott,NY,other,2100,Strange light anomoly in the southern sky over Endicott, NY. +2013-07-14,43.5277778,-71.4708333,Laconia,NH,light,600,Three bright lights close together very little space and two more to follow! +2013-07-14,26.6402778,-81.8725,Fort Myers,FL,unknown,5,Bright Green Flash of Light over SW Florida July 14th, 2013 at 11:30PM. +2013-07-15,40.7519444,-80.3194444,Beaver Falls,PA,oval,45,Sitting on my porch a saw a round object ,with lights circling ,red, and blue,maybe another color,didn't appear far fro my house,maybe +1942-07-15,36.4980556,-84.5127778,Oneida,TN,rectangle,120,Two children walking along highway saw unfamiliar object in sky. +1945-07-15,32.7833333,-96.8,Dallas,TX,sphere,7200,A round ball of fire . Not a wisp of cloud. My mother and I were sitting on our back steps in the shade, very hot. This ball moved al +1947-07-15,36.175,-115.1363889,Las Vegas (East Of),NV,disk,300,On July 15, 1947 I witnessed a large saucer-shaped disk outside Las Vegas, Nevada. +1947-07-15,41.9675,-88.1202778,Keeneyville,IL,formation,300,A burning particle from space experienced coincident with an unusual over flight at high altitude +1947-07-15,37.15,-82.4561111,Clintwood,VA,cylinder,10,In July 1947 my Dad and I were working in our corn field in Clintwood Virginia (Dickerson County). Around 3PM we looked up up see a cyl +1947-07-15,42.5963889,-114.1352778,Hazelton (Northeast Of),ID,disk,600,The Object was Huge,Saucer-shaped,beautiful silver,no sound,no exhaust-No lights as it was early afternoon. +1947-07-15,44.98,-93.2636111,Minneapolis,MN,disk,1140,July 1947 around 5 pm I saw a gray disc-like object in the sky which newscaster Cedric Adams mentioned later +1947-07-15,36.8472222,-89.6852778,Morehouse,MO,cylinder,1140,Looked like airplanes without windows, wings, or tails. +1947-07-15,37.3394444,-121.8938889,San Jose,CA,chevron,240,The object seen that summer evening was cheveron shaped, with a blue glow visable around the edges, moving silently & slowly. N-S. +1948-07-15,34.448055600000004,-119.2419444,Ojai,CA,light,900,UFO sighting in Ojai, CA in 1948 +1949-07-15,34.6580556,-88.5666667,Booneville,MS,unknown,900,Returning home from a movie, we witnessed a large craft about 75 yards behind our house, hovering silently approx. 100 ft. high... +1950-07-15,40.7355556,-74.1727778,Newark,NJ,sphere,300,As a student of astronomy, this writer witnessed ufo's performing astounding aerial maneuvers. Silent propulsion. Technical performance +1951-07-15,47.6733333,-117.2383333,Spokane Valley (Otis Orchards),WA,sphere,10800,UFO over the Spokane Valley 1951 +1952-07-15,33.78,-118.2616667,Wilmington,CA,disk,120,Three flying saucers suddenly appeared in the sky, hovered, darted forwarded, hovered, then disappeared. +1952-07-15,41.9675,-76.4305556,Litchfield,PA,other,300,We now cannot believe there was jets where we saw them +1952-07-15,33.9547222,-118.2111111,South Gate,CA,circle,60,I was about 11 years old at the time, and a friend of the same age was visiting. We both saw what look like a halo in the sky. Within +1952-07-15,47.4958333,-121.7855556,North Bend,WA,other,180,old sighting (1952 0r ཱ) of daylight object seen from approximately 50 '. +1952-07-15,40.7141667,-74.0063889,New York City (Bronx),NY,other,120,My friends and I were sitting on the roof of a building and saw 6 rows of 6 stars in formation then did a 90 degree turn in formation +1953-07-15,36.1658333,-86.7844444,Nashville,TN,cylinder,300,cylindrical object "examining" trees +1954-07-15,39.9522222,-75.1641667,Philadelphia,PA,disk,3600,I saw 2 alabaster white perfectly round objects over our ball field as they hovered over us for about an hour ,then they were gone. +1954-07-15,39.785,-85.7694444,Greenfield (Rural Area, 6 Miles So.),IN,cigar,300,This all occured when I was still a child and living on a farm. My mother, our next door neigbor's wife, and myself, were standing outs +1954-07-15,39.1141667,-94.6272222,Kansas City,KS,chevron,180,MISSOURI INVESTIGATORS GROUP Report: Two brothers witness chevron-shaped object streak across sky. PD)) +1954-07-15,40.7438889,-73.1391667,Oakdale,NY,disk,45,Three highly luminesce objects in a "V" formation gliding through the black night sky. +1955-07-15,38.9938889,-105.0563889,Woodland Park,CO,oval,15,Orange disk in night sky +1956-07-15,40.5030556,-81.6411111,Sugarcreek,OH,disk,30,I drove right underneath it with my truck. There was a bright light emitting from the bottom of the saucer. As soon as I went underne +1956-07-16,41.5758333,-72.5030556,East Hampton,CT,disk,120,Saucers over Lake Pocotopaug, Ct. _ Summer of 1956 +1957-07-15,34.1072222,-118.0569444,Temple City,CA,light,900,Lights over Mt Baldy California 1957 as seen by ten honest men +1957-07-15,29.7630556,-95.3630556,Houston,TX,diamond,120,broad daylight incident in Houston about 1957 +1957-07-15,41.2411111,-77.0013889,Williamsport,PA,cigar,120,A small, cigar-shaped object entered my field of vision while I was standing on the back porch of second-story apartment building. +1957-07-15,33.7669444,-118.1883333,Long Beach,CA,disk,120,Three disks stationary in a triangle formation during the day surrounded by a mirage effect seemingly caused by heat. +1957-07-15,39.7391667,-104.9841667,Denver,CO,light,900,A supposed star, at a time before there were humanly created objects in orbit, which behaved very differently from the other stars. +1957-07-15,40.7608333,-111.8902778,Salt Lake City,UT,disk,900,5 Silver Saucers flying from over the Salt Lake, and flying over the Oquirah Mountains towards Dugway +1957-07-15,39.0997222,-94.5783333,Kansas City,MO,light,10800,car ingulfed in red light, missing time, father decessed now, mother now 75, sister now 44, and self now 54, light remained for what se +1958-07-15,38.1075,-122.5686111,Novato,CA,disk,90,saw saucer in large grass field it took off straight over vehicle went into sky and dissappeared +1959-07-15,38.2855556,-85.8241667,New Albany,IN,cigar,300,Cigar shaped object hovered in the sky +1960-07-15,34.1008333,-117.7669444,La Verne,CA,circle,1800,July 1960, Pomona Ca, two yellowish orange spheres observed by numerous people that reported to the local paper. +1960-07-15,35.3847222,-77.9930556,Goldsboro,NC,sphere,120,craft seen near Seymore-Johnson AFB, N.C., 1960 +1960-07-15,35.2219444,-101.8308333,Amarillo,TX,diamond,3600,Texas Panhandle UFO's +1961-07-15,35.9986111,-96.1138889,Sapulpa,OK,unknown,720,07/ 00/6 1:00 Sapulpa Ok. lights 10mins. 8 lights; 2 rows of 4 bright white. +1961-07-15,39.8308333,-77.2313889,Gettysburg,PA,cigar,18000,Rte 30 West, near Belmont Rd. intersection 7/15/61 4 hours Gray metallic cigar craft on Herr property in field below hill +1961-07-15,37.8952778,-81.1644444,Mount Hope,WV,unknown,1800,Object only visible as a streak of light at very high altitude traveled from horizon to horizon in a few seconds for a total of 6 times +1961-07-15,45.3002778,-122.9719444,Newberg,OR,egg,9000,Bright orbs flying in sky west of Portland, Oregon +1962-07-15,40.1922222,-74.0163889,Avon-By-The-Sea,NJ,changing,300,Approached by a small orange light. Light changed to a large cicular object. +1962-07-15,41.85,-87.65,Chicago,IL,other,1800,One large craft with colored revolving lights between two metalliccylanders +1962-07-15,41.6661111,-81.3397222,Mentor,OH,disk,1800,UFOs over Mentor Ohio Drive-in in 1960s +1962-07-15,38.1758333,-92.7841667,Sunrise Beach,MO,cylinder,180,Lake Ozark UFO sighting 1960's +1963-07-15,37.8875,-90.2144444,Weingarten,MO,disk,7200,Flashing amber colored lights that looked like a ferris wheel on its side. +1963-07-15,36.6333333,-93.4166667,Kimberling City,MO,disk,36,Disc seen passing over bridge at Kimberling City, Missouri. +1963-07-15,36.8527778,-75.9783333,Virginia Beach,VA,circle,900,4 glowing circles 40 ft in diameter flying in rigid formation - aerial acrobatics 100 ft off the beach for > 15 minutes -many witnesses +1963-07-15,35.4675,-97.5161111,Oklahoma City,OK,light,1800,UFO sighting in Summer of 1963 or 1964 in Oklahoma City +1963-07-15,33.7455556,-117.8669444,Santa Ana,CA,light,1200,siteing of a strange object. +1963-07-15,45.5236111,-122.675,Portland,OR,sphere,1200,1963 - Round hovering, soundless, rotating object over northeast Portland, Oregon +1963-07-16,39.7938889,-75.1725,Mantua,NJ,circle,30,it was 1963 during a baseball game. I had hit a single and was on first base. The first baseman (jimmy Steffens) and I were looking in +1964-07-15,39.7588889,-84.1916667,Dayton (West Of),OH,disk,180,I was on the phone with my aunt looking north over the top of tress and house tops going Wt toward the grad school was a saucer shape. +1964-07-15,31.1497222,-81.4916667,Brunswick,GA,formation,240,5 bright silver objects assuming the points of a 5 pointed star. 10-15% from directly overhead. All 5 were clearly discernible, at ar +1964-07-15,38.5580556,-91.0119444,Washington,MO,other,1200,July 1964, 15:00, Washington, MO, rectangular, 20 min, from north to south, posted 9-28-06. +1964-07-15,38.0988889,-78.9694444,Fishersville,VA,fireball,4,A huge fireball fell from the sky +1964-07-15,36.175,-115.1363889,Las Vegas,NV,circle,2400,Saucer-shaped craft landed, rattled apt., and I watched it for some time +1965-07-15,35.1322222,-118.4480556,Tehachapi,CA,triangle,20,Large delta shape craft passed overhead blocking out the view of stars behind its shape. No sound. +1965-07-15,42.2458333,-84.4013889,Jackson,MI,rectangle,120,glowing white light moving slowly at waist hight +1965-07-15,30.6941667,-97.1958333,San Gabriel,TX,oval,1800,High in the daylight sky, a stationary oval object with a white light surounded by four colored lights +1965-07-15,39.5641667,-80.9961111,Sistersville,WV,fireball,1200,circular ball of fire, dripping flames but not consumed. +1965-07-15,40.7555556,-73.5880556,Westbury,NY,egg,60,Object travelled silently around 60(?) MPH.At arms length about fist size-Multi colored and "evaporated". +1965-07-15,42.2305556,-96.0972222,Hornick,IA,fireball,120,Bright orange/red fireball crosses sky in western Iowa in summer of 1965. +1965-07-15,42.9169444,-89.2177778,Stoughton,WI,light,240,A very bright white light, the size of a small house. It "shot" 3 bursts of light at our car, hitting it with loud booms but no feelin +1965-07-15,37.1183333,-82.8269444,Whitesburg,KY,light,2700,Lights and sounds on the ground and several strange lights in a cluster +1965-07-15,41.3175,-81.3455556,Aurora,OH,sphere,120,It was late, arond 10 or 11 pm, us guys were near a swamp at the rear of Aurora Lake looked up saw a Red Glowing Orb hovering 15 to 20 +1965-07-15,40.7583333,-82.5155556,Mansfield,OH,disk,900,The night Duke the dog died +1966-07-15,42.1013889,-72.5902778,Springfield,MA,other,600,U.F.O. sighting was astronomic in size as to blot out the sky on all horizons. +1966-07-15,29.3011111,-94.7975,Galveston,TX,oval,30,Glowing Orb chased by F-104s in daylight over Galveston, Texas in 1966. +1966-07-15,34.02,-117.9486111,La Puente,CA,triangle,300,3 triangle lights racing across the sky playing "tag" for approximately five minutes, then went straight up in the sky out of sight +1966-07-15,40.7341667,-92.8738889,Centerville,IA,light,1800,90 degree angles uniform stair step flight pattern, very bright light, silent +1966-07-15,43.1327778,-76.2572222,Cold Springs,NY,unknown,21600,A Strange Night At Summer Camp... 500 Lights On Object0: Yes +1966-07-15,34.005,-118.8091667,Malibu,CA,triangle,15,Huge triangler shape object seen up close over the tree line in the Malibu mountains in 1966 +1966-07-16,42.6702778,-71.3025,Dracut,MA,circle,1200,A real U.F.O. on the roof. +1967-07-15,44.6688889,-90.1716667,Marshfield,WI,disk,60,When I was a kid, not unlike most… I enjoyed sleeping outdoors with my friends to watch shooting stars and satellites while gazing at t +1967-07-15,39.8966667,-79.9747222,Carmichaels,PA,chevron,1800,In 1967 our town was celebrating it's bi-centanial, a month long celebration which included several events including a temporary museum +1967-07-15,40.9377778,-79.8463889,Boydstown,PA,disk,600,Clear view in daylight +1967-07-15,38.5816667,-121.4933333,Sacramento,CA,light,120,Single star-like object splitting into three star-like objects and moving uniformly across the sky. +1968-07-15,41.5241667,-72.0763889,Norwich,CT,diamond,120,Too close to a 4 foot ET - was in kid's bedroom. TV picture went to snow. +1968-07-15,37.2708333,-76.4558333,Bena,VA,changing,180,was walking inthe back feild when it was clear skie me and my brother sean ashadow look up sean a ship flying across the feild at tree +1968-07-15,33.4483333,-112.0733333,Phoenix,AZ,light,14400,bright light, missing time +1968-07-15,47.6063889,-122.3308333,Seattle,WA,circle,600,It did not move or make any noise, the lights were very intense and pure in color, I will never forget it. +1968-07-15,34.0805556,-118.0719444,Rosemead,CA,cigar,1200,Myself and my friend observed a cigar-shaped craft hovering in a field. We observed the phenomnon for twenty minutes the left the field +1968-07-15,40.8352778,-81.0661111,Homeworth,OH,triangle,600,Triangular shaped craft brushes apple tree in Columbiana County,Ohio +1968-07-15,41.7,-70.7633333,Marion (Silver Shell Beach),MA,other,600,When I was 8 years old I saw a grayish blue box maybe 150 to 200 feet in the air.There seemed to be a door or square opening with s +1968-07-15,33.4955556,-88.4272222,Columbus,MS,other,900,on the night a buddy and me saw said ufo, it was approx. 5 feet above power lines going only about 5 miles per hour. It had no visible +1968-07-15,44.9083333,-68.6869444,Stillwater,ME,fireball,180,Large green luminous object appears in field, disappears suddenly into night sky. +1969-07-15,41.448055600000004,-90.1541667,Geneseo (Outside Of),IL,unknown,1200,Questionable Abduction +1969-07-15,36.3955556,-97.8780556,Enid,OK,unknown,600,2 unknown objects, moving @ incredible speed passed just feet above my car +1969-07-15,45.5919444,-120.6969444,Wasco,OR,disk,120,I saw the craft almost stationary about 75 yards out; and 75 yards high .I looked at for about one minute then ran back to our house to +1969-07-15,28.4055556,-80.605,Cape Canaveral,FL,sphere,20,check your home movies of apollo 11 +1969-07-15,40.1163889,-88.2433333,Champaign,IL,disk,300,UFO or Enormous "Spider"? 500 Lights On Object0: Yes +1969-07-15,40.6936111,-89.5888889,Peoria,IL,disk,60,flying disk over northern Peoria, Illinois +1969-07-15,37.9872222,-122.5877778,Fairfax,CA,disk,60,Disk shaped craft appeared, slowly zigzaged across town and took off. +1969-07-15,39.5630556,-84.6386111,Somerville,OH,light,300,my report is about a sighting on 7/15/1969 at 10:30pm where the sky lit up like day as bright as noon for about 5 minutes no sound was +1969-07-15,48.4758333,-122.3241667,Burlington,WA,other,30,I was returning home after seeing my girl friend, trveling along a rural road between two corn fields a creature apprximatly 3 feet tal +1970-07-15,42.1616667,-79.3919444,Bemus Point,NY,other,15,An object viewed very close to me moveing slow. 250-300 ft. of altitude. I could hear popping and or snapping as streams of sparks or l +1970-07-15,41.8488889,-72.5722222,South Windsor,CT,oval,300,UFO hovering over potato field behind my girlfriends house +1970-07-15,42.1583333,-72.5,Indian Orchard,MA,unknown,120,An extra star in the big dipper's handle. +1970-07-15,42.9911111,-76.8025,Tyre,NY,other,60,Fully illuminate airplane-shaped craft splits in half and continues in different directions. +1970-07-15,38.7522222,-121.2869444,Roseville,CA,disk,180,Silent, disc shaped object with rotating vertical bands of light, accelerated away with amazing velocity. +1970-07-15,42.45,-73.2458333,Pittsfield,MA,light,1200,I was fortunate to have witnessed 2 unidentified objects over a 15-20 minute period in Western MA around 1970. +1971-07-15,38.1219444,-82.46,Genoa,WV,cigar,300,Me and my brother saw a cigar shaped object move quietly and very slowly above us for about 5 minutes. +1971-07-15,43.698055600000004,-85.4836111,Big Rapids,MI,oval,600,Flying object observed over Big Rapids, MI and eventually chased by SAC planes. +1971-07-15,37.9680556,-91.3547222,Steelville,MO,light,300,Orange light over Steelville MO in 1971 +1971-07-15,47.1269444,-88.5808333,Hancock (Vicinity),MI,formation,360,Three very bright nocturnal lights on approx 40-degree angle. Approx 150-200 yds from 1st to 3rd light. Approx 1 mile from observers, a +1972-07-15,33.9166667,-117.8991667,Brea (So.57 Freeway),CA,other,300,going so. on the 57-fwy appox at brea cyn. rd. in the city of brea. I was in the back of my family station wagon. I looked up and saw a +1972-07-15,39.7683333,-86.1580556,Indianapolis,IN,cigar,30,I was 6 years old. Was playing outside. saw a round object colored red and moon yellow to the north. I was frightened ran inside scream +1972-07-15,44.5513889,-94.9841667,Morton (9 Miles North Of),MN,triangle,300,A triangular craft w/3 lg orange lights silently flew overhead going west to east. It then sped up and away. +1972-07-15,42.8872222,-72.4708333,Chesterfield,NH,cigar,600,Large Cigar Shaped Object Chased By The Airforce In Chesterfield, New Hampshire +1972-07-15,29.7630556,-95.3630556,Houston,TX,light,120,I have seen three things in my lifetime that I am sure were not from this planet. The three things I saw were things in the sky that +1972-07-15,31.7586111,-106.4863889,El Paso,TX,light,720,Large Mothership type craft drops smaller craft out of bottom then disappears +1972-07-15,42.3266667,-122.8744444,Medford,OR,light,600,Projecting-retracting-light beam from no visible source +1972-07-15,39.145,-84.3744444,Mariemont,OH,oval,720,UFO and elecrical power grid. +1972-07-16,43.55,-96.7,Sioux Falls,SD,cylinder,60,A secret kept for too many years by a young boy +1973-07-15,43.1547222,-77.6158333,Rochester,NY,sphere,1200,While walking to another building for a lunch break, I and many other people saw this "craft" hovering over the city Of Rochester for 2 +1973-07-15,41.0241667,-80.615,Poland,OH,cone,300,Apprx. time of Apollo return 1973, Poland Ohio, greyish dented, tapered cone shaped craft with lghts came +1973-07-15,40.0177778,-79.5897222,Connellsville,PA,triangle,300,150 ft point to point gold flat triangle. +1973-07-15,41.4994444,-81.6955556,Cleveland,OH,oval,300,Grey oval object with white lights rotating underneath. Object made no sound as it hoovered. Moved quickly +1973-07-15,32.7833333,-96.8,Dallas,TX,circle,300,Stationary disk with lights circling the circumference of the object. +1973-07-15,33.7747222,-84.2963889,Decatur,GA,triangle,900,THE TRIANGULAR OBJECT WAS BIG AND WIDE AT CLOSE RANGE MOVING SLOWLY AND HOOVERING OVER THE AREA WE WERE IN. +1974-07-15,39.3433333,-95.46,Valley Falls,KS,egg,180,A yellow egg-shape object slowly decended behind a tree line west of my house. +1974-07-15,39.2758333,-121.6588889,Live Oak,CA,triangle,300,Shiny Black Triangle with lights in courners and one in center fly over small town in California. +1974-07-15,41.5308333,-75.5458333,Jermyn,PA,fireball,5,Fireball moving northwest to southeast +1974-07-15,46.2630556,-95.5366667,Vining,MN,other,300,The date is approximate as it was long ago, but I'll never forget. I was about 12 years old riding a minibike on a gravel road when an +1974-07-15,32.7325,-89.5361111,Carthage,MS,unknown,7200,The object did not move in the night sky for over an hour and then it streaked across the sky and was gone! +1974-07-15,42.0411111,-87.69,Evanston,IL,disk,300,An large orange disk hovered quietly over a park a few blocks away to the northwest. +1974-07-15,38.9822222,-94.6705556,Overland Park,KS,light,10,6 to 9 dots of light in uneven formation +1974-07-15,37.0297222,-76.3455556,Hampton (Virgina Beach Amusment Park),VA,light,5,Bright ball.Moved from N to S. Reported next day up and down the Eastern seaboard. +1974-07-15,30.3319444,-81.6558333,Jacksonville,FL,triangle,7200,taking a picture of night blooming cereus cactus at 9pm. craft came from north over ranche style house. lots were one quarter acre. hov +1974-07-15,41.3455556,-88.8425,Ottawa,IL,unknown,15,I was amazed when I came to this site and looked up the date that I saw my strange encounter. Some one posted on the same date that the +1974-07-15,41.75,-87.8041667,Bridgeview,IL,triangle,0.01,Triangular streak SW to NE horizon to horizon with a short zig zag very high altitude extreamly fast distinct shape +1974-07-15,34.4436111,-118.6086111,Valencia,CA,disk,120,Passing by Magic Mountain in Los Angeles, I thought it must be a themepark ride in the sky +1974-07-15,38.2855556,-85.8241667,New Albany,IN,triangle,60,At 2230, my father and I saw a black triangular shaped object in the sky with three lights, one being green, the other two were red. +1975-07-15,37.1236111,-82.6013889,Pound,VA,disk,1800,Hovered without sound- moved at a slow speed and accelerate at extrodinary speed. +1975-07-15,29.1691667,-95.4316667,Angleton,TX,sphere,300,Massive spherical object glowing bright orange between Bailey's Prairie, TX and Angleton, TX. +1975-07-15,42.5791667,-84.4436111,Mason,MI,teardrop,240,I saw a bright silver, top shaped craft, which was stationary, and it affected my radio, and then reaslly moved fast. +1975-07-15,44.5191667,-88.0197222,Green Bay,WI,triangle,15,blacktriangles,hoovering or moving very slowly should of dropped out of the sky,no sound.no exhaust,day time sighting moved very fast. +1975-07-15,33.5205556,-86.8025,Birmingham,AL,disk,180,CLEAR DAYLIGHT SKY SILVER SAUCER WITH BLINKING LIGHTS OLD SPRINGVILLE RD 1975 +1975-07-15,38.1838889,-83.4327778,Morehead,KY,circle,360,This changed the way I look at things forever and no one can tell me that I didn't see what I saw. NO ONE +1975-07-15,45.2461111,-93.4519444,Ramsey,MN,disk,120,Disk Shaped Craft Hovering over Farm +1975-07-15,40.0525,-80.6286111,Triadelphia,WV,disk,240,Craft hovered over the pond, silently with its lights on. +1975-07-15,39.8402778,-88.9547222,Decatur,IL,disk,180,Please no follow up info +1975-07-15,33.9166667,-117.8991667,Brea,CA,unknown,1200,A light in the sky which first moved South to North, stopped briefly then moved again West til out of sight. +1975-07-15,38.7936111,-76.2944444,Wittman,MD,triangle,900,Came within 2 objects working in tandem - came within a few feet of one of then +1975-07-15,40.3772222,-105.5211111,Estes Park,CO,light,15,A bright, fast moving light is chased by a military fighter jet. +1975-07-15,35.7719444,-78.6388889,Raleigh,NC,disk,480,UFO seen in 1975 on a desserted hwy. in NC +1975-07-15,34.2011111,-118.5355556,Reseda,CA,formation,10,Dove Shaped Ships that Glowed Green in mid-1970s +1975-07-15,37.1388889,-88.4033333,Smithland,KY,triangle,600,I noticed 5 amber light in the shape of a triangle moving from east to west. +1975-07-15,40.8838889,-74.5625,Dover,NJ,other,7200,07/15/1975 Dover,NJ Apprx 12 boomerang shape disks w/red center light hovering 2 hrs.1 larger than others.02/25/05 +1975-07-15,33.8905556,-80.0186111,Turbeville,SC,light,1800,I was walking outside of our property to go to another building when a mint green light about the height of a telephone poll was glowin +1975-07-15,41.7430556,-92.7222222,Grinnell,IA,rectangle,1200,Interesting odor case, unique perhaps in the "glob" description emanating from UFO. +1976-07-15,37.8391667,-94.3544444,Nevada,MO,light,1800,We were star gazing on a beautiful summer night at approximately midnight. Many stars where visable and after perhaps an hour...probab +1976-07-15,34.0194444,-118.4902778,Santa Monica,CA,unknown,60,Two UFO's sighted over Los Angeles and reported on ABC channel 7 news the nest day. +1976-07-15,28.5997222,-81.3394444,Winter Park,FL,fireball,1200,Glowing light coming from between trees. +1976-07-15,38.6272222,-90.1977778,St. Louis,MO,cylinder,60,chased by 3 foot silver cylinder in sky. +1976-07-15,41.7847222,-73.9336111,Hyde Park,NY,disk,600,flat saucer-multiple white lights on the bottom,going on and off,one at a time, in rotation. light in center of disc (red?) altitude es +1976-07-15,48.3130556,-101.7366667,Berthold,ND,cigar,600,Bright violet cigar shaped Berthold North Dakota +1976-07-15,28.2916667,-81.4077778,Kissimmee,FL,circle,900,A few days after de bicentennial. +1976-07-15,28.5380556,-81.3794444,Orlando,FL,disk,600,Large disc shaped with light panels around the edge of this disc +1976-07-15,39.6375,-106.0613889,Silverthorne,CO,disk,10,a light appeared to my left and a metalic object suddenly appeared, saucer shaped +1976-07-15,41.1452778,-93.6538889,West Liberty,IA,circle,20,Circular orb sighting at close range (about 25 feet) that moved in a straight line floating above the ground +1976-07-15,35.1494444,-90.0488889,Memphis,TN,light,420,Bright white light in rural area of Memphis in 1976 responds to kid's and their sealed beam flashlight. +1976-07-15,29.7286111,-99.7611111,Leakey,TX,light,300,1976 observation in W.Texas of 3 rapidly moving lights at very high alt. moving in a way that wouldn't be possible for man made craft +1976-07-15,45.8261111,-92.9683333,Pine City,MN,oval,7200,stargazers looking at a beautiful sky full of stars on a perfectly clear night, wittness several craft buzzing over Cross lake. One cra +1976-07-15,38.7838889,-90.4811111,St. Charles,MO,light,1800,On the night in question, my best friend Richard C. Bean & I were camping outside my parents townhouse in St. Charles Mo. We had star w +1976-07-15,34.0172222,-96.1425,Bokchito,OK,circle,15,round, luminous, pulsating object with dull places moving across the southwestern horizon then vanished 7/76 +1976-07-15,38.573055600000004,-82.8302778,Greenup,KY,light,10,2 brilliant lights a few seconds apart, unbelievable speed no trail stopped like hitting a wall and made a 90 degree turn to the south +1976-07-15,42.525,-71.7602778,Leominster,MA,unknown,420,Bright beam of light with faint sound. +1976-07-16,42.1630556,-123.6469444,Cave Junction,OR,triangle,43200,Real man in black +1977-07-15,40.0811111,-82.8088889,New Albany,OH,oval,9000,Large UFO in Ohio +1977-07-15,35.0844444,-106.6505556,Albuquerque,NM,chevron,600,The object appeared to be a giant piece of glass. +1977-07-15,28.5380556,-81.3794444,Orlando,FL,disk,900,Flying saucer outside of Orlando, Florida summer of 1977 +1977-07-15,37.775,-122.4183333,San Francisco,CA,circle,90,The object hovered over my bedroom window with spinning circular lights +1977-07-15,33.6602778,-117.9983333,Huntington Beach,CA,rectangle,600,This was a rectangular object with a red and green pulsing lights there were two officers which apparently also saw this. +1977-07-15,40.825,-78.3513889,Houtzdale,PA,fireball,600,Object seemed to want to distance itself from our presence. +1977-07-15,28.5380556,-81.3794444,Orlando,FL,disk,2,i was on a family vac when i was ten we were coming back from dinner i was in the back of a car. when i look out the window a caught a +1978-07-15,35.6869444,-105.9372222,Santa Fe (Pecos Wilderness),NM,light,900,Dull red giant "bracelet" at Santa Fe Baldy mountain,summer 1978, Pecos Wilderness, New Mexico +1978-07-15,30.3855556,-88.6116667,Gautier,MS,disk,1800,bright multi-colored lights emanate from disc flying/hovering silently approx 500 ft in the air. +1978-07-15,33.4222222,-111.8219444,Mesa,AZ,cigar,90,Huge silver cigar shaped craft glides low and slow over a populated suburban area in Mesa Az followed closely by a military fighter air +1978-07-15,42.3666667,-71.3036111,Weston,MA,disk,900,daughter's abduction +1978-07-15,47.005,-97.2186111,Amenia,ND,disk,900,Hovering disc over WDAY tower east of Amenia, ND. +1978-07-15,38.6155556,-95.2675,Ottawa,KS,oval,2700,The UFO was shaped something like a foot ball the length of about 2 school busses but with many white and red lights on the underside +1978-07-15,37.775,-122.4183333,San Francisco,CA,disk,360,I & 7 friends notice a disc shape object still at night with no sound also,glowing orange haze around the bottom. started moving south. +1978-07-15,39.4597222,-105.6611111,Grant,CO,light,30,3 green fast moving lights +1978-07-15,46.8772222,-96.7894444,Fargo,ND,triangle,60,Glowing triangular object, composed of smaller triangles, floated silently across sky from NE to SW. +1979-07-15,44.2527778,-91.5013889,Arcadia,WI,cigar,120,Blimp like object moving 300 feet above a small town main street causing dogs to bark in the middle of the night. +1979-07-15,36.9780556,-82.9886111,Cumberland,KY,other,120,Something raceing accross the sky up high with the stars and then it stopped. Changed directions we can not currently do. +1979-07-15,45.4077778,-122.5691667,Clackamas,OR,light,2,Lights in the fog +1979-07-15,31.3269444,-89.2902778,Hattiesburg,MS,unknown,5,Sensation of loud noise, crash, and time stopping +1979-07-15,40.4152778,-85.6505556,Fairmount,IN,cigar,360,Cigar shaped craft - similar sighting listed in same area +1979-07-15,42.7325,-84.5555556,Lansing,MI,other,15,seen a strange object standing still in the ski shoot off at about a 15 degree angle and out of sight in about 2 seconds +1979-07-15,34.5008333,-117.185,Apple Valley,CA,sphere,6,Daytime / air to air near miss / sighting +1979-07-15,33.9319444,-117.9452778,La Habra,CA,triangle,3600,ufo was a triangle, approx. 100 Yds each side, approx. 50 feet thick. 1st view from side..several minutes..2nd/3rd view underneath 15 m +1979-07-15,38.2541667,-85.7594444,Louisville,KY,disk,120,Second sighting of object in the Preston Hwy./Gilmore Lane area. This was the same silent, metallic, dome-shaped object sighted almost +1979-07-15,33.7444444,-118.3861111,Rancho Palos Verdes,CA,chevron,180,Late at night in the summer of 1979 a huge chevron shapped UFO flew silently and slowly just above the rooftops of So. California +1979-07-15,38.1205556,-82.1855556,Ranger,WV,triangle,900,Late night summer of 1979. Three triangle shaped craft. +1979-07-15,46.6022222,-120.5047222,Yakima (30 Miles East Of, On Highway 24),WA,other,300,Man remembers seeing object with three revolving lights in sky in front of his traveling auto. Object disappears, car lights go off an +1980-07-15,41.5066667,-90.515,Moline,IL,disk,600,The object moved up and down and in a zig-zag formation and was round. +1980-07-15,25.7738889,-80.1938889,Miami,FL,triangle,60,Certain things happen to you in your life that you never forget and this is why you know they are real the rest of your life. +1980-07-15,42.8863889,-78.8786111,Buffalo,NY,oval,600,I will never forget the summer of 1980. I was in my back yard with my parents. Our neighbors were there too. We noticed a oval shaped o +1980-07-15,30.3116667,-95.4558333,Conroe,TX,light,14400,A speeding craft and several lost hours +1980-07-15,34.4436111,-118.6086111,Valencia,CA,disk,40,Although this sighting occurred 22 years ago, it is an experience my wife and I cannot forget and considerably a closer experience that +1980-07-15,41.2586111,-95.9375,Omaha,NE,oval,2,Very fast moving object!!!!!!!! +1980-07-15,40.7608333,-111.8902778,Salt Lake City,UT,light,30,Bright starlike object over oil refinery in SLC zig zag over mountainside & went straight up at high speed +1981-07-15,36.0625,-94.1572222,Fayetteville,AR,other,180,As an 9 year old child I saw a dumbbell shaped object hovering in daytime at approx. 5000 feet. +1982-07-15,41.2411111,-77.0013889,Williamsport,PA,light,12,a star-like light traveling in a zig-zag pattern at the speed of light. +1982-07-15,40.0552778,-84.0261111,Christiansburg,OH,circle,1,large orange disc or ball travelling at a great speed making no sound and not disturbing surrounding area. +1982-07-15,43.045,-75.8669444,Chittenango,NY,triangle,120,the two orange triangled craft aproached from the East making no sound, and practically flew right over head. +1982-07-15,36.3547222,-79.6647222,Reidsville,NC,oval,300,Silver oval w/rotating lights +1983-07-15,45.1427778,-84.6602778,Vanderbilt,MI,other,900,Swirling inverted black-hole cloud with a brightly lit center and whisps of clouds and lightening coming from the center of the mass. +1983-07-15,26.0108333,-80.1497222,Hollywood,FL,fireball,60,The object was bright yellow and had stopped it's verticle descent with no apperant decelleration, it's horizontal acceleration was ins +1983-07-15,32.7458333,-96.9975,Grand Prairie,TX,unknown,360,UFO cloud/Hollowgram seen over Dallas Texas in the 1980's +1983-07-15,30.1894444,-82.6394444,Lake City,FL,triangle,420,Bright Light approx 3 miles able to get under it with sunroof open +1983-07-15,33.9375,-117.2297222,Moreno Valley,CA,changing,3600,Bright light seen hovering and when look at through binoculars it was seen morphing into different shapes and lines. +1983-07-15,40.9402778,-74.1322222,Fair Lawn,NJ,sphere,120,A large Frisbee-shaped craft high in the sky with a series of green lights pulsing from front to back. +1983-07-15,40.5186111,-74.4125,Edison,NJ,sphere,1800,while driving, my friends girlfriend said, hey, look at that! we all looked out the window and into the sky ,where we saw a sphere shap +1983-07-15,41.7002778,-73.9213889,Poughkeepsie,NY,other,180,1500-2000 foot UFO seen above Mid-Hudson Bridge by Poughkeepsie, NY in July 1983. +1983-07-15,40.8688889,-74.2086111,Little Falls,NJ,rectangle,480,Large craft, silent and slowly moving forward directly above the car +1983-07-15,39.5488889,-89.2944444,Taylorville,IL,disk,120,UFO SIGHTED UP CLOSE AND PERSONAL IN TAYLORVILLE, IL. +1984-07-15,42.5294444,-83.7802778,Brighton,MI,other,180,While walking at night, I saw an object with rod-like extensions and colored lights move directly across my path in front of me. +1985-07-15,38.0033333,-79.1561111,Greenville,VA,disk,1200,To describe the object as unbelievable is an understatement. +1985-07-15,29.8547222,-89.9905556,Belle Chasse,LA,other,300,ON OR ABOUT THE DATE INDICATED. MY SON, WIFE AND MYSELF WITNESSED A LARGE HEXAGON SHAPED OBJECT IN THE NIGHT SKY. COULD NOT TELL THE EX +1985-07-15,48.9180556,-122.7433333,Birch Bay,WA,disk,600,Birch Bay Craft Observed by Young Girls +1985-07-15,40.345,-74.1844444,Holmdel,NJ,changing,1200,Large v shaped object buzzes house and shines lights in window while people eat and viewers seem non existant to all others in house. +1985-07-15,41.2427778,-73.2011111,Trumbull,CT,unknown,480,Large, slow moving...low, dull humming noise as it went overhead. Lights grouped in three's - red/wht/red +1985-07-15,30.6325,-97.6769444,Georgetown,TX,triangle,45,Computer rendering of Triangle shaped object seen over Georgetown Texas in 1985 +1985-07-15,30.6325,-97.6769444,Georgetown,TX,triangle,45,Large, triangular shaped object with lights on bottom silently passes over my house, matches Austin couple's description +1986-07-15,41.85,-87.65,Chicago,IL,oval,10,1986 saucer with white lights over chicago downtown disappears after 10 seconds +1986-07-15,35.5938889,-105.2233333,Las Vegas,NM,changing,180,luminous object hangs in air, disappears rapidly in the distance +1986-07-15,33.6680556,-117.3263889,Lake Elsinore,CA,disk,300,craft sighted over elsinore with multi-lights and no sound +1986-07-15,35.0844444,-106.6505556,Albuquerque,NM,chevron,300,My friend and I were relaxing in a park during the summer of 1986 not far from a friends house where we had left about a half hour earl +1986-07-15,36.7358333,-83.2594444,Smith,KY,unknown,30,Two sets of 3 red lights (arranged like a triangle) apparently belonging to 2 objects. They came close together then flew away in diffe +1986-07-15,40.6672222,-81.355,East Sparta,OH,other,300,Large low flying craft with clear bottom +1987-07-15,65.2636111,-166.3608333,Teller,AK,disk,1800,5 CREDITABLE WITNESSES +1987-07-15,31.3491667,-88.94,Richton,MS,other,420,Richton, Ms. "lights Above" +1987-07-15,33.5016667,-117.6616667,San Juan Capistrano,CA,light,3,Flat ribbon of yellow light cuts swath across nighttime sky, then explodes. +1987-07-15,29.7630556,-95.3630556,Houston,TX,sphere,1500,Sighting in Houston +1987-07-15,43.4577778,-88.8372222,Beaver Dam,WI,other,1200,((HOAX??)) WE SAW A LARGE OBJECT AND IT SCARED US. +1987-07-15,36.0344444,-89.3855556,Dyersburg,TN,circle,10,UFO sighting - the only one who remebers is the one who didn't see it - circular bright hovering craft just above the house +1987-07-15,41.9644444,-73.4405556,Lakeville,CT,chevron,2700,The wife and I were driving home when we saw in the west a "V" shaped pattern of lights flying north. It then made a 180 deg turn to th +1987-07-15,34.2638889,-85.8605556,Collinsville,AL,triangle,600,Huge Triangular Craft +1987-07-15,38.8905556,-90.1841667,Alton (Kendall Hill Subdivision),IL,disk,120,Clear UFO sighting in the Mid-Late 1980's, Round craft, moving slowly on a clear night. +1988-07-15,46.6636111,-118.86,Connell,WA,oval,60,glowing oval-shaped aircraft were seen flying at fast speeds and shifting direction and stoping without slowing down periodically troug +1988-07-15,34.1866667,-118.4480556,Van Nuys (Colbath Ave.),CA,sphere,600,saw black sphere floating in yard 5 ft away.no light no sound.told everyone i knew.saw it on the news 2 days later filmed in orange cou +1988-07-15,41.3025,-73.3838889,Redding,CT,other,1800,enormous silent craft +1988-07-15,27.8002778,-97.3961111,Corpus Christi,TX,circle,120,Westside of Corpus Christi UFO +1988-07-16,34.2508333,-105.5961111,Corona,NM,cross,240,lights seen outside Corona NM +1989-07-15,41.2844444,-84.3558333,Defiance,OH,triangle,600,A LOW FLYING TRIANGLE SHAPED CRAFT WAS OBSERV FLYING VERY SLOW WITH MINIMAL NOISE CAUSING ALL THE POWER IN THE NEIGHBORHOOD TO GO OUT. +1989-07-15,34.6825,-92.585,Avilla,AR,triangle,300,large triangle with three red lights and made no sound hovered in place, then escorted off by approaching military jet. +1989-07-15,36.7477778,-119.7713889,Fresno,CA,fireball,120,Bright craft observed by two teenagers in fresno ca 1989 +1990-07-15,40.0377778,-76.3058333,Lancaster,PA,other,1800,Massive sky full of various size UFO's +1990-07-15,39.1625,-76.625,Glen Burnie,MD,light,900,BRILLIANT ROUND LIGHT 200 FEET AWAY SHONE INTO MY BEDROOM HYPNOTICALLY +1990-07-15,38.8338889,-104.8208333,Colorado Springs,CO,flash,5,Bright Flash directly overhead. +1990-07-15,40.7608333,-111.8902778,Salt Lake City,UT,disk,1800,While sitting on the top of a mountain something disk? rose from a group of trees,flew up straight ubove me,stopped,changed direction a +1990-07-15,39.4097222,-123.3544444,Willits,CA,changing,15,Two Orbs spinning in a flipping motion across sky. +1990-07-15,37.2297222,-119.5086111,North Fork,CA,fireball,120,Greenish, glowing light in mid-day disappears to hillside without a sound +1990-07-15,39.7286111,-121.8363889,Chico,CA,disk,120,Fully visible flying saucer +1990-07-15,38.5130556,-90.4358333,Fenton,MO,rectangle,60,07/15/1990 23:00 Fenton, Mo. Rectangular craft with colored lights down each side. +1990-07-15,39.2641667,-76.9927778,Glenelg,MD,light,120,silent light seen floating in sky in July of 1990 +1991-07-15,33.1975,-96.615,Mckinney,TX,unknown,600,Large string of light move slowly from west to east, very low and silent +1991-07-15,34.1477778,-118.1436111,Pasadena,CA,disk,8,Rose Bowl Disks +1991-07-15,33.9202778,-80.3416667,Sumter,SC,disk,600,Classic saucer shaped object overhead at midday. +1991-07-15,29.7630556,-95.3630556,Houston,TX,triangle,2700,Two witnesses observed triangular object made of hazy greenish lights speeding back and forth across the horizon. +1991-07-15,41.3661111,-81.8544444,Berea,OH,triangle,300,Very low flying triangle with lights on the corners, large purple flash in the center, two witnesses +1991-07-15,47.7166667,-104.1558333,Sidney,MT,triangle,4,Triangle or V of lights traveling fast and low with no sound at all. +1991-07-15,40.8044444,-90.4016667,Abingdon,IL,egg,240,i couldnt believe we were seeing this thing right above us.it was very spooky! +1991-07-15,33.4519444,-97.7663889,Sunset,TX,light,180,string of lights silently passes over rural house +1992-07-15,46.7833333,-92.1063889,Duluth,MN,other,5,luminous orange half-disk winks on then off +1992-07-15,34.0522222,-118.2427778,Los Angeles,CA,chevron,15,low flying 5 light chevron +1993-07-15,39.6066667,-75.8336111,Elkton,MD,light,300,A light descended slowly into the Elk River, just off the Chesapeake Bay. +1993-07-15,44.98,-93.2636111,Minneapolis,MN,triangle,60,Giant triangle-shaped craft at very low altitude right over North Minneapolis +1993-07-15,19.7297222,-155.09,Hilo,HI,formation,4500,During a Hawaiian Huna training on the Big Island of Hawaii, myself and about 12 others in our group witnessed a formation of UFOs that +1993-07-15,39.0711111,-75.4763889,Magnolia,DE,circle,900,Saucer-like object seen just south of Dover AFB. +1993-07-15,46.7325,-116.9991667,Moscow,ID,other,180,Moscow, ID-Row of 5-6 off white lights moving silently & slowly east to west summer 93. +1993-07-15,47.9416667,-119.0022222,Grand Coulee,WA,light,1200,Saw a bright red pulsing light hovering in the distance. Turned off on a dirt side road to see if we could get closer to it. +1994-07-15,35.7547222,-118.4244444,Kernville,CA,fireball,10,Bright Fire ball heading north over the mountains +1994-07-15,32.8338889,-109.7069444,Safford,AZ,sphere,1200,July 1994 Safford, Ariz. 3A.M. Bright Sphere with Gas-like contents moving in circular motion Sphere itself motionless. +1994-07-15,36.175,-115.1363889,Las Vegas,NV,triangle,420,I told the 911 Operator that i was looking at a "huge black triangle". +1994-07-15,32.4058333,-99.4933333,Clyde,TX,circle,120,U.F.O. sighting which is unknown to me what I was seeing but it was very bright and round like the moon. +1994-07-15,45.5230556,-122.9886111,Hillsboro,OR,cigar,120,Working in my garden, looked up and saw a cigar shaped craft proceeding south. It was very high and I didn't hear or expect to hear an +1994-07-15,38.7208333,-75.0763889,Rehoboth Beach,DE,sphere,60,Sphear, white with concave and convex "windows" daylight with binoculars +1994-07-15,43.6630556,-116.6863889,Caldwell,ID,triangle,300,Copper Triangular UFO hovers over field then disappears in 1994 +1994-07-15,43.7608333,-70.5261111,Sebago Lake,ME,light,240,Bright silent lights above lake +1994-07-15,25.9561111,-80.1394444,Aventura,FL,egg,120,Three egg-shaped objects drifting over Aventura Mall +1994-07-15,41.2458333,-75.8816667,Wilkes-Barre,PA,light,8,I was out for a walk, when a ball of light came out of the north to the south and and changed direction straight upwards and reversed +1994-07-15,32.2591667,-90.4225,Raymond,MS,other,4,2 goose shaped, lear jet sized craft at tree top level +1995-07-15,32.4486111,-99.7327778,Abilene,TX,sphere,7200,3 people in Abilene, TX observe star-like object performing normally physically impossible maneuvers in night sky. +1995-07-15,34.4263889,-117.3,Hesperia,CA,fireball,600,It was a glowing orange ball. IT was verry large. IT moved at a rappid speed right&left. Then dissapered in the center of rotating diam +1995-07-15,37.9680556,-91.3547222,Steelville,MO,cone,5,Small 3 foot gray cone passed in front of my police car hovering a foot off the ground. Another officer was with me. It was on a gravel +1995-07-15,33.8675,-117.9972222,Buena Park,CA,light,600,One night my friend and I were walking home.It was very hot and there was a storm coming in,heat lightning,clouds,that sort of thing.We +1995-07-15,34.0658333,-84.6769444,Acworth,GA,circle,30,Circular object , crimson in color, maybe 10-20 ft. in dia., hovering maybe 20' above ground, appeared to be non-solid/holgram +1995-07-15,47.6588889,-117.425,Spokane,WA,disk,1800,Driving on interstate 90 going east towards Post Falls, Idaho a huge disc shaped object of many changing colors seen over Stateline, I +1995-07-15,38.425,-105.0222222,Penrose,CO,light,30,Ball of light setting behind hills +1995-07-15,42.7883333,-71.2013889,Salem,NH,egg,30,over the tops of the trees we could see this bright yellow object with something brown in the middle. once it went past the trees, we +1995-07-15,40.1083333,-83.7525,Urbana,OH,circle,300,White dot over a corn field. +1995-07-15,41.4397222,-81.7355556,Brooklyn,OH,cigar,600,CIGAR-SHAPED CRAFT DISAPPEARED BEFORE OUR EYES +1995-07-15,41.6352778,-72.7691667,Kensington,CT,light,12,Two red lights in formation buzz across tree tops then shoot straight up into the sky - It was increadible! +1995-07-15,42.7261111,-71.1913889,Methuen,MA,oval,10,Saw a yellow football shaped object in the sky. Moved hoorizontally across the sky for about ten seconds just gliding horinzontally mak +1995-07-15,33.7455556,-117.8669444,Santa Ana,CA,other,1800,Crafts that appeared as small as stars assumed the shape of the "Big Dipper," travelled across the sky & expanding & contracting in +1995-07-15,35.2225,-97.4391667,Norman,OK,sphere,30,I looked up in the sky and saw a half sphere shaped object with extensions floating in the sky. It made no noise. +1995-07-15,40.4163889,-91.1361111,Carthage,IL,light,120,Light in the sky that moved unusually and flashed. What I saw lasted approximately 2 minutes and in no way could it have been an aircr +1995-07-15,47.8108333,-122.3761111,Edmonds,WA,light,10,I was talking to my friend (we were camping outside) and it was a clear night. A light appeared out of nowhere among the stars, and beg +1996-07-15,40.8894444,-111.88,Bountiful,UT,triangle,20,Witnessed A Black Triangle Craft Over Utah +1996-07-15,39.7338889,-90.2288889,Jacksonville,IL,light,300,A mysterious blue light filled my room and I felt a friendly presence. +1996-07-15,42.2916667,-85.5872222,Kalamazoo,MI,other,60,In the summer of 1996 my friend and I saw a bright object traveling across the sky very quickly making unusually strange movements, str +1996-07-15,46.9966667,-120.5466667,Ellensburg,WA,rectangle,180,Clear sunny day, 3 adults saw small silver sphere that hovered for about 1 minute directly overhead. It then suddenly took off to the e +1996-07-15,37.5019444,-92.8208333,Conway,MO,other,2,An olive green object shaped like the vertical tail fin of an aircraft passed over I-44 just a few feet above the ground +1996-07-15,41.2097222,-74.6080556,Sussex,NJ,triangle,300,triangular shaped object seen on separate occasions in different states +1996-07-15,32.8994444,-105.9597222,Alamogordo,NM,changing,600,I opened the window to tell my dog to be quiet then about 2 sec later a yellow glowing craft about 70 feet away from me how high it was +1996-07-15,35.2219444,-101.8308333,Amarillo,TX,other,10800,Knowledge for a perpetual energy device,and how to create a gravity wave for anti-gravity perpulsion. FREE- ASK +1996-07-15,39.9258333,-75.12,Camden,NJ,circle,20,3 sets of 4 orange circles or discs traversing the sky from west to east +1996-07-15,42.5,-96.4,Sioux City,IA,triangle,10,Triangular shapes that only I could see. +1996-07-15,32.2216667,-110.9258333,Tucson,AZ,other,10,Mother Ship/ Appeared as a Star. ((NUFORC Note: Possible star sighting, we believe, given the duration of the event. PD)) +1996-07-15,44.8113889,-91.4983333,Eau Claire,WI,unknown,8,Aircraft of unknown shape with four orange non-blinking lights silently flew towards the west around 600 or 700 ft. above my neighbor a +1996-07-15,40.9294444,-100.1602778,Gothenburg,NE,circle,30,red flashing light crossing clear night sky west to east horizon to horizon at a speed 5 to 10 times faster than any jet i ever saw. +1997-07-15,46.0113889,-92.9441667,Hinckley,MN,sphere,600,Girlfriend and I were up in Hinckley, MN at a friend's cabin. It was a clear sky with very little light polution and a lot of stars. I +1997-07-15,39.510555600000004,-79.7986111,Reedsville,WV,triangle,60,I saw the triangle lights more than once +1997-07-15,37.2397222,-96.9952778,Winfield,KS,light,10,extremely bright light moving at Moc 12 North to South from Wichita Ka to the So. Horizon in less than 8sec. +1997-07-15,45.5608333,-94.1622222,St. Cloud,MN,sphere,600,2 orange balls connected with 7 others to become one and fly away at a high rate of speed.. +1997-07-15,42.09,-78.4944444,Allegany,NY,sphere,180,Ball of light +1997-07-15,34.7391667,-112.0091667,Cottonwood,AZ,disk,900,Suacer and secondary object over Cottonwood Arizona (verde valley) chased by Jets +1997-07-15,41.0086111,-91.9625,Fairfield,IA,sphere,1800,extremely bright reflective sphere changed into eccentric cigar chape +1997-07-15,42.1102778,-88.0341667,Palatine,IL,other,600,Oblate diamond shape that disappeared and reappeared in the sky with light patterns around it. +1997-07-15,44.8547222,-93.4705556,Eden Prairie,MN,other,300,I saw four silver colored( like when the sun shines on an airplane) capsuale shaped objects that were traveling east to west, very fast +1997-07-15,32.9755556,-107.3072222,Caballo,NM,triangle,30,Low flying, (approx. 200ft. altitude), SAND colored triangle, passed directly over my house at an approx. speed of 75-100mph. +1997-07-15,35.3847222,-77.9930556,Goldsboro,NC,sphere,60,Witness to a large, smooth, silent sphere, kind of the color of the moon. +1997-07-15,32.2216667,-110.9258333,Tucson,AZ,triangle,900,I saw one triangular shaped craft, it had two very big randomly flashing lights(bluish white color). +1997-07-15,36.1197222,-80.0738889,Kernersville,NC,triangle,5,Three points of light in triangle alignment. +1997-07-15,35.0525,-78.8786111,Fayetteville,NC,triangle,2700,Triangular craft followed on foot, and gray at my window. Seperate and presumably unrelated experiences +1997-07-15,32.3122222,-106.7777778,Las Cruces,NM,fireball,3600,Orange, glowing ball moving at height of 50 to 300 feet over and around a city park (Apodaka Park). Pursued by 2--3 helos w/searchlight +1997-07-15,35.6008333,-82.5541667,Asheville,NC,sphere,60,Figure eight flying light over Asheville +1997-07-15,35.3847222,-77.9930556,Goldsboro,NC,formation,1200,1997 rotating stars positioned to left and right of moon do fast clockwise rotations +1997-07-15,40.4863889,-86.1336111,Kokomo,IN,triangle,600,Black triangular object observed hovering over a residential area in Kokomo, IN during the summer of 1997. 500 Lights On Object0: Y +1997-07-16,39.7555556,-105.2205556,Golden,CO,oval,120,Spot moving on the moons surface +1998-07-15,44.98,-93.2636111,Minneapolis,MN,disk,10,I saw a disk hovering above some suburbs with a light shinning down below before disappearing in a streak of light. +1998-07-15,35.0844444,-106.6505556,Albuquerque,NM,fireball,120,Green Fireball Sighted Near Albuquerque Moving Directly Up From the Ground +1998-07-15,44.73,-116.4372222,Council,ID,triangle,2100,Krackowski "Fast-Proton" Detection Vessel +1998-07-15,34.1083333,-117.2888889,San Bernardino,CA,light,180,A flying ball of light with no structure, no sound, and no strobes or anticolision, navigational lights. Moved too fast for a STOL. +1998-07-15,39.9611111,-82.9988889,Columbus,OH,other,10,No joke, a giant Teddy Bear shaped UFO. +1998-07-15,40.7141667,-74.0063889,New York City (Brooklyn),NY,other,1200,A torroidial (Donut) shaped glowing plasma. The color of which I would closest describe as molten gold, but not exactly. +1998-07-15,40.0991667,-83.1141667,Dublin,OH,flash,5,I was driving in my car, about 35 miles per hour, nice weather, I look up and see this object going acrossing the sky. +1998-07-15,41.676944399999996,-71.2666667,Bristol,RI,egg,240,there was no heat allmost like it was floating but was all medal blow my mind. +1998-07-15,47.6588889,-117.425,Spokane,WA,oval,30,white oval craft travelled east to west over Spokane,estimate 10ꯠ ft,speed aprox 200mph,seemed to be dark line around edge. +1998-07-15,39.7294444,-104.8313889,Aurora,CO,unknown,4,7/00/98 aprox aurora co looked like star 4-5 seconds object moved slowly westward 4/7/03 +1998-07-15,39.0061111,-77.4288889,Sterling,VA,disk,900,Close encounter in Sterling near the water tower. 500 Lights On Object0: Yes +1998-07-15,42.3266667,-122.8744444,Medford,OR,circle,30,Huge, round, white light hovering over freeway overpass +1998-07-15,42.4758333,-90.2527778,Scales Mound,IL,light,180,Three, what we thought were satellites, converged in to a triangle and flew off in a different direction. +1998-07-15,47.8211111,-122.3138889,Lynnwood,WA,triangle,600,witnessed very bright light,it rose into the sky very large,the size of a football field. It had lights placed in a sporadic fashion on +1998-07-15,35.6263889,-86.6933333,Chapel Hill,TN,formation,5,I never knew there was a way of reporting this without being exposed or ridiculed. On the approximate date at roughly the time indicat +1998-07-15,42.7883333,-71.2013889,Salem,NH,circle,43200,while night fishing we watched a silent craft slowly hover over a large pond over a 4-6 hour period making its way across the body of w +1998-07-15,43.41,-86.3486111,Whitehall,MI,light,3600,3 to 4 colors emanating in the sky darting back and forth and disappearing and reappearing for about an hour. +1999-07-15,38.5019444,-122.995,Guerneville,CA,formation,300,Woke up at 1am, went out onto deck outside bedroom and looked up at the sky through the trees. Saw 50 or more craft, flying West toward +1999-07-15,45.6836111,-121.3961111,Mosier,OR,light,20,Blue/White Light Gives Calm Feeling In Mosier, Oregon +1999-07-15,41.7858333,-88.1472222,Naperville,IL,light,1800,The object had a bunch of lights on it when all of a sudden they all went out but 1 light and flew off into space. +1999-07-15,30.3458333,-96.5280556,Somerville,TX,other,1800,Bright Globe Circles House +1999-07-15,39.510555600000004,-79.7986111,Reedsville,WV,unknown,300,We got beam with a brilliant light from the sky. +1999-07-15,42.5775,-88.105,Paddock Lake (Rural Area, Approx. 4mi. North),WI,disk,180,I was going S/B on Hwy 75 on my cycle when I saw a dull orange glow at approx. 30 degrees up directly ahead of me over the road. As I a +1999-07-15,40.015,-105.27,Boulder (North Boulder),CO,oval,900,My Girl-Friend and I noticed something strange in the sky above Boulder, Oval in shape and I have a Video Tape of it.. Interested?? +1999-07-15,33.7488889,-84.3880556,Atlanta,GA,sphere,5,Two silver and bronze metallic spheres were witnessed from aircraft approaching Atlanta airport +1999-07-15,44.1316667,-70.4936111,Oxford,ME,disk,600,A Disk shape object spinning slowly with lights around it. Hoovering over some trees... +1999-07-15,37.3394444,-121.8938889,San Jose,CA,fireball,15,I seen a green object possibly a comet streek across the sky leaving behind in a summer night +1999-07-15,35.2269444,-80.8433333,Charlotte,NC,changing,240,Glowing object blue and white +1999-07-15,39.0911111,-94.4152778,Independence,MO,light,5,I was standing on the front lawn about 9:55 PM central time when a bright light caught my attention out of the corner of my eye. I turn +1999-07-15,43.5747222,-90.6402778,La Farge,WI,fireball,300,I was in the school parking lot when I looked up to a hill across the street and saw a orange glow. +1999-07-15,29.7630556,-95.3630556,Houston,TX,sphere,30,Extremely bright spherical object about 40 degrees above the east-northeast horizon, about the size of a dime in the night sky. Extrem +1999-07-15,39.9783333,-86.1180556,Carmel,IN,triangle,1200,Family sees triangular shaped ufo +2000-07-15,41.6966667,-87.8169444,Palos Hills,IL,unknown,5,Green plasma ball style object over Chicago, IL +2000-07-15,25.7738889,-80.1938889,Miami,FL,cigar,5,The object in the sky was not identifiable or familiar to me at all. +2000-07-15,38.9447222,-82.1113889,Cheshire,OH,oval,180,I was outside in my yard when I saw the bright orange objects in a triangle patteren as they move across the sky. +2000-07-15,45.6388889,-122.6602778,Vancouver,WA,circle,300,siting over vancouver, Wa. +2000-07-15,33.7877778,-117.8522222,Orange,CA,circle,20,On a perfectly clear day I observed the shadow of an object 125-140 ft wide moving at 150 mph. +2000-07-15,34.0522222,-118.2427778,Los Angeles,CA,triangle,60,Brief sighting of a group of black triangles that suddenly disappeared. +2000-07-15,35.5297222,-80.6683333,Enochville,NC,cylinder,30,tube like object +2000-07-15,33.3527778,-111.7883333,Gilbert,AZ,light,1200,Just reviewed your website. By the way, I enjoy your segments with Art Bell. Anyway, I saw the report on the red lights over Gilbert ov +2000-07-15,41.8875,-88.3052778,Geneva,IL,sphere,6,Blue Orb seen in Illinois. +2000-07-15,41.7858333,-88.1472222,Naperville,IL,disk,60,Object was circular to oval shape with 3-4 dark areas (perhaps trapazoidal) on bottom and moved silently. +2000-07-15,41.7711111,-81.05,Madison,OH,cigar,2,Very Fast Moving Object +2000-07-15,37.6922222,-97.3372222,Wichita,KS,other,120,Strange, unlit object on a low, straight path over city. +2000-07-15,45.4944444,-122.8658333,Aloha,OR,light,15,This was a stationary large white light that then moved slowly south then picked up speed quickly disapeared. +2000-07-15,43.1775,-83.7341667,Clio,MI,circle,600,pulsating circular light moving SO to NW slowley at very high altitude +2000-07-15,42.32,-89.0580556,Loves Park,IL,triangle,180,Trianglular object no sound flew over us as we were looking at stars. +2000-07-15,28.6802778,-81.5097222,Apopka,FL,sphere,1,Routine sightings of round,lumenescent orb over the night sky in Apopka, Altamonte Springs FL...flies very fast ,fairly regularly. +2000-07-15,41.8069444,-83.4425,Luna Pier,MI,oval,240,Seen UFO in Luna Pier Michigan. +2000-07-15,35.3733333,-119.0177778,Bakersfield,CA,triangle,20,TRIANGLE SHAPE WITH TWO LIGHTS AT EACH END +2001-07-15,41.2458333,-75.8816667,Wilkes-Barre,PA,triangle,18000,The truth behind the Grays ((NUFORC Note: Report of abductions is unconfirmed. PD)) +2001-07-15,40.5772222,-74.2286111,Carteret,NJ,other,1200,UFO spotted over Carteret, Linden, Woodbridge. +2001-07-15,40.5772222,-74.2286111,Carteret,NJ,circle,120,25 lights, 75 witnesses over cataret Nj on 7/15/01. +2001-07-15,40.5772222,-74.2286111,Carteret,NJ,formation,900,Slow moving V-formation of lights with orange flares. 75 cars pulled over on NJ turnpike at night to witness the event. +2001-07-15,40.5772222,-74.2286111,Carteret,NJ,light,1200,Massive NJ sighting +2001-07-15,40.5772222,-74.2286111,Carteret,NJ,other,900,Strange lights over Carteret +2001-07-15,40.7280556,-74.0780556,Jersey City,NJ,light,600,I noticed a bright light(3) from my window-it was moving in a not as fast as a typical plane(prop).It was huge because I wair -7.oo con +2001-07-15,40.7355556,-74.1727778,Newark,NJ,formation,300,Amazing Siting +2001-07-15,40.7141667,-74.0063889,New York City (Manhattan),NY,light,300,7 mysterious objects seen over New Jersey skyline. +2001-07-15,40.7141667,-74.0063889,New York City (Staten Island),NY,circle,300,5 to 8 circular objects / burnt orange +2001-07-15,40.5652778,-74.2608333,Port Reading,NJ,formation,60,12 starlike, silent,slow moving , erratic pattern, yellowish/orange color objects, eventually fading out one by one. +2001-07-15,40.5772222,-74.2286111,Carteret,NJ,formation,120,Major sighting by hundreds motorists along the NJ turnpike (traffic stopped!), from homes , by police, you name, they all saw the same +2001-07-15,40.5772222,-74.2286111,Carteret,NJ,light,3600,bright lights in sky, unidentifiable! +2001-07-15,40.3977778,-105.0744444,Loveland,CO,circle,60,Slow moving and silent a bright red orange color that was one ring of lights with no lights in the center. +2001-07-15,40.3977778,-105.0744444,Loveland,CO,other,45,ofznge/red ring. Dark in the center. Low flying, and quiet. +2001-07-15,35.2269444,-80.8433333,Charlotte,NC,oval,120,Bright orange object in the eastern sky. +2001-07-15,33.78,-118.2616667,Wilmington,CA,fireball,1200,I saw floating fire ball in the sky about 3:15 am . It looked like it was flicking and dropping small fire balls that would disappear +2001-07-15,35.4675,-97.5161111,Oklahoma City,OK,unknown,180,Loud grinding/saw like noise woke and startled me. 500 Lights On Object0: Yes +2001-07-15,41.9219444,-71.55,Smithfield,RI,light,300,First noticed what appeared to be a very brilliant star in the western sky, reddish colored, like the planet Mars might appear. After +2001-07-15,42.0883333,-87.9805556,Arlington Heights,IL,egg,300,Object hoverd 100' above thr groung @ 5:00am, was silver in color and had a egg shap with fountain arms on it, next the object nmoved i +2001-07-15,42.0986111,-75.9183333,Binghamton (South Of, 81 South, Near Pa Border),NY,chevron,600,fast shiny shaped like a star on its side hovering +2001-07-15,45.16,-92.9930556,Hugo,MN,light,2100,hovering lights that seemed to follow us around +2001-07-15,39.8841667,-82.7536111,Pickerington,OH,cone,10,Small cone shape like tip of ink pin, silver with no sound hit me in chest and then disappeared. +2001-07-15,40.9275,-73.9977778,Bergenfield,NJ,other,120,Daytime sighting of 7 to 11 lights, some hovering and some darting in random directions +2001-07-15,31.6038889,-89.1955556,Ellisville,MS,circle,90,Distant lite circular hovered briefly and then streaked away (not of this world's technology) +2001-07-15,30.1658333,-81.7066667,Orange Park,FL,disk,180,Disk in the sky above city +2001-07-15,45.5236111,-122.675,Portland,OR,unknown,600,Observed object in Clackamas- Oregon City area. +2001-07-15,26.525,-80.0666667,Boynton Beach,FL,cylinder,900,red round-shaped objects radomnly and sharply moving at very high speed in the sky over the ocean off Boyton Beach, Florida +2001-07-15,43.3030556,-77.9213889,Hamlin,NY,unknown,300,((HOAX??)) I was fairly young, probably around 10 or 11. I live in a housing complex per say, about 21 houses. +2001-07-15,36.1538889,-95.9925,Tulsa,OK,cross,15,Sighting of a large object that appeared as a V laying on its right side moving basically south to north east of Tulsa. +2001-07-15,21.35,-157.7208333,Waimanalo,HI,triangle,300,Started as a bright star on horizon, silently moved in a east-west direction over us. multi-colored light along the outside of the tria +2001-07-15,36.2166667,-81.6747222,Boone,NC,triangle,40,3 lights in moving triangle formation - changed formation to 3 lights in a row. +2002-07-15,48.1183333,-123.4294444,Port Angeles,WA,light,10,Very bright light around me and overhead shooting light motion +2002-07-15,42.9955556,-71.4552778,Manchester,NH,unknown,3600,Life changing, amazing, frightening, best experience of my life. +2002-07-15,37.9886111,-84.4777778,Lexington,KY,cylinder,120,Plane disappears into belly of hovering craft over Man O'War Blvd. In Lexington KY, and witnesses forgot about it temporarily. +2002-07-15,30.6580556,-98.4402778,Kingsland,TX,light,5,Bright ball of light saw over top of house +2002-07-15,45.4944444,-122.8658333,Aloha,OR,circle,300,Oregon UFO Review Case: Three crafts seen overhead. +2002-07-15,40.2736111,-76.8847222,Harrisburg,PA,sphere,30,small silver sphere moving and rotating +2002-07-15,39.0116667,-92.7530556,Franklin County,MO,disk,2,Disc sighting, my odd reaction, visiting my father's grave +2002-07-15,40.2455556,-74.8463889,Yardley,PA,triangle,20,Tirangle shaped object with eratic lights over Yardley in summer 2002 +2002-07-15,42.6605556,-84.0730556,Fowlerville,MI,triangle,300,The shape is what cought our attention +2002-07-15,41.7413889,-105.9741667,Rock River (Southeast Of),WY,oval,120,Carrier retrieves two small craft southeast of Rock River, Wyoming. +2002-07-15,46.2108333,-119.0066667,Burbank Heights,WA,cross,60,Silent plane-shaped shadow passing on ground in daylight when no planes are anywhere above. +2002-07-15,46.8722222,-113.9930556,Missoula,MT,fireball,60,Unexplained objects photographed over Mount Sentinel in Montana. +2002-07-15,39.7683333,-86.1580556,Indianapolis,IN,circle,300,AFTER A BRIGHT LIGHT AND A HUMMING SOUND MY CAR RADIO SHUT OFF AND DOESNT WORK ANYMORE +2002-07-15,47.7625,-122.2041667,Bothell,WA,oval,900,There was a really bright light moving slowly west over town. It just sort of hung in one position much to long for a helicopter and i +2002-07-15,44.7825,-69.3838889,Pittsfield,ME,unknown,600,the one thing we will never foreget was that there was no noise just a pulsing vibration in the air......?? +2002-07-15,45.4563889,-123.8427778,Tillamook (15 Miles Sw; Cape Lookout),OR,light,5400,My family and I observed a large bright as it moved north out over the Pacific ocean off of the northernm Oregon coast. +2002-07-15,43.5408333,-116.5625,Nampa,ID,light,5,Just west of Nampa, ID. Bright white light moves away rapidly. +2002-07-15,45.6366667,-89.4119444,Rhinelander,WI,other,3600,as stated above, the vehicle moved across the sky, all the while looking strangely similar to a star. +2002-07-15,37.5969444,-120.865,Hughson,CA,light,12,Last year Mid summer I was in my front lawn in the evening at bouts 11:30 PM. I was looking at the stars directly at 12:00 high. I noti +2003-07-15,43.1047222,-84.6919444,Maple Rapids,MI,sphere,600,red sphere follows us +2003-07-15,47.4705556,-122.3455556,Burien,WA,cylinder,10,I was looking out westward over puget sound when i saw a bright flaming sphere of fire. It was green with hues of red and yellow. It wa +2003-07-15,47.1719444,-122.5172222,Lakewood,WA,cylinder,8,UFO Green chem light looking cylinder over Puget Sound. +2003-07-15,47.6063889,-122.3308333,Seattle,WA,fireball,3,Blue-green fireball +2003-07-15,40.5983333,-124.1561111,Fortuna,CA,light,3600,fifteen minute timer +2003-07-15,48.3858333,-114.06,Hungry Horse,MT,light,1200,Saw something wierd, got it on video. +2003-07-15,37.3541667,-121.9541667,Santa Clara,CA,formation,300,My co-worker brought to my attention something unusual in the sky while we were doing some work outside of the warehouse. I looked up t +2003-07-15,32.7947222,-116.9616667,El Cajon,CA,disk,1800,dull black disc made circles in the sky. +2003-07-15,43.5391667,-89.4625,Portage,WI,sphere,180,"Foo-Fighter" seen from ground around Commercial jetliner in Wisconsin +2003-07-15,41.85,-87.65,Chicago,IL,fireball,120,Bright ball of fire +2003-07-15,42.3702778,-87.9019444,Gurnee,IL,cylinder,300,Slow moving "rod?" in a crystal clear sky +2003-07-15,29.4747222,-82.86,Chiefland,FL,disk,1310,We got a good look, it had 5 big square windowsw/ foggy dim light and no one inside that we could see, it landed on the road behind us. +2003-07-15,37.3394444,-121.8938889,San Jose,CA,other,40,This object looked like a flying carpet or flage blowing and waving in a wind . It radeated gold and orange and red. It was the size of +2003-07-15,39.2866667,-86.7625,Spencer,IN,triangle,5,At approximately 9:40 as I was sitting in my yard star gazing, something that made me think of a comet passed directly overhead. It w +2003-07-15,39.6291667,-75.6586111,Bear,DE,formation,120,Five strange lights moving in a slithering motion over my car like a sidewinder. +2003-07-15,33.7091667,-117.9527778,Fountain Valley (2hrs N Of; On I-5 S),CA,light,90,I don't know what it was. More modern than anything that I can think of. +2003-07-15,39.8913889,-75.0380556,Haddonfield,NJ,disk,5,I was 5 years old and in my parent's bedroom. i was looking out the window across the street and i saw something weird shaped like a s +2003-07-15,42.2011111,-85.58,Portage,MI,changing,120,The ship hovered in place for a minute and then flew away with no trace left of it. +2003-07-15,47.08,-122.0502778,Carbonado,WA,sphere,420,Ultra fast neon, cobolt blue round light descending into trees +2003-07-15,38.1597222,-87.4483333,Elberfeld,IN,light,7200,3 orange globes. +2003-07-15,40.6677778,-111.9380556,Taylorsville,UT,flash,120,A flash in the sky around Salt Lake City +2003-07-15,41.2086111,-73.5752778,Pound Ridge,NY,disk,180,One flying saucer flying in a zigzag motion, then a light in the sky resembling a slow-moving star which then sped up and vanished. +2003-07-15,37.9513889,-91.7711111,Rolla,MO,disk,180,Coming from the woods, I saw a UFO very close and it passed over my friend's house and over me and went into the woods. +2004-07-15,32.9808333,-80.0327778,Goose Creek,SC,triangle,240,Triangular, quiet, extremely slow-moving craft sighted around Charleston, SC. +2004-07-15,34.0522222,-118.2427778,Los Angeles,CA,fireball,6,Orange light with fading tail splitting through sky +2004-07-15,33.7358333,-118.2913889,San Pedro,CA,triangle,120,weird lights 2 different directions +2004-07-15,37.6922222,-97.3372222,Wichita,KS,other,600,four objects moved to high and fast to be anything human +2004-07-15,33.7488889,-84.3880556,Atlanta,GA,oval,6,Sighting during Atlanta morning rush hour +2004-07-15,30.3116667,-95.4558333,Conroe,TX,light,2700,High altitude steady lights passing from horizon to horizon not on sat paths +2004-07-15,46.4166667,-117.0166667,Lewiston,ID,cylinder,30,cylinder-shaped silver-metallic object(s) in a triangle formation (one leading in front,two alomgside behind/close and three objects be +2004-07-15,45.0655556,-93.2016667,New Brighton,MN,sphere,300,Black ball UFO about 75 feet across on a sunny partly cloudy day +2004-07-15,41.55,-71.4666667,North Kingstown,RI,other,60,object came down from clouds and moved around general area of my back yard, then went off in same manner it came in. +2004-07-15,32.7252778,-114.6236111,Yuma,AZ,sphere,240,The object seemed to be playing in the clouds - like playing tag before it seemed to disappear into the cloud. +2004-07-15,42.5125,-88.1208333,Trevor,WI,oval,2700,WI--IL border 30miles West of Lake Michigan ball of light going way up and fading +2004-07-15,34.2541667,-110.0291667,Show Low,AZ,other,900,red glowing, slow moving large and long verticle shaped object. +2004-07-15,44.8486111,-123.2327778,Monmouth,OR,circle,15,looked like a star. it made a 60 degree turn without stopping. +2004-07-15,45.5394444,-122.3861111,Troutdale,OR,unknown,180,BRIGHT LIGHT TRAVELLING FULL HORIZON +2004-07-15,38.2541667,-85.7594444,Louisville (Outside Of),KY,diamond,900,I think it could have been what some of us hope it was Or it could have been an illusion on my part. I hope it was them up there^ +2004-07-15,46.8205556,-93.9477778,Outing,MN,formation,300,Three lights in a perfect triangle inched across the sky until directly above, then seemingly disappeared. +2004-07-15,34.0291667,-98.9186111,Electra,TX,disk,900,Saw craft with bright clear light illuminating from "portholes" hovering over a field near our house +2004-07-15,41.5766667,-75.2591667,Honesdale,PA,diamond,300,A diamond shaped object flew over baseball field. +2005-07-15,35.0536111,-94.6233333,Poteau,OK,disk,120,Saucer shaped object just above tree tops above Cavanal Hill..... +2005-07-15,35.9130556,-79.0561111,Chapel Hill,NC,unknown,2700,Strange lights sitting on ground seen behind house +2005-07-15,39.9241667,-83.8088889,Springfield,OH,circle,120,call me. ((NUFORC Note: Possibly not a serious report?? PD)) +2005-07-15,34.1808333,-118.3080556,Burbank,CA,triangle,600,Two silently floating cloth-like triangular shaped objects shooting gold sparks near Bob Hope Airport +2005-07-15,38.2494444,-122.0388889,Fairfield,CA,light,120,((NUFORC Note: Moving "star" turned bright bright blue and traveled at a fast pace. +2005-07-15,38.6652778,-78.4597222,Luray,VA,sphere,3600,Glowing spheres over Luray, Va +2005-07-15,41.6611111,-91.53,Iowa City (Near, On I-380),IA,sphere,600,Silent, slow moving black sphere flying near Iowa highway +2005-07-15,26.525,-80.0666667,Boynton Beach,FL,circle,5,Strange, round object seen against a very clear blue sky in the middle of the day. +2005-07-15,41.8661111,-88.1069444,Wheaton,IL,circle,600,2 White circles playing with each other +2005-07-15,42.8125,-86.0186111,Zeeland,MI,cylinder,120,cigar shaped body inside a clear bubble of 6 inches diameter passed bye at 2 foot distance +2005-07-15,30.0927778,-93.7363889,Orange,TX,diamond,180,Fire and fast moving object in the sky. +2005-07-15,31.7586111,-106.4863889,El Paso,TX,disk,600,Sun City witness to UFO sightings? +2005-07-15,45.5236111,-122.675,Portland,OR,teardrop,15,highly-reflective inverted black teardrop over a Portland evening +2005-07-15,39.1502778,-123.2066667,Ukiah,CA,unknown,600,Glowing pink object moving through sky at sunset +2005-07-15,33.6694444,-117.8222222,Irvine,CA,other,180,Unknown "W" shaped objects +2005-07-15,36.2694444,-95.8544444,Owasso,OK,light,180,MISSOURI INVESTIGATORS GROUP Report: I noticed something I thought was a star just to the dark side of the moon … +2005-07-15,45.0025,-101.2330556,Eagle Butte,SD,changing,30,My son and his wife, 9 yr old son, and 9 neighbors and I were present; they were all outside talking and my son called me. He said some +2005-07-15,43.5408333,-116.5625,Nampa,ID,other,1800,July 2005 Meridian "field lights" -- night flights of cropdusters? +2005-07-15,43.7958333,-70.9330556,Porter,ME,light,300,Friend was laying in the back of his truck. He said look i sea a plane, and pointed at it.My father said that can't be a plane because +2005-07-15,44.9430556,-123.0338889,Salem,OR,light,1,Stationary light seen in night sky for one second +2005-07-15,36.175,-115.1363889,Las Vegas,NV,light,60,Balls of light in the shape of a triangle +2005-07-15,37.4136111,-76.5258333,Gloucester,VA,triangle,7200,bright streaks of light, hovering crafts, triangle lights, different colors , numerous aircrafts appeared to be playing in the sky +2006-07-15,40.0336111,-76.5047222,Columbia,PA,triangle,60,07/15/06 Columbia, PA Triangle shaped 1 minute 3 bright, circular white lights hovered above trees +2006-07-15,38.2919444,-122.4569444,Sonoma,CA,fireball,420,RED FIREBALL OVER SONOMA +2006-07-15,44.8341667,-87.3769444,Sturgeon Bay (North Of),WI,light,900,A moving light traveled in many directions, zig-zagging and stopping over the waters of Green Bay - high level of activity. +2006-07-15,42.0547222,-72.7708333,Southwick,MA,disk,600,me and my friends were in a state park late at nite. and we heard this noise. we thought it was a plane at first. then the noise went q +2006-07-15,41.6666667,-70.1852778,South Yarmouth,MA,sphere,120,object seen on cape cod ma. beach +2006-07-15,40.1727778,-82.4188889,St. Louisville,OH,disk,7200,A red and white lighted saucer-like object circling the sky. +2006-07-15,42.0333333,-88.0833333,Schaumburg,IL,circle,60,**Constant light moving in zig-zag pattern...faded away*** +2006-07-15,41.0041667,-92.3736111,Ottumwa,IA,light,1200,Unexplained object floating across the night sky +2006-07-15,38.5816667,-121.4933333,Sacramento,CA,cigar,60,Metalic Cigar Object Disappears In Sky +2006-07-15,42.4169444,-88.0738889,Lake Villa,IL,triangle,30,Past midnight I spotted a fast, triangular shaped craft with 3 lights(white and red) shoot over the horizon. +2006-07-15,42.36,-97.5963889,Osmond,NE,oval,1200,oval shape, bright blue in color with a flashing white light on one end only and silent, able to hover. +2006-07-15,34.1683333,-118.605,Woodland Hills,CA,formation,1200,Dots of lights appeared high in the sky over San Fernando valley in early afternoon. +2006-07-15,40.9911111,-74.0330556,Westwood,NJ,light,10,Bright round shaped object. Hovered for roughly five seconds then shot across the sky at a very high rate of speed. +2006-07-15,43.5197222,-114.3144444,Hailey,ID,fireball,10,moving south to north, looked like a superbright meteor, ball of fire, melted away suddenly, fairly slow moving +2006-07-15,40.1163889,-88.2433333,Champaign,IL,light,900,Interesting “Flashing” lights over Illinois in Casseopeia 7-15-06 10:00 pm. +2006-07-15,39.2827778,-80.5591667,Salem,WV,triangle,180,Triangular Shaped Object Seen on U.S. Rt. 50 +2006-07-15,47.4741667,-115.9269444,Wallace,ID,light,180,A small amber colored light in the trees across a large draw in the mountains above Wallace, ID. +2006-07-15,45.2325,-88.0075,Crivitz,WI,circle,60,At about 22:05 p.m. on 7-15-06 i was walking our 6 month old husky in our side yard paused briefly to observe the sky and unaware of th +2006-07-15,43.6552778,-88.1644444,Dundee,WI,light,240,Fluorescent-green parallel ceiling lights in line formation flying north of Dundee Wisconsin +2006-07-15,42.6183333,-82.5311111,Algonac,MI,light,30,Algonac lights on 7-15-06 evening +2006-07-15,40.3613889,-73.9744444,Sea Bright,NJ,light,12,Two illuminated objects traveling in linear formation maintaining constant interval +2006-07-15,48.4111111,-114.3366667,Whitefish,MT,chevron,2700,5 rotating chevron craft seen above Whitefish on a summer night. +2007-07-15,41.4816667,-72.6816667,Durham,CT,fireball,7,Green Fireball moving from left to right and then descended moved at a very fast pace no sound. +2007-07-15,26.0108333,-80.1497222,Hollywood,FL,triangle,60,((HOAX??)) No sound and vary low flying +2007-07-15,34.1083333,-117.2888889,San Bernardino,CA,light,15,Bright noisless light stationary, then moving in night sky +2007-07-15,47.6063889,-122.3308333,Seattle,WA,changing,900,I was taking a morning walk in Ballard, when I saw what appeared to be an extremely large, pitch-black balloon hovering about 300 ft. a +2007-07-15,46.3366667,-94.6458333,Motley,MN,unknown,2,I've only waited until now to submit a report bacause I have not found an authentic looking source to submit it to. +2007-07-15,28.9333333,-81.9486111,The Villages,FL,light,600,unusual vision +2007-07-15,38.6155556,-95.2675,Ottawa,KS,sphere,15,Silver, spherical object spotted near Ottawa, KS +2007-07-15,46.1383333,-122.9369444,Longview,WA,egg,300,Shiny metal egg over Trojan Nuclear Plant in Oregon. +2007-07-15,47.4830556,-122.2158333,Renton,WA,rectangle,60,Clear summer day, white outlined starship like object about 400 ft high, and 1000ft. long, slowly flew right over me and my daughter +2007-07-15,41.8930556,-70.9116667,Middleboro,MA,triangle,1500,Strange Very Slow Moving Red/White V Shape Vertical Triangle Balloon Spheres +2007-07-15,29.4238889,-98.4933333,San Antonio,TX,triangle,1800,Triangular UFO with blue smoke coming from it over San Antonio, Texas +2007-07-15,45.9697222,-89.8919444,Lac Du Flambeau,WI,light,30,very bright light with tail, traveled slowly, about 5ꯠ feet in the air, was NOT comet. +2007-07-15,42.4583333,-71.0666667,Melrose,MA,oval,120,High, dark oval object not consistant with planes. +2007-07-15,33.4483333,-112.0733333,Phoenix,AZ,other,180,It was about 30 feet high right above my head and looked like a ball of glittering lights. +2007-07-15,41.525,-88.0816667,Joliet,IL,sphere,120,Three spheres at high altitude over Joliet Ill. +2007-07-15,39.1405556,-121.6158333,Yuba City,CA,triangle,120,Black triangle with reddish lights. +2007-07-15,47.4236111,-120.3091667,Wenatchee,WA,sphere,300,Twin satellites moving together and one shoots off in to space +2007-07-15,41.6611111,-72.78,New Britain,CT,light,10,Bright neon green ball of light flew across sky +2007-07-15,42.5091667,-84.6558333,Eaton Rapids,MI,sphere,120,While watching for meteorites at 11:00 P.M. I noticed two white balls of light in a treeline to the east about two hundred yards away. +2007-07-15,41.4994444,-81.6955556,Cleveland,OH,changing,7200,Several changing shapes and colored objects traveling at fast speeds or just sitting there until they disapeared in the blink of an eye +2007-07-15,40.7744444,-97.0502778,Milford,NE,circle,600,Bright blue flashing light moving extreamly fast west. +2008-07-15,37.7477778,-84.2947222,Richmond,KY,cigar,60,very short but still wierd +2008-07-15,41.2222222,-73.0569444,Milford,CT,triangle,60,huge triangular object moving at great speed and very low over my house in Milford CT +2008-07-15,40.0455556,-86.0086111,Noblesville,IN,fireball,120,Orange Flashing Light Over Indianapolis. +2008-07-15,42.4905556,-71.2766667,Bedford,MA,flash,1,Unexplained quick flashes of light from a clear blue sky +2008-07-15,40.7888889,-76.5591667,Shamokin (Coal Township),PA,cigar,5,Saw a white flatish oval or cigar shaped white object for 5 seconds and then it disappeared. Clear blue sky with no clouds. +2008-07-15,42.5630556,-114.46,Twin Falls,ID,triangle,120,White, triangular object over Twin Falls, ID +2008-07-15,44.1280556,-68.8747222,North Haven,ME,disk,3600,On the night of July 15th 2008 eight unidentified crafts were seen drifting through the sky above the Fox Island Thoroughfare. +2008-07-15,33.4483333,-112.0733333,Phoenix,AZ,cigar,600,Glowing Cigar over the Lake Pleasnat ranges. +2008-07-15,33.7669444,-118.1883333,Long Beach,CA,fireball,15,Long Beach California red/purple/pink fireball falling from the sky for about 15-20 seconds +2008-07-15,40.6627778,-73.5519444,Merrick,NY,oval,300,Hovering red glowing oval craft observed over high school. +2008-07-15,28.1758333,-80.5902778,Satellite Beach,FL,oval,720,orange globes hovering over Alantic +2008-07-15,34.6722222,-86.0341667,Scottsboro,AL,sphere,360,It appeared to be a white orb surrounded by red and blue orbiting lights, traveling northwest at 9.00 p. m. July 14, 2008. +2008-07-15,42.8863889,-78.8786111,Buffalo,NY,oval,30,UFO with Yellow and Red spotlights which sped off or vanished. +2008-07-15,41.0241667,-80.6630556,Boardman,OH,formation,120,"V " formation of lights +2008-07-15,37.6791667,-95.4569444,Chanute,KS,light,2400,((HOAX??)) I observed a possible multiple U.F.O. sighting. +2009-07-15,40.45,-111.7694444,Highland,UT,sphere,180,Bright Sphere observed from Highland, Utah Scanning Lone Peak Mountian Top near Alpine, Utah on July 15, 2009 at 3:00AM +2009-07-15,36.31,-96.4638889,Cleveland,OK,sphere,7200,the sphere that was chased by a fighter jet in the morning sky +2009-07-15,39.7902778,-77.7280556,Greencastle,PA,circle,50,Group of bright lights maneuvering at very high speed +2009-07-15,40.0083333,-79.0783333,Somerset,PA,circle,900,Craft with lots of light, hovering over pine trees in the woods. +2009-07-15,47.6105556,-122.1994444,Bellevue,WA,unknown,2,Disappearance of object and vapor trail +2009-07-15,35.2269444,-80.8433333,Charlotte,NC,circle,60,Strange balls of light in the sky +2009-07-15,40.0016667,-76.8505556,Dover,PA,sphere,300,Red and orange light seen moving and hovering in Dover, PA. +2009-07-15,35.4816667,-86.0886111,Manchester,TN,other,30,Pyramid-shaped UFO hovering low to the ground in Manchester, Tennessee. +2009-07-15,48.051944399999996,-122.1758333,Marysville,WA,sphere,180,Red-orange sphere hovering north of Seattle +2009-07-15,42.8708333,-85.865,Hudsonville,MI,cylinder,300,2 crafts with orange lights +2009-07-15,46.6633333,-123.8033333,South Bend,WA,rectangle,2,Rectangular pattern appears and disappears after bright flash +2009-07-15,44.0522222,-123.0855556,Eugene,OR,fireball,35,A glowing orange light moves swiftly and clean, then dissapears. +2009-07-16,36.8572222,-88.3502778,Benton,KY,cylinder,1200,THE OBJECTS CAME IN JULY 15 2009 AND HAVE BEEN HERE THIS DATE DEC 2009 +2009-07-16,35.2333333,-82.7344444,Brevard,NC,unknown,15,A lighted object moved unnaturally and too quickly across sky as seen form a mountaintop. +2010-07-15,45.7983333,-89.1627778,Three Lakes,WI,flash,1800,Strange strobe like light +2010-07-15,42.2916667,-85.5872222,Kalamazoo,MI,light,120,Fast moving Orange light over Kalamazoo +2010-07-15,41.85,-87.65,Chicago,IL,light,300,it was up there with the stars, still and brightly shining then turned orange and darted away. +2010-07-15,41.4941667,-87.5216667,Dyer,IN,sphere,40,Glowing Blue Sphere 6-7 feet off the ground +2010-07-15,41.5061111,-87.6355556,Chicago Heights,IL,unknown,900,Unknown-shaped object with small dim light bobbing through the sky +2010-07-15,38.545,-121.7394444,Davis,CA,light,300,((HOAX??)) WIERD AS HECK +2010-07-15,40.2338889,-111.6577778,Provo,UT,disk,5,I was driving Southbound I-15 between Provo and the first Springville exit by myself talking on the phone. I looked up and out my wind +2010-07-15,39.1619444,-84.4569444,Cincinnati,OH,triangle,300,Triangular UFO seen in daylight, with U.S. jet chasing +2010-07-15,36.175,-115.1363889,Las Vegas,NV,rectangle,600,Mysterious black "dot" buzzes Las Vegas Strip. +2010-07-15,41.49,-71.3133333,Newport,RI,disk,240,Dark stationary object w/ no lights; some type of stat. undercarriage. ((NUFORC Note: Report from Air Traffic Controller. PD)) +2010-07-15,31.4636111,-100.4366667,San Angelo,TX,circle,7200,It can't be an Airplane or Star, so what is it ? +2010-07-15,41.6805556,-70.9083333,Acushnet,MA,light,1,light passing across road +2010-07-15,33.6602778,-117.9983333,Huntington Beach,CA,triangle,7200,It was a triangle with green dots. +2010-07-15,34.1722222,-118.3780556,North Hollywood,CA,light,1800,Bright White light, hovering still 30 mins, Then moving away slowly, over NW Los Angeles Co.. ((NUFORC Note: Venus? PD)) +2010-07-15,41.6894444,-70.1569444,South Dennis,MA,light,65,bright light ,moved at a VERY high rate of speed.From one end of the sky to the other. +2010-07-15,28.6119444,-80.8077778,Titusville,FL,chevron,120,UFO Red Lights Sighting in Titusville +2010-07-15,32.7833333,-96.8,Dallas,TX,flash,180,Bright flashing lights that changed from red to blue to white. The UFO went from left to right and back and forth until disappearing th +2010-07-15,41.9944444,-70.725,Kingston,MA,triangle,5,Three Circular Lights in Triangle Shape South Shore, MA +2010-07-15,31.0905556,-88.2280556,Citronelle,AL,unknown,900,Light similar to star, disappeared, changed direction in matter of seconds, no sound, no blinking lights, and moved at atleast Mach 3 +2010-07-15,39.0086111,-94.4633333,Raytown,MO,sphere,120,Close up encounter with an object that was translucent, low luminance, floating. ((NUFORC Note: Anonymous source. PD)) +2010-07-15,45.2783333,-123.0097222,Dundee,OR,light,240,White light moving at very high altitude from SW to NE. ((NUFORC Note: ISS was visible at this time. PD)) +2010-07-15,39.6452778,-121.4022222,Berry Creek,CA,cigar,900,Two campers view one craft fly over then hold position as a second craft emerges from the first and performs impossible manuevers +2010-07-15,47.0530556,-122.2930556,Graham,WA,triangle,1200,Observed via a photo a triangle of lights that revealed some sort of space craft when enlarged +2010-07-15,35.1222222,-84.7188889,Ocoee,TN,circle,3600,Simply Incredible. +2011-07-15,40.6883333,-75.2211111,Easton,PA,circle,600,Row of bright lights hovering in the sky for at least 15 minutes before we left. +2011-07-15,26.8230556,-80.1388889,Palm Beach Gardens,FL,oval,120,Yellowish orange sphere high off the coast of eastern Florida! +2011-07-15,28.2916667,-81.4077778,Kissimmee,FL,oval,420,Fireball over Orlando +2011-07-15,33.6058333,-78.9733333,Surfside Beach,SC,triangle,900,Was turning left out of our subdivision and looked up into the sky. Saw several bright lights "playing" thru the cloud. Full moon ton +2011-07-15,29.5722222,-90.3816667,Larose,LA,sphere,900,four white ball shape objects moveing slitely +2011-07-15,39.7391667,-104.9841667,Denver,CO,triangle,180,White Triangle in Denver Colorado +2011-07-15,38.1141667,-82.6033333,Louisa,KY,cigar,10,I was shocked to see this huge craft that appeared to be watching and hiding and then gone. +2011-07-15,39.8494444,-75.3561111,West Chester,PA,disk,1800,((HOAX??)) Clear zoomed images of a UFO; no stars in the sky. +2011-07-15,34.7863889,-76.8594444,Newport,NC,fireball,5,Out of nowhere fireball appeared and disappeared. Red/Orange in color. +2011-07-15,35.7719444,-78.6388889,Raleigh,NC,other,300,Strange, possibly extra-terrestrial energy display in the sky in Raleigh NC. +2011-07-15,41.6061111,-73.1186111,Watertown,CT,unknown,300,Three shining orbs spotted over farmland by young woman on walk. +2011-07-15,26.6155556,-80.0572222,Lake Worth,FL,cigar,3,Dull yellow cigar shaped object silently flashed into sky, flew for a few seconds and then disappeared. +2011-07-15,44.5236111,-89.5744444,Stevens Point,WI,fireball,120,Addendum to report filed July 15th, 2011 +2011-07-15,44.5236111,-89.5744444,Stevens Point,WI,fireball,120,Orange fireball travels west then north. +2011-07-15,30.2238889,-92.0197222,Lafayette,LA,formation,420,Red lights over Lafayette, Louisiana. +2011-07-15,44.5236111,-89.5744444,Stevens Point,WI,fireball,120,Second Addendum to report filed July 15th, 2011 +2011-07-15,44.5366667,-122.9058333,Lebanon,OR,other,360,ALL IT MY STATEMENT +2011-07-15,38.316,-88.9106,Mt. Vernon,IL,light,15,I was standing in my front yard looking at the night sky when I noticed overhead a star-like object. ((NUFORC Note: Satellite? PD)) +2011-07-15,42.6738889,-85.6447222,Wayland,MI,triangle,900,I saw a fireball that was actually some sort of plane +2011-07-15,47.4538889,-122.3205556,Seatac,WA,light,720,On July 15, 2011 at about 11:15 p.m. in SeaTac, WA I saw a light/object travelling North then North-East over the SeaTac Airport. +2011-07-15,41.6088889,-73.6822222,Poughquag,NY,triangle,10,Large triangular shaped object with steady red,green and white lights glides over my home +2012-07-15,31.1277778,-92.0661111,Marksville,LA,light,1500,Golden object moving across the night sky. +2012-07-15,34.0522222,-118.2427778,West Los Angeles,CA,oval,30,UFO Sighting in West LA at 1:45 AM, Sunday July, 15, 2012 +2012-07-15,39.1580556,-75.5247222,Dover (West Of),DE,triangle,180,Triangular UFO with white blinking lights +2012-07-15,39.9611111,-82.9988889,Columbus,OH,egg,900,Flying object in Columbus Ohio July 15th 3am. +2012-07-15,33.9241667,-84.3786111,Sandy Springs,GA,light,120,A light in the sky disappears +2012-07-15,36.175,-115.1363889,Las Vegas (South Of),NV,sphere,3,I was looking out of north facing window seat on a smaller United Airlines flight from LAX to COS. Watching clouds and tracking I-15 be +2012-07-15,46.6316667,-114.0780556,Florence,MT,triangle,60,I'm an artist, critical of the visual; height, color, etc +2012-07-15,39.8308333,-77.2313889,Gettysburg,PA,triangle,900,Delta wing, no lights, walnut shaped pod on underside with rectangular row of ports with grenishgrayish glow +2012-07-15,39.7294444,-104.8313889,Aurora,CO,triangle,300,Three green lights in the shape of a triangle moving FAST, sharp turns and dipping low in the sky at Quincy and Piccadilly!!! +2012-07-15,38.8097222,-82.2025,Gallipolis,OH,sphere,1800,While returning from an evening walk ,a bright orange light caught my attention in the night sky . I realized it made no noise and had +2012-07-15,45.9933333,-123.9213889,Seaside,OR,circle,900,Red/Orange bright lights off Seaside Oregon Beach. +2012-07-15,42.3383333,-83.8886111,Dexter,MI,sphere,60,2-3 red-white glowing objects pass over neighborhood in Dexter, MI then vanish. ((NUFORC Note: Report from law enforcement officer. +2012-07-15,44.8833333,-93.2827778,Richfield,MN,light,60,Orange Light traveling SE-NW over Richfield, MN. +2012-07-15,32.7358333,-96.275,Terrell,TX,triangle,120,Bug zapping triagle craft. +2013-07-15,33.6694444,-117.8222222,Irvine,CA,sphere,420,11 cylinder shaped aircraft with very bright blue lights +2013-07-15,33.4222222,-111.8219444,Mesa,AZ,fireball,2,White halo/ fire ball appeared in east mesa. +2013-07-15,32.2216667,-110.9258333,Tucson,AZ,light,120,One white light, solid, heading N. to S. and one red light, solid, heading W.to E. both overhead and seeminly near to each other. +2013-07-15,44.9430556,-123.0338889,Salem,OR,circle,900,Bright white or reflecting silver ball hovering...others flying by? +2013-07-15,42.5847222,-87.8211111,Kenosha,WI,circle,30,Glowing large circler object. +2013-07-15,34.5958333,-92.4888889,Bryant,AR,light,300,7 orange lights appeared from above. +2013-07-15,42.9633333,-85.6680556,Grand Rapids,MI,sphere,600,Red orbs over grand rapids +2013-07-15,33.8388889,-83.9008333,Loganville,GA,circle,120,Orange orb. +2013-07-15,44.510555600000004,-89.4261111,Custer,WI,circle,10,Back-tracking satellite. +2013-07-15,38.1588889,-75.9483333,Deal Island,MD,rectangle,10,Rectangle lit box due above far up in the sky like a marker visible and then invisible. +2013-07-15,39.8911111,-74.9222222,Marlton,NJ,fireball,600,3 separate low flying fireballs traveling across the sky 2-4 min apart +2013-07-15,37.8391667,-94.3544444,Nevada,MO,light,10,Silent light craft moves across sky with steady brightness until it vanishes into thin air in 2 secs. +1959-07-16,42.2625,-71.8027778,Worcester,MA,other,180,strange object sighted over worcester,ma july 1959...and in long island.ny on same day +1961-07-16,42.0883333,-87.9805556,Arlington Heights,IL,disk,1500,Saucer shaped object hovering near flight path of O'Hare Airport at about same level as airplanes going in for a landing +1964-07-16,43.6991667,-84.7677778,Rosebush,MI,unknown,180,I saw a object over my parents house moving very slowly. +1967-07-16,38.4094444,-82.2947222,Barboursville,WV,sphere,240,Spherical UFO, fall of 1967, Barboursville,W.Va. +1967-07-16,29.4569444,-94.6394444,Crystal Beach,TX,disk,11700,Spent a sunday in July 1967 at Crystal Beach with friends, at dusk I spotted what appeared to be a speed boat in the Gulf heading towar +1974-07-16,36.7533333,-86.1905556,Scottsville,KY,cross,1800,Large White Glowing Cross With Haze +1978-07-16,40.8583333,-73.1,Centereach,NY,disk,240,Centereach, Long Island, NY, 1977 or 1978, Red disk shaped object hovering in Northern direction +1979-07-16,46.9169444,-88.4825,Arnheim,MI,triangle,1200,Two thimble shaped U.F.O.s fly over head in broad daylight and make no sound. Bronze in color +1980-07-16,41.5980556,-75.715,Fleetville,PA,disk,120,seeing this hovering there with no sound and moving away so quickly +1980-07-16,47.6063889,-122.3308333,Seattle,WA,cylinder,180,Cylinder UFO Sighted in Seattle, Washington +1982-07-16,35.0525,-78.8786111,Fayetteville,NC,changing,300,The ball changed from blue-green to yellow red green triangle shape +1985-07-16,41.5283333,-87.4236111,Griffith,IN,other,120,Me and my freind Joe Crowley drove a car and went to a deep area path beyond Griffith Park to a vast area of weeds and trees, as we wen +1988-07-16,34.005,-118.8091667,Malibu,CA,other,900,UFO in Malibu Canyon +1988-07-16,33.9791667,-118.0319444,Whittier,CA,egg,120,Low flying egg shaped object observed by hospital employees as it flew in front of Hospital +1995-07-16,36.2166667,-81.6747222,Boone,NC,oval,180,Oval, silent, UFO, with very bright red,green, & amber lights, football field size, 100 ft. up, ƿ/16/95,Boone. +1997-07-16,35.198055600000004,-111.6505556,Flagstaff,AZ,light,15,Stationary "star" light began to travel in straight lines +1997-07-16,47.8108333,-122.3761111,Edmonds,WA,triangle,1200,day light sighting of a dark triangle +1997-07-16,35.0525,-118.1730556,Mojave,CA,light,600,Small triangular formations in desert sky, forming into larger triangle formation +1997-07-16,26.3097222,-80.2375,Parkland,FL,light,12,something tought to be a heli move forward and shoot back wards in a blink of a eye +1998-07-16,41.4244444,-91.0430556,Muscatine,IA,oval,60,Very brilliant green oval traveling silently moving north to south. Clear blue sky. Object appeared shiny and metallic with sun shini +1998-07-16,41.6080556,-74.2994444,Pine Bush,NY,sphere,20,Red/orange orb seen hovering over trees lighting the tips of said trees before vanishing in motion to the left. Pine Bush NY 1998 +1998-07-16,39.1638889,-119.7663889,Carson City,NV,sphere,5,I was sitting outside, looking toward the mountains, Carson in almost 5k ft, Mts. 7k to 8k, object appeared and shot off in a straight +1999-07-16,33.5205556,-86.8025,Birmingham,AL,sphere,600,The object was seen over my house it was silverish gray and seem to just hover in place for 10 mins. +1999-07-16,34.1283333,-117.2077778,Highland,CA,rectangle,10,Daytime observation of a very large rectangular object with rounded ends. Silver in the middle with white ends. No observable thickness +1999-07-16,34.0658333,-84.6769444,Acworth,GA,triangle,600,Me and my brother were taking the garbage out to the pile one night. We were standing in the yard just talking when we saw what looked +1999-07-16,33.4936111,-117.1475,Temecula,CA,triangle,60,driving along spotted a strange looking triangular object with lights it moved slowly through the sky. +1999-07-16,39.8088889,-85.2913889,Straughn,IN,light,3,We was looking at the night sky & watching Aircraft fly over,so I had a good perportion of the speed & size of the aircraft. I then not +1999-07-16,46.8108333,-90.8180556,Bayfield (Lake Superior's Apostle Islands),WI,sphere,3600,Bright red non-flashing point-source of light, with 6 rapid flashing lghts. +2000-07-16,45.5236111,-122.675,Portland,OR,light,1.5,Bright Green, Orange, and White lights +2000-07-16,45.5236111,-122.675,Portland,OR,light,4,Jade Comet? +2000-07-16,47.5302778,-122.0313889,Issaquah,WA,changing,60,I live in Issaquah Washington and viewed the following around the middle of July 2006. Standing in my living room,we have a panaram +2000-07-16,47.3075,-122.2272222,Auburn,WA,disk,6,Starting at 18:05 I witnessed at least 7 rounded/circular/oval objects in approx. a 140 degree arc approximating a line southeast to no +2000-07-16,35.6225,-117.67,Ridgecrest,CA,light,10,Orange, transluscet, plasma-like sphere traveled overhead from west to east, observed 10 sec. +2000-07-16,40.76,-85.3136111,Rockford,IN,oval,360,At first appeared in the western sky and was mistaken as a star. Until I saw movement. Moving from west to east at varied speeds. From +2001-07-16,33.075,-89.8544444,Durant,MS,circle,600,Strange events in the sky above Durant, Mississippi +2001-07-16,40.7425,-84.1052778,Lima,OH,oval,180,ovalish shaped craft followed above plane for a few min. then disapeared over some tree's +2001-07-16,42.8863889,-78.8786111,Buffalo,NY,light,60,vibrating starlike point in the southern sky +2001-07-16,40.8022222,-124.1625,Eureka,CA,unknown,2,brilliant green shooting star +2001-07-16,40.2263889,-76.9008333,Lower Allen,PA,light,180,similar to new jersey sightings ,lead to gathering +2001-07-16,40.7141667,-74.0063889,New York City (Manhattan) (Great Lawn),NY,diamond,60,Two bright white lights, rotating around one another in a diamond shaped pattern, and an airplane just above them. +2001-07-16,40.485,-106.8311111,Steamboat Springs,CO,fireball,5,no cloud cover in area of sighting, no noise accompanied or "trailers" visible. +2002-07-16,35.4833333,-86.4602778,Shelbyville,TN,triangle,2700,My friend had been saying for the last week that he had seen the object in the sky, but ofcourse knowone believed him. Until last night +2002-07-16,40.9169444,-72.6625,Riverhead,NY,light,3000,Phoenix Lights on Long Island +2002-07-17,45.5236111,-122.675,Portland,OR,sphere,300,Jets slowly chaising object +2003-07-16,34.2875,-85.9941667,Crossville,AL,triangle,300,Black, triangular object observed over pond in Crossville, Al +2003-07-16,41.6833333,-86.25,South Bend,IN,cylinder,240,the object was watched for 4-6min. and made no apparent sound,from ground it appeared brown/no zoom +2003-07-16,37.9513889,-91.7711111,Rolla,MO,light,1200,Second sighting seen in less than 24 hours. +2003-07-16,33.4483333,-112.0733333,Phoenix (Area),AZ,fireball,2,Orange fireball over Phoenix area +2004-07-16,45.0725,-93.4555556,Maple Grove,MN,disk,14400,Craft FLEW IN FROM THE EAST AT A HIGH RATE OF SPEED AND STOPED INSTANTLY AND HUVERED FOR FOUR HOURS +2004-07-16,31.3380556,-94.7288889,Lufkin,TX,circle,9000,Multipul "blinkers" with red ,blue and white strobing lights, across the sky. only one circle shaped. +2004-07-16,36.9902778,-86.4436111,Bowling Green,KY,triangle,60,LARGE TRIANGLE FLYING EXTREMELY LOW WITH SOUND +2004-07-16,45.5608333,-94.1622222,St. Cloud,MN,chevron,420,Two possible craft seen in the mid-afternoon sky following the Mississippi +2004-07-16,41.85,-87.65,Chicago,IL,egg,10800,3 big balls of light just sitting in the sky over by O'Hare Airport +2004-07-16,47.9447222,-122.3033333,Mukilteo,WA,fireball,5,Craft that turned in fireball-orb! +2004-07-16,48.1183333,-123.4294444,Port Angeles,WA,light,15,UFO in Port Angeles, Washington on July 16th, 2004. +2004-07-16,36.9191667,-94.255,Granby,MO,sphere,7,Me and a friend were walking from the pool to the jacuzzi at his girlfriends house.... my wife and his girlfriend and another couple h +2005-07-16,46.7313889,-117.1786111,Pullman,WA,oval,5400,A disk in the field moving up and down. +2005-07-16,44.7894444,-93.6019444,Chaska,MN,light,5,Bright light quickly fading to orange then disappearing +2005-07-16,32.6730556,-97.4602778,Benbrook,TX,light,300,Alien encounter after UFO. +2005-07-16,42.8708333,-85.865,Hudsonville,MI,oval,180,Myself and another man were standing in my front yard talking, when he pointed at the sky and asked "what's that"? Looking at the north +2005-07-16,47.6063889,-122.3308333,Seattle,WA,flash,4,Sun reflecting off long, thin object following airliner, then airliner "disappears' into small cloud. +2005-07-16,33.9830556,-118.0958333,Pico Rivera,CA,sphere,1200,I was looking at the sky trying out a new pair of binoculars I got for a gift, any way I was looking at commercial aircraft I notice tw +2005-07-16,33.8702778,-117.9244444,Fullerton,CA,chevron,1800,Black chevron shaped object seen over Fullerton Ca., travelling in a N/E direction, very slowly. It would stop completely at times. +2005-07-16,45.6388889,-122.6602778,Vancouver,WA,flash,180,I was out looking a the Moon with a small telascope for about 20 min. I when an got a pair of 7X50 and was just ajusting them whe off t +2005-07-16,32.6730556,-97.4602778,Benbrook,TX,light,15,Sml glowing object appeared out of nowhere, remained motionless, moved rapidly in straight line, stopped again, then vanished +2006-07-16,47.6063889,-122.3308333,Seattle,WA,rectangle,315,I first noticed the object 3/4 of a mile north of my location, at which point what seemed to look like a vertical floating monolith. As +2006-07-16,41.85,-87.65,Chicago,IL,circle,30,Circular, silver stationary object over Chicago close to Ohare Airport at high altitude. +2006-07-16,41.85,-87.65,Chicago,IL,circle,600,This is just to bring your attention to a report I made 7/16/06 of a Circular object sighting close to Ohare Airport(5 miles), and anot +2006-07-16,32.8472222,-117.2733333,La Jolla,CA,formation,3,Formation of approximately eight hazy illuminated triangles flew over La Jolla CA moving E to W. +2006-07-16,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,30,roof-top UFO sighting +2006-07-16,41.9219444,-71.55,Smithfield,RI,triangle,900,Red and Green blinking aircrafts flying fast and low +2006-07-16,41.8897222,-87.9888889,Villa Park,IL,light,1380,I believe I was abducted by Aliens +2006-07-16,34.1866667,-118.4480556,Van Nuys,CA,triangle,14400,hovering lights flickering in the sky at tree level moving fast from left to right some landed others flew above us +2006-07-16,37.1533333,-98.0308333,Anthony,KS,light,30,Bright white light, moving North. Faded from view on a clear night. ((NUFORC Note: Not ISS; was not visible on this date. PD)) +2007-07-16,47.5405556,-122.635,Port Orchard,WA,unknown,30,Firey object going across early morning sky from S.E. to N.W. in Washington State! +2007-07-16,33.7488889,-84.3880556,Atlanta,GA,light,35,Bright Red Pinpoint Of Light Traveling Across Sky +2007-07-16,30.4380556,-84.2808333,Tallahassee,FL,light,15,Very Bright Light In the Sky Making Unusual Movements +2007-07-16,29.2105556,-81.0230556,Daytona Beach,FL,circle,120,5 shadows on the beach, but nothing there. +2007-07-16,42.575,-71.0791667,North Reading,MA,changing,120,Absolutely no characteristics of any aircraft I have ever seen, or any description availible of a craft on this site. +2007-07-16,47.6063889,-122.3308333,Seattle,WA,teardrop,1,Photographed UFO over Puget Sound on July 16, 2007 just after sunset. +2007-07-16,47.6588889,-117.425,Spokane,WA,unknown,45,White dot over Spokane WA moving in extreme angles instantly +2007-07-16,34.2255556,-77.945,Wilmington,NC,triangle,10,Triangular object with lights rotated as it flew over me. +2007-07-16,47.2530556,-122.4430556,Tacoma,WA,light,180,Horizontal lights hovering over Commencement Bay +2008-07-16,41.85,-87.65,Chicago,IL,triangle,600,One of them seemed to fade away +2008-07-16,33.9136111,-98.4930556,Wichita Falls,TX,other,7,Saw a Bird Shaped UFO flying towards Dallas, no noise +2008-07-16,34.4261111,-117.5713889,Phelan,CA,circle,600,Red flashing lights and phantom dogs +2008-07-16,40.9736111,-72.1441667,Amagansett,NY,unknown,2,((HOAX??)) sighted grey object, it then exploded in light and disappeared +2008-07-16,30.3569444,-87.1638889,Gulf Breeze,FL,triangle,180,Triangular shape object with five white light in a triangular formation beneath object structure. +2008-07-16,34.6863889,-76.8955556,Indian Beach,NC,light,600,Strange lights over Atlantic Ocean +2008-07-16,46.4163889,-117.0441667,Clarkston,WA,changing,73800,A number of objects with flashing lights moving erratically. +2008-07-16,39.9522222,-75.1641667,Philadelphia,PA,other,120,H-Shaped object seen hovering just above the tree line above the park behind our home. +2009-07-16,39.9688889,-82.9377778,Bexley,OH,disk,300,I saw 2 or 3 saucers hover and spin over the meadow, then disappear over the horizon with a flash of blinding white. +2009-07-16,38.4405556,-122.7133333,Santa Rosa,CA,light,5400,Craziest thing i've seen in my life, truly unexplainable +2009-07-16,33.8169444,-118.0363889,Cypress,CA,changing,300,Orange/Amber Light seen from Cypress over Orange County Sky, turned & moved towards the beach. +2009-07-16,43.1991667,-78.5763889,Gasport,NY,light,60,a plane like light made a 90 degree angle and bolted off into the horizon +2009-07-16,47.3811111,-122.2336111,Kent,WA,light,90,fast moving ball of light variable speed and brillant light that faded away before the horizon. ((NUFORC Note: ISS sighting. PD)) +2009-07-16,31.5847222,-95.8488889,Oakwood,TX,light,30,Bright red object drifts slowly an then fades out +2009-07-16,38.7041667,-91.4372222,Hermann,MO,diamond,30,A silver-lined diamond shaped object that folded in on itself and disappeared on July 16, 2009. +2009-07-16,30.6741667,-96.3697222,Bryan,TX,unknown,120,My husband was sitting on the deck of our home, which is surrounded by tall trees. The sky was blue and clear. Suddenly he heard a lo +2009-07-16,36.3955556,-97.8780556,Enid,OK,light,300,Extremely low flying light. +2009-07-16,44.0522222,-123.0855556,Eugene,OR,disk,900,possible fighter jet chasing UFO +2009-07-16,39.7294444,-104.8313889,Aurora,CO,unknown,300,Three separate craft 2 moving north to south one moving south to north over Aurora,CO +2009-07-16,48.051944399999996,-122.1758333,Marysville,WA,light,60,Orange Orb in the eastern skies of Snohomish county +2009-07-16,48.1958333,-114.3119444,Kalispell,MT,circle,300,Large, bright light with no sound moved slowly over the Flathead Valley, MT towards the southeast, dimmed and vanished . +2010-07-16,40.1027778,-84.6330556,Greenville,OH,fireball,40,A large bright orange shperical object appeared, moved across the sky and disappeared over Greenville, Ohio. +2010-07-16,42.0722222,-86.1997222,Sister Lakes,MI,triangle,10,V shaped object, no lights quickly flew across clear sky. +2010-07-16,42.3713889,-83.4702778,Plymouth,MI,triangle,600,Quiet, low-flying triangle shaped, with red and white lights. +2010-07-16,33.7877778,-117.8522222,Orange,CA,light,600,strange light seen over Orange California +2010-07-16,42.0427778,-88.0797222,Hoffman Estates,IL,circle,120,Just looked up and saw this circle black item just standing in the middle of the sky and then it just desapear +2010-07-16,35.6127778,-115.3894444,Primm,NV,other,300,((HOAX??)) Object hovering over my car. +2010-07-16,33.7475,-116.9711111,Hemet,CA,oval,5,UFO Caught During ABC's Electrical Brush Fires +2010-07-16,38.5722222,-94.8788889,Paola,KS,cigar,2400,They were bright, cigar shaped, objects that would go in and out of the cloud +2010-07-16,46.7833333,-92.1063889,Duluth,MN,disk,60,Black disk shaped object moves noiselessly through air and disappears behind a tree. +2010-07-16,41.2586111,-95.9375,Omaha,NE,circle,5,Bright orange circle object heading North behind clouds. +2010-07-16,41.5622222,-72.6511111,Middletown,CT,light,60,A light with a slight glow. +2010-07-16,39.0875,-81.9227778,West Chester,OH,light,300,Four light orbs that disappeared and reappeared in West Chester, OH 7/16/10 ((NUFORC Note: See note below from MUFON FI. PD)) +2010-07-16,39.5522222,-84.2333333,Springboro,OH,light,480,4 lights over Springboro, OH, July 16, 2010 @ 9:45 pm ((NUFORC Note: See note below from MUFON FI. PD)) +2010-07-16,39.2013889,-85.9213889,Columbus,IN,disk,20,Pinkish white to red white disks +2010-07-16,41.2905556,-95.9177778,Carter Lake,IA,sphere,300,One brilliantly illuminating ball of light that float over our heads and shorty afterwards, vanished before our eyes. +2010-07-16,34.005,-118.8091667,Malibu,CA,changing,180,Fire colored cylinder changing shape to circle +2010-07-16,47.1413889,-122.2688889,South Hill,WA,disk,120,Ufo over Western Washington July 16th, 2010 +2010-07-16,26.1219444,-80.1436111,Ft. Lauderdale (On Cross Fl Toll Road North West Of),FL,fireball,3600,Saw a large hot lava colored orb coming from the ground floating towards us +2010-07-16,44.7133333,-93.4225,Prior Lake,MN,fireball,240,Four of us saw a phenomenon of about 12 reddish lights in the late night sky south of Minneapolis MN. +2010-07-16,33.7358333,-118.2913889,San Pedro,CA,other,25,a bright red light coming straight fom the top of the bldg. ((NUFORC Note: Student r +2011-07-16,45.8925,-111.5513889,Three Forks,MT,fireball,180,Orange hovering crafts +2011-07-16,41.7680556,-88.8769444,Shabbona,IL,diamond,600,Diamond shape craft appearing to be taking on water above small lake at campground +2011-07-16,27.3361111,-82.5308333,Sarasota,FL,diamond,300,Bright Orange Diamond Shaped UFO In Sarasota Florida +2011-07-16,28.5380556,-81.3794444,Orlando,FL,sphere,180,I stepped out to check something on my car,and immediately saw a large orange ball in the black of the sky, which was very slowly movin +2011-07-16,28.5380556,-81.3794444,Orlando (Outside Of; On 14),FL,circle,115,Bright white light hovering in sky. Hooked around and jetted away. +2011-07-16,41.5261111,-87.8891667,Mokena,IL,fireball,1200,Ball of fire floating in the air. +2011-07-16,40.1536111,-88.9644444,Clinton,IL,sphere,180,Bright red/orange sphere observed for 3 minutes central Illinois, no other aircraft in vicinity. +2011-07-16,43.1302778,-77.4758333,Penfield,NY,circle,900,12 balls of fire orange light flying from East to West +2011-07-16,41.7416667,-70.6583333,Onset,MA,fireball,1200,15-20 oranges lights in formation move across sky in Onset, MA +2011-07-16,42.5547222,-88.1108333,Salem,WI,other,720,Orange ball-shaped object, no flashing lights or sound, appeared rather large as opposed to airplane in size. +2011-07-16,41.2380556,-81.8419444,Brunswick,OH,fireball,600,2 people witness 2 low flying, big fiery red/orange, slow controlled moving, soundless spherical shapes moving South to North. +2011-07-16,45.7186111,-123.9338889,Manzanita,OR,fireball,300,Bright orange globe light over Oregon Coast +2011-07-16,40.4211111,-79.7883333,Monroeville,PA,light,60,Streaking to glowing light across sky +2011-07-16,34.5008333,-117.185,Apple Valley,CA,circle,15,red ufo with light beam +2011-07-16,41.5230556,-81.5186111,South Euclid,OH,sphere,420,9 Brilliant Fiery Orange Orbs Fly Across the Sky in a Straight Line followed by 4 More +2011-07-16,35.7063889,-81.2188889,Conover,NC,circle,180,Large red glowing light moved across sky and disappeared. +2011-07-16,48.2933333,-122.6419444,Oak Harbor,WA,light,120,Fast moving object flying over Oak Harbor, WA +2011-07-16,42.1291667,-80.0852778,Erie,PA,cigar,15,Obj. with a single, white light appeared over city and Lake Erie and moved in ways I have never seen any aircraft move. +2012-07-16,43.4391667,-70.7747222,Sanford,ME,triangle,300,Low flying low speed stealth military aircraft +2012-07-16,33.4427778,-116.8641667,Aguanga,CA,other,15,I saw a bright light where none should have been and watched it disappear. +2012-07-16,27.9655556,-82.8002778,Clearwater,FL,disk,120,Saucer seen on Causeway +2012-07-16,39.4816667,-106.0377778,Breckenridge,CO,light,10,Colored light falls to Earth, then reverses course through sky +2012-07-16,40.9636111,-91.5577778,Mt. Pleasant,IA,fireball,180,Large orange/red fireball appears and travels in sky above and quickly disappears. +2013-07-16,41.9163889,-83.3977778,Monroe,MI,teardrop,2,3 orbs of light too slow for shooting stars. +2013-07-16,40.6805556,-122.3697222,Shasta Lake,CA,light,900,Bright white orb flying in a non authorized flight style +2013-07-16,34.5036111,-93.055,Hot Springs,AR,diamond,1,Unidentifiable craft photographed over Hot Springs, AR. ((NUFORC Note: Object is Monarch butterfly. PD)) +2013-07-16,39.535,-119.7516667,Sparks,NV,unknown,180,Twenty or so little white balls in the sky flying around together. Too high for birds to fly. +2013-07-16,41.1016667,-80.7647222,Austintown,OH,circle,45,12 red light over austintown ohio +2013-07-16,35.14,-93.9213889,Booneville,AR,circle,2,We saw a quick whitish/orange orb in the sky. +2013-07-16,42.3794444,-89.8222222,Lena,IL,circle,120,Orange Spere Moving Very Slowly Then Disapeared. +2013-07-16,44.7133333,-93.4225,Prior Lake,MN,sphere,600,Strange lights move across the sky. +2013-07-16,41.3908333,-74.4769444,Slate Hill,NY,flash,120,Slow moving object with series of intense flashes. +2013-07-16,40.7141667,-74.0063889,New York City (Bronx),NY,light,3600,Blinking Red to White Light making a circle pattern for hours. +2013-07-16,40.0952778,-76.4102778,Landisville,PA,fireball,1200,Witnessed 2 orange fireballs, 1 black oval, and 1 tiny blue dot which flared into a blue fireball in the course of 20 minutes. +2013-07-16,40.7933333,-77.8602778,State College,PA,fireball,600,As I sat in my room and contemplated how much school work I would have to do later I looked out the window and noticed a fiery object m +2013-07-16,34.0852778,-117.96,Baldwin Park,CA,changing,300,We walked outside and there was something that looked like a fireball in the sky. It fell downwards for a while and then expanded sort +1953-07-17,39.8122222,-85.2088889,Dublin,IN,cone,1800,My brothers farmed after dark, they told my mother, my mother started yelling for the kids to run out to see it. It was located in our +1963-07-17,42.3583333,-71.0602778,Boston,MA,triangle,1800,It was a nice warm night to hang on the back porch. I saw a bright triangular light in the sky, very high up. It was doing loops and +1966-07-17,42.3636111,-87.8447222,Waukegan,IL,circle,180,hummung hovering then quick exit +1971-07-17,43.0494444,-88.0075,Wauwatosa,WI,disk,600,It just hovered and we heard a humming noise +1973-07-17,35.6008333,-82.5541667,Asheville,NC,disk,240,late at nite, huge object, hovered about 50 ft. above ground. saw windows on the bottom. with orange glow eminating from windows . +1976-07-17,42.9375,-70.8394444,Hampton,NH,unknown,16200,FInally come to grips with this one....but when I was about 8 yrs....my family was taken and examined.....however, i beleive that i was +1976-07-17,41.6611111,-91.53,Iowa City,IA,cigar,4200,9 stars in the summer sky, +1977-07-17,40.8125,-73.9994444,Fairview,NJ,circle,30,A flying globe looking object. +1980-07-17,41.1238889,-100.765,North Platte,NE,formation,8,Massive Pitch Black boulder shaped and jagged edges totally silent zoomed over my window of view at thirty to forthy thousand ft. +1989-07-17,40.5583333,-85.6591667,Marion,IN,disk,14400,SAW light outside window went to look saw saucer shape blinding light next memory on bed five feet away from window pain in side scar t +1994-07-17,34.2438889,-116.9105556,Big Bear Lake,CA,triangle,4,Dark, absolutley silent, exceptionally fast craft streaks across night sky over San Bernardino Mountains/Desert (CA) [~1994] +1994-07-17,41.4297222,-72.0825,Gales Ferry,CT,triangle,300,Large Triangle craft flew over pool making no sound at high rate of speed +1995-07-17,35.1713889,-92.2736111,Holland County,AR,changing,2700,Driving back from a roadtrip we saw a bright light ahead of us that seemed to be morphing into different shapes and eminating energy. +1997-07-17,46.8852778,-103.1991667,Belfield,ND,light,900,lights moving in perfect formation together. +1997-07-17,41.7636111,-72.6855556,Hartford (Near; Highway 91),CT,triangle,300,Slow moving triangle shaped craft with big white lights and a red pulsating light in the center flew about 300 feet over my car. +1998-07-17,30.3319444,-81.6558333,Jacksonville (I-10, 10 Milemarker 235, Heading E),FL,light,60,Object was a saucer shaped cloud glowing white heading north to south about 700 feet up. +1998-07-17,30.3319444,-81.6558333,Jacksonville (I-10 Milemarker 238, Heading E),FL,other,120,Object was Metalic shinning silver saucer shaped with arch hanging down on the left and right side. Me and my wife observed for about +1998-07-17,30.3319444,-81.6558333,Jacksonville (Interstate 10, Heading E),FL,diamond,30,Diamond Shape Object Glowing incadescent Yellowish, The object was to our front right hovering just slightly below cloud level. It was +1998-07-17,39.7683333,-86.1580556,Indianapolis (Carmel),IN,sphere,300,Saw far away in the sky. Looked like a star but there were no other stars in the sky. +1998-07-17,41.4994444,-81.6955556,Cleveland,OH,other,30,I was looking at the clouds and trying to guess if there was a storm brewing over the lake, when just for perhaps 30 seconds, I saw a b +1998-07-17,47.4741667,-122.2597222,Tukwila (Viewed From, Looking East),WA,light,180,4 bright, platinum white, round lights, were seen on top of a hill. The lights were situated in a circle. From our car in Tukwila, WA +1998-07-17,45.5236111,-122.675,Portland,OR,light,1,Object appeared in the western sky. Very Bright. Dropped suddenly to the west and disapeared behind the horizon of Portland's west hill +1999-07-17,39.7663889,-75.1447222,Sewell,NJ,triangle,120,triangle, 3 white lights on corners, one red light in center +1999-07-17,39.7663889,-75.1447222,Sewell,NJ,triangle,15,Saw a craft with 4 lights, flying over my house, making a low humming sound. +1999-07-17,46.7761111,-118.8252778,Hatton,WA,sphere,30,On this date I was driving,(I am a Trucker) north on U.S. 395 between Pasco and Ritzville Wa at about 10:30 pm when I saw an orange bal +1999-07-17,41.4488889,-82.7080556,Sandusky,OH,sphere,1800,Police officers and one other person, see green/blue orb over Sandusky shoeline, 4 people see the same object. +2000-07-17,47.6447222,-122.6936111,Silverdale,WA,fireball,1275,Strange glowing objects and a fireball. +2000-07-17,41.6427778,-120.2158333,Lake City,CA,light,60,Bright at rapid speed in NE corner of Calfornia +2000-07-17,42.0083333,-91.6438889,Cedar Rapids,IA,triangle,60,Sighting of a triangular-shaped object judging by distinct lights on three corners. +2000-07-17,47.7544444,-122.1622222,Woodinville,WA,disk,5,From my bedroon window I saw an obejct with seven white lights and one red pulsating light underneath it move from south to west. +2001-07-17,39.7294444,-104.8313889,Aurora,CO,fireball,600,Orange fireball like seen in Aurora north of Buckley AFB at 0300.Duration of 10 minutes,Then dissappears.Recorded on camera! +2001-07-17,39.9611111,-82.9988889,Columbus,OH,light,5,Light in the sky that moved at a high rate of speed and that changes direction five times +2001-07-17,26.0108333,-80.1497222,Hollywood,FL,fireball,2,Fireball observed, about 1/4 of full moon's diameter, long flame trail, starting from zenith then moving quickly to the east, accompani +2001-07-17,27.2541667,-80.23,Jensen Beach,FL,egg,6,VERY LARGE GLOWING OBJECT (Greenish blue) Crashing to earth STRAIGHT DOWN at a very high rate of speed +2001-07-17,27.4463889,-80.3258333,Fort Pierce,FL,fireball,5,A bright light that was heading towards the ground and just disappeared +2001-07-17,33.6602778,-117.9983333,Huntington Beach,CA,diamond,10800,Still diamond shape craft in So. Cal. northern sky. +2002-07-17,33.8136111,-85.7613889,Jacksonville,AL,circle,15,bright light hoovering over trees and then shot down to ground behind trees. +2002-07-17,44.6841667,-83.6055556,Barton City,MI,fireball,180,Multiple silent orange lights flashing on and off, then going all out after a few minutes, followed by sound of jets but none visible. +2002-07-17,30.3411111,-95.0852778,Cleveland,TX,flash,360,My daughter and I were traveling on Hwy 105W between Moss Hill and Cleveland TX about 4:30 am. There was not much traffic on the road +2002-07-17,41.3502778,-83.1219444,Fremont,OH,circle,180,A small silver craft... +2002-07-17,32.9616667,-96.8288889,Addison,TX,other,60,Unidentified shape near airport +2002-07-17,34.7538889,-77.4305556,Jacksonville,NC,flash,180,I saw something an i have no earthly idea what it is +2002-07-17,43.8447222,-82.6513889,Harbor Beach,MI,light,300,Strange lights over Lake Huron +2002-07-17,34.0027778,-84.1447222,Duluth,GA,triangle,360,On 7/17/2002ᄺ:55pm I was traveling south bound on hwy 141 when just off to my left less then a quarter mile away approx 100-150 feet +2003-07-17,47.4019444,-122.3230556,Des Moines,WA,light,180,Heard a sound like a moving object through the air, starting and stopping. +2003-07-17,43.0141667,-88.4725,Dousman,WI,disk,2700,Some friends and I have been watching the skies from Herr Road (near Sullivan, WI) for a few years now. This long, narrow road has a u +2003-07-17,48.2766667,-116.5522222,Sandpoint,ID,other,18000,Object on orbital path around the moon. +2003-07-17,41.8666667,-103.6666667,Scottsbluff,NE,other,1800,When attempting to photograph "stars" next to the moon, we captured something entirely different with almost perfect geometric shapes. +2003-07-17,40.0336111,-76.5047222,Columbia,PA,disk,2400,7/17/2003, 3 AM, Columbia, PA, 40 minutes duration, blue saucer shaped craft hovered for 20 minutes. +2003-07-17,47.6816667,-122.2075,Kirkland,WA,other,3,Bright Craft disappears into a black hole? +2003-07-17,28.6986111,-81.3083333,Winter Springs,FL,light,900,"star" looking object next to the moon +2003-07-17,45.5236111,-122.675,Portland,OR,sphere,4500,Clearly visible, stationary sphere, "takes off" after an hour or so of observation +2003-07-17,40.0877778,-76.1852778,Leola,PA,disk,45,tube to a saucer +2003-07-17,29.4238889,-98.4933333,San Antonio,TX,sphere,600,three metallic spheres moving at great speeds and with difficult maneuvers, watched for 5-10 minutes +2003-07-17,42.865,-71.3744444,Londonderry,NH,unknown,120,It was moving faster then a plane in direction, stopped and came back the way it came. +2003-07-17,40.7141667,-74.0063889,New York City,NY,formation,120,Formation of moving lights over Manhattan +2003-07-17,41.8036111,-80.0566667,Cambridge Springs,PA,other,5,vertical line of three extremely bright lights moving very very quickly. +2003-07-17,43.48,-110.7616667,Jackson,WY,light,1800,One very bright light for 8 seconds above the horizon then 2 smaller lights that moved very close to us and we saw 4 seperate times +2004-07-17,33.4222222,-111.8219444,Mesa,AZ,sphere,7200,looking due east at Ŋ high bright round object bouncing about the clear skies from 2:am-5:am +2004-07-17,37.9319444,-121.6947222,Brentwood (Northern Ca),CA,light,30,Bright light in the N.W. sky comming towards eath, then shooting back into space +2004-07-17,39.8461111,-84.5397222,Lewisburg,OH,triangle,420,Triagular craft hovering over I-70 in OH +2004-07-17,38.2547222,-121.2988889,Galt,CA,sphere,7200,large ball with green light outside and red and orange inside with red circle in the middle. ((NUFORC Note: Twinkling star?? PD)) +2004-07-17,35.7547222,-118.4244444,Kernville (8 Miles North Of),CA,other,900,Three green glowing vertical streamers seen North East of Kernville 7/17/2004, One several hundred feet long. +2004-07-17,37.3394444,-121.8938889,San Jose,CA,unknown,180,Shiny object moving slowly then rapidly up into the atmosphere. +2004-07-17,40.7141667,-74.0063889,New York City (Staten Island),NY,circle,50,Strange White Neon Light UFO Staten Island 7-17-04 @ approx 5:00pm Annadale +2004-07-17,37.8713889,-109.3422222,Monticello,UT,sphere,120,On about July 17, 2004 two motionless sphere crafts appeared on film where a white cloud masked them to the naked eye after sundown. +2004-07-17,34.698055600000004,-118.1358333,Lancaster,CA,triangle,2700,Wedge shaped object +2004-07-17,39.395,-86.5625,Paragon,IN,rectangle,15,It just looked strange +2004-07-17,37.6391667,-120.9958333,Modesto,CA,fireball,3600,Strange lights over Modesto +2004-07-17,38.7316667,-82.9977778,Portsmouth,OH,circle,3600,The object(s) moved effortlessly and one became very close to the ground, hovered and emmited beams, others just seem to float by. +2005-07-17,33.8536111,-118.1330556,Lakewood,CA,fireball,180,fast-moving fireball +2005-07-17,45.8641667,-122.8052778,St. Helens,OR,unknown,3600,Looked like a star at first, but it was moving... +2005-07-17,40.5866667,-122.3905556,Redding,CA,other,2700,2/3 of night sky filled with purple-pink light criss-crossing each other like a NET at Redding, CA +2005-07-17,47.5302778,-122.0313889,Issaquah,WA,circle,30,Fast moving ball of light. +2005-07-17,33.9533333,-117.3952778,Riverside,CA,sphere,180,METALIC SPHERE HOVERING RIGHT OVER THE FREEWAY ! IN LATE AFTERNOON ! I COULD'NT BELIEVE IT! +2005-07-17,20.2413889,-155.8327778,Hawi,HI,changing,3600,crystal like object changing shapes +2005-07-17,36.2694444,-95.8544444,Owasso,OK,unknown,7200,MISSOURI INVESTIGATORS GROUP Report: I was looking at the moon at around 9:40pm noticed something i thought was a star. +2005-07-17,40.3977778,-105.0744444,Loveland,CO,light,120,triangle, lights, front range, co, summer 05 +2005-07-17,34.8986111,-117.0219444,Barstow,CA,light,30,hovered, circled,and flew away +2006-07-17,41.926944399999996,-73.9977778,Kingston,NY,light,0.5,Bright light moving quickly before blinking out of existence. +2006-07-17,47.3294444,-122.5788889,Gig Harbor,WA,triangle,1800,strange blue and red colored stars turn into a ufo triangle that twitches and shoots out 'stars' +2006-07-17,39.1072222,-76.5713889,Pasadena,MD,light,2400,A light in the sky emmited multiple objects that came in our atmosphere, way more intense than any other sightings i've heard of. +2006-07-17,38.6272222,-90.1977778,St. Louis,MO,rectangle,600,Black rectangle hovering +2006-07-17,34.2366667,-84.4908333,Canton,GA,light,10,I was talking to my wife on the cell phone and it kept on disconecting, I had full signal. I decided to smoke a cigarette next to my w +2006-07-17,33.8980556,-84.2833333,Doraville,GA,egg,3600,I was looking out my window, I first saw a red light it rotated and changed color to silver letalic. it moved west and dissapeared, the +2006-07-17,47.3811111,-122.2336111,Kent,WA,teardrop,240,On monday night at 8:45 PM, 7-17-06 in Kent, Wa., I was watching a jet plane flying overhead very low on it's approach to land at Boein +2006-07-17,36.175,-115.1363889,Las Vegas,NV,sphere,3,A large orb the size of a man`s fully extended hand passed over central Las Vegas at 21:04 this evening during a period of heavy lightn +2006-07-17,41.49,-71.3133333,Newport,RI,light,420,A bright orange light. Moved awkwardly up and down as it traveled across the sky...Like a fireball at one point then suddenly moves +2006-07-17,35.8680556,-83.5619444,Sevierville,TN,unknown,45,Several Aircraft looking lights stood still in sky for 45 seconds, then faded away. +2006-07-17,29.7286111,-99.7611111,Leakey,TX,light,60,My friend and I were sitting at the banks of a narrow river, across from a 127 foot cliff of a canyon. As we were looking at the stars, +2006-07-17,38.6038889,-89.8072222,Lebanon,IL,triangle,240,triangle shaped "thing" with intense white lights and a "haze" around the outside of it flew over my home and there was no sound comin +2007-07-17,32.8405556,-83.6325,Macon,GA,flash,60,Twin flashing lights seen over Macon, GA +2007-07-17,35.2627778,-116.6838889,Fort Irwin,CA,triangle,240,Small orange triangle making impossible high speed maneuvers +2007-07-17,35.6508333,-117.6608333,China Lake,CA,disk,600,I grew up in China Lake California. This is a top secret Navy base.(NAWS) Naval Air Weapons Station. Having friends that work on this b +2007-07-17,42.1711111,-87.8444444,Deerfield,IL,teardrop,600,teardrop shaped craft passed by a plane hovered for about 10 minutes then flew away extremly fast. the object was white. the pointed pa +2007-07-17,42.6158333,-70.6625,Gloucester,MA,other,300,3 spinning object or objects in day sky +2007-07-17,33.6125,-117.7119444,Laguna Hills,CA,rectangle,300,stationary line of white pulsing lights +2007-07-17,40.5,-111.95,West Jordan,UT,sphere,30,12-15 Orbs in the sky just before a small storm +2007-07-17,40.4197222,-79.8502778,Forest Hills,PA,disk,4,Bright Light Over Pittsburgh! +2008-07-17,33.0655556,-96.2275,Caddo Mills,TX,unknown,3,Blue Green Flash burst seen raining down over July Texas sky at night. +2008-07-17,30.3319444,-81.6558333,Jacksonville,FL,light,5,Blueish/Green Flash around 2 am over Jacksonville +2008-07-17,43.3872222,-87.8755556,Port Washington,WI,disk,7200,Four illuminated saucer like objects in the sky at 2:15 am. +2008-07-17,43.9411111,-83.2713889,Caseville,MI,light,420,three star like dots over caseville, mi sky +2008-07-17,42.1394444,-83.1783333,Trenton,MI,changing,300,Changed from disk to triangle, broke up, never went over horizon, flying away from a nuclear power plant. +2008-07-17,38.6272222,-90.1977778,St. Louis,MO,sphere,120,UFO Seen Over Saint Louis Arch when on my vacation +2008-07-17,44.9975,-91.7269444,Colfax,WI,light,30,Light in night sky traveling in stright line abruptly changed direction and accelerated in an arc, disappearing in 1-2 seconds. +2008-07-17,32.8405556,-83.6325,Macon,GA,unknown,120,Two lights flashing back and forth, moving in unison across the sky. No visible solid object could be seen between them. +2008-07-17,41.6266667,-93.7119444,Urbandale,IA,unknown,30,Five Intense Beams of Light +2009-07-17,35.6869444,-105.9372222,Santa Fe,NM,light,120,Odd lights - objects in sky. +2009-07-17,42.4927778,-92.3427778,Waterloo,IA,fireball,420,4 Fireball-like UFO Seen in Waterloo Iowa, July 2009 +2009-07-17,46.2113889,-119.1361111,Kennewick,WA,oval,300,Oval craft or Orb sighting +2009-07-17,26.1591667,-97.9905556,Weslaco,TX,light,120,Highly advanced air craft silent, very fast , and im worried about my country. +2009-07-17,33.6408333,-117.6022222,Rancho Santa Margarita,CA,circle,900,was at the neiborhood with a few friends and sighed a round ufo. +2009-07-17,39.515,-84.3983333,Middletown,OH,changing,900,First of all - I would like to preface this by saying that I was NOT a direct witness to this, but I viewed a cell phone photo of the o +2009-07-17,33.426944399999996,-117.6111111,San Clemente,CA,other,1800,i was getting ready to go to bed and looked out my window and saw a bright yellow, orange,ball of light. I thought nothing about itunti +2009-07-17,31.1044444,-91.2994444,Woodville,MS,circle,480,Circular florescent pulsating light. +2010-07-17,36.4388889,-118.9036111,Three Rivers,CA,light,16200,Watched and recorded a UFO (for 4.5 hours) in the skies over the Giant Sequoia National Forest. ((NUFORC Note: Venus or Jupiter? PD)) +2010-07-17,32.8405556,-83.6325,Macon,GA,light,16200,Several flashing lights in various positions seen in the northern sky nightly. +2010-07-17,48.3725,-114.1805556,Columbia Falls,MT,light,600,3 lights in the sky +2010-07-17,47.6063889,-122.3308333,Seattle,WA,fireball,900,Fireballs over night sky in Seattle. +2010-07-17,41.85,-87.65,Chicago,IL,unknown,1800,Ring of fire +2010-07-17,43.0202778,-78.8805556,Tonawanda,NY,circle,600,Multiple yellow globes silently streaming past house for ten min. in a long strung out disconnected line. +2010-07-17,39.7588889,-84.1916667,Dayton,OH,other,120,At around 10 p.m. on July 17, 2010 in the area of Dayton, Ohio, my husband and I were traveling I-75 South and had just exited the Cent +2010-07-17,40.3916667,-111.85,Lehi,UT,light,600,Strange light in sky moving erratically, stopping abruptly and changing directions. +2010-07-17,41.7858333,-88.1472222,Naperville,IL,light,300,5 bright orange glowing lights traveling over Naperville Illinois +2010-07-17,42.6805556,-83.1338889,Rochester,MI,fireball,2700,Fireball in the Sky +2010-07-17,39.0169444,-94.2813889,Blue Springs,MO,fireball,600,4 orange flaming lights traveling south to north with 8-9 loud booms, and flashs to the north of our location. +2010-07-17,43.4577778,-88.8372222,Beaver Dam (Rural),WI,rectangle,120,Orange glowing cube near Beaver Dam, WI +2010-07-17,42.0597222,-93.88,Boone,IA,disk,1800,Flying obects in ia sky +2010-07-17,42.3222222,-83.1763889,Dearborn,MI,light,300,Silent orange objects flying in the night sky in Dearborn, Michigan. +2010-07-17,47.6063889,-122.3308333,Seattle,WA,unknown,180,Witnessed 25+ UFO's in the sky (orange lights), all in same flight pattern. +2010-07-17,47.6063889,-122.3308333,Seattle,WA,fireball,600,there were 20-30 objects in the sky. they all looked the same; an orb that was colored red oarnge with an yellow aurora. they were firs +2010-07-17,47.6063889,-122.3308333,Seattle,WA,formation,600,there formation/armada was huge. +2010-07-17,47.6063889,-122.3308333,Seattle,WA,sphere,600,This is the most awe inspiring moment of my life and i was somewhat sad too see them leave i really felt like i ment our creator. +2010-07-17,40.7791667,-72.9158333,Brookhaven,NY,light,120,My Aunt and I saw 16 big, round, bright orange lights flying SILENTLY at about helicopter level heading East. They were flying slowly +2010-07-17,47.6063889,-122.3308333,Seattle,WA,sphere,600,Orange balls of light in Seattle night sky on July 17, 2010 at 11:37pm +2010-07-17,28.2486111,-81.2813889,St. Cloud,FL,fireball,120,I observed an orange, glowing object floating at a low altitude similar to where a helicopter would fly. The object appeared to be an o +2011-07-17,42.6566667,-83.7530556,Hartland,MI,sphere,600,We witnessed at least 30 unidentified orange glowing objects above us, traveling north and upward. +2011-07-17,41.0441667,-83.65,Findlay,OH,unknown,259200,((HOAX??)) Aliens live in are yard. ((NUFORC Note: We are unconvinced that this is a serious report. PD)) +2011-07-17,33.3227778,-116.8777778,Palomar Mountain,CA,cylinder,1200,Cigar shaped craft with glowing Orbs entering craft. +2011-07-17,36.7477778,-119.7713889,Fresno (Near; On Interstate 5),CA,formation,120,A linear object with 3 bright lights, flew about 10 feet over our truck while traveling N on I 5. +2011-07-17,42.6338889,-73.5541667,Averill Park,NY,fireball,2,Green fireball shooting across sky northbound. ((NUFORC Note: Possible meteor?? PD)) +2011-07-17,46.4166667,-117.0166667,Lewiston,ID,triangle,1200,Three delta, possibly "bat-shaped" objects observed flying due west between 10ꯠ and 25ꯠ feet at very high rate of speed. +2011-07-17,39.0436111,-77.4877778,Ashburn,VA,cigar,7,black cigar/rectangular shape, silent. no wings. winks out along flight path +2011-07-17,45.3180556,-85.2583333,Charlevoix,MI,circle,360,Charlevoix +2011-07-17,39.6066667,-75.8336111,Elkton,MD,flash,120,Object seen over Elkton MD moving away from me(straight up) 10pm 7/17/11 +2011-07-17,34.6777778,-76.9511111,Emerald Isle,NC,fireball,120,Lights over ocean at Emerald Isle +2011-07-17,36.0997222,-80.2444444,Winston-Salem,NC,disk,30,huge circular disk with at least 8 bright lights shining under it witnessed by 2 people on the southside of winston-salem, nc. +2011-07-17,29.2855556,-81.0561111,Ormond Beach,FL,triangle,240,Large triangular object floating slowly through Ormond Beach, Florida. +2011-07-18,33.7205556,-116.2147222,Indio,CA,other,420,IT FIRST SEEM LIKE A DYING STAR FLASHING ..IT WOULD DIM THEN BRIGHTEN THEN IT STARTED MOVING UP DOWN IN A CIRCLE IT WOULD GO FRONTWARD +2012-07-17,42.2230556,-78.0347222,Belmont,NY,sphere,20,Orange sphere, zig-zag, hover, dissapear +2012-07-17,44.9430556,-123.0338889,Salem,OR,sphere,1800,Red pulsating sphere in OR- UFO? +2012-07-17,39.7663889,-75.1447222,Sewell,NJ,triangle,120,Seen something, Triangular in shape, heading on a north easterly path over our farm in Sewell NJ. NOT a plane. +2012-07-17,40.3305556,-84.7755556,North Dayton,OH,other,1200,Brilliant multicolored UFO. +2012-07-17,35.2333333,-106.6638889,Rio Rancho,NM,light,15,Bright light - thought at first to be a star traveled horizontal approximately 10 seconds then turned upward towards the sky and within +2012-07-17,38.2097222,-84.5588889,Georgetown,KY,other,300,I was looking up and thought I saw a shooting star, but it stopped. Dead stop, and was modulating, not blinking per se. The trail, if y +2012-07-17,39.9969444,-84.7922222,Hollansburg,OH,fireball,120,Fireball seen leaving bright strobing star. +2012-07-17,29.7630556,-95.3630556,Houston,TX,light,600,Stationery light in the sky +2012-07-17,44.7630556,-85.6205556,Traverse City,MI,cigar,35,White cigar shaped object with no evident exhaust trail or wings,following commercial airliner under blue skys. +2012-07-17,45.1230556,-92.5363889,New Richmond,WI,sphere,600,Dark sphere seen in twilight sky with amber light on the bottom. +2012-07-17,42.7369444,-84.4838889,East Lansing,MI,unknown,30,Object with orange lights turned and did 2 very fast circles +2012-07-17,33.6058333,-78.9733333,Surfside Beach,SC,circle,3600,Bright orange lights and formation of twinkling white lights +2012-07-17,28.3644444,-82.1961111,Dade City,FL,sphere,300,6 round orange ball of light glide across the night sky in Dade city +2012-07-17,40.3266667,-78.9222222,Johnstown,PA,triangle,120,3 Glowing orbs in triangle formation johnstown, PA +2012-07-17,33.4483333,-112.0733333,Phoenix,AZ,light,360,Dear Sir: On 7-172012 at 10 PM I saw two orange lights west of Phoenix. I was driving west bound and they appeared to be many miles wes +2012-07-17,39.6294444,-79.9561111,Morgantown,WV,light,600,Large spherical bright lights moving in tandem perfectly horizontally across the skyƿ totatover 1o minutes,hovering stationarry and fa +2012-07-17,36.175,-115.1363889,Las Vegas,NV,circle,600,Downward moving object falling north of las vegas nevada. +2012-07-18,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,180,Large Orange Fireball Traveling Coastline in South Myrtle Beach July 17 20012 +2013-07-17,33.9547222,-118.2111111,South Gate,CA,circle,60,Yellow orange hue sphere seen over Los Angeles city ,pass midnight. +2013-07-17,36.1961111,-82.0705556,Roan Mountain,TN,oval,1020,UFO1.black triangle w/3 white lights on corners no strobe.#2Glassy oval gem w/ all colors purple gold mostly close +2013-07-17,36.1961111,-82.0705556,Roan Mountain,TN,oval,1020,UFO. black triangle w/3 white lights on corners no strobe.#2Glassy oval gem w/ all colors purple gold mostly close +2013-07-17,40.7966667,-81.5216667,Massillon,OH,light,10,Strange light in sky over Massillon, Ohio. +2013-07-17,43.6136111,-116.2025,Boise,ID,changing,1680,I was driving to Boise from Caldwell and noticed one bright white blue sphere and 8+ red green and blue smaller spheres to the right. +2013-07-17,39.8366667,-105.0366667,Westminster,CO,circle,240,Observed three star like objects move at supersonic speeds, one made a u-turn and (N - S) then S - NEN! +2013-07-17,41.9852778,-72.4466667,Somers,CT,other,60,Red/orange fireball but with what seemed like edges of structure underneath. Moved west for 20 seconds perhaps, paused, dipped. +2013-07-17,32.7833333,-96.8,Dallas,TX,other,20,N Dallas Tollway NOON July 17, 2013. +2013-07-17,34.3075,-80.9605556,Ridgeway,SC,light,2,Bright orb spotted in the sky. +2013-07-17,34.2986111,-95.9877778,Lane,OK,fireball,45,Orange fireball split into 4 equal sized spheres then disappeared. +2013-07-17,47.9130556,-122.0969444,Snohomish,WA,diamond,3600,2 extremly bright orange diamond shaped craft move slowly down Snohomish valley. +2013-07-17,37.4605556,-115.1922222,Ash Springs (Near),NV,light,600,What seemed to be a satellite suddenly reversed course as a second object separated from it. +2013-07-17,36.5708333,-119.6111111,Selma,CA,light,60,Yellowish/orange light seen moving with the horizon, then made a sharp S patern, changed colors and went straight down rapidly +2013-07-17,34.5894444,-95.3525,Clayton,OK,disk,600,Kiamichi Mountains- Hwy 271 South-glowing fire balls/UFO craft. +2013-07-17,33.6888889,-78.8869444,Myrtle Beach,SC,triangle,30,Orange Orbs Form Equilateral Triangle. +2013-07-17,34.9333333,-95.7694444,Mcalester,OK,disk,1800,It started as a mile long craft before it separated into many smaller ones. +2013-07-17,33.8158333,-78.6802778,North Myrtle Beach,SC,triangle,30,Three points of yellow orange light appeared moving horizontally following a loud boom then disappeared. +2013-07-17,37.6922222,-97.3372222,Wichita,KS,triangle,45,Triangular shaped light formation. +2013-07-17,37.6922222,-97.3372222,Wichita,KS,triangle,5,It was 5 fiery red balls of light shaped in a triangle. They slowly came on amd was very bright. Lasted around 5 seconds. +2013-07-17,44.426944399999996,-124.0675,Waldport,OR,light,300,Five reddish-orange lights over Waldport , Oregon in the SW sky. +2013-07-17,44.0805556,-103.2305556,Rapid City,SD,light,20,Star like object observed moving across S.D. sky very fast. +2013-07-17,33.6888889,-78.8869444,Myrtle Beach,SC,circle,600,Round orange lights over the Atlantic Ocean, Myrtle Beach, SC. +2013-07-17,47.32,-114.0930556,Saint Ignatius,MT,fireball,30,Fireballs in the Sky over St. Ignatius MT +2013-07-17,41.025,-80.7611111,Canfield,OH,formation,900,Large obj. with bright red, orange, and yellow lights in SE sky in Canfield Ohio, moved towards us, stopped and disappeared backwards. +1970-07-18,46.1291667,-107.5544444,Custer,MT,light,1200,It had been stationary in the sky for about two hours when it just "took off" and then went back the way it had originated from before +1974-07-18,47.5675,-122.6313889,Bremerton,WA,delta,300,from my bed room window we saw what we thought was a car on the hill top just up the street +1975-07-18,35.8655556,-101.9727778,Dumas,TX,oval,600,Three oval shaped objects in open field. +1978-07-18,41.5833333,-87.5,Hammond,IN,other,30,I was sitting in front of the window listening to the radio one night and saw this object slowly descending, like the sun setting on th +1979-07-18,43.0944444,-79.0569444,Niagara Falls,NY,light,7200,This very delayed report is the result of just finding your site as received a link from a friend.Let me preface this with an obser +1981-07-18,43.1044444,-74.2652778,Mayfield,NY,cigar,30,cigar shaped brightly lit object, hovered for 30 seconds and shot off to the north +1984-07-18,39.7955556,-85.5263889,Knightstown,IN,triangle,600,Huge Triangle,state road 40, Indiana +1987-07-18,34.2569444,-85.1647222,Rome,GA,sphere,600,The ship was very low to the ground and moving very slow. +1990-07-18,42.0347222,-93.6197222,Ames,IA,disk,600,At a stadium concert, I and others saw a disk silently hover directly overhead, and then accelerate away at great speed. +1991-07-18,36.175,-115.1363889,Las Vegas,NV,other,7200,a huge shadow appeared out of nowhere, revealing a enormous boomerang shaped object. 500 Lights On Object0: Yes +1992-07-18,34.1394444,-117.9763889,Duarte,CA,disk,1800,I had the most vivid dreams two consecutive nights in mid-July 1992. I wonder if you have a record of a plethora of reports of abductio +1993-07-18,37.0430556,-100.9205556,Liberal,KS,other,900,jetliner object scanning property with broken beam - enormous and very low +1996-07-18,39.1855556,-78.1636111,Winchester,VA,cone,300,My brother and I saw a hovering cone and we watched it until it zoomed away. +1997-07-18,42.7883333,-71.2013889,Salem,NH,unknown,1800,My husband had been sitting the computer in our den when he noticed rotating red, white and blue lights in our back yard. It was a hot +1998-07-18,33.3061111,-111.8405556,Chandler,AZ,light,1440,UFO drops liquid mettalics into my yard. +1998-07-18,40.1672222,-105.1013889,Longmont,CO,triangle,300,Traingle craft about 60+ feet in diameter was sighted flying west of Longmont CO. +1999-07-18,42.9711111,-73.7930556,Malta,NY,light,2,fast moving white light +1999-07-18,30.3319444,-81.6558333,Jacksonville,FL,flash,1200,Observed an object strobing red, wht, & blu at altitude & distance, stationary for apx. 20 mins. +1999-07-18,33.1191667,-117.0855556,Escondido,CA,fireball,300,A large circular orange light which moved to the north, then south, north again the up until it dissapeared. +1999-07-18,41.965,-80.4075,East Springfield,PA,circle,20,seen round orange/red object heading in northwesterly direction +1999-07-18,29.4238889,-98.4933333,San Antonio,TX,unknown,240,3 TIMES FROM 7/18 TO NOW AN ABDUCTION EVENT, BUT NOT A SUCCESS FOR THEM.I AM A RESEARCHER AND HAD TAKEN A ABDUCTEE TO SAN ANTONIO FOR H +1999-07-18,39.9625,-76.7280556,York,PA,disk,60,Convex disk with cylindrical top aroudn the penn state york campus +1999-07-18,45.3247222,-118.0866667,La Grande (Union County Airport),OR,changing,300,Bright light traveled from North to South, decended as if to land, approached landing strip--disappeared. +1999-07-18,36.0652778,-119.0158333,Porterville,CA,light,120,BRIGHT LIGHT MOVED SLOWLY, SOUTH ACROSS THE SKY, I WAS LOOKING EAST, THEN IT SEEMED TO FLIP OVER AS IT BECAME BRIGHTER, THEN IT ANGLED +1999-07-18,34.0966667,-117.7188889,Claremont,CA,triangle,8,Object was V-shaped with 7 round lights visible. The lights were dull, not bright. It was traveling southeast to northwest. Possibly a +1999-07-18,29.7630556,-95.3630556,Houston,TX,circle,1,Bright sphere of light, 30 degrees above western horizon traveling at extreme velocity from SW to W, much too large to be a meteorite +1999-07-18,41.2086111,-73.5752778,Pound Ridge,NY,sphere,300,I saw a sphere flying north east. It was going fast then slowed down. blinked twice and let off a smaller sphere. +1999-07-18,31.255277800000002,-96.1225,Robbins,TX,circle,1200,On a clear night in Texas,while packing the truck 5 orange balls of light floatedand shot of in many differant ways. +2000-07-18,35.4119444,-99.4038889,Elk City,OK,cigar,2,Simply amazing view of a ufo caught on tape +2000-07-18,35.4119444,-99.4038889,Elk City,OK,disk,2,Flying disk that looks silver in color and is moving extremely fast +2000-07-18,34.7302778,-86.5861111,Huntsville,AL,circle,240,I watched the object from my front yard as it changed size, shape, direction, speed and finally disapeared. +2000-07-18,39.1458333,-121.5902778,Marysville,CA,disk,300,The object rose from the invertion covered horizon as if it was using the combined smog and partial cloud layer for concealment. The c +2000-07-18,42.5630556,-114.46,Twin Falls,ID,sphere,70,obserbed military air craft chase whit light sphere. intensity like a star in cassoipea from south to north in straight line. could +2001-07-18,31.3269444,-89.2902778,Hattiesburg,MS,light,4500,Bright, red pulsing object in the north eastern section of the sky. +2001-07-18,29.7630556,-95.3630556,Houston,TX,oval,120,the ufo was above a office +2001-07-18,33.3941667,-104.5225,Roswell,NM,chevron,120,low iredescent V shaped light +2001-07-18,36.175,-115.1363889,Las Vegas (North),NV,chevron,10,Flying wing, very large, silent..... +2001-07-18,35.4675,-97.5161111,Oklahoma City,OK,cigar,30,Object seen pacing small aircraft over Oklahoma City,OK +2001-07-18,29.7286111,-99.7611111,Leakey,TX,light,900,Bright star like object moved from W to E @ a slow pace, for approx. 15 min. w/ fading brightness in & out. +2002-07-18,33.4052778,-86.8113889,Hoover,AL,light,300,A point of light starting moving very fast then vanished. I saw the same thing a few minutes later. +2002-07-18,37.9061111,-122.5438889,Mill Valley,CA,light,30,Wedge-shaped group of multiple amber lights enter field of vision of binoculars, dart about, interact with aircraft. +2003-07-18,47.0969444,-122.63,Dupont,WA,triangle,1800,Three hanging orange lights spaced at intervals, emmitting a saucer-shaped glow, slowly chaning into a triangle shaped pattern. +2003-07-18,40.7208333,-73.2677778,Brightwaters,NY,disk,2,Disk with lights around the outside +2003-07-18,35.0844444,-106.6505556,Albuquerque,NM,triangle,20,TRIANGLE SHAPED PHOSFLORESANTLY LIGHTED STRINGRAY SHAPED CRAFT +2003-07-18,42.5630556,-114.46,Twin Falls,ID,sphere,1800,Low flying green orbs +2003-07-18,45.6388889,-122.6602778,Vancouver,WA,rectangle,20,we saw three unusual objects zig-zag overhead in a way we had never seen any aircraft manover before +2004-07-18,33.8388889,-83.9008333,Loganville,GA,flash,2,More like a meteor breakup. Flash was in the northeastern sky vertical coming down with a sudden breakup and then several bright green +2004-07-18,44.0455556,-71.6705556,Lincoln,NH,disk,780,Brillant white lighted object dotting across the sky then circling area, leaving then once again returnng and circling small area +2004-07-18,33.415,-111.5488889,Apache Junction,AZ,light,780,BRIGHT MOVING LIGHT FADING IN AND OUT VERY LARGE VERY BRIGHT OVER EASTERN SUPERSTITIONS +2004-07-18,41.6269444,-79.6738889,Titusville,PA,sphere,1800,the silver ball moved along the top of a tree line back and forth before going up too high to see. +2004-07-18,47.6816667,-122.2075,Kirkland,WA,sphere,600,3 different colored round objects moving at different speeds and different directions mid afternoon. +2005-07-18,41.7941667,-83.4963889,Erie,MI,light,10,ball of light moving slow as a plane would then speeding up dramaticly and doing 90 degree turn and shot off! +2005-07-18,47.5405556,-122.635,Port Orchard,WA,circle,1800,UFO in our Backyard +2005-07-18,47.1719444,-122.5172222,Lakewood,WA,sphere,180,vw bug sized /flat black colored sphere moving glide like,silent,w/o exhaust trail seen in broad daylight +2005-07-18,44.8113889,-91.4983333,Eau Claire,WI,unknown,300,Slow, silent blinking lights return again in Eau Claire +2005-07-18,41.7255556,-87.825,Hickory Hills,IL,circle,60,a lite that was the size of the stars around it , but unlike the surrounding matter, the object was moving very fast. The object would +2005-07-18,47.6063889,-122.3308333,Seattle,WA,flash,5,Expanding and Disappearing Light +2005-07-18,38.5816667,-121.4933333,Sacramento,CA,changing,3600,slow moving starlike object that appeared to chaged shape in broad daylight +2005-07-18,38.5816667,-121.4933333,Sacramento,CA,changing,1170,starlike object changing shape for over an hour over Sacramento +2005-07-18,30.3319444,-81.6558333,Jacksonville,FL,light,420,Eight silvery relflective objects. Six stationary and two moving near the others. All faded from view in 7 minutes. +2005-07-18,40.4863889,-86.1336111,Kokomo,IN,light,45,It was a ball of light obviously heading toward where it came from. +2005-07-18,37.9780556,-122.03,Concord,CA,triangle,300,White flashing lights in patterns and a repeated sequence. Might be triabgular or rectangular. +2005-07-18,37.9780556,-122.03,Concord,CA,triangle,300,follow up to sighting in SF on 12/06/06. ((NUFORC Note: Advertising light?? PD)) +2005-07-18,44.9430556,-123.0338889,Salem,OR,flash,7,Seeing a light traveling due north from directly overhead at a slow pace, it suddenly flared up incredibly bright and then just went ou +2006-07-18,42.6333333,-109.465,Big Sandy,WY,light,1200,Two lights hoving in 2 diffent parts of the night sky, changing colors, slightly shifting about fixed points.((NUFORC Note: Stars?PD)) +2006-07-18,43.0513889,-83.3188889,Lapeer,MI,disk,30,((HOAX?? Student report. PD)) I know I saw a unexplainable object. +2006-07-18,44.3763889,-90.1105556,Dexterville,WI,triangle,8,Close triangle shaped lights and 5 fighter jets in central wisconsin. +2006-07-18,41.6269444,-88.2038889,Plainfield (Near Shorewood),IL,other,15,2 low flying lights traveling east near Caton Farm Road and Red Hawk Drive, visible for 10 seconds. +2006-07-18,43.6136111,-116.2025,Boise,ID,disk,15,White/red glowing object, no sound as it moved from the East end of the Boise Valley, south to the north and then dissappearing. +2006-07-18,43.6136111,-116.2025,Boise,ID,circle,15,We reported this last night, but found a video on your site that better describes what we saw. It looked JUST like this video: http://w +2007-07-18,31.7586111,-106.4863889,El Paso,TX,other,60,Delta-shaped metallic object observed for about a minute, and then disappeared. +2007-07-18,42.6158333,-70.6625,Gloucester,MA,other,300,strange metal object/objects +2007-07-18,33.4483333,-112.0733333,Phoenix,AZ,unknown,120,satellite looked like it was fired upon/ near miss meteor? +2007-07-18,47.6816667,-122.2075,Kirkland,WA,light,30,Just a light...possibly a satelite, that's about it thus far. +2007-07-18,38.9516667,-92.3338889,Columbia,MO,triangle,60,Trangular shaped solid white lights with solid amber light in middle. Columbia, MO +2008-07-18,40.7933333,-77.8602778,State College,PA,light,1200,Large spot of light seen next to full moon +2008-07-18,35.0844444,-106.6505556,Albuquerque,NM,light,900,When first sighting the light it was moving unusually fast and changed course after a few minutes and then conducted erratic movements. +2008-07-18,36.3105556,-78.5911111,Oxford,NC,light,300,Bright lights 100 ft off the ground +2008-07-18,29.7630556,-95.3630556,Houston,TX,other,900,Flying humanoid in houston? +2008-07-18,38.6941667,-75.7725,Federalsburg,MD,disk,120,Larger Gray object slowing down and speeding up in front of a jet +2008-07-18,33.7475,-116.9711111,Hemet,CA,oval,60,Orange object flying near jetliner. +2008-07-18,38.7955556,-77.6141667,Gainesville,VA,light,180,High, bright small light heading W/NW +2008-07-18,37.6455556,-91.5358333,Salem,MO,disk,10,MISSOURI INVESTIGATORS GROUP Report: I saw a saucer shaped object just down and to the right of the Moon. +2008-07-18,39.6988889,-78.18,Hancock,MD,light,120,Light flying northwest over Hancock. +2008-07-18,40.3266667,-78.9222222,Johnstown,PA,light,600,One bright light 2 times brighter than any planet or star in the sky was following a commercial airliner in an east-northeast path +2008-07-18,42.4927778,-92.3427778,Waterloo,IA,fireball,10,Flamelike UFO seen in Waterloo, IA +2008-07-18,48.7136111,-118.0241667,Evans,WA,light,90,Smooth big bulb of light +2008-07-18,46.7833333,-92.1063889,Duluth,MN,light,300,A brilliant white light traveling over Lake Superior north to northeast. +2008-07-18,38.935,-74.9063889,Cape May,NJ,sphere,720,My wife and I witnessed a large Orange lantern shaped ORB that was very bright and large in the night sky. It was low in the sky and pa +2008-07-18,38.7838889,-90.4811111,St. Charles,MO,triangle,60,Black triangle motionless on southside of MO 370 just off of Discovery Bridge w/3 white & 1 red non-blinking lights. +2009-07-18,34.0522222,-118.2427778,Los Angeles,CA,oval,7200,Unexplained orange glow, craft, over Los Angeles. ((NUFORC Note: Possible sighting of a celestial body. PD)) +2009-07-18,47.6063889,-122.3308333,Seattle,WA,disk,15,A lit-up disc in sky does some chaotic zig-zagging and flies off in a matter of seconds. +2009-07-18,47.6794444,-122.8969444,Brinnon,WA,circle,1200,blue and red lighted object dancing above the Duckabush River +2009-07-18,37.3852778,-122.1130556,Los Altos,CA,disk,180,glowing horizontal saucer-shaped light seen hovering over Los Altos Hills, CA. +2009-07-18,29.7630556,-95.3630556,Houston,TX,light,2100,Lights in the sky make themselves known. ((NUFORC Note: Possible sightings of satellites? PD)) +2009-07-18,26.525,-80.0666667,Boynton Beach,FL,light,120,White light traveling at high altitude, maybe orbit - West to East. ((NUFORC Note: Possible satellite?? PD)) +2009-07-18,42.7458333,-124.4961111,Port Orford,OR,triangle,300,Low flying, Humming, Triangular, Flashing red lights, Low speed +2009-07-18,47.9130556,-122.0969444,Snohomish,WA,sphere,300,White Sphere seen in sky, near soccer fields. +2009-07-18,39.36,-84.31,Mason,OH,formation,300,Lights in the sky in an unusual formation. They appeared moved around and disappeared. +2009-07-18,21.3069444,-157.8583333,Honolulu,HI,other,600,we saw a steaking white light flying over the water then it stopped. it looked like a jet was following it, when the jet caught up the +2009-07-18,46.6022222,-120.5047222,Yakima,WA,triangle,300,Triangular aircraft seen from Divide Ridge +2009-07-18,26.0738889,-97.8227778,Bluetown,TX,formation,1800,B/t border ot TX & Mex; five indep lights in a triangle pat traveling in SE direction would stop & hover.vanish over Gulf. +2009-07-18,36.1658333,-86.7844444,Nashville,TN,sphere,900,Multiple Red Orange luminous obects flying in formation over Nashville, Tennessee +2009-07-18,39.5588889,-84.3041667,Franklin,OH,changing,600,something is happen here in franklin ohio. +2009-07-18,44.6366667,-123.1047222,Albany,OR,changing,300,UFO over I-5 near Albany, Oregon on 7/18/2009. +2009-07-18,39.4352778,-84.2030556,Lebanon,OH,light,120,Unexplainable Sighting in Lebanon Ohio +2009-07-18,39.515,-84.3983333,Middletown,OH,light,120,I was pulling down my friends drive way when i saw four bright lights about a quarter the size of the moon.The lights was sorta round i +2009-07-18,39.9522222,-75.1641667,Philadelphia,PA,chevron,30,Pink Chevron trailed by two smaller craft +2009-07-18,41.2086111,-73.5752778,Pound Ridge,NY,other,10,Green glow cresting trees 50 yards away hovering then going away. +2009-07-18,36.9741667,-122.0297222,Santa Cruz,CA,light,900,8-10 Amber colored lights seen in the Eastern Sky above Santa Cruz, CA +2009-07-18,33.1191667,-117.0855556,Escondido,CA,flash,1020,color changing flashes fly from southeast of Escondido to overhead then change direction and disappears. +2009-07-18,45.6388889,-122.6602778,Vancouver,WA,circle,240,Round shape flying across evening sky for about four minutes. ((NUFORC Note: Sighting of ISS overflight. PD)) +2009-07-18,45.4469444,-122.5291667,Happy Valley,OR,unknown,300,bright neon object moves from west to east, then darts to the unknown. with the blink of an eye. ((NUFORC Note: ISS? PD)) +2009-07-18,32.5005556,-94.7402778,Longview,TX,circle,300,Bright object suddenly gone +2010-07-18,33.7877778,-117.8522222,Orange,CA,other,300,Bright white object very large that traveled in the sky unbelievably fast in many different directions. +2010-07-18,45.12,-93.2875,Coon Rapids,MN,formation,10800,formation of lights in a row very close.unmarked car showed up they took photos and left. +2010-07-18,33.4147222,-111.9086111,Tempe,AZ,unknown,2700,Globes of light in sky over tempe arizona, moving in a quickly repeating pattern but staying in one area. +2010-07-18,44.8480556,-93.0425,Inver Grove Heights,MN,light,2700,Bright string of stationary lights after tornadic storms baffles stormwatcher +2010-07-18,35.4675,-97.5161111,Oklahoma City,OK,unknown,9,Bright bluish light. that vanished +2010-07-18,34.0522222,-118.2427778,Los Angeles,CA,light,7200,((HOAX??)) They know who we are. They are calling our names. +2010-07-18,36.3047222,-86.62,Hendersonville,TN,cone,300,We saw a giant fireball pushing a long cone shape +2010-07-18,30.4505556,-91.1544444,Baton Rouge,LA,disk,60,I NEVER THOUGHT IN MY LIFE TIME I WOULD LIVE TO SEE ANYTHING LIKE THAT. I WAS SKEPTICAL BUT NOT ANYMORE... +2010-07-18,28.5388889,-80.6722222,Merritt Island,FL,fireball,360,Five red fireballs. +2010-07-18,37.9833333,-75.8541667,Crisfield,MD,light,180,A white speck of light extremely high, changing size traveling north of Crisfield, MD. ((NUFORC Note: Iridium flare?? PD)) +2010-07-18,33.7125,-115.4013889,Desert Center,CA,oval,600,Stadium sized ship slowly rotated 180 degrees then 5-6 silver balls of light slowly flew out - Desert Center, CA +2010-07-18,39.7172222,-74.9697222,Sicklerville,NJ,light,3600,flashing lights swirling in the night. ((NUFORC Note: From witness #2. Possible sighting of Venus?? PD)) +2010-07-18,39.7172222,-74.9697222,Sicklerville,NJ,light,3600,Flashing lights swirling in the night. ((NUFORC Note: Venus in the western sky?? Date is flawed. Possible hoax. PD)) +2010-07-18,36.1397222,-120.3591667,Coalinga,CA,triangle,300,Low flying black triangle, 3 bright lights scanning the ground, also performing acrobatics flipping end over end +2010-07-18,40.3252778,-79.6058333,Grapeville,PA,flash,30,Around 23:00 hours a pulsating bright light grew bigger and brighter before dimming and got smaller before disappearing. +2010-07-18,42.8330556,-108.73,Lander,WY,unknown,120,My son and I were looking at stars when we saw a fast moving light high in the sky traveling very fast in a circle then it suddenly dis +2011-07-18,38.4105556,-76.4555556,Lusby,MD,sphere,2,Large blue/green sphere over Calvert County. ((NUFORC Note: Report from aviation mechanic. PD)) +2011-07-18,35.6505556,-78.4566667,Clayton,NC,circle,2,Flashing red,blue and white lights. ((NUFORC Note: Possible sighting of a "twinkling" star, perhaps Arcturus, we suspect. PD)) +2011-07-18,47.8211111,-122.3138889,Lynnwood,WA,other,600,1/3 sky being lit by changing colored lights, behind dense low clouds +2011-07-18,27.9472222,-82.4586111,Tampa,FL,triangle,900,Bright white light hovering high in sky over S. Tampa. ((NUFORC Note: Possible twinkling star? PD)) +2011-07-18,37.0583333,-120.8488889,Los Banos (Approx 10 Miles East Of),CA,triangle,300,3 Bright lights along highway 152 east of Los Banos, very close to the ground. +2011-07-18,39.0305556,-97.5938889,Bennington,KS,cigar,600,Three individuals saw an airplane, one cigar-shaped, silver object & three, red-orange spheres in sky near home. +2011-07-18,37.4947222,-120.8455556,Turlock,CA,light,180,Four lights moving in the Ca Valley Sky +2011-07-18,45.6388889,-122.6602778,Vancouver,WA,sphere,600,Strange blinking red, blue, and green lights moving in the sky. ((NUFORC Note: Possible twinkling star?? PD)) +2011-07-18,32.1572222,-94.3372222,Carthage,TX,triangle,1200,Black triangle UFO close to I-20 in East Texas +2011-07-18,33.5772222,-96.1780556,Bonham,TX,fireball,300,Bright orange ball. +2011-07-18,46.0891667,-122.9347222,Rainier,OR,light,60,Saw a strange fast light while driving home. ((NUFORC Note: Sighting allegedly affected dashboard lights in car. PD)) +2012-07-18,59.6425,-151.5483333,Homer,AK,light,1800,Multiple lights executing strange maneuvers by darting back and forth, blinking on and off and moving in geometric patterns. +2012-07-18,59.6425,-151.5483333,Homer,AK,light,1800,Multiple lights executing strange maneuvers by darting back and forth, blinking on and off and moving in geometric patterns. +2012-07-18,30.3319444,-81.6558333,Jacksonville,FL,fireball,5,Fluorescent green streak in jacksonville sky +2012-07-18,40.8766667,-73.325,East Northport,NY,rectangle,12,UFO een and briefly captured +2012-07-18,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,2,At first one orange/reddish light was on 2 sec. later another light came on than both went out for 2 sec. and both came on at the same +2012-07-18,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,1200,Me and brothers saw 2 orange lights in the sky 2 times +2012-07-18,34.4433333,-86.9352778,Hartselle,AL,fireball,120,Orange fireball seen in the middle of the afernoon in Morgan County, Alabama. +2012-07-18,33.6888889,-78.8869444,Myrtle Beach,SC,light,5400,Sitting on balcony after returning to hotel after dinner my daughter and I saw what looked to be some sort of light flash on in the sky +2012-07-18,33.8158333,-78.6802778,North Myrtle Beach,SC,sphere,1155,I saw 3green lights flashing and fading over north mrytle beach and no one eles seem to see them. +2012-07-18,33.8905556,-78.5686111,Calabash,NC,unknown,900,Bright yellow/orange lights in sky. +2012-07-18,33.9133333,-78.3041667,Holden Beach,NC,formation,1800,Orange bright flash then a strange formation of lights seen on the beach +2012-07-18,33.9133333,-78.3041667,Holden Beach,NC,sphere,2700,Bright and flashing orbs moving and changing colors in the sky off Holden Beach. +2012-07-18,33.8941667,-78.4269444,Ocean Isle Beach,NC,light,2,Orange lights and lots of jets +2012-07-18,33.9213889,-78.0205556,Southport,NC,oval,480,Orange oval bright light in the sky that kept moving into different spots in the southern sky then went into the cloud. +2012-07-18,29.1380556,-80.9958333,Port Orange,FL,triangle,300,Orange/white glowing lights in night sky, triangle formation, moving from west to east July 18, 2012 - 9 PM +2012-07-18,44.7822222,-88.6088889,Shawano,WI,fireball,300,Two huge bright pulsating lights traveling slowly at low altitude from East to West silently in a low ambiant noise area. +2012-07-18,33.9133333,-78.3041667,Holden Beach,NC,formation,1500,Multiple amber orbs observed over the ocean night sky for 2 straight nights in Holden beach ,NC +2012-07-18,33.9163889,-78.1613889,Oak Island,NC,other,1200,Large fireballing flashes on and off. Smaller white flashes move across the sky at incredible rate. +2012-07-18,46.7163889,-122.9530556,Centralia,WA,fireball,120,Silent flickering yellow orb that moved from the North and dissapeared into the East above the city of Centralia, WA at dusk 21:45 pm. +2012-07-18,34.6777778,-76.9511111,Emerald Isle,NC,light,600,There were Seven of us sitting on a 3 story deck overlooking (only one hundred feet away from) the Atlantic Ocean in Emerald Isle, NC. +2012-07-18,33.8730556,-78.6144444,Little River,SC,circle,120,Three orange lights in the sky over Little River, SC in a triangle formation +2012-07-18,33.9163889,-78.1613889,Oak Island,NC,fireball,2,Lit up (orange in color) for a few seconds and then seemed to almost jump a distance in an instant. Light would fade and return several +2012-07-18,40.2969444,-111.6938889,Orem,UT,disk,600,A disk with a changing green or blue glow was circling around, wandering around the sky appearing to check things out. Moved very quick +2012-07-18,33.4330556,-79.1216667,Pawleys Island,SC,light,1800,Bright lights seen off Pawleys Island SC +2012-07-18,33.9791667,-118.0319444,Whittier,CA,triangle,1800,The objects were triangular in shape and moved in a trianglular formation. +2012-07-18,33.6888889,-78.8869444,Myrtle Beach,SC,light,300,There were two red/orange lights in a horizontal line slightly apart from each other not moving, without any noise just there. At firs +2012-07-19,33.6058333,-78.9733333,Surfside Beach,SC,light,1200,There were numerous white flickering lights very bright and flashed very quickly looked like blinking halogen stars. +2013-07-18,44.9583333,-124.0166667,Lincoln City,OR,light,300,Slow moving bright light in the sky. +2013-07-18,39.4352778,-84.2030556,Lebanon,OH,fireball,40,UFO in lebanon ohio +2013-07-18,39.4352778,-84.2030556,Lebanon,OH,other,60,Bright white bell shaped craft bursts into yellow and orange flames immediately dissapearing .... +2013-07-18,41.7636111,-72.6855556,West Hartford,CT,chevron,3600,Bright strobing light that has slight color change and has appeared on three different occasions. In early morning. It seems to have a +2013-07-18,26.1219444,-80.1436111,Fort Lauderdale,FL,unknown,120,Flickering amber light and constant noise. +2013-07-18,43.6122222,-116.3905556,Meridian,ID,oval,40,Very bright white oval shape gliding swiftly against the clear blue sky. +2013-07-18,39.9555556,-86.0138889,Fishers,IN,oval,1800,Weird oval shaped UFO. +2013-07-18,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,900,Series of amber lights appearing over the ocean varying in quantity and disappearing into thin air. +2013-07-18,36.9786111,-76.4283333,Newport News (Fort Eustis),VA,oval,45,oval shaped object with an orange glow +2013-07-18,30.4111111,-88.8277778,Ocean Springs,MS,rectangle,300,Spotted a possible UFO near a baseball field. +2013-07-18,29.7352778,-94.9772222,Baytown,TX,formation,300,21 Orange Orbs over Baytown. +2013-07-18,32.6080556,-80.085,Kiawah Island,SC,formation,120,Small bright pulsing lights and several more smaller less bright pulsing lights moving rapidly. +2013-07-18,33.6888889,-78.8869444,Myrtle Beach,SC,light,2700,We saw strange orange lights. +2013-07-18,33.6058333,-78.9733333,Surfside Beach,SC,changing,3600,Reddish/orange lights that would get brighter and fade out every 30 seconds in a perfect triangle. +2013-07-18,33.6,-117.6711111,Mission Viejo,CA,formation,120,Orange lights in sky over Mission Viejo. +2013-07-18,40.8258333,-74.2094444,Montclair,NJ,other,30,Large bright circular light that got smaller and smaller until it disappeared. +2013-07-18,42.8863889,-78.8786111,Buffalo,NY,unknown,30,I saw a yellow-orange, spherical glowing light in the early evening sky, moving horizontally at first and then changing direction. +2013-07-18,45.5236111,-122.675,Portland,OR,fireball,45,Strange light over Portland. +2013-07-18,34.5033333,-82.6502778,Anderson,SC,circle,600,Orange circle with beam of light floating in sky +2013-07-18,33.6888889,-78.8869444,Myrtle Beach,SC,circle,180,The orange orbs over the ocean. +2013-07-18,33.6888889,-78.8869444,Myrtle Beach,SC,circle,600,Circular red lights above Myrtle Beach. +2013-07-18,33.4936111,-117.1475,Temecula,CA,circle,5,I was walking in my backyard and I looked for the moon. I saw a circle type object with a beam going straight ahead if it. +2013-07-18,42.4691667,-75.9119444,Willet,NY,fireball,240,Horizontal flickering lights that appeared and disappeared in Upstate NY +2013-07-18,42.7341667,-90.4783333,Platteville,WI,unknown,300,Fading light moving along the sky over Grant County, Wisconsin. +2013-07-18,47.6063889,-122.3308333,Seattle,WA,rectangle,5,Rectangular Wing sited over Seattle Washington, on July 18, 2013. +1959-07-19,40.9008333,-80.8569444,Salem,OH,disk,180,1959 Saucers-huge- pattern of four shifting high in Ohio skies-white-yellow perfectly formed-moving very fast +1968-07-19,33.5172222,-82.0758333,Martinez,GA,disk,1500,Summer of 68 around 11pm.The moons glow so bright and the stars filled the night sky.My family and I lived on a farm. With many liv +1975-07-19,47.6588889,-117.425,Spokane,WA,sphere,180,Orange glowing ball (sphere) seen in Spokane sky in the Summer of 1975 +1978-07-19,35.0525,-118.1730556,Mojave,CA,light,300,it came towards us then zig-zagged across the sky then took of in a different direction. +1984-07-19,41.1922222,-73.7977778,Millwood,NY,triangle,300,I was 14 years old and was witness to an extrodinary event. I was with my mother, father, sister, and plenty of neighbors as well. It w +1984-07-19,41.1627778,-73.8619444,Ossining,NY,other,240,DRIVING IN MY CAR I SAW AN UNUSUAL FLYING OBJECT +1985-07-19,47.1127778,-124.1725,Copalis Beach,WA,disk,5400,I was visited by at least five alien men in 1985 +1988-07-19,29.7630556,-95.3630556,Houston,TX,oval,300,I saw 2 objects that snined abluish white light on me . +1991-07-19,36.8527778,-75.9783333,Virginia Beach,VA,triangle,60,dark triangular craft, white lights on corners, red light center underneath followed by a smaller, disk shaped craft, white lights arou +1992-07-19,41.3572222,-88.4211111,Morris,IL,formation,300,Formation of three lights in a vertical triangle hovered with no sound and vanished with no sound. +1996-07-19,40.6861111,-75.4972222,Northampton,PA,disk,900,I stepped outside one evening to smoke a cig. I always look up and watch the stars. It was a very clear night. As a looked around I saw +1998-07-19,37.6419444,-94.6236111,Arcadia,KS,unknown,300,Silent, Possible Saucer shaped object with Single light, followed us aprx 5 miles then simply vanished. +1999-07-19,46.2113889,-119.1361111,Kennewick,WA,fireball,2,in the north east sky - a huge GREEN meteor like event with a brilliant bronze like tail. an sudden instant after seeing the green fire +1999-07-19,37.2752778,-107.8794444,Durango,CO,unknown,300,Hadn't started to get light yet, I was watching the stars, and one blinked on and off several times then started to move laterally very +1999-07-19,36.175,-115.1363889,Las Vegas,NV,oval,600,Two round bright white ufo's were sighted on National airlines jet N7 316 Boeing 757 time 21;30 hrs just outside Las Vegas,Nevada one h +2000-07-19,31.7586111,-106.4863889,El Paso,TX,sphere,7200,Spheres in a triangular formation over the skies of El Paso, TX show their beauty as well as their capabilities and intelligence. +2000-07-19,41.4994444,-81.6955556,Cleveland,OH,circle,180,small whit globe-like objects seen on clear day doing srange things. +2000-07-19,33.9908333,-118.4591667,Venice,CA,cigar,180,A single, silent, white, cigar-shaped craft was sighted in a clear sky, one hour before sunset. +2000-07-19,40.9577778,-88.95,Dana,IL,circle,2,a large silver blue tinted object +2000-07-19,43.6136111,-116.2025,Boise,ID,circle,300,Blue, pulsating, flashing lights....separate crafts. +2001-07-19,36.1988889,-115.1166667,North Las Vegas,NV,cigar,7,cigar shaped object flys u mountain range +2001-07-19,44.4563889,-89.5438889,Plover,WI,light,2400,Bright orange moving lights extremely high in the sky +2001-07-19,43.9561111,-89.8180556,Adams,WI,light,30,Four large bright orange lights in straight horizontal line off of Hyw 13, three miles north to Adams +2001-07-19,37.9447222,-90.7241667,Mineral Point,MO,light,60,MISSOURI INVESTIGATORS GROUP Report: Aa satellite moving SW. When it reached the treeline I noticed another "star" moving N. +2001-07-19,38.9555556,-90.1866667,Godfrey,IL,light,3600,My friend and I saw, two nights in a row, an odd "wobbley" light in the northwest sky behind our home in the country, just over the tre +2002-07-19,34.1866667,-118.4480556,Van Nuys,CA,disk,300,7/19/02 at 11:35 A.M. I saw a flat slivery object with no wings climb the southwesten sky going notrheast. +2002-07-19,26.0027778,-80.2241667,Pembroke Pines,FL,cylinder,1200,In Conclusion, the 3 objects were seen by several people in my neighborhood, only to remain unidentified by local authorities. +2002-07-19,36.1658333,-86.7844444,Nashville,TN,changing,600,Star-like ovoid with revolving object seen before dark, separates, approached by two triangular objects; disappears. +2002-07-19,33.4016667,-86.9544444,Bessemer,AL,disk,60,Encounter of the first kind with video and photographs to back up account. +2002-07-19,37.63,-93.5730556,Fair Play,MO,fireball,600,Small orange fireball crafts flew above Stockten Lake late at night. +2003-07-19,47.4830556,-122.2158333,Renton,WA,unknown,7200,SPEACHLESS NOT KNOWING WHAT THIS IS. +2003-07-19,32.7763889,-79.9311111,Charleston,SC,circle,900,Round object above US 17 Charleston, SC. +2003-07-19,40.7722222,-79.53,Ford City,PA,unknown,15,At 14:15 P.M. over Ford City, PA, 40 miles NE of Pittsburgh, I saw a pale object moving at a rapid pace from the NW to the SE. +2003-07-19,46.2858333,-119.2833333,Richland,WA,other,8,in mid summer there was an ovel shinny object in the clouds over head moving silently & slowly +2003-07-19,41.85,-88.3125,Batavia,IL,circle,1200,SMALL HOVERING OBJECT OVER THE ERSTEN SKY OF CHICAGO +2003-07-19,40.7280556,-74.0780556,Jersey City,NJ,cylinder,300,Strange Upright Cylinder crosses over New York City before disappearing behind the clouds. +2003-07-19,44.0522222,-123.0855556,Eugene,OR,oval,120,Oval object seen racing from west to east over Eugene, Oregon. +2003-07-19,40.7141667,-74.0063889,New York City (Queens),NY,light,900,2 bright lights moving across Queens's sky +2003-07-19,42.9461111,-83.1238889,Dryden,MI,unknown,600,We saw two bright lights and it faded and changed colors as it moved upwards towards the sky. +2003-07-19,40.7241667,-73.7155556,Bellerose,NY,light,300,2 ufos 1 nite +2003-07-19,40.2322222,-76.885,New Cumberland (Fairview Twp.),PA,light,60,a bright light and no sound +2003-07-19,41.5036111,-84.4141667,Stryker,OH,triangle,5,I noticed this triangular, dimmly lit object traveling from East to West, covering abot 90 degrees in about 4-5 sec. No sound +2004-07-19,40.1672222,-105.1013889,Longmont,CO,unknown,15,Quick, high flying noiseless object +2004-07-19,45.8527778,-87.0216667,Gladstone,MI,other,5,glowing bright object with with either fast moving glowing parts around it or a glowing halo. +2004-07-19,48.5394444,-121.745,Concrete,WA,light,60,Bright light moving at constant speed +2004-07-19,32.7947222,-116.9616667,El Cajon,CA,diamond,282,Starting July19񫺔 until now July22 I have seen some objects flying near my home +2004-07-19,34.0625,-118.1219444,Monterey Park,CA,oval,39600,A daylight sighting of a white object was seen by 30 witnesses over a 90 minute period. +2004-07-19,45.5236111,-122.675,Portland,OR,sphere,300,Sphere Cluster Drops Orb Down to Ground +2004-07-19,37.6391667,-120.9958333,Modesto,CA,light,900,Red blinking lights darting and surging high in the night sky +2004-07-19,40.7933333,-77.8602778,State College,PA,circle,5,I saw a very bright, shimmering light which was much, much larger than an airplane traveling from west to east in the clear night sky. +2005-07-19,35.3733333,-119.0177778,Bakersfield,CA,sphere,3,witnessed a white spherical object zip downward across the sky at an 80 degree angle. +2005-07-19,43.4772222,-121.6841667,Gilchrist,OR,other,2,silver comet? south of lapine oregon, headed down and west +2005-07-19,42.1888889,-120.3447222,Lakeview,OR,triangle,3600,Two Huge Triangular objects seen in Central Southern Oregon +2005-07-19,44.1511111,-72.6569444,Northfield,VT,sphere,5,bright white,silvery ball of light, soft ball sized in backyard +2005-07-19,33.1191667,-117.0855556,Escondido,CA,other,30,This was a night sighting of a slow-moving, kite-shaped craft with lights on it, 20-25 miles north of San Diego, CA. +2006-07-19,35.8455556,-86.3902778,Murfreesboro,TN,cylinder,15,Cylinder shaped object hovers near freeway +2006-07-19,32.3666667,-86.3,Montgomery,AL,disk,7200,Massive UFO event in Montgomery, Alabama +2006-07-19,35.0844444,-106.6505556,Albuquerque,NM,cigar,30,white, cigar shaped, silent and seemed to glow +2006-07-19,37.9841667,-120.3811111,Sonora,CA,fireball,2,Large, low object shot across night sky. +2006-07-19,33.5091667,-111.8983333,Scottsdale,AZ,formation,120,a squarish formation of dancing red/amber lights appeared in the distance. The twinkled for a very long time, over 1 hour. Formation wa +2006-07-19,32.2216667,-110.9258333,Tucson,AZ,changing,39,Fast and silent, bright and bewildering +2006-07-19,34.0686111,-118.0266667,El Monte,CA,fireball,1,FIREBALL IN CLEAR SKY +2006-07-19,42.7044444,-73.9119444,Guilderland,NY,triangle,60,Phoenix Lights in New York? +2007-07-19,36.1397222,-120.3591667,Coalinga,CA,triangle,900,Kite-shaped triangle UFO sighting on Interstate 5 in Coalinga, California, on July 19, 2007 +2007-07-19,28.5380556,-81.3794444,Orlando,FL,fireball,3,Fire-Ball/Bolide Observed… +2007-07-19,30.0969444,-95.6158333,Tomball,TX,other,10,Object seen in cloudy sky over Tomball +2007-07-19,46.8172222,-95.845,Detroit Lakes,MN,triangle,30,A black triangular craft with white lights at the vertices flew across the Northern Minnesota sky headead southwest. +2007-07-19,28.6119444,-80.8077778,Titusville,FL,circle,5,I saw a moon-sized white glowing circular light divide into two smaller lights as it travelled like a "shooting star" across the sky. +2007-07-19,42.2141667,-83.15,Wyandotte,MI,fireball,30,At about 6:10 p.m., I was sitting with my mother and 5 year old daughter at the park, and along with us there were two other children +2007-07-19,33.1975,-96.615,Mckinney,TX,oval,4,Bright Oval White Light Moving Super Fast Speeds East of Mckinney Texas +2008-07-19,32.7152778,-117.1563889,San Diego,CA,other,3600,The Objects that looked like the moon or a planet. +2008-07-19,39.8308333,-77.2313889,Gettysburg,PA,rectangle,30,Bright orange object no sound +2008-07-19,34.885555600000004,-112.4675,Paulden,AZ,circle,2160,3 objects flying in all directions at high rate of speed +2008-07-19,42.9927778,-77.8605556,Mumford,NY,cigar,30,My camera picked up a rod-like craft or object. +2008-07-19,35.0844444,-106.6505556,Albuquerque,NM,disk,300,Black round disk over Albuquerque +2008-07-19,33.4669444,-117.6972222,Dana Point,CA,triangle,60,Moved like regular aircraft but no sound and no lights +2008-07-19,32.0833333,-81.1,Savannah,GA,light,300,Orange flashing light over army base shoots into space at impossible speed +2008-07-19,37.0588889,-88.1325,Kuttawa,KY,light,180,bright light in sky lyon cty KY +2008-07-19,35.0455556,-85.3097222,Chattanooga,TN,light,60,Close bright light travelled across a south to north-northeast flight path +2008-07-19,47.9791667,-122.2008333,Everett,WA,circle,480,orange colored glows traveling in a pattern changing to different a different pattern then back again +2009-07-19,41.6861111,-70.0763889,Harwich,MA,triangle,15,Arrow shaped UFO spotted over Cape Cod +2009-07-19,33.6469444,-117.6883333,Lake Forest,CA,unknown,180,This thing was flying away from us, once we noticed it the object flew towards us and changed the color of its lights. +2009-07-19,37.8541667,-90.5180556,Park Hills,MO,light,1200,Flashing light changing colors and moving slowly. ((NUFORC Note: Possible sighting of a twinkling star, we suspect. PD)) +2009-07-19,33.6188889,-117.9280556,Newport Beach,CA,other,3600,UFOs posing as Stars, moving in sky off coast of SoCal. +2009-07-19,39.2775,-74.575,Ocean City,NJ,light,240,star lights moving in mass omitting orange balls. +2009-07-19,38.7805556,-95.5569444,Overbrook,KS,cigar,300,I seen a cigar shaped object that had multiple lights flashing. It appeared to be over the Kansas City area which is east of of where I +2009-07-19,39.1011111,-74.7180556,Avalon,NJ,light,10,Four brightcircular white lights over South Jersey +2009-07-19,33.9175,-116.7863889,Cabazon,CA,formation,10800,This was definately not a star! +2010-07-19,41.5769444,-73.4088889,New Milford,CT,light,37800,Bright white light hovering. ((NUFORC Note: We suspect a star or a planet. No photo. PD)) +2010-07-19,42.4666667,-70.95,Lynn,MA,cigar,15,Cigar shape flying south to north with at dusk with NO LIGHTS +2010-07-19,39.3638889,-76.4525,Nottingham,MD,oval,300,Intense white oval shape seen in cumulus cloud after rain storm. +2010-07-19,36.3047222,-86.62,Hendersonville,TN,cylinder,600,Sunday july 18 2010, 8:45 pm central time my friend pulledmy hair to get me to look to the north. I observered a craft,cylinder or tube +2010-07-19,45.2536111,-92.8055556,Scandia,MN,diamond,900,Twin lighted objects floating at dusk, south east of Scandia, MN +2010-07-19,36.2083333,-115.9830556,Pahrump,NV,light,60,Object appearing as sattelite with amazing speed stops and maneuvers in many ways. +2010-07-19,36.0213889,-80.3822222,Clemmons,NC,disk,60,Object hovered over the area then flew at a high rate of speed +2010-07-19,36.0958333,-79.2672222,Mebane,NC,fireball,60,A orange glowing object changed direction in the sky without making a sound, then went into "hyper speed". +2010-07-19,42.7197222,-96.2483333,Merrill,IA,diamond,120,Red/Bluish colored lights over Merrill Rural Areas. +2010-07-19,39.2616667,-121.015,Nevada City,CA,unknown,180,My girlfriend and I witnessed a well lit craft that was completely silent, but appeared to be flying at speeds upward of 5 hundred MPH +2010-07-19,47.6816667,-122.2075,Kirkland,WA,circle,4,bright white circle moving very fast north to south +2010-07-19,37.585,-79.0516667,Amherst,VA,unknown,180,Ufo seen by mother and daughter on farm road in Amherst County, Va. For the 4th time this year!! +2011-07-19,36.6777778,-121.6544444,Salinas,CA,light,25,Green UFO hovering over houses and rapidly speeding off towards the ground. +2011-07-19,42.6827778,-89.0186111,Janesville,WI,unknown,1800,Possible viewing of star-field cloaking in use. +2011-07-19,38.6780556,-121.175,Folsom,CA,unknown,180,Four white objects in formation over Folsom, CA +2011-07-19,37.9358333,-122.3466667,Richmond,CA,other,3600,Line across sky like a jet plane plume, but much thinner and precise. Cigar shaped object in the middle of it. +2011-07-19,38.6272222,-90.1977778,St. Louis,MO,fireball,600,Group of Orange Fireballs sighted in South City Saint Louis. +2011-07-19,44.0880556,-75.8075,Evans Mills,NY,unknown,300,Tight groups of range horizontal lights in the sky. +2011-07-19,41.7002778,-73.9213889,Poughkeepsie,NY,fireball,300,Fireball hovering in the night sky +2011-07-19,29.9911111,-93.9583333,Port Neches,TX,unknown,120,Orange light over Port Neches, Texas +2011-07-19,35.9986111,-96.1138889,Sapulpa,OK,fireball,180,Three UFO's Witnessed by four people. +2011-07-19,40.6866667,-73.3738889,Lindenhurst,NY,light,120,Red pulsating light over bay south of Lindenhurst traveled from south to north.... +2012-07-19,41.2619444,-95.8608333,Council Bluffs,IA,triangle,180,Triangle Ufo, with 3 lights on edges and 2 in center over council bluffs. Near the community college. +2012-07-19,38.1494444,-79.0719444,Staunton,VA,unknown,300,Me and a friend observed very bright light on horizon for 10 mins and it disappeared before our eyes! +2012-07-19,29.9544444,-90.075,New Orleans,LA,triangle,30,Large Triangle UFO Over French Quarter New Orleans Hovers, Then Vanishes Into Sky With Picture +2012-07-19,45.9933333,-123.9213889,Seaside,OR,sphere,120,5 women observed an orange sphere rising in altitude and moving NE with emanating light lasting 2 to 3 minutes. +2012-07-19,34.0922222,-117.4341667,Fontana,CA,teardrop,600,Small metalic teardrop shape object that made a parallel front-back movement. +2012-07-19,38.9430556,-84.5441667,Independence,KY,rectangle,120,The triangle shape was like a billboard very high in the sky. +2012-07-19,19.7297222,-155.09,Hilo,HI,light,300,Green and red lights flying about 300ft off the ground with out sound. +2012-07-19,35.235,-75.6288889,Frisco,NC,circle,4,Four of us saw a huge illuminated object in the sky that has no logical explanation. +2012-07-19,45.5236111,-122.675,Portland,OR,circle,240,Siting help +2012-07-19,43.7466667,-122.4605556,Oakridge,OR,circle,300,Flying orange glowing sphere seen by 3 adults +2012-07-19,38.8966667,-121.0758333,Auburn,CA,light,60,Unusual lights over Auburn, Ca. +2012-07-19,34.6777778,-76.9511111,Emerald Isle,NC,sphere,20,Multiple red lights in disc shape over ocean. +2012-07-19,33.4330556,-79.1216667,Pawleys Island,SC,light,1800,Lights off coast at Pawleys Island, SC +2012-07-19,44.7708333,-73.4925,Beekmantown,NY,light,420,White round light, faded from bright to not visible, stopped changed flight path at high altitude this witnessed by two people +2012-07-19,33.6888889,-78.8869444,Myrtle Beach,SC,flash,900,Myrtle Beach, SC --- I saw approx 5 to 7 orange lights east over the ocean while walking on the beach around 21st Ave. The objects were +2012-07-19,34.1741667,-97.1433333,Ardmore,OK,fireball,60,Orange/Yellow flying ball +2012-07-19,38.3363889,-75.0852778,Ocean City,MD,light,1200,A ball or flashing light appeared and dissapeared multiple times in the sky over a time period of twenty minutes. +2012-07-19,34.0522222,-118.2427778,West Los Angeles,CA,light,60,Green, flashing light moving quickly past my window. +2013-07-19,41.2844444,-84.3558333,Defiance,OH,triangle,5,I saw a triangle red green and blue ((deleted word)). +2013-07-19,47.9447222,-122.3033333,Mukilteo,WA,disk,2,An adult female, a former aircraft spotter, witnessed a silver disc in the daytime sky. +2013-07-19,38.9258333,-79.8469444,Elkins,WV,egg,5,Dark gray &quot;egg&quot; spotted hovering in daytime sky, disappears suddenly +2013-07-19,38.7522222,-121.2869444,Roseville,CA,triangle,40,Triangular bright lights, moved in a very quick oval across the sky +2013-07-19,38.7041667,-77.2280556,Lorton,VA,formation,180,A cluster formation of red blinking lights, moving in various directions, until they blinked out was seen in the eastern sky. +2013-07-19,33.4483333,-112.0733333,Phoenix,AZ,cylinder,600,Two identical objects sighted over Phoenix Arizona. +2013-07-19,26.4516667,-81.9483333,Fort Myers Beach,FL,light,360,Orange floating light. No engine sound, above Fort Myers shoreline. +2013-07-19,38.7291667,-89.8830556,Troy,IL,fireball,60,Orange ball of light. +2013-07-19,39.8438889,-84.1247222,Huber Heights (Bethel Township),OH,sphere,60,Orange spheres in a triangular pattern. +2013-07-19,42.2708333,-83.7263889,Ann Arbor,MI,light,600,Weird orange lights over Ann Arbor. +2013-07-19,47.6063889,-122.3308333,Seattle,WA,light,180,At 11:00 pm I was with a group at an outdoor cinema on Capitol Hill. I noticed three reddish orange orbs of light moving south from ov +1950-07-20,40.8358333,-78.8766667,Smithport,PA,disk,120,This huge craft came over the hill from Crosbe to rute 1 for about two min. It was orang then it shot away an no sound. IN 1962 at n +1958-07-20,41.5875,-109.2022222,Rock Springs,WY,disk,60,Friend & I retuned home from movie. We lived on a hill that over looked the desert. I looked out to the s.w. and saw this object and i +1962-07-20,36.7902778,-85.3705556,Burkesville,KY,disk,120,Disk, flying very low, over small town in Kentucky in 1962; close enough to see details. +1962-07-20,36.1866667,-94.1286111,Springdale,AR,light,1200,Sighting #1: I am guessing at the date,It's been almost 40 years ago! Some friends and myself were at a small little country church wh +1963-07-20,34.2575,-88.7033333,Tupelo,MS,disk,3600,12 year old Girl and family sees Disc over high-power lines +1965-07-20,37.0477778,-80.78,Pulaski,VA,fireball,5,Could'nt believe it ! +1965-07-20,40.2736111,-76.8847222,Harrisburg,PA,oval,10,I'm not sure of the exact date. +1965-07-20,33.7455556,-117.8669444,Santa Ana,CA,circle,300,While driving through the intersection of 17'th St. & Prospect Ave., in the Santa Ana/No. Tustin area just before dusk on a Summer even +1965-07-20,45.5236111,-122.675,Portland,OR,disk,1200,A football sized glowing orange saucer shaped object , hovering completely still over head, disappears into the horizon in a flash. +1967-07-20,26.7052778,-80.0366667,West Palm Beach,FL,fireball,90,Object came from southwest horizon heading northeast. Brightly colored as if burning. +1968-07-20,41.6005556,-93.6088889,Des Moines,IA,circle,1200,a strange but non frigtening evet +1968-07-20,41.52,-81.5563889,Cleveland Heights,OH,oval,60,UFO object seen over Cleveland Heights Ohio during the sixties. +1968-07-20,44.8969444,-98.7280556,Zell (Farm Outside Of),SD,disk,120,small disk shaped object, weaving in between high voltage lines, 20 to 30 feet over my head, broad daylight, dull gray in color and emi +1968-07-20,37.3394444,-121.8938889,San Jose,CA,circle,7200,Disk, hovered over shoping center. 500 Lights On Object0: Yes +1970-07-20,26.9616667,-82.3527778,Englewood,FL,sphere,60,A white ball was moving across the sky. It has a tail like a comet. T he sun was just below the horison. Then the light stopped. It hu +1970-07-20,46.6486111,-97.0166667,Kindred,ND,oval,900,When I was six, my mom and I witnessed a large glowing orb that flew alongside our car. +1970-07-20,40.7258333,-73.5147222,Levittown,NY,disk,180,1970 - Saucer shaped object with lights hovering over house in NY. +1971-07-20,46.1469444,-122.9072222,Kelso,WA,triangle,720,AT 4:AM SAW VERY LARGE BLACK TRIANGLE 150 FEET ABOVE ME LOW SOUND MOVING VERY SLOW !! +1971-07-20,41.7758333,-72.5219444,Manchester,CT,light,300,Bue lights in Manchester Ct. Sky 1971 +1971-07-20,39.5811111,-87.4622222,New Goshen,IN,diamond,120,stars moving in the night sky +1972-07-20,41.2411111,-77.0013889,Williamsport,PA,fireball,60,fireball, ( meteor ? ) +1973-07-20,39.4561111,-77.9641667,Martinsburg,WV,disk,600,floating disc, numerous quick course changes, shortly afterwards aircraft seeming to "grid" search area. +1973-07-20,38.6269444,-88.9455556,Salem,IL,circle,300,Object with string of red lights hovers over strip mall then moves over interstate highway before shooting into the sky. +1974-07-20,30.3077778,-104.0186111,Marfa,TX,oval,180,In 1974 I lived in El Paso, I was unemployed, I heard about a tire recaping company I desided pay them a visit, and I ask the manager i +1974-07-20,29.6991667,-91.2066667,Morgan City,LA,triangle,600,THE CRAFT WAS DARK GRAY OR BLACK IN COLOR AND TRIANGLE IN SHAPE,IF MEMORY SERVES IT HAD A LIGHT ON EACH CORNER AND MADE NO SOUNDS.I +1974-07-20,42.5194444,-70.8972222,Salem,MA,cigar,300,This story is very familar with an experance me and about 8 of my friends saw about 30 years ago on Boston Street Salem Mass.We sti +1974-07-20,40.5575,-74.285,Woodbridge,NJ,disk,20,Disk Quietly Hovered and Subsequently Spun Vertically on its Axis +1975-07-20,43.2463889,-78.1938889,Albion,NY,light,3600,A bright blue-white light that hovered for almost an hour then quickly zoomed away. +1975-07-20,42.0177778,-71.5416667,Blackstone,MA,disk,900,On a clear sunny day we observed a round black-appearing stationary disk near a cloud overhead for five minutes when it accelerated +1975-07-20,34.2575,-88.7033333,Tupelo,MS,cigar,12,Tupelo man observes cigar-shaped craft +1976-07-20,45.0061111,-93.1563889,Roseville,MN,rectangle,15,Saw something extraordinary +1976-07-20,34.1841667,-118.9097222,Newbury Park,CA,unknown,1200,I saw what appeared to be the lights of a plane that seemed to be going to crash nearby which then became a swirling mass of light and +1977-07-20,37.2705556,-76.7077778,Williamsburg,VA,cigar,180,My radio went dead just as my neighbors saw something unusual in the sky. +1977-07-20,43.0388889,-87.9063889,Milwaukee,WI,formation,300,Awesome Light Display with Following +1978-07-20,40.7141667,-74.0063889,New York City (Brooklyn),NY,triangle,180,Retired Police Officer:Triangle shape, with 6 glowing red lights, seperated and shot across the sky (left to right) then came together. +1978-07-20,42.3683333,-83.3527778,Livonia,MI,formation,10,Formation of Green Lights (high up) over Livonia, MI. USA +1978-07-20,38.4130556,-120.6577778,Pine Grove,CA,formation,300,3 unknown objects overflew our house just after dark. They were in formation. +1978-07-20,46.1327778,-123.3736111,Westport,OR,unknown,10,Two Stars flying parallel to one another at undescribeable speed, then stopping on a dime momentarily to only part in differant directi +1980-07-20,41.4994444,-81.6955556,Cleveland,OH,oval,240,Oval aircraft with red and yellow lights +1982-07-20,42.5958333,-72.2272222,Athol,MA,triangle,600,What i seen was a large dark colored v shaped craft,with 5 sets of lights on it's under side. +1984-07-20,41.6611111,-91.53,Iowa City,IA,circle,180,A slow moving white glowing object moved south to north across the night sky and seemed to be move almost directly overhead of us. It +1985-07-20,37.5972222,-90.6272222,Ironton,MO,light,3600,unblinking bright white light (star looking) moving at incredible speed changing direction instantly +1986-07-20,32.2216667,-110.9258333,Tucson,AZ,light,900,Lights and beems over AZ desert +1986-07-20,29.8830556,-97.9411111,San Marcos,TX,rectangle,600,Was looking at all kinds of sites that came up on the Yahoo web site. It talked about how people are looking at UFO sites. It reminde +1986-07-20,41.3080556,-72.9286111,New Haven,CT,triangle,600,"Black Triangle" spotted in CT back in mid-eighties +1987-07-20,45.6238889,-70.255,Jackman,ME,sphere,3600,Circular brilliant object, missing time +1987-07-20,40.4991667,-74.3994444,Piscataway,NJ,other,60,alledged UFO sighting unreported from over 20 years ago, if story is true it could not be a man made aircraft nor a natural phenomenon +1987-07-20,38.5322222,-93.5219444,Windsor,MO,cigar,3600,April 16th, 2003 After the first few years of being on the receiving end of skeptical facial expressions as well as accusations of “ma +1988-07-20,38.8461111,-77.3066667,Fairfax,VA,disk,240,Circular object one red, one orange, one white light +1989-07-20,35.9572222,-75.6244444,Nags Head,NC,changing,600,Low flying, lights, shooting lights. +1990-07-20,38.3363889,-75.0852778,Ocean City,MD,other,1800,I posted on 8/7/07 a sighting that had occurred on 4/11/1977, I had also wanted to post another sighting that had occurred the summer o +1990-07-20,32.9952778,-94.9655556,Pittsburg,TX,light,300,hovering flashing lights, spotlight shining on my house +1991-07-20,38.7827778,-84.6052778,Crittenden,KY,triangle,30,silent triangular shaped craft hovers over me on ky I-75 in summer of 91 +1991-07-20,43.4152778,-84.0563889,Shields,MI,light,5,2 incidents, 5 min. apart(approx.) bright light hovering, about 300 ft. above, then fastest 90° turn/and speed we ever saw . +1993-07-20,47.8052778,-122.1119444,Maltby (Snohomish, Woodinville),WA,diamond,60,Diamond shaped craft, red and green lights on each end of the diamond. +1993-07-20,21.3069444,-157.8583333,Honolulu,HI,unknown,2,Trail of light emerging from ocean and looping back into the water. Object must have been very large, since sighting was from about a +1995-07-20,36.2038889,-88.4197222,Henry,TN,light,3600,It looked like a star at first, then it started moving in circles, going straight up then back down again,and then going in circles aga +1995-07-20,33.7488889,-84.3880556,Atlanta,GA,circle,4,Object descends then ascends at breakneck speed, recorded from an aircraft. +1995-07-20,46.8266667,-100.8891667,Mandan (South Of),ND,other,90,Arrow-shaped balls of light. +1995-07-20,42.4152778,-71.1569444,Arlington,MA,formation,300,3 stars circle, join and fly away +1996-07-20,33.0780556,-96.495,Clear Lake,TX,teardrop,300,It shorted out the lights as it flew over , without making a sound! +1997-07-20,35.2783333,-93.1336111,Russellville,AR,light,3600,First I saw small white lights from a distance, then a big creamy colored light up close. +1997-07-20,37.3041667,-77.2875,Hopewell,VA,disk,180,I've seen a Saucer and it moved w/ light speed +1997-07-20,40.9377778,-72.3013889,Bridgehampton,NY,triangle,300,Triangle craft flew right over me at 30mph - No Sound +1997-07-20,42.8863889,-78.8786111,Buffalo,NY,changing,7200,AT WORK, CALLED TO ROOF. 5th. FLOOR..BYE TWO OTHER EMPLOYEES TO WATH THIS EVENT IN THE SOUTHERN SKY ?? +1997-07-20,33.8358333,-79.0480556,Conway,SC,diamond,7200,The event took place near Conway, SC on 7/20/97. I saw an object that resembled a plane but it wasn't because it hovering about 2 to 3 +1998-07-20,41.2230556,-111.9730556,Ogden (Northeast Of),UT,disk,900,Past Ogden exit, hw-82 going east. Saw Ufo above trees on our right about 3ꯠ yards away. +1998-07-20,41.6005556,-93.6088889,Des Moines,IA,other,420,It made no sound, but you could see the rear was lit up like a jet and it was as if it was looking for something. +1998-07-20,42.2222222,-83.3966667,Romulus (Metro Airport),MI,formation,2700,I have film of 5 ufo's and some one else filmed this too. +1998-07-20,46.9825,-95.9094444,Callaway,MN,fireball,600,Red Large Fireball flying up from earth +1998-07-20,40.8008333,-94.4755556,Clearfield,IA,sphere,15,Disappered at a 90 degree angle +1998-07-20,26.0027778,-80.2241667,Pembroke Pines,FL,triangle,120,the triangle shaped craft had 5 bright white strobe lights. +1998-07-20,42.3086111,-83.4822222,Canton,MI,fireball,120,While at work I was looking in the sky when I seen a Blueish/Green ball in the sky.It had a blueish/Green tail to it,the direction was +1998-07-20,33.7091667,-117.1963889,Sun City,CA,formation,60,2 lights following each other really high in the sky, and really fast. +1999-07-20,33.6888889,-78.8869444,Myrtle Beach,SC,triangle,60,i saw three objects that where moving at very high speeds +1999-07-20,44.98,-93.2636111,Minneapolis,MN,disk,120,investigated light. saw object moving toward me. circular not a helicopter. Saw two occupants through "windshield". Looked human, on +1999-07-20,27.9091667,-82.7875,Largo,FL,light,600,Boy gets friend to believe in UFOs with big ball of light. +2000-07-20,41.3977778,-79.8316667,Franklin,PA,disk,900,third time in two weeks +2000-07-20,44.3508333,-72.3544444,Marshfield,VT,light,360,See the Barre-Montpelier Times Argus daily newspaper of 7/21/00 "Talk of the Town" column. Several people called in the report. A rel +2000-07-20,26.1033333,-97.1644444,South Padre Island,TX,oval,8,Bright amber light, very high speed, no sound or trail, east to west over Padre Island, summer 2000. +2000-07-20,32.2686111,-107.7580556,Deming,NM,unknown,60,Huge beam of light comes from sky, no craft of any kind visible that could produce it. +2000-07-20,41.4569444,-72.8236111,Wallingford,CT,light,600,within a ten minute segment 3 seperate ojects appeared. they were bluish white single lights.they flew in opposite directions. one went +2000-07-20,41.7519444,-87.9738889,Darien,IL,light,30,bright light in my window, stops, flies in oppisite direction. +2000-07-20,39.5538889,-104.9688889,Highlands Ranch,CO,light,600,We saw a strange red light in the sky south of Denver. +2000-07-20,41.6061111,-73.1186111,Watertown,CT,triangle,120,My two brothers and I witnessed two distinct, dark yellow lit, triangular objects stay still and then suddenly move to the left. +2000-07-20,42.5422222,-76.6663889,Trumansburg,NY,light,300,moving light disappears in starry sky +2001-07-20,41.7122222,-72.6086111,Glastonbury,CT,teardrop,120,Saw large tear drop like craft hovering after 2 min vanished. +2001-07-20,42.3608333,-85.8794444,Gobles,MI,light,60,Bright white light hovers over camp fire then takes off at high speed +2001-07-20,39.515,-84.3983333,Middletown,OH,light,15,A fading light in the night sky..... +2001-07-20,21.4447222,-158.19,Waianae,HI,sphere,15,this was in broad daylight. in a populated area. +2001-07-20,41.7858333,-88.1472222,Naperville,IL,oval,900,White oval shaped object over Edwards Hospital in Naperville IL +2001-07-20,39.5347222,-107.7825,Rifle,CO,fireball,2,Green Fire Ball +2001-07-20,34.1063889,-117.5922222,Rancho Cucamonga,CA,light,180,We would like to know what this may have been: We saw a bright light (brighter than the planet Mars) and it was moving Northeast. We +2001-07-20,41.7122222,-72.6086111,Glastonbury,CT,teardrop,300,Strange teardrop shapped object appeared in the sky above us! +2001-07-20,46.6022222,-120.5047222,Yakima,WA,chevron,5,Three delta shaped objects flying in a "v" formation passed over Yakima, Wash. at22:10 on 07/20/01 +2001-07-20,39.6619444,-74.1655556,Surf City (Long Beach Island),NJ,triangle,180,Two shimmering copper-colored craft with no noise were seen flying from north to south +2001-07-20,29.8830556,-97.9411111,San Marcos,TX,cylinder,180,It was a cylinder that had 3 bright spotlights and moved too slowly and quietly to be a helicopter! +2001-07-20,39.7875,-75.6969444,Hockessin,DE,formation,1200,Shifting formation of amber lights +2001-07-20,30.2669444,-97.7427778,Austin,TX,circle,180,low-flying, helicopter-sounding, aircraft or circle shaped (from underneath), and had few lights + bright spotlight +2002-07-20,34.035,-77.8938889,Carolina Beach,NC,formation,600,formation of red flashing lights in sync about a half mile long +2002-07-20,33.8352778,-117.9136111,Anaheim,CA,teardrop,480,One object , bell shapes, was observed at approximately 2130 to 2138 It came from the south and at changing speeds moved across the sky +2002-07-20,30.2327778,-95.1608333,Splendora,TX,oval,6,IT COMPLETELY COVERED OUR WINDSHIELD AND IN IT THERE WERE APPROXIMATELY 30-50 BRIGHT LIGHTS, EVENLY SPACED, SHINING BRIGHTLY. WHEN IT +2002-07-20,40.7722222,-79.53,Ford City,PA,unknown,60,Three steady, red lights were observed at tree-top level in SW sky on an object which emitted NO SOUND. +2002-07-20,37.3394444,-121.8938889,San Jose,CA,other,60,Amber wedge shaped object with a companion object. +2002-07-20,42.4413889,-84.9241667,Olivet,MI,unknown,600,A bright light that first hovered then ascended up and north... +2002-07-20,43.045,-75.8669444,Chittenango,NY,unknown,20,Single bright white light observed in eastern sky of northern hemisphere moving from south to north approx. 40-45 degrees off horizon. +2002-07-20,41.4838889,-74.2180556,Maybrook,NY,fireball,5,I have seen the same fireball object as recently reported by someone else. +2002-07-20,38.3013889,-120.2761111,Dorrington,CA,light,15,Golf ball sized object shoots across sky. +2002-07-20,32.9536111,-96.89,Carrollton,TX,teardrop,3,Black teardrop shaped object seen passing across the moon leaving shadow on moons suface. +2002-07-21,42.4566667,-83.9463889,Pinckney,MI,unknown,10,Two bright lights above us. they were there then gone. no view of it coming or leaving. just 2 lights. +2003-07-20,40.4008333,-82.8108333,Marengo,OH,triangle,300,UFO Hoovered over home +2003-07-20,29.7855556,-95.8241667,Katy,TX,sphere,30,Green glowing floating sphere the size of a basketball witnessed by a man swimming in the middle of the night +2003-07-20,45.52,-123.1094444,Forest Grove,OR,light,30,Bright light moving erratically, then moving to one spot to disappear. Forest Grove, Oregon, July 20, 2003 +2003-07-20,38.2555556,-120.35,Arnold,CA,light,1200,Star-like object obeserved 3 different times travelling in different direction and pattern each time. +2003-07-20,41.7694444,-111.8038889,North Logan,UT,disk,2,Looking for something? +2003-07-20,39.535,-119.7516667,Sparks,NV,light,180,I thought maybe it could be military since the fallon air base was that direction but very odd behavior. +2004-07-20,47.3225,-122.3113889,Federal Way,WA,unknown,30,Zig-zagging star(?) over Seattle. +2004-07-20,37.3477778,-120.6080556,Atwater,CA,triangle,420,I was visiting my parents and had just arrived at their home around 12:30am from the Los Angeles area. My folks were asleep and I put m +2004-07-20,42.32,-89.0580556,Loves Park,IL,circle,20,circle object glided across sky with no sound +2004-07-20,44.3836111,-89.8172222,Wisconsin Rapids,WI,sphere,900,I'M REPORTING THIS BECAUSE ON ART BELL'S SATURDAY, JULY 31 SHOW, SEVERAL CALLERS IN OTHER AREAS REPORTED SEEING AN OBJECT SIMILAR TO WH +2004-07-20,34.0522222,-118.2427778,Los Angeles,CA,unknown,180,Bright object appeared of the west horizon made its ascend into the sky then dimmed away. +2004-07-20,40.0336111,-76.5047222,Columbia,PA,unknown,120,7/20/2004 3:00 AM Columbia, PA 1-2 minutes duration, white, flickering, darting lights at tremendous speed. +2004-07-20,32.9477778,-112.7161111,Gila Bend,AZ,other,7200,remembering a sighting from 2004 .. Gila Bend Az +2004-07-20,34.5988889,-117.3333333,Oro Grande,CA,circle,15,highway 66 +2004-07-20,44.3125,-89.9041667,Nekoosa,WI,circle,300,A very close big bright star that hung at 45 degree angle in the sky +2004-07-20,47.6816667,-122.2075,Kirkland,WA,sphere,300,Second day we watched this sphere, no additional objects with it as there were the day before. +2004-07-20,33.4933333,-112.3572222,Litchfield Park,AZ,cross,60,A cross shaped object illuminated with lights so low it as if you could reach out and touch it +2004-07-20,37.3488889,-108.5852778,Cortez,CO,circle,1200,Two objects appearing as plantets in photos from the moon etc., appear in place of a white cloud in the north west sky, well after suns +2004-07-20,33.5091667,-111.8983333,Scottsdale,AZ,sphere,120,Witnessed round orange orb in sky that remained stationary for 2 minutes. +2004-07-20,33.4483333,-112.0733333,West Phoenix,AZ,light,9000,Brights lights southwest of Phoenix near Palo Verde Nuclear Power plant +2004-07-21,46.4794444,-116.2541667,Orofino,ID,light,7200,i dont spell or typ all that good if you whant to have some one call me thats ok i dont want to have my name get out saw some werd stuf +2005-07-20,40.0336111,-76.5047222,Columbia,PA,rectangle,20,7/20/05 4 AM Columbia, PA 20 seconds or less, large rectangle of white light with vapor trail +2005-07-20,41.5094444,-90.5786111,Rock Island,IL,light,5,The object appeared out of nowhere, flew in a straight line, got real bright, and faded away four nights in a row. +2005-07-20,42.9813889,-70.9483333,Exeter,NH,cigar,600,Gigantic Cigar +2005-07-20,32.8997222,-94.5561111,Avinger (Lake O' The Pines),TX,cylinder,20,I saw a white cylindrical object—the same I saw and reported on 6/23/05—and got two photos of it. +2005-07-20,43.4891667,-71.5827778,Sanbornton,NH,oval,1800,craft emits another craft +2005-07-20,33.6888889,-78.8869444,Myrtle Beach,SC,changing,20,Two groups of irregular stobe lights moving east to west at a high rate of speed +2006-07-20,43.6705556,-121.5025,La Pine,OR,circle,20,me and several people seen brite round objects VERY high in the night sky heading north west at a speed i thought impossible there was +2006-07-20,43.4763889,-83.9205556,Zilwaukee,MI,triangle,120,Triangle shaped lights stun passer-by's on Zilwaukee Bridge. +2006-07-20,33.8886111,-117.8122222,Yorba Linda,CA,sphere,15,I was standing on my driveway when I saw a sliver spherical object hover above my neighborhood high in the sky. +2006-07-20,47.5675,-122.6313889,Bremerton,WA,circle,1500,stationary goldish round object with blue ,red,green and white lights ᅎ degrees above horizon in western sky +2006-07-20,36.6436111,-93.2183333,Branson,MO,unknown,10800,UFO table rock lake, White lights. +2006-07-20,42.0294444,-85.0013889,Girard,MI,oval,2400,bright light,white haze clouds +2006-07-20,43.4666667,-112.0333333,Idaho Falls,ID,sphere,1200,Sphere in Sky +2006-07-20,33.6188889,-117.9280556,Newport Beach,CA,circle,360,a whiteish pink object shaped as a circle about 40귔 feet in the air that had a haze around it +2006-07-20,45.0791667,-93.1469444,Shoreview,MN,cigar,60,Early morning glowing object +2006-07-20,47.6588889,-117.425,Spokane,WA,oval,15,Reflective silver craft viewed in Spokane Washington +2006-07-20,45.4463889,-122.6380556,Milwaukie,OR,light,5,Bright round object seen in the sky and then disappeard as if it were leaving the atmosphere. It seemed VERY SHINEY!!!!!!!!!!!!!!!!!!!! +2006-07-20,45.5236111,-122.675,Portland,OR,diamond,900,Daylight sighting: silent, black diamond flies over Portland, Or +2006-07-20,47.3811111,-122.2336111,Kent,WA,triangle,15,Kent,wa. duration-15sec. flying from east to west, Triangular, lights on the three tips, red light on the bottom, huge +2006-07-21,35.0844444,-106.6505556,Albuquerque,NM,disk,276,Hoovering Probe!.. +2007-07-20,25.7738889,-80.1938889,Miami,FL,disk,5,Green object in the sky 3 mi off Miami Beach, Fl. +2007-07-20,36.8188889,-76.2752778,Chesapeake,VA,changing,2700,Multiple objects visible at miles over Chesapeake VA Near Cornland park +2007-07-20,39.1011111,-74.7180556,Avalon,NJ,circle,2700,((Hoax??)) Alleged sighting of strange object on beach. +2007-07-20,43.1661111,-83.5244444,Otisville,MI,triangle,600,Low flying object +2007-07-20,40.3275,-80.5961111,Follansbee,WV,triangle,300,Black triangle shape with 2 bright white lights and 4 deep red lights. Back curved inward. no markings no sound. hovered above treeline +2007-07-20,33.1958333,-117.3786111,Oceanside,CA,fireball,9,sighting,experiences,dreams,my story +2007-07-20,40.7141667,-74.0063889,New York City (Queens),NY,disk,45,Shinny sliver and black saucer shape moving very fast in bright blue sky - +2007-07-20,41.29,-73.9208333,Peekskill,NY,light,1200,Brilliant bright light in the twilight sky +2007-07-20,26.1219444,-80.1436111,Ft. Lauderdale,FL,triangle,900,Stationary triangle shaped light seen over Ft. Lauderdale beach area. Seen east (away from the sea). Estimated altitude 3ꯠ feet. +2007-07-20,39.1638889,-119.7663889,Carson City,NV,cigar,120,UFO Military Aircraft +2007-07-20,39.4230556,-85.0127778,Brookville,IN,light,180,Don't know what it was, possibly flares........... +2007-07-20,41.5894444,-88.0577778,Lockport,IL,oval,240,Enormous, large shaped disc craft with bright yellow lights in center/slow moving but also quick moving. +2007-07-20,43.4080556,-85.0386111,Edmore,MI,fireball,300,Orange light/fireball low to ground then moving. +2007-07-20,35.3111111,-120.8313889,Los Osos,CA,diamond,900,Low stationary extremely bright light, similar to Venus in one place for 10 to 15 mins, snapped off lights and lifted off and left +2008-07-20,45.4872222,-122.8025,Beaverton,OR,unknown,2700,report edit please +2008-07-20,30.5880556,-103.8941667,Fort Davis,TX,light,1200,2:20 am July 20-08 Fort Davis, Texas, Davis Mountains Resort lights moving in l shape red blue green. n.west sky. +2008-07-20,45.4872222,-122.8025,Beaverton,OR,unknown,2700,low flying objects over beaverton OR. +2008-07-20,37.5483333,-121.9875,Fremont,CA,cylinder,20,A black cylinder floated in the sky. +2008-07-20,42.2708333,-83.7263889,Ann Arbor,MI,triangle,300,Two black triangular craft seen hovering over Ann Arbor airport. +2008-07-20,45.0941667,-93.3561111,Brooklyn Park,MN,sphere,5,Lime green orb of light seen descending in Brooklyn Park, MN by multiple parties +2008-07-20,42.8863889,-78.8786111,Buffalo,NY,light,45,Bright light moving towards plane getting bigger and brighter, dissapears before contact +2008-07-20,43.6155556,-84.2472222,Midland,MI,triangle,10,Pilot witnesses very large, silent, dark grey, triangular craft with glowing lights at each point +2008-07-20,42.5377778,-83.2330556,West Bloomfield,MI,sphere,120,Orange Glowing Light In The Sky +2008-07-20,43.4675,-85.9419444,Fremont,MI,fireball,120,Red glowing flame that climbed up. +2009-07-20,44.9802778,-85.2111111,Bellaire,MI,disk,60,Glowing disc +2009-07-20,42.0255556,-88.1783333,Streamwood,IL,light,60,Thunder like noise and small light +2009-07-20,45.6797222,-111.0377778,Bozeman,MT,light,60,Big light seen moving toward me from high up suddenly reverses itself as it notices that I am looking at it. +2009-07-20,32.6097222,-85.4808333,Auburn,AL,light,60,Two bright, non-moving lights in the sky, brighter than the stars. +2009-07-20,25.8647222,-80.3247222,Hialeah Gardens,FL,disk,180,Saucer shaped object in the suburbs +2009-07-20,38.545,-121.7394444,Davis,CA,other,4,Bright pin-point of white light that moved, faded, and disappeared. +2009-07-20,40.7258333,-73.5147222,Levittown,NY,oval,3600,Bright U shaped craft was low to the ground, many planes appeared in the area prior to the sighting. +2009-07-20,36.175,-115.1363889,Las Vegas,NV,light,7200,fuzzy cloud like images. ((NUFORC Note: Probably advertising lights. PD)) +2009-07-20,39.2775,-74.575,Ocean City,NJ,light,7200,Blinking and bright orange lights out at sea, east of Ocean City. +2009-07-20,44.0522222,-123.0855556,Eugene,OR,light,300,Something is going on in Eugene, Oregon. Many sighting from many people across many months. +2009-07-20,47.3294444,-122.5788889,Gig Harbor,WA,light,60,Guy outside yells "Come look at this" I go outside. Silent flying light, altitude higher than small local planes, flying east to west. +2009-07-20,42.1513889,-87.9597222,Buffalo Grove,IL,light,180,While sitting outside with a friend, looking out west into the distance I saw an orange light moving southeast towards us. This little +2009-07-20,27.9655556,-82.8002778,Clearwater,FL,triangle,45,CRAZY UFO SIGHTINGS +2009-07-20,43.6136111,-116.2025,Boise,ID,light,10,Very bright object aprox 1000ft agl, steady west to east course, suddenly dims to complete dark. Similar to shooting star fadeout, yet +2009-07-20,40.6027778,-86.8672222,Brookston,IN,light,20,As I was taking the trash out, I happened to look up to see the stars since Brookston is small and the light pollution is low. I saw a +2010-07-20,42.6525,-73.7566667,Albany,NY,other,2,Brilliant streak of white lite that ended in an extremly bright flash near Albany International Airport. +2010-07-20,46.2858333,-119.2833333,Richland,WA,changing,60,From one red line to three red balls (like red stars), to the balls to (v)(^(<), blinking red lights making a triangle. +2010-07-20,42.5322222,-73.7988889,Selkirk,NY,unknown,60,I had emailed u about the strange sighting that i had witnessed… ((NUFORC Note: Celestial body…star or planet?? PD)) +2010-07-20,35.9088889,-89.2452778,Friendship,TN,circle,180,Bright light over small town. +2010-07-20,37.6922222,-97.3372222,Wichita,KS,sphere,1200,10 sphere objects over wichita ks municiple airport +2010-07-20,38.7908333,-121.2347222,Rocklin,CA,rectangle,30,Rotating, dark gray, rectangles I saw during the DAY! +2010-07-20,43.3275,-78.6483333,Appleton,NY,light,45,mysterious green light in sky cited in Appleton NY +2010-07-20,42.4333333,-71.45,Maynard,MA,cylinder,120,Three rectangular shaped very bright objects, within 15 to 20 sedonds of each other that just dissapeard into the sky. +2010-07-20,42.0883333,-87.9805556,Arlington Heights,IL,circle,7200,UFO sighting over my health with pictures. +2010-07-20,33.6058333,-78.9733333,Surfside Beach,SC,formation,30,Formation of 8 lights over ocean in Surfside Beach S.C. +2010-07-20,42.5358333,-113.7919444,Burley,ID,disk,5,Disc shaped UFO sighted over Idaho +2010-07-20,32.5380556,-81.9325,Portal,GA,light,600,Red/Orangeish, or Golden Colored Lights, many appearing then Fading out Together, and being in one place then another instantly,,, +2010-07-20,42.0883333,-87.9805556,Arlington Heights,IL,light,45,Extra Star (What it looked like.) on the handle portion of the Big Dipper - Stationary then moved in a northerly direction. +2010-07-20,41.9108333,-83.5736111,Ida,MI,fireball,600,Fireball over Monroe Co, MI +2010-07-20,40.8436111,-81.7641667,Orrville,OH,light,2700,Immensely bright object appears in the W sky by my house. Occurs regularly, nearly every night. ((NUFORC Note: Venus. PD)) +2011-07-20,34.2275,-83.8844444,Oakwood,GA,light,2700,Oakwood +2011-07-20,41.2305556,-85.3194444,Churubusco,IN,unknown,600,Hovering object over Noble county IN. +2011-07-20,32.7152778,-117.1563889,San Diego,CA,rectangle,540,UFO sighted over Mission Valley. +2011-07-20,35.1494444,-90.0488889,Memphis,TN,cylinder,1800,Objects over Memphis, 8pm mostly every night! ((NUFORC Note: Student report. One of several from the same source. PD)) +2011-07-20,34.7513889,-95.0477778,Talihina,OK,light,10800,Strobing Ball of light and craft. ((NUFORC Note: Possible hoax?? PD)) +2011-07-20,39.7597222,-121.6208333,Paradise,CA,other,60,Multiple aircraft +2011-07-20,42.8666667,-106.3125,Casper,WY,light,30,Object traveled across sky, rapidly accelerated, and disappeared. +2011-07-20,41.9902778,-70.9755556,Bridgewater,MA,light,15,i saw what looked to be a star moving from the left to right going too slow to be a shooting star and too fast and high to be a plane. +2011-07-20,42.1236111,-72.4319444,Wilbraham,MA,oval,600,Round object seen rising above tree line with green lights moving in circular motion with search light. +2011-07-20,27.9655556,-82.8002778,Clearwater,FL,unknown,10,Red/Yellow/Orange Orb-like Lights Over Clearwater +2011-07-20,33.6058333,-78.9733333,Surfside Beach,SC,light,600,Independently moving orange lights over the ocean. +2011-07-20,37.1925,-86.2677778,Brownsville,KY,triangle,10,I saw 3 lights in the form a triangle and it was flying very low and slow, +2012-07-20,44.6402778,-93.1433333,Farmington,MN,circle,15,Spinning silver object with 3 lights flying slow at around 2500 feet moving north over Farmington. +2012-07-20,44.1897222,-70.1408333,Greene,ME,diamond,7200,A diamond shaped craft grows brighter, vanishes and comes back, hovering in the distance in Greene, Maine. +2012-07-20,42.8744444,-71.1816667,Hampstead,NH,circle,300,Bright lighted object zigzagging through the sky. +2012-07-20,34.0286111,-117.8094444,Diamond Bar,CA,triangle,90,My girlfriend and I saw a two story pyramid with bright lights rolling up hill on Grand Ave in Diamond Bar California +2012-07-20,41.3016667,-123.54,Orleans,CA,other,14400,Multiple wittness of multiple bright fuselage objects close and moving slow and low. +2012-07-20,42.3683333,-88.8219444,Poplar Grove,IL,triangle,20,Reflective triangle flew extremely fast +2012-07-20,41.9697222,-84.3083333,Manitou Beach,MI,circle,300,Distance/size was important also they appeared lit from within. +2012-07-20,34.1425,-118.2541667,Glendale,CA,other,900,Rod/Stick Shaped UFO over Los Angeles +2012-07-20,30.5536111,-87.7119444,Robertsdale,AL,light,20,Small point of light crossing the heavens changed speed twice and "wobbled" before finally vanishing. +2012-07-20,41.6638889,-83.5552778,Toledo (Southeast),OH,circle,600,Bright red and green lights se of toledo ohio +2012-07-20,42.2141667,-83.15,Wyandotte,MI,disk,600,Orange fire disks over Wyandotte, Michigan +2012-07-20,42.3222222,-79.5783333,Westfield,NY,fireball,1800,Lake Erie Westfield, NY Multiple Fireballs in Succession July 20, 2012 +2012-07-20,41.9141667,-88.3086111,St. Charles,IL,sphere,120,We all looked north and saw an orange light or spherical object slowly moving across the sky and as it slowed down the light faded and +2012-07-20,33.7669444,-118.1883333,Long Beach,CA,light,30,2 white star-like objects moving in tandem, synchronized turn, no plane lights +2012-07-20,37.2752778,-107.8794444,Durango,CO,light,5400,Amber lights flying about in night sky. +2012-07-20,47.8555556,-121.9697222,Monroe,WA,fireball,300,8 to 10 fire "orbs." +2012-07-20,38.3552778,-87.5675,Princeton,IN,circle,2700,45 mins, moving in many directions, red/blue lights +2013-07-20,38.9694444,-77.3863889,Herndon,VA,light,120,Saw three separate lights spinning counter-clock for a minute or two at once and then went away. +2013-07-20,46.2397222,-119.0994444,Pasco,WA,light,10800,Flying flashing lights every night. What are those things cause there's is alot of them. +2013-07-20,40.4163889,-120.6519444,Susanville,CA,triangle,15,Large craft, appeared to be covered in fire. +2013-07-20,42.4794444,-79.3341667,Dunkirk,NY,fireball,20,Red orb traveling at constant rate and altitude; air traffic within proximity of the object 21:40 hrs. +2013-07-20,43.1705556,-78.6905556,Lockport,NY,circle,96,Fire orange halo discs appearing to move linearly at the same speed. +2013-07-20,34.0686111,-118.0266667,El Monte,CA,flash,600,Luminous light. +2013-07-20,47.6063889,-122.3308333,Seattle,WA,circle,240,I witnessed a large glowing transparent ovoid shape with very bright orange light inside. +2013-07-20,34.0194444,-118.4902778,Santa Monica,CA,formation,600,A massive formation of bright ascending glittering silent lights over the ocean. +2013-07-20,39.9611111,-82.9988889,Columbus,OH,other,300,Huge light cluster (possible ufos). +2013-07-20,41.6780556,-73.0113889,Terryville,CT,unknown,600,8 large bright orange fire balls with no sound following the same path one after another. +2013-07-20,33.9830556,-118.0958333,Pico Rivera,CA,oval,120,Large glowing orange object/ 4 blackhawk helicopters in the morning. +1968-07-21,37.8044444,-122.2697222,Oakland,CA,cigar,300,Large object on a clear day completely vanished after hovering in plain sight +1972-07-21,42.3625,-71.3619444,Wayland,MA,light,720,Brilliant lights in the sky 100 fee directly overhead on a dead quiet nite,Without a sound,Nothing. +1974-07-21,39.6836111,-75.75,Newark,DE,disk,900,This was not a far away light but a real flying sauser hovering directly above me. +1975-07-21,37.7644444,-89.335,Murphysboro,IL,unknown,30,We had just finished playing a ballgame in Murphysboro, Illinois and began our trip home to Decatur. We were driving through the Shawne +1976-07-21,42.4775,-83.0277778,Warren,MI,disk,20,It shot up and out of sight +1976-07-21,35.2333333,-82.7344444,Brevard,NC,sphere,300,Saw two star-like objects, one bluish, theother orange, remain stationary for at least 5 minutes, then, in sequence and at about a 2 mi +1980-07-21,36.2961111,-119.1411111,Exeter,CA,cigar,180,I had gone outside to get the mail. when walking back to the house, something caused me to look above the roof where I saw what i thoug +1980-07-21,36.2961111,-119.1411111,Exeter,CA,cigar,180,I WAS THER 7/21/80 IN EXETER +1985-07-21,37.9780556,-122.03,Concord,CA,oval,600,2 crafts-one was 30 feet across, blinking red, green,blue,orange,white; second was football-field size but triangular. +1987-07-21,39.6469444,-106.9511111,Gypsum,CO,oval,300,UFO near Gypsum and Eagle Colorado around 1987 - strange oval object hovers and speeds away +1987-07-21,40.7141667,-74.0063889,New York City (Brooklyn),NY,oval,3600,above-city sighting of oval-shaped U.F.O. during meteor shower +1993-07-21,39.6847222,-83.9297222,Xenia,OH,light,360,Xenia Ohio. 3 white lights in triangle formation chase car. +1994-07-21,43.4316667,-103.4738889,Hot Springs,SD,light,600,Two silent stars hover; vanish when jet nears +1994-07-21,39.2333333,-84.1613889,Goshen,OH,triangle,600,Triangle shaped craft on state route 28 at the Garrison Spurling rd intersection +1995-07-21,39.9522222,-75.1641667,Philadelphia,PA,light,180,Bright Light over I95 (Philly) which shot off at an incredible speed and angle. +1998-07-21,43.1547222,-77.6158333,Rochester,NY,other,120,I was with my brother in my front yard, when I noticed a slow blinking light up in the sky. I knew it wasn't a satilite because it was +1998-07-21,29.7630556,-95.3630556,Houston,TX,other,900,Recalled childhood experience +1998-07-21,41.3922222,-84.1252778,Napoleon,OH,unknown,600,It started as a "cloud" that had lights(red,green,yellow) and then branched out, then dissappeared. Several craft seen circling. +1999-07-21,47.6588889,-117.425,Spokane,WA,circle,20,silver color and it move very fast, +2000-07-21,32.64,-117.0833333,Chula Vista,CA,other,180,Black, shaped like a clover, slowly rotating, surrounded by what looked like heat waves. +2000-07-21,41.215,-86.7758333,North Judson,IN,light,10,Looking for the comet Linear through 7X50 binoculars, I observed an object barely bright enough to be visible passing from the star kno +2000-07-21,33.8752778,-117.5655556,Corona,CA,light,20,It looked like a star then all at once it moved in a northern direction a what appeared to be great speed then changed direction sudden +2000-07-21,45.4222222,-116.3144444,Riggins,ID,fireball,3,Large slow moving fireball seen in North central Idaho +2001-07-21,32.5158333,-93.7319444,Bossier City,LA,triangle,720,black,triangle craft flying over air force installation observed with no response. +2001-07-21,43.3544444,-124.3119444,Barview,OR,triangle,180,Large, triangular shaped object, three points of fient light as if stars. +2001-07-21,28.0341667,-80.5888889,Palm Bay,FL,rectangle,240,Object seen hovering above bed. +2001-07-21,44.0247222,-88.5425,Oshkosh,WI,disk,60,Black disk,changing course,going straight up very fast for half a second and continuing on its course. +2001-07-21,33.4483333,-112.0733333,Phoenix,AZ,fireball,3,Green fireball in northern Arizona sky. +2001-07-21,44.2730556,-88.6783333,Dale,WI,disk,7200,Large,and smaller bright disc shaped objects moving in unison while changing brightness and color. +2001-07-21,35.1427778,-120.6402778,Pismo Beach,CA,light,300,my girlfriend and i decided to take the usual walk on beach from my house in grover.its about a 2 minuete walk to pismo state beach. we +2001-07-21,33.5091667,-111.8983333,Scottsdale,AZ,fireball,12,A slow moving green fireball was seen travelling west to east over the horizon north of Phoenix, AZ. +2001-07-21,43.6552778,-88.1644444,Dundee,WI,sphere,3600,four craft seen at Dundee, WI +2001-07-21,43.6552778,-88.1644444,Dundee,WI,circle,7200,3 glowing (amber) orbs releasing 3 green orbs +2001-07-21,43.6552778,-88.1644444,Dundee,WI,circle,7200,LOOKED LIKE A GIANT H2O MOLECULE, +2001-07-21,43.6552778,-88.1644444,Dundee,WI,circle,3600,Multiple colored objects seen in Dundee, Wisconsin +2001-07-21,43.6552778,-88.1644444,Dundee,WI,light,7200,Dundee, WI: 4 amber lights, briefly flashing bright white, small dark red lights falling, small blue-green lights +2001-07-21,45.3205556,-92.7047222,Osceola (Town Of, Near Long Lake),WI,sphere,10800,Large hazy amber orb with two bright greenish-blue orbs circling object wildly. +2001-07-21,45.3205556,-92.7047222,Osceola (Town Of, Near Long Lake),WI,sphere,10800,Two bright green objects moving wildly around an orange hazy sphere. +2001-07-21,41.35,-72.0788889,Groton,CT,teardrop,30,Two whitish blue teardrop shapes came off the edge of the sky, stopped and took off in the opposite direction leaving a streak behind. +2002-07-21,43.6552778,-88.1644444,Dundee,WI,light,300,Numerous lights maneuvering and making formation +2002-07-21,33.3527778,-111.7883333,Gilbert,AZ,fireball,120,a shooting star but whiter object flew over our heads and started blinking with blue lights all over it +2002-07-21,37.2294444,-80.4141667,Blacksburg,VA,oval,900,Bright green object seen in Blacksburg VA. +2002-07-21,46.3958333,-112.7291667,Deer Lodge,MT,cigar,900,UFO spotted near City in Montana +2003-07-21,34.9083333,-111.4625,Mormon Lake,AZ,triangle,300,A large triangle flying at high altitude +2003-07-21,37.7944444,-95.15,Elsmore,KS,disk,240,Brilliant White Saucer/Oval shaped object flying very low across highway daytime Moran/Elsmore Kansas +2003-07-21,48.1183333,-123.4294444,Port Angeles,WA,sphere,300,A round object hit a plane and kept traveling. +2003-07-21,32.525,-93.75,Shreveport,LA,triangle,60,large triangle thing over Shreveport +2003-07-21,32.2216667,-110.9258333,Tucson,AZ,triangle,900,very large and slow moving +2003-07-21,47.7544444,-122.1622222,Woodinville,WA,triangle,300,Craft with Red Strobing Light! +2003-07-21,45.5236111,-122.675,Portland,OR,light,180,Between 10 and 11 pm, very bright quiet object traveling S to N then abruptly turned toward the E.. +2003-07-21,40.6805556,-122.3697222,Shasta Lake,CA,light,300,My brother caled me outside to see a white light slowly heading east. The light appered to slightly speed up and slow down as it travle +2004-07-21,34.7463889,-92.2894444,Little Rock,AR,triangle,300,low flying triangle yellow circular lights humming noise little rock +2004-07-21,27.4463889,-80.3258333,Fort Pierce,FL,flash,120,A STREAK OF WHITE LIGHT OVER FORT PIERCE +2004-07-21,38.1866667,-91.9469444,Vienna,MO,sphere,14400,A round..white..shiny sphere hovering in the sky over Missouri. ((NUFORC Note: Possible celestial body?? PD)) +2004-07-21,39.5297222,-119.8127778,Reno,NV,disk,1200,At about 12:45pm on July 21st this year, two close friends and I were on my back patio smoking when one of my friends spotted something +2004-07-21,40.0638889,-80.7211111,Wheeling,WV,sphere,600,They would slow down and speed up. +2004-07-21,32.7152778,-117.1563889,San Diego,CA,changing,300,Shape Changing Object in San Diego. Never scene anything like this before +2004-07-21,46.6166667,-94.2166667,Breezy Point,MN,unknown,10,A bright light appears to intesify as it enters atomospher and then dims to small light like satellite and travels away. +2004-07-21,47.7575,-122.2427778,Kenmore,WA,unknown,60,High flying light heading north stopped and then vanished on a clear night. +2005-07-21,42.1097222,-86.48,St. Joseph,MI,light,2880,Rolling light in sky puzzling +2005-07-21,34.0561111,-78.8905556,Loris,SC,cylinder,10,Green tube shaped object near Loris S.C. +2005-07-21,36.9922222,-91.9697222,Willow Springs,MO,cigar,1800,MISSOURI INVESTIGATORS GROUP Report: Tonight, from about 10:20 to 10:50 I watched a ufo! +2005-07-21,39.9611111,-82.9988889,Columbus,OH,disk,20,Unidentified solo object over Columbus +2005-07-21,47.5405556,-122.635,Port Orchard,WA,light,600,Large light seen floating over Navel Station in Bremerton +2006-07-21,45.6388889,-122.6602778,Vancouver,WA,disk,3600,Saucer like object with clear red & blue lights +2006-07-21,36.5025,-120.3905556,Three Rocks,CA,triangle,5,triangle shaped craft flying low, rotating and turning before a freeway then taking a dive below some bushes. +2006-07-21,42.3266667,-122.8744444,Medford,OR,light,3,small and bright +2006-07-21,39.515,-84.3983333,Middletown,OH,other,30,I saw two black objects --a large bug shape and a sickle looking shape parade across the sky one cloudy afternoon. +2006-07-21,33.6888889,-78.8869444,Myrtle Beach,SC,other,2,Fading lights over Myrtle Beach, SC. +2006-07-21,38.2919444,-122.4569444,Sonoma,CA,flash,30,Large Orb Expands, Then Vanishes +2006-07-21,40.8,-96.6666667,Lincoln,NE,oval,6,Bright, bluish-white glowing oval shoots rapidly and silently across the night sky +2006-07-21,38.1075,-122.5686111,Novato,CA,light,15,Mysterious gold light in the night sky in north San Francisco Bay area +2006-07-21,42.1291667,-80.0852778,Erie,PA,light,15,White light moved north to south and faded out. +2007-07-21,36.1658333,-86.7844444,Nashville,TN,sphere,1800,It was a sphere lit up about 500 feet away over an interstate by a dam in the local hermitage area. +2007-07-21,41.4488889,-82.7080556,Sandusky,OH,formation,30,triangle formation of 3 white lights +2007-07-21,42.5802778,-83.0302778,Sterling Heights,MI,light,30,Stars/lights moving then stopping then turning right angles all night +2007-07-21,40.7536111,-86.0688889,Peru,IN,other,2340,Two bright objects over Grissom seemed to dance with each other in middle of night. +2007-07-21,42.2711111,-89.0938889,Rockford,IL,fireball,300,Bright glowing object exiting earth's atmosphere w/ object ejmitted from glow at very fast speed +2007-07-21,45.4983333,-122.4302778,Gresham,OR,sphere,600,Noticed a marble sized (from my viewpoint) black object just hanging in the air. +2007-07-21,41.6619444,-86.1586111,Mishawaka,IN,fireball,600,07/21/07 mishawaka IN falling star looking light 0630 stopped falling and just sat there in the sky +2007-07-21,42.9033333,-78.755,Cheektowaga,NY,light,300,Saw bright star like object during the day directly overhead. +2007-07-21,41.6661111,-81.3397222,Mentor,OH,unknown,900,Red blinking light changed to white light and flared very bright a few times following me home over the hightway in Lake County +2007-07-21,42.5277778,-92.4452778,Cedar Falls,IA,light,5400,Four crafts, flashing red, green and brilliant white lights, hovering overhead, one making zigzag movements. +2007-07-21,47.6419444,-122.0791667,Sammamish,WA,other,360,Crescent shaped object gliding soundlessly overhead through sunny skies +2007-07-21,42.3086111,-83.4822222,Canton,MI,sphere,900,THE OBSERVANT SPHERE +2007-07-21,47.7575,-122.2427778,Kenmore,WA,light,180,in 2007, I saw a small, white fireball slowly moving across the sky. +2007-07-21,39.1730556,-77.2719444,Germantown,MD,circle,600,White Round Objects viewed from Germantown +2007-07-21,40.7933333,-73.4155556,Melville,NY,rectangle,60,I was in the car with my mother,It was about 8:30 pm when i spotted two square objects in the skye. They were bright and stationary. Th +2007-07-21,43.073055600000004,-89.4011111,Madison (Northwest Of),WI,disk,20,Two separate observations of the same UFO object/behavior with blind verification. Close proximity. +2007-07-21,30.1586111,-85.6602778,Panama City,FL,sphere,1800,Several round orange-yellow glowing objects over western end of Panama City, FL beach +2007-07-21,41.85,-87.65,Chicago,IL,light,10,Bright Light leaves amber trail +2007-07-21,42.1513889,-87.9597222,Buffalo Grove,IL,unknown,300,4 red lights on object in southeast night sky; object descended. +2007-07-21,41.6977778,-72.7241667,Newington,CT,circle,1800,Orange ball after firework show +2007-07-21,39.515,-84.3983333,Middletown,OH,light,30,four bright lights northwest of Middletown Ohio. +2007-07-21,33.6411111,-117.9177778,Costa Mesa,CA,circle,1800,round object seen in costa mesa flying +2007-07-21,35.4866667,-80.8602778,Cornelius,NC,oval,20,An orange glowing object that made no noise nor did it move. After twenty seconds the light just slowly went out and was gone. +2007-07-21,39.9719444,-74.6833333,Pemberton,NJ,unknown,1200,Pemberton, NJ (Mt. Misery) - Life Changing UFO, Big Blue and White Lights, Silent as Slience Itself. +2008-07-21,42.8863889,-78.8786111,Buffalo,NY,rectangle,60,First of all let me say that I'm not entirely sure whether what i saw were a UFO or simply aircrafts flying in a unusual formation. -- +2008-07-21,36.1197222,-80.0738889,Kernersville,NC,changing,1080,Cylinder object morphs to Sphere shape with Amber colored light over Kernersville, NC +2008-07-21,46.7833333,-92.1063889,Duluth,MN,light,60,((HOAX??)) Fire-like glow... NOT FIRE EMBER! +2008-07-21,37.0561111,-85.0886111,Russell Springs,KY,flash,21600,Two Objects fly threw Kentucky looks as Shooting Stars side by side. +2008-07-21,38.2544444,-104.6086111,Pueblo,CO,rectangle,10800,ON JUNE 21ST 2008 PUEBLO COLORADO ME MY WIFE AND 2 TEENAGE SONS WITNESSED A BRIGHT LIGHT AT APPROX 20:50.THE BRIGHT LIGHT WHICH COULD H +2008-07-21,39.3638889,-121.6925,Gridley,CA,formation,240,Silent Lights +2008-07-21,42.4486111,-83.8016667,Hamburg,MI,light,180,Bright Orange Light approached then faded. Three times this object appeared, dissapeeared and reappeared +2008-07-21,26.525,-80.0666667,Boynton Beach,FL,light,420,pulsating light +2008-07-21,46.5705556,-123.2961111,Pe Ell,WA,light,120,A bright white light floats and changes direction over Pe Ell Washington. +2009-07-21,40.2291667,-74.9372222,Newtown,PA,unknown,25,Bright UFOs seen with Chemtrails Bucks County +2009-07-21,37.99,-84.1797222,Winchester,KY,egg,300,UFO sighting in Winchester, KY, red craft in the sky. +2009-07-21,41.85,-87.65,Chicago,IL,light,20,Odd pulsing lights west of Chicago +2009-07-21,39.6527778,-78.7627778,Cumberland,MD,cigar,25,object faded in and out, accelerated at inconceivable speed, no sound +2009-07-21,28.0391667,-81.95,Lakeland,FL,cigar,300,It was evening, I was standing outside my townhouse looking at the orange sky. I noticed in the eastern direction what, at first glance +2009-07-21,42.1675,-71.3583333,Millis,MA,light,120,silent low flying light VANISHES +2009-07-21,43.6713889,-116.8152778,Greenleaf,ID,light,30,saw light in the southwestern sky of Idaho around the area of greenleaf light appeared in the eastern sky then disappeared +2009-07-21,39.0483333,-95.6777778,Topeka,KS,fireball,30,One or several bright lights seen over Topeka, KS flashing, streaking and disappearing in the sky. +2009-07-21,41.3113889,-105.5905556,Laramie,WY,circle,45,Bright white light. ((NUFORC Note: Probable sighting of ISS, which passed to the north of Laramie at 22:15 hrs.. PD)) +2009-07-21,46.4111111,-86.6477778,Munising,MI,light,120,Orange orb viewed moving East South East in a "floating" pattern before disappearing. +2009-07-21,34.5361111,-117.2902778,Victorville,CA,circle,60,Orange light spotted and it couldnt be a star. +2009-07-21,36.0625,-94.1572222,Fayetteville,AR,light,300,2 Bright Red lights moving in opposite directions (South and North) very slowly just below the clouds. No sound. +2009-07-21,39.5297222,-119.8127778,Reno,NV,light,30,Mysterious Bright Light moving very fast across the sky. +2009-07-21,39.7294444,-104.8313889,Aurora,CO,triangle,15,It is raining really bad here and me and my friend were driving to my house and we saw an object in the sky kinda low with 3 lights on +2010-07-21,31.5822222,-86.2572222,Brantley,AL,triangle,120,Large triangle shaped craft chased by a helicopter +2010-07-21,27.8002778,-97.3961111,Corpus Christi,TX,circle,60,Three UFO's were spotted by six people in the middle of Corpus Christi, Texas. +2010-07-21,40.1469444,-78.9122222,Hooversville,PA,circle,900,Fuzzy disc with "satelltes" which exploded and emitted sparks +2010-07-21,33.6888889,-78.8869444,Myrtle Beach,SC,light,5,Three red/orange disk shaped lights appeared over the ocean fading in and out one at a time forming a triangular pattern. +2010-07-21,41.5052778,-82.0283333,Avon Lake,OH,fireball,900,Two fireballs spotted around 1115pm from the shores of Lake Erie. ((NUFORC Note: Venus?? PD)) +2010-07-21,30.5041667,-90.4611111,Hammond (Near; On Hwy.),LA,fireball,5,Whitish/ blue fire ball in sky ver, very close to earth. ((NUFORC Note: Possible meteor? PD)) +2010-07-21,40.7608333,-111.8902778,Salt Lake City,UT,unknown,4,Faint glowing large object streaks the night sky over Salt Lake City only leaving a trail +2011-07-21,34.0555556,-117.1816667,Redlands,CA,triangle,120,Triangle shaped Gray craft with one red light on the center and small lights in the rear flys over me in Redlands CA +2011-07-21,41.0086111,-91.9625,Fairfield,IA,light,60,I am a night sky watcher and I have seen a lot of military maneuvers and a few strange things in this area, but what I saw this evening +2011-07-21,33.7475,-116.9711111,Hemet,CA,fireball,60,Orange glowing fireball spacecraft over Hemet California on 7/21/11 +2011-07-21,43.1547222,-77.6158333,Rochester,NY,changing,60,Noticed an orb floating in the sky. It seemed to be reflecting the sunlight. After 45 seconds it started changing shape and just vanish +2011-07-21,29.8944444,-81.3147222,St. Augustine,FL,triangle,30,Glowing triangle moving across the sky +2011-07-21,38.5394444,-75.0555556,Bethany Beach,DE,sphere,1800,Numerous red orbs moving north over the ocean +2011-07-21,38.8113889,-89.9530556,Edwardsville,IL,fireball,180,Fireballs seen in northern sky north of Edwardsville, IL on July 21, 2011 +2011-07-21,40.8841667,-72.9377778,Middle Island,NY,fireball,300,Fireball moving silently across the sky. +2011-07-21,42.7358333,-83.4188889,Clarkston,MI,fireball,60,Brilliant orange/yellow fireball appears at concert also witnessed by two state police officers +2011-07-21,32.4791667,-80.335,Edisto Beach,SC,circle,4,2 orange, evenly spaced lights over ocean at Edisto Beach SC 7-21-11. +2011-07-21,28.5380556,-81.3794444,Orlando,FL,disk,120,Disc object observed at magic kingdom during nightly fireworks display +2011-07-21,34.1141667,-116.4313889,Yucca Valley,CA,formation,600,Unusual circular lights hovered over the city of Yucca Valley, California for 10 minutes on July 21, 2011 from 10:33 PM until 10:43 PM +2011-07-21,26.3583333,-80.0833333,Boca Raton,FL,cylinder,7200,Cylinder-shaped object, seems to be spinning, gives off red, green and white lights. ((NUFORC Note: "Twinkling" star?? PD)) +2011-07-21,34.3111111,-99.8969444,Wheatland (Used 2 Be Whiskey Flats),TX,sphere,15,Bright sphere hovering low with no sound darts off incredibly fast and disappears +2012-07-21,44.9444444,-93.0930556,Saint Paul,MN,rectangle,20,Rectangular patch of bright orange light containing flames moving silently across the sky. +2012-07-21,44.9444444,-93.0930556,Saint Paul,MN,rectangle,20,One of those orange fireballs, but rectangular in shape. +2012-07-21,43.1547222,-77.6158333,Rochester,NY,triangle,300,Triangle craft with white lights, low to ground +2012-07-21,37.8805556,-84.5730556,Nicholasville,KY,cigar,300,It was a bright red light that came closer then stopped mid air, and flew very quickly away to the right. +2012-07-21,45.5236111,-122.675,Portland,OR,fireball,120,Interesting yewllow, red and orange lights seen from S.E. Portland, Oregon. +2012-07-21,33.0533333,-97.4716667,Rhome,TX,oval,5,Low flying craft with large shadow +2012-07-21,42.3086111,-83.4822222,Canton,MI,circle,600,Four ufos flew out of atmosphere then continued around the would as far as we could see +2012-07-21,42.5847222,-87.8211111,Kenosha,WI,unknown,6300,Flaming mass or UFO? I think I know the difference, regardless there was something in the sky. +2012-07-21,34.0513889,-84.0713889,Suwanee,GA,light,180,Blue light flash followed by many army helicopters. +2012-07-21,30.7997222,-81.69,Kingsland,GA,other,5,landing craft or short distance transport? +2012-07-21,47.6741667,-122.1202778,Redmond,WA,cone,600,At 60 acre when we observed 2 objects similar two sticks one appears to a flare and light both were perfect up and down sky to land se +2012-07-21,40.3355556,-75.9272222,Reading,PA,oval,300,My wife and I saw one fiery red/orange orb that was ascending vertically as it traveled SSE over Reading, PA around 9:50 PM on 7/21/12. +2012-07-21,41.2916667,-72.3766667,Old Saybrook,CT,circle,600,4 round red/orange objects flying in straight formation approx. 2 mins. apart across sky then rapid ascension. +2012-07-21,42.8305556,-77.8972222,Greigsville,NY,fireball,2,3 brilliant orange discs, blinking on and off and then quickly disappearing +2012-07-21,40.7230556,-73.9130556,Maspeth,NY,circle,180,Blue object flew in a circle 4 min +2012-07-21,40.7230556,-73.9130556,Maspeth,NY,circle,180,One blue circle object flew in a circle 3 mim color changed +2012-07-21,41.7305556,-88.3458333,Montgomery,IL,fireball,240,Saw more than 25 circular red light objects traveling very slowly above boulder hill. +2012-07-21,38.3566667,-121.9866667,Vacaville,CA,light,900,Big orange lights in SSE sky seen towards the air force base, at least 6, definately not airplanes. +2012-07-21,38.3566667,-121.9866667,Vacaville,CA,light,1140,13 silent orange lights observed for 19 minutes crossing the sky from west to east on an upward trajectory +2012-07-21,41.9,-71.0902778,Taunton,MA,fireball,60,Red/orange yellow orbs flying at tree line from south to north. +2012-07-21,43.1755556,-76.1197222,Cicero,NY,fireball,300,Glowing Orange/Red lights - Central NY +2012-07-21,40.6347222,-75.5847222,Orefield,PA,sphere,240,Orange orbs over night sky in Lehigh Valley, PA +2012-07-21,39.9341667,-81.4625,Senecaville,OH,fireball,15,Fireball in East Ohio +2012-07-21,39.6861111,-74.9955556,Williamstown,NJ,fireball,900,8 ORANGE LIGHT WEST OF MY TOWN IN A TRIANGLE FORMATION NOT MOVING STAYED IN POSITION +2012-07-21,38.8338889,-104.8208333,Colorado Springs,CO,fireball,60,Bright orange balloon shaped object by cs airport +2012-07-21,40.5363889,-80.1847222,Sewickley,PA,fireball,180,Orange fireball traveling across sky +2012-07-21,42.8711111,-77.8855556,York,NY,circle,180,We saw a bright orange circle move across the sky, stop, hover, and disappear. +2012-07-21,40.8175,-73.0005556,Medford,NY,oval,480,Orange glowing oval sphere flying in fromation style +2012-07-21,41.7305556,-88.3458333,Montgomery,IL,fireball,300,20 or more red/orange lights seen by 2 eyewitnesses over boulder hill in Montgomery Il +2012-07-21,35.4675,-97.5161111,Oklahoma City,OK,light,600,Hello, I am a 52 year old male and live in central OK. I build custom cars and motorcycles for a living and work in a private shop +2012-07-21,42.7158333,-78.8297222,Hamburg,NY,fireball,180,10-20 Large Orange/Red balls floating in the sky approximately 30-50 feet above our heads +2012-07-21,33.9525,-84.55,Marietta,GA,fireball,600,15 orange fireball like objects silently hovering very low over treeline in east cobb Marietta,Georgia July 21, 2012 at 10:15 pm +2012-07-21,39.3269444,-81.5486111,Vienna,WV,formation,1800,10 orange single round lights traveling from NE to SW to West +2012-07-21,44.2619444,-88.4152778,Appleton,WI,sphere,120,Reddish-orange shimmering lights in the sky, moving eastward in a symmetrical pattern +2012-07-21,46.7833333,-92.1063889,Duluth,MN,circle,900,3 round orange lights in Duluth,wittnessed by several people. +2012-07-21,42.3702778,-87.9019444,Gurnee,IL,other,180,Line of Red lights Flying over Gurnee/Waukegan area +2012-07-21,47.3525,-121.9825,Ravensdale,WA,light,180,Stationary Bright orangeish red baseball sized object stayed bright and stayed still for 3 minutes before quickly fading, other stars n +2013-07-21,26.16,-80.1391667,Wilton Manors,FL,sphere,300,Solid black sphere hangs motionless and soundless in windy sky. +2013-07-21,40.6788889,-73.4175,Amityville,NY,formation,1200,Four rotating circular objects changing colors in a cloud. ((NUFORC Note: Possibly advertising lights?? PD)) +2013-07-21,48.9466667,-122.4508333,Lynden,WA,fireball,420,7/21/13 Lynden, Wa 7 min, 6 fireballs +2013-07-21,35.8455556,-86.3902778,Murfreesboro,TN,formation,600,A formation of fiery orange balls moved low across the night sky +2013-07-21,47.2647222,-122.2488889,Pacific,WA,fireball,480,Came from Mt Ranier traveling north up auburn valley, stopped hovered for a few minutes then went east and disappered. +1950-07-02,47.6777778,-116.7794444,Coeur D'alene,ID,cigar,10,Bright Orange, Cigar-Shapped Object Travelling at 18ꯠ MPH +1963-07-02,32.2216667,-110.9258333,Tucson,AZ,other,1200,Large blimp like object 1960's +1965-07-02,41.45,-71.45,Narragansett,RI,egg,15,Golden egg chased by navy fighters. THe egg got away. 1965 New England +1974-07-02,26.1272222,-80.2333333,Plantation,FL,oval,180,In 1974 my friend and I spotted directly in front of us, a craft approx 75 ft in oval shape hovering about 5 ft. over a funeral home. +1977-07-02,40.8352778,-73.6241667,Glen Head,NY,cigar,240,large bright cigar shaped craft with 5 smaller black crafts +1977-07-02,42.9375,-70.8394444,Hampton,NH,circle,300,No noise from disc like object +1978-07-02,39.1141667,-94.6272222,Kansas City,KS,disk,300,My thoughts were it was a blimp or something like that but it looked too real to be a blimp. +1986-07-02,41.0086111,-91.9625,Fairfield,IA,cigar,120,I was pastor of a rural church. One of the members of the congregation and I were leaving a Bible study when we noticed a strange cigar +1988-07-02,34.0583333,-106.8908333,Socorro (North Of),NM,triangle,1200,Witnessed triangle shaped object with flashing lights and luminescent orb at 2:30 AM. +1995-07-02,43.0869444,-78.7280556,Pendleton,NY,other,900,It was a bright sunny day. The wind was wipping about 15-20 mph. I called my wife at about 1:00 p.m. to check in and that is when I l +1997-07-02,37.0116667,-122.1908333,Davenport,CA,circle,4,Traveling northbound on hwy 1 towards Davenport from Santa Cruz I noticed a white circular or round glowing object out the driverside w +1997-07-02,38.2325,-122.6355556,Petaluma,CA,changing,9000,We saw and followed a bright light for quite a number of miles on a summer evening in July of 1997. +1997-07-02,37.6447222,-115.7427778,Rachel,NV,sphere,2700,Orange balls of light in sky, 1 to 4 balls visible at a time, multiples were in row. Lights materialized, one at a time, then slowly fa +1997-07-02,38.5788889,-122.5786111,Calistoga (Knights Valley),CA,triangle,1200,A Large triangular aircraft passed silently overhead. It had 4 lights in front, a bright light underneath, a wavelike column of yellow- +1997-07-02,38.9736111,-92.7430556,Boonville,MO,light,1800,Craft was spotted in the summer night sky. +1998-07-02,42.2916667,-85.5872222,Kalamazoo (Cooper Township),MI,cone,180,I went outdoors to chain up our dog, seen an orange cone shape glowing object slightly above our trees. Went back in house to get spou +1999-07-02,33.0197222,-96.6986111,Plano,TX,unknown,2100,Second time I have seen this Light in the sky same place moves very little red and green lights very high in the sky not a star not a p +1999-07-02,31.8086111,-85.97,Troy,AL,cigar,5,2 White Cigar Shaped craft flew over Hwy 231 +1999-07-02,44.9444444,-93.0930556,St. Paul,MN,other,10,I ran across your web site and will relate my experience, I was driving to the post office with my monthly mail and this would usually +1999-07-02,41.8069444,-83.4425,Luna Pier,MI,sphere,240,Saw 3 spheres came from north east direction. +1999-07-02,36.175,-115.1363889,Las Vegas,NV,triangle,300,triangle ships fly over vegas +1999-07-02,39.6136111,-86.1066667,Greenwood,IN,disk,3,While watching an aircraft pass over, directly behind the tail and underneath the aircraft I witnessed a round,disk shaped object. With +1999-07-02,41.6413889,-80.1516667,Meadville,PA,light,10,Moving light,decending,turned on large flood light,silent,light faded out and object pulled back and proceeded upwards very high at a s +1999-07-02,42.9633333,-85.6680556,Grand Rapids,MI,light,60,I WAS SITTING ON MY PORCH, I WAS FACING EAST. AT 23:54 I HAD SEEN A SLOW MOVING LIGHT OFF IN THE DISTANCE. THIS IS NOT UNUSUAL SINCE +2000-07-02,27.9091667,-82.7875,Largo,FL,cigar,300,pulsating cigar shaped object,shiny &transparent +2000-07-02,32.7938889,-79.8627778,Mount Pleasant,SC,circle,180,3 red orbs silently crossing the sky +2001-07-02,40.9994444,-75.1816667,East Stroudsburg,PA,egg,240,Unknown craft, wierd movement and flew across the south to southwest the to north west +2001-07-02,47.1955556,-120.9380556,Cle Elum,WA,chevron,15,Short sighting of chevron formation through polaroid sunglasses +2001-07-02,25.7738889,-80.1938889,Miami,FL,egg,240,four kids rangin from 12 to 11 years of age, first noticed something falling high over the sky, at first they thought it was a crashing +2001-07-02,36.6208333,-90.8233333,Doniphan,MO,triangle,60,Triangular shaped UFO flies over observer's vehicle at relatively low altitude. +2001-07-02,37.9363889,-90.7877778,Potosi,MO,light,45,The object started out as a dim light,such as a satelitte in our outer atmosphere.It seemed to appear out of nothing.It moved from east +2002-07-02,41.2838889,-81.2241667,Mantua,OH,disk,10,spinning lights +2002-07-02,39.0483333,-95.6777778,Topeka,KS,other,15,Whitest flash of Light I've ever seen +2002-07-02,39.0997222,-94.5783333,Kansas City,MO,oval,180,Freight Pilot Sees Rapidly Moving Oval Object Near Kansas City, MO. +2002-07-02,34.0522222,-118.2427778,Los Angeles,CA,unknown,300,Unexplainable Jet noise in the LA sky +2002-07-02,43.6136111,-116.2025,Boise,ID,sphere,45,Shining sphere speeds accross sky towards Southeast. +2002-07-02,33.4352778,-112.3575,Goodyear,AZ,light,1200,An amber light in the west sky. +2002-07-02,44.2236111,-70.5138889,South Paris,ME,sphere,30,Bright sphere star looking craft sighted in South Paris ME. +2003-07-02,42.9763889,-88.1083333,New Berlin,WI,light,180,3 lights, converged into 1, then moved vertically and disappeared +2003-07-02,33.9547222,-118.2111111,South Gate,CA,circle,15,Flickering light in S California +2003-07-02,39.1533333,-74.6933333,Sea Isle City,NJ,sphere,5,Sea Isle City UFO +2003-07-02,40.4841667,-88.9936111,Bloomington,IL,cigar,30,I saw a flat, white-illuminated object near Bloomington, IL yesterday afternoon. +2003-07-02,34.1347222,-79.94,Timmonsville,SC,oval,600,UFO at treetop level on woods +2003-07-02,34.2855556,-118.8811111,Moorpark,CA,oval,120,Large reflective oval object hanging motionless above the mountain ridge, north of Moorpark, CA, seen in daylight, at sunset. +2003-07-02,38.6275,-92.5663889,California,MO,sphere,300,Yellow-orange colored ball/light ; Silver Tube & Yellow-orange colored ball/light +2003-07-02,44.6497222,-93.2425,Lakeville,MN,light,30,Bright light formation moving at high rate of speed with no noise +2003-07-02,45.8686111,-84.7277778,St. Ignace,MI,triangle,120,V shaped object over St. Ignace,MI on 7-2-03 +2004-07-02,34.0686111,-118.0266667,El Monte,CA,oval,30,Shimmering star-like objcet that dulls into a metal oval. +2004-07-02,33.1958333,-117.3786111,Oceanside,CA,circle,900,we saw 4 objects flying in formation, the objects were shining and circular in shape, the sky was clear and sunny, then suddenly we saw +2004-07-02,36.0816667,-84.0538889,Heiskell,TN,disk,240,Pictures taken of anomalous disk-shaped object over Heiskell. +2004-07-02,34.0738889,-117.3127778,Colton,CA,light,120,Faint red star orbits Saturn and flies rapid sawtooth pattern. +2004-07-02,42.6011111,-76.1808333,Cortland,NY,unknown,3600,20+ fast moving objects in the span of about an hour, upstate NY, 7/2/04 +2004-07-02,37.4283333,-121.9055556,Milpitas,CA,triangle,2,July 2񫺔 Bright glowing triangle[ or falling star] falling against the mountains . +2004-07-02,37.6447222,-115.7427778,Rachel,NV,triangle,1500,triangular lights over rachel nevada +2005-07-02,38.9716667,-95.235,Lawrence,KS,light,30,I went out back to have a cigarette and saw a group of lights flying in a V formation. There were eight or nine on each side. At first +2005-07-02,43.9161111,-122.8216667,Dexter,OR,diamond,240,Double cone travels northeast to southwest from over Eugene, OR. toward south of Oakridge, OR area at 3:30 +2005-07-02,41.2963889,-92.6441667,Oskaloosa,IA,fireball,5400,While sitting in the backyard with a friend. What appeared to be a star, slowly started decending toward the Southeast horizon.It slowl +2005-07-02,38.7316667,-82.9977778,Portsmouth,OH,triangle,7200,Objts with lights flashing - with one being very clearly a triangular shaped object, as well as moving "stars." ((Satellite? PD)) +2005-07-02,43.1863889,-77.8041667,Spencerport,NY,triangle,120,Black Triangular Craft with Seven Dim Lights Sighted Over Spencerport, NY +2006-07-02,21.5766667,-158.1302778,Waialua,HI,sphere,600,10-15 ft. diameter amazingly bright, glowing, hovering orbs +2006-07-02,36.8527778,-75.9783333,Virginia Beach,VA,triangle,300,((POSSIBLE HOAX)) A triangular craft with solid red and flashing white lights hovering strangely over Virginia Beach, VA late at night. +2006-07-02,40.7141667,-74.0063889,New York City (Brooklyn),NY,other,30,never imagined it would be this way +2007-07-02,37.99,-84.1797222,Winchester,KY,triangle,600,semi transparent triangular sighting +2007-07-02,33.1191667,-117.0855556,Escondido,CA,cylinder,120,strange silver object flying side to side and in circles +2007-07-02,37.4994444,-91.8569444,Licking,MO,unknown,300,1/2 mile row of orange lights. +2007-07-02,35.6266667,-120.69,Paso Robles,CA,unknown,120,Erratic moving object in southern Paso Robles Sky moves forward, backwards and vertically at high speeds. +2007-07-02,37.1041667,-113.5833333,St. George,UT,other,15,Walking home from the park when i saw... +2008-07-02,32.7833333,-96.8,Dallas,TX,fireball,3,Object was a fast moving fireball, that moved towards the ground, disappeared and scared my dogs(and me). +2008-07-02,30.5080556,-97.6786111,Round Rock,TX,flash,120,walked dog 3 a. m. very large flash behind me that left a light trail that changed colors, it was not a shooting star +2008-07-02,41.7519444,-87.9738889,Darien,IL,rectangle,60,A fast moving white rectangular image was observed that quickly disappeared in the distance. +2008-07-02,47.1955556,-120.9380556,Cle Elum,WA,circle,60,Disc seen near mining area at Cle Elum, WA. +2008-07-02,43.1775,-85.2527778,Greenville,MI,triangle,2,Triangular object over Greenville, Michigan on July 2, 2008. +2008-07-02,37.9886111,-84.4777778,Lexington,KY,cross,120,Transparent cross shaped object at high altitude caught glare from sun and vanished seconds later +2008-07-02,40.9469444,-73.03,Mt. Sinai,NY,fireball,60,Fireball accross sky, clear day , no sound, then turned black and lost sight +2008-07-02,38.7744444,-92.2569444,Ashland,MO,diamond,240,I witnessed a diamond shaped craft with 4 white lights and one red light in the center hovering above Ashland Missouri twice. +2008-07-02,42.5583333,-70.8805556,Beverly,MA,fireball,360,Orange light moving across sky +2008-07-02,41.5733333,-87.7844444,Tinley Park,IL,disk,240,Low flying craft quickly moving across the sky with flashing red and white lights. +2008-07-02,47.6105556,-122.1994444,Bellevue,WA,light,2700,Bright, light object moving in circular, zigzag and linear motions across sky. +2008-07-02,41.5241667,-72.0763889,Norwich,CT,chevron,2700,20+ low-flying craft with red, green and white flashing lights +2009-07-02,43.1413889,-95.1441667,Spencer,IA,triangle,900,white large trianglar shape. Able to move fast to keep up with the car. +2009-07-02,37.485,-119.9652778,Mariposa,CA,fireball,8,At 3:30 AM a bright round object moved in a straight line across the northern sky, west to east, not far above the horizon. +2009-07-02,40.7933333,-77.8602778,State College,PA,sphere,5400,Seen UFO with my son and 12 ON DUTY State College cops! +2009-07-02,36.7069444,-97.0852778,Ponca City,OK,other,180,Ponca City, Ok about 18;30 hrs, long shaped object with no sound +2009-07-02,40.8,-96.6666667,Lincoln,NE,cylinder,300,Cylindrical object with bright orange light. +2009-07-02,40.1672222,-105.1013889,Longmont,CO,oval,120,a large orange orb that divided into 6 and lasted low on the horizon for 1-2 minutes +2009-07-02,34.0522222,-118.2427778,Los Angeles,CA,circle,15,A huge white bright circle half the size of the moon that moved in our direction for 15 seconds and disappeared. +2009-07-02,46.6566667,-95.805,Vergas,MN,formation,120,During a vacation with my son on a lake in Minnesota we went for a late night cruise and had a couple beers while looking at the stars +2009-07-03,29.3011111,-94.7975,Galveston,TX,cylinder,60,cylinder craft flying over Galveston with no wings being chased by military jet. +2010-07-02,41.7180556,-94.9322222,Audubon,IA,oval,14400,White bright light changing into an orange red light that flew back and forth, and then was gone. +2010-07-02,41.0036111,-88.5252778,Odell,IL,other,1200,Unexplained event in the sky +2010-07-02,42.2041667,-72.6166667,Holyoke,MA,formation,60,3 orange lights in triad formation, Holyoke, Mass, July 2, 2010 +2010-07-02,40.5061111,-74.6205556,Hamilton,NJ,sphere,900,Lights in the sky during Fireworks show July 2, 2010 +2010-07-02,41.85,-87.65,Chicago,IL,fireball,120,Fireball object over chicago midway airport! ((NUFORC Note: Report from experienced aviation professional. PD)) +2010-07-02,41.6619444,-86.1586111,Mishawaka,IN,sphere,90,Bright orange sphere over Mishawaka, IN +2010-07-02,36.8252778,-119.7019444,Clovis,CA,formation,2,Unknown very big object with 2 lights disappears no sound with it at all... thought we were going to die +2010-07-02,42.0372222,-88.2811111,Elgin,IL,sphere,300,10 bright orange noiseless spheres flew over head in single file at intrevals of 10 to 15 seconds moving from S to N. +2010-07-02,42.8858333,-87.8630556,Oak Creek,WI,fireball,300,Two fireballs flying in tandem. +2010-07-02,37.2152778,-93.2980556,Springfield,MO,triangle,120,Two 3 dimensional aircraft w /orange lights that didn't move. +2010-07-02,42.4286111,-84.0566667,Unadilla,MI,formation,600,String of Lights over Unadilla MI +2010-07-02,36.8655556,-87.4886111,Hopkinsville,KY,light,5,Extra star seen moving across the big dipper and then fading. +2010-07-02,38.5766667,-92.1733333,Jefferson City,MO,other,50,A obelisk shaped flying object illuminated with many colors of light, flew across the sky at a moderate speed. +2010-07-02,30.3319444,-81.6558333,Jacksonville,FL,triangle,45,Triangle over the St John's River +2011-07-02,41.4197222,-75.6327778,Dunmore,PA,circle,300,Orange firey lights, unexplainable +2011-07-02,34.1891667,-86.9169444,Baldwin County,AL,light,120,One moving white light with a smaller white light on top +2011-07-02,35.2269444,-80.8433333,Charlotte,NC,cross,240,me and my friends were at a youth rock concert and we saw 2 to 4 cross shaped craft hover over the football field. I am pretty sure tha +2011-07-02,44.551944399999996,-69.6322222,Waterville,ME,circle,60,Movment in the sky +2011-07-02,28.5380556,-81.3794444,Orlando,FL,circle,60,big flat douhgnut shape, black fast and silent +2011-07-02,45.2377778,-93.6541667,Albertville,MN,changing,3600,Multiple UFOs sighted in Albertville MN on July 2 2011 +2011-07-02,39.7241667,-77.4716667,Blue Ridge Summit,PA,sphere,900,Slowly moving and hovering orange glowing sphere +2011-07-02,48.7438889,-113.4286111,St. Mary,MT,oval,15,Seven oval shapes at very high altitude in clear blue sky. Circling around one another, as if a flock of birds but no wings. White bot +2011-07-02,37.1794444,-85.9069444,Horse Cave,KY,sphere,10,Reddish orange sphere seen traveling from North to South in sky. +2011-07-02,42.5936111,-83.5994444,Milford,MI,oval,300,A milky looking globe with an apparent fire inside the object...without the fire comsuming the object. +2011-07-02,37.7741667,-87.1133333,Owensboro,KY,light,240,Reddish Orange Orbs, Very Large Moving Slowing Across Owensboro, KY sky +2011-07-02,19.7297222,-155.09,Hilo,HI,light,2400,Six star-like moving objects over Hilo, HI. +2011-07-02,39.6136111,-86.1066667,Greenwood,IN,fireball,300,Orange fireballs over Greenwood, IN +2011-07-02,36.4469444,-95.7080556,Oologah,OK,light,180,Bright Orange Light or orb +2011-07-02,33.0416667,-116.8672222,Ramona,CA,circle,120,Solid bright light headed east over Southern CA night sky +2011-07-02,39.6477778,-104.9872222,Englewood,CO,disk,900,I was in my car going south toward my home. I noticed glowing orange disks flying from south to north toward the western sky...there we +2011-07-02,34.1691667,-94.3161111,Gillham,AR,light,360,A bright light flew east to west for about 20 seconds, then turned south and faded, and then came back flashing before it faded again. +2011-07-02,33.2033333,-86.8616667,Maylene,AL,fireball,180,Bright light from north to south and vanished +2011-07-02,38.0466667,-97.3447222,Newton,KS,fireball,15,Large orange, soundless fireball passed over house with no trail +2011-07-02,38.2694444,-108.5472222,Nucla,CO,light,180,Red light over SW Colorado. +2011-07-02,29.3777778,-95.1055556,Santa Fe,TX,light,900,A series of red light flew overhead +2011-07-02,41.4225,-87.9858333,Manhattan,IL,fireball,420,Orange fireball steadily moves across sky then stops for 5 minutes (not UFO, a firework caused this!) +2011-07-02,42.3966667,-88.1836111,Fox Lake,IL,light,120,A bright orange orb appeared in the southern sky moving north. The orb stopped for a few seconds the started heading south at a high ra +2011-07-02,33.1958333,-80.0133333,Moncks Corner,SC,light,180,Red ball of light climbs to 15ꯠ ft, hovers, then fades out with no clouds in the sky. +2011-07-02,37.0561111,-85.0886111,Russell Springs,KY,light,600,Two WHITE DOTS in a line when bright then dim wile moving north. +2011-07-02,36.5788889,-94.9708333,Cleora,OK,cylinder,300,3 bright orange UFO's with revolving red lights spotted a Grand Lake in Oklahoma. +2011-07-02,43.9705556,-89.8166667,Friendship,WI,sphere,180,Bright orange light over Friendship, WI. +2011-07-02,38.9958333,-88.9527778,Brownstown (South Of),IL,cone,120,Brown paper sack light, no sound, no running light. +2012-07-02,41.6572222,-87.68,Blue Island,IL,flash,5,Bright white light in the sky. +2012-07-02,43.0513889,-83.3188889,Lapeer,MI,triangle,10,In Lapeer looking to the east northeast. Moving to the west southwest.Triangle arrangement of light green lights. Sky was a dark blue d +2012-07-02,38.4588889,-90.5363889,High Ridge,MO,teardrop,900,Teardrop flashing orb orange red yellow in high ridge, missouri +2012-07-02,41.0813889,-81.5191667,Akron,OH,light,1800,White light moving side to side for 30 minutes +2012-07-02,34.6988889,-76.7405556,Atlantic Beach,NC,light,5,((NUFORC Note: No information provided by witness. PD)) +2012-07-02,35.2422222,-87.3347222,Lawrenceburg,TN,teardrop,2,Tear drop shaped silent craft with dull lights realized it had been seen and cloaked to avoid further view. +2012-07-02,33.9163889,-78.1613889,Oak Island,NC,fireball,60,Red ball stop to a hover and slowly disappear +2012-07-02,42.3313889,-83.0458333,Detroit,MI,light,60,I saw a pencil eraser sized light crossing the sky +2012-07-02,33.3272222,-80.1486111,Cross,SC,circle,18000,Very bright white light seen above tree line in front of my home, stationary for 5 min shot straight up very fast not high altitude . +2012-07-02,41.7886111,-89.6961111,Sterling,IL,unknown,1200,At first we thought it was a helicopter put it was to low and there was no no noise the there was another one and another and so on til +2012-07-02,43.6136111,-116.2025,Boise,ID,sphere,180,Orange/Red glowing spheres flying low, fast and silently in sky +2012-07-02,39.8208333,-84.0194444,Fairborn,OH,flash,2,Strange blue flash over WPAFB +2012-07-02,40.7933333,-77.8602778,State College,PA,other,1980,Lights in the shape of an oval. +2012-07-02,47.4830556,-122.2158333,Renton,WA,fireball,120,EASTBOUND FIREBALL. +2013-07-02,34.0813889,-86.5911111,Blountsville,AL,triangle,60,Three bright lights in a triangle shape passing over us no sound. +2013-07-02,47.2358333,-122.5491667,University Place,WA,triangle,600,Red lights on an equilateral object. +2013-07-02,41.4858333,-73.0511111,Naugatuck,CT,disk,3,Silver saucer with round top in daylight sky. +2013-07-02,36.6002778,-121.8936111,Monterey,CA,disk,5,Saucer +2013-07-02,38.2972222,-122.2844444,Napa,CA,fireball,900,I was out side around 3:40 am and i seen two orange red dots or balls one i couldnt see for a while. +2013-07-02,28.3197222,-80.6077778,Cocoa Beach,FL,triangle,3,White glowing object flys near Kennedy Space Center at an extreme speed +2013-07-02,37.9886111,-84.4777778,Lexington,KY,light,1800,Trangle red light in center with three flashing lights on the back +2013-07-02,30.2669444,-97.7427778,Austin,TX,circle,120,I spotted multiple amber colored orbs appearing & disappearing in the sky just above the horizon. There were several of these orbs that +2013-07-02,39.4519444,-108.0522222,Parachute,CO,sphere,180,Sphere shaped half moon object gliding across the sky. +2013-07-02,44.5191667,-88.0197222,Green Bay,WI,fireball,300,9th and fisk street green bay. +2013-07-02,36.7280556,-108.2180556,Farmington,NM,light,10,Three lights that formed a triangle moving across clear skies. +2013-07-02,36.065,-108.6813889,Naschitti,NM,triangle,60,Triangle lights formed and were all moving at the same speed!!!! +2013-07-02,36.2694444,-95.8544444,Owasso,OK,fireball,600,Two flying fire balls. +1952-07-22,34.0016667,-88.7552778,Okolona,MS,oval,300,Oval UFO paces occupants in automobile for 5 minutes on major highway +1959-07-22,37.3711111,-85.5830556,Allendale,KY,light,300,07/22/1958 Allendale Ky Light in the sky moving very fast lasting 5 min. posted 10/02/05 +1968-07-22,46.3580556,-94.2005556,Brainerd,MN,circle,600,very bright light on surface of lake which traveled very quickly out of sight +1970-07-22,42.9275,-83.63,Grand Blanc,MI,light,600,Bright light shining with 4 lizard-like beings approaching. 500 Lights On Object0: Yes +1970-07-22,37.9577778,-121.2897222,Stockton,CA,fireball,5,ball of fire in summer sky +1971-07-22,32.2216667,-110.9258333,Tucson,AZ,teardrop,60,just after midnight ,craft travling about 45 mph,at 100ft from north to south on the west side of the waste dumps at pima mine 30 mile +1973-07-22,42.5847222,-87.8211111,Kenosha,WI,other,120,Moving lights high in the sky +1973-07-22,44.7636111,-121.265,Warm Springs,OR,disk,60,Craft with green beam over Warm Springs, Oregon +1973-07-22,43.4241667,-71.415,Gilmanton,NH,circle,1800,movement ove UFO was SW. to NE. AT 5, P. H. +1974-07-22,38.5347222,-105.9983333,Salida,CO,disk,300,Silver disc shaped close encounter with biological effects. +1975-07-22,40.6213889,-79.1527778,Indiana,PA,cone,14400,cone - orange ball on top orange cone then changing to yellow with yellow ball on bottom +1975-07-22,41.7797222,-71.4377778,Cranston,RI,light,1200,religious connection +1975-07-22,35.7719444,-78.6388889,Raleigh,NC,unknown,25,((HOAX??)) saw 5or 6 lights circling overhead object blocked out stars. 500 Lights On Object0: Yes +1977-07-22,37.3477778,-120.6080556,Atwater,CA,disk,180,while on the way home from the drive in movies we saw a falling star slow to a stop just in front of us +1978-07-22,30.3672222,-89.0927778,Gulfport,MS,chevron,300,Grouped lights in sky moving fast in a configuration of a chevron or partial diamond. +1978-07-22,33.4483333,-112.0733333,Phoenix,AZ,changing,180,2 large silver craft, rotating above us. Changed shape rapidly, and disapered into the darkness in a burst of light. +1980-07-22,35.5741667,-105.6744444,Pecos,NM,triangle,30,two florescent triangles, huge +1981-07-22,38.7544444,-90.3311111,Berkeley (St. Louis Suburb, Near Lambert Airport)),MO,diamond,120,Two diamond shaped objects observed in sky. +1982-07-22,39.2191667,-121.06,Grass Valley,CA,other,45,Spectrum of bright colored rings reasembling a bull's eye +1987-07-22,47.6063889,-122.3308333,Seattle,WA,triangle,120,Saw a triangular light formation on an aerial object with a light pulsing in the middle pass directly overhead on the Puget Sound +1992-07-22,34.0536111,-85.255,Cedartown,GA,circle,300,Both UFO's left very quickly as they came +1997-07-22,26.9677778,-80.1288889,Tequesta,FL,fireball,60,Saw object resembling firework flare streaking across sky. First thought: shooting star but much too large for placement in sky. +1997-07-22,33.5869444,-105.1727778,Arabela (Near Roswell),NM,triangle,9000,I was on a ranch that I was living on at the base of the capitain mountains, and was sitting outside the house under a tree, when he to +1997-07-22,41.9433333,-75.6,Susquehanna,PA,circle,480,Large clear orangish circle shaped object. +1998-07-22,34.8027778,-86.9716667,Athens,AL,disk,10,UFO sighting in Athens, Alabama +1999-07-22,36.1538889,-95.9925,Tulsa,OK,light,2,Meteor w/ sparks. +1999-07-22,45.7055556,-121.5202778,Hood River,OR,diamond,45,The critical detail would be of the shape and brilliant colors of pink and purple. +1999-07-22,26.7052778,-80.0366667,West Palm Beach,FL,changing,300,Black object with no discernable shape appeared North of Palm Beach International Airport at 1500 - 3000 ft. for five minutes. +1999-07-22,39.4194444,-76.7805556,Owings Mills,MD,unknown,10,I saw four bright white lights, one red in a pattern straight across not similar to any aircraft I've ever seen. +2000-07-22,41.1280556,-101.7191667,Ogallala,NE,other,1500,Multi Colored Panels. Could not have been a plane. To Fast to Be a Satellite. No Sound At All! +2000-07-22,40.4405556,-79.9961111,Pittsburgh,PA,light,300,Starlike light in the day sky then just disappeared +2000-07-22,39.8366667,-105.0366667,Westminster,CO,other,1800,We saw 2 unusual shapes early evening, both objects changed color and shape for approx 30min. +2000-07-22,33.0275,-96.4338889,Lavon,TX,fireball,5,Bright Firey ball hovering in sky. +2000-07-22,43.8013889,-91.2394444,La Crosse,WI,light,8,Object appeared in telescope field of view, and executed 90 degree turn before moving out of field of view. +2001-07-22,45.5230556,-122.9886111,Hillsboro,OR,light,5,Big, bright, white, light receding quickly from view. +2001-07-22,46.7791667,-90.7863889,La Pointe,WI,light,180,Two lights and a swath of light in front move noiselessly retaining relative positions, high in atmosphere until horizon. +2001-07-22,42.0841667,-88.0130556,Rolling Meadows,IL,disk,600,Saucer siting with chase planes in IL +2001-07-22,44.9144444,-92.7655556,St. Marys Point,MN,formation,15,Two white lights,one infront of the other flying at the same ROS from West to East on 7/22/01 between 3 -3:30 am. no sound,no strobes. +2001-07-22,45.2547222,-87.0713889,Ellison Bay,WI,other,300,TWO LIGHTS MOVING AS ONE WITH A BEAM OF LIGHT PRECEEDING THEM +2001-07-22,45.5236111,-122.675,Portland,OR,changing,1200,In bright daylight, bright object observed-thru binoculars it looked wierd-second bright object traversed path of first. +2001-07-22,37.775,-122.4183333,San Francisco,CA,other,600,Orbs appearing in increasing infrared light from setting sun. +2001-07-22,30.4055556,-86.6188889,Fort Walton Beach (Mary Esther),FL,oval,60,Oval object seen following small airplane with possible evasive maneuvers by plane, two witnesses. +2001-07-22,38.2097222,-84.2530556,Paris,KY,egg,300,Lights off in the distance flew close to us for a few seconds and in ablink of the eye they were gone. +2001-07-22,42.1047222,-70.9458333,Abington,MA,light,0.5,I saw a big light streak across a good portion of the sky in very little time. It seemed to be too big to be a shooting star. +2001-07-22,47.98,-98.9925,Fort Totten,ND,other,3600,moving objects in the sky +2001-07-22,45.5872222,-122.3983333,Camas,WA,sphere,1.5,A sphere falling from the sky in the south. +2001-07-22,38.9583333,-122.6252778,Clearlake,CA,light,60,Two objects steady burning / high elevation , no sound . +2001-07-22,37.7975,-120.9955556,Escalon,CA,light,5,Super fast streak of light +2002-07-22,39.6133333,-105.0161111,Littleton,CO,circle,60,A Pulsing Red Orb shaped object came accross the foothills eastward above Dear Creek Canyon. +2003-07-22,37.8772222,-122.1786111,Orinda,CA,circle,600,Circular object with v-shaped notch, hovering in daylight +2003-07-22,41.7858333,-88.1472222,Naperville,IL,triangle,60,2 jetliners 1 glowing white Triangle ufo, intersecting flight paths Triple Near miss Clear Day . +2003-07-22,33.9241667,-81.3938889,Gilbert,SC,light,20,I have pictures. I had just bought a new digital camera and was trying it out on my tripod. I live on a lake and we had just experience +2003-07-22,47.9447222,-122.3033333,Mukilteo,WA,cylinder,300,2 Bright glowing lights over Paine Field, (Boeing) in Everett Washington +2003-07-22,47.7544444,-122.1622222,Woodinville,WA,light,120,The Same Bright Light ! +2003-07-23,48.1958333,-114.3119444,Kalispell,MT,unknown,900,object moved in odd directions and amazing manuvering ablitites and speeds +2004-07-22,40.7141667,-74.0063889,New York (Upstate),NY,light,900,upstate weirdness +2004-07-22,32.7947222,-116.9616667,El Cajon,CA,triangle,3600,I saw some bright lights shining through my window. I observed outside and saw three objects with blinking lights +2004-07-22,33.6602778,-117.9983333,Huntington Beach,CA,egg,3,While video taping a spider making a web ,I captured a U.F.O. fly bye in the sky behind the spider. +2004-07-22,40.8,-96.6666667,Lincoln,NE,other,180,4th observation of a light above my skies in pattern +2004-07-22,45.1608333,-93.2347222,Blaine,MN,circle,300,Looked like planet at first (mars) it was changing colors and was stationary (hoovering) but then began to move away slowly until out o +2004-07-22,45.5236111,-122.675,Portland,OR,circle,8,Around 11:10 p.m. on July 22񫺔 my boyfriend and I were out watching satelites on our front lawn. As I looked to my right I exclaime +2004-07-22,42.7875,-86.1088889,Holland,MI,fireball,3,Green light streaking vertically towards Lake Michigan +2005-07-22,45.4313889,-122.7702778,Tigard,OR,triangle,240,Black thin Mantaray shape w/dome and rods no lights or sound. Flew like wing, then moved horizontally in upright vertical position. +2005-07-22,30.3319444,-81.6558333,Jacksonville,FL,light,1800,at first i thought that they were aircraft but they weren't as high or low as the airplanes and helicopters were. They seem to just lin +2005-07-22,37.7588889,-77.4802778,Ashland,VA,circle,600,Verry large black ring/circle arose from a distance to one altitude and begun a steady coarse though the clouds. +2005-07-22,38.4408333,-92.9916667,Stover,MO,light,180,orangish white object streaks across sky , then a dark object with 2 white lights moves across the sky +2005-07-22,33.78,-118.2616667,Wilmington,CA,other,420,faintly red/white glowing object seen over Wilmington,CA +2005-07-22,37.1738889,-95.1944444,Stover,KS,other,1500,2 bright white objects with red , blue and orange light moving rapidly around them ( 3 adult viewers ) +2006-07-22,28.9002778,-81.2638889,Deltona,FL,circle,300,There was a light,it shot to the right,stopped then shot to the left and disappeared. +2006-07-22,41.6005556,-93.6088889,Des Moines,IA,light,45,Flash of white light turns into orb then dims to likeness of dimm star. +2006-07-22,34.1336111,-117.9066667,Azusa,CA,egg,600,egg shaped orange light braks in 2 then disapears over azusa +2006-07-22,38.6272222,-90.1977778,St. Louis,MO,triangle,120,Large black fast moving triangular shaped aircraft rumbling across the sky. +2006-07-22,37.9358333,-122.3466667,Richmond,CA,circle,1800,One round white ball that sat in the sky. +2006-07-22,33.9213889,-78.0205556,Southport,NC,cigar,120,Two cigar shaped objects sighted over Southport-Fort Fisher Ferry. +2006-07-23,28.46,-98.1822222,Three Rivers,TX,other,300,it look lie a box gold wavie very hot and loud like jet plan +2007-07-22,30.2669444,-97.7427778,Austin,TX,circle,45,Witnessed a group of 8 or 10 high altitude glowing lights traveling at very high speed from north to south over austin +2007-07-22,44.8975,-85.9852778,Glen Arbor,MI,light,3600,Two lights, opposite sides of night sky. Random paths of high speed movement. MI ((NUFORC Note: Sighting of Venus and Jupiter? PD)) +2007-07-22,43.2797222,-75.6438889,Blossvale,NY,circle,7200,circle flashing blue, green, white and red. +2007-07-22,38.5816667,-121.4933333,Sacramento,CA,triangle,1140,I work late at night, on the way home I saw a Craft that seemed to be siting still. I got home and started looking at it closer...I'm l +2007-07-22,33.5205556,-86.8025,Birmingham,AL,chevron,5,southwestern skies of Birmingham, black object dart and zig zag then flee without trace +2007-07-22,33.4147222,-111.9086111,Tempe,AZ,cylinder,40,Stark white object flying over Tempe Arizona in strange non-linear aeronautical movements. +2007-07-22,37.3394444,-121.8938889,San Jose,CA,other,3600,it was a shinny metal, 5 balloon looking object with something protruding from the bottom. +2007-07-22,28.0911111,-82.78,Crystal Beach,FL,disk,1800,A stationary object positioned in sky over neighborhood. +2007-07-22,47.5002778,-111.3,Great Falls,MT,teardrop,600,black triangular object in southeast sky hovering at a lower altitude and proceeding to hover at much higher altitude for 10 minutes. +2007-07-22,40.7933333,-73.4155556,Melville,NY,rectangle,600,Two bright rectangular objects on opposite sides of the Horizon at Sunset that were bright for ten minutes and then dimmed out of the s +2007-07-22,42.1391667,-87.9288889,Wheeling,IL,circle,180,Red round light in sky fading in and out , then light starts to fall towards earth +2007-07-22,46.6022222,-120.5047222,Yakima,WA,flash,1,Looking about 10 degrees South of due East, at about 45 degrees above horizon, I saw a brief flash of light...not moving. +2007-07-22,39.7661111,-105.0766667,Wheat Ridge,CO,triangle,1200,Triangle Bright light formation flying sideways +2008-07-22,33.9925,-117.5155556,Mira Loma,CA,other,6,a fire trail and fire ball explosion about 20 miles southwest of large airport - possible magnetic effects. +2008-07-22,40.4863889,-86.1336111,Kokomo,IN,light,14400,We keep seeing bright orange lights show up in the sky, fading out, and becoming large stars that dash back and forth. +2008-07-22,40.4863889,-86.1336111,Kokomo (East Of),IN,light,900,White lights seen 7/22/08 kokomo IN +2008-07-22,40.7536111,-86.0688889,Peru,IN,fireball,1320,4 orange fireballs satelitting a bright white light. +2008-07-22,45.6872222,-120.8125,Maryhill,WA,disk,60,My brothers and I saw a large spinning disk with lights hovering while we were camping. +2008-07-22,30.2263889,-93.2172222,Lake Charles,LA,circle,480,Bright object high alt. travels from A to B in 10sec. from B to C in 10sec. Total travel time 3-5 min. read report for details. +2008-07-22,40.6233333,-79.73,Natrona Heights,PA,fireball,240,Orange light over natrona heights, pa +2009-07-22,39.6527778,-78.7627778,Cumberland,MD,light,3600,bright fadeing light in south eastern sky +2009-07-22,42.4486111,-83.8016667,Hamburg,MI,other,120,Single Electric Blue gumdrop shaped object appeared with a flash and appeared to land. +2009-07-22,42.1016667,-102.8716667,Alliance,NE,light,1800,Saw 7 ufo's in the night sky; all within a 30 min.; most of which were going different dir.'s. ((NUFORC Note: Satellites? PD)) +2009-07-22,39.6313889,-106.5216667,Avon,CO,light,40,A very large bright light moving fromeast to west a a very high speed. +2009-07-22,37.4536111,-90.7947222,Lake Springs,MO,light,60,three ufo's one starlike and two craft like +2009-07-22,47.7625,-122.2041667,Bothell,WA,light,180,Bright glowing ball of light in the sky, shot down by plane, retreated and darkened very quickly +2009-07-22,44.4563889,-89.5438889,Plover,WI,light,300,Object seen looked like a very bright low flying star, no engine noise, perfectly clear sky. ((NUFORC Note: ISS?? PD)) +2009-07-22,42.0161111,-76.7272222,Wellsburg,NY,fireball,5,Silent ball of light, turned and disappeared followed by a flash of light in the sky. +2009-07-22,43.8955556,-103.4177778,Keystone,SD,circle,45,Strange Orb light in the sky. ((NUFORC Note: Sighting of ISS? Please check . PD)) +2009-07-22,30.085,-97.84,Buda,TX,light,300,about 3 white lights, close together, flying in mid sky in straight line at somewhat a fast speed +2009-07-22,47.6063889,-122.3308333,Seattle,WA,changing,1500,obseved star like UFO fading from very bright to a dim red light, disappering altogether and reappering for 25 minutes at 11:25 July 22 +2009-07-22,37.3688889,-122.0352778,Sunnyvale,CA,disk,10,very big shiney disc traveling quietly, high & fast, no lights, directly north in sunnyvale ca +2010-07-22,34.5636111,-111.8536111,Camp Verde,AZ,circle,3600,I went out on my porch to smoke a cigarette and noticed to my left lighting. We just had a storm and there is a great deal of cloud co +2010-07-22,41.4988889,-72.9011111,Cheshire,CT,cigar,60,Grey cigar shaped object over Cheshire, CT, around midnight. +2010-07-22,47.6588889,-117.425,Spokane,WA,light,30,Large bright light that was still but then quickly moved across the sky faster than an airplane could have and it was very big. +2010-07-22,39.5608333,-75.3627778,Alloway,NJ,other,21600,Unexplained lights and movement were spotted in the sky above my friends house. +2010-07-22,42.4594444,-83.1827778,Oak Park,MI,circle,60,Orange light zigzagging in the sky +2010-07-22,38.1302778,-121.2713889,Lodi,CA,cross,30,Low flyng glowing goldish UFO +2010-07-22,44.5402778,-123.3663889,Philomath,OR,unknown,120,UFO follows plane +2010-07-22,34.6777778,-76.9511111,Emerald Isle,NC,circle,2700,4 red/amber lights seen 4 times in 45 minutes- no sound, circular shape- clear night. +2010-07-22,34.695,-76.5597222,Harkers Island,NC,light,6,5 TO 6 RED LIGHTS IN A ROW , NOT MOVING,THEN THEY ALL WENT OUT AT SAME TIME. +2010-07-22,43.6105556,-72.9730556,Rutland,VT,fireball,600,WOW +2010-07-22,34.6972222,-76.8136111,Pine Knoll Shores,NC,circle,10,yellow-orange circular lights sighted above beach in nc +2010-07-22,34.6988889,-76.7405556,Atlantic Beach,NC,changing,2,3 separate incidents of large saucer shaped object(s) and small round lights, reddish orange-ish, witnessed by 2 or 3 people. +2010-07-22,34.6777778,-76.9511111,Emerald Isle,NC,triangle,300,UFO over Emerald Isle, NC 7/22/2010 +2010-07-22,34.6863889,-76.8955556,Indian Beach,NC,disk,8,Brilliant orange saucer shaped object high over ocean near Indian Beach, NC was observed and then reappeared appox. 15 minutes later. +2010-07-22,38.2683333,-90.38,Herculaneum,MO,fireball,600,flaming orange object flying in sky +2011-07-22,39.5580556,-86.0952778,New Whiteland,IN,formation,3600,3 craft in formation over New Whiteland and surrounding area. ((NUFORC Note: Possible sighting of "twinkling" star. PD)) +2011-07-22,43.7666667,-103.5983333,Custer,SD,circle,300,Orange Lights East of Custer, SD +2011-07-22,33.1030556,-96.6702778,Allen,TX,triangle,120,Two triangle objects with blinking white and one red light. Flying at very low altitudes over suburbs silently. +2011-07-22,33.1975,-96.615,Mckinney,TX,light,4,White light fell out of the sky +2011-07-22,29.7630556,-95.3630556,Houston,TX,light,2,It was bright circle that flew very fast and below airplane level +2011-07-22,29.7630556,-95.3630556,Houston,TX,light,10,Green light in the sky, Houston, TX +2011-07-22,42.3683333,-83.3527778,Livonia,MI,fireball,420,Bright orange light flew quickly through air, hovered, and flew out the atmosphere quickly when a plane approached. +2011-07-22,33.4330556,-79.1216667,Pawleys Island,SC,sphere,240,Large orange glowing orb moving over Litchfield Beach +2011-07-22,43.1788889,-88.1172222,Menomonee Falls,WI,light,2100,Star wars in the wisconsin northern skys!!! +2011-07-22,35.9605556,-83.9208333,Knoxville,TN,fireball,180,One spherical fireball which quickly died out leaving a dark, spinning mass that drifted southwest as it descended +2011-07-22,28.8002778,-81.2733333,Sanford,FL,triangle,5,Triangular hovering projecting bright lights over lake near bridge +2011-07-22,34.0555556,-117.1816667,Redlands,CA,light,6,Red/white light first mistaken for a shooting star then went in a zigzag pattern before disappearing. +2011-07-22,45.5236111,-122.675,Portland,OR,light,30,Large neon blueish bright white light flying and hovering in all directions in NE Portland. +2011-07-22,33.5458333,-82.3161111,Appling,GA,fireball,30,Driving home late one night when this fireball appeared in the sky it was just one maybe 10 ft. in diameter it slowly moved to the righ +2011-07-22,44.9238889,-92.9591667,Woodbury,MN,unknown,300,Silent, orange, glowing craft flies over Woodbury Minnesota. +2011-07-22,29.0255556,-80.9272222,New Smyrna Beach,FL,fireball,30,Fireball and explosion in the sky over N. Central Florida. ((NUFORC Note: Probably not a meteor. PD)) +2011-07-22,47.6733333,-117.2383333,Spokane Valley,WA,disk,600,Bright, Strobing Arc-Shaped light hovering over Spokane Valley, MAKING 90 DEGREE TURNS! +2012-07-22,27.9375,-82.2861111,Brandon,FL,fireball,300,Fireballs over Brandon Florida +2012-07-22,42.5636111,-84.8358333,Charlotte,MI,light,3600,Several pulsating lights performing impossible maneuvers in the night sky +2012-07-22,40.015,-105.27,Boulder,CO,light,10800,4 bright lights observed for 3 hours above Boulder/Lafayette, CO with repeated movements as if surveying the land. ((Planets?? PD)) +2012-07-22,35.9594444,-95.3691667,Wagoner,OK,triangle,20,Low flying silent triangular shape with green and white lights +2012-07-22,34.1741667,-97.1433333,Ardmore,OK,unknown,5400,My husband and I went outside at 4am last night to look at this strange star my husband told me he saw the other night. The star wasn't +2012-07-22,39.7047222,-105.0808333,Lakewood,CO,changing,10,Fire Ember in the Sky That Changes Form and Does Tricks Like a Bird +2012-07-22,41.8519444,-75.3816667,Lakewood,PA,oval,360,A strange object in the sky, portrayed a beam of light, as I took the picturee of it, it suddenly vanished. +2012-07-22,33.8358333,-118.3397222,Torrance,CA,sphere,300,Reddish orange orb over Torrance, CA +2012-07-22,41.6458333,-70.6188889,North Falmouth,MA,sphere,900,Red flickering lights over Falmouth. +2012-07-22,35.7452778,-89.5297222,Ripley,TN,triangle,7,Saw triangle shape, 3 dim lights, moving very fast,no sound, visable only with aid… +2012-07-22,39.4141667,-77.4108333,Frederick,MD,circle,15,NOISELESS OBJECTS MOVING OVER FREDERICK, MD. +2012-07-22,39.4141667,-77.4108333,Frederick,MD,circle,900,Silent orangish-red silent objects in the night sky +2012-07-22,39.9369444,-120.9461111,Quincy,CA,flash,1200,A strange flash seen in sky showing evidence of ufo +2013-07-22,34.698055600000004,-118.1358333,Lancaster,CA,circle,5,White glowing circular light flies across sky for only a moment then disappeared. +2013-07-22,34.7575,-112.4530556,Chino Valley,AZ,sphere,3,Bright white orb below cloud level pulsates, then disappears, heading North towards I-40 +2013-07-22,47.6063889,-122.3308333,Seattle,WA,oval,540,Two large, brightly lit oval disks seen from West Seattle South over Puget Sound +2013-07-22,33.6058333,-78.9733333,Surfside Beach,SC,light,900,Surfside Beach, SC strange orange lights +2013-07-22,33.6888889,-78.8869444,Myrtle Beach,SC,triangle,2,I saw 3 orange lights that formed a triangle shape in the sky then they vanished. +2013-07-22,33.6888889,-78.8869444,Myrtle Beach,SC,triangle,5,Orange lights in shape of triangle. +1973-07-23,35.9572222,-75.6244444,Nags Head,NC,unknown,300,Pulsing green light over the ocean horizon +1982-07-23,36.9902778,-86.4436111,Bowling Green,KY,other,20,JFK FIGURE SEEN IN OUR WAL-MART +1982-07-23,35.6013889,-84.4611111,Sweetwater,TN,cylinder,600,A UFO sighting in Sweetwater, Tennessee in 1982, witnessed by many +1985-07-23,47.5708333,-122.2208333,Mercer Island (Seattle),WA,diamond,1500,I was on my way to work on 3rd shift. I driving across Mercer Island. I noticed several were slowing or pulled off to the side of the +1986-07-23,34.5008333,-117.185,Apple Valley,CA,triangle,1200,Three bright lights moving in a triangular pattern and then seperating +1987-07-23,33.5091667,-111.8983333,Scottsdale,AZ,unknown,1800,1 UFO 30 degrees off horizon due west of Scottsdale, AZ. Red, White, Blue, Green flickering lights. Hovered for about 20 minutes. Mo +1994-07-23,42.1427778,-77.055,Corning,NY,triangle,5,Triangle UFO above Corning, NY. +1996-07-23,25.7902778,-80.1302778,Miami Beach,FL,triangle,5,A friend of mine and me were camping on my roof we saw a green triangle shape thing zip by. This was no meteor because it slowed down +1996-07-23,36.5858333,-79.3952778,Danville,VA,disk,300,as the ufo took off at very high speed ,the jets coming in 10 to 15 minutes later meant it was definately something. +1997-07-23,34.0522222,-118.2427778,Los Angeles,CA,other,300,On busy Wilshire Blvd. I looked up between tall buildings, saw "Top Hat" shaped craft stationary between buildings. There were porthol +1997-07-23,38.7133333,-77.7955556,Warrenton,VA,triangle,10,triangular metalic object high in the sky moving at an extreme high rate of speed.changed direction 3 times at sharp angles. +1997-07-23,33.4483333,-112.0733333,Phoenix,AZ,triangle,60,July 23, 1997; 8:25 PM; Phoenix AZ/ 9822 N. 16th Place; Looking west, then north. Three witnesses at the same location as the March 13t +1997-07-23,40.5308333,-112.2975,Tooele (Near),UT,light,60,Large orange light with a tail fanning out.After seeing for about one minute it slowlyfaded away. Resembled Comet Hale-Bopp. +1997-07-23,25.7738889,-80.1938889,Miami,FL,formation,180,RE; Six stars in a vertical line, moving all at the same speed. +1997-07-23,25.7738889,-80.1938889,Miami,FL,formation,180,Six stars in a vertical line, moving all at the same speed. +1999-07-23,41.8661111,-88.1069444,Wheaton,IL,other,7200,Over the past several weeks my family and I have been seeing strage lights in the sky. The first time I saw the object I believed it wa +1999-07-23,43.1752778,-90.0677778,Spring Green,WI,light,7200,saw a moving light in the sky +1999-07-23,41.5680556,-87.6080556,Thornton,IL,light,300,a loud sound and light entered my room +1999-07-23,44.3955556,-69.5716667,South China,ME,other,300,A self luminous eliptical object was seen to be descending towards the horizon. +1999-07-23,39.4152778,-81.455,Marietta,OH,cigar,45,2 craft appeared from the west chasing one another acrost the sky before they took off down the ohio riverand out of site +1999-07-23,41.6683333,-74.1030556,Modena,NY,cigar,300,Saw and video taped strange objects over my house. +1999-07-23,31.0397222,-104.8302778,Van Horn,TX,disk,300,I am a truck driver I was traveling west bound on I 10 through the town of van Horn a appox 11:00PM Friday the 23rd. I was listening t +1999-07-23,40.1225,-75.0638889,Huntingdon Valley,PA,disk,90,DERBY SHAPED CRAFT TRAVEL WEST-EAST. +1999-07-23,41.7383333,-95.7025,Woodbine,IA,unknown,240,two groups of lights two flashing one just on both groups mirroring the other +1999-07-23,36.1397222,-120.3591667,Coalinga,CA,triangle,120,interstate 5 ufo +2000-07-23,47.9791667,-122.2008333,Everett,WA,unknown,90,Bright object, "apparently" hovering, suddenly vanished from sight. +2000-07-23,38.1041667,-122.2555556,Vallejo,CA,cigar,1800,Several objects seen in formation to the northeast of Vallejo California. +2000-07-23,39.9611111,-82.9988889,Columbus,OH,light,15,It appeared to leap into space almost institaniously +2001-07-23,36.1080556,-115.2441667,Spring Valley,NV,cigar,300,Cigar shaped craft over vegas. +2001-07-23,38.0683333,-78.8897222,Waynesboro (Near),VA,triangle,360,I observed a triangular shape moving strangely blocking starlight, and make a sharp(but not a right-angle) turn. +2001-07-23,44.9444444,-93.0930556,St. Paul,MN,light,3600,Twelve star-like objects viewed in random patterns over St. Paul, Minnesota +2001-07-23,42.4727778,-122.8016667,Eagle Point,OR,sphere,300,Disappeard and reappeared in nonsequential order. +2001-07-23,42.7255556,-77.8744444,Mount Morris,NY,triangle,300,My sister, a female friend and I had just entered the portch area when the whole house started shaking. There was a very loud roar whic +2001-07-23,43.2866667,-76.1463889,Central Square,NY,triangle,20,Triangular metallic object emitting trail of orange, travelling extremely fast +2001-07-23,40.3211111,-79.3797222,Latrobe,PA,fireball,120,flaming metalic ball which tail got longer +2001-07-23,39.2997222,-75.605,Smyrna,DE,egg,10,SEEN A WHITE TRAIL VERY FAST ,EGG IN FROUNT , EGG WAS BLUE +2001-07-23,47.1041667,-122.4333333,Spanaway (Graham),WA,unknown,2,This report is not a "sighting" of any UFO, but a happening that was strange. My neighbor was visiting, so I did not experience this al +2001-07-23,42.9236111,-124.4497222,Langlois,OR,cigar,60,A long rocket like cigar with "fins" attached to it's body flying in a seemingly upward pitch. +2001-07-23,45.3,-122.7725,Wilsonville,OR,triangle,300,Black rounded corner pyramid, or triangle moving slowly without lights, sound, or visible means of propulsion, Wilsonville, OR. +2001-07-23,45.3,-122.7725,Wilsonville,OR,triangle,300,Slow moving, quiet, dark object wandered up and to the South, avoiding a big cloud. +2001-07-23,45.3575,-122.6055556,Oregon City,OR,triangle,900,Spoted craft at a low altitude southwest of town . It appeared to be traveling about sixty miles per hour . As the craft got closer I w +2001-07-23,39.8813889,-83.0930556,Grove City,OH,light,15,Very bright light at a high rate of speed ... stopped for 5 seconds... shot off in a different direction....no sound...sceptical witnes +2001-07-23,32.8722222,-116.4175,Mt. Laguna,CA,triangle,60,Black triangluar craft seen near Mt. Laguna Air Force Station. +2001-07-23,33.1191667,-117.0855556,Escondido,CA,diamond,120,Second sighting of a craft near Escondido, CA the night of 7/23/01 +2001-07-23,42.6583333,-71.1375,Andover,MA,other,180,Random Moving Object +2002-07-23,38.8338889,-104.8208333,Colorado Springs,CO,sphere,20,Glowing silver-blue sphere which vanished. ((NUFORC Note: Possible sighting of Iridium satellite "flare?" PD)) +2002-07-23,28.5555556,-82.4505556,Spring Hill,FL,sphere,30,A small silver floating ball, the size of a soft ball. +2002-07-23,35.7547222,-118.4244444,Kernville,CA,chevron,60,Chevron Shaped vehicle with blinking red lights +2002-07-23,34.0522222,-118.2427778,Los Angeles,CA,chevron,600,A large chevron shape of red twinkling lights slowly moving across the sky in the Mid-City area of Los Angeles, CA +2002-07-23,35.1322222,-118.4480556,Tehachapi,CA,other,1325,A wide arc shaped object with redish and white blinking lights traveled north to south over Tehachapi, CA at 10PM, on 7/23. +2002-07-23,34.0522222,-118.2427778,Los Angeles,CA,changing,600,By now, I have read a number of accounts from others who witnessed what I did this night. (I am reporting this over one year following +2002-07-23,34.4436111,-118.6086111,Valencia,CA,unknown,1800,Eight objects flying in a modified V formation; seven smaller objects all with one red light, white light on larger object +2002-07-23,33.3427778,-118.3269444,Avalon,CA,triangle,30,Triangle. +2002-07-23,46.3958333,-112.7291667,Deer Lodge,MT,disk,20,UFO above mountain +2002-07-23,34.0194444,-118.4902778,Santa Monica,CA,triangle,60,ROUGHLY AROUND 10:15 PM WIFE WITH NUMBEROUSE WITNESSES SAW SIMILAR SIGHTING AS THE PHOENIX LIGHTS.SHE GOES ON TO DESCRIBE HOW SHE SAW I +2002-07-23,33.9802778,-118.4508333,Marina Del Rey,CA,chevron,120,Multiple rotating red beacons attending main jet-like craft without evident connection to superstructure... +2002-07-23,33.3427778,-118.3269444,Avalon,CA,formation,180,Triangle shaped light formation seen over Catalina Island by many people. +2002-07-23,33.3427778,-118.3269444,Avalon,CA,triangle,30,Very, very, big slow flying Triangle with flasing red lights covering the outside edge of each of the two wings that made up the Triang +2002-07-23,36.2961111,-119.1411111,Exeter,CA,triangle,1800,red lit triangle +2002-07-23,34.2011111,-118.5355556,Reseda,CA,triangle,600,My husband and I were bringing in the trash cans and I was looking out at the northwest sky and saw a cluster of red and blue lights wi +2002-07-23,36.5641667,-118.7727778,Sequoia National Park,CA,triangle,120,V shaped aircraft at Sequoia National Park. +2003-07-23,42.4155556,-96.4180556,Dakota City,NE,unknown,300,I am a student at the University of Nebraska at Omaha. I am now home for the summer and when I got home from work one night I saw three +2003-07-23,47.3294444,-122.5788889,Gig Harbor,WA,triangle,120,Triangular white lights with smaller red and blue strobing lights near the white lights. +2003-07-23,44.3580556,-89.0858333,Waupaca,WI,circle,25,I was sitting out side my house when I saw A shinney round object going across the sky. 30 sec. later two fighter jets came after flyin +2003-07-23,44.8277778,-92.9436111,Cottage Grove,MN,changing,600,I saw a strange light show over suburban Minnesota +2003-07-23,44.8477778,-85.7955556,Cedar,MI,sphere,120,Red flashed white. Northern Michigan +2004-07-23,34.1063889,-117.3694444,Rialto,CA,unknown,3600,This is not the fist time I have seen strange objects in the sky. I reported a sighting to George filer approx aug. 2002 along with pho +2004-07-23,47.6816667,-122.2075,Kirkland,WA,sphere,120,Seeing the sphere again and again very high, red/orange this time +2004-07-23,32.7252778,-97.3205556,Fort Worth,TX,unknown,2,white object between Ft Worth and Dallas +2004-07-23,40.7544444,-86.3566667,Logansport,IN,changing,120,At first we thought it was a bright star but then it got bigger & brighter and disappeared then a yellowish lit up banana shape appeare +2004-07-23,44.426944399999996,-124.0675,Waldport,OR,cigar,120,bright craft traveling fast ((NUFORC Note: Possible satellite or ISS? PD)) +2004-07-23,29.7630556,-95.3630556,Houston,TX,formation,1260,Two craft near Houston witnessed by 8 people....AMAZING!!! Pictures taken... +2004-07-23,33.7488889,-84.3880556,Atlanta,GA,sphere,600,Similar craft spotted again. Second sighting within a week. Check my first report +2004-07-23,36.3275,-119.6447222,Hanford,CA,disk,1200,Spinning dome shaped object hovering in sky with red tint &pulsing white light. +2004-07-23,34.0522222,-118.2427778,Los Angeles,CA,flash,900,The ball of light moved from one place to another at the blink of an eye, circling around the night sky until it flew higher and vanish +2004-07-24,34.7838889,-91.8997222,Lonoke,AR,changing,1200,on my way home, july23 2004 i followed a glowing light to my driveway. +2004-07-24,34.1083333,-117.2888889,San Bernardino,CA,fireball,120,I have seen these objects several times in the last two years other people have seen them also. +2005-07-23,39.6133333,-105.0161111,Littleton,CO,light,5,Beautiful blue light flashes by me. +2005-07-23,43.5944444,-83.8888889,Bay City,MI,disk,10800,Disk, at night, left stream of lights, time lapse. +2005-07-23,44.0522222,-123.0855556,Eugene,OR,cigar,300,I saw an object, flying, that I could not identify. +2005-07-23,33.8702778,-117.9244444,Fullerton,CA,other,1800,hoverd and moved at a very slow rate of speed, and rotated in variouse directions +2005-07-23,34.5794444,-118.1155556,Palmdale,CA,light,1800,More Dissolving "Stars" ((NUFORC Note: Satellites. PD)) +2005-07-23,35.3175,-82.5944444,Etowah,NC,other,900,My husband and I are building in N.C and are renting a house on the golf course in Etowah, N.C. On the evening mentioned, I went outsid +2005-07-23,33.5127778,-96.3922222,Whitewright,TX,light,600,It was like watching the changing of the guards, but they looked like moving stars? +2005-07-23,41.5033333,-74.0108333,Newburgh,NY,diamond,120,huge,triangle front view,diamond back view,hovering, two bright lights in front,silentƾ witnesses +2006-07-23,30.1819444,-96.5952778,Burton,TX,other,900,gold box maybe 30 x30 feet very hot wavie loud like a jet plane i was 100 yards from it +2006-07-23,37.6305556,-122.41,San Bruno,CA,unknown,2,((HOAX??)) thin rocket shaped, flying apparition,smoke cloud colored,fast ,no lights was i could tell it wasnt a meteor +2006-07-23,43.2127778,-75.4561111,Rome,NY,circle,2,BRIGHT ORB SEEN STILL IN THE SKY +2006-07-23,37.8216667,-121.9988889,Danville,CA,circle,120,Dull yellow non flashing light traveling from south to north making no noise above the San Ramon Valley +2006-07-23,43.9125,-88.0355556,Kiel,WI,light,10,A very fast moving satellite look alike. +2007-07-23,36.5858333,-79.3952778,Danville,VA,triangle,240,please call +2007-07-23,42.5294444,-83.7802778,Brighton,MI,light,900,Fast moving light stops in night sky +2007-07-23,42.2986111,-91.0147222,Cascade,IA,light,3,This is my second sighting in July. This early morning I was traveling south out of Dubuque, Ia on highway 151 near Cascade,Ia. I as al +2007-07-23,34.0552778,-117.7513889,Pomona,CA,light,300,Flashing lights over the Hills in Claremont. +2007-07-23,41.85,-87.65,Chicago (East Of),IL,cylinder,180,we both saw a huge dark cylinderical UFO with a haze around it ,moving real fast and also two small UFO like tear drop,vanishing in sec +2007-07-23,33.0144444,-97.0966667,Flower Mound,TX,fireball,3,Fireball near DFW Airport on 7/23/07 +2007-07-23,42.7677778,-78.6136111,East Aurora,NY,rectangle,180,what looked to be a series of lights on a hovering vehicle observed in the evening sky. +2008-07-23,43.0513889,-83.3188889,Lapeer,MI,circle,10,Here and Gone +2008-07-23,41.7858333,-88.1472222,Naperville,IL,triangle,60,Large flying triange with Squared off tips made humming noise in the clear early morning sky. +2008-07-23,38.9516667,-92.3338889,Columbia,MO,cigar,300,MISSOURI INVESTIGATORS GROUP Report:: I LOOKED UP AND SAW A SILVER CIGAR SHAPE OBJECT TRAVELING WEST TO EAST. +2008-07-23,38.9516667,-92.3338889,Columbia,MO,cigar,300,MISSOURI INVESTIGATORS GROUP Report: I WAS IN MY BACK YARD, I LOOKED UP AND SAW A SILVER CIGAR SHAPE OBJECT. +2008-07-23,46.8108333,-90.8180556,Bayfield,WI,disk,1200,Strobing orange craft changes position instantaneously. +2008-07-23,30.3672222,-89.0927778,Gulfport,MS,disk,3600,sitting in the woods at night with a friend i was biking with, a silver orb with a ring of different colored lights appeared +2008-07-23,40.4166667,-86.8752778,Lafayette,IN,light,2400,Orange balls of light two nights in a row +2008-07-23,40.4863889,-86.1336111,Kokomo,IN,unknown,600,6orange lights +2008-07-23,32.7252778,-114.6236111,Yuma,AZ,formation,20,Orange Lights Over Yuma +2008-07-23,33.9525,-84.55,Marietta,GA,other,300,Big Object In the sky in Georgia (North-West of Atlanta) In Late July 2008 +2008-07-23,36.8222222,-107.9922222,Aztec,NM,other,6,huge, bright meteor seen over Aztec, New Mexico +2009-07-23,39.8658333,-123.7130556,Leggett,CA,light,30,three separate intense light flashes not in line in clear mountain night +2009-07-23,33.1191667,-117.0855556,Escondido,CA,light,180,non-flashing high altitude light over north county San Diego +2009-07-23,39.7047222,-105.0808333,Lakewood,CO,light,2700,bright starlike lights in midday in colorado +2009-07-23,36.0625,-94.1572222,Fayetteville,AR,circle,60,A bright object that I identified to my boss incorrectly as the I.S.S. She stated it was moving to fast to be the I.S.S. and that it co +2009-07-23,41.3622222,-78.5963889,Kersey,PA,light,120,Bright light flew across the sky slowly then disappeared 2mins from sighting. ((NUFORC Note: Satellite?? PD)) +2010-07-23,38.3397222,-122.7,Rohnert Park,CA,fireball,60,Flickering gold light, inaudible, slowly moving along a low cloud ceiling +2010-07-23,47.6936111,-114.1622222,Polson,MT,cigar,10,Unusual looking metallic craft over the National Bison Range in Montana. +2010-07-23,35.7141667,-83.5102778,Gatlinburg,TN,unknown,1,I was taking photos in the smoky mountains while on vacation. ((NUFORC Note: Possible bird. PD)) +2010-07-23,43.6155556,-84.2472222,Midland,MI,other,300,what looked like jet lights flew over in formation, then scattered +2010-07-23,44.8513889,-123.1855556,Independence,OR,unknown,300,Rocket-like craft with centered- tail- trail over Willamette Valley, Oregon +2010-07-23,47.6063889,-122.3308333,Seattle,WA,other,1500,Visually observed and photographed pentagon-shaped/faceted object; light colored/no lights. ((NUFORC Note: Probably not a UFO. PD)) +2010-07-23,33.6602778,-117.9983333,Huntington Beach,CA,light,300,Zig-zagging point of light. +2010-07-23,33.9966667,-77.9075,Kure Beach,NC,light,1200,Group of UFO lights over horizon at Kure Beach, NC +2010-07-23,38.2541667,-85.7594444,Louisville,KY,triangle,60,Blk Triangle craft mimics aircraft in Metro louisville. +2011-07-23,48.051944399999996,-122.1758333,Marysville,WA,sphere,240,Two red fiery objects fly over Marysville, WA; multiple witnesses +2011-07-23,24.5552778,-81.7827778,Key West,FL,cigar,20,While swimming in our pool, over our heads at about 60 degrees towards north heading dead west a red and white oscillating strobe light +2011-07-23,29.6513889,-82.325,Gainesville,FL,flash,1,Odd asteroid streak +2011-07-23,45.3575,-122.3577778,Eagle Creek,OR,flash,5,Flashing light, no sound, up approx 20k to 40k ft. Went from southwest to northeast horizon in about 6 sec. +2011-07-23,33.4222222,-111.8219444,Mesa,AZ,circle,15,Big Round Circle UFO Sighting, A.M. +2011-07-23,27.4463889,-80.3258333,Fort Pierce,FL,light,300,Three light in the sky red and whites lights no tail standing still in the sky. Then the lights came together then seperated and left i +2011-07-23,41.9141667,-88.3086111,St. Charles,IL,light,300,I was on my outside back deck. My friend was with me and said what is that? I looked up and saw a very bright white light with no blin +2011-07-23,41.2619444,-95.8608333,Council Bluffs,IA,triangle,120,Object over council bluffs ia +2011-07-23,38.3030556,-77.4608333,Fredericksburg,VA,cigar,30,Large wingless aircraft +2011-07-23,47.6063889,-122.3308333,Seattle,WA,unknown,900,Three Silver Unknown Objects Observed Over Western Seattle Sky +2011-07-23,40.0747222,-91.3672222,Ursa,IL,light,3600,Daytime star. +2011-07-23,29.7630556,-95.3630556,Houston,TX,fireball,1200,Orange Orb/Ball near Downtown Houston. +2011-07-23,33.9561111,-83.9880556,Lawrenceville,GA,cigar,300,Silent white capsule-shaped object seen over Lawrenceville, GA +2011-07-23,35.1494444,-90.0488889,Memphis,TN,other,900,More Memphis UFOs-- confirmed by investigator as U/I. ((NUFORC Note: Student report. One of several from the same source. PD)) +2011-07-23,34.0336111,-117.0422222,Yucaipa,CA,light,2700,What appeared at first to be a pale yellow star, abruptly moved sideways and stopped over an oncoming jet airliner. +2011-07-23,43.2966667,-87.9875,Cedarburg,WI,light,60,Two amber lights over Cedarburg, WI. +2011-07-23,41.6030556,-93.7238889,Clive,IA,oval,60,Orange glowing ball moving slow powerd by jet like flame +2011-07-23,47.4019444,-122.3230556,Des Moines,WA,light,60,Lights over runway landing patterns +2011-07-23,41.6555556,-74.6897222,Monticello,NY,light,1,Me and a friend saw a giant blue/white light up in the sky that made no sound. ((NUFORC Note: Flare from "Iridium" satellite? PD)) +2011-07-23,38.9330556,-104.6080556,Falcon,CO,light,600,3 moving white lights over Front Range near Colorado Springs +2011-07-23,46.4166667,-117.0166667,Lewiston,ID,light,30,Fast traveling bright light that appeared and disappeared in less than 30 seconds. +2011-07-23,33.8352778,-117.9136111,Anaheim,CA,triangle,45,We were fishing in Anaheim, CA, on July 23, 2011, when we saw a large triangle UFO fly overhead +2011-07-23,32.7502778,-81.6369444,Sylvania,GA,fireball,10,Orange, slow moving, fireballs - south east of savannah nuclear plant +2011-07-23,41.85,-87.65,Chicago,IL,triangle,120,Three orange-red lights in shape of triangle with fourth light approaching during an intense lightning storm. +2012-07-23,42.1013889,-72.5902778,Springfield,MA,cigar,1800,For the past month on a daily basis I have seen what appear to be stars coasting across the night sky. The height or level of flight ap +2012-07-23,39.8016667,-89.6436111,Springfield,IL,circle,20,Bright, silent and disapears. +2012-07-23,46.5897222,-111.9147222,East Helena,MT,triangle,1200,Sighting of an arrowhead shaped craft about 100 feet over our heads with military escort. +2012-07-23,47.5288889,-114.1005556,Ronan,MT,sphere,5400,Three orbs flashing red and green over the Mission Mountains. ((NUFORC Note: Sighting of planets in the eastern sky? PD)) +2012-07-23,34.426944399999996,-77.5463889,Surf City,NC,formation,180,Two lights conected moving and still with small light moving around them +2012-07-23,38.8941667,-77.4313889,Chantilly,VA,other,600,Bat sign craft +2012-07-23,42.9413889,-83.2891667,Metamora,MI,fireball,240,Orange glowing orb around 3 minutes just above western horizon around 11:00 in the thumb area of Michigan. +2012-07-23,30.4211111,-87.2169444,Pensacola,FL,oval,5,Orange metallic colored ovals falling from the sky not fireworks falling straight down no way! +2012-07-23,36.175,-115.1363889,Las Vegas,NV,sphere,420,White spherical object sighted just to the west of downtown Las Vegas +2012-07-23,45.5236111,-122.675,Portland,OR,oval,8,Oval shaped hovering object outside of Portland Oregon. +2012-07-23,44.7563889,-122.4155556,Gates,OR,circle,7200,Ufo in Pictures +2012-07-23,36.1694444,-75.7555556,Duck,NC,light,420,Two distinct red lights observed NNE of Duck within 3 - 4 minutes of one another with dramatic speed and direction changes. +2012-07-23,40.7141667,-74.0063889,New York City (Brooklyn),NY,other,300,A large red crescent shaped light appeared to slowly descend to the east and disappear behind buildings. +2012-07-23,32.8572222,-116.9213889,Lakeside,CA,light,33,UFO travelled much faster covering greater distance across sky than conventional crafts in area. +2012-07-23,40.4841667,-88.9936111,Bloomington,IL,unknown,1500,White on camera/purple off camera lights floating in the sky. +2012-07-23,39.7286111,-121.8363889,Chico,CA,circle,480,Craft emitting strong white beam hovers over my road, then checks out the adjacent hills. +2012-07-23,41.614444399999996,-94.0172222,Adel,IA,flash,60,Pulsating light in the northern sky that flew in a non aircraft way. +2013-07-23,33.9375,-117.2297222,Moreno Valley,CA,sphere,60,Daytime sphere; vary brigt +2013-07-23,40.7988889,-81.3786111,Canton,OH,unknown,5,Small metallic object seen high in the sky for about 5 seconds and then disappeared. +2013-07-23,38.9905556,-77.0263889,Silver Spring,MD,oval,300,There were lights on one object. +2013-07-23,43.2297222,-72.8983333,Peru,VT,sphere,1200,Orang Orb in sky over Bromley Ski Resort, Peru VT. July 23rd - 9:40 pm. +2013-07-23,41.6313889,-73.3111111,Washington,CT,cone,1800,Lights around object which changed color. +2013-07-23,26.5216667,-82.1894444,Captiva,FL,light,60,Sixth sighting of an "UGO" in 4 weeks +2013-07-23,47.4236111,-120.3091667,Wenatchee,WA,triangle,900,Stayed in one spot and then disapeared. +2013-07-23,33.6888889,-78.8869444,Myrtle Beach,SC,other,30,Fireball lanterns in night sky seen at beach in SC +1962-07-24,42.6425,-73.7433333,Rensselaer,NY,other,120,object appeared and hovered over a minute in broad daylight less than 100 feet off the ground of a parking lot in Rensselaer, NY +1965-07-24,42.6380556,-83.6172222,Highland,MI,sphere,120,Craft was large enough to see with the naked eye +1973-07-24,43.1905556,-112.3441667,Blackfoot,ID,triangle,240,Smooth, rounded triangular object, stone grey, no lights or markings, dome on bottom, silent. +1973-07-24,45.41,-92.6394444,St. Croix Falls,WI,diamond,600,I saw the crafts in the sky early in the morning over my neighborhood. +1974-07-24,39.6416667,-77.7202778,Hagerstown,MD,disk,120,I saw it too! RE: Football sized saucer over Hagerstown, MD in summer of 1974 +1974-07-24,44.9352778,-72.7097222,East Berkshire,VT,light,120,Farm children see two orange nocturnal lights. +1974-07-24,39.6416667,-77.7202778,Hagerstown,MD,disk,300,Football sized saucer over Hagertown MD in summer of 1974 +1977-07-24,35.0844444,-106.6505556,Albuquerque,NM,oval,3600,A gaint greyish football moving through the sky +1977-07-24,35.4377778,-106.1219444,Cerrillos,NM,triangle,1500,We saw a craft flying making instantaeous 45 degree turns and landed less than 100 ft from us. +1984-07-24,40.3241667,-75.4783333,Perkiomenville,PA,disk,1200,It was hovering over the trees and had bumps all over it..like it may have had different floors.It had many lights like runner lights a +1985-07-24,29.3625,-100.8963889,Del Rio,TX,diamond,120,Sighting in Del Rio, Texas +1994-07-24,39.6527778,-78.7627778,Cumberland,MD,unknown,600,I was in my front yard with some of my children and one friend of my children. I remember seeing 2 of the brightest lights on this obj +1995-07-24,40.5308333,-112.2975,Tooele,UT,unknown,1200,Orange lights near the Tooele Army Depot. +1996-07-24,47.6063889,-122.3308333,Seattle,WA,rectangle,2700,Boomerang shaped metalic craft over the pugit sound +1997-07-24,37.7644444,-89.335,Murphysboro,IL,cylinder,300,The witnessed reported to me she saw a irradescent,green,cylindar object move horizontal across the sky going South to North. She first +1998-07-24,43.6613889,-70.2558333,Portland,ME,other,10,As I looked to the northern sky as I stepped from my car, I looked up into a constellation of stars. Soon thereafter, it was if one of +1998-07-24,32.2216667,-110.9258333,Tucson (Due N, Low Below An A/C),AZ,fireball,30,we were sitting in our hot tub gazing at stars and looked up and saw this low intense white fireball moving north as an +1999-07-24,40.0377778,-76.3058333,Lancaster County,PA,rectangle,1200,Large rectangular craft on the ground with windows and antenna. approx 50 yards long by 25 yards wide. +1999-07-24,32.9125,-96.6386111,Garland,TX,changing,20,I feel a little silly about this but I was standing on my back patio when what i thought was a plane flew from SW to NE no sound and ch +1999-07-24,39.9522222,-75.1641667,Philadelphia,PA,flash,60,Driving south and watching out the window three people in the car but I was watching the sunset all of a sudden I yeld there it is! The +1999-07-24,37.4694444,-105.8694444,Alamosa (East Of, On Hwy 160),CO,disk,600,My friend and me were coming down the mountain into the valley when I spotted it in the clouds just sitting there as clouds went by it. +1999-07-24,42.1947222,-122.7083333,Ashland,OR,light,120,A light drifted from west to east, roughly following the Rogue Valley corridor. +2000-07-24,43.0388889,-87.9063889,Milwaukee,WI,formation,10,line of 4 balls of light three white and one red seen for 10 seconds moving straight across sky +2000-07-24,38.005,-121.8047222,Antioch,CA,disk,900,Lengthly daylight sighting Antich,CA....7.24.00....fishing off pier,...object did 45degree turn...and vanished..and appeared constantly +2000-07-24,35.225,-92.6919444,Overcup,AR,triangle,600,3 ufo north on hwy 9 +2000-07-24,40.6475,-73.1463889,Fire Island,NY,circle,120,silver orange craft clearly seen.. +2000-07-24,45.6388889,-122.6602778,Vancouver,WA,light,900,Two lights moving at a high rate of speed and slowing down very fast, then turning faster than anything we've ever made. +2001-07-24,38.3363889,-75.0852778,Ocean City,MD,flash,1,flash of light! possibly abduction! +2001-07-24,40.7141667,-74.0063889,New York City,NY,disk,20,the event took place on this date and i have a copy of a video that was shown on tv in the univision network.it was an almost mid-air c +2001-07-24,33.3527778,-111.7883333,Gilbert,AZ,circle,900,It was a huge silver round craft sitting motionless in the night sky +2001-07-24,33.3702778,-112.5830556,Buckeye (Outside),AZ,light,300,Near Palo Verde Nuclear Power Station, lights seen moving around into a triangular-shaped formation. +2001-07-24,39.0997222,-94.5783333,Kansas City,MO,circle,5,i went out to the barn to shut off lights and as i went out the back door of the house i look to the NNE (north north east )or 0*-45* d +2002-07-24,42.6525,-73.7566667,Albany,NY,fireball,10,An extremely bright white light zoomed past my window at 12:30AM July 24th. +2002-07-24,42.6525,-73.7566667,Albany,NY,fireball,10,An incredible bright white orb sped past at an anormous rate heading east. +2002-07-24,28.1138889,-81.6180556,Haines City,FL,unknown,600,huge pulsing red/white light in the orange groves +2002-07-24,48.9202778,-122.3413889,Everson,WA,unknown,20,Two five-second bursts of multi-color lights accompanied by unusual mechanical sounds +2002-07-24,34.74,-97.2219444,Pauls Valley,OK,diamond,300,Diamond shaped craft seen during the day. +2003-07-24,42.1219444,-77.9483333,Wellsville,NY,triangle,120,Unknown slow mvoing silent triangular object spotted in non-military area. +2003-07-24,35.0886111,-92.4419444,Conway,AR,light,90,A dark object blocking out stars, with one dim light. Chasing a jetliner across the sky from south to north +2003-07-24,35.2333333,-106.6638889,Rio Rancho,NM,light,3600,Hovering bright light fades in and out. +2004-07-24,33.8302778,-116.5444444,Palm Springs,CA,circle,30,I saw a flashing colored orb in the eastern sky over the San Jacinto Mountains. +2004-07-24,42.8294444,-102.9994444,Chadron,NE,light,60,July 24 22:00 light moved quickly from west to east and slowly dimmed then disappeared. +2004-07-24,39.6580556,-78.9286111,Frostburg,MD,unknown,900,I was with a friend and my youngest 2 children. We were coming back from Lonaconing, MD headed toward Cumberland. My daughter noticed +2004-07-24,47.8211111,-122.3138889,Lynnwood,WA,oval,3,Near Seattle, east to west siting, full stop, and then lit large object +2004-07-24,42.5,-96.4,Sioux City,IA,light,900,disseappearing lights +2005-07-24,46.8172222,-95.845,Detroit Lakes,MN,light,300,Two green lights over 10ꯠ lakes festival 3am sunday morning 7-24-05, blast into sky +2005-07-24,42.4975,-94.1677778,Fort Dodge,IA,triangle,60,Dark Triangle with 2 lights seen traveling towards thunderstorms +2005-07-24,43.9144444,-69.9658333,Brunswick,ME,disk,10,Day Light Disk +2005-07-24,33.4483333,-112.0733333,Phoenix,AZ,disk,15,white disk half a mile away from plane accelerates at incredible speeds +2005-07-24,43.1811111,-95.8558333,Sheldon,IA,triangle,4,IOWA MUFONREPORT: Director, Beverly Trout, interviewed witness by phone re a sighting witness had reported to NUFORC. +2005-07-24,43.1811111,-95.8558333,Sheldon,IA,triangle,4,Triangle shaped UFO observing thunderstorms +2005-07-24,31.7586111,-106.4863889,El Paso,TX,formation,30,30 sec speeding lights over Franklin Mountain range. +2006-07-24,41.4825,-73.41,Brookfield,CT,other,3600,bright light in sky moving in circles and zigzags +2006-07-24,32.2411111,-92.7158333,Jonesboro,LA,other,1800,It slowley flew over the house stoped about25 or 30 yards past the back yard.it was a boomer rang shaped object it made no sound and wa +2006-07-24,35.2505556,-91.7361111,Searcy,AR,oval,30,Two peach colored pointed-oval objects wobble over Searcy, Arkansas travelling due east. +2007-07-24,41.195,-87.1986111,Demotte,IN,fireball,1,White ball of light with tail +2007-07-24,36.7477778,-119.7713889,Fresno,CA,oval,45,three unknown objectsa over fresno +2007-07-24,36.2941667,-82.4736111,Jonesborough,TN,triangle,30,Low flying, triangular UFO with lights over Jonesborough Tennessee +2007-07-24,37.7702778,-111.6013889,Escalante,UT,unknown,300,I SAW A UFO,and I KNOW IT. +2007-07-24,42.2286111,-71.5230556,Hopkinton,MA,oval,60,driving home on 135 and noticed very large object in sky. it was only a couple hundred feet in the air. it hovered for a while and then +2007-07-24,35.489444399999996,-120.6697222,Atascadero,CA,cylinder,60,Spotted a green, glowing, cylinder shaped craft, while driving home at 10:30pm. +2007-07-24,42.0347222,-93.6197222,Ames,IA,diamond,240,Two silent objects over public backup water supply. +2008-07-24,47.6733333,-117.2383333,Spokane Valley,WA,light,2400,Two UFO's flying togeather, one red the other white in Washington state +2008-07-24,40.6408333,-74.8816667,Annandale,NJ,sphere,10,weird round silver sphere like object but not a perfect sphere! +2008-07-24,27.8002778,-97.3961111,Corpus Christi,TX,other,180,Shiny object near chem-trail in the sky. +2008-07-24,37.5536111,-77.4605556,Richmond,VA,other,120,Blimp like hovering object swaying in park +2008-07-24,33.6305556,-112.3325,Surprise,AZ,light,180,Redish orange lights in NW Surprise,Az +2008-07-24,33.4483333,-112.0733333,Phoenix,AZ,unknown,35,Was in my house with window shades up looking South West when I saw something go from left to right fast!. It was a small green light +2008-07-24,36.1388889,-75.7319444,Southern Shores,NC,unknown,120,Three flashing red lights in the sky, moved in a triangular formation, moved towards me, then away, then disappeared. +2008-07-24,35.2233333,-114.2222222,Golden Valley,AZ,fireball,600,Orange Glowing UFO's +2008-07-24,40.5555556,-75.9822222,Hamburg,PA,unknown,3600,Around 10:00 pm I went out to my porch to smoke, and looked up at I believe was Jupiter in the southeast sky. My eyes then caught a gro +2008-07-24,41.2380556,-85.8530556,Warsaw,IN,circle,2100,My Husband (driving), our nine year old daughter, two small sons and I were driving South on St. Rd. 15 on a return trip from Goshen +2008-07-24,28.2438889,-82.7194444,New Port Richey,FL,unknown,180,3 were here and gone in just a few blinks of the eyes !!! +2008-07-24,41.5822222,-85.8344444,Goshen,IN,light,900,Several sequencing lights appeared over a vast part of the southern sky from right outside the Goshen, Indiana area +2008-07-24,42.8863889,-78.8786111,Buffalo,NY,rectangle,45,Low altitude , fast moving cigar/rectangle shaped craft +2008-07-24,44.515,-88.3302778,Seymour,WI,oval,3,A flaming UFO was heading towards the ground near my house. +2008-07-24,36.8222222,-107.9922222,Aztec,NM,fireball,6,huge, bright meteor seen over Aztec, New Mexico...again. +2009-07-24,39.1141667,-94.6272222,Kansas City,KS,other,40,Rectangular connected series of "glass" globes with exhaust... +2009-07-24,45.5236111,-122.675,Portland,OR,light,720,bright white light moving erratically leaving light trails +2009-07-24,33.6358333,-97.2225,Lindsay,TX,unknown,180,strange lights in the NW sky observed and two flashes like a camera flash +2009-07-24,21.35,-157.7208333,Waimanalo,HI,sphere,300,series of 16 green / led-like fluttering spherical objects rise in the NE ..noiselessly proceed to S W and continue ascending over +2009-07-24,40.1447222,-84.2425,Piqua,OH,circle,60,Two bright lights traveling over piqua ohio. ((NUFORC Note: ISS and Space Shuttle in formation?? PD)) +2009-07-24,42.4527778,-75.0641667,Oneonta,NY,disk,2.5,2 orange/copper colored metallic disks. +2009-07-24,35.0844444,-106.6505556,Albuquerque,NM,changing,900,Albuquerque, New Mexico USA Object/Lights Night Sky July 24, 2009 21:31-21:51 PM +2009-07-24,39.7294444,-104.8313889,Aurora,CO,light,60,Stationary Single light turns into super fast traveler +2009-07-24,39.5347222,-107.7825,Rifle,CO,light,120,Two bright lights flying over rifle colorado +2009-07-24,42.2411111,-83.6130556,Ypsilanti,MI,unknown,300,a bright orange (flame like) light ascending toward the north-north east in the vicinity of Willow Run airport in Ypsilanti, MI +2009-07-24,29.8830556,-97.9411111,San Marcos,TX,triangle,120,3 lighted silent craft flys slowly over university +2009-07-24,39.4922222,-80.9038889,Middlebourne,WV,light,180,Two strange lights in the sky over WV. ((NUFORC Note: Overflight of ISS. PD)) +2009-07-24,37.1811111,-79.6175,Moneta,VA,light,20,Extremely bright object quicky fade to an orange glow then disappear. +2009-07-24,47.9791667,-122.2008333,Everett,WA,light,300,I noticed 3 bright lights in the ski moving to fast to be normal aircrafts. ((NUFORC Note: ISS? PD)) +2009-07-24,39.0166667,-84.6008333,Erlanger,KY,circle,240,Tonight at 11:10 pm. we were jumping on the trampoline. ((NUFORC Note: ISS and Space Shuttle?? PD)) +2009-07-24,42.3583333,-71.0602778,Boston,MA,diamond,600,Giant white glowing Star like object (diamond shaped) above Boston MA +2009-07-24,34.2369444,-84.9441667,Kingston,GA,light,15,A star-like object that moved rapidly and erratically in a clear sky, then sudden disappeared. ((NUFORC Note: Not ISS. PD)) +2009-07-24,38.3891667,-84.5375,Sadieville,KY,sphere,60,Two orbs seen over Sadieville, Ky. +2010-07-24,35.4675,-97.5161111,Oklahoma City,OK,circle,10800,Circular craft blinking red, yellow, orange, green, blue. ((NUFORC Note: Possible twinkling star, or celestial body, perhaps? PD)) +2010-07-24,39.9611111,-82.9988889,Columbus,OH,cigar,300,Reddish white lights on a slow moving black near silent object flies across columbus sky +2010-07-24,48.1333333,-103.6333333,Williston,ND,triangle,18000,triangle sighting that was in the same spot for over 4 hours only moved in figured 8 ways ((NUFORC Note: Probably not a UFO. PD)) +2010-07-24,38.7955556,-77.6141667,Gainesville,VA,fireball,7200,Saw an object in ithe Western sky flashing red and green lights with a bright white light as well which moved in irratic directions +2010-07-24,38.545,-121.7394444,Davis,CA,light,300,Light that moved. +2010-07-24,45.5236111,-122.675,Portland,OR,circle,15,disk in the sky in the middle of the day +2010-07-24,40.7141667,-74.0063889,New York City,NY,sphere,120,Silver orbs hanging in the eastern sky. +2010-07-24,37.4636111,-122.4275,Half Moon Bay,CA,circle,600,7-24-10 Yellow-orange bright lit circular object moving vertical and horizontal seen in Half Moon Bay CA. +2010-07-24,47.9791667,-122.2008333,Everett,WA,light,60,white blinking lights over everett wa +2010-07-24,34.7997222,-87.6772222,Florence,AL,light,1200,CALLED OUTSIDE BY NEIGHBORS TO LOOK AT STRANGE LIGHTS, RED GLOWING LIGHTS THAT SEEMED TO BE FLOATING , NO SOUND HEARD , PROBALLY 30 + +2010-07-24,43.3980556,-76.4777778,Minetto,NY,triangle,120,4 triangle shaped objects traveling in formation and one by one disappeared in the sky over Minetto, NY +2010-07-24,45.4208333,-122.6694444,Lake Oswego,OR,triangle,120,OREGON UFO REVIEW REPORT: Slow moving silent black triangle craft observed over Nansen Park Lake Oswego Oregon +2011-07-24,45.7833333,-108.5,Billings,MT,fireball,120,Orange Red Fireball/Craft over Billings Montana. 2nd sighting this month. +2011-07-24,34.1975,-119.1761111,Oxnard,CA,triangle,3600,UFO with red, white and green lights in a triangle form hovering over the ocean. ((NUFORC Note: Possible twinkling star. PD)) +2011-07-24,42.7177778,-73.8338889,Colonie,NY,oval,180,2 crafts over albany ny . very close together moving in sharp turns and fast speed +2011-07-24,29.4238889,-98.4933333,San Antonio,TX,circle,10,Orange sphere over TX +2011-07-24,33.7475,-116.9711111,Hemet,CA,fireball,1200,RED AND ORANGE FIREBALL TURNING TO A CLEAR BRIGHT LIGHT GOING EAST TOWARD THE MOUNTAIN +2011-07-24,41.7108333,-87.7580556,Oak Lawn,IL,circle,60,Round red/orange ball 1/3 size of full Moon with yellow V-shaped flame inside. +2011-07-24,40.7319444,-73.1861111,East Islip,NY,circle,600,8 red dots moving in a line slower than a plane, then they all disappeared and one started flashing on long island. +2011-07-24,21.3155556,-158.0072222,Ewa Beach,HI,circle,10,Green ball of light, larger than star, shoots across sky at high speed over Ewa Beach HI. +2011-07-24,39.1588889,-108.7283333,Fruita,CO,circle,240,Huge, orange orbs over Colorado National Monument +2011-07-24,25.7738889,-80.1938889,Miami,FL,unknown,180,A bright red light flew across the sky from the east, and no noise what so ever came from this light. +2011-07-24,47.0980556,-122.2030556,Orting,WA,light,240,Orange balls in the sky very bright +2011-07-24,47.0980556,-122.2030556,Orting,WA,light,240,Orange lights near Orting, Wa. +2011-07-24,29.1869444,-82.1402778,Ocala,FL,circle,1800,2 red beamin lights with 5 changing color objects beside it above ocala florida +2011-07-24,41.2122222,-80.4969444,Farrell,PA,fireball,60,I was sitting in my vehicle about 11:50 pm,and I decided to exit my car,as I stood in my driveway by my car I looked westward toward th +2012-07-24,34.9341667,-88.5222222,Corinth,MS,triangle,240,Silent triangled ufo with three white lights and a red blinking light in the middle. +2012-07-24,42.5294444,-83.7802778,Brighton,MI,unknown,1,Streak of light like a reverse shooting star, near horizon. +2012-07-24,41.1338889,-81.4847222,Cuyahoga Falls,OH,triangle,30,Craft with orange lights Triangle shapef 4 lights one in center like a flame and one each corner. Cuyahoga Falls Ohio 7/24/2012 21:45 +2012-07-24,41.2230556,-111.9730556,Ogden,UT,light,30,A strange, color-changing light, zigzag movements, ejecting three small lights, mimicking airplanes… ((NUFORC Note: Star?? PD)) +2012-07-24,41.5111111,-80.37,Adamsville,PA,sphere,45,One round orange sphere 5-6' around w/ bright circular glowing bottom center cruisin thru 20 mph, 100 ' tops of trees +2012-07-24,34.1975,-119.1761111,Oxnard,CA,light,60,At aprx 10:30pm I was sitting in my patio looking at the night sky facing east it was clear out and I notice that what I thought was tw +2012-07-24,40.8338889,-80.5405556,East Palestine,OH,egg,300,Strange UFO sighting in East Palestine, Ohio on the night of July 24, 2012 +2013-07-24,36.1538889,-95.9925,Tulsa,OK,light,15,Green beam of light over Tulsa +2013-07-24,36.2333333,-107.5616667,Lybrook,NM,egg,60,A triangular star cluster shot off an egg shaped craft southwest on 7/24/13 at 2:31 in the morning over Lybrook NM. +2013-07-24,42.489444399999996,-83.1447222,Royal Oak,MI,light,1800,Two white lights follow along freeway +2013-07-24,45.4313889,-122.7702778,Tigard,OR,light,1620,This is the second report I've submitted this month since my 1st on 07/03/13 with similar lights. +2013-07-24,40.1672222,-105.1013889,Longmont,CO,changing,1200,Three flying objects in perfect triangular formations appearing and disappearing. +2013-07-24,44.7980556,-93.5266667,Shakopee,MN,cigar,30,Shiny white flat cylinder shape object over Shakopee, MN. +2013-07-24,41.7305556,-88.3458333,Montgomery,IL,other,900,Four objects so high I could not distinguish shape even with binoculars. +2013-07-24,26.1219444,-80.1436111,Ft. Lauderdale,FL,fireball,120,Orange &quot;fireball&quot; colored light no noise moving W to E South of FLL. +2013-07-24,42.8336111,-88.7322222,Whitewater,WI,light,900,Red light in sky. +2013-07-24,26.5216667,-82.1894444,Captiva,FL,light,15,Fifth sighting of amber UFO's at same location in 4 weeks, +2013-07-24,21.2827778,-157.8294444,Waikiki,HI,light,120,3 red lights hovering over Waikiki waters. +2013-07-24,39.1619444,-84.4569444,Cincinnati,OH,formation,120,4 bright orange lights moving southwest slowly in a diamond formation. +2013-07-24,40.6872222,-80.2716667,Monaca,PA,fireball,300,At approximately 9:45 PM on 7/24/2013, I came outside to walk my dog. I looked up into a clear sky and saw through the trees what look +2013-07-24,39.7438889,-84.6366667,Eaton,OH,sphere,60,Bright orange sphere hovering and dissapearing and appearing again.. +2013-07-24,47.6777778,-116.7794444,Coeur D'alene,ID,flash,300,Extremely bright flashing white light low above city. +2013-07-24,39.7047222,-105.0808333,Lakewood,CO,light,3600,Orb of light slowly drifting across the sky, then it speeds away. +2013-07-24,47.1719444,-122.5172222,Lakewood,WA,light,1200,2 orange lights split into 4 then back into 2 before going seprate directions followed by 2 fighter jets taking off. +2013-07-24,33.5927778,-79.0088889,Garden City,SC,circle,300,Orange/red orbs over ocean. +1952-07-25,47.2530556,-122.4430556,Tacoma,WA,sphere,30,Six spheres flying in formation close to an Air Force base by Tacoma Washington. +1965-07-25,37.9780556,-122.03,Concord,CA,unknown,3600,Many miles up in the sky;zigzagged;sharp - immediate change of direction; very fast +1971-07-25,47.1855556,-122.2916667,Puyallup,WA,circle,120,I looked up to identify the source of the sound and saw an object with multicolored lights that were flickering in a sort of pattern. +1971-07-26,40.6083333,-75.4905556,Allentown,PA,light,180,((HOAX??)) floating,glowing torus of light seen in neighboring yard. +1973-07-25,43.0388889,-87.9063889,Milwaukee,WI,unknown,3600,UFO flew directly over our car at night without making any sound at all. There were 4 witnesses. +1974-07-25,41.1669444,-73.2052778,Bridgeport,CT,circle,300,Saw a huge round object hovering with red light in center,no sound.Took off at a high rate and disappeared +1976-07-25,42.8666667,-106.3125,Casper,WY,circle,3600,UFO Sighting in Casper, Wy. in summer of 1976 +1977-07-25,41.3947222,-73.4544444,Danbury,CT,disk,300,Close up sighting of UFO saucer over house at about 100 feet altitude. +1977-07-25,39.0658333,-84.7011111,Hebron,KY,oval,60,Strange very bright lights moving faster that aircraft from west to east. +1978-07-25,36.5483333,-82.5619444,Kingsport,TN,disk,300,flashing red light turned out to be a soundless spinning disc shape +1979-07-25,43.4194444,-83.9508333,Saginaw,MI,unknown,360,fleet of saucers spotted in Saginaw,Michigan +1984-07-25,39.4666667,-87.4138889,Terre Haute,IN,other,3600,Glowing Arrowhead Shape Craft with Glowing white Trail +1984-07-25,36.7280556,-76.5838889,Suffolk,VA,sphere,600,Large, orangey colored sphere rose slowly from behind trees in the distance and traveled silently across the sky. +1987-07-25,34.6086111,-98.39,Lawton,OK,unknown,600,My girlfriend and I were lying on the ground looking at the stars, we noticed a large object with 6 rings of lights, dull like far away +1989-07-25,42.4927778,-92.3427778,Waterloo,IA,sphere,2,Swift moving metallic orb, traveling East to West. +1989-07-25,39.7763889,-74.8627778,Jackson,NJ,light,1200,Objects moved very fast made right angle turns and varied in light intensity. Disappearing and reappearing for approx. 20 minutes. +1995-07-25,36.1755556,-105.0475,Ocate,NM,light,120,4 observers view 2 point of light above horizon moving erratically up and down. Darted off very rapidly. Miltary aircraft buzzed. +1995-07-25,32.64,-117.0833333,Chula Vista,CA,circle,300,What I saw was huge it flew over my apartment complex it was bigger than the complex itself... it had so much detail that it scared the +1996-07-25,45.6855556,-92.9652778,Rush City,MN,unknown,1200,Possible prior sighting similar to 16 Feb 2004 Amityville, NY +1997-07-25,39.1008333,-120.9522222,Colfax (Closer To Weimar),CA,fireball,60,Early in the morning, I awoke, rapidly sitting up in bed as if awakened by a bad dream. Without any thought or autonomy on my part, I g +1998-07-25,45.4313889,-122.7702778,Tigard (Suburb Of Portland),OR,oval,1800,A silver, oval shaped object hovered directly overhead at high altitude for at least 30 minutes. A jetliner passed near by the object. +1998-07-25,39.3772222,-105.8,Jefferson (Near),CO,oval,300,Black Oval-Shaped Object Hovering Near Jefferson, Colorado. +1998-07-25,38.9477778,-90.9180556,Moscow Mills,MO,cigar,60,Bright green cigar shaped with bright flashing light +1998-07-25,45.6388889,-122.6602778,Vancouver,WA,triangle,900,close encounter at the clark county fair +1998-07-25,32.2216667,-110.9258333,Tucson,AZ,light,900,3 green/blue, non flashing lights hung in the N/W Tucson sky, the space between the objects varrying as they hovered. +1999-07-25,26.3583333,-80.0833333,Boca Raton,FL,disk,18000,After seeing a star pulsing colors me and my 8 year old son shot some pretty good 35mm stills through a 270mm lens with 800 speed color +1999-07-25,30.3319444,-81.6558333,Jacksonville,FL,light,300,unusual light +1999-07-25,35.4675,-97.5161111,Oklahoma City (Tinker Afb),OK,other,7,A falling type streak that went down, up, down and back up leaving a trail with a flash before it disappeared. +1999-07-25,42.5311111,-88.5994444,Walworth County (Eastern Part),WI,oval,60,Light grey flattened ball, about the size of a muskmelon, with no propellors, fins, wings, lights, markings, holes, depressions, dents, +1999-07-25,44.0886111,-87.6575,Manitowoc,WI,circle,60,I was siiting on my porch and i saw two perfectly round orbs. +1999-07-25,39.8341667,-96.0638889,Seneca,KS,egg,480,slowly moved then speed up horizonaly rapidly, then darted verticly +1999-07-25,32.8144444,-93.6291667,Rocky Mount (Plain Dealing),LA,triangle,45,While swimming in pool I looked up and noticed what looked like a bird just hoovering, it suddenly moved backwards about 2 lengths and +1999-07-25,47.1302778,-119.2769444,Moses Lake,WA,sphere,300,Small distant luminescent sphere, looking somewhat like a star but much larger and during mostly daylight. +1999-07-25,38.8338889,-104.8208333,Colorado Springs,CO,light,900,Heading South into the city saw 4 huge bright orangeish lights forming curved line. Had never seen them before. Was somewhere above cen +1999-07-25,39.1619444,-84.4569444,Cincinnati,OH,flash,600,I stepped outside because I heard a noise. It turned out to be nothing. As I was heading back inside to go to bed, I heard a plane ove +2000-07-25,33.3061111,-111.8405556,Chandler,AZ,light,120,Two Red Lights Over Eastern Maricopa County, AZ on July, 25 2000 +2000-07-25,33.3527778,-111.7883333,Gilbert,AZ,circle,420,Two bright red-orange objects over Gilbert for 5-7 minutes with no sounds +2000-07-25,33.3527778,-111.7883333,Gilbert,AZ,light,900,Red lights hovering toward the east of Gilbert AZ. +2000-07-25,33.3527778,-111.7883333,Gilbert,AZ,light,300,Two bright red lights moving slowly in the sky at high altitude, then quickley, one blinking,then disappearing. +2000-07-25,33.3527778,-111.7883333,Gilbert,AZ,unknown,1200,We saw 2 bright red lights, one blinked on and off and dropped very rapidly after ~8 minutes, the other blinked out ` 2 min later. +2000-07-25,34.9022222,-110.1575,Holbrook,AZ,triangle,1800,Luminescent white wedge seen at high altitude flying at high rate of speed. +2000-07-25,34.1425,-118.2541667,Glendale,CA,circle,5,Bright, Stoplight Red Craft +2000-07-25,36.175,-115.1363889,Las Vegas,NV,light,1200,Las Vegas Lights +2000-07-25,32.7152778,-117.1563889,San Diego,CA,fireball,1200,NEON RED LIGHT HIGH UP IN THE SKY MOVING VERY SLOWLY EXPLODED AFTER 1/2 HR BRIGHT WHITE LIGHT +2000-07-25,32.7152778,-117.1563889,San Diego,CA,unknown,300,RECEIVED TWO REPORTS AT THE SEARCH AND RESCUE CENTER SAN DIEGO OF A BRIGHT RED LIGHT HIGH IN THE SKY, HOVERING, DRIFTING, THEN EXPLODIN +2000-07-25,42.225,-121.7805556,Klamath Falls,OR,light,300,"Light" flew as wingman to commercial flight. +2000-07-25,32.7152778,-117.1563889,San Diego,CA,light,1800,Bright steady Neon red light moved from SW to NE in 10 min, turned bright white, then exploded in white shower. +2000-07-25,44.8341667,-87.3769444,Sturgeon Bay,WI,light,300,Red light seen over Door County +2000-07-25,44.8341667,-87.3769444,Sturgeon Bay,WI,other,300,Army Airborne drills over the bay +2000-07-25,42.7022222,-83.4027778,Waterford,MI,sphere,1500,I looked and saw a sphere shaped object with many differntly colored rapidly flashing lights. +2001-07-25,41.0813889,-81.5191667,Akron,OH,sphere,240,round orbs in the middle of the day +2001-07-25,48.7597222,-122.4869444,Bellingham,WA,disk,1200,Large, Sunlight reflecting metallic saucer seen in Bellingham, Wa. +2001-07-25,37.3394444,-121.8938889,San Jose,CA,changing,180,Dark gray object going straight up, changing shape as it went. +2001-07-25,33.4483333,-112.0733333,Phoenix,AZ,disk,60,At approximately 11:15 PM on July 24񫺑 I was driving home from my son's house. As I drove east on Hatcher Road to my home on 19th S +2002-07-25,37.6922222,-97.3372222,Wichita,KS,formation,30,White dim lights in formation similar to constallation. +2002-07-25,30.0858333,-94.1016667,Beaumont (Outside),TX,light,7200,Bright light (Venus-like), green, red and white, stationary for 2+ hours. +2002-07-25,28.182222199999998,-81.8241667,Polk City,FL,sphere,60,Bright Metallic Sphere Flies Over Florida Prison +2002-07-25,41.4644444,-81.5088889,Beachwood,OH,oval,20,White oval or disc on edge, low and moving north, possible puttering or sputtering noise with it. +2002-07-25,39.785,-85.7694444,Greenfield,IN,circle,60,Silver object following plane formation. +2002-07-25,29.0083333,-82.035,Summerfield,FL,sphere,5,3 balls of light +2002-07-25,38.2547222,-121.2988889,Galt,CA,diamond,900,It was diamond shape with three or four lights that change color every few minutes. +2002-07-25,40.8013889,-72.8680556,Shirley,NY,formation,180,I sighted 6 fiery lights in formation of the southern coast of Long Island while I was flying an airplane in the vicinity. +2002-07-25,40.8013889,-72.8680556,Shirley,NY,light,180,6 lights seen over ocean @ smith point park, shirley, NY @ 930PM on 7/25/2002 +2003-07-25,28.0777778,-82.7638889,Palm Harbor,FL,disk,420,Bright UFO seen for 7 minutes crossing airline flight paths. +2003-07-25,47.4830556,-122.2158333,Renton,WA,other,1200,Looked like a streetlight, hovering like a helicopter in Fairwood, Renton +2003-07-25,39.9522222,-75.1641667,Philadelphia,PA,light,240,looking eastward which would be facing NJ flashing over NJ I saw a flashing light in the sky, at first I thought it was a very high fly +2003-07-25,40.8255556,-73.6986111,Port Washington,NY,diamond,2100,Object hovered for 35 minutes, glowed whitish yellow, changed shape., appeared to be approximately 5 to 10 miles away - 1ꯠ feet high +2003-07-25,44.1522222,-72.0377778,Woodsville,NH,fireball,2,5 fireballs +2003-07-25,47.2152778,-123.0994444,Shelton,WA,light,120,Bright Light +2003-07-25,42.8141667,-73.94,Schenectady,NY,formation,4,Line of equally spaced ornage lights moving at an incredible speed, over Schenectady, New York +2003-07-25,34.9047222,-77.2316667,Maysville,NC,rectangle,180,Bus shaped object with 4 bright lights 20 feet off ground seen in rural eastern North Carolina. 500 Lights On Object0: Yes +2004-07-25,41.85,-87.65,Chicago,IL,unknown,1200,Bright flashing and pulsating light +2004-07-25,32.7947222,-116.9616667,El Cajon,CA,triangle,7200,We saw them again and now there are five objects with blinking lights +2004-07-25,43.5977778,-84.7675,Mt. Pleasant,MI,light,180,What appeared to be a start in the Western sky moved at an impressive rate and then stopped. +2004-07-25,34.7302778,-86.5861111,Huntsville,AL,triangle,1200,Object flys slowly over Huntsville Alabama +2004-07-25,43.8013889,-91.2394444,La Crosse,WI,cigar,1200,this will be related to another report.... but we saw this cigar shaped object going slow and i thought it was going to stall..... it w +2004-07-25,29.7630556,-95.3630556,Houston,TX,rectangle,60,Large white and gray rectangular object hovering in sky. +2004-07-25,44.0522222,-123.0855556,Eugene,OR,diamond,120,black diamond shped object zigzaging across the sky with glowing red tailflame. +2004-07-25,47.0344444,-122.8219444,Lacey,WA,light,300,Yellow/Red Slow Moving Craft and Two Flashing Starlike Objects Over Lacey, WA +2005-07-25,34.7302778,-86.5861111,Huntsville,AL,oval,2,Intensely illuminated, sphereoid object moving far too quickly at a 70-75 degree angle into the sky. +2005-07-25,38.6786111,-121.7722222,Woodland,CA,disk,2,Here's what I THINK I saw: a part(the leading edge) of an airborne, dinner plate shaped object, camoflaged +2005-07-25,36.0005556,-88.4280556,Huntingdon,TN,other,15,I looked up in the sky and directly above the trees was a trapezoid shaped craft with bright lights all around it. +2005-07-25,36.5297222,-87.3594444,Clarksville,TN,light,60,Big, Fast, bright and soundless light +2005-07-25,44.239444399999996,-76.0861111,Clayton,NY,formation,420,Two red lights traveling in formation for over 5 miles, no noise. +2005-07-25,33.4502778,-88.8183333,Starkville,MS,flash,2,Green flash seen in sky +2006-07-25,45.5319444,-122.29,Corbett,OR,light,600,Slow-moving bright lights in V shape seen from Corbett, Oregon +2006-07-25,41.6266667,-93.7119444,Urbandale,IA,light,6,Bright light +2006-07-25,26.1219444,-80.1436111,Fort Lauderdale,FL,light,300,fast moving light, not flashing or blinking(excluding it being an airplane), turned quite sharply (est. 70 degrees) +2006-07-25,47.6105556,-122.1994444,Bellevue,WA,oval,900,object seen in sky chased away by military helicopter followed by a air force one sighting. +2006-07-25,26.4611111,-80.0730556,Delray Beach,FL,sphere,120,First observed travelling west to east. At what appeared to be an extremely high altitude. Turned abruptly south and at a high rate of +2006-07-25,37.0675,-93.5519444,Billings,MO,light,120,shrinking lights +2007-07-25,33.6602778,-117.9983333,Huntington Beach,CA,sphere,60,clear floating sphere w/flashing red and white lights. +2007-07-25,41.2427778,-73.2011111,Trumbull,CT,cigar,600,Large Cigar Shaped Craft........... high rate of speed with no sonic boom observed +2007-07-25,29.9144444,-90.0538889,Gretna,LA,light,120,Small red lights in an arc formed over Belle Chase, Louisiana. +2007-07-25,30.2283333,-88.0230556,Fort Morgan,AL,light,600,Orange Glowing Unidentified objects over the Gulf seen by 4 different people at once +2007-07-25,34.2694444,-118.7805556,Simi Valley,CA,triangle,30,Massive triangular aircraft flying over Simi Valley hills at 9pm +2007-07-25,33.5205556,-86.8025,Birmingham,AL,unknown,420,Two pinpoints of light over DoubleOak Mtn. +2007-07-25,36.7477778,-119.7713889,Fresno,CA,sphere,300,Bright white sphere moving south over Fresno +2007-07-25,43.2694444,-91.4755556,Waukon,IA,changing,1200,Multiple UFO sitings cumulating in siting of an object that changed shape and "zigzagged" through the sky. +2007-07-25,44.0463889,-123.0208333,Springfield,OR,light,1200,Springfield, OR sightings of bright, multicolored lights near moon +2008-07-25,40.7683333,-73.7775,Bayside,NY,sphere,15,we saw two golden colored stars stream acrossed the night sky side by side in unison. one went up, the other changed course to follow . +2008-07-25,43.3227778,-76.4175,Fulton,NY,unknown,1200,A star that seems too move in western sky +2008-07-25,42.2527778,-71.0027778,Quincy,MA,light,5,Bright stationary light in sky +2008-07-25,35.3733333,-119.0177778,Bakersfield,CA,circle,240,Neon green and red lights seen "Danicing" in the Eastern Bakersfield skies +2008-07-25,33.3061111,-111.8405556,Chandler,AZ,diamond,120,Diamond Shaped Black Object Hovering In Chandler Field +2008-07-25,33.0580556,-112.0469444,Maricopa,AZ,diamond,60,Extremely low flying Diamond shaped UFO traveling along side major freeway south of Phoenix AZ. +2008-07-25,33.5769444,-97.0127778,Lake Kiowa,TX,triangle,300,Lake KIowa Texas UFO +2008-07-25,33.6058333,-78.9733333,Surfside Beach,SC,flash,120,3 orange balls of light blinking in unison over the ocean in Surfside beach S.C. +2008-07-25,41.4813889,-73.2136111,Southbury,CT,other,480,I was getting onto the highway by exit 15 in Southbury CT, when I thought I saw an air-balloon or a blimp in the distance. When I got a +2008-07-25,41.760555600000004,-88.32,Aurora,IL,egg,180,I was sitting in my loft when I noticed an amber colored orb floating about 6 miles away. It was sort of pulsating, and then it suddenl +2008-07-25,34.1866667,-118.4480556,Van Nuys,CA,diamond,900,Strange object hovering over the city. +2008-07-25,35.7913889,-78.7813889,Cary,NC,light,300,To bright, to smooth, but mostly to fast +2008-07-25,33.7488889,-84.3880556,Atlanta,GA,circle,600,Witnessed bright stationary object on the edge of a cloud suddenly dim and finally move upon chopper and two jets presense. +2008-07-25,33.4483333,-112.0733333,Phoenix,AZ,light,30,Phoenix light sighting by indian resevation +2008-07-25,40.2691667,-79.89,Elizabeth,PA,other,420,Dark shiny disk that appeared to be on fire +2008-07-25,41.3016667,-123.54,Orleans,CA,light,180,4 star-like moving objects come from different directions in sky, then circle around each other before taking off in different directio +2008-07-25,39.9625,-76.7280556,York,PA,changing,3600,Three objects out of place in sky - not stars, not planets - do not move with the sky. Way brighter than Sirius/planets. +2008-07-25,35.5066667,-97.7622222,Yukon,OK,triangle,60,Huge Triangle +2009-07-25,42.3241667,-83.4002778,Westland,MI,sphere,300,The object appeared out of the south it appeared to be a ball shape with an orange glow and headed north. the object made no noise +2009-07-25,42.3241667,-83.4002778,Westland,MI,unknown,30,Orange light +2009-07-25,47.3758333,-115.345,De Borgia,MT,light,3600,Flashing green and red light in the sky is bouncing around. ((NUFORC Note: Probable sighting of "twinkling" star? PD)) +2009-07-25,45.0563889,-92.8058333,Stillwater,MN,light,1800,I saw a light over my house that was brighter than any light in the sky. It looked light a plane light but it was brighter but it would +2009-07-25,48.2933333,-122.6419444,Oak Harbor,WA,disk,60,ok ima playen my vidio game i look out the window i see a craft i live near a military base it was nothing like anything before. i +2009-07-25,42.3180556,-84.0205556,Chelsea,MI,circle,180,ORANGE CIRCULAR OBJECTS MOVING EAST IN A LINE, FROM THE NORTH WEST SKY. THERE WAS ALSO ONE THAT WAS FAR BEHIND THAT SPEED UP TO CATCH T +2009-07-25,28.0341667,-80.5888889,Palm Bay,FL,oval,5,Holograhic cigar shape appears headed east toward coast and then dissapears in an instant. +2009-07-25,38.9747222,-74.8338889,Wildwood Crest,NJ,triangle,8,Observed triangular object in sky change direction from north and south. I then alerted my brother. We watched object change directio +2009-07-25,26.0625,-80.2333333,Davie,FL,rectangle,25,very symetrical object all white in color +2009-07-25,34.0522222,-118.2427778,Los Angeles,CA,sphere,15,Silver Sphere observed above Southern California beach afternoon of 7/25/09. +2009-07-25,35.5361111,-100.9594444,Pampa,TX,other,2,circling hawks precede spaceship sightings +2009-07-25,35.6225,-117.67,Ridgecrest,CA,light,10,Creamy white ball of light moving in southeastern to eastern sky. ((NUFORC Note: Possible sighting of ISS at 21:00 hrs.?? PD)) +2009-07-25,40.5866667,-122.3905556,Redding,CA,cigar,300,Brightly illuminated thin cigar. ((NUFORC Note: ISS sighting. PD)) +2009-07-25,37.0808333,-119.4844444,Auberry,CA,unknown,180,White Star Object over the Sierra Mountains. ((NUFORC Note: ISS sighting. PD)) +2009-07-25,39.5297222,-119.8127778,Reno,NV,fireball,60,Bright light observed over Reno, Nevada. Disappears suddenly. ((NUFORC Note: ISS sighting. PD)) +2009-07-25,40.7433333,-88.8813889,Gridley,IL,light,3600,Multiple Moving Stars in Rural IL. ((NUFORC Note: ISS sighting. Satellites are different sizes, and have different albedos. PD)) +2009-07-25,43.7419444,-90.7791667,Cashton,WI,oval,900,3 lights coming from the north to south east,.2 red, 1 white, total time 15 minutes, all seperate sightings. ((NUFORC Note: ISS. PD)) +2009-07-25,35.7477778,-95.3694444,Muskogee,OK,sphere,120,a single ball of light. ((NUFORC Note: ISS. PD)) +2009-07-25,30.7780556,-88.2591667,Semmes,AL,light,600,I saw a star-sized light emerge over a tree-line approximately 30 ft from me (trees about 30-50 feet tall). ((NUFORC Note: ISS. PD)) +2009-07-25,42.3180556,-84.0205556,Chelsea,MI,circle,240,10-12 objects seen in sky at late dawn +2009-07-25,39.7683333,-86.1580556,Indianapolis,IN,disk,240,At 10:00 p.m. EST on 7-25-09, 20 to 30 yellowish disks were observed travelling accross the northern sky near Indianapolis. +2009-07-25,32.5713889,-89.1213889,Union,MS,light,10,A brilliant starburst light in the night sky which moved away from the three witnesses at an unbelievable speed. +2009-07-25,33.8752778,-117.5655556,Corona,CA,light,600,strange light maneuvering along the foothills +2009-07-25,44.0522222,-123.0855556,Eugene,OR,light,120,Sheldon area double UFO sighting +2009-07-25,43.07,-94.2327778,Algona,IA,light,120,bright white light traveling north west to south east. ((NUFORC Note: Possibly the ISS, but it was visible only at 21:30 hrs. PD)) +2009-07-25,34.3541667,-119.0583333,Santa Paula,CA,disk,14400,This thing lit up and we could see lights all around it when it powered up to move +2009-07-25,34.3541667,-119.0583333,Santa Paula,CA,oval,10800,Three flashing lights , bright blue and red in mountains moving around in what apperared to be an oval shaped disk then to the left of +2009-07-25,40.7619444,-80.6988889,Elkton,OH,oval,5,Orange light suddenly performs upside down "Omega" shapped dip. +2010-07-25,38.2097222,-84.2530556,Paris,KY,fireball,300,Saw a red and orange fireball traveling slow speed wasnt coming down it was going up then it looked like the fire went out and it disap +2010-07-25,47.8108333,-122.3761111,Edmonds,WA,cone,3600,Rainbow orb/cone. +2010-07-25,38.6272222,-90.1977778,St. Louis (Sappington/Crestwood),MO,light,2700,white lights moving within the clouds in irregular circular formation. ((NUFORC Note: Possibly advertising lights. PD)) +2010-07-25,46.7833333,-92.1063889,Duluth,MN,circle,15,Bright blue-green ball with trailing light tail +2010-07-25,39.7458333,-75.5469444,Wilmington,DE,other,5400,Brightly lit object floating silently near tall trees. ((NUFORC Note: Possibly Jupiter in the southern sky. PD)) +2010-07-25,35.4675,-97.5161111,Oklahoma City,OK,rectangle,420,Upside-down landing carrier, about 40-50 feet in length. +2010-07-25,46.0647222,-118.3419444,Walla Walla,WA,changing,10,The sighting happened towards the latter part of July 2010. While watching my son play I noticed a large object in the distance. My +2010-07-25,35.4675,-97.5161111,Oklahoma City,OK,cylinder,900,Inverted craft 40+ft long over North Oklahoma City hovering moving and changing directions +2010-07-25,20.8783333,-156.6825,Lahaina,HI,chevron,1800,three boomerang shaped objects, red/orange in color +2010-07-25,45.5236111,-122.675,Portland,OR,circle,60,Planet Sized Orb Passes Behind Venus Then FLICKers Out! +2010-07-25,31.7586111,-106.4863889,El Paso,TX,light,60,Yellow ball of light following a commercial airliner. +2010-07-25,46.6541667,-120.5288889,Selah,WA,disk,7,UFO over selah wa +2011-07-25,29.4747222,-81.1272222,Flagler Beach,FL,fireball,120,Fire Ball crash into Atlantic Ocean +2011-07-25,27.1958333,-82.4905556,Osprey,FL,other,3600,Triangle Bell Saucer and other unknowns appear to dogfight above my neighborhood. +2011-07-25,39.9611111,-82.9988889,Columbus,OH,chevron,120,Huge Arrow shaped object with multiple lights veiwed and followed in car with friend over Columbus, Ohio. +2011-07-25,47.6063889,-122.3308333,Seattle,WA,fireball,8,Green to red fireball sited in Seattle, traveling E to W and a large flash of light beyond the horizon. ((NUFORC Note: Meteor? PD)) +2011-07-25,33.1958333,-117.3786111,Oceanside,CA,fireball,15,Orange light +2011-07-25,44.6402778,-93.1433333,Farmington,MN,oval,180,An oval-shaped yellow light emitting an odd electronic sound hovered about 100 feet off the ground 3/4 of a mile away from me and left. +2011-07-25,42.2886111,-85.4180556,Galesburg,MI,changing,60,I viewed a 'fireball' change into an aircraft +2011-07-25,39.9205556,-105.0861111,Broomfield,CO,unknown,2,Small, bright orb in Broomfield. +2011-07-25,43.4941667,-88.5447222,Mayville,WI,light,45,2 EXTREMELY fast moving objects 20secs. apart taking the exact same path as though they were in a flight pattern. +2012-07-25,39.9611111,-82.9988889,Columbus,OH,triangle,3,I saw a huge triangular object with lights on the bottom flash across the sky and in like 2 seconds it was gone. +2012-07-25,45.22,-83.5208333,Leroy,MI,oval,7200,I have photos and video of a two hour long encounter - one pic with at least 100 unknown objects that are flying +2012-07-25,61.2180556,-149.9002778,Anchorage,AK,other,300,Black mass in Anchorage. +2012-07-25,41.85,-87.65,Chicago,IL,oval,15,Grayish black oval sighted over Chicago moving at fast rate of speed! +2012-07-25,41.85,-87.65,Chicago,IL,oval,7,Dark Grey oval shaped object flying above plane at high rate of speed +2012-07-25,40.1794444,-74.8555556,Fairless Hills,PA,circle,900,Bright Light +2012-07-25,38.2680556,-77.1847222,King George,VA,circle,45,Bright shining light traveling over Virginia. +2012-07-25,38.8611111,-86.4872222,Bedford,IN,fireball,7500,Bright orange sphere, pulsated a pink and blue light,several apeared and orbited it then vanished +2012-07-25,41.5622222,-72.6511111,Middletown,CT,sphere,60,Bubble like object with single light source moving low, fast and quiet in broad daylight, posssibly pursued by military fighter jet. +2012-07-25,42.9786111,-71.0733333,Brentwood,NH,other,5,Highly reflective obect seen above the tree tops while traveling west on Rt 101. +2012-07-25,44.6366667,-123.1047222,Albany,OR,cross,20,Looking up at moon. Looks liked a foot off it from my eye. +2012-07-25,28.0891667,-80.5658333,Indialantic,FL,oval,4,I was on the beach and i saw the most unbelievable oval shaped explosion of orange light which slowly turned green aNd dissapeared +2012-07-25,32.8338889,-109.7069444,Safford,AZ,fireball,10,Fireball looking object in south sky 12 miles south of Safford, Arizona. +2012-07-25,33.9488889,-118.4447222,Playa Del Rey,CA,fireball,30,Small fireball object traveling from west to east, approx 6ꯠ-10ꯠ foot elevation.Object made no noise, had no navigation light +2012-07-25,38.895,-77.0366667,Washington,DC,changing,900,3 objects in 15 minutes, 2 balls of light moving north to south and 1 shape changing white &quot;ball&quot; moving in same direction +2012-07-25,39.7419444,-92.2583333,Clarence,MO,light,3600,Solid white lights crossing the sky at a very high altitude at a very rapid speed. +2012-07-25,33.9966667,-77.9075,Kure Beach,NC,circle,1500,Round dull-orange lights, stationary in the sky, over Kure Beach, NC, coastline night sky +2012-07-25,33.6888889,-78.8869444,Myrtle Beach,SC,sphere,2700,There were 10 bright orange spheres that would appear, disappear and reappear in several different locations across the night sky. +2012-07-25,39.7458333,-75.5469444,Wilmington,DE,sphere,20,Four Bright Orange Sheres appear twice with 5 minutes seen by neighbors in Delaware +2012-07-25,43.1713889,-70.6094444,York Beach,ME,light,300,Yellow/orange lights floated down York Beach Maine and out to sea. +2012-07-25,48.0152778,-122.0625,Lake Stevens,WA,fireball,240,Glowing Orange Sphere Shaped Object like a Flying Fireball in our 3 acre yard.Going left to right then over treeline +2012-07-25,32.9013889,-92.2419444,Marion,LA,cigar,180,Several pulsating lights from a single craft flew at low altidude, traveling from the east horizon to west horizion at high velocity. +2013-07-25,41.2411111,-77.0013889,Williamsport,PA,other,60,Object flying thru sky lit up with bright white light then just disappeared +2013-07-25,45.5947222,-121.1775,The Dalles,OR,fireball,4,Yellow and greenish fireball streaking to the west over north central Oregon. +2013-07-25,57.79,-152.4072222,Kodiak,AK,triangle,180,Three white lights triangular shape seen over Pillar Mountain Kodiak Alaska. +2013-07-25,32.8577778,-97.2544444,Watauga,TX,light,1,Light shoots across sky with another cradt that seemed to watch it. +2013-07-25,38.8444444,-82.1372222,Point Pleasant,WV,unknown,600,Odd lights in the sky around Point Pleasant WV. +2013-07-25,42.44,-79.3319444,Fredonia,NY,light,5,Bright orb like light shooting in multiple directions early morning. +2013-07-25,39.7683333,-86.1580556,Indianapolis,IN,light,45,Strange white shape shrinks and disappears. +2013-07-25,41.0813889,-81.5191667,Akron,OH,triangle,300,Large, fast triangle craft +2013-07-25,26.5216667,-82.1894444,Captiva,FL,light,180,Seventh sighting of a "UGO" in past 4 weeks. +2013-07-25,39.6416667,-77.7202778,Hagerstown,MD,oval,2,3 black oval objects heading from east to west flying very fast with no sound +2013-07-25,40.2522222,-105.8225,Grand Lake,CO,cigar,60,I am a farmer from Northeast Missouri. While on vacation in Grand Lake, Colorado I was standing outside talking with two construction w +2013-07-25,40.1294444,-86.6066667,Thorntown,IN,disk,10,Whty I saw I cannot explain. +2013-07-25,38.8047222,-77.0472222,Alexandria,VA,sphere,300,Bright white lights hovering over Potomac River near Washington DC and Alexandria VA. +2013-07-25,43.0480556,-76.1477778,Syracuse,NY,circle,1800,Very bright round object, witnesses descending and hovering in sky over the city. +2013-07-25,42.7677778,-78.6136111,East Aurora,NY,oval,300,7 Orange-Redish Oval Objects in the sky in East Aurora,NY +2013-07-25,30.4211111,-87.2169444,Pensacola,FL,sphere,60,We witnessed three orange lights in the sky over Pensacola. +2013-07-25,38.6272222,-90.1977778,St. Louis,MO,fireball,60,Orange Uidentified Light STL Sky. +2013-07-25,41.0441667,-83.65,Findlay,OH,sphere,20,Four glowing balls of light that changed direction and sped off really fast. +1970-07-26,34.7391667,-112.0091667,Cottonwood (30 Min.west Of Sedona),AZ,cylinder,4500,My family and I were sitting on our front porch, faceing west about 10:30 p.m. As dusk was turning to night we abserved a bright light +1974-07-26,35.7144444,-81.1463889,Claremont,NC,oval,10800,1 of 3 UFOs followed my car after we watched them hovering for a few hours. +1976-07-26,41.2563889,-74.3602778,Warwick,NY,light,180,UFO sighting? Unbelievable expierience! +1978-07-26,38.5096,-90.639,Eureka,MO,light,2,In an incident similar to others around this date, a ball of light flashed down at our car then veered away. +1978-07-26,38.6272222,-90.1977778,St. Louis,MO,unknown,120,Red light from outside lights up the my bedroom. +1978-07-26,38.45,-91.0083333,Union,MO,light,600,Three witnesses. While driving down Highway 50 East they noticed a big bright orange ball in the sky. It was bigger than the moon but +1978-07-26,38.45,-91.0083333,Union,MO,light,120,Three witnesses reported seeing a unusually bright white light cross the sky moving east to west... +1988-07-26,28.4055556,-80.605,Cape Canaveral,FL,rectangle,300,Large undenible object. 100 feet off the ground. I was right underneth it. The size and shape of a football field. +1989-07-26,45.4872222,-122.8025,Beaverton,OR,cylinder,20,Large cylinder seen at low altitude during daylight in urban area. +1989-07-26,38.4405556,-122.7133333,Santa Rosa,CA,sphere,600,Two very large glowing objects (one red, the other orange) stationary in the night sky, two appearances over about 15-20 minutes. +1992-07-26,45.0025,-69.0241667,East Corinth,ME,oval,2700,A large object came across a field, hovered directly overhead at about 150', then played "cat and mouse" games with me for about 45 min +1997-07-26,48.1988889,-122.1238889,Arlington,WA,changing,1200,At 3:20 a.m. I looked out the peephole in the door, and I saw a white object in the sky outside my house. It changed shapes,ovals, tria +1997-07-26,38.7627778,-93.7358333,Warrensburg,MO,triangle,2700,Two UFO's observed over Warrensburg MO for 45 minutes in broad daylight. +1998-07-26,42.1291667,-80.0852778,Erie,PA,light,15,Two of my friends and I were sitting on a picnic table in southeast Erie, Pennsylvania. We were looking west when appeared what seemed +1998-07-26,45.5236111,-122.675,Portland,OR,cylinder,60,The object was flying at a very high speed(probably 3000 miles per hour) without making any sound. +1998-07-26,43.0008333,-73.8494444,Ballston Spa,NY,oval,1800,Several white lights with blue and green intermittently . Followed me while I was driving to my house ,hovered for 20 min outside my +1998-07-26,37.9255556,-122.5263889,Corte Madera,CA,triangle,1,witnessed approximately 1 second of flight of an object unknown to me in the northern hemisphere of the night sky. +1999-07-26,40.0591667,-74.1375,Bricktown,NJ,rectangle,20,A LARGE ORANGE LUMINOUS RECTANGULAR-SHAPED CLOUD WHICH HELD ITS SHAPE MOVED SLOWLY ACROSS THE SUMMER SKY IN1999 +1999-07-26,45.5236111,-122.675,Portland,OR,changing,600,Big black object that came apart and molded back together. +1999-07-26,33.5480556,-86.5444444,Leeds (Outside Birmingham),AL,sphere,5,looked like a ball of white light (pulsating light to dark) in the northern sky moving from East to West, probably about 1.5 miles dis +1999-07-26,42.085,-76.0541667,Vestal,NY,light,60,Light flies over observatory immediatly after MIR. +1999-07-26,41.85,-87.65,Chicago (Southwest Side),IL,disk,30,Slow moving, then rapid moving to out of view disc shapes object in night sky +1999-07-26,35.4833333,-86.4602778,Shelbyville,TN,oval,20,Spotted a luminous blue oval-shaped object traveling in a S to N direction. Object appeared to have a red glowing ring surrounded by a +1999-07-26,47.2502778,-122.2925,Edgewood,WA,unknown,300,Strange object with size, movement and high rate of multiple flashing light sequences that are not seen in modern human technology +2000-07-26,29.6897222,-95.8994444,Fulshear,TX,fireball,5,flashing ball of light in the sky +2000-07-26,30.1666667,-96.3975,Brenham,TX,light,2,I saw a red light through the tree, a blue light scanned me up and down and went out. +2000-07-26,30.7716667,-96.0747222,Iola,TX,unknown,25,I WAS SITTING ON MY CARPORT WHEN I LIGHT CAME SHINING THROUGH THE TREE +2001-07-26,42.7397222,-91.2777778,Elkport (Rural Area),IA,light,600,Vivid Orange Lites In the West +2001-07-26,38.4405556,-122.7133333,Santa Rosa,CA,light,5,Blue spherical light moving in a corkscrew spiral, very fast with no sound, moving west in Northern California. +2001-07-26,39.7391667,-104.9841667,Denver,CO,oval,600,Two solid ovoid objects with occasional light flashes drift like balloons overhead, but against the wind +2001-07-26,42.3369444,-83.2733333,Dearborn Heights,MI,cylinder,180,Slow moving (neon light tube) shaped object +2002-07-26,38.6244444,-76.9394444,Waldorf,MD,unknown,180,Was awoken by a very loud aircraft of some sort that was flying way too low. +2002-07-26,39.9611111,-82.9988889,Columbus,OH,circle,0.5,Blue Circle/Flame shooting across sky +2002-07-26,38.8902778,-77.0844444,Arlington,VA,light,120,My son and I were in the back yard of our house a little after 1:00 in the morning last night. (about 1:15 am this morning). We had go +2002-07-26,38.6244444,-76.9394444,Waldorf,MD,circle,1200,A U.F.O. was obseved being chased by f-16's in Waldorf, MD, which is located 20 miles from Wash D.C. +2002-07-26,47.6063889,-122.3308333,Seattle,WA,cigar,60,shiny cigar shaped thing with no wings +2002-07-26,35.0525,-118.1730556,Mojave,CA,light,300,very bright light blinked out 1000 ft over Edwards Air Force Base. +2002-07-26,42.9302778,-73.2430556,North Bennington,VT,disk,360,we were standing outside in the dark, when all of sudden we looked up and saw what appeared to be an airplane, but after we took a seco +2002-07-26,39.6847222,-83.9297222,Xenia,OH,circle,1,It was round with red lights on it +2002-07-26,39.9522222,-75.1641667,Philadelphia,PA,light,120,Sight with sound & barking dogs! +2002-07-26,37.2494444,-83.1933333,Hazard,KY,formation,120,moving stars. I saw 3 stars move and fly into deep space +2002-07-26,32.7833333,-96.8,Dallas,TX,fireball,120,THESE LOOKED LIKE A TRUE CHAMZ SIGHTING. ORANGE RED AND YELLOW FIREBALLS FLEW RIGHT PAST US ABOUT 100 FEET UP IN THE SKY. THEY MOVED RE +2002-07-26,45.5236111,-122.675,Portland,OR,light,2,Pacific NW light in the sky moving fast from North to South. +2002-07-26,44.7719444,-85.5013889,Acme,MI,light,60,It varied speed and wobbled as it flew. +2002-07-26,38.8202778,-81.7797222,Evans,WV,changing,1200,Changing orange object over treeline. +2003-07-26,38.8047222,-77.0472222,Alexandria,VA,unknown,30,Was a light going from east to west, it got brighter then dimmer did this twice then eventualy dissapeared into the horizon. Was just a +2003-07-26,35.2230556,-93.1577778,Dardanelle (2 Mi. From Logan, On Hwy. 22),AR,light,60,Moving ,blue star-like object changes to bright yellow, going form north to south. +2003-07-26,39.5752778,-76.9961111,Westminster (Near),MD,formation,30,Cluster seen over Carrol County ,Maryland +2003-07-26,34.1808333,-118.3080556,Burbank,CA,unknown,600,Strange orange glow like flame of hot air balloon - but without the balloon - over the evening sky in Burbank, CA. +2003-07-26,45.5236111,-122.675,Portland,OR,fireball,120,This was the amber fireball...very smooth trajectory and very fast...just takin` its time it seemed.... +2003-07-26,36.4011111,-93.7377778,Eureka Springs,AR,light,15,White light increased in size and brightness and then shot off into space. +2003-07-26,41.5236111,-90.5775,Davenport,IA,light,15,beautiful lights? +2003-07-26,34.9236111,-77.7741667,Beulaville,NC,flash,3600,iam older than 60 and a vet and this was exciting +2003-07-26,45.4563889,-123.8427778,Tillamook,OR,fireball,120,fireball into ocean +2003-07-26,41.8455556,-87.7538889,Cicero,IL,circle,180,Gray circle followed by two small lights. +2003-07-26,37.0297222,-76.3455556,Hampton (Near Langley Afb),VA,light,1800,A bright light in the sky almost directly over head seemed to be moving in an erratic pattern. +2004-07-26,37.3394444,-121.8938889,San Jose,CA,unknown,60,2 quick flashes of light distant from eachother appeared in the sky over the Santa Cruz mountains. +2004-07-26,38.7013889,-90.1486111,Granite City,IL,cigar,900,Cigar sgaped (Oblong) Obejct seen hovering over Eastern Illinois +2004-07-26,36.0397222,-114.9811111,Henderson,NV,sphere,40,It was a partly cloudy sky when my brothers and cousin saw 8 white spheres flying crazy around 1 sphere, but when I called my mom out t +2004-07-26,47.6816667,-122.2075,Kirkland,WA,sphere,60,AGAIN I saw the very high sphereical object moving in circles this time, zig zag sort of. It was very orange/red this time again. I w +2004-07-26,36.1538889,-95.9925,Tulsa,OK,cylinder,300,There were two objects, red and white, cylindrical in shape, extremely high up moving at incredible speed. +2004-07-26,44.8994444,-97.1147222,Watertown,SD,light,240,A bright light similar to a very bright star, flew across the sky from the northwest to the southeast at a constant speed. +2004-07-26,47.9791667,-122.2008333,Everett,WA,light,180,Have you seen an orange ball of light bouncing through the sky? +2004-07-26,47.9791667,-122.2008333,Everett,WA,light,300,A bright orange ball of light flying east to west, bouncing up and down, stopping and changing speed. +2004-07-26,41.1586111,-101.0022222,Hershey (Or Sutherland),NE,other,1800,Needle nosed object widening out into a triangular shape, The rear of the triangle had a shaft extending out into a oval into a +2005-07-26,32.8997222,-94.5561111,Avinger (Lake O' The Pinext),TX,changing,30,The silent object appeared to be glowing and then began to grow dimmer before I lost it, and I got six pictures of the event. +2006-07-26,42.7977778,-83.705,Fenton,MI,disk,60,Whitish yellow saucer disk lights up near Phil's store in Fenton +2006-07-26,36.7477778,-119.7713889,Fresno,CA,light,30,fresno early morning sighting +2006-07-26,31.1797222,-83.7891667,Moultrie,GA,circle,50,The stars are alive +2006-07-26,33.4483333,-112.0733333,Phoenix,AZ,cigar,300,silver tube slowly travelling east in phx sky. +2006-07-26,33.6888889,-78.8869444,Myrtle Beach,SC,light,7200,Amber lights over Myrtle Beach South Carolina +2006-07-26,42.2527778,-71.0027778,Quincy,MA,oval,10,small star like object traveled through sky like a plane then speed up as it came close to star went around and disappeared puff +2006-07-26,47.6063889,-122.3308333,Seattle,WA,light,300,NA +2006-07-26,44.4488889,-88.0602778,De Pere,WI,other,12,glowing red bat-like object crosses sky +2006-07-26,33.1975,-96.615,Mckinney,TX,unknown,60,Bright light near Dallas. +2006-07-26,39.3097222,-75.8255556,Massey,MD,light,60,very bright intence light and slowly fades to nothing and moving slow +2007-07-26,47.6063889,-122.3308333,Seattle,WA,rectangle,10,Shaning and static object in Elliot Bay; disappeared in fractions of seconds. +2007-07-26,34.5794444,-118.1155556,Palmdale,CA,light,300,Red ball of light in the eastern sky +2007-07-26,29.4238889,-98.4933333,San Antonio,TX,unknown,1800,"Star" moving extremily fast across the sky, not a sattelite or plane. +2007-07-26,48.7411111,-117.4161111,Ione,WA,circle,600,Up camping and saw green glowing fireballs in the sky OMG +2007-07-26,38.8916667,-83.5233333,West Unity,OH,triangle,45,Triangle craft flew over my backyard +2008-07-26,43.3227778,-76.4175,Fulton,NY,sphere,240,5 men witness floating orange sphere while smoking cigarettes by a field. +2008-07-26,34.448055600000004,-119.2419444,Ojai,CA,changing,900,Red, white, changing object moving around erratically over Santa Barbara, Ventura, Ojai area +2008-07-26,41.4530556,-72.4616667,East Haddam,CT,light,600,Star like object moving erraticly in the night sky. +2008-07-26,42.5908333,-73.7022222,East Greenbush,NY,light,1500,blue and red orb +2008-07-26,43.55,-96.7,Sioux Falls,SD,disk,900,Flashing Red and White Disc off in the Eastern sky on the southwestern side of Sioux Falls +2008-07-26,28.5380556,-81.3794444,Orlando,FL,light,60,Pulsing blue light crossing sky, from west to east, until no longer visible +2008-07-26,42.9105556,-76.7969444,Seneca Falls,NY,fireball,600,6 of us witnessed alow flying, slow moving orange fireball. It was almost like a low flying plane on fire, however there was no sound. +2008-07-26,47.2372222,-93.53,Grand Rapids,MN,fireball,100,Four fireball spheres drift across horizon +2008-07-26,38.4022222,-122.8227778,Sebastopol,CA,triangle,5,Extremely Bright, Triangular shape over St Stevens, Sebastopol. +2008-07-26,34.9072222,-106.6886111,Isleta,NM,unknown,3,Sudden loss of signal on my Sirius satellite radio and police scanner. +2009-07-26,40.8,-96.6666667,Lincoln,NE,light,3600,my neighbors and i saw the bright red light coming out of the north then turning to the east then coming back around to the north takin +2009-07-26,36.2166667,-81.6747222,Boone,NC,light,3,Bright light appears still but leaves motion trail on digital camera +2009-07-26,38.9747222,-74.8338889,Wildwood Crest,NJ,triangle,8,I dont believe what i just saw +2009-07-26,38.9516667,-92.3338889,Columbia,MO,light,20,Green and pink aircraft disappears in Columbia, MO +2009-07-26,43.55,-96.7,Sioux Falls,SD,light,150,One, spherical light orb that is slow moving then rapidly accelerating up into clouds. +2009-07-26,41.2752778,-75.8505556,Plains,PA,circle,900,2nd sighting of circle ship (with escorts) in same location in 2 years. +2009-07-26,41.2752778,-75.8505556,Plains,PA,other,600,1 ring-shaped, 2 circular and 1 kidney-shaped object witnessed in Plains, PA +2009-07-26,41.2752778,-75.8505556,Plains,PA,circle,900,Circle shaped object with hollow center slowly glides over Plains PA with 3 other possible objects +2009-07-26,36.1538889,-95.9925,Tulsa,OK,light,5,07/26/09 Tulsa OK Light bright light flashing on and off moving rapidly across sky +2009-07-26,40.0191667,-82.8794444,Gahanna,OH,light,300,Travelling and Disappearing Starlight. ((NUFORC Note: ISS overflight at 21:27 hrs. PD)) +2009-07-26,38.7144444,-84.8227778,Glencoe,KY,light,180,Bright light over Owen co. kentucky. ((NUFORC Note: Second object was ISS. PD)) +2009-07-26,41.6638889,-83.5552778,Toledo,OH,unknown,45,Redish Glowing Light Moving Across Sky +2009-07-26,39.6136111,-86.1066667,Greenwood,IN,disk,120,Bright red disk shape with red center and a white ship like object in the red center-flew slowly as it passed me and shot away +2009-07-27,36.0702778,-106.0963889,Chamita,NM,light,7,Me and brother in law and his wife, were waiting for famliy to come back from Toas fiesta. After a good rain we were just outside the h +2010-07-26,39.515,-84.3983333,Middletown,OH,unknown,3600,UFO Sighting in Middletown Ohio. Real. +2010-07-26,41.955,-87.94,Bensenville,IL,circle,300,At approximately 8:07am looking east towards O’Hare airport , I seen two objects in the sky.It was a sunny morning with some clouds +2010-07-26,30.2383333,-90.92,Gonzales,LA,sphere,20,ORANGE FIERY ORB TRAVELING NORTH TO SOUTH BENEATH CLOUD COVER THEN SHOT STRAIT UP THROUGH CLOUD COVER AND DISAPPEARED. +2010-07-26,34.5577778,-115.7436111,Amboy,CA,other,420,((HOAX??)) 10 spacecraft and the wormhole that they came out of somewhere over amboy ca. 7/26/10 9.or 9.30pm. +2010-07-26,30.3933333,-86.4958333,Destin,FL,fireball,1200,Fireball without sound circled flight path times six out over the destin beach Summer night at a thousand feet. +2010-07-26,42.5391667,-82.9494444,Fraser,MI,teardrop,600,Round object with a web of lights making it teardrop shaped, moved toward earth, back up, north, then west. +2010-07-26,43.7294444,-70.2425,Falmouth,ME,disk,15,Four Red Saucer Shaped Objects Fly Over Falmouth, Maine +2010-07-26,47.885,-120.1572222,Manson,WA,teardrop,150,it was weird and unexplainable +2011-07-26,28.4366667,-99.2347222,Cotulla,TX,rectangle,15,Small, bright, yellow/orange lights in a pattern and on same plane +2011-07-26,35.1494444,-90.0488889,Memphis,TN,cigar,1800,10 Unknown objects over Memphis ((NUFORC Note: Student report. One of several from the same source. PD)) +2011-07-26,35.1494444,-90.0488889,Memphis,TN,cigar,1800,10 Unknown objects over Memphis. ((NUFORC Note: Student report. One of several from the same source. PD)) +2011-07-26,42.3211111,-85.1797222,Battle Creek,MI,fireball,2,Green fireball over the trees in Battle Creek Michigan. +2011-07-26,39.4352778,-84.2030556,Lebanon,OH,fireball,2,Bright blueish fireball type object in Lebanon +2011-07-26,41.85,-87.65,Chicago,IL,fireball,3,Golden-Very slow-fireball-something about it was NOT RIGHT!! +2012-07-26,36.0013889,-94.0080556,Elkins,AR,disk,300,I saw saucer like shapes with red and orange flashing lights. +2012-07-26,47.1855556,-122.2916667,Puyallup,WA,flash,1,Moon size white light appears in the cloudless sky, then moves quickly for one second and disappears. +2012-07-26,30.275,-89.7811111,Slidell,LA,circle,6,Shot across the sky fast a glowing light +2012-07-26,30.4761111,-88.3422222,Grand Bay,AL,light,3600,My wife and I have been Watching this star like object moving in all directions for a lil over an hour now.has a reddish amber glow tha +2012-07-26,40.8583333,-73.1,Centereach,NY,circle,420,Two lights over Centereach, NY, during a storm. +2012-07-26,34.5958333,-92.4888889,Bryant,AR,light,900,2 light orbs in SW sky, very high altitude moving syncronistically in speed and distance. +2012-07-26,40.8583333,-73.1,Centereach,NY,unknown,600,Lights that moved from one area to another area of the horizon, time span 7 to 10 minutes +2012-07-26,36.0955556,-79.4380556,Burlington,NC,sphere,1800,Glowing ufos follow over burlington nc +2012-07-26,40.8666667,-124.0816667,Arcata,CA,formation,240,Red light surrounded by green neon lights hover a min or two in formation and dart quickly down +2012-07-26,43.6413889,-70.2413889,South Portland,ME,light,600,Red lights glowing over Casco Bay, Maine +2012-07-26,35.3519444,-75.5108333,Avon,NC,fireball,1200,Around 11:30 PM on 7/26/12 me and two of my cousins were looking out over our balcony at A beachfront house in Avon, NC in a southern d +2013-07-26,38.8966667,-121.0758333,Auburn,CA,other,1800,Hello to the National UFO Center: I will make this quick. Grew up in the Silicone Valley and have seen 2 UFO's in the past. What happe +2013-07-26,42.3422222,-74.7175,South Kortright,NY,circle,1800,Object with Red, Blue, and Green Lights Hovers and moves over Catskill Mountains for 30+ minutes +2013-07-26,34.47,-118.1958333,Acton,CA,flash,600,5 consecutive flashes of light. +2013-07-26,38.6580556,-77.25,Woodbridge,VA,sphere,55,Bright white object at high rate of speed vanishes +2013-07-26,38.2008333,-84.8733333,Frankfort,KY,unknown,60,Woken up by a loud sonic explosion in middle of night +2013-07-26,26.5216667,-82.1894444,Captiva,FL,fireball,1440,Sighting #14 – July 26, 2013 – 6th sighting of Amber-orange to red UFO (“fireball”) + 4th sighting of a “flasher” + 7th sighting of lar +2013-07-26,41.8786111,-71.3830556,Pawtucket,RI,light,1200,Light in sky above pawtucket ri +2013-07-26,39.8494444,-75.3561111,West Chester,PA,unknown,720,Two, all-black objects flying slowing without lights, sound, or change in altitude for 12+ minutes +2013-07-26,41.176944399999996,-75.4183333,Tobyhanna,PA,light,900,Lighted object in the SW sky, looked like a star but moved southward and slowly faded out. Then moved north 10 minutes later. +2013-07-26,39.9625,-76.7280556,York,PA,triangle,600,A triangular shaped object with lights was seen moving erratically at a high rate of speed above a busy highway. +2013-07-26,33.1433333,-117.1652778,San Marcos,CA,light,180,The fact i have seen this thing drop something...which does worry me +2013-07-26,37.9886111,-84.4777778,Lexington,KY,fireball,300,Orange Fireball/Light seen in south Lexington / Fayette County travelling from south to south east. +2013-07-26,39.6561111,-77.9319444,Clear Spring,MD,circle,10,Hugh bright light, Very fast.. +2013-07-26,36.0725,-79.7922222,Greensboro,NC,circle,1800,Glowing red/orange orb above tree tops +2013-07-26,38.9988889,-84.6266667,Florence (Near),KY,light,180,3 yellow/orange to orange/red, round to oval shaped lights in NE sky near Florence, Ky. hovered then returned in the NE direction. +2013-07-26,39.8016667,-89.6436111,Springfield,IL,circle,1200,Balls of lights going higher in the sky then coming back down. there were 4 to 9 of these strange shapes. Witnessed by 2 adults. They w +2013-07-26,42.96,-78.4058333,Corfu,NY,fireball,120,Yellow/Orange sphere that changed to blue sphere as it passed witnessed in Western NY by 2 campers +2013-07-26,40.0758333,-74.5836111,Jacobstown,NJ,cone,300,Fire colored orb(s) followed a particular path across the night sky while stopping at particular points. +2013-07-26,41.2372222,-82.12,Lagrange,OH,triangle,30,The bright orange/red triange; all I could do was yelll, &quot;FIREBALL,&quot; STOP THE CAR, but this was no ball. +2013-07-26,43.1552778,-75.9697222,Bridgeport,NY,light,240,Bright starlike stationary light (500 brighter than star) in nighttine sky +2013-07-26,46.7588889,-114.08,Lolo,MT,flash,300,I was outside shutting off the sprinklers and as I was walking back inside I saw a flash of bright blue light. It almost apeared as lig +2013-07-26,44.0522222,-123.0855556,Eugene,OR,unknown,2,Star like white light/ moves across sky and disapears +1965-07-27,41.2425,-82.6158333,Norwalk,OH,light,1500,In late July񫹭, my sister age 15 and myself age 18 were sitting on the front porch of our home. I was waiting for my boyfriend to s +1969-07-27,35.9380556,-77.7908333,Rocky Mount,NC,sphere,900,A FLYING OBJECT BURNED TOP OF TREES IN ROCKY MOUNT, NC. 1969 +1974-07-27,42.2416667,-70.8041667,Cohasset,MA,light,900,Satellite like- bright object, ultra high speed, erratic behavior, 2 separate years, same place, same general time. +1976-07-27,44.8833333,-108.4688889,Cowley,WY,cylinder,600,Witnessed a cylinder shape object, very close, moving slowly, deep humming sound, illuminated portals showing mechanical rooms. +1978-07-27,38.45,-91.0083333,Union,MO,light,60,At approximately 12:10a the witness left her brother's home in Beaufort Missouri returning to her home in Arnold, Missouri; a trip she +1983-07-27,29.4238889,-98.4933333,San Antonio,TX,cigar,900,We saw a cigar-shaped, craft with pulsating green, red, and yellow lights that defied normal earthly aircraft movements. +1994-07-27,35.7325,-78.8505556,Apex,NC,egg,1200,3 egg shaped yellow crafts seen in the sky by 12-15 witnesses, hovers for 15-20 minutes then vanishes! +1995-07-27,42.8863889,-78.8786111,Buffalo,NY,disk,600,we saw a britly light sawser decend from the sky and hover about 30 feet from the ground. +1997-07-27,41.85,-87.65,Chicago,IL,unknown,10,Three single file white lights, moving in unison, south to north, making no sound. +1997-07-27,39.9008333,-74.8238889,Medford,NJ,triangle,300,My friend and I were chased by a triangular object while driving home from a late movie. The object followed us all the way back to hi +1997-07-27,48.1988889,-122.1238889,Arlington,WA,light,120,Just went to bed, glanced out window and saw a white/yellow light in trees. Told friend, got binocluars and looked at it through them, +1997-07-27,32.3122222,-106.7777778,Las Cruces,NM,light,3600,Witness reports an "orange ball of light" at approx 500 feet from ground, was surrounded by helicopters circling it repeatedly. Number +1998-07-27,40.8841667,-72.39,Southampton,NY,changing,1800,A lot of different lights bouncing around a center light. It had reappearing lights and lines. +1998-07-27,38.3497222,-81.6327778,Charleston,WV,fireball,5,A bright green fireball flew across the sky. It was about the size of the full moon and looked much brighter. +1998-07-27,42.2275,-75.9186111,Castle Creek,NY,circle,10,Driving home from work on a clear night, I saw in the middle of the sky four bright lights grouped together in the shape of a square. +1999-07-27,45.6283333,-68.2633333,Macwahoc,ME,other,45,just like ship chased by 2 dozen ohio cops 5 years ago except narrower than one on tv at least 5stories high 6 lights green and orange +1999-07-27,33.8302778,-116.5444444,Palm Springs,CA,triangle,10,Triangular formation of lights moving very slowly southwards +1999-07-27,38.4,-105.2166667,Canon City,CO,flash,30,While enjoying my am coffee and waiting for the sunrise, I was looking toward the southwest, when suddenly near one last remaining star +1999-07-27,47.7558333,-122.3402778,Shoreline,WA,light,60,Two lights seen moving rapidly towards each other, they crossed paths before losing sight of them +1999-07-27,41.1575,-81.2422222,Ravenna,OH,disk,60,Heard of sighting on WNIR FM 100.1 FM 7/27/99Witness was sprayed w/cool clear liquid.FBI takes his cloths/cleaning rags, hospital denie +1999-07-27,45.6388889,-122.6602778,Vancouver,WA,light,240,saw blue oval light. appeared to be emitting from center(lighter and brighter in the center), sped in horizontal line then vanished fr +2000-07-27,45.5236111,-122.675,Portland,OR,light,5,object was reddish orange in color and the light flickered. +2000-07-27,33.3527778,-111.7883333,Gilbert,AZ,circle,1217,Bright red/orange, pulsating and circular object crossed the sky heading mostly West to East for 7 minutes +2000-07-27,33.3061111,-111.8405556,Chandler,AZ,oval,900,Red UFO videotaped from Chandler, looking east. +2000-07-27,33.3527778,-111.7883333,Gilbert,AZ,light,300,i saw a red light in the south eastern sky it was stationary for 3 minites & then appeared to land this light was diffrent than the one +2000-07-27,33.9325,-114.005,Bouse,AZ,light,2,At 21:37, husband was outside compound and saw one amber light appear going from NE to Easterly direction lasted 5 seconds. Then second +2000-07-27,33.9325,-114.005,Bouse,AZ,light,8,Ignorant to military aircraft on maneuvers +2000-07-27,33.9325,-114.005,Bouse,AZ,light,8,A few minutes after my husband and I saw the first set of amber lights, I waited outside and later saw another set. Starting in the No +2000-07-27,47.6741667,-122.1202778,Redmond,WA,light,2,Brilliant object -5 magnitude or brighter traveling WNW and disappearing with unusual rapidity. +2001-07-27,43.6122222,-116.3905556,Meridian,ID,diamond,7230,Three Head Lights, Plasma bottom, Different colors, Bizzar flying Patterns, 2 encounters almost exactly 1 year apart. +2001-07-27,40.7141667,-74.0063889,New York City,NY,oval,15,On July 27񫺑 I saw lights that outlined a large oval from which three other bright white lights detached and flew away. from +2001-07-27,36.1397222,-120.3591667,Coalinga (Just Outside),CA,unknown,300,3 of us saw a UFO on HWY 5 on 7/27 at 3:32 am -- 3 white lights with very bright beam, then red flashing light +2001-07-27,41.2888889,-72.6822222,Guilford,CT,cone,120,Cone shaped objects with lighted tails observed in northeast +2001-07-27,39.3266667,-110.9638889,Huntington,UT,light,120,two lights adjacent to each other going from west to east, looking light two pieces of space debris +2002-07-27,42.6055556,-83.15,Troy,MI,rectangle,4,Gov't chased ufo ended up in Michigan; the reversed mini-van shaped object appeared in Troy on I-75 +2002-07-27,42.4891667,-95.5447222,Holstein,IA,light,15,shooting star look alike but didn't fade or travel in a straight line! +2002-07-27,33.78,-118.2616667,Wilmington,CA,rectangle,180,Two Billboard Crafts fly over yard party moments apart then turning and riseing out of site over LAX air space +2002-07-27,34.7694444,-92.2669444,North Little Rock,AR,disk,120,we saw a saucer shaped object silver chrome like,bright sunlight bouncing off of it. hovering in place. my adult daughter and I were h +2002-07-27,33.4483333,-112.0733333,Phoenix,AZ,circle,1800,Hovering Circular Object West of Phoenix on 7/27/02 at 8:00 p.m. +2002-07-27,34.2694444,-118.7805556,Simi Valley,CA,oval,60,faint yellowish color. Edges appeared to be vibrating I first noticed it near overhead. It was moving east steadily.It disappeared +2002-07-27,43.0113889,-75.0044444,Mohawk,NY,light,60,A stationary bright light appeared and started getting closer, than reversed and quickly moved away. +2002-07-27,47.6063889,-122.3308333,Seattle,WA,flash,20,I was out in the backyard of the house at 1827 39th Ave. E. in Madison Park area of Seattle, looking at the stars and then observed a f +2003-07-27,31.7586111,-106.4863889,El Paso,TX,light,3,A distant ball of blue and orange light that disappeared after rapidly moving at a downward angle. +2003-07-27,33.7938889,-84.6605556,Lithia Springs,GA,light,3600,My brother and I were smoking out on the front porch watching the stars when I saw a small light moving across the sky the size of a sm +2003-07-27,39.8411111,-96.6469444,Marysville,KS,flash,3,A blue/white flashing light traveled past our car from south to north in an incomprehensibly short interval of time. +2003-07-27,37.5841667,-122.365,Burlingame,CA,disk,120,Saucer with lots of lights flying at about 3ꯠ feet. and made no sound. +2003-07-27,46.2858333,-119.2833333,Richland (Tri-Cities),WA,circle,1200,Twenty minute observation of a silver and black disk performing "hawk-like" maneuvers. +2003-07-27,44.9902778,-123.025,Keizer,OR,other,300,translutant orb seen two different times. +2003-07-27,45.0563889,-92.8058333,Stillwater,MN,fireball,5,A family of three witness two quck flashes, then a VERY fast, dramatic fireball streak west in the night sky. +2003-07-27,46.2397222,-119.0994444,Pasco,WA,cross,300,for two nights now have seen strange lights and have videotape of the first night. +2004-07-27,36.6177778,-121.9155556,Pacific Grove,CA,other,1500,High alltitude V-shape, slow moving +2004-07-27,42.2611111,-71.4638889,Ashland,MA,oval,1200,Ashland, MA UFO on Chestnut St. +2004-07-27,35.0525,-118.1730556,Mojave,CA,diamond,28800,bright light from the west came close within a few feet then shot into hyperspeed to the north +2004-07-27,36.1658333,-86.7844444,Nashville,TN,other,900,A Shapeshifting Black Balloon Flashed A Red Light At Me +2004-07-27,47.7544444,-122.1622222,Woodinville,WA,teardrop,2100,Horizontal teardrop, with dome, moved from southwest to northwest, blue-ish color. +2005-07-27,36.8527778,-75.9783333,Virginia Beach,VA,light,180,Bright light gains size over, and vanishes over Lesnor Bridge, in Virginia Beach! +2005-07-27,40.9277778,-73.7522222,Larchmont,NY,sphere,120,brite sphere making very sharp turns very fast then stoping on a dime. +2005-07-27,26.0625,-80.2333333,Davie,FL,teardrop,600,black teardrop shaped object floating over davie florida +2005-07-27,38.9516667,-92.3338889,Columbia (Near),MO,cylinder,180,Oblong-shaped object in the morning sky over interstate +2005-07-27,40.6955556,-73.3261111,West Babylon,NY,circle,30,A circular object that was spotted in NY. +2005-07-27,36.8466667,-76.2855556,Norfolk,VA,sphere,600,Norfolk UFO watches a storm? +2005-07-27,45.3763889,-122.0155556,Brightwood,OR,circle,120,Sandy River lights in the sky make no sense +2005-07-27,35.5066667,-97.7622222,Yukon,OK,triangle,300,Triangle shaped with bright white light made no sound +2005-07-27,41.0041667,-92.3736111,Ottumwa,IA,rectangle,60,Rectangle-shaped craft - silhouette +2005-07-27,40.8766667,-73.325,East Northport,NY,oval,1200,A Small Lit up Craft @ 1130 Pm. +2006-07-27,32.5402778,-82.9038889,Dublin,GA,triangle,60,Triangular-shaped metallic object ,several flashing lights on craft, 4 large lights (rear under-belly), flying low just above trees. +2006-07-27,42.7261111,-71.1913889,Methuen,MA,oval,3,Found an bright oval shape ball of light flying in the northeast directon... +2006-07-27,34.7544444,-118.2886111,Antelope Acres,CA,other,45,odd single light in the sky +2007-07-27,38.8338889,-104.8208333,Colorado Springs,CO,light,900,while laying in bed a little before midnight a bright red light caught my eye. it was was quite a distance from the window and was gli +2007-07-27,32.4797222,-86.3619444,Millbrook,AL,oval,2,UFO moving West on Cobbs Ford Road toward Prattville, AL - Oval shape and glowing. +2007-07-27,29.4238889,-98.4933333,San Antonio,TX,triangle,600,Aurora/U.F.O. sighting in San Antonio +2007-07-27,37.8044444,-122.2697222,Oakland,CA,oval,300,30 small round objects floating horizontally in circular formation +2007-07-27,35.7141667,-83.5102778,Gatlinburg,TN,egg,2,Took Picture of an object over Gatlinburg Tn possiably UFO +2007-07-27,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,1,Bright white fireball with blue green and red tail shoots accross the sky during baseball game. +2007-07-27,33.6888889,-78.8869444,Myrtle Beach,SC,oval,3,Bright light with bright blue tail +2007-07-27,37.9841667,-120.3811111,Sonora,CA,light,3,Steady green light shot down from the heavens and to close proximity to the ground +2007-07-27,39.3280556,-120.1822222,Truckee,CA,unknown,10,The object moved accross the night sky, suddenly turned bright white,stopped and emmitted a smaller white light. +2007-07-27,42.4075,-124.4205556,Gold Beach,OR,light,30,4 Balls of Light Travelling at High Speeds in Gold Beach, OR +2007-07-27,32.7152778,-117.1563889,San Diego,CA,disk,30,Small, disk like object with blue lights flying over Chula Vista, Ca at South Bay Drive-In Movie Theater in July, 2007. +2007-07-27,33.8158333,-78.6802778,North Myrtle Beach,SC,fireball,5,green fireball seen north myrtle beach +2007-07-27,34.5363889,-79.2916667,Rowland,NC,teardrop,5,Neon Green object appears from behind cloud and Shoots faster than lightning across Sky. +2007-07-27,34.3369444,-79.4313889,Latta,SC,oval,3,Disc shaped, rapidly changing colors, moving horizontally just below full moon. +2007-07-27,40.8122222,-73.0788889,Holbrook,NY,triangle,120,A large triangular shaped object with a large red light on the underside and three large circular white lights on the rear. Very large +2008-07-27,34.565,-83.5452778,Demorest,GA,unknown,30,Very fast moving, quiet object that abruptly stopped in the sky and turned from bright white to bright red as it rapidly disappeard. +2008-07-27,34.6875,-77.0727778,Cedar Point,NC,light,30,Eight people witnessed strange lights on the beach in Cedar Pointe, NC +2008-07-27,26.6583333,-80.2416667,Wellington,FL,disk,15,The other night me and my friend went camping in my backyard, and we were just relaxing and having a good time. It was around 12:30 A. +2008-07-27,38.9988889,-84.6266667,Florence,KY,triangle,300,I left my boyfriends house in Hebron KY around 1:15am. I was headed south to my home in Crittenden KY. I noticed a large, bright oran +2008-07-27,26.1219444,-80.1436111,Ft. Lauderdale,FL,cone,2,Long cone shaped yellowish-green light beam projected from clouds to Ft. Lauderdale, Florida +2008-07-27,41.5766667,-75.2591667,Honesdale,PA,triangle,3600,many triangled shaped crafts hover over airport +2008-07-27,30.5786111,-97.8527778,Leander,TX,oval,420,Wavey Wings with Strobe Lights !!!! Lasted for 7 Mins +2008-07-27,42.4727778,-122.8016667,Eagle Point,OR,unknown,20,Object seen in the sky west of Medford Oregon. +2008-07-27,29.4238889,-98.4933333,San Antonio,TX,oval,180,Daytime sighting on busy freeway, UFO landed. +2008-07-27,35.6008333,-82.5541667,Asheville,NC,light,300,two dim lights following too closely to be satellites or airplanes... +2008-07-27,37.7838889,-79.4430556,Lexington,VA,sphere,3,White light witnessed from aircraft is seen traveling at an extremely high speed +2008-07-27,33.4486111,-84.455,Fayetteville,GA,unknown,300,Star-like object(s) make unusual manuevers in the night sky. +2008-07-27,40.4111111,-95.5166667,Rock Port,MO,cylinder,3,Large green glow no falling star +2008-07-27,42.5802778,-83.0302778,Sterling Heights,MI,light,1,Thin red lights seen in the sky, thicker than shooting star and deep red. +2009-07-27,33.0144444,-97.0966667,Flower Mound,TX,light,35,Unknown lights hovering above store. +2009-07-27,45.2788889,-92.985,Forest Lake,MN,unknown,120,Unknown water disturbance +2009-07-27,32.9413889,-93.2986111,Shongaloo,LA,disk,300,There was a saucer shaped object in the sky in Shongaloo, Louisiana. +2009-07-27,40.5408333,-79.7841667,Springdale,PA,other,420,Very bright, Star like, Very High altitude, No sound/s, Not moving and very unusual for this area ? +2009-07-27,43.71,-74.9747222,Old Forge,NY,circle,120,craft was a silver circle with 6 distinct lights(2 green, red and white) +2009-07-27,43.71,-74.9747222,Old Forge,NY,circle,120,It was moving faster than any other aircraft I had ever seen. +2009-07-27,38.8905556,-90.1841667,Alton,IL,triangle,1800,huge triangle shaped object with 3 extremely bright lights on bottom +2009-07-27,48.1169444,-118.2008333,Hunters,WA,light,900,4 orange lights some changing color and slowly moving. +2009-07-27,42.926944399999996,-70.9444444,Kensington,NH,light,120,White-Yellowish light too large to be a plane hanging in the sky for a minute or so. ((NUFORC Note: Not the ISS. PD)) +2009-07-27,36.1630556,-82.8311111,Greeneville,TN,light,15,2 lights seen in south west ,The first one moved on ,Then the second one shot down real fast into the woods +2009-07-27,28.2394444,-82.3280556,Wesley Chapel,FL,triangle,1800,Triangle Shaped Object in Wesley Chapel +2009-07-28,47.4705556,-122.3455556,Burien,WA,formation,60,Observed 1 unknown black object for about 20 seconds then transformed to 2 seperate objects. then to form one craft and fly out of view +2010-07-27,39.5213889,-85.7769444,Shelbyville,IN,light,1800,I very see jets and helicopters on a regular basis, due to Indianapolis International Airport & the National Guard Armory in Shelby Co. +2010-07-27,40.7608333,-111.8902778,Salt Lake City,UT,triangle,120,Orange "flaming" Triangle over Salt Lake City dissappears +2010-07-27,40.7608333,-111.8902778,Salt Lake City,UT,triangle,120,Possible explainations of what i saw in Salt Lake City last night +2010-07-27,41.7797222,-71.4377778,Cranston,RI,other,1200,Pulsating white, red, geen light in the Western Sky of Rhode Island. ((NUFORC Note: Sighting of star. PD)) +2010-07-27,33.4483333,-112.0733333,Phoenix,AZ,other,3,((HOAX??)) teriffying and amazing +2010-07-27,36.175,-115.1363889,Las Vegas,NV,disk,180,Large, white, dome shaped object spotted near a "Janet" plane in Las Vegas +2010-07-27,39.5802778,-80.37,Metz,WV,cigar,120,Cigar shaped no wings or tail. no sound or contrail. Disappeared. +2010-07-27,42.0697222,-87.7877778,Glenview,IL,fireball,180,Glenview, july 27, 2010, approximately at 9 pm . saw fireball on the top of Jewel -Osco for 3 min +2010-07-27,48.1183333,-123.4294444,Port Angeles,WA,triangle,20,I was outside smoking a cigarette (I know it's bad for me) and I am a college student who recently took an Astronomy course so I love t +2010-07-27,40.2969444,-111.6938889,Orem,UT,changing,300,We saw a group of about 12 dim lights moving together in the night sky in a graceful fluid pattern. +2010-07-27,43.6155556,-84.2472222,Midland,MI,flash,60,We were driving in a car. In the sky, there was a huge flash that went across the sky and disappeared +2010-07-28,33.9488889,-118.4447222,Playa Del Rey,CA,light,1,I saw this happen one time before but never reported it but Wed night I was star gazing and a really bright light turned on and then of +2011-07-27,32.2780556,-96.0666667,Payne Springs,TX,flash,3,Fast flash not typical of meteor +2011-07-27,41.6105556,-87.0641667,Chesterton,IN,disk,120,Plasma shrouded UFO over Chesterton Indiana +2011-07-27,40.9413889,-73.1063889,East Setauket,NY,circle,120,Port Jefferson +2011-07-27,40.0333333,-83.1583333,Hilliard,OH,oval,1,We witnessed a bright light at inconceivable speeds. +2011-07-27,36.1091667,-94.57,Watts,OK,changing,900,Big light in the middle of town that changed shape and color +2011-07-27,41.1175,-73.4083333,Norwalk,CT,light,3000,Blinking Bright Star/object, at lower alltitude than normal at stand still/ moving very subtully through the night sky. +2011-07-27,41.5119444,-82.9377778,Port Clinton,OH,other,1800,Got out of my car to see a large +2011-07-27,40.8686111,-73.0019444,Coram,NY,light,180,Object as bright as Venus moves through sky long island +2011-07-27,31.7586111,-106.4863889,El Paso,TX,sphere,3,Two objects seen flying east then dissapeared +2011-07-27,40.0741667,-80.1725,Lone Pine,PA,other,1800,Silver oval cylinder. +2011-07-27,35.6527778,-97.4777778,Edmond,OK,light,6,Stars foating off and shooting away +2011-07-27,37.9938889,-92.8361111,Roach,MO,fireball,6,Unexplained Circular Fireball +2011-07-27,44.3113889,-96.7980556,Brookings (Near),SD,circle,45,White light getting larger, then smaller and fading away +2011-07-27,38.9822222,-94.6705556,Overland Park,KS,fireball,10,This was the second one of these I have seen in the last two or three months. I was driving south coming from Kansas City. The fireball +2012-07-27,41.1869444,-87.4483333,Schneider,IN,other,2100,Object was a big ball of blue and yellow lights with very bright red lights around the center. One very, very bright white light shinni +2012-07-27,38.9805556,-76.3147222,Stevensville,MD,light,900,Beight glowing lights sitting starionary for 15 minutes then moving off slowly. completely silent. +2012-07-27,41.6005556,-93.6088889,Des Moines,IA,fireball,5,Green and yellow fall in an arc shape across the sky. very bright +2012-07-27,32.7152778,-117.1563889,San Diego,CA,cylinder,300,Cylinder shaped moving slowly and no sound above Miramar base where it sudden disappeared! +2012-07-27,40.4141667,-111.7577778,Cedar Hills,UT,circle,60,Yellow/white outer circle with red center. They moved across the sky and stopped. One by one they flew further away and disappeared. +2012-07-27,34.9341667,-88.5222222,Corinth,MS,triangle,180,Triangled ufo with three white lights on each corner it had a red blinking light in the center +2012-07-27,35.5333333,-82.9108333,Clyde (Near),NC,triangle,120,Trangular object seen over interstate.. pictures to prove it! +2012-07-27,39.9111111,-85.1616667,Hagerstown,IN,teardrop,600,It was a slow-moving, cylindrical-shaped metallic object. +2012-07-27,35.9572222,-75.6244444,Nags Head,NC,sphere,300,Orbs of light near Jeanette's Pier that vanished +2012-07-27,26.1416667,-81.795,Naples,FL,fireball,120,Good-sized orange fireball coming from Gulf of Mexico in Northeast direction over Naples +2012-07-27,39.6427778,-74.1808333,Ship Bottom,NJ,sphere,60,Silent orange orb flying from north to south. +2012-07-27,47.2530556,-122.4430556,Tacoma (Northeast Area),WA,fireball,120,Red-orange slow moving fireball, inconsistent speed, moving north to south, dimming and finally going out. +2012-07-27,47.1772222,-122.1852778,Bonney Lake,WA,triangle,30,3 amber red lights rotate 360 degrees with bright with light to the left remaining still +2012-07-27,40.0333333,-83.1583333,Hilliard,OH,oval,120,Six red/orange color lights. +2012-07-27,42.7652778,-71.4680556,Nashua,NH,light,600,Red light over nashua nh sky +2012-07-27,39.2019444,-96.3047222,Wamego,KS,formation,60,Two Blue Lights Escorted by a Helicopter in Night Sky +2012-07-27,42.8863889,-78.8786111,Buffalo,NY,fireball,60,Orange fireball in the sky going from East to West. +2012-07-27,38.8002778,-90.6263889,St. Peters,MO,circle,60,Orange glowing light seen over Saint Peters Missouri 7/27/12 +2012-07-27,42.9633333,-85.6680556,Grand Rapids,MI,light,600,Grand Rapids, Michigan 11:15 pm July 27... 2012 think I saw some ufo's or something.. North of east Leonard & 96 area. maybe 20 - +2012-07-27,41.6819444,-85.9766667,Elkhart,IN,circle,120,Bright orange spinning sphere with smaller sphere circling it that sped off into the moon +2013-07-27,37.2152778,-93.2980556,Springfield,MO,fireball,300,Red/orange aircraft on fire like appearance +2013-07-27,45.5236111,-122.675,Portland,OR,circle,2100,I walked outside to my patio and looked to the east I saw a falling star and then a very bright blinking light surrounded by a haze. Co +2013-07-27,29.4238889,-98.4933333,San Antonio,TX,changing,2700,Triangle and oblong shaped saucers +2013-07-27,45.1486111,-93.1513889,Circle Pines,MN,fireball,120,Bright light in the sky with burning material falling from it +2013-07-27,37.4236111,-76.9013889,Lanexa,VA,flash,1800,Saw a white flashing light in lanexa +2013-07-27,30.3933333,-86.4958333,Destin,FL,circle,180,Solid slow moving light, my first UFO. +2013-07-27,40.9780556,-81.7822222,Rittman,OH,light,60,Extremely bright large oval +2013-07-27,41.5263889,-70.6736111,Woods Hole,MA,fireball,60,Orange light crossing sky +2013-07-27,34.3322222,-112.1197222,Cordes Junction,AZ,light,120,10-15 blue pulsating lights in a horizontal line that spanned north and south bound lanes of freeway +2013-07-27,40.0377778,-76.3058333,Lancaster,PA,formation,600,20+ yellowish objects moving smoothly across the evening sky +2013-07-27,41.8786111,-71.3830556,Pawtucket,RI,circle,120,Round hovering objent with bright colored lights +2013-07-27,40.5247222,-111.8630556,Draper,UT,triangle,3,Triangular, translucent object seen in Draper sky +2013-07-27,35.9572222,-75.6244444,Nags Head,NC,fireball,60,Orange Fireball passed North West over land in Nags Head, NC. +2013-07-27,37.2708333,-79.9416667,Roanoke,VA,fireball,60,Bonfire in the sky +2013-07-27,36.3433333,-88.8502778,Martin,TN,formation,60,6 ufos flying in staggered formation south of martin tn. +2013-07-27,40.7163889,-73.8816667,Middle Village,NY,circle,3600,Circular Craft with Brite White Light changing to a Red Light maneuevering impressively. +2013-07-27,40.9977778,-72.2930556,Sag Harbor,NY,fireball,240,Fireballs (4) flew over +2013-07-27,41.3952778,-81.6763889,Seven Hills,OH,circle,240,07/27/13 at 21:55 in Seven Hills, Ohio observed were 8 round orange-red balls traveling south to north, duration 4 minutes. +2013-07-27,33.8352778,-117.9136111,Anaheim,CA,fireball,25,Falling star, south of me, moments later saw a sphere floating towards me from the direction of where the falling star would have land +2013-07-27,42.4666667,-70.95,Lynn,MA,triangle,300,Red lights +2013-07-27,40.2113889,-74.7883333,Morrisville,PA,circle,300,Circular disk shaped with lights +2013-07-27,33.8166667,-86.6008333,Remlap,AL,light,1,Rotating beam of light +2013-07-27,33.9525,-84.55,Marietta,GA,fireball,240,2 bright orange silent fireballs +2013-07-27,36.3008333,-119.7819444,Lemoore,CA,cross,60,Silent Flying Cross with 3 round white lights 41 N Lemoore sighting July 27, 2013 +2013-07-27,41.4361111,-81.3866667,Chagrin Falls,OH,fireball,30,Single constant, bright orange fireball flying silently south to north on a cloudy night, below the cloud layer. +2013-07-27,34.7302778,-86.5861111,Huntsville,AL,fireball,300,Orange fireball in South Huntsville in the eastern sky for about five minutes, no sound. +2013-07-27,42.6916667,-83.5541667,White Lake,MI,rectangle,180,Noticed 7 to 8 orange objects move across the sky, from West to East, in White Lake, MI. +2013-07-27,38.6858333,-121.0811111,El Dorado Hills,CA,light,120,2 Objects in the Eastern Sierras and a white beam flashing +2013-07-27,36.3319444,-94.1183333,Rogers,AR,light,300,I saw 30 bright white lights hovering in the sky over my neighborhood. I went and got my fiance out of bed to witness the lights. Aft +2013-07-27,38.8002778,-90.6263889,St. Peters,MO,fireball,120,A dozen or more glowing lights in the southern sky that seemed to move slowly then disapered. +2013-07-27,38.9988889,-84.6266667,Florence,KY,circle,60,Circular, rustic looking craft over Florence, Kentucky. +2013-07-27,45.5236111,-122.675,Portland,OR,formation,15,Before seeing this formation we saw two flashes of light at our zenith, and they were not iridium flares. +2013-07-27,48.8466667,-122.5897222,Ferndale,WA,disk,180,I saw a saucer with a orange glow in the sky above Ferndale Washington. +2013-07-27,38.6402778,-92.1222222,Holts Summit,MO,disk,180,They came back... +2013-07-27,44.3141667,-123.2955556,Monroe,OR,light,6,Bright light hovered and then vanished behind the treeline. +1981-07-28,39.0202778,-120.8169444,Foresthill,CA,cigar,25200,Seven nights,missing time and neon lights... +1982-07-28,39.4802778,-80.2736111,Carolina,WV,disk,120,Up close account of a disk like object! +1985-07-28,32.7355556,-97.1077778,Arlington,TX,cigar,120,a object entering the area at a 45 degree angle, turning the sky a bright green. The object slowed down and finally went level and lig +1987-07-28,32.2216667,-110.9258333,Tucson,AZ,flash,2419200,I am apparently being watched, because my family is from Roswell, NM. 500 Lights On Object0: Yes +1992-07-28,43.55,-96.7,Sioux Falls,SD,light,1800,3 Moving Star Sized Lites Grace South Dakota Nite Sky +1995-07-28,43.0494444,-88.0075,Wauwatosa,WI,sphere,900,Saw three UFOs in the sky on a clear blue day. +1997-07-28,36.5963889,-82.1886111,Bristol,VA,cigar,300,Cigar shaped object and dual lights turing and disappearing over horizon at extreme altitude +1997-07-28,44.9741667,-93.5063889,Wayzata,MN,fireball,6,Boating on Lake Minnetonka in MN on warm summer night, skies clear, fireball appeared travelling from East to West at about 60 degrees +1998-07-28,32.7252778,-114.6236111,Yuma,AZ,triangle,180,My wife and I were on our way home from San Diego late at night when I noticed an aircraft flying over head. The craft was very bright +1998-07-28,41.2586111,-95.9375,Omaha,NE,triangle,15,Craft looked like a triangle in cind of a pivot so that what I think was the back. Craft allso looked as if it was engulfed in light +1998-07-28,36.5963889,-82.1886111,Bristol,VA,disk,240,none of theese i had seen +1998-07-28,36.2077778,-119.3463889,Tulare (Close To, On I-5),CA,rectangle,600,We were driving north on Interstate 5, around Tulare,CA. We saw something flying in the sky with three big lights, like spotlights. The +1999-07-28,46.4913889,-122.9366667,Winlock,WA,changing,95,Husband saw 2 on the way home from work. We looked thre a telescope and watched the 1 move and turn corors. It was N.W. Moving S.W. The +1999-07-28,44.5366667,-122.9058333,Lebanon,OR,other,30,Observed a large grey illuminated dog-bone shaped object to right of moon. +1999-07-28,39.7588889,-84.1916667,Dayton,OH,other,7200,Summer of ྟ Nostrodamus prophecy sighting near WPAFB +1999-07-28,47.5675,-122.6313889,Bremerton,WA,circle,270,moon was about 25' off of the horizon object was at 5:30 location of moon .at arms length object was size of thumb nail changed color t +1999-07-28,36.7069444,-97.0852778,Ponca City,OK,triangle,600,night sighting of large triangle object +1999-07-28,42.5630556,-114.46,Twin Falls,ID,fireball,4,green fire ball larger than full moon tail 6-7 times longer than fireball going due north at time of spoting arched doun, because of c +1999-07-28,48.7597222,-122.4869444,Bellingham,WA,light,5,i was driving with my friend, we saw a brilliant shiny white ball, it zoomed irregularly accros and down the sky, it was faster than an +1999-07-28,43.1008333,-74.7733333,Dolgeville,NY,triangle,3,Me and my girlfriend were getting out of the car and we started looking at the stars because the sky was realy clear. As we were doing +2000-07-28,33.4936111,-112.9363889,Tonopah,AZ,egg,8,bright egg shaped object moving at an incredible speed west of phoenix +2000-07-28,35.1177778,-111.0927778,Two Guns (Mm 316),AZ,fireball,10,It was a blue-white fireball, with no tail or sparks. +2000-07-28,32.3511111,-95.3008333,Tyler,TX,sphere,5,I observed a golden sphere in the southwestern sky at about 5:30 am moving slowly north. +2000-07-28,47.7544444,-122.1622222,Woodinville,WA,chevron,1,While sitting on my patio with my head leaned back looking at the stars on a clear night, I saw something, shaped like a boomerang, ver +2001-07-28,33.9136111,-98.4930556,Wichita Falls,TX,triangle,6,sighting of 15 to 20 white trangles in early morning hours of 7-28 01over texas +2001-07-28,34.2572222,-118.6002778,Chatsworth,CA,circle,480,light seemed to turn off like one was turning off a flashlight +2001-07-28,32.7833333,-96.8,Dallas,TX,unknown,600,Dark immobile object in the afternoon sky +2001-07-28,37.9716667,-100.8722222,Garden City,KS,light,600,Two UFO's and a jet in pursuit. +2001-07-28,45.8202778,-88.0658333,Iron Mountain,MI,unknown,120,White object seen moving across sky near the Menominee River. +2001-07-28,44.3125,-94.4602778,New Ulm,MN,triangle,15,I was standing out on the deck, when I saw 3 round steady buring lights that were a pale orange in color. There appeared to be 1 on eac +2002-07-28,42.9033333,-78.755,Cheektowaga,NY,triangle,60,A triangular shaped object with flames and green lights floats through the sky in my neighborhood. +2002-07-28,36.2613889,-90.9711111,Pocahontas,AR,disk,3600,Moved right to left, Flickered orange, blue and green. With binoculars, we could see it was saucer shaped. +2002-07-28,34.8697222,-111.7602778,Sedona,AZ,oval,20,In a wooded area - Saw what appeared to be a figure - glowing - all white light - black "straight" eyes; black diagonal/diamond strip o +2002-07-28,33.1283333,-107.2522222,Truth Or Consequences,NM,changing,300,shinny square no windows with 2 rotating blades on bottom +2002-07-28,33.9616667,-118.3522222,Inglewood,CA,unknown,1800,10-15 lights around sun down. One blinking, all moving slowing across the sky. Possibly satellites, don' t know. +2002-07-28,40.7141667,-74.0063889,New York City,NY,changing,120,Single black flying object, alternating between circular and disclike shape, constant velocity seen over NYC. +2002-07-28,44.0805556,-103.2305556,Rapid City,SD,light,300,A single point of light, similar to a satellite, was seen moving erratically across the night sky over the Black Hills of SD. +2002-07-28,39.8680556,-104.9713889,Thornton,CO,circle,25,Stationary brilliant light that suddenly rotated and rose rapidly and vanished +2002-07-28,34.4358333,-119.8266667,Goleta,CA,unknown,240,3 bright objects in triangle formation seen moving across the night time sky near Goleta Ca. at Refugio Beach Campground 11:30pm +2003-07-28,48.0841667,-121.9675,Granite Falls,WA,changing,900,Stationary egg shape with row of lights in semi-circle array +2003-07-28,47.6063889,-122.3308333,Seattle,WA,circle,1800,Spotted with bonoculars - investigated further with Meade 4504 Telescope SR 4mm, H 12.5mm, H 25mm +2003-07-28,35.2269444,-80.8433333,Charlotte,NC,sphere,180,Large White & Orange Sphere over Kannapolis Concord NC Area +2003-07-28,35.4675,-97.5161111,Oklahoma City (Near),OK,light,10,Big star and a smaller one moving in skies +2003-07-28,29.7630556,-95.3630556,Houston,TX,circle,10,Glowing Green Ball travelling slowly about 50-200 feet from earth in Houston at Westheimer/Chimney Rock +2003-07-28,29.7630556,-95.3630556,Houston,TX,fireball,5,Orange fireball w/green glow & trail low in sky no noise +2003-07-28,30.0969444,-95.6158333,Tomball,TX,flash,6,HBCCUFO CANADIAN REPORT: Flash was a large bright red flame shaped object +2003-07-28,30.0969444,-95.6158333,Tomball,TX,other,5,The trajectory was upwards and the flash was a large bright red flame shaped object with a blueish halo and it had a tail and dissap +2003-07-28,31.6033333,-94.6552778,Nacogdoches,TX,fireball,5,We saw this fireball as well, over 150 miles outside of Houston +2003-07-28,38.5472222,-122.8152778,Windsor,CA,chevron,180,One object traveling towards a group of 3, then fell out of sky. +2003-07-28,45.6797222,-111.0377778,Bozeman,MT,oval,240,bright oval light seen. +2003-07-28,42.3147222,-88.4486111,Woodstock,IL,egg,60,One bright white object with a star burst pattern of light around it +2003-07-28,45.6388889,-122.6602778,Vancouver,WA,triangle,300,I was laying outside stargazing when I saw a triangular formation of light moving as one. +2004-07-28,33.8302778,-116.5444444,Palm Springs,CA,disk,3600,I saw a bright object in the western sky over the San Jacinto Mts. shoot a colored orb from its body. +2004-07-28,34.7438889,-117.3236111,Helendale,CA,circle,20,Light in Sky +2004-07-28,33.5736111,-79.0027778,Garden City Beach,SC,light,300,A series of eight orange-red lights, four horizontal, and 2 sets of 2 vertical, lasting 15 to 30 seconds each +2004-07-28,43.2680556,-82.5308333,Lexington,MI,other,600,orbs of light circling the moon. +2005-07-28,36.5969444,-120.8325,Panoche,CA,diamond,300,Low flying object with four bright lights in a diamond pattern +2005-07-28,42.0663889,-87.9372222,Mt. Prospect,IL,triangle,300,Did anyone else witness the bright strobe light triangular objects in the sky over Mt. Prospect, Illinois 7-28-05 +2005-07-28,44.0247222,-88.5425,Oshkosh,WI,disk,900,White disc against blue sky +2005-07-28,27.5155556,-97.8558333,Kingsville,TX,other,30,About two miles north of Kingsville, near the county line on HY 77, I was driving home from work. It began to rain very very hard and +2005-07-28,39.0825,-74.8241667,Cape May Court House,NJ,unknown,300,Two large brightly lighted UFO's seen by three in southern NJ +2005-07-28,38.8119444,-87.2522222,Edwardsport,IN,unknown,20,the lights flipped on like someone turning on a light switch and then off again +2005-07-28,47.6588889,-117.425,Spokane,WA,disk,7,A big silver flying disc with car like sounds and red and blue lights. +2005-07-28,37.8716667,-122.2716667,Berkeley,CA,fireball,300,Flaming object attached to balloon +2005-07-28,42.7261111,-71.1913889,Methuen,MA,triangle,120,3 red flashing triangles, 1 ball white light ,objects hovered then darted zig zag across sky appeared to chase white ball 2-3 minutes +2006-07-28,40.3977778,-105.0744444,Loveland,CO,formation,60,3 object formation over Loveland, CO +2006-07-28,34.4233333,-118.4711111,Canyon Country,CA,chevron,420,V shaped, sequential red strobing lights on lateral surfaces, enormous size1/4 mile or greater, no sound. +2006-07-28,47.3177778,-119.5525,Ephrata,WA,chevron,120,we saw a brownish red cheveron circling and coming to a complete stop.then it would do it again.then it darted north across the sky. +2006-07-28,40.7141667,-74.0063889,New York City (Brooklyn),NY,circle,900,A white object disappears as 3 of the same reappear, is it a UFO? +2006-07-28,34.3977778,-112.2355556,Mayer,AZ,light,3600,two strage aircraft possibly millitary seen over mayer +2006-07-28,34.3977778,-112.2355556,Mayer,AZ,unknown,2700,strange flying object zigzaging across thesky +2006-07-28,37.9358333,-122.3466667,Richmond,CA,flash,180,Electrical magnetic affects on at least three homes, lightning like flashes observed and blue haze in clouds +2006-07-28,36.1658333,-86.7844444,Nashville,TN,light,300,A high altitude red star began moving fast straight acrossed the sky, then turned up straight up and flew out of sight instantly and wa +2007-07-28,38.5816667,-121.4933333,Sacramento (180 Mi. S Of; On Interstate 5),CA,light,10,On July 28th 2007 my first sighting occurred at approximately 2:30 AM while standing in the parking lot of a highway rest area. I was g +2007-07-28,38.5816667,-121.4933333,Sacramento (180 Mi. S Of; On Interstate 5),CA,unknown,30,A silent anomalous array of 3 white lights some 15-20 feet across flew south along US 5 at no more than 50 feet elevation +2007-07-28,37.8716667,-122.2716667,Berkeley,CA,light,10,Two bright dots traveling silently in sunny blue sky, bay area California +2007-07-28,33.8752778,-117.5655556,Corona,CA,cylinder,2,BRIGHT SILVER OBJECT APPEARING THEN BECOMING INVISIBLE +2007-07-28,37.7427778,-105.8747222,Hooper,CO,disk,1500,Event happened during UFOlympics at UFO Watchtower and I was with Stan Romanek. +2007-07-28,37.7427778,-105.8747222,Hooper,CO,disk,180,3 craft sighted by several witnesses in clear daylight conditions. Timepiece anomoly also occured +2007-07-28,37.7427778,-105.8747222,Hooper,CO,disk,300,Many watch as two UFO’s merge then separate +2007-07-28,37.7427778,-105.8747222,Hooper,CO,disk,60,Saw two craft in close proximity to each other, stationary at distance of several miles, with photographic confirmation, in daylight. +2007-07-28,37.7427778,-105.8747222,Hooper,CO,other,240,2 UFO's spotted over Hooper, Colorado +2007-07-28,42.0255556,-88.1783333,Streamwood,IL,oval,15,Oval Formation of 8 or 9 Bright White and Red Lights - Then Object changed position so only 3 Lights Visible - Streamwood, IL +2007-07-28,36.6408333,-80.2658333,Stuart,VA,oval,3,Saw low flying noiseless aircraft with only 3 window lights seen on a full moon night showing shadow of wingless Lear Jet size at 1k'. +2007-07-28,47.1302778,-119.2769444,Moses Lake,WA,light,120,Traingle formation of lights in the night sky. +2007-07-28,30.2669444,-97.7427778,Austin,TX,circle,180,3 craft over south Austin - Mopac +2007-07-29,35.4675,-97.5161111,Oklahoma City,OK,rectangle,60,Oval-shaped white object flew across north Oklahoma City and disappeared. Helicopter appeared to look for it seconds after it vanished. +2008-07-28,43.8261111,-111.7888889,Rexburg,ID,formation,60,Course-correcting lights in formation, with possible nuclear site connection +2008-07-28,33.9022222,-118.0808333,Norwalk,CA,flash,30,Bright Flash greenish blue +2008-07-28,42.7919444,-83.6277778,Holly,MI,other,5,The Holly Michigan Chupacabra re-appears to witness; creature seen hopping northward in a expressway ditch. +2008-07-28,29.7630556,-95.3630556,Houston,TX,light,496,If I hadn't ran I've would've been abducted..again! +2008-07-28,38.0563889,-83.9433333,Mount Sterling,KY,unknown,1800,Different colored blinking lights flying strangely in the sky, some staying still for periods of time, and even some following others. +2008-07-28,45.5372222,-106.955,Busby,MT,light,120,bobbing light object unknown +2008-07-29,21.3069444,-157.8583333,Honolulu,HI,cigar,900,Sightings I will write down everything I remember from that day. It was a Monday, 28th of July. My daughter & I had errans to run that +2009-07-28,44.8408333,-93.2980556,Bloomington,MN,circle,3600,((HOAX??)) lightship it changed colors very bright. +2009-07-28,40.1447222,-84.2425,Piqua,OH,other,120,Golden Orangeish Yellow White Ball of Energy hovering over 82MM north of Piqua, Ohio. on 07/28/09, @4or 5 am +2009-07-28,41.4613889,-73.6713889,Lake Carmel,NY,formation,1200,3 lighted objects in triangular formation, stationary, observed for 20 min. in the northwest sky from eastern Putnam county NY. +2009-07-28,32.9627778,-117.035,Poway,CA,disk,60,Fireball and disk seen north of Poway, CA 92064 ((NUFORC Note: ISS overflight at 20:43 hrs. on this date. PD)) +2009-07-28,33.5927778,-79.0088889,Garden City,SC,unknown,10,Seemed to be a flying object that was hovering for roughly 10 seconds, lights pulsated in order then disappeared. +2009-07-28,47.7988889,-122.4969444,Kingston,WA,circle,20,White dot speeds across the sky, disappears and returns on differnt path. +2010-07-28,29.7630556,-95.3630556,Houston,TX,disk,300,6/28/2010 houston tx saucer shape with 15 lights at perimeter 7/28/2010 hou tx triangle with cluster lights, +2010-07-28,44.98,-93.2636111,Minneapolis,MN,oval,900,a oval ring of 11 light sources. seen for about 15 mins , taken shots of the sighting +2010-07-28,37.9411111,-121.9347222,Clayton,CA,circle,240,Circular craft with red and blue rotating lights flying above Mt. Diablo slowly descended towards land near Clayton, CA. +2010-07-28,41.8463889,-71.8880556,Dayville,CT,other,15,An orb of energy? +2010-07-28,43.3044444,-70.9761111,Rochester,NH,light,120,i believe what my family saw was a ufo +2010-07-28,41.85,-87.65,Chicago,IL,fireball,60,Orange lighted fireballs over north side of Chicago. +2010-07-28,38.1580556,-79.2066667,Swoope,VA,oval,120,Large white un identified blimp-like craft seen mid-day over country-side in Augusta County, VA. +2010-07-28,37.2577778,-120.9977778,Gustine,CA,disk,120,2 white disks spotted over central California during the day +2010-07-28,34.2072222,-84.1402778,Cumming,GA,triangle,60,Triangular craft with lighted sphere bottom hoovering near home in cumming, ga 7-28-10 +2010-07-28,33.1030556,-96.6702778,Allen,TX,unknown,2700,large shape in the air with bright beam light around it. hovering in one spot would appear to move smooth but quickly side to side +2010-07-28,39.7286111,-121.8363889,Chico,CA,triangle,240,Triangle shaped formation of lights slowed and stopped, then changed direction and flew off. +2010-07-28,45.6388889,-122.6602778,Vancouver,WA,fireball,600,Huge fireball. ((NUFORC Note: Meteors are not visible for 10 minutes' duration. PD)) +2010-07-28,28.5380556,-81.3794444,Orlando,FL,light,15,spotted fast moving object in the sky that gets larger and brighter than anything in the sky,then quickly disappears +2010-07-28,42.7325,-84.5555556,Lansing,MI,light,600,Black cloud like objects with one or more white lights moving within and between the black areas. +2011-07-28,33.2569444,-103.0586111,Bronco,TX,light,300,Strange flying light over Texas / New Mexico border +2011-07-28,33.7488889,-84.3880556,Atlanta,GA,triangle,240,Triangular light followed by red ball of light seen in Atlanta, Georgia +2011-07-28,36.9086111,-116.7583333,Beatty,NV,flash,120,Intense bright flashing light cluster possible diamond or triangle giant craft over Nye county Nevada +2011-07-28,37.3661111,-81.1027778,Princeton,WV,oval,2,neon blue orb streaking by Size of the moon almost at about 4 500 feet up in the air for 2 seconds the completely disappeared +2011-07-28,33.9319444,-117.9452778,La Habra,CA,light,900,4 OVAL-SHAPED LIGHTS FLYING OVER AIR PLANE TRAFFIC AT HIGH SPEEDS IN LA HABRA,CA +2011-07-28,33.0786111,-97.565,Boyd,TX,unknown,30,4 lights in the sky +2011-07-28,28.4366667,-99.2347222,Cotulla,TX,light,1320,Lights in Cotulla TX southern skies orange like moving around and jumping @ very high speed followed by jet! +2011-07-28,39.0908333,-84.85,Lawrenceburg,IN,other,1,Ball of light with a bright orange tail, similar to comet, tail retracted into ball of light, whole craft disappeared in white flash. +2011-07-28,33.0197222,-96.6986111,Plano,TX,unknown,4,Bright white light,, aliens, phenomena +2011-07-29,38.2544444,-104.6086111,Pueblo,CO,diamond,2220,Diamond shape hovering over mountains +2012-07-28,44.9583333,-124.0166667,Lincoln City,OR,formation,600,3 orangish/reddish round "lights" flying north of us, above the beach. They were in a straight vertical line. +2012-07-28,40.8680556,-73.4261111,Huntington,NY,light,40,2 blue orbs sighted +2012-07-28,34.61,-112.315,Prescott Valley,AZ,triangle,420,Large bright red triangular slow flashing light spotted over prescott valley +2012-07-28,39.8241667,-74.9980556,Lindenwold,NJ,light,60,Two bright objects seen just below the clouds over southern New Jersey at 3:18am. Both had multiple white lights and moved around. +2012-07-28,48.2763889,-117.7144444,Chewelah,WA,light,235,Help me please. +2012-07-28,28.665,-80.845,Mims,FL,sphere,1200,Multiple different "what look like stars" blinking then moving very slow in different directions +2012-07-28,28.3644444,-82.1961111,Dade City,FL,sphere,7200,2 stars moving in the sky & more. ((NUFORC Note: We suspect a sighting of planets in the eastern morning sky. PD)) +2012-07-28,41.2586111,-95.9375,Omaha,NE,teardrop,2,Four fast moving tear drop shaped objects high up over Omaha,NE. +2012-07-28,36.175,-115.1363889,Las Vegas,NV,sphere,900,Orange Fireballs fly over Las Vegas. +2012-07-28,33.4483333,-112.0733333,Phoenix,AZ,changing,1800,7 craft seen over N Phoenix, erratic, blinking, changing shapes +2012-07-28,32.64,-117.0833333,Chula Vista,CA,unknown,3,I saw a blinking object in the sky which quickly appeared and disappeared. +2012-07-28,31.3463889,-89.26,Petal,MS,other,3,Reddish to orange explosion way out in space. +2012-07-28,42.0333333,-88.0833333,Schaumburg,IL,light,120,We were sitting outside, when I saw 2 burnt orange color lights floating in the southeast sky, below the half shaped moon. There was no +2012-07-28,34.0975,-117.6475,Upland,CA,cross,300,Possible UFO Sighting +2012-07-28,34.0975,-117.6475,Upland,CA,cross,300,The report describes a possible UFO siting by me and my wife. These were not airplanes or jets. +2012-07-28,43.8047222,-70.8016667,Cornish,ME,circle,300,A row of horizontal yellow/orange lights hovering over the Saco River +2012-07-28,40.7883333,-74.1336111,North Arlington,NJ,sphere,300,7 Red/Orange orbs. +2012-07-28,38.8813889,-94.8188889,Olathe,KS,light,360,Bright RED / White light disk moving zig zag motion in western sky over Olathe Kansas. 7-28-2012 +2012-07-28,42.9169444,-89.2177778,Stoughton,WI,fireball,300,Strange lights over southern Wisconsin +2012-07-28,42.2194444,-87.9794444,Vernon Hills,IL,sphere,30,Flickering flame in clear ball follows our car +2012-07-28,39.7588889,-84.1916667,Dayton,OH,sphere,900,Yellowish/orange spheres seen by 4 people in Dayton, Ohio. +2012-07-28,34.2163889,-119.0366667,Camarillo,CA,cigar,300,Spinning lights on cigar shaped object. +2012-07-28,34.698055600000004,-118.1358333,Lancaster,CA,diamond,10,Red colored craft, shaped like a bat. +2012-07-28,40.6802778,-73.4555556,Massapequa Park,NY,sphere,900,Flying orbs over the night sky in New York on July 28, 2012. +2012-07-28,34.0233333,-84.6155556,Kennesaw,GA,other,300,Witnessed two giant pulsating lights in sky over Kennesaw, Georgia +2012-07-28,44.5625,-92.5336111,Red Wing,MN,sphere,10,3 orange orbs over Red Wing, MN +2012-07-28,44.9583333,-124.0166667,Lincoln City,OR,circle,1200,7 silent very bright orange fire like lights traveling west to east. +2013-07-28,36.1988889,-115.1166667,North Las Vegas,NV,triangle,900,Triangular shaped aircrafts with a glowing fireball affect in the sky that can hover and glide. +2013-07-28,43.0125,-83.6875,Flint,MI,light,60,Strange light over Flint Mi. +2013-07-28,39.0541667,-84.0530556,Williamsburg,OH,light,10,My friend and I were having a bonfire just hanging out (no alcohol was present) and we were just about to clean up and go inside. It's +2013-07-28,44.8613889,-92.6236111,River Falls,WI,triangle,480,Three white lights in triangle shape and one red light. Flying very low and very late at night. +2013-07-28,40.4405556,-79.9961111,Pittsburgh,PA,circle,15,Large red/orange balloon that appeared to be an APPARITION. +2013-07-28,33.3488889,-96.5483333,Anna,TX,fireball,10,Fiery, glowing, completely disappeared +2013-07-28,40.4491667,-75.5525,Hereford,PA,fireball,120,While driving to the Poconos, my wife and I witnessed three bright white lights surounded by laser-like fiery aura. +2013-07-28,25.8572222,-80.2783333,Hialeah,FL,circle,120,Was walking dog down the street and looked at the distance and saw 3 Amber looking objects in the distance, they were in a triangular +2013-07-28,37.8144444,-82.8072222,Paintsville,KY,light,180,UFO.sighting in paintsville ky. +2013-07-28,25.8897222,-80.1869444,North Miami,FL,other,240,A shiny lights object like strobes, moving with not specific directions, able to stop for a while +2013-07-28,40.8802778,-79.2422222,Dayton,PA,light,180,Orange orb of light making no sound observed by two individuals +2013-07-28,44.7311111,-68.8269444,Orrington,ME,circle,600,20 plus amber colored objects in formation over Orrington +2013-07-28,42.0083333,-91.6438889,Cedar Rapids,IA,light,30,Slow white glow across sky in 20 seconds +2013-07-28,26.9616667,-82.3527778,Englewood,FL,teardrop,60,Low fying and flashing with no noise. +1978-07-29,30.8325,-83.2786111,Valdosta,GA,other,5,Clear sunny day in Valdosta, was walking on the edge of a peanut field, was facing south-west looking at another field directly behind +1978-07-29,39.7944444,-87.3958333,Highland,IN,disk,180,I looked out my window to see a disc shaped object hovering about less than 100 ft. over my house. +1979-07-29,29.1869444,-82.1402778,Ocala,FL,changing,1200,fishing over resevoir object hovered for 20 minutes 2-3 feet above water, went straight up into space until it became vanished +1980-07-29,45.4983333,-122.4302778,Gresham,OR,sphere,5,White orb like object heading west towards portland from gresham +1981-07-29,42.1686111,-92.0233333,Vinton,IA,triangle,21600,It was Black as night, triangle shaped, with three lights underneath one in each corne +1990-07-29,42.9177778,-90.2733333,Linden,WI,circle,60,It was looking at me, stainless steel with equal rows of jets spaced in rows and at the end it changed colors +1998-07-29,45.4944444,-122.8658333,Aloha,OR,light,3000,Looked like lights of a small plane approaching a local airport. But the object stayed in almost the same place for over 50 minutes mo +1999-07-29,47.6741667,-122.1202778,Redmond,WA,circle,1800,The object moved slowly and flashed 5 colors. I watched it for 30 minutes before going to bed. +2000-07-29,30.7263889,-90.5088889,Amite,LA,light,2,On 7/29/00 at around 10:00 pm, I was outside admiring the sky because it was a very clear night. I am in a rural area that is wooded, +2000-07-29,33.5772222,-96.1780556,Bonham (Northeast Of),TX,light,4,light overhead in sky +2000-07-29,35.9572222,-75.6244444,Nags Head,NC,formation,3600,Group of lighted objects at high speeds in Nags Head, NC +2000-07-29,48.7597222,-122.4869444,Bellingham,WA,changing,120,Three people observe strange light in night sky +2001-07-29,42.1583333,-71.1452778,Canton,MA,light,7200,strange light above canton ma.would stay totally still then move allover real fast no noises at all. +2001-07-29,35.198055600000004,-111.6505556,Flagstaff,AZ,triangle,300,I think were in big trouble. +2001-07-29,41.8088889,-88.0111111,Downers Grove,IL,changing,300,The vehicle didn't have the same dark silouette as other aircraft in the area, including aircraft near the objects altitude. +2001-07-29,32.7591667,-97.7969444,Weatherford,TX,unknown,120,Craft(s) with 4 lights being overtaken by one light, no noise or strobe lights +2001-07-29,42.1816667,-88.3302778,Lake In The Hills,IL,disk,120,A VERY LARGE ENGINE IN BACK +2001-07-29,28.0680556,-80.5605556,Melbourne Beach,FL,light,2700,Unidentified Flying Objects off the coast of Melbourne Florida +2001-07-29,35.2619444,-81.1875,Gastonia,NC,light,5,METEOR APPEARING LIGHT HEADS STRAIGHT DOWN ACCELERATING IN SPEED AS IT CHANGED SLOWLY FROM WHITE TO NEON GREEN +2001-07-29,26.1219444,-80.1436111,Fort Lauderdale,FL,fireball,5,On the eve of 7/29/01 I witnessed a huge fireball fly accross the sky while driving So. on a Ft, Lauderdale Florida road. +2002-07-29,40.4366667,-74.24,Cliffwood,NJ,disk,900,round shiny silver disk shape object flying in sky, it was a clear day. +2002-07-29,29.9544444,-90.075,New Orleans,LA,oval,300,Time: around 19:30pm Location: New Orleans,LA (near Mississippi River).When I was getting home and getting off the car, I saw a si +2002-07-29,36.9741667,-122.0297222,Santa Cruz,CA,unknown,420,I was on the beach and there was a red light in the sky. It was perfectely still for a very long time and then it sarted to move vertic +2002-07-29,34.0522222,-118.2427778,West Los Angeles,CA,sphere,420,Bright sphere little larger than a star moving north to south across West Los Angeles 9:50 PM July 29, 2002 +2002-07-29,43.1052778,-75.2916667,New York Mills,NY,flash,600,A dome-shaped object with green and red flashing lights was observed by 3 family members in suburban Utica,NY +2002-07-29,39.2072222,-86.2511111,Nashville,IN,circle,60,Saw a light moving across the sky from noerth east to south east It was more yellow than white and traveling very fast +2003-07-29,38.2494444,-122.0388889,Fairfield,CA,unknown,3600,Single bright light that moved like no airplane i have ever seen before +2003-07-29,39.9508333,-86.2619444,Zionsville,IN,circle,180,Small silver disc, Stationary in clear sky +2003-07-29,24.5552778,-81.7827778,Key West,FL,disk,900,Six adults witness a cluster of colorful, disc-shaped objects hover over Key West for approx. 15 min.. +2003-07-29,47.8211111,-122.3138889,Lynnwood,WA,circle,180,Two lights moving rapidly, changing distance from each other and one disappearing & reappearing. +2003-07-29,48.1988889,-122.1238889,Arlington,WA,unknown,300,Continuous Fireworks in the sky near Arlington, WA +2003-07-29,40.7141667,-74.0063889,New York City (Brooklyn),NY,changing,7200,My wife looked out the window at around 11:30 PM. and saw a light in the distance to the west over Manhattan. At first we thought it w +2004-07-29,47.1855556,-122.2916667,Puyallup,WA,fireball,600,Firey orb, moved slowly, silently, changed shape and emmitted strange glowing red balls, then disappeared. +2004-07-29,37.4325,-120.0969444,Catheys Valley,CA,other,300,Bright, shining,slowly falling oject at dawn . Seemed to fall from space to earth. +2004-07-29,43.9786111,-90.5038889,Tomah,WI,formation,600,I observed two craft closing rapidly on a commercial airplane over Tomah, Wisconsin +2004-07-29,27.6383333,-80.3975,Vero Beach,FL,triangle,2700,Bright white sphere of light 45 degrees from horizon changing into three smaller lights when closer to the ground +2004-07-29,38.5063889,-82.2986111,Lesage,WV,other,300,amber orb shaped object moving fast than slow, fast than slow silently with 2 other diff crafts almost following it +2005-07-29,32.3908333,-110.9658333,Oro Valley,AZ,oval,900,3 bright orange ovals in a triangular formation with red lights around them +2005-07-29,33.4483333,-112.0733333,Phoenix,AZ,sphere,1200,High alt. Object over Phoenix July 29th +2005-07-29,39.0483333,-95.6777778,Topeka,KS,light,30,Stationary light, quickly moving away +2005-07-29,25.7738889,-80.1938889,Miami,FL,light,120,Two separate lights within ten minutes. +2005-07-29,43.3369444,-83.3525,Mayville,MI,light,180,Non Blinking yellow light moves quickly across the sky +2005-07-29,47.6063889,-122.3308333,Seattle,WA,triangle,900,Low flying triangular object over Greenlake, Seattle. +2005-07-29,44.7319444,-93.2175,Apple Valley,MN,circle,1800,A round object spinning horizontally with green lights on it!! +2005-07-29,43.2658333,-70.865,Berwick,ME,light,300,Light moving east then west then north............ +2006-07-29,39.0483333,-95.6777778,Topeka,KS,light,7200,It appeared to be a quickly moving star... +2006-07-29,38.2919444,-122.4569444,Sonoma,CA,circle,600,this is an update +2006-07-29,38.2919444,-122.4569444,Sonoma,CA,circle,600,An extremelly bright circular orange/amber light traveled NW to SW pausing for 20 sec. 3x. Not far away +2006-07-29,38.2919444,-122.4569444,Sonoma,CA,fireball,600,very bright orange/amber light moves, freezes, no noise not in usual air trafic path about 10 min. +2006-07-29,28.3641667,-82.6936111,Hudson,FL,unknown,60,Three lights in a perfect triangle, with the point trailing not leading, travelled across the sky toward the north. +2006-07-29,47.239444399999996,-122.3558333,Fife,WA,disk,640,Three disk shaped objects in photo of Mt. Rainier +2006-07-29,38.3686111,-93.7780556,Clinton,MO,other,420,Triangle shape with three shiny balls connected by transclucent looking lines +2006-07-29,39.8366667,-105.0366667,Westminster,CO,cigar,120,cigar shaped segmented flying object sighted over Broomfield / Boulder CO +2006-07-29,45.5236111,-122.675,Portland,OR,sphere,900,Metallic Spherical object(s) in sky above downtown Portland Oregon this evening. +2006-07-29,37.6922222,-97.3372222,Wichita,KS,oval,45,UFO over Wichita Kansas, at around 18:00 hr on Saturday July 29th 2006 +2006-07-29,42.9813889,-70.9483333,Exeter,NH,changing,300,Black object of indeterminate, constantly shifting shape seen passing over Exeter, NH. +2006-07-29,43.1636111,-73.0727778,Manchester,VT,light,1800,ultra slow moving (~25 mph) light at ~250ꯠ ft altitude; 30 minutes +2006-07-29,32.0108333,-97.1297222,Hillsboro,TX,light,3600,Witnessed 14 lights moving erratically accross the Texas sky, over one hour period. +2006-07-29,33.6888889,-78.8869444,Myrtle Beach,SC,flash,5400,Red Flashing Lights Over the Atlantic +2006-07-29,46.6022222,-120.5047222,Yakima (On I-82),WA,fireball,30,Big ball of fire coming down from the sky landed on I-82 near sunnyside,wa +2007-07-29,40.7966667,-81.5216667,Massillon,OH,other,5,Bright, sun-like light in the sky. +2007-07-29,41.6619444,-86.1586111,Mishawaka,IN,fireball,600,7/29/07 0620 Mishawaka three lights with tails in shape of upside down triangle moving east +2007-07-29,40.8858333,-77.1411111,Millmont,PA,disk,480,large black disk and two black helicopters appere and the disapear. +2007-07-29,41.85,-87.65,Chicago,IL,circle,5,Circular flying object moving westward over Chicago +2007-07-29,41.9402778,-85.0005556,Coldwater,MI,circle,10,A siver circle hovered and across the night sky. Biger then any stars. +2007-07-29,33.8583333,-118.0638889,Cerritos,CA,other,180,Twirling Object Over Buena Park. +2008-07-29,47.3811111,-122.2336111,Kent,WA,triangle,3600,white light triangle clear skies over hous eclouds to the south fast flying craft at night time zigg zag +2008-07-29,38.5816667,-121.4933333,Sacramento,CA,circle,6,A low elevation very bright circular blue/white light moved extremely fast across the sky for 5 or 6 seconds, made no noise. +2008-07-29,32.2216667,-110.9258333,Tucson,AZ,circle,1200,((HOAX??)) They were in my sight for more than 20 minutes, changed their position very frequently many times!! +2008-07-29,43.6152778,-83.8419444,Essexville,MI,unknown,600,Lights In The Sky +2008-07-29,41.0036111,-80.3472222,New Castle,PA,other,10,Unexplained object flys over head then quickly vanishes. +2009-07-29,47.6816667,-122.2075,Kirkland,WA,disk,3600,In ENE sky, massive disk sat at about 25d of the horizon. ((NUFORC Note: Star?? PD)) +2009-07-29,33.4919444,-105.3833333,Lincoln,NM,oval,2400,New Mexico bright light and many pods flying about +2009-07-29,33.3061111,-111.8405556,Chandler,AZ,oval,270,2 large oval shaped objects with oscillating illumination in the eastern sky over phoenix,Az +2009-07-29,42.8125,-70.8777778,Newburyport,MA,other,5,Jet;Suspended in air +2009-07-29,33.6888889,-78.8869444,Myrtle Beach,SC,circle,30,4 orbs over ocean at Myrtle Beach +2009-07-29,36.1630556,-82.8311111,Greeneville,TN,light,5,light heading North +2009-07-29,47.9130556,-122.0969444,Snohomish,WA,sphere,60,Bright ink-spot in the sky. such as other postings. +2009-07-29,32.8369444,-97.0816667,Euless,TX,light,5,space based bright light that moves, then fades away +2009-07-29,34.0536111,-85.255,Cedartown,GA,triangle,120,Me, my girlfriend and her little sister were riding back to the house about 11:30 and we all 3 saw a bright light, and it seemed as if +2010-07-29,41.8463889,-71.8880556,Dayville,CT,light,2,Two women see green streak; power failure in town; green flash 30 minutes later +2010-07-29,36.8252778,-119.7019444,Clovis,CA,circle,10,Circular light over Fresno county, seen in Clovis. +2010-07-29,47.6105556,-122.1994444,Bellevue,WA,light,2400,Moon highlights wide mass expanse traversing west to east at an even pace +2010-07-29,41.9941667,-88.2922222,South Elgin,IL,light,600,A round shaped light with no movement. ((NUFORC Note: Possible sighting of Jupiter, or another celestial body?? PD)) +2010-07-29,40.7988889,-81.3786111,Canton,OH,fireball,2700,Early morning fireball-like light formation hovering near Akron/Canton Airport . +2010-07-29,39.7047222,-105.0808333,Lakewood,CO,unknown,600,Silver Object, flashing and floating in place. Commercial Flight Altitude. +2010-07-29,29.3011111,-94.7975,Galveston (Spanish Grant),TX,light,60,2 lights that just disappeared! +2010-07-29,36.1197222,-80.0738889,Kernersville,NC,light,3600,five lights in the sky within an hour. +2010-07-29,34.1397222,-118.0344444,Arcadia,CA,light,20,Bright Light That Changed Intensity and Color, Then Disappeared +2010-07-29,35.6225,-117.67,Ridgecrest,CA,unknown,300,Silent huge something hovering with red lazer type lights and multicolor lights above it. +2010-07-29,38.7908333,-121.2347222,Rocklin,CA,circle,300,Disklike object with rotating changing colors floating moderately low above the ground. +2010-07-29,44.0522222,-123.0855556,Eugene,OR,sphere,300,I went outside to have a cigarette and saw a object larger than a star moving erratically, back and forth then hovering, then moving ac +2011-07-29,42.3313889,-83.0458333,Detroit,MI,sphere,45,Detroit +2011-07-29,29.6897222,-95.8994444,Fulshear,TX,disk,3,Giant neon pink, red and orange saucer appears and disappears instantly in Fulshear, Texas. +2011-07-29,40.5852778,-105.0838889,Fort Collins,CO,changing,1200,Three ships over Colorado +2011-07-29,47.4236111,-120.3091667,Wenatchee,WA,light,240,Bright star or planet at 5 pm that disappeared +2011-07-29,33.4052778,-86.8113889,Hoover,AL,other,120,Giant Mettalic/Silver almost transparent craft seen over Caldwell Mill Road and ValleyDale Rd +2011-07-29,47.6588889,-117.425,Spokane,WA,oval,180,Looked to the sky and noticed very high up in the sky, 2 gliding lights/saucers almost dancing around each other. +2011-07-29,37.9780556,-122.03,Concord,CA,egg,300,On July 29񫺛 at 9:55 pm My husband and I saw a large low flying glowing orange object that was heading in an northeast direction. I +2011-07-29,41.5822222,-85.8344444,Goshen,IN,circle,900,8 lights, performing differrent formations, then dissapearing +2011-07-29,43.1008333,-75.2330556,Utica,NY,circle,300,8 orange glowing lights in the sky over Utica, NY +2011-07-29,35.3061111,-78.6091667,Dunn,NC,triangle,15,Triangular UFO's seen in Dunn, NC on 07/29/2011 +2011-07-29,41.6269444,-88.2038889,Plainfield,IL,fireball,360,JUL 29, 2011, large orange fireball with ring around it moving East to West, then moving almost straight up +2012-07-29,43.4552778,-76.5108333,Oswego,NY,light,240,Amber unblinking lights crossing sky East to West +2012-07-29,43.0247222,-83.0777778,Imlay City,MI,fireball,300,Bright light in the western sky over lapeer county +2012-07-29,41.85,-87.65,Chicago,IL,light,30,Strange formation of hovering lights over wolf lake +2012-07-29,35.8680556,-83.5619444,Sevierville,TN,fireball,45,Strange orange fireball over Sevierville TN, just vanishes. +2012-07-29,36.0305556,-75.6763889,Kill Devil Hills,NC,fireball,120,Four fireballs moving across the night sky. +2012-07-29,44.5433333,-93.5758333,New Prague,MN,flash,5,Light burst and beams of light +2012-07-29,41.3308333,-94.0136111,Winterset,IA,fireball,300,Sighting was seen by several witnesess. Appeared to be just dots in the sky bit as I drove closer to themthey appeared to be like balls +2012-07-29,41.3325,-73.2077778,Monroe,CT,light,300,Bright orange light hovering in sky, then flies off only to reappear minutes later . +2012-07-29,35.6008333,-82.5541667,Asheville,NC,cigar,120,Two cigar shaped objects spotted over downtown Asheville, NC. +2012-07-29,42.2708333,-83.7263889,Ann Arbor,MI,cylinder,1200,12 orange lights in a v formation ann arbor 7/212 +2012-07-29,39.9872222,-76.0208333,Gap,PA,fireball,1200,6 fireballs traveling in Pennsylvania. +2012-07-29,39.5213889,-85.7769444,Shelbyville,IN,fireball,120,Looked like a fire with flames flying across the sky +2012-07-29,39.5213889,-85.7769444,Shelbyville,IN,fireball,120,Orange object appeared to be on fire seen by 4 in Shelbyville, Indiana +2012-07-29,39.0066667,-76.7794444,Bowie,MD,light,1,UFO sighting with sparks at the end of the light before it dissapeared +2012-07-29,42.8863889,-78.8786111,Buffalo,NY,fireball,120,Bright orange orb moving swiftly +2012-07-29,45.5236111,-122.675,Portland,OR,flash,900,Last night walking north on 39th ave, my father and I witnessed at least 100 red orbs that flashed coming from the west over the city o +2012-07-29,42.1058333,-84.2483333,Brooklyn,MI,light,180,A bright orange light moving slowly across the sky for 2-3 minutes. +2012-07-29,40.3272222,-76.0113889,Sinking Spring,PA,circle,300,3 reddish orange slow moving lights in the sky +2012-07-29,35.7963889,-81.4308333,Granite Falls,NC,teardrop,30,Figures inside the UFO short black eyes UFO metallic color called friend andhe said he was hunting and he said he saw +2012-07-29,39.7944444,-87.3958333,Highland,IN,fireball,180,Fireball seen near Chicago, IL. +2012-07-29,47.6777778,-116.7794444,Coeur D'alene,ID,circle,60,Large Orange Red Circle +2012-07-29,42.4405556,-76.4969444,Ithaca,NY,unknown,180,Reddish/orange and white flashing object in sky at Ithaca NY +2013-07-29,38.9916667,-74.8152778,Wildwood,NJ,circle,900,Four orange orbs of light above the Atlantic Ocean. +2013-07-29,38.9747222,-74.8338889,Wildwood Crest,NJ,circle,300,Orange glowing device flying high over ocean +2013-07-29,42.8666667,-106.3125,Casper,WY,triangle,15,I went out on the front porch while letting my dogs out and while looking up at the stars i detected some moving lights to my right an +2013-07-29,39.7391667,-104.9841667,Denver,CO,sphere,5400,Transparent red balloon/bubble thing with lights. Had intelligence +2013-07-29,38.6580556,-77.25,Woodbridge,VA,sphere,120,In 234 commuter parking lot when looked up and saw a spinning white orb moving directly overhead in a very straight line, as I watched, +2013-07-29,41.5022222,-72.9791667,Prospect,CT,diamond,600,Black dimond shaped over Hotchkiss Field area at 9:30 in the morning +2013-07-29,39.7683333,-86.1580556,Indianapolis,IN,sphere,600,Bright Orange Sphere over Far Southside of Indianapolis +2013-07-29,37.8044444,-122.2697222,Oakland,CA,cigar,20,White cigar shaped above Oakland airport +2013-07-29,34.6991667,-86.7483333,Madison,AL,egg,10,UFO sighting in Huntsville/Madison, AL +2013-07-29,34.6991667,-86.7483333,Madison,AL,egg,10,UFO sighting in Huntsville/Madison, AL Just after finishing dinner on 7-29-2013, I walked out onto the front porch. It was approximate +2013-07-29,36.3352778,-92.385,Mountain Home,AR,fireball,40,Orange Red Fireball traveling west then north. +2013-07-29,33.4352778,-112.3575,Goodyear,AZ,fireball,1410,Orange Lights over Buckeye/Goodyear Arizona +2013-07-29,34.8525,-82.3941667,Greenville,SC,sphere,180,7-8 yellow/orange lit objects flew by in loose formation. +2013-07-29,45.6388889,-122.6602778,Vancouver,WA,circle,10,Bright green donut shape disk in sky +2013-07-29,45.6388889,-122.6602778,Vancouver,WA,disk,10,An adult male witnesses a green disc streak across the night sky. +2013-07-29,35.0525,-78.8786111,Fayetteville,NC,other,300,Unidentified 'barbell-shaped vessel' cruises over dark country road. +2013-07-29,47.2530556,-122.4430556,Tacoma (Northeast Area),WA,sphere,5,Orange glowing sphere seen flying from the direction of The Cascade Mountains then over house. +2013-07-29,40.7141667,-74.0063889,New York City (Bronx),NY,triangle,15,HOVERING CRAFTS WITH ORANGE AND RED LIGHTS +2013-07-29,43.073055600000004,-89.4011111,Madison,WI,diamond,10,3 transparent gray diamond apperitions with red lights hovering high in the night sky +2013-07-29,41.6833333,-86.25,South Bend,IN,light,120,Solid bright white light +2013-07-29,47.6419444,-122.0791667,Sammamish,WA,oval,300,Large oval with bright white center and fuzzy white outer edge +2013-07-29,39.3830556,-87.0116667,Bowling Green,IN,fireball,180,Fireball in rural indiana +1952-07-30,41.9697222,-71.4741667,Manville,RI,sphere,10,Group of lights moving across sky during daylight hours. +1958-07-30,39.3672222,-76.7955556,Randallstown,MD,triangle,240,Two triangular slow,silent lowflying objects,each with three white lites,were seen in mid-l958 over Balto.Co.,Md.by hundreds. +1965-07-30,41.3158333,-72.3294444,Old Lyme,CT,oval,18000,Oval UFO hovers over neighborhood for several hours +1969-07-30,41.0813889,-81.5191667,Akron,OH,circle,10800,Giant Silver Ball Hanging Over Akron In the Late 1960's +1971-07-30,37.614444399999996,-93.4102778,Bolivar,MO,cigar,60,Silent fluorescent orange cigar-shaped UFO with neon pink glow around the edges disappeared in an instant +1972-07-30,35.0525,-118.1730556,Mojave (Vicinity),CA,light,90,Craft must have been setting on ground when we arrived. We were on vacation and were headed home from Northern California. We had pulle +1977-07-30,39.7294444,-104.8313889,Aurora,CO,chevron,180,Small Chevron shaped craft hovered silently above me at 200 ft. then zigged and zagged NW across Aurora. +1977-07-30,39.7294444,-104.8313889,Aurora,CO,light,5,A moving light, resembling a satellite, moved in a zig-zag pattern. +1979-07-30,36.2166667,-81.6747222,Boone,NC,cylinder,10,Large silent cylindar spotted on ASU campus, Boone NC, with large light, hovering just above treetops +1980-07-30,43.0591667,-77.6125,Henrietta (Suburb Of Rochester ),NY,other,10,It was a long time ago, but the memmory is still clear. My brother and I were star gazing and saw what appeared to be a LARGE vehicle t +1980-07-30,44.6377778,-69.5036111,Clinton,ME,oval,1800,Luminous, oval ring of light +1981-07-30,32.7025,-103.1355556,Hobbs,NM,cone,120,ufo came from thu8nderstorm +1981-07-30,47.6480556,-121.9127778,Carnation,WA,disk,300,Bright white or illuminated disks moving rapidly side to side on the horizon. +1982-07-30,33.9133333,-78.3041667,Holden Beach,NC,other,30,A square shaped white object that appeared as quickly as it disappeard +1985-07-30,37.43,-122.2527778,Woodside,CA,circle,900,We saw 6 or 7 different colored lights moving insanely fast and zig-zagging over the Pacific Ocean and Half Moon Bay. +1986-07-30,30.2669444,-97.7427778,Austin,TX,oval,240,In broad daylight almost cloudless afternoon a large fat oval "craft" instantly appeared and disappeared from less than 1000 ft from my +1987-07-30,35.6008333,-82.5541667,Asheville,NC,light,120,pre-awarenees would see UFO -- falling star - changing to dancing light - then very high speed departure +1992-07-30,38.9777778,-77.0077778,Takoma Park,MD,disk,120,A huge disc with rotating, iridescent flashing lights (as a strip around the craft) swooped in and hovered above us. +1995-07-30,44.9369444,-91.3927778,Chippewa Falls,WI,circle,300,We saw a large craft that had a ring of lights on the bottom that disappeared straight up in the sky. +1996-07-30,44.05,-91.6391667,Winona (About 30miles Nw Of),MN,flash,120,The lights followed alongside the car +1996-07-30,37.0058333,-121.5672222,Gilroy,CA,light,480,Gilroy California +1996-07-30,30.7619444,-86.5705556,Crestview,FL,triangle,90,White, triangular object (shaped like a long, narrow paper airplane) observed moving silently in broad daylight. +1996-07-30,34.7694444,-92.2669444,North Little Rock,AR,triangle,240,Clearly observed a triangular craft outfitted with three bright lights. Object made no sound and floated perfectly still for around fo +1997-07-30,27.8002778,-97.3961111,Corpus Christi,TX,oval,300,UFO experience when I was young in Corpus Christi, Tx +1997-07-30,45.0861111,-93.2630556,Fridley,MN,fireball,4,Very large fireball flew over house. No loud noise, just a faint "whoosh" as it passed. Very quick. +1997-07-30,30.4013889,-86.8636111,Navarre,FL,circle,600,Several bright lights that seemed to appear and disappear. They were so bright they made the evening sky illuminate. The clouds were +1997-07-30,30.3569444,-87.1638889,Gulf Breeze,FL,formation,1200,I first spotted a single eztremely bright orange glowing light, which was followed by 5 to 7 other stationary similar objects in a hori +1998-07-30,44.3636111,-84.4102778,St. Helen,MI,circle,900,A red circle in the sky that was very high in the sky. Everytime the craft went by stars the stars disappered for about 10-15 seconds. +1999-07-30,47.6761111,-122.3861111,Ballard (Seattle),WA,light,240,An object was seen near the Orion's belt and traveled in a southwesterly direction turning bright green and then faided out. +2000-07-30,35.9572222,-75.6244444,Nags Head,NC,light,5400,Outer Banks is treated to spectacular "star" formations +2000-07-30,42.4405556,-76.4969444,Ithaca,NY,teardrop,10,Gigantic white teardrop plunges into Cayuga Lake, Ithaca, NY in late July, 2000. +2000-07-30,48.7597222,-122.4869444,Bellingham,WA,light,10,A white object flew down a valley at dusk. +2000-07-30,39.9611111,-82.9988889,Columbus,OH,light,600,Dancing "star" over Columbus, Ohio +2000-07-30,33.3061111,-111.8405556,Chandler,AZ,cigar,3,A bright green "string of round lights"- seemed to be connected. Falling fast vertically. +2000-07-30,42.1947222,-122.7083333,Ashland,OR,disk,30,Large object just hovered over the vehicle for about 30 sec +2001-07-30,31.8872222,-100.2913889,Bronte (Near),TX,diamond,900,bronte sighting +2001-07-30,48.2413889,-122.3694444,Stanwood,WA,sphere,180,2 spheres, same color as sky, manuvering, trailing eachother, seen through binoculars too. +2001-07-30,32.3186111,-102.5452778,Andrews,TX,oval,10,Extemely fast large oval transparent object. +2001-07-30,41.4969444,-71.3677778,Jamestown,RI,light,300,Object resembling airplane light blinked in random patterns, moved strangely, then very quickly for a sec., turned red and dissappeared +2002-07-30,39.9625,-76.7280556,York,PA,cylinder,60,cylindrical craft with faint lights on both ends zig zags through sky over york, pa, speeding off and disappearing. +2002-07-30,41.6561111,-70.4166667,Marstons Mills,MA,triangle,7200,Unexplained object darting and pinwheeling about in the night sky of Cape Cod. +2002-07-30,43.5408333,-116.5625,Nampa (Outside),ID,cigar,180,5-6 lights, very bright, approaching rear of my vehicle, arose very fast, dissappeared, no noise or sound +2002-07-30,32.1644444,-106.6961111,Mesquite,NM,triangle,300,It was parked (floating) there, how long, I dont know... +2002-07-30,32.9477778,-112.7161111,Gila Bend,AZ,other,6300,A black dot on the Arizona horizon +2002-07-30,40.3041667,-73.9927778,West Long Branch,NJ,disk,300,thin disk, jagged edges, orange lights +2002-07-30,38.9458333,-84.6805556,Union,KY,unknown,20,10 to 20 second fly by in south western sky in Union Kentucky mysterious no noise, super fast, near CVG. +2002-07-30,33.7488889,-84.3880556,Atlanta,GA,circle,3,Bright, stationary, white light appears low to ground and then vanishes over outdoor concert in Atlanta, GA. +2002-07-30,30.2394444,-81.3858333,Ponte Vedra Beach,FL,unknown,2,Streaking Light Over Jacksonville Beach, Florida +2002-07-30,42.5083333,-89.0316667,Beloit,WI,triangle,30,3 bright white triangular lights moving far faster than any known jet with no noise! +2002-07-30,36.0688889,-79.4008333,Graham,NC,circle,3600,Spastic stars +2002-07-30,43.2855556,-71.4677778,Loudon,NH,unknown,180,Flashy stars in ALMOST a triangular pattern. +2002-07-30,40.7091667,-112.1008333,Magna,UT,circle,600,Strange Bright Light over Oquirrh Mountains of Salt Lake City +2003-07-30,41.0933333,-75.0022222,Bushkill,PA,formation,120,Perfect Triangular Formation of Silent Star-Like Lights Heading South Lasting About 1 1/2 Minutes +2003-07-30,40.2986111,-83.0680556,Delaware,OH,changing,1800,Dancing light in the sky appeared like a star but then changed colors and positions rapidly unlike a plane +2003-07-30,34.5861111,-94.2394444,Mena,AR,triangle,1200,The object was of un known orgin +2003-07-30,36.175,-115.1363889,Las Vegas,NV,egg,300,Multiple objects in formation that flew away at tremendous speed +2003-07-30,34.1361111,-117.8644444,Glendora,CA,oval,3,Saw a hovering, tilted, silvery oval with a dome on top. I saw it in the sky 7-30-03 at 12:50pm in Glendora, CA for 2-3 scs. Flew aw +2003-07-30,33.5205556,-86.8025,Birmingham,AL,rectangle,60,Rectangle shape, like a flat non-reflective white 2-by-4, and seemed suspended in air - - no movement. +2003-07-30,48.3972222,-102.9377778,Tioga,ND,unknown,1800,A blue light that moved fast in the sky then slowed rapidly turned red and then faded. +2003-07-30,47.6447222,-122.6936111,Silverdale,WA,light,1,very fast very bright light moving in a vertical(up) direction did not dim out just went out. +2004-07-30,41.2586111,-95.9375,Omaha,NE,light,3,Man witnesses orange ball of light pass across the disc of the Moon. +2004-07-30,47.0041667,-94.7266667,Akeley,MN,triangle,1800,encountered 33 foot ufo in road close as 20 feet for over 30 minutes duration other evidence w/ photo +2004-07-30,38.8047222,-77.0472222,Alexandria,VA,light,1500,Very bright white point of light in northern sky at dusk. +2004-07-30,39.3280556,-120.1822222,Truckee,CA,other,300,no sound and fairly close +2004-07-30,47.6777778,-116.7794444,Coeur D'alene,ID,light,30,I was walking home at dusk on a summer night, when I looked up to the sky, and saw a ball of light, that looked a lot like a star, but +2004-07-30,48.1172222,-122.7591667,Port Townsend,WA,triangle,120,Triangle UFO? Check this out - NOSS Triad Satelite system - Naval Ocean Survailance System +2004-07-30,47.6063889,-122.3308333,Seattle,WA,triangle,15,Four lights of yellow-orange color which was in a triangular form that made no noise flying in the SW direction. +2005-07-30,30.1102778,-97.315,Bastrop County (Rural Area),TX,light,30,FASt, satellirt-like "sparkling" object moving west to east and crossing almost the full sky in 10-20 seconds. +2005-07-30,45.3055556,-93.7938889,Monticello,MN,disk,10,Disk moved across sky, and slowed floating down toward ground. +2005-07-30,41.47,-87.6363889,Steger,IL,fireball,25,We saw this light, almost like a ball of fire, going west to east at a fast clip, about the distance of a yard stick, it traveled. +2005-07-30,42.1291667,-80.0852778,Erie,PA,light,2,BRIGHT LIGHT THAT CAME QUICKLY OVER OUR CAR AND STAYED THERE FOR A FEW SECONDS AND ZOOMED OFF WITHOUT US BEING ABLE TO IDENTIFY IN WHIC +2005-07-30,40.3977778,-105.0744444,Loveland,CO,unknown,2100,Lights to the west over the mountains +2005-07-30,33.0916667,-97.0463889,Highland Village,TX,flash,5,21:09 Bright light NNW sky3-7 seconds +2005-07-30,45.0816667,-94.3066667,Dassel,MN,flash,10,3 unmoving bright flashes of light in the sky between big and little dipper, 5 times bigger than biggest star. +2005-07-30,40.6502778,-89.6519444,Bartonville,IL,fireball,15,on July 30th, clear sky at 11:18pm a Fireball came from West to East in a steady manner that made no sound +2005-07-30,44.505,-73.4805556,Keeseville,NY,flash,3,Bright flash of light that changed color then exploded in mid-air with a shower of sparks +2005-07-30,40.0475,-85.3941667,Springport,IN,fireball,120,Quick moving fireball +2006-07-30,28.8002778,-81.2733333,Sanford,FL,light,3600,Unusual lights in Sanford Florida +2006-07-30,28.0891667,-80.5658333,Indialantic,FL,fireball,900,We were sitting on the beach my wife and myself when we saw what looked like a military flare bright orange in the sky. It was at abo +2006-07-30,41.6527778,-70.2833333,Hyannis,MA,oval,1,Glowing orange craft zips away like a shooting star in hyannis, ma at around 3:30am 7/30/06 +2006-07-30,39.1458333,-121.5902778,Marysville,CA,triangle,360,Three triagle craft fly near Beal Air Force Base and make sharp turns that normal planes could not do. +2006-07-30,32.4822222,-96.9941667,Midlothian,TX,formation,300,Three star-like objects seen moving in shifting triangular formation. +2006-07-30,21.3069444,-157.8583333,Honolulu,HI,other,300,If a picture is worth 1000 words than this one is worth $1ꯠꯠ! +2006-07-30,44.23,-69.7758333,West Gardiner,ME,light,60,Very bright white object moving slowly then quickly going straight up till it could be seen no longer. +2006-07-30,30.4519444,-91.21,Port Allen,LA,triangle,600,Mother witnesses first UFO flying directly over house -- with NO SOUND +2006-07-30,37.8361111,-87.59,Henderson,KY,light,2400,Roaring and erratic-moving lights over Henderson, KY +2006-07-30,31.1169444,-97.7275,Killeen,TX,unknown,60,Red craft appearing directly above, maneuvering south, sw, w, then se, then fading. +2006-07-31,43.2233333,-85.5513889,Cedar Springs,MI,fireball,40,Driving home got passed by a Green fireball shooting across the sky, about 300-400ft off the ground. +2007-07-30,42.8863889,-78.8786111,Buffalo,NY,circle,600,Bright white light moving south from Buffalo, NY at nominal speed +2007-07-30,36.3302778,-119.2911111,Visalia,CA,formation,8,Two orbs of light +2007-07-30,45.7838889,-84.7277778,Mackinaw City,MI,cigar,2,Cigar shaped ufo sighted over Mackinaw City, MI, traveling at extreme speed. +2007-07-30,38.5019444,-122.995,Guerneville,CA,other,180,Clear sky UFO appears as a cloud shrouded object moving in a stright line south to north. +2007-07-30,47.7180556,-116.9505556,Post Falls,ID,disk,3,Around the end of July 2007, I was sitting in a chair on my back porch enjoying the warm weather under cloud cover which was at the nor +2007-07-30,33.7763889,-112.5277778,Wittmann,AZ,unknown,5,Husband and I were driving home on US 60 when we notice lights hovering over towards the lake plesant mountains. +2007-07-30,41.975,-88.0072222,Itasca,IL,light,2,Bright white lights flash across the night sky +2007-07-30,47.8125,-116.8955556,Rathdrum,ID,oval,45,oval white object hovering at distance, then changed color to a brighter gold and silver, then took off gone. +2008-07-30,42.4775,-83.0277778,Warren,MI,light,60,a dot for the sake of interterrestrial communication +2008-07-30,37.5933333,-81.1941667,Odd,WV,triangle,120,black triangular shaped aircraft photographed during the day. ((NUFORC Note: Object probably is a bat, or a butterfly. PD)) +2008-07-30,38.7522222,-121.2869444,Roseville,CA,cylinder,600,Object in the sky that was in a stationary position for 10 minutes before disapearing +2008-07-30,40.3977778,-105.0744444,Loveland,CO,triangle,5,saw orange lights moving in formation +2008-07-30,34.5794444,-118.1155556,Palmdale,CA,oval,300,orange oval shape sat in the sky then disapperad and re-appered when two jets approached. +2008-07-30,39.1569444,-84.6133333,Cheviot,OH,chevron,180,Black small arrow head shaped UFO very high +2008-07-30,42.0916667,-70.7061111,Marshfield,MA,unknown,600,Strange orange lights seen at Marshfield MA. late July. +2008-07-30,44.5647222,-123.2608333,Corvallis,OR,fireball,30,White orb sighting over Corvallis Oregon moving slowly from west to east. +2008-07-30,43.2255556,-74.1725,Northville,NY,circle,60,While on vacation in the Adirondack Mountains, several of us witnessed a strange light accompanied by two aircraft. We were sitting ar +2008-07-30,45.3011111,-94.9438889,New London,MN,light,60,Bright white light turned to red as it sped up, slowed down, and zigzagged across the sky. +2008-07-30,35.2783333,-93.1336111,Russellville,AR,formation,10800,Two formations of red, yellow and blue lights spread around Lake Dardanelle. +2008-07-31,31.6938889,-89.1305556,Laurel,MS,unknown,3600,flashing lighits blast and some kind off craft and was moving fast took pics at home and 7 miles away. they te same +2009-07-30,47.3811111,-122.2336111,Kent,WA,flash,2,One small blue light moving extreamly fast +2009-07-30,31.9958333,-99.2252778,Burkett,TX,cigar,360,2 Stationary Disk Shapes +2009-07-30,36.9752778,-121.9522222,Capitola,CA,light,20,formation forming (triangle) group of lights +2009-07-30,38.6172222,-89.0522222,Odin,IL,light,1800,Jet Aircraft chase Ball of Light over Odin Illinois. ((NUFORC Note: Maybe not a serious report?? PD)) +2009-07-30,41.3258333,-75.7897222,Pittston,PA,egg,60,5 bright orange shapes in sky. +2009-07-30,38.2538,-94.3356,Butler,MO,unknown,600,((HOAX??)) Red blinking ufo, stopped on a dime, did 180, traveling 20-25 mph about 1/2 mile-1 mile away at around 100ft or so. +2010-07-30,41.9761111,-72.5922222,Enfield,CT,changing,1800,cambia de forma y dura 30 minutos ((NUFORC Note: We suspect a sighting of a celestial body, a star or a planet. PD)) +2010-07-30,40.9166667,-74.1722222,Paterson,NJ,other,7200,7/30/2010/ 9:30-11:30pm/Sighting over Paterson NJ Two Satellite Looking Objects; Second Objects Lights Up For A Moment Then Dims Again +2010-07-30,40.3355556,-75.9272222,Reading,PA,changing,10800,Four visible, identical, shape-changing UFOs over a large E city going toe-to-toe with intruders that are only visible on cameras. +2010-07-30,34.1705556,-118.8366667,Thousand Oaks,CA,light,10800,bright light in sky every night for last 8 nights and counting. ((NUFORC Note: Sighting of Venus in the western sky, we suspect. PD)) +2010-07-30,35.6225,-117.67,Ridgecrest,CA,unknown,360,Hovering lights without sound +2010-07-30,39.2902778,-76.6125,Baltimore,MD,sphere,5,Recurring Sighting Over Parkton Maryland July 27th thru 30th. +2010-07-30,36.5233333,-119.2858333,Cutler,CA,fireball,240,Small fireball shaped object seen flying southeast from Cutler. No noise. +2011-07-30,42.6333333,-71.3166667,Lowell,MA,light,540,UFO on Pawtucket Blvd. in Lowell Massachusetts on July 30th. ((NUFORC Note: Possible "twinkling" star? PD)) +2011-07-30,43.1036111,-84.5138889,Eureka,MI,light,120,Turquoise Light in the sky +2011-07-30,41.6638889,-83.5552778,Toledo,OH,cylinder,1200,Spinning cluster of very bright red, blue and yellow lights in the Western sky. +2011-07-30,33.9525,-84.55,Marietta,GA,unknown,10800,Brilliant white object over Marietta GA ((NUFORC Note: We suspect a sighting of a "twinkling" star. PD)) +2011-07-30,39.9522222,-75.1641667,Philadelphia,PA,fireball,2,Orange size Fire-like Glowing Sphere in Pennsylvania July 30, 2011. +2011-07-30,41.7452778,-70.6186111,Buzzards Bay,MA,diamond,15,sitting in my back yard. around 345pm,. light haze to the sky, with mostly sunny skies.i heard a faint jet engine .living near cape +2011-07-30,44.635555600000004,-72.6808333,Johnson,VT,cigar,60,i saw it once before i went around the hill and when i got on the other side it was gone. +2011-07-30,33.9319444,-83.7138889,Bethlehem,GA,cigar,300,This report is regarding an incident that occurred just over two years ago. I only recently learned of your site and, until now, had no +2011-07-30,34.0522222,-118.2427778,Los Angeles,CA,fireball,240,Orange pulsating light over the Farmers Market in Los Angeles +2011-07-30,43.1116667,-88.4991667,Oconomowoc,WI,light,30,Two lights following a third, rotational maneuvering +2011-07-30,42.4972222,-82.9372222,Roseville,MI,light,180,A bright light in the sky, Roseville, Michigan 48066 @ approx 8:48 pm est. +2011-07-30,38.6402778,-92.1222222,Holts Summit,MO,cigar,600,Unusual large silver object seen at great height. +2011-07-30,39.9658333,-74.8055556,Lumberton,NJ,fireball,240,Two red-orange fireballs observed and interacted with via spotlight. +2011-07-30,40.7141667,-74.0063889,New York City (Staten Island),NY,fireball,60,Orange glowing object seen by 8 people +2011-07-30,41.5022222,-72.9791667,Prospect,CT,circle,900,8 orange glowing circles float across the sky flying low +2011-07-30,42.5005556,-90.6644444,Dubuque,IA,light,600,Single bright, moving winking light and … ((NUFORC Note: Possible tumbling rocket/booster?? PD)) +2011-07-30,42.8238889,-72.1816667,Troy,NH,oval,120,If it looks like the ISS but isn't, what is it? ((NUFORC Note: Possible flare from an "Iridium" satellite?? PD)) +2011-07-30,42.8294444,-88.1586111,Wind Lake,WI,fireball,900,Glowing ball with a red glowing top. They appeared to be translucent. Disappeared quickly. +2011-07-30,43.7980556,-73.0880556,Brandon,VT,circle,180,Star imposters +2011-07-30,36.0330556,-86.7827778,Brentwood,TN,fireball,600,10-30 orange fireballs over Brentwood, TN. +2011-07-30,42.3441667,-79.3097222,Cassadaga,NY,fireball,420,Yellowish/orange sphere witnessed by 6-8 people in Western NY +2011-07-30,38.5913889,-75.2916667,Millsboro,DE,unknown,3600,Orange lights in sky. +2011-07-30,42.1194444,-71.3255556,Norfolk,MA,fireball,30,More that one siting over the last five years. +2011-07-30,42.1194444,-71.3255556,Norfolk,MA,light,2,July 31 @ approximately 10 and 10:30 pm watching the night sky and saw two separate balls of light very large streak across the sky. I +2011-07-30,36.7402778,-119.2458333,Squaw Valley,CA,light,10,Slow moving ball of light. +2011-07-30,41.6638889,-83.5552778,Toledo,OH,light,180,Amber lights seen in the distant sky, moving together before "flying" away. +2011-07-30,28.5491667,-81.7730556,Clermont,FL,sphere,180,07/30/2011 time 22:12 in greater groves blvd clermont fl 34714 6-7 hovering objects +2011-07-30,39.0508333,-74.7583333,Stone Harbor,NJ,fireball,600,Multiple fireballs North of Stone Harbor +2011-07-30,35.3733333,-119.0177778,Bakersfield,CA,circle,600,Orange Lights Over Bakersfield California +2011-07-30,41.6583333,-70.8166667,Mattapoisett,MA,light,300,Witnessed 3 bright orange lights moving slowly through the sky. +2011-07-30,38.9916667,-74.8152778,Wildwood,NJ,fireball,900,2 fireballs, interacting with one another, changing intensities for about a 15 -20 minute duration. +2011-07-30,42.2119444,-88.2380556,Cary,IL,circle,240,Four unidentifiable orange objects hovering silently and slowly moving in the sky above Cary, IL +2011-07-30,41.5580556,-73.0519444,Waterbury,CT,fireball,600,Orange lights over waterbury CT +2011-07-30,30.0083333,-97.1591667,Smithville,TX,triangle,14400,Red and green glow to lights on triangle crafts and GIANT falling star w/ green tracer then broke into 3 parts. +2011-07-30,37.9886111,-84.4777778,Lexington,KY,circle,45,orange light +2012-07-30,39.7172222,-74.9697222,Sicklerville,NJ,flash,30,Bright white lights flashing then faded away with an orange glow +2012-07-30,40.7141667,-74.0063889,New York City (Brooklyn),NY,oval,3,A falling bright green light over Brooklyn whilst riding over the Williamsburg bridge. +2012-07-30,40.7208333,-73.2677778,Brightwaters,NY,light,900,What appeared to be stationary stars in the sky were actually from a distance and through my binoculars, multi-colored strobe lights +2012-07-30,40.7141667,-74.0063889,New York City (Brooklyn),NY,circle,3000,Brooklyn UFO / VIdeo and Photo / 7.30.12 +2012-07-30,45.4872222,-122.8025,Beaverton,OR,unknown,600,Daylight UFO Sighting ove Beaverton - White light flickering and fading in and out of visibility +2012-07-30,45.16,-92.9930556,Hugo,MN,unknown,240,Fiery-orange, glowing spheres. Hovering and then moving away at unusual speeds. +2012-07-30,38.8813889,-94.8188889,Olathe,KS,light,30,Hovering lights +2012-07-30,42.2411111,-83.6130556,Ypsilanti,MI,oval,300,White Orb with 2 red lights takes gift. +2013-07-30,30.8325,-83.2786111,Valdosta,GA,light,300,Round object with red and white blinking lights. It moves around a little bit in the sky. There is no noise coming from it. +2013-07-30,36.2613889,-90.9711111,Pocahontas,AR,light,300,Orange light hovering above tree line then disappearing upwards +2013-07-30,44.0247222,-88.5425,Oshkosh,WI,circle,30,Flying disk over Oshkosh Airport during EAA fly-in. +2013-07-30,41.9586111,-71.8630556,Thompson,CT,fireball,120,Saw fireball flying across sky due north with tail then vanished into thin air with a flash of white light +2013-07-30,42.9336111,-72.2786111,Keene,NH,disk,600,Black disc to the North/NW of Keene +2013-07-30,44.9444444,-93.0930556,St. Paul,MN,circle,300,Six uniform white lights in St Paul, Minnesota. Near the Saints stadium. +2013-07-30,39.1011111,-74.7180556,Avalon,NJ,formation,60,Brief appearance of four lights in straight formation over the ocean. +2013-07-30,41.6169444,-72.085,Baltic,CT,triangle,60,3 very bright bloodred orbs flying in perfect triangular formation and smaller object approaching from opposite direction +2013-07-30,30.3672222,-89.0927778,Gulfport,MS,cone,300,Soundless red LED/electronic like lighted bright light coming from The Gulf and heading rapidly to the east near Gulfport, Mississippi. +2013-07-30,42.2155556,-79.8344444,North East,PA,unknown,600,Strange thing walked out of woods, I followed it and it just vanished. +2013-07-30,39.2775,-74.575,Ocean City,NJ,light,60,3 glowing lights over the ocean in ocean city nj 7/30/13 9pm +2013-07-30,33.3702778,-112.5830556,Buckeye,AZ,light,1335,Orange Light, Goodyear/Buckeye AZ area, Most Nights between 21:00/23:00 +2013-07-30,40.805,-72.7613889,East Moriches,NY,light,420,Star-like object stayed still for 5 minutes then desended and ascended up and down a few times before disappearing. +2013-07-30,46.6541667,-120.5288889,Selah,WA,unknown,600,Bluish-green light with smaller red light makes a zigzagging pattern over Selah, WA, stopping entirely a few times. +2013-07-30,40.0991667,-83.1141667,Dublin,OH,circle,10,A single orange circle floating in the sky for a matter off seconds and disappeared. The object was traveling north and seemed to sto +2013-07-30,45.6388889,-122.6602778,Vancouver,WA,sphere,15,2 bright orange sphere's perfectly aligned in Vancouver, Wa clear night sky +2013-07-30,38.9747222,-74.8338889,Wildwood Crest,NJ,light,120,07/30/13 23:00 Wildwood Crest New Jersey light 2 minutes 2 orange lights travelling west over Atlantic Ocean then dissappeared 07/3 +1964-07-31,42.3516667,-71.8638889,Holden,MA,light,60,July or Aug Evening in 1962-65/ Holden, MA / Light / 60 -120 seconds / White blinking light over Worcester, MA viewed from Holden, MA +1965-07-31,42.5380556,-88.3508333,Pell Lake,WI,egg,360,Four egg-shaped aerial objects were observed in the sky on the evening of July 31, 1965 in Pell Lake, Wisconsin +1966-07-31,40.0191667,-82.8794444,Gahanna,OH,light,180,Summer of 1966, a round, glowing light seen in southern sky of Gahanna, Ohio, moving east to west. +1966-07-31,42.6433333,-86.2005556,Douglas,MI,cigar,1200,saw craft hovering over corn feild. craft had two lights(red)one pulsating no sound also no insect of frog sounds craft left with incr +1967-07-31,43.1041667,-77.8847222,Churchville,NY,disk,120,That night I witnessed a UFO changed my life forever. There have been unbelievable events ever since in my life. +1967-07-31,41.0255556,-81.73,Wadsworth,OH,other,25,It travelled too fast to be man made. +1969-07-31,33.0183333,-80.1758333,Summerville,SC,light,3600,Glowing light that filled the entire sky over summerville south carolina starting small then growing large enough to cover the sky. +1973-07-31,36.0955556,-79.4380556,Burlington,NC,disk,300,Huge, clearly- defined saucer hovers at treetops +1984-07-31,38.3872222,-91.4008333,Rosebud,MO,other,300,Streaking, flaming object seen outside of Rosebud, Missouri +1984-07-31,41.5277778,-73.1280556,Middlebury,CT,other,900,Sun. July 31, 1984 10-pm sighting Middlebury CT over Police tower I-84 next to South St. arch bridge +1984-07-31,41.5277778,-73.1280556,Middlebury,CT,other,900,I-84 sighting summer Sunday July 31, 1984 at the arch bridge, Middlebury CT 10 pm 15 mins +1985-07-31,37.5072222,-122.2594444,San Carlos,CA,light,20,I observed a ball of light trailing Space Shuttle, then watched in astonishment as it streaked behind the hills. +1996-07-31,40.9413889,-73.1063889,East Setauket,NY,other,2,Football shaped, pink luminous with vapor trail. +1998-07-31,36.175,-115.1363889,Las Vegas,NV,triangle,240,Triangular object travelling slow, and low to the ground +1998-07-31,39.2191667,-121.06,Grass Valley,CA,light,3600,Saw a light in sky. It did a strange turn. Heard a slow hum, not like airplane. Hum lasted for over half an hour. Light reappeared +1999-07-31,47.0041667,-94.7266667,Akeley,MN,triangle,1920,ENCOUNTERED UFO THAT APPROACHED WITHIN 50 FEET, WAS 30 FEET WIDE AND REMAINED FOR OVER 30 MINUTES. +1999-07-31,25.7902778,-80.1302778,Miami Beach,FL,oval,900,3 grey object, ovale shape, pulsating +1999-07-31,37.3488889,-108.5852778,Cortez (4 Miles Northeast Of),CO,light,120,Star-like light traveling at high speed from Northwest to Southeast. It became larger and flared,then back to former size. Disappeared +1999-07-31,40.7608333,-111.8902778,Salt Lake City,UT,disk,120,10:30 pm. stepped out side for a break from work, saw two orange lights in the night sky. first thought was they were just +2000-07-31,40.5983333,-124.1561111,Fortuna,CA,fireball,300,round ball of light. looked like suns light reflecting off of ball in the sky. stayed motionless and hovered for 2-3min then moved nor +2000-07-31,47.6816667,-122.2075,Kirkland,WA,unknown,4,VIEWED A FLASHING OBJECT WITH TRAILING FIRE IN THE SKY +2000-07-31,45.5236111,-122.675,Portland,OR,fireball,1.5,Spectacular day-time meteor or satellite re-entry +2000-07-31,47.9130556,-122.0969444,Snohomish,WA,fireball,5,Bright fireball trailing a little black smoke, headed straight down just SW of Snohomish, WA then vanishes at a few hundred feet. +2000-07-31,47.3811111,-122.2336111,Kent,WA,other,1,Noon 7/31/00 a 3 1/2 foot long torpedo or football shaped object flying horizontally at a high speed by freeway underpass. Blue color. +2000-07-31,37.3041667,-77.2875,Hopewell,VA,fireball,5,Two witnesses saw a huge neon-green fireball travelling parallel to the ground, behind treetops, near Richmond VA on I-295 +2000-07-31,37.3041667,-77.2875,Hopewell,VA,fireball,5,Large neon-green fireball, travelling parallel to I-295 (south) at 200 mph and parallel to ground, behind treetops, near Hopewell, VA +2000-07-31,32.855,-116.8516667,Flinn Springs,CA,triangle,120,Huge bright light appeared right above my garage while I was looking at the stars. It had smaller white lights on each side, with color +2001-07-31,39.6416667,-77.7202778,Hagerstown,MD,cigar,30,White cigar-shaped light, travelling fast NNE to SSE, emited second small light which arced downwards. +2001-07-31,32.7152778,-117.1563889,San Diego,CA,other,600,Sighting? over UTC in San Diego +2001-07-31,37.0802778,-77.9975,Blackstone,VA,triangle,300,Traveling home around 22:00 my friend and I spotted a triangular craft, with 3 "headlights". +2001-07-31,27.9472222,-82.4586111,Tampa,FL,circle,60,bright, very bright, glowing blue, circular shaped. +2001-07-31,43.073055600000004,-89.4011111,Madison,WI,light,5,Spherical greenish-white glowing light in the sky moving very fast to the North/Northeast +2001-07-31,45.065,-88.0341667,Coleman,WI,circle,2,July 31, 01 large blue light,red tail, 23:29 +2001-07-31,45.4830556,-90.9925,Tony,WI,cigar,10,very large craft seen near Ladysmith Wisconsin +2001-07-31,44.9591667,-89.63,Wausau,WI,circle,15,UFO that looked like a very big green shooting star with a red and blue trail. +2001-07-31,44.7630556,-85.6205556,Traverse City,MI,light,120,Light spotted over Traverse City Mi. traveling at a high rate of speed 11:40 July 31 񫺑 +2001-07-31,39.2930556,-83.9888889,Blanchester,OH,triangle,600,At 11:50 pm, I was driving home and I saw this object on the left of me. It was triangular in shape. It had a white light on each tip +2001-07-31,39.2930556,-83.9888889,Blanchester,OH,triangle,600,smooth, rounded, silent, triangular object following me... +2002-07-31,48.3858333,-114.06,Hungry Horse,MT,light,30,I observed a point of white light, resembling a star, seeming to be high altitude, moving west at a moderate speed for about 30 seconds +2002-07-31,41.6302778,-87.8538889,Orland Park,IL,disk,240,Glittery silver UFO sighting! +2002-07-31,39.72,-84.325,Liberty,OH,other,900,I spotted an object in the sky in Liberty that was long in shape with beams of light in front and underneath it. +2002-07-31,41.6313889,-73.3111111,Washington,CT,other,3600,saw a bizzare star at 3:30 am +2002-07-31,33.3941667,-104.5225,Roswell,NM,oval,5,Flashing red and green +2002-07-31,27.4986111,-82.575,Bradenton,FL,light,60,Bright white light. Not plane, planet or star +2002-07-31,27.8002778,-97.3961111,Corpus Christi,TX,fireball,2,small but very bright light +2002-07-31,38.3497222,-81.6327778,Charleston,WV,cylinder,2700,it had a transparent covering with 4 lights inside it that glowed 1 bright at a time , but all were visible. +2002-07-31,34.5969444,-83.7633333,Cleveland,GA,circle,300,Object moved around in sky +2002-07-31,41.1277778,-81.61,Fairlawn,OH,triangle,180,Triangular pattern witnessed on summer night in backyard +2002-07-31,38.7291667,-89.8830556,Troy,IL,rectangle,5,Rectangular object traveling at a high rate of speed, south to north, dimly illuminated, visible for approx. 5 seconds +2002-07-31,39.1836111,-96.5713889,Manhattan (Near),KS,sphere,180,Sphereical object, reddish, low in the western sky 10:23 pm +2002-07-31,42.93,-75.8530556,Cazenovia,NY,flash,30,2 bright lights that faded and had the same pattern of flight +2002-07-31,37.0297222,-76.3455556,Hampton,VA,unknown,4,Silent, low, super fast object . +2002-07-31,39.1369444,-76.6986111,Severn,MD,light,1800,2 Blinking lights circle and hover over Maryland +2003-07-31,33.78,-118.2616667,Wilmington,CA,light,15,red glowing object splits, then 1 splits off and falls to earth, then both disapear +2003-07-31,36.1538889,-95.9925,Tulsa,OK,light,60,I saw a super-bright light standing still for 30 seconds and a minute later it was moving +2003-07-31,42.7325,-84.5555556,Lansing,MI,rectangle,15,long object over Lansing, MI +2003-07-31,41.6005556,-93.6088889,Des Moines,IA,cigar,10,Cloaking Cigar... +2003-07-31,47.6063889,-122.3308333,Seattle,WA,light,3,It was about 10:40 pm. a light moving slowly north, seemed like a plane but suddenly moved very fast in an arc and dissappeared. +2003-07-31,47.6741667,-122.1202778,Redmond,WA,other,240,I looked out my bedroom window and saw a ferris wheel type shaped object hovering and glowing red, yellow and green. +2003-07-31,47.8108333,-122.3761111,Edmonds,WA,unknown,240,Strange satelite(s)? +2004-07-31,36.1397222,-120.3591667,Coalinga,CA,triangle,120,Similar sighting to the I-5 UFO phenomenon on NUFORC - probable crop duster +2004-07-31,29.3011111,-94.7975,Galveston,TX,circle,60,We were fishing off the North Jetties and my father in law pointed up and said, "What's that?" I then looked up to my left and could s +2004-07-31,43.6136111,-116.2025,Boise,ID,light,1800,Strange lights over the Boise foothills (Venus??) +2004-07-31,47.4875,-117.5747222,Cheney,WA,triangle,3600,Come and watch for yourself! (Venus??) +2004-07-31,37.0841667,-94.5130556,Joplin,MO,other,1200,Observation of 50+ mechanical devices in sky. +2004-07-31,35.0844444,-106.6505556,Albuquerque,NM,circle,180,Bright white sphere traveled across Albuquerque sky +2005-07-31,44.0522222,-123.0855556,Eugene,OR,rectangle,60,The object had green and yellow flashing lights, it was moving at amazing speeds, I'd say about 1귔-2ꯠMPH. +2005-07-31,38.8105556,-90.6997222,O'fallon,MO,light,4,bright blue light, was doing something +2005-07-31,44.8994444,-109.1502778,Clark,WY,light,180,2 lights I thought were satellites running side by side when one jumped out in front of the other and went much faster +2005-07-31,36.2741667,-87.0641667,Ashland City,TN,triangle,120,triangle, 7 light, black and chrome with a haze surrounding it type object seen 31July 2005 in Ashland City Tn. 4:30 am. +2005-07-31,47.1855556,-122.2916667,Puyallup,WA,unknown,720,We watched the object hovering for about 12 minutes when it streaked out of sight, it was alarming +2005-07-31,44.0522222,-123.0855556,Eugene,OR,other,180,On Sunday, July 31, 2005 at approximately 16:10-16:15 a transit supervisor and a bus operator were observing two osprey flying over the +2005-07-31,34.2866667,-78.7013889,Brunswick,NC,light,600,Moving in a very fast circular motions. +2005-07-31,41.8833333,-70.7630556,Carver,MA,changing,900,My 19 year old son and some friends were on our deck. He came in and asked his older brother (my 20 year old son) if he wanted to see a +2005-07-31,47.9130556,-122.0969444,Snohomish,WA,circle,600,One round metalic object in the sky. +2005-07-31,33.9022222,-118.0808333,Norwalk,CA,fireball,60,A Strange Fireball light flying in the sky then it disappears +2005-07-31,32.2527778,-109.8313889,Willcox,AZ,oval,120,strange light appeared and disappeared +2005-07-31,46.9966667,-120.5466667,Ellensburg,WA,other,300,Dome shaped lights near Ellensurg +2005-07-31,37.7075,-81.2508333,Sophia,WV,disk,7200,((NUFORC Note: Possible sighting of Venus in the western sky. PD)) Object with bright white lights. +2005-07-31,43.1230556,-71.0119444,Lee,NH,light,5,Bright red light close to ground behind trees; completely dissapeared upon second look, except for red glow in sky that followed us. +2005-07-31,47.6063889,-122.3308333,Seattle,WA,other,480,Object seen shot downward from small aircraft in Seattle area, followed by flash and huge discharge cloud. +2005-08-01,34.0922222,-117.4341667,Fontana,CA,light,7200,((NUFORC Note: Probable planets (Venus and Jupiter? PD))Two strange lights in the North West skies of Fontana, and Victorville. +2006-07-31,40.7141667,-74.0063889,New York City (Brooklyn),NY,formation,3600,Formation of lights moving at a plane like pace-dimmer ones leading brighter ones +2006-07-31,29.4238889,-98.4933333,San Antonio,TX,other,300,((HOAX??)) Flying object that looks like a Hawk or Eagle +2006-07-31,41.2377778,-81.9316667,Valley City,OH,light,2,Luminous green flash quickly travels the sky in straight line and abruptly dissapears. +2006-07-31,33.8333333,-111.95,Cave Creek,AZ,rectangle,10,The object moved west across the sky, paused, flashed a bright rectangular strobe light and then disappeared. +2006-07-31,39.9783333,-86.1180556,Carmel,IN,oval,30,I noticed a black bug-like shaped craft +2006-07-31,47.6063889,-122.3308333,Seattle,WA,fireball,600,Fiery glow, moving in distance over Olympic Mountains +2007-07-31,45.4208333,-122.6694444,Lake Oswego,OR,changing,15,Large silver object appears in clear sky, then vanishes as though suddenly sucked away +2007-07-31,33.4483333,-112.0733333,Phoenix,AZ,disk,120,Taking photos of an approaching severe thunderstorm and scud clouds in Phoenix Arizona +2007-07-31,41.6005556,-93.6088889,Des Moines,IA,light,120,very bright white light that slowly dimd then moved slowly to the north across the sky at high altude. Brightend again then disapered.t +2007-07-31,43.2533333,-83.3719444,Fostoria,MI,light,10,Strange light sequence followed by military fly by +2008-07-31,27.2541667,-80.23,Jensen Beach,FL,changing,2400,Oval mass flashes red, green, white, then yellow in western sky +2008-07-31,35.6869444,-105.9372222,Santa Fe,NM,light,2400,Bright, multicolor light hovering in air in rural Santa Fe +2008-07-31,46.5436111,-87.3952778,Marquette,MI,sphere,900,Something awakened me. When I looked out of the deck window at around 4:00 a.m., I was surprised to see a red flashing light. I live +2008-07-31,40.6083333,-75.4905556,Allentown,PA,disk,900,A pulsating light hovering over Allentown, PA 2 miles west of LVIA +2008-07-31,44.2588889,-89.4069444,Almond,WI,triangle,30,V shaped winking lights. +2008-07-31,35.6708333,-80.4744444,Salisbury,NC,circle,10,Orange moving lights in the sky. +2008-07-31,43.5391667,-89.4625,Portage,WI,formation,900,UFO's spotted in Central WI. Line of lights. +2008-07-31,44.7930556,-89.7030556,Mosinee,WI,light,20,5 lights in straight horizontal line that faded out---no noise heard +2008-07-31,44.0394444,-88.7441667,Omro (Northwest Of),WI,light,300,Sequence of bright white stationary lights appearing and disappearing, all in a horizontal row. +2008-07-31,40.5852778,-105.0838889,Fort Collins,CO,flash,120,The strangest light I have ever seen, and the fastest accelleration I have ever seen. +2008-07-31,32.7252778,-114.6236111,Yuma,AZ,light,1200,((HOAX??)) orange lights seen over the Yuma, Az sky. +2008-07-31,32.7252778,-114.6236111,Yuma,AZ,formation,600,Myself and 4 other people saw 7 yellow lights hovering in the sky each one appearing and disappearing onme by one +2008-07-31,39.7391667,-104.9841667,Denver,CO,light,5,Very fast disappearing light in nighttime sky +2008-07-31,40.7988889,-81.3786111,Canton,OH,triangle,240,Solid Triangular Light pattern, at extreme altitude ,traversed the sky at high rate of speed +2008-07-31,42.0111111,-87.8405556,Park Ridge,IL,oval,120,((HOAX??)) Orb shot a beam into my face. +2008-07-31,42.2552778,-73.9027778,Leeds,NY,diamond,3600,I looked out of the bedroom window and saw a bright light in the sky which looked like a similar object I had seen several times in the +2008-07-31,38.9822222,-94.6705556,Overland Park,KS,fireball,1,Larger then meteor, faster then would be at such close distance sighting. +2008-07-31,42.6583333,-83.15,Rochester Hills,MI,light,10,I observed an object with flasing lights high in the sky, moving very quickly and sort of "jumping" around. +2008-07-31,42.6583333,-83.15,Rochester Hills,MI,light,20,I observed a large flashing object in the sky moving at a fast rate of speed moving from the north sky, east to west. +2008-07-31,40.1786111,-122.2347222,Red Bluff,CA,circle,60,Light In The Sky +2009-07-31,40.1238889,-86.0133333,Cicero,IN,flash,120,craft changed direction 6 times within 1 minute. Disappeared ater every 5 flashes for 30 seconds and would move opposite direction. Nei +2009-07-31,43.3719444,-83.5833333,Vassar,MI,circle,180,orange ball seen hovering over trees along Sohn Road in Vassar Michigan +2009-07-31,47.0344444,-122.8219444,Lacey,WA,light,15,falling white light stops then travels nw +2009-07-31,27.9375,-82.2861111,Brandon,FL,rectangle,120,opaque trapazoidal object +2009-07-31,41.7697222,-87.9358333,Willowbrook,IL,circle,120,I was sitting at the red light in traffic when for no apparent reason my eyes focused on the sky, it was partly cloudy day sunny, when +2009-07-31,38.2538,-94.3356,Butler,MO,light,600,((HOAX??)) I witnessed 1 object just after dark in the western sky. It seemed to hover upward slowly. It had 1 yellow light on it. +2009-07-31,41.4225,-87.9858333,Manhattan,IL,other,120,Yellow star shape craft +2010-07-31,37.6922222,-97.3372222,Wichita,KS,diamond,300,Quiet slow moving craft with red , blue and orange lights that dissapeared in the night sky +2010-07-31,35.0844444,-106.6505556,Albuquerque,NM,cigar,20,Night sky turned white with a cigar shaped object in the middle of a circle of light +2010-07-31,29.4238889,-98.4933333,San Antonio,TX,chevron,900,Multiple witnesses observe stationary, highly-reflective object in daytime sky. Triangular?? +2010-07-31,42.3313889,-83.0458333,Detroit,MI,other,900,((HOAX??)) Its at dusk on a clear in the SW corner I look tru through my glases the coors are white blue green orange it changes shapes +2010-07-31,39.3563889,-121.2780556,Oregon House,CA,light,300,Four lights at dusk that appear then dissaappear +2010-07-31,33.9533333,-117.3952778,Riverside,CA,light,10,Brilliant green object, seems to launch smaller white objetc +2010-07-31,43.2694444,-91.4755556,Waukon (15 Miles Se Of),IA,unknown,300,Triangular/V-shape UFO spotted over North East Iowa. +2010-07-31,41.0761111,-73.8591667,Tarrytown,NY,circle,30,Red Green and Blue pulsating object circling in a clockwise direction moving East to West +2010-07-31,28.2438889,-82.7194444,New Port Richey,FL,teardrop,600,4 teardrop shaped orange balls of fire about a minute apart flying from the west to the east +2010-07-31,45.5236111,-122.675,Portland,OR,fireball,300,I observed a strange glowing orange ball floating in the sky in a straight path that made no sound. +2010-07-31,38.5816667,-121.4933333,Sacramento,CA,oval,10,Falling Object next to the Big Dipper. +2010-07-31,38.3363889,-75.0852778,Ocean City,MD,circle,10,Circular lights in "V" formation that moved very quickly and changed patterns. +2010-07-31,41.9941667,-88.2922222,South Elgin,IL,circle,240,2 "over easy" egg shaped objects orange in color with green static charges +2010-07-31,39.8538889,-89.0838889,Harristown,IL,fireball,60,Ball of Light with tail that changed directions +2010-07-31,41.85,-87.65,Chicago,IL,fireball,900,We saw about 10 glowing objects floating in a similar path in Southwestern sky 7/31/10 about midnite. +2010-08-01,34.0522222,-118.2427778,Los Angeles,CA,circle,5400,UFO's over Silverlake +2011-07-31,38.4783333,-82.6380556,Ashland,KY,triangle,105,I walked out to smoke and seen a red triangler red light with white lights circling the outside of it. Both blinking very fast. +2011-07-31,45.6136111,-123.9416667,Rockaway Beach,OR,chevron,15,Saw a flying object, seemingly orbiting earth, when there was a burst of light/energy and the craft sped off at an unimaginable speed. +2011-07-31,37.9116667,-90.6252778,Terre Du Lac,MO,light,360,Bright light travelling North to Southwest. +2011-07-31,41.2222222,-73.0569444,Milford,CT,oval,15,Bright orange, silent orb, moving steadily but not real fast across the sky +2011-07-31,32.7152778,-117.1563889,San Diego (Ranch Environment),CA,light,1,I looked up into the dark night sky and a bright orb, like the same spotted over Jerusalem recently. ((Student report.)) +2011-07-31,44.5336111,-72.0036111,Lyndonville,VT,fireball,210,Two circular orange fireballs over northeastern Vermont +2011-07-31,41.3952778,-81.6763889,Seven Hills,OH,light,300,fast moving lights in a zigzag pattern, south to north movement +2011-07-31,45.57,-93.5813889,Princeton,MN,other,600,25-50 orange-yellow lights come out of the thunder storm +2011-07-31,42.1538889,-88.1361111,Barrington,IL,light,3,A circular white light in the sky descending diagonally towards the tree horizon. +2011-07-31,42.1655556,-88.2941667,Algonquin,IL,circle,180,Glowing Orange Globe moving slowly across sky and then just disappeared, followed 20 min later by another. +2011-07-31,40.9544444,-87.6544444,Beaverville,IL,unknown,1.5,My wife and I saw an orange glow light cross eastern sky going north at massive speed. I told my wife that nothing human can approach t +2011-07-31,42.5847222,-87.8211111,Kenosha,WI,light,240,Two red light/balls buzz Waukegan to Kenosha and disappear to the east over Lake Michigan. +2011-07-31,32.8572222,-116.9213889,Lakeside,CA,fireball,900,Pulsating orange ball that landed, then disappeared. +2012-07-31,47.3225,-122.3113889,Federal Way,WA,light,2,Yellow light there for 2 seconds and gone +2012-07-31,40.5994444,-122.4908333,Shasta,CA,unknown,3600,Flying above the tree tops. +2012-07-31,33.6602778,-117.9983333,Huntington Beach,CA,light,120,Without a dought, we saw 3 craft/lights in the sky over huntinton beach, california.they changed our lives +2012-07-31,45.5236111,-122.675,Portland,OR,sphere,60,Early morning orange orb sighting in the Portland Metro area +2012-07-31,34.0522222,-118.2427778,Los Angeles,CA,light,3,Very bright object going from South to North at a very high rate of speed. +2012-07-31,44.9430556,-123.0338889,Salem,OR,disk,60,White to red constant one light, to black saucer. +2012-07-31,38.8338889,-104.8208333,Colorado Springs,CO,fireball,1200,Have on video.....VERY CLEAR Have original video if you want....contact through Utube http://www.youtube.com/watch?v=yXQnuCrJnXc +2012-07-31,34.1388889,-118.3525,Universal City,CA,diamond,1,7.31.12. Universal Studios, CA Back Lot Tour UFO Photo +2012-07-31,37.6819444,-121.7669444,Livermore,CA,circle,45,Eight pale red or pink circular objects flying in and arrow-like formation. +2012-07-31,46.2397222,-119.0994444,Pasco,WA,unknown,1200,Three flying objects +2012-07-31,46.2858333,-119.2833333,Richland,WA,unknown,600,Large orange light over Franklin County WA +2012-07-31,43.1775,-83.7341667,Clio,MI,fireball,60,Phenomenal bright orange light disappears in clear night sky in Clio, MI on July 31, 2012 +2012-07-31,43.1338889,-88.2219444,Sussex,WI,unknown,240,I was biking with my dog west bound on Ivy Ave. behind Sussex on the main store complex. As I was proceeding I noticed an orange light +2012-07-31,37.6819444,-121.7669444,Livermore,CA,fireball,60,I witness and videotaped about 8 fireballs traveling north across Livermore Ca. +2012-07-31,37.6819444,-121.7669444,Livermore,CA,formation,300,On 7/31/2012 at 10:05 p.m. in Springtown of Livermore, CA my daughter and I witnessed in the sky several large, red glowing objects mov +2012-07-31,46.1541667,-119.0327778,Finley,WA,unknown,900,3 lights spaced wide moving slowly east to west then turning north +2012-07-31,46.2705556,-118.1522222,Waitsburg,WA,light,1200,Three lights between Waitsburg, WA and Burbank, WA. +2012-07-31,39.0997222,-94.5783333,Kansas City,MO,other,720,Aircraft that can explain some of the sightings +2012-07-31,30.3880556,-95.6961111,Montgomery,TX,disk,7200,Strange object/craft on moon surface +2012-07-31,34.7369444,-82.2544444,Simpsonville,SC,fireball,60,Orange orbs rising from the distance and slowly vanishing into the night sky. Appeared to be following each other or had a flight path. +2012-07-31,37.3058333,-89.5180556,Cape Girardeau,MO,diamond,1425,3 Multi-colored possibly diamond shaped UFOs +2013-07-31,33.9533333,-117.3952778,Riverside,CA,changing,120,Circular motion orange in color and transparent. +2013-07-31,41.6833333,-86.25,South Bend,IN,light,120,Bright light moving fast out in the cornfeilds +2013-07-31,33.3702778,-112.5830556,Buckeye,AZ,formation,1380,Orange light and in formation tonight +2013-07-31,46.475,-96.2802778,Rothsay,MN,cigar,300,Four unknown craft spotted in Western Minnesota. +2013-07-31,37.78,-121.9769444,San Ramon,CA,oval,300,Red oval light with 2 white lights ejected from it at one point +2013-07-31,40.8533333,-73.4119444,Huntington Station,NY,fireball,30,Orange fireball moving in a northeast direction. traveling sooth about 200 ft up +2013-07-31,42.8863889,-78.8786111,Buffalo,NY,fireball,900,Balls of fire. +2013-07-31,40.8877778,-79.9808333,Mt. Chestnut,PA,circle,1200,Had multiple of lights and 1 big light that moved around the outside. +2013-07-31,38.4088889,-121.3705556,Elk Grove,CA,circle,5,Bright star like circular object shoots across the sky at amazing speed +2013-07-31,34.0005556,-118.1588889,Commerce,CA,egg,300,Stepped outside of my job for my 15 min break with my friend. I walked to my Car an sat on my trunk facing east. While I was talking t +1951-07-03,41.5286111,-109.4655556,Green River,WY,sphere,420,Glowing white spherical large craft (50 to 100 ft dia) travels across mountain range near Green River, Wyo +1963-07-03,44.4477778,-69.6063889,East Vassalboro,ME,triangle,180,Black triangle with central orange light moving slowly across sky. +1968-07-03,35.2427778,-102.4277778,Vega,TX,disk,300,Counter-clockwise "flowing" lights in Texas. +1976-07-03,40.015,-105.27,Boulder,CO,disk,300,close range sighting of lit up disk at drive in theater +1977-07-03,38.1369444,-85.0744444,Waddy,KY,light,720,Super Fast Pin Point of Light Traverses Sky near Waddy, Kentucky +1981-07-03,40.1963889,-80.7752778,Dillonvale,OH,light,4,White light craft zips around in a five-point star pattern while checking out fireworks displays! +1982-07-03,29.7630556,-95.3630556,Houston,TX,disk,1800,Awakened by hovering disk over residential area. +1983-07-03,30.2655556,-94.1994444,Lumberton,TX,disk,900,July 4th, 1983: disk shaped object with colored lights over Southeast Texas +1987-07-03,42.1291667,-80.0852778,Erie,PA,triangle,600,probable pre-declassified stealth sighting +1989-07-03,38.9716667,-95.235,Lawrence,KS,chevron,60,I was on my way home, from picking up my son up at the theater. +1989-07-03,39.8244444,-97.6322222,Belleville,KS,triangle,30,Triangular craft descends into the water +1990-07-03,37.3058333,-89.5180556,Cape Girardeau,MO,sphere,300,I heard two men talking to each other and one said "where is it?" the other said "I don't see it right now, but I have the gun." I wa +1990-07-03,25.9327778,-80.1627778,North Miami Beach,FL,light,600,90 degree turn, possible missing time (?) +1992-07-03,26.0027778,-80.2241667,Pembroke Pines,FL,oval,180,PEMBROKE PINES FLORIDA. DISC SHAPED ORANGE CRAFT. SILENT AN SLOW MOVING +1994-07-03,42.1291667,-80.0852778,Erie (Over),PA,rectangle,600,I WAS A FLIGHT ATTENDANT WORKING A DELTAS FLIGHT FROM CINNINATTI, OH, TO BUFFALO, NY. +1996-07-03,42.9169444,-89.2177778,Stoughton,WI,light,36000,I was spending a lazy day on the shore of Lake Kegonsa when I noticed a bright light in the Eastern sky. It stood out to me because it +1996-07-03,41.8994444,-79.8455556,Union City,PA,other,300,we ar more primitive than we think! +1996-07-03,47.2358333,-122.5491667,University Place,WA,fireball,30,It was the fourth of july, actually the evening before. I was driving down 67th avenue, going towards lakewood, when I saw this big fi +1997-07-03,46.7313889,-117.1786111,Pullman,WA,rectangle,300,Very long recatangle body that rose to form a triangle. It had about 5 huge white lights similar to an aircraft on one end. At the ot +1997-07-03,36.0330556,-86.7827778,Brentwood,TN,cylinder,6,Extremely bright white cylinder looking object east to west direction saw from horizon to horizon through trees +1997-07-03,36.235,-87.4438889,Vanleer,TN,formation,2700,Three orange yellow lights in a tri-angle pattern,that stayed on for about 45 mins. changed positions vertically. out for 4 or 5 mins, +1997-07-03,42.5938889,-86.1016667,Fennville,MI,sphere,300,white sphere witnessed over treeline from the shore of Lake Michigan +1997-07-03,37.9886111,-84.4777778,Lexington,KY,triangle,120,I saw a triangular aircraft moving slowly and noislessly East to West. +1997-07-03,45.4316667,-84.9919444,Harbor Springs,MI,oval,180,It was a large oval shaped object with white lights (surrounding) moving in a circular motion. +1998-07-03,34.7302778,-86.5861111,Huntsville,AL,light,900,red ball of light hovering and moving without sound, shot sparks which produced three white lights that formed a vertical formation und +1999-07-03,37.4694444,-105.8694444,Alamosa,CO,light,60,Object like a star moving at a rapid rate from the south east. Pin of white light stopped directly overhead. Without warning it expan +2000-07-03,44.4583333,-87.5030556,Kewaunee,WI,disk,180,Very calm night, saw an orange light from underneath, and on the sides of it. . It made no sound. +2000-07-03,42.2416667,-71.1666667,Dedham,MA,unknown,60,Green light beam from the sky. +2000-07-03,36.175,-115.1363889,Las Vegas,NV,oval,120,When I saw the objects I thought they were pretty amazing +2000-07-03,43.6122222,-116.3905556,Meridian,ID,other,15,Was observing another aircraft when I saw this object, making no sound, travel in a straight line from west to east an go out of sight. +2000-07-03,44.8944444,-71.4963889,Colebrook,NH,changing,120,Green glowing craft which changed shape and color when it landed on the highway. +2001-07-03,47.6063889,-122.3308333,Seattle,WA,fireball,15,In the wee hours of July 3rd I saw a giant red fireball fall slowly over the north of Puget Sound. +2001-07-03,41.7758333,-72.5219444,Manchester,CT,other,1800,I saw a motionless, noiseless ufo that appeared to be under investigation of some other aircraft. +2001-07-03,40.1855556,-75.4519444,Collegeville,PA,cigar,300,I was coming out of the Collegeville ACME, the moon was rising and the sun was setting and I looked up. There was, what looked like, a +2001-07-03,32.7152778,-117.1563889,San Diego,CA,egg,900,a white oval shaped light that appeared and disappeared three times and the shooting of a lightning bolt type of ray. +2001-07-03,32.7152778,-117.1563889,San Diego,CA,egg,900,My sister, friend and I saw some UFO's +2002-07-03,41.0813889,-81.5191667,Akron,OH,oval,20,white oval object seemed to move out of our site straight up and gone +2002-07-03,32.3122222,-106.7777778,Las Cruces,NM,cylinder,3,Huge bright lime green Cylinder Shaped Object +2002-07-03,42.1958333,-70.7263889,Scituate,MA,light,2100,far away small blinking light moving around quickly but shortly +2002-07-03,33.7488889,-84.3880556,Atlanta,GA,oval,2,Fastest moving object ive ever seen +2002-07-03,40.3013889,-79.5391667,Greensburg,PA,diamond,3600,new sighting +2002-07-03,36.7477778,-119.7713889,Fresno (Merced, More Than One),CA,triangle,3000,A machine with amazing lights that can swoop to ground level and go dangerously fast. +2002-07-03,45.5322222,-92.0191667,Cumberland,WI,flash,20,Five streaks of light that were too bright and too constant to be meteorites and too fast for a satelite or aircraft. +2003-07-03,42.8713889,-112.4447222,Pocatello,ID,circle,1200,I was outside on the front porch of my house at about 2:30 am MST basically just cooling off since it was quite warm inside the house. +2003-07-03,43.0019444,-75.9772222,Manlius,NY,cylinder,10,7-3-03 A Soundless Vaporless Silver Cylinder Object Flyies East To West In The Suburbs Of Syracuse New York. +2003-07-03,43.0019444,-75.9772222,Manlius,NY,oval,30,One large oval object observed traveling east to west at a fairly high rate of speed, metallic silver/gold color. appeared to reflect t +2003-07-03,35.1741667,-84.6536111,Benton,TN,circle,300,HUGE RED ORANGE CRAFT +2003-07-03,35.3858333,-94.3983333,Fort Smith,AR,triangle,300,triangular shape and fireball in Arkansas +2004-07-03,47.0791667,-119.8547222,George,WA,light,180,Red lights in the Columbia River Gorge +2004-07-03,33.0461111,-96.9938889,Lewisville,TX,cylinder,600,Neon white cylinder moving slowly to the north over Lewisville TX +2004-07-03,40.015,-105.27,Boulder,CO,sphere,1800,The objects were not winged aircraft. They hovered and moved too slowly. The fighter jet was in the same area. +2004-07-03,34.8697222,-111.7602778,Sedona,AZ,light,180,Bright object flying in circular pattern over West Sedona +2004-07-03,32.8572222,-116.9213889,Lakeside,CA,fireball,120,White Fire ball over Lakeside. +2004-07-03,38.7358333,-85.38,Madison,IN,light,60,Telephoned Report: At 10:01 hrs. (Pacific) on Sunday, July 4th, 2004, NUFORC received a telephoned message from an adult male, located +2004-07-03,32.7947222,-116.9616667,El Cajon,CA,light,900,WE thought it might be a blimp since the lights didn't move. +2004-07-03,44.9430556,-123.0338889,Salem,OR,light,300,Bright light seen in western sky below the planet Jupiter. Brighter than Jupiter. +2004-07-03,42.2527778,-73.7913889,Hudson,NY,triangle,120,Large triangular object hovers thein streaks across sky. +2005-07-03,47.3075,-122.2272222,Auburn,WA,light,20,star light explosion +2005-07-03,30.3933333,-86.4958333,Destin,FL,unknown,240,Object with an array of white lights +2005-07-03,37.3688889,-122.0352778,Sunnyvale,CA,sphere,120,various white spheres +2005-07-03,47.2530556,-122.4430556,Tacoma,WA,egg,1,My kids (12 & 10) were walking near the waterfront in Tacoma and I saw all of the boats in Puget sound and took a picture with my digit +2005-07-03,44.0463889,-123.0208333,Springfield,OR,disk,5400,Saucer shaped reflective object moving and hovering with chasing Government Jets and a Helicopter/Photos taken +2005-07-03,47.3725,-120.2,Malaga,WA,unknown,60,speed 800 PMH (nosonic Booom) +2005-07-03,37.4419444,-122.1419444,Palo Alto,CA,sphere,30,Object following airliner briefly, then moving away from it at a rapid pace. After a few seconds, it disappeared completely +2005-07-03,27.9655556,-82.8002778,Clearwater,FL,unknown,3600,Strange lights, fast movements, clear sky +2005-07-03,47.8627778,-121.8152778,Sultan,WA,light,60,Was feeding horses on 3 of July at dusk. There was only one star in the SW sky noticable as the sun had not fully gone down. Neighborh +2005-07-03,32.8794444,-111.7566667,Casa Grande,AZ,triangle,2400,on the 3rd of july at around 10pm I was in the desert about 3 miles south of exit 200 on i 10 &i8 outside of Casagrande AZ.I was lookin +2005-07-03,37.0930556,-81.7938889,Richlands,VA,unknown,25,HIGH IN THE CLEAR DARK NIGHT SKY, THE OBJECT RAPIDLY CHANGED COURSE SEVERAL TIMES AND IT'S LIGHT WENT OUT BEFORE IT CHANGED DIRECTIONS +2005-07-03,43.676944399999996,-70.3716667,Westbrook,ME,sphere,180,moving stars that disappear +2005-07-03,42.6072222,-83.9294444,Howell,MI,unknown,900,Orange ball of light that was moving from South to North in Howell. +2005-07-03,48.1219444,-117.1980556,Diamond Lake,WA,triangle,900,Trianle w/bright colored lights seen hovering above Diamond Lake and moving all over the place. +2005-07-03,37.6391667,-120.9958333,Modesto,CA,unknown,5,((HOAXED REPORT??)) It was about 9:20 PM, 4th of July, and i was in my pool laying down on a flotie, staring into the sky… +2005-07-03,47.4563889,-101.1366667,Underwood,ND,light,7200,4 white lights at high altitude +2005-07-03,45.1438889,-122.8541667,Woodburn,OR,light,600,Red light in sky - very high - at first thought it was reflection off car dashboard.Traveled from East to West - then sped off at +2005-07-03,39.7030556,-78.5680556,Flintstone,MD,light,1800,Bouncing and rapidly moving "star" in western sky. +2006-07-03,36.7472222,-95.9805556,Bartlesville,OK,changing,3600,Two sightings in Bartlesville, OK +2006-07-03,45.8527778,-87.0216667,Gladstone,MI,other,60,Strange object with two lights. +2006-07-03,40.1163889,-88.2433333,Champaign,IL,unknown,1200,four objects moving northwest to southeast with flashing eratic red and white bright lights. fast and eratic +2007-07-03,42.2966667,-89.6211111,Freeport,IL,circle,5,Bright green object moving east inthe same direction Iwas moving. +2007-07-03,47.6816667,-122.2075,Kirkland,WA,circle,180,Round, very bright object with small bright object nearby moved in a square area for 3 minutes in a.m. hours. +2007-07-03,39.1941667,-84.7244444,Grandview,OH,light,1800,Two lights in the Columbus, Ohio sky - middle of the day. +2007-07-03,39.9611111,-82.9988889,Columbus,OH,light,1200,I have seen a great many different aircraft from different angles and at different altitudes but have never seen anything even remotely +2007-07-03,48.2413889,-122.3694444,Stanwood,WA,disk,10,saucer shaped disk moving across clouds +2007-07-03,38.9516667,-92.3338889,Columbia,MO,cigar,60,Black cigar shaped object flying north of Columbia, Missouri on 7/3/07. +2007-07-03,39.8016667,-89.6436111,Springfield,IL,disk,3300,Large stationary saucer shaped object over Springfield, Illinois +2007-07-03,41.5380556,-72.8075,Meriden,CT,circle,7200,Small, round, red objects appear in the Meriden, Connecticut skies. +2007-07-03,33.9244444,-86.0225,Southside,AL,triangle,360,At approximately 9:30 PM (21:30) I was on my deck smoking a cigarette and as I do nightly, looked into the sky to see the clarity of th +2007-07-03,36.3352778,-92.385,Mountain Home,AR,light,3600,Large Bright Light. ((NUFORC Note: Jupiter is quite prominent in the southern sky, currently. PD)) +2007-07-03,35.4975,-97.2686111,Choctaw,OK,chevron,20,Singular craft moving at high rate of speed with a firey glow +2007-07-03,41.4088889,-75.6627778,Scranton,PA,sphere,90,red rotating light in white sphere over scranton +2007-07-03,40.7230556,-74.3111111,Springfield,NJ,oval,1330,Glowing light orb/disk behind cloud: light oval shape every 9 - 10 seconds would appear +2007-07-03,32.7152778,-117.1563889,San Diego,CA,sphere,120,Sperical UFO in San Diego +2007-07-03,40.0333333,-83.1583333,Hilliard,OH,formation,600,We saw three orange objects moving from west to east in the night sky. +2007-07-03,44.3061111,-71.7705556,Littleton,NH,light,15,UFO making impossible flight path- NH- upper CT river valley +2007-07-03,35.9819444,-87.1213889,Fairview,TN,light,7200,Multiple star like high altitude objects over middle TN. +2007-07-03,33.6694444,-117.8222222,Irvine,CA,circle,180,circular object flys over the Irvine Spectrum 50+ people all saw it also. +2007-07-03,33.4472222,-84.1469444,Mcdonough,GA,light,2,it made no sounds. The ufo was very low, and it was very bright. The bright light was white in color, and the ufo changed it shape into +2008-07-03,40.125,-79.8666667,Belle Vernon,PA,disk,30,It was about five after twelve a.m. and I was outside smoking cigarette when this object flew by my house.It was a large silver obj +2008-07-03,40.7141667,-74.0063889,New York City (Brooklyn),NY,triangle,1200,observed hovering basically in one place +2008-07-03,35.7719444,-78.6388889,Raleigh,NC,cylinder,3,It was a long slim cylinder of shiny metal with two colored sections-one red and one black each about 1/4 of the length of the craft. +2008-07-03,35.5322222,-97.9547222,El Reno,OK,diamond,30,White diamond shape' (s) over El Reno, Oklahoma +2008-07-03,64.8377778,-147.7163889,Fairbanks,AK,unknown,120,White oblong object moving fast through clear sky and fades into the blue. +2008-07-03,41.4036111,-95.0136111,Atlantic,IA,oval,600,07-03-2008 on a cloudless nite a star in sky above iowa moving in different patterns for 10 min +2008-07-03,41.4788889,-87.4547222,Schererville,IN,circle,300,POSSIBLE UFO SIGHTING DURING FIRE WORK SHOW +2008-07-03,33.0580556,-112.0469444,Maricopa,AZ,unknown,1800,Maricopa, Az Bright red light hovering and moving slowly over SW AZ for about 25min. +2008-07-03,47.4736111,-94.88,Bemidji,MN,fireball,120,Large bright orange object moving slowing and quietly and then faded into the sky. +2008-07-03,29.9688889,-95.6969444,Cypress,TX,light,30,Orange flickering light northwest of Houston observed from Highway 290 +2008-07-03,44.9444444,-93.0930556,St. Paul,MN,circle,600,Me and my girlfriend was at a event on the river in st.paul minnesota.We were standing in a line.When we were looking up into the sky a +2008-07-03,42.5377778,-83.2330556,West Bloomfield,MI,circle,900,Bright white circular object with RED glare glowing behind movng slowly over Orchard Lake, MI. +2008-07-03,40.2994444,-109.9880556,Roosevelt,UT,changing,14400,UFO caught on tape +2008-07-03,29.7630556,-95.3630556,Houston,TX,unknown,3600,Flashing object at the sky of Houston, July 3񫺘. ((NUFORC Note: Sighting of Jupiter in the southeastern sky?? PD)) +2008-07-03,41.6819444,-85.9766667,Elkhart,IN,oval,120,Craft with a steady orange light moved to the SSE before disappearing +2009-07-03,45.52,-123.1094444,Forest Grove,OR,unknown,20,I saw something I thought was a star until it dimmed and moved. +2009-07-03,47.3294444,-122.5788889,Gig Harbor,WA,light,540,Bright White Light the Size and Brightness of Venus Passes Over Gig Harbor, WA. ((NUFORC Note: Sighting of ISS. PD)) +2009-07-03,32.2216667,-110.9258333,Tucson,AZ,circle,2700,UFO's ARE REAL +2009-07-03,39.36,-84.31,Mason,OH,disk,300,Silent, round object over Mason, OH +2009-07-03,44.6922222,-92.0113889,Eau Galle,WI,formation,1500,Formation of three seaparte red lights that appeared in foramtion but each light went up and disapeared on it's own. +2009-07-03,38.5816667,-121.4933333,Sacramento,CA,light,15,Small point of light moving at high speed and high altitude in a northerly direction across the sky. +2009-07-03,41.3041667,-82.9752778,Clyde,OH,fireball,600,2 fireballs following one another through the sky. +2009-07-03,41.3041667,-82.9752778,Clyde,OH,light,240,Two bright orange white lights flying in formation over Clyde Ohio +2009-07-03,42.1711111,-87.8444444,Deerfield,IL,fireball,300,Fireballs over Deerfield, IL +2009-07-03,35.8455556,-86.3902778,Murfreesboro,TN,unknown,30,Strange light/flame over Murfreesboro, TN +2009-07-03,38.3686111,-93.7780556,Clinton,MO,fireball,180,Glowing ball just west of Clinton, MO on July 3rd, 2009 +2009-07-03,34.9386111,-82.2272222,Greer,SC,light,90,Bright red UFO with small white UFO that was deployed from the top. +2009-07-03,40.4166667,-86.8752778,Lafayette,IN,light,120,A bright orange light, traveling west, then east, before gaining altitude and fizzling out of sight. +2009-07-03,42.8247222,-83.2647222,Oxford,MI,circle,60,07/03/09 Oxford MI clear object with fire in the middle 1 minute Object appeared down the street and then dissapeared into the sky +2010-07-03,48.1183333,-123.4294444,Port Angeles,WA,light,60.3,My two friends and I had a second sighting of the same type we had seen approximately two hours earlier. Once again, the two lights, wi +2010-07-03,34.0005556,-81.035,Columbia,SC,formation,5,On July 3, 2010 at 2:33 am I was traveling north on interstate I-77 just passed mile marker 8, in South Carolina. At the time, there w +2010-07-03,41.4169444,-87.3652778,Crown Point,IN,fireball,45,ball of fire moving slowly overhead.... +2010-07-03,47.3225,-122.3113889,Federal Way,WA,light,300,Two lights following each other with a faster then normal speed. +2010-07-03,37.6791667,-95.4569444,Chanute,KS,fireball,300,Red/Yellow fireball low on the Southern Horizon of small Kansas Town +2010-07-03,42.3683333,-88.8219444,Poplar Grove,IL,chevron,300,Waiting for fireworks to begin saw two object flying southeast to northwest +2010-07-03,40.6936111,-75.1905556,Phillipsburg,NJ,fireball,3600,50 Red Fireballs flying over NJ. +2010-07-03,47.6063889,-122.3308333,Seattle,WA,fireball,15,July 3, 2010 sighting over Seattle,WA +2010-07-03,32.9616667,-96.8288889,Addison,TX,fireball,180,Two bright orange circular-type objects appearing at edge of a city park during 4th of July festivities +2010-07-03,35.0536111,-94.6233333,Poteau,OK,light,300,White Light Glimmering Correction* +2010-07-03,33.4222222,-111.8219444,Mesa,AZ,oval,180,Oval object in the sky splits into three sections of light and start to rotate clockwise while moving to the west in Mesa, AZ. +2010-07-03,41.8505556,-87.7936111,Berwyn,IL,circle,180,Cloudy ring like figure moving puickly through the late afternoon sky in Berwyn, Illinois. +2010-07-03,37.0944444,-88.0802778,Eddyville,KY,light,1200,Orb shaped light, steady orange/yellow color, 250+- ft. high, steady speed hoz-hoz, UFO to witnesses. +2010-07-03,36.3008333,-119.7819444,Lemoore,CA,triangle,120,craft with 3 top lights, no sound approached car, does 360 sharp turn in field. +2010-07-03,41.3555556,-72.1,New London (Near),CT,light,3,An out of the ordinary, fast-moving light moved in a zig zag pattern across the night sky and disappeared in a matter of seconds. +2010-07-03,39.8452778,-82.6008333,Baltimore,OH,oval,240,Sighting of capsule shaped object, front and back identical with glowing light with a dark middle space. +2010-07-03,40.3469444,-74.0647222,Red Bank,NJ,changing,1800,Unknown Self luminous Red Obj obve fireworks display +2010-07-03,42.2711111,-89.0938889,Rockford,IL,oval,30,A keen sighting of many in Rockford Illinois- +2010-07-03,39.7558333,-77.5780556,Waynesboro,PA,circle,120,Red, circular object sighted in night sky before fireworks display +2010-07-03,42.3805556,-76.8736111,Watkins Glen,NY,light,360,3 Separate Sightings 15 minutes appart +2010-07-03,35.8241667,-78.315,Zebulon,NC,unknown,3600,20 or more red lights in the sky seen in North Carolina. +2010-07-03,39.1619444,-84.4569444,Cincinnati,OH,light,300,Saw unknown persistent light in the sky and then a gray object that arced away when the light stopped. +2010-07-03,42.2505556,-83.1786111,Lincoln Park,MI,oval,180,strange craft move with no noise or wings or rotor blades +2010-07-03,41.1016667,-80.7647222,Austintown,OH,other,300,Red lights in shape of horseshoe moving accross sky +2010-07-03,40.698055600000004,-91.8030556,Bonaparte,IA,fireball,900,On july 3 2010 around 22:00 just before the fireworks show a orange and red orb just appeared over the des moines river and floated sou +2010-07-03,39.2486111,-94.9,Lansing,KS,light,300,i saw some lights almost like spotlights and they went in motion like right left then stoped for few seconds then cirled and went away. +2010-07-03,48.6338889,-116.9447222,Nordman,ID,light,3600,Strange slow moving orange light traveling from west to east then turned abruptly and disappeared. +2010-07-03,41.3455556,-88.8425,Ottawa,IL,fireball,60,It was just after nightfall Saturday, July 3 about 22:00. I was walking toward a pile of wood, to light the bonfire. I was walking nort +2010-07-03,41.1569444,-83.4169444,Fostoria,OH,unknown,40,I and 8 others witnessed a fast moving object in the eastern sky moving south to north. The object appeared to be orange in color and +2010-07-03,37.5058333,-77.6494444,Midlothian,VA,other,900,i reported 2 star like lights to the police and then within 15 min there was a dozen aircraft giving chace north from richmond va 2 D.C +2010-07-03,35.0536111,-94.6233333,Poteau,OK,sphere,180,Four orange spherical glowing lights moving slowly in formation at tree top level at 10 pm over Poteau, OK. +2010-07-03,39.4013889,-83.9813889,Clarksville,OH,circle,300,I was standing on the outside deck of a local eatery looked up because something caught my eye and saw comming over the roof area and m +2010-07-03,38.3397222,-122.7,Rohnert Park,CA,fireball,15,Bright yellow fireball made right angle turn and disappeared. +2010-07-03,48.1183333,-123.4294444,Port Angeles,WA,light,120,Set of two lights moving silently in-line with one another from East to West. Lead light brighter than follow light. +2010-07-03,48.7597222,-122.4869444,Bellingham (Sudden Valley),WA,light,300,Two lights following each other across the sky. ((NUFORC Note: Possibly the ISS, followed by the Russian supply capsule. PD)) +2010-07-03,41.8858333,-84.5441667,Osseo,MI,oval,100,clear night watching fireworks from our hill in osseo mi. 3 objects move form the s/sw to n/ne at a rate of speed that tokk only 2 min. +2010-07-03,33.9533333,-117.3952778,Riverside,CA,circle,60,Dull orange orb suddenly appears +2010-07-03,47.0344444,-122.8219444,Lacey,WA,formation,600,Three orange lights in a triangle shape the lights looked like fire moving at a high rate of speed at a very high altitude +2010-07-03,42.5377778,-83.2330556,West Bloomfield,MI,light,900,Groups of bright orange/amber lights in the evening sky July 3, 2010 +2010-07-03,41.6819444,-85.9766667,Elkhart,IN,circle,60,A ship came down hovered there flew over head then zipped straight up. +2010-07-03,48.7597222,-122.4869444,Bellingham,WA,light,60,2 OBJECTS, VERY HIGH ONE FOLLOWING THE OTHER +2010-07-03,41.1305556,-85.1288889,Fort Wayne,IN,circle,30,A slowly floating black circle with a faint red light in front +2010-07-03,43.22,-85.7511111,Kent City,MI,circle,480,2 lights chasing one another then formed one light and took off to disappear in the night sky. +2010-07-03,42.7325,-84.5555556,Lansing,MI,fireball,180,bright orange glitterly light travels across sky and then dissapears +2010-07-03,40.0377778,-76.3058333,Lancaster,PA,circle,600,Two of my friends and I saw one UFO the night of July 3rd. We were looking at the stars when I noticed that a "star" was moving. It res +2010-07-03,41.0530556,-82.7263889,Willard,OH,sphere,240,Four red-orange spherical objects crossed the sky one after another on July 3rd +2010-07-03,36.0305556,-75.6763889,Kill Devil Hills,NC,formation,3600,saw two in sync circle formations cicleing around eachother,v line formation,single and multiple orange glowing crafts.slow with pace +2010-07-03,39.02,-86.7288889,Cincinnati,IN,oval,600,8-10 orange oval-like silent low flying objects fly over Eastern Greene Co., IN on July 3, 2010 11:50pm - East to West +2011-07-03,42.8352778,-89.0675,Edgerton,WI,sphere,90,5-6 Orange Orbs over Rock River in Edgerton, WI +2011-07-03,41.4444444,-87.6313889,Crete,IL,sphere,120,Orange Spheres over Crete, IL +2011-07-03,41.47,-87.6363889,Steger,IL,light,60,Multiple luminescent reddish radiating lights in a line pattern that each changed course then faded into distance. +2011-07-03,35.2269444,-80.8433333,Charlotte,NC,light,240,A couple dozen orange lights traveling against the wind. ((NUFORC Note: Very reliable and convincing witness. PD)) +2011-07-03,33.4933333,-112.3572222,Litchfield Park,AZ,flash,2,A little light in the sky that zoomed by really fast. But definitely was not a shooting star. +2011-07-03,39.7391667,-104.9841667,Denver (Near),CO,light,120,We were camping in Colorado in the mountains. On our way back Sunday July 3rd we were driving and my girlfriend said whats that? I loo +2011-07-03,42.2941667,-83.31,Inkster,MI,unknown,45,High altitude, "pulsing" object. +2011-07-03,38.8113889,-90.8527778,Wentzville,MO,sphere,30,Stationary sphere obversed during storm and high winds +2011-07-03,34.1808333,-118.3080556,Burbank,CA,disk,300,event date 7/03/2011 @ 16:00 hrs duration approx:5 min city of burbank,ca 91505 los angles county 1 witness that i know of but there +2011-07-03,35.2619444,-81.1875,Gastonia,NC,sphere,30,rustic brown sphere spotted in gastonia n.c. traveling over apartment complex. +2011-07-03,38.801944399999996,-94.4525,Raymore,MO,fireball,180,Fireball in Raymore, MO. +2011-07-03,28.555,-82.3880556,Brooksville,FL,cigar,180,Cigar-shaped with orange and green glow all thru out the shape sped along across the dusk sky at a fast speed then slowed down a bit th +2011-07-03,39.0638889,-108.55,Grand Junction,CO,fireball,240,Winged craft with 8 to 10 ft diameter fire behind at center rear of craft no sound altitude 2000 ft 60 mph +2011-07-03,40.6883333,-75.2211111,Easton,PA,disk,240,L shaped lights moving across the night sky +2011-07-03,41.6716667,-72.9497222,Bristol,CT,fireball,35,About 9 P.M. July 3rd, 2011 Bristol CT, Lasted 30-40 Seconds, Heard 3 Loud Bangs, Went Outside And Saw An Orange Circular Unidentifiabl +2011-07-03,37.8136111,-88.4380556,Eldorado,IL,changing,3600,Hundreds of people witness 6 different ufo's checked out and seemed threatened by a fireworks display in southern IL +2011-07-03,42.7611111,-74.2569444,Esperance,NY,formation,180,Group of UFO's witnessed over Esperance, NY, on 3 July 2011 +2011-07-03,36.7477778,-119.7713889,Fresno,CA,light,240,My boyfriend and I see these same ones a lot. He came in, telling me to come and look. It was a bright light to the east, a little sou +2011-07-03,33.1958333,-80.0133333,Moncks Corner,SC,light,120,WAS LOOKING UP AT APROX.TWARDS THE WEST,A THIRD OF THE WAY UP AND SAW A BRIGHT LITE SLOWELY MOVEING ACROSS THE SKY AND NOTICED IT DIDN +2011-07-03,38.05,-85.5458333,Mt. Washington,KY,circle,90,Orange bright ball of light flew across the sky for over a 1 min. and then stopped and disappeared. +2011-07-03,32.7866667,-79.795,Isle Of Palms,SC,fireball,120,Ball of fire coming from Atlantic ocean toward the north west at steady pace +2011-07-03,33.8186111,-84.5825,Mableton,GA,sphere,300,Five flying red spheres above Mableton, GA +2011-07-03,33.8186111,-84.5825,Mableton,GA,sphere,300,It was the most amazing and skeptic turning event of my life. +2011-07-03,33.8186111,-84.5825,Mableton,GA,sphere,300,Moving Bright objects in Mableton sky. +2011-07-03,33.8186111,-84.5825,Mableton,GA,sphere,300,Mableton +2011-07-03,40.6338889,-78.6505556,Patton,PA,light,120,Orange light in the sky over Patton PA... appeared twice. +2011-07-03,47.7361111,-122.6452778,Poulsbo,WA,oval,180,Bright falling oval in Poulsbo WA seen one hour before the 3rd of July fireworks display. +2011-07-03,42.1538889,-88.1361111,Barrington,IL,light,300,Eight Bright Triangular Shaped Orange Lights Traveling Across Sky +2011-07-03,43.8844444,-91.235,Onalaska,WI,fireball,600,Three red objects in he sky above Onalaska Wi at 9:30 PM July 3rd 2011 +2011-07-03,40.6338889,-78.6505556,Patton,PA,light,120,Orange light in the sky +2011-07-03,46.1469444,-122.9072222,Kelso,WA,cylinder,300,Bright lantern shaped object hovered for awhile then darted across the sky. +2011-07-03,38.2541667,-85.7594444,Louisville,KY,light,180,At approximately 21:45 me and a friend saw a strange orange ball in the sky making a series of irradic moves. It was hard to say how bi +2011-07-03,39.7686111,-94.8463889,St. Joseph,MO,fireball,240,2 flying objects that look like fireballs +2011-07-03,38.4494444,-78.8691667,Harrisonburg,VA,cylinder,600,An Orange/red vertical cylinder shape ascended slowly and vertically keeping its shape during a fireworks display. +2011-07-03,42.3211111,-85.1797222,Battle Creek,MI,triangle,120,Triangular shape, noisless,, object floated through sky over apartment building. +2011-07-03,36.0525,-95.7905556,Broken Arrow,OK,cylinder,180,Large object with orange/red light. +2011-07-03,34.6052778,-76.5366667,Cape Lookout,NC,rectangle,45,3 vertical red lights moving together over ocean +2011-07-03,44.0522222,-123.0855556,Eugene,OR,other,900,Crescent shaped object bright orange. Chinese Lantern? +2011-07-03,46.1383333,-122.9369444,Longview,WA,fireball,240,3 Red lights that looked like fireballs fly through the sky in Longview, WA +2011-07-03,38.2541667,-85.7594444,Louisville,KY,fireball,90,Orange bright ball of light going across the sky +2011-07-03,47.1302778,-119.2769444,Moses Lake,WA,fireball,480,Red fireball, silently moving and hovering over our town. +2011-07-03,46.6763889,-92.185,Riverview,WI,circle,900,Orange ball-like objects move slowly across the sky horizontally +2011-07-03,47.6588889,-117.425,Spokane (Spokane River; Muncies Marina),WA,fireball,900,Spokane River (McCoys Marina): Red-Yellow Fireball witnessed. +2011-07-03,39.7908333,-77.1097222,Whitehall,PA,light,600,Red light hovering in Whitehall, PA shoots up into atmosphere +2011-07-03,29.7263889,-99.0733333,Bandera,TX,triangle,20,Very bright, silent, triangular object over Bandera Co., TX, suddenly turned off lights tho obj. still there. (NUFORC Note: ISS. PD)) +2011-07-03,27.4666667,-82.7041667,Bradenton Beach,FL,other,2700,Bright white trapezoidal objects viewed ascending into clouds over Gulf of Mexico off of Anna Maria Island +2011-07-03,41.7108333,-87.7580556,Oak Lawn,IL,circle,180,Red glare visible atom shaped object in shy +2011-07-03,39.1072222,-76.5713889,Pasadena,MD,circle,300,We observed the exact shape of objects shown in the photograph of the sighting on 5/09/11 +2011-07-03,41.7188889,-83.7130556,Sylvania,OH,light,120,UFO over quarry/fireworks celebration +2011-07-03,42.6888889,-84.2830556,Williamston,MI,light,300,Two huge red orange orbs moving slowly and low in the sky -- one disappeared other I watched until gone from sight. +2011-07-03,46.0038889,-112.5338889,Butte,MT,sphere,180,Sphere/fireball seen during fireworks +2011-07-03,38.4247222,-90.7825,Catawissa,MO,fireball,240,July 3, 2011, Franklin County, Missouri approx. 10:30PM an amber fiery ball of light seen for 3-4 minutes same time as firework display +2011-07-03,41.6033333,-80.3055556,Conneaut Lake,PA,circle,60,glowing orange ball in the south sky +2011-07-03,42.2411111,-88.3161111,Crystal Lake,IL,unknown,180,Reddish lights over Crystal Lake/Barrington area twice in 3 weeks pics by seprate parties taken. +2011-07-03,40.9175,-96.5280556,Waverly,NE,light,240,Very bright orange objects +2011-07-03,43.5408333,-116.5625,Nampa,ID,fireball,120,Two very bright red objects travelling with missile-like speed across the entire night sky NNW to SSE +2011-07-03,40.7672222,-74.2052778,East Orange,NJ,fireball,180,Red star like object in the sky moving around in the sky +2011-07-03,41.525,-88.0816667,Joliet,IL,fireball,600,20-25 fireballs over Joliet, Il. +2011-07-03,46.0038889,-112.5338889,Butte,MT,fireball,300,3 orange balls of light flew over butte 5 minutes apart +2011-07-03,42.4927778,-92.3427778,Waterloo,IA,light,60,Red light in the sky over Waterloo, IA +2011-07-03,40.4166667,-86.8752778,West Lafayette,IN,fireball,120,Orange-amber fireball observed, passing above clouds +2012-07-03,41.6361111,-70.9347222,New Bedford,MA,light,60,((NUFORC Note: No information provided by witness. PD)) +2012-07-03,43.9991667,-96.6486111,Egan,SD,light,45,Extremely bright white light getting bigger then, smaller and zooming away +2012-07-03,41.2794444,-72.8155556,Branford,CT,sphere,180,Bright orange orb flying W to E over L.I. Sound, silent, at 400-500 mph then hovers 30 sec,, dims, disappears. +2012-07-03,35.9572222,-75.6244444,Nags Head,NC,sphere,600,Silent Orange Orbs Moving From South To North Near Jennette's Pier (MP 16.5) Over the Beach in Nags Head. +2012-07-03,37.6455556,-91.5358333,Salem,MO,fireball,180,Red, orange glowing orb. 15 mph,accelerates when flashlight is shined on it +2012-07-03,37.6455556,-91.5358333,Salem,MO,fireball,60,Red, orange glowing orb. 15 mph, accelerates when flashlight is shined on it +2012-07-03,43.0255556,-74.9863889,Herkimer,NY,other,90,Multicoloured unknown shaped aircraft +2012-07-03,47.3075,-122.2272222,Auburn,WA,light,720,Weird lights seen over Auburn +2012-07-03,45.8202778,-88.0658333,Iron Mountain,MI,light,180,A slow low flying white light surrounded by a red orb hovering and turning 90* with no sound. +2012-07-03,40.4483333,-122.2966667,Anderson,CA,fireball,120,Ball of light after 2 different fireworks in 2 days seen by 2 different family members in 2different areas.. +2012-07-03,36.7625,-80.735,Hillsville,VA,oval,600,Two Glowing Orbs hovering around the Full Moon after fireworks. +2012-07-03,42.1577778,-78.7152778,Salamanca,NY,oval,600,There is no other explanation for this other than it being a UFO, very exciting experience. +2012-07-03,42.5377778,-83.4811111,Walled Lake,MI,light,1800,Bright orange lights in formation, then some after, one by one +2012-07-03,39.5286111,-87.4222222,West Harrison,IN,other,420,2 craft at first 200 feet up in sky flying very slow 30 miles an hour flying in formation about a hundred feet apart we were driving in +2012-07-03,39.5286111,-87.4222222,West Harrison,IN,other,420,Life changing experience! +2012-07-03,47.1055556,-122.0444444,Wilkeson,WA,fireball,90,3 "fireball" orbs seen in the sky Tuesday night over Wilkeson, WA +2012-07-03,48.8466667,-122.5897222,Ferndale,WA,light,120,3 amber lights in the sky +2012-07-03,44.9808333,-85.715,Lake Leelanau,MI,circle,1500,Twelve small reddish objects crossed in a left to right pattern over Lake Leelanau +2012-07-03,39.7044444,-86.0097222,Wanamaker,IN,light,120,3 orangle lights seen in Wanamaker, IN 07/03/12 +2012-07-03,33.6694444,-117.8222222,Irvine,CA,triangle,120,Near 10:30pm, silent, triangular UFO, deep orange lights, white beam, flies slow about 10ꯠ ft; disappeared by vertical ascent. +2012-07-03,43.0716667,-70.7630556,Portsmouth,NH,circle,1800,Fireballs over Portsmouth +2012-07-03,45.5827778,-122.3522222,Washougal,WA,fireball,360,I witnessed an orange/pinkish orb levitating silently high over the Columbia River. +2012-07-03,44.6613889,-84.7147222,Grayling,MI,circle,300,Four silent reddish-orange flying circles in a linear fashion on a clear night over a lake in Grayling, Michigan. +2012-07-03,44.9808333,-85.715,Lake Leelanau,MI,circle,1500,I saw more than a dozen of these craft. +2012-07-03,34.1741667,-97.1433333,Ardmore,OK,fireball,300,Bright orange orb Ardmore, Oklahoma. 7-3-2012 +2012-07-03,40.3077778,-75.9658333,Shillington,PA,fireball,420,Orange fiery orb travels in slow erratic path from east to northeast over Shillington and Reading, PA +2012-07-03,47.3861111,-110.9247222,Belt,MT,unknown,25,Orange object appeared in night sky over Belt MT +2012-07-03,37.1763889,-94.31,Carthage,MO,circle,30,Moved very fast and made no sound. +2013-07-03,44.6366667,-123.1047222,Albany,OR,unknown,300,Unknown Lights +2013-07-03,35.7975,-95.2502778,Ft. Gibson,OK,light,15,Gold/orange light disappears over Hwy 62. +2013-07-03,42.5802778,-83.0302778,Sterling Heights,MI,cylinder,1200,3 red/fireball like cylinders moving west over michigan. ((NUFORC Note: Report from law enforcement officer. PD)) +2013-07-03,36.0525,-95.7905556,Broken Arrow,OK,light,300,Two orange lights moving in line with each other then fading separately. +2013-07-03,37.8716667,-122.2716667,Berkeley,CA,unknown,15,Strange lights in the fog. +2013-07-03,47.0075,-122.9080556,Tumwater,WA,flash,1,Two bright flashes of light that appeared not to be a meteor. +2013-07-03,45.4313889,-122.7702778,Tigard,OR,light,4,All the jets I see at cruising altitudes take at least 12 seconds to cover the same area, and dont look like actual stars. +2013-07-03,33.6305556,-112.3325,Surprise,AZ,egg,1,Motion activated video of object in a bubble for about 1 second. +2013-07-03,37.7361111,-120.9344444,Riverbank,CA,flash,5,Huge flash of light in sky. +2013-07-03,45.1977778,-93.3869444,Anoka,MN,formation,30,3 white lights in triangular formation visible in night sky; retreated quickly at same rate of speed +2013-07-03,43.5405556,-70.8486111,Shapleigh,ME,light,120,Parallel lights moving east across Shapleigh, ME. +2013-07-03,36.7236111,-120.0588889,Kerman,CA,unknown,30,Strange aircraft +2013-07-03,33.6888889,-78.8869444,Myrtle Beach,SC,unknown,600,One large bright orange/yellowish light hovered pretty high above the horizon. Light had something fall from bottom which then turned i +2013-07-03,38.8113889,-90.8527778,Wentzville,MO,fireball,60,Sigtng in my family room I observed an object out my atrium window to the west. I went outside and seen a round fireball object going h +2013-07-03,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,300,Flaming fireball separate into 4 fireballs +2013-07-03,42.5775,-88.105,Paddock Lake,WI,light,120,Red light seen over Paddock Lake. +2013-07-03,46.0647222,-118.3419444,Walla Walla,WA,sphere,25,Two orange orbs seen in daylight. +2013-07-03,33.9547222,-118.2111111,South Gate,CA,light,180,Red glowing orb over South Gate, Ca. +2013-07-03,41.4994444,-81.6955556,Cleveland,OH,oval,90,Orange w/ white center. +2013-07-03,38.2541667,-85.7594444,Louisville,KY,light,90,Orange illuminating round object. Kept level altitude. +2013-07-03,40.3933333,-82.4858333,Mt. Vernon,OH,circle,1800,They were large round lights. Much larger than those of airplanes or helocopters. +2013-07-03,39.6,-75.9416667,North East,MD,circle,1200,Orange/yellow object in the sky +2013-07-03,22.2236111,-159.4852778,Princeville,HI,triangle,180,3 lights in the form of a triangle. +2013-07-03,40.7875,-82.7366667,Crestline,OH,circle,420,Brilliant orange orb like object with flickering fiery tail fluctuating orange light, nearly rocket like exhaust. +2013-07-03,44.0522222,-123.0855556,Eugene,OR,flash,300,Bright glowing orb, moving slowly then fading into the night. +2013-07-03,39.7683333,-86.1580556,Indianapolis,IN,chevron,300,Several boomerang shaped craft that started out like a huge bright red/orange ball of light, diminished to an amber glow, then to black +2013-07-03,38.8002778,-90.6263889,Saint Peters,MO,fireball,180,Two orange fireballs across they sky in St. Peters. +2013-07-03,41.6986111,-88.0683333,Bolingbrook,IL,fireball,60,3 fireballs moving upward in a vertical column +2013-07-03,30.5080556,-97.6786111,Round Rock,TX,fireball,300,Orange/red contained sphere with no sound flys across sky, helicopters chase +2013-07-03,35.1405556,-85.2327778,Hixson,TN,light,20,three lights like stars in the twilight after a fireworks display. The lights were uniform in color and brightness. Strange movement. +2013-07-03,39.9202778,-80.7433333,Moundsville,WV,oval,180,an oval twinkling light that turned orange and shot across the sky three times in a blue strek forming a triangular flight pattern,stop +2013-07-03,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,600,Fireball and bright objects shooting through the sky that took formation into a Y then disappeared. +2013-07-03,41.1238889,-100.765,North Platte,NE,circle,300,A large bright orange glowing ball floating silently above the trees. +2013-07-03,41.3747222,-83.6513889,Bowling Green,OH,triangle,60,Three reddish or amber lights in form of triangle investigating Bowling Green, Ohio's fireworks display. +2013-07-03,42.2630556,-88.0038889,Mundelein,IL,triangle,60,Bright glowing orange triangular shaped object gone transparent moving NE. +2013-07-03,35.6869444,-105.9372222,Santa Fe,NM,light,300,Whirling group of lights NW of Santa Fe,NM : moving fast in a huge circle. +2013-07-03,45.0791667,-93.1469444,Shoreview,MN,light,10,Triangle formation of lights visible for five to ten seconds. +2013-07-03,46.8772222,-96.7894444,Fargo,ND,oval,120,Fuzzy orange oval shaped craft, emitted four beams of light for 3-5 seconds. +1947-07-04,47.6063889,-122.3308333,Seattle,WA,oval,10,While walking in Woodland Park in Seattle, Washington, on July 4, 1947, I looked up and saw a bright white oval object come down . +1953-07-04,41.1280556,-101.7191667,Ogallala,NE,other,2700,Bright white light with no sound, hovering, very fast when leaving at Lake McConaughy +1960-07-04,42.9763889,-88.1083333,New Berlin,WI,circle,300,Large, slow moving craft, above the clouds, blinked out like a lightbulb before reaching the horizon +1962-07-04,36.1983333,-101.1919444,Spearman,TX,unknown,900,Laying on my back looking at the stars when one shot across the sky, did a 90 degree turn without slowing and stopped...then a second o +1965-07-04,30.1763889,-85.8055556,Panama City Beach,FL,fireball,10800,One light over ocean became brighter as time passed. One object became 2, 2 became 4, etc. Then one would flash out and disappear, but +1966-07-04,44.3313889,-68.7994444,Cape Rosier,ME,light,10800,glowing green ball moving across the horizon on July 4, 1966, in Cape Rosier, Maine +1966-07-04,37.3394444,-121.8938889,San Jose,CA,disk,300,Saw a bright star, thought it was Venus. Looked around and saw Venus. This object then got alot brighter and swelled and then vanished +1969-07-04,39.7047222,-105.0808333,Lakewood,CO,other,300,Light reversing directions silent - watched for ten minutes +1969-07-04,37.3688889,-122.0352778,Sunnyvale,CA,disk,10,Two fast and low disks haulin' a** +1969-07-04,30.2944444,-81.3933333,Jacksonville Beach,FL,other,180,Very odd Flying-V object flew directly over me. +1971-07-04,34.4208333,-119.6972222,Santa Barbara,CA,unknown,600,Fast flying object in Santa Barbara +1971-07-04,37.0430556,-100.9205556,Liberal,KS,cigar,1200,cigar shaped object appeared low over lake in Great Bend after July 4th fireworks. +1975-07-04,43.3163889,-76.7025,Fair Haven,NY,sphere,240,7 spheres in a formatin hovered above us, traveled at a high rate of speed,changed color +1975-07-04,39.7555556,-105.2205556,Golden,CO,sphere,15,Bright blue sphere emanating light appeared to move south and east across horizon. +1976-07-04,39.5488889,-89.2944444,Taylorville,IL,light,300,4--20 year old males--encountered a UFO with 2 amazing lights, with instant speeds---in the country. +1977-07-04,46.3775,-120.3075,Toppenish,WA,disk,300,real people inside a real u.f.o. I identified it as a i.f.o IN 1977 +1977-07-04,47.3225,-122.3113889,Federal Way,WA,circle,1200,Close sighting, able to see bottom of craft well, hovered for at least 15 minutes just at the top of the poplar trees +1978-07-04,48.2933333,-122.6419444,Oak Harbor,WA,cigar,900,Gigantic , silent zepplin with fantastic speed. +1978-07-04,35.0525,-78.8786111,Fayetteville,NC,disk,300,fayyetville,NC true ufo sighting 07/04/1978 +1978-07-04,32.7152778,-117.1563889,San Diego,CA,triangle,600,Two young boys spot a triangle in the early summer eve +1978-07-04,34.2011111,-118.5355556,Reseda,CA,sphere,1200,The object appeared red like a brilliant ruby on July 4, 1978 about 9:00 PM, and was witnessed by a few thousand people. +1978-07-04,40.1244444,-87.63,Danville,IL,sphere,120,My sister and I saw an object that apeared to be 3 spheres connected togeather by a Y type of structure in the middle. +1978-07-04,39.6294444,-79.9561111,Morgantown,WV,changing,1200,This happened quite awhile back and I never reported it, but with all the attention recently, I tell people I think I saw one, and they +1978-07-04,40.6083333,-75.4905556,Allentown,PA,disk,60,SEEN 2 PALE GREEN FLYING SAUCERS OVER ALLENTOWN , PA ** JULY 4TH 1977/78 ** +1979-07-04,43.0480556,-76.1477778,Syracuse,NY,light,1800,3 LIGHTS IN THE SKY FORM A TRIANGLE +1980-07-04,44.8344444,-85.2825,Rapid City,MI,triangle,600,three greenish lights in triangle 30+ witnesses +1980-07-04,44.9444444,-93.0930556,St. Paul,MN,oval,1800,Fireworks and UFO, MN State Fair Grounds July 4th late 70's early 80's. +1982-07-04,33.8622222,-118.3986111,Hermosa Beach,CA,disk,300,This happend around nine o'clock, my brother was watching the fire works when all of a sudden he went as white as a ghost, my mother we +1983-07-04,41.2591667,-80.4722222,Sharpsville,PA,oval,120,This thing was absolutely huge and the lights were really beautiful and vibrant, not of this world +1985-07-04,36.7855556,-88.0241667,Golden Pond (Near),KY,cigar,300,On July 4, 1985, my ex-husband and I took our kids to the Land Between the Lakes in Kentucky. I believe it was around 3:00 p.m., and we +1985-07-04,36.3158333,-91.4825,Hardy,AR,triangle,180,it shaped like a tryangle an it zig zaged across the sky at mindboggling speed stoping on a dime . +1986-07-04,38.2541667,-85.7594444,Louisville,KY,circle,120,very loud sound ,round shape object in Louisville,Ky Southend +1986-07-04,40.8,-96.6666667,Lincoln,NE,light,180,UFOs amused by July 4th fireworks over Lincoln, NE? +1987-07-04,39.49,-91.32,Frankford,MO,light,3600,An acrobatic light show in a star lite sky. +1988-07-04,35.7452778,-81.685,Morganton,NC,sphere,30,Sphere accelerates at high rate. +1988-07-04,30.3319444,-81.6558333,Jacksonville,FL,triangle,4,I saw object but my family did not even though they were with me. +1989-07-04,35.7452778,-81.685,Morganton,NC,sphere,30,Large Silver Levitating Ball +1991-07-04,38.2383333,-122.0391667,Suisun City,CA,circle,1800,A bright red ( round dot circle bubble luminous) UFO sphere splits into two, then travels in opposite directions after splitting +1991-07-04,37.6922222,-97.3372222,Wichita,KS,disk,3600,It was summer, I had my dauther who is now 17. I was at my father in law house looking trought the back door, wich has an open view so +1992-07-04,42.8005556,-71.3047222,Windham,NH,sphere,5,Intelligent glowing ball close encounter in Windham, NH +1992-07-04,47.4538889,-122.3205556,Seatac,WA,unknown,20,unidentified object in sky over seatac/des moines area +1993-07-04,40.7141667,-74.0063889,New York City,NY,other,2700,three light U.F.O.'s in the night +1994-07-04,37.7305556,-88.9330556,Marion,IL,triangle,300,Going for a walk by Lake of Egypt power plant. +1995-07-04,47.5675,-122.6313889,Bremerton,WA,light,300,3 to 7 red lights in the night sky, moving independantly of eachother. Many miles away at a 60 degree angle from horizon. +1995-07-04,39.0430556,-122.9147222,Lakeport,CA,light,20,I SAW A BALL OF LIGHT OVER CLEAR LAKE AT 1800 HRS. 7-4-95 IN LAKEPORT. +1995-07-04,36.4136111,-119.0977778,Woodlake,CA,cylinder,60,Sighted a large tank like object with red and green lights between two foothill peaks near a lake and was gone next day. +1995-07-04,47.2530556,-122.4430556,Tacoma (Waterfront Area),WA,circle,300,MANY PEOPLE ON DOCK WAITING FOR FIREWORKS DISPLAY SEE A RED CIRCLE HOVERING AND THEN MOVE SLOWLY WEST. +1995-07-04,28.2438889,-82.7194444,New Port Richey,FL,triangle,900,Driving down road my family noticed object above trees that I could not imediatly discern, as I started to turn onto our street it came +1996-07-04,40.4777778,-74.2911111,South Amboy,NJ,triangle,120,It was a ball of white light that changed to triangular red and blue lights and then again to a ball of red light. +1996-07-04,36.0625,-94.1572222,Fayetteville,AR,changing,5280,A short but sure encounter with three alien craft and tall, hairy beings, with keen sensory peception. +1996-07-04,34.2255556,-77.945,Wilmington,NC,triangle,60,My wife and I were stargazing on a beautiful clear night when we spotted a red triangle flying +1996-07-04,31.4636111,-100.4366667,San Angelo,TX,light,5,Star shape from south to Northeast, no sound, approx 500 to 100 ft. high. +1996-07-04,44.7630556,-85.6205556,Traverse City,MI,other,30,I saw approx. 20 small pin points of light in a triangular formation. (almost like a group of birds flying south) The points of light r +1997-07-04,33.7669444,-118.1883333,Long Beach,CA,egg,120,egg shape UFO sppoted 4th of Jul 1997 Stainless steal reflective in color about 13:00 hours hovering +1997-07-04,32.7152778,-117.1563889,San Diego,CA,cigar,480,On July 3 1997 my 2 brothers and I saw a cigar shape going northwest it lasted a few min. +1997-07-04,44.9444444,-93.0930556,St. Paul,MN,sphere,35,"Chrome" ball over the cliffs of St. Paul +1997-07-04,38.0902778,-89.9383333,Evansville,IL,circle,5,Every year on july 4th we attend a large party which when it gets dark, fireworks are set off all evening. The number of people there +1997-07-04,38.7688889,-90.4680556,Earth City,MO,cigar,5,MANY PEOPLE REPORTED THIS THEN IT WAS HUSHED UP +1997-07-04,37.6752778,-90.3672222,Knob Lick,MO,light,3,I was sitting at the closing campfire at S-F scout ranch. about mid way through my self and everyone else there saw a brillient blue li +1997-07-04,38.7291667,-89.8830556,Troy,IL,circle,5,It was something not from this world. +1997-07-04,38.7838889,-90.4811111,St. Charles,MO,light,5,We were at a local fireworks display. Just before dusk, I looked up in the sky with my son and saw a large green object shooting acros +1997-07-04,38.52,-89.9838889,Belleville,IL,light,5,WHILE WATCHING MOVIE AT DRIVE-IN THEATER, THE ENTIRE AREA LIT UP FOR SEVERAL SECONDS WITH A BLUE-GREEN LIGHT. +1997-07-04,38.4613889,-90.0916667,Millstadt,IL,light,5,MISSOURI INVESTIGATORS GROUP Report: We were in the back yard in IL (USA) and we saw a blue light right at the roofline. +1997-07-04,33.4483333,-112.0733333,Phoenix,AZ,cylinder,180,a large black object kind of like a shadow passed over head while we were waiting for the fire works to start +1997-07-04,38.7291667,-89.8830556,Troy,IL,light,4,large blue light silently travelling across the sky in a purposeful manner. +1997-07-04,38.3080556,-90.8275,Lonedell,MO,delta,60,Ice blue object, resembling an "<" flying south to north +1997-07-04,37.3033333,-90.4097222,Coldwater (Approx. 3 Miles Se Of),MO,light,4,Blue/Green light with a white trailing tail traveling East to West +1997-07-04,38.6008333,-90.4327778,Des Peres,MO,light,180,I was getting ready to go to a friends house. Me and my friend noticed that there was a strange blue glow that illuminated us to the po +1997-07-04,40.7777778,-89.9663889,Elmwood,IL,light,10,Unusual object descended from clouds. Not a firework, never came up from the ground. +1997-07-04,38.7013889,-90.1486111,Granite City,IL,light,900,Fourth of july celebration. +1997-07-04,38.47,-90.3044444,Oakville,MO,light,10,BRIGHT OBJECT OVER HEAD MOVING WEST . GREENISH COLOR MOVING SLOW AND THEN TAKES OFF FAST WITH A LONG TAIL. THEN DISSAPPEARED MOVING +1997-07-04,43.7486111,-87.9769444,Plymouth,WI,light,2700,Large v-shaped lights over fireworks display. Very high up.Sat still for 40 min. Began to move slow for 1 min., then streaked away VERY +1997-07-04,38.7838889,-90.4811111,St. Charles,MO,light,2,Observed a blue-green light crossing the skyfrom Northeast to Southwest (paralleling theMissouri River). +1997-07-04,38.7838889,-90.4811111,St. Charles (Outside Of St. Louis),MO,sphere,5,St. Charles, MO, before fireworks show. A blue ball (??) of lightstreaked across the sky, I'd say east to west. There was no noise.It j +1997-07-04,38.6272222,-90.1977778,St. Louis,MO,light,1,Rapidly moving blue-green in sky over fireworks spectators +1997-07-04,38.6630556,-90.5769444,Chesterfield,MO,light,2,Above us a bright bluish light appeared which lit up the sky then diminished to nothing. +1997-07-04,38.4327778,-90.3775,Arnold,MO,light,2,greenish streak traveled east to west. +1997-07-04,38.7308333,-88.0852778,Olney,IL,light,2,Object flashed overhead, bright blue/green +1997-07-04,47.3075,-122.2272222,Auburn,WA,triangle,60,we were outside lighting fireworks when way up in the sky we saw a triangular shaped "thing" that had lights. It was going very very sl +1997-07-04,38.52,-89.9838889,Belleville (3.5 Sw Of Scott Afb),IL,light,2,Royal Blue light moving very fast, east to west almost directly overhead. Small teardrop shape. +1997-07-04,38.5569444,-90.3816667,Crestwood (Near St. Louis),MO,light,20,My wife and I were on our deck watching the fireworks display at Webster Groves Recreation Center, about a mile from our location. A br +1997-07-04,38.6608333,-90.4225,Creve Coeur,MO,light,0.5,During fireworks display I was looking at the sky and saw a blue/white disk-shaped object traveling east-to-west. +1997-07-04,38.7891667,-90.3225,Florissant,MO,light,10,bright blue and white light traveling across the sky from east to west. +1997-07-04,38.7891667,-90.3225,Florissant,MO,light,2,Several of us had just finished watching the 4th of July fireworks when we saw a bluish/green light streak across the sky. +1997-07-04,38.3997222,-91.3305556,Gerald,MO,light,10,A brite blue light appeared out of nowhere. And shot across the sky. +1997-07-04,42.4625,-83.1041667,Hazel Park,MI,oval,900,strange huge craft appears over the sky. 1997 +1997-07-04,38.7713889,-90.3708333,Hazelwood,MO,oval,5,Green, half-capsule shaped object, streaking North-South across the sky. Disappeared half-way across. +1997-07-04,38.7838889,-90.4811111,St. Charles,MO,light,2,Bright blue-green ball. From North East travelling towards south west. Almost directly overhead. Duration less than 2 seconds, about 15 +1997-07-04,38.6272222,-90.1977778,St. Louis,MO,light,1,~21:30 4 July, a blue light moving in a straight line passed from east to west over the Mississippi river. Duration of event was ~1 sec +1997-07-04,38.6272222,-90.1977778,St. Louis,MO,light,5,Blue light that shot across the sky horizontally. +1997-07-04,38.9794444,-90.9805556,Troy,MO,light,3,We were at the Fairgrounds wating for the fireworks display to start when a light in the sky caught my eye. +1997-07-04,38.5888889,-89.9902778,Fairview Heights,IL,light,2,A blue light seen overhead moving east to west,very fast.It was not fireworks. +1997-07-04,38.4613889,-90.0916667,Millstadt,IL,light,3,blue light traveling due west ended in red flash appeared to be close overhead. I think it was space junk or meteor due to similar sigh +1997-07-04,38.6702778,-89.9844444,Collinsville,IL,light,4,A blue light streaked across the sky at high speed for a couple seconds. It was accompained by a crackling of burning sound. +1997-07-04,39.0397222,-90.1405556,Brighton,IL,light,10,While shooting fireworks, saw a bright blue object move horizontilly from east to west across the field in the back of the house. +1997-07-04,38.8802778,-90.1111111,East Alton,IL,light,7,We saw a bright blue-green object streak across the southern sky at a great rate of speed,travelling from east to west. +1997-07-04,38.2872222,-89.8172222,Lenzburg,IL,light,5,Blue ball moving east to west lasting 3 -5 seconds then disappearing. Lit up surrounding area. +1997-07-04,38.4613889,-90.0916667,Millstadt,IL,light,5,BRIGHT BLUEISH BALL OF LIGHT WITH TAIL, ILLUMINATED A 2000 SQ.FT. AREA FOR ABOUT 5 SECONDS. +1997-07-04,38.8905556,-90.1841667,Alton,IL,light,2,This report is being entered for an aquaintance of mine who told me to contact this sight and inform you. He saw that "blue/green ball +1997-07-04,38.5161111,-90.2102778,Dupo,IL,light,10,Flying object beamed a large blue light across the ground as the object moved from south to north . We were directly in the path of th +1997-07-04,38.7013889,-90.1486111,Granite City (5min.from St.louis,mo.),IL,light,4,A blue-green light moved so fast across the sky I had to turn my head to keep up with it. +1997-07-04,40.5866667,-122.3905556,Redding (Northeast Of, Out Over Millville, Approximately),CA,light,300,Two amber lights moving at the same distance apart beginning at one end of Redding and ending in the north eastern direction above Redd +1997-07-04,38.6272222,-90.1977778,St. Louis (Kirkwood),MO,disk,600,Saw saucer shae - bright light hovering for about 10 minutes over Kirwood MO. +1997-07-04,45.2102778,-123.1975,Mcminnville,OR,disk,50,I was watching fire works with binoculars, and I saw something weird. As I watched it, I ruled out the possibility of a plane or fire w +1997-07-04,38.4436111,-90.2011111,Columbia,IL,light,2,Neon light blue ball passing east to west across the sky +1997-07-04,38.635555600000004,-90.415,Frontenac,MO,light,5,A streak of greenish and white light across the sky +1997-07-04,38.6272222,-90.1977778,St. Louis (St. Ann),MO,light,30,July 4, around 10:30pm. Shooting fireworks w/children in backyard. Instantainous bright blue light in sky caught my eye. As I turned to +1997-07-04,38.4275,-89.9136111,Freeburg (Outside Of),IL,light,8,Blue light going from the east to the west very fast, no sound thought it was fireworks at the time.. After talking to everyone at the +1997-07-04,38.6272222,-90.1977778,St. Louis (Pacific),MO,light,3,a blue light appeared suddenly and dtreaked across the sky and the flew up for a short peroid of time and then vanished From - Tue Jul +1998-07-04,42.7977778,-83.705,Fenton,MI,diamond,480,Sunset 15 degrees above horizon Black diamond +1998-07-04,35.9572222,-75.6244444,Nags Head,NC,light,900,I was outside at around 22:30 and i saw three circular lights in a triangle formation. They moved through the sky pretty fast, and then +1998-07-04,47.4705556,-122.3455556,Burien (Looking Sw, Three Tree Point To Vashon Island),WA,light,420,Ball of light trailing tail, white. changed direction several times, no noticeable lights blinking or sound. 2000 to 2500 ft elevation. +1998-07-04,42.3583333,-71.0602778,Boston,MA,sphere,120,Large spherical object floating over the Charles River amid the smoke following a Fourth of July Fireworks display. +1998-07-04,34.7302778,-86.5861111,Huntsville,AL,light,600,I was at work when I noticed what appeared to be a tower which was southeast from my location.It had a red flashing light on the top an +1998-07-04,38.2322222,-90.5627778,Hillsboro,MO,sphere,180,Red ball of light low to the east, which hung in the air motionless, for 3 to 4 minutes. +1998-07-04,42.7358333,-83.4188889,Clarkston,MI,light,45,5 TO 7 LIGHTS WERE SEEN MOVING FROM ONE HORIZON TO THE OTHER TRAVELING AT A HIGH SPEED AND ZIG ZAGGING ABOUT EACH OTHER. FLYING VERY I +1998-07-04,42.7875,-86.1088889,Holland,MI,light,30,I saw the bright light slowly streak in the sky and it turned around and went back in to space and disappeared. +1999-07-04,38.5816667,-121.4933333,Sacramento,CA,other,480,I seen something floating down from the sky i though it was a big piece of plastic it was white and wobbling i lost it when it fell bel +1999-07-04,43.0255556,-102.5558333,Pine Ridge,SD,light,20,steady light yellow orangish light moving from southwest to middle of the night sky turning sharp and headed due north. +1999-07-04,34.97,-83.3872222,Dillard,GA,flash,1,An extremely fast flash of light moving from southwest to northeast. Than approximately 20 minutes later the flash reoccured moving no +1999-07-04,42.8255556,-78.8236111,Lackawanna,NY,diamond,1800,Diamond shaped object of red tint hovered then moved in a north to south direction. +1999-07-04,42.8255556,-78.8236111,Lackawanna,NY,other,300,3 different objects. one flash of red light bouncing across sky. one triangular shape spinning then jumped in a right angle. one wa 2 +1999-07-04,33.2288889,-87.5772222,Northport,AL,light,45,object observed in rural setting; one very bright rounded light with sharp crisp rays (one observer did not see rays); through binnocul +1999-07-04,34.7463889,-92.2894444,Little Rock,AR,light,60,A red light (not blinking, a saucer-like object, flying toward the fireworks of the 4th of July (infact we thought at first it was a fi +1999-07-04,34.74,-97.2219444,Pauls Valley,OK,sphere,120,Possible satellites in a formation? +1999-07-04,42.7208333,-94.215,Humboldt,IA,light,30,Saw an object (about the size of star) traveling very fast high in the sky. It then shot straight up out of sight. +1999-07-04,32.7938889,-79.8627778,Mount Pleasant,SC,cigar,10,Hazy orange glow moving perpendicular to long cigar-shaped axis. Moved rapidly across sky. +1999-07-04,37.6041667,-75.69,Wachapreague,VA,cigar,600,Orange cigar shaped light about one thousand feet in the sky. Disappeared and then came returned about five minutes later. +2000-07-04,38.8338889,-104.8208333,Colorado Springs,CO,light,45,Slow moving, solid light moving across the sky, then 30-35 sec. later a light shot down at very high velocity. +2000-07-04,32.4608333,-84.9877778,Columbus,GA,light,10,Light grows and shrinks in size, brightens and dims, then disappears. +2000-07-04,42.32,-89.0580556,Loves Park,IL,cigar,2400,long worm type object that changed shape. never decended but gained altitude and disappeared into clouds. +2000-07-04,44.6697222,-74.9816667,Potsdam,NY,triangle,180,I do not know the exact date, but it was late summer in Potsdam NY during the 4th of july weekend around 3 or 4 years ago, I think it w +2000-07-04,38.6272222,-90.1977778,St. Louis,MO,fireball,600,looked like fireballs size of a bead compared to moon diffrent colored trails (according to individual balls) slowly moving trails were +2000-07-04,45.2025,-123.9616667,Pacific City,OR,light,10,I'm sure I saw a real alien aircraft! +2000-07-04,41.6266667,-93.7119444,Urbandale,IA,light,3600,Red Light in Urbandale Iowa July 4th 2000 +2000-07-04,41.5977778,-93.7080556,Windsor Heights,IA,light,3600,We saw a bright red light during a fireworks display in Des Moines. +2000-07-04,41.6005556,-93.6088889,Des Moines (Metro Area),IA,light,2700,Light in sky from which (twice) descended another smaller light. Moved AGAINST wind no matter what direction. +2000-07-04,33.6675,-84.0177778,Conyers,GA,light,10,Simple unmoving red light close to the moon that simply disappeared. +2000-07-04,47.2530556,-122.4430556,Tacoma,WA,light,1200,7/4/00 red light in tacoma wa +2000-07-04,41.6005556,-93.6088889,Des Moines,IA,light,600,Red Light in the Southern Sky on the Fourth of July +2000-07-04,47.2530556,-122.4430556,Tacoma,WA,circle,900,bright red and stayed stationery for sometime +2000-07-04,41.6005556,-93.6088889,West Des Moines,IA,circle,3600,Red Light Hovering over West Des Moines Iowa +2000-07-04,47.1855556,-122.2916667,Puyallup,WA,circle,600,red ball streaks across the sky +2000-07-04,27.8658333,-82.3266667,Riverview,FL,circle,300,Similar orange lights viewed simultaneously by people in two states in two time zones, (IA and FL). +2000-07-04,47.2530556,-122.4430556,Tacoma,WA,light,300,bright red light hovering above the clouds, then accelerating away. +2000-07-04,29.7630556,-95.3630556,Houston,TX,fireball,1200,two beautiful bright red fire like balls, but really shape like footballs, just standing still for about twenty min., then just gone!! +2000-07-04,47.2530556,-122.4430556,Tacoma,WA,light,900,Absolutely stationary red light for 10 - 15 minutes, then abruptly took off towards the South. +2000-07-04,47.2530556,-122.4430556,Tacoma,WA,other,300,7-4-00@ 10:30 pm my wife and three others sowe large craft over MT Ranier very bright redish orange lite +2000-07-04,39.4077778,-79.4069444,Oakland,MD,triangle,240,Triangle with lights no sound +2000-07-04,41.6638889,-83.5552778,Toledo,OH,triangle,1200,A white triangle formation was seen along northern Ohio toll road. +2000-07-04,44.6447222,-85.7672222,Interlochen,MI,light,180,At about 11:15 pm on July 4th, while watching a fireworks display in a rural area south of Interlochen, MI, I noticed a fast moving lig +2000-07-04,47.2236111,-120.9919444,Roslyn,WA,light,7200,Bright light sighted for 1 1/2 to 2 hours bouncing eratically in a specific area of the sky. +2001-07-04,46.2113889,-119.1361111,Kennewick,WA,light,60,Silent, orange ball of light seen crossing the night sky in Kennewick, WA. +2001-07-04,47.3486111,-122.3222222,Redondo,WA,oval,300,Strange Occurence's. +2001-07-04,40.4597222,-79.5233333,Slickville,PA,circle,300,It was a small pearl white object, appeared to be circuler in shape and about the size of the jets rudder. +2001-07-04,39.0911111,-94.4152778,Independence,MO,triangle,15,I was in the presence of an "aluminum" looking triangle "aircraft" that was very loud, moved very smoothly and ws flying very low . +2001-07-04,41.6005556,-93.6088889,Des Moines,IA,triangle,1800,mother ship +2001-07-04,41.45,-71.45,Narragansett,RI,rectangle,30,AT dusk, while watching fireworks displays in the area, we were setting off a few fireworks on a cliff by the ocean shore. We observed +2001-07-04,37.165,-118.2886111,Big Pine,CA,disk,253800,3 objects take off from mountains near Big Ears site +2001-07-04,33.7669444,-118.1883333,Long Beach,CA,light,180,Fire dripping light over Long Beach, CA. +2001-07-04,29.7630556,-95.3630556,Houston,TX,light,2700,Houston, Texas - Red pulsating light which "dropped" another light; disappeared in the sky +2001-07-04,29.7630556,-95.3630556,Houston,TX,oval,1800,Red globe moved slowly from southeast to northwest and disappeared after 30 minutes of viewing. +2002-07-04,43.72,-122.8608333,Dorena,OR,triangle,240,7 people see lights in triangle formation move across sky. +2002-07-04,43.9716667,-70.6097222,Naples,ME,circle,1200,3 Lights play together over Maine skies. +2002-07-04,35.4397222,-95.9816667,Henryetta,OK,unknown,900,Well first of all I never knew there was a sight like this where I could tell my story. It was the Fouth of July 2002 and we where havi +2002-07-04,42.1591667,-79.5955556,Sherman,NY,cigar,45,Chrome appearance; slow moving +2002-07-04,39.0286111,-96.8311111,Junction City,KS,cigar,30,We were on our boat at milford lake and approximately 4 miles away, not far above the hills we saw a long, perfectly straight shiny obj +2002-07-04,40.864444399999996,-76.5527778,Elysburg,PA,fireball,5,Fireball +2002-07-04,26.0027778,-80.2241667,Pembroke Pines,FL,sphere,60,Black sphere traveling steadily at low altitude +2002-07-04,47.5675,-122.6313889,Bremerton,WA,oval,300,As I was sitting watching the 4th of july festivites at our back yard bar-b-q, I noticed an Silver Oval object moving slowly from West +2002-07-04,34.1083333,-117.2888889,San Bernardino,CA,unknown,15,Flash of halogen-quality light on fast moving object +2002-07-04,40.7141667,-74.0063889,New York City,NY,triangle,1200,Triangular Starlike Object/Craft at the 2002 NYC 4th of July East River Fireworks +2002-07-04,36.4986111,-93.3966667,Blue Eye,MO,unknown,7200,The object has appeared every night in the western sky. It is the first object to appear at dusk. It is very bright and to close to be +2002-07-04,40.7141667,-74.0063889,New York City (Brooklyn),NY,cross,120,Cross shaped light that didn't move. +2002-07-04,33.2,-117.2416667,Vista,CA,unknown,540,Floating lamplike UFO +2002-07-04,33.5538889,-117.2130556,Murrieta,CA,light,180,Erraticly wandering star-like object travels from north to south at a consistent, slow pace +2002-07-04,45.5230556,-122.9886111,Hillsboro,OR,fireball,0.5,A bright flash of white light shot across the sky in an instant with no sound +2002-07-04,47.6063889,-122.3308333,Seattle,WA,changing,240,i had seen a flying obect change shape, color and even blink! +2003-07-04,35.3733333,-119.0177778,Bakersfield,CA,circle,30,Three crafts travling in a triangular fashion across the sky and one by one dissapeared out of sight. +2003-07-04,42.1658333,-95.7927778,Mapleton,IA,other,15,A stationary flashing object in the lower atmosphere +2003-07-04,39.7286111,-121.8363889,Chico,CA,light,90,A constant golden colored bright light traversed the pre-dawn sky from west to east with no sound. +2003-07-04,41.6302778,-87.8538889,Orland Park,IL,triangle,900,Orland Park Illinois. July 4th 2003,triangular object right over fireworks +2003-07-04,32.7152778,-117.1563889,San Diego,CA,disk,900,3 of us saw a copper disk w/ a black solid circle slowly moving in a small clockwise circle tipping on edge showing the top & bottom. +2003-07-04,40.6686111,-74.1147222,Bayonne,NJ,other,60,observed near the miltitary ocean terminal. flying west to east from across bayonne towards nyc 3 ufo's, two saucer shaped and one slow +2003-07-04,40.8611111,-79.8955556,Butler,PA,circle,120,Circular white object moving from north to south silently, at a high rate of speed. +2003-07-04,41.2833333,-70.1,Nantucket,MA,circle,900,round shiny object in the sky, aircraft moving away from it +2003-07-04,47.4830556,-122.2158333,Renton,WA,egg,300,Dark oval object over Seattle +2003-07-04,45.6388889,-122.6602778,Vancouver,WA,egg,120,The craft slowly climbed and then vanished. +2003-07-04,47.4158333,-120.2919444,East Wenatchee,WA,light,1200,Six glowing orbs hovered for 20 minutes above Columbia River at twilight. +2003-07-04,47.6063889,-122.3308333,Seattle,WA,triangle,900,Triangular Ships Sighted in 4th of July skies over Seattle, WA. +2003-07-04,41.9561111,-121.4763889,Tulelake,CA,light,120,2 objects that looked like stars moving at high speeds +2003-07-04,34.3075,-80.9605556,Ridgeway,SC,circle,120,No beams or if it was a car or truck now that I go back and look at this drive we should have not seem both lights of the car or truck +2003-07-04,41.9444444,-71.2861111,Attleboro,MA,formation,120,faint triagle formation massachusetts rhode island +2003-07-04,37.3022222,-120.4819444,Merced,CA,triangle,180,3 lights form perfect acute triangle for huge craft moving slowly overhead +2004-07-04,32.2216667,-110.9258333,Tucson,AZ,cylinder,40,I had a hard time falling a sleep last night because I have renal cancer so I decided to take the golf cart around the course it was 3: +2004-07-04,40.2338889,-111.6577778,Provo,UT,teardrop,2400,I think I was abducted +2004-07-04,35.2269444,-80.8433333,Charlotte,NC,chevron,15,A near miss? +2004-07-04,39.0483333,-95.6777778,Topeka,KS,disk,180,the object spun, wobbled, and flipped over and over as it went across the sky. +2004-07-04,32.7977778,-117.2394444,Pacific Beach,CA,light,1800,looked like satellite on the 4th of july +2004-07-04,43.2330556,-77.9277778,Clarkson,NY,triangle,180,Triangle UFO over Clarkson NY +2004-07-04,32.7833333,-96.8,Dallas,TX,rectangle,120,Just travelled East to West, leisurely. +2004-07-04,32.8341667,-97.2286111,North Richland Hills,TX,light,300,My fiance and her mother and I saw a white light or ball decending in the western sky over the Watauga Kelle area. +2004-07-04,38.2547222,-121.2988889,Galt,CA,circle,120,A silent , fast moving, translucent object was observed by 30 people. +2004-07-04,28.6986111,-81.3083333,Winter Springs,FL,other,1800,strange orange golden sky with double rainbow with horizontal lightning for at least 30 mins. +2004-07-04,32.7947222,-116.9616667,El Cajon,CA,circle,2700,4th of July, 2004, 2 giant red lite oval/circle shaped objects over El Cajon, CA, for apx. 1 hour. +2004-07-04,42.7430556,-71.5922222,Hollis,NH,circle,5,It was just hovering in mid air alot of lights. +2004-07-04,28.6775,-81.3280556,Casselberry,FL,other,2,Casselberry Florida 4th of July incident!!!!!!!! +2004-07-04,34.4233333,-118.4711111,Canyon Country,CA,disk,3600,Very painful and terrifing. +2004-07-04,32.7947222,-116.9616667,El Cajon,CA,light,2700,Possible balloons and highway flares?? +2004-07-04,32.7677778,-117.0222222,La Mesa,CA,light,600,2 steady red lights observe fireworks on the 4th of July over LaMesa/El Cajone area San Diego County Calif. +2004-07-04,32.7152778,-117.1563889,San Diego,CA,light,1500,Two vertical star-like red flickering lights in the northeastern sky +2004-07-04,32.7447222,-116.9980556,Spring Valley,CA,light,1110,2 pulsing red lights in sky on a slow trajectory +2004-07-04,39.2883333,-77.2041667,Damascus,MD,triangle,120,Conversation with recently-retired Lockheed-Martin Aerospace Engineer after viewing triangle-shaped aircraft with whitish lights at ver +2004-07-04,32.7947222,-116.9616667,El Cajon,CA,light,1500,July 4th fireworks display takes a back seat to piercing red lights in the San Diego sky... +2004-07-04,32.7947222,-116.9616667,El Cajon,CA,light,900,Witnessed two blinking red lights above El CAjon. The lights would blink on and off and also moving in same direction and suddenly wen +2004-07-04,32.7152778,-117.1563889,San Diego,CA,circle,900,Blinking red lights in San Diego +2004-07-04,35.1894444,-114.0522222,Kingman,AZ,formation,4,String red lights , moving rapdly upw and away; turned off, didn't fade away. More notic. than fireworks nearby. +2004-07-04,37.3394444,-121.8938889,San Jose,CA,light,120,2 lights in north sky 2-4 min apart same direction. +2004-07-04,42.0527778,-124.2827778,Brookings,OR,circle,600,during fireworks observed round bright, white light circling at high alltitude, no running lights +2004-07-04,39.9755556,-111.7844444,Santaquin,UT,unknown,20,Saw three lights that formed a triangle, that moved in exact formation the night of the fourth of July 04 +2004-07-04,39.1722222,-120.1377778,Tahoe City,CA,other,30,'Satellite' that seemed to behave in ways no man made machine could move. +2004-07-04,42.4152778,-71.1569444,Arlington,MA,circle,30,Fast moving light +2004-07-04,44.0522222,-123.0855556,Eugene,OR,circle,60,Move straight accross the sky like at sattelite but was too large to be one and then move like a bumble bee +2004-07-04,28.6775,-81.3280556,Casselberry,FL,light,180,Large flash huge boom NASA vehicles everywhere +2004-07-04,44.0522222,-123.0855556,Eugene,OR,sphere,120,Brilliant, erratically zig-zagging, fast-moving object in 4th of July sky at Eugene,Oregon +2005-07-04,36.7536111,-120.3805556,Mendota (Near),CA,triangle,1200,My husband and I were travelling (by van) towards Fresno, CA. We were on Panoche Rd. approaching 33. The kids were asleep in the back s +2005-07-04,47.6741667,-122.1202778,Redmond,WA,flash,180,Single White Flashes in the sky changing positions erratically every 3-10 seconds. +2005-07-04,38.9516667,-92.3338889,Columbia,MO,light,420,MISSOURI INVESTIGATORS GROUP Report: I thought it was a star, and then it got bigger and bigger to about the size of a quarter.... +2005-07-04,33.3941667,-104.5225,Roswell,NM,disk,5,UFOs videoed at the Roswell Crash site in 2005 +2005-07-04,28.8002778,-81.2733333,Sanford,FL,triangle,600,Triangle shaped Craft. +2005-07-04,41.7244444,-81.2458333,Painesville,OH,oval,1200,i didnt know what was going on until i saw 2/3 objects moving at a rapid pace and quietly +2005-07-04,33.6102778,-117.7244444,Laguna Woods,CA,flash,1800,Silver Ball Flashes Bright Gold with military aircraft orbiting +2005-07-04,35.1427778,-120.6402778,Pismo Beach,CA,other,1200,Irregular black dot sighted above July 4 celebration at Pismo Beach. +2005-07-04,26.0625,-80.2333333,Davie,FL,disk,10800,7/4/05 seven to eleven(approx) Northwest of Ft. Lauderdale-saucer shape-light on top pulsing- 5/24/06 +2005-07-04,43.8569444,-70.1036111,Freeport,ME,disk,300,Daylight Disk +2005-07-04,34.1897222,-118.1302778,Altadena,CA,light,120,Moving light stops in mid-flight then vanishes +2005-07-04,38.8338889,-104.8208333,Colorado Springs,CO,circle,60,Golden orb seen over Colorado Springs +2005-07-04,36.8744444,-94.8772222,Miami,OK,cigar,60,cigar shaped craft +2005-07-04,42.8713889,-112.4447222,Pocatello,ID,cigar,25,Craft moved from north to south and then accelerated and disappeared from sight. +2005-07-04,42.6875,-83.2341667,Auburn Hills,MI,unknown,1800,My girlfriend noticed a bright object in the western sky and then called me out to look.I thought it was a bright star until it moved f +2005-07-04,32.7947222,-116.9616667,El Cajon,CA,light,1500,Red Object West of San Diego, CA +2005-07-04,32.7947222,-116.9616667,El Cajon,CA,oval,3600,Red light UFO over El Cajon, July 4th, 2005, for the 3rd year in a row +2005-07-04,32.7152778,-117.1563889,San Diego,CA,triangle,180,Bright triangle with orange lights spotted above Mission Bay San Diego +2005-07-04,32.8383333,-116.9730556,Santee,CA,light,840,One red light over El Cajon during the 9pm fireworks displays. +2005-07-04,33.5091667,-111.8983333,Scottsdale,AZ,flash,900,Three bright blue lights, fading to lighter blue, turning red when changing direction, flashing white when accelerating. +2005-07-04,40.7652778,-73.8177778,Flushing,NY,cigar,180,Slow moving Cigar shaped object sighted while waiting for 2005 Macy's fireworks to begin from a distance of 10-15 miles +2005-07-04,40.4163889,-120.6519444,Susanville,CA,other,600,hovering ball of light above mountain +2005-07-04,29.9116667,-95.0619444,Crosby,TX,light,600,9 of us saw 3 lights moving at incredible speed until one of them stopped dead in its track +2005-07-04,43.3772222,-73.6136111,Queensbury,NY,light,900,Strange purple light seen in night sky moving erratically +2005-07-04,47.4958333,-121.7855556,North Bend,WA,sphere,30,Bright glowing sphere sighted going into the top of a mountain. +2005-07-04,38.3305556,-80.6533333,Craigsville,WV,light,120,((NUFORC Note: Possible sighting of Intl. Space Station. PD)) 07/04/05 , 11.:00pm, Craigsville WV, craft traveling high, 2 min, +2005-07-04,41.7,-71.4166667,Warwick,RI,circle,10800,Circles near Quonsett point-seen @ oakland beach Warwick Rhode island +2005-07-04,33.8536111,-118.1330556,Lakewood,CA,circle,300,round shaped, orange colored, hovered in one spot,Then slightly moved and slightly vanished. Then hours later saw exact object again. +2005-07-04,48.0841667,-121.9675,Granite Falls,WA,sphere,60,On 07-04-05 at about midnight, we saw a bright white sphere of light in clear skies. +2006-07-04,41.6827778,-88.3513889,Oswego,IL,disk,300,A UFO on 4th of July +2006-07-04,28.8458333,-81.1627778,Osteen,FL,sphere,600,Round black object hovering in and out of clouds during and after space shuttle launch. +2006-07-04,33.8894444,-118.1588889,Paramount,CA,sphere,300,Red light over southern california dissappearing on the way down to the ground +2006-07-04,45.5236111,-122.675,Portland,OR,cigar,7,Black dash near moon around 6 pm on the 4th of july in Se Portland near Mt. Tabor. +2006-07-04,38.9333333,-119.9833333,South Lake Tahoe,CA,triangle,7,Strange Formation in clouds. +2006-07-04,38.9516667,-92.3338889,Columbia,MO,cylinder,120,I was at my house and looked up and saw, at a low altitude, what appeared to be only a fuselage of a plane. +2006-07-04,38.9516667,-92.3338889,Columbia,MO,cylinder,120,MISSOURI INVESTIGATORS GROUP Report: I looked up and saw, at a low altitude, what appeared to be only a fuselage of a plane. +2006-07-04,38.9516667,-92.3338889,Columbia,MO,cylinder,45,UFO MISSOURI INVESTIGATORS GROUP REPORT: I was looking to the S when I saw what I believed to be a plane coming in our direction… +2006-07-04,40.6358333,-78.2961111,Tipton,PA,circle,120,Formation of four bright lights moving silently through the sky +2006-07-04,32.7472222,-116.9344444,Rancho San Diego,CA,light,600,Red Light Over San Diego +2006-07-04,35.9230556,-78.4577778,Rolesville,NC,formation,180,The phoenix lights again??? +2006-07-04,32.7947222,-116.9616667,El Cajon,CA,unknown,90,we were watching the fire works from my house, which on a decent sized hill, they are at about eye level when at a red object/dot was n +2006-07-04,32.7947222,-116.9616667,El Cajon,CA,unknown,600,Red Lights Over El Cajon, California +2006-07-04,43.2966667,-87.9875,Cedarburg,WI,light,60,rather bright "shaking" light moving in a north west to south east direction +2006-07-04,40.7858333,-77.0475,Middleburg,PA,oval,10,A bright light appeared overhead, we watched briefly then it darted away out of our sight +2006-07-04,41.2586111,-95.9375,Omaha,NE,light,900,VERY similar observation as Standing Bear Park from March 4th +2006-07-04,40.6358333,-78.2961111,Tipton,PA,light,120,several lights seen moving in various directions over tipton pa +2006-07-04,33.8752778,-117.5655556,Corona,CA,light,180,lighted craft over Corona that dropped a lighted object that hovered in the sky as the original craft departed. +2006-07-04,25.0861111,-80.4475,Key Largo,FL,triangle,60,Flew directly over my field of vision as I looked at the stars. I GOT A GOOD LOOK. +2006-07-04,30.1388889,-82.9519444,Mcalpin,FL,rectangle,20,came out of the sky at a angle and seemed to crash +2007-07-04,41.8402778,-71.25,Rehoboth,MA,light,5,Saw one, possibly two lights. One shot past the window at a very fast speed while the other shot off into the clouds. +2007-07-04,44.9430556,-123.0338889,Salem,OR,light,1800,Multiple crafts sited +2007-07-04,33.6888889,-78.8869444,Myrtle Beach,SC,circle,10800,Bright circle moving at a slow pace 20 minutes apart with an orange blinking light a few feet below it. +2007-07-04,34.2483333,-117.1883333,Lake Arrowhead,CA,fireball,600,Felt vibration through the house and saw green ball of light flying at high rate speed. +2007-07-04,44.0522222,-123.0855556,Eugene,OR,disk,300,This report confirms another sighting posted in Eugene Oregon on this date. I saw the entire event. I was walking across 6th street t +2007-07-04,41.5936111,-87.6947222,Markham,IL,light,60,I think one satalite moving right than one moving left 15 minutes later +2007-07-04,35.8455556,-86.3902778,Murfreesboro,TN,unknown,600,Was Round bubble shape then moved alot almost like a firework then moved like strafed back and forth then went straight at a blink eye +2007-07-04,42.7261111,-87.7827778,Racine,WI,circle,20,((HOAX??)) Shiny +2007-07-04,36.2380556,-96.3163889,Prue,OK,circle,5,Briefly saw UFO it set off my car's RADAR dector on LASER mode (for cops detecting speeders). ((NUFORC Note: Student report. PD)) +2007-07-04,48.1958333,-114.3119444,Kalispell,MT,unknown,10,Obviously non-natural object flying in straight track disappears. +2007-07-04,34.0522222,-118.2427778,Los Angeles,CA,circle,2400,THE UFO WAS A CIRCLE EMITTING LIGHT, BUT NOT THE SUN. +2007-07-04,41.1305556,-85.1288889,Fort Wayne,IN,oval,1800,Just after dusk on the 4th of July, I witnessed what I thought were UFO just to the eastern horizon......I did investigate +2007-07-04,36.7069444,-97.0852778,Ponca City,OK,circle,60,Glowing red, round object flying fast over Ponca City, Oklahoma +2007-07-04,42.1213889,-84.345,Clarklake,MI,formation,5,V-shaped formation of objects photographed.... +2007-07-04,31.3111111,-92.445,Alexandria,LA,fireball,900,Ball of fire in Louisiana 7/4/07 +2007-07-04,32.9125,-96.6386111,Garland,TX,changing,600,I saw a strange bright light in the sky at a fireworks show and decided to take some pictures. +2007-07-04,32.7447222,-116.9980556,Spring Valley,CA,fireball,300,mysterious stationary red light stationary in Southeast, that slowly started to move, gradually gaining speed then disapering +2007-07-04,41.4513889,-75.6122222,Throop,PA,sphere,120,Stange orange glowing object flying across the sky slowly that looked like the moon. +2007-07-04,32.7677778,-117.0222222,La Mesa,CA,unknown,300,Single small bright red stationary object in southern sky +2007-07-04,32.7447222,-116.9980556,Spring Valley,CA,other,600,Strange Bright Red Object over San Diego +2007-07-04,33.9136111,-98.4930556,Wichita Falls,TX,light,8,White light in eastern Texas sky flying south and dissapearing...@8 seconds. ((NUFORC Note: Flare from Iridium satellite? PD)) +2007-07-04,41.3947222,-73.4544444,Danbury,CT,circle,300,Red circle, half the size of the moon, with dark center slowly got smaller and in 5 minutes was gone. +2007-07-04,41.6716667,-72.9497222,Bristol,CT,oval,300,Fast moving oval object very bright orange hovered then flew off +2007-07-04,40.3977778,-105.0744444,Loveland,CO,other,1800,Crescent shaped bright object with green and red edges seen through telescope. +2007-07-04,35.2194444,-80.1191667,Norwood,NC,cylinder,300,Cylinder, Amber Colored, no blinking lights, moving from South-to-North, extremely clear night. +2007-07-04,47.4830556,-122.2158333,Renton,WA,oval,240,two flying objects appeared and disappeared in to two different directions. +2007-07-04,33.9533333,-117.3952778,Riverside,CA,fireball,600,An orange fireball like light moved right to left, than stopped and hovered. +2007-07-04,42.7325,-84.5555556,Lansing,MI,teardrop,60,Bright orange, teardrop-shaped objects at low altitude moving in a straight line. +2007-07-04,39.7683333,-86.1580556,Indianapolis,IN,fireball,45,Flaming object in sky. +2007-07-04,46.3775,-120.3075,Toppenish,WA,rectangle,5,Driving S on very dark hwy 97 noticed a bright green rect. Obj. falling slowly straight down to my W ((NUFORC Note: Many reports. PD) +2007-07-04,42.7794444,-96.9288889,Vermillion,SD,light,1200,I saw these lightrs high in space every 5 minutes for about 20 minutes. +2007-07-04,38.0608333,-97.9294444,Hutchinson,KS,fireball,1200,Five Very large fireballs right over our neighborhood. +2007-07-04,47.2530556,-122.4430556,Tacoma,WA,changing,600,Orange light over Tacoma, Washington. +2007-07-04,35.0072222,-80.9452778,Fort Mill,SC,light,300,grouping of seven yellowish-white lights traveling in the sky +2008-07-04,42.5294444,-83.7802778,Brighton,MI,light,240,Odd Bright Orange Object in the sky +2008-07-04,42.0852778,-83.6825,Milan,MI,light,30,I saw something that night that wasn't of this world, and I can't seem to stop thinking about. +2008-07-04,29.4238889,-98.4933333,San Antonio,TX,light,2700,red and green flashing object hovering. +2008-07-04,29.5375,-95.1180556,Webster,TX,light,1200,The speed it moved is unbelievable it was nothing from this world for sure. +2008-07-04,38.2538,-94.3356,Butler,MO,light,180,((HOAX??)) Me and another person seen a white shaped ball of light traveling through the sky. +2008-07-04,33.9608333,-83.3780556,Athens,GA,light,240,Reddish-orange glowing object, multiple witnesses, athens, GA, July 4th, possible UFO. +2008-07-04,33.9608333,-83.3780556,Athens,GA,light,60,Red orb drops white orbs at night +2008-07-04,41.9211111,-87.8091667,Elmwood Park,IL,triangle,3600,On the morning of july 4 2008, I went outside to the front lawn of my apartment to watch the 4th of july parade in Elmwood Park IL. I h +2008-07-04,40.7141667,-74.0063889,New York City (Brooklyn),NY,sphere,240,I saw five strange glowing objects flying in a pattern +2008-07-04,42.3608333,-93.0994444,Eldora,IA,disk,1800,Very large disk shaped ufo stopped in mid air a number of times. +2008-07-04,45.5236111,-122.675,Portland,OR,circle,5,Oregon 7:15 p,m disk seen 5-10 seconds +2008-07-04,42.4805556,-83.4755556,Novi,MI,formation,600,A formation of 4 lights appear over Walled Lake on the 4th of July. Eratic motion and behavior suggest none-human aircraft... +2008-07-04,38.6533333,-94.3486111,Harrisonville,MO,cigar,240,Cigar shape spotted in sky. +2008-07-04,45.3894444,-92.8477778,Lindstrom,MN,rectangle,1800,Possible Chinese Lanterns seen in Excelsior, MN July 4, 2008 +2008-07-04,42.1538889,-88.1361111,Barrington,IL,sphere,1800,orange spheres vivble at dusk +2008-07-04,34.5794444,-118.1155556,Palmdale,CA,fireball,180,A FIREBALL ACROSS THE SKY FOR 3 MIN AND TOOK OFF HIGH RATE OFF SPEED INTO SPACE. +2008-07-04,42.0372222,-88.2811111,Elgin,IL,disk,420,Four orange/reddish objects seen and video taped +2008-07-04,41.8994444,-87.9402778,Elmhurst,IL,circle,120,4 unidentified objects appeared in night sky in a formation of a "Y" hovering for several minutes. +2008-07-04,37.4730556,-84.8158333,Hustonville,KY,fireball,600,red fire ball over Hustonville Kentucky 7/4/08 +2008-07-04,42.8694444,-85.6447222,Kentwood,MI,sphere,30,Bright orange sphere hovering above 4th of July celebration in Kentwood, MI +2008-07-04,41.2616667,-75.8972222,Kingston,PA,oval,300,In the north sky,slowly moving to the south. Hovered for about 1 1/2 minutes as the July 4 fireworks show was going on. Then "zipped" q +2008-07-04,38.2522222,-87.3916667,Mackey,IN,fireball,90,Glowing orange craft seen over Macky Indiana. 7-4-08. +2008-07-04,39.8366667,-105.0366667,Westminster,CO,sphere,30,Three spherical shaped objects flying in a triangle position and slowly rotating. +2008-07-04,44.0522222,-123.0855556,Eugene,OR,light,15,Orange light ascending at a 75 degree angle on a straight trajectory. +2008-07-04,42.6333333,-71.3166667,Lowell,MA,oval,900,Multiple orange globes traveled slowly across skyline then dissapeared +2008-07-04,39.7944444,-87.3958333,Highland,IN,oval,120,4th of July UFO +2008-07-04,41.5736111,-75.5022222,Carbondale,PA,fireball,240,Strange Fireball Floats over Carbondale PA +2008-07-04,41.85,-87.65,Chicago,IL,other,900,ufo in fireworks display +2008-07-04,42.2505556,-83.1786111,Lincoln Park,MI,sphere,120,The 4th of July was a perfect day for a UFO to make its way through the nightly skies over Metro Detroit in 2008. +2008-07-04,40.4405556,-79.9961111,Pittsburgh,PA,sphere,240,orange glowing sphere in sky hovering +2008-07-04,43.4194444,-83.9508333,Saginaw,MI,circle,480,bright orangecircular glowing light in the sky +2008-07-04,41.4569444,-72.8236111,Wallingford,CT,fireball,300,orand fireball, levitates, descends then disapears +2008-07-04,41.6436111,-83.4869444,Oregon,OH,circle,300,We saw a low flying jellyfish like glowing object that slowly passed our home. +2008-07-04,34.1975,-119.1761111,Oxnard,CA,other,180,Unusual movement for stars +2008-07-04,40.9463889,-73.0697222,Port Jefferson,NY,sphere,900,Glowing orange objects, which you could see were round disk/sphere in shape when glow dimmed completely. +2008-07-04,35.0844444,-106.6505556,Albuquerque,NM,sphere,4,Sphere seen at Fourth of July Fireworks Albuquerque +2008-07-04,44.9033333,-93.5661111,Excelsior,MN,light,900,Fireworks and then flying objects with lights +2008-07-04,40.8,-96.6666667,Lincoln,NE,teardrop,60,Flaming tear-shaped object flying over southwest Lincoln, Nebraska on July 4th. +2008-07-04,33.9938889,-78.305,Oak Grove,NC,unknown,5,Pulsing object covering great distance in approx. 4 seconds. +2008-07-04,48.2413889,-122.3694444,Stanwood,WA,circle,180,5 bright , red pulsing orbs flew over head +2008-07-04,44.9033333,-93.5661111,Excelsior,MN,formation,300,Formation of 10 to 12 square shaped objects observed over Excelsior, MN +2008-07-04,47.5708333,-122.2208333,Mercer Island,WA,unknown,5,Power surge that effected the whole block and the car electronics +2008-07-04,40.6130556,-80.5630556,Chester,WV,light,900,Three UFOs in formation seen by many on the night of July 4, 2008 in Chester, WV. +2008-07-04,33.7738889,-117.9405556,Garden Grove,CA,light,120,Three Orange Lights in the sky above Garden Grove, CA +2008-07-04,41.9475,-80.5544444,Conneaut,OH,cigar,10,UFO SPOTTED JULYᄴ񫺘 IN CONNEAUT,OHIO ((NUFORC Note: Possible hoax?? PD)) +2008-07-04,39.7683333,-86.1580556,Indianapolis,IN,other,300,silent, V shaped object with reddish-orange glimmering light at the bottom of the V moving NE to SW. +2008-07-04,41.88,-88.0077778,Lombard,IL,triangle,300,light in the sky over lombard on 7/4 coming from the east +2008-07-04,42.4805556,-83.4755556,Novi,MI,fireball,600,2 Formations of Fireball Like Objects Witnessed and One Filmed 10 min... ((NUFORC Note: Please see similar report for this date. PD)) +2008-07-04,42.8255556,-85.8425,Jamestown,MI,diamond,240,Three bright red, diamond shape objects, were blinking over Jamestown MI at 23:08 on 7-4-08 +2008-07-04,30.3027778,-90.9719444,Prairieville,LA,light,1200,Bright orange object flying in sky on July 4, 2008 just south of Baton Rouge. +2008-07-04,48.2413889,-122.3694444,Stanwood,WA,oval,300,Stanwood July 4th sighting explained +2008-07-04,41.1305556,-85.1288889,Fort Wayne,IN,fireball,30,2 wierd objects appeared in sky- floating and disappeared into city skylights with in 1 min of each other. +2008-07-04,42.2169444,-88.0494444,Hawthorn Woods,IL,fireball,300,Glowing orange craft seen over Hawthorn Woods, IL on 07-04-08 at 23:35 +2009-07-04,42.2141667,-83.15,Wyandotte,MI,oval,300,Light that looked like a flame on a slowly moving object. +2009-07-04,47.9791667,-122.2008333,Everett,WA,sphere,120,Blood red firey UFO moving easterly past the moon vanishing with a red streak. +2009-07-04,47.8211111,-122.3138889,Lynnwood,WA,changing,6300,Lynnwood wa. @ 10-20miles away hovering moving L-R flashing red,blue & white lights & more. ((NUFORC Note: Star? PD)) +2009-07-04,39.9522222,-75.1641667,Philadelphia,PA,cigar,120,dark gray object over the city of Philadelphia for 2 minuets +2009-07-04,29.7255556,-84.9833333,Apalachicola,FL,changing,20,Okay! once again i am filling out a ufo report. This sighting occured on july 4th as i was taking my early morning walk. i had already +2009-07-04,39.9777778,-105.1313889,Louisville,CO,light,600,((HOAX??)) I was at a park at about 1 PM. I was on the swings. I looked up and saw three bright lights. +2009-07-04,34.4838889,-114.3216667,Lake Havasu City,AZ,disk,1200,Flying saucer over Lake Havasu Arizona +2009-07-04,41.6155556,-87.5294444,Calumet City,IL,sphere,10,red sphere in southren sky at twilight moving north in the eastern sky - chicago area +2009-07-04,47.3075,-122.2272222,Auburn,WA,sphere,180,4th of July - Red/Orange UFO with bright pusling light - Auburn, Washington - 12 witnesses +2009-07-04,42.6611111,-70.9972222,Boxford,MA,cigar,300,Cigar shaped siting +2009-07-04,32.7947222,-116.9616667,El Cajon,CA,light,960,Four red lights travelling east out of San Diego south of El Cajon. +2009-07-04,42.3966667,-88.1836111,Fox Lake,IL,sphere,180,Before firework display, we were sitting on our boat having a good time waiting for the fireworks to start. We look up and see this or +2009-07-04,32.7947222,-116.9616667,El Cajon,CA,light,1500,three red lights in triangle formation +2009-07-04,32.7947222,-116.9616667,El Cajon,CA,light,600,Four red lights in sky over Dehesa Valley, near El Cajon, in San Diego +2009-07-04,32.7947222,-116.9616667,El Cajon,CA,other,2700,4 red lights during fireworks +2009-07-04,32.7947222,-116.9616667,El Cajon,CA,other,2700,four red lights in formation on july forth +2009-07-04,41.5513889,-70.6152778,Falmouth,MA,sphere,30,odd light coming down from stars +2009-07-04,32.7947222,-116.9616667,El Cajon,CA,light,900,Red light east of San Diego and west of Alpine looking south from Interstate 8 +2009-07-04,32.4063889,-97.2113889,Alvarado,TX,teardrop,300,In the western sky we saw the first object move from the S.W. to N.W. very quickly. It appeared not to be too high in the sky. At fir +2009-07-04,35.2922222,-81.5358333,Shelby,NC,light,180,It was not fully dark yet. Saw these 9 red lights moving very very slowly they were moving as if they were hooked together.The had the +2009-07-04,38.6272222,-90.1977778,St. Louis,MO,rectangle,120,Two square/rectangular red crafts spotted above St. Louis on July 4th. +2009-07-04,42.3369444,-83.2733333,Dearborn Heights,MI,unknown,30,Bright orange lights on craft over Dearborn Hts. MI +2009-07-04,47.9130556,-122.0969444,Snohomish,WA,light,120,Bright orange light hovered right over our house with no noise. +2009-07-04,41.9941667,-88.2922222,South Elgin,IL,circle,1200,10 orange/red round objects size of a large plane lights at night - this happened during fourth of July fireworks, 500 Lights On Objec +2009-07-04,34.1458333,-118.8047222,Westlake Village,CA,light,30,Plane-like object/Vanished +2009-07-04,33.6305556,-112.3325,Surprise,AZ,flash,300,Flashes of white light in the night sky. +2009-07-04,33.4352778,-112.3575,Goodyear,AZ,unknown,120,Witnessed a large white light that blinked on and off with 20 - 30 seconds puases, five total blinks +2009-07-04,35.2269444,-80.8433333,Charlotte,NC,light,120,2 red glowing lights in the distant sky moved left to right matching speed slowly until disappearing after 2 minutes. +2009-07-04,42.1655556,-88.2941667,Algonquin,IL,light,90,Single fire colored object spotted moving in a slow and nonlinear way +2009-07-04,47.3352778,-116.8875,Plummer,ID,rectangle,105,Bright orange object over Northern Idaho. +2009-07-04,47.6063889,-122.3308333,Seattle,WA,sphere,60,Orange glowing sphere, vanishes above Fourth of July crowd in Seattle. +2009-07-04,28.6802778,-81.5097222,Apopka,FL,oval,300,Bright orange oval like object . Unexplained movement pattern. Disappeared like the space shuttle. +2009-07-04,47.3075,-122.2272222,Auburn,WA,circle,180,Red, circular, unknown craft over Auburn, WA on the 4th of July 2009 at 10:00 PM +2009-07-04,47.3075,-122.2272222,Auburn,WA,cylinder,240,On 7/4/09 at 10:00 pm myself and 11 other adults saw what I thought at first was a firework in the sky to the southwest.After a few sho +2009-07-04,47.3075,-122.2272222,Auburn,WA,disk,210,7 year old describes red ufo at 4th of July gathering +2009-07-04,47.3075,-122.2272222,Auburn,WA,fireball,180,Flashing orb confuses and amazes people in Auburn, Washington. +2009-07-04,47.3075,-122.2272222,Auburn,WA,oval,240,red oval ufo over Auburn Washington that was not conventinal aircraft +2009-07-04,35.0463889,-81.9819444,Boiling Springs,SC,light,60,stationary star than took off very fast +2009-07-04,41.4713889,-75.6080556,Dickson City,PA,circle,600,Orange circles disappearing and reappearing in various directions. +2009-07-04,47.3225,-122.3113889,Federal Way,WA,circle,120,11 of us saw a glowing/orb that went from west to east in about a 3 1/2 minute time frame. I took pictures of it. +2009-07-04,43.7730556,-88.4469444,Fond Du Lac,WI,fireball,300,Orange fireball seen over Fond du Lac +2009-07-04,31.1169444,-97.7275,Killeen,TX,oval,300,Slow blinking white light on July 4th. +2009-07-04,40.2141667,-77.0088889,Mechanicsburg,PA,light,120,Pink light in the sky +2009-07-04,41.2222222,-73.0569444,Milford,CT,light,600,Red orbs over Long island sound seen from Milford,CT +2009-07-04,48.4780556,-120.185,Winthrop,WA,chevron,15,aircraft enters atmosphere over methow valley, winthrop, wa. 22:00, July 4, 2009. +2009-07-04,39.9522222,-75.1641667,Philadelphia,PA,cigar,1080,The object is clearly visible moving across many pictures taken from a stationary camera on a tripod. +2009-07-04,41.2761111,-72.8688889,East Haven,CT,circle,300,i was sitting on my side porch with my husband and was watching the fireworks in my neighborhood and he spotted an orange glowing ball +2009-07-04,38.5816667,-121.4933333,Sacramento,CA,light,40,The object was traveling fast one direction and then back the way it came from only this time faster. +2009-07-04,47.5288889,-121.8241667,Snoqualmie,WA,sphere,120,Large, Red, Slow Moving Light In The Sky Above Snoqualmie, WA +2009-07-04,42.12,-85.5327778,Vicksburg,MI,light,1200,Redish Orange light view by 10 people from boat, moving, stopping then out of sight vertically. +2009-07-04,41.5008333,-83.7183333,Waterville,OH,light,120,Orange light, ISS-like in magnitude and motion. +2009-07-04,42.7008333,-82.9591667,Macomb,MI,light,259,Red Glow of Constant Color on Bottom of flat black angular UFO Just Under Clowds Passing Just under the Moon 07/04/2009 +2009-07-04,41.85,-87.65,Chicago,IL,circle,600,3 red lights seen over Chicago +2009-07-04,48.3888889,-122.495,La Conner,WA,unknown,7200,Me and about a thousound people maybe more saw a dozon lights fly in a pattern from west to east at about 25ꯠ ft. and flew above the +2009-07-04,47.8555556,-121.9697222,Monroe,WA,light,240,Triangular UFO sighting +2009-07-04,47.8555556,-121.9697222,Monroe,WA,light,60,Red/Orange glowing or pulsating light gaining altitude +2009-07-04,42.4805556,-83.4755556,Novi,MI,teardrop,3600,3 Teardrop shapes in Sky +2009-07-04,42.44,-85.6488889,Plainwell,MI,light,60,At about 10:30PM in Plainwell, MI near a small airfield a large group of friends witnessed a large circular orange light. +2009-07-04,47.6063889,-122.3308333,Seattle,WA,light,10,4th of July - 3 Orange/Red Lights Above Lake Union +2009-07-04,45.4711111,-89.7297222,Tomahawk,WI,sphere,600,ufo over Tomahawk, WI on july 4 +2009-07-04,40.6130556,-80.5630556,Chester,WV,light,420,Observed steady, stationary red light in the sky for several minutes; pulsed & disappeared in 3-4 seconds +2009-07-04,40.6130556,-80.5630556,Chester,WV,light,420,Large, steady red light. Observed 6 minutes minimal motion, accelerated and disappeared in 10 seconds. +2009-07-04,41.85,-87.65,Chicago,IL,oval,120,three organe glowing lights, no airplane winges, evenly spaced going out of sight. +2009-07-04,47.9791667,-122.2008333,Everett,WA,unknown,600,3 orange globes on 4th of July being chased by an airplane? +2009-07-04,37.9244444,-95.3997222,Iola,KS,sphere,180,Orange sphere seen by 5 people iola kansas 07/04/2009. +2009-07-04,32.7425,-117.0305556,Lemon Grove,CA,circle,1200,Four red lights in formation on july forth +2009-07-04,40.7655556,-73.0155556,Patchogue,NY,light,1200,4th of July sighting of 6 stange pairs of moving red lights in sky +2009-07-04,47.6063889,-122.3308333,Seattle,WA,oval,180,3 bright orange oval objects floating slowly overhead then slowly disappearing one by one +2009-07-04,42.0255556,-88.1783333,Streamwood,IL,circle,15,Large Orange Hazy Glowing Circular Orb Moved E to West over Streamwood, Il. (prob. O'hare Airport too) +2009-07-04,47.6063889,-122.3308333,Seattle,WA,light,120,Three Red/Orange hovering lights in the Seattle metro area +2009-07-04,45.0616667,-83.4327778,Alpena,MI,oval,120,Orange craft manuvering very strangely of Alpena, Michigan, on July 4, 2009. +2009-07-04,29.7630556,-95.3630556,Houston,TX,other,180,A matte black aircraft with a large red light on the back hovers for 5 minutes then flys away at insane speed into space. +2009-07-04,45.3736111,-92.8897222,Chisago City,MN,triangle,900,perfect triangle of moving orange lights in Minnesota +2009-07-04,40.8305556,-84.9291667,Decatur,IN,fireball,180,Yellowish-orange Light moved several different directions, turned red and in a flash was gone. +2010-07-04,38.7713889,-90.3708333,Hazelwood (St. Louis),MO,light,45,Brilliant red ball descends on top of group and flys away on the edge of Missouri River Valley +2010-07-04,41.6638889,-83.5552778,Toledo,OH,other,20,3 horseshoe appearing lights attached to a military type aircraft +2010-07-04,42.1608333,-88.0813889,Deer Park,IL,fireball,60,2 yellow orange fireballs headed NNW, disappearing into the overcast +2010-07-04,40.3708333,-80.235,Mcdonald,PA,fireball,60,Glowing object seen in sky over SW Pennsylvania on July 4, 2010 +2010-07-04,35.9605556,-83.9208333,Knoxville,TN,fireball,45,Big reddish-orange (planet-looking) light hovering over Knoxville, TN during 4th of July festivities +2010-07-04,41.0988889,-81.2427778,Rootstown,OH,light,600,Orange/Red Pulsating Orb appeared to be viewing neighborhood fireworks display in Porage Co. Ohio +2010-07-04,36.3436111,-83.8041667,Sharps Chapel,TN,fireball,3600,I along with others saw four red fireball looking things,one closely.they were indescrible! +2010-07-04,29.8944444,-81.3147222,St. Augustine,FL,circle,180,Flying balloon of fire traveling east to west and suddenly turned due south and disappeared. +2010-07-04,36.5816667,-86.5163889,Portland,TN,fireball,1200,Flying Fire Ball with no sound high altitude moving from the west to the north. +2010-07-04,32.7252778,-97.3205556,Fort Worth,TX,sphere,60,Red ball of light hanging in the sky July 4th 2010 +2010-07-04,35.2783333,-93.1336111,Russellville,AR,light,780,bright orange glow that moved across the tree line for 10 minutes +2010-07-04,34.1283333,-117.2077778,Highland,CA,other,300,Low flying military aircraft seen in the area which is out of the ordinary. +2010-07-04,38.5130556,-90.4358333,Fenton,MO,light,900,Multiple orange lights/orbs in sky. +2010-07-04,33.6694444,-117.8222222,Irvine,CA,unknown,1245,two small red lights going across the skay and never faiding. +2010-07-04,38.1302778,-121.2713889,Lodi,CA,other,10800,Not UFO, but lightning can appear identical to sightings and persist for unnaturally seeming long times. +2010-07-04,38.2541667,-85.7594444,Louisville,KY,fireball,600,3 orange fireball crafts traveling at an enormous speed but very high, meeting up and vanishing. +2010-07-04,38.2541667,-85.7594444,Louisville,KY,light,1800,red light, flying above the fireworks but under the clouds..... +2010-07-04,42.3761111,-85.455,Richland,MI,fireball,14400,Fire Balls on the 4th of July over Gull Lake in Richland, MI. +2010-07-04,38.7838889,-90.4811111,St. Charles,MO,oval,14400,I saw 6 bright yellowish lights flying parole to each other going from south west to north east all going more or less the same speed o +2010-07-04,36.3125,-95.6158333,Claremore,OK,other,10,Looked like a transparent Squid with paluseing lights. +2010-07-04,29.0255556,-80.9272222,New Smyrna Beach,FL,oval,240,Orange orb over Atlantic Ocean in New Symnra Beach during unorganized firework show. +2010-07-04,39.8208333,-84.0194444,Fairborn,OH,formation,360,Object(s) were stationary, and had an orangish glow to them. +2010-07-04,38.5969444,-90.5091667,Manchester,MO,diamond,2,Intense Yellow diamond shaped light over Manchester, MO +2010-07-04,45.6388889,-122.6602778,Vancouver,WA,sphere,180,Blueberry Size Glowing Orange Object going East, above the Columbia River at 3500-4000 ft. and a speed of approximately 150mph +. +2010-07-04,34.7302778,-86.5861111,Huntsville,AL,other,7200,Large orbs moving at a steady altitude and velocity +2010-07-04,35.0844444,-106.6505556,Albuquerque,NM,sphere,300,A bright yellow light over Albuquerque on July 4th 1/2 hour before the city fireworks display +2010-07-04,39.2902778,-76.6125,Baltimore,MD,circle,60,Circular white light flies over Baltimore on July 4th +2010-07-04,36.6688889,-89.9686111,Bernie,MO,light,180,Orange ball of light moving over Bernie, Mo. +2010-07-04,35.7397222,-86.1655556,Bradyville,TN,fireball,600,July 4th Glowing Ball Hovers in TN Sky +2010-07-04,36.6436111,-93.2183333,Branson,MO,fireball,300,fireball over missouri seen july 4th, 2010 +2010-07-04,41.5736111,-75.5022222,Carbondale,PA,fireball,10800,Orange fireball hovering in the sky, then disappearing +2010-07-04,47.9791667,-122.2008333,Everett,WA,light,240,Two orange lights move across the sky over Everett, Washington on the night of July 4th, 2010 +2010-07-04,45.0861111,-93.2630556,Fridley,MN,light,120,Bright red/orange ball of light over Moore Lake (Hwy 65), for 2-3 min, motionless over tree line, then fades. +2010-07-04,46.2944444,-93.8266667,Garrison,MN,rectangle,600,Mille Lacs Lake, Garrison, MN, strange orange rectangle lights seen over lake. +2010-07-04,38.0608333,-97.9294444,Hutchinson,KS,fireball,300,Fireball craft +2010-07-04,33.6694444,-117.8222222,Irvine,CA,circle,120,Golden Ball in SKy +2010-07-04,36.4202778,-81.4736111,Jefferson,NC,sphere,300,Strange round object moving over fireworks display area +2010-07-04,41.4905556,-78.6752778,Johnsonburg,PA,fireball,120,Small orange orb slowly moving across the sky +2010-07-04,44.6497222,-93.2425,Lakeville,MN,other,600,Pyramidal-shaped Craft Over Lakeville North High School Field +2010-07-04,43.2680556,-82.5308333,Lexington,MI,circle,3600,During firwork show in Lexinton Michigan I noticed a orange cirlce, getting bigger then smaller again. +2010-07-04,41.88,-88.0077778,Lombard,IL,fireball,3600,Possible explanation for some of the July 4 reports. +2010-07-04,37.1288889,-84.0833333,London,KY,circle,1800,Orange UFO passing or hovering through London Kentucky on July 4th +2010-07-04,36.2597222,-86.6477778,Old Hickory,TN,fireball,600,Six blood red orbs over Old Hickory Tn. dam and dissapears north to Kentucky. +2010-07-04,41.2586111,-95.9375,Omaha,NE,circle,900,Orange lights over Omaha Nebraska. Not fireworks! +2010-07-04,41.1544444,-96.0419444,Papillion,NE,circle,600,Birght amber-orange fire ball drifting across the sky +2010-07-04,36.6991667,-93.1597222,Rockaway Beach,MO,fireball,720,An orange fireball slowly moved across the sky and then disappeared. +2010-07-04,44.8108333,-73.0836111,St. Albans,VT,sphere,120,Round object, red light in the center. +2010-07-04,39.9536111,-74.1983333,Toms River,NJ,fireball,180,Two brilliant orange colored objects engulfed in a flame-like orange glow. +2010-07-04,39.4577778,-76.3555556,Joppatowne,MD,fireball,120,On the fourth of July, a red fireball was seen in the sky by 3 witnesses +2010-07-04,41.5758333,-87.1761111,Portage,IN,light,60,Silent, orange glowing object below the clouds traveling SW to NE. +2010-07-04,38.0608333,-97.9294444,Hutchinson,KS,fireball,480,Brilliant Red Object At Level Altitude Sighted Over Hutchinson, KS at 9:10PM CST On July 4th, 2010. +2010-07-04,44.6397222,-73.1108333,Milton,VT,light,180,Slow-moving orb circles around house +2010-07-04,38.8105556,-90.6997222,O'fallon,MO,sphere,480,White/silver orb over O'Fallon on 7/4/10 +2010-07-04,37.5455556,-97.2686111,Derby,KS,other,10800,Formations of glowing and non-glowing spheres hovering over a Kansas city. +2010-07-04,35.5005556,-94.0513889,Mulberry,AR,circle,360,Orange circle-shaped light, moved fast, appearance changed with angle, 5ꯠ ft alt. no markers lights , +2010-07-04,41.114444399999996,-83.1780556,Tiffin,OH,unknown,60,fiery looking object moved across the sky +2010-07-04,41.3033333,-75.7869444,Yatesville,PA,oval,30,It looked like an airplane dressed up with cloth. +2010-07-04,38.8105556,-90.6997222,O'fallon,MO,sphere,60,Orange/amber sphere moving south to north over O'Fallon, MO +2010-07-04,40.7519444,-80.3194444,Beaver Falls,PA,light,300,I seen the strange lights as seen by others,I thought I was the only one till I heard more about this specific type of ufo on CTC tonig +2010-07-04,41.6986111,-88.0683333,Bolingbrook,IL,disk,600,2 Saucer Dish Like objects in the sky glowing orange +2010-07-04,39.0283333,-84.2177778,Amelia,OH,circle,60,Large Orange Circle, low to the ground, under the clouds, silent and moving very slow across the sky on July 4, 2010 +2010-07-04,42.0883333,-87.9805556,Arlington Heights,IL,circle,600,Orange glow shapes fly by right before and during a fireworks show from one end of the horizon to the next. +2010-07-04,41.4994444,-81.6955556,Cleveland,OH,oval,900,red lites above western sky of cleveland ohio +2010-07-04,38.9988889,-84.6266667,Florence,KY,light,3600,Bright orange light seen over boone county +2010-07-04,41.92,-84.6305556,Hillsdale,MI,fireball,10,Fireball flew overhead on the 4th of July +2010-07-04,32.8544444,-79.975,North Charleston,SC,sphere,120,White light in North Charleston, SC +2010-07-04,28.5380556,-81.3794444,Orlando,FL,fireball,240,On the 4th of July around 9:30 pm, me and my son saw a ball of light moving west across the sky at steady pace , which seemed slow, but +2010-07-04,41.6269444,-88.2038889,Plainfield,IL,fireball,180,Fireball over Plainfield, Illinois. +2010-07-04,28.2713889,-82.7197222,Port Richey,FL,sphere,240,odd orangeish spheres going east to west then again the next night +2010-07-04,33.6408333,-117.6022222,Rancho Santa Margarita,CA,unknown,2100,the flight pattern of the craft and consistancy of the lights and speed does not exist on earth, abrasive +2010-07-04,37.7991667,-88.2611111,Ridgway,IL,cigar,60,Long orange light with ball at end , traveling at same speed and height, no sounds +2010-07-04,35.2505556,-91.7361111,Searcy,AR,circle,300,I and six friends were outside shooting fireworks when we noticed an bright orange orb like object over the treeline to our west. It a +2010-07-04,42.1013889,-72.5902778,Springfield,MA,triangle,300,Lots of details about three orange lights springfield, mass. Heard you on coast to coast, freaked out. +2010-07-04,39.7475,-75.3108333,Swedesboro,NJ,teardrop,120,One red fireball, and seemingly teardrop shaped object. +2010-07-04,39.0483333,-95.6777778,Topeka,KS,triangle,120,Orange object of July 4, 2010, in Topeka, Kansas +2010-07-04,42.5063889,-71.0733333,Wakefield,MA,light,600,5 Red/Orange lights, turn to 3, then disappear on July 4th, Wakefield, MA +2010-07-04,40.6936111,-89.5888889,West Peoria,IL,circle,120,On July 4th, 2010, I saw 2 red ball in the night sky traveling northwesterly, andthe dissapeared in the tree line. +2010-07-04,47.5675,-121.8875,Fall City,WA,circle,300,Orange fireball flying West in Washington State on July 4th. +2010-07-04,41.3947222,-73.4544444,Danbury,CT,teardrop,25,triangular/teardrop shaped orange light with a slight flicker to it rocketing across the sky with no sound +2010-07-04,41.3977778,-79.8316667,Franklin,PA,circle,5,Orange, circular light with steady motion that "winked out." +2010-07-04,33.7205556,-116.2147222,Indio,CA,light,180,one white light with 3 red lights, the red lights were faint but then shot out like missals. +2010-07-04,37.6922222,-97.3372222,Wichita,KS,fireball,300,4 fireballs streak across WIchita Ks July 4th 2010 +2010-07-04,40.4258333,-74.0872222,Belford,NJ,disk,10,speeding object followed by a second object three minutes later with red glow +2010-07-04,41.85,-87.65,Chicago,IL,rectangle,120,Three orange, flame "lanterns" slowly moving NNE over Chicago in formation on July 4, 2010 at 9:45pm +2010-07-04,47.5002778,-111.3,Great Falls,MT,unknown,120,Craft with large yellow/reddish color light observed over Great Falls MT on July 4th, 2010 +2010-07-04,46.8838889,-102.3152778,Richardton,ND,teardrop,180,My wife and son and I were watching fire works towards the west side of town from the east and we saw a fire shape bell object leave fr +2010-07-04,38.9591667,-85.8902778,Seymour,IN,sphere,120,One and two, quiet, red/orange glowing objects in the sky on 4th of July about 9:45 to 10pm, on the way home and after I got home. +2010-07-04,38.8275,-91.02,Wright City,MO,other,120,Wright City, Missouri 21:45PM July 4, 2010 Strange String of Lights That Stayed Lit Roughly 1 Minute in Sky +2010-07-04,41.3205556,-73.0894444,Derby,CT,fireball,180,Fireball moving across the sky +2010-07-04,47.6063889,-122.3308333,Seattle,WA,light,1800,Bright orange/red light orb seen over Gasworks Park, Seattle just moments before fireworks show. +2010-07-04,41.7713889,-93.7127778,Polk City,IA,other,300,I was walking my dog before the 10:00 news, looked up at the sky and saw an orange glowing object. +2010-07-04,39.3,-85.2222222,Batesville (Near Lake Santee),IN,fireball,1200,Fireball seen over Lake Santee on July 3, 2010 +2010-07-04,38.52,-89.9838889,Belleville,IL,circle,600,Unidentified Balls of light fly over Belleville after 4th of July celebration. +2010-07-04,47.7625,-122.2041667,Bothell,WA,sphere,60,Two smoothly gliding, glowing orange orbs over Bothell, WA, with photograph. Animated movie from prior sighting of 1997. +2010-07-04,42.8408333,-85.6636111,Cutlerville,MI,sphere,60,Bright red ball flew over sky and made sharp turn an headed for south. +2010-07-04,39.2052778,-84.3947222,Deer Park,OH,changing,3000,Looking NE there was a bright round/triangular object hovering in the sky and moving sporadically; changed in shape, size, & brightness +2010-07-04,41.4558333,-96.0261111,Fort Calhoun,NE,circle,1800,On July 4th Looked like 1 round fireball, but was 3,, 55 Pictures +2010-07-04,39.0516667,-84.5341667,Fort Wright,KY,fireball,300,Orange orb over Cincinnati +2010-07-04,35.2619444,-81.1875,Gastonia,NC,fireball,30,Zig zaging fireball +2010-07-04,38.2097222,-84.5588889,Georgetown,KY,fireball,20,Fast moving ball of fire that we saw from our back porch while lying in the hammock. +2010-07-04,37.9175,-76.4725,Heathsville,VA,fireball,60,During the fireworks display at 10PM, 4 of us witnessed a red/orange glowing sphere or disc shape moving silently, smoothly and quickly +2010-07-04,39.7683333,-86.1580556,Indianapolis,IN,fireball,900,More than 7 Red Flaring Orbs in East Indianapolis Sky on 4th of July +2010-07-04,47.7988889,-122.4969444,Kingston,WA,light,120,Red very slow pulsating light +2010-07-04,48.0152778,-122.0625,Lake Stevens,WA,circle,30,Glowing orange ball slowly flies toward us in an "S", drops down, pauses, then flies away. +2010-07-04,47.1719444,-122.5172222,Lakewood,WA,cylinder,3600,4th of July Glowing objects floating among fireworks in Lakewood, WA ((NUFORC Note: Possible party lanterns? PD)) +2010-07-04,47.1719444,-122.5172222,Lakewood,WA,fireball,1800,Red fireball fading in and out, moving slowly through sky. +2010-07-04,32.7375,-101.9505556,Lamesa,TX,circle,3600,Red light: 4th of July in Texas +2010-07-04,41.4527778,-82.1825,Lorain,OH,circle,1320,big orange ball floating steady through the sky in Ohio on July 4, 2010 +2010-07-04,47.8211111,-122.3138889,Lynnwood,WA,circle,80,Red circle shape- high up hovering around- turned black then took off fast! +2010-07-04,40.7744444,-97.0502778,Milford,NE,fireball,1800,A red fireball hovered over Milford Nebraska. +2010-07-04,41.8338889,-75.8775,Montrose,PA,fireball,1200,Bright circle of red / orange light seemed to circle the house. +2010-07-04,41.4619444,-96.7794444,North Bend,NE,unknown,120,"Burning" flying object passes at least 3 times east of North Bend, Nebraska, USA +2010-07-04,42.3111111,-71.9286111,Paxton,MA,unknown,30,A real July 4th show +2010-07-04,36.4194444,-82.3041667,Piney Flats,TN,other,180,fireball (looked like flames) with some type of top over it traveling above clouds in straight line east to west +2010-07-04,38.7316667,-82.9977778,Portsmouth,OH,light,180,Bright dim light seen from the Carl Perkins bridge during 4th of July fireworks show +2010-07-04,38.6911111,-121.4475,Rio Linda,CA,fireball,180,orangeish red & it moved like no other flying object right admist the fireworks and in front of every one who looked at it ,very real. +2010-07-04,36.5708333,-119.6111111,Selma,CA,other,15,Dim red/orange object slowed then sped up again while maintaining trajectory +2010-07-04,42.1013889,-72.5902778,Springfield,MA,light,30,Reddish/orange light observed moving low in night sky West to East; no flashing or sounds. +2010-07-04,27.9472222,-82.4586111,Tampa,FL,unknown,900,2 red globes in sky over Tampa on July 4th 2010 +2010-07-04,45.6388889,-122.6602778,Vancouver,WA,fireball,1800,The objects finally came into the shape of the constellation peggasas and were red orbs +2010-07-04,45.6388889,-122.6602778,Vancouver,WA,formation,1800,UFO's seen on 4th of July, above Vancouver,WA +2010-07-04,41.5580556,-73.0519444,Waterbury,CT,triangle,300,5 orange lights, triangular formation, no noise, rose straight from the ground and took off quickly. +2010-07-04,44.9444444,-93.0930556,St. Paul,MN,formation,240,3 round red lights moving in formation (line) from the West to the East. +2010-07-04,32.7833333,-96.8,Dallas,TX,light,1800,While driving home from work on I-635 heading W at about 10:05 PM I noticed a bright light in the sky. ((NUFORC Note: Venus? PD)) +2010-07-04,41.4297222,-97.3680556,Columbus,NE,fireball,1200,I took my son to the store about 9:00 pm on the evening of July 4th, 2010. We left the store around 10:15 pm. My store receipt reads t +2010-07-04,45.4444444,-99.0288889,Ipswich,SD,light,180,Orange light moving slowly without sound over Ipswich, SD +2010-07-04,41.6661111,-81.3397222,Mentor,OH,fireball,300,UFO sightling of a reddish orange fireball in Menor OH on July 4th 2010 +2010-07-04,41.7713889,-93.7127778,Polk City,IA,disk,600,Unusual light in sky 7/4/10 from Saylorville campground. +2010-07-04,41.7747222,-78.0208333,Coudersport,PA,fireball,180,Orange fireball witnessed in Northern PA on July 4th, 2010 +2010-07-04,42.3211111,-85.1797222,Battle Creek,MI,teardrop,3600,multiple Orange/Red pulsating lights seen over Battle Creek During fireworks July 4, 2010 +2010-07-04,41.3647222,-96.1575,Bennington,NE,fireball,300,There was this flashing red ball that kind of looked like it was on fire traveling through the sky. +2010-07-04,39.5147222,-86.7938889,Cloverdale,IN,fireball,300,A slow moving flame with cupped milky vertical white disk behind it. +2010-07-04,47.8108333,-122.3761111,Edmonds,WA,cylinder,240,Two strange orange glowing cylinder shaped lights apeared for 2 minutes from nowhere and disapeared just as suddenly. +2010-07-04,42.1291667,-80.0852778,Erie,PA,circle,120,Bright red light hovering during 4th of July-not a firework. +2010-07-04,42.4391667,-123.3272222,Grants Pass,OR,fireball,1800,2 separate sightings July 4th 2010 of Orange "fireball" type objects moving slowly to the south in Southern Oregon area. +2010-07-04,45.4444444,-99.0288889,Ipswich,SD,light,1800,Bright, unexplained light +2010-07-04,40.6994444,-99.0811111,Kearney,NE,oval,2100,Multiple UFO sightings in Kearney Nebraska +2010-07-04,48.0152778,-122.0625,Lake Stevens,WA,sphere,60,Large orange amber sphere flying over Callow road in Lake Stevens, Washington. 9 witnesses. +2010-07-04,44.6497222,-93.2425,Lakeville,MN,sphere,60,Three glowing orange balls in Minnesota on july 4th 2010 +2010-07-04,40.8,-96.6666667,Lincoln,NE,unknown,300,5 orange lights in sky create triangle formation, than morph and "fade out". Entire neighborhood witnessed. +2010-07-04,39.9241667,-83.8088889,Springfield,OH,fireball,120,2 fireballs in the sky in springfield ohio july 4 2010 +2010-07-04,47.8627778,-121.8152778,Sultan,WA,fireball,1800,7 fireball crafts flew overhead from north to south in Sultan, WA at 22:30 on July 4, 2010 +2010-07-04,46.2630556,-95.5366667,Vining,MN,unknown,240,red dots in night sky +2010-07-04,40.1719444,-84.9813889,Winchester,IN,fireball,120,Red and Orange Sparkling Orb Defies Aviation Principles +2010-07-04,40.3616667,-76.1844444,Womelsdorf,PA,other,120,Strange light formations on long exposure photo's... +2010-07-04,47.5675,-122.6313889,Bremerton,WA,circle,600,Two red glowing circles hovering in sky on July 4th. +2010-07-04,41.1238889,-100.765,North Platte,NE,rectangle,30,One object bright orange traveling at a high rate of speed and very large. +2010-07-04,33.6602778,-117.9983333,Huntington Beach,CA,cylinder,15,Cylidrical object with bright white lights heading northeasterly from downtown Huntington Beach +2010-07-04,42.9316667,-76.5663889,Auburn,NY,triangle,10,7-4-2010 Auburn NY Triange Stars 10 to 15 sec. looked like stars +2010-07-04,42.9316667,-76.5663889,Auburn,NY,triangle,10,what I saw was three stars appear in the southern sky over scorpios head and then disappear +2010-07-04,29.9744444,-92.1341667,Abbeville,LA,triangle,60,the flying apparatus had 30 to 40 lights n it and it was flying very slow heading north towards Lafayette Louisiana. +2010-07-04,40.0161111,-81.0727778,Bethesda,OH,other,360,Red orb light flying in clear night in east ohio on july 4th +2010-07-04,47.7625,-122.2041667,Bothell,WA,fireball,30,Yellow/Orange Lights +2010-07-04,39.9347222,-75.0311111,Cherry Hill,NJ,triangle,240,orange lights +2010-07-04,45.12,-93.2875,Coon Rapids,MN,circle,300,July 4th, at 11pm witnessed orange fireball with traveling across the entire night sky in Coon Rapids Minnesota. +2010-07-04,36.0769444,-87.3877778,Dickson,TN,sphere,30,Orange colored, sphere shaped object, low in elevation and speed. no sudden movement, very smooth and steady. silent. +2010-07-04,32.9747222,-97.3475,Haslet,TX,sphere,180,Roundish object lit by steady yellowish light +2010-07-04,40.7061111,-73.6191667,Hempstead,NY,light,600,One bright light that was intense... it was orange and intense. +2010-07-04,32.3122222,-106.7777778,Las Cruces,NM,sphere,360,Several lights appeared in a line and disappeared one after another. +2010-07-04,40.0483333,-86.4691667,Lebanon,IN,sphere,600,4 huge reddish/orange balls of light on the 4th of July 2010 +2010-07-04,42.6333333,-71.3166667,Lowell,MA,rectangle,15,Many of us saw what I think might be a UFO or UFOs when I got home from dinner with my family. +2010-07-04,48.051944399999996,-122.1758333,Marysville,WA,fireball,240,we saw a space ship looking thing that turned into a fireball and zigzagged back and forth and flew away +2010-07-04,40.7452778,-86.7647222,Monticello,IN,light,420,6 red stationary lights in formation. +2010-07-04,48.4111111,-119.5263889,Omak,WA,light,180,moving lights in the sky over the firwork celebration, 07/04/10. ((NUFORC Note: Overflight of ISS and Russian supply capsule. PD)) +2010-07-04,39.7475,-122.1952778,Orland,CA,flash,3600,Satellites that flash and then disappear and ones that change direction. +2010-07-04,45.5236111,-122.675,Portland,OR,circle,300,Strange orange lights in the sky +2010-07-04,42.0255556,-88.1783333,Streamwood,IL,light,10,Red Light, no sound, Moves from SW to NNE, below low clouds, 10-15Sec then disappeared. +2010-07-04,42.0255556,-88.1783333,Streamwood,IL,unknown,600,Group of 14 see three seperate UFO'S over Streamwood, Ill +2010-07-04,47.3475,-124.2919444,Taholah,WA,fireball,300,I know what I saw. +2010-07-04,44.9061111,-66.9905556,Eastport,ME,changing,120,Bright yellow object with halo, flies NE, changes direction E, loses halo, flies E until too small to see +2010-07-04,34.0752778,-84.2941667,Alpharetta,GA,cigar,120,Cigar shaped object shrouded with amber flames/haze over North Atlanta on July 4th, 2010. +2010-07-04,41.8038889,-73.5591667,Wassaic,NY,circle,60,3 circular lights moving in night-sky +2010-07-04,36.0525,-95.7905556,Broken Arrow,OK,fireball,180,possible ufo sighting +2010-07-04,40.5794444,-75.3411111,Hellertown,PA,teardrop,120,Orange tear drop object spotted in eastern pa July 4 2010, 11:15 pm. +2010-07-04,42.8125,-86.0186111,Zeeland,MI,fireball,90,Fireball with red pulsating aura moving north north east creating a slight to moderate wooshing sound +2010-07-04,42.6011111,-76.1808333,Cortland,NY,fireball,300,3 redish orange lights seen over central ny traveling south east direction +2010-07-04,41.9583333,-70.6677778,Plymouth,MA,unknown,300,Star like, but strange movement (stop, reverse, triangle). +2010-07-04,41.8238889,-71.4133333,Providence,RI,unknown,60,A bright light in the sky croosing the sky of Providence pulling with it small and big clouds with out sound. +2010-07-04,29.2363889,-89.9872222,Grand Isle,LA,circle,6,The objects had a life of their own like they were in scihcronised +2010-07-04,47.8211111,-122.3138889,Lynnwood,WA,light,60,Amber light heading west over Lynnwood, Washington. +2010-07-04,45.6388889,-122.6602778,Vancouver,WA,oval,60,Three light orange oval objects moving across the sky eastward just south of Vancouver +2010-07-04,35.2427778,-81.0375,Belmont,NC,fireball,120,Me and 3 friends saw a bright orange orb slowly fly in and out of view. +2011-07-04,44.9444444,-93.0930556,Saint Paul,MN,triangle,300,Two triangular craft were seen over a populated area of South Saint Paul, MN, at midnight July 3, to July 4, 2011. +2011-07-04,44.9444444,-93.0930556,Saint Paul,MN,triangle,300,Update* from the 07-28-11 report of Triangle UFO seen over St. Paul, MN, July 4th, 2011. +2011-07-04,36.1866667,-94.1286111,Springdale,AR,triangle,60,Orangish triangle shaped flying object in nwa on july 4th 2011 around midnight flying north +2011-07-04,45.4872222,-122.8025,Beaverton,OR,fireball,120,Fireball type UFO changed direction; stayed stationary then gained in altitude and flew off into horizon +2011-07-04,41.4994444,-81.6955556,Cleveland,OH,fireball,120,Fireball like object flying east to west along shoreline near downtown Cleveland +2011-07-04,44.1858333,-88.4625,Neenah,WI,unknown,180,Bright orange light with no sound travels over Neenah sky +2011-07-04,34.0122222,-117.6880556,Chino,CA,disk,180,UFO over chino California caught on film... +2011-07-04,40.7141667,-74.0063889,New York,NY,light,10800,Bright lights over New York! +2011-07-04,47.6063889,-122.3308333,West Seattle,WA,sphere,600,Do they Enjoy fireworks? +2011-07-04,47.5288889,-121.8241667,Snoqualmie,WA,light,1200,One white light and two red, flying over Washington neighborhood on fourth of July +2011-07-04,37.6938889,-85.8591667,Elizabethtown,KY,circle,240,((HOAX??)) Orange circle moving slow across sky Elizabethtown, KY. +2011-07-04,28.0391667,-81.95,Lakeland,FL,triangle,2,2 redish yellow flying objects in South Lakeland, Florida spotted hovering through the air and then sped up and vanished. +2011-07-04,37.9513889,-91.7711111,Rolla,MO,fireball,300,Two burning lights at low altitude silently moving slowly in westward direction. +2011-07-04,45.6388889,-122.6602778,Vancouver,WA,unknown,180,Orange ball ufo muti witness 4th july vancouver WA +2011-07-04,34.7391667,-112.0091667,Cottonwood,AZ,circle,180,Glowing Red & White Yellow Fireball, Light panned back and forth +2011-07-04,43.0247222,-83.0777778,Imlay City,MI,light,300,Red, Pink and Yellow lights rise slowly at horizon, organize into evenly spaced vertical line, then move off south and fade away. +2011-07-04,35.5277778,-82.9597222,Lake Junaluska,NC,triangle,300,Triangle, hovering then moving away slowly. Single red light on and off at random. No sound. +2011-07-04,32.7444444,-117.2611111,Ocean Beach,CA,light,5400,3-4 lights in the sky before fireworks +2011-07-04,47.1041667,-122.4333333,Spanaway,WA,fireball,180,Several sightings over Spanaway, WA, of fireball objects with intentional direction of travel. +2011-07-04,41.6005556,-93.6088889,West Des Moines,IA,circle,180,2 red/orange spheres moving slowly appeared in des moines iowa. +2011-07-04,42.4566667,-83.9463889,Pinckney,MI,light,300,I was helping my nephue make water balloons when my mother said there was a silver light in the sky. I ran up to see,and it was a shini +2011-07-04,45.1402778,-89.1522222,Antigo,WI,light,20,3 orange lights over Antigo sky +2011-07-04,38.9516667,-92.3338889,Columbia,MO,triangle,60,Slow to very fast glowing orange triangle moved over entire horizon seen by 3 people in Columbia, MO. +2011-07-04,40.8616667,-80.2866667,Ellwood City,PA,sphere,180,Last fourth of july, my father and i were shooting off professional fireworks, and after we were done, my dad pointed to the sky and as +2011-07-04,35.9819444,-87.1213889,Fairview,TN,light,90,Triangular UFO rising from Nashville and heading south at amazing speed. +2011-07-04,40.7072222,-73.6763889,Franklin Square,NY,fireball,120,Round object that appeared to have fire inside it +2011-07-04,38.5969444,-90.5091667,Manchester,MO,other,600,Red glowing orb traveling slowly towards west, then hovering and moving a little east; no camera available; no reports made to other s +2011-07-04,42.6388889,-83.2911111,Pontiac,MI,sphere,1200,Odd glowing orange/red spheres +2011-07-04,30.7619444,-86.5705556,Crestview,FL,fireball,600,Fireball observing the fireworks! +2011-07-04,44.7630556,-85.6205556,Traverse City,MI,sphere,300,Red-Orange Orbs appeared over crowd prior to Fireworks Show in Traverse City, Mi. July 4, 2011 +2011-07-04,34.5958333,-92.4888889,Bryant,AR,fireball,120,This may be an ISS sighting, but I can't locate sighting information for Little Rock, AR of that date and had no internet access that e +2011-07-04,38.4783333,-82.6380556,Ashland,KY,light,900,Reddish orange light in the sky +2011-07-04,35.9605556,-83.9208333,Knoxville,TN,fireball,3600,Strange orange lights over Knoxville, TN +2011-07-04,38.2544444,-104.6086111,Pueblo,CO,circle,60,Orange lights in Colorado skies +2011-07-04,45.5061111,-91.7380556,Rice Lake,WI,fireball,420,On July 4, 2011, at approximately 21:15, right after the first ten minutes of the fireworks display, I noticed an orange fireball orb f +2011-07-04,41.3405556,-87.6213889,Beecher,IL,triangle,60,Saw triangle shaped craft. 1 light on tip, 2 on back. made triangle over town. +2011-07-04,39.0169444,-94.2813889,Blue Springs,MO,sphere,180,Fireball moving across the sky east to west during July 4th fireworks +2011-07-04,42.2711111,-89.0938889,Rockford,IL,fireball,180,Single orange fireball that moved slowly East to West, stopped and slowly disappeared. +2011-07-04,41.3405556,-87.6213889,Beecher,IL,light,240,Three lights in Beecher, Illinois. +2011-07-04,41.5894444,-88.0577778,Lockport,IL,triangle,30,Two orange triangles moving simultaneously behind each other, then after 20/30 seconds, disappear on a clear stary night. +2011-07-04,38.8338889,-104.8208333,Colorado Springs,CO,disk,180,The flying objects seem to appear and dissapear without leaving a trail in the long exposure photos. +2011-07-04,32.7947222,-116.9616667,El Cajon,CA,circle,600,Small red light in the sky, did not waver. +2011-07-04,38.5925,-90.5869444,Ellisville,MO,fireball,600,Nothings tops off a firework show like ufos! In the middle of the show while I was chilling with my girlfriend and her parents. Off th +2011-07-04,39.7136111,-82.5994444,Lancaster,OH,egg,900,Witnessed a floating pulsating orange ball, that stopped glowing, flashed blue/white lights, glowed orange again, then went out. +2011-07-04,34.6991667,-86.7483333,Madison,AL,light,3600,Object darted across the sky and would stop on a dime and dart in another direction +2011-07-04,36.5569444,-89.9663889,Malden,MO,triangle,45,Three people saw a "fireball ufo" at 2 different times. +2011-07-04,42.9763889,-88.1083333,New Berlin,WI,circle,60,Orange glowing sphere over New Berlin Wisconsin +2011-07-04,47.1555556,-122.4327778,Parkland,WA,fireball,900,"Fireball" sighting south of Tacoma Washington lasted several minutes. +2011-07-04,37.7477778,-84.2947222,Richmond,KY,circle,1800,Red Orbs in the sky above Lake Reba in Richmond, KY. +2011-07-04,41.85,-87.65,Chicago,IL,cigar,1200,Another mysterious vehicle observed, Chicago fireworks display, July 4, 2011. +2011-07-04,39.885555600000004,-104.9866667,Northglenn,CO,other,120,Crafts Watching Fireworks with enormous crowd below +2011-07-04,33.9163889,-118.3516667,Hawthorne,CA,fireball,180,Orange fireball over South Bay/L.A. county +2011-07-04,42.6727778,-88.5444444,Elkhorn,WI,light,600,Red Lights over Geneva Lakes area +2011-07-04,47.885,-120.1572222,Manson,WA,circle,6,Unidentified object fades from sight above Lake Chelan near Manson WA +2011-07-04,41.5380556,-72.8075,Meriden,CT,other,120,fireball orange object hovers through my yard in meriden +2011-07-04,33.5016667,-81.9652778,North Augusta,SC,fireball,120,Glowing round object hovered in sky going eastward from North Augusta/Edgefield area. +2011-07-04,38.7838889,-90.4811111,St. Charles,MO,fireball,600,Fireball spotted over saint charles missouri +2011-07-04,42.6791667,-82.6538889,Fair Haven,MI,light,480,7 Adults Witness very large white/yellow glowing objects near the moon on July 4, 2011 +2011-07-04,37.4136111,-79.1425,Lynchburg,VA,light,240,Tonight myself and my son went to watch the 4th of July fireworks display at the local baseball stadium. We parked on a street behind a +2011-07-04,42.8947222,-70.8716667,Seabrook,NH,unknown,45,Orange light hovering by power plant +2011-07-04,40.8,-96.6666667,Lincoln,NE,light,120,I saw a bright orange light rise up from near ground-level, hover a minute, and then ascend up into the sky. +2011-07-04,40.8,-96.6666667,Lincoln,NE,light,120,Sorry - false alarm; the bright orange light I saw was just a flare. +2011-07-04,42.0255556,-88.1783333,Streamwood,IL,fireball,20,Orange Glowing Orb low across from SE to NW a Yearly 7/4 site. +2011-07-04,40.7569444,-72.9397222,Bellport,NY,light,300,9 Red Lights that appeared in the night sky...... +2011-07-04,36.3647222,-93.5677778,Berryville,AR,circle,45,Circular shaped craft, luminous and silent with a halo type glow around it flew directly overhead. +2011-07-04,27.4986111,-82.575,Bradenton,FL,oval,300,These were not fireworks nor planes of which I have seen many - they were things I had never seen before -- +2011-07-04,39.5236111,-87.125,Brazil,IN,oval,1800,Orange spheres in formation +2011-07-04,34.5958333,-92.4888889,Bryant,AR,light,180,Two slowly hovering amber lights. +2011-07-04,39.1619444,-84.4569444,Cincinnati,OH,teardrop,900,Pitch black UFOs with red-pink light that faded +2011-07-04,35.3858333,-94.3983333,Fort Smith,AR,fireball,180,Orange fireball +2011-07-04,39.6136111,-86.1066667,Greenwood,IN,fireball,1800,Six Fireballs Spotted +2011-07-04,34.7302778,-86.5861111,Huntsville,AL,circle,4500,Red moving dot above Alabama on July 4th +2011-07-04,38.2541667,-85.7594444,Louisville,KY,circle,60,Small fireball object in the sky that moved real slow, stopped a few seconds and then was gone. +2011-07-04,41.5622222,-72.6511111,Middletown,CT,circle,420,Two orange circle lights flying side-by-side; one went straight up and the other went off into the distance and both disappeared. +2011-07-04,40.1933333,-85.3863889,Muncie,IN,light,180,saw glowing orange ball of light and ghostly face +2011-07-04,40.1933333,-85.3863889,Muncie,IN,light,240,((HOAX??)) 4th of July ufo and a image of a ghostly alien face very disturbing. +2011-07-04,41.375,-81.9083333,Olmsted Falls,OH,light,70,Six persons witnessed six orange lights passing over Olmsted Falls, Ohio amid fireworks displays. +2011-07-04,41.2586111,-95.9375,Omaha,NE,circle,600,The object was moving abnormally, with orange rectangular lights around the sides of it that went dim and then very bright. +2011-07-04,43.6227778,-87.7944444,Oostburg,WI,light,300,Moving horizontally then vertically, red/yellow orb, noiseless, able to go vertical at a quick speed and change positions quickly +2011-07-04,41.9583333,-70.6677778,Plymouth,MA,changing,60,There was a silent white light floating just above the trees. Then it was gone. Words cant discribe what we saw. +2011-07-04,36.5816667,-86.5163889,Portland,TN,circle,60,Addition to Orange/Red Orb July 4th 2011 +2011-07-04,36.5816667,-86.5163889,Portland,TN,circle,60,Orange/Red Orb July 4th 2011 +2011-07-04,46.2852778,-95.8705556,Underwood,MN,light,2700,Solid individual orange-yellow lights flying from SW tracking directly into an intense lightning storm roughly 15 min apart.. +2011-07-04,47.2358333,-122.5491667,University Place,WA,sphere,300,07/04/11 - University Place, WA - Spherical UFO with vertical running electric flames on the side of the craft +2011-07-04,41.7,-71.4166667,Warwick,RI,fireball,1200,Red lights in the sky on the 4th of july +2011-07-04,40.1538889,-79.7413889,Smithton,PA,fireball,20,Unusual pulsating ball of light. +2011-07-04,40.0638889,-80.7211111,Wheeling,WV,oval,300,yellow or orange lights east bound on I-70 over wheeling wv. +2011-07-04,45.7833333,-108.5,Billings,MT,light,3600,6 sightings of red-orange crafts over Billings Montana July 4th 2011 10pm to 11pm +2011-07-04,43.0125,-83.6875,Flint,MI,fireball,300,Orange firey object floating in night sky! +2011-07-04,46.1469444,-122.9072222,Kelso,WA,oval,120,Orange object approximate 2 minute sighting. +2011-07-04,42.5936111,-83.5994444,Milford,MI,fireball,120,Slow moving fireball in sky +2011-07-04,48.2325,-101.2958333,Minot,ND,oval,60,Bright orange fast mover. +2011-07-04,38.4088889,-121.3705556,Elk Grove,CA,circle,10,Four round, lit craft flyhing in a low, v formation over Elk Grove, Ca. +2011-07-04,40.5866667,-122.3905556,Redding,CA,disk,4,One ship disk shape with symmetrical lights around it zoomed through sky in a and then disappeared. +2011-07-04,43.7291667,-87.8105556,Sheboygan Falls,WI,light,60,Yellow/orange ball of ligt with NO sound. +2011-07-04,44.7319444,-93.2175,Apple Valley,MN,fireball,180,10 witnesses saw a reddish orange glowing silent object starting in the south hemisphere and dissappearing 3-4 min later in the north +2011-07-04,42.3313889,-83.0458333,Detroit,MI,sphere,3600,It looked like a flaming ball of fire moving at fast rate of speed from the South to the North. +2011-07-04,47.9791667,-122.2008333,Everett,WA,oval,120,Bright red orb seen on July 4th +2011-07-04,43.0125,-83.6875,Flint,MI,sphere,1200,I was sitting in my backyard facing north at about 22:45 hours on July 4th, 2011. In the sky to the north of where I was sitting a lar +2011-07-04,47.9505556,-124.3841667,Forks,WA,fireball,180,Ball of fire floating over Forks, WA during the 4th of July fireworks display +2011-07-04,39.7561111,-99.3236111,Phillipsburg,KS,sphere,180,My wife, myself and some friends were coming into our town when witnessed what I wanted to call a Chinese lantern. It flew right over t +2011-07-04,39.0094444,-98.3938889,Sylvan Grove,KS,fireball,300,Unidentified, slow-moving glowing object, Sylvan Grove, Kansas +2011-07-04,38.7627778,-93.7358333,Warrensburg,MO,fireball,600,Orange balls of light, Not lights on object, object was light. will be back July 4th. +2011-07-04,41.1280556,-101.7191667,Ogallala,NE,sphere,300,Yellow spheres over Ogallala +2011-07-04,44.6369444,-124.0522222,Newport,OR,light,300,One bright red light, not flashing, traveled from north to south about 1ꯠ ft above us. +2011-07-04,39.7686111,-94.8463889,Saint Joseph,MO,disk,1200,Saint Joseph +2011-07-04,48.7597222,-122.4869444,Bellingham,WA,light,60,Three lights in line formation. Disappeared in about 1 minute +2011-07-04,41.2230556,-111.9730556,Ogden,UT,light,600,Orbs sighted in mountains east Ogden +2011-07-04,42.0372222,-88.2811111,Elgin,IL,fireball,900,Fireball in sky separating into two! +2011-07-04,40.7258333,-73.5147222,Levittown,NY,formation,300,20-25 Orange Lights move from West to East and then disappear. +2011-07-04,43.1547222,-77.6158333,Rochester,NY,circle,1800,Orange Balls Swiftly Gliding Through The Sky In Rochester, N.Y. +2011-07-04,43.6922222,-116.4925,Star,ID,fireball,120,REDDISH-ORANGE anomoly appears in the sky about 25 degrees above horizon, moves, changes course, drifts overhead as if observing . +2011-07-04,48.0905556,-105.64,Wolf Point,MT,fireball,180,Orange red ball of light or orb. +2011-07-04,45.5230556,-122.9886111,Hillsboro,OR,light,480,We saw three amber balls of light appear at four minute intervals and move south/southwest then fade and disappear +2011-07-04,40.2736111,-76.8847222,Harrisburg,PA,circle,180,Four reddish orange lights in the sky. +2011-07-04,40.8666667,-124.0816667,Arcata,CA,triangle,300,Red, green, and white lights hovering, jumping, and zig-zagging above Arcata, CA 7/4/2011 +2011-07-04,41.3186111,-87.2002778,Hebron,IN,formation,1800,Formation of Chinese lanterns +2011-07-04,46.1383333,-122.9369444,Longview,WA,oval,1800,Me and 10 outher friends of mine just got back from the 4th" of july fest in longview'.We all saw a yellow ball of light with no sound +2011-07-04,36.6083333,-83.7166667,Middlesboro,KY,fireball,300,softball sized reddish/orange fire ball seen slowly coming towards us, then abrupt U turn and dissappeared +2011-07-04,44.9483333,-93.3477778,St. Louis Park,MN,circle,240,Red ball was floating in the sky after the firwork display in SLP, MN +2011-07-04,38.7627778,-93.7358333,Warrensburg,MO,fireball,1200,Just little balls of light. +2011-07-04,42.7244444,-83.0361111,Washington,MI,changing,300,Shape-shifting craft viewed over Washington, Michigan +2011-07-04,41.5580556,-73.0519444,Waterbury,CT,disk,300,Four yellow/orange lights over Waterbury, CT on 7/04/2011 about 11:00pm +2011-07-04,48.7597222,-122.4869444,Bellingham,WA,sphere,180,Orange Floating Orbs On The Horizon +2011-07-04,41.5580556,-73.0519444,Waterbury,CT,formation,900,3 orange lights flying in single file, 4th object in route following the others. +2011-07-04,48.0905556,-105.64,Wolf Point,MT,disk,600,Orange red ball of light that flashes orange and red +2011-07-04,41.0525,-80.6080556,Struthers,OH,circle,30,Struthers +2011-07-04,44.4161111,-118.9519444,John Day,OR,flash,120,Eastern sky large flash star missing Super Nova? +2011-07-04,33.7358333,-118.2913889,San Pedro,CA,triangle,1200,Golden Fire Pyramids over San Pedro and Palos Verdes, CA - 4 July 2011 +2011-07-04,43.1380556,-75.5711111,Verona,NY,light,600,3 light ufos over central ny +2011-07-04,40.8694444,-84.5841667,Van Wert,OH,fireball,180,one object coming from north too south then made a curve change of corse then went due west moving slowly almost looked like something +2012-07-04,39.6291667,-75.6586111,Bear,DE,fireball,120,Fireball sighted about midnight traveling northeast in Bear, Delaware. +2012-07-04,41.9994444,-88.145,Hanover Park,IL,sphere,60,Red/orange silent sphere +2012-07-04,47.0344444,-122.8219444,Lacey,WA,disk,1800,Reddish Orange Spheres seen by several people leaving a 4th of July party in Washington state +2012-07-04,41.3205556,-73.0894444,Derby,CT,fireball,180,Strange orange fireball streaks across sky,stops,shines two lights and turns into spacecraft and bolts straight up and out og sight. +2012-07-04,39.9241667,-83.8088889,Springfield,OH,light,3600,Sporadically moving star +2012-07-04,40.9730556,-117.7347222,Winnemucca,NV,light,3600,Bright green neon light in sky, I only have a video from iPhone, I'm reporting it for someone else there were several truck drivers tal +2012-07-04,47.1041667,-122.4333333,Spanaway,WA,changing,60,Speedy balls of fire +2012-07-04,39.9522222,-75.1641667,Philadelphia,PA,other,120,2 objects moving together across the sky during the day. +2012-07-04,27.8002778,-97.3961111,Corpus Christi,TX,other,1200,Star shaped ufo hovers over harbor bridge for 20 minutes then vanishes!?!?! +2012-07-04,41.4994444,-81.6955556,Cleveland,OH,teardrop,120,Orbs/Teardrops Dropping Out of A Cloud Over Lake Erie +2012-07-04,38.3363889,-75.0852778,Ocean City,MD,cylinder,20,In the night sky while sitting on deck in Ocean City, MD overlooking the Atlantic Ocean with my 40 year old daughter, we saw a cylindri +2012-07-04,37.2152778,-93.2980556,Springfield,MO,fireball,900,2 Orange fireballs in the night sky while fire works are going off around it. +2012-07-04,37.6841667,-77.8855556,Goochland County,VA,cylinder,180,White cylinder with a brighter white light in the center +2012-07-04,39.1433333,-77.2016667,Gaithersburg,MD,egg,480,Nine unidentified flying objects in the night sky flying very slowly in single file and emitting no sound. +2012-07-04,34.0230556,-84.3616667,Roswell,GA,circle,180,Firey orange ring on July 4th before sunset in Roswell, GA - could have been seen by hundreds of people. +2012-07-04,39.0997222,-94.5783333,Kansas City,MO,sphere,60,Red solid sphere in sky +2012-07-04,35.1894444,-114.0522222,Kingman,AZ,other,1200,I HAVE PHOTOS - AT FIRST I THOUGHT IT WAS A PLANE MAKING A LOOP UNTIL I BLEW UP ONE OF THE SHOTS AND SAW IT HAD NO WINGS +2012-07-04,41.2586111,-95.9375,Omaha,NE,fireball,120,First time seeing a UFO in the Daytime! +2012-07-04,20.8783333,-156.6825,Lahaina,HI,fireball,60,Orange orb over Lahaina on July 4th +2012-07-04,36.175,-115.1363889,Las Vegas,NV,circle,45,Tight formation of 2-3 disk shaped objects flying slowly S/W over residential area. +2012-07-04,40.9113889,-73.7827778,New Rochelle,NY,disk,300,Noticed 1 extremely bright solid light moving low in the sky from the west heading out east with a huge reddish orange solid bright lig +2012-07-04,46.7630556,-68.4763889,Portage,ME,oval,600,Strange orbs and lights. +2012-07-04,33.9938889,-96.3705556,Durant,OK,sphere,2,Videotaped 20+ silent orange orbs traveling solo & in groups; not airplanes or fireworks +2012-07-04,28.1486111,-80.5886111,Indian Harbour Beach,FL,light,120,Red light seen during fireworks traveling from south to north, then disappears. +2012-07-04,34.09,-117.8894444,West Covina,CA,fireball,1200,3 red fireballs over Los Angeles during 4 th of July festivities observing us. +2012-07-04,42.0883333,-87.9805556,Arlington Heights,IL,sphere,300,7 circular orbs viewed traveling near fireworks displays in northwest Chicago area. +2012-07-04,33.9294444,-116.9763889,Beaumont,CA,light,30,Luminous orb signaled at me from God. +2012-07-04,36.0525,-95.7905556,Broken Arrow,OK,fireball,900,All gave the appearance of being on fire giving off a bright orange light the also appeared to be under power and being under control +2012-07-04,35.47,-95.5227778,Checotah,OK,oval,7200,Red glowing objects seen over Checotah ok on the 4th of July 2012! +2012-07-04,29.3011111,-94.7975,Galveston,TX,triangle,300,Traingular set of 3 lights in the sky where no star formation of that nature theprevious nights. +2012-07-04,42.0427778,-88.0797222,Hoffman Estates,IL,light,3600,Red, green, orange flashing small lights - no craft abservable - over an hour in the sky above us. +2012-07-04,41.3908333,-72.86,North Haven,CT,circle,180,Red light observered over North Haven, CT by two people. +2012-07-04,42.7675,-78.7441667,Orchard Park,NY,fireball,120,My friend and I saw and videotaped a red ball of light in the sky while watching fireworks on July 4, 2012. +2012-07-04,47.6063889,-122.3308333,Seattle,WA,light,1800,Saw numerous red-orange objects moving slowing in north to south and also south to north in Seattle over a 20 minute period during Lake +2012-07-04,39.8016667,-89.6436111,Springfield,IL,circle,60,Orange fire ball in springfield, il +2012-07-04,40.4463889,-74.1786111,Union Beach,NJ,fireball,120,4th of July Fireball, NOT a Firework. +2012-07-04,33.7591667,-118.0058333,Westminster,CA,circle,300,Red glowing object traveling through the Westminster California sky +2012-07-04,38.895,-77.0366667,Washington,DC,sphere,5.5,Luminous spheres in flight, then suddenly vanishing into nothingness +2012-07-04,40.1005556,-74.8522222,Bristol,PA,fireball,180,It looked like a yellow/redish fireball and it looked like something was hanging down from it on fire. It went down the street behind u +2012-07-04,30.505,-97.82,Cedar Park,TX,circle,300,2 green lights, round object, and vanished! +2012-07-04,38.8113889,-89.9530556,Edwardsville,IL,light,60,Brightly light moving across sky and dimming until gone. ((NUFORC Note: Possible satellite?? PD)) +2012-07-04,44.0463889,-123.0208333,Springfield,OR,circle,120,I observed a UFO up close for over 2 minutes and only because of my polarized perscription glasses. +2012-07-04,28.5555556,-82.4505556,Spring Hill,FL,diamond,240,One orange/ red diamond shape over skies north west over spring hill florida 4 th of july 2012 9:13 pm +2012-07-04,34.2783333,-119.2922222,Ventura,CA,light,900,8 light fading out. +2012-07-04,41.5061111,-87.6355556,Chicago Heights,IL,cigar,1800,Orange glowing lights over Chicago Heights, IL +2012-07-04,32.7833333,-96.8,Dallas,TX,fireball,300,Red/orange glowing, hovering orbs on 4th of July pre-fireworks +2012-07-04,32.7833333,-96.8,Dallas,TX,fireball,300,Glowing red-orange balls in the sky Dallas July 4th 2012. +2012-07-04,40.5983333,-76.0936111,Auburn,PA,fireball,240,Firey Orb in night sky +2012-07-04,41.0127778,-81.6052778,Barberton,OH,circle,60,Six Red circles fallowing each other +2012-07-04,39.9205556,-105.0861111,Broomfield,CO,fireball,120,Red/orange lights east of Broomfield seen during firework show +2012-07-04,33.8936111,-117.7263889,Chino Hills,CA,oval,10,UFO over Chino Hills W/video on line other site. +2012-07-04,26.2708333,-80.2708333,Coral Springs,FL,chevron,600,Wife and I were at a big public fireworks display in Coral Springs, FL. and as we were watching she noticed something she thought was a +2012-07-04,28.9002778,-81.2638889,Deltona,FL,fireball,1800,Red fireballs over Deltona, FL +2012-07-04,42.1291667,-80.0852778,Erie,PA,fireball,600,Giant orange/red globe slowly moving across the sky. +2012-07-04,34.7136111,-77.2455556,Hubert,NC,light,60,Unknown red light or object moving from Northwest to Northeast for 1 minute before disappearing. +2012-07-04,41.6483333,-70.4816667,Mashpee,MA,fireball,120,We were standing in front of our beach house when I noticed a red light coming I yelled look Cathy to my cousin because I had seen this +2012-07-04,43.6122222,-116.3905556,Meridian,ID,sphere,30,Black sphere ufo. +2012-07-04,39.6294444,-79.9561111,Morgantown,WV,circle,180,Orange light over cheat lake +2012-07-04,35.7477778,-95.3694444,Muskogee,OK,circle,5400,2 dozen red orbs, in 2's and a group of 5, with multiple origination points and directions of travel +2012-07-04,39.6836111,-75.75,Newark,DE,fireball,120,Red glowing fireball floating across field in Newark delaware +2012-07-04,41.0036111,-80.3472222,New Castle,PA,disk,1800,Orange disk-shaped objects that fly under the clouds without sound. +2012-07-04,37.2152778,-93.2980556,Springfield,MO,fireball,1200,Five different red orbs flow slow and low and disappear . +2012-07-04,38.9536111,-94.7333333,Lenexa,KS,oval,7,Fast oval shape with red light at the back, going north. +2012-07-04,26.1336111,-80.1133333,Sunrise,FL,light,20,Possible UFO sighting in Sunrise, Florida during 4th of July celebration. +2012-07-04,28.0219444,-81.7330556,Winter Haven,FL,circle,300,There were three orange orb like circles that appeared one at a time and formed a triangle +2012-07-04,47.1855556,-122.2916667,Puyallup,WA,fireball,10800,1 dark circular or oval shaped object, and 5+very bright fireball looking objects for 2 1/ 2hrs patrolling above and around my home +2012-07-04,35.4975,-97.2686111,Choctaw,OK,light,120,Bright red light with no sound that move across the west sky. +2012-07-04,41.7858333,-88.1472222,Naperville,IL,fireball,240,Observed a firey orb on a southwest heading out of the northeast during Bolingbrook fireworks show. +2012-07-04,27.8769444,-97.3236111,Portland,TX,circle,2,See above +2012-07-04,40.2452778,-75.65,Pottstown,PA,fireball,300,Red/orange fireball moving slowly +2012-07-04,47.1041667,-122.4333333,Spanaway,WA,fireball,180,Ball of fire in the sky twice in one night. +2012-07-04,46.3775,-120.3075,Toppenish,WA,sphere,2100,Glowing Orange Sphere over Toppenish, WA. +2012-07-04,36.1538889,-95.9925,Tulsa,OK,sphere,240,UFO mimicking fireworks +2012-07-04,40.2452778,-75.65,Pottstown,PA,sphere,180,Fire colored sphere in Pottstown. +2012-07-04,29.6708333,-83.3877778,Steinhatchee,FL,circle,240,Two red circles appearing out of nowhere, then disappearing. +2012-07-04,29.6708333,-83.3877778,Steinhatchee,FL,circle,240,Red orbs flying then disappearing +2012-07-04,48.1988889,-122.1238889,Arlington,WA,light,7200,Three orange-red objects were circling over Arlington,WA. on Fourth of July. +2012-07-04,41.1016667,-80.7647222,Austintown,OH,other,2400,See above. It was really weird. +2012-07-04,47.7625,-122.2041667,Bothell,WA,circle,1800,Orange Orbs over Bothell - up close and explained +2012-07-04,36.0525,-95.7905556,Broken Arrow,OK,fireball,120,Seven people saw 4 orange fireballs flying very fast in formation. There was very little wind and no noise! +2012-07-04,42.8863889,-78.8786111,Buffalo,NY,fireball,3600,One orange, red "fireball" circle Buffalo for about an hour. +2012-07-04,41.85,-87.65,Chicago,IL,oval,300,RED/ORANGE ORBS ACCROSS THE NIGHT SKY +2012-07-04,41.85,-87.65,Chicago,IL,oval,480,BEAMS RED THEN FADES TO ORANGE +2012-07-04,29.2105556,-81.0230556,Daytona Beach,FL,circle,1800,7-4-12, daytona beach,fl. +2012-07-04,46.7833333,-92.1063889,Duluth,MN,circle,1800,Seeing two flaming orbs in the sky +2012-07-04,36.2944444,-76.2513889,Elizabeth City,NC,disk,8,Light-colored disc-shaped object enveleloped by reddish glow hovers slowly over houses then disappears +2012-07-04,35.0525,-78.8786111,Fayetteville,NC,sphere,90,I saw a red orb/sphere traveling from north to south. The object was traveling towards me. The object was about 1-2 miles high, and tur +2012-07-04,47.0530556,-122.2930556,Graham,WA,triangle,900,We saw ten small lights that ended up forming a triangle that stayed in the sky for ten minutes than just left. +2012-07-04,29.7630556,-95.3630556,Houston,TX,light,600,Three dim lights traveling through the sky. We looked through a scope and could not see an air craft. ((NUFORC Note: Aircraft?? PD)) +2012-07-04,41.0025,-78.4627778,Hyde,PA,light,3600,Several witnesses to strange "Patriotic" lights over 4th of July Holiday, many photographs. +2012-07-04,48.4213889,-122.3327778,Mount Vernon,WA,formation,3600,Three reddish-orange, pulsating orbs in the sky slowly approached a crowd of people in uneven tandem formation. +2012-07-04,41.7244444,-81.2458333,Painesville,OH,light,600,Today on the 4th of July, my family and I spotted 4 floating lights. They bobbed in and out of vision but made no noises. There were al +2012-07-04,41.1544444,-96.0419444,Papillion,NE,circle,2700,Two adults went out on the deck to view neighborhood fireworks. Fireworks were being set off to the north and to the south of the deck. +2012-07-04,47.4830556,-122.2158333,Renton,WA,fireball,1200,Fireball In The Sky! +2012-07-04,36.3319444,-94.1183333,Rogers,AR,oval,120,Orange, oval objects seen over Rogers, Arkansas +2012-07-04,38.5052778,-122.4691667,Saint Helena,CA,flash,2400,Numerous blue flashing dots in sky moving in sky. +2012-07-04,36.1397222,-96.1086111,Sand Springs,OK,fireball,3600,20+ huge red fireballs flying south to north near SandSprings,Oklahoma +2012-07-04,47.6063889,-122.3308333,Seattle,WA,fireball,1800,Multiple glowing objects flying South down Puget Sound +2012-07-04,47.6063889,-122.3308333,Seattle,WA,light,1200,Red-orange objects moving slowing in north to south and also south to north directions over a 20 minute period in Seattle +2012-07-04,47.2530556,-122.4430556,Tacoma,WA,fireball,3600,Fireball +2012-07-04,39.0483333,-95.6777778,Topeka,KS,circle,7200,Very strange red fireballs +2012-07-04,36.1538889,-95.9925,Tulsa,OK,fireball,180,Red Orb in Broken Arrow, OK Flew Over +2012-07-04,42.1933333,-84.3911111,Vandercook Lake,MI,fireball,420,Red/orange fireball in sky ...but 2 of them? lasting 7 minutes +2012-07-04,46.1652778,-123.9225,Warrenton,OR,diamond,180,LOOKED LIKE A UFO +2012-07-04,41.1413889,-73.3583333,Westport,CT,light,600,White-orange lights, in row, slowly crossing sky +2012-07-04,30.5425,-97.5463889,Hutto,TX,light,30,Two lights in the sky, looked like fast irratic moving stars +2012-07-04,43.1547222,-77.6158333,Rochester,NY,circle,300,Bright, flashing green object moving quickly across the sky +2012-07-04,47.1055556,-122.0444444,Wilkeson,WA,fireball,120,Two more fireball orbs seen tonight, just like my report from last night. +2012-07-04,38.2541667,-85.7594444,Louisville,KY,disk,30,Glowing orange ball traveled across the sky in Fern Creek area +2012-07-04,46.7833333,-92.1063889,Duluth,MN,light,120,3 bright orange lights equidistant from each other moving north over Duluth +2012-07-04,47.2044444,-121.9902778,Enumclaw,WA,circle,900,7 red & green circles grouped together in pairs of two, led by one single orb. Gravitated upwards for about 15 minutes, then vanished. +2012-07-04,47.4830556,-122.2158333,Renton,WA,circle,600,2 lights at 5 minute intervals flying across the sky, then disapear in the middle of the sky. +2012-07-04,46.6022222,-120.5047222,Yakima,WA,sphere,300,Four lights on the Fourth +2012-07-04,38.1216667,-86.5177778,Mount Pleasant,IN,light,90,Four glowing objects hovering then disappearing +2012-07-04,40.7519444,-80.3194444,Beaver Falls,PA,fireball,45,"Fireball"-type crafts over Beaver Falls, PA +2012-07-04,47.4066667,-122.0375,Maple Valley,WA,fireball,120,Saw three distinct lights, one appeared to be on fire, moving south over Maple Valley, WA. +2012-07-04,34.1477778,-118.1436111,Pasadena,CA,disk,60,A disk shaped object hovering in one spot over Pasadena, CA while da lit up bottom of object was circling while top of it wasn't moving +2012-07-04,34.1477778,-118.1436111,Pasadena,CA,disk,60,A disk shaped ufo with several lights and one single light on top hovering over Pasadena, CA +2012-07-04,38.9783333,-76.4925,Annapolis,MD,triangle,360,Dark object with red lights appearing to be that of a triangle +2012-07-04,43.6136111,-116.2025,Boise,ID,other,3600,Multiple Fiery Orbs sighted in n./s. flight over w. Boise over 1+ hr period +2012-07-04,45.6797222,-111.0377778,Bozeman,MT,other,900,Red orb traveling straight up the side of the Bridger Mountains. +2012-07-04,47.5675,-122.6313889,Bremerton,WA,circle,1800,Orange/Amber slow moving balls fly higher and zip away +2012-07-04,47.5675,-122.6313889,Bremerton,WA,oval,40,Orange balls of light seen over naval base kitsap +2012-07-04,26.3180556,-80.1,Deerfield Beach,FL,light,180,4th of July Curiosity in Deerfield Beach, Fla +2012-07-04,36.3955556,-97.8780556,Enid,OK,circle,1200,Large, circular red object flying very slowly at high altitude overhead travelling SSW to NNE. +2012-07-04,47.2044444,-121.9902778,Enumclaw,WA,circle,300,07-04-12 Saw 5 orange round objects in the sky +2012-07-04,40.7258333,-73.5147222,Levittown,NY,sphere,600,Witnessed 75+ orange disc shaped lights traveling in a straight line on 7/4/12 heading east on Long Island, NY +2012-07-04,46.1383333,-122.9369444,Longview,WA,other,300,Amber glowing orb appeared in night sky of Longview, WA, witnessed by many during Go 4th Celebration. +2012-07-04,38.2541667,-85.7594444,Louisville,KY,sphere,600,Bright orange objects over Louisville, KY +2012-07-04,47.573055600000004,-117.6811111,Medical Lake,WA,fireball,300,Four fireballs, visible south from Medical Lake, WA +2012-07-04,35.3394444,-97.4863889,Moore,OK,circle,120,2 Red Balls Flying North from South. Objects Flying Parallel 1000 feet apart at kite level. Silent. Disappeared +2012-07-04,46.5297222,-122.4838889,Mossyrock,WA,circle,1800,Saw 6 different Orange colored objects move across the sky then when overhead got smaller and smaller untill they disapeared. +2012-07-04,47.1027778,-122.8813889,North Olympia,WA,oval,2700,Glowing oval fireball, no sound , so bright, close in distance than in moments as far as a distant star +2012-07-04,46.4916667,-124.0488889,Ocean Park,WA,sphere,180,6 orange fireballs travel slowly across the southwestern WA night sky. +2012-07-04,46.7630556,-68.4763889,Portage,ME,fireball,180,5 Amber in color spear shaped objects moving in a north east direction +2012-07-04,27.3361111,-82.5308333,Sarasota,FL,fireball,120,It was July 4th 2012 (last night) my husband, our 2 girls and I were coming home from watching the fireworks. We were going south on US +2012-07-04,39.8016667,-89.6436111,Springfield,IL,fireball,120,We were sitting outside when one of the witnesses said look at that flashing light over there.(we were facing south) We all thought it +2012-07-04,42.4775,-83.0277778,Warren,MI,light,120,Red glowing ball of light seen over Warren Michigan +2012-07-04,36.7625,-80.735,Hillsville,VA,circle,120,Circling orange dots +2012-07-04,40.5852778,-105.0838889,Fort Collins,CO,egg,60,Egg shaped object flying over head. +2012-07-04,47.5302778,-122.0313889,Issaquah,WA,fireball,120,Fireball seen over Seattle. +2012-07-04,35.4675,-97.5161111,Oklahoma City,OK,fireball,120,We saw a low-flying, brilliant, orange object flying silently and steadily from SSE to NNW and are sure it wasn't a traditional craft. +2012-07-04,47.6063889,-122.3308333,Seattle,WA,diamond,120,3 fast moving and low aircraft +2012-07-04,41.760555600000004,-88.32,Aurora,IL,fireball,120,Fireball-like object seen in Aurora, IL +2012-07-04,47.8211111,-122.3138889,Lynnwood,WA,fireball,7200,Red Fiery Circular Craft +2012-07-04,45.010555600000004,-93.4552778,Plymouth,MN,fireball,1800,((NUFORC Note: No information is provided by witness. PD)) +2012-07-04,38.7627778,-93.7358333,Warrensburg,MO,sphere,120,Round red ball of fire or light moving west to east at a slow rate of speed, not an aircraft. +2012-07-04,47.3858333,-122.8263889,Allyn,WA,fireball,180,Bright organe and red and disapeared with not a cloud in the sky +2012-07-04,45.6388889,-122.6602778,Vancouver,WA,sphere,120,Ufo/Orbs spotted in Vancouver, WA, July 4th, 2012 +2012-07-04,47.2516667,-122.6277778,Fox Island,WA,fireball,180,The two orange silent fireballs or spheres just kept coming closer, moving from west to the south. +2012-07-04,47.6063889,-122.3308333,Seattle,WA,sphere,300,Orange glowing orbs over Seattle July 4th 2012 +2012-07-04,47.2152778,-123.0994444,Shelton,WA,circle,60,Five observers at 23:15 noticed a large UFO traveling slowly west to east with very bright flashing red and white lights. Viewing thr +2012-07-04,44.0463889,-123.0208333,Springfield,OR,fireball,300,On July 4 at approx eleven pm I was standing in my back yard when from my right an orange orb or light appeared traveling at a slow spe +2012-07-04,41.4666667,-86.4830556,Walkerton,IN,unknown,10800,Awestruck at the numerous air traffic on the 4th of July. +2012-07-04,41.2375,-80.8186111,Warren,OH,other,900,7 bright objects flying by +2012-07-04,42.4375,-122.8577778,White City,OR,sphere,300,3 bright orange objects moving across the sky in a straight line. +2012-07-04,38.7891667,-90.3225,Florissant,MO,fireball,120,Fireball over St. Louis, MO July 4th +2012-07-04,40.3355556,-75.9272222,Reading,PA,fireball,300,3 Large Fireballs rose from ground in succession and followed each other West to East across sky into Heat Lightening near Reading, PA +2012-07-04,47.7625,-122.2041667,Bothell,WA,fireball,360,Four red/orange orbs traveling horizontally in a perfect line, in perfect distance from each other +2012-07-04,33.5205556,-86.8025,Birmingham,AL,oval,540,Red-Orange ovals flying across hwy 280 +2012-07-04,47.9791667,-122.2008333,Everett,WA,unknown,300,5 red/orange lights moving fast from the NE to the SW over Everett. +2012-07-04,28.2916667,-81.4077778,Kissimmee,FL,unknown,180,Bright Orange light seen in Orlando sky. +2012-07-04,37.9886111,-84.4777778,Lexington,KY,light,120,Two red lights seen moving near each other until disappearing. +2012-07-04,28.2438889,-82.7194444,New Port Richey,FL,unknown,900,5 orange lights moving strangely +2012-07-04,43.6613889,-70.2558333,Portland,ME,diamond,120,Square dark object w/red lights at each of its corners over Casco Bay Bridge in Portland, ME +2012-07-04,29.1758333,-80.9830556,Daytona Beach Shores,FL,light,60,3 reddish colored objects traveling under 100kts zoomed out of sight without any sound +2013-07-04,46.4166667,-117.0166667,Lewiston,ID,triangle,240,North to south toward airport. Hovering, low hum, could be a night glider? +2013-07-04,41.2380556,-85.8530556,Warsaw,IN,light,2700,Glowing craft flying around like a firefly. +2013-07-04,32.5883333,-96.9558333,Cedar Hill,TX,circle,600,Object flying in night sky seen by three people that were camping +2013-07-04,30.3319444,-81.6558333,Jacksonville,FL,flash,600,The 1st sighting was in July 2013 - and this 3rd sighting was 11-25-13 +2013-07-04,41.595,-72.6458333,Cromwell,CT,unknown,600,Pulsating light in the northeast skies of Cromwell, CT +2013-07-04,41.995,-88.1855556,Bartlett,IL,triangle,600,Paper lanterns in UFO-like formation. +2013-07-04,47.5675,-122.6313889,Bremerton,WA,circle,60,1 red orange round object observed on 4 July 2013 from Bremerton Washington approx. 17:00l +2013-07-04,41.2916667,-72.3766667,Old Saybrook,CT,light,60,2 red/pink lights, circular shape. +2013-07-04,36.0525,-95.7905556,Broken Arrow,OK,sphere,14400,5-6 Reddish Orange Orbs spotted around the greater Tulsa area 4th July night. +2013-07-04,40.0063889,-75.7036111,Downingtown,PA,light,300,I Saw 4 orange lights moving/flying objects in the sky after few minutes they disappeared. +2013-07-04,42.2711111,-89.0938889,Rockford,IL,teardrop,1800,Dark red light over Rock River in Rockford, Il before fireworks... +2013-07-04,42.3583333,-71.0602778,Boston,MA,other,30,Distant unmoving object with no lights during the day on July 4th. +2013-07-04,43.6613889,-70.2558333,Portland,ME,flash,120,White and red blinking light moving across horizon, slowing down to a stop, then vanishing. +2013-07-04,36.1538889,-95.9925,Tulsa,OK,unknown,1200,Two, orangish-red ufo's over downtown Tulsa, on the night of the 4th of July. +2013-07-04,40.7583333,-74.9797222,Washington,NJ,cylinder,180,orange glowing orb floats across sky +2013-07-04,40.7583333,-74.9797222,Washington,NJ,cylinder,180,Orange glowing orb floats across sky +2013-07-04,33.7877778,-117.8522222,Orange,CA,light,180,Light in the sky dissappears after slowly flying towards the area where i live. +2013-07-04,42.6402778,-87.9102778,Somers,WI,formation,120,Three orange lights,soundlessly moving north in a vee formation above the town of Somers, WI +2013-07-04,40.7583333,-74.9797222,Washington,NJ,fireball,600,Glowing Orb/ Fireball +2013-07-04,41.85,-87.65,Chicago,IL,other,180,Dark gray flat-ended saucer shaped object flying west to east. +2013-07-04,40.2883333,-75.2094444,Chalfont,PA,egg,300,9 orange/red spheres a few hundred feet above silently travel across our neighbors properties July 4, Chalfont, PA. +2013-07-04,39.4486111,-76.4180556,Kingsville,MD,light,300,Singular, bright white light mid sky seen at twilight, w/ no stars visible +2013-07-04,33.5602778,-81.7197222,Aiken,SC,circle,60,Orb with orange glow +2013-07-04,35.7913889,-78.7813889,Cary,NC,light,60,Red glowing light flew overhead prior to fireworks show +2013-07-04,39.7391667,-104.9841667,Denver,CO,light,300,Triangular light formation over Denver on the 4th. +2013-07-04,48.0097222,-122.5247222,Freeland,WA,sphere,900,Yellowish-Orange sphere west of Mutiney Bay with several hundred folks celebrating the 4th of July. +2013-07-04,43.0813889,-88.9116667,Lake Mills,WI,sphere,420,A very bright orange light passed overhead from south to north at a high rate of speed silently traversing the sky completely. +2013-07-04,29.5847222,-81.2080556,Palm Coast,FL,rectangle,1800,Succession of red lights in the sky +2013-07-04,27.2936111,-80.3505556,Port Saint Lucie,FL,circle,1200,Circular Red/Gold Lights flying overhead +2013-07-04,32.7188889,-102.6444444,Seminole,TX,circle,120,Low flying, slow clump of green lights. +2013-07-04,38.7838889,-90.4811111,St. Charles,MO,sphere,600,Orange glowing sphere moving at constant speed and altitude. ((NUFORC Note: Report from three airline pilots. PD)) +2013-07-04,27.1972222,-80.2530556,Stuart,FL,unknown,300,Unknown amber light in sky without any associated noise +2013-07-04,34.2255556,-77.945,Wilmington,NC,oval,300,Two lit "Crafts" fly over , witnessed by husband and wife July 4th 2013. +2013-07-04,26.1416667,-81.795,Naples,FL,fireball,180,Fireball moving across the sky +2013-07-04,40.6883333,-75.2211111,Easton,PA,fireball,180,Ufo above Williams twp and Bethlehem fireworks! +2013-07-04,42.1180556,-88.0961111,Inverness,IL,sphere,45,2 orange spheres moving from south to north and seen by 3 people +2013-07-04,34.0522222,-118.2427778,Los Angeles,CA,sphere,600,Triple green-red sphere flying over LA +2013-07-04,33.4222222,-111.8219444,Mesa,AZ,circle,1800,Reddish orange orbs moving east to west, caught on video +2013-07-04,41.4858333,-73.0511111,Naugatuck,CT,diamond,45,Mufti sided grey craft with pinkish red smaller illumination off center. Looked like a flare. Heading due north. Silent +2013-07-04,41.1238889,-100.765,North Platte,NE,circle,7200,25 to 30 Large Bright Orange Round moving objects with no sound, going north. +2013-07-04,40.85,-78.2708333,Osceola Mills,PA,fireball,5400,orange glows following path +2013-07-04,39.1366667,-77.715,Purcellville,VA,sphere,30,Red Orb 4th of July Purcellville, VA with video link +2013-07-04,27.8161111,-80.4708333,Sebastian,FL,oval,600,Flying objects with red-orange glow seen in Sebastian, Florida. +2013-07-04,40.2883333,-75.2094444,Chalfont,PA,egg,1800,9 yellow / red disks silently sailed across the sky at low level, first three in a line, the next we're 6 red disks in zig zag pattern +2013-07-04,42.9763889,-88.1083333,New Berlin,WI,circle,60,Circle orange light traveling at an high altitude from south to north. +2013-07-04,27.8425,-82.6997222,Pinellas Park,FL,circle,240,Two redish orange lights make 45 degree turn and speed into the clouds in Pinellas Park,Fl. +2013-07-04,28.7027778,-81.3386111,Longwood,FL,fireball,60,Three orange globes in a line in equal distance from each other slowly moving east to west +2013-07-04,38.8466667,-91.9477778,Fulton,MO,light,240,Bright red and orange light +2013-07-04,41.75,-87.8041667,Bridgeview,IL,sphere,600,While watching fireworks in the night sky I seen 3 slow moving objects going across the sky. I pointed them out to my granddaughter an +2013-07-04,39.9205556,-105.0861111,Broomfield,CO,changing,600,We were observing the fireworks from my roof. There were 3 adults there and we looked over toward Northglenn from Broomfield and then +2013-07-04,39.4580556,-104.8955556,Castle Pines,CO,triangle,1200,3 bright white lights in triangular shape seen over Denver +2013-07-04,35.9938889,-78.8988889,Durham,NC,sphere,180,We saw four reddish-orange glowing lights hovering in a loose formation. +2013-07-04,40.3133333,-88.9736111,Heyworth,IL,circle,600,Three orange glowing spheres moving quickly accross the sky. +2013-07-04,42.6072222,-83.9294444,Howell,MI,triangle,180,Howell, Mi,,,,,,bright object watching fireworks, came back again, left high speed vertical straight up +2013-07-04,40.8,-96.6666667,Lincoln,NE,circle,1800,Small orange glowing circular objects floating during the fireworks show. +2013-07-04,43.9727778,-74.4213889,Long Lake,NY,circle,600,25 silent, circular, orange/yellow glowing objects moving slowly from westerly southwesterly to easterly northeasterly. +2013-07-04,34.9569444,-92.4272222,Mayflower,AR,oval,1200,While watching fireworks on the lake, my daughter-in-law pointed out a stationary red light in the sky. At first sight I thought it w +2013-07-04,37.6391667,-120.9958333,Modesto,CA,sphere,900,Several glowing red orbs seen flying overhead from the west to the east the night of July 4th in Modesto, California. +2013-07-04,35.3394444,-97.4863889,Moore,OK,circle,120,Circular object with singular, non blinking, reddish-orange light at front end. +2013-07-04,38.948055600000004,-81.7611111,Ravenswood,WV,light,300,Bright red hovering circular light near Ravenswood. +2013-07-04,39.8016667,-89.6436111,Springfield,IL,other,420,I saw one lightbulb shaped craft extremely up close and several other red orbs. +2013-07-04,38.7691667,-94.6561111,Stilwell,KS,oval,180,Orange/red lights moving slowly across the sky in NE Kansas on the 4th of July. +2013-07-04,41.5733333,-87.7844444,Tinley Park,IL,triangle,300,We were in the backyard having a bonfire & we saw strange triangular shaped lights moving pretty slowly across the night sky. +2013-07-04,39.8380556,-75.1530556,Woodbury,NJ,cylinder,900,2 craft seen going west then vanishing than 936 two craft Coming north then going west bright orange Then fading into a star like mode +2013-07-04,39.7294444,-104.8313889,Aurora,CO,circle,180,4th of July 2013 at 9:40pm Aurora, Co. 3 orange circles during firework seen by 4 people duration about 5 minutes +2013-07-04,42.9033333,-78.755,Cheektowaga,NY,fireball,180,Many Red/Orange balls over Cheektowaga, NY during 4th of July fireworks. +2013-07-04,39.7555556,-105.2205556,Golden,CO,formation,300,Advanced light patterns turning in sharp angles and moving at high speeds in a fluid manner that no known human aircraft could handle. +2013-07-04,46.1852778,-123.5847222,Knappa,OR,triangle,120,Triangle shape object moving slowly across tree tops +2013-07-04,36.6102778,-88.3147222,Murray,KY,circle,600,I was looking south watching fireworks and noticed a bright orange circle hovering just above the treetops. It began to move north .i c +2013-07-04,39.8366667,-105.0366667,Westminster,CO,fireball,150,After watching the fireworks display on 104th in Westminster,CO my wife and I were intrigued at 4 other brightly lit objects steadily h +2013-07-04,42.7741667,-73.7005556,Cohoes,NY,fireball,120,Driving Home on 4th of july and saw a red glowing fireball in the sky, stopped to take a video and snap a picture +2013-07-04,40.7875,-82.7366667,Crestline,OH,circle,420,Large orange craft with flickering fiery orange tail over fire works field. UFO Under intelligent control. +2013-07-04,43.8013889,-91.2394444,La Crosse,WI,other,600,Orange pulsating ball of light +2013-07-04,45.3575,-122.6055556,Oregon City,OR,light,600,5 objects in the horizon sky rising. +2013-07-04,40.4405556,-79.9961111,Pittsburgh,PA,triangle,300,Red-orange triangular object with large flames flying during fireworks display +2013-07-04,39.8366667,-105.0366667,Westminster,CO,unknown,240,4 lights moving into each other then out again and circling. +2013-07-04,33.4936111,-117.1475,Temecula,CA,light,10,Two very bright 'stars,', one of them red, moving slowly from south to north then fading away. +2013-07-04,40.1983333,-83.0102778,Lewis Center,OH,triangle,120,4 glowing orange triangular objects floating in sky, no sound +2013-07-04,40.7536111,-86.0688889,Peru,IN,light,900,Red light formation over Grissom ARB Indiana +2013-07-04,26.5216667,-82.1894444,Captiva,FL,light,2760,I saw 3 amber lights like I've reported before, plus an extremely bright &quot;slow&quot; flash of light. +2013-07-04,44.98,-93.2636111,Minneapolis,MN,sphere,300,Moving red spheres in sky. +2013-07-04,37.2152778,-93.2980556,Springfield,MO,fireball,30,Two people see orange light move rapidly across the sky no sound no flashing lights +2013-07-04,43.6136111,-116.2025,Boise,ID,circle,60,at roughly 22:00 in boise idaho on july 4th 2013 a red ball floating across the sky at a steady speed. +2013-07-04,42.8863889,-78.8786111,Buffalo,NY,fireball,3600,Bright orange fireballs seen on 4th of July in Buffalo N.Y. +2013-07-04,41.85,-87.65,Chicago,IL,fireball,180,we look in to the sky a bout 10 pm we witnesse frist a fire ball goin from south to north and 3 m a bout 5 minutes later 2 more ball +2013-07-04,40.6813889,-73.4002778,Copiague,NY,light,10,He came, changed colors, then just disappeared. +2013-07-04,44.8041667,-93.1666667,Eagan,MN,teardrop,240,small orange teardrop shaped flying low, straight from south to north no noise +2013-07-04,41.1305556,-85.1288889,Fort Wayne,IN,unknown,300,Dull reddish glow seen NE of Fort Wayne, IN. +2013-07-04,32.8233333,-97.1702778,Hurst,TX,light,720,Strange light hovering and watching Fireworks display. +2013-07-04,47.9447222,-122.3033333,Mukilteo,WA,oval,1200,Reddish orange ovals with wings flying over the area for 15-20 minutes +2013-07-04,41.4858333,-73.0511111,Naugatuck,CT,unknown,60,Glowing pinkish red object. Heading north and silent running. +2013-07-04,41.1238889,-100.765,North Platte,NE,circle,3600,20+ reddish gold orbs floating from the south of community to the north. +2013-07-04,37.2202778,-77.2883333,Prince George County,VA,fireball,20,Red ball spotted by 4 people on 295s Prince George, Va. +2013-07-04,42.7261111,-87.7827778,Racine,WI,sphere,180,immediately after fireworks a orangish red shere floated by us moving at a slow rate of speed approximately 100 feet altitude moving pa +2013-07-04,37.7477778,-84.2947222,Richmond,KY,other,180,Seen during Fireworks show. in the last minutes of video (1:10) it jets off real quick and disappears. +2013-07-04,37.9747222,-122.5605556,San Anselmo,CA,oval,600,07-04-13 Luminous object seen at close range for 10 minutes in hills of Marin County +2013-07-04,44.7980556,-93.5266667,Shakopee,MN,light,300,Orange fast orbs. +2013-07-04,44.7980556,-93.5266667,Shakopee,MN,light,300,Orange fast orbs. +2013-07-04,40.3272222,-76.0113889,Sinking Spring,PA,light,600,My family and I were standing in our backyard when a strange reddish orange light appeared over the horizon. It traveled much faster th +2013-07-04,40.8261111,-73.5025,Syosset,NY,oval,15,Long Island Expressway, Syosset Exit 43 - Burning Red/Orange Ferris Wheel?? +2013-07-04,40.0394444,-84.2033333,Troy,OH,circle,120,Not fireworks. +2013-07-04,40.2455556,-74.8463889,Yardley,PA,fireball,180,Fireball traveled from NJ over PA +2013-07-04,47.3075,-122.2272222,Auburn,WA,circle,60,My daughter and I were outside on the back deck. I was bbqing. My daughter was watching the fireworks from the deck. As I looked up at +2013-07-04,37.0511111,-122.0136111,Scotts Valley,CA,sphere,300,7 red orbs appearing one at a time out of nowhere just above the horizon +2013-07-04,30.1577778,-95.4891667,The Woodlands,TX,triangle,300,2 orange lights type UFOs seen in Houston area on July 4, 2013 +2013-07-04,47.3075,-122.2272222,Auburn,WA,light,2400,5 orange'ish/amber light sources apparently unconnected to normal air traffic in our area were observed over a period of 40 minutes +2013-07-04,45.0680556,-122.7988889,Mount Angel,OR,fireball,900,6 reddish orange lights moving slowly over Mount Angel Oregon +2013-07-04,35.0886111,-92.4419444,Conway,AR,unknown,300,Four solid orange UFO's flying over the night sky. +2013-07-04,28.7027778,-81.3386111,Longwood,FL,fireball,120,I was looking out sliding glass door to the north when I saw one red light at about a 45 to 60 degree angle to the horizon in the sky. +2013-07-04,41.5833333,-87.5,Hammond,IN,circle,600,I noticed 2 shaped orange lights fly from the south headed north. It didn't have any aircraft markers on them ,then they disappeared af +2013-07-04,47.6063889,-122.3308333,Seattle,WA,unknown,600,A RED Light was seen over the Highland Park area of Seattle (((Drone?))). +2013-07-04,35.3858333,-98.9877778,Bessie,OK,light,120,Retired public employee witnesses four (?) large, orange objects float overhead, headed west (?). +2013-07-04,36.1083333,-91.0972222,Black Rock,AR,light,240,Orange light in field above treetops. Moved across State Highway 63 Witnessed by 2 and an Arkansa State Trooper. +2013-07-04,42.8863889,-78.8786111,Buffalo,NY,disk,120,Round craft with orange lights seen in Buffalo, New York +2013-07-04,42.3222222,-83.1763889,Dearborn,MI,formation,900,7 red/orange lights in a straight line formation before 4th of July fireworks, then faded and disappeared one at a time. +2013-07-04,42.3222222,-83.1763889,Dearborn,MI,formation,900,7 red/orange orb-like lights in a straight line moving upward before 4th of July fireworks, then faded and disappeared one at a time. +2013-07-04,38.4088889,-121.3705556,Elk Grove,CA,light,60,Preface: there are plenty of commercial planes, private planes, military planes and helicopters with Sac Int Airport, military, and sma +2013-07-04,40.9294444,-100.1602778,Gothenburg,NE,light,1800,I am sure I was not the only person to notice these objects out of the thousand or so people watching the fireworks display. I live +2013-07-04,28.1875,-82.7397222,Holiday,FL,fireball,180,Silent glowing fireball moved slowly (at first) in straight line. +2013-07-04,40.6805556,-73.4747222,Massapequa,NY,circle,30,Circular orb in the sky covers great distance in short 30 seconds without breaking sound barrier on 7/4/13. +2013-07-04,44.98,-93.2636111,Minneapolis,MN,light,20,Bright red light/s, no noise, moving moderate speed and low in east sky, moving south to north. +2013-07-04,40.9469444,-73.03,Mount Sinai,NY,circle,120,A large orange colored round object traveling west to east at a high rate of speed. +2013-07-04,43.5172222,-70.3780556,Old Orchard Beach,ME,circle,600,Red fly objects over OOB Maine +2013-07-04,47.1855556,-122.2916667,Puyallup,WA,chevron,900,2 orange v shaped objects with orange lights. +2013-07-04,47.4830556,-122.2158333,Renton,WA,light,3600,Red/orange lights in the sky. +2013-07-04,27.8658333,-82.3266667,Riverview,FL,fireball,300,orange red round light with a haze around it. +2013-07-04,47.9130556,-122.0969444,Snohomish,WA,other,600,5 Orange/Red balls of light moved north to south over Snohomish WA then disappeared. +2013-07-04,35.5227778,-97.3769444,Spencer,OK,fireball,60,small round object moved across sky from s.e to n.w at high velocity without trail no noise, disappeared +2013-07-04,42.1583333,-83.5580556,Willis,MI,light,1200,Red lights in sky that moved closer and disappeared, along with a black balloon like object that floated down +2013-07-04,40.8,-96.6666667,Lincoln,NE,other,240,I looked directly overhead and saw large asterix * shaped yellow large light move horizontally +2013-07-04,45.7761111,-111.1761111,Belgrade,MT,fireball,300,Red fire balls in sky +2013-07-04,39.7391667,-104.9841667,Denver,CO,light,300,lights splitting into multiple orbs +2013-07-04,40.7258333,-73.5147222,Levittown,NY,sphere,1800,14 orange sphere shaped objects seen in the sky traveling northeast on Long Island on July 4th during fireworks. +2013-07-04,36.5816667,-86.5163889,Portland,TN,light,1200,Six orange/red balls of light fly over the tree line and dissappear in the clouds +2013-07-04,47.08,-122.0502778,Carbonado,WA,sphere,420,Fourth of July sighting of 5 craft and our communication attempt and response. +2013-07-04,41.1016667,-80.7647222,Austintown,OH,other,3600,Me and my family where having a little fire work session this 4th, 2013... When we paused to arrange more fireworks for lighting. I had +2013-07-04,41.85,-87.65,Chicago,IL,changing,120,We saw three red and orange orbs in a triangular form in the dark Chicago sky. +2013-07-04,47.9791667,-122.2008333,Everett,WA,triangle,120,A triangular craft with faint gray edges and one white light and one red light was seen traveling slowly at a very high altitude on the +2013-07-04,47.9791667,-122.2008333,Everett,WA,triangle,180,Triangular object seen moving east to west at an extremely high elevation on July 4, 2013 at 23:00 in Everett, WA. +2013-07-04,41.1411111,-73.2641667,Fairfield,CT,unknown,120,Glowing pinkish red object. Heading north and silent running. +2013-07-04,47.1052778,-104.7119444,Glendive,MT,circle,60,4 SUPER FAST ORANGE POLS SATING LIGHTS OVER GLENDIVE MT +2013-07-04,47.8211111,-122.3138889,Lynnwood,WA,fireball,180,Red ball of fire seen over Lynnwood. +2013-07-04,25.7738889,-80.1938889,Miami,FL,fireball,900,Bright orange-red firball, rose vertically out of fireworks (thought it was some special firework) then travelled horizontally silently +2013-07-04,43.5408333,-116.5625,Nampa,ID,other,180,Flying object over Nampa Idaho on the 4th of July +2013-07-04,47.1041667,-122.4333333,Spanaway,WA,fireball,300,23:00 (Pacific Time), two glowing spheres (like fire balls) were seen floating in the night sky. +2013-07-04,48.4111111,-114.3366667,Whitefish,MT,fireball,3600,Flaming orange orb moving at high rates of speed, often becoming very bright. +2013-07-04,43.3033333,-91.7855556,Decorah,IA,sphere,30,Amber colored object moved slowly and steadily across the sky for 20-30 seconds. +2013-07-04,47.6816667,-122.2075,Kirkland,WA,flash,300,5 orange balls over the Kirkland, WA +2013-07-04,40.6641667,-73.7088889,Valley Stream,NY,oval,20,Huge bright red/orange oval craft moved straight across the sky on July 4, 2013 at 11:15pm Long Island, NY +2013-07-04,26.9338889,-80.0944444,Jupiter,FL,sphere,120,Five red spheres in night sky over Jupiter Florida at 23:30. +2013-07-04,48.7597222,-122.4869444,Bellingham,WA,sphere,600,Red Orb lights over Bellingham and out over the bay. +2013-07-04,43.6136111,-116.2025,Boise,ID,light,300,Color morphing light over Ada County. +2013-07-04,47.5675,-122.6313889,Bremerton,WA,light,600,Red/orange lights over Kitsap County. +2013-07-04,47.5675,-122.6313889,Bremerton,WA,oval,420,Really obvious Light Crafts seen alongside Fireworks all over town July 4th 2013. +2013-07-04,42.5916667,-88.4333333,Lake Geneva,WI,cylinder,20,Bright orange - glowing object in the sky +2013-07-04,26.9758333,-82.0908333,Port Charlotte,FL,disk,180,I saw a flashing red circular UFO, moving across the sky. And it came to the middle and disappeared. +2013-07-04,40.5866667,-122.3905556,Redding,CA,light,60,Lighted craft hovers over Shasta Bally Mountain electronics. +2013-07-05,40.7141667,-74.0063889,New York City,NY,disk,60,http://www.youtube.com/watch?feature=player_embedded&v=391ioedxRPY The original video is in the archives of EARTHCAM +1929-07-05,43.6425,-118.6275,Buchanan (Or Burns),OR,disk,60,we were traveling east of burns,clmbing up thru a cut in the rim rocks when this object very slowely flew over the top of us, some 50 f +1947-07-05,39.9522222,-75.1641667,Philadelphia,PA,disk,300,Six craft observed that brought people out of their homes to look up. +1952-07-05,47.2530556,-122.4430556,Tacoma,WA,sphere,120,6 spheres flying in formation over military base in Tacoma Wash. the size of 747's. +1969-07-05,61.1308333,-146.3483333,Valdez,AK,disk,1020,Orange water +1972-07-05,44.7538889,-108.7566667,Powell,WY,fireball,60,My 2 young sons ages 7 and 9 were sleeping outside in the front yard. We lived in the country in Powell, Wyoming, Park County. We had +1972-07-05,37.8,-97.3180556,Park City,KS,disk,10,I saw a flying saucer hovering above me in the middle of the street. +1973-07-05,37.9577778,-121.2897222,Stockton (Intersection Of I-5 And I-580),CA,changing,10800,Witnessed numerous UFO's along I-5 from Stockton south to Tehachipi on busy holiday weekend. +1974-07-05,32.2986111,-90.1847222,Jackson,MS,triangle,900,Three bright lights positioned like a jet 's landing lights follow the car in Mississippi. +1976-07-05,40.6083333,-75.4905556,Allentown,PA,unknown,120,MY FAMILY AND I HAD BEEN UP WATCHING BI-CENTENNIAL FESTIVITIES FROM COAST TO COAST ON NATIONAL TELEVISION; TALL SHIPS, ETC. BY 2AM MOS +1977-07-05,21.9711111,-159.715,Kekaha,HI,circle,600,the circular object entered U.S. airspace and refused to achnowledge communications. was then forced into the water at the order of the +1979-07-05,27.9472222,-82.4586111,Tampa,FL,disk,1200,Tampa, Fl. 7/5/79, Saucer shape object lit from underneath moving west toward the international airport or Tampa bay. +1981-07-05,39.0397222,-90.1405556,Brighton,IL,light,3600,glowing tree stump scares campers in brighton IL in 1981 +1982-07-05,41.2794444,-72.5988889,Madison,CT,light,1800,Gigantic mass of light lit up the bay then followed me and split into two shooting lights over my head +1985-07-05,41.29,-73.9208333,Peekskill,NY,triangle,480,Triangle shaped Orange colored translucent object hovered near Indian Point Nuclear Power Plant emitting a loud whooshing sound. +1986-07-05,40.7683333,-73.7775,Bayside,NY,diamond,300,Dimond shape, with what appeared to be a ball located in the center of the ships underbelly. +1988-07-05,43.2127778,-75.4561111,Rome (Near),NY,sphere,900,Orange spheres near Rome, NY +1989-07-05,40.3977778,-105.0744444,Loveland,CO,cigar,60,Cigar Shaped Lighted Object +1990-07-05,41.8852778,-86.5894444,Sawyer,MI,disk,180,Alien Tests Soil. +1991-07-05,44.7341667,-122.1486111,Detroit,OR,light,30,small flash, streak of light, light stopped, then went other way slowly. +1992-07-05,39.12,-90.3283333,Jerseyville,IL,flash,3,super fast strobe light over jerseyville ,Il summer of 1992 +1992-07-05,39.9516667,-79.2716667,Barronvale,PA,formation,120,constellation begins manuvers +1993-07-05,41.1544444,-96.0419444,Papillion,NE,rectangle,360,unexplained craft +1996-07-05,37.9722222,-81.1488889,Oak Hill,WV,fireball,2631600,Burning glowing sphere(sparks) +1996-07-05,42.1013889,-72.5902778,Springfield,MA,circle,40,the object floted inplace, then circled the clouds at an increasing in speed. then speed off. It was red in color. +1996-07-05,39.9258333,-75.12,Camden,NJ,oval,120,strange orange circles or discs passing overhead +1996-07-05,40.4777778,-77.1308333,Newport,PA,unknown,120,Sighted two orange rectangles above treetops while driving on a county road. +1997-07-05,40.6277778,-96.9611111,Crete,NE,light,600,A bright light seen in the sky, when observed through binoculars seen as a bright light surrounded by three to five others +1997-07-05,43.9827778,-124.0986111,Florence,OR,triangle,10800,A very lg. triangular craft with 3 lights on eacg point. The bl./grn. translusant type color filled area betwn. ea. light. Low hum s. +1997-07-05,38.6366667,-90.0255556,Caseyville,IL,sphere,2,At first I thought it was a firework. But it was to high very high in the sky. I waited for another. Then I thought what was that? It w +1998-07-05,26.925,-82.3522222,Manasota Key,FL,formation,3600,Mother ship with smaller ships encircling moving slowly white lights. +1998-07-05,41.6916667,-94.3627778,Panora,IA,sphere,15,Iowa lake ufo +1998-07-05,43.6613889,-70.2558333,Portland,ME,triangle,1500,Triangle object made up of several balls of light, the back of the triangle was missing, almost like the lesser sign. +1998-07-05,47.8525,-92.6894444,Cook,MN,light,480,a point of light which flew zig-zags, loops and back and forth over an area of minnesotas north woods. it was nearly midnight. +1999-07-05,40.155,-75.8902778,Morgantown,PA,changing,1800,Strange gaseous lights almost like the video I've seen of the Aurora Borealis, only I'm in Pennsylvania and it occurred in the southern +1999-07-05,36.5133333,-75.9194444,Knotts Island,NC,unknown,1800,6 of us were in a boat in the dark and looking at the stars, we noticed what appeared to be like a vapor trail that was way up in the s +1999-07-05,40.7933333,-77.8602778,State College,PA,other,300,Very large dark cicular object with quad vabor trails with a pale blue tinge in coloring on the vapor trail. +1999-07-05,36.8527778,-75.9783333,Virginia Beach,VA,light,1200,It looked like a thick glowing trail of an airplane. It took hard right angle turns. It was enormous and miles high in the sky. +1999-07-05,38.9783333,-76.4925,Annapolis,MD,fireball,60,a fire ball or all thick tail of white or light yellow falling northwest for one minute and 3 minutes later went back up for 1 minute L +1999-07-05,41.85,-87.65,Chicago,IL,cigar,600,For 5 to 10 minutes two witnesses observe a stationary cigar shaped object not consitant with the shape of a blimp while driving down I +1999-07-05,46.9752778,-123.8641667,East Hoquiam,WA,unknown,600,I and my girlfriend saw very bright white light appear,hover,disappear quickly without sound.Few minutes later same thing happened,same +2000-07-05,47.6063889,-122.3308333,Seattle,WA,light,4,On my way home entering the Ballard bridge I look up in the sky to enjoy the scienery. At the same time I notice a bright green light p +2000-07-05,40.6677778,-75.6075,Schnecksville,PA,oval,5,On my bike when i saw a shiny silver oval not in motion and when i came out of some trees it was gone. +2000-07-05,32.7152778,-117.1563889,San Diego,CA,cigar,180,a cigar shaped object with a light at the end seen in La Jolla, which made no noise, and was pursued by military jets. +2000-07-05,35.1894444,-114.0522222,Kingman,AZ,other,120,The object remained above the atmosphere, dipped, became slightly larger, went back up and was gone. +2000-07-05,44.5647222,-123.2608333,Corvallis,OR,other,2,White, illuminated cresent seen at high velocity, lit up cloud, no sound. +2001-07-05,29.7630556,-95.3630556,Houston,TX,oval,1500,Moving bright red light becomes motionless, releases short burst of silvery filaments, then slowly disappears, straight up in the sky. +2001-07-05,41.1108333,-112.0252778,Clearfield,UT,egg,180,I SAW A FOOTBALL SHAPED OBJECT HOVERING JUST BELOW THE TREE LINE,IT ROSE UP ABOUT 50 FEET,THEN TOOK OFF STRAIGHT AHEAD AT A SUPER SPEED +2001-07-05,41.9438889,-85.6325,Three Rivers,MI,teardrop,60,It was a very bright silver color that cought my eye +2001-07-05,32.7947222,-116.9616667,El Cajon,CA,light,3600,green light crashed into star +2001-07-05,37.3394444,-121.8938889,San Jose,CA,diamond,1200,Diamond shaped object with white lights rotating in the middle as well as red,yellow,blue,orange lights flashing all over the object. +2001-07-05,33.7877778,-117.8522222,Orange,CA,light,2,flashing lights +2002-07-05,36.175,-115.1363889,Las Vegas (Leaving; Near Baker),NV,chevron,180,probably a secret from area 51 +2002-07-05,43.6613889,-70.2558333,Portland,ME,light,2.5,Aircraft with bright white blinking light. Velocity 200- 500 mph 0315 hrs +2002-07-05,40.0680556,-82.5197222,Granville,OH,circle,120,It was red the shape was like a circle it was very far away.It flew to the right and down in one movement.Then it went to the right and +2002-07-05,47.6063889,-122.3308333,Seattle,WA,light,1800,Bright light appeared to (perhaps) be hovering closely outside of earth's atmosphere +2002-07-05,36.9752778,-121.9522222,Capitola,CA,chevron,2,A wing shaped, lightly glowing (smoky white) thing flying out towards the Montery Bay each night for 2 nights in a row. +2002-07-05,33.4472222,-84.1469444,Mcdonough,GA,triangle,120,It made no sound and moved very slow! +2003-07-05,39.0997222,-94.5783333,Kansas City,MO,light,60,Saw five star-like lights of varying brightnesses moving from NNE to SSW. They were traveling at the same speed and direction. +2003-07-05,42.4405556,-76.4969444,Ithaca,NY,light,600,Light seen in night sky at a camp fire in itaca, ny +2003-07-05,41.3252778,-72.1936111,Niantic,CT,unknown,45,flashing light with incredible speed and manuverability +2003-07-05,36.0458333,-108.9655556,Crystal,NM,cigar,50,a silvery object was moving across the clear blue sky at a slow speed. +2003-07-05,34.09,-117.8894444,West Covina,CA,cross,300,I observed a large brightly object in the sky, it was sitting low, suddently the object increased its attitude. It looked like a cros +2003-07-05,37.9966667,-88.92,Benton,IL,sphere,120,07/05/03 REND LAKE IL, 4PM TWO ROUND SHINY LIGHTS MOVING SOUTH TO NORTH +2003-07-05,34.8027778,-86.9716667,Athens,AL,cylinder,120,Cylinder shaped object travelling at high rate of speed. No contrail, no sound. +2003-07-05,41.8083333,-71.3375,Seekonk,MA,other,10,Jet shaped object explodes in white flash. +2003-07-05,44.5338889,-70.4563889,Dixfield,ME,circle,2700,Green Circle gets chased, leaves cloud of red haze behind. +2003-07-05,39.6605556,-95.5261111,Horton,KS,triangle,420,Large triangle shaped object over Horton, KS moving east. +2003-07-05,42.0188889,-87.8027778,Niles,IL,flash,5,Aura ufo near chicago +2003-07-05,41.6030556,-93.7238889,Clive,IA,teardrop,180,It was about 10:30. I had finished watching a TV show and i walked into my bedroom. When I walked into the room there was a blue and ye +2003-07-05,39.4736111,-118.7763889,Fallon,NV,unknown,300,Space junk triangle traveling from West to East over Fallon, NV? +2003-07-05,34.8697222,-111.7602778,Sedona,AZ,triangle,120,A black triangle was seen flying over Sedona, AZ the evening of July 5, 2003 by six eyewitnesses +2003-07-05,35.3733333,-119.0177778,Bakersfield,CA,light,60,One dim light grouping with two other dim lights in a triangle pattern, switching directions +2004-07-05,29.4238889,-98.4933333,San Antonio,TX,rectangle,3,White object with glowing green around it moving at rapid pace from east to west. +2004-07-05,40.6358333,-78.2961111,Tipton,PA,unknown,30,I observed a white dot in motion for one minute that was not an aircaft. +2004-07-05,36.7477778,-119.7713889,Fresno,CA,changing,2700,Extreme sighting in Fresno California +2004-07-05,30.1763889,-85.8055556,Panama City Beach,FL,light,1800,Military exercises or UFO chasing? +2004-07-05,37.7780556,-81.1883333,Beckley,WV,light,30,a really bright star that moved about a second after we noticed it, at a slow speed till it crossed the horizon +2004-07-05,35.198055600000004,-111.6505556,Flagstaff,AZ,light,60,Observed what appeared to be a bright, slow satellite do a 180 degree turn. +2004-07-05,39.535,-119.7516667,Sparks,NV,circle,360,Bright white circle object that dimed and started to blink red and white, dissapeared! +2004-07-05,30.0797222,-95.4169444,Spring,TX,light,420,3 stars moving in a triangular formation accross a very clear sky +2005-07-05,34.09,-117.8894444,Covina,CA,circle,600,circle on fire hiding behind tree, hovering very low making no noise at all.watching me as i loaded up the family to go to work. have v +2005-07-05,37.5019444,-79.1280556,Monroe,VA,unknown,2100,They were in a cluster when I first saw them then a minute or so later dispersed in all directions. +2005-07-05,39.0991667,-76.8486111,Laurel,MD,light,600,Heard sounds of humming over the trees for one hour early morning. Saw lights above the trees moving and flashing beams on the ground +2005-07-05,30.925,-88.59,Lucedale,MS,unknown,5,heard pup barking and walked outside to see something oddly shaped in neibors yard.at approx.4;30am. +2005-07-05,45.7761111,-111.1761111,Belgrade,MT,oval,30,DISAPPEARING CRAFT ALONG THE BRIDGER RANGE +2005-07-05,29.8311111,-92.3,Forked Island,LA,circle,24,orange color circle moving slowly then faster until it just disapeared. I was outside to take some pictures of the clouds. I went look +2005-07-05,39.3508333,-101.7097222,Goodland,KS,formation,900,SEVERAL LIGHTS HANGING IN THE SKY OVER TOWN +2005-07-05,28.835,-95.6644444,Sargent,TX,circle,8,I was on my way home from a fishing trip in Sargent Texas, I was on FM 2611 RD Before you get to the Sweeny exit, I was heading toward +2005-07-05,28.835,-95.6644444,Sargent,TX,light,10,I saw a misterious giant blue ball of light like a helicopter flood light but it wasnt bright as to hurt your eyes. +2005-07-05,38.4405556,-122.7133333,Santa Rosa,CA,sphere,30,Bright White/ blue sphere moved away into darkness of sky +2005-07-05,48.7597222,-122.4869444,Bellingham,WA,triangle,15,V shaped orbit pass over of millitary craft no sound or lights ......strange fast , stealthy ....... +2005-07-05,44.7630556,-85.6205556,Traverse City,MI,triangle,120,Triangular lights spotted over Traverse City then dissappeared in a matter of seconds. +2006-07-05,43.5555556,-73.4041667,Whitehall,NY,other,900,Tall octagon object in the sky during lightining storm +2006-07-05,41.0333333,-74.6388889,Sparta,NJ,flash,10800,2 Flashing WHite Lights Over Sparta New Jersey, Changing Direction and Moving Very Fast +2006-07-05,44.0716667,-88.2988889,Stockbridge,WI,triangle,180,Sighting over lake Winnebago. spooted and saw for 3 min!!! +2006-07-05,38.0280556,-121.8836111,Pittsburg,CA,disk,1800,holyMOTHERLODE OF A MOTHER SHIP +2006-07-05,42.2708333,-83.7263889,Ann Arbor,MI,rectangle,30,Rectangular box-shaped UFO spotted northwest of Ann Arbor, Michigan in the summer of 2006 +2006-07-05,40.9644444,-76.8847222,Lewisburg,PA,teardrop,10,An object shaped like a teardrop on its side flying at incredible speeds over rural central Pennsyvlania countryside. +2006-07-05,32.2216667,-110.9258333,Tucson,AZ,light,180,Helicopter Orbits Bright Red Light(s) +2006-07-05,34.7997222,-87.6772222,Florence,AL,light,180,Intense Bright Object that flew over our house & field. +2006-07-05,32.2216667,-110.9258333,Tucson,AZ,light,900,Red light hovering over Tucson +2007-07-05,38.5611111,-94.1911111,Garden City,MO,light,10,i seen something that flew across the night sky very fast. +2007-07-05,41.9833333,-71.3333333,North Attleboro,MA,disk,1200,Friends and i spot UFO +2007-07-05,41.85,-87.65,Chicago,IL,disk,300,two objects near O'Hare, July 2007 +2007-07-05,40.1302778,-111.5777778,Mapleton (Nearby),UT,oval,20,Grey Oval over interstate 15, Utah County +2007-07-05,41.2052778,-96.0422222,Ralston,NE,light,600,Ten starlike objects seen in daylight just s of Omaha - most stationary but some moved various directions +2007-07-05,39.6136111,-86.1066667,Greenwood,IN,light,120,5 orange lights moving slowly, then faster, in somewhat of a formation for about 2 - 3 minutes. +2008-07-05,27.4986111,-82.575,Bradenton,FL,other,900,bright orange dancing lights over bradenton +2008-07-05,35.1677778,-114.5722222,Laughlin,NV,fireball,4,Green ball of light hovering over Colorado River in Laughlin NV +2008-07-05,34.0522222,-118.2427778,Los Angeles,CA,unknown,3600,LAX AREA BRIGTH LIGHT MOVE IN CIRCULAR MOTION. VERY HIGH +2008-07-05,40.7141667,-74.0063889,New York City (Staten Island),NY,disk,60,in july of that date my little brother was sleeping, and he woke up and had a very powerful impuse to just look out the window and the +2008-07-05,33.6305556,-112.3325,Surprise,AZ,light,10,A bright blue light n the sky and quckly shot accross the sky. 2 witness +2008-07-05,36.8688889,-94.3677778,Neosho,MO,sphere,360,Rotating Sphere with a light in the middle on one area +2008-07-05,38.0672222,-117.2291667,Tonopah,NV,changing,3600,Jelly fish tendrils pulsing lights in glowing formation on desert horizon. +2008-07-05,42.7919444,-83.6277778,Holly,MI,other,10,Strange Grey Chupacabra Creature Spotted in Holly Michigan +2008-07-05,42.7325,-84.5555556,Lansing,MI,light,180,a red light, that going east, and all of a sudden, took off north and up at a hihg speed, gone in seconds +2008-07-05,41.5430556,-82.7491667,Lakeside,OH,triangle,600,It was one object triangular in shape, with three circular tubes of flame, moving slowly. +2008-07-05,37.7058333,-122.4608333,Daly City,CA,disk,2,smooth shiny silver metal craft +2008-07-05,43.5072222,-86.3475,Rothbury,MI,fireball,300,Large flame in sky, turns and dissapears upwards into darkness during Rothbury Festival. +2008-07-05,42.3086111,-83.4822222,Canton,MI,changing,120,silvery twinkle and slowly turned into a silvery doughnut shaped liquidly fluid like structure +2008-07-05,42.7044444,-73.9119444,Guilderland,NY,circle,900,Multiple witnesses see UFOs near Albany NY +2008-07-05,42.9261111,-89.3844444,Oregon,WI,unknown,5,Sighting in Oregon WI that appeared very unusual and can't be explained. +2008-07-05,35.47,-95.5227778,Checotah,OK,unknown,60,White-Silver Shining Object in Oklahoma Sky +2008-07-05,42.6583333,-83.15,Rochester Hills,MI,other,300,Sawjagged brown / metallic object rotating in sky - hovering then accelerating and moving - saw it through binoculars. +2008-07-05,41.5119444,-87.9655556,New Lenox,IL,fireball,1200,Red -Orange object in early evening sky +2008-07-05,33.9963889,-96.2297222,Blue,OK,sphere,120,A low, small hovering red orb with a white aura around it. +2008-07-05,37.925,-75.6647222,Sanford,VA,sphere,120,glowing sphere in sky +2008-07-05,38.4783333,-82.6380556,Ashland,KY,circle,300,Three orange lights viewed over Kentucky +2008-07-05,41.3455556,-88.8425,Ottawa,IL,diamond,300,We seen two white coma shaped smudges in sky followed by two dirty orange lights hovering. +2008-07-05,39.6363889,-74.8027778,Hammonton,NJ,light,300,an unusual orange/red object over hammonton nj... +2008-07-05,33.9608333,-83.3780556,Athens,GA,light,300,I saw a silent orange/red pulsing light move across the sky slowly, hover, change color twice, and disgorge a smaller pulsing light. +2008-07-05,43.3380556,-89.0152778,Columbus,WI,light,300,Two bright stars, not aircraft, move in unison, fade and vanish within 5 minutes at same time. +2008-07-05,31.0980556,-97.3425,Temple,TX,other,30,Slow moving large flying wing shape with mutiple circles in formation on underside, it was silent +2008-07-05,42.0111111,-87.8405556,Park Ridge,IL,sphere,1320,((HOAX??)) It looked like lightening in a huge circular sphere. +2008-07-05,41.2402778,-75.945,Plymouth,PA,oval,180,Red orange in color pulsing oval slowly raised up and moved slowly across the sky stopped and slowly raised up out of sight. +2008-07-05,42.9994444,-83.6163889,Burton,MI,fireball,900,Fireball flies in the sky +2008-07-05,34.4438889,-116.9669444,Lucerne Valley,CA,unknown,6,10:51pm 07/05/08 extremely fast and went well above and beyond normal air traffic that was flying at the same time my fiance had quit s +2008-07-05,39.1638889,-119.7663889,Carson City,NV,light,5,A big white light flying across my bedroom window +2009-07-05,43.0125,-83.6875,Flint,MI,light,60,Extremely bright golden/yellow globe-shaped object spotted traveling west to east at midnight in Genesee County, MI. +2009-07-05,47.3811111,-122.2336111,Kent,WA,oval,120,Two glowing orange objects slowly moved north to south over Kent Washington, then one accellerated south and the other went straight up +2009-07-05,40.5866667,-122.3905556,Redding,CA,disk,180,Rotating discs with colored lights seen ongoing for 3 weeks in July 2009 over N California +2009-07-05,41.7075,-86.895,Michigan City,IN,disk,7200,3 lighted circular air craft above Lake Michigan. ((NUFORC Note: Possible sighting of "twinkling" star?? PD)) +2009-07-05,45.8641667,-122.8052778,St. Helens,OR,oval,600,We saw an oval shape green luminescent light that shot into the sky to a pinpoint of light like a star then moved around in the sky. +2009-07-05,30.505,-97.82,Cedar Park,TX,changing,120,black noiseless craft changing from round to having two angles with aura traveling at steady speed from west to east. +2009-07-05,38.9536111,-94.7333333,Lenexa,KS,light,120,this object looked like a star but orbiting and then it disappeared in thin air. +2009-07-05,48.7597222,-122.4869444,Bellingham,WA,other,2,I have video footage of UFO activity. +2009-07-05,39.6375,-106.0613889,Silverthorne,CO,sphere,600,Spherical objects observed moving through trees, probing the area +2009-07-05,32.5041667,-94.5738889,Hallsville,TX,cigar,25,Hallsville TX pipe or tube shaped UFO as a storm moved in from the west. +2009-07-05,45.0025,-101.2330556,Eagle Butte,SD,rectangle,1800,7 Flaming flying object's the night before an important Native ceremony. +2009-07-05,25.7738889,-80.1938889,Miami,FL,circle,360,A disc-shaped craft was spotted while driving. +2010-07-05,36.4586111,-83.8719444,Speedwell,TN,other,45,July 4, 2010 13:00- A group of us headed out in a Pickup truck to watch fireworks on a mountain side.22:00-23:00- Fireworks watched +2010-07-05,47.9791667,-122.2008333,Everett,WA,circle,240,Wobbly orbs flying east then ascending at great speeds. +2010-07-05,45.0483333,-122.9572222,Brooks,OR,sphere,300,3 chrome colored spheres hovering in one position over a field. Approx 100 feet high. +2010-07-05,36.5297222,-87.3594444,Clarksville,TN,oval,300,Oval fireball hover and headed north over clarksviile, tn +2010-07-05,28.2916667,-81.4077778,Kissimmee,FL,disk,60,i seen a craft about the size of a building flying above hwy 192 +2010-07-05,28.2916667,-81.4077778,Kissimmee,FL,disk,60,i seen a ufo with circling lghts above hotel +2010-07-05,35.6225,-117.67,Ridgecrest,CA,light,30,White starlike object that pulsed twice while changing directions +2010-07-05,40.4063889,-75.5022222,East Greenville,PA,fireball,180,A bright red glowing orb which moved from about 150ft to 20ft, disappearing below the tree line. +2010-07-05,37.6841667,-77.8855556,Goochland,VA,light,7,Bright light over Goochland VA +2010-07-05,39.0347222,-87.1658333,Linton,IN,fireball,240,Orange glowing ball going across the sky about 50ft above me! +2010-07-05,42.1816667,-88.3302778,Lake In The Hills,IL,circle,120,circular orange glowing object moving fast then hovering for a few seconds. +2010-07-05,42.7005556,-74.9247222,Cooperstown,NY,light,5,Red glowing light crosses the night sky at very high speeds with a curving path over upstate New York. +2010-07-05,32.7252778,-97.3205556,Fort Worth,TX,sphere,120,texas +2010-07-05,36.0725,-79.7922222,Greensboro,NC,disk,15,There were 5 bright lights and it was not making any noise like a plane does. +2010-07-05,45.5236111,-122.675,Portland,OR,light,300,Multiple lights. Red in color. Seen in SE portland. Toward SW portland. About 8 or so. Faded in and out of sight. +2010-07-05,40.6547222,-73.6722222,Lynbrook,NY,oval,120,Just happened to look up and noticed in the southerly sky what I thought was a plane. But it was too bright and it was orangish. It mov +2011-07-05,43.5977778,-84.7675,Mount Pleasant,MI,circle,300,2 red objects moving across the sky of Mount Pleasant Michigan +2011-07-05,41.6619444,-86.1586111,Mishawaka,IN,light,90,2/4 orange Circle's of light over Mishawaka ,Indiana +2011-07-05,36.7477778,-119.7713889,Fresno,CA,triangle,1200,Strange lights/UFO's over Fresno,Ca near the airport. +2011-07-05,40.1738889,-80.2463889,Washington,PA,changing,7200,At approx. 1:00am something caught my eye it was a clear night you could see all the +2011-07-05,30.2669444,-97.7427778,Austin,TX,triangle,180,A couple of friends and I were enjoying independence day when we looked up at The sky and saw about 5 triangular objects with only the +2011-07-05,40.7355556,-74.1727778,Newark,NJ,fireball,180,Around 2:45 AM driving by Branch Brook Park Newark, NJ. Spotted red firey/glowing object slowly coming down traveling SE. +2011-07-05,47.2530556,-122.4430556,Tacoma,WA,oval,60,Oval-shaped craft blinked out of the sky +2011-07-05,33.7838889,-116.9577778,San Jacinto,CA,sphere,540,NA +2011-07-05,42.4091667,-82.8919444,Grosse Pointe Farms,MI,sphere,5,Two stationary shiny spheres approximately 18 inches apart maintaining their proximity when the moved horizontally very quickly +2011-07-05,37.2152778,-93.2980556,Springfield,MO,unknown,60,Fire ball like object over springfield, mo +2011-07-05,34.3991667,-118.9172222,Fillmore,CA,rectangle,2,Rectangular bright object on mountain in fillmore, californina +2011-07-05,42.0144444,-86.5194444,Stevensville,MI,egg,60,Four Glowing craft in formation near stevensville MI +2011-07-05,41.1702778,-76.8772222,Montgomery,PA,sphere,10,While walking my dog I witnessed an orange ball moving North, when directly overhead, did a very fast upward tight spiral and disappere +2011-07-05,40.6905556,-76.2625,Minersville,PA,circle,90,Bright white and Red object zig zags across the sky and vanishes +2011-07-05,41.85,-87.65,Chicago,IL,triangle,5,Three white strobing lights in a triangular pattern +2011-07-05,33.5508333,-79.0416667,Murrells Inlet,SC,oval,1800,Ufo and Uso in same frame video recorded. +2011-07-05,33.4483333,-112.0733333,Phoenix,AZ,unknown,180,((HOAX??)) A Shadow Ship, A Being, And Unexplained Beams Glassing The Sands In Arizona. Detailed Story's Of A Desert Boy. +2011-07-05,46.9416667,-68.1211111,New Sweden,ME,triangle,420,Very bright red light, switching to white, on 3 triangular shapes connect to one form. Hovered over the tree line as well as flew over. +2012-07-05,30.155,-95.2111111,New Caney,TX,fireball,20,Orange fireball slowly floats across the night sky. +2012-07-05,30.4380556,-84.2808333,Tallahassee,FL,sphere,5,I saw two green orbs floating next to each other, metal prongs jut out from these orbs and these orbs spin and jut into the sky. +2012-07-05,43.6630556,-116.6863889,Caldwell,ID,fireball,180,Orange/red, low flying spherical craft seen 200 yards away from 10th ave S. and Castle Way. +2012-07-05,47.2530556,-122.4430556,Tacoma,WA,light,300,I keep a vigilant watch, I had an out of body experience in 1979 and I was aboard a space craft and greeted and spoken two by two human +2012-07-05,34.2255556,-77.945,Wilmington (Wrightsville Beach),NC,changing,310,Moving "stars" and shifting shapes at Wrightsville Beach. +2012-07-05,33.9533333,-117.3952778,Riverside,CA,fireball,120,Bright orange light floating across the sky +2012-07-05,37.6194444,-84.5780556,Lancaster,KY,circle,1800,4 lights/orbs rotating. ((NUFORC Note: We suspect advertising lights. PD)) +2012-07-05,38.3980556,-85.755,Sellersburg,IN,fireball,180,No sound was lager light like fire got my kid went back and it took off fast and then gone +2012-07-05,47.4705556,-122.3455556,Burien,WA,fireball,120,Orange and yellow fireball, seen by 3 in Burien, WA. +2012-07-05,41.4294444,-88.2286111,Channahon,IL,light,30,3 amber glowing lights crossed the sky silently around 9:25pm. Have video and pics. +2012-07-05,41.85,-87.65,Chicago,IL,circle,240,Observed and photographed five silent stationary discs. Two with red lights underneath and three with white lights. +2012-07-05,39.7377778,-76.7016667,New Freedom,PA,light,300,UFO sighting over a carnival in Southern York County, Pennsylvania, caught on camera. +2012-07-05,37.8280556,-92.1775,St. Robert,MO,fireball,20,fireball appears and disappears in less then twenty seconds. +2012-07-05,47.4705556,-122.3455556,Burien (Seattle),WA,circle,300,Five red/orange round objects flying one after the other North to South, no sound. +2012-07-05,45.1872222,-87.1208333,Sister Bay,WI,formation,300,5 individual white lights, first two lights one after another, last three lights in a triangle formation +2012-07-05,47.8108333,-122.3761111,Edmonds,WA,fireball,120,Orange sphere, with red aura and orange rays glowing out if it. It lasted about 2- minutes, amazing. +2012-07-05,39.2902778,-84.5041667,Forest Park (Cincinnati),OH,circle,180,Orange odd shaped ball, that just seemed to be coasting the sky. Not real high. And you could hear it above you. +2013-07-05,41.6819444,-85.9766667,Elkhart,IN,fireball,40,object was bright red , and looked like a ball fire. Then slowly got lighter and looked like a start then completely vanished +2013-07-05,26.6402778,-81.8725,Fort Myers,FL,fireball,2400,Around 9.00 after the fire work started 1 orange fire ball like a big start appeared, and then a second one . +2013-07-05,40.0455556,-86.0086111,Noblesville,IN,oval,180,Orange Red UFO gliding over neighborhood +2013-07-05,48.1183333,-123.4294444,Port Angeles,WA,sphere,300,12 large bright red spheres line up low in the sky and travel slowly across the Midnight sky towards Canada. +2013-07-05,47.573055600000004,-117.6811111,Medical Lake,WA,sphere,300,Medical Lake, Washington, UFO sighting. +2013-07-05,33.6305556,-112.3325,Surprise,AZ,triangle,300,July 4TH to 5th 2013 ufo, 3 triangle shapes moving in triangle formation over nw phoenix metro area. +2013-07-05,41.3144444,-81.8358333,Strongsville,OH,unknown,1,Single vibrant blue streak of light flies across the sky in one second in silence. +2013-07-05,41.88,-88.0077778,Lombard,IL,fireball,210,Two bright orange/red colored spider looking things in the sky just outside the Lombard fest around 1:00 am +2013-07-05,42.8416667,-70.8611111,Salisbury,MA,circle,80,Spherical steady moving object seen over Salisbury Beach +2013-07-05,39.9536111,-74.1983333,Toms River,NJ,light,30,Slow movinh Orange ball of light in nj +2013-07-05,39.1141667,-94.6272222,Kansas City,KS,cross,240,Traveling at a high rate of speed orange red traveling out of the south going north +2013-07-05,43.0813889,-88.9116667,Lake Mills,WI,sphere,60,A very bright orange light passed overhead from south to north at a high rate of speed silently traversing the sky completely. +2013-07-05,44.2563889,-70.2566667,Turner,ME,sphere,240,Pair of red orbs moving very slowly east to west above southern horizon. +2013-07-05,33.5205556,-86.8025,Birmingham,AL,fireball,60,Bright orange fireball seen for a about a full minute. +2013-07-05,37.7588889,-77.4802778,Ashland (West Of; Hanover County),VA,fireball,120,Ball/cylinder with red/orange glow/fire +2013-07-05,41.8672222,-90.1594444,Fulton,IL,fireball,1800,South to north estimated 200 miles per hour and glowing bright red to orange. Steady altitude and speed with no sound. The last object +2013-07-05,30.8325,-83.2786111,Valdosta,GA,fireball,180,Fast bright fireball that changed directions. +2013-07-05,40.0638889,-80.7211111,Wheeling,WV,fireball,600,Round red-orange lights rising in the distant sky, hovering briefly then fading away. +2013-07-05,41.5244444,-90.5155556,Bettendorf,IA,circle,120,Driving on 53rd st, Bettendorf Iowa headed east saw 2 orange lights in the sky. One was hovering lower than the other, diagonally. Me & +2013-07-05,47.8411111,-120.0152778,Chelan,WA,light,30,Orange light traveling over Lake Chelan WA at 20ꯠ MPH with a course change. +2013-07-05,28.1875,-82.7397222,Holiday,FL,fireball,60,Bright orange fireball going very fast and no sound. +2013-07-05,41.3325,-73.2077778,Monroe,CT,light,2400,Slow moving steady orange lights, over 25 total over a 30 minute period, north of Monroe CT +2013-07-05,27.895,-81.9736111,Mulberry,FL,light,60,Sighting that appeared to be an airplane at first but moved too quickly and darted back and forth to be an airplane. +2013-07-05,42.9105556,-87.8605556,South Milwaukee,WI,circle,10,Orange spherical light traveling from south to north. +2013-07-05,41.6061111,-73.1186111,Watertown,CT,circle,600,4 Glowing Orange Balls of Lights moving in formation then breaking formation and moving off very fast! +2013-07-05,40.29,-76.9341667,Enola,PA,sphere,120,Red/orange orb seen over Enola, Pennsylvania. +2013-07-05,32.2047222,-95.8552778,Athens,TX,fireball,600,REPORT FROM FORMER U. S. ASTRONAUT: 6 orange orbs moving E to W, sighted over a 10 min. period in N TX. +2013-07-05,38.8002778,-90.6263889,St. Peters,MO,disk,30,Stepped outside to watch fireworks and saw more than I bargained for. +2013-07-05,47.6588889,-117.425,Spokane,WA,fireball,120,Nighttime fireball on July 5 +2013-07-05,43.1836111,-89.2136111,Sun Prairie,WI,circle,900,Orange Glowing Objects Appear in Night Sky - Madison WI 070513 +2013-07-05,33.8158333,-78.6802778,North Myrtle Beach,SC,changing,1800,Red, White and Blue hovering flying object that changed shapes and orientation over a 30 minutes period over North Myrtle Beach, SC. +2013-07-05,34.2694444,-118.7805556,Simi Valley,CA,circle,1200,Blue, green light emittting object seen moving erratically over Simi Valley, Ca. +2013-07-05,40.7072222,-73.6763889,Franklin Square,NY,circle,60,Bright red circular object over Franklin Square Long Island +2013-07-05,45.9725,-95.2919444,Carlos,MN,sphere,120,Brilliant red star like object in the sky +2013-07-05,36.8527778,-75.9783333,Virginia Beach,VA,circle,300,Dark circle with orange light above no sound, no flashing, slowly crossing sky. +2013-07-05,41.6752778,-85.7061111,Middlebury,IN,circle,300,I saw a large glowing light in the south sky. It looked similar to red burning chacoals and kind of flickered. I saw one in the same ar +2013-07-05,44.6388889,-70.0161111,New Sharon,ME,unknown,300,Circular object with three lights underneath, Rt #2 New Sharon, Me. +2013-07-05,47.7180556,-116.9505556,Post Falls,ID,changing,300,Three bright orange objects changing to ghost like film with clean oval edges. +2013-07-05,42.4775,-83.0277778,Warren,MI,triangle,300,3 orange lights in a triangle not blinking no sound,moving slowly and dissapeared, saw twice in one week,nothing like a plane? +2013-07-05,41.0530556,-82.7263889,Willard,OH,fireball,180,Three redish/orange fireball seen, then disappeared. +2013-07-05,35.0525,-118.1730556,Mojave,CA,triangle,3,Massive triangle object in the night sky. +2013-07-05,39.5522222,-84.2333333,Springboro,OH,circle,30,SEEN A RED FIREBALL CIRCULAR SHAPE. AT FIRST I THOUGHT I WAS AN AIRCRAFT ON FIRE. IT WAS TRAVELING WEST AND THEN CHANGED TO A NORTHERN +2013-07-05,41.4755556,-81.8394444,Rocky River,OH,triangle,180,Orange glowing arrowhead observed for approximately 3 minutes in nighttime sky over Cleveland and heading west. +1965-07-06,42.7022222,-83.4027778,Waterford,MI,changing,5,A "shooting star "did an impossible back and forth zigzag pattern +1966-07-06,29.6236111,-81.8905556,Interlachen,FL,fireball,60,orange firey ball rising from ground up into sky +1980-07-06,33.6219444,-84.3691667,Forest Park,GA,disk,30,very close encounter +1981-07-06,40.8616667,-80.2866667,Ellwood City,PA,sphere,20,Gold shaped sphere hovering in the sky at a few thousand feet. +1982-07-06,39.3994444,-84.5613889,Hamilton,OH,light,120,the lights streaked across the sky , one right after the other, there were about 15 of them +1989-07-06,42.7022222,-83.4027778,Waterford,MI,light,120,1989 bright light high in the sky still then vanishes, felt like I had lost track of time. +1993-07-06,34.7961111,-118.8516667,Gorman (15 Miles North Of, I-5),CA,sphere,60,Driving on I-5 at night. A spherical object the size of a bowling ball swooped down in front of the windshield from behind and to the +1996-07-06,47.6794444,-122.8969444,Brinnon,WA,oval,15,I saw a glowing object of 10ft. high and 60ft. long traveling in a straight line, making no sound. +1998-07-06,41.6819444,-85.9766667,Elkhart,IN,cigar,8,Silver Cigar-Shaped Object, Elkhart, IN, +1998-07-06,44.0805556,-103.2305556,Rapid City,SD,other,10,Looked towards a thunderstorm approaching from the west. First saw a bright shape in the sky in the northwest direction. The light wa +1999-07-06,41.7797222,-71.4377778,Cranston,RI,egg,10,A silvery egg-shaped craft is seen over a highway. +1999-07-06,46.8219444,-123.095,Rochester (3 Miles East Of, Hwy 12 W),WA,egg,10,I was driving east on hwy 12, there were a few light clouds in the sky, I saw an ovoid shaped object at about 5-7000 ft. If I extended +1999-07-06,47.2530556,-122.4430556,Tacoma,WA,cigar,240,driving, saw cigar craft. Moving slowly. Began to fall--started wobbling. Corrected self. Flew off. +1999-07-06,46.6022222,-120.5047222,Yakima,WA,sphere,720,We watched a round , silver or white object hoovering between Yakima and Ellensburg Wa. It was hard to see with the naked eye so I got +1999-07-06,41.6997222,-93.0477778,Newton,IA,sphere,60,Large light in southwest sky +1999-07-06,41.2586111,-95.9375,Omaha (~ 60 Mi. Nw Of),NE,triangle,300,Triangular object observed +1999-07-06,35.7163889,-77.265,Stokes County,NC,chevron,180,Observed object moving rapidly across the sky. Very bright lights, I could easily see a distinct > shape. +1999-07-06,46.2397222,-119.0994444,Pasco,WA,flash,180,At about 10:40pm I was walking home from work and saw a bright fast moving satelite moving from the south to the north. It was travelin +1999-07-06,44.2780556,-88.2719444,Kaukauna,WI,triangle,10,A silent, triangular shaped object with a faint reddish light in each of its 3 corners flew directly over me. +2000-07-06,40.6883333,-75.2211111,Easton,PA,sphere,10,object flashed on then blinked out after 10 seconds +2000-07-06,42.2711111,-89.0938889,Rockford,IL,changing,3,small orange light suddenly changed shape and disappeared! +2000-07-06,39.8680556,-104.9713889,Thornton,CO,cylinder,300,Long yellowish cylinder, narrow in the middle, passes steadily and slowly east of DIA, then vanishes after halfing. +2000-07-06,39.8680556,-104.9713889,Thornton,CO,cylinder,600,Yellow cylinder heading east bound towrds DIA. +2000-07-06,38.9516667,-92.3338889,Columbia,MO,triangle,600,07/06/00 21:30 Columbia, MO Huge black triangle, bright lights at tips hovering over city 5-10 minutes. Slowly moving east then gone! +2000-07-06,34.8986111,-117.0219444,Barstow,CA,cigar,600,Two white (non blinking) lights at the end of a short cigar shaped object...red light came on between them. +2000-07-06,40.7608333,-111.8902778,Salt Lake City,UT,other,20,a boomerang shaped object moving northwest to the southeast over salt lake city. +2000-07-06,40.6955556,-73.3261111,Babylon,NY,formation,900,My girlfriend and I saw a formation of 3 lights fly overhead and re-enter space one by one. +2001-07-06,45.1158333,-123.2061111,Amity,OR,light,900,strange lights in evening sky +2001-07-06,39.4141667,-77.4108333,Frederick,MD,light,300,the object was spinning in a tight circular configuration +2001-07-06,40.6083333,-75.4905556,Allentown,PA,rectangle,1200,rectangular object extended spiral tail (black and silver) and climbed to about 12k feet in under two minutes, no noise or lights. +2001-07-06,38.9555556,-90.1866667,Godfrey,IL,oval,60,We saw a craft that flew way too fast for any jet that current technology can produce. +2001-07-06,38.5816667,-121.4933333,Sacramento,CA,sphere,600,Silver Ball in Sacramento Sky (carmichael) 07/06/01 +2001-07-06,39.9338889,-74.8913889,Mt Laurel,NJ,circle,60,Small round distant object appearing and disappearing +2002-07-06,40.7608333,-111.8902778,Salt Lake City,UT,other,4,On the morning of July 6񫺒 3 sets of clusters over Salt Lake city. +2002-07-06,30.8469444,-90.1530556,Franklinton,LA,triangle,90,We spotted a UFO we think! +2002-07-06,43.0116667,-88.2313889,Waukesha,WI,circle,5,A dot of light moving very quickly and quietly +2002-07-06,43.0116667,-88.2313889,Waukesha,WI,fireball,10,There was a bright, but small light near the horizon that slowly dissipated to nothing. +2002-07-06,29.7630556,-95.3630556,Houston,TX,triangle,11,Black Triangle with Green Lihgts! +2002-07-06,38.9583333,-122.6252778,Clearlake,CA,fireball,900,Fire ball object at high altitude heading north to south over Lake County California . +2002-07-06,38.8055556,-123.0161111,Cloverdale,CA,other,900,a ufo in the sky at night +2002-07-06,39.1619444,-84.4569444,Cincinnati,OH,triangle,5,UFO at Cincinnati Reds stadium +2002-07-06,40.1672222,-105.1013889,Longmont,CO,circle,90,Three small circles of light in a constantly changing pattern. +2002-07-06,40.1672222,-105.1013889,Longmont,CO,circle,90,Five circular bluish-white objects moving north to south, 3 first followed by two more in a vertical pattern. +2002-07-06,41.7355556,-122.6333333,Yreka,CA,sphere,10,Two very large, very bright lights arcing across the horizon in succession... +2002-07-06,39.2805556,-80.3447222,Clarksburg,WV,unknown,360,A "star" that wasnt a star +2002-07-06,40.4405556,-79.9961111,Pittsburgh,PA,rectangle,600,I noticed a light flashing in the night sky just over the little dipper. At first glance it seemed like an airplane but the more I loo +2003-07-06,44.9430556,-123.0338889,Salem,OR,other,65,V shaped, Tilted and rotating pale white craft. No noise. +2003-07-06,36.9486111,-84.0969444,Corbin,KY,formation,60,wile fishing last night a formation of 3 craft flew across the sky +2003-07-06,33.0461111,-96.9938889,Lewisville,TX,cylinder,20,While Driving with my family, South on I-35 over Lewisville Lake in Texas - we observed a shiny disk (55 degrees) on the southern sky. +2003-07-06,41.8097222,-89.965,Morrison,IL,disk,6,I couldn't believe what I was seeing.. +2003-07-06,41.4038889,-88.1116667,Elwood,IL,disk,2,Disc shaped object observed travelling at a high rate of speed in thunderstorm +2003-07-06,44.9430556,-123.0338889,Salem,OR,circle,900,saw 11 circle object heading due south a a very slow pace in a group formation than disappeared +2003-07-06,42.375,-71.1061111,Cambridge,MA,diamond,30,possible fighter jet closely tailing an airliner. +2003-07-06,26.3394444,-81.7788889,Bonita Springs,FL,light,300,Bright white objects in night sky seen in SW Florida +2003-07-06,43.1547222,-77.6158333,Rochester,NY,circle,300,Very bright, star like object moving across the sky--backing up and making very sharp turns and circles. +2004-07-06,36.175,-115.1363889,Las Vegas,NV,triangle,600,black triangle rose above mountaintops hovered and shot off at very high speed returned minutes later and landed near the same spot +2004-07-06,47.7575,-122.2427778,Kenmore,WA,triangle,240,Object was very large, very high, and very fast. +2004-07-06,36.5138889,-119.5530556,Kingsburg,CA,triangle,300,Triangler formation, Looked as of stars, Equal moved, Blended in with stars +2004-07-06,41.85,-87.65,Chicago,IL,fireball,20,brilliant beautiful orb over lake +2004-07-06,41.4994444,-81.6955556,Cleveland,OH,unknown,20,Numerous sightings over Cleveland +2004-07-06,40.7141667,-74.0063889,New York City (Brooklyn),NY,circle,480,The object moved from south to north at a very fast rate of speed stopped briefly did cicles then disappeared +2004-07-06,36.0583333,-90.4972222,Paragould,AR,changing,6,Dancing lights merge and seperate while traveling west to east in a matter of seconds. +2004-07-06,38.0888889,-76.3622222,Scotland,MD,rectangle,7,Two rectangle objects fly over Southern Maryland +2005-07-06,43.9144444,-69.9658333,Brunswick (Mere Point Bay),ME,light,3600,4 star shaped lights appearing over Mere Point bay ~ Brunswick ME +2005-07-06,43.9791667,-71.1208333,Conway,NH,light,900,While waching aurora borealis i saw a strange light dancing around the sky +2005-07-06,36.8527778,-75.9783333,Virginia Beach,VA,oval,3600,I was on the beach really early in the am, with my friend arguing about the diff colors the stars emits when they burn at diff temps, g +2005-07-06,36.6102778,-88.3147222,Murray,KY,cigar,300,The object was vary slow and slient +2005-07-06,36.7477778,-119.7713889,Fresno,CA,light,1500,SEEN THAT BEFORE BUT NOT THIS!!!! +2005-07-06,37.0511111,-122.0136111,Scotts Valley,CA,light,45,Helicopter chasing a UFO +2005-07-06,36.8252778,-119.7019444,Clovis,CA,other,10,At 22:10pmwe saw for 10 sec. a huge flourescent green double circular with black "something" in the middle, in the S.E. skies. +2005-07-06,42.9047222,-77.6116667,Lima,NY,unknown,3600,This is my sky observation report of objects seen at night. All look like lights. +2005-07-06,32.948055600000004,-96.7294444,Richardson,TX,light,20,Three lights moving very fast one did a sharp turn that normal planes cannot do and the other two continued to move very quickly. +2005-07-06,40.3044444,-82.6963889,Centerburg,OH,light,300,Red Light Over Ohio +2005-07-06,37.6447222,-115.7427778,Rachel,NV,light,240,Lights in sky East of Rachel, Nv +2006-07-06,34.2694444,-118.7805556,Simi Valley,CA,circle,720,red and orangish object which hovered in the sky and eventually went upward, dropping an object and disappearing +2006-07-06,33.5422222,-117.7822222,Laguna Beach,CA,circle,2700,At first it looked like it could maybe just be a plane but then shot up down and side to side. +2006-07-06,34.0522222,-118.2427778,Los Angeles,CA,cigar,60,afternoon "silver cigar"-UFO hovers near Westwood/UCLA +2006-07-06,40.2858333,-75.9847222,Mohnton,PA,rectangle,20,Rectangular lights, same yellow/green color as fireflies with red flashing light. +2006-07-06,30.3677778,-97.9913889,Lakeway,TX,unknown,480,lights over Lake Travis, Austin, TX +2007-07-06,42.9633333,-85.6680556,Grand Rapids,MI,light,30,Pulsing white light seen again +2007-07-06,32.4486111,-99.7327778,Abilene,TX,fireball,2,Largest "Falling Star" I've ever seen +2007-07-06,40.4141667,-79.0202778,Seward,PA,circle,60,It was a saucer and only 1 +2007-07-06,38.9822222,-94.6705556,Overland Park,KS,disk,900,Silent, disk-shaped object observed floating, flipping end-over-end in broad daylight for about 15 minutes +2007-07-06,45.5236111,-122.675,Portland,OR,other,60,Bright sun-illuminated "dot" drifting over S.E. Portland, Oregon +2007-07-06,42.3958333,-71.1791667,Belmont,MA,other,180,((HOAX??)) I saw something unbelievable. +2007-07-06,45.9975,-121.5269444,Trout Lake,WA,circle,2400,Witnessed an unidentified glowing round object in the western sky above Gilliland's Ranch at Trout Lake, WA below Mt. Adams 7.6.07. +2007-07-06,45.3038889,-93.5669444,Elk River,MN,light,2,((HOAX??)) I saw fast ball of lite moveing allmost as if it was tracing the big dipper. +2008-07-06,39.6172222,-104.9502778,Greenwood Village,CO,oval,600,I seen four white round objects +2008-07-06,33.1730556,-86.2516667,Sylacauga,AL,rectangle,8700,July 6 2008 on or about 1:45 AM and ended at 4:10 AM Location Sylacauga Alabama, 35151, The object was Rectangle in shape, and addition +2008-07-06,38.7316667,-82.9977778,Portsmouth,OH,light,2700,Bright yellow light would dim and brighten itself. Hovered quickly across the sky back and forth. +2008-07-06,40.1672222,-105.1013889,Longmont,CO,flash,7,It was on, or around 9pm last Sunday evening: a shot of sparks going from South to North. +2008-07-06,41.85,-87.65,Chicago,IL,flash,5,Flashing white light was traveling across the sky from south to north, at an incredible speed, and gone within seconds. +2008-07-06,29.4238889,-98.4933333,San Antonio,TX,egg,6,white, egg shaped object traveling very fast and no sound what so ever +2008-07-06,38.7316667,-82.9977778,Portsmouth,OH,light,1200,More Info on Portsmouth Bright-Dim Lights. +2008-07-06,34.1616667,-118.0519444,Sierra Madre,CA,rectangle,120,Two rows of parallel flashing lights on a vehicle as large as a blimp +2008-07-06,33.4936111,-117.1475,Temecula,CA,sphere,3600,Blue Green and multi colored Orb 2 pix 1 filmclip +2008-07-06,38.2855556,-85.8241667,New Albany,IN,fireball,120,Fire in the sky over Indiana +2009-07-06,39.2402778,-76.8397222,Columbia,MD,unknown,30,Light solid blue semi-circle of light projecting onto bedroom floor. +2009-07-06,34.4263889,-117.3,Hesperia,CA,light,3600,extremely bright white light +2009-07-06,39.8433333,-86.3977778,Brownsburg,IN,fireball,120,fireball over brownsburg indiana +2009-07-06,26.3583333,-80.0833333,Boca Raton,FL,light,7200,oversized jelly bean looking thing. Boyfriend and i both saw it -- next day found out the internatinal space center was around - didn't +2009-07-06,40.7141667,-74.0063889,New York City (Bronx),NY,sphere,900,round reflective orb hovering +2009-07-06,39.6861111,-74.9955556,Williamstown,NJ,circle,3600,((HOAX??)) We didn't believe in UFOs untill now. +2009-07-06,26.3583333,-80.0833333,Boca Raton,FL,other,14400,glowing green circle floating, fast moving above Boca Raton, FL +2009-07-06,25.7738889,-80.1938889,Miami,FL,light,120,ball of light in the sky over miami international airport. +2009-07-06,43.5944444,-83.8888889,Bay City,MI,unknown,300,Above clouds,red light,moved very slow,it looked about as high as vapor trail from a jet.Cloud cover kept any .... We live about te +2009-07-06,36.8527778,-75.9783333,Virginia Beach,VA,light,420,Lights seen in Virginia Beach sky +2009-07-06,38.5347222,-105.9983333,Salida,CO,light,120,Bright light with no sound passed above us +2009-07-06,34.0522222,-118.2427778,Los Angeles,CA,light,210,Unconventional Object Over Los Angeles, Ca. +2009-07-06,40.5866667,-122.3905556,Redding,CA,changing,180,Large orange shape changing object emits smaller orbs, winks out reappearing instantly in other locations +2010-07-06,41.8975,-84.0372222,Adrian,MI,light,30,Triangular stationary sighting over Michigan July 6, 2010 +2010-07-06,38.9413889,-119.7486111,Gardnerville,NV,light,1200,a bright light in the night sky started to move in a zig zag counter clockwise pattern, hovering in one spot occasionaly. +2010-07-06,47.6063889,-122.3308333,Seattle,WA,light,300,Two fixed orange lights over Seattle, Puget Sound +2010-07-06,40.7933333,-76.4727778,Kulpmont,PA,circle,900,Driving home from Wal-Mart and noticed bright orange circle in the sky. It stayed in the same location for our five minute drive home +2010-07-06,34.2072222,-84.1402778,Cumming,GA,circle,120,Round object that moved from side to side and in a straight motion, disappeared and would reappear during a crystal clear night +2010-07-06,42.2972222,-71.075,Dorchester,MA,sphere,60,Drifting, wobbly light moving quickly across the night sky and disappearing +2010-07-06,47.6063889,-122.3308333,Seattle,WA,circle,5,something is glowing in the sky ..yellowish ornage in color .this is the brightest light I have ever seen.. +2010-07-06,41.83,-69.9744444,Eastham,MA,light,120,Light over eastern MA moves NW to SE +2010-07-06,43.2802778,-71.6005556,Penacook,NH,light,120,bright object fadeing into darkness no light of any kind after fading out +2010-07-06,47.6063889,-122.3308333,Seattle,WA,sphere,60,shperical object sighted in west seattle 7-6-10 +2011-07-06,47.6588889,-117.425,Spokane County (On I-90; Westbound),WA,fireball,120,At three am in the morring I saw a red fireball cross the sky over washington state prarie. +2011-07-06,45.5236111,-122.675,Portland,OR,unknown,120,I believe it was July 6 of 2011 I had just gotten off of work. I was driving down W Burnside Rd, in the west hills facing NE going arou +2011-07-06,38.0527778,-81.1041667,Fayetteville,WV,diamond,1200,Orange sphere following family of four +2011-07-06,30.3672222,-89.0927778,Gulfport,MS,unknown,300,Bright red/white light hovers over Gulfport, climbs rapidly, heads north, then east, the downward, +2011-07-06,42.9994444,-83.6163889,Burton,MI,fireball,300,Orange Fire Ball +2011-07-06,38.9822222,-94.6705556,Overland Park,KS,light,300,Two orange lights over Kansas City +2011-07-06,41.3144444,-81.8358333,Strongsville,OH,circle,180,Circle of red lights flying smoothly and low with no sound and hovered for a bit before moving on. +2011-07-06,41.5627778,-83.6538889,Maumee,OH,circle,3600,there was a flashing ball of light moving in strange patterns and that hid from a plane. +2012-07-06,42.7675,-78.7441667,Orchard Park,NY,unknown,60,Not sure if it was a fireball or a space object. We were watching fireworks when all of sudden something firey came out from the south +2012-07-06,41.6716667,-72.9497222,Bristol,CT,sphere,900,Mysterious object more interesting than firework display... +2012-07-06,47.6777778,-116.7794444,Coeur D'alene,ID,triangle,480,Orange triangle lights seen spinning slowly across the sky. +2012-07-06,39.0252778,-84.4175,Crestview,KY,formation,300,NKY red lights north to south. +2012-07-06,36.1197222,-80.0738889,Kernersville,NC,fireball,300,Two flickering fireballs moved across the sky, changing speed and direction. +2012-07-06,32.5091667,-92.1191667,West Monroe,LA,light,120,Bright red orange fireball on July 6th at 9 pm +2012-07-06,41.3205556,-73.0894444,Derby,CT,fireball,300,Witnessed seven Fireball objects flying near the Derby Dam +2012-07-06,35.3458333,-79.4172222,Carthage,NC,sphere,120,Orange glowing object East of Moore County NC towards Fort Bragg. ((NUFORC Note: Report from law enforcement officer. PD)) +2012-07-06,33.6125,-117.7119444,Laguna Hills,CA,fireball,180,At approximately 21:45, my cat insisted that something was at the door. I picked the cat up in my arms to placate him and walked outsid +2012-07-06,40.5394444,-76.9611111,Millersburg,PA,light,5,A bright white ball like object was spotted flying near a mountain, then disappearing. +2012-07-06,32.8438889,-97.1427778,Bedford,TX,light,18000,Star-like crafts seen flying at speeds faster than satellite over DFW, government associate consulted and confirmed not normal. +2012-07-06,41.6716667,-72.9497222,Bristol,CT,circle,1800,UFO over Bristol/Southington during firework display +2012-07-06,38.6302778,-82.6675,Pedro,OH,formation,600,5 lights in formation +2012-07-06,40.4405556,-79.9961111,Pittsburgh,PA,fireball,600,Orange "fireball" over bloomfield during Gallery Crawl +2012-07-06,38.5816667,-121.4933333,Sacramento,CA,changing,120,Bright blue light in sky above Airbase Rd. near Watt Ave. +2012-07-06,35.5066667,-97.7622222,Yukon,OK,fireball,120,Red fireball Oklahoma canadian low flying +2012-07-06,37.8016667,-80.4458333,Lewisburg,WV,triangle,900,5 yellow-orange objects triangular in shape moving independant of each other in Lewiburg, WV for over 15 minutes. +2012-07-06,40.6083333,-75.4905556,Allentown,PA,unknown,60,Orange/ yellowish orb floating through sky +2012-07-06,47.6777778,-116.7794444,Coeur D'alene,ID,light,180,Five bright orange glowing lights, 3 in trianglular formation with 2 to the right of the triangle that faded out. +2012-07-06,34.7863889,-76.8594444,Newport,NC,circle,60,Two separate sightings over a few hours of multiple red orbs over the eastern carolina coast. +2012-07-06,41.0533333,-73.5391667,Stamford,CT,formation,1200,UFO's over Stamford, CT,...seaside ave . +2012-07-06,38.8755556,-84.6102778,Walton,KY,fireball,180,Orange/red fireball +2012-07-06,42.9638889,-78.7380556,Williamsville,NY,light,120,Three red lights in the low sky over Williamsville, NY. +2013-07-06,38.4094444,-82.2947222,Barboursville,WV,fireball,300,4 fireballs seen about 60 seconds a piece they were reddish orange and was about 4 or 5 mins apart . +2013-07-06,34.9133333,-90.3072222,Horseshoe Lake,AR,unknown,180,Bright light in the sky +2013-07-06,42.9233333,-97.2786111,Mission Hill,SD,fireball,900,Two bright orange objects in the northern sky. +2013-07-06,47.1855556,-122.2916667,Puyallup,WA,sphere,600,A high flying and very slow and still ufo was soon followed by two f-16s. +2013-07-06,48.051944399999996,-122.1758333,Marysville,WA,disk,2700,Two objects in the sky for 45 min. looked like stars but it was still daylight. +2013-07-06,40.9866667,-75.195,Stroudsburg,PA,fireball,300,Mother and sister witnessed 10 orange fireball/ circular lights in a staggered formation moving west in the sky. Easily viewed above th +2013-07-06,32.2216667,-110.9258333,Tucson,AZ,oval,600,6 red/orange orbs seen in Tucson +2013-07-06,30.2669444,-97.7427778,Austin,TX,sphere,5,Spherical object moving through clouds at sunset creating sets of &quot;smoke&quot; rings. +2013-07-06,33.0580556,-112.0469444,Maricopa,AZ,sphere,600,8 Orange Lights moving into Storm clouds and lightning clouds in succession. +2013-07-06,33.1580556,-117.3497222,Carlsbad,CA,oval,180,Red/orange orb over Carlsbad, CA +2013-07-06,39.7155556,-82.9530556,Ashville,OH,cylinder,300,Three and four brights orbs flahing and eventually combining to make two orbs +2013-07-06,39.9388889,-74.1933333,Beachwood,NJ,formation,120,Bright red flickering light in SW, white ball of light seperates into 2 , other lights appeared in formation. +2013-07-06,39.9611111,-82.9988889,Columbus,OH,teardrop,300,One big fireball look that broke off into upside down l formstion where there was 4 then. +2013-07-06,39.8813889,-83.0930556,Grove City,OH,formation,180,Four white lights that disappeared after a few minutes +2013-07-06,41.3275,-89.1288889,Peru,IL,light,900,My daughter and her husband we parked listening to an outside Tim McGraw concert playing at our little airport. My daughter noticed a r +2013-07-06,33.4052778,-86.8113889,Hoover,AL,circle,720,My father and I saw two flying red objects darting across the night sky last night. There were other neighbors who witnessed this as w +2013-07-06,39.9611111,-82.9988889,Columbus,OH,light,240,Four round white lights seen making patterns by the South Drive-In Theater in Columbus, Ohio. +2013-07-06,39.9611111,-82.9988889,Columbus,OH,light,240,The four lights we all saw by the South Drive-In Theater were confirmed as sky divers as part of a show at Scioto Downs horse racetrack +2013-07-06,39.9611111,-82.9988889,Columbus,OH,light,600,Columbus Ohio area- orange and white lights +2013-07-06,39.9338889,-74.8913889,Mt. Laurel,NJ,oval,45,2 orange/red glowing objects in night sky. +2013-07-06,40.4147222,-74.3658333,Old Bridge,NJ,oval,120,5 orange oval shape objects in the sky. +2013-07-06,45.5236111,-122.675,Portland,OR,light,600,White light hovering place, disappeared and reappeared three times, and changed shapes. +2013-07-06,27.7705556,-82.6794444,St. Petersburg,FL,fireball,120,3 orange fireballs or orbs in Pinellas county. +2013-07-06,36.0683333,-90.9558333,Walnut Ridge,AR,circle,300,Orange like ball of light came across western sky slow then dissapeared in to the sky +2013-07-06,39.9611111,-82.9988889,Columbus,OH,circle,300,4 Red lights viewed from Binns Blvd and Briggs Rd to the south east in Columbus, OH. +2013-07-06,39.8783333,-82.8838889,Groveport,OH,circle,300,4 cicle well lite objects in the sky seen by 1000's in the Groveport, Ohio Area. +2013-07-06,42.1013889,-72.5902778,Springfield,MA,circle,1200,At least 40 orange-red lights moving westerly to the north,floating in a linear fashion, then disappearing. +2013-07-06,36.9902778,-86.4436111,Bowling Green,KY,circle,300,Spotted silent craft w/ pulsing circular lights (predominantly red with some yellow and orange tones) heading west at a low altitude. +2013-07-06,39.9611111,-82.9988889,Columbus,OH,unknown,45,4 glowing lights in sky +2013-07-06,38.2541667,-85.7594444,Louisville,KY,light,70,Orange illuminated round object. hung in sky then ascended as it traveled away in straight line then disappeared.. +2013-07-06,39.8427778,-82.8047222,Canal Winchester,OH,light,240,Four white lights were seen in the sky heading westwards at a swift rate of speed from Pickerington towards Groveport. +2013-07-06,39.9611111,-82.9988889,Columbus,OH,changing,240,4 orange lights moving quickly forming different shapes in the sky +2013-07-06,39.8813889,-83.0930556,Grove City,OH,formation,120,Bright white lights in a formation +2013-07-06,39.8813889,-83.0930556,Grove City,OH,unknown,120,White lights over Grove City, Ohio +2013-07-06,39.9611111,-82.9988889,Columbus,OH,triangle,300,4 hover lights in sky! +2013-07-06,39.9955556,-82.6744444,Pataskala,OH,triangle,300,Triangle UFO near Columbus +2013-07-06,47.5675,-122.6313889,Bremerton,WA,oval,180,It was a BRIGHT RED ORB, It looked like a giant basketball. +2013-07-06,44.5291667,-94.7205556,Fairfax,MN,triangle,300,Bright-orange-fire-in-sky-moving-formation-same-speed-no-sound- +2013-07-06,41.5769444,-73.4088889,New Milford,CT,circle,420,Formation over New Milford, CT. +2013-07-06,40.7141667,-74.0063889,New York City (Brooklyn),NY,fireball,40,Red/orange fireball object streaking across sky twice in straight lines at high rate of speed +2013-07-06,41.0241667,-80.615,Poland,OH,sphere,120,The object made no sound. +2013-07-06,42.1013889,-72.5902778,Springfield,MA,flash,300,White blinking light moved from one part of the sky to another part of the sky in a matter of seconds. +2013-07-06,42.1013889,-72.5902778,Springfield,MA,light,300,I was standing outside in my sisters yard looking up at the stars and out the corner of my eye,so I looked.It was a white light about 2 +2013-07-06,39.8494444,-75.3561111,West Chester,PA,circle,300,I witnessed 4 red objects over downtown west Chester. They were very close to one another after 5 minutes they vanished +2013-07-06,42.075,-72.0338889,Southbridge,MA,light,60,A faint light as a star moved generally south to north, flaring up three times. +2013-07-06,43.1875,-72.4894444,Rockingham,VT,light,240,Sighted orange flickering glow that appeared to be some type of craft, it changed direction and ultimately disappeared. +2013-07-06,40.1633333,-76.3952778,Manheim,PA,light,45,Light traveling very quickly - seemed too fast to be a satellite. +2013-07-06,38.98,-92.5638889,Rocheport,MO,light,900,Four orange lights moving across the sky, with no sound traveling North, North East over the Mid I-70 region +2013-07-06,43.4441667,-71.6477778,Franklin,NH,circle,600,Six red lights in sky while night fishing. +2013-07-06,40.4405556,-79.9961111,Pittsburgh,PA,fireball,480,14-18 red orbs moving across Pittsburgh sky in similiar path. Disappear or lights dimmed in about 4 or 5 minutes. +2013-07-06,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,180,Group of 7-10 lights was just floating in the sky. +2013-07-06,43.5911111,-71.7372222,Bristol,NH,formation,480,Reddish orange light formation seen over the wildlife preserve near Newfound Lake in Bristol NH +2013-07-06,42.9055556,-74.5722222,Canajoharie,NY,circle,300,Driving east on N.Y. State thruway around 10:30 pm noticed orange orbs, looked like when people ski down a mountain at night with cande +2013-07-06,39.9469444,-75.2925,Drexel Hill,PA,circle,20,Orange moving light. +2013-07-06,37.0297222,-76.3455556,Hampton,VA,unknown,30,Aircraft that flys slow and dims it rather big dingy butter colored light ,slowist aircraft at 5-6000 feet ive seen. +2013-07-06,48.1958333,-114.3119444,Kalispell,MT,light,240,Stationary amber dots of light that looked like planets that got brighter and moved slightly to the S SW then faded away with no sound +2013-07-06,42.7761111,-71.0777778,Haverhill,MA,fireball,20,A meteor to the naked eye becomes something compleetly different on camera. +2013-07-06,33.8755556,-84.7622222,Hiram,GA,sphere,120,On a very cloudy night, one orb of red light was seen stationary stationary for a for a minute, then moved off slowly in a NW direction +2013-07-06,41.2736111,-82.8416667,Bellevue,OH,circle,180,Six unidentified flying objects that where circular and orange in color. +2013-07-06,41.0988889,-81.0230556,Diamond,OH,unknown,240,4 red lights moving slowly. +2013-07-06,40.1527778,-76.6030556,Elizabethtown (North Of),PA,unknown,15,Extremely bright light north of Elizabethtown, PA. +2013-07-06,39.9530556,-111.9,Goshen,UT,triangle,45,Triangle shadow with a green light in the center and a green halo, 45 seconds to cover from the south horizon to the north horizon. +2013-07-06,42.1305556,-71.5416667,Hopedale,MA,light,420,Large solid light witnessed in the wetlands behind my house down a path,along the Charles( Dense woods) +2013-07-06,37.0841667,-94.5130556,Joplin,MO,light,600,Tiny lights. +2013-07-06,36.3352778,-92.385,Mountain Home,AR,circle,60,Three bright glowing orange objects passed from South to North over Arkansas disappearing over Missouri on the night of July 6. +2013-07-06,48.1183333,-123.4294444,Port Angeles,WA,triangle,25,Triangular light formation +2013-07-06,44.7630556,-85.6205556,Traverse City,MI,fireball,120,Three orange &quot;fire balls&quot; move slowly and then fade out. +2013-07-06,41.9058333,-80.6905556,North Kingsville,OH,fireball,60,Seen coming from south west went out over Lake Erie. It was a very bright orange ball of fire. +2013-07-06,33.3527778,-111.7883333,Gilbert,AZ,fireball,20,Three orange fireball like objects over Gilbert, AZ. ((NUFORC Note: Report submitted by aerospace engineer. PD)) +2013-07-06,39.4141667,-77.4108333,Frederick,MD,circle,120,Floating orb +2013-07-06,39.7683333,-86.1580556,Indianapolis,IN,formation,60,Triangular formation of reddish amber lights on the northeast side of Indianapolis +1939-07-07,40.3972222,-91.3847222,Keokuk,IA,oval,600,Mother sees UFO above railroad tracks in 1939. +1952-07-07,39.6333333,-105.3166667,Evergreen,CO,circle,14400,abducted, and a lifetime of ufo experiences +1952-07-07,32.7355556,-97.1077778,Arlington,TX,disk,900,Daylight sighting of a Disk +1954-07-07,37.9063889,-122.0638889,Walnut Creek,CA,unknown,300,I have not reported this before. I feel it should be recorderd somewhere. My friend and I used to take time-lapse photos of the stars a +1954-07-07,34.0005556,-81.035,West Columbia,SC,formation,600,3circles together, very bright lighting around them and on them, silver, like 3 wedding rings together +1959-07-07,33.7669444,-118.1883333,Long Beach,CA,light,45,As a young man, I would lay out in the yard at night and look at the sky--I often saw an object moving at night speed, very high, no no +1962-07-07,34.8347222,-97.6022222,Lindsay,OK,cylinder,600,white beam of light and cylindrical object +1964-07-07,44.0747222,-89.2877778,Wautoma,WI,light,1200,A very close encounter with a UFO; right at the back window of my 1960 Corvair. +1965-07-07,42.3916667,-71.5666667,Hudson,MA,light,2700,Sighting of many craft by multiple witnesses on multiple nights, a demonstration. +1965-07-07,41.885,-87.7844444,Oak Park,IL,unknown,600,After hovering motionless for hours, a mysterious arial light performs aerodynamically impossible maneuvers. +1968-07-07,29.7630556,-95.3630556,Houston,TX,disk,900,One man disk UFO paralyzing me in Houston Texas on Telephone Rd in the summer of 1968 500 Lights On Object0: Yes +1968-07-07,33.4708333,-81.975,Augusta,GA,triangle,600,We saw a never explained dark large triangular object, hanging still and silently in the night sky over our backyard. +1968-07-07,40.3719444,-73.9994444,Rumson,NJ,disk,600,SIGHTINGS NEAR FORT MONMOUTH NJ.THIS ONE IN RUMSON IN 1968 +1969-07-07,36.7477778,-119.7713889,Fresno,CA,other,120,30 years ago large ufo with stinger like object emitting sparks then sped away. +1969-07-07,46.3580556,-94.2005556,Brainerd,MN,triangle,20,While picking up hay bales at night, I saw a triangular shaped object speed through the night sky. +1969-07-07,25.7738889,-80.1938889,Miami,FL,light,20,multi-colored swirling illuminating lights (looked like a tornado in the sky) 500 Lights On Object0: Yes +1970-07-07,33.9319444,-117.9452778,La Habra,CA,sphere,1200,SILENT ORANGE ORB OVER MY NEIGHBORS HOUSE IN 1970 +1973-07-07,45.5236111,-122.675,Portland,OR,fireball,120,My cousin and I were laying on our backs on a hill in front of my home - at about a 30 degree angle. Looking up at the night sky, talk +1973-07-07,31.8455556,-102.3672222,Odessa,TX,disk,3600,A 100 foot diameter,disk shape, dome top.The color was of stainless steel.It made no sound.This UFO came from the Odessa area, moved ou +1973-07-07,31.8455556,-102.3672222,Odessa,TX,disk,3600,Confirmation of Odessa, TX sighting in 1973 +1973-07-07,31.8455556,-102.3672222,Odessa,TX,disk,3600,The Odessa Event +1974-07-07,41.2619444,-95.8608333,Council Bluffs,IA,disk,7200,We saw a red light at high altitude zig zag across sky from horizon to horizon, then again hovering slowly over Mo. river area, then cl +1974-07-07,42.3583333,-71.0602778,Boston,MA,circle,480,I was on the wheel of a 38' cabin cruiser with two friends on a cruise down Boston Harbor at about 2100 hrs. The harbor reflected the l +1977-07-07,39.2477778,-88.1633333,Greenup (Near),IL,cigar,120,We saw a huge cigar like metalic object that seemed to hang in the sky directly over the tree tops! +1978-07-07,38.2855556,-85.8241667,New Albany,IN,other,1800,In broad day light, it was as big as three aircraft carriers, but as silent as air. Moving very slowly theough the air. at the front th +1978-07-07,34.9919444,-86.8469444,Ardmore (Near),AL,sphere,900,Silver Sphere Hovering above treeline on Interstate 65 N. +1978-07-07,35.9152778,-94.9697222,Tahlequah,OK,triangle,420,Triangular, silent, motionless totally flat black craft with front facing light beam. +1980-07-07,42.3916667,-71.5666667,Hudson,MA,unknown,120,Back in the summer of 1980 I was dating a girl in Hudson MA. She was taking a long time getting ready to go out for the evening so I w +1984-07-07,33.3266667,-83.3886111,Eatonton,GA,triangle,300,Triangular shaped object sighted that defied gravity and inertia. +1985-07-07,29.5605556,-104.3716667,Presidio (Rural, 15 Miles Sw Of),TX,other,18000,STEADY GREEN LIGHT VERY SIMILAR TO AUREOLA BOREALIS SEEN WERE NORMALLY PITCH BLACK BLACK DARKNESS SHOULD BE ;WENT OUTSIDE (WE WERE INS +1985-07-07,33.3266667,-83.3886111,Eatonton,GA,formation,120,Several lights coming straight toward the dock where we were fishing slowly turn and fly over the trees. +1987-07-07,44.1858333,-88.4625,Neenah,WI,other,600,multiple ships with a boxcar ship in my neighborhood +1987-07-07,38.8402778,-97.6111111,Salina,KS,sphere,180,Orb's flying threw the trailer house. +1991-07-07,42.1305556,-71.0416667,Avon,MA,triangle,1200,Around dusk, Istood outside of my home, and observed a light in the sky. During the time it took me to smoke a cigarette, this object c +1992-07-07,36.9902778,-86.4436111,Bowling Green,KY,other,1200,FRIGHTENING MIB ENCOUNTER? +1992-07-07,47.3483333,-122.1136111,Covington,WA,light,1800,Strange light in Covington, WA +1993-07-07,33.6694444,-117.8222222,Irvine,CA,disk,60,I was driving home late one night from the city of Diamond Bar, when I noticed a very bright light in the sky. I thought it might be la +1993-07-07,40.5583333,-85.6591667,Marion,IN,cylinder,1800,A black van asked me and the other witness if we wanted a ride. We then saw a large object lift off and explode into light +1993-07-08,39.395,-86.5625,Paragon,IN,light,240,The most amazing thing i have ever seen in my life +1995-07-07,40.5686111,-75.095,West Milford,NJ,triangle,900,Triangular shaped UFO on Clinton Rd. NJ +1995-07-07,35.8455556,-86.3902778,Murfreesboro (Just West Of),TN,oval,10,On Interstate 40. Traveling East. Out of a clear, cloudless sky, three or four objects appeared, coming down to about the one hundred f +1997-07-07,39.2991667,-87.9925,Casey,IL,cigar,480,Crafts emit beams of what looks like smoke from their front end, and then follow these emissions +1997-07-07,38.4219444,-77.4086111,Stafford,VA,rectangle,120,I SAW A LARGE DARK RECTANGULAR OBJECT IN THE SKY. +1997-07-07,32.3122222,-106.7777778,Las Cruces,NM,changing,1800,It was never anything I have seen before. +1997-07-07,43.0638889,-85.9347222,Coopersville,MI,unknown,64800,Fireball impact , intelligent colorful lights, orbs, invisible crafts , mind-control, odd animal behavior, alien body +1998-07-07,42.9925,-98.4247222,Marty,SD,egg,120,Amber egg-shaped craft,ascended at slow speed. +1998-07-07,40.7966667,-81.5216667,Massillon,OH,formation,420,Object moved through sky slowly +1998-07-07,39.7391667,-104.9841667,Denver (Above),CO,sphere,21600,Strange object, stranger events that followed on seeing the object in the Mountains above Denver +1998-07-07,37.6819444,-121.7669444,Livermore,CA,other,240,A star-like object inscribed rectangles in the sky and then vanished!. +1998-07-07,34.0147222,-83.2938889,Hull,GA,oval,300,small, luminous, silent, gliding craft +1998-07-07,40.9633333,-76.6130556,Danville,PA,sphere,900,I witnessed a reddish ball hover for about 10 minutes after witnessing it streak across the sky like a shooting star. Then it appeared +1999-07-07,37.3394444,-121.8938889,San Jose,CA,unknown,1,Grays up in my FACE! +1999-07-07,42.1686111,-88.2575,Barrington Hills,IL,unknown,8,pinpoint of light moving SSE, became brilliant with a flash, picked up speed and disappeared. Very high altitude. Clear starry night. +1999-07-07,38.8213889,-121.1919444,Loomis,CA,light,20,Rapidly moving, hazy lighted object, moving across sky from west to east. +1999-07-07,40.7719444,-80.7683333,Lisbon,OH,light,1200,My mother called me out of the house to see a small light moving across the sky. I later saw another such object and my mother told me +1999-07-07,47.6063889,-122.3308333,Seattle,WA,light,1200,Star Wars blows up incoming. +1999-07-07,35.2269444,-80.8433333,Charlotte,NC,changing,180,Silent hovering glowing object +1999-07-07,27.9472222,-82.4586111,Tampa,FL,fireball,2760,I have a video tape, I was taping lightning and played it back and saw alot of unusual fireballs and things such as that. +1999-07-07,40.8041667,-82.1958333,Jeromesville,OH,flash,15,while stargazing on a moonless night in a rural area both myself and father-in-law observed an intense white-light almost blinding. Aft +1999-07-07,41.6005556,-93.6088889,Des Moines,IA,light,15,What looked like a star was moving to the north for a duration of 15 seconds before being blocked out by some high clouds. +2000-07-07,42.1816667,-87.8002778,Highland Park,IL,fireball,120,A fireball like object floated in the sky ahead for about 2 minutes and then dropped into the woods below never to be seen again. +2000-07-07,39.4141667,-77.4108333,Frederick,MD,sphere,300,Bright metalic sphere rotating fast in a circular pattern. +2000-07-07,44.2519444,-85.4011111,Cadillac,MI,oval,180,I saw an oval-shaped thing in the sky, turning several times, high above the clouds. +2000-07-07,37.3541667,-121.9541667,Santa Clara,CA,light,600,turqoise light in the sly ((NUFORC Note: Missile launch from Vandenberg AFB. Many reports. PD)) +2000-07-07,38.7072222,-121.28,Citrus Heights,CA,other,420,7/7/002100 hrs 7 people saw a disk shaped ?flaming from the sw and left a bluegreen haze that lingered for a long time +2000-07-07,34.0522222,-118.2427778,Los Angeles,CA,light,120,As I was driveing on the 10 from west covina to Santa monica I seen this Light in the sky it was brite white and still then it moved up +2000-07-07,32.7152778,-117.1563889,San Diego (Mira Mesa),CA,light,600,Bright central white light with green triangular light in sky +2000-07-07,38.6786111,-121.7722222,Woodland,CA,cone,300,Clear night sky, object traveled upward at 40 degree angle moving from southeast to northwest. At first it almost looked like a jet tak +2000-07-07,34.0522222,-118.2427778,Los Angeles,CA,light,600,Bright white light w/ Halo around...backing away from us....Emitted a BLUE BEAM.. halo turned blue and object backed out of view. +2000-07-07,37.3688889,-122.0352778,Sunnyvale,CA,circle,600,Slow horizontally flying noiseless oject with cosmic blue beam suddenly switched off lights, lifted vertically and disappeared. +2000-07-07,37.3688889,-122.0352778,Sunnyvale,CA,circle,600,Slow horizontally flying noiseless oject with cosmic blue beam suddenly switched off lights, lifted vertically and disappeared +2000-07-07,36.3302778,-119.2911111,Visalia,CA,light,300,we were in the back yard and watched as the object moved and left a glowing blue contrail or cloud which stayed in the same position +2000-07-07,40.1786111,-122.2347222,Red Bluff,CA,fireball,120,We were driving south on Interstate 5 when we witnessed it. Other cars were pulling off the road also, to observe. +2000-07-07,34.09,-117.8894444,West Covina,CA,light,300,I saw a bright white light, the light disappeared and left a cloud of GLOWING blue smoke. +2000-07-07,34.09,-117.8894444,Covina,CA,oval,1200,Grey Object hovers over house in Covina, surrounds observer with a beam of light then bright blue shape remains in sky. +2000-07-07,35.1894444,-114.0522222,Kingman (Desert, Out Of),AZ,light,600,Light over the Arizona Mohave Desert , Hoover Dam. +2000-07-07,36.175,-115.1363889,Las Vegas,NV,light,1800,I was driving with a friend and saw this illuminating bright white light shining through a green haze. +2000-07-07,34.0522222,-118.2427778,Los Angeles,CA,sphere,300,I was driving uphill to my home, and was pointing upward to the sky, i noticed the sky was clear and can clearly see the moon...To the +2000-07-07,34.0480556,-118.5255556,Pacific Palisades,CA,other,1200,White glow in large plume of clouds, white glow changed to blue then green. +2000-07-07,38.5816667,-121.4933333,Sacramento,CA,fireball,15,light in sky, exiting atmosphere, which then exploded. +2000-07-07,38.4405556,-122.7133333,Santa Rosa,CA,light,30,A bright lit flying object, with trailing blue/green streak, bright light instant vaporized, leaving blue/green streak for 20 minutes. +2000-07-07,32.6975,-113.9527778,Tacna (Approx),AZ,light,1800,A bright light appeared leaving a glowing cloud behind which lasted approx 30 minutes +2000-07-07,33.6402778,-116.1386111,Thermal (Near, Torres Martinez Indian Reservation),CA,light,60,A bright white beam and a large, bright blue beam and the white beam object disappeared behind an out of place 'cloud' . +2000-07-07,38.5816667,-121.4933333,Sacramento,CA,rectangle,240,Long Lasting Fireball blazes accross Sacramento Sky +2000-07-07,40.9730556,-117.7347222,Winnemucca,NV,light,180,We spotted a beam of light coming from a bright circle, that left a green residue in the sky. +2000-07-07,37.1041667,-113.5833333,St. George,UT,light,1560,lights in the sky +2001-07-07,42.1591667,-79.5955556,Sherman,NY,oval,120,Light Blue Oval over Campground +2001-07-07,45.5230556,-122.9886111,Hillsboro,OR,light,10,I had just exited a residence and happened to look up into the sky as it was a very clear night. Upon turning my eyes skyward, a very b +2001-07-07,42.3211111,-85.1797222,Battle Creek,MI,diamond,1500,object spinning making a whizzing noise flying at a high velocity. +2001-07-07,36.7472222,-95.9805556,Bartlesville,OK,circle,10,White circular object, apache attack helicopter both disappear after what seems to be 'dogfight' +2001-07-07,33.4222222,-111.8219444,Mesa,AZ,disk,300,Tiny, black dome-shaped object seen near Hwy 60 in Mesa +2001-07-07,38.205,-87.5741667,Haubstadt,IN,circle,180,Bright glowing red light came over the trees to our backyard. Seemed to be the size of a football field. Our yard is about 2 1/2 acres. +2001-07-07,43.4066667,-124.2230556,North Bend,OR,light,10,Bright light coming from the sky with no sound of any aircraft or hellicopters. +2001-07-07,28.0833333,-80.6083333,Melbourne,FL,chevron,3,follow up report +2001-07-07,28.0833333,-80.6083333,Melbourne,FL,formation,60,July 7񫺑 at 945 pm (V) shaped formation of lights sighted in the sky near Patrick Air force base Florida. +2001-07-07,29.7630556,-95.3630556,Houston,TX,light,60,Saturday night was a clear, full-moon and silent night after a wave of rainy clouds passed the West side of Houston, Texas. My wife and +2001-07-07,46.8722222,-113.9930556,Missoula,MT,rectangle,1500,Flashing mulitcolored lights on hilltop dip behind hill and reappear as rectangular strobing craft. +2001-07-07,42.2711111,-89.0938889,Rockford,IL,light,3,We saw a fast moving green light (with no tail) in the sky above the horizon and just below the moon. +2002-07-07,44.0583333,-121.3141667,Bend,OR,triangle,37800,Oregon UFO Review Case: Triangle craft decends to ground level. +2002-07-07,44.0583333,-121.3141667,Bend,OR,triangle,7200,Triangle object and accompanying lights descend rapidly from sky +2002-07-07,43.065,-124.1377778,Myrtle Point,OR,cigar,5,I was coming back to Oregon from Lake Havasu on sunday 07/07/02 and almost got run over by a U.F.O. on hwy. 42 about 10 miles east of M +2002-07-07,32.5883333,-96.9558333,Cedar Hill,TX,formation,180,Large triangle formation of white lights slowly move across sky, as one light crosses behind its path. +2002-07-07,45.0025,-101.2330556,Eagle Butte,SD,light,1200,Red and blue lights, turning real bright. +2002-07-07,35.2269444,-80.8433333,Charlotte,NC,circle,20,A perfect circle... +2002-07-07,41.4361111,-81.3866667,Chagrin Falls,OH,cross,300,Digital photos of high altitude object over Chagrin Falls, Oh., 07/07/02. "Popping" sound(distant) behind object. +2003-07-07,33.8311111,-87.2775,Jasper,AL,fireball,120,White/Orange color sphere seen in Alabama +2004-07-07,41.1366667,-95.8905556,Bellevue,NE,rectangle,900,Two rectangular objects emitting red lazers +2004-07-07,39.7294444,-104.8313889,Aurora,CO,fireball,10,green meteor +2004-07-07,31.5086111,-82.85,Douglas,GA,light,10800,Bright Eye In the Sky: object spotted in the clear a.m. hours of the sky and caught on camera! +2004-07-07,39.6477778,-104.9872222,Englewood,CO,sphere,240,Denver-area: starlike object in daytime sky is stationary, then speeds off +2004-07-07,39.8113889,-74.9833333,Clementon,NJ,other,60,Fighter Jets chasing UFO across New Jersey +2004-07-07,35.1494444,-90.0488889,Memphis,TN,oval,120,watching storm clouds and ufo +2004-07-07,39.6477778,-104.9872222,Englewood,CO,sphere,900,Starlike object seen again later in day +2004-07-07,41.4994444,-81.6955556,Cleveland,OH,unknown,2,Unidentifiable object over Cleveland, Ohio +2004-07-07,41.4994444,-81.6955556,Cleveland,OH,light,5,white light west to east banked hard as incoming jet flew intercept +2004-07-07,32.5091667,-92.1191667,Monroe,LA,cylinder,3,Glowing green rocket-shaped object with a tail of fire. +2004-07-07,32.7252778,-97.3205556,Fort Worth,TX,unknown,12,Was in my front yard when a bright streaking object came down at a 20-25 degree angle from the south. It was west of our location; towa +2004-07-07,34.8891667,-94.6005556,Heavener,OK,fireball,24,extremely bright ball of red, blue, yellow, and white flames streaking toward the earth. +2004-07-07,32.7833333,-96.8,Dallas,TX,fireball,15,fireball over Dallas +2004-07-07,33.2075,-92.6661111,El Dorado,AR,unknown,5,7/7/04 Between 9:30-10:00 El Dorado AR 9:30-10:00 Unknown 3-5 seconds A large object with fire shooting from it. +2004-07-07,44.9430556,-123.0338889,Salem,OR,light,180,Strange lights -- moving and not moving -- seen in skys over Salem, OR +2004-07-07,30.4891667,-99.7716667,Junction,TX,light,120,fast moving white light +2004-07-07,35.6527778,-97.4777778,Edmond,OK,fireball,6,meteor like object +2004-07-07,38.7297222,-120.7975,Placerville,CA,light,300,A slow moving light moving over Placerville +2004-07-07,33.6675,-84.0177778,Conyers,GA,other,2,strange sound +2004-07-08,32.5419444,-97.3205556,Burleson,TX,fireball,180,UFO Sighting in Texas +2005-07-07,36.7855556,-108.6863889,Shiprock,NM,circle,120,Blue Neon Craft +2005-07-07,41.8088889,-88.0111111,Downers Grove,IL,cylinder,600,4 UFO's seen in Chicago Suburbs +2005-07-07,32.7252778,-97.3205556,Fort Worth,TX,unknown,120,fast moving object heading east and very high up but changed directions quick, stopped then headed back east. +2005-07-07,41.685,-79.4033333,Tidioute,PA,triangle,120,A triangular craft with a large white beam in front with a red flashing light in the middle +2005-07-07,37.9886111,-84.4777778,Lexington,KY,cigar,180,cigar shapped object with red/orange glow underneath moving width way not length way from SW to NE +2005-07-07,34.1205556,-84.0044444,Buford,GA,triangle,180,NOT A UFO! +2005-07-07,32.7833333,-96.8,Dallas (Dfw Airport),TX,unknown,2,On July 7, 2005 at about 11:30 at night, I noticed a bright light that sped across the sky, and was visible for a couple seconds. +2006-07-07,33.5091667,-111.8983333,Scottsdale,AZ,light,120,2 BRIGHT LIGHTS AND ONE WAS STATIONARY WHILE THE OTHER WAS MOVING ALL OVER. +2006-07-07,47.8211111,-101.2983333,Max,ND,other,1800,awakened by a glow of bright light I was transformed to a fufilled man +2006-07-07,39.6847222,-83.9297222,Xenia,OH,cigar,600,Saw lights on hovering craft at 0235 stopped car and listened/looked and there was no sound. +2006-07-07,39.6847222,-83.9297222,Xenia,OH,cigar,600,07/07/2006 CIGAR XENIA, OHIO +2006-07-07,45.5236111,-122.675,Portland,OR,flash,300,Flashing beam of light,lasted five minutes. +2006-07-07,35.7719444,-78.6388889,Raleigh,NC,sphere,90,Standing in my driveway, I looked up in the sky towards the north west, saw what I thought might be a landing light for a commercial je +2006-07-07,37.1533333,-98.0308333,Anthony,KS,light,60,Bright white light. No FAA lights observed. Moved about 20% faster than the jets I usually see. ((NUFORC Note: ISS sighting? PD)) +2006-07-07,33.2147222,-97.1327778,Denton,TX,circle,600,Large Circular Slow Strobe Bright White LED type +2006-07-07,38.0194444,-122.1330556,Martinez,CA,other,900,my parents in there 60's are in aww it scared them Also. Date seen 7-7-06 11:55pm until it vanished . +2007-07-07,33.6694444,-117.8222222,Irvine,CA,circle,600,Floating circular object seen over Irvine Spectrum +2007-07-07,42.0347222,-93.6197222,Ames,IA,triangle,300,Orange Triangular Craft in Pursuit +2007-07-07,46.2811111,-87.4408333,Gwinn,MI,unknown,10800,Many blinking objects moving at high speed, red and white lights observed 2 nights in a row in upper MI ((NUFORC Note: Stars?? PD)) +2007-07-07,42.5294444,-83.7802778,Brighton,MI,sphere,180,Orange glowing sphere moving steadily across the night sky +2007-07-07,44.7488889,-92.8019444,Prescott,WI,sphere,1200,UFO over Mississippi river. +2007-07-07,40.9486111,-73.7330556,Mamaroneck,NY,sphere,300,Fast round flying object seen over golf course in NYC +2007-07-07,42.3313889,-83.0458333,Detroit,MI,cigar,15,Amazing dayligt sighting of huge silver cigar shaped ufo +2007-07-07,27.4986111,-82.575,Bradenton,FL,sphere,60,palma sola bay southern sky...portal? or skyway too the universe...i cant stop thinking that after what i saw. +2007-07-07,41.6736111,-88.0016667,Lemont,IL,circle,1500,Approx. 50 craft flying in various formations observed across the evening sky. +2007-07-07,41.6736111,-88.0016667,Lemont,IL,circle,600,Orange lights over Chicago area 7/7/07 +2007-07-07,41.6,-87.9380556,Homer Glen,IL,disk,600,30 - 40 bright egg- shaped objects seen in skies over Homer Glen, IL at 9:45 pm on 7-7-07 moving from east to west. +2007-07-07,47.6588889,-117.425,Spokane,WA,circle,60,Five orbs the size of hot air balloons rotated each other for 5 seconds and sped away at about 1 oclock. +2007-07-07,41.1305556,-85.1288889,Fort Wayne,IN,fireball,1200,This craft was obviously aware of us getting the camera. +2007-07-07,41.7308333,-84.9327778,Fremont,IN,fireball,1800,UFOs shape like a glowing flame crafts viewed by many, I video taped 3 of them on July 7, 2007 at Clear Lake, Indiana at night +2007-07-07,42.2830556,-87.9530556,Libertyville,IL,oval,15,Oval shape with wide band horizontally through center, silverish in color, thin red zig zag lights only on sides underneath, +2007-07-07,40.1811111,-74.6647222,Yardville,NJ,unknown,120,We saw a star that started to move. +2007-07-07,41.3966667,-73.0763889,Seymour,CT,light,1200,Traveling lights over Seymour, CT +2007-07-07,41.5894444,-88.9219444,Earlville,IL,circle,60,My five friends and I were on a camping trip in Earlville, IL which is primarily a farming community. Late at night around 11 PM, I was +2007-07-07,38.0372222,-84.8966667,Lawrenceburg,KY,oval,180,FAST BRIGHT ORANGE LIGHT +2008-07-07,42.7694444,-71.0763889,Bradford,MA,unknown,3600,Large jet like sound hovering in the neighborhood for an hour +2008-07-07,33.34,-86.6302778,Chelsea,AL,triangle,1800,Small triangular object flying in large circles above our area with lights in each corner making a very strange resonating sound. +2008-07-07,29.4238889,-98.4933333,San Antonio,TX,chevron,3,Quick object overhead San Antonio / Schertz TX +2008-07-07,36.1658333,-86.7844444,Nashville,TN,unknown,20,Eccentric shaped object flying over my home +2008-07-07,39.7219444,-85.8891667,New Palestine,IN,other,2700,I couldn't believe what we were seeing in daylight. It was a large metallic object that just hovered for over 30 minutes +2008-07-07,47.6063889,-122.3308333,Seattle,WA,changing,1800,Sighting through photographs +2008-07-07,39.7219444,-85.8891667,New Palestine,IN,other,2700,Strange dark shaped object hovering several thousand feet in the air +2008-07-07,40.4169444,-75.9447222,Ontelaunee,PA,fireball,600,Strange fire ball sight at Ontelaunee Lake. +2008-07-07,41.6580556,-90.5844444,Eldridge,IA,triangle,60,Small triangle shaped lights moving through sky. +2008-07-07,37.2152778,-93.2980556,Springfield,MO,unknown,1800,Saw somehting that was most surely NOT an airplane nor a sattelite!! +2008-07-07,28.1508333,-82.4616667,Lutz,FL,triangle,420,A Triangle sighting... Tampa Palms (North Tampa) Florida on Bruce B. Downs at Super Walmart. +2008-07-07,39.7683333,-86.1580556,Indianapolis,IN,disk,300,A flying white and red flashing saucer flew over my house +2009-07-07,26.1219444,-80.1436111,Ft. Lauderdale,FL,light,20,Light cought on secuaret camery +2009-07-07,34.1083333,-117.2888889,San Bernardino,CA,light,60,Stationary,high altitude, bright pulsing light +2009-07-07,29.4236111,-95.2438889,Alvin,TX,other,1800,Animal mutilation? +2009-07-07,39.9522222,-75.1641667,Philadelphia,PA,light,60,moving light. +2009-07-07,40.8,-96.6666667,Lincoln,NE,light,600,Looked like a star moving very rapidly across the sky, too fast for a satellite. +2009-07-07,43.4577778,-88.8372222,Beaver Dam,WI,oval,5,Looked like a school of fish, but way up in the sky. There where alto-stratus clouds that the objects where moving above and below. T +2009-07-07,45.3622222,-68.5055556,Lincoln,ME,cigar,5,Clear day,large cigar shaped object +2009-07-07,30.8530556,-88.0561111,Satsuma,AL,cigar,60,Long cigar-shaped object that is 2/3's dark & 1/3 bright, seen in eastern sky traveling WNW. +2009-07-07,38.35,-104.7222222,Pueblo West,CO,egg,300,White-yellow egg shaped object moving in a NW direction over Pueblo CO. +2009-07-07,42.9766667,-78.5922222,Clarence,NY,rectangle,2,Amazingly low, light bright as the Moon, Craft not big at all...Flew without sound +2009-07-07,37.1288889,-84.0833333,London,KY,circle,180,At 9:30pm July 7th, 2009 I saw a silent black craft with a red light on the bottom. +2009-07-07,43.0388889,-87.9063889,Milwaukee,WI,other,300,Seen Three aliens three different times outside my window within 2 weeks +2009-07-07,38.175,-82.6736111,Fallsburg,KY,triangle,300,A triangle shaped aircraft with 7 lights on the bottom. +2009-07-07,36.323055600000004,-86.7133333,Goodlettsville,TN,light,60,Light following space station +2009-07-07,41.3072222,-111.9594444,North Ogden,UT,light,60,Bright moving light, no flashing from SW to NE. ((NUFORC Note: Overflight of the ISS. PD)) +2009-07-07,41.1016667,-80.7647222,Austintown,OH,light,322,Bright Low Flying Orb Moved Silently West to East in Austintown Ohio July 7, 2009. ((NUFORC Note: ISS?? PD)) +2009-07-07,36.2694444,-95.8544444,Owasso,OK,sphere,600,Amber glowing Sphere flys over Owasso, Oklahoma +2009-07-07,41.2458333,-75.8816667,Wilkes-Barre,PA,sphere,240,Space Station Confusion +2009-07-07,35.4886111,-82.9888889,Waynesville,NC,light,30,2 bright lights like stars or satellites; one following the other, then dimmed as they turned (toward space?) +2009-07-07,35.5847222,-80.8102778,Mooresville,NC,other,6,large, bright meteor seen over Mooresville, North Carolina. +2009-07-08,32.3966667,-97.3236111,Keene,TX,sphere,180,orange light over keene texas breaks boardum +2010-07-07,45.1313889,-85.6166667,Northport,MI,light,20,Gliding white light over Leelanau State Park +2010-07-07,32.7833333,-96.8,Dallas,TX,formation,10,3 crafts with amber lights suddenly appear , then disappear +2010-07-07,38.8338889,-104.8208333,Colorado Springs,CO,oval,180,A Brightly Multi-Colored Object appeared in front of Pike Peak, north/west of NORAD in Colorado Springs. +2010-07-07,41.85,-87.65,Chicago,IL,fireball,300,UFO in Midway Airport area July 2010 +2010-07-07,41.5236111,-90.5775,Davenport,IA,changing,10,A green heat light traveling east to west. +2010-07-07,36.0666667,-88.9938889,Dyer,TN,triangle,300,strange triangle formation flying in the night sky **PLEASE READ** +2010-07-07,47.4830556,-122.2158333,Renton,WA,unknown,60,Slow moving silent bright white light ((NUFORC Note: International Space Station overflight. PD)) +2010-07-07,35.2783333,-93.1336111,Russellville,AR,light,1200,Bright white craft. +2010-07-07,44.5258333,-121.2119444,Culver,OR,cylinder,300,Our family was camping the night of july 7th at 10:45 I seen a large foot ball shaped light crossing the camp ground there were a lot o +2010-07-07,47.7625,-122.2041667,Bothell,WA,fireball,120,Bright slow light in the sky moving from NW to SW like a satellite but very much brighter July 7th 2010. ((NUFORC Note: ISS. PD)) +2010-07-07,47.7361111,-122.6452778,Poulsbo,WA,formation,20,3 light formation observed in Poulsbo, WA +2010-07-07,45.4363889,-123.1383333,Gaston,OR,circle,180,Glowing orange orb in sky +2010-07-07,47.9447222,-122.3033333,Mukilteo,WA,triangle,30,3 bright lights in triangular formation over the southern skies of Mukilteo. +2010-07-07,40.6994444,-99.0811111,Kearney,NE,light,180,Strange light in Kearney, Nebraska +2010-07-07,42.725,-70.9916667,Georgetown,MA,flash,3,Flashes of light +2010-07-07,37.2152778,-93.2980556,Springfield,MO,light,120,Object was low to the ground, over residential area, with solid red and green lights, green light shut off when it began moving. +2011-07-07,28.1458333,-82.7569444,Tarpon Springs,FL,circle,120,Ball of fire observed in sky. +2011-07-07,47.5288889,-121.8241667,Snoqualmie,WA,other,7200,Possible abduction. +2011-07-07,39.1619444,-84.4569444,Cincinnati,OH,diamond,60,Small diamond craft with two white lights on the sides and a red light on the front in the shape of a triangle +2011-07-07,44.6397222,-73.1108333,Milton,VT,unknown,60,An irrational noise in the middle of the night. +2011-07-07,42.1669444,-76.8208333,Horseheads,NY,changing,180,Weird craft +2011-07-07,42.3472222,-89.0388889,Machesney Park,IL,circle,180,5 orange objects in the sky +2011-07-07,40.0741667,-78.7047222,Helixville,PA,cigar,120,Cigar shaped neon green object +2011-07-07,27.1958333,-82.4905556,Osprey,FL,cylinder,3600,A train of cylinder ships emitting a holographic face into the atmosphere. +2011-07-07,44.1102778,-70.6797222,Harrison,ME,sphere,600,Orange Orbs in Western Maine +2011-07-07,34.8333333,-81.9922222,Moore,SC,triangle,1500,There was a 3 lights that were oscilating around themselves and twirling in a circle. Then as I watched it turned and shaped in to a fl +2011-07-07,45.12,-93.2875,Coon Rapids,MN,light,120,Bright light in Coon Rapids +2011-07-08,38.8338889,-104.8208333,Colorado Springs,CO,triangle,360,UFO over Powers and Omaha +2012-07-07,45.6388889,-122.6602778,Vancouver,WA,light,15,Bright light moving from south to north then dimming +2012-07-07,45.6388889,-122.6602778,Vancouver,WA,light,300,I was driving to my husbands house from work on I-205 south bound and a bright slow moving object caught my eye. +2012-07-07,37.5058333,-77.6494444,Midlothian,VA,sphere,3,Orange Orb with glowing light orange trail, very quick, disabled my cell phone, seen in Midlothian, VA +2012-07-07,38.8813889,-94.8188889,Olathe,KS,other,180,Atmospheric battle +2012-07-07,41.0533333,-73.5391667,Stamford,CT,fireball,180,Several bonfire like things moving Northbound, same speed, no noise. +2012-07-07,32.7919444,-115.5622222,El Centro,CA,cigar,20,UFO acted as a vehicle. +2012-07-07,44.6336111,-86.2344444,Frankfort,MI,light,180,5 bright orange large round lights moving the exact same speed East to West in low, silent, wide formation, crossing the North edge of +2012-07-07,41.4047222,-81.7230556,Parma,OH,unknown,1200,A stange orange glow in the sky that was moving fast. that was the second night in a row we saw that. It wasnt moving like anything Ive +2012-07-07,43.4308333,-82.5425,Port Sanilac,MI,triangle,1200,Red lights in triangle shape in horizon. +2012-07-07,40.4861111,-74.4522222,New Brunswick,NJ,sphere,240,Rotating Orb Seen In New Brunswick Sky +2012-07-07,40.8258333,-74.2094444,Montclair,NJ,fireball,19,2 fireballs that crossed each other then disappeared. +2012-07-07,33.3061111,-111.8405556,Chandler,AZ,fireball,300,Witnessed several orange orbs in the southern skies of greater Phoenix area July 7, 2012. +2012-07-07,41.2330556,-80.4936111,Sharon,PA,fireball,480,Moving fireball that climbed up, then disappeared. +2012-07-07,33.7877778,-117.8522222,Orange,CA,fireball,900,8 "fireballs" seen in Orange County, CA. +2012-07-07,42.6608333,-77.0541667,Penn Yan,NY,light,120,We saw four floating, glowing lights in the early evening sky for about two minutes, beneath the clouds, making no sound, and they disa +2012-07-07,37.2872222,-121.9488889,Campbell,CA,light,300,Two orange lights slowly move across the sky. +2012-07-07,41.2019444,-77.2647222,Jersey Shore,PA,fireball,1350,Multiple glowing orbs from horizon to cloud height, sometimes in triangle formation. +2012-07-07,37.6988889,-93.7958333,Stockton,MO,sphere,300,Orange orbs hovering over Stockton Lake traveling from SW to NE hovering then disappering. +2012-07-07,36.7958333,-95.9352778,Dewey,OK,circle,120,Red round light changing colors traveled silently over Dewey Oklahoma +2012-07-07,35.0844444,-106.6505556,Albuquerque,NM,unknown,3600,Lights swirling around in clouds above Albuquerque +2012-07-07,40.5186111,-78.395,Altoona,PA,circle,180,Orange colored light moving in multiple directions and hovering unlike any helicopter or airplane then disappearing suddenly. Over PA +2012-07-07,40.1316667,-75.46,Oaks,PA,circle,240,Three orange orbs traveling across night sky +2012-07-07,47.6063889,-122.3308333,Seattle,WA,circle,600,15-16 bright objects seen in Seattle, WA on 7/7/12 +2012-07-07,47.6063889,-122.3308333,Seattle,WA,circle,600,Cluster of 15-16 bright lights traveled from East to South over Puget Sound from Lake Union +2012-07-07,38.8002778,-90.6263889,Saint Peters,MO,triangle,60,Three bright orange orbs spotted moving west to east quickly across the sky horizontally then disappeared quickly up into the clouds +2012-07-07,41.49,-71.3133333,Newport,RI,fireball,120,2 fireball objects changing to triangle objects pulsing orange light flying overhead at purgatory chasm in Newport. +2012-07-07,42.0897222,-76.8080556,Elmira,NY,oval,1,White object appears to have an eye and visits almost daily +2012-07-07,36.98,-85.6122222,Edmonton,KY,oval,300,Single bright orange/red pulsating light in northeast sky of Summer Shade, KY +2012-07-07,43.6613889,-70.2558333,Portland,ME,sphere,1200,8+ orange lights moving swift and silent in the night +2012-07-07,39.3458333,-84.5605556,Fairfield,OH,fireball,1200,Orange orbs rise and hover before disappearing. +2012-07-07,45.4711111,-89.7297222,Tomahawk,WI,fireball,40,3 bright redish orange lights moving east to west fade high into sky and stop in a triangular formation then turn all white +2012-07-07,40.3266667,-78.9222222,Johnstown,PA,circle,420,Fireball like object across Cambria county in Pennsylvania, US. +2012-07-07,47.6063889,-122.3308333,Seattle,WA,fireball,300,Multiple "fireballs" seen over North Seattle +2012-07-07,47.6063889,-122.3308333,Seattle,WA,other,120,15-18 lights seen over Seattle +2012-07-07,47.0380556,-122.8994444,Olympia,WA,fireball,600,Two circle shaped orbs were spotted for about 10 minutes, both appeared to have fire inside them and following them. +2012-07-07,44.7630556,-85.6205556,Traverse City,MI,light,180,About 50 lights, similar to what satellites look like, travelled across the sky North to South in one large group. +2012-07-07,47.5405556,-122.635,Port Orchard,WA,light,120,My daughter and i saw two bright white lights very far away in the sky and very far from each other moving perfectly in sync in until w +2012-07-07,44.7341667,-122.1486111,Detroit,OR,light,40,We were watching what we thought to be a satellite possibly and then all if a sudden it lit up! It was very bright and started moving a +2012-07-07,45.7186111,-123.9338889,Manzanita,OR,rectangle,900,A rectangle object crossed the sky in 30 seconds followed by an orange light hovering for about 5 minutes. +2012-07-07,45.0575,-93.0736111,Vadnais Heights,MN,oval,240,Orange red oval of light in vadnais heights +2012-07-07,47.6063889,-122.3308333,Seattle,WA,fireball,600,Location: On top of Magnolia in Seattle. Eyres Pl W. Looking North Time: 11:40 PM PST It was a perfectly clear and still Seattle nigh +2013-07-07,38.5336111,-77.8086111,Remington,VA,fireball,900,((HOAX??)) Moving in different directions. +2013-07-07,32.7152778,-117.1563889,San Diego,CA,fireball,180,5 lights in a line moving upwards +2013-07-07,28.5997222,-81.3394444,Winter Park,FL,light,60,Bright fixed orange light in sky, small pulsating lights slowly dropped beneath it and descended to ground. +2013-07-07,33.9997222,-79.1997222,Aynor,SC,circle,10,There were two lights traveling at an extreme speed and the lights were connected. +2013-07-07,42.9955556,-71.4552778,Manchester,NH,sphere,300,Orbs, Orbs, and more Orbs. +2013-07-07,42.5875,-72.6,Greenfield,MA,disk,120,The Disk Shaped Object Drifted Slowly From Southwest To Northeast At About 1000 Feet. The object Disappeared After A Couple Of Minutes +2013-07-07,42.3086111,-83.4822222,Canton,MI,circle,120,White circular shaped object appearing to intercept jet passenger plane +2013-07-07,34.9288889,-86.9738889,Elkmont,AL,formation,120,5 bright lights in pentagon formation AL/TN line. +2013-07-07,40.6866667,-73.3738889,Lindenhurst,NY,circle,120,Yellow/orange orb shoots across sky in Lindenhurst, NY at approximately 9:00pm edt. +2013-07-07,30.4505556,-91.1544444,Baton Rouge,LA,fireball,600,Odd video I took of an bright orange orib passing over my home in Baton Rouge , LA +2013-07-07,41.1175,-73.4083333,Norwalk,CT,flash,8,Flickering lights too wide and bright to be fireworks, a plane, or lightning. +2013-07-07,37.0833333,-88.6,Paducah,KY,circle,120,3 glowing red orbs floating slowly east over paducah, lights began to fade and then dissapear. +2013-07-07,40.3916667,-74.3988889,Spotswood,NJ,light,300,Ball of light circling and searching ground. +2013-07-07,41.7827778,-87.8780556,Countryside,IL,formation,90,Red lights slow moving and then moved into the clouds. +2013-07-07,38.3497222,-81.6327778,Charleston,WV,unknown,120,2 bright lights seen flying over Charleston, WV. +2013-07-07,42.9597222,-87.8613889,Cudahy,WI,circle,900,I have lived here for 55 years and never saw what I believe were UFOs. +2013-07-07,44.0463889,-123.0208333,Springfield,OR,circle,120,red orb sighted over springfield, oregon +2013-07-07,45.8641667,-122.8052778,St. Helens,OR,sphere,60,Orange sphere traveling south over st helens Oregon. +2013-07-07,27.8775,-97.2113889,Ingleside,TX,unknown,180,Strange object on fire going across the sky. +2013-07-07,41.5061111,-87.6355556,Chicago Heights,IL,circle,180,There was an Orange Glow in the sky. +2013-07-07,39.6619444,-74.1655556,Surf City,NJ,light,40,Small ball of light...similar to a star. Floated downwards then slowly die out. +2013-07-07,34.0666667,-78.5266667,Ash,NC,sphere,480,Very large non blinking orangish red sphere seem to be strangely close and large. +2013-07-07,26.9616667,-82.3527778,Englewood,FL,circle,120,Round bright orange solid ligh & no sound. +2013-07-07,45.7811111,-122.5322222,Battle Ground,WA,disk,60,Swift disc shaped object with reddish-orange lights in Washington state +2013-07-07,37.5536111,-77.4605556,Richmond (South Of),VA,disk,3,My daughter and I were traveling on route 95 north during a storm when a disc shaped bright light with lightning shooting around it. Ha +1975-07-08,47.6105556,-122.1994444,Bellevue,WA,cigar,60,UFO over Drive end Movie Theatre +1977-07-08,39.9802778,-79.8283333,Brier Hill,PA,disk,25,Around July 18, 1977 about 3:30PM in the afternoon. A very nice sunny day with only patchy cumulus clouds. Driving home on US Rt.40 nea +1978-07-08,35.2922222,-81.5358333,Shelby,NC,light,300,A bright light that turned into 2 lights and shot off in two separate directions. +1980-07-08,38.2541667,-85.7594444,Louisville,KY,cigar,2400,Definitely followed my car over 20 miles and shone lights, went way below the second loop of power line noiselessly +1980-07-08,38.2541667,-85.7594444,Louisville,KY,cigar,1800,DEFINITELY NOT FROM AROUND HERE! +1981-07-08,37.1297222,-80.4091667,Christiansburg,VA,light,600,Observed light only, first slowly moving, appeared to be small private plane.Then stationary, moved in circle while changing colors ( c +1981-07-08,43.9961111,-70.0611111,Lisbon Falls,ME,fireball,30,Sphere covered by a blueish flame, traveling north to south, 500 to 700 kts at an altitude around 1500 ft AGL. +1984-07-08,37.8802778,-86.2838889,Irvington,KY,cylinder,120,NA +1984-07-08,43.1725,-101.7322222,Martin,SD,oval,300,Oval-shaped craft, large as a football field, lights around parameter, first looked like star, silent, fast +1990-07-08,43.0388889,-87.9063889,Milwaukee,WI,fireball,60,Large bright orange/red ball over Milwaukee that slowly disappeard +1991-07-08,30.2669444,-97.7427778,Austin,TX,triangle,360,Huge blasts of spinning lights (3) scanned at least an acre of land until they zeroed in on us and chased us under a tree where we hid. +1992-07-08,46.1383333,-122.9369444,Longview,WA,circle,600,My family saw a ufo in a distance over the hills and then in a instant it was over us and our home. +1994-07-08,48.1808333,-116.9083333,Priest River,ID,disk,5400,Classic saucer with colored lights circling the rim; stationary for a long time so we got a GOOD look! +1995-07-08,41.1575,-81.2422222,Ravenna,OH,unknown,600,red lights and slow moving objest over sait marys cemetry in ravenna ohio +1998-07-08,37.9405556,-101.2544444,Lakin,KS,triangle,120,Around 2am I saw a triangular shaped object hover for some time and suddenly move out of sight off my back porch. +1998-07-08,42.6525,-73.7566667,Albany,NY,rectangle,300,silver cube with rubic cube like center +1998-07-08,42.5377778,-83.2330556,West Bloomfield,MI,other,180,It was aclear summer night,. a silent ship shaped like an iron with alternateing flashing lights,out of nowhere hovered a few mins.I +1999-07-08,43.7486111,-87.9769444,Plymouth (1/2 Mile North East Of),WI,circle,120,My 13 year old son and I saw an aircraft flying with two black circles buzzing it. +1999-07-08,41.4169444,-87.3652778,Crown Point,IN,other,120,My son and I witnessed what looked like a jet fly over our house, except that the arrow-like shape of it does not look like anything we +1999-07-08,40.2452778,-75.65,Pottstown,PA,sphere,60,we saw 2 orange spheres appear high over the Pottstown area from our location to the south on a hill in Berks County. Spheres just appe +1999-07-08,40.135,-86.2205556,Sheridan,IN,triangle,600,The object was 20 feet above us in the shape of a triangle with red, white, and blue lights on the tips of it. +1999-07-08,44.9430556,-123.0338889,Salem (Nw Part Of Town),OR,changing,28800,At first sight looked like star but kept moving almost in triangle upward motion. Colors kept changing as it moved upward. Am not sur +1999-07-08,38.6105556,-122.8680556,Healdsburg,CA,light,180,Bright light orange tint hovered stationary over academy on Russian River then abruptly moved perhaps a few hundred yards and again rem +1999-07-08,37.2438889,-77.4105556,Colonial Heights,VA,light,10,a round light started glowing as if there was a fog or cloud in front of it then it got brighter moved slowly to the the right stoppin +2000-07-08,37.595,-120.9566667,Ceres,CA,unknown,480,Blue Streak with UFO Trailing in Ceres, California +2000-07-08,32.9627778,-117.035,Poway,CA,unknown,1800,Very strange, luminous blue "cloud" at around 8:pm. +2000-07-08,44.9430556,-123.0338889,Salem,OR,unknown,10,very fast low unknown shape red lights only NO noise covered half the horizon in 10 seconds or less going north to south not a plane ! +2000-07-08,40.3697222,-80.6341667,Steubenville,OH,triangle,300,TRIANGULAR OBJECT MOVING AT A STEADY RATE OF SPEED WITH NO LIGHTS, NOISE & COMPLETELY INVISIBLE +2000-07-08,37.6166667,-84.4094444,Paint Lick,KY,unknown,60,In conclusion, I do not think it was a conventional craft . +2001-07-08,33.8883333,-118.3080556,Gardena,CA,disk,37800,I witnessed these craft first on 07//3/01, @10:30am, approx. in the same area, that I witnessed them on 7/08/01. They seemed to be doin +2001-07-08,35.855,-82.1980556,Celo,NC,triangle,600,Saw three triangular shaped spaceships in sky. Had lights on corners. Have a witness. +2002-07-08,41.5580556,-73.0519444,Waterbury,CT,disk,600,I witnessed an abduction from my backyard. 500 Lights On Object0: Yes +2002-07-08,32.56,-80.28,Edisto Island,SC,sphere,180,Watch what in the sky's you mite be surprised & if the Gov't sayes your crazy well look at them. +2002-07-08,26.0027778,-80.2241667,Pembroke Pines,FL,unknown,10,Glowing Green Orb shot across the sky. +2002-07-08,25.7738889,-80.1938889,Miami,FL,triangle,10,A triangular shape approximately two house lengths completely black hovering above the treeline across the street +2003-07-08,39.0638889,-108.55,Grand Junction,CO,sphere,60,orbs in Colorado +2003-07-08,41.3958333,-72.8972222,Hamden,CT,other,10,I LOOKED UP INTO THE SKY AT APPROXIMATELY 1:48 AM AND i NOTICED A BOOMERANG SHAPED OBJECT. IT WAS YELLOWISH WHITE IN COLOR. IT WAS MUCH +2003-07-08,27.8394444,-82.7913889,Seminole,FL,unknown,600,none because to far away to see actually what it was. +2003-07-08,32.7833333,-96.8,Dallas,TX,disk,2,White or Luminous Disk seen +2003-07-08,37.1288889,-84.0833333,London,KY,disk,600,it traveled on a angle,we always travel this hwy,and had never seen anything like this. +2003-07-08,32.5005556,-94.7402778,Longview,TX,circle,3,Daylight observation of a fast moving bright circular object below a 10ꯠ ft cloud level. +2003-07-08,39.8097222,-86.3225,Clermont,IN,disk,300,huge disc shaped object moving within a quickley moving storm cloud +2003-07-08,39.9936111,-105.0891667,Lafayette,CO,circle,60,small dark balloon like object flying straight north to south very quickly in windy conditions. +2003-07-08,38.4405556,-122.7133333,Santa Rosa,CA,other,1200,I was aware of every thing around me. I am amazed how it stayed in one spot rotating and flapping. +2003-07-08,39.1433333,-77.2016667,Gaithersburg,MD,oval,360,Bright object at edge of moon sat still, then moved slowly away from moon. +2003-07-08,35.3561111,-95.2652778,Porum,OK,disk,120,Fast moving UFO in Porum, Ok +2003-07-08,25.7738889,-80.1938889,Miami,FL,oval,2,It was oval shape bright white blue ball in the middle with a oval halo around it and came out from the sky into another dimension. +2003-07-08,30.3319444,-81.6558333,Jacksonville,FL,light,600,light flew over florida and makes u turn back south +2004-07-08,39.6477778,-104.9872222,Englewood,CO,sphere,600,Second day in a row, daytime star-like object(s) seen in Denver area +2004-07-08,26.7052778,-80.0366667,Palm Beach,FL,triangle,180,triangle shaped craft flying low and making no noise. +2004-07-08,41.2427778,-73.2011111,Trumbull,CT,oval,40,Brown rolling cylinder w/o sound nor light that seemed to have paddle-wings or changed shape as it proceed. +2004-07-08,39.8027778,-105.0869444,Arvada,CO,disk,120,On a hill and 5 or so people watching this circle ship hovered above us and then took off. +2004-07-08,39.0483333,-95.6777778,Topeka,KS,cross,120,'X' shaped, fairly slow moving, quiet aircraft. Totally unlike anything I have ever seen. +2004-07-08,45.5236111,-122.675,Portland,OR,diamond,270,Four lobed blue-black object seen moving south at dusk +2004-07-08,32.5155556,-95.4091667,Lindale,TX,light,300,A strange bee sound and searchlight. Media reported a "fireball" that night. +2004-07-08,45.0244444,-123.9452778,Otis,OR,other,240,Two faint star-like objects moving in a straight line, exactly with one another, slowly across the sky. +2005-07-08,33.9616667,-118.3522222,Inglewood,CA,triangle,30,I was driving East on Century blvd a few blocks from Hollywood, Park Casino. I was right next to Jesse Owens Park and I look up to my +2005-07-08,43.6122222,-116.3905556,Meridian,ID,disk,15,A beaming strong light shined on us and the object flew by. ((NUFORC Note: Probably an aerial applicator aircraft. PD)) +2005-07-08,43.6122222,-116.3905556,Meridian,ID,disk,5,I was approached by a strang flying light driving home in july. ((NUFORC Note: Probably an aerial applicator aircraft. PD)) +2005-07-08,41.5061111,-87.6355556,Chicago Heights,IL,rectangle,120,rectangular bright object in a hover shots straight up and disappears. +2005-07-08,46.8772222,-96.7894444,Fargo,ND,egg,600,slow-moving cigar/egg shaped object seen above Fargo +2005-07-08,31.1169444,-97.7275,Killeen,TX,cigar,10,The bright silver cigar-shaped object came out of a cloud and disappeared in seconds into another cloud and never reappeared. +2005-07-08,44.0522222,-123.0855556,Eugene,OR,sphere,1200,Sperical glowing craft over eugene oregon +2005-07-08,33.2097222,-87.5691667,Tuscaloosa,AL,circle,10,It was round,silent,illuminated pale white,and it moved,from where it wasn't suppose to be. +2005-07-08,44.0838889,-93.2258333,Owatonna,MN,light,600,I thought it was a star until I watched it slowly move across the sky appearing to start and stop as it went along. +2006-07-08,29.5847222,-81.2080556,Palm Coast,FL,cigar,3600,Red/Amber light in east coast Florida Sky. July 8, 2006 +2006-07-08,47.3225,-122.3113889,Federal Way,WA,changing,60,Saw a blue floating orb outside my window that proceeded to explode emitting a LOUD sound +2006-07-08,27.8002778,-97.3961111,Corpus Christi,TX,formation,7200,they were like stars at night but only this was during the day time. +2006-07-08,33.0911111,-84.4375,Concord,GA,circle,10,((HOAX??)) A small reddish orange saucer went flying past me at a super speed. +2006-07-08,32.5630556,-97.1413889,Mansfield,TX,oval,13,the object was moving and had sound +2006-07-08,39.1266667,-82.9855556,Waverly,OH,sphere,1200,reddish orangish soft ring 300 yards diameter +2006-07-08,46.6022222,-120.5047222,Yakima,WA,light,30,While looking East and about 45 degrees up from horizon, saw a solid light traveling north at a very, very slow pace. It only lasted ma +2006-07-08,31.8541667,-110.9930556,Green Valley,AZ,formation,600,dim cluster of lights over southern arizona +2007-07-08,32.8213889,-116.5283333,Pine Valley,CA,sphere,7200,Three objects and static shock in Pine Valley and three witnesses +2007-07-08,38.4405556,-122.7133333,Santa Rosa,CA,light,5,First one, then two bright white objects hovering motionless and varying in brightness. +2007-07-08,38.2775,-85.7372222,Jeffersonville,IN,disk,300,We were (five of us) all watching a small saucer (approx 40 ft wide at approx 3000 ft altitude). A jet fighter would approach and the s +2007-07-08,44.0327778,-69.5191667,Damariscotta,ME,circle,3,Bright white spherical object moved rapidly from east to west crossing river to the south of our home +2007-07-08,33.5805556,-112.2366667,Peoria,AZ,light,600,Flash of light thought to be a UFO +2007-07-08,41.5727778,-72.6411111,Portland,CT,fireball,300,Fireball,very low and then went higher into the sky and dissappeared +2007-07-08,47.5675,-122.6313889,Bremerton,WA,light,2,Fast moving bluish light gliding across sky. +2008-07-08,45.6388889,-122.6602778,Vancouver,WA,rectangle,1200,((HOAX??)) verticle rectangle with several bright lights. +2008-07-08,38.8002778,-90.6263889,St. Peters,MO,light,10,Bright neon green light hovered then broke the sound barrier as it took off. +2008-07-08,42.6522222,-78.8972222,Eden,NY,unknown,1200,3 bright orange lights in a horizontal line hover over some trees for 15 minutes then the lights turned blue and it vanished +2008-07-08,37.0588889,-88.1325,Kuttawa,KY,light,180,fast moving solid bright light, redish color, in KY +2008-07-08,39.7683333,-86.1580556,Indianapolis,IN,unknown,3,horizontal zig zagging white light +2008-07-08,47.7625,-122.2041667,Bothell,WA,light,5,Fast bright light making "s" shaped turns back and forth +2009-07-08,37.1366667,-85.9569444,Cave City,KY,changing,10800,Strange Lights over Glasgow Ky, 7-8-09 +2009-07-08,44.7538889,-108.7566667,Powell,WY,circle,10,I was sitting outside on the front porch of my dorm enjoying a cigarette with a friend when I looked up and saw what I thought was a si +2009-07-08,39.9205556,-78.9580556,Berlin,PA,other,600,A six pointed spire craft about 70 to 90 foot in size hovered for 10 minutes above wind mill making know sound and emitting no exhaust +2009-07-08,32.2216667,-110.9258333,Tucson,AZ,rectangle,20,Bright, rectuangular object suddenly disappears in day sky. +2009-07-08,39.2463889,-82.4786111,Mcarthur,OH,changing,2700,strange object seen over McArthur sky +2009-07-08,45.6388889,-122.6602778,Vancouver,WA,other,10,Odd shaped aircraft +2009-07-08,34.4077778,-111.4927778,Strawberry,AZ,light,120,Slow moving single bright light over Northern Arizona +2009-07-08,40.5,-111.95,West Jordan,UT,triangle,480,Triangle object seen for approx. 8 minutes west of Mount Olympus near Salt Lake City, Utah +2009-07-08,33.4483333,-112.0733333,Phoenix,AZ,flash,30,Lake Pleasant night time UFO sighting +2009-07-08,44.6366667,-123.1047222,Albany,OR,circle,120,2 star like objects moving through sky completely quiet +2009-07-08,42.5030556,-83.1836111,Berkley,MI,triangle,60,Air force jets trailed by something. +2009-07-08,38.0080556,-92.7444444,Camdenton,MO,sphere,120,Large Red Glowing Spherical Object Moving Slowly About 150 Foot Above Ground Right in Front of Me +2009-07-08,35.6527778,-97.4777778,Edmond,OK,light,15,Two lights traveling extremely fast starting northeast of Edmond. +2010-07-08,34.9675,-82.4436111,Travelers Rest,SC,fireball,30,Red Fireball over highway and truck +2010-07-08,28.5380556,-81.3794444,Orlando,FL,other,45,Silver pill-shaped object viewed over Disney World in Florida +2010-07-08,40.5866667,-122.3905556,Redding,CA,circle,13,After reviwing a video of clouds, I saw four ufos. +2010-07-08,34.035,-77.8938889,Carolina Beach,NC,disk,600,Red flickering saucer like shape moving irratically, then paused for several seconds before the light disappeared. 15 minutes later, 2 +2010-07-08,33.9525,-84.55,Marietta,GA,triangle,300,Black triangle hovering in one spot with one red light on a corner and white lights on the others. +2010-07-08,47.6063889,-122.3308333,Seattle,WA,fireball,360,Four orange/red flare like objects flying across Seattle +2010-07-08,47.6063889,-122.3308333,Seattle,WA,diamond,360,4 glowing objects travel in formation over Puget Sound. +2010-07-08,46.7163889,-122.9530556,Centralia,WA,sphere,10,3 white orbs traveling southbound near I-5 come to complete stop than dash away - I noted the event on Twitter. +2010-07-08,45.6388889,-122.6602778,Vancouver,WA,light,60,Saw four orange stationary lights in Southern sky about 15 degrees in elevation +2010-07-08,45.6388889,-122.6602778,Vancouver,WA,circle,120,4 strange orange lights moving then disapearing into sky in Vancouver,WA +2010-07-08,44.5727778,-116.675,Cambridge,ID,circle,1200,A bright light spinning and weaving over a small town in Idaho. +2010-07-08,45.6388889,-122.6602778,Vancouver,WA,light,300,Four bright lights I assumed to be planes heading to a nearby international airport suddenly vanished and no planes landed. +2010-07-08,42.4461111,-87.8327778,Zion,IL,light,60,Large bright light above far north Chicago suburbs +2010-07-08,40.7358333,-73.0825,Sayville,NY,flash,1800,Five UFO's seen travelling over L.I, NY +2010-07-08,29.1869444,-82.1402778,Ocala,FL,sphere,300,red/green sphere doing helicopter like moves except performing them extemely quick then flying off into space +2011-07-08,35.7436111,-79.6925,Franklinville,NC,other,120,Red object the size of the moon in franklinville Nc +2011-07-08,39.0633333,-84.5930556,Villa Hills,KY,fireball,10,My mom and i were driving home and i saw a fireball of some sort flying across the sky and then a yellow ring burst around it and anoth +2011-07-08,38.5816667,-121.4933333,Sacramento,CA,light,300,Northern California Night Orb. ((NUFORC Note: Possibly a landing light on an approaching airliner? PD)) +2011-07-08,36.6941667,-91.3991667,West Alton (Mississippi River),MO,unknown,300,It went underwater eventually, it was black,and seemed to have something on its back, cell phone signal was temporarily lost. +2011-07-08,32.7833333,-96.8,Dallas,TX,disk,600,Bright yellow lights, most of the craft was hidden by the clouds. +2012-07-08,48.1958333,-114.3119444,Kalispell,MT,diamond,300,Diamond shaped UFO seen over Lone Pine State Park. +2012-07-08,47.9786111,-122.3544444,Clinton,WA,fireball,720,Orange lights in the sky over Clinton WA on July 8, 2012 at 12:45+/- AM +2012-07-08,25.7738889,-80.1938889,Miami,FL,cylinder,300,Large 300 ft long cylinder craft was hovering and had two large multicolored stripes on each triangular end. +2012-07-08,33.9375,-117.2297222,Moreno Valley,CA,flash,180,Colorful Flashes Along The Hillside. +2012-07-08,37.2152778,-93.2980556,Springfield,MO,fireball,600,A Silent orange light flew over me and my family +2012-07-08,38.4972222,-122.9655556,Santa Nella,CA,formation,120,07/08/12, 20:45, Santa Nella, Ca. Event duration 1 - 2 min. 4 reddish colored spheres in box formation, 1 witness. +2012-07-08,38.4972222,-122.9655556,Santa Nella,CA,sphere,120,07/08/12, 20:45, Santa Nella, Ca. Event duration 1-2 min. 4 reddish colored spheres in box formation; 1 witness. +2012-07-08,40.6219444,-74.245,Linden,NJ,fireball,300,2 bright orange orbs in NJ sky +2012-07-08,37.8044444,-122.2697222,Oakland,CA,circle,600,4 Orange lights seen over Oakland, CA - Interesting maneuvers and disappearance. First time sighting! +2012-07-08,42.1486111,-72.6083333,Chicopee,MA,fireball,90,I saw a UFO in the form of a fireball that turned from a flame, to a flicker until it faded and disappeared over head. +2012-07-08,35.2225,-97.4391667,Norman,OK,changing,120,A redish-orange shape-changing orb over Norman, Ok., on July 8, 2012, that changed from a north to west direction before dimming out. +2012-07-08,34.0552778,-117.7513889,Pomona,CA,sphere,3600,Multiple orange/red spheres in sky over Los Angeles County +2012-07-08,41.6986111,-88.0683333,Bolingbrook,IL,fireball,240,Fiery orb, traveling on SW vector from NE. +2012-07-08,34.2572222,-118.4661111,Mission Hills,CA,fireball,10,While sitting in the backyard of home in a fairly densely populated area, I witnessed for a few seconds 3 fireball looking objects flyi +2012-07-08,34.49,-77.4319444,North Topsail Beach,NC,light,5,Fast moving reddish light moved from ocean toward land and disappeared. +2012-07-08,34.61,-112.315,Prescott Valley,AZ,sphere,120,Spherical object emitting extremely bright orange light from an energy source under the craft. +2012-07-08,38.6580556,-77.25,Woodbridge,VA,sphere,300,Four red glowing lights in a formation (lined up). +2012-07-08,39.0997222,-94.5783333,Kansas City,MO,sphere,180,Super brilliant Orange/Red spherical object/orb +2012-07-08,38.6580556,-77.25,Woodbridge,VA,diamond,180,They were glowing and moving +2012-07-09,38.4219444,-77.4086111,Stafford,VA,light,300,Appear like full moon like light not where moon is and photos make it look like rows of lights can't see it that well +2013-07-08,40.3355556,-75.9272222,Reading,PA,unknown,600,A single light source in the sky that alternated red,green, white, blue. Sometimes seemed to stand still but moved in an unusual manner +2013-07-08,48.3883333,-115.555,Libby,MT,changing,7200,Looking S, like a light bar With blue, red, green, purple and white lights that dance. ((NUFORC Note: Star?? PD)) +2013-07-08,39.3641667,-74.4233333,Atlantic City,NJ,fireball,7200,Orange fireball over the ocean, doing unexplainable things in the sky. +2013-07-08,43.6613889,-70.2558333,Portland,ME,disk,60,I awoke twice to bright blue light; once with no object, once with a suspended disc. +2013-07-08,40.0380556,-75.2227778,Roxborough,PA,light,180,Large bright white circular light in sky that did not move for almost 2 minutes in Philadelphia then dissapeared +2013-07-08,39.8647222,-75.0555556,Barrington,NJ,fireball,240,2 Orbs or fireballs 5 mins apart traveling s.e. to n.e. then disappeared in distance. +2013-07-08,39.5522222,-84.2333333,Springboro,OH,circle,240,No blinking lights, went from dim to bright to unlit +2013-07-08,44.9483333,-93.3477778,St. Louis Park,MN,circle,600,Luminous ball-shaped objects. +2013-07-08,38.3363889,-75.0852778,Ocean City,MD,circle,2,Total of three balls of white light flying north to south. +2013-07-08,37.1536111,-83.7619444,Manchester,KY,other,120,Large light drops from the sky, no traces, police cover up. +2013-07-08,28.6,-81.6741667,Montverde,FL,rectangle,60,I was driving in my car looking through my rear view mirror. I kept seeing flashing lights far away in the sky. I was alarmed because l +2013-07-08,47.6063889,-122.3308333,Seattle,WA,light,2400,Saw a UFO that looked like a star several times near the Big Dipper +2013-07-08,27.8658333,-82.3266667,Riverview,FL,fireball,60,Saw a bright orange ball in the western sky. It appeared very high up in the sky, watching it for approximately 1 minute while taking +2013-07-08,38.5816667,-121.4933333,Sacramento,CA,circle,2,A large, circular, bright, white light appeared in the night sky traveling at a high rate of speed and disappeared in thin air. +1947-07-09,37.8205556,-88.9275,Johnston City,IL,disk,45,I was only 13 at the time but I will never forget what I watch on that warm July evening I'am 69 now +1964-07-09,41.85,-87.65,Chicago,IL,disk,30,Surprised by disc hovering above the highway in front of me. +1966-07-09,36.8655556,-87.4886111,Hopkinsville,KY,other,600,Observed a capsule type craft land, then take off from a field across from a restaurant while noon hour traffic continued. +1968-07-10,39.2072222,-86.2511111,Nashville,IN,cigar,480,it was cigar shaped there were other witnesses it was silent and it appeared silver it hovered 8 minutes and disappeared in an instant +1972-07-09,30.6741667,-96.3697222,Bryan,TX,triangle,120,Me and a friend had a teloscope out and were using my binos to spot a star to view.Somthing blocked out the star i was looking at,i low +1989-07-09,30.3933333,-86.4958333,Destin,FL,fireball,1200,Several red balls of light flying in formation over the gulf of mexico with no sound at high speed. +1989-07-09,40.0175,-90.4241667,Beardstown,IL,circle,3600,seen 2 gold circular shaped lights in northeast region of sky. The first light slowly dimmed out, and then a second gold light jus +1991-07-09,42.6813889,-78.9755556,Derby,NY,triangle,300,Metalic triangle with crimson light in center, hovered very slowly and noislessly over the trees and then came around in an arc and dis +1993-07-09,36.9902778,-86.4436111,Bowling Green,KY,chevron,300,The warmth of the lights could be felt. +1994-07-09,36.8252778,-119.7019444,Clovis (On Herndon Ave, Between Maine &Amp; Locan Avenues),CA,triangle,300,After leaving my house, a friend saw large, slow-moving, triangular shaped craft overhead. Flying low to the ground. Had 3 white light +1996-07-09,38.6272222,-90.1977778,St. Louis,MO,triangle,1800,The object looked like a triangular shaped solid welder's arc. +1997-07-09,38.8813889,-94.8188889,Olathe,KS,light,300,As I was travelling west on 135th. St. between Antioch and Pflumm, I Noticed to my left a trio of lights which were strobing. The ligh +1998-07-09,39.6080556,-119.2508333,Fernley,NV,triangle,600,Was driving home and saw a black triangle craft in the air. Aplane flying by near it and I noticed it was aout 3ꯠfeet higher than th +1998-07-09,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,60,My son had seen the UFO when he went to look out the window. He was looking straight when he saw a huge UFO with white bright lights at +1999-07-09,41.6661111,-81.3397222,Mentor,OH,sphere,120,Saw sphere over treetops ,thought it was moon ,change colors, spin and split into two spheres +1999-07-09,37.1694444,-104.5,Trinidad,CO,fireball,2,At first thought it was meteor but there was heavy cloud cover behind the path. It formed an arc from what looked like NE to SW of Tri +1999-07-09,47.6063889,-122.3308333,Seattle,WA,light,14,A bright light about the sized of a dime appeared, high in the NE sky. It lasted for about 5 seconds, then dropped immediately to abou +1999-07-09,33.8080556,-84.1702778,Stone Mountain,GA,light,300,Blue round object appeared on the southwest side of Stone Mountain,GA then proceeded north, then proceeded west and gained speed and al +1999-07-09,30.0797222,-95.4169444,Spring,TX,light,600,Thought I saw a shooting star but it just kept going. Vary slow and direct, changed direction vary sharpley. Another craft crosed it's +1999-07-09,45.1438889,-122.8541667,Woodburn (7 Miles East Of),OR,fireball,2,red glowing object, white at center, just above horizon to the North. Did not appear to move. Disappeared from view. +1999-07-09,44.5163889,-116.0408333,Cascade (7 Miles Nw City Of),ID,light,10,"Star" brightend in shy, then slowly faded away to invisible +1999-07-09,47.6397222,-122.8272222,Seabeck,WA,other,7200,It was a nice, clear night and we were star gazing from 2330 to 0200. We saw some very unusual flashes of light and in one case, a obje +2000-07-09,41.8005556,-73.1216667,Torrington,CT,light,1800,It was a bright light that took off at a fast speed. +2000-07-09,40.7072222,-73.6763889,Franklin Square,NY,unknown,50,Long Conta-trail +2000-07-09,42.1583333,-72.3291667,Palmer,MA,unknown,60,Unknown black object caught fling straight up on video tape by accident. +2000-07-09,40.7608333,-111.8902778,Salt Lake City,UT,oval,780,The ufo appeared to wobble in the sky moving very slowly North bound. I'm not sure how large the craft was. but it was a donut or ring +2000-07-09,28.1758333,-80.5902778,Satellite Beach,FL,other,3,Flat, grey objects soar through nite sky near Kennedy Space Center in Florida +2001-07-09,45.5236111,-122.675,Portland,OR,oval,727,I heard a helicopter which sounded like it was above my house, I went outside to see and I looked at the helicopter, it had a sheriff s +2001-07-09,41.5263889,-70.6736111,Woods Hole,MA,light,1200,Floating RED light +2001-07-09,40.7966667,-74.4819444,Morristown,NJ,unknown,240,Multiple small, white, high-flying objects seen in daylight +2001-07-09,32.7447222,-116.9980556,Spring Valley,CA,sphere,300,Light spotted over Sweetwater Resivior in Spring Valley +2001-07-09,47.7883333,-122.3075,Mountlake Terrace (Seattle),WA,disk,10,Lynnwood W.A. spherical with lights +2001-07-09,42.2194444,-87.9794444,Vernon Hills,IL,circle,180,Mysterious light dashes accross the sky +2002-07-09,39.8691667,-75.3827778,Brookhaven,PA,triangle,2,Strange noise bothering my dogs came from a hovering triangular light +2002-07-09,42.225,-121.7805556,Klamath Falls,OR,light,90,7/9/02. Klamath Falls , OR 03:55, object travelling from SSE towards NNW accelerates at high speed and does 180 still accelerating +2002-07-09,27.9655556,-82.8002778,Clearwater,FL,other,60,Over the city of Tampa Bay a big thunderstorm was developing around 12.15 pm 07/09/2002. A jet flight came out from the storm flighting +2002-07-09,37.6391667,-120.9958333,Modesto,CA,light,300,Four Fighter jets chasing a bright light in Modesto, CA +2002-07-09,29.4238889,-98.4933333,San Antonio,TX,circle,3600,bright light,possible spinning,moving west +2002-07-09,39.5358333,-76.3486111,Bel Air,MD,triangle,1200,Me and my friends each 12-14 were talking when we suddenly spotted three stars in the sky flashing and then they moved away. +2002-07-09,35.1477778,-114.5675,Bullhead City,AZ,oval,900,I WAS OUT WITH MY DOGS IN THE FRONT OF MY HOUSE AT ABOUT 11:00 PM WHEN AN OBJECT CAUGHT MY EYE IN THE SOUTH IT HAD RED, GREEN AND WHITE +2002-07-09,34.1780556,-82.3791667,Abbeville,SC,triangle,120,ufo visits small town usa +2003-07-09,36.5619444,-86.2480556,Westmoreland,TN,triangle,720,Huge triangle with white lights over Tennessee, Kentucky Border +2003-07-09,35.3736111,-83.2261111,Sylva,NC,changing,20,The disk I saw was easily able to avoid the fighter aircraft pursuing it +2003-07-09,42.0983333,-76.0497222,Endicott,NY,triangle,120,Craft re-enters the atmosphere +2003-07-09,37.8044444,-122.2697222,Oakland,CA,egg,300,july 9 2003- glowing pink object hovering above san francisco bay +2003-07-09,41.5336111,-84.9127778,Hamilton,IN,circle,600,BIG ROUND OBJECT GLOWING RED LIGHT, CAME OUT OF NORTH SKY DOWN HOVERING OVER 10 ACRE FIELD NEXT TO OUR HOUSE WHILE WE WERE HAVING A CAM +2003-07-09,35.6013889,-84.4611111,Sweetwater,TN,light,5400,Brilliant red-orange light that could maneuver unlike any human aircraft... +2003-07-09,36.1397222,-120.3591667,Coalinga,CA,light,10,While driving on I-5 north of Colinga exit (Hwy 198) around 10 pm observed increasing brignt light that caused entire area to light up. +2003-07-09,37.0058333,-121.5672222,Gilroy,CA,changing,5,Looked like a huge chunk of something, the size of a small car, seemingly on fire, falling out of the sky at a great rate of speed, lik +2003-07-09,47.6483333,-117.0913889,Liberty Lake,WA,triangle,180,Triangle shaped lights, white w/orange rim, moving in unison across night sky +2003-07-09,34.5063889,-117.9088889,Pearblossom,CA,triangle,300,what we saw was a triangle shaped object with white lights at each point , it didnt make a sound as it passed overhead +2003-07-09,43.6136111,-116.2025,Boise,ID,formation,600,Light formation passes directly over 3 witnesses. +2003-07-09,39.5297222,-119.8127778,Reno (Southwest),NV,other,21600,Star-like Object +2004-07-09,38.4147222,-90.8138889,Robertsville,MO,light,10,White light resembling shooting star creates electrical havoc. +2004-07-09,27.8002778,-97.3961111,Corpus Christi,TX,oval,30,Oval object streaks across a clear Texas sky. +2004-07-09,40.5186111,-78.395,Altoona,PA,unknown,1200,There was a unknow never seen befor light in the woods by my house that was to close to be real. +2004-07-09,33.7455556,-117.8669444,Santa Ana (Near),CA,light,240,Star-like lights stationary then move slowly and then quickly, disappear. +2004-07-09,36.3486111,-82.2108333,Elizabethton,TN,circle,30,shinny circle that disapeared +2004-07-09,39.5297222,-119.8127778,Reno,NV,light,600,two bright lights were fading in and out and sped off at incredible speeds +2004-07-09,42.1416667,-71.25,Walpole,MA,light,180,Object went straight up across the sky into space, 2-3 minute observation. +2004-07-09,48.1988889,-122.1238889,Arlington,WA,unknown,300,Object emitted sparks like firewors and moved around sky erratically. +2004-07-09,39.9536111,-74.1983333,Toms River,NJ,triangle,60,It travelled unlike anything I've ever seen, spun around chaoticaly, was shaped like triangular pyramid. +2005-07-09,41.1305556,-85.1288889,Fort Wayne,IN,other,5,fooball shape with wing like appendage self luminous pinkish flying in straight line. +2005-07-09,33.5091667,-111.8983333,Scottsdale,AZ,changing,3600,5 white changing objects and 3 color changing all following eachother in groups. +2005-07-09,33.9461111,-84.3347222,Dunwoody,GA,sphere,3600,Mirror ball sphere rotating in Dunwoody, Georgia for 1 hr. +2005-07-09,42.4727778,-122.8016667,Eagle Point,OR,light,900,stayed in one spot for 15 minutes, huge bright light, then dissapeared +2005-07-09,47.6816667,-122.2075,Kirkland,WA,teardrop,4,Object shot across the sky at an amazing speed- Blue teardrop with silver center +2005-07-09,47.6063889,-122.3308333,Seattle (Shoreline),WA,teardrop,3,Fast moving blue tear drop shape +2005-07-09,41.5733333,-87.7844444,Tinley Park,IL,cigar,60,Traveling south on Oak Park ave, about 172nd st, My son saw something in the sky, silver and Black, clear blue sky. He told me to look +2005-07-09,41.85,-87.65,Chicago,IL,formation,1045,Multiple lights hanging in sky +2005-07-09,28.6119444,-80.8077778,Titusville,FL,formation,300,2 objects moving sw to ne 50 mph񫺐-3000 agl,constant cousre,speed 1st obj lower in frontƺnd higher and behind +2005-07-09,41.3983333,-81.8047222,Brook Park (W. Cleveland),OH,light,300,((NUFORC Note: Possible hoax. See below. PD)) Bright red light that disappeared quickly. +2005-07-09,34.0775,-117.6888889,Montclair,CA,triangle,120,Montclair triangular shaped UFO surrounded by bright lights and shooting off lazers. +2005-07-09,40.5683333,-74.5388889,Bound Brook,NJ,disk,180,ufos on bound brook +2005-07-09,34.1008333,-117.7669444,La Verne,CA,light,60,Descending white light flattened to a line of light +2005-07-09,47.6105556,-122.1994444,Bellevue,WA,changing,300,Orange shape shifting object in the sky over seattle skyline. +2005-07-09,41.3983333,-81.8047222,Brook Park,OH,light,600,Bright red, silent & hovering. +2005-07-09,40.1727778,-74.9930556,Holland,PA,light,600,3 satellites in 10 minute span - third one changes direction and stops; resumes at higher speeds +2005-07-09,33.78,-118.2616667,Wilmington,CA,light,360,Orange ball of light over Carson, CA. +2006-07-09,33.7838889,-116.9577778,San Jacinto,CA,unknown,20,Object moving in an S shape at a high rate of speed +2006-07-09,48.3561111,-117.8363889,Addy,WA,unknown,600,have seen from calif. the space shuttle reentering for landing. Theese objects looked exactly the same. comming from west to east obser +2006-07-09,37.7022222,-121.9347222,Dublin,CA,unknown,720,low flying, very loud piston type engine, extremely slow moving craft, unseen +2006-07-09,38.8047222,-77.0472222,Alexandria (Independent City??),VA,disk,30,Cluster of disc-shaped objects that passed within 30 seconds +2007-07-09,34.0230556,-84.3616667,Roswell,GA,other,420,((HOAX??)) Truley a UFO. +2007-07-09,32.2686111,-107.7580556,Deming,NM,oval,2,anomaly in the southern new mexico sky +2007-07-09,40.7933333,-77.8602778,State College,PA,triangle,2580,3 lights formed in a pyramid shape, blinking with harmony as if it was a beacon of some sort. +2007-07-09,27.3361111,-82.5308333,Sarasota,FL,cigar,120,Cigar Flying Headed North Over Fruitville in Sarasota +2007-07-09,47.6063889,-122.3308333,Seattle,WA,unknown,1800,Odd object over Seattle, perfectly clear day, airplanes and bird in frames for comparison +2007-07-09,33.8702778,-117.9244444,Fullerton,CA,changing,900,Stationary Silver object seen at very high altitude appeared to be descending while reflecting sunlight +2007-07-09,38.9591667,-85.8902778,Seymour,IN,circle,120,Round object seen in the forest Object hovered and quickly left. Caught on film. +2007-07-09,32.105,-92.0777778,Columbia,LA,changing,60,object seen the the southern sky it changed shape twice, then traveled off at a high rate of speed to the south. +2007-07-09,27.7705556,-82.6794444,St. Petersburg,FL,cigar,3600,AT 22;30 HOURS I NOTICED A CIGAR SHAPED CRAFT IN THE SOUTHWESTERN SKY ABOVE MY APARTMENT BUILDING AT LEAST 90 DEGREES ABOVE THE HORIZA +2008-07-09,40.7141667,-74.0063889,New York City (Manhattan),NY,egg,5,EGG SHAPED OBJECT W/GREEN NEON TAIL OVER NEW YORK CITY EARLY JULY 2008 +2008-07-09,32.9911111,-117.2702778,Solana Beach,CA,disk,1800,Balloon-like hovering star-shaped disk hovered and drifted in a controlled manner. Did not float away like a typical helium balloon. +2008-07-09,47.6063889,-122.3308333,Seattle,WA,disk,900,white disc with silver color change shaped object trailing slowly hovering above clouds at sunset on Elliot Bay +2008-07-09,38.6780556,-121.175,Folsom,CA,circle,30,A bright, big circular object over Folsom, California +2008-07-09,34.8525,-82.3941667,Greenville,SC,triangle,240,Dark triangular UFO with three white lights, one red light, hovering in the sky +2008-07-09,34.1141667,-116.4313889,Yucca Valley,CA,unknown,10,Amber Lights +2009-07-09,36.8466667,-76.2855556,Norfolk,VA,sphere,90,Two daytime sightings of two different types of objects in the same general area 12 days apart. +2009-07-09,36.7477778,-119.7713889,Fresno,CA,light,300,Very bright light receding toward the East over the Sierras +2009-07-09,37.6547222,-122.4066667,South San Francisco,CA,formation,300,Formation of lights over south san francisco and L.A +2009-07-09,44.5438889,-73.1483333,Colchester,VT,triangle,6,Alright, me and my friend were driving down the road, and i saw it in the sky, at first I didnt think any of it because we live sorta n +2009-07-09,47.6063889,-122.3308333,Seattle,WA,light,180,Bright light headed East, swerving, boosting, pulsing. stopped, continued east, beam came from center. ((NUFORC Note: ISS. PD)) +2009-07-09,41.5102778,-112.0147222,Brigham City,UT,circle,1080,Two circular shaped objects seen flying in an unusal pattern with alternating speeds and lights with varying levels of brightness. +2009-07-09,40.7141667,-74.0063889,New York City (Staten Island),NY,light,15,I was sitting in my yard with my girlfriend talking one night. We were star gazing and she spotted what she thought was a plane. I said +2009-07-09,40.2452778,-75.65,Pottstown,PA,cylinder,300,the object was to low to be a jet and to quiet. +2009-07-09,37.3394444,-121.8938889,San Jose,CA,circle,1200,I saw a bright, moving, red light in the sky. +2010-07-09,38.005,-121.8047222,Antioch,CA,cigar,180,07/09/2010, Antioch, CA; oblong, 3 min., luminous red orange, 3 x's larger than a small plane, pulsing soft noise,strait low flight. +2010-07-09,37.8044444,-122.2697222,Oakland,CA,cylinder,900,OAKLAND UFO 7/9/2010 HAVE PIC +2010-07-09,47.7094444,-121.3588889,Skykomish (Nearest),WA,disk,60,Noticed images on enlarged digital photos only after returning from vacation. +2010-07-09,47.0061111,-112.0683333,Wolf Creek,MT,disk,10800,Then saw a light in the sky focused on it and it appeared to be some kind of ship. ((NUFORC Note: Venus?? PD)) +2010-07-09,47.0380556,-122.8994444,Olympia,WA,other,2,3 DIMENTIONAL, ROUND OBJECT, LOOKS LIKE SKELATON OF THE MOON,.bone framed round object +2010-07-09,44.9663889,-70.6433333,Rangeley,ME,oval,20,White Light Orb moving quickly across the sky with no sound... +2010-07-09,43.2127778,-75.4561111,Rome,NY,triangle,900,Two crafts were seen one dissappered and another in a V shape one flew above me and my family while fishing at lock 21. +2010-07-09,37.2152778,-93.2980556,Springfield,MO,disk,300,fireball and gray disc with revolving red light +2010-07-09,38.7627778,-93.7358333,Warrensburg,MO,oval,10,Orange light hovering above trees. +2010-07-09,34.6136111,-120.1916667,Buellton,CA,flash,60,Double flash of "satellite" moving North to South ??? +2010-07-09,40.2338889,-111.6577778,Provo,UT,flash,3600,Rapid strobe-like flashes behind clouds in the night sky. +2010-07-09,45.6388889,-122.6602778,Vancouver,WA,triangle,600,1 triangle ship and 8 fire balls in vancouver wa +2010-07-09,42.2358333,-96.4722222,Winnebago,NE,cross,120,Bright white shaped cross moving east then up +2010-07-09,40.8663889,-73.0361111,Selden,NY,circle,30,Strange object moved across almost the entire night sky, looked like a star, but wasn't. ((NUFORC Note: ISS? PD)) +2010-07-09,42.2972222,-71.075,Dorchester,MA,sphere,75,Drifting, wobbly light moving quickly across the night sky and disappearing three days after 1st sighting. ((NUFORC Note: ISS? PD)) +2010-07-09,41.88,-88.0077778,Lombard,IL,light,420,i saw 3 lights moving im similar ways some really bright moving and dimming from white then red then vanishing. +2010-07-09,33.9802778,-118.4508333,Marina Del Rey,CA,oval,90,8 GLOWING HOVERING OBJECTS THAT DISAPPEARED ONE BY ONE OVER MARINA DEL REY, CRAZY, 2 MINS. NOT AIRPLANES! +2010-07-09,38.8905556,-90.1841667,Alton,IL,unknown,60,Two lights moving across the Illinois sky. +2010-07-09,37.0058333,-121.5672222,Gilroy,CA,flash,8,THREE BRIGHT FLASHES HIGH ABOVE GILROY CALIFORNIA +2010-07-09,40.0333333,-83.1583333,Hilliard,OH,fireball,600,My girlfriend and I were driving on Leppert Road toward Scioto Darby Road at 11:00PM. We were talking about getting some pizza when she +2010-07-09,39.9380556,-91.5236111,Taylor,MO,formation,180,unusual lights on a summer night in missouri +2010-07-09,38.7563889,-119.375,Wellington,NV,flash,600,Flashing Light +2010-07-09,38.1761111,-88.9675,Nason,IL,light,60,moving changing colored stars in big dipper +2010-07-09,40.5630556,-80.2086111,Leetsdale,PA,sphere,300,Pulsating red sphere that came out of no where. +2011-07-09,36.2694444,-95.8544444,Owasso,OK,triangle,240,Triangular shaped UFO passes over my house in broad daylight. +2011-07-09,39.535,-119.7516667,Sparks,NV,oval,120,About a dozen car-sized silver round objects dance above Sparks Nevada +2011-07-09,48.6483333,-118.7366667,Republic,WA,other,20,Fast moving flat, silver object that couldn't fly this close to a hillside if it was a regular airplane. +2011-07-09,40.8175,-73.0005556,Medford,NY,circle,180,At 8:00 pm in Medford, NY at my grandfathers (Matthew Accardi)house right before sunset we saw a circular red ufo that look like a red +2011-07-09,40.2691667,-79.89,Elizabeth,PA,circle,180,Round black object on fire at first - traveling across sky . NO lights! +2011-07-09,26.9616667,-82.3527778,Englewood,FL,light,1800,3 lights in sky over gulf of mexico blinked strange colors moved slow +2011-07-09,38.3697222,-90.3783333,Imperial,MO,fireball,15,Reddish orange fireball in sky in Imperial MO +2011-07-09,41.85,-87.65,Chicago,IL,other,30,Like an airplane +2011-07-09,40.8666667,-124.0816667,Arcata,CA,rectangle,3600,Green and red lights that flew over Arcata. +2011-07-09,41.5736111,-84.0052778,Delta,OH,circle,45,Yellow round ball of light which made S shaped manueuvers. +2011-07-09,43.0388889,-87.9063889,Milwaukee,WI,formation,120,Location: USA Milwaukee WI Lakeshore Park Event: Milwaukee World Music Festival Also Known As Summer fest.Time: July 9 between 2200 +2011-07-09,37.0030556,-88.2344444,Grand Rivers,KY,fireball,300,My wife and I saw what appeared to be a large orange object lit by a flickering red light eminating from the lower front. +2011-07-09,46.0038889,-112.5338889,Butte,MT,other,600,The Richest Hill on Earth gets scanned +2011-07-09,34.2819444,-118.4380556,San Fernando,CA,oval,2,WHITE LIGHT OVER SAN FERNANDO EXPLODES WHILE MOVING. ((NUFORC Note: Flare from Iridium satellite?? PD)) +2011-07-09,37.0841667,-94.5130556,Joplin,MO,light,120,Orange ball moving above Joplin, MO +2011-07-09,41.1572222,-85.4883333,Columbia City,IN,light,60,a light appeared and slowly moved with a zigzag motion then disappeared +2011-07-09,43.6275,-89.7708333,Wisconsin Dells,WI,sphere,7,5 orange orbs headind north at a good clip,over campground +2012-07-09,47.0380556,-122.8994444,Olympia,WA,circle,120,Red Glowing Orb of Light +2012-07-09,47.7425,-121.9844444,Duvall,WA,circle,3,Light cicle in sky during storm disappears behind trees +2012-07-09,40.6638889,-74.2111111,Elizabeth,NJ,other,60,Hovering air craft not making a noise over jersey tpk +2012-07-09,34.0522222,-118.2427778,Los Angeles,CA,egg,600,Dark egg-shaped object seen in the early morning sky above the East Los Angeles area. +2012-07-09,43.5947222,-96.5716667,Brandon,SD,sphere,300,2 yellow orbs move silently stop and move off and vanish +2012-07-09,45.5236111,-122.675,Portland,OR,circle,1200,Green orb +2012-07-09,39.3880556,-77.8858333,Kearneysville,WV,disk,300,Silver colored saucer with dark trim around the bottom and top/middle. +2012-07-09,45.1719444,-93.8744444,Buffalo,MN,chevron,300,Seven silent white objects very high in the atmosphere hovering +2012-07-09,42.2458333,-84.4013889,Jackson,MI,disk,5,Millenial Falcon-like craft enters cumulus cloud in broad daylight in Jackson, MI on July 9, 2012. +2012-07-09,40.31,-75.1302778,Doylestown,PA,rectangle,600,DARK RECTANGLE WITH ABOUT 16 LIGHTS UNDER IT (2 rows of 8) MOVING SLOW AND LOW! +2012-07-09,26.0108333,-80.1497222,Hollywood,FL,fireball,180,Just standing out back, looking into the sky and saw what seemed to be a ball of fire moving slowly through the sky. It was moving at a +2012-07-09,40.2344444,-77.1363889,West Middlesex,PA,circle,20,Saw very fast moving object high in the sky heading from South to North which was round and yellowish red in color. +2012-07-09,42.2575,-83.2111111,Allen Park,MI,sphere,30,I saw a round/spherical object move across the night sky at approximately 10-15000 ft altitude. +2012-07-09,41.1363889,-73.2838889,Southport,CT,cigar,180,Cigar Craft with 5 to 6 window openings traveling along I-95 Interstate in Connecticut +2012-07-09,41.2427778,-73.2011111,Trumbull,CT,cigar,240,Lights on a strange cigar object. +2012-07-09,28.2394444,-82.3280556,Wesley Chapel,FL,formation,120,Two UFOs moving in formation +2012-07-09,44.8011111,-68.7783333,Bangor,ME,other,60,Stubby boomerang shaped object with no lights, tan/orange in color. +2012-07-09,32.3094444,-90.1388889,Flowood,MS,unknown,120,Large glowing object on side of road +2012-07-09,41.6105556,-87.0641667,Chesterton,IN,fireball,120,8 bright orange objects seen "flying" north to south on clear night at 11:25pm; scattered formation with 3 leading the rest. +2012-07-09,35.2219444,-101.8308333,Amarillo,TX,fireball,3,Orange light seen by four adults in Amarillo, Tx sky. +2013-07-09,35.925,-86.8688889,Franklin,TN,triangle,10800,Witnessing while typing. 3 dots of what I would call white/clear/holographic forming a triangle rotating 3-dimensionally are still +2013-07-09,39.9536111,-74.1983333,Toms River,NJ,circle,30,Orb of light made right angle turn. Great speed upward. +2013-07-09,35.2225,-97.4391667,Norman,OK,cigar,15,Cigar shaped craft hovering over Norman, Oklahoma. +2013-07-09,33.8847222,-118.41,Manhattan Beach,CA,cigar,600,Beautiful clear late afternoon along the strand by the beach heading south towards the manhattan beach pier. +2013-07-09,38.3363889,-75.0852778,Ocean City,MD,other,8,Glowing green orb object seen during iPhone video playback. +2013-07-09,36.0644444,-75.7061111,Kitty Hawk,NC,sphere,180,Orange glowing object seen over ocean. +2013-07-09,33.3702778,-112.5830556,Buckeye,AZ,light,1350,Amber Lights. +2013-07-09,25.4683333,-80.4777778,Homestead,FL,sphere,10,UFO over Homestead, Fl. +1947-08-10,44.7955556,-88.2702778,Green Valley,WI,unknown,300,White lights 5 to 7, 1/4 mile away, no sounds, just disappeared, +1958-08-10,47.6105556,-122.1994444,Bellevue,WA,light,1200,At dusk, a light appeared out of the SE sky arched down above the E horizon moved NW. +1959-08-10,34.2011111,-118.5355556,Reseda,CA,disk,600,The saucer was roof high and I observed it very closely for at least 3 to 5 minutes +1960-08-10,42.2230556,-78.0347222,Belmont,NY,circle,1200,a bright light followed a slow zigzag path from the horizon to the zenith then made a right angle turn +1960-08-10,40.6377778,-74.4513889,Watchung,NJ,cigar,20,Cigar shaped object, reddish brown that hummed overhead with hieroglyphics like writing in Watchung New Jersey. +1962-08-10,37.2652778,-97.3713889,Wellington,KS,unknown,2400,An early 1960's encounter with possible alien occupants near Wellington, Ks +1963-08-10,36.7477778,-119.7713889,Fresno,CA,other,1800,An apparent star in the night sky which exhibited anomalous behavior +1965-08-10,42.7430556,-71.5922222,Hollis,NH,sphere,604800,luminescent spheres several nights running. +1966-08-10,47.0202778,-113.1322222,Ovando,MT,oval,1200,UFO Sighting in 1966 – Blackfoot Valley, Ovando, Montana +1968-08-10,39.4861111,-75.0261111,Vineland,NJ,fireball,20,Fireball and missing time +1969-08-10,34.8986111,-117.0219444,Barstow,CA,light,10,Bright lights +1971-08-10,42.1427778,-77.055,Corning,NY,disk,300,craft made no noise and leveled and lowered into field. +1972-08-10,40.4841667,-88.9936111,Bloomington,IL,circle,10800,I I WAS WATCHING FOR METEORITES FROM MY FRONT PORCH, LIKE I DO EVERY YEAR ON AUG.10AND11. I HEARD A LOUD CRASH LIKE FARM MACHINARY SHU +1972-08-10,39.1619444,-84.4569444,Cincinnati,OH,diamond,3600,Watched diamond shaped object which was motionless except for earths rotation for about one hour. +1973-08-10,42.5847222,-87.8211111,Kenosha,WI,disk,900,Silver disk. +1974-08-10,40.9113889,-73.7827778,New Rochelle,NY,oval,60,Close Encounters of the real kind (space craft) flied right over my head within a 100 yards traveling less than 5 miles an hour +1974-08-10,40.9113889,-73.7827778,New Rochelle,NY,oval,60,Close encounters of the real kind (space craft) for at least one minute about 100 yards right over my head +1974-08-10,34.8525,-82.3941667,Greenville,SC,rectangle,900,I HAVE NEVER REPORTED THIS BEFORE NOW, BECAUSE THE FEW CLOSE FRIENDS THAT I TOLD ABOUT THIS GAVE ME THIS STRANGE LOOK. YOU MUST BE CRA +1975-08-10,29.96,-90.2155556,River Ridge,LA,circle,120,Bright orange object in front of woods +1976-08-10,43.4441667,-93.2208333,Northwood,IA,light,900,point of light ,like on a jet, divided into 2 points with large flash and disappeared over horizon in 12 seconds +1976-08-10,38.9516667,-77.5344444,Arcola,VA,cross,20,Vivid Cross in the sky for 5 -10 seconds, then gone +1977-08-10,37.2494444,-83.1933333,Hazard,KY,light,18000,Probable abduction +1977-08-10,44.98,-93.2636111,Minneapolis,MN,disk,60,Saucer Shaped Craft, Late 70's in suburban Minneapolis, around 9pm. seen at extremely close range of 40 feet +1978-08-10,32.7152778,-117.1563889,San Diego,CA,oval,900,I saw an huge glowing UFO with my mother and neighbors hovering over our backyard; when I was about 20, which moved at light speed. +1978-08-10,47.6588889,-117.425,Spokane,WA,disk,120,While I cannot remember the exact date I remember the event very clearly considering it was over 25 years ago and I was only 9-years-ol +1979-08-10,41.5733333,-87.7844444,Tinley Park,IL,light,2,I wondered what idiot helicopter pilot was hovering so dangerously close above me +1981-08-10,36.6777778,-121.6544444,Salinas,CA,disk,600,As clear as life, as like I had never seen a real saucer craft . 500 Lights On Object0: Yes +1982-08-10,37.9577778,-121.2897222,Stockton,CA,disk,180,stockton ca. 7/10/82 ufo seen after sunday evening church services. +1982-08-10,37.9577778,-121.2897222,Stockton,CA,disk,120,round bright craft seen after sunday evening church services +1982-08-10,39.1458333,-121.5902778,Marysville,CA,disk,60,On Aug. 10, 1982, this house size saucer flew close to our car, the occupant waved, and it flew off. +1982-08-11,37.7975,-121.215,Manteca,CA,disk,3,Stockton report:08/10/82 could be same as 06/15/79 report. It was a Sunday eve also. Our dates could be hazzy? +1984-08-10,48.7597222,-122.4869444,Bellingham,WA,unknown,20,sphere? with connected orbiting strobe which changed colors. No sound +1984-08-10,40.7755556,-77.7927778,Boalsburg,PA,light,45,Saw A bright light dart across the sky. +1985-08-10,42.0925,-88.8511111,Kirkland,IL,light,10800,one large light moved slowly across the sky at a very high altitude. four smaller lights seemed to come from within the large light as +1988-08-10,39.7391667,-104.9841667,Denver,CO,other,600,Brillant bright lights from the sky +1988-08-10,34.5027778,-81.6116667,Whitmire,SC,other,900,The UFO I saw was on the FOX network! +1988-08-10,42.9919444,-76.0719444,Jamesville,NY,light,30,I was scared by an errie encounter with a blue light that entered my bedroom through the window at night. +1988-08-10,40.3266667,-78.9222222,Johnstown,PA,triangle,120,It was a clear night with a bright moon. I was a passenger in a car with a friend of mine driving. As we drove along, I noticed somet +1989-08-10,44.2727778,-121.1727778,Redmond,OR,triangle,15,It's been a long time since and have never officially reported it to anyone. I've talked about throughout the years. I use to fight Fo +1989-08-10,39.4561111,-77.9641667,Martinsburg,WV,triangle,45,Seen an object very high in the sky, moving at a high rate of speed to the south and jumping side to side while continuing to move forw +1989-08-10,34.2575,-88.7033333,Tupelo,MS,cylinder,4,Cruise type missle seen in civilian airspace +1989-08-10,38.1075,-122.5686111,Novato,CA,disk,300,A huge round saucer silently gliding 5ꯠ-6ꯠ feet above me +1990-08-10,42.075,-72.0338889,Southbridge,MA,unknown,9900,Reoccuring visitations ? Senses altered. 500 Lights On Object0: Yes +1990-08-10,29.6341667,-83.1252778,Cross City,FL,triangle,1800,In moonless but bright star country sky, Dark Triangular shape follows family in car. +1991-08-10,40.8663889,-73.0361111,Selden,NY,light,30,Large Light Sighted Over Long Island NY +1992-08-10,38.545,-121.7394444,Davis,CA,light,7200,this happened a while ago, a lot has happened in my life since then,but I could never forget this night,I dont know that what we saw th +1992-08-10,44.5191667,-88.0197222,Green Bay (Near),WI,light,1200,Witnessed a light, moving at right angles travel across the sky, strobes flashing 3 times, and 4 additional lights emerging. +1993-08-10,47.6105556,-122.1994444,Bellevue,WA,sphere,10,Glowing orb/sphere over Bellevue Washington +1994-08-10,45.6283333,-68.2633333,Macwahoc,ME,disk,180,in 1995 9months later I saw the exact same craft on an episode of unsolved mysteries except the dome on this craft was dark not illumin +1994-08-10,35.7063889,-81.2188889,Conover,NC,fireball,120,Unexplained hovering fire ball in the sky +1995-08-10,37.8227778,-112.435,Panguitch,UT,light,600,5 or 6 "Stars" zigzagging around the Ursa Major.Observed by 41 year old male and 40 year old female, both of us stone cold sober. +1996-08-10,40.8613889,-83.4616667,Wharton,OH,sphere,900,Strange 75'ball of light that move silently at right angleand up and down. +1996-08-10,47.0791667,-119.8547222,George (The Gorge Amphatheatre),WA,formation,60,Three soft dim lights passing over head at a fast rate of speed in a vee formation. +1996-08-10,47.6063889,-122.3308333,Seattle,WA,triangle,600,Orange triangular object, very distant, very slow, binocular brightness. +1996-08-10,36.7236111,-120.0588889,Kerman,CA,light,4,I was walking back to my room witch was separete from the house. I stoped walking to look up at the night sky and saw star, well what +1997-08-10,48.7597222,-122.4869444,Bellingham,WA,light,180,Saw a dim moving light. Thought I was watching a satellite. Yellow light flashed brilliantly, then faded to near invisibility. It wa +1998-08-10,37.165,-118.2886111,Big Pine,CA,light,90,Mysterious lights in the Owens Valley California +1998-08-10,35.0844444,-106.6505556,Albuquerque,NM,fireball,1200,Object seen streaking across sky, leaveing huge contrail, it was across the horizon over head, and heading east to west, along hwy40(ro +1998-08-10,45.0244444,-123.9452778,Otis,OR,sphere,180,Silver basketball size sphere chases eagle. +1998-08-10,41.8730556,-72.8586111,West. Simsbury,CT,other,60,small blimpish looking spacecraft that was silverish/metalish in color that wasent moving and disappered once i looked back up at sky +1998-08-10,43.7097222,-71.4608333,Center Harbor,NH,light,16,As I was looking up at the night sky in a North to North east direction, at approx.9:30 pm, I noticed what appeared to be a satellite m +1998-08-10,34.8697222,-111.7602778,Sedona,AZ,light,900,An extremely bright light appearedout the window lasting 10-15 minutes disappearing in a flash with no sound ever heard. +1998-08-10,47.6063889,-122.3308333,Seattle,WA,circle,120,I was taking my wife to the airport heading south on I-5 and we were going by downtown Seattle when looking directly to our west we saw +1998-08-10,40.2736111,-76.8847222,Harrisburg,PA,triangle,1800,Huge Flying Black Triangle +1998-08-10,37.6391667,-120.9958333,Modesto,CA,triangle,1200,Triangular object in night sky over central valley in No. Ca., seen from Sierra Foothills +1998-08-10,30.6325,-97.6769444,Georgetown,TX,changing,120,Appeared to be space-plane re-entering atmosphere. Eventually flew directly overhead without ever making a sound. First appeared to b +1999-08-10,35.0886111,-92.4419444,Conway,AR,triangle,120,Three triangle shaped craft, Black in color as far as I could tell. The craft would apear and disapear as they flew across the sky. In +1999-08-10,38.2972222,-122.2844444,Napa (Near),CA,other,480,It was approximately 1 a.m. and I was returning from my office in Napa with a friend, heading West on Hwy 121. The evening was rather d +1999-08-10,45.4563889,-123.8427778,Tillamook,OR,cylinder,2700,A cylindar shaped object, traveling over the pacific ocean, sighting from oregon. +1999-08-10,45.5236111,-122.675,Portland,OR,light,900,11:00 am I noticed an object in the sky, i thought it was a plane or balloon, no sound. It was travelling north to south. I then saw a +1999-08-10,44.5038889,-72.9980556,Jericho,VT,unknown,58,Greenish pulse of light caught my attention. I captured one minute of video. +1999-08-10,39.7391667,-104.9841667,Denver,CO,other,300,I saw a very strange looking objecet in the north eastern part of the sky about a week ago. +1999-08-10,42.3241667,-83.4002778,Westland (Western Suburb Of Detroit),MI,light,30,small ball of light expanded sudeenly (about 10 times its original diameter, shrunk & disappeared +2000-08-10,42.3763889,-71.2361111,Waltham,MA,other,60,Strange object +2000-08-10,30.3319444,-81.6558333,Jacksonville,FL,light,600,Red light in the southern sky, low just above the tree line. Suspended in the same spot for over 10 minutes +2000-08-10,43.9727778,-74.4213889,Long Lake,NY,formation,900,Formation of 3 lights, followed by fomation of 6 retangular white lights hovering in sky with no noise +2000-08-10,43.6377778,-123.5669444,Elkton,OR,changing,10800,four objects seen at roughly 45 min. intervals, all different. All bright and moving. Came roughly from the S' and S'E'. +2000-08-10,43.7825,-74.2722222,Indian Lake,NY,formation,600,Unmoving horizontal formation of about 8 very bright lights in the West from Indian Lake low to the horizon +2000-08-10,43.5330556,-75.8219444,Redfield,NY,formation,15,A string of 5 to 9 lights flying in a horizontal formation nearly equidistant apart then turning abruptly away to their left. +2000-08-10,39.7047222,-105.0808333,Lakewood,CO,light,240,While watching the sky and standing east I saw one light with the naked eye about 150 degrees up from the left traveling south. Looked +2000-08-10,41.4838889,-74.2180556,Maybrook,NY,other,60,Moderate Sized UFO Almost Hits My House (Updated - Wrong Info Given Originally) +2000-08-10,44.4111111,-72.1397222,West Danville,VT,light,180,3 faint objects in wedge formation travelling very fast, high ((NUFORC Note: Possible sighting of U. S. Navy NOSS satelites.)) +2001-08-10,32.5883333,-96.9558333,Cedar Hill,TX,light,3600,Large bright light moving at high speed comes to a complete stop, wanes in size and begins to pulsate with green, red and which color. +2001-08-10,44.6994444,-73.4533333,Plattsburgh,NY,unknown,90,Mysterous object sighted in sky. +2001-08-10,38.5347222,-105.9983333,Salida (Near),CO,sphere,3,2 Silver Orbs passed under our C-130 Aircraft +2001-08-10,39.9522222,-75.1641667,Philadelphia (Suburbs Of, Hwy/Rt. 476),PA,cigar,20,TRUCK SIZE CIGAR SHAPE OBJECT OVER THE BLUE ROUT 476 in the SUBERBS OF PHILADELPHIA +2001-08-10,36.9102778,-121.7558333,Watsonville,CA,diamond,60,This very small white diamond shaped object was settleling straight down to earth then just vanished in Watsonvill Ca.8/10/01 +2001-08-10,32.7355556,-97.1077778,Arlington,TX,fireball,15,Bright orange ball that seemed to crash to the ground, making a loud, sharp noise; the whole dark sky lit up in a deep blue color. +2002-08-10,39.4527778,-94.7413889,Camden Point,MO,unknown,180,We were approached by earth bound beams of light comming from an unknown object which hovered and made no sound. +2002-08-10,39.2786111,-93.9766667,Richmond,MO,circle,30,could'nt believe what we have just witnessed! +2002-08-10,40.5866667,-122.3905556,Redding,CA,unknown,3600,Odd moving lights (multiples) seen on two seperate nights +2002-08-10,40.7141667,-74.0063889,New York City,NY,disk,180,Recorded UFO siteing by the empire state building +2002-08-10,41.1575,-81.2422222,Ravenna,OH,triangle,120,Large triangle in sky moving at steady slow pace as I was watching for meteor shower. Brought my 18 yr. old out to verify. Starlike po +2002-08-10,38.9494444,-84.8538889,Rising Sun,IN,light,30,Three star color dots move across the sky in a perfect tryangle.Later that night two of the same kind dance in the sky. +2002-08-10,40.4180556,-79.6258333,Export,PA,fireball,10,Blue/Green Round Object with Tail sighted moving South-SouthWest +2002-08-10,42.9633333,-85.6680556,Grand Rapids,MI,fireball,1800,Michigan Fireball 500 Lights On Object0: Yes +2002-08-10,42.7261111,-71.1913889,Methuen,MA,other,120,Aircraft of the future spotted above backyard soaring across the sky. +2002-08-10,40.7141667,-74.0063889,New York City,NY,disk,180,I saw and video recorded 3 metalic sacuer shape objects flying by the empire state building. +2002-08-10,32.8744444,-95.7652778,Emory,TX,egg,5,I saw a reddish orange egg shaped object fly north to south at a low altitude. +2002-08-10,25.7738889,-80.1938889,Miami,FL,circle,1200,black stationary object in sky! +2002-08-10,38.8422222,-106.1305556,Buena Vista (None Around For Miles),CO,cylinder,20,Several red/green randomly flashing lights bouncing in and out of an area with bright flashes (without lightning bolts or thunder). +2002-08-10,37.6775,-113.0611111,Cedar City,UT,light,10,Bright Light from the heavens illuminated me like a spotlight, dims and disappears +2002-08-10,42.3211111,-85.1797222,Battle Creek,MI,fireball,4,Bright Green Fire Ball with long tail falling from the sky +2002-08-10,39.5591667,-74.2436111,Beach Haven,NJ,light,600,What at first looked like a star, at 20 - 30 degrees off the horizon, was zig zagging and jumping up and down but didn't seem to be co +2002-08-10,32.7152778,-117.1563889,San Diego,CA,rectangle,420,WE WERE ON THE DECK AND SAW A BRIGHT LIGHT +2002-08-10,34.1486111,-118.3955556,Studio City,CA,disk,300,Our first UFO sighting together +2002-08-10,48.1988889,-122.1238889,Arlington,WA,light,30,Star-like light moving east from stationary position +2002-08-10,44.8897222,-73.4363889,Chazy,NY,light,300,2 lights in the sky +2002-08-10,40.9011111,-74.5147222,Rockaway,NJ,light,300,Two moving stars +2002-08-10,46.5330556,-93.71,Aitkin,MN,formation,10,Triangular light formation, tree top height above my head in Aitkin Mn +2002-08-10,45.1580556,-85.1241667,East Jordan,MI,changing,600,Small Strobes that Flare to many times their size & brightness +2002-08-10,42.1947222,-122.7083333,Ashland,OR,unknown,120,I think we posess the ability for a satelite to change course and since I canot corroborate it, to me it is unidentified +2002-08-10,39.1619444,-84.4569444,Cincinnati,OH,oval,900,My family was leaving Paramounts Kings Island. We were in the parking lot and someone walking behind us tapped my brother-in-law on th +2002-08-10,40.1022222,-75.2747222,Plymouth Meeting,PA,light,600,MOVING STAR +2002-08-10,39.7908333,-77.1097222,Whitehall,PA,circle,2,I WAS SITTING IN LAWN CHAIR LOOKING AT SKY SITTING AROUND A FIRE IN AN OPEN FIELD. I WITNESSED A ROUND OBJECT AROUND THE SIZE OF A SILV +2002-08-10,36.9741667,-122.0297222,Santa Cruz,CA,diamond,10,We saw a soundless, dimly-lit, fast gliding craft at midnight that was unlike any aircraft known. +2002-08-11,34.4716667,-120.2138889,Gaviota,CA,light,120,On August 10, 2002, I was camping with my family and we were watching for falling stars on a clear night. We noticed a star like objec +2003-08-10,39.3994444,-84.5613889,Hamilton,OH,light,300,White lights Flying erratically +2003-08-10,37.9577778,-121.2897222,Stockton,CA,light,240,Very bright round light hovered while changing size then faded away. +2003-08-10,36.7477778,-119.7713889,Fresno,CA,fireball,120,i was going out to do my regular prayer at that time at a close mosqe when i looked at the sky and saw a wired movment that i thought i +2003-08-10,30.1894444,-82.6394444,Lake City,FL,triangle,3,Triangular craft using cloud cover not to be seen. +2003-08-10,29.7630556,-95.3630556,Houston,TX,triangle,600,Approx 15:30 in afternoon at friends apartment pool - noticed indefinte sized triangluar craft 90 degrees to left and up. Slowly moving +2003-08-10,46.6022222,-120.5047222,Yakima,WA,triangle,15,Triangle shaped object seen over Yakima valley traveling from west to east, it changed its path of travel three times. +2003-08-10,35.0844444,-106.6505556,Albuquerque,NM,unknown,6000,Stationary object over New Mexico +2003-08-10,37.9966667,-88.92,Benton,IL,cigar,120,Cigar shaped with two round objects in center. +2003-08-10,41.7594444,-80.9469444,Harpersfield,OH,triangle,240,This happened when I was around 18 years old. I was coming home from a friends house between 8 or 9 o'clock down lafever road and I loo +2003-08-10,39.7083333,-91.3583333,Hannibal,MO,light,900,August 10th 2003 large, bright object in low earth Orbit. +2003-08-10,32.7458333,-96.9975,Grand Prairie,TX,light,3,Bright green light briefly lights sky, no sound +2004-08-10,40.2452778,-75.65,Pottstown,PA,circle,15,Lighted Object shooting straight up in the sky makes TV go haywire +2004-08-10,41.9211111,-73.0605556,Winsted,CT,disk,180,we take the dogs out every morning at 4 am. this morning we were comming back to the house when i notice a star like object flying low +2004-08-10,38.5816667,-121.4933333,Sacramento,CA,flash,90,Blinking star. +2004-08-10,32.7355556,-97.1077778,Arlington,TX,egg,120,Dark object with glowing green-yellow light seen over Arlington, TX +2005-08-10,40.7683333,-73.7775,Bayside,NY,triangle,3600,Triangles searching with light. 46yard sphere comes along and beams down at triangles, Then they r gone.. +2005-08-10,36.6333333,-93.4166667,Kimberling City,MO,light,30,bright light changed to red and blinked as craft flew away rapidly +2005-08-10,45.4313889,-122.7702778,Tigard,OR,other,10,W shaped object...With an eary look +2005-08-10,44.4097222,-103.5086111,Sturgis,SD,flash,180,We were at the sturgis motorcycle rally that year and were sitting out on our deck late at night. We saw a light way up in the sky that +2005-08-10,45.9763889,-94.3622222,Little Falls,MN,cylinder,180,It was a the size and shape of a soup can, it glowed candy-apple red, and traveled from zero to fast instantly and silently. +2005-08-10,44.775,-117.8333333,Baker City,OR,disk,6,low-flying disk with radical "Z" turn +2005-08-10,33.0197222,-96.6986111,Plano,TX,light,2700,orange star like object streaking across south-western sky +2005-08-10,34.9322222,-86.5719444,Hazel Green,AL,light,3600,Mystery Light over Northern Alabama +2005-08-10,44.9430556,-123.0338889,Salem,OR,light,3,Observed a light coming on and moving slowly northward past the Big Dipper Constellation for several seconds before going out. Then +2005-08-10,44.3352778,-85.215,Lake City,MI,disk,120,the object came from the north real slow and made a beep beep beep beep sound +2005-08-11,29.6908333,-95.2088889,Pasadena,TX,sphere,600,bright object going in and out of cloud formation +2005-08-11,32.7152778,-117.1563889,San Diego,CA,light,30,zig zagging light. +2006-08-10,32.9344444,-97.2513889,Keller,TX,cylinder,120,Bright Silver Cylindrical Object Just Disappears Over Keller, Texas +2006-08-10,40.9405556,-73.9972222,Dumont,NJ,egg,2,Fastest object beutiful colors,than dissapeard,no noise! +2006-08-10,38.9988889,-84.6266667,Florence,KY,rectangle,360,color changing ufo +2006-08-10,38.3363889,-75.0852778,Ocean City,MD,circle,300,circle light filled object in ocean city while i was on the board walk my cousin said it was one of the small lowflying arcraft because +2006-08-10,40.6213889,-79.1527778,Indiana,PA,triangle,600,Tringular object with three lights seen passing from east to west over Indiana, PA at 9:30 PM EST +2006-08-10,48.88,-115.0525,Eureka,MT,light,120,Lights in a fixed position and altitude for at least one minute and then departure was slow in a southwest direction +2007-08-10,39.7683333,-86.1580556,Indianapolis,IN,triangle,120,On August 10񫺗, at 12:20 AM, my Grandson and I where coming home from seeing a Spiderman movie. We where on Madison Ave heading nor +2007-08-10,40.55,-91.3847222,Nauvoo,IL,formation,6300,4 stars and an unusual oval-shaped object were seen for two hours +2007-08-10,40.015,-105.27,Boulder,CO,changing,420,Early morning Boulder, CO UFO sighting with photos +2007-08-10,33.9136111,-98.4930556,Wichita Falls,TX,cigar,120,Liquid UFO +2007-08-10,44.5291667,-68.2541667,Hancock,ME,cigar,120,Elongated cigar shape, translucent or transparent, controlled flight, no fuselage +2007-08-10,43.2166667,-123.3405556,Roseburg,OR,other,240,Meteor or UFO on August 12, 2007 Roseburg, Oregon? +2007-08-10,40.0377778,-76.3058333,Lancaster,PA,light,900,Marching Band loving light follows the patterns of the band. 500 Lights On Object0: Yes +2007-08-10,43.0905556,-73.4991667,Greenwich,NY,triangle,480,With friends in field, saw object illuminate and hover, flash and then take off quite fast. +2007-08-10,44.1002778,-70.2152778,Lewiston,ME,formation,120,string of "orange flame" colored lights over Lewiston. ((NUFORC Note: Aerial lanterns, launched from a party at Bates College. PD)) +2007-08-10,44.1002778,-70.2152778,Lewiston,ME,sphere,300,Multiple lighted spherical objects moving in a linear array from southern horizon to northern horizon. ((NUFORC Note: Lanterns. PD)) +2007-08-10,42.8091667,-82.7558333,Richmond,MI,oval,120,Steady moving oval object with an orange glow as if on fire. +2007-08-10,41.4666667,-86.4830556,Walkerton,IN,unknown,2,Bright flash lights up entire night sky, with two orange streaks and white circle moving away from earth. +2008-08-10,39.3736111,-76.9680556,Sykesville,MD,light,4500,white light in sky that showed some red color changes intermittently +2008-08-10,29.7630556,-95.3630556,Houston,TX,cigar,2,Extremely bright, cigar shaped object in the night sky near down town Houston. +2008-08-10,29.6044444,-98.9427778,Lakehills,TX,light,180,Looked like Saturn or Venus +2008-08-10,47.8555556,-121.9697222,Monroe,WA,light,300,2strange lights in the sky +2008-08-10,28.5491667,-81.7730556,Clermont,FL,flash,1800,about 5:50 in the morning my wife and i saw two moving objects going back and fourth in the same area. The objects had small balls of l +2008-08-10,38.6272222,-90.1977778,St. Louis,MO,cigar,3600,MISSOURI INVESTIGATORS GROUP Report: I saw a black metallic cigar shaped object. It moved slowly and was silent. +2008-08-10,30.6580556,-98.4402778,Kingsland (Lake Lbj),TX,sphere,300,Pearl like sphere hovering and then covering miles in a few seconds. +2008-08-10,38.6272222,-90.1977778,St. Louis,MO,cigar,1800,Black spot low on South St. Louis sky +2008-08-10,43.073055600000004,-89.4011111,Madison,WI,other,120,Gold ring shaped UFO, silent. +2008-08-10,39.5752778,-76.9961111,Westminster,MD,fireball,2,Small Orange Light Observed Traveling South +2008-08-10,40.6669444,-111.8872222,Murray,UT,other,30,Crescent shaped object approx size of a van moving west to east 60 feet in the air approx 30 mph. +2008-08-10,35.3733333,-119.0177778,Bakersfield,CA,rectangle,120,My cousin says whats that a bird? i look up to see a rectangular object moving across the night sky. +2008-08-10,45.9172222,-89.2441667,Eagle River,WI,other,180,Two bright, quickly moving stars +2008-08-10,41.2458333,-75.8816667,Wilkes-Barre,PA,light,30,Orange orb over North-East PA 30 sec +2009-08-10,37.3394444,-121.8938889,San Jose,CA,chevron,720,Bright orange-red light seen over San Jose, CA. +2009-08-10,46.6022222,-120.5047222,Yakima,WA,fireball,3,most likely a very bright green fireball or meteorite +2009-08-10,29.7630556,-95.3630556,Houston,TX,light,240,light over houston texas +2009-08-10,41.4686111,-75.5625,Jessup,PA,other,300,ORANGE BALL As I was approaching the top of Hill Street in Jessup, PA;just before the Stop sign at the Luppini Clock; as I looked up +2009-08-10,44.9430556,-123.0338889,Salem,OR,circle,20,Thought it was a Satellite until witnessing a very bright flash of light come from the object. +2009-08-10,38.0194444,-122.1330556,Martinez,CA,oval,3600,Red light over Conta Costa County +2009-08-10,38.2541667,-85.7594444,Louisville,KY,triangle,15,Black Triangle over Louisville Ford plant. +2009-08-10,48.4633333,-115.8886111,Troy,MT,unknown,360,Strange flying craft seen in the night sky over Troy, Montana +2010-08-10,43.0761111,-76.0011111,Minoa,NY,other,20,unidentified flaming creature falling from the sky in Minoa, NY. +2010-08-10,44.9444444,-93.0930556,Saint Paul (East Side),MN,other,10800,UFO Sighting On Saint Paul's Eastside. +2010-08-10,41.2991667,-91.6927778,Washington (West Of),IA,diamond,2700,Hovering lights in western sky, Washington, Iowa +2010-08-10,29.4238889,-98.4933333,San Antonio,TX,flash,1,I saw a light trail flash in in the sky. +2010-08-10,39.9361111,-84.0255556,New Carlisle,OH,disk,120,clear ufo +2010-08-10,33.9133333,-78.3041667,Holden Beach,NC,circle,120,3 orange like orbs appeared in the Souther sky off of Holden Beach North Carolina. +2010-08-10,33.5386111,-112.1852778,Glendale,AZ,flash,10,Flashing object in the sky disappears within seconds +2010-08-10,33.8158333,-78.6802778,North Myrtle Beach,SC,light,1200,This was an orange ball of light just over the Atlantic Ocean near the shore and just below the night stars. The lights were larger tha +2010-08-10,33.6888889,-78.8869444,Myrtle Beach,SC,light,600,3 orange lights +2010-08-10,39.2275,-83.2705556,Bainbridge,OH,light,1200,Red-orange lights spotted in night sky over Bainbridge, Ohio +2010-08-10,48.0797222,-123.1005556,Sequim,WA,light,10,Witnessed a very bright white/orange light just above the crest of Blue Mountain, S/SW of my position. I observed this light briefly f +2010-08-10,40.45,-111.7694444,Highland,UT,light,3600,Odd lights in the sky over Utah Valley. +2010-08-10,41.0241667,-80.6630556,Boardman,OH,fireball,300,7 fireballs in populated residential area in single file formation just 500 ft over our heads, spotted by 3 witnesses. +2010-08-10,42.325,-72.6416667,Northampton,MA,other,6,08/10/10. Approximately 10 PM, two white lights in formation seen moving very quickly across sky in direct northerly direction. +2010-08-10,34.2255556,-77.945,Wilmington,NC,light,120,5-6 lights scattered on the horizon, helicopter in the vicinity +2011-08-10,46.6022222,-120.5047222,Yakima,WA,light,120,Dancing Ufo +2011-08-10,40.1738889,-80.2463889,Washington,PA,disk,1620,Me and my friend was watching the moon then we saw Three saucers or disks with three lights on it one was white and there were a red an +2011-08-10,42.2625,-71.8027778,Worcester,MA,egg,300,Silent craft overhead +2011-08-10,45.7833333,-108.5,Billings,MT,oval,1,Canon A3100IS Captures an Unknown Black Blur During Thunderstorm. ((NUFORC Note: We suspect a bird, caught in flight. PD)) +2011-08-10,45.9975,-121.5269444,Trout Lake,WA,other,3600,Light over Mt. Adams +2011-08-10,43.7544444,-74.7933333,Inlet,NY,circle,180,At 9:50 PM a larger red circle surounded by smaller red cirlces moving slow and steady eastward. +2011-08-10,35.2044444,-89.8738889,Bartlett,TN,cigar,20,I could see the outline of the ship bend light around its long cigar shap like a big white bus but camo buy reflecting the night sky +2011-08-10,42.5063889,-71.0733333,Wakefield,MA,formation,180,Glowing amber lights flying silently in a triangle formation +2011-08-10,29.3625,-100.8963889,Del Rio,TX,light,8,One white light with few red lights moving very slowly then disappearing fast in the sky +2012-08-10,33.8358333,-118.3397222,Torrance,CA,other,300,August 10th, 2012 at 12: 20 AM. I was driving north along the El Camino College campus road when I stopped at a stop sign. I was st +2012-08-10,47.6063889,-122.3308333,Seattle,WA,fireball,120,Lone Fireball flew over my apartment, zig-zagged, changed colors, flew off(?) +2012-08-10,25.9013889,-97.4972222,Brownsville,TX,oval,300,Large oval shaped object seen over Brownsville Texas. +2012-08-10,44.8547222,-93.4705556,Eden Prairie,MN,circle,60,BRIGHT ORBS COUNT 30 IN SKY. +2012-08-10,43.7508333,-87.7144444,Sheboygan,WI,circle,60,Slow moving red, round, object in the night sky over Sheboygan, Wisconsin. +2012-08-10,33.3527778,-111.7883333,Gilbert,AZ,fireball,15,Saw fireball traveling very fast back and forth at about 100 feet up, then disappeared, with no sound at all. +2012-08-10,37.9747222,-87.5558333,Evansville,IN,triangle,5400,Stationary Isosceles triangle, with one VERY bright light at each corner. +2012-08-10,46.1541667,-119.0327778,Finley,WA,light,52623200,There have been several flying objects in a period of about two months that look like an orb of white light (resembling a star). They m +2012-08-10,34.4208333,-119.6972222,Santa Barbara,CA,circle,120,Three bright orange orbs, equal distance from each other, moved slowly in a row, then stopped for several seconds before vanishing. +2012-08-10,41.4047222,-81.7230556,Parma,OH,sphere,600,7-10 pulsating white hot spheres with red pulsating centers move across the Parma sky. +2012-08-10,44.8547222,-93.4705556,Eden Prairie,MN,formation,60,10-20 reddish-orange orbs traveling slowly in the sky together in a lightning bolt formation were spotted for about 30-60 seconds +2012-08-10,45.3575,-122.6055556,Oregon City,OR,fireball,180,Saw thirteen fireballs in the sky as i walked home from the store. +2012-08-10,33.6408333,-117.6022222,Rancho Santa Margarita,CA,circle,60,Object descending slowly, looked to be on fire and crashed in the hills in O Neil Park, Rancho Santa Margarita, Ca +2012-08-10,47.4236111,-120.3091667,Wenatchee,WA,circle,180,A silent light in the sky that flew in the area. +2012-08-10,37.3394444,-121.8938889,San Jose,CA,sphere,600,2 orange lights moving in the sky non typically in San Jose CA +2012-08-10,32.7152778,-117.1563889,San Diego,CA,other,5,I was watching a movie on disk and took a break to go outside to have a smoke. I have to where glasses to watch movies (distance) and k +2012-08-10,35.5477778,-87.5519444,Hohenwald,TN,circle,90,Erratically moving yellow/orange light moving erratically slowly from west to east.disapeared into distance south of centervolle tn +2012-08-10,47.5972222,-115.3433333,Thompson Falls,MT,light,300,Fast-moving pair of lights in Thompson Falls, Montana +2012-08-10,47.5972222,-115.3433333,Thompson Falls,MT,light,300,Last night, my father and mother claimed to have seen an object flying in the sky that had two lights on it and made absolutely no noi +2012-08-10,38.2541667,-85.7594444,Louisville,KY,light,15,Blue light reversing direction at high speed +2012-08-10,35.925,-86.8688889,Franklin,TN,fireball,180,Around 23:30 on 8/10/12 saw orange lights flying on horizon at north to northwest ,the lights stopped moving then a cluster appeared of +2012-08-10,32.4283333,-90.1322222,Ridgeland,MS,unknown,60,UFO close to the ground +2013-08-10,48.7597222,-122.4869444,Bellingham,WA,flash,600,Multiple flashes like explosions in distant night sky, no sounds, nothing on police or fire scanners. +2013-08-10,30.9530556,-92.1825,Bunkie,LA,light,600,Blue Light UFO. +2013-08-10,42.1236111,-72.4319444,Wilbraham,MA,oval,180,Bright oval craft size of a large airplane with Fluorescent lights rotating slowly and moving unevenly then lowered into woods +2013-08-10,47.6063889,-122.3308333,Seattle,WA,light,20,Darting amber glow moving hummingbird-like through the clouds east of capitol hill in Seattle at 3:30am +2013-08-10,42.8091667,-82.7558333,Richmond,MI,triangle,30,Invisible Triangle outlined by lights flew directly over me straight from Selfridge Airforce Base Direction +2013-08-10,38.9822222,-94.6705556,Overland Park,KS,other,3600,((HOAX??)) I swear this black flying-saucer shaped thing should not have been flying. I predict it was going around 2 mph +2013-08-10,41.9186111,-70.5666667,Manomet,MA,disk,1,Dark disc appeared for less than 1 second above Cape Cod Bay. +2013-08-10,39.3638889,-76.4525,Nottingham,MD,fireball,1500,WE then looked up to see two reddish objects in the sky. Then one seemed to catch fire and fall. +2013-08-10,30.2669444,-97.7427778,Austin,TX,fireball,1.5,Bright green flash zipped accross sky in Austin, Tx. ((NUFORC Note: Meteor? We suspect a nighttime sighting. PD)) +2013-08-10,46.6022222,-120.5047222,Yakima,WA,circle,1200,We sighted 3 orb like lights that changed colors from red to white and traveled fairly fast. Hovered together and separated quickly. We +2013-08-10,42.4775,-83.0277778,Warren,MI,fireball,60,My story begins at 12 noon I was walking down the street from the store I saw a green fireball come down from the sky it flashed like a +2013-08-10,41.88,-88.0077778,Lombard,IL,formation,1.75,White lights with orange pellet trail +2013-08-10,43.0608333,-88.4036111,Delafield,WI,formation,600,Five of us were driving and saw s strange formation of amber lights that hovered and then slowly moved away one by one. +2013-08-10,38.5816667,-121.4933333,Sacramento,CA,oval,180,Silver round shaped object with a smokey haze around it +2013-08-10,42.9597222,-87.8613889,Cudahy,WI,light,180,Red glowing hovering object observed for three minutes by three people in Cudahy, Wisconsin +2013-08-10,42.9608333,-89.4697222,Fitchburg,WI,light,300,Slow moving lights in sky; very close together in unusual formation, then suddenly disappeared. +2013-08-10,42.4983333,-88.3280556,Genoa City,WI,chevron,5,Chevron formation with orange lights moving east to west in night sky +2013-08-10,38.8105556,-90.6997222,O'fallon,MO,rectangle,20,Dim orange/yellow rectangular object moving fairly quickly across night sky +2013-08-10,39.9611111,-82.9988889,Columbus,OH,triangle,900,Saw triangular pattern of Flying objects with red lights +2013-08-10,29.7630556,-95.3630556,Houston,TX,fireball,30,Red/orange fireballs in Houston sky. +2013-08-10,40.21,-75.5702778,Linfield,PA,fireball,900,Saw 11 fireballs that faded away near the Limerick Power Plant. +2013-08-10,33.6288889,-91.7908333,Monticello,AR,teardrop,900,Saw 4 bright red lights (wider at top than bottom)with an orange hue at the bottom. They came one at a time from over the City of Mont +2013-08-10,33.9133333,-78.3041667,Holden Beach,NC,disk,20,Bright orange saucer seen flying over Holden Beach, NC. +2013-08-10,41.0758333,-77.5888889,Beech Creek,PA,circle,360,Observation of 2 brightly reddish glowing objects in night sky with no sound or discernible characteristics of familiar aircraft. +2013-08-10,41.3972222,-73.6175,Brewster,NY,oval,120,Red Orange glow oval shape Peach Lake NY area +2013-08-10,43.5911111,-71.7372222,Bristol,NH,circle,30,Reddish orange circular craft spotted over New Hampshire conservation area. +2013-08-10,46.0038889,-112.5338889,Butte,MT,light,60,Red light hovering in the North moving back and forth three nights in a row +2013-08-10,48.4797222,-116.8483333,Coolin,ID,sphere,120,Round bright object in night sky emitted light beams across the sky three times. The beams lasted for one to two seconds. +2013-08-10,46.7833333,-92.1063889,Duluth,MN,light,16200,Multiple groups of 30-40 lights signaling with flashes and moving in sync. +2013-08-10,41.1383333,-81.8638889,Medina,OH,fireball,300,Two orange glowing objects, 5 minutes apart. +2013-08-10,43.7508333,-87.7144444,Sheboygan,WI,light,2,While out watching the meteor shower my spouse and I observed a strange blinking light. I was the first to witness overhead 2 distinct +2013-08-10,40.8336111,-75.7141667,Lehighton,PA,fireball,1200,Fireballs aproxemently 2 dozen go by us for about 20 mins +2013-08-10,34.6777778,-76.9511111,Emerald Isle,NC,fireball,600,Two orange fireballs seen moving in a southerly direction and climbing until no longer visible. +2013-08-10,39.7588889,-84.1916667,Dayton (Drexel Area),OH,sphere,240,Two faint blue spheres flying opposite of each other in high altitude. +2013-08-10,38.6272222,-90.1977778,St. Louis,MO,formation,120,Six white lights above St. Louis. +2013-08-10,38.9011111,-77.2655556,Vienna,VA,triangle,60,Four glowing, moving, orange dots in the sky with three in a triangle +2013-08-10,44.0977778,-70.2316667,Auburn,ME,light,180,My friend and I were out on my back porch and saw a flashing light red then white. It was hovering over the horizon just above the tree +2013-08-10,39.3544444,-84.1272222,Morrow,OH,circle,180,Orangish/red sphere seen by two witnesses in southwestern ohio +1965-08-11,34.0211111,-118.3955556,Culver City,CA,oval,300,UFO at Culver City Drive-in 1965. +1967-08-11,34.7463889,-92.2894444,Little Rock,AR,circle,120,Orange hovering object chased by Air Force jets +1968-08-11,41.3252778,-72.1936111,Niantic,CT,disk,5,Right after sunset I had seen a black disk against a dark blue sky with still a bit of twilight. +1971-08-11,41.7319444,-74.6016667,Fallsburg,NY,cross,4,AN OBJECT RESEMBLING AN AIRPLANE FLEW OVERHEAD AT GREAT SPEED, STOPPED ABRUPTLY, AND FLEW OFF AT 90 DEGREES TO IT'S ORIGINAL FLIGHT PAT +1976-08-11,45.5236111,-122.675,Portland,OR,triangle,1200,Large triangle remembered in Portland, Oregon +1978-08-11,38.8966667,-121.0758333,Auburn,CA,unknown,900,The object hovered and dissapeared then came back several times. +1981-08-11,40.6669444,-111.8872222,Murray,UT,unknown,3600,True account of abduction. +1987-08-11,36.8688889,-94.3677778,Neosho,MO,rectangle,900,It was huge, quite, and it made the earth vibrate. +1989-08-11,43.0716667,-70.7630556,Portsmouth,NH,egg,30,Low flying disc shaped UFO +1998-08-11,46.8266667,-100.8891667,Mandan,ND,disk,1800,I viewed an object that looked like a star initially but when viewed standing still it moved slightly. It looked like lights were flash +1999-08-11,38.3980556,-85.755,Sellersburg,IN,light,25,Star-like light seen over trees moving and changing direction towards constellation Orion +1999-08-11,40.1386111,-123.9961111,Ettersburg,CA,rectangle,120,Faster Than any convetinal flying apparatus. It was like a fleet of ships moving west to east. Perfect uniform. +1999-08-11,37.3488889,-108.5852778,Cortez (4 Miles North Of),CO,light,240,Saw light traveling from Southwest to Northeast. It was approximately 60 degrees above the horizon from first sight across the sky till +1999-08-11,55.3422222,-131.6461111,Ketchikan,AK,circle,7,saw a bright objet in an area where there is or never has been any thing +2000-08-11,36.2788889,-92.5969444,Flippin,AR,circle,7,Looked like shooting star, but then changed direction by 90 degrees as it flew across the skies +2000-08-11,42.5063889,-71.0733333,Wakefield,MA,other,300,Time seemed to stand still as I looked at this traingle shape that was "no plane" moving through the sky...what was I seeing? +2000-08-11,42.5291667,-85.8552778,Allegan,MI,formation,3600,STRANGE STAR FORMATION, LARGE, BRIGHT PULSATING LIGHTS. THESE "STARS" KEPT BOUNCING AROUND,CHANGING PATTERNS. +2000-08-11,33.8358333,-118.3397222,Torrance,CA,sphere,180,White/silver round balloon like object that behaved uncharacteristically of a balloon over SW Los Angeles by moving up and down. +2000-08-11,48.1988889,-122.1238889,Arlington,WA,triangle,900,I am a pastor at my church. Today we held a special serman for a couple to be married. After we were through we stepted onto the porch +2000-08-11,35.925,-86.8688889,Franklin,TN,formation,240,This object was two(2) bright lights, approx. -1 magnitude, travelling northwest to southeast. Lights maintianed equal distant separati +2000-08-11,36.7477778,-119.7713889,Fresno,CA,rectangle,90,South on Highway 5, rectangular object w/blue lights charged the freeway -- thought it was going to run me off the road. +2000-08-11,45.5236111,-122.675,Portland,OR,unknown,180,Bright light at high altitude, weaving from side to side +2000-08-11,34.09,-117.8894444,Covina,CA,light,120,WHILE LOOKING AT THE METEOR SHOWER, MY BROTHER IN LAW NOTICED A RED OBJECT FLYING FROM THE SOUTH WEST SKY TO THE NORTH EAST SKY. HE TO +2000-08-11,40.5852778,-105.0838889,Fort Collins,CO,other,1800,A birght light that was moving around and around then it would come straight down, as if to earth and then back up. +2001-08-11,44.5402778,-69.7225,Oakland (Near),ME,light,7200,2 lights, with the brightest of the 2 changing shapes +2001-08-11,44.5647222,-123.2608333,Corvallis,OR,other,180,I have had 4 close sightings over the past 5yrs. +2001-08-11,27.3361111,-82.5308333,Sarasota,FL,other,120,White ball shape, with grey bottom and single row of multicolor lights,decended from cloud, traveled East to West overhead. +2001-08-11,47.7883333,-122.3075,Mountlake Terrace (Seattle),WA,sphere,2100,Sphere's moving slowly in formation +2001-08-11,32.7152778,-117.1563889,San Diego,CA,light,90,Two pulsating red lights equal distance apart moving east to west on 8/1101 at 20:53 in the San Diego sky. +2001-08-11,26.7080556,-80.2308333,Royal Palm Beach,FL,triangle,120,4 of us where standing in front of a store i looked up and said hey look... there were 2 red triangular craft chasing a plane the plane +2001-08-11,44.4633333,-96.2469444,Ivanhoe,MN,light,20,Looked like a star... only moving quickly across the sky. +2001-08-11,45.2216667,-122.5808333,Mulino,OR,light,30,Bright light moving from west to east stops and appears to shoot straight up, disappearing. +2002-08-11,40.7147222,-94.235,Mt Ayr,IA,light,10800,Bright light, moving back and forth, raising up in sky with flashes of different colors +2002-08-11,43.1547222,-77.6158333,Rochester,NY,light,1800,Colored Lighs +2002-08-11,29.5847222,-81.2080556,Palm Coast,FL,disk,1200,Disk shaped with many colors in north east and south east sky. +2002-08-11,35.0844444,-106.6505556,Albuquerque,NM,circle,120,SIX DIFFERENT CIRCLULAR OBJECTS MANOUVER OVER HOME AND DRIFT FROM VIEW. +2002-08-11,42.2047222,-83.4852778,Belleville,MI,disk,1200,hovering craftI was at a friends house in Belleville. I went outside to watch the metor shower. My friend was inside sleeping. I +2002-08-11,32.3480556,-93.5525,Elm Grove,LA,sphere,4,Spheres in naked eye visuals and in developed photos as well, in NW Louisiana. +2002-08-11,41.5563889,-73.3091667,Roxbury,CT,sphere,180,Dark spherical object sighted moving south to north at a rapid pace in the Litchfield Hills area of Connecticut. +2002-08-11,44.3022222,-87.5630556,Two Creeks,WI,unknown,120,Zig zaging object with red,green,blue lights moving around a farm by a power plant. +2002-08-11,37.9736111,-122.53,San Rafael,CA,light,5,A light similar to Venus increasing in intensity and velocity and then disappearing East into the night. +2002-08-11,35.6658333,-118.2894444,Weldon,CA,triangle,4,soft green glowing object seen 40 miles west of Edwards AFB +2002-08-11,47.4705556,-122.3455556,Burien,WA,other,120,Saw a craft at night illuminating Puget Sound water with two beams of light from high up just off Vashon Is near Three Tree Point. +2002-08-11,48.2413889,-122.3694444,Stanwood,WA,light,120,very bright but contained light, unmoving +2002-08-11,48.5277778,-121.4483333,Marblemount,WA,light,2700,Watched point of light like a bright star, dancing around the northern sky, changing colors, for at least 45 min. +2003-08-11,32.2216667,-110.9258333,Tucson,AZ,light,600,4 lights hung in the sky +2003-08-11,35.2219444,-101.8308333,Amarillo,TX,oval,120,White oval shape flying saucer moving in variable directions at great speeds with stop and start features +2003-08-11,34.1897222,-118.1302778,Altadena,CA,triangle,30,Stationary Black Triangle over Southern California Near JPL, spotted by 2 witnesses. 20-30 seconds. +2003-08-11,34.2569444,-85.1647222,Rome,GA,other,600,Two black rotating "tires" revolving around each other seen in western sky flying in a southeastern direction in Rome, GA on 11 Aug. +2003-08-11,36.0544444,-112.1386111,Grand Canyon (100 Miles From),AZ,light,15,object flashed and vanished +2004-08-11,45.5236111,-122.675,Portland,OR,light,3,Circular shaped light travels quickly across sky in suburbs. +2004-08-11,38.5766667,-92.1733333,Jefferson City,MO,light,90,Star like object spotted in the clear dark heartland skys +2004-08-11,38.5833333,-90.4066667,Kirkwood (Saint Louis),MO,other,420,Black Crucible +2004-08-11,37.3822222,-89.6661111,Jackson,MO,disk,2400,I looked outside and saw a shape high in the sky(was still light out) and got video camera and filmed the object. It was a black disk t +2004-08-11,40.2330556,-76.1375,Denver,PA,fireball,4,fireball, zigzagged then disappeared, Denver, Pa +2004-08-11,34.1072222,-118.0569444,Temple City,CA,fireball,1,GREEN flash in sky august 11, 2004. +2004-08-11,48.9391667,-119.4344444,Oroville,WA,triangle,600,Bright Triangle Accompanied by 3 jets. +2004-08-11,42.7044444,-73.9119444,Guilderland,NY,triangle,8,triangular shape hoverd over the road with lights on the points +2004-08-11,47.7625,-122.2041667,Bothell,WA,other,180,Star disappeared while observing Perseid Meteor Shower. +2004-08-11,40.2969444,-111.6938889,Orem,UT,other,60,I saw a boomerang shaped craft fly slowly over my house, it had no lights and made no noise, it was black and outlined in gray. +2004-08-11,34.7502778,-98.1713889,Sterling,OK,unknown,1200,Bright hovering lights +2004-08-11,34.7502778,-98.1713889,Sterling,OK,triangle,900,Three lighted Triangle Object near a military base. +2004-08-11,26.625,-81.625,Lehigh Acres,FL,light,5,this light appeard and moved very fast and then dissapeard +2005-08-11,34.4358333,-119.8266667,Goleta,CA,flash,1,Witness to a bright whiteish/blueish ominous light in the sky, followed by a boom sound that killed all electricity. +2005-08-11,38.7522222,-121.2869444,Roseville,CA,changing,180,I saw two objects with multiple orange lights (in two seperate patterns) moving across the sky. +2005-08-11,33.9608333,-83.3780556,Athens (Near),GA,cross,300,Red Sky over Georgia +2005-08-11,30.7436111,-98.0552778,Bertram,TX,cigar,300,cigar or pencil shaped craft changes position over landed emergency helicoper in daylight. +2005-08-11,37.9841667,-120.3811111,Sonora,CA,other,10800,strange large colorful object for 3hrs+ by the moon +2005-08-11,36.98,-85.6122222,Edmonton,KY,triangle,180,On August 11th 2005 my son and I seen a large triangle UFO with 3 lights, with the broad part of the tiangle moving forward. +2005-08-11,36.0466667,-85.2,Mayland,TN,light,300,8-11-05 Objects pass in the sky, then play chase! +2005-08-11,35.6125,-77.3666667,Greenville,NC,unknown,180,5 lights seen dancing in the sky +2005-08-11,25.4683333,-80.4777778,Homestead,FL,light,2700,We went out to see the meteor shower tonight. We figured the best place, away from the Kendall area (and bright city lights) was Homest +2005-08-11,37.4716667,-121.1286111,Patterson,CA,light,60,That I lost sight of them when they were still pretty close to where I was standing. +2006-08-11,41.3958333,-72.8972222,Hamden,CT,rectangle,7200,I WAS ABOUT TO GET GAS AT 3AM WHEN I LOOK UP WHEN I HAD SEEN VERY BRIGHT LIGHTS COMEING DOWN WITH A BRIGHT RED LIGHT IN THE CENTER OF T +2006-08-11,42.4033333,-78.6855556,Ashford Hollow,NY,oval,10,Two flying blips of light caught on video. +2006-08-11,40.6213889,-79.1527778,Indiana,PA,unknown,7200,Second night of UFO activity in skys over Indiana, PA. White light seen moving at quick pace +2006-08-11,40.4694444,-123.7986111,Bridgeville,CA,triangle,4,Seen low on horizon moving very fast headed east. No sound. Blueish lights. +2006-08-11,39.9019444,-75.3502778,Swarthmore,PA,light,60,Bright Blue/White light flew across the sky in seconds +2006-08-11,41.85,-87.65,Chicago,IL,fireball,300,Falling fireballs above Chicago then flared up again while making circles +2007-08-11,26.3013889,-98.1630556,Edinburg,TX,light,900,LOOKING UP AT THE NIGHT SKY SEVERAL LIGHTS, SIMILAR TO STARS, STARTED MOVING SLOWLY AROSS THE SKY THEN DISAPPEARED. THEY DEFINITELY WER +2007-08-11,37.7666667,-120.8461111,Oakdale,CA,fireball,600,Multiple reports of earthquakes, sonic booms, fireballs, meteors, ufos's +2007-08-11,37.9841667,-120.3811111,Sonora,CA,light,2,ball of light and loud boom +2007-08-11,41.6472222,-122.5188889,Grenada,CA,fireball,4,Huge, neon green fireball with orange halo travelling very fast perpendicular to earth in northern CA +2007-08-11,34.0522222,-118.2427778,Los Angeles,CA,triangle,5,Large dark triangle with blinking lights passes over Los Angeles neighborhood +2007-08-11,42.9633333,-85.6680556,Grand Rapids,MI,light,60,Two Lights Moving In Unison +2007-08-11,42.9633333,-85.6680556,Grand Rapids,MI,other,10,Pulsing Light Back Again +2007-08-11,45.6388889,-122.6602778,Vancouver,WA,unknown,60,UFOs seen converging with fighter jets just after takeoff. +2007-08-11,34.0522222,-118.2427778,Los Angeles,CA,other,300,on 8/11/08, 3 stars that seemed connected where snaking through the atmoshpere onto of California, Los Angeles, around 12:12 a.m. +2007-08-11,47.2530556,-122.4430556,Tacoma,WA,other,240,UFO- Bright, light shifting Orb over Tacoma 8/11/2007 +2007-08-11,42.1213889,-84.345,Clarklake,MI,flash,300,Power interrruption, glinting in the blue sky and several odd photographs taken of round, metallic object.(s) +2007-08-11,30.4505556,-91.1544444,Baton Rouge,LA,fireball,420,Flaming Ball over Baton Rouge +2007-08-11,41.2922222,-89.5061111,Tiskilwa,IL,light,1200,Distant cluster of lights ejected smaller white lights +2007-08-11,36.9536111,-79.3591667,Gretna,VA,triangle,300,3 craft flying low and slow and minimul noise +2007-08-11,40.5247222,-111.8630556,Draper,UT,light,60,Green flashes with booms in the night sky. +2007-08-11,41.7886111,-89.6961111,Sterling,IL,light,600,Red revolving light in Illinois +2007-08-11,41.9402778,-85.0005556,Coldwater,MI,light,1800,BRIGHT YELLOWISH LIGHT +2007-08-11,25.7738889,-80.1938889,Miami,FL,triangle,300,Miami suburb night sighting of a silent, low-hovering obtusely-angled arrangement of reddish lights +2007-08-11,41.3711111,-73.4144444,Bethel,CT,light,3600,White, green and red lighted object in Western Sky +2008-08-11,41.865,-80.79,Ashtabula,OH,other,7200,the fantastic and unique hour of the night that we have ever spent watching the sky +2008-08-11,38.0563889,-83.9433333,Mt. Sterling,KY,triangle,600,Triangle shaped craft, flying low +2008-08-11,34.8552778,-87.6916667,Petersville,AL,triangle,2700,A three lighted object seems to be surveying north Alabama. +2008-08-11,26.2708333,-80.2708333,Coral Springs,FL,unknown,7200,Something in the sky thats changing colors and in the same spot for at least two hours...just gets higher. +2008-08-11,35.7719444,-78.6388889,Raleigh,NC,light,60,white light traveling horizontally, sped up very fast and then disappeared. +2008-08-11,47.6063889,-122.3308333,Seattle,WA,circle,180,5 white objects hovering in Seattle in a unique uniform pattern. +2008-08-11,20.8783333,-156.6825,Lahaina,HI,circle,540,it was dusk and it appeared to be Jupiter, then we noticed this starlike object was only several hundred feet to our southeast and was +2008-08-11,41.3158333,-72.3294444,Old Lyme,CT,cylinder,1,extremely fast pure white object over old lyme no noise or trail +2008-08-11,44.2911111,-105.5016667,Gillette,WY,egg,300,Bell shaped object emiting bright light from bottom spotted near Gillette Wyoming. +2008-08-11,27.3063889,-98.6780556,Hebbronville,TX,fireball,900,Green ball and yellow light +2008-08-11,42.1291667,-80.0852778,Erie,PA,fireball,900,Fireballs slowly descend from the sky and disappear into Lake Erie +2008-08-11,35.7688889,-119.2461111,Delano,CA,unknown,1800,Possible UFO over NORTH WEST of California Close to San JOSE Calif. +2008-08-11,28.5380556,-81.3794444,Orlando,FL,changing,30,pulsating blue- white electrical light object turning on and off +2008-08-11,44.5647222,-123.2608333,Corvallis,OR,diamond,120,i was chased by a UFO in the 2nd sighting. ((NUFORC Note: Student report. Hoax?? PD)) +2009-08-11,34.1741667,-97.1433333,Ardmore,OK,oval,5,Polished oval shaped craft with green illumination moving in a controlled manner +2009-08-11,28.3641667,-82.6936111,Hudson,FL,formation,300,5 circular shaped lights (simlar to a shooting star but WAS NOT) traveling in a group ac +2009-08-11,41.6005556,-93.6088889,Des Moines,IA,unknown,2700,Flashing and strobing object, flashing and strobing military jets, and two white lights moving above the Des Moines Iowa area. +2009-08-11,32.7355556,-97.1077778,Arlington,TX,other,1200,explanation of earlier report +2009-08-11,32.4708333,-85.0008333,Phenix City,AL,triangle,3360,bright object hovering in sky during lightning storm Phenix city, Al +2010-08-11,47.3811111,-122.2336111,Kent,WA,triangle,10,Triangle UFO witnessed in Kent, Washinton at about 1am on Wednesday morning, 8/11/10. +2010-08-11,41.3358333,-71.9063889,Stonington,CT,light,2,2:36am in Stonington, Ct there was a bar of light in the upper right sky about the sz of an inch, it tilted to right, then sped away +2010-08-11,31.7586111,-106.4863889,El Paso,TX,light,120,white light, zoom away +2010-08-11,38.3566667,-121.9866667,Vacaville,CA,light,70,my friend and I were delivering news papers to an apartment complex around four thirty am and I looked up and saw a bright flying throu +2010-08-11,39.1619444,-84.4569444,Cincinnati,OH,other,120,ufo over walnut hills in cincinnati +2010-08-11,41.7858333,-88.1472222,Naperville,IL,sphere,3,Spherical object or ball of light flying low and fast while recording clouds +2010-08-11,43.525,-84.1227778,Freeland,MI,light,600,First colorful light far in sky then 3 lights in a row, Saginaw County, MI +2010-08-11,39.6091667,-85.4463889,Rushville,IN,disk,120,RED DISK UFO (CIRCULAR/SQUARE) SIGHTED IN RUSHVILLE, IN BY THREE PERSONS-TRAVELING EAST +2010-08-11,33.5736111,-79.0027778,Garden City Beach,SC,formation,600,Strange unnatural lights seen off Garden City Beach. +2010-08-11,35.9088889,-92.6311111,Marshall,AR,light,1800,Me and my friend decided to drive to the top of a hill tonight to see the stars, because it was pretty clear. The things we saw looked +2010-08-11,42.3266667,-122.8744444,Medford,OR,triangle,900,looking North we saw a triangle shaped object in the sky, rapidly changing colors from blue, red, green and white, almost looked like i +2011-08-11,42.2141667,-83.15,Wyandotte,MI,triangle,45,a triangular craft with lights flying over a house in Wyandotte Michigan +2011-08-11,26.6155556,-80.0572222,Lake Worth,FL,light,7200,High in air, an uncountable amount of white lights interacted and dispersed for hours on end. ((NUFORC Note: Twinkling stars?? PD)) +2011-08-11,39.0483333,-95.6777778,Topeka,KS,light,180,I stepped out of the garage at about 4:15 or maybe 4:30 am, into my three acre heavily +2011-08-11,40.385555600000004,-79.7591667,Trafford,PA,other,180,Intense ball of bright white light fly-over Trafford, PA. +2011-08-11,44.0583333,-121.3141667,Bend,OR,light,4,Very bright point of blue-white light moving downward in the vicinity of the Big Dipper constellation. +2011-08-11,40.2680556,-96.7466667,Beatrice,NE,light,14400,Light seen in Beatrice, NE changing colors, moving rapidly and producing two others. +2011-08-11,40.5852778,-105.0838889,Fort Collins,CO,circle,300,White circler object following a commercial airliner. +2011-08-11,42.5547222,-88.1108333,West Salem,WI,circle,5,Round sphere moving fast through the sky. +2011-08-11,33.8675,-117.9972222,Buena Park,CA,fireball,180,Fireball seen over Buena park area around 8pm 8/11/11 +2011-08-11,40.7008333,-73.4625,North Massapequa,NY,fireball,120,My son and I were travelling north heading home at approximately 9:00 pm. We were about to turn west onto our street when we saw what +2011-08-11,45.7869444,-87.9036111,Norway,MI,fireball,420,I KNOW WHAT I SAW, RED CIRCULAR OBJECTS....... +2011-08-11,41.6269444,-88.2038889,Plainfield,IL,formation,180,5 firey red orbs in a checkmark formation +2011-08-11,41.8205556,-75.4202778,Poyntelle,PA,light,1293,Strobe light like craft. +2011-08-11,41.2391667,-81.3461111,Streetsboro,OH,light,300,Orange lights over Ohio Route 43 +2011-08-11,41.4541667,-70.5625,Oak Bluffs,MA,light,420,seven orange lights floating over ocean in oak bluffs +2011-08-11,47.0380556,-122.8994444,Olympia,WA,light,180,Orange red light in sky turned to white as it moved figeting across the sky with no noise. +2011-08-11,28.5380556,-81.3794444,Orlando,FL,fireball,3,Bright Object - Large White Fiery Ball with Bright Green Trail Fell to Earth +2011-08-11,28.2394444,-82.3280556,Wesley Chapel,FL,fireball,5,Big green ball of fire falling from the sky. +2011-08-11,37.2708333,-79.9416667,Roanoke,VA,disk,20,THREE SHIPS MOVING IN FORMATION WITH EACH OTHER. 1 WHITE 2 RED DISK SHAPE CRAFT WITH A STRANGE AURA AROUND THEM. +2011-08-11,36.8527778,-75.9783333,Virginia Beach,VA,fireball,120,Fire ball off I-264 +2011-08-11,44.4652778,-72.685,Stowe,VT,fireball,600,Fireball above rt 100 and Moscow rd in pouring rain +2011-08-11,38.9783333,-76.4925,Annapolis,MD,rectangle,5,Looked like a firecracker +2012-08-11,30.2669444,-97.7427778,Austin,TX,circle,4,bright royal blue sphere with no sound +2012-08-11,35.2783333,-93.1336111,Russellville,AR,cylinder,20,I was going outside to smoke a cigarette at my apartment complex, when I noticed something out of the ordinary above the adjacent apart +2012-08-11,46.7833333,-92.1063889,Duluth,MN,unknown,3600,Light over Duluth, Mn. - similar to the "Phoenix Lights" of 1997 +2012-08-11,34.5361111,-117.2902778,Victorville,CA,sphere,30,An unidentified object seen flying through the high desert of Victorville, California. +2012-08-11,32.7938889,-79.8627778,Mount Pleasant,SC,unknown,300,I was outside with my dog when he stopped and whined I looked at him and he was looking up he has never behaved like this ever before +2012-08-11,44.6366667,-123.1047222,Albany,OR,light,10,White Light Moving Fast +2012-08-11,45.5236111,-122.675,Portland (Garden Home),OR,formation,1200,"Stars" moving around, changing position, and appear to be in a formation. +2012-08-11,36.0397222,-114.9811111,Henderson,NV,light,5,Gave me chills. +2012-08-11,41.995,-88.1855556,Bartlett,IL,fireball,600,4 to 10 orange lights hovering in the sky, then fade away to nothing +2012-08-11,40.66,-111.9955556,Kearns,UT,other,120,1-daylight sightings 2-quickly disapearing +2012-08-11,38.7027778,-120.0716667,Kirkwood,CA,light,180,UFO seen near Lake Tahoe, CA - emanated orange beam - scary as hell +2012-08-11,40.6936111,-89.5888889,Peoria,IL,formation,600,There were many small yellow light in the sky hovering north and aircraft headed north east objects move slowly across the sky all acro +2012-08-11,34.54,-112.4677778,Prescott,AZ,oval,300,7-10 orange orbs in northeast sky of Prescott, AZ, seen by civilians +2012-08-11,41.6441667,-93.4644444,Altoona,IA,triangle,780,Triangular shaped hovering craft with multi-colored flashing lights - seen for over 12 minutes. +2012-08-11,41.3072222,-111.9594444,North Ogden,UT,unknown,300,UFO turned off & on lights & landed in a nearby grove of trees. +2012-08-11,47.2791667,-122.2508333,Algona,WA,light,720,Strange light formations in the night sky +2012-08-11,41.995,-88.1855556,Bartlett,IL,light,900,Chicago area 8/11 colored spinning lights - multiple objects. +2012-08-11,41.3158333,-72.3294444,Old Lyme,CT,other,600,Large object with two slow flashing lights. slowly moving near D.E.P fishing area +2012-08-11,47.2044444,-121.9902778,Enumclaw,WA,formation,600,Orange lights sighted hovering in formation and moving slightly above Enumclaw. +2012-08-11,41.4538889,-75.3830556,Lake Ariel,PA,unknown,20,Bright light in sky that seem to come down into atmosphere. +2012-08-11,40.6461111,-111.4972222,Park City,UT,light,300,Three groups of lights, one had three orange globes in a row, one was binary (two), and one was single, over Park City, UT +2012-08-11,41.760555600000004,-88.32,Aurora,IL,circle,600,Orange in color, took off very fast, multiple crafts +2012-08-11,42.7008333,-82.9591667,Macomb,MI,light,600,6 orange lights in formation 2 traveling bright orange lights Macomb, MI +2012-08-11,42.655,-86.2019444,Saugatuck,MI,light,7200,Orange lights moving very quickly over Lake Michigan during meteor shower. +2012-08-11,47.6063889,-122.3308333,Seattle,WA,chevron,5,4 golden/glowing chevrons moving across the sky in formation +2012-08-11,41.7861111,-85.8677778,Union,MI,teardrop,1200,Multiple craft forward red-orange light, slowly flying low east-southeast across Union MI, disappeared as they passed over. silent. +2012-08-11,44.3147222,-84.7647222,Houghton Lake,MI,triangle,600,UFO SIGHTING OVER HOUGHTON LAKE MICHIGAN +2012-08-11,42.3608333,-85.8794444,Gobles,MI,sphere,30,Orange Plasma Halo And Made A 45 Degree Turn +2012-08-11,47.5963889,-120.6602778,Leavenworth,WA,unknown,2400,Leavenworth Wa. on Boundary Butte UFO sighting +2012-08-11,32.7152778,-117.1563889,San Diego,CA,circle,600,UFO sighting over Ocean Beach, CA on 11 AUG 2012 +2012-08-11,37.3394444,-121.8938889,San Jose,CA,diamond,5,Two elongated diamond shaped crafts, no sound, high rate of speed +2012-08-11,42.5333333,-83.1463889,Clawson,MI,light,7,Intense star like light traveling west to east at night +2012-08-11,48.7597222,-122.4869444,Bellingham,WA,circle,180,Random, changing formations of many bright orange lights observed through apartment window. Objects moved slowly, then eventually grew +2012-08-11,48.4213889,-122.3327778,Mount Vernon,WA,triangle,10,Large, silent, triangular craft moving very fast, stopping suddenly, then disappearing. +2012-08-11,48.7597222,-122.4869444,Bellingham,WA,formation,1800,Glowing Objects hovered over Bellingham Washington, then vanished in to the sky +2012-08-11,48.1183333,-123.4294444,Port Angeles,WA,diamond,3600,Flashing diamond making short up,down, circular, left, right, movements in dark, clear Northeast night sky +2012-08-11,43.4919444,-116.4191667,Kuna,ID,circle,600,Bright yellowish orange balls pulsating. 3 than 4 than 6 to 8 circles flashing lighting Night sky. After they faded out alot of helicop +2012-08-11,36.9438889,-82.4641667,Coeburn,VA,light,120,Two white lights traveling in lateral directions at high rate of speed seen by two observers in extreme SW VA during meteor shower. +2012-08-11,38.8113889,-89.9530556,Edwardsville,IL,flash,180,Strange Double Shooting Star Type Objects Over Edwardsville, Illinois +2012-08-11,37.3394444,-121.8938889,San Jose,CA,fireball,30,Green fireball in southern night sky +2013-08-11,44.7527778,-68.6794444,Holden,ME,oval,600,Oval/circle amber light spotted on Mann Hill Rd. +2013-08-11,44.8333333,-68.3647222,Amherst,ME,circle,300,Circular amber light seen towards to the NW; no sound +2013-08-11,42.1194444,-71.3255556,Norfolk,MA,rectangle,3600,Rectangle object that had several lights. +2013-08-11,30.6325,-97.6769444,Georgetown,TX,circle,3,Saw bright, dark turquoise light in the air. it was there, and then not, all in an instant. +2013-08-11,35.4447222,-78.4272222,Four Oaks,NC,other,14400,We where outside looking at the stars i notice a v shaped bright lights clear that night. I got nephew to come and look too see if we c +2013-08-11,40.1783333,-74.0222222,Belmar,NJ,disk,1200,Motionless object with changing colors observed for 30 minutes over New Jersey shore. +2013-08-11,43.3838889,-70.5452778,Kennebunk,ME,triangle,180,Observed 3 orange (fiery looking texture) moving in triangular formation in the northeastern sky +2013-08-11,41.2222222,-73.0569444,Milford,CT,unknown,180,Thought it was a plane. it slowed down to near stop then began to circle for a while. when a plane from another direction approached it +2013-08-11,29.495,-99.7122222,Concan,TX,circle,1200,At around 4:30 am on August 11, 2013 my mother and I were observing the meteor shower at Garner State Park. First we saw an object we b +2013-08-11,45.6797222,-111.0377778,Bozeman,MT,light,60,2 lights, passing by each other, then 1 changed direction. +2013-08-11,39.051944399999996,-82.6366667,Jackson,OH,fireball,300,Two fireballs on the horizon. +2013-08-11,39.051944399999996,-82.6366667,Jackson,OH,fireball,420,2 round fireballs moving south +2013-08-11,39.2688889,-84.2638889,Loveland,OH,light,90,Strange orange glowing lights in the sky late at night. ((NUFORC Note: Japanese HTV-4 craft flying close to the ISS? PD)) +2013-08-11,37.3394444,-121.8938889,San Jose,CA,other,480,Six bright orange glowing objects seen floating from west to east. +2013-08-11,37.6922222,-97.3372222,Wichita,KS,triangle,60,((HOAX?? PROFANITY)) Four bright white horizontal lights turned into a triangle with a red and irane light. +2013-08-11,28.0833333,-80.6083333,Melbourne,FL,light,60,At 10:40 PM, Sunday August 11, as I was leaving for work, I saw an orange light in the sky. It was north of me, moving north in a small +2013-08-11,39.8775,-84.3022222,Englewood,OH,fireball,120,Orange fireball. +2013-08-11,47.2944444,-101.6222222,Hazen,ND,diamond,7,Diamond shaped craft, charcoal gray, with four lights at the corners, moving silently at very high speed. +2013-08-11,39.7172222,-74.9697222,Sicklerville,NJ,diamond,10,First time I ever witnesed something like that. +1948-08-01,40.7141667,-74.0063889,New York City (Brooklyn),NY,circle,600,A round overing craft over neighbors roof, emitting a roaring sound , observed fire like a jet engine beneath +1950-08-01,38.2541667,-85.7594444,Louisville,KY,other,60,In 1953, at the age of 3 years old I was Contacted by what is described as a "GREY". This happened in Ky in 1953. +1952-08-01,27.9472222,-82.4586111,Tampa,FL,oval,9000,Triangulation radar fix (USAF, civil, Navy). I ordered intercept by SAC B-29. B-29 tracked object. Central fire control system locked +1953-08-01,38.7544444,-90.3311111,Berkeley,MO,fireball,300,Early 50's sighting in Berkeley, Missouri +1954-08-01,40.7325,-73.4458333,Farmingdale,NY,oval,1800,Sphere -30 min. - Stationary, bright object over Jet Factory -1954 +1954-08-01,41.4941667,-87.5216667,Dyer,IN,triangle,15,I saw a silent exhaustless golden glowing slow flying triangle on a late summer afternoon In 1954 or 1955. +1954-08-01,41.6563889,-76.8536111,Canton,PA,disk,30,Large, silver-blue disc shaped oject which gave off high pitched sound and was slowly turning on its axis and then suddenly sped away. +1954-08-01,34.1722222,-118.3780556,North Hollywood,CA,light,1800,Star like point of light slowly travelling across the sky in 1954 +1956-08-01,32.9947222,-86.085,Bradford,AL,sphere,20,moving sparkling white/ yellowish/orange/flat black sphere paused 20 feet over my head +1956-08-01,42.5,-71.5833333,Harvard,MA,unknown,3,Lost time. +1957-08-01,43.6366667,-113.2994444,Arco,ID,disk,180,A surveying crew of five disturbed a landed craft that lifted up during mid day and then flew away after observing us. +1958-08-01,41.3205556,-73.0894444,Derby (New Haven),CT,disk,900,Occurred during early evening hours. LARGE UFO (witnessed by many in neighborhood) hovered over open field at end of housing project. +1959-08-01,32.7294444,-95.5627778,Golden,TX,disk,3,children see flying saucer in small East Texas town +1960-08-01,40.6083333,-75.4905556,Allentown,PA,cylinder,3600,Historical color video of major USA event shows presence of UFO +1960-08-01,41.5697222,-72.0477778,Taftville,CT,disk,60,Saw a white saucer-shaped object hovering over church steeple in day time then just faded away +1960-08-01,42.3583333,-71.0602778,Boston,MA,disk,1800,Observed strange large disk like craft. +1960-08-01,40.5772222,-74.2286111,Carteret,NJ,cigar,600,Cigar shapped object made no sounds, moved slowly overhead and then with tremendous speed vanished +1961-08-01,37.9061111,-122.5438889,Mill Valley,CA,disk,180,Clear view of a "flying saucer". +1962-08-01,32.7763889,-79.9311111,Charleston,SC,disk,300,Flying disk near Air Base in Charleston SC around 1962 summer +1962-08-01,32.0833333,-81.1,Savannah,GA,disk,900,a round, disk like craft with circling lights on the underside of it hovered and flew over our neighborhood around 6 pmǀ/62 +1962-08-01,45.4872222,-122.8025,Beaverton,OR,triangle,120,Daytime approach and stopped within short distance and was extremely visible. +1963-08-01,42.9386111,-74.1886111,Amsterdam,NY,disk,240,Observed 2 saucer shaped objects, traveling at high speed, vertically and horizontally. +1963-08-01,33.8958333,-118.2191667,Compton,CA,light,1200,Photoflash light, very intense, very quick, very deliberate. +1963-08-01,47.4236111,-120.3091667,Wenatchee,WA,formation,5,V formation of 7 to 9 lights fly from horizon to horizon +1964-08-01,41.3358333,-71.9063889,Stonington,CT,disk,180,A Genuine Spaceship +1964-08-01,41.85,-87.65,Chicago,IL,formation,120,The event was exactly the same as reported last year 1997 over the city of Arizona. There were 5 circular lights hovering over the hous +1964-08-01,40.3813889,-79.86,Duquesne,PA,cigar,600,Cigar shaped silver object with varying speeds, no sound heard and many witnesses. +1964-08-01,41.3830556,-71.6422222,Charlestown,RI,light,3,While camping at the Burlingame State Park, Charlestown, RI, in August of 1964, my friend, Tommy, and I were looking over the pond at t +1965-08-01,35.7211111,-77.9158333,Wilson,NC,disk,900,((HOAX??)) five round flat disks hovering at night in the sky +1965-08-01,41.2175,-103.3152778,Potter (11 Mi. North Of),NE,unknown,1200,I will never forget this night.............a friend and I was arrived home (11 miles north of Potter, Nebraska) and saw lights over our +1965-08-01,38.6272222,-90.1977778,St. Louis,MO,sphere,120,Orange Ball UFO chased by F-4 military fighter jet with abrupt maneuvering by UFO and impossible speeds. +1965-08-01,39.5008333,-89.7677778,Virden,IL,sphere,10,12 year old sights Virden, IL UFO +1965-08-01,29.5633333,-95.2858333,Pearland,TX,light,120,In the summer of 1965, when I was 7 years old, my sister and I wwere visiting my aunt and two cousins in Pearland while my uncle, a pil +1966-08-01,39.9611111,-82.9988889,Columbus,OH,circle,2,Glowing orange sphere, stationary and silent +1966-08-01,42.3255556,-83.3311111,Garden City,MI,cigar,7,Football Shaped craft seen over Detroit suburb (1966) +1967-08-01,44.9291667,-89.8402778,Marathon County,WI,disk,60,A very close and long encounter by my family in a very rural farm in wisconsin. +1967-08-01,42.3508333,-73.8033333,Coxsackie,NY,circle,300,Greenish-red, hazy, circular object hangs in sky almost like a "bat signal" in Coxsackie, New York. +1967-08-01,40.7141667,-74.0063889,New York City (Middle Village) (Queens),NY,diamond,300,Foreign Object Just Whizzing By Lights Up the Sky in the Summer of the Late 60's +1967-08-01,43.2166667,-123.3405556,Roseburg,OR,sphere,900,3 round craft , with red-blue-green swirling lights, ( no sound) , and sparks emitting from beneath them. +1967-08-01,40.6838889,-73.0052778,Davis Park,NY,triangle,90,3 dim lights in triangle shape, about 400 ft high, moved west to east slowly along S. shore of Fire Island, NY +1967-08-01,44.8341667,-87.3769444,Sturgeon Bay,WI,cigar,120,This has happened so long ago but the event is very clear yet. It was an evening, on the way home from watching a movie, I approached +1968-08-01,27.8002778,-97.3961111,Corpus Christi,TX,other,86400,Metal implants. +1968-08-01,29.7352778,-94.9772222,Baytown,TX,light,180,Light that zipped, down, right, and down to the ground +1968-08-01,42.3508333,-73.8033333,Coxsackie,NY,circle,60,The object hovered and then shot off to the south east making no noise. +1968-08-01,30.1763889,-85.8055556,Panama City Beach,FL,light,14400,One light appeared over Gulf of Mexico. Looked about as bright as Venus at dusk. Became brighter. Then others appeared. +1968-08-01,33.3766667,-79.2947222,Georgetown,SC,other,1200,Massive explosion of glowing colors in the sky late in the evening as darkness began to settle in. +1969-08-01,39.7588889,-84.1916667,Dayton,OH,disk,60,Large silver disk "rolls" alongf tree tops near Wright-Patterson AFB +1969-08-01,41.0036111,-80.3472222,New Castle,PA,oval,3000,This was in 1969 and I was only 16. There were eight of my family and friend that witnessed this event. 500 Lights On Object0: Yes +1969-08-01,44.9133333,-93.5030556,Minnetonka,MN,light,60,Large bright white light hovering in minnetonka, mn, summer, 1969 +1970-08-01,26.2375,-80.125,Pompano Beach,FL,other,120,Rotating colored lights over Pompano Beach Florida in the summer of 1970 +1970-08-01,37.3425,-93.7022222,Everton,MO,light,3600,strange lights follow automobile +1970-08-01,34.5794444,-118.1155556,Palmdale,CA,cylinder,180,A flaming cylindrical object crossed the entire sky, north to south, in about 3 min. +1971-08-01,40.7280556,-115.4775,Lamoille (Above),NV,cigar,900,Close Up, Broad Daylight Sighting of a UFO. +1971-08-01,31.9805556,-102.6147222,Goldsmith,TX,light,1800,I was 16 when I had this sighting and I am not 51. At that time I didn't know how to report a sighting. I was at a baseball park and s +1971-08-01,32.9897222,-85.2886111,Fredonia,AL,unknown,120,my wife and I were travling east of fredonia 'when my wife noticed strange lights crossing alarge pasture. i stopped the car and got o +1972-08-01,33.4483333,-112.0733333,Phoenix,AZ,disk,60,Saucer and tall alien who appeared in human form +1973-08-01,33.5830556,-84.3394444,Morrow,GA,triangle,300,Metallic, grey, triangular object hovers just above tree top level behind house as we stood approx. 150 ' away on a clear summer night. +1973-08-01,43.0880556,-70.7366667,Kittery,ME,formation,10,A VERY fast light point object that was viewed for about 10 Seconds. +1973-08-01,40.3697222,-80.6341667,Steubenville,OH,cylinder,480,Orange cylinder flying slowly at low altitude +1973-08-01,37.1544444,-90.6955556,Piedmont (3 Miles East Of),MO,oval,2700,On hwy 43 we pulled over to see what dozens of people were looking at. +1973-08-02,42.1958333,-70.7263889,Scituate,MA,triangle,900,This Diamond shape object hovererd on one spot for 15 or more min and was seen by many people, it was mentioned in the paper etc. It se +1974-08-01,41.1952778,-73.4383333,Wilton,CT,cylinder,120,I was anywhere from 6 to eight years old when it happened. I was awakened from bed by bright lights and low rumbling noise. I looked +1974-08-01,42.2069444,-71.6861111,Grafton,MA,circle,600,Circular silver object with bright lights hovered over our heads at tree top level before whooshing off +1974-08-01,40.3063889,-121.2308333,Chester,CA,triangle,120,Three white lights in equilateral triangle move across night sky, multiple witnesses, summer camping trip 1974. +1974-08-01,33.8094444,-84.2397222,Clarkston,GA,oval,300,I would like to start by saying the date is a best guess. I was in 3rd or 4th grade, and I know it was the end of summer, and along w +1974-08-01,39.9719444,-74.6833333,Pemberton,NJ,circle,900,10 year old local boy sees UFO +1974-08-01,39.9241667,-83.8088889,Springfield,OH,cigar,1800,Small fleet large craft over Ohio +1974-08-01,37.9886111,-84.4777778,Lexington,KY,disk,1200,WE WERE CHASED BY A UFO . +1974-08-01,37.2872222,-121.9488889,Campbell,CA,triangle,12,Sighting of a pair of triangular UFO's over the SF Bay Area, August 1974In the summer of 1974, I saw a pair of triangular objects +1975-08-01,34.2669444,-118.3013889,Sunland,CA,egg,600,Shimmering, iridescent ovoid over Sunland, CA emits brilliant flash and disappears +1975-08-01,41.1575,-81.2422222,Ravenna (Near West Branch State Park),OH,cylinder,1200,5 of us were standing outside talking, I felt as though someone was looking at me, I turned around and saw it it was'nt moving, then st +1975-08-01,40.4405556,-79.9961111,Pittsburgh (Mckees Rocks, Southwest Of),PA,fireball,900,We were enjoying the evening sunset, as it glistened off the USX towers downtown Pittsburgh, in a north easterly direction. When we all +1976-08-01,30.6325,-97.6769444,Georgetown,TX,light,21600,ABDUCTED BY BRIGHT LIGHT +1976-08-01,43.0747222,-73.1544444,Arlington,VT,disk,180,The object emitted two smaller objects and made no sounds whatsoever. +1976-08-01,37.3394444,-121.8938889,San Jose,CA,disk,3600,Hovering Saucer over South San Jose in the August Evening +1976-08-01,29.7630556,-95.3630556,Houston,TX,unknown,780,Unknown object with flashing lights and laser beam behind the Hou ARTCC building/very fast moving +1977-08-01,33.9791667,-118.0319444,Whittier,CA,chevron,600,Very large metallic object hovering over 605 freeway +1977-08-01,32.7319444,-90.4602778,Tinsley,MS,cigar,300,Cigar multi light craft over tree line in Tinsley Ms. +1977-08-01,41.1411111,-73.2641667,Fairfield,CT,other,30,In my youth, my friend and I witnessed an inverted, glowing teacup hovering over Fairfield University campus. +1977-08-01,38.6283333,-91.0575,Marthasville,MO,circle,600,Huge craft with role after role of light on the bottom side +1977-08-01,40.2141667,-77.0088889,Mechanicsburg,PA,triangle,180,Triangle shaped (white only) lights observed flying directly over head apeared to be one solid object +1977-08-01,36.29,-83.5911111,Washburn,TN,chevron,180,slow moving chevron or "V" shaped object with strobes and silent +1978-08-01,34.4261111,-117.5713889,Phelan,CA,oval,600,3 bright ovals rise up slowly, stop, move one at a time at incredible speed across horizon, then stop again +1978-08-01,34.1866667,-118.4480556,Van Nuys,CA,sphere,30,TWO METALLIC SPHERES, MOVING SOUTHEAST, APPROX 10-15 THOU FEET. +1978-08-01,42.8655556,-73.7713889,Clifton Park,NY,oval,60,Oval shaped object hovered in sky and then flew off in a diagonal direction EXTREMLY fast and disappeared +1978-08-01,32.9125,-96.6386111,Garland,TX,disk,60,1978 Red Saucer Garland texas +1978-08-01,28.0222222,-81.6194444,Dundee (5 Miles East Of),FL,sphere,30,My sister and I were takeing the garbage cansup the driveway one summer night. Three whiteglowing ojects in triangular formation flew +1978-08-01,46.6022222,-120.5047222,Yakima,WA,light,300,Hovering, Darting Lights Over Tampico, Washington State +1978-08-01,36.5297222,-87.3594444,Clarksville (Rural Area),TN,circle,14400,A sighting of a craft and alien abduction experience +1978-08-01,40.3355556,-75.9272222,Reading,PA,formation,300,I was 16 and standing outside looking to mountain with road on top called Skyline Drive. It was night and my boyfriend and I were look +1979-08-01,25.9327778,-80.1627778,North Miami Beach,FL,other,120,object blocks night sky above +1979-08-01,43.0433333,-74.86,Little Falls,NY,fireball,1,Fireball at high altitude, at night +1979-08-01,41.2586111,-95.9375,Omaha,NE,triangle,120,Multiple triangle-shaped, silver objects in night sky. +1980-08-01,29.4238889,-98.4933333,San Antonio,TX,disk,120,I was coming home from the store. It was dark and I had parked along way from my apartment. As I was walking towards the apartment I +1980-08-01,25.6788889,-80.3175,Kendall (S. Miami),FL,cigar,300,Fleet of silver-ish cigar shaped objects, one appearing after another and then disappearing. +1980-08-01,42.1538889,-88.1361111,Barrington,IL,triangle,5,Triangle hovering over me then moved across sky +1981-08-01,38.8,-120.8891667,Coloma,CA,sphere,300,My friend and I witnessed a silent, yellow-orange, spherical shaped UFO. +1981-08-01,30.2669444,-97.7427778,Austin (Lake Travis),TX,formation,420,circular light pattern that flew off with great speed in formation with 2 Air Force Jets on its tail. +1981-08-01,30.9933333,-89.2597222,Carnes,MS,triangle,900,Trangulat object, with lights on each side, traveling just over treetop high at very slow speed and no sounds. It went directly over. +1981-08-01,37.9577778,-121.2897222,Stockton,CA,rectangle,1800,Change from a rectangle to a old screaming 707 airliner balactica +1981-08-01,40.3772222,-105.5211111,Estes Park (Near),CO,unknown,18000,I was abducted as a youth and am remembering peices more and more in dreams. +1981-08-01,37.7644444,-89.335,Murphysboro,IL,circle,120,I was camping out with a friend in another friend's Christmas tree farm north of Murphysboro. We had dragged two lawn chairs out into +1982-08-01,44.7677778,-93.2775,Burnsville,MN,light,120,Small, bright-white light disappears into another larger, diffuse light (at sunset). +1983-08-01,38.4405556,-122.7133333,Santa Rosa,CA,unknown,900,Slow flying, noiseless object with red strobes. +1983-08-01,39.510555600000004,-79.7986111,Reedsville,WV,sphere,300,2 smaller spheres dropped out of 1 largers sphere. Larger sphere was pewter & 2 smaller sphere's were pewter! Samller sphere's manuve +1984-08-01,48.2766667,-116.5522222,Sandpoint,ID,disk,45,Day time sighting; UFO Saucer playing loud music. +1985-08-01,36.5108333,-104.9152778,Cimarron,NM,circle,900,three males observed a low altitude craft pass silently overhead and was then joined by three others in incredible aerial manuevers. l +1985-08-01,47.3088889,-122.0019444,Black Diamond,WA,other,900,Object landed in our field,some type of persons on board looking cloned or identical with unpigmented white skin. +1985-08-01,34.9186111,-95.3088889,Wilburton,OK,other,900,WE SAW AN OBJECT THAT LOOKED LIKE THE WAHINGTON MONUMENT MOVE VERY SLOWLY ACROSS THE SKY +1986-08-01,36.9086111,-111.4727778,Page,AZ,sphere,600,My Micro soft word is not responding and I do not know how to copy and paste. The year was 1986. It was August. I was in Page, Ari +1986-08-01,33.5777778,-101.8547222,Lubbock (Outside City Limits),TX,rectangle,900,A BLACK 5 SIDED BOX 2FT SQUARE. FLOATED FROM A FARM HOUSE JUST OVER POWERLINES AND THEN BACK UNDER TO RESUME CORSE AND SLOW;Y FLOAT UP +1986-08-01,42.0258333,-85.8155556,Marcellus,MI,triangle,120,Aloha I am not the person who saw this craft, my brother did.He was coming home from work near dusk on the same day the folks saw +1986-08-01,39.6580556,-83.735,Jamestown,OH,triangle,300,It was silent,this is all true. +1986-08-02,42.1672222,-85.8469444,Lawton (Bankson Lake),MI,diamond,3600,giant craft move slowly over lake It suddenly flashed brightly and went out. There was a wavy pattern behind it./eyes burned and watery +1987-08-01,39.7683333,-86.1580556,Indianapolis (150 Miles Sw Of),IN,light,120,I saw a redish colored orb that was "observing lighting show thunderstorms" & it displayed 2 amazing climbs and a huge burst of speed. +1987-08-01,33.1580556,-117.3497222,Carlsbad,CA,diamond,180,I saw a diamond shaped object hover over the Pacific, which flew over my condo, being pursued by Air Force fighter jets. +1987-08-01,30.2947222,-82.9841667,Live Oak,FL,fireball,600,Green balls of light come from outdoors and enter house +1988-08-01,37.6447222,-115.7427778,Rachel (Highway 318),NV,disk,600,Red Craft, Highway 318, possibly Nye Conty, NV 1am August 1988, traveling at a high rate of speed smoothly. +1988-08-01,42.9725,-70.8302778,North Hampton,NH,rectangle,300,It was just above the tree line near the my street entrance. It had three large windows and a figure in the center window. +1988-08-01,32.5772222,-116.6266667,Tecate,CA,light,600,I am a retired U.S. Border Patrol supervisor, having spent 37 years in the Border Patrol and INS. I was a patrol agent in charge on bo +1988-08-01,30.1102778,-97.315,Bastrop,TX,sphere,60,The sphere moved in an absolute straight line just above the tree line. +1988-08-01,38.5816667,-121.4933333,Sacramento,CA,disk,600,Sacramento Calif. August 1988 in the evening craft shining bright light on Arden Park +1988-08-01,41.3947222,-73.4544444,Danbury,CT,circle,2700,I threw rocks at a UFO for about a half an hour +1988-08-01,40.8122222,-73.0788889,Holbrook,NY,circle,300,We saw circular object w/ multi-colored lights fading from one set to another floating west-east after dropping down from sky. +1989-08-01,38.2966667,-85.76,Clarksville,IN,light,300,Small brightly defined light, changing colors, zig-zagging across sky for 5 mins, then disappearing. +1989-08-01,38.4016667,-122.3597222,Yountville,CA,disk,600,Dark metallic disc no lights or noises it moved slowly, smoothly and then sped away very quickly. +1989-08-01,32.7152778,-117.1563889,San Diego,CA,formation,60,The silent object had three orange ball-shaped lights that seperated from eachother as it flew over the mountain. +1989-08-01,36.1572222,-81.9783333,Elk Park,NC,triangle,900,Huge triangle craft hovering silently 40 ft. above highway 19-E. 6 witnesses, craft seemed to be aware of our presence. +1990-08-01,44.1858333,-88.4625,Neenah,WI,light,600,Bright light hovering toward us suddenly took off fast changing shape and color +1990-08-01,41.1108333,-112.0252778,Clearfield,UT,disk,60,while friend and I was going to sizzler to lunch something, near Hill AirForce Base caught my attention, something was going straight u +1991-08-01,44.2694444,-83.5147222,Tawas City,MI,oval,60,Close encounter on Monument Rd., Tawas City. Near Corsair. Craft nearly filled the sky between the pines. Very large, very close. +1991-08-01,33.2469444,-95.8997222,Commerce,TX,circle,120,spoked wheel flies in front of the moon +1991-08-01,41.3958333,-72.8972222,Hamden,CT,triangle,900,Object appearede as a bright light on horizon line then it moved toward us, we knew then it was not a plane. +1991-08-01,40.9644444,-76.8847222,Lewisburg,PA,light,120,Bright light chased by helicopter +1991-08-01,22.0783333,-159.3219444,Kapaa,HI,unknown,300,I was awakened by mercury vapor (orangish) light that illuminated about 2 acres of rural Kauai where there are no street lights. I atte +1991-08-01,28.2916667,-81.4077778,Kissimmee,FL,other,30,saw two squares moving together over Kissimmee, saw a red light moving incredibly fast over Orlando +1991-08-01,33.4955556,-88.4272222,Columbus,MS,triangle,900,Two people view triangular hovering object. +1991-08-01,41.6638889,-83.5552778,Toledo,OH,other,300,track pattern of lights +1992-08-01,45.7761111,-111.1761111,Belgrade,MT,triangle,120,Unidentified flying bright orange triangle 20 miles north of Belgrade, Montana in late summer of 1992 +1992-08-01,43.0116667,-88.2313889,Waukesha,WI,other,120,Strange interaction with men in black +1992-08-01,37.5913889,-80.5438889,Union,WV,fireball,15,A slow and steadily moving brilliant ball of light with no tail beam +1992-08-01,47.6105556,-122.1994444,Bellevue,WA,circle,30,Close encounter, +1993-08-01,41.6022222,-72.9872222,Wolcott,CT,cigar,300,leaving the hunting club i saw an object w/ aflat bottom and a tappered.ther was no noise or exhaust.it was traveling at 5mph. +1993-08-01,38.7133333,-77.7955556,Warrenton,VA,circle,300,It was a silver round disk with a dome centered ontop alot like the ones in the 1950s space movies +1993-08-01,45.4563889,-123.8427778,Tillamook(Lees Camp),OR,light,900,we saw 3 lights ahead of us,aprx. 2000 ft up ,hovering above the mountain(north)we watched for aprx. 5 min.i look to my left(west) i sa +1994-08-01,47.2233333,-117.0711111,Tekoa,WA,triangle,5,((HOAX??)) With out a shaddow of dought. +1994-08-01,32.7152778,-117.1563889,San Diego,CA,flash,30,Flashing Orange Lights accelerate with each jump and were parallel to each other +1994-08-01,42.5083333,-89.0316667,Beloit,WI,triangle,45,Triangular shape obscures starlight as it moves across the night sky +1994-08-01,39.0508333,-74.7583333,Stone Harbor,NJ,light,60,Glowing green light came up right side of moving car, stayed even then made sharp right turn 90 degrees, took off. +1995-08-01,39.8863889,-83.4483333,London,OH,teardrop,1800,Interaction with 1 of 3 objects in the direction of Wright Patterson AFB. +1995-08-01,34.1866667,-118.4480556,Van Nuys,CA,changing,300,I saw this craft, it sounded like an airplane flying overhead at first, and it was shaped like a stick-figure bird (silver). I lived o +1995-08-01,36.175,-115.1363889,Las Vegas,NV,flash,300,three bright light's, no sound, about a foot ball field away +1995-08-01,30.4391667,-97.6197222,Pflugerville,TX,sphere,600,orange globe dims and out runs F 4 +1995-08-01,27.5908333,-80.3444444,South Beach,FL,triangle,180,Three round lights attached in a triangle shape. Making raped 90 degree movements +1996-08-01,45.4872222,-122.8025,Beaverton,OR,disk,90,Craft above power Lines +1996-08-01,37.3394444,-121.8938889,San Jose,CA,fireball,30,A large boiling fireball 3/4 the size of the full moon. flew by so fast that i was the only oneto see it 2 others present I thought tha +1996-08-01,38.2544444,-104.6086111,Pueblo,CO,triangle,180,Black Triangle in sky about 35 mi south of NORAD +1996-08-01,38.7013889,-90.1486111,Granite City,IL,sphere,1200,We saw somthing in the sky that resembled sky writer plane @ first, but then turned into a pulsating ball. +1996-08-01,33.9938889,-96.3705556,Durant,OK,triangle,180,Large low flying triangle in oklahoma +1996-08-01,44.7433333,-92.8522222,Hastings,MN,flash,3,Super bright white blinding light. +1996-08-01,42.8741667,-77.2883333,Canandaigua,NY,triangle,900,large triangular object, black with small red and white lights. Hovered for 10 minutes at 500ft elevation +1996-08-01,44.5433333,-68.42,Ellsworth,ME,chevron,10,Silent craft crosses highway, then follows us unknowingly. +1996-08-01,41.5580556,-73.0519444,Waterbury,CT,rectangle,600,HUGE rectangular object over downtown Waterbury in 1996/1997 +1996-08-01,37.3636111,-118.3941667,Bishop (Ca/Nv Border),CA,triangle,40,It was the same night that a triangle was seen over Pheonix Az. Summer 1996 I beleive. I heard about it after I saw this thing. I was l +1996-08-01,45.3002778,-122.9719444,Newberg,OR,other,1800,There was a star that moved in all directions. It would move fast and slow. It would come to sudden stops and sit for a while and the +1996-08-01,39.3227778,-76.7283333,Woodlawn,MD,disk,600,A news story on 10 o'clock Fox News Baltimore broadcast stated that there had been a current UFO sighting on west side of town +1996-08-01,37.3477778,-120.6080556,Atwater,CA,light,2,I did not see a craft, what I saw was daylight at midnight, on a cloudless night. +1997-08-01,39.7391667,-104.9841667,Denver,CO,circle,60,Picture reveals UFO in the background +1997-08-01,28.0777778,-82.7638889,Palm Harbor,FL,disk,180,Two saucer shaped silver metal crafts with opposite spinning white and red lights on top of each other +1997-08-01,37.1752778,-113.2891667,Hurricane,UT,light,2,A brilliantly green streaking fireball. +1997-08-01,35.0455556,-85.3097222,Chattanooga,TN,light,1200,bright lights munerving high in the sky back and forth quickly and moving very high in the sky and disapering very quickly! +1998-08-01,42.0986111,-75.9183333,Binghamton,NY,sphere,300,A red sphere glowing object that moved extremely fast from place to place, hovered over the house, and then disappeared in a second. +1998-08-01,40.4405556,-79.9961111,Pittsburgh (On I-79),PA,triangle,120,I was somewhere north of Pittsburgh, on I-79. When I looked up and saw a triangular shaped craft FLOATING above and to the right of me +1998-08-01,41.85,-87.65,Chicago,IL,light,120,Alien healing. 500 Lights On Object0: Yes +1998-08-01,42.6072222,-83.9294444,Howell,MI,unknown,300,I was working on the roof of the house and looking up when I saw something at what looked like an average passenger jet altitude moving +1998-08-01,39.41,-74.365,Brigantine,NJ,light,300,3 orange lights over NJ bay area, with REALLY loud humming noise heard. +1998-08-01,38.6272222,-90.1977778,St. Louis,MO,light,120,Object appeared below the moon. Travelled from Southeast to Northwest. Changed color and direction erratically. +1998-08-01,36.2702778,-121.8063889,Big Sur (Monterey Co.),CA,cigar,1,Dark cigar shaped no lights streek though sky, airplane following. +1998-08-01,40.8,-96.6666667,Lincoln,NE,light,180,We saw streaks like tracers shoot out from a light in the sky. +1998-08-01,45.8713889,-89.7108333,Minocqua,WI,sphere,480,An orange object moved across the sky. +1998-08-01,42.0775,-78.43,Olean,NY,light,1200,Round, bright , orange lights, moving in patterns around each other moving very slowly and it appeared there were smaller light formati +1998-08-01,35.0844444,-106.6505556,Albuquerque,NM,triangle,600,Triangular UFO over South Valley High School +1998-08-01,44.3683333,-100.3505556,Pierre,SD,unknown,10,Red and green lights moving with no sound over Pierre, in central South Dakota, seen in 1998 now finally reported. +1998-08-02,42.0583333,-70.1791667,Provincetown (Cape Cod),MA,light,3,Looking west I saw a "green shooting star", that, while falling, produced four jet engines, changed color to orange and shot straight u +1999-08-01,36.9975,-79.8922222,Rocky Mount (4mi S.e. Of),VA,disk,120,a giant craft well over 100' in diameter slightly tilted down toward its direction of travel aproximately 1 mile or so directly east of +1999-08-01,38.4177778,-82.5863889,South Point,OH,egg,300,bright egg shaped craft +1999-08-01,37.3394444,-121.8938889,San Jose,CA,disk,300,shiny metallic saucer shaped. +1999-08-01,32.2216667,-110.9258333,Tucson,AZ,sphere,900,Saw a large silver object while pumping gas. Purchased a camara at the am/pm store and took a roll of film. While filming, saw severa +1999-08-01,43.2402778,-75.8841667,Cleveland,NY,cigar,30,It looked like a very bright shiney metel, silver color like aluminum foil color. It had a grey colored stripe in the very center and i +1999-08-01,47.6063889,-122.3308333,Seattle,WA,cigar,420,We witnessed a large peach-colored cigar-shaped object move at a high rate of speed in a southerly direction. +1999-08-01,47.6063889,-122.3308333,Seattle,WA,cigar,360,looking south-south east, object was moving from left to right and away from us. Peach or amber glow was like setting sun on moon. Sp +1999-08-01,47.6063889,-122.3308333,Seattle,WA,cigar,7,A cigar shaped obect suddenly appeared out of nowhere, a light pulsed along it's length from right to left, the object faded and then d +1999-08-01,33.0888889,-96.8861111,The Colony,TX,sphere,3600,I witnessed 15-20 silver spheres dancing around a large white craft in the skies overhead! +1999-08-01,34.1063889,-117.3694444,Rialto,CA,light,180,slow moving object burning and dropping pieces of burning material +1999-08-01,40.7755556,-77.7927778,Boalsburg,PA,light,3,Blinking light observed flying west to east at extreme speed. +1999-08-01,40.5866667,-122.3905556,Redding,CA,light,120,Bright light that looked like a low flying star with no blinking lights and no sound. Traveling from west to east +1999-08-01,47.6063889,-122.3308333,Seattle,WA,disk,3,Brilliant, moon sized, white disc descending rapidly over Seattle that disappeared behind Capitol Hill. +1999-08-01,36.6002778,-121.8936111,Monterey,CA,oval,420,Luminous oval-shaped light seen over Monterey. +1999-08-01,43.3838889,-70.5452778,West Kennebunk,ME,sphere,180,witnessed a small unidentifiable object up close ( 25 yards) +1999-08-01,48.8466667,-122.5897222,Ferndale (Near, Countryside),WA,other,8,A faint star-like object traveling North very rapidly in an erratic pattern. +1999-08-01,44.0522222,-123.0855556,Eugene,OR,other,3,Opaque white luminous boomerang-shaped craft. Clearly outlined, but fading very quickly. +2000-08-01,42.2416667,-70.8902778,Hingham,MA,triangle,120,A triangular shaped UFO hovering at a slow pace at a low altitude. +2000-08-01,47.6063889,-122.3308333,Seattle,WA,light,30,high altitude dogfighting lights +2000-08-01,47.6105556,-122.1994444,Bellevue,WA,triangle,180,Strange Triangular Lights Flying Over the Seattle Area +2000-08-01,42.2911111,-71.125,Roslindale,MA,changing,30,TRIANGULAR ƻ SPHERES,CHANGED INTO A CYLINDRICAL SHAPE +2000-08-01,34.3925,-100.8972222,Turkey,TX,circle,86400,a bunch of small silver ones and one big black triangle +2000-08-01,34.0522222,-118.2427778,Los Angeles,CA,triangle,30,Three motionless black triangles above West LA. +2000-08-01,41.6972222,-86.245,Argos,IN,light,120,UFO seen over Argos, IN +2000-08-01,37.2152778,-93.2980556,Springfield,MO,oval,10,MISSOURI INVESTIGATORS GROUP Report: Oval craft with two sets of dual blinking white lights over Springfield, MO. +2000-08-01,42.1291667,-80.0852778,Erie,PA,rectangle,300,Slow moving rectangular craft with 2 white lights and 2 blue lights, one blue light turned on at a time. +2000-08-01,32.6063889,-116.4680556,Campo,CA,changing,900,Green point of light in the night sky expanded into a large triangle. +2001-08-01,43.9005556,-85.2580556,Evart,MI,fireball,9,Green fireball travelling south to north in mid Michigan. +2001-08-01,39.0436111,-77.4877778,Ashburn,VA,other,900,A single soundless, "floating", lightless, dark matte finish craft (extremely large square footage across) +2001-08-01,38.2213889,-82.4425,Wayne,WV,other,5,Some kind of object was floating over one of my cows. +2001-08-01,39.6416667,-77.7202778,Hagerstown,MD,cigar,120,CIGAR SHAPED, MOVING SLOWLY ABOVE TREE LINE , BRIGHT OBJECT EMITTED FROM END, SHOT INTO SKY. +2001-08-01,41.5980556,-75.715,Fleetville,PA,light,900,Light, circled around something, spun like the bar on a radar. +2001-08-01,46.1311111,-92.8672222,Sandstone,MN,cigar,120,I saw a light in the sky that disappeared in front of my eye. +2001-08-01,42.0986111,-75.9183333,Binghamton,NY,egg,2700,a black with gold streaks with a haze around it (ufo) went into a cloud and never came out the other end. +2001-08-01,41.8088889,-88.0111111,Downers Grove,IL,cylinder,300,The vehicle or object was a strange glowing gold/orange color and didn't resemble any jet aircraft I've seen in the past. +2001-08-01,30.2669444,-97.7427778,Austin,TX,cone,300,Conical shaped oject with purple lights on the underside seen near a Home Depot store. +2001-08-01,35.2619444,-81.1875,Gastonia,NC,light,3,bright light - traveling upwards, then left 90 degrees, then downward 90 degrees then disappear. +2001-08-01,32.5436111,-86.2119444,Wetumpka,AL,light,10,A very bright emerald green light sped from east to west, stopped and went straight up. +2001-08-01,41.6005556,-93.6088889,Des Moines,IA,circle,600,white light changing directions in the sky. +2001-08-01,42.2711111,-89.0938889,Rockford,IL,light,600,Possible explanation for sighting in Rockford, IL. +2001-08-01,41.8244444,-72.8941667,Canton,CT,formation,30,Three bright blinking white lights were seen flying in formation, circling near the horizon. +2001-08-01,44.3669444,-97.8505556,Iroquois,SD,oval,180,Bright oval light moving west to east near the North Star +2002-08-01,39.9611111,-82.9988889,Columbus,OH,circle,4,Shooting ball of brilliant white light +2002-08-01,37.9886111,-84.4777778,Lexington,KY,flash,60,A light collides with something causing an explosion the light remains then disappears. +2002-08-01,41.6833333,-86.25,South Bend,IN,oval,600,A red oval-like object flew at constant speed and traveled from South to North. +2002-08-01,37.6819444,-121.7669444,Livermore,CA,disk,600,simple silver disk, moved at amazing speeds +2002-08-01,36.1658333,-86.7844444,Nashville,TN,circle,2,Obsorbing black bubbular object off airliner bow at takeoff in Nashville Tn. +2002-08-01,32.7833333,-96.8,Dallas,TX,teardrop,45,Orange and pink glowing object following a South West Airlines jet in Dallas, Tx. +2002-08-01,33.0202778,-117.2019444,Rancho Santa Fe,CA,triangle,240,2 triangles at 500 feet +2002-08-01,40.7608333,-111.8902778,Salt Lake City,UT,cigar,300,Lights over Salt Lake City. +2002-08-01,41.4047222,-81.7230556,Parma,OH,sphere,300,it was like a bright dull yellowish or whiteish sphere shaped object moving East slowly almost hovering there was no sound but it did h +2003-08-01,42.5194444,-70.8972222,Salem,MA,light,5,Three Orange Lights In Salem Moving Fast With Random Course Change. +2003-08-01,29.4419444,-90.2991667,Galliano,LA,circle,1800,Object seen where nothing should have been at all. +2003-08-01,33.78,-118.2616667,Wilmington,CA,diamond,45,Bright golden light in the eastern night sky over Wilmington, CA +2003-08-01,32.7763889,-79.9311111,Charleston (North Charleston),SC,unknown,3,LOUD ROLLING BOOM!!! +2003-08-01,37.5530556,-83.3836111,Jackson,KY,sphere,600,White sphere of lights over a field in south eastern KY. +2003-08-01,27.9472222,-82.4586111,Tampa (South Of),FL,unknown,120,Weird Lights In Tampa +2003-08-01,47.1955556,-120.9380556,Cle Elum,WA,circle,10,I was sitting on a chair in my back yard enjoying the night sky. It was very clear and I cannot be exact about the date as far as mont +2003-08-01,48.0841667,-121.9675,Granite Falls,WA,circle,5400,Strange lights near Mt. Pugh. +2003-08-01,41.6833333,-86.25,South Bend,IN,other,10,It looked like a mushroom only thinner and it and it had thease markings on them < > < >.I didnt know what to do so I got on MUFON.com +2003-08-02,39.5297222,-119.8127778,Reno,NV,other,120,ME AND MY BUDDY GOT OFF WORK AT 11:00 PM WE DROVE DOWN RED ROCK ROAD BEHIND THE AIRPORT WE CAME TO A CANYON AREA WHERE WE NOTICED A LI +2004-08-01,40.7719444,-73.9305556,Astoria,NY,other,14400,2 objects in the Sky- Sunday, August 1st, 2004 +2004-08-01,37.5536111,-77.4605556,Richmond,VA,light,60,Moving Stars? ((NUFORC Note: Possible satellites, we suspect. PD)) +2004-08-01,37.775,-122.4183333,San Francisco,CA,fireball,60,Large bright green fireball moves slowly in the sky. +2004-08-01,34.2083333,-77.7966667,Wrightsville Beach,NC,formation,5400,3-4 objects moving around eachother about 45 degrees over Wrightsville beach (Venus??) +2004-08-01,47.6063889,-122.3308333,Seattle,WA,unknown,5,At between approximately 4:00am and 4:30am I was looking at the stars and saw what appeared to be a very high flying aircraft, flying s +2004-08-01,33.9525,-84.55,Marietta,GA,light,25,Slow moving bright light that faded out seen before dawn. +2004-08-01,47.3811111,-122.2336111,Kent,WA,fireball,60,I was traveling north on the Valley Freeway (SR167) Kent, Wa. this past sunday night Aug.01ᄴ @ 2100 hrs. (9-PM), and a very small obj +2004-08-01,43.3772222,-73.6136111,Queensbury,NY,light,1500,i saw a bright light that dissapeared then another light wich dissapeared. +2005-08-01,45.3325,-93.7458333,Big Lake,MN,sphere,60,Burnt orange ill-defined vertical diamond shape moved at 150 mph W to E at 1:30 a.m. at 300 ft. +2005-08-01,39.6005556,-82.9461111,Circleville,OH,triangle,30,Triangular Lights, Ohio, 2005. +2005-08-01,41.0041667,-92.3736111,Ottumwa,IA,light,900,Star or planet - when seen in binoculars, five lights in a circle, one in the middle - flashing a rainbow of colours - moved miles East +2005-08-01,48.7597222,-122.4869444,Bellingham,WA,other,1200,Column of light -with Amber & Yellow beams within it(like a information or energy gathering satilite device) +2005-08-01,27.7705556,-82.6794444,St. Petersburg,FL,light,30,We saw something in the sky. +2005-08-01,39.7277778,-76.4522222,Fawn Grove,PA,triangle,15,I was sitting on my back porch early evening about 7pm, the view faces south east for a few miles. I noticed a dark object in the sky a +2005-08-01,39.1730556,-77.2719444,Germantown,MD,light,20,2 bright moving stars dogfighting! +2005-08-01,41.8505556,-87.7936111,Berwyn,IL,light,300,A bright light, like that of a candle over the city of Berwyn, IL. +2005-08-01,40.7672222,-74.2052778,East Orange,NJ,unknown,240,Heard a HUGE object larger than the football field across the street flying over clouds covering a wide area +2005-08-01,38.4405556,-122.7133333,Santa Rosa,CA,light,60,Saw a very bright light on an unusual course moving at relatively low altitude without making a sound. +2005-08-01,44.765,-69.7197222,Skowhegan,ME,unknown,420,did zigzag,flew stright then went higher than 50ᄰ'heading for quebec,was white. couldnt makeout shape from2 telescopes +2006-08-01,43.4666667,-112.0333333,Idaho Falls,ID,cigar,120,CIGAR UFO RIGHT ABOVE US!! +2006-08-01,33.4483333,-112.0733333,Phoenix,AZ,triangle,60,Triangle object seen flying thru the night sky, Weird. +2006-08-01,48.6011111,-93.4108333,International Falls,MN,light,180,Lights (on craft) moving in extremely rapid zig-zags through the night sky. +2006-08-01,41.1366667,-95.8905556,Bellevue,NE,changing,120,Shape-Changing Aircraft +2006-08-01,39.8641667,-75.3788889,Parkside,PA,unknown,1200,Silver object against a very blue sky at very high altitude +2006-08-01,40.7441667,-73.4825,Bethpage ( Long Island),NY,sphere,180,2 crafts seen over bethpage new york +2006-08-01,33.6125,-117.7119444,Laguna Hills,CA,unknown,300,Five objects moving together in close formation, hovering, and then moving off in seperate directions. +2006-08-01,39.5538889,-83.2569444,New Holland,OH,other,30,kinda scared me. +2006-08-01,38.8902778,-77.0844444,Arlington,VA,triangle,120,I was sitting on the bleachers of a baseball field next to the arlington county public library. I looked up and saw a ship about maybe +2006-08-01,32.7833333,-96.8,Dallas,TX,fireball,2,Flash of light and streak of light in the southern downtown Dallas skyline. +2006-08-01,44.9430556,-123.0338889,Salem,OR,light,3,Two separate rapidly brightening and dimming objects +2006-08-01,38.1302778,-121.2713889,Lodi,CA,triangle,120,slow, noiseless craft, with 6 lights +2006-08-01,44.5261111,-93.0197222,Randolph (Near; 19 &Amp; 56),MN,circle,15,circular, lime-green object with a tracer lime-green tail +2006-08-01,30.2669444,-97.7427778,Austin,TX,unknown,4,blue streak illuminates austin sky. +2006-08-01,32.7252778,-97.3205556,Fort Worth,TX,light,3,Bright flash of light in southern sky seen from far north Fort Worth. +2007-08-01,42.4733333,-83.2219444,Southfield,MI,teardrop,300,stepped out on porch to see odd object in sky that was too big for a kite and did not move like a helicopter. it was moving slowly and +2007-08-01,38.9330556,-104.6080556,Falcon,CO,chevron,8,Huge crescent shaped object, emerged from a distorted area of the sky. +2007-08-01,41.6269444,-88.2038889,Plainfield,IL,unknown,15,the object stopped in mid air and changed directions 4 times, then flew away north +2007-08-01,43.2533333,-83.3719444,Fostoria,MI,light,5,orange lights 2nd consecutive night. +2007-08-01,46.67,-120.7111111,Cowiche,WA,disk,1200,I was coming home late night with the wife from work. We live in the town called Cowiche its north of Yakima out in the country. It was +2008-08-01,33.5602778,-81.7197222,Aiken,SC,sphere,10,Black circle in sky over a lake +2008-08-01,41.3405556,-87.6213889,Beecher,IL,flash,1,Flash of light, saucer, into another flash of light +2008-08-01,34.02,-117.9486111,La Puente,CA,oval,4,OVAL OBJECT WITH ELECTRIC BLUE LIGHTS FLY'S OVER LA PUENTE +2008-08-01,31.7619444,-95.6305556,Palestine,TX,teardrop,180,Teardrop orbs near in the Pineywoods of State Highway 294 in East Texas. +2008-08-01,40.8988889,-74.7069444,Netcong,NJ,sphere,120,Redish/orange Disco Ball looking thing 3 feet from my head +2008-08-01,48.4780556,-120.185,Winthrop,WA,oval,30,Between 2:25 p.m. and 2:35 p.m. on August 1st, 2008, I witnessed what I believe was an F14 jet pursue a circular/oval shaped wingless o +2008-08-01,37.775,-122.4183333,San Francisco,CA,circle,300,Two white lights moving together over San Francisco +2008-08-01,33.8702778,-117.9244444,Fullerton,CA,flash,5,BLUE FLASH +2008-08-01,40.9227778,-81.0191667,Sebring,OH,light,180,High Alt. red light moving very fast and then reversing direction without hesitation with no change in speed. +2008-08-01,41.926944399999996,-73.9977778,Kingston,NY,circle,300,UFO sighted above center of the Kingston Rhinecliff bridge NY Friday August 1 2008 9:20 pm +2008-08-01,43.6852778,-71.1172222,Ossipee,NH,light,5,i saw a big light just fade off into the sky. +2008-08-01,42.0111111,-87.8405556,Park Ridge,IL,oval,60,((HOAX??)) 2 Huge White Orbs...moving slowly...at different directions...Chicago, IL +2008-08-01,41.6005556,-93.6088889,Des Moines,IA,sphere,30,My brother and my mom were with me as we saw a ball of light moving Northwest through the sky. It only lasted about 40 seconds. +2008-08-01,33.9686111,-112.7288889,Wickenburg,AZ,sphere,3,((HOAX??)) Fluorescent blue sphere going 3 seconds per mile, scratched the mountain sparks occurred and disappeared. +2008-08-01,39.7588889,-104.4269444,Bennett,CO,other,60,I was outside my house watching the star. It had been the first night for a while I could see them so clear. I was looking north over t +2008-08-01,39.2038889,-94.5544444,Gladstone,MO,light,3,Ok,I actually have had 2 really strange occurrences within the last few nights.My neighbors and I have always watched the skies,hoping +2008-08-01,40.4975,-74.4888889,Somerset,NJ,disk,3600,Tonight I saw many little aircrafts with two bright lights each, blinking in the dark sky, w/ one saucer leading the way. +2008-08-01,34.1808333,-118.3080556,Burbank,CA,light,300,Yellow/Orange Lights Over Burbank +2008-08-01,45.7833333,-108.5,Billings,MT,cross,900,A cross-shaped craft seen over Billings, MT. +2009-08-01,40.7141667,-74.0063889,New York City,NY,oval,60,Glowing red/orange light near NYC +2009-08-01,38.9236111,-75.5780556,Harrington,DE,rectangle,600,It sat still for ten miutnes then out of nowhere made a sharp right turn and took off faster then anything ive ever seen +2009-08-01,37.7691667,-90.6247222,Bismarck,MO,circle,2700,Moon shaped object in western sky glowing orange +2009-08-01,45.6422222,-85.0375,Cross Village,MI,circle,120,The light moved across the field toward the house tipping back and forth. It was a circular shape and very graceful and at the time I +2009-08-01,38.63,-112.12,Monroe,UT,light,1200,Multiple orb ufo's witnessed by four individuals. +2009-08-01,30.275,-89.7811111,Slidell,LA,unknown,150,Object with 2 red lights & 4 smaller strobing white lights heading west on I-12 +2009-08-01,41.85,-87.65,Chicago,IL,unknown,2,UFO seen in Chicago. +2009-08-01,47.2530556,-122.4430556,Tacoma,WA,teardrop,240,Fast object like meteor across right side of me two times, one time to my left slowly. +2009-08-01,37.3541667,-121.9541667,Santa Clara,CA,circle,1200,Santa Clara cal two small object flashing over valley my be mapping us. +2009-08-01,41.7,-71.4166667,Warwick,RI,sphere,15,oakland beach , green glowing illuminated object moving very fast east to west +2009-08-01,33.7358333,-118.2913889,San Pedro,CA,sphere,10,9-01-09, San Pedro Calif. Sphere, white in color duration 10 seconds, moving at a medium speed +2009-08-01,38.8975,-76.8305556,Largo,MD,light,10,Bluish purplish hovering light +2009-08-01,42.6555556,-70.6208333,Rockport,MA,circle,3600,I saw an odd shaped flying object followed by a thunder-like sound. +2009-08-01,27.6383333,-80.3975,Vero Beach,FL,light,300,single bright amber colored light hovering over the ocean for a duration of time before disappearing +2009-08-01,40.4233333,-78.4341667,Duncansville,PA,fireball,180,two orange orbs in sky +2009-08-01,41.0813889,-81.5191667,Akron,OH,fireball,360,Flame in the sky. +2009-08-01,38.7741667,-76.0766667,Easton,MD,sphere,1800,Three baketball sized orbs floating 2-3 feet above the ground hovering stationary and silent and glowing red +2009-08-01,47.6741667,-122.1202778,Redmond,WA,fireball,180,11 p.m on August 1st i look outside and side 4 lights that landed and then took off +2009-08-01,39.4436111,-77.545,Middletown,MD,light,600,Nine orange lights in linear pattern in sky, changed direction, hovered and disappeared. +2010-08-01,43.5947222,-96.5716667,Brandon,SD,fireball,420,About 7-9 orange objects appeared in the sky to the East, moving Northeast; each faded out after about seven minutes. +2010-08-01,41.9941667,-88.2922222,South Elgin,IL,light,600,Object taking flight near Ohare Airport!!! +2010-08-01,33.7669444,-118.1883333,Long Beach,CA,light,1,Saw bright green flash & streak, no accompanying sound, suspected copper/thallium-containing iron meteorite. +2010-08-01,33.9791667,-118.0319444,Whittier,CA,disk,300,UFO Over Southern California +2010-08-01,41.9941667,-88.2922222,South Elgin,IL,sphere,120,two orange craft approx. 1/2 mile apart moving west +2010-08-01,41.7013889,-87.7791667,Chicago Ridge,IL,disk,120,The disc was encircled by lights and hovered only one hundred feet above the ground. +2010-08-01,41.7588889,-70.4944444,Sandwich,MA,circle,300,Twelve UFOs-after two minutes a space craft came and flew to the objects, but one UFO appeared below it and hovered it. +2010-08-01,37.7527778,-100.0166667,Dodge City,KS,circle,600,Maybe it was a weather balloon +2010-08-01,34.2855556,-118.8811111,Moorpark,CA,sphere,60,Orange glowing sphere traversing the sky and changing course abruptly +2010-08-01,41.1788889,-90.3158333,Woodhull,IL,light,300,my wife & I saw a light the size of a star moving @ a high rate of speed from W to E. ((NUFORC Note: +2010-08-01,38.1991667,-92.8333333,Laurie (5 Mi. W Of; 52 Mile Marker On Osage),MO,sphere,180,3 orange spheres in linear formation over Lake of the Ozarks +2011-08-01,34.0172222,-96.1425,Bokchito,OK,light,240,Bright orange/blue light moving really fast then disapearing. +2011-08-01,47.9786111,-122.3544444,Clinton,WA,unknown,60,Object with three lights hovering just above trees. +2011-08-01,42.7069444,-71.1636111,Lawrence,MA,other,300,Large glowing spere like object appears vanishes and appears as a strange bar shaped object with two lights then vanishes. +2011-08-01,36.5858333,-79.3952778,Danville,VA,unknown,7200,Obvious non-human air craft +2011-08-01,47.0980556,-122.2030556,Orting,WA,light,7200,Bright light in western sky +2011-08-01,33.7488889,-84.3880556,Atlanta,GA,light,5,Green light crashes to earth near atlanta +2011-08-01,47.6541667,-118.1488889,Davenport,WA,cross,300,Multiple glowing orange cross-shaped craft seen by 3 people in Davenport, WA +2011-08-01,37.775,-122.4183333,San Francisco,CA,light,2,UFO light zooms across san francisco night sky in august 2011. +2011-08-01,44.0605556,-70.3941667,Poland,ME,circle,300,Bright white ball in the sky that stopped and changed direction 90 degrees, airplanes cant do that. +2011-08-01,42.9105556,-87.8605556,South Milwaukee,WI,light,7,Aircraft swoops down right behind a meteorite , then flys up away at an amazingly fast speed. flying in a up and down motion. +2011-08-01,29.8955556,-89.8977778,Violet,LA,triangle,7200,2 triangle crafts, bright blue beams +2011-08-01,36.9786111,-76.4283333,Newport News,VA,light,20,Bright light high in sky that went out to a very dim red light traveling north to southwest just west of the dipper. +2011-08-01,39.8027778,-105.0869444,Arvada,CO,circle,30,10:30 lighted circle over arvada colorado , middle became bright and objectfaded away +2011-08-01,36.5091667,-86.885,Springfield,TN,diamond,5,Very Bright Green Diamond Shape with a Light Green Trail +2011-08-01,32.1630556,-91.7205556,Winnsboro,LA,unknown,7200,We couldnt make out the shape but we saw red and blue flashing lights hovering for over 2 hrs.. ((NUFORC Note: Twinkling star? PD)) +2012-08-01,27.6383333,-80.3975,Vero Beach,FL,triangle,420,Triangle shaped object in sky. +2012-08-01,42.5630556,-114.46,Twin Falls,ID,circle,60,Two red glowing circle lights in a fog +2012-08-01,39.5319444,-78.4586111,Paw Paw,WV,oval,2,I heard some yelling outside, so i looked out my window and saw a bright white flash that zoomed off into the sky and dissapeared. +2012-08-01,40.7794444,-74.0241667,Union City,NJ,flash,30,Red Light flickering 3 flickers or so per second, small craft from afar by New York city, New Jersey area. +2012-08-01,35.7211111,-77.9158333,Wilson,NC,circle,1200,Plane chasing a bright star like craft, very fast. I have it on video. +2012-08-01,38.5816667,-121.4933333,Sacramento,CA,light,240,Blue and white light moving and flashing lights downward +2012-08-01,37.3341667,-79.5233333,Bedford,VA,sphere,900,Dark orange round object/light in the sky, like the glowing and color of flame on coal when it is about to burn out +2012-08-01,41.6861111,-70.0763889,Harwich,MA,light,180,Three orange lights moving across the sky over Harwich, MA +2012-08-01,39.9611111,-82.9988889,Columbus,OH,sphere,10,Orange object with tail moving across night sky from north to south +2012-08-01,37.3058333,-89.5180556,Cape Girardeau,MO,oval,7200,Green orb over Cape Girardeau, MO Aug 1, 2012 +2012-08-01,42.1291667,-80.0852778,Erie,PA,light,6,Erie moving lights in the sky over Lake Erie +2012-08-01,36.2841667,-82.1727778,Hampton,TN,sphere,120,Glowing orange ball flying above commercial jet at great alltitude,that doubled in size then moved so fast it seemed to vanish. +2012-08-01,39.0997222,-94.5783333,Kansas City,MO,cigar,720,3 oddly lit planes that might explain some of the UFO sightings. +2013-08-01,43.4172222,-73.2047222,Wells,VT,circle,2700,Circular object with rotating changing colored lights hovering in the night sky. +2013-08-01,41.5791667,-73.4961111,Sherman,CT,unknown,30,Unknown craft taunts airplane in night sky +2013-08-01,36.1538889,-95.9925,Tulsa,OK,formation,300,Bright fast light making full circle in mid town in under 5 min +2013-08-01,32.8577778,-97.2544444,Watauga,TX,light,1,Two orange light seemed to race across the sky +2013-08-01,33.3486111,-87.0141667,Mccalla,AL,other,600,Huge dome like circles going around car with family in it! So freaked out! +2013-08-01,36.5858333,-79.3952778,Danville,VA,other,600,Located two vertical line shaped UFOs outside of Danville. +2013-08-01,33.7797222,-116.4644444,Cathedral City,CA,unknown,600,Bright multi-colored flashing UFO seen above the mountains of Palm Springs, California in August, 2013. +2013-08-01,37.775,-122.4183333,San Francisco,CA,sphere,3,Silent, bright blue, reflective orb headed straight to Ocean Beach in SF, CA +2013-08-01,33.3702778,-112.5830556,Buckeye,AZ,light,1350,It's just a quiet night tonight. Only 3 total. One over Goodyear area due south of my work on the loop 303 at northern/peoria. 2 in the +2013-08-01,38.5394444,-75.0555556,Bethany Beach,DE,circle,300,Bethany beach de, boardwalk, 3 red-orange, flickering balls located over ocean, NE direction +2013-08-01,38.2366667,-76.4975,Great Mills,MD,sphere,180,Bright orb shape, travels slightly then vanishes. +2013-08-01,34.4263889,-117.3,Hesperia,CA,triangle,7,3 red/orangy dot craft spotted over the city of Hesperia california +2013-08-01,47.6777778,-116.7794444,Coeur D'alene,ID,sphere,120,White star-like sphere headed NE at rapid speed. +2013-08-01,32.0497222,-92.1091667,Grayson,LA,circle,35,First two were solid black with no lights the last one orangish gold. +2013-08-01,45.8322222,-93.4261111,Ogilvie,MN,light,1200,Over span of 20 minutes, 3 different craft were spotted. one west, one northerly, third one followed the second one. +1947-08-12,44.3294444,-74.1316667,Saranac Lake,NY,disk,360,6-7 Disc shaped objects. ((REPORT FROM: BRIAN VIKE, BRITISH COLUMBIA, CANADA.)) +1963-08-12,39.7797222,-84.1241667,Riverside,OH,disk,120,This craft was moving East to West at the south west corner of Wright,Patterson air force Base,there was no report. +1964-08-12,41.1466667,-88.0577778,Bonfield,IL,diamond,10,It was in the summer my boyfriend and I where parked and we where in the country,and we where looking out over the corn field.I noticed +1965-08-12,36.8527778,-75.9783333,Virginia Beach,VA,disk,4,My father and I saw a domed flying saucer very clear whizz directly in front of us on the oceanfront +1965-08-12,45.2163889,-112.6366667,Dillon,MT,oval,180,Oval object examining power lines +1966-08-12,38.6366667,-90.0255556,Caseyville,IL,light,600,UFO in trouble? +1967-08-12,41.85,-87.65,Chicago,IL,triangle,120,saw a triangular shaped object flying low and slow following power lines on RR tracks at dusk +1968-08-12,35.3658333,-120.8488889,Morro Bay,CA,light,900,Five lighted craft in formation investigating Morro Bay electric generating plant. Six witnesses. +1973-08-12,40.9583333,-75.975,West Hazleton,PA,disk,900,It came across the sky and descended above us and stayed there for about 15 minutes liked it knew we were there. +1974-08-12,41.0241667,-80.6630556,Boardman,OH,disk,3600,This incident happened on/about the second week of August 1974, in Boardman, Ohio, around 8:30 PM, my brothers and I were playing footb +1975-08-12,37.1533333,-98.0308333,Anthony,KS,teardrop,15,It was sitting in a field, a few feet from the road. When we got beside it, the lights came on with a giant sound and lifted up. +1977-08-12,37.725,-122.155,San Leandro,CA,disk,120,A huge, maybe 100' wide, metalllic flying saucer. It hoovered quickly and swift, colorful lights at bottom +1977-08-12,41.7075,-86.895,Michigan City,IN,sphere,120,Three colorful spheres passed close to me and my dog at night on the Lake Michigan shore. +1978-08-12,41.6005556,-93.6088889,Des Moines,IA,triangle,30,Boomerang shape many light made no sound. +1980-08-12,21.3069444,-157.8583333,Honolulu,HI,rectangle,300,Saw large bus like vehicle +1980-08-12,43.1191667,-124.4072222,Bandon,OR,disk,8,Father & son saw big glowing white disk approach thru clouds from S, depart thru clear sky to SW. +1983-08-12,37.0477778,-80.78,Pulaski,VA,triangle,180,Soundless triangular shape stops in midair at night and searchlight shines out into the air +1984-08-12,39.9611111,-82.9988889,Columbus,OH,rectangle,900,Football field sized gunmetal gray rectangular craft with bright lights and "windows" hovering silently 100 ft or so above parking lot +1985-08-12,43.0386111,-78.8644444,North Tonawanda,NY,disk,60,Sighting witnessed during Persaides meteor shower. +1988-08-12,34.7152778,-81.6238889,Union,SC,disk,600,A round circular craft with bright lights followed me home and hovered over my front lawn. +1990-08-12,27.8002778,-97.3961111,Corpus Christi,TX,triangle,120,It was a very clear night, so I went to do as I always do and climbed onto the roof of my carport to look at the stars with binoculars, +1992-08-12,34.5580556,-85.0119444,Sugar Valley,GA,disk,1800,We witnessed a silver disc in a feild that was silent, could hover and fly at very high speed, then it disappeared. +1993-08-12,26.0027778,-80.2241667,Pembroke Pines,FL,sphere,600,spherical egg shaped bright green-stationary then lightning fast...twice! +1993-08-12,30.3319444,-81.6558333,Jacksonville,FL,sphere,2,The translucent blue round sphere moved from horizon to horizon in 1 to 2 seconds with NO sound! +1993-08-12,43.1,-73.5822222,Schuylerville,NY,sphere,2100,I went for a drive into town. Three minutes from my house, above the Fish creek river, I noticed fuzzy white balls of light whirring ar +1993-08-12,42.3788889,-122.2111111,Lake Of The Woods (Near; Closest City Ashland - 30 Mi.),OR,light,2700,3 luminous objects moving extremely fast, instant directional changes, changed colorMy parents and I were observing the Perseid met +1995-08-12,48.1988889,-122.1238889,Arlington,WA,triangle,600,I was out packing groceries in and I noticed a pink colored glow across the street I went in and put groceries down and went out again +1995-08-12,40.29,-76.9341667,Enola,PA,fireball,10,Bright orange and white fireballs +1995-08-12,35.1677778,-114.5722222,Laughlin,NV,light,15,Small red light, sat in levitation for several seconds, when all viewers focused on light, it vanished. +1996-08-12,42.9033333,-78.755,Cheektowaga,NY,disk,900,Very large dark grey object over small community in Western New York frightens non U.F.O believers. +1996-08-12,40.8022222,-124.1625,Eureka,CA,light,600,3 minute picture +1997-08-12,42.9633333,-85.6680556,Grand Rapids,MI,light,4800,Small distant white light floating about the east side of Grand Rapids during the night. Flashing green and red lights, not much movem +1997-08-12,45.0861111,-93.2630556,Fridley,MN,sphere,10,While walking from work to car observed a very bright orange shaped object on the just above the horizon. The object appeared stationa +1997-08-12,37.8316667,-122.1866667,Canyon,CA,light,60,Two adults witness three dim yellow lights flying in rough triangle formation, moving from north to south. The three lights jockey for +1997-08-12,41.1544444,-96.0419444,Papillion,NE,light,5,Me, and two of my friends were outside late tuesday night, when we saw five lights in a pentagon shape. The lights started moving slowl +1998-08-12,41.4994444,-81.6955556,Cleveland (Above Cei Plant. Public Power.),OH,diamond,2040,hovering craft small yellow/white orb decends from middle bottom of craft 20/25 feet slowly rising back up to main craft.craft glows a +1998-08-12,33.1433333,-117.1652778,San Marcos,CA,oval,600,Friend and I were driving down the highway...moderate traffic. I noticed the aircraft first, it was hoovering over the freeway about 30 +1998-08-12,40.9402778,-74.1322222,Fair Lawn,NJ,oval,600,I spotted 2 Unidentified Flying Objects that night. It all started when my siter, my dad, and I went out to watch the meteor shower. My +1998-08-12,47.7625,-122.2041667,Bothell,WA,disk,1800,It looked like the saucer on the USS Enterprise from Star Trek. It had two disks, one on top of the other. Also, it had a flashing wh +1999-08-12,33.7669444,-118.1883333,Long Beach,CA,disk,20,While viewing the meteor shower, I noticed just to the right of Jupiter a small orange dot heading due north over me, passed extreme sp +1999-08-12,40.2633333,-79.7177778,Herminie,PA,formation,60,Three (3) large dimly lit fuzzy lights in an "L" shape formation at very high altitude. Viewed during the Perseid meteor shower. +1999-08-12,39.5538889,-104.9688889,Highlands Ranch,CO,formation,300,During the Perseid meteor shower, my family and I noticed three lights moving in a triangular formation from the south to the north. +1999-08-12,36.1583333,-81.1477778,North Wilkesboro,NC,triangle,90,While watching the Perseid meteor shower,at the time stated,a triangular formation of lights came from the west-southwest direction hea +1999-08-12,35.7325,-78.8505556,Apex (N 35 41 25 W 78 45 01),NC,triangle,115,A very large triangular aray of (3) lights seen in the east and moving rapidly north north-west. +1999-08-12,35.198055600000004,-111.6505556,Flagstaff,AZ,light,480,We were drivin along then bam! orange light sooo close to us the military sez it wuz a missile yeah an orange missle floating. +1999-08-12,39.4152778,-81.455,Marietta,OH,fireball,120,it was unbelevible as the "craft" fell from the night sky +1999-08-12,36.7477778,-119.7713889,Fresno,CA,unknown,3,three lights traveling west to east,in a triangle formation, or one large object, very high and faster than anything I know of +1999-08-12,43.0388889,-87.9063889,Milwaukee,WI,teardrop,600,Large top shaped UFO over Lake Michigan leaves 3 witnesses with possible coverup or were cops really aliens ? +1999-08-12,43.0202778,-123.2919444,Myrtle Creek,OR,circle,60,Object appeared to be very high. Looked just like a star, same light color etc. Object moved from aprox. north east horizon to south ea +1999-08-12,38.6786111,-121.7722222,Woodland (N Of; Off Hwy 113),CA,unknown,4,Driving about 5 to 7 miles North of Woodland CA--South of Knights Landing CA; saw Large flash of light illuminated every thing around f +2000-08-12,32.7947222,-116.9616667,El Cajon,CA,circle,1800,Was outside watering palm tree, my brother and friend had just left, I looked up for a second to the southeast and saw what I thought w +2000-08-12,33.3061111,-111.8405556,Chandler,AZ,disk,1219,5th video of red light in Gilbert area +2000-08-12,33.3061111,-111.8405556,Chandler,AZ,other,1800,Red light that remained still high above us for over 15 minutes and then dissapeared. +2000-08-12,33.3061111,-111.8405556,Chandler,AZ,other,1200,Red Glowing Light seen over Chandler, AZ. +2000-08-12,41.4569444,-72.8236111,Wallingford,CT,triangle,10,REAL SIGHTING V SHAPE UFO +2000-08-12,33.3527778,-111.7883333,Gilbert,AZ,light,300,red light seen in south western sky ive seen this light 4 times in the last 5 weeks between 2100 & 2130 & ive reported it every time wh +2000-08-12,42.2708333,-83.7263889,Ann Arbor,MI,oval,5,A flat gray oval made a 90 degree change in direction in less than 5 seconds. +2000-08-12,37.5455556,-97.2686111,Derby,KS,triangle,1200,a triangle with lights flipping through the sky +2000-08-12,34.0522222,-118.2427778,Los Angeles,CA,light,300,WHILE AT MOUNT WILSON, WAITING FOR THE METEOR SHOW TO BEGAN, WE GAZED INTO THE SKY. WE SAW AN OBJECT THAT APPEARED TO BE A STAR FROM TH +2001-08-12,41.1305556,-85.1288889,Fort Wayne,IN,oval,900,Giant UFO seen up close +2001-08-12,47.6063889,-122.3308333,Seattle,WA,light,3,Creamy yellow, slow moving light moving N to S, high in the sky, slow turnon/turnoff, then vanished. +2001-08-12,40.015,-105.27,Boulder,CO,light,1800,small light grows extemelt bright and then dissapears. +2001-08-12,39.8027778,-105.0869444,Arvada,CO,triangle,120,HUGE Triangle UFO spotted over Denver +2001-08-12,35.1894444,-114.0522222,Kingman,AZ,egg,25,white and blue lights in a storrm +2001-08-12,34.0983333,-118.3258333,West Hollywood,CA,circle,1200,Large Circular white crafts in SE sky N. Hollywood - W.Hollywood flying high, possibly in the sky for hours 4:00 to 7:30. +2001-08-12,44.3125,-94.4602778,New Ulm,MN,light,20,My son and I were standing out on the deck looking to the northeast at about a 10 o'clock position when we saw a very bright light goin +2001-08-12,36.175,-115.1363889,Las Vegas (Close To Az/Ca Border),NV,light,15,Randomly flashing red and green lights at night. No visible body even when illuminated by lightning. Saw from commercial airliner. +2001-08-12,26.9338889,-80.0944444,Jupiter,FL,triangle,180,During the 2001 Perseids meteor shower, my neighbors and I were on the roof of our condo building watching the "shooting stars". We not +2001-08-12,44.595,-89.2077778,Northland,WI,light,120,A slow light that got darker after it moved faster and probably left our atmosphere. +2001-08-12,56.8125,-132.9555556,Petersburg,AK,triangle,480,A silent lighted triangle +2001-08-12,33.4486111,-84.455,Fayetteville,GA,unknown,18,2 bright "flashlights" attached to a craft beams into doors of town houses. +2001-08-12,39.5297222,-119.8127778,Reno,NV,light,60,I'em a warehouse worker. +2002-08-12,37.9780556,-122.03,Concord,CA,other,45,I watched the object the skys had a real quite still sense other have seen this same object but different times +2002-08-12,47.6063889,-122.3308333,Seattle,WA,light,10,A star disappeared after looking at it for several seconds. +2002-08-12,46.8219444,-123.095,Rochester,WA,other,120,Slow moving "light" in triangular formation, traveling east to northeasterly direction, holding same pattern .2 lights fore/1 aft +2002-08-12,44.775,-117.8333333,Baker City,OR,formation,480,3 objects in triangular pattern traverse sky with pattern change occuring. +2002-08-12,42.5833333,-71.8027778,Fitchburg,MA,triangle,55,Photo's of Triangular UFO exiting apple orchard +2002-08-12,34.7211111,-116.1591667,Ludlow,CA,oval,30,it wasnt a mylar ballon !! +2002-08-12,39.4816667,-106.0377778,Breckenridge,CO,disk,180,HUGE silent disk floats slowly in the Rocky Mountains +2002-08-12,46.3775,-120.3075,Toppenish,WA,disk,900,Daytime Sighting in Toppenish, WA +2002-08-12,40.7519444,-80.3194444,Beaver Falls,PA,light,15,Bright light in sky turns off - Nothing there! +2002-08-12,30.0269444,-95.0855556,Huffman,TX,triangle,300,I saw a large triangular shaped object covered with white lights in the sky. +2002-08-12,42.1958333,-73.3625,Great Barrington,MA,light,45,red blinking light over waterObject moving from west to East, low on the horizon, descending in a jerky downward sawtooth fashion w +2002-08-12,42.2458333,-84.4013889,Jackson,MI,disk,8400,Moves fast, zzig-zages and different shapes. And bright colors and a small glow tint around it. +2002-08-12,39.5347222,-107.7825,Rifle,CO,cylinder,60,From Rifle, Colorado: The night was clear, Monday August 12th, 2002, close to midnight while laying out on our deck watching for meteo +2003-08-12,42.8805556,-115.7963889,Bruneau,ID,sphere,20,Green Orb falling from sky +2003-08-12,32.2216667,-110.9258333,Tucson,AZ,other,3540,BLUE JELLY LIKE SUBSTANCE IN THE MIDDLE. A GOLD BAND ALL AROUND IT. +2003-08-12,36.175,-115.1363889,Las Vegas,NV,cylinder,900,Shiny rotating cylinders flying over Vegas +2003-08-12,44.7677778,-93.2775,Burnsville,MN,light,10,Two star like objects accelerate and fade one after the other. +2003-08-12,42.9741667,-117.0533333,Jordan Valley,OR,disk,25,Very large disk shaped structure with lights +2004-08-12,46.0922222,-100.6286111,Fort Yates,ND,unknown,10800,UFO charged couple, raced at them and played with them for a few hours. +2004-08-12,32.7252778,-97.3205556,Fort Worth,TX,sphere,3360,Small intensly strobing multicolor sphere seen over Fort Worth for almost an hour!!!! ((Sirius??)) +2004-08-12,39.7575,-74.1066667,Barnegat Light,NJ,other,7200,Stationary Bright Pulsating Light Over Long Beach Isalnd NJ ((Sirius??)) +2004-08-12,45.6797222,-111.0377778,Bozeman,MT,light,60,A point of light similar to a satellite flew at high speed and made several turns of 90 degrees or less. +2004-08-12,39.9611111,-82.9988889,Columbus,OH,unknown,60,Unknown light from the sky shinning on the ground +2004-08-12,44.0522222,-123.0855556,Eugene,OR,triangle,5,Triangular craft +2004-08-12,41.6638889,-83.5552778,Toledo,OH,light,180,5 bright lights / orbs floating just below clouds +2004-08-12,25.7738889,-80.1938889,Miami,FL,formation,120,A ballet of lights circling in the sky +2004-08-12,38.9805556,-76.9372222,College Park,MD,disk,12,Very clear bi-convex disc instantly reverses direction at 15' from observers. +2004-08-12,40.6602778,-76.6897222,Klingerstown,PA,disk,23,metal shape two lights in center moving forward then fading backward to nothing vanishin a dull flash +2004-08-12,33.4483333,-112.0733333,Phoenix,AZ,changing,30,Stealth Object Creeping Over Phoenix. +2004-08-12,41.4994444,-81.6955556,Cleveland,OH,light,3600,My husband and I went to the "flats" in Cleveland (restaurants and club scene that line both sides of the Cuyahaga River...Left Bank an +2004-08-12,38.7933333,-77.2719444,Burke,VA,triangle,10,a V shaped object with 4 large, bright lights hovering slowly over a neiborhood, then dissapeared +2004-08-12,47.5002778,-111.3,Great Falls,MT,light,20,while watching the meteor shower we saw an object cross the sky, stop, and emit a bright light before continuing on in an erratic patte +2004-08-12,42.3236111,-92.5991667,Reinbeck,IA,unknown,1800,Erratic direction, light(s) faded and reappeared in Iowa. ((Jupiter??)) +2004-08-12,46.2366667,-112.12,Boulder,MT,light,45,The intensity and smoothness with which it moved and the fact that it stood perfectly still for so long, unwavering. +2005-08-12,44.5647222,-123.2608333,Corvallis,OR,triangle,300,On the night of August 12, 2005, we noticed a triangle shaped craft entering our galaxy. +2005-08-12,34.2694444,-118.7805556,Simi Valley,CA,light,15,Three star-like lights traveling in formation West to East that disappear. +2005-08-12,33.9525,-84.55,Marietta,GA,light,300,2 Red lights moving quickly across the sky in unison +2005-08-12,41.0358333,-71.955,Montauk,NY,flash,10,bright flash followed by white light suspened in sky in montauk +2005-08-12,38.45,-91.0083333,Union,MO,cigar,109800,I Watched for 3 hours, a bright light scoping out of a cigar shape, as though searching or surverying. +2005-08-12,39.7763889,-74.8627778,Jackson,NJ,circle,300,Star like object +2005-08-12,35.3858333,-94.3983333,Fort Smith,AR,oval,30,Oval lighted object made no noise as it rapidly flew overhead in sky. +2005-08-12,39.5297222,-119.8127778,Reno,NV,light,1200,I saw three strange lights moving erratically over the foothills behind my house, departing in different directions at different times. +2005-08-12,44.5366667,-122.9058333,Lebanon,OR,triangle,300,Mom & boys watch slow silent triangleformed by 3lites move south at 11:11PM FOR 5min. then disappear +2005-08-12,32.7152778,-117.1563889,San Diego,CA,other,900,mercury dot seen high over san diego, ca. and mexico aug 05' +2005-08-12,34.0522222,-118.2427778,Los Angeles,CA,light,10,Driving at night on the freeway strange light from the sky appears. +2005-08-12,33.4222222,-111.8219444,Mesa,AZ,light,60,star takes off! +2005-08-12,45.2897222,-122.3325,Estacada,OR,teardrop,120,the craft came without light or noise +2005-08-12,44.5402778,-69.7225,Oakland,ME,unknown,600,Silent and Unknown. +2005-08-12,30.6277778,-96.3341667,College Station,TX,other,3,city lights flash out, bright light flashes across sky from Southeast Direction +2005-08-12,40.1672222,-105.1013889,Longmont,CO,light,7,Speed Changing BRIGHT blue "shooting star" seen over Longmont, Co 10:30p.m. Friday 12th August. Witnesses: 2(could be more;public) +2006-08-12,36.6102778,-88.3147222,Murray,KY,changing,14400,The craft were over the car when we saw the jets. +2006-08-12,42.7875,-86.1088889,Holland,MI,light,10800,weird moving lights in North east part of Holland's Sky +2006-08-12,41.85,-87.65,Chicago,IL,flash,1,brief expansion of a wand of light, that dissapeared as quickly as it appeared. +2006-08-12,31.8541667,-110.9930556,Green Valley,AZ,formation,900,Eliptical craft/formation sighted over Green Valley, Arizona 5am 8/12/06 +2006-08-12,39.9561111,-75.0583333,Pennsauken,NJ,other,20,red object dips below commercial airliner +2006-08-12,38.5816667,-121.4933333,Sacramento,CA,cigar,20,We were flying North on Alaska Airlines to Seattle. A couple passenger jets had passed us a few miles away going South. I was looking +2006-08-12,48.2933333,-122.6419444,Oak Harbor,WA,unknown,600,Bright light over bay (Oak Harbor, WA) +2006-08-12,42.4975,-94.1677778,Fort Dodge,IA,oval,10,Solid orb of light moving rapidly increasing in size and brightness then suddenly vanishes. +2006-08-12,44.1441667,-71.1813889,Jackson,NH,light,30,Bright headlights, pulsating objecting moving in rapid multiple directions. +2006-08-12,42.7977778,-83.705,Fenton,MI,triangle,300,Green, purpule, red, blue and yellow, lights surrounded it.Triangle shape i saw the U.F.O. for about 5 minutes.It was to the west.It ju +2007-08-12,40.8694444,-84.5841667,Van Wert,OH,sphere,30,small, slowly strobing yellow sphere, low flying object in Van Wert, Oh Aug. 2007 midnight +2007-08-12,43.6575,-71.5008333,Meredith,NH,unknown,3600,Red light hovering over Winnisquam +2007-08-12,28.5491667,-81.7730556,Clermont,FL,light,10,Unusual Light +2007-08-12,37.7652778,-122.2405556,Alameda,CA,light,10800,I saw a single red light that never changed shape or color but moved in an unconventional fasion. +2007-08-12,34.4263889,-117.3,Hesperia,CA,light,3600,early in the morning. and object along other 3 moved raidcally in a fixed position +2007-08-12,42.4666667,-70.95,Lynn,MA,fireball,600,2 balls of fire spheres not that big they seem to be observing earth is what i believe they moved fast like speed of light. +2007-08-12,37.9513889,-91.7711111,Rolla,MO,unknown,2700,object up in the stratosphere followed with us for approximently 45 minutes +2007-08-12,41.3436111,-86.3097222,Plymouth,IN,formation,30,As big as a large house with 2 car garage attached and kinda shaped like that 500 feet over my head.. +2007-08-12,34.1336111,-117.9066667,Azusa,CA,fireball,21600,Azusa Mountains is a Highway for UFOS. +2007-08-12,41.9833333,-71.3333333,North Attleboro,MA,other,20,View of sky occluded as an object passed overhead. +2007-08-12,29.8944444,-81.3147222,St. Augustine,FL,triangle,180,While on vacation, at 04:40 early in the morning I observed a triangular lighted object tracking north to south stopping several times +2007-08-12,31.3794444,-84.1611111,Baconton,GA,circle,1200,Glowing circular object dancing across a single portion of the night sky surrounded by nothing. +2007-08-12,45.0061111,-93.1563889,Roseville,MN,light,660,Bright object with light flashing about once per second moved from northwest to southeast at about a 60 degree elevation at mid-transit +2007-08-12,35.1477778,-114.5675,Bullhead City,AZ,unknown,120,Smoke trails from object in sky. ((NUFORC Note: Possible meteor?? PD)) +2007-08-12,37.5536111,-77.4605556,Richmond,VA,light,3600,Red, green, white stationary light. ((NUFORC Note: Twinkling star?? PD)) +2007-08-12,44.8041667,-93.1666667,Eagan,MN,triangle,6,((HOAX??)) plains with huge lights on the bottem and goign really fast close to ground. +2007-08-12,38.5816667,-121.4933333,Sacramento,CA,sphere,600,8/12/07 Strange spheres over sacramento 1:00pm. +2007-08-12,40.7141667,-74.0063889,New York City (Brooklyn),NY,oval,600,Today on da twelve of august 2007 me and my friend sighted suspicious aircraft flying over brooklyn at 18:30hours. +2007-08-12,47.5302778,-122.0313889,Issaquah,WA,egg,1500,strange dissapearing objects over lake sammamish. +2007-08-12,41.7416667,-70.4522222,East Sandwich,MA,light,60,Intense white light replaced by dot high in the night sky over Cape Cod +2007-08-12,33.7669444,-118.1883333,Long Beach,CA,formation,3,many red orbs arranged in a trinangle +2007-08-12,36.0625,-94.1572222,Fayetteville,AR,circle,600,White ball with alternating colored orbs, hovering/moving above tree level in urban Arkansas neighborhood. +2007-08-12,32.7866667,-79.795,Isle Of Palms,SC,circle,4,roung grey object streaks across sky without lights or sound +2007-08-12,43.4194444,-83.9508333,Saginaw,MI,triangle,45,Triangle shaped object, flying very low with bright white litghts +2007-08-12,44.8838889,-88.6336111,Keshena,WI,circle,300,Bright object came from space. +2007-08-12,48.4111111,-119.5263889,Omak,WA,light,3,were five lights +2007-08-12,42.5819444,-88.2938889,Slades Corners,WI,fireball,20,My friends and I were standing in a street when we noticed a bright blueish/white light 20 ft in the air that caused a power outage. +2007-08-12,37.9736111,-122.53,San Rafael,CA,triangle,10,Triangular craft seen over San Rafael, CA around 11pm Sunday night +2007-08-12,39.9852778,-104.82,Brighton,CO,light,15,Zigzagging Object during meteor shower +2007-08-12,28.5380556,-81.3794444,Orlando,FL,triangle,60,V shaped red lights flying overhead, very large and silent +2008-08-12,27.9375,-82.2861111,Brandon,FL,rectangle,2,RECTANGULAR WHITE LIGHT OVER BRANDON,FLORIDA +2008-08-12,40.9483333,-80.6591667,North Lima,OH,sphere,3600,Spherical luminous object hovering in North Lima Ohio. +2008-08-12,47.0344444,-122.8219444,Lacey,WA,light,3600,We saw the moving star as well!! +2008-08-12,47.0344444,-122.8219444,Lacey,WA,light,5400,A star-like object, moving in hooks, fast streams, and circles stayed above the house until I was tired and went inside. +2008-08-12,38.2972222,-122.2844444,Napa,CA,light,60,Intense blue lights, disturbing guttural noises. +2009-08-12,40.4277778,-74.4163889,East Brunswick,NJ,light,60,meteor shower turns into a u.f.o sighting +2009-08-12,40.7141667,-74.0063889,New York City (Queens),NY,oval,6,Oval shaped object moves past the sky at high speed creating no noise +2009-08-12,29.7630556,-95.3630556,Houston,TX,diamond,45,UFO sighting on night of meteor showers +2009-08-12,33.7688889,-89.8083333,Grenada,MS,unknown,30,"Satellite" stops, flases and disappears +2009-08-12,40.8041667,-74.0125,North Bergen,NJ,unknown,3600,Pulsating light moving very slowly around the sky. +2009-08-12,34.6883333,-76.8863889,Salter Path,NC,disk,2700,Disc shaped object with red and white lights observed flying over the ocean for 45 minutes. +2009-08-12,47.6733333,-117.2383333,Spokane Valley,WA,light,120,Bright light, changing color from white to red, moving east over Spokane Valley, WA +2009-08-12,43.2341667,-86.2483333,Muskegon,MI,triangle,5,Three low flying orange lights forming a triangle with a haze around the object on a clear night. +2009-08-12,46.8722222,-113.9930556,Missoula,MT,light,300,Two blinking objects flying slowly across sky. +2010-08-12,33.8169444,-81.1011111,Gaston,SC,changing,300,Blob of moving light in front of clouds.Went down to something like a car's headlamp changed colors then there was a bright flash and i +2010-08-12,41.5833333,-87.5,Hammond,IN,circle,300,round green light followed by smaller ufos above hammond indiana +2010-08-12,43.6136111,-116.2025,Boise,ID,triangle,2400,There are recurring crafts hovering and flying over boise that are not of this world. +2010-08-12,34.1602778,-118.6513889,Hidden Hills,CA,chevron,3,A shadow went over my house and it was dark for a second. It was completely silent but it got dark outside. +2010-08-12,38.2558333,-119.2302778,Bridgeport,CA,unknown,2,A buzzing flying spike crashed in front of use. +2010-08-12,40.7894444,-74.0569444,Secaucus,NJ,sphere,30,Black Sphere in Hudson County Skies +2010-08-12,42.6375,-70.95,Topsfield,MA,other,120,The lights were not sharp and pronounced, but instead were hazy and burned like fire, scattered about the bottom and sides of the UFO. +2010-08-12,38.8858333,-94.5327778,Grandview,MO,other,10,A V shaped aircraft with low glowing lights underneath was spotted flying low and slow over Kansas City around 8:40PM on October 13th. +2010-08-12,32.2161111,-80.7527778,Hilton Head Island,SC,circle,20,My wife and I saw two orange orbs in the sky off the beach in Hilton Head Island, SC. +2010-08-12,41.9861111,-77.3111111,Elkland,PA,sphere,600,Two red globes hovering over a containment pond 50 feet overhead. +2010-08-12,30.275,-98.8716667,Fredericksburg,TX,fireball,300,RED STAR LIKE OBJECT SEEN IN WESTERN SKY WITH UNEXPLINABLE MOVEMENTS +2010-08-12,32.3666667,-86.3,Montgomery,AL,unknown,60,High, fast, zig-zag/wobbly flight pattern ... +2010-08-12,33.4222222,-111.8219444,Mesa (Queen Creek),AZ,other,300,white light being chased by a F16 +2010-08-12,39.0480556,-95.5788889,Tecumseh,KS,circle,240,Slow-moving, glowing white/orange ball +2010-08-12,36.8527778,-75.9783333,Virginia Beach,VA,triangle,420,@ the intersection of Priness Anne Road & Upton Drive, near Red Mill Commons... +2011-08-12,40.2452778,-75.65,Pottstown,PA,sphere,30,Two Sphere's Near Limerick Power Plant +2011-08-12,41.3205556,-73.0894444,Derby,CT,light,1500,Multiple colored object moving extremely slow through the sky +2011-08-12,44.7480556,-72.1766667,Barton,VT,triangle,300,((HOAX??)) 200 foot black triangle with alternating blinking red lights hovers silently over lake +2011-08-12,35.245,-81.3413889,Kings Mountain,NC,light,60,Amber (Orange) Hummingbird-like UFO Sighted in Kings Mountain, NC +2011-08-12,21.3069444,-157.8583333,Honolulu,HI,sphere,120,bright, fast moving orb over ala moana beach park. ((NUFORC Note: Overflight of ISS at 05:55 hrs., on this date. PD)) +2011-08-12,33.7488889,-84.3880556,Atlanta,GA,triangle,60,Irregular triangle cluster of 3 very bright white lights low to the west 6:35 a.m. - Southside Atlanta. +2011-08-12,47.3294444,-122.5788889,Gig Harbor,WA,light,1,I saw my second UFO ever shooting down to the ground and basically vanish or sink into the ground somehow. +2011-08-12,38.6272222,-90.1977778,St. Louis,MO,unknown,300,Steady light with no sound or shape disspeared, +2011-08-12,43.8736111,-116.4983333,Emmett,ID,disk,360,the craft was very shiny +2011-08-12,33.4936111,-117.1475,Temecula,CA,light,300,Slow bright light moves across night sky over Temecula +2011-08-12,32.7919444,-115.5622222,El Centro,CA,light,300,I saw this bright light kind of white blue light fly slow moving toward the northeast. +2011-08-12,43.0722222,-70.7166667,New Castle,NH,triangle,600,5 round balls-2 faded out and 3 then formed a triangle. +2011-08-12,40.33,-76.0808333,Wernersville,PA,sphere,180,walking down the street to my house, i noticed a bright whitish-orange orb in the sky heading north east. the object appeared to be at +2011-08-12,35.2269444,-80.8433333,Charlotte,NC,circle,6,a circular object with colored lights, moving at medium speed with a swoosh sound but no motor sound +2011-08-12,33.0369444,-117.2911111,Encinitas,CA,light,420,08/12/2011 viewed eight lights and the next night at same time one light. +2011-08-12,29.3011111,-94.7975,Galveston,TX,light,180,Bright white light viewed from 1 mile for 3 min. with 20x100mm binoculars which passed overhead/no noise. +2011-08-12,47.1302778,-119.2769444,Moses Lake,WA,fireball,120,Fireball +2011-08-12,37.7741667,-87.1133333,Owensboro,KY,unknown,300,Star like object moving over Owensboro, Kentucky. +2011-08-12,35.7738889,-81.4313889,Rhodhiss,NC,light,1800,Laser like orb and light formation low to ground. +2011-08-12,40.9222222,-89.4861111,Chillicothe,IL,other,600,Red Trinagle over chillicothe illinois woods +2011-08-12,48.4111111,-114.3366667,Whitefish,MT,fireball,300,4 orange red fireballs hovered in front of Big Mountain and 3 hovered in a triangle formation over the mountain +2011-08-12,39.8397222,-74.1905556,Forked River,NJ,fireball,1200,4 Fireball looking things in a flight pattern. No sound. Perfect flight pattern. 5 min apart. Over the bay. +2011-08-12,29.7630556,-95.3630556,Houston,TX,triangle,6,I saw 3 softly glowing, unblinking orange lights in a triangle formation as it flew without a sound by quickly. +2011-08-12,42.9033333,-78.755,Cheektowaga (Buffalo),NY,light,120,Three bright orange/red distinct lights of UFO's spotted in skies in western New York on 8/12/2011 +2011-08-12,43.2341667,-86.2483333,Muskegon,MI,fireball,30,5 to 6 fireballs traveling northwest +2011-08-12,40.9311111,-73.8991667,Yonkers,NY,light,3600,Blinking lights in the sky not moving then disappearing and re-appearing. +2011-08-12,30.3580556,-90.0655556,Mandeville,LA,sphere,60,Silent orange/red illuminated jagged spherical object moved across the sky and disappeared +2012-08-12,38.545,-121.7394444,Davis,CA,unknown,900,Multi colored lights seen heading northeast over Davis, California, just before midnight. +2012-08-12,40.6936111,-89.5888889,Peoria,IL,circle,40,Orange orb over peoria il +2012-08-12,45.4013889,-91.8488889,Barron,WI,formation,5,Five witnesses (Including myself) were watching a meteor shower and saw three bright, blue-green lights go across the sky in 5 seconds +2012-08-12,40.9244444,-75.3941667,Brodheadsville,PA,flash,30,Flashbulb tight occurence on 3 consecutive nights ocurring same time all 3 nights and same location of night sky. +2012-08-12,40.0386111,-76.1825,Bird In Hand,PA,oval,600,Was looking north when I saw what appeared to be 15 orange lights moving at aircraft speed below the cloud cover. I noticed more appear +2012-08-12,39.9611111,-82.9988889,Columbus,OH,diamond,180,Like nothing i have seen before +2012-08-12,45.4872222,-122.8025,Beaverton,OR,disk,10,Near invisible saucer cruising through the night sky +2012-08-12,33.1397222,-80.3944444,Dorchester,SC,unknown,30,White Flashing light moving in a U shape in Dorchester SC 8/12/2012 +2012-08-12,34.0983333,-118.3258333,West Hollywood,CA,light,90,Watched the object cover a distance with a consistent speed over what could have been hundreds of miles. +2012-08-12,47.8108333,-122.3761111,Edmonds,WA,sphere,240,Unknown object travels North to South through Pegasus constellation. +2012-08-12,34.3075,-89.1780556,Thaxton,MS,sphere,120,Metal sphere rising out of woods scares wildlife and me +2012-08-12,33.24,-115.5180556,Niland,CA,unknown,120,Fireball in the sky with small craft and missing time. +2012-08-12,33.8158333,-78.6802778,North Myrtle Beach,SC,unknown,240,Saw 3 different formations of lights above Atlantic Ocean in North Myrtle Beach, SC. +2012-08-12,33.5091667,-111.8983333,Scottsdale,AZ,light,3,Red and White light seen flying low and fast from East to West disapears instantly in Phoenix area. +2012-08-12,39.7391667,-104.9841667,Denver,CO,egg,1200,Orange egg lights +2012-08-12,40.5186111,-74.4125,Edison,NJ,fireball,120,2 Orange Fireball ufo with Nucleus Looking Centers travelling east to west as fast any other aircraft +2012-08-12,41.010555600000004,-73.9916667,Old Tappan,NJ,fireball,30,Red fireball floating west to east in the sky over northern New Jersey +2012-08-12,40.6955556,-73.3261111,Babylon,NY,fireball,600,Came from the west moving slowly. Bright orange and red fireballs that moved across the sky and just went out slowly and disappeared i +2012-08-12,40.8372222,-81.2597222,Louisville,OH,fireball,45,Dimly +2012-08-12,37.8091667,-85.4669444,Bardstown,KY,disk,10,Yellow glowing saucer in Kentucky. +2012-08-12,37.4516667,-89.2680556,Jonesboro,IL,formation,1200,Large red light with smaller white flashing lights +2012-08-12,44.9430556,-123.0338889,Salem,OR,sphere,120,5 orange glowing objects cruise by swimming pool in densely populated neighborhood of NE Salem. +2012-08-12,42.3583333,-71.0602778,Boston,MA,fireball,120,Reddish/orange light moving really fast across the sky. +2012-08-12,40.4416667,-74.1302778,Keansburg,NJ,fireball,180,Silent object glowing orange gradually falls across sky, comes back up, hovers, is passed by two aircraft, then flickers out of sight. +2012-08-12,33.9163889,-78.1613889,Oak Island,NC,triangle,300,Orange cresent craft traveling west to east at Oak Island,North Carolinat at 10:45 p.m. 8/12/12 +2012-08-12,41.2844444,-84.3558333,Defiance,OH,circle,1800,Bright blue object moving randomly throughout the sky on the night of August 12 +2012-08-12,47.4066667,-122.0375,Maple Valley,WA,sphere,20,Sphere like object glowing of a bright white/yellow light flys above me to just vanish! like time warped outta here! +2012-08-12,47.5002778,-111.3,Great Falls,MT,triangle,12,Kite shaped moderately fast moving and silent +2013-08-12,26.4486111,-82.0225,Sanibel,FL,unknown,1800,It was a reddish orange flickering light that appeared to be from a hovering aircraft along the edge of a storm cloud. +2013-08-12,46.0647222,-118.3419444,Walla Walla,WA,circle,30,Red-orange orbs slow and low-flying over town. +2013-08-12,38.6780556,-121.175,Folsom,CA,chevron,3,5 lights in a V heading southeast very fast and silently, then lights split going different directions and disappeared +2013-08-12,30.775,-94.4152778,Woodville,TX,sphere,1800,On Monday Aug, 12th at 12:45am, my wife, son, daughter and I witnessed two objects flying in a formation heading North East +2013-08-12,39.8680556,-104.9713889,Thornton,CO,light,18000,More than 10 lights moving at supersonic speeds, blinking, erratic changes of direction, almost fluid like motion with bursts of speed. +2013-08-12,35.3163889,-81.1763889,Dallas,NC,light,600,Very large bright orange light that disapeared. +2013-08-12,39.5069444,-84.7452778,Oxford,OH,light,1800,We saw 3 circular, white, fast moving lights moving high up in the sky. +2013-08-12,43.1008333,-75.2330556,Utica,NY,changing,7200,There were blinking red and blue lights, and they were hovering in circles. +2013-08-12,34.1861111,-103.3338889,Portales,NM,circle,8,A big orange/grey circle type object appearing before and after storm. +2013-08-12,44.5038889,-72.9980556,Jericho,VT,changing,120,Floating fire changes to 3 triangular lights and speeds away +2013-08-12,34.0336111,-117.0422222,Yucaipa,CA,circle,50.5,Caught circular object in photograph. +2013-08-12,42.0883333,-87.9805556,Arlington Heights,IL,egg,180,CLEARDAY SIGHTING. +2013-08-12,36.0725,-79.7922222,Greensboro,NC,cylinder,1200,There was a cylinder shape object that was stationary had to be atleast 20ꯠ ft and stayed there for about 20min.Then it vanished. +2013-08-12,42.12,-85.5327778,Vicksburg,MI,fireball,1,Streak of light heading up at a 60d angle. It looked just like a meteor, but going up, not coming down. +2013-08-12,37.8994444,-89.0519444,Zeigler,IL,fireball,180,Orange fireball in the sky. +2013-08-12,36.6777778,-121.6544444,Salinas (~1 Hour Past; On Hwy 101),CA,cylinder,3,Huge pulsing object shoots across sky toward ocean. +2013-08-12,46.8219444,-123.095,Rochester,WA,circle,600,Viewed on different evenings, overhead, and on the western horizon,originally thought it was a star or airplane headlight. +2013-08-12,44.5891667,-104.6961111,Devils Tower,WY,light,10,Multiple green orbs of light moved randomly on a hillside. +2013-08-12,41.7386111,-80.77,Jefferson,OH,fireball,30,Orange, spherical light moving erratically. +2013-08-12,38.8916667,-121.2919444,Lincoln,CA,triangle,1200,Triangular red, green and blue glowing & flashing object in Lincoln, CA, night sky. +2013-08-12,44.9280556,-74.8922222,Massena,NY,triangle,2,Triangular aircraft with blue and white lights seen by 3 in upstate NY. +2013-08-12,39.4805556,-86.055,Franklin,IN,fireball,900,Fiery orbs moving into formations while dropping smaller orbs. +2013-08-12,36.3275,-119.6447222,Hanford,CA,sphere,180,About 4 days earlier my husband was working on the flight line at NAS Lemoore, ca and he and two of his coworkers saw three brights s +2013-08-12,42.0144444,-86.5194444,Stevensville,MI,light,180,Bright green light +2013-08-12,43.1788889,-88.1172222,Menomonee Falls,WI,triangle,90,Please click! UFO orbs observed over MULTIPLE YEARS WITH HARD EVIDENCE! Please help!!!! +2013-08-12,43.1788889,-88.1172222,Menomonee Falls,WI,triangle,90,Please click multiple sightings over years in waukesha county with hard evidence! +2013-08-12,47.3225,-122.3113889,Federal Way,WA,light,60,Small, bluish light moving through the sky, changed direction, then sped off out of sight +2013-08-13,45.7444444,-88.4241667,Fence,WI,diamond,360,Huge orange diamond shaped object hovering in the sky,turned yellow then slowly faded away +1959-08-13,42.7283333,-73.6922222,Troy,NY,unknown,900,Single star like light zigging and zagging in night sky +1959-08-13,42.2702778,-74.3033333,Jewett,NY,light,1200,Tumbling zig zag pattern of a shooting "star" observed in the Catskill Mountains, NY +1964-08-13,39.5488889,-89.2944444,Taylorville,IL,disk,30,I lived in the country (on farm) and i was coming home about 1 mile from my house when i thought a car came up behind me and when it go +1969-08-13,41.0016667,-73.6661111,Port Chester,NY,other,2,2 solid boomerang-solid shapes in formation cross sky from horizon-overhead-behind bldg; 1.5 seconds; silent; color of cool fl. bulb +1982-08-13,42.5375,-71.5125,Littleton (I Think),MA,rectangle,420,Football-field-sized, soundless, rectangular object with lights on bottom, over northeastern Massachusetts +1986-08-13,40.4711111,-83.8927778,Russells Point,OH,triangle,1200,Triangle shaped 4 lights on bottom, made no sound, and moved really fast. 500 Lights On Object0: Yes +1987-08-13,39.9241667,-83.8088889,Springfield,OH,triangle,240,Massive triangular pattern of large white lights above clouds ... completely silent motion +1988-08-13,42.7261111,-71.1913889,Methuen,MA,unknown,120,The siting is old, but worth reporting. Much evidence of all types. +1995-08-13,43.4197222,-85.8,Newaygo,MI,chevron,45,Large silent sighting in the woods of mid Michigan hovers and disappears. +1995-08-13,36.175,-115.1363889,Las Vegas,NV,triangle,300,Large hovering invisible craft houvering in mid air at least triangle 300 yards. +1998-08-13,38.4786111,-120.0027778,Lake Alpine,CA,sphere,8,White spherical orb about three times the size of a full moon was observed from one mile away. +1998-08-13,42.9375,-70.8394444,Hampton,NH,circle,5,Moon size, like object, quiet, white and bright August 1997-1999 3:00 AM. Any one else? +1998-08-13,42.2638889,-88.8441667,Belvidere (5 Miles North Of),IL,flash,10,Large blue flash and con trail similar to meteor, however with a evenly split blue tail. And a con trail that sustained for approximate +1998-08-13,40.7763889,-73.4677778,Plainview,NY,light,120,we saw a sphere of light move steadily across the sky. Then it zig-zagged. It changed from whit to faint blue and flashed. It then ping +1998-08-13,37.2622222,-119.7,Coarsegold,CA,triangle,300,My husband and I spotted a silent craft with white lights in the shape of a triangle and one red light on the top center. +1998-08-13,42.1291667,-80.0852778,Erie,PA,circle,7,A large green disc that travesed the night sky. +1998-08-14,31.9972222,-102.0775,Midland,TX,disk,5,The object was not a plane and did not have any distinguishing features except that it was it was small gray and saucer shaped. +1999-08-13,39.1855556,-78.1636111,Winchester,VA,light,60,i tracked 2 objects flying high from n.w to s.e., when the lead object emmited a brillient light, much brighter than an airplane strobe +1999-08-13,43.6569444,-90.8541667,Westby,WI,triangle,60,triangle going due n.e from the middel of persious +1999-08-13,32.8794444,-111.7566667,Casa Grande,AZ,triangle,180,Triangle object that moved with incredible speed +1999-08-13,41.14,-104.8197222,Cheyenne,WY,triangle,900,From the N.E, to the SW., at 9:50 pm., a reddish orange cloud surronding it., with sparkles inside the cloud., but you clearly could se +1999-08-13,42.2383333,-91.1869444,Monticello,IA,fireball,3,Happened to catch a very bright and large green fireball streek through the sky in Iowa. +1999-08-13,32.8794444,-111.7566667,Casa Grande,AZ,triangle,180,triangle with very bright lights on I-10 near Casa Grande +1999-08-13,45.6388889,-122.6602778,Vancouver,WA,circle,1200,green rotating circle, emitting green lights approx. 40 miles +1999-08-13,45.6388889,-122.6602778,Vancouver,WA,oval,1200,other reports similar to ours in Vancouver Wa. but ocurring in Wisconsin and Iowa. three rotating green orbs emitting light beams acro +1999-08-13,41.6888889,-88.9811111,Paw Paw,IL,unknown,7,a bright light appearred and dropped down slowly (about 3 seconds). Then remained stationary for about 3 seconds, and then travelled to +2000-08-13,47.7625,-122.2041667,Bothell,WA,rectangle,60,Rectangle, looked sepia toned against night sky. Moving due south, quickly. Making an occasional counter clockwise spin. +2000-08-13,33.4669444,-117.6972222,Dana Point,CA,light,300,Blue light in sky performing amazing manuevers for five minutes +2000-08-13,38.5788889,-122.5786111,Calistoga,CA,triangle,6000,four triangular shaped crafts moved slowly over our heads...joining others accross the valley... +2000-08-13,34.0522222,-118.2427778,Los Angeles (North),CA,disk,3600,We was on the Area were we was filming the Sun effects at 11am when suddenly we see one flyer object that have a shape of a disc with s +2000-08-13,34.5022222,-97.9575,Duncan,OK,unknown,30,Luminous flying snake +2000-08-13,37.9255556,-122.5263889,Corte Madera,CA,fireball,4,I saw a glowing, spherical object in the sky tonight that accelerated in speed, then disappeared. +2000-08-13,39.2616667,-121.015,Nevada City,CA,changing,1200,A red glow changing to blue green circular pattern coming from an object almost stationary , then shifting shapes rapidly +2001-08-13,47.6777778,-116.7794444,Coeur D'alene,ID,light,6,light was seen, moved and got quickly bright then at the peak of its brightness it disappeared. +2001-08-13,47.5675,-122.6313889,Bremerton,WA,light,3,light durring meteor shower +2001-08-13,46.765,-122.1925,Elbe,WA,oval,3600,3 blue lights and 1 large orange object in the night sky NW of Mt Ranier. +2001-08-13,35.5938889,-105.2233333,Las Vegas (North Of),NM,unknown,300,Yellowish bright light approached the rear of my car at a extremely high rate of speed two times and then it was gone. +2001-08-13,33.7444444,-118.3861111,Rancho Palos Verdes,CA,sphere,3,Basically it looked like a shooting star. The odd thing was the duration and sound. It started high in the ski to the NE and made its +2001-08-13,41.5930556,-81.5269444,Euclid,OH,light,120,BRIGHT white light, stationary for over a minute, then moves the north slowly accelerating then speeds up and winks out.... +2001-08-13,39.7136111,-82.5994444,Lancaster,OH,light,30,Incredibly bright light, faded in then out, maybe super nova. +2001-08-13,40.4405556,-79.9961111,Pittsburgh (Plum),PA,light,1500,3 objects that changed color and traveled, at first, in an upside down triangle shape, then split up were seen on Aug. 13, 2001. +2001-08-13,40.8616667,-89.6786111,Dunlap,IL,rectangle,1,A bright geometric shape with an equally bright tail streaks down. +2002-08-13,37.6625,-121.8736111,Pleasanton,CA,circle,15,Observed V formation of 10 objects flying from SE to NW over Pleasanton CA +2002-08-13,45.5236111,-122.675,Portland,OR,chevron,1.5,Blue/White Object at high velocity/low altitude. +2002-08-13,47.7625,-122.2041667,Bothell,WA,light,120,Odd Light not assiated with the Meteor shower +2002-08-13,45.0061111,-93.1563889,Roseville,MN,disk,1200,Saw saucer shaped object hovering with shooting red lights, would shoot around and then instantly stop. +2002-08-13,34.0736111,-118.3994444,Beverly Hills,CA,cylinder,7200,it was a long round cylindrical object and it just stayed in the sky for an hour and started moving north towards orange county. it was +2002-08-13,33.4222222,-111.8219444,Mesa,AZ,other,600,We had gone up to a mountian side to watch the city lights. We were getting our lawn chairs from out of the pickup when my companion no +2002-08-13,41.8316667,-73.2255556,Goshen,CT,light,600,Star Shaped Object, Near Aircraft in Sky, Bright Flash, Moving slowly across sky, disapears.suddenly +2002-08-13,47.6063889,-122.3308333,Seattle,WA,light,600,Single star-like object moving erratically, making 90+ degree turns and hovering. +2002-08-13,41.2330556,-80.4936111,Sharon,PA,changing,8100,Two Hour Abduction in Sharon, PA +2002-08-13,43.1547222,-77.6158333,Rochester,NY,light,600,Bright Light +2002-08-13,40.5083333,-86.8416667,Battle Ground,IN,oval,10,Large object flying in the sky +2002-08-13,43.1547222,-77.6158333,Rochester,NY,light,6,Bright light seen in the northeastern sky over New York tonight. +2002-08-13,35.2269444,-80.8433333,Charlotte,NC,light,40,A bright star like object that began to move in a slow dive and disappeared. +2003-08-13,38.5816667,-121.4933333,Sacramento,CA,oval,10,transluscent green oval travelling in a straight line heading due north at approximately 10 to15 degrees per second. +2003-08-13,28.7586111,-81.3180556,Lake Mary,FL,unknown,2,DID YOU SEE WHAT I SAW??? ((NUFORC Note: Possible Perseid meteor, we believe. PD)) +2003-08-13,39.9241667,-83.8088889,Springfield,OH,oval,15,ufo seen in ohio +2003-08-13,45.5236111,-122.675,Portland,OR,sphere,900,Sphere over Portland with Military Jet +2003-08-13,29.9402778,-91.0247222,Napoleonville,LA,other,8,Black boomerang wing with no sound or lights passes low and fast over south Louisiana +2003-08-13,40.2986111,-83.0680556,Delaware,OH,unknown,60,This object seen in the same general Westerly direction of the report I filed last week. This is now the third or fourth time since mo +2003-08-13,48.051944399999996,-122.1758333,Marysville,WA,unknown,180,I saw a light in the sky that at first acted like a satelite, and then it did not act like a satelite or anything else I've ever seen! +2003-08-13,44.5191667,-88.0197222,Green Bay,WI,circle,180,Silent red/yellow lighted craft north to south in Green Bay night sky. +2003-08-13,44.5191667,-88.0197222,Green Bay,WI,other,180,T-Shaped silent craft traveling northwest over Green Bay sky. +2003-08-13,30.4055556,-86.6188889,Fort Walton Beach,FL,circle,10,Bright blue-white object leaving traces hovering over trees going up and down while accelerating. 2 witnesses REAL +2003-08-13,42.0083333,-76.6241667,Chemung,NY,light,5,lights seen night before blackout +2004-08-13,40.7141667,-74.0063889,New York City (Brooklyn),NY,oval,720,saw 6 oval disks close to the ground +2004-08-13,35.7563889,-83.9705556,Maryville,TN,other,60,Bedroom invader, forced to flee. +2004-08-13,47.0380556,-122.8994444,Olympia,WA,unknown,20,point of light moving thru the sky flashes then vanishes. +2004-08-13,39.0997222,-94.5783333,Kansas City,MO,unknown,20,i know this sounds strange but i was watching c-span on the morning of september 13񫺔.....and i saw something behind the capital bui +2004-08-13,40.1672222,-105.1013889,Longmont,CO,cigar,120,Object hovered between Longmont and Berthoud, then vanished +2004-08-13,32.7355556,-97.1077778,Arlington,TX,sphere,4,Videotaped on a roller coaster, noticed after waching video +2004-08-13,47.5708333,-122.2208333,Mercer Island,WA,other,60,red flashing light moving erratically in the sky and changing speed. +2006-08-13,39.4586111,-82.2319444,Nelsonville,OH,light,4,i was facing southeast and saw a bright yellowgreen light move from my right to left then change direction and go back to my right +2006-08-13,44.9583333,-124.0166667,Lincoln City,OR,formation,60,Spinning objects in sky over Pacific Ocean in Lincoln City, OR @ Sea Gypsy Hotel on Beach +2006-08-13,36.3611111,-104.5947222,Springer (On 1-25; North Of),NM,oval,1200,The object appeared to be the shape of a giant florescent M and M candy. It moved left to right across the desert floor then...n to s +2006-08-13,31.1169444,-97.7275,Killeen,TX,unknown,30,there isint allways a ship. +2006-08-13,47.9791667,-122.2008333,Everett,WA,light,300,I got onto my apartment balcony which faces west on a slope, just wanted to check out the stars that night at aprox 3am, suddenly spott +2006-08-13,46.2858333,-119.2833333,West Richland,WA,circle,60,Silent, fast moving, extremely bright orb crossed in front of the moon. +2006-08-13,40.7355556,-74.1727778,Newark,NJ,diamond,60,a bright light that at first appeared to be a plane, helicopter or star. we saw it for at least half an hour and it never moved. as i +2006-08-13,38.3686111,-93.7780556,Clinton,MO,circle,20,Round gold colored object moving NW - SE. +2006-08-13,33.6833333,-78.9986111,Socastee,SC,sphere,180,We were on a golfing weekend (7 of us) in the Myrtle Beach area. On Sunday, August 13, 2006, we were playing our last round at the Witc +2006-08-13,42.489444399999996,-83.1447222,Royal Oak,MI,cone,60,Strange, white balloon like craft over Detroit metro area +2006-08-13,34.7302778,-86.5861111,Huntsville,AL,oval,60,Large bright blue object moving in a box like pattern at an incredible rate of speed until it vanished my moving vertically. +2006-08-13,47.6063889,-122.3308333,Seattle,WA,circle,60,Opalescent , round (40 ft - 12 meters in diameter) flying object spotted in Seattle-Northgate area +2006-08-13,43.025,-108.3794444,Riverton,WY,formation,4,Flying V formation at an extremely high rate of speed from North to South. +2006-08-13,33.7283333,-117.1455556,Menifee,CA,light,120,bright ufo light in Menifee CA, August 13th & 14th 2006 +2006-08-13,40.5866667,-122.3905556,Redding,CA,egg,120,egg shaped orb slow moving north towards mnt shasta moved across the sky for a minute then made a right turn and disapeared at a extrem +2006-08-13,33.7488889,-84.3880556,Atlanta,GA,light,10800,Single light that morphs into line of lights or triangle, then back to a light and speeds away. +2007-08-13,29.9052778,-96.8763889,La Grange,TX,triangle,120,3 flashing lights in formation of a triangle soared across the nights horizon from one side of the sky to the other in less than minute +2007-08-13,32.7833333,-96.8,Dallas,TX,unknown,15,Its bottom appeared as three dimly illuminated elongated octagons, one in front of two in tandem. +2007-08-13,46.4847222,-100.2791667,Hazelton,ND,sphere,900,Mostly white with a little color spherical object moving erratically through the North Dakota sky near Hazelton. +2007-08-13,39.1847222,-93.8797222,Lexington,MO,disk,600,disc over corn field +2007-08-13,31.4438889,-97.4088889,Mcgregor,TX,other,3,Half moon shape craft sighted over McGregor Texas 08/13/2007 +2007-08-13,40.925,-98.3416667,Grand Island,NE,disk,15,((HOAX?? Student report)) a yellow disk hovering for a few seconds then took off. +2007-08-13,36.2675,-94.4844444,Gentry,AR,triangle,60,Gentry, AR orange three spots triangle +2007-08-13,42.5158333,-73.6105556,Nassau County,NY,unknown,3600,LONG ISLAND NY UFO +2007-08-13,47.1302778,-119.2769444,Moses Lake,WA,circle,20,Super fast solid white glowing light in Moses Lake, WA +2008-08-13,38.2811111,-80.8527778,Summersville,WV,circle,600,UFO vanishes within seconds after observing for 10 minutes upon aircraft approach! +2008-08-13,35.0427778,-120.475,Nipomo,CA,oval,240,2 witnesses see a yellow light fly across the sky from Nipomo, CA at 1 in the morning on 08/13/2008. +2008-08-13,40.9219444,-74.3458333,Towaco,NJ,triangle,240,3 triangles flying in eerie silence... +2008-08-13,39.8016667,-89.6436111,Springfield,IL,cylinder,2,Object was hovering just below the clouds for about two seconds. Then the object just shot up in the air. Object was white, but looked +2008-08-13,37.9319444,-121.6947222,Brentwood,CA,oval,900,I observed an object in the north-easterly skies at approximately 4:30 pm on this Saturday. The object became evident when I was observ +2008-08-13,31.0747222,-96.1425,Cross Roads,TX,disk,900,I was outside around 8:00 PM playing frisbee with my dog. I happened to look up and was amazed to see an object in the sky with a short +2008-08-13,42.9105556,-76.7969444,Seneca Falls,NY,light,180,Orange globe in the sky +2008-08-13,33.9022222,-118.0808333,Norwalk,CA,light,300,Red Light Making Physically Impossible Movements for An Aircraft Witnessed By Three People. +2008-08-13,36.7536111,-120.3805556,Mendota,CA,light,180,three bright beams of light near highway, swooping and hovering, searching ground +2008-08-13,39.1652778,-86.5263889,Bloomington,IN,light,15,13 AUG 08, Bloomington IN, approximately 10 PM: Orange dot moving slowly below Big Dipper then very fast, up & down 5 times, then gone. +2009-08-13,34.8525,-82.3941667,Greenville,SC,cigar,30,Slow moving UFO through semi-cloud cover on the night of a meteor shower, most definatly not a meteor. +2009-08-13,43.2880556,-77.7936111,Hilton,NY,sphere,60,Blue headlights in the sky +2009-08-13,41.85,-87.65,Chicago,IL,light,60,It was 4:30 in the morning. Me and my friend were watching the Metorer shower. We noticed what we thought was a star in the sky was i +2009-08-13,29.4238889,-98.4933333,San Antonio,TX,unknown,3600,strange object of lights over san antonio, tx +2009-08-13,47.9252778,-97.0325,Grand Forks,ND,triangle,5,Triangle shaped UFO with 3 dots in each corner no lights, sphere and worm like object in sky +2009-08-13,41.6105556,-87.0641667,Chesterton,IN,light,2700,Was out looking at night sky for the comet. Saw a object like a star that kept changing color from blue red yellow to white. Looked l +2009-08-13,41.85,-87.65,Chicago,IL,triangle,150,Triangular aircraft, hovering, orange lights and no sound +2009-08-13,48.2325,-101.2958333,Minot,ND,triangle,5,3 orbs in triangle shape passed over an airplane, headed NW across Minot, ND. +2009-08-13,38.2541667,-85.7594444,Louisville,KY,triangle,60,2 sighting of UFO over Ford Plant in a week, Being trailed by another aircraft. +2009-08-13,38.545,-121.7394444,Davis,CA,unknown,1800,Bright white/red "star" like object far out in the western horizon, very erratic jerky movement while staying in the same relative posi +2009-08-13,37.9586111,-76.7583333,Warsaw,VA,circle,1800,Its zig-zag movements in the sky were like nothing I have ever seen before!! ((NUFORC Note: Sighting of Arcturus?? PD)) +2009-08-13,42.3211111,-85.1797222,Battle Creek,MI,circle,1800,Several Multi-Colored flashing crafts spotted in the skys of Battle Creek, Mi, definitely not any kinda plane Ive ever seen. +2010-08-13,36.3647222,-93.5677778,Berryville,AR,light,1800,Multiple colored star-like objects seen moving erratically in the south west sky above Arkansas +2010-08-13,42.1625,-71.0416667,Randolph,MA,light,180,orange light comes down, changes, turns, takes off +2010-08-13,42.1711111,-87.8444444,Deerfield,IL,light,300,Strange, bright, blinking object over Deerfield, IL. ((NUFORC Note: Possible sighting of Venus, we wonder. PD)) +2010-08-13,47.9544444,-117.4758333,Deer Park,WA,light,40,fast moving light filmed over deer park WA. +2010-08-13,47.3811111,-122.2336111,Kent,WA,triangle,2,On 8/13/2010 I was outside in my back yard watching the meteor shower when I noticed a triangular craft flying over in a east -northea +2010-08-13,26.1322222,-97.6308333,San Benito,TX,circle,540,Hovering circular-dohnut shaped object with red and green-blue light moving at an incredibly fast pace up and across the nightsky!!! +2010-08-13,44.6722222,-88.2425,Pulaski,WI,unknown,120,Bright flashes in sky +2010-08-13,48.1183333,-123.4294444,Port Angeles,WA,sphere,15,Two spheres of light observed dancing in the sky near Port Angeles, WA. +2010-08-13,47.8211111,-122.3138889,Lynnwood,WA,circle,60,Red light over Lynnwood, Washington during Perseid meteor shower. +2010-08-13,33.4936111,-117.1475,Temecula,CA,unknown,15,High altitude light that faded into two small points of light, slowly moving in tandem to the south. +2010-08-13,37.9994444,-79.8319444,Hot Springs,VA,changing,120,Low flying lights manouvering over treeline. +2010-08-13,41.7108333,-87.7580556,Oak Lawn,IL,light,120,Fast Moving Dim light Filmed going Past Bright Star +2010-08-13,34.2133333,-118.5711111,Winnetka,CA,light,40,Two halo balls of light hovering over an eagle in daylight. +2010-08-13,37.6922222,-97.3372222,Wichita,KS,oval,600,UFO sighting wichita kansas aug 13 2010 2 crafts amber color +2010-08-13,44.1719444,-72.6513889,Northfield Falls,VT,sphere,20,Glowing Sphere over Vermont Mountains +2010-08-13,47.04,-68.59,Eagle Lake,ME,circle,1200,Cirular craft that had lights making a full circle, and large dome light in center. +2010-08-13,37.2752778,-107.8794444,Durango,CO,light,300,On August 13, 2010 in Durango, CO. at approximately 10 PM my husband and I were out on our deck observing the Showers of Perseus when w +2010-08-13,47.7988889,-122.4969444,Kingston,WA,triangle,300,Two lighted black triangles North of Kingston, WA +2010-08-13,40.5430556,-74.3636111,Metuchen,NJ,other,20,3 swift moving dark eye-shaped attached segments of shimmering grey/silver fly abreast smoothly change to single file nnw to w +2010-08-13,42.8988889,-76.0163889,Pompey,NY,formation,120,Object seemed to be towing another object over Pompey +2010-08-13,47.2152778,-123.0994444,Shelton,WA,triangle,5,Silent object flying low over the trees +2010-08-13,46.2858333,-119.2833333,Richland,WA,unknown,10,Awoke by a vooming sound and shadow out window and looked in the sky and saw saw a fast moving object in the sky around 11:00 p.m. +2010-08-13,43.4097222,-70.9888889,Milton,NH,triangle,1800,Black Triangle/Pyramid shape craft flew across lake and directly over our car +2010-08-13,45.9933333,-123.9213889,Seaside,OR,other,25,Brown crescent shaped lights seen flying over a Seaside Beach in Oregon. +2010-08-13,33.5091667,-111.8983333,Scottsdale,AZ,teardrop,30,A small, low gliding disc shaped with a tail ufo was seen over Scottsdale. +2010-08-13,41.2586111,-95.9375,Omaha,NE,fireball,120,Orange Ball brightness of street light, low altitude, no sound, heading West then South, slow, lost visual. +2011-08-13,38.2494444,-122.0388889,Fairfield,CA,circle,300,Large amber colored orb by Travis Airforce base CA +2011-08-13,43.9747222,-75.9111111,Watertown,NY,unknown,240,I seen multiple objects with flashing lights, one flew over my house and over me and my girlfriend. +2011-08-13,34.1683333,-118.605,Woodland Hills,CA,teardrop,5,White teardrop like spark +2011-08-13,44.0805556,-103.2305556,Rapid City,SD,other,15,Gliding white soundless aircraft, shaped like a thin semi-circle +2011-08-13,34.5008333,-117.185,Apple Valley,CA,sphere,15,Large star like object , moving with a high rate of speed across the sky. +2011-08-13,47.5963889,-120.6602778,Leavenworth,WA,cylinder,300,Unusually short vapor trail +2011-08-13,41.6483333,-70.4816667,Mashpee,MA,circle,600,twenty ambers balls moving across the sky in pairs, shoot upwards then disappear. +2011-08-13,38.6172222,-121.3272222,Carmichael,CA,circle,600,Seen on YouTube - obviously person filming is in real surprise at seeing so many... +2011-08-13,40.4077778,-74.0347222,Atlantic Highlands,NJ,light,7,Unexplained light +2011-08-13,36.4541667,-83.5694444,Tazewell,TN,cylinder,20,bright white cylinder/cigar shape with a void between two equal halves +2011-08-13,39.7683333,-86.1580556,Indianapolis,IN,fireball,30,Fireball Indianapolis +2011-08-13,42.2411111,-88.3161111,Crystal Lake,IL,fireball,600,I witnessed unidentified lights in the sky. +2011-08-13,42.2411111,-88.3161111,Crystal Lake,IL,fireball,480,Strange "fireball" orbs sighted in Illinois +2011-08-13,28.3644444,-82.1961111,Dade City,FL,fireball,180,4 Red-Orange Orbs appear, move rapidly and soundlessly, then flicker out. +2011-08-13,32.7919444,-115.5622222,El Centro,CA,light,120,On 08/13/2011 around the time of 9:13 pm Saturday the same object was seen in the Imperial Valley, California. +2011-08-13,45.4944444,-122.8658333,Aloha,OR,light,240,Three red lights over Aloha Oregon +2011-08-13,33.4483333,-112.0733333,Phoenix,AZ,disk,20,Disk Shaped (Domed Saucer shape, with multicolored, animated lights around rim) +2011-08-13,43.0202778,-78.8805556,Tonawanda,NY,fireball,120,Fireball travelling steadily over Tonawanda, NY +2011-08-13,45.2627778,-94.1241667,Annandale,MN,light,300,Two distant orange lights hover, move slowly, maneuver, then disappear. +2011-08-13,41.8794444,-87.8136111,Forest Park,IL,changing,30,Black object tumbled northwest to southeast on 8/13/11, seemed to change shape. Very quick. +2011-08-13,39.3280556,-120.1822222,Truckee,CA,diamond,120,Very white, bright triangle shaped object seen near Truckee, CA 8/13/11. +2011-08-13,39.4830556,-88.3727778,Mattoon,IL,triangle,300,Six, red, bright, non-blinking lights that hoovered for minutes and disappeared. +2011-08-13,41.3875,-80.8694444,Bristolville,OH,light,900,Multiple orange lights were spotted forming several different patterns. +2011-08-13,41.6583333,-70.1291667,Dennis Port (Cape Cod),MA,unknown,600,Slow moving unusual brilliant liquid white like single object over Cape Cod +2011-08-13,42.8863889,-78.8786111,Buffalo,NY,fireball,240,three UFOs seen over Buffalo, NY +2012-08-13,35.2225,-97.4391667,Norman,OK,triangle,18000,Firey orange triangle-aprox. one hundred white spheres/orbs. and a triangle shaped craft with circles on each point. +2012-08-13,35.6527778,-97.4777778,Edmond,OK,formation,60,2 Steady moving lights that were similar to stars, one behind the other, traveling very fast and disapearing. +2012-08-13,37.3394444,-121.8938889,San Jose,CA,unknown,360,Two bright silent red lights coming in from west to east, ascending, light intensity increasing, headed west - and then disappeared. +2012-08-13,33.6305556,-112.3325,Surprise,AZ,disk,2,UFO enters atmosphere, turns into fireball, exits fireball. +2012-08-13,36.175,-115.1363889,Las Vegas,NV,circle,600,Circular object over Las Vegas, high altitude, controlled +2012-08-13,29.4238889,-98.4933333,San Antonio,TX,rectangle,900,Two black rectangular objects rotating in a consistent straight line heading West. +2012-08-13,30.3958333,-86.2288889,Santa Rosa Beach,FL,other,600,During family portraits in Seaside, Fl - I observed an unnatural shaped in the sky that ran from East to West for as far as I could see +2012-08-13,36.7477778,-119.7713889,Fresno,CA,changing,600,Fast moving small object. Appeared to change shapes at first. +2012-08-13,44.8011111,-68.7783333,Bangor,ME,light,120,Single light slowly moves across the horizon. ((NUFORC Note: Possible sighting of ISS?? PD)) +2012-08-13,42.5277778,-92.4452778,Cedar Falls,IA,formation,300,We were outside in a swing viewing the south sky, 4 lights appeared in a zig zag pattern hovering for 5 minutes or so. The lights of a +2012-08-13,28.0183333,-82.1130556,Plant City,FL,circle,300,Orange Gliding Objects in the Night Sky +2012-08-13,42.4361111,-123.1708333,Rogue River ( Wildcat Camp; Lower River),OR,light,15,August 13񫺜 Two orange spheres seen on the Rogue river in Southern Oregon +2012-08-13,43.1191667,-124.4072222,Bandon,OR,changing,300,8/13/2012 21:45 pm Bandon, Oregon star like craft hovers for 1 min. then bright color flashes and huge wall of flames pours out of it +2012-08-13,42.4391667,-123.3272222,Grants Pass,OR,other,120,Heard loud rumbling, followed by two bright oval shapes in the sky. +2012-08-13,43.4066667,-124.2230556,North Bend,OR,circle,300,Silent, golden orange orbs +2012-08-13,34.9186111,-95.3088889,Wilburton,OK,light,30,Large, very bright orange light seen close in Wilburton, OK. +2012-08-13,42.0675,-123.7019444,O'brien,OR,fireball,300,Orange Orb rumbling UFO over coastal mountains in southern Oregon +2012-08-13,38.8055556,-123.0161111,Cloverdale,CA,unknown,180,Two white lights appear and move in tandem then disapear after observing for 3 minutes +2012-08-13,35.7211111,-77.9158333,Wilson,NC,rectangle,14400,Small red and white lights hovering arond area for hours,comeing together as a triangle, moveing west with night fall +2013-08-13,42.4791667,-71.1527778,Woburn,MA,triangle,3600,Two triangle shaped crafts one with red & green lights the other white/violet lights. +2013-08-13,32.7152778,-117.1563889,San Diego (North Of),CA,circle,6,Round black object low over the 15 North by Escondido. +2013-08-13,42.5833333,-71.8027778,Fitchburg,MA,unknown,5400,Loud pulsating humming sound hovering over my house. +2013-08-13,36.175,-115.1363889,Las Vegas,NV,changing,7200,8/13/13 Three UFOs were spotted over Las Vegas, each object changed shape. +2013-08-13,32.7152778,-117.1563889,San Diego,CA,formation,2700,Formation of 3 objects over Garbage Beach in San Diego. +2013-08-13,42.3333333,-88.2666667,Mchenry,IL,unknown,60,Pulses of steady white light, 10 seconds apart, 10-15 degrees covered in 1 minute. +2013-08-13,47.4158333,-120.2919444,East Wenatchee,WA,triangle,120,3 lights in a triangle shape that were different color from the stars. +2013-08-13,42.7222222,-84.4275,Okemos,MI,circle,60,Full moon kind of object moving across the sky. +2013-08-13,41.4813889,-73.2136111,Southbury,CT,other,240,Southbury, CT, large black aircraft flying low near Woodbury, CT. +2013-08-13,21.5027778,-158.0236111,Wahiawa,HI,light,3600,Glowing and flashing lights over Waianae mountain range near Schofield. +2013-08-13,21.5027778,-158.0236111,Wahiawa,HI,light,3600,Glowing and flashing lights over Waianae mountain range near Schofield. ((NUFORC Note: Venus or Arcturus? PD)) +2013-08-13,29.7630556,-95.3630556,Houston,TX,light,180,Falling light then vanished. +2013-08-13,28.5380556,-81.3794444,Orlando,FL,disk,40,Large ufo sighting in Orlando, Fl. +2013-08-13,32,-80.8458333,Tybee Island,GA,fireball,120,Fiery red lights appear and disappear above the Atlantic, just off the coast of Tybee Island. +2013-08-13,45.6388889,-122.6602778,Vancouver,WA,light,600,2 lights alternating from blue to red moving strangely for about 10 minutes in night sky. +2013-08-13,26.1219444,-80.1436111,Ft. Lauderdale,FL,disk,120,Equal in size to 2/3rds of a football field. Bright orange/melon single lighting covering entire craft. Moved from ocean beach area 150 +2013-08-13,41.1575,-81.2422222,Ravenna,OH,sphere,30,Orange sphere hovering looked almost like fire +2013-08-13,47.6741667,-122.1202778,Redmond,WA,light,7200,Me and my husband and two kids went outside to check out the meteor storm and they sort of were in and out of the house but I stayed ou +2013-08-13,42.9980556,-78.1877778,Batavia,NY,light,900,Green lights over batavia ny +2013-08-13,45.8919444,-123.9602778,Cannon Beach,OR,circle,420,Dim white light went to a super white pulsed 3 blue luminated rings . after 30 seconds the lights retracted back tothe white light then +2013-08-13,42.4975,-94.1677778,Fort Dodge,IA,cigar,2,A Glimpse of Rarity. +2013-08-13,37.9255556,-122.5263889,Corte Madera,CA,light,10,Light object flashes then disappears over house. +1957-08-14,43.8486111,-73.4238889,Ticonderoga,NY,disk,15,UFO buzzed B-47 +1964-08-14,43.6613889,-70.2558333,Portland,ME,circle,3600,Several UFOs seen by many, reported on radio, 11PM Summer, 1963-1965 not sure of year. +1966-08-14,47.4830556,-122.2158333,Renton,WA,oval,120,Oval object seen circling a B-727 approaching landing at Boeing Field, Seattle Wa. +1968-08-14,32.6536111,-83.7597222,Byron,GA,disk,300,Craft sighting related to protection or surveillance of niaki missile base? +1972-08-14,41.2222222,-73.0569444,Milford,CT,circle,300,Childhood experience in Milford, CT +1977-08-14,38.7308333,-88.0852778,Olney,IL,triangle,60,Triangular fire balls in August evening sky +1978-08-14,43.4194444,-83.9508333,Saginaw,MI,formation,300,witnessed formation that came to a stop,turned suddenly went different way and disappeared +1979-08-14,37.9575,-119.1208333,Lee Vining (North Of),CA,disk,120,large saucer +1983-08-14,42.6458333,-85.2908333,Hastings,MI,other,60,Rural South West Michigan +1984-08-14,48.88,-115.0525,Eureka,MT,circle,900,Extra star in the Dig Dipper flew over the mountains North. +1986-08-14,37.8663889,-82.5388889,Inez,KY,chevron,120,IF USAF HAS IT THEY HAVENT TOLD NO ONE ! +1992-08-14,38.5788889,-122.5786111,Calistoga (7 Miles Outside Of),CA,triangle,600,Object was a black triangle with 3 spot lights in the corners, 100 yrds above the trees, hovering and silent. +1995-08-14,45.0052778,-122.7819444,Silverton,OR,triangle,300,Triangular_Precision_manuevering_1995 +1995-08-14,47.6741667,-122.1202778,Redmond,WA,light,1410,Re: washington sighting 1995 +1997-08-14,33.9311111,-117.5477778,Norco (River And Trail),CA,disk,45,I observed a shinny mettalic Disk Flying, across the clear blue sky. +1998-08-14,45.5947222,-121.1775,The Dalles,OR,fireball,90,I was laying in my bed looking through the window which faces to the west. When suddenly a bright orange ball of fire appeared. I watch +1998-08-14,48.2752778,-101.4283333,Burlington,ND,fireball,300,Fireball at Des Lacs and Souris River Forks +1998-08-14,47.6063889,-122.3308333,Seattle,WA,rectangle,18000,Large visible object on moon +1999-08-14,40.7608333,-111.8902778,Salt Lake City,UT,triangle,72,Silent and stealty +1999-08-14,39.9611111,-82.9988889,Columbus,OH,circle,900,I called the radar installation but they would not tell me if or what they saw in my area.I called during the object's persence. +1999-08-14,40.6936111,-89.5888889,Peoria,IL,other,60,Long pencil-shaped metallic color object, travelling at about the speed of a helicopter. +1999-08-14,30.3933333,-86.4958333,Destin,FL,triangle,1,While vacationing in Florida, I took a picture of a sunset. After the film was developed, an object was visible in the photo. +1999-08-14,43.0388889,-87.9063889,Milwaukee,WI,light,60,2 lights,moving EXTREMELY fast,one "chasing" the other.Second light suddenly u-turned & was gone. +1999-08-14,46.2858333,-119.2833333,Richland,WA,light,10,I saw a bright light appear directly above me in the sky. It was moving slowly and was not a shooting star or the lights on a plane. +1999-08-14,38.6683333,-94.2291667,East Lynne,MO,disk,5400,disk shaped object glowing bright as daylight +1999-08-14,45.9975,-121.5269444,Trout Lake,WA,light,20,A lower orbit satellite appearing object moving unusually slow for a satellite became a billiant orange ball 3-4 times it's original si +2000-08-14,39.2616667,-121.015,Nevada City,CA,sphere,1200,A red glow changing to blue green circular craft . This is the second idental spotted craft tonight 45 minutes apart. +2000-08-14,39.7391667,-104.9841667,Denver,CO,triangle,180,ufo setting over the denver tech center +2000-08-14,27.7705556,-82.6794444,St. Petersburg,FL,sphere,600,Translucent red globe dances with the clouds over St. Petersburg, FL. +2000-08-14,32.325,-92.2219444,Luna,LA,rectangle,10,I observed one black rectangular object flying at a high rate of speed with no lights, noise, tail, trail or wings. +2001-08-14,41.1594444,-81.4405556,Stow,OH,diamond,18000,this object looked like a star, but every few seconds it would flash red, and +2001-08-14,26.9338889,-80.0944444,Jupiter,FL,teardrop,1200,I was in bed. My wife woke me after seeing this bright hovering light in the eastern sky over the ocean. We live right off the beach in +2001-08-14,41.6833333,-86.25,South Bend,IN,rectangle,4,At 1342, a low flying, very fast, black coffin shaped UFO flys directly over my head and behind a treeline. +2001-08-14,41.5930556,-81.5269444,Euclid,OH,light,40,ufo over lake Erie +2001-08-14,45.5236111,-122.675,Portland,OR,other,900,US Shuttle being followed? +2001-08-14,42.4391667,-123.3272222,Grants Pass (Murphy Area),OR,light,120,Large bright light traveling low at a slow rate of speed with no sound +2001-08-14,45.6388889,-122.6602778,Vancouver,WA,light,300,light moving in erratic patterns and various speeds , Eastward bound. +2001-08-14,46.5927778,-112.0352778,Helena,MT,disk,2100,in august 2001 my entire family saw two formations of saucer-like objects form & unform over about 30-40 minutes +2001-08-14,36.1511111,-95.5091667,Inola,OK,diamond,900,west of highway 88 between the towns of inola, ok. and tiawah, ok. there was a flashing light of white and red at approx 45 degree ang +2002-08-14,47.3225,-122.3113889,Federal Way,WA,oval,180,Something I can't identify with.... it was the way that these objects moved that intrigued me!! +2002-08-14,36.595,-82.1888889,Bristol,TN,other,1200,Boomerang shape in daylight +2002-08-14,34.448055600000004,-119.2419444,Ojai,CA,other,15,A ship that glowed an emence blue with a long blue streak, about the size of a truck, and spead at about 6 g's. +2002-08-14,43.9144444,-69.9658333,Brunswick,ME,circle,120,Four of us saw an unrecognizable 'orb' silhouetted against the setting sun, c7:30 PM tonight in Brunswick, Maine. +2002-08-14,44.3033333,-70.12,Leeds,ME,circle,300,Orb against the setting sun. +2002-08-14,43.0480556,-76.1477778,Syracuse,NY,triangle,60,three bright lights sighting +2003-08-14,47.4019444,-122.3230556,Des Moines,WA,cigar,10,Viewed a grey hovering cylinder above SW Seattle +2003-08-14,40.6786111,-73.5894444,Roosevelt,NY,formation,300,UFO sighting on Long Island, the night of the blackout. +2003-08-14,47.5225,-120.4686111,Cashmere,WA,fireball,10,Green orb flew over Dawn Lee Court in Cashmere +2003-08-14,42.0986111,-75.9183333,Binghamton,NY,light,15,"STAR" makes a u-turn +2003-08-14,40.7141667,-74.0063889,New York City,NY,sphere,14400,Manhattan skyline UFO on night of the blackout ((NUFORC Note: Sighting of Mars?? PD)) +2003-08-14,33.4936111,-117.1475,Temecula,CA,unknown,4,Low flying lights pass from horizon to horizon at approximately 1000 ft altitude in less than 4 seconds. +2004-08-14,29.9938889,-90.2416667,Kenner,LA,light,1,Strange light +2004-08-14,30.4505556,-91.1544444,Baton Rouge,LA,circle,18000,circular, multi-colored, flat object ((Sirius??)) +2004-08-14,46.8083333,-100.7833333,Bismarck,ND,circle,3600,Large circular object with ports or windows giving off blue green to white lights extremely large, no movement. (Venus??)) +2004-08-14,37.6391667,-120.9958333,Modesto,CA,sphere,10800,A bright light just above the tree line appears every 3-4 days in the north eastern sky. From about 1:30am to 5:00am it gets brighte +2004-08-14,33.3869444,-84.2830556,Hampton,GA,light,900,light fading and reappearing ((Venus??)) +2004-08-14,37.3394444,-121.8938889,San Jose,CA,diamond,420,Three crafts flying southeast forming a tringle. +2004-08-14,37.6241667,-104.7797222,Walsenburg (Approx 20 Miles North Of),CO,circle,300,round object moving in and out of thundercloud, after flitting back and forth,sped north at high speed +2004-08-14,41.7958333,-87.9755556,Westmont,IL,disk,900,THE OBJECTED APPEARED FIXED IN THE SKY FOR 10 MINUTES UNTIL A SECOND OBJECT APPEARED AND MERGED WITH THE FIRST OBJECT +2004-08-14,41.1594444,-81.4405556,Stow,OH,light,300,Very bright light that was in the eastern horizon moving west, the light 'turned off' then reapered in the western sky seconds later. +2004-08-14,46.2113889,-119.1361111,Kennewick,WA,triangle,15,Black Triangle no sound unbelievable speed. +2004-08-14,45.5113889,-92.98,North Branch,MN,formation,60,Five objects rising slowly and quickly disappearing +2004-08-14,40.1672222,-105.1013889,Longmont,CO,triangle,3,3 bluish lights in a triangel shape streaked across the sky at a very high rate of speed. +2005-08-14,37.4947222,-120.8455556,Turlock,CA,light,3,lights in two formations: a group of 3 then an hour later a group of 5 lights +2005-08-14,34.8761111,-83.9583333,Blairsville,GA,sphere,10,GEORGIA UFO GROUP Report/Tom Sheets: Report of Minor Observation During MUFON of Georgia Skywatch +2005-08-14,34.0966667,-117.7188889,Claremont,CA,light,30,Three moving lights of planetary brightness. +2005-08-14,36.175,-115.1363889,Las Vegas,NV,circle,300,It was almost like we were being watched and once it knew we were aware of it's presence and that I was going for my camera, it took of +2005-08-14,28.4005556,-97.7480556,Beeville,TX,circle,120,Wierd light in the night sky vanishes like someone turned off the light switch. +2005-08-14,42.1816667,-87.8002778,Highland Park,IL,sphere,300,A red hazy object, faster than a plane and slower than a satellite, headed from the NE to the SW. +2005-08-14,27.7705556,-82.6794444,St. Petersburg,FL,cross,180,White Cross composed of 4 lights down and three across ocer my home in St. Petersburg Florida +2005-08-14,45.5236111,-122.675,Portland,OR,triangle,60,Triangle floated away. +2006-08-14,29.3836111,-94.9025,Texas City,TX,disk,1800,A friend of mine were returning to my moms home in Texas city, after departing his girl friends home in League City Texas. We spott +2006-08-14,40.2794444,-86.5108333,Frankfort,IN,disk,600,Bright Light In Frankfort INDIANA +2006-08-14,31.7147222,-83.2527778,Fitzgerald,GA,light,6300,Saw a light in the sky. thought it was a star, but me and another witness notice the obeject moving forward , zig zag , and it would ge +2006-08-14,33.4483333,-112.0733333,Phoenix,AZ,circle,1800,Objects were very high in the sky and moved irradically +2006-08-14,40.7141667,-74.0063889,New York City (Brooklyn),NY,rectangle,45,A square shaped object approached the Verrazano Bridge from the north, turned left, and eventually disappeared. +2006-08-14,41.5611111,-74.1888889,Walden,NY,circle,180,I spotted a orange glowing object and then it disapeard +2006-08-14,36.4613889,-77.6544444,Roanoke Rapids,NC,disk,30,there was a glowing bronze light... +2006-08-14,47.4236111,-120.3091667,Wenatchee,WA,fireball,1,saw huge "falling star" +2007-08-14,45.5236111,-122.675,Portland,OR,triangle,10,Glowing orange triangular object with orbs in each corner travelling south to north +2007-08-14,35.4675,-97.5161111,Oklahoma City,OK,triangle,10,Orange "V" shaped lights fly overhead without making a sound. +2007-08-14,35.2269444,-80.8433333,Charlotte (Matthews),NC,disk,180,Saucer shaped object hovers then suddendly dissappears, only to reappear again +2007-08-14,34.0752778,-84.2941667,Alpharetta,GA,light,120,Three strange lights moving irregularly close together and at high speed. +2007-08-14,38.9855556,-89.7638889,Williamson County,IL,sphere,300,A huge Sphere metallic shiny object in afternoon sky, +2007-08-14,38.2225,-85.3552778,Simpsonville,KY,sphere,300,I was travelling to work on Interstate 64 going West towards Louisville when I decided to snap a picture of the beutiful gray sky sunse +2007-08-14,44.3061111,-71.7705556,Littleton,NH,light,60,Bright flash of light, turning to pinpoint of light that traveled silently and quickly through night sky of NH. +2007-08-14,40.9644444,-76.8847222,Lewisburg,PA,other,120,Bright star disappears before my eyes and within two mintues large crescent shaped, dimly lit amber object flys silently overhead. +2007-08-14,44.1636111,-93.9991667,Mankato,MN,diamond,300,I saw a bright light in the sky in North East direction .I thought is it Mars which was supposed to be brightest in the sky once some y +2007-08-14,43.3772222,-73.6136111,Queensbury,NY,circle,30,I was watching the meteor shower with my parents when all of a sudden I saw, what I thought were stars, spin around each other probably +2007-08-14,39.8252778,-83.6344444,South Charleston,OH,triangle,60,Triangle with brilliant lighs all over it! +2008-08-14,38.7522222,-121.2869444,Roseville,CA,egg,480,Three crafts hovered over head, apparently examining me, then departed. +2008-08-14,35.3733333,-119.0177778,Bakersfield (40 Miles North Of),CA,unknown,60,I-5 UFO Sighting appox 40 miles north of Bakersfield +2008-08-14,47.6105556,-122.1994444,Bellevue,WA,light,120,one sighting, possibly sattellite. +2008-08-14,47.0075,-122.9080556,Tumwater,WA,light,300,Venus-sized blob of light transverses early morning sky +2008-08-14,30.2669444,-97.7427778,Austin,TX,unknown,120,White spinning object passed overhead in daylight. +2008-08-14,38.9822222,-94.6705556,Overland Park,KS,circle,45,i saw a orange ufo went for my stuff and it was gone +2008-08-14,47.6063889,-122.3308333,West Seattle,WA,oval,10,I was with my friends @ Camp Long and we saw an oval shaped black object that floated along @ an even pace for about 8 seconds. Then fl +2008-08-14,26.192777800000002,-97.5786111,Lantana,TX,circle,300,Lantana, TX, 8/14/2008, 8:05 pm, Red light, moved overhead slowly +2008-08-14,31.7586111,-106.4863889,El Paso,TX,teardrop,420,Two objects in sky over El Paso, Texas +2008-08-14,41.5833333,-87.5,Hammond,IN,unknown,900,Pulsating light making circles shooting out different colored balls leads to what looked like an explosion with a flume of smoke rising +2008-08-14,38.7138889,-121.4616667,Elverta,CA,rectangle,4,Large extremely fast moving object over Northern California on Thursday August 14th 2008. +2008-08-14,41.85,-87.65,Chicago,IL,light,7200,Weird Lights on the North side of Chicago 8/14/08 +2008-08-14,40.1063889,-75.1088889,Rydal,PA,fireball,30,My Grandfather was standing outside of our house waiting for me to return from driving to blockbuster when he calls me terrifyed to tel +2008-08-14,39.7472222,-79.3394444,Addison,PA,disk,10,Faint orange disc high in the sky that faded away and disappeared. +2009-08-14,47.6794444,-122.8969444,Brinnon,WA,circle,6,Fast moving round white light over Hood Canal, stopping and changing direction on a dime +2009-08-14,38.5816667,-121.4933333,Sacramento,CA,sphere,7200,FIVE UFO SIGHTINGS IN THE SAME PLACE FOR 4 NIGHTS STRAIGHT! +2009-08-14,45.1858333,-109.2461111,Red Lodge,MT,circle,1200,Bright white light - went on and off - drew circles +2009-08-14,46.6022222,-120.5047222,Yakima,WA,light,300,Twinkling light (not moving) in part of sky where no stars normally are at that time of the morning +2009-08-14,37.5297222,-122.0391667,Newark,CA,disk,300,it was spinning and the lights were red and yellow on them. half was yellow and half was Black. Red light on top. and travled spinning +2009-08-14,35.075,-85.0622222,Ooltewah,TN,sphere,300,White sphere seen observing aircraft laying "chemtrails" +2009-08-14,38.6822222,-104.7002778,Fountain,CO,other,480,The greenish glow has seemed to have an effect on me every time I think about it and its a good thing. +2009-08-14,44.1833333,-84.0352778,Skidway Lake,MI,disk,45,My wife, and family were sitting at the bonfire at our cottage. We observed a bright orange/yellow/red light approaching us from the so +2009-08-14,41.0030556,-87.9080556,Chebanse,IL,triangle,180,Huge triangle shaped object with spectacular lights zooming from the horizon to just about 12ft above ground and 500 ft away +2009-08-14,41.3163889,-73.0936111,Shelton,CT,light,180,3 seperate light hovering 15 degrees above the horizon in Shelton,CT. +2009-08-14,42.2625,-71.8027778,Worcester,MA,sphere,60,Very bright white spherical object flew over Worcester +2009-08-14,45.1244444,-92.6733333,Somerset,WI,unknown,600,Hovering bright white ufo, shot up, changed to red and blue blinking lighted and flew away very fast in a eratic path +2009-08-14,41.7472222,-73.1891667,Litchfield,CT,fireball,5,Sparkling green fireball shooting over Litchfield CT. ((NUFORC Note: Possible meteor, we suspect. PD)) +2010-08-14,43.3361111,-85.8108333,Grant,MI,light,1800,Bright light hoovering over the night sky, getting dim and bright at different times. +2010-08-14,48.1172222,-122.7591667,Port Townsend,WA,unknown,300,we were standing on the balcony and saw a row of 4 or 5 lights blinking simultaniously for around 5 minutes. it apeared to be traveling +2010-08-14,46.2113889,-119.1361111,Kennewick,WA,fireball,10,On the night of August 24th at 3:00 A.M. I observed to huge stationary fireballs in the sky over Kennewick, WA., to the east. +2010-08-14,34.7863889,-76.8594444,Newport,NC,light,1200,Moving object recorded in sky +2010-08-14,42.0333333,-87.8833333,Des Plaines,IL,other,1200,Black Helicopter over house. +2010-08-14,40.1488889,-79.5413889,Mt. Pleasant,PA,triangle,90,triangle craft near kecksburgh with a possible crash +2010-08-14,47.6472222,-120.07,Waterville,WA,oval,7,fast rice shaped craft seen +2010-08-14,34.1808333,-118.3080556,Burbank,CA,circle,600,I feel weird doing this but here it goes, object appeared to be metallic and shining a bright light on & off, it was hovering and for a +2010-08-14,34.0983333,-118.3258333,Hollywood,CA,disk,600,Black, saucer-shaped UFO over Hollywood hills and Griffith Park. +2010-08-14,40.6588889,-74.3477778,Westfield,NJ,fireball,900,Orange fireballs in New Jersey heading northeast. +2010-08-14,38.9794444,-90.9805556,Troy,MO,light,600,Possible UFO siting? Three bright orange objects... +2010-08-14,47.6063889,-122.3308333,Seattle,WA,formation,180,Seattle strange star-like objects +2010-08-14,40.0811111,-75.1897222,Wyndmoor,PA,triangle,20,Three balls rotating counter clockwise, shaped like a triangle, dull white moving rapidly from east to north by northwest +2010-08-14,40.26,-74.2741667,Freehold (Canada),NJ,egg,120,UFO spotted over Freehold, New Jersey. +2010-08-14,34.2163889,-117.4005556,Devore,CA,triangle,6,Ozz Fest Triangular shape UFO seen +2010-08-14,43.0125,-83.6875,Flint,MI,other,300,Fire around a fuselage looking object flying in the sky. +2010-08-14,43.9230556,-71.8925,Warren,NH,sphere,600,Golden orange orb or sphere shape object viewed from White Mountain National Forest +2010-08-14,43.9230556,-71.8925,Warren,NH,sphere,600,orange orb in northwestern sky-no sound-changed direction +2010-08-14,29.1869444,-82.1402778,Ocala,FL,light,2,I seen a blunt horizontal oval light streak through the sky then lifting up while in flight and turning red then blue and disappearing +2010-08-14,41.8238889,-71.4133333,Providence,RI,diamond,900,lights over providence +2010-08-14,43.8841667,-121.4375,Sunriver,OR,light,1800,Multi colored bright flashing light in WSW Sky as seen from about: N 43 49.49 & W 121 28.14 ((NUFORC Note: Venus?? PD)) +2010-08-14,47.8211111,-122.3138889,Lynnwood,WA,light,300,Dot of light moving quickly across the sky NNE to SSE and back a few minutes later S to NNE dir.. ((NUFORC Note: NotSatellite? PD)) +2011-08-14,45.7833333,-108.5,Billings,MT,light,240,Dogs woke me up close to midnight needing to be let out for a nature call. I went out on back deck facing east and sat to relax. I look +2011-08-14,43.0125,-89.2897222,Mcfarland,WI,unknown,180,saw an hovering object in the sky with blinking lights +2011-08-14,47.9891667,-108.6936111,Hays,MT,oval,1500,Hello, my UFO sighting occurred around 1:00AM at 8/14/11, and lasted for about 25 mins. Well, I was just about to fall asleep on the co +2011-08-14,47.3075,-122.2272222,Auburn,WA,flash,20,I SEEN A LIGHT THEN A FLASH AND IT WAS GONE. +2011-08-14,38.8966667,-121.0758333,Auburn,CA,circle,60,Bright circular lights flying threw the air in Auburn,Ca. MILITARY KNOWS. LOOK. +2011-08-14,37.2294444,-80.4141667,Blacksburg,VA,other,120,Satellite like object too bright and not blinking (not a craft) +2011-08-14,32.835,-116.7655556,Alpine,CA,other,300,Red and silver ball seen over mountain town of Alpine, CA. +2011-08-14,21.3155556,-158.0072222,Ewa Beach,HI,unknown,180,Weird red orbed flying light +2011-08-14,41.1305556,-85.1288889,Fort Wayne,IN,disk,14400,15+ a night flashing nights, streaks thru the night. Ships posing as stars PICS http://s819.photobucket.com/albums/zz112/itis33/8-5-201 +2011-08-14,37.7991667,-88.2611111,Ridgway,IL,fireball,30,while looking at the clouds at dusk, I saw a medium speed and altitude fireball traveling from SW to NE at an altitude of approx 5000ft +2011-08-14,41.8388889,-89.4794444,Dixon,IL,disk,20,UFO photo Dixon, Illinois August 14, 2011 +2011-08-14,30.2566667,-82.9027778,Houston,FL,unknown,300,UFO spotted in 3rd ward Houston hovering over Project Rowhouse community center +2011-08-14,29.5686111,-97.9644444,Seguin,TX,triangle,180,black triangle hovering near auxillary airfield in seguin texas +2011-08-14,45.07,-85.2644444,Central Lake,MI,light,1200,Bright orb moving quickly and 2 lights descending over trees +2011-08-14,44.5647222,-123.2608333,Corvallis,OR,light,90,White light far brighter than satellite drifts overhead and vanishes. ((NUFORC Note: Overflight of ISS?? PD)) +2011-08-14,43.7816667,-86.4330556,Pentwater,MI,fireball,120,Two instances of floating orange orbs over Lake Michigan. +2011-08-14,21.3155556,-158.0072222,Ewa Beach,HI,circle,120,Bright celestial object larger than a star +2011-08-14,43.9552778,-86.4525,Ludington,MI,circle,120,Big Bright Light +2011-08-14,43.4711111,-89.7441667,Baraboo,WI,fireball,180,4 to 5 Firey flying objects, stopping then fading away, 8-14-2011 11:18 P.M. Baraboo,Wisconsin +2012-08-14,39.8427778,-87.1113889,Guion,IN,flash,8,Brilliant flashing strobe like lights lasting 8 seconds or so in sky . +2012-08-14,44.6336111,-86.2344444,Frankfort,MI,light,180,Bright orange lights over Crystal Lake, Michigan, briefly hovering before shooting out of sight within a fraction of a second. +2012-08-14,41.0358333,-74.8786111,Stillwater,NJ,other,3600,Bright pulsating light intervals of approx 1-2 seconds each pulse lasting approx 3 seconds +2012-08-14,42.3583333,-71.0602778,Boston,MA,light,120,Two pin point lights trailing each other very quickly in a very non linear path +2012-08-14,29.4238889,-98.4933333,San Antonio,TX,sphere,120,Moved quick with no noise. +2012-08-14,36.5041667,-88.8741667,Fulton,KY,unknown,5400,I was sitting outside and seen lights in the sky behind the clouds , thought they may have been a reflection of cars headlights then wa +2012-08-14,45.1336111,-69.4336111,Parkman,ME,triangle,120,4 orangish lights in a straight line way up over the house +2012-08-14,39.9625,-76.7280556,York,PA,fireball,300,I saw a round orange object flickering like fire, It stopped, then made a right turn and headed away and faded into a cloud. +2012-08-14,42.4772222,-88.0955556,Antioch,IL,light,600,Reddish orange, large lights moving slowly from east to west. Linear, lighter center with pulsating orange/red on each side. +2012-08-14,41.6666667,-70.1852778,South Yarmouth,MA,cone,60,Irregular shaped gold outline with red light inside, with white hazy halo,silently traveling west to east, we said to each other &quot; +2012-08-14,47.4538889,-122.3205556,Seatac,WA,light,0.5,It was definately a UFO that was at 10:09pm or 10:10 pm south of seatac airport. +2012-08-14,44.5366667,-122.9058333,Lebanon,OR,light,900,Orange lights flying north to south dropping something and disappearing. +2012-08-14,48.0797222,-123.1005556,Sequim,WA,diamond,240,Colossal angular vessel gliding at low alt. over Olympic Peninsula, WA +2012-08-15,35.0166667,-81.8041667,Cowpens,SC,rectangle,300,THE DETAILS THAT I HAVE GIVEN ARE TRUE AND EXACT AND FACTUAL.PHILL +2013-08-14,39.4805556,-86.055,Franklin,IN,fireball,10,Fireball traversing laterally across the sky between Franklin and Bargersville. +2013-08-14,46.8219444,-123.095,Rochester,WA,flash,120,Flashes of light during meteor shower +2013-08-14,41.7188889,-83.7130556,Sylvania,OH,rectangle,180,Sylvania Sighting behind McCord Junior High. +2013-08-14,33.4483333,-112.0733333,Phoenix,AZ,light,180,Amber-Orange light over Phoenix. +2013-08-14,24.5552778,-81.7827778,Key West,FL,cigar,300,Large black cigar shape,no lights or sound. +2013-08-14,26.1272222,-80.2333333,Plantation,FL,light,240,Bright light goes dim and bright in equal sequince traveling frome South to North ata very hight altitude +2013-08-14,41.7141667,-72.6530556,Wethersfield,CT,sphere,3,Spherical object appears in sky above building, circles to the right and drops below roofline. video available +2013-08-14,35.4777778,-94.2216667,Alma,AR,fireball,300,2 Fireballs trailing an aircraft . making erratic movements one which was vertical . +2013-08-14,40.7966667,-81.5216667,Massillon,OH,triangle,600,Fireballs over Massillon, Ohio that formed a triangle and took off. +2013-08-14,44.0952778,-69.3761111,Waldoboro,ME,disk,10,A metallic disk with a red light on top flew slowly across the sky then disappeared. +2013-08-14,31.5622222,-89.4975,Seminary,MS,triangle,300,Saw a triangular, slow moving, and silent craft hovering above highway. +2013-08-14,33.3702778,-112.5830556,Buckeye,AZ,light,300,Lights over Buckeye near mountains. +2013-08-14,33.8158333,-78.6802778,North Myrtle Beach,SC,sphere,120,Large amber/orange sphere glowing above beach no sound, no blinking lights, sitting still for 1-2 min., disappeared into thin air. +2013-08-14,42.6861111,-72.0444444,Winchendon,MA,triangle,30,Only seen for a brief 30 seconds and they all traveled same speed and dissappeared at same time. +2013-08-14,41.6475,-88.0894444,Romeoville,IL,fireball,1800,Orange/Yellow/Red Sphere or Orb seen in Romeoville IL in night sky followed by low flying helicopters TWO seperate sightings. +2013-08-14,40.6083333,-75.4905556,Allentown (Upper Macungie Twsp),PA,triangle,600,12 bright orange flashing objects, coming east to west, in staggered formation, slowly disappearing in the sky in Upper Macungie Twsp. +2013-08-14,26.5216667,-82.1894444,Captiva,FL,oval,3600,SECOND SIGHTINGS OF GLOWING ELONGATED/FOOTBALL SHAPED UFOS WITH A DIRECT CORRELATION TO OUR NINTH SIGHTIN +2013-08-14,35.3733333,-119.0177778,Bakersfield,CA,light,600,Small white lights over BAKERSFIELD, CA +2013-08-14,38.8108333,-94.9269444,Gardner,KS,triangle,1395,The Object was Triangle Shaped, Had blinking colors of Red, White, Green, and Shaked as it tried to move as confirmed by 4 people. +2013-08-14,29.3777778,-95.1055556,Santa Fe,TX,fireball,240,2 stationary fireballs. +2013-08-14,42.9361111,-114.405,Shoshone,ID,light,60,Extremely bright light at a high rate of speed. +1937-08-15,34.0922222,-117.4341667,Fontana,CA,light,600,A cylinder light came on above us with no sound . +1947-08-15,35.9661111,-94.7772222,Proctor,OK,cigar,120,cigar-shaped, no sound, sub-sonic vibration +1948-08-15,40.0791667,-75.3019444,Conshohocken,PA,oval,15,my cousin (female) and friend (male) myself (male) app. age 10-12 yrs just finnished playing ball, laying on ground on our backs looki +1949-08-15,44.9033333,-93.5661111,Excelsior,MN,circle,300,large ball of brite light above pine trees lighting up the tops of trees.Almost directly above my father who took one photo.Then object +1949-08-15,37.9061111,-122.5438889,Mill Valley,CA,light,60,3 lights appeared, manuevering rapidly and at impossible flight angles, changing formation until winking out after little more than a m +1949-08-15,33.5833333,-86.7727778,Tarrant City,AL,circle,600,Glowing large orange ball in Alabama sky August, 1949. +1950-08-15,45.7805556,-119.2161111,Stanfield,OR,disk,180,In 1950, Eastern Oregon, I saw one silver, oval shaped disk hover for approximately 2 - 3 minutes before quickly accelerating away. +1951-08-15,40.5186111,-78.395,Altoona,PA,disk,1200,This a was metalic disk object that wobbled. The reflectioin the object made is what drew our attention. Jet aircraft appeared and obje +1952-08-15,35.9758333,-94.3175,Prairie Grove,AR,disk,20,Two observers saw silverish 30 foot disk maneuver above and below horizon at hover and supersonic speeds. +1952-08-15,39.3994444,-84.5613889,Hamilton,OH,light,480,Silent bright light passes overhead. +1953-08-15,38.2541667,-85.7594444,Louisville,KY,circle,10,I heard Them! +1953-08-15,39.3352778,-76.3905556,Bowleys Quarters,MD,sphere,240,The speed of these speres were unbelievable they held formation stationary then bursted one by one into space +1954-08-15,47.1855556,-122.2916667,Puyallup,WA,oval,2,The object was hovering above the treetops over the road a short distance in front of my car... +1955-08-15,28.7088889,-100.4991667,Eagle Pass,TX,cigar,600,Mr. Martin in 1955 has encounter with cigar shaped object in 1955 +1957-08-15,46.1383333,-122.9369444,Longview,WA,triangle,3,My uncle and I were standing outside on a warm summer evening. We were talking about unions and looking up at the stars. It was about +1957-08-15,42.16,-72.4763889,Ludlow,MA,cigar,300,Black silhouetted object against glow of distant town. Flashing light on one edge. Hovers then drops down out of sight. +1957-08-15,42.9813889,-70.9483333,Exeter,NH,disk,180,UFO Incident Exeter Newhampshire 1957 +1958-08-15,33.7947222,-83.7133333,Monroe,GA,oval,120,OVAL SHAPE SEEN IN OR AROUN 08/1958 IN MONROE GA +1959-08-15,33.3941667,-104.5225,Roswell,NM,unknown,2700,The experience left everyone in a quandry, and had the effect of trauma suffered. +1960-08-15,42.4647222,-71.0105556,Saugus,MA,circle,300,at ten years of age we looked at each other and said "that was no weather balloon ! +1960-08-15,42.2791667,-71.4166667,Framingham,MA,oval,1200,The UFO over WKOX Framingham ,MA +1961-08-15,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,30,I SAW A DISK LIKE OBJECT WITH MULTI COLORED LIGHTS THAT MADE NO NOISE. +1962-08-15,39.7391667,-104.9841667,Denver (East Of),CO,disk,1200,Large UFO hovering over a high line tower—Chased by Airforce Helicopters near Denver, CO in 1962. +1962-08-15,64.5638889,-149.0930556,Nenana,AK,oval,900,the object had a large spot light, shining straight down towards the groung. +1962-08-15,42.2708333,-83.7263889,Ann Arbor,MI,disk,300,I am not sure of the year. I was about 14 or 15 years old had been on a date with a young man I met at a church retreat. It was my firs +1963-08-15,39.2025,-94.4922222,Claycomo,MO,unknown,7200,I observd a dark stationary object very high in the sky that also glistend in the sunlight. +1964-08-15,38.6272222,-90.1977778,St. Louis,MO,fireball,10,fire ball over south county 1963 north to south +1965-08-15,35.9152778,-94.9697222,Tahlequah,OK,oval,120,A bright oval object, 50 to 75 feet in diameter, moved horizontally, stopped, and then descended behind a small nearby bluff. +1965-08-15,39.5994444,-88.6077778,Sullivan,IL,light,10,Unknown round white light swooped down at close range, stopped momentarily, and few away at lightening speed. +1965-08-15,42.4527778,-75.0641667,Oneonta,NY,oval,600,Large Illuminated Oval Disk - Oneonta NY - 1965 +1965-08-15,45.4872222,-122.8025,Beaverton,OR,cigar,5,This was when i was @6y/o, I lived at the end of a mile long dead end road in rual washington co.Oregon.Surronded by wheat fields and w +1965-08-15,41.3175,-81.3455556,Aurora,OH,sphere,120,Observed at close range hovering red glowing sphere 15 to 20 feet above the ground in wooded swamp area in Aurora +1965-08-15,42.4972222,-82.9372222,Roseville,MI,disk,600,Mother and daughter have a close encounter with a slow, low classic saucer. +1965-08-15,40.4166667,-86.8752778,West Lafayette,IN,disk,300,Saucer, slow speed, rotating, red blinking lights, approx. 75' diameter, 7 miles SE of Purdue Univ. +1965-08-15,34.1544444,-99.2647222,Vernon,TX,light,2700,Orange/Red Light in sky defies laws of physics. +1965-08-15,41.2913889,-87.4205556,Lowell,IN,fireball,1800,At least 12 witnessed at close distance a red fiery orb in the night sky for 30 minutes that was not like anything we had ever seen. +1965-08-15,41.2913889,-87.4205556,Lowell,IN,sphere,1800,A hovering ball of white light, that was able to travel quickly and turn instantaneously. +1966-08-15,43.1547222,-77.6158333,Rochester (Outside Of),NY,other,600,they just seem to fly out of the west sky stop and then they were gone and no we were not on drugs, +1966-08-15,42.9783333,-78.8,Amherst,NY,disk,1200,Saucer over house in Amherst NY 1966 quiet whirring sound +1966-08-15,40.9477778,-90.3711111,Galesburg,IL,disk,1200,Huge Disk Hovering Over Neighbor's Home +1966-08-15,47.6063889,-122.3308333,Seattle,WA,disk,1800,Summer 1966, 10:30pm, 4 witnesses, round/dome shape object appeared , approached then hovered in the sky approx. 200' approx 15 mins. +1967-08-15,35.0844444,-106.6505556,Albuquerque,NM,cigar,1800,three terrified kids +1967-08-15,42.5791667,-71.4383333,Westford,MA,unknown,1200,It appeared to be a satellite until it descended over us at a low altitude and just hovered at 500ft until it ascended and continued on +1967-08-15,47.4705556,-122.3455556,Burien,WA,light,120,Lights move at incredible speed over Puget Sound. +1967-08-15,40.9977778,-72.2930556,Sag Harbor,NY,sphere,60,Silent green globe sighted within 200 feet! +1967-08-15,37.9575,-119.1208333,Lee Vining,CA,disk,1200,A large silent circular object hovered above our campsite blocking out 75% of the starry sky. +1968-08-15,30.2669444,-97.7427778,Austin,TX,disk,15,Early morning in August, several of my teenage neighbors and I were waiting for one more person to show up, in order to begin our paper +1968-08-15,40.5363889,-80.1847222,Sewickley,PA,cigar,120,Stationary high altitude, airliner sized wingless cigar shape +1968-08-15,38.6994444,-75.6152778,Cannon,DE,oval,1800,ONE OVAL DARK GRAY OBJECT THAT HOVERED ABOVE IN THE SKY. +1968-08-15,40.1105556,-75.85,Church Hill,PA,sphere,900,Silver sphere flew overhead at high altitude with two delta-wing fighters in pursuit. +1968-08-15,40.8338889,-80.5405556,East Palestine,OH,disk,5,Looked like a typical flying saucer silver in color. lights on bottom.less then 100yds on ground maybe 200 ft up in the sky. flying nw. +1968-08-15,34.0552778,-117.7513889,Pomona,CA,light,600,A bright star grew larged and exploded in the sky and faded away in a ten minute period. +1968-08-15,36.0725,-79.7922222,Greensboro,NC,disk,120,We were close enough to see windows +1969-08-15,38.775,-95.1861111,Baldwin City,KS,circle,8,object moved in fashion against all laws of physics. 90 degree instant turn. the entire object was dot of light. +1969-08-15,40.3266667,-78.9222222,Johnstown,PA,triangle,600,WHAT I SAW WAS MUCH LIKE THE SIGHTING IN MILLSTADT, ILL...ONLY ALL I COULD MAKE OUT WAS THE MOVING LIGHT FORMATION..SLOWLY MOVING HORO +1969-08-15,40.9463889,-73.0697222,Port Jefferson,NY,disk,3600,Metallic Disc hovers high over commercial jet traffic. +1969-08-15,32.7947222,-116.9616667,El Cajon,CA,other,7,A creature crossed my path and ordered me not to hurt it, as I was driving at the time. +1969-08-15,44.1580556,-72.4508333,East Barre,VT,cylinder,480,Fast moving but in jerky stops and starts +1969-08-15,42.2711111,-89.0938889,Rockford,IL,other,180,Seen an object in the sky that appeared to be an old World War II plane, buy wasn't! +1969-08-15,36.8022222,-120.0152778,Biola,CA,cigar,180,It was long cigar shaped about 500 feet long with the under side giving off a bright white light. +1969-08-15,35.2597222,-118.9133333,Lamont,CA,formation,5,9 to 13 objects in "V" formation travelling about 100 mi per second graze ionosphere. +1970-08-15,39.2775,-74.575,Ocean City,NJ,disk,600,1970 sighting of two disks flying with U.S. military formation at New Jersey shore. +1970-08-15,41.49,-71.3133333,Newport,RI,rectangle,120,Craft hovering about a half-mile over my head +1971-08-15,39.7091667,-84.0633333,Beavercreek,OH,light,30,Light chashing USAF transport. +1971-08-15,45.9047222,-122.7427778,Woodland,WA,light,15,Three very bright, extreamly fast globes of white light +1972-08-15,46.9966667,-120.5466667,Ellensburg (South Of)),WA,circle,7200,Very large UFO sighting south of Ellensburg WA. Multiple following sightings. +1972-08-15,37.2708333,-79.9416667,Roanoke,VA,circle,120,Children see hovering craft above house +1973-08-15,32.7152778,-117.1563889,San Diego,CA,unknown,120,Identical to that described Thursday 4/6 on Art Bell. Intense overhead close noise shaking the earth +1973-08-15,40.6936111,-75.1905556,Phillipsburg,NJ,disk,900,unreported object hovered over river for approx. 15 min. and no one talks about it, no reports in the newspapers +1973-08-15,32.9263889,-96.8958333,Farmers Branch,TX,disk,900,Slowly rotating car tire shaped object (no hole) rotated slowly 100 feet off the golf course surface, had port holes. +1973-08-15,44.3955556,-69.5716667,South China (Three Mile Pond),ME,sphere,1200,Bronze, bright, silent light moves south to east over a lake in Maine. +1973-08-15,38.1055556,-98.6597222,Hudson,KS,triangle,1200,Three redish\orange arrowhead shape craft. +1973-08-15,38.9777778,-77.0077778,Takoma Park,MD,sphere,300,Three white crafts sped off one after another in different directions faster than any jet plane i have ever seen +1973-08-15,42.3886111,-79.4413889,Brocton,NY,disk,1200,saucer sighted cruising over grape fields, low hum like sound, looked out window as it slowly made its way over house, lights on unders +1974-08-15,41.1536111,-81.3580556,Kent,OH,disk,240,large disc shaped metalic craft, hoverd and moved with no sound in August 1974 +1974-08-15,42.4075,-124.4205556,Gold Beach,OR,circle,30,Ball of light shining a cone of light on the beach. +1974-08-15,43.0944444,-79.0569444,Niagara Falls,NY,triangle,120,triangular craft moving just above the tree tops and telephone lines. Seen but different witnesses a block apart at the same time. +1974-08-15,47.3486111,-122.3222222,Redondo,WA,disk,600,Silent disc floated over hill, stopped over pier restaurant, circumfrances lights lit, rotated for approximately 10 minutes. +1974-08-15,25.7738889,-80.1938889,Miami,FL,cigar,300,Close Encounter with a large cigar shaped UFO. +1974-08-15,41.1538889,-80.7016667,Girard,OH,unknown,120,this incident happened a long time ago. we witnessed a ufo come above a army reserve helicopter. I didn't focus so much on the ufo as +1975-08-15,41.5102778,-112.0147222,Brigham City (West Of),UT,disk,480,Orange glowing Saucer terrorized Cowboy his cowdog and four horses.weeks later a rangefire in spot where saucer last seen. +1975-08-15,38.5063889,-118.1805556,Luning (Closest Town),NV,disk,900,the color size, and the being looking out the window of the ufo at us +1975-08-15,35.1894444,-114.0522222,Kingman,AZ,cylinder,180,stationary rocket shaped approx. 6 levels of windows,some lit. setting horizontal in sky. no noise.1/4 mile away.mountain background, p +1975-08-15,29.4233333,-82.2169444,Orange Lake,FL,disk,15,gray shaped like 1/3 ball top of disk rotated but not 360 degrees it roated clockwise then counter clockwise several degrees moving ver +1975-08-15,42.5583333,-70.8805556,Beverly,MA,disk,120,Large hovering disk with lights over Beverly Commons Cemetary +1975-08-15,33.7688889,-89.8083333,Grenada,MS,disk,1800,3 UFO's over Grenada Lake; Mississippi +1975-08-15,36.1325,-88.5186111,Mckenzie,TN,cone,300,Observed two shiny objects which resembled a child's top flying west to east in the twilight. +1975-08-15,43.2463889,-78.1938889,Albion,NY,cigar,300,This craft was not from this Earth. +1975-08-15,43.0513889,-83.3188889,Lapeer,MI,other,180,Helicopter shaped object with twirling red & yellow lights over head, 150' above ground and running silent. +1975-08-15,38.9194444,-97.3708333,Solomon,KS,fireball,15,very clear night, came from west to east directly above trees across street from where I was standing, it stopped twice as it traveled +1975-08-15,39.4666667,-87.4138889,Terre Haute,IN,circle,180,Smoke ring type cloud seen moving rapidly north +1976-08-15,39.8633333,-94.7569444,Avenue City,MO,light,172800,balls of bright light with consciousness +1976-08-15,33.5205556,-86.8025,Birmingham,AL,disk,300,I HEARD YELLING AT THE APARTMENT BELOW US, SAYING "LOOK !, LOOK !" I WENT TO THE LIVING ROOM WINDOW AND PULLED BACK THE DRAPES AND SAW +1976-08-15,34.6136111,-120.1916667,Buellton,CA,other,300,Stealth looking glider hung 20 feet over our house for a minute or so +1976-08-15,42.5847222,-87.8211111,Kenosha,WI,triangle,600,triangular object,white lights in pyramid rows.very high in sky,half the size of the united states.watched object for 10 minutes. +1976-08-15,42.2505556,-83.1786111,Lincoln Park,MI,circle,300,3 round lights in the sky +1976-08-15,40.1741667,-75.1072222,Hatboro,PA,sphere,600,Glowing Orb with 2 satellites circling +1976-08-15,41.3308333,-71.7555556,Weekapaug,RI,formation,5,Three globular lights in a tight triangular formation passed east to west at low altitude +1976-08-15,27.6916667,-82.7236111,Tierra Verde,FL,changing,300,Watched rectangular shaped amber colored UFO perform S turns, change shape and exit atmosphere at impossible speed and left an ion trai +1977-08-15,45.0883333,-93.7341667,Rockford,MN,unknown,7200,This is no joke I'm 47 years old have a good business +1977-08-15,33.9166667,-117.8991667,Brea,CA,light,25,A light emitted other other lights +1977-08-15,41.3436111,-86.3097222,Plymouth,IN,light,7200,Very bright light; the light seemed maganetically attached to our plane; followed us on the ground. +1977-08-15,41.7213889,-85.8175,Bristol,IN,sphere,30,Large Orange Glowing Orb Witnessed in August of 1977 or 1978. +1977-08-15,46.8605556,-68.0125,Caribou (Rural Suburb Of),ME,light,10,I observed a green,circular light travel across my field of view while near a potato field at night. +1978-08-15,34.2694444,-118.7805556,Simi Valley,CA,fireball,1800,There were multiple objects that hovered and accelerated at lightning fast speed. +1978-08-15,42.5377778,-83.2330556,West Bloomfield,MI,flash,5,Flash -Red Beam - Green Beam - Flash +1978-08-15,40.1672222,-105.1013889,Longmont,CO,rectangle,900,Black triangle monolith passed over Longmont, Colorado in the summer of 1978 +1978-08-15,44.0216667,-92.4697222,Rochester,MN,unknown,1800,Streaking white dots +1978-08-15,34.0141667,-86.0066667,Gadsden,AL,sphere,600,3 ft. dia tan colored spherical object manuveing at 120+ knts. +1978-08-15,30.4511111,-94.8430556,Romayor,TX,fireball,3,I shot a cloaked UFO and the fire ball was the bullet disrupting the cloaking field. +1978-08-15,47.3483333,-122.1136111,Covington,WA,disk,600,Flying Saucer seen in Covington / Kent, Washington 1978 +1978-08-15,40.2338889,-111.6577778,Provo,UT,disk,20,I realize that it has been 30 years since our sighting (my wife and I)but. hopefully it will be of use to you... we drove to Provo cany +1978-08-15,33.8916667,-87.5261111,Carbon Hill,AL,triangle,240,A large triangle shaped craft, close to the ground, with no sound, at all. +1978-08-15,32.4486111,-81.7833333,Statesboro,GA,light,420,In 1978 I saw six star-like objects sit stationary in the sky and then take off at an extremely high rate of speed +1978-08-15,35.2422222,-87.3347222,Lawrenceburg,TN,cigar,120,Cigar shaped craft - 30 years ago - technology still cannot be explained +1978-08-15,36.7280556,-76.5838889,Suffolk,VA,circle,7200,Drove up to downed ship. +1978-08-15,43.8486111,-73.4238889,Ticonderoga,NY,triangle,10,Triange shape,no noise,huge,pink lights. +1978-08-15,42.6733333,-72.8222222,Heath,MA,circle,120,Parked in car on isolated road, object with flashing lights desended over the car. +1978-08-15,40.3697222,-80.6341667,Steubenville,OH,disk,600,My former neighbor and I were driving to a campsite in a rural area around Steubinville. As we turned onto the dirt road that led to t +1979-08-15,33.9319444,-117.9452778,La Habra,CA,oval,1800,OVAL ORANGE AND GREEN UFO OVER LA,HABRA CA. 90631 +1979-08-15,37.6486111,-118.9711111,Mammoth Lakes,CA,circle,10,I saw a rolling ball of fire in the sky 500 ft off the deck traveling at 80-100 mph. +1979-08-15,37.3433333,-85.3419444,Campbellsville,KY,oval,60,08/15/79 Campbellsville Ky oval shaped 1 min. oval shaped ship moving slow in the sky 10/02/05 +1979-08-15,47.4236111,-120.3091667,Wenatchee,WA,triangle,8,Huge silver ship passed slowly overhead, silently heading for impact with a mountain. It simply vanished. +1979-08-15,39.5861111,-74.2238889,Beach Haven Terrace (Long Beach Island),NJ,fireball,5,Fireball flying parellel with the horizen,then exacuting a 90 deg. turn over the horizen.The setting; approx. 10:10pm on Long Beach +1979-08-15,39.1433333,-77.2016667,Gaithersburg,MD,circle,120,silver gold disc flew over Montgomery County Fairgrounds left to right, did a 90 degree upwards and disappeared +1980-08-15,41.5716667,-101.6911111,Arthur,NE,light,900,arthur nebr lights!!!!!! +1980-08-15,44.0583333,-121.3141667,Bend,OR,unknown,600,Bright round object seen at night, shot upward at a 45% angle, then got dimmer and dimmer until it faded away. +1980-08-15,40.0591667,-74.1375,Bricktown,NJ,formation,1200,Formation observed flying over Lakehurst Naval Air Warfare Station, Lakehurst, New Jersey +1980-08-15,40.5813889,-79.5666667,Apollo,PA,sphere,900,2 objects, one spherical and huge, the other even larger followed after only a moment or so. Second object appeared to be very high and +1980-08-15,42.3313889,-83.0458333,Detroit,MI,disk,600,Disc sighting in Detroit +1981-08-15,42.3702778,-87.9019444,Gurnee,IL,unknown,1200,Five UFO's over Gurnee, Waukegan IL area +1981-08-15,40.3697222,-109.3341667,Jensen,UT,cylinder,360,I saw something in the Utah sky in 1981. It's a relief to tell someone! +1981-08-15,47.8627778,-121.8152778,Sultan (Sultan Basin),WA,unknown,300,Close incounter over Sultan Basin +1981-08-15,30.3319444,-81.6558333,Jacksonville,FL,sphere,90,round metallic object with three white lights hovering at tree top level made no noise left at high rate of speed +1981-08-15,38.1113889,-91.7602778,Vichy,MO,unknown,180,8/15/1981, 9:00pm, vibrating/humming/revolving/digital sounds, lasted 1-3 minutes, posted 2/15/09 +1981-08-15,33.6602778,-117.9983333,Huntington Beach,CA,triangle,600,Large craft , triangle shaped,very bright white lights/prism , forward/backward/90deg turns/hoovered ,at night over a city +1981-08-15,40.0311111,-81.5886111,Cambridge,OH,unknown,1200,Multiple objects of differing size and possible jet intervention seen in late evening sky over rural area of Ohio, early 1980's. +1981-08-15,30.2944444,-81.3933333,Jacksonville Beach,FL,changing,28800,During a period of several nights, points of light moved over and under the ocean water in various formations, which were later reveale +1982-08-15,41.551944399999996,-81.4786111,Highland Heights,OH,teardrop,180,It was a warm night, i was at work. i walked a coworker out to the parking lot to his car. Told him good night. Is stood in the parking +1982-08-15,40.2202778,-74.0125,Asbury Park,NJ,sphere,1800,Three Unknown Sheres not of this world had a close detailed over view of them will never forget it +1982-08-15,39.6030556,-74.3405556,Tuckerton,NJ,sphere,600,I was working in the casino industry at that time and was coming home from work that morning. We lived on the water next to Absecon Bay +1983-08-15,38.7072222,-121.28,Citrus Heights (Sacramento Area),CA,disk,300,Witnessing what I saw that summer day in Sacramento still leaves me in awe. My sisters and I saw an immense object hovering very close +1983-08-15,40.0488889,-74.5627778,Cookstown,NJ,triangle,1200,I believe my account above is complete & I herein swear to it's validity. +1983-08-15,41.7636111,-72.6855556,Hartford,CT,fireball,2,fireball at night went under car on highway. +1983-08-15,41.2588889,-73.6858333,Katonah,NY,triangle,600,Driving along Rt.22 approaching the old Cherry Street Bridge, we were the sole witnesses of a craft that hovered silently only 100ft. a +1983-08-15,37.5336111,-77.1213889,Quinton,VA,other,360,Strange winged craft that shown a very bright light on us. +1983-08-15,42.0944444,-91.8691667,Shellsburg,IA,triangle,10800,Black v shape no sound verry slow and low +1983-08-15,41.2366667,-73.695,Bedford Hills,NY,chevron,600,Observed a huge black bommerang shaped UFO the size of 2 football fields hovering & moving slowly over the prison. +1983-08-15,32.4608333,-84.9877778,Columbus (Near, At Fort Benning),GA,disk,900,Army soldiers see object over Fort Benning, Georgia +1984-08-15,28.4055556,-80.605,Cape Canaveral,FL,light,900,Two bright objects in the night sky in Cape Canaveral, FL. +1984-08-15,39.8772222,-75.065,Haddon Heights,NJ,triangle,8,A black, noiseless, lightless, fast, triangular shaped object flew over our heads in NJ in 83'/84'. +1984-08-15,41.2083333,-73.8916667,Croton-On-Hudson,NY,sphere,1200,craft glided over houses. Seemed to be just above tree line but it was huge so hard to tell how high. Silent. Slow. Many saw it. Police +1984-08-15,43.2991667,-73.6355556,South Glens Falls,NY,cigar,300,We saw a cigar-shaped object fly and then land. +1984-08-15,41.0533333,-73.5391667,Stamford,CT,disk,120,Dear Mr. Davenport, I heard you on the Clyde Lewis Show on March 27th, 2014 and I was so elated to hear you wanted UFO experiences of t +1984-08-15,41.3972222,-73.6175,Brewster,NY,chevron,1200,Astoundingly wide Chevron or "flying V" with 7-9 piercing white lights that fade to red as it goes behind trees. Moves slow & quiet. +1984-08-16,45.4386111,-88.6602778,Wabeno,WI,other,300,My brother and I saw a football shaped object hovering above the tree tops. +1985-08-15,41.3116667,-81.5683333,Sagamore Hills,OH,rectangle,300,I saw a rectangular football field size object, covered underneath with dozens of colorful lights, gliding over the trees and road. +1985-08-15,48.1988889,-122.1238889,Arlington,WA,triangle,900,Close Call with Huge Triangular Craft +1985-08-15,40.9730556,-117.7347222,Winnemucca (North Of),NV,other,420,Big black crystal w shiny top panel hovering high over mountain N of Winnemucca noontime Aug ྑ +1985-08-15,33.0416667,-116.8672222,Ramona,CA,formation,900,3 bright shiney luminecent like objects houvering in the horizon over san diego 1985. +1985-08-15,44.8113889,-91.4983333,Eau Claire,WI,cigar,300,bright light graduating from middle of craft from dim to bright at top. two strong outboard lamps +1985-08-15,29.7630556,-95.3630556,Houston,TX,triangle,60,Enormous triangular craft. No lights, no noise. +1985-08-15,33.5927778,-79.0088889,Garden City,SC,circle,7200,6 equal size round amber colored lights equal distance apart, stationary for at least 2 hours. +1986-08-15,41.2230556,-111.9730556,Ogden,UT,cigar,900,Early afternoon siting of cigar shapped object, August 1986, Pineview Reservour, Ogden Utah +1986-08-15,47.6588889,-117.425,Spokane,WA,triangle,300,Triangular Craft on Dishman Mica Road - Spokane, WA +1986-08-15,47.6063889,-122.3308333,Seattle,WA,disk,60,Disk with 7 red lights moving like a wheel +1986-08-15,45.3002778,-122.9719444,Newberg,OR,triangle,1800,tranguler sighting on the west coast , lights , fast moving at times and chased by the airforce +1986-08-15,40.8305556,-84.9291667,Decatur,IN,sphere,30,white lighted ball shape ufo hovering slowly above tree tops, no sound +1987-08-15,36.6844444,-121.8011111,Marina,CA,other,1800,Looked like an asteroid--maybe a near miss? +1987-08-15,33.7211111,-85.1455556,Bremen,GA,disk,1,I saw a disk-shaped craft with blinking lights of all colors right outside my window! +1987-08-15,34.7575,-112.4530556,Chino Valley,AZ,sphere,18000,3 witnesses of 3 flying objects at close distance and several hours of lost time. +1987-08-15,40.3611111,-83.7597222,Bellefontaine,OH,rectangle,900,Rectangular object moving very slow +1987-08-15,42.3316667,-71.1216667,Brookline,MA,triangle,7,Black triangular object flying low over Brookline MA in August 1987. Made no noise, had no lights. +1987-08-15,36.2819444,-118.0055556,Olancha,CA,disk,1200,In re to; Call I placed to you on 04-30-04 at 10;20 am. Note ; {unabe to enter date in report form}. Dear Mr. Davenport. Thank you for +1988-08-15,34.7152778,-81.6238889,Union,SC,disk,300,Saucer like craft followed me home from work and hovered over our home while my wife and I watched.. +1988-08-15,38.7838889,-90.4811111,St. Charles,MO,oval,120,I saw a small, oval shaped craft in St. Charles, Missouri during the summer of 1988. +1988-08-15,35.0525,-83.1969444,Highlands,NC,rectangle,2700,we were driving down the main st. of town.it was huge! drifting over a building at one end of town the lights in town dimmed then went +1988-08-15,40.7758333,-74.6011111,Mendham,NJ,fireball,30,I saw an orange fireball pass through the woods and cross the road ahead of me +1988-08-15,31.7777778,-91.4377778,Azucena,LA,diamond,1200,Huge ship, with colored lights placed in this diamond-shaped pattern on its underside, one light protruding from the center +1988-08-15,37.595,-120.9566667,Ceres,CA,triangle,900,Five small triangular craft hovering then moving slowly above Ceres, CA. +1988-08-15,42.8947222,-70.8716667,Seabrook,NH,triangle,240,6 lighted triangles floating independently in a line moving slowly +1988-08-15,40.5686111,-75.095,West Milford (Upper Greenwood Lake),NJ,light,420,Two white orbs of light flew into the sky, stopped for a few minutes, then flew away in a very quick hyper speed together. +1988-08-15,41.2619444,-73.9386111,Buchanan,NY,circle,60,UFO over nuclear reactor- 14 helicopters around it +1989-08-15,39.7686111,-94.8463889,St. Joseph,MO,light,20,orange florecent or glowing light the shape of a doorway seen above large tree , and feeling like something happened to us. +1989-08-15,30.0463889,-94.885,Dayton,TX,sphere,60,Texas, 1989, Orb in upper Earth atmosphere--ridiculous movements--impossible speeds +1989-08-15,35.0525,-83.1969444,Highlands,NC,other,300,Large low altitude object seen by many in NC mountains as lights went out. +1990-08-15,33.7825,-117.2277778,Perris,CA,triangle,5,Incredible flying triangle of immense proportions with unbelievable speed and eerie stealth! +1990-08-15,32.6730556,-97.4602778,Benbrook,TX,triangle,360,Large triangular black craft with tiered colored party type lights, Motionless, noiseless over Lake Benbrook, Texas. +1990-08-15,33.0416667,-116.8672222,Ramona,CA,unknown,300,I live in Tokyo, Japan and was on vacation visiting my family in Ramona, California. I went outside to have a smoke, as my mother and f +1991-08-15,40.7536111,-86.0688889,Peru,IN,egg,900,UFO - 15 feet away and scared to death. +1991-08-15,37.1230556,-120.2591667,Chowchilla,CA,disk,259200,When I was 16 years old I worked on my Dad’s vineyard. The ranch was a large ranch, almost 1000 acres, and was out in the middle of now +1991-08-15,37.7861111,-82.7936111,Hagerhill,KY,cigar,30,No words to explain it or prove it,but really was something to see. +1991-08-15,41.6638889,-83.5552778,Toledo,OH,light,60,A point of light moving in a very unconventional flight path. +1991-08-15,46.5436111,-87.3952778,Marquette,MI,egg,2,I was on the second floor deck, looked up for stars, craft went right over me, just above tree tops, no lights, covered mile to power c +1992-08-15,38.4088889,-121.3705556,Elk Grove,CA,other,45,Lime green trapizoidal light beaming onto back of house from rectangular source above house, physical evidence left. +1992-08-15,40.3641667,-74.9516667,New Hope,PA,triangle,300,Large Triangle +1992-08-15,29.6236111,-81.8905556,Interlachen,FL,other,2700,The sky turned blood red along with a loud boom.It was dark.Me and my dad went outside to see it.We heard screahing noises,and saw 2 li +1992-08-15,39.8916667,-75.3,Norwood,PA,cigar,15,Cigar shaped,lighted object. +1992-08-15,43.6883333,-70.7941667,Limerick,ME,circle,300,traveling downhill out of Limerick I saw a huge solid globe emitting light around it, standing still in the sky. +1993-08-15,38.14,-86.7216667,Bristow,IN,triangle,600,I was driving home heading north on hwy 145 when i noticed 3 lights in the sky. They were flying fairly low and would go north to so +1993-08-15,40.1397222,-120.95,Greenville,CA,circle,300,Brilliant vertical ring of lights moved silently and slowly over lake, then turned, illuminating the surrounding hills. +1993-08-15,38.8055556,-123.0161111,Cloverdale,CA,flash,240,Bright stroboscopic light slowly passes by within 100 yards, and leaves with an otherworldly piercing whistle. +1993-08-15,33.7222222,-116.3736111,Palm Desert,CA,triangle,2400,triangular object flew right over us +1993-08-15,29.8944444,-81.3147222,St. Augustine,FL,triangle,1800,I saw a spaceship take off from slow speed to around the speed of light in second from only 30 feet away. +1993-08-15,46.5352778,-121.9558333,Randle,WA,other,60,A large white kite like object was circling the top of a cone shaped mountain, the type of movement was peculiar, like paper falling, +1993-08-15,33.7283333,-117.1455556,Menifee,CA,disk,300,Saucer in California with Red, White, and Blue lights seen when driving +1994-08-15,41.7413889,-105.9741667,Rock River,WY,disk,7200,Revolving lights seen in clouds south of Rock River, Wyoming. +1994-08-15,39.8016667,-89.6436111,Springfield,IL,unknown,900,An unknown craft gave off a loud, deep, oscillating, electro-acoustic, bass humming sounds. +1994-08-15,37.1894444,-84.1177778,East Bernstadt,KY,cigar,60,We saw a cigar craft chasing four army or airforce jets +1994-08-15,39.5505556,-107.3241667,Glenwood Springs,CO,light,120,very bright light in the sky moving slowly made a sudden jump upwards and disipeared +1994-08-15,32.7355556,-97.1077778,Arlington,TX,diamond,120,Saw a disk a few years back, about junior year of high school...was standing in back yard... +1994-08-15,39.7391667,-104.9841667,Denver,CO,other,5,I saw a UFO in August of 1994. +1994-08-15,40.9583333,-75.975,Hazleton (Near),PA,unknown,180,Low-flying object had three large bright lights, made no sound and moved unlike any known conventional aircraft +1994-08-15,35.3733333,-119.0177778,Bakersfield (Near),CA,triangle,180,http://www.nuforc.org/webreports/070/S70525.html I saw this posting,and recalled a night in 1994.I was driving a moving truck with +1994-08-15,35.3733333,-119.0177778,Bakersfield (Near),CA,triangle,300,Saw bright light in distance, came towards my car rapidly, hovered and spun slowly parallel to my vehicle for about a minute and left +1994-08-15,41.4919444,-94.1238889,Earlham,IA,rectangle,2700,one huge(4 storys high걶 ft. wide) craft, trailed by 2 small pods that looked about the size of a big car. The big ship made no noise +1994-08-15,33.7397222,-116.4119444,Rancho Mirage,CA,rectangle,45,An extreemly close sighting of a black/dark grey "minivan" shaped craft. +1995-08-15,42.8711111,-97.3969444,Yankton,SD,oval,120,5 white lights coming towards me as flying object +1995-08-15,34.7658333,-84.77,Chatsworth (Fort Mountain Community),GA,teardrop,120,GEORGIA UFO GROUP REPORT/MUFON of Georgia (joint post): Fort Mountain teardrop Craft +1995-08-15,36.2841667,-82.1727778,Hampton,TN,cigar,5,I wittnessed a large cigar shaped object pass between clouds +1995-08-15,35.198055600000004,-111.6505556,Flagstaff,AZ,oval,180,Two craft seen over flagstaff. one craft had a lage ligh come on in the center . . . +1995-08-15,37.0297222,-76.3455556,Hampton,VA,other,4,Two orange-red dots flying at very high altitude and exhibiting great speed and unusual manueverability. +1995-08-15,48.2766667,-116.5522222,Sandpoint,ID,disk,60,Very large disk shape, many portholes, silver in color, nestled between two hills +1995-08-15,43.0630556,-86.2283333,Grand Haven,MI,unknown,7200,The little creatures, flashing lights, and test. +1995-08-15,43.9144444,-69.9658333,Brunswick,ME,other,30,three fire orange colored lights circling a fourth light +1995-08-15,38.545,-121.7394444,Davis,CA,cone,300,1995 Saucer/cone shaped UFO over I-80 West Causeway Betweeen Sacramento and Davis, CA +1996-08-15,41.7691667,-72.965,Burlington,CT,light,600,it was a cool evening when i walked out on to the balcony. i always loved looking up at the sky at night. on this particular night i +1996-08-15,33.5777778,-101.8547222,Lubbock,TX,circle,3600,Several strange lights in Texas +1996-08-15,29.7027778,-98.1241667,New Braunfels,TX,disk,180,Disk-shaped blue, white, red lights +1996-08-15,42.9633333,-85.6680556,Grand Rapids,MI,light,1200,We saw two red dots of apparent unearthly origin. +1996-08-15,42.9633333,-85.6680556,Grand Rapids,MI,light,1800,Two small objects that appeared to be non-teresteral +1996-08-15,28.4005556,-97.7480556,Beeville,TX,light,1200,I was abducted and I can remember the happenings, I just cant remember what they want. +1996-08-15,42.4075,-124.4205556,Gold Beach,OR,other,300,Me and my family were on our way to the county fair and we saw the UFO +1996-08-15,41.0263889,-73.6288889,Greenwich,CT,rectangle,600,A perfect square object, enormous in size, slow in movement with no visible signs of propulsion. +1996-08-15,60.7922222,-161.7558333,Bethel,AK,triangle,120,I happened to look out my back window and was shocked to see a huge triangular shaped craft at a very high altitude. +1996-08-15,40.6680556,-79.0119444,Clymer,PA,other,20,In August in 1996 I attended a picnic at a friend's farm in Clymer PA and observed a bullet shaped craft. +1996-08-15,38.2247222,-80.5333333,Richwood,WV,formation,2,Monongahelia National Forest/Marlingto Road UFO Formation sighting. +1996-08-15,37.7780556,-81.1883333,Beckley,WV,other,240,Silent, low flying helicopter with light scanning below +1996-08-15,40.8852778,-73.3766667,Centerport (Long Island),NY,cross,10,A light brown transparant disc about the size of the full moon moving across the sky in a NNW direction. +1996-08-15,37.7838889,-79.4430556,Lexington,VA,light,5,What I saw was a light in the sky that moved silently and very fast down the side of a mountain. +1996-08-15,38.425,-105.0222222,Penrose,CO,other,900,UFO shot down over military installation +1996-08-15,41.9375,-70.0333333,Wellfleet,MA,triangle,1800,3 triangular objects with green lights, making no sound, heading east over Welfleet drive-in. +1997-08-15,34.47,-118.1958333,Acton (Approx.),CA,oval,25,Oblong, orange light in sky traveling at slow speed. White beam of light came down from orange light, then went back up into orange li +1997-08-15,37.4452778,-86.0508333,Millerstown,KY,triangle,300,I observed a large triangle shaped object hovering above treetops on a clear night for about 5 minutes or more. +1997-08-15,35.2233333,-114.2222222,Golden Valley,AZ,light,3,three swiftly moving blue blurs each about 30 meters in length, however it was blurred +1997-08-15,48.0633333,-114.0716667,Bigfork,MT,sphere,10800,Bright Orange in color like hot metal, deffinatly metal of some kind it made no sound and sat just above the trees at least as big as a +1997-08-15,39.6938889,-92.0427778,Shelbina,MO,unknown,15,blinding white lights came down on vehicle then began to flash like flashbulbs going off +1997-08-15,39.2666667,-81.5616667,Parkersburg (10 Miles South Of Ohio/W.virginia Border Near),WV,triangle,600,Observed silent, slow moving craft moving in Northeasterly direction. Lost sight as it moved over hills. +1997-08-15,38.9536111,-94.7333333,Lenexa (Greater Kansas City Metro Area),KS,disk,5,An object moving at a high rate of speed, leaving a bright pink trail. +1997-08-15,43.9702778,-70.8038889,Denmark,ME,disk,2,Was taking pictures of the westerly New Hamphire mountains while hiking. Object was silent and appeared to be banking in the sky. It wa +1997-08-15,47.0044444,-122.5386111,Roy,WA,chevron,180,It was flying over the top of the truck I was driving, & there was another one off in the distance. They Looked Like flying Merry-go-Ro +1997-08-15,42.8863889,-78.8786111,Buffalo,NY,sphere,900,Orbs/Spheres over Hertel Avnue Looking North West towards Niagarg street +1997-08-15,43.4666667,-112.0333333,Idaho Falls,ID,other,5,WHAT APPEARED TO BE A DUAL ENGINE PROP JET FLEW OVER MY HOUSE AT NIGHT, HAD NO LIGHTS AND THERE WAS NO SOUND +1997-08-15,33.5641667,-101.5133333,Robertson County,TX,other,900,Mother-Ship, preceded by four helicopters and some other craft with a red, circular light. +1997-08-15,41.1108333,-112.0252778,Clearfield,UT,triangle,15,Low flying, Silent, triangular with four lights, One steady light on each rounded corner and one swirling light in the center. +1997-08-15,20.8783333,-156.6825,Lahaina,HI,triangle,3,During our viewing of the Paleids meteor shower, we viewed a large dark triangle craft appear out of no where and travel across the sky +1997-08-15,40.8625,-76.7947222,West Sunbury,PA,light,45,BRIGHT LIGHT APPEARED ABOUT 200 FT IN AIR AND COVERED ME WITH A BRIGHT BEAM BEFORE STREAKING OFF OUT OF SIGHT +1998-08-15,39.5538889,-104.9688889,Highlands Ranch,CO,flash,300,Flashing UFO lights over church in Highlands Ranch, CO 1998-99 +1998-08-15,42.6827778,-89.0186111,Janesville,WI,light,1500,we saw about 4 strange lights about 200-300 feet above the ground near a section of woods in our city we see this all the time. i can g +1998-08-15,41.7355556,-111.8336111,Logan,UT,triangle,120,Triangular craft with an odd luminescence coming from the bottom of the craft. It made no sound. +1998-08-15,37.7241667,-89.8611111,Perryville,MO,fireball,120,FAST MOVING, COLOR CHANGING OBJECT. +1998-08-15,47.9791667,-122.2008333,Everett,WA,other,300,Me, my brother and two friends were out late one summer night. We then saw a 5 balls of light connnected to each other hovering in the +1998-08-15,37.7397222,-121.4241667,Tracy (Near; On I-5; Close To Gilroy),CA,circle,180,comit looking light in the sky +1998-08-15,34.2819444,-118.4380556,San Fernando,CA,triangle,73800,watch many ligth's in the sky day's before the sighting telling a frend about the ligth's at the same location a ligth came by at great +1998-08-15,47.9791667,-122.2008333,Everett,WA,sphere,1200,Mysterious orb floating fifty or so yards above me in the evening sky +1998-08-15,41.6638889,-83.5552778,Toledo,OH,unknown,900,UFO at the Mall +1998-08-15,35.8825,-80.0822222,Thomasville,NC,sphere,45,fishing in boat with my son.when a flock of small birds flew up from behind us. sa birds flew away . about 20 feet to our right 7 to 8 +1998-08-15,39.0061111,-77.4288889,Sterling,VA,unknown,600,Two witnesses- a large star with four smaller stars revolving around it. +1998-08-15,34.2694444,-118.7805556,Simi Valley,CA,light,120,The object in the sky at first appeared to be an unknown type aircraft with it's landing light on. The light went out and no red or gr +1998-08-15,47.6063889,-122.3308333,Seattle,WA,unknown,15,Complex, dark and silent, as it floated over my house. +1998-08-15,42.6388889,-83.2911111,Pontiac,MI,light,60,Blue Lights and Missing Time +1998-08-15,38.9783333,-76.4925,Annapolis,MD,triangle,120,clearly saw 3 green triangles in V formation +1998-08-15,34.2419444,-117.2847222,Crestline (Silverwood Lake),CA,triangle,120,8/15/98 SILVERWOOD LAKE , CA. TRIANGLE SHAPED VEHICLE W/ LIGHTS BUZZING SOUND. 45 SECONDS 3/21/2011 +1998-08-16,41.2075,-83.8991667,Deshler,OH,rectangle,2,A brief flash of sight(like a cloaking device failed for a second) showed a building size craft with "windows". Beings were seen. +1999-08-15,39.2666667,-81.5616667,Parkersburg,WV,cylinder,120,Cylinder/cigar shaped "light tube" slowly climbs higher and higher +1999-08-15,33.3625,-95.1044444,Talco,TX,light,30,It was the size of a basketball and it hover about 40 ft. in the air without sound and without any beam of light did not light up sky. +1999-08-15,40.015,-105.27,Boulder,CO,other,600,Dark metalic object along Colorado Frontrange +1999-08-15,47.6063889,-122.3308333,Seattle (1-90, Between Mercer Island And Seattle),WA,unknown,30,It was an object between two clouds, perfectly square. It was a brighter white than the whitest clouds. +1999-08-15,41.4730556,-87.0611111,Valparaiso,IN,disk,10,I was looking at (enjoying) the sky on a nearly cloudless, bright and calm day when I saw the object. +1999-08-15,38.7975,-90.7855556,Lake Saint Louis,MO,diamond,120,elongated grey diamond object that was aware of my obsrevation. +1999-08-15,46.1072222,-116.2633333,Greencreek,ID,cigar,180,Middle of day, an object was in the sky, no loud noise that would be like a plane of that size. It wasn't small. It was in the countr +1999-08-15,38.5375,-81.9325,Eleanor,WV,cigar,120,Driving In Car when it appeared appeared in sky. It was long and silver with a long black line in the middle. +1999-08-15,34.698055600000004,-118.1358333,Lancaster,CA,fireball,10,Very loud humming sound with a very bright bluish red flash. then a fire started as a result of the light. +1999-08-15,40.015,-105.27,Boulder,CO,light,120,Very fast object over boulder +1999-08-15,35.2561111,-91.2,Mccrory,AR,triangle,15,We witnessed a triangular shaped object in the western sky above the town over McCrory, AR - - It then vanished - not just the object, +1999-08-15,45.6388889,-122.6602778,Vancouver,WA,unknown,600,Sighting near Vancouver, Washington/Portland Oregon in August of 1999 +1999-08-15,34.1425,-118.2541667,Glendale,CA,formation,900,High flying large object followed by 20 small ones. Joined by other large object +1999-08-15,43.9105556,-69.8211111,Bath,ME,changing,120,A few years ago on my way to work, at about 9:30 at night I observes while driving what appeared to be a huge air plane to my left. The +1999-08-15,35.0525,-78.8786111,Fayetteville,NC,light,600,Bright blinking light makes high speed "C" shaped manuver. +1999-08-15,34.2683333,-85.5569444,Gaylesville,AL,unknown,600,Three bright green lights pointing towards the sky near Bell's Crossroads in Gaylesville, Alabama. +1999-08-15,27.0591667,-80.1366667,Hobe Sound,FL,circle,10,Very fast circular object with lights flashing in a circular pattern, it made no noise and was very low. +1999-08-15,33.6602778,-117.9983333,Huntington Beach,CA,circle,10,A ball of light at a distance of approx. 1/2 to 1 mile moving at high speed with extremely exagerated lateral and vertical motions that +1999-08-15,45.9763889,-94.3622222,Little Falls,MN,light,20,I was walking a dog with my cousin in Little falls, MN atw about 10:00 p.m. On our way back I looked up at the sky for no reason as di +1999-08-15,41.5038889,-87.7130556,Matteson,IL,light,600,Light over Route 30 and I-80 in Matteson +1999-08-15,34.8697222,-111.7602778,Sedona,AZ,flash,2,standing out side on my porch watching the sky and the nite turn to day light flashed all at once it last a half a second +1999-08-15,36.0227778,-95.9680556,Jenks,OK,light,30,Three satellite-looking-lights moving in triangular formation. +1999-08-15,34.0583333,-106.8908333,Socorro,NM,other,7,Falling Object +1999-08-15,40.7213889,-89.2727778,Eureka,IL,flash,3,Not sure if this was natural or unatural.... +1999-08-15,40.8766667,-73.325,East Northport,NY,fireball,8,Ball followed by Stream of orange light. +1999-08-15,41.0358333,-71.955,Montauk,NY,circle,900,Montauk Mystery Lights +1999-08-15,47.6588889,-117.425,Spokane,WA,light,600,Saw a light similar to a star that darted around the sky in straight lines. +1999-08-15,35.7686111,-106.6916667,Jemez Springs,NM,unknown,2,Brightly lighted clouds observered. +1999-08-15,44.6366667,-123.1047222,Albany,OR,sphere,360,Glowing sphere, DEFINATELY not a plane or helicopter. +1999-08-15,35.0844444,-106.6505556,Albuquerque,NM,unknown,2,An extremely bright flash of light lit up the sky and groud and appeared to travel from SW to NE. +1999-08-15,36.8222222,-107.9922222,Aztec,NM,light,180,I saw an incredibly brilliant bluish white light traveling at an uncomprehendable speed! +1999-08-15,32.3122222,-106.7777778,Las Cruces,NM,fireball,20,a close friend of mine witnessed the same phenomenon (sp?) that was reported in northern new mexico 250 miles south of albuquerque, in +1999-08-15,41.7911111,-107.2380556,Rawlins (39 Miles West Of),WY,fireball,2,a fireball went straight down behind mtns. and ended in a bright flash. +1999-08-15,40.0530556,-111.6727778,Salem,UT,other,3,Bluish-green, very bright flash of light toward the southeastern horizon. +2000-08-15,30.0083333,-97.1591667,Smithville,TX,circle,2,Translusent circle very large falling and then blinks out of sight directly south in the sky. No visible trail left behind it. +2000-08-15,47.2538889,-120.6641667,Liberty,WA,light,20,Bright round light +2000-08-15,34.9158333,-85.1091667,Ringgold,GA,triangle,900,Unusual aircraft spotted near Ringgold, Ga...what was it??? +2000-08-15,45.5236111,-122.675,Portland,OR,sphere,300,I WAS AT WORK, WENT OUT AT 3:05 PM FOR MY AFTERNOON BREAK. NO ONE ELSE HAD COME OUT FOR BREAK, SO I WAS BY MYSELF. I SAT BACK IN MY CH +2000-08-15,30.0858333,-94.1016667,Beaumont,TX,unknown,1200,Shiny object flying a rectangular grid pattern along the path of Highway 90 in Beaumont, Texas +2000-08-15,40.1,-76.3544444,East Petersburg,PA,circle,120,two dull black circles in the sky. Ufo probes maybe? +2000-08-15,33.3061111,-111.8405556,Chandler,AZ,light,300,Two Stationary Bright Red Lights Over Phoenix Area +2000-08-15,33.3527778,-111.7883333,Gilbert,AZ,light,600,2 red lights appear to be sitting above Gilbert, Az for 10 min +2000-08-15,33.3527778,-111.7883333,Gilbert,AZ,unknown,1200,Two bright red lights in the sky rising higher and higher until they were over our heads. +2000-08-15,33.4222222,-111.8219444,Mesa,AZ,circle,600,Two bright red lights in the southwestern sky +2000-08-15,33.4483333,-112.0733333,Phoenix,AZ,light,1200,two bright lights red or bright orange in color moving very slowly across the sky over south pheonix before suddenly dissapearing +2000-08-15,33.3061111,-111.8405556,Chandler,AZ,light,600,two red lights +2000-08-15,33.3527778,-111.7883333,Gilbert,AZ,light,420,2 bright red lights tracked and filmed over Phoenix area. +2000-08-15,32.3511111,-95.3008333,Tyler,TX,triangle,5,On the ride home from dinner, it flew quickly across the sky into a cloud. It was boomerang shaped and gave off solid white light. +2000-08-15,33.3061111,-111.8405556,Chandler,AZ,light,300,RED LIGHTS OVER CHANDLER!!! +2000-08-15,38.7933333,-77.2719444,Burke,VA,circle,1200,while waiting for a party with my littel sister for aparty arond 9;00pm i saw a round metalic object 8-10 ft high. +2000-08-15,34.7463889,-92.2894444,Little Rock,AR,disk,60,Me and Family watched object hover over downtown. Gone a minute later. +2000-08-15,33.3527778,-111.7883333,Gilbert,AZ,light,120,red light seen in west direction of gilbert light disapeared after 2 min this is my fifth time seeing this light in the last 6 weeks +2000-08-15,32.7458333,-96.9975,Grand Prairie,TX,fireball,20,Today's technology has nothing on what me and a neighbor wittness +2000-08-15,32.7833333,-96.8,Dallas,TX,cigar,1.5,Pie shaped craft ignited rocketlike engine ,skipped across the sky and vanished silently at tremendous speed. +2000-08-15,34.1841667,-118.9097222,Newbury Park,CA,disk,10,It came over the mountain range, hovered for approximately 10 seconds, before backing behind the mountain side. +2000-08-15,46.6811111,-68.0163889,Presque Isle,ME,light,600,IT WAS A BRIGHT WHITE LIGHT WITH A SMALL CONTRAIL MOVING AT A VERY ALARMING SPEED THROUGH WHAT APPEARED TO BE VERY HIGH UP IN THE ATMOS +2000-08-15,40.5677778,-84.1936111,Wapakoneta (Near),OH,cone,30,large cone shaped blue white object apparently entering atmosphere +2001-08-15,41.676944399999996,-71.2666667,Bristol,RI,unknown,60,Dark shape with burnt orange glow near Bristol RI +2001-08-15,34.2255556,-77.945,Wilmington,NC,unknown,900,Unkown encounter (Extremely Scary) +2001-08-15,35.5261111,-98.7072222,Weatherford,OK,rectangle,120,dark-gray non metallic rectangle shaped obect with no wings and as big and long as a cruise liner -slow speed-no sound. +2001-08-15,39.8022222,-75.0644444,Blackwood,NJ,disk,5,Formation Sighting Below Comet +2001-08-15,34.6086111,-98.39,Lawton,OK,disk,25,Was traveling north on 82nd st.about 1/2 mile south of Lee St. in Lawton, Okla.I saw 4 objects take off from ground level(one at a time +2001-08-15,37.9886111,-84.4777778,Lexington,KY,rectangle,1200,Blue green rectangular observed stationary for 20 minutes then sped off strobing/pulsating as it did. +2001-08-15,32.0833333,-81.1,Savannah,GA,oval,1200,This giantic safety-pin shaped ufo makes contact with 4 floating disc. +2001-08-15,40.0580556,-82.4013889,Newark,OH,triangle,90,first one was a bank of multi colored lights-followed by a black triangle with lighted tips and a red light in the center. +2001-08-15,43.3052778,-112.1822222,Firth,ID,light,30,two light s coming from opposite directions, circled each other , then flew back to the original direction +2001-08-15,40.6586111,-73.6416667,Rockville Centre,NY,triangle,120,A friend and I spotted a flying object that was Triangular with a white "V" on the front of it in Rockville Centre, NY. +2001-08-15,44.9069444,-72.8069444,Enosburg Falls,VT,triangle,300,Silent Dark V shape outlined with small white lights +2001-08-15,37.6016667,-85.9055556,Glendale,KY,light,300,2 pair of burnt orange colored stationary lights, low level one turning horizontal and then both pairs of lights turning off. +2001-08-15,44.2794444,-73.9802778,Lake Placid (Near),NY,fireball,15,i saw a streek of fire in the night sky +2001-08-15,40.0888889,-98.5191667,Red Cloud (Rural),NE,light,30,intense white light illuminates cab of car out in the country +2001-08-15,33.3941667,-104.5225,Roswell,NM,triangle,240,Dark Triangle, silent craft "floating" with 3 lights on the bottom heading NNE over SW Roswell between July-Sept 2001 +2001-08-15,43.9680556,-88.9433333,Berlin,WI,unknown,120,Large red light speeding over Berlin, WI. +2001-08-15,47.6741667,-122.1202778,Redmond,WA,fireball,3000,Orange/amber blurb of light swaying from left to right, changing in brightness +2002-08-15,47.4236111,-120.3091667,Wenatchee,WA,circle,60,Gray sillouttte against the night sky, moved quickly side to side, then darted away above the trees. Fast moving and odd..not plane. +2002-08-15,33.9686111,-112.7288889,Wickenburg,AZ,light,60,Three lights over central Arizona desert at work in the darkness. +2002-08-15,42.8805556,-71.3277778,Derry,NH,light,60,Observed round red light crossing over highway - then hovering - changing shape - emitting small round blue lights +2002-08-15,38.3363889,-75.0852778,Ocean City,MD,fireball,3600,UFO hovers...changes direction...hovers.....repeats pattern near Ocean City, MD in Summer of 2002 +2002-08-15,37.9841667,-120.3811111,Sonora,CA,other,10800,Red and Yellow lights moving in erratic patterns +2002-08-15,34.7097222,-95.3136111,Yanush,OK,unknown,600,My brother noticed the light and we were inside talking about another strange thing we had seen. We all three went outside and what we +2002-08-15,48.0152778,-122.0625,Lake Stevens,WA,flash,60,Huge flash, followed by noise and upward contrail +2002-08-15,38.8002778,-90.6263889,St. Peters,MO,sphere,900,Spheres in Triangle Formation +2002-08-15,47.8555556,-121.9697222,Monroe,WA,rectangle,30,I saw the same thing on 8/15 and 8/16 in approx. the same area. The object was bar shaped, very shinny and metallic and very high in t +2002-08-15,39.7683333,-86.1580556,Indianapolis,IN,oval,180,A view from the airplane and a dream come true +2002-08-15,39.8125,-85.1716667,Cambridge City,IN,sphere,120,Jet chasing spherical metallic craft +2002-08-15,39.7277778,-76.4522222,Fawn Grove,PA,light,1200,A pulsating light followed my movements as i walked it moved as i stopped it stopped. +2002-08-15,40.7141667,-74.0063889,New York City (Bronx),NY,circle,900,one of the kids said look a ufo +2002-08-15,36.8527778,-75.9783333,Virginia Beach,VA,light,20,It appeared instantly out of nowhere and slowly came towards us then stood still then instanly shot off away from us in a split second. +2002-08-15,32.7666667,-96.5988889,Mesquite,TX,light,900,above +2002-08-15,40.6027778,-86.8672222,Brookston,IN,fireball,1800,Orange balls appeared out of no where and then disappeared. +2002-08-15,42.7008333,-82.9591667,Macomb,MI,unknown,1200,floating object that made no sound and was gone in an instant. +2002-08-15,36.1397222,-120.3591667,Coalinga (Just Outside Of),CA,light,120,3 bright lights swooping by the freeway in a figure-of-eight-type pattern. +2002-08-15,41.85,-87.65,Chicago,IL,oval,120,An oval ball of light hovering there +2002-08-15,38.8313889,-84.5358333,Piner,KY,disk,120,me my dad, step mom, sister, an brother were driving home from the grocery store when what we sall looked to be a saucer shaped air cra +2002-08-15,35.9605556,-83.9208333,Knoxville,TN,light,300,unbelievable +2003-08-15,47.6105556,-122.1994444,Bellevue,WA,circle,7200,orb with lights that formed the +sign, brightest lite in center ((NUFORC Note: Sighting of Mars??)) +2003-08-15,38.8402778,-77.4291667,Centreville,VA,circle,60,At first there were 2. I was the first to see them. It was approx. 12.20 on a Friday night. Above the adjacent town home I saw two gl +2003-08-15,34.0522222,-118.2427778,Los Angeles,CA,diamond,45,The object bounced up and down did a semi-circle and shot up in the sky; disappeared +2003-08-15,46.7586111,-122.0297222,Ashford,WA,oval,600,From outerspace to almost landing near the Southwest area of Mt Rainer on 8/2003 +2003-08-15,34.0483333,-117.2602778,Loma Linda,CA,sphere,900,Sphere creating light all around it changing size and shape when it moved. +2003-08-15,33.3527778,-111.7883333,Gilbert,AZ,cross,10,aircraft shadow, but no aircraft. +2003-08-15,47.6063889,-122.3308333,Seattle,WA,circle,300,last summer my buddy and I were looking into the blue sky, when we spotted two round white balls flying straight , and then seemly dart +2003-08-15,47.2530556,-122.4430556,Tacoma,WA,disk,30,Flying Suacer(?) seen in August inTacoma/Puyallup neighborhood +2003-08-15,27.7705556,-82.6794444,St. Petersburg,FL,unknown,1,Quick moving ,very high +2003-08-15,38.8338889,-104.8208333,Colorado Springs,CO,light,2,Driving East on Woodmen Road we (spouse and myself) saw a silver light. When we try to focus and determine what the light was, the obj +2003-08-15,42.2916667,-85.5872222,Kalamazoo,MI,other,20,Another sighting from Kalamazoo +2003-08-15,41.0816667,-74.5927778,Ogdensburg,NJ,light,300,a zigzagging light crossing the sky +2003-08-15,44.9430556,-123.0338889,Salem,OR,light,120,Two red lights moving very quickly made two changes of direction in less than 20 seconds. +2003-08-15,40.0638889,-80.7211111,Wheeling,WV,cylinder,120,Dark, slow moving Cylinder overhead in a clear sky ((NUFORC Note: Sighting by astronomer. PD)) +2003-08-15,45.6572222,-68.7102778,Millinocket,ME,light,1200,While camping near Millinocket Lake my brother and I witnessed this light coming towards us from over the horizon. What first appeared +2003-08-15,25.7738889,-80.1938889,Miami,FL,oval,900,2 of us saw a bright oval shaped object and it hovered in one place and got brighter and brighter for 15 minutes and then disappeared. +2003-08-15,36.7236111,-120.0588889,Kerman,CA,flash,180,It looked very much like a ball of fire. At first I thought it was a child's ball, however a child's ball would not be flying that hig +2003-08-15,47.5302778,-122.0313889,Issaquah,WA,triangle,6,I did not report this and have been looking for information to see if anyone has seen a similar object. I do not want notarity. I am a +2003-08-15,38.7725,-112.0833333,Richfield,UT,fireball,5,I saw a fireball in the sky moving too slow to be a meteor +2004-08-15,33.4352778,-112.2972222,Cashion,AZ,triangle,10800,Huge slow moving black triangle that oddly appeared to have caused us a loss of time. (no! this is not a joke) +2004-08-15,33.3941667,-104.5225,Roswell,NM,disk,780,Freaky Lights and Sound i feel very cold 10 degrees +2004-08-15,44.0522222,-123.0855556,Eugene,OR,triangle,2100,Witnessed triangle shaped object w/ lights at altitude 25deg and azimuth 320 hover, then move rapidly L-R, hover again, Yaw right +2004-08-15,32.7677778,-117.0222222,La Mesa,CA,disk,600,It was a saucer with 4 lights & tan glow +2004-08-15,32.0833333,-81.1,Savannah,GA,triangle,60,Moon surface ufo sighting +2004-08-15,41.7797222,-71.4377778,Cranston,RI,formation,1200,Saw a formation of crescent-shapped objects over suburban neighborhood. +2004-08-15,38.3363889,-75.0852778,Ocean City,MD,fireball,30,Object of green, active cold fire traveling at very high speed low above the ground in absolute silence. +2004-08-15,38.4647222,-120.0388889,Bear Valley,CA,sphere,4,The 4 objects moved very rapidly from east to west, then dissappeared. +2004-08-15,34.1808333,-118.3080556,Burbank (10-20 Mins Flight To),CA,circle,120,RED FURRY BALL LIGHT ROAMING THE MOUNTAINS +2004-08-15,43.6422222,-72.2522222,West Lebanon,NH,light,1800,My freind Aaron and I took nightly walks this summer almost every night. We walked the same paths each time through the grave yard and +2004-08-15,38.6272222,-90.1977778,St. Louis,MO,cylinder,60,Black cylinder flying at altitude of airline within reaching distance. +2004-08-15,41.6833333,-86.25,South Bend,IN,triangle,240,The object made a sharp right turn, spun around and shot off like a bullet. +2004-08-15,32.7447222,-116.9980556,Spring Valley,CA,light,180,Clear blue sky, light moon-shaped object appears twice into different places miles up in the sky. +2004-08-15,39.7391667,-104.9841667,Denver,CO,triangle,10,Two triangular craft with 5 white lights each flying in formation. +2004-08-15,43.6422222,-72.2522222,Lebanon,NH,light,600,bright light desaperes and reaperes and then flys over house +2004-08-15,34.6422222,-82.4561111,Pelzer,SC,oval,90,Steam power plant +2004-08-15,30.5080556,-97.6786111,Round Rock,TX,light,600,Saw UFO appear, hover, rise and then disappear +2004-08-15,30.4891667,-99.7716667,Junction,TX,disk,900,Way cool but I was not expecting to see a UFO in the night sky over my ranch. ((NUFORC Note: Possible sighting of star? PD)) +2004-08-15,44.9444444,-93.0930556,St. Paul (Southern Part),MN,formation,420,three craft travel in formation above Minnesota. ((NUFORC Note: Possible contrail, we believe. PD)) +2004-08-15,38.3483333,-92.5813889,Eldon,MO,light,10,bright red light zig zag across sky then disappear +2005-08-15,32.7833333,-96.8,Dallas,TX,formation,780,Saw spaceships scanning the land. +2005-08-15,35.4813889,-105.8791667,Lamy,NM,unknown,5,I couldn't sleep and got out of bed at 2AM during the annual Perseid meteor shower. Looking north west towards Santa Fe, I saw what +2005-08-15,36.175,-115.1363889,Las Vegas,NV,light,120,A formation of a dozen independent green lights moves across the night sky over Las Vegas. +2005-08-15,48.7597222,-122.4869444,Bellingham,WA,fireball,900,Amber lights on trail. +2005-08-15,39.7041667,-86.3994444,Plainfield,IN,other,1200,In August 2005 i seen 3 non human humanoid entities. +2005-08-15,38.8105556,-90.6997222,O'fallon,MO,triangle,240,It was triangular shaped with two large circular lights centered across the craft. +2005-08-15,37.7933333,-79.9941667,Covington,VA,triangle,6,glowing triangle near Covington Va. +2005-08-15,47.0380556,-122.8994444,Olympia,WA,unknown,300,"Satellites" dance in the night sky. +2005-08-15,35.3733333,-119.0177778,Bakersfield,CA,light,300,Three lights in the sky above Bakersfield, CA +2005-08-15,34.6391667,-120.4569444,Lompoc,CA,other,600,It was in the middle of the day and I was heading back from Lompoc Ca to Pismo Beach on Hwy 1. As I rounded a bend in the road between +2005-08-15,41.9,-71.0902778,Taunton,MA,disk,300,It was over 300 yds long and approx 80 yds high and made no no sound at all. +2005-08-15,48.051944399999996,-122.1758333,Marysville,WA,other,120,"Satellite" does zigzag and conecntric circle course changes, then disappears at high speed. +2005-08-15,39.8494444,-75.3561111,West Chester,PA,other,20,Red blinking light circles stationary white light. +2005-08-15,33.6708333,-86.8561111,Mount Olive,AL,disk,1800,Circular object with flashing lights, whirring sounds, and flashes of multicolored lights +2005-08-15,40.8325,-115.7622222,Elko,NV,unknown,15,2 lights performed a slingshot maneuver obtaining great speed shooting off in opposite directions. +2005-08-15,32.7252778,-97.3205556,Fort Worth,TX,other,1800,fast diamond \/\/ i walk to work every night ,due to my job is just a short stroll away the sky dark, but dark blue and clear that nigh +2005-08-15,48.0905556,-105.64,Wolf Point,MT,other,180,Large boomerang object flies close to ground. +2005-08-15,43.5666667,-75.4288889,Constableville,NY,teardrop,120,Two magenta colored objects appearing over tree line and disappearing once I saw them. +2005-08-15,42.7158333,-78.8297222,Hamburg,NY,circle,120,glowing lavender orb slowly disappears over fair +2005-08-15,42.7022222,-83.4027778,Waterford,MI,triangle,120,2 triangular crafts, appearing about 20 minutes about, fast moving, with one green light and two alternately strobing white lights +2005-08-15,45.0791667,-93.1469444,Shoreview,MN,circle,5,STRANGE ORANGE OBJECT +2006-08-15,35.2783333,-93.1336111,Russellville,AR,unknown,10,Line of red lights drifting over south side of Crow Mountain +2006-08-15,45.4463889,-122.6380556,Milwaukie,OR,circle,120,Bright light that dropped straight down, occasionally doing zig zags and loops, but then straight back down. +2006-08-15,41.5766667,-75.2591667,Honesdale,PA,unknown,30,Slient craft shines light on me +2006-08-15,46.2113889,-119.1361111,Kennewick,WA,sphere,600,5 silver/white/gold spheres over Kennewick, Washington +2006-08-15,45.9975,-121.5269444,Trout Lake,WA,flash,240,Bright strobe passes between viewers and Mt Adams then streaks skyward +2006-08-15,40.9066667,-96.8625,Malcolm,NE,sphere,900,Daytime sighting of large, unmoving, silent sphere that blended with sky & clouds near Lincoln Nebraska in August, 2006 +2006-08-15,47.16,-116.9208333,Tensed (Near),ID,other,45,A small metalic hourglass shaped object slowly rotating and hovering parallel to phone lines and highway +2006-08-15,41.85,-87.65,Chicago,IL,sphere,600,daylight observation: moving brilliant hi alt star-like object, spherical +2006-08-15,33.1191667,-117.0855556,Escondido,CA,light,600,Strange lights in escondido +2006-08-15,47.6063889,-122.3308333,Seattle,WA,unknown,420,small object sitting still above seattle, extremely far away, wavering a little +2006-08-15,40.3469444,-74.0647222,Red Bank,NJ,other,240,UFO looks like Chemical Structure of Carbon. +2006-08-15,36.1125,-86.4163889,Gladeville,TN,circle,300,Circular light in day sky, resolvable as disk with binoculars. +2006-08-15,41.4994444,-81.6955556,Cleveland,OH,diamond,600,Black diamond with red light on bottom tip flying over little league feild just after dark. +2006-08-15,39.7047222,-105.0808333,Lakewood,CO,fireball,5,A semi-bright glowing craft zooming quickly from east to west +2006-08-15,41.3136111,-81.5086111,Macedonia,OH,flash,180,A point of light in the sky moving around an aircraft in an unusual manner. +2006-08-15,37.7044444,-91.8663889,Edgar Springs,MO,other,5,MISSOURI INVESTIGATORS GROUP Report: In the past month I’ve been witness to about 4 or 5 ufo's coming and going at nighttime… +2006-08-15,34.2083333,-77.7966667,Wrightsville Beach,NC,fireball,7200,trange lights off of Topsail Beach +2006-08-15,25.7738889,-80.1938889,Miami,FL,triangle,25,Spacecraft over Miami. +2006-08-16,47.6105556,-122.1994444,Bellevue,WA,unknown,5,I say a rectangular shape in the sky. +2007-08-15,42.0963889,-83.2919444,Flat Rock,MI,light,7200,Faint, weaving, red lights over Michigan. ((NUFORC Note: Possible sighting of celestial bodies, we suspect. PD)) +2007-08-15,39.5297222,-119.8127778,Reno,NV,sphere,5,A purple sphere jetted left...and then right.and the left ..and then right again VERY fast and dissapeared +2007-08-15,43.9105556,-69.8211111,Bath,ME,unknown,180,My wife and I were outside when we viewed a white sphere high up. I first thought it was a satellite. It was moving in a east to west. +2007-08-15,38.8461111,-77.3066667,Fairfax,VA,unknown,120,Four flashing white lights +2007-08-15,38.8902778,-77.0844444,Arlington,VA,flash,20,Bright pulsation lights over Arlington VA +2007-08-15,37.2152778,-93.2980556,Springfield,MO,light,1020,There were three bright circles in the form of a triangle. It sat still for about 15 minutes. As we watched the triangle, it started to +2007-08-15,40.0847222,-104.8125,Ft. Lupton (Near),CO,other,180,Very strange, very fast flying object near Boulder Colorado +2007-08-15,34.61,-112.315,Prescott Valley,AZ,fireball,1800,2 orbs of fire that kept disappearing and reappearing +2007-08-15,39.9725,-74.5833333,Browns Mills,NJ,circle,600,Grey Circular object seen over southern New jersey +2007-08-15,41.85,-87.65,Chicago,IL,light,3,UFO Observed During Chicago Thunderstorm +2007-08-15,35.7913889,-78.7813889,Cary,NC,light,10,walked out on back deck at twilight time red -white lite just above tree line cruises by heading west very very fast no noise or trail +2007-08-15,43.1288889,-85.8813889,Conklin,MI,fireball,900,3 silent fireballs very low moving slowly to the west my husband who seen the same thing but at dif location same night. +2007-08-15,33.6694444,-117.8222222,Irvine,CA,sphere,15,Two yellow spheres rotating about each other (barrel rolls) moving right to left and vanishing. +2007-08-15,29.4236111,-95.2438889,Alvin,TX,fireball,7200,Various high altitude objcets seen around Houston-Alvin, Texas areas during storm. +2007-08-15,38.4405556,-122.7133333,Santa Rosa,CA,chevron,480,Additional note to previous report same date Santa Rosa CA - Object was silent and did not bank in turns +2007-08-15,38.4405556,-122.7133333,Santa Rosa,CA,chevron,480,Triangle shaped bright lights with one red in the rear floated slowly southwest over Santa Rosa CA +2007-08-15,46.7833333,-92.1063889,Duluth,MN,light,30,Bright, white light moving towards east faded into red-orange color and disappeared. +2007-08-15,31.0994444,-98.5113889,Bend,TX,light,45,Unexplainable blinking lights witnessed over Texas sky. +2007-08-15,37.3394444,-121.8938889,San Jose,CA,triangle,60,Triangle shaped 3 red or orange lights in corners +2008-08-15,41.6266667,-93.7119444,Urbandale,IA,light,7200,Changing colors of lights above city. +2008-08-15,38.8597222,-104.9166667,Manitou Springs,CO,oval,300,we saw flasing colors on an oval shaped saucer going in and out of the trees +2008-08-15,42.9783333,-78.8,Amherst,NY,other,20,Humming craft with 3 dim cream colored lights moving through thick woods. +2008-08-15,38.1352778,-80.2133333,Hillsboro,WV,light,4140,Brilliant light hovers over mountain. ((NUFORC Note: Probably a star or planet, we suspect. PD)) +2008-08-15,41.5569444,-83.6272222,Perrysburg,OH,teardrop,300,3 points of light change into 6 white and 3 red lights, hovers, then moves at a slow speed +2008-08-15,38.9477778,-75.8847222,Ridgely,MD,fireball,30,White streak of light low in the sky heading East to West in the Northern sky. +2008-08-15,41.9583333,-70.6677778,Plymouth,MA,unknown,90,Orange light over the sky +2008-08-15,43.6613889,-70.2558333,Portland,ME,triangle,60,Three white lights in a triangular pateren about 200 feet wide +2008-08-15,29.9544444,-90.075,New Orleans,LA,light,420,5-6 floating lights over new orleans +2008-08-15,43.8013889,-91.2394444,La Crosse,WI,teardrop,20,daylight sighting disk was metal and moved away in a different direction very fast +2008-08-15,32.7152778,-117.1563889,San Diego (Mira Mesa),CA,changing,11,Rare craft changing form ,And shape as well as color, and altitude, Massive size no wind perfect weather blue skies +2008-08-15,28.5380556,-81.3794444,Orlando,FL,rectangle,300,Brilliant white "square" stationary in the sky above west Orange County / Lake County Florida. +2008-08-15,39.6533333,-75.5169444,Pennsville,NJ,triangle,600,Metallic green right triangle in the middle of nowhere. +2008-08-15,30.2263889,-93.2172222,Lake Charles,LA,circle,10,white cirlce of light suudently appears +2008-08-15,41.0272222,-78.4394444,Clearfield,PA,triangle,2700,triangular shape object with bright lights over drive-in theater field in Clearfield, PA. +2008-08-15,41.9211111,-73.0605556,Winsted,CT,circle,2700,Lighted circular objects moving silently across the sky +2009-08-15,42.5802778,-83.0302778,Sterling Heights,MI,changing,420,((HOAX)) We saw a UFO in the sky before landing, and taking a human onto the ship. +2009-08-15,42.3802778,-72.5236111,Amherst,MA,light,7200,Multi-colored lights, upper atmosphere, redshift anomaly, star UFO +2009-08-15,42.3316667,-71.1216667,Brookline,MA,formation,240,I observed a cluster of 12 to 15 white lights shinning brite in the sky in a close formation. +2009-08-15,42.7458333,-124.4961111,Port Orford,OR,light,30,Sphere shaped satellite looking object. Changed trajectory and faded out. Flying from northwest to southeast then changed to southwest. +2009-08-15,40.7141667,-74.0063889,New York City (Staten Island),NY,fireball,240,I was on phone with my sister and looked out kitchen window to view pond in yard. Towards the north I spotted at first what I described +2009-08-15,42.3608333,-93.0994444,Eldora,IA,rectangle,6,Large, horizontal, whitish rectangle seen during the day. +2009-08-15,41.6713889,-89.9361111,Prophetstown,IL,disk,10,A silver/bright round/disk object flying at a high rate of speed in an irregular path at a high altitude in a cloudy sky over N. IL. +2009-08-15,41.85,-87.65,Chicago,IL,triangle,20,A strange flying triangle shape object moving silently at extreme speed in the night sky +2009-08-15,21.3069444,-157.8583333,Honolulu,HI,circle,180,Colorful U.F.O. spotted near Hawaii International Airport +2009-08-15,41.7488889,-87.9183333,Burr Ridge,IL,circle,900,I live in burr ridge illinois and was walking our dog east bound on our street at around nine oclock on the 15th of August. I enjoy wa +2009-08-15,42.4152778,-71.1569444,Arlington,MA,oval,600,At 9:30 pm, two oval shaped objects were seen in the sky. 10 mins later they turned north and flew off. +2009-08-15,40.4166667,-86.8752778,Lafayette,IN,other,120,Orange lit square object, over head, just above tree tops. Size of a small house. No sound. +2009-08-15,42.2933333,-75.4797222,Bainbridge,NY,triangle,300,Triangular object with three large green lights +2009-08-15,42.6702778,-71.3025,Dracut,MA,fireball,60,Orange fireball in NE SKY, i minute +2009-08-15,46.0130556,-91.4844444,Hayward,WI,circle,60,Bright redish object flew directly overhead from South to North, moving like an airplane but with no sound. +2009-08-15,40.4166667,-86.8752778,Lafayette,IN,other,10,Orange square lighted object with a dot in the middle. +2009-08-15,42.9633333,-85.6680556,Grand Rapids,MI,fireball,120,Intense fiery, orange light that appeared to move slowly towards us in the night sky, changed course, then disappeared +2009-08-15,42.9411111,-85.61,East Grand Rapids,MI,light,95,Bright orange light in Eastern Sky 90+ second event +2009-08-15,34.2694444,-118.7805556,Simi Valley,CA,fireball,30,Variable orange light in the sky over Simi CA +2009-08-15,41.4277778,-85.7525,Syracuse,IN,circle,120,huge red glowing round objects traveling horizonally at a high rate of speed with no sound +2009-08-15,47.0227778,-91.6705556,Two Harbors,MN,light,3600,We watched as three jets flew over us and headed towards a bright light that did things that we to this day can not forget.. +2009-08-15,41.7597222,-84.8719444,Ray,MI,fireball,300,saw a bright orange fire ball with a flat bottom. +2009-08-15,31.5469444,-95.3988889,Percilla,TX,light,5,Bright yellow light appeared twice +2009-08-15,38.3363889,-75.0852778,Ocean City,MD,other,300,Fenwick Island Orange UFO +2009-08-15,44.4213889,-84.1166667,Rose City,MI,fireball,120,Orange Glowing Object traveling in lower skys +2010-08-15,42.5377778,-83.4811111,Walled Lake,MI,circle,600,3 orange spheres rising into the air one after the other mins apart form same point in air no sounds +2010-08-15,43.6630556,-116.6863889,Caldwell,ID,light,30,Large very bright light seen flying west to east over Caldwell, Idaho. +2010-08-15,36.175,-115.1363889,Las Vegas,NV,oval,1800,UFOs seem to show some kind of interest with hills and mountains +2010-08-15,37.4136111,-79.1425,Lynchburg,VA,sphere,45,White orb moves erratically and fades away +2010-08-15,40.165,-75.7841667,Warwick,PA,light,240,Eight bright lights in sky that I mistook for stars until they started to move in formation +2010-08-15,31.7586111,-106.4863889,El Paso,TX,unknown,300,The only thing I can say here is that yes, we are being watched. +2010-08-15,48.1702778,-111.9452778,Conrad,MT,sphere,1200,UFO seen over Conrad , Montana 8-15-2010. ((NUFORC Note: We believe that the photo is of a high-altitude contrail. PD)) +2010-08-15,36.3302778,-119.2911111,Visalia,CA,light,60,White non blinking lights slow and fast moving at star level +2010-08-15,30.5080556,-97.6786111,Round Rock,TX,oval,120,Amber, oval lights over Round Rock, Texas on 8.15.10 +2010-08-15,43.6630556,-116.6863889,Caldwell,ID,cylinder,3,UFO Rods have been filmed in daylight--Now read about how to see them at night. +2010-08-15,45.5236111,-122.675,Portland,OR,sphere,180,Real UFO Caught On Video 08/15/2010 +2010-08-15,46.275,-84.5147222,Kinross,MI,unknown,1800,Blinking red and white light +2010-08-15,40.7311111,-122.9408333,Weaverville,CA,fireball,3600,orange ball of light spotted at trinity lake weaverville california. ((NUFORC Note: +2011-08-15,42.5469444,-77.9944444,Hunt,NY,triangle,1800,Triangle lights blinking, then slowly rotating, then blinking again. Then it took off at an unimaginable speed. +2011-08-15,35.4675,-97.5161111,Oklahoma City,OK,flash,4,Street lamp appearance, orange flashing, extremely fast, silent...phone lost signal. +2011-08-15,37.9886111,-84.4777778,Lexington,KY,triangle,7200,Close encounter of the really close kind? +2011-08-15,41.1688889,-82.2180556,Wellington,OH,circle,3600,Bright "star" like object exhibiting erratic movements caught on video, along with possible contact?! Scary, unexplained noise on video +2011-08-15,33.9561111,-83.9880556,Lawrenceville,GA,diamond,600,Diamond shaped objects sighted both SW/S and NE/E of GCAP, Dacula/Lawrenceville, GA. +2011-08-15,40.6422222,-116.9333333,Battle Mountain (54 Miles From),NV,cigar,120,When: • Monday, August 15, 2011 • Approximately 5:45-6pm PST Where: • Highway 305 in Nevada • Roughly 54 miles to Battle Mountain, NV c +2011-08-15,42.7158333,-78.8297222,Hamburg,NY,other,20,This was a large craft all black. Mt daughter and I sat down at Applebees in Hamburg when we both seen looking outside the window over +2011-08-15,35.9555556,-80.0055556,High Point,NC,triangle,300,Huge, gun metal black triangular with 3 white lights and blinking colored lights hovering, no sound. +2011-08-15,45.7838889,-84.7277778,Mackinaw City,MI,fireball,900,Orange fireball observed in sky. +2011-08-15,42.8711111,-97.3969444,Yankton,SD,light,60,I was told to come outside to view something that my friends saw in the sky because I have seen a UFO at one other point this summer. T +2011-08-15,43.6136111,-116.2025,Boise,ID,circle,300,high flying thing. ((NUFORC Note: ISS over-flight at 21:57 hrs.; SW to NE. PD)) +2011-08-15,32.8405556,-83.6325,Macon,GA,unknown,600,UFO sighting in Ga. 20 - 30 miles outside of Macon on I-16 around 10:00 P.M. Aug 15, 2011 +2011-08-15,33.4483333,-112.0733333,Phoenix,AZ,light,1800,white, red and blue flashing light in western sky at night, no motion +2011-08-15,38.7141667,-93.9911111,Holden,MO,light,20,5 red-orange Lights fading in and out from right to left horizontally +2011-08-15,43.0833333,-70.7083333,Kittery Point,ME,triangle,60,I noticed a strange plane and pointed at it, it then turned and flew directly over me and two friends, it was very low. +2011-08-15,37.7666667,-120.8461111,Oakdale,CA,light,15,2 Big Bright White Lights, Side By Side Round Shaped, With A Row Of Small Color Lights Down The Center +2012-08-15,33.4483333,-112.0733333,Phoenix,AZ,light,600,Blue/green light floating about Phoenix. +2012-08-15,40.5308333,-112.2975,Tooele,UT,formation,3,Downward arc of 5-7 lights disappearing one by one. +2012-08-15,41.7355556,-122.6333333,Yreka,CA,cigar,60,Light colored jet craft bulky,long cigar shape with no wings visible traveling at high speed at one to two miles high. +2012-08-15,36.0330556,-86.7827778,Brentwood,TN,cigar,120,Silver, silent cigar flew extremely slow for 2 minutes. +2012-08-15,44.3875,-68.2044444,Bar Harbor,ME,fireball,300,Red and orange fireball in sky +2012-08-15,42.7652778,-71.4680556,Nashua,NH,cylinder,60,2 large cylinder ufo's against cloud near FAA center in nashua nh +2012-08-15,45.6722222,-118.7875,Pendleton,OR,unknown,420,White light in the early evening +2012-08-15,42.4083333,-71.0125,Revere,MA,sphere,180,Steady orange orb travelling north then straight up and disappeared. +2012-08-15,32.7252778,-114.6236111,Yuma,AZ,oval,300,These light just went all around like an oval shape it moved to the right as It moved the back lights went off and the front lights li +2012-08-15,48.4111111,-119.5263889,Omak,WA,teardrop,1200,The light split up and came back together over and over. +2012-08-15,42.8863889,-78.8786111,Buffalo (Ne Of),NY,light,180,Bright orange dots in sky NE of Buffalo NY +2012-08-15,47.5963889,-120.6602778,Leavenworth,WA,fireball,2,I saw and orange fireball streak across the sky from generally north to south for about 2 seconds in duration. +2012-08-15,38.8047222,-77.0472222,Alexandria,VA,fireball,60,11 yellowish/red/orange spheres slowly moving over Alexandria Va, multiple witnesses. +2012-08-15,46.8722222,-113.9930556,Missoula,MT,chevron,1800,Double Chevron. Red, green, white and orange lights, hovering and moving right and left. ((NUFORC Note: Star?? PD)) +2013-08-15,34.8258333,-90.2297222,Banks,MS,sphere,300,Three bright spheres in triangle formation hovering above horizon. Slowly moved apart while one remained stationary. +2013-08-15,38.8338889,-104.8208333,Colorado Springs,CO,formation,300,Bright orange objects floating near NORAD. +2013-08-15,39.6,-75.9416667,North East,MD,unknown,15,They remained stationary as the flashed. +2013-08-15,41.4569444,-72.8236111,Wallingford,CT,other,5,Broad daylight no clouds unobstructed view of shiny object.. +2013-08-15,44.6377778,-69.5036111,Clinton,ME,cigar,60,Disturbing sightings in Maine. +2013-08-15,41.1594444,-81.4405556,Stow,OH,light,120,Big bright light that didn't move then dimmed into two littles lights and moved away and disappeared. +2013-08-15,32.8902778,-84.6811111,Warm Springs,GA,cylinder,2700,Orb dancing across the sky while ufo was near! +2013-08-15,39.0169444,-94.2813889,Blue Springs (East Of),MO,other,60,Solid black, bat shaped, flat, silent and slow flying large object over I 70 East of Blue Springs Missouri +2013-08-15,35.4741667,-83.315,Cherokee,NC,diamond,180,There was a haze or disruption around object +2013-08-15,35.4741667,-83.315,Cherokee,NC,diamond,180,Grey oval diamond shaped craft with v like indention in center. +2013-08-15,42.73,-73.7016667,Watervliet,NY,circle,1200,Silvery, shiny orb hovered above for 20 minutes. +2013-08-15,30.5227778,-87.9033333,Fairhope,AL,disk,10,2 different objects on the same day at 2 different times. +2013-08-15,31.4627778,-90.85,Bude,MS,cylinder,300,Two white cylinder shaped objects with black bands in middle fly over Bude, Ms. +2013-08-15,34.5555556,-92.5211111,Bauxite,AR,sphere,20,Saw metallic spherical object, disappeared in the sky +2013-08-15,41.4994444,-81.6955556,Cleveland,OH,light,300,3 white orbs over Lake Erie. +2013-08-15,33.5091667,-111.8983333,Scottsdale,AZ,cylinder,900,Three bright orange low object under the monsoon clouds witnessed by two people. +2013-08-15,28.5380556,-81.3794444,Orlando,FL,light,2100,I figure they may have got caught in the hurricane and were fleeing west to get out of the storm. +2013-08-15,42.8352778,-71.6494444,Milford,NH,sphere,14,Approximately between 20:45 an 21:00 on the night of Aug. 15th 2013, in the town of Milford, NH. I was walking out walking my dog down +2013-08-15,39.1011111,-74.7180556,Avalon,NJ,triangle,600,Large, black, slow moving silent stingray shaped aircraft with 2 bright front headlights- red and green taillight +2013-08-15,35.7563889,-83.9705556,Maryville,TN,unknown,120,Saw a large mass moving sporadically with white and red (inconsistent) blinking lights and a humming sounds in waves. +2013-08-15,26.5216667,-82.1894444,Captiva,FL,oval,3900,THIRD SIGHTING IN 3 NIGHTS OF A SILVER-GOLD, ELONGATED/FOOTBALL SHAPED UFOS EMERGING FROM THE GULF OF MEXICO AND POSSIBLE SECOND SIGHTI +2013-08-15,42.5802778,-83.0302778,Sterling Heights,MI,light,50,Observed two plasma like orbs of difused light moving East to west at afast clip and low altitude. +2013-08-15,33.6,-117.6711111,Mission Viejo,CA,circle,120,Object bright orange in color,no noise heard,moved slowly and became smaller and disappeared +2013-08-15,36.1675,-79.1680556,Cedar Grove,NC,circle,15,Greenish circles right above the treeline. As big as a car and moving together +2013-08-15,47.6777778,-116.7794444,Coeur D'alene,ID,light,60,White bright star was there then vanished. +2013-08-15,27.9011111,-81.5861111,Lake Wales,FL,sphere,5,Around 10pm on August 2013 myself and a friend were standing in his driveway(facing south) shooting the breeze when we both witnessed t +2013-08-15,30.5080556,-97.6786111,Round Rock,TX,sphere,5,Blue-green light falls from sky. +2013-08-15,42.0583333,-71.25,Foxboro,MA,disk,60,Orange disk shaped object moving across the sky in Foxboro, MA +2013-08-15,47.9505556,-124.3841667,Forks,WA,light,120,Solid white light being followed by U.S. fighter jet. +2013-08-15,42.1291667,-80.0852778,Erie,PA,disk,900,((HOAX??)) Ufo visiting my neighbors. +1945-08-16,33.9177778,-106.8652778,San Antonio,NM,oval,777600,THE CRAFT APPEARED TO HAVE DECENDED AT AN ANGL, SKIDDED OVER A HUNDRED YARDS PUSHING THE DIRT IN FRONT OF IT AND BURIED IT'S SELF +1962-08-16,42.7761111,-71.0777778,Haverhill,MA,disk,300,Two Silver Disks observed in broad daylight. +1967-08-16,39.9258333,-75.12,Camden,NJ,changing,600,Dark "disc" over Newton Creek in Camden, first appeared "round" and then to "oval" to a fine line to nothing! +1974-08-16,43.2616667,-70.8658333,Somersworth,NH,disk,10,Saucer seen from about 40 feet away at top of trees in Somersworth, NH, 36 years ago. +1975-08-16,29.8186111,-95.0558333,Highlands,TX,fireball,180,Ball of light like a roman candle +1975-08-16,39.7683333,-86.1580556,Indianapolis,IN,triangle,120,Triangular object,got within 200 feet,stopped in mid air,took off like a rocket and dissapeared,never made any noise. +1980-08-16,33.6211111,-94.7436111,Pine Springs,TX,light,180,A Falling Star That Changed its Mind because it went back UP! +1985-08-16,31.2925,-85.1116667,Columbia,AL,other,90,"I don't know what the hell that is" +1986-08-16,29.3625,-100.8963889,Del Rio,TX,triangle,20,V-shaped object in Del Rio Texas +1991-08-16,42.1130556,-70.8125,Hanover,MA,light,1200,A bright light moving erraticlly toward us was then was chased by two fighter jets. +1992-08-16,38.4405556,-122.7133333,Santa Rosa,CA,unknown,600,I was visited by an unexplained anamoly in the middle of the morning. +1992-08-16,45.4313889,-122.7702778,Tigard,OR,unknown,120,Lights 8-10 'v' shaped gliding across sky, no sound, gigantic, blacked out sky so no stars or planes could be seen. +1995-08-16,41.2586111,-95.9375,Omaha,NE,disk,300,6 witness saucer gliding over building at close range +1995-08-16,41.760555600000004,-88.32,Aurora,IL,triangle,300,A slow moving craft in triangular shape at about 100 to 200 feet altitude. A series of 3 lights in a trianbular shape under the craft. +1995-08-16,47.6741667,-122.1202778,Redmond,WA,unknown,300,redmond washington sighting 1995 +1996-08-16,39.3458333,-84.5605556,Fairfield,OH,triangle,60,Triangle shape observed on bright sunny day +1996-08-16,34.4208333,-119.6972222,Santa Barbara,CA,triangle,3,My wife and I were walking towards our car through the back parking lot of Andreas Restaurant after dinner. I was looking towards the d +1997-08-16,35.3691667,-81.9569444,Rutherfordton,NC,cigar,25200,A cigar shaped craft with 2 6-ft tall beings obucted me and later crashed in the mountians of lake lure. +1998-08-16,39.3638889,-121.6925,Gridley (10 Miles N Of, And 20 Miles Se Chico),CA,flash,5,Brief period of light flashed in my car window about 1/4 mile to right and problably no further than 2 to 3 miles in front. +1999-08-16,42.6827778,-89.0186111,Janesville,WI,flash,5,At 01:45 am. I was at work and we were outside taking a break when I saw a giant flash of light in the sky it was 50 times bigger then +1999-08-16,62.3166667,-150.2313889,Trapper Creek (10 Miles North Of),AK,oval,5,driving south on the Parks hiway, just happened to look out the side window and up as a large oval shaped craftpasses overhead right to +1999-08-16,41.6638889,-83.5552778,Toledo,OH,light,240,three crafts looking like stars flying very high in sky.travaling from swest to neast. +1999-08-16,40.1744444,-74.9230556,Langhorne,PA,other,2,Green, glowing ball not quite the size of a full moon, silent, fast, sighting lasted a couple of seconds. The object passed directly o +1999-08-16,39.7452778,-85.1941667,Bentonville,IN,fireball,60,It was an orange ball hovering over (to our vantage point) a grain elevator. After a short time, it just vanished. The next night, th +1999-08-16,47.7505556,-90.3341667,Grand Marais,MN,sphere,960,In late August, 1999, my wife and I were staying at a cabin on the ridge overlooking Lake Superior just outside Grand Marais, Minnesota +2000-08-16,45.5236111,-122.675,Portland,OR,other,45,Early morning sighting of two red, square shaped objects preceded by a deep rumbling. +2000-08-16,38.4022222,-122.8227778,Sebastopol,CA,sphere,180,a large round hot pink balloon object with golden rays of light shooting out under it. +2000-08-16,40.7608333,-111.8902778,Salt Lake City,UT,fireball,5,08/16/00 22:42 hrs fireball from south to north salt lake county +2000-08-16,40.6,-112.4636111,Grantsville,UT,fireball,10,Green Ball with a trail of fire behind it. +2000-08-16,33.8886111,-117.8122222,Yorba Linda,CA,other,300,saw an object hover flash 2 times and completely dissapear +2000-08-17,26.1219444,-80.1436111,Fort Lauderdale (Near),FL,light,60,I normaly wouldn't report seeing anything because I have seen many odd things and think most of them were mostly my imagination. I don +2001-08-16,33.6,-117.6711111,Mission Viejo,CA,triangle,120,looked to the eastern sky and saw a large triangle shaped v hovering and all off a sudden it shot foward and then stopped and hoverered +2001-08-16,43.7866667,-75.4922222,Lowville,NY,oval,180,Flash of Light +2001-08-16,40.5866667,-122.3905556,Redding,CA,light,1500,THESE UFO'S HAVE BEEN SHOWING UP EVERY NIGHT SENSE I CAME TO CALIFORNIA. +2001-08-16,40.8480556,-73.9980556,Palisades Park,NJ,oval,300,It was oval shape with cap (full of white color lights). +2001-08-16,39.9441667,-74.0733333,Seaside Heights,NJ,light,30,2 lights over the Atlantic Ocean zipping around eachother. +2001-08-16,45.5236111,-122.675,Portland,OR,fireball,7,ball of light_w/aura shoots across portland/ nitesky....no story at 11:00 +2001-08-16,36.0544444,-112.1386111,Grand Canyon,AZ,triangle,20,At night 3 white lights in a triangular shape moving slowing across the sky. +2002-08-16,47.6063889,-122.3308333,Seattle,WA,light,10,3 star-like lights moving in straight line across the sky. Very fast with no sound. +2002-08-16,36.1397222,-120.3591667,Coalinga (Near, On South I-5),CA,triangle,180,triangular object with 3 huge spotlights chasing our vehicle on the freeway +2002-08-16,40.9152778,-81.1061111,Alliance,OH,cylinder,180,Missle shaped craft, no wings, no lights, no landing gear, no sound, no CHEM TRAIL +2002-08-16,44.9061111,-66.9905556,Eastport,ME,light,10800,Orbs of light watching me. +2002-08-16,33.6888889,-78.8869444,Myrtle Beach,SC,oval,900,The evening of 08/17/02 around 22:00 while looking out over the ocean in Myrtle Beach,SC (3 people) we saw bright red and orange luminc +2002-08-16,39.7683333,-86.1580556,Indianapolis,IN,light,120,Two lights flying through the sky, stopping for 3 seconds then dispearing in the distance, southwest to northwest. +2002-08-16,30.5080556,-97.6786111,Round Rock,TX,sphere,8,Single pulse of light followed by a high rate of speed and extraoridanary altitude. +2002-08-16,34.2255556,-77.945,Wilmington,NC,light,1800,four lights form square North of Wilmington, N.C. Friday, Aug 16 10pm +2002-08-16,39.8716667,-79.4925,Ohiopyle,PA,light,300,bright light in high altitude, looked like a star and travelled at great speeds in awkward directions. +2003-08-16,34.1477778,-118.1436111,Pasadena,CA,sphere,40,Slow moving , translucent object , that blocked out other stars , observed..... +2003-08-16,38.5816667,-121.4933333,Sacramento,CA,chevron,240,Silent "flying wing" low and slow over McClellan AFB. +2003-08-16,33.3061111,-111.8405556,Chandler,AZ,other,1200,They looked like tiny satellites with thier solar panels extended. +2003-08-16,29.7630556,-95.3630556,Houston,TX,unknown,2700,A UFO report that I submitted for August 16, 2003 is not included in the viewable database records on the website. Peter Davenport requ +2003-08-16,29.7630556,-95.3630556,Houston,TX,formation,2700,Three dark mysterious objects in the afternoon sky +2003-08-16,41.8661111,-88.1069444,Wheaton,IL,cylinder,120,i dont know what i was seeing +2003-08-16,38.1302778,-121.2713889,Lodi,CA,unknown,1200,Strange light over Lodi +2003-08-16,35.3733333,-119.0177778,Bakersfield (80 Miles North Of),CA,unknown,300,An eractic object with three bright white lights traveling with traffic over I-5 in the middle of California +2003-08-16,33.9294444,-116.9763889,Beaumont,CA,changing,600,black grayish thing ((NUFORC Note: May not be a serious report, but we are not certain. PD)) +2003-08-16,34.0702778,-117.395,Bloomington,CA,formation,3600,light formation in san bernardino ((NUFORC Note: Probable advertising light. PD)) +2003-08-16,36.175,-115.1363889,Las Vegas,NV,fireball,4,Las Vegas Fireball seen at Spanish Trails after the storm passed on Saturday Aug 16, 2003 +2003-08-16,45.9933333,-123.9213889,Seaside,OR,light,5,Twin objects race across the sky in an unusal criss-cross pattern in an exciting sighting at the Oregon coast! +2004-08-16,39.5358333,-76.3486111,Bel Air,MD,disk,3600,One night I walked outside to get a breathe of fresh air and a saw two lights in the sky. They were not air planes because they were mo +2004-08-16,34.5794444,-118.1155556,Palmdale,CA,triangle,60,Palmdale, California 3 Triangles Sighted While out photographing the meteor shower show to take in the skies of East Palmdale Californ +2004-08-16,41.6269444,-88.2038889,Plainfield,IL,flash,3,Flash in the sky in Plainfield, IL +2004-08-16,34.1083333,-117.2888889,San Bernardino,CA,oval,3600,We observed four lit up objects which appeared to be in a triangle formation,that were just hovering over the north-east skies, one of +2004-08-16,34.1511111,-118.4483333,Sherman Oaks (Los Angeles),CA,other,10,flying wing type object in the los angeles area. 4:30am 8-16-04 +2004-08-16,47.4830556,-122.2158333,Renton,WA,disk,360,flying saucer hovering between trees in my backyard above the power line (recharging, perhaps?) +2004-08-16,47.6741667,-122.1202778,Redmond,WA,light,1800,Star-like object, but to bright to be a star. Hovered in the eastern sky for extensive period of time. +2004-08-16,26.0027778,-80.2241667,Pembroke Pines,FL,cross,2580,Cross-shape with what appeared to look like neon lights starting in the center and radiating outward. ((Celestial body??)) +2004-08-16,41.5380556,-72.8075,Meriden,CT,unknown,300,A ship flew right over my head +2004-08-16,61.2180556,-149.9002778,Anchorage,AK,circle,10,6 Flying objects spotted in anchorage ak +2004-08-16,30.2458333,-87.7008333,Gulf Shores,AL,triangle,300,Object looked to be a mile high ,at least half mile wide with five lights three feet across on bottom. +2004-08-16,33.4483333,-112.0733333,Phoenix,AZ,triangle,1800,Phoenix sighting of 7 strange ships in the air +2004-08-16,35.5066667,-97.7622222,Yukon,OK,other,2,Object was first sighted traveling in a Northerly direction & would have been West of Will Rogers World Airport in Okla. City, Okla. As +2004-08-16,45.7833333,-108.5,Billings (Southeast Of),MT,light,300,It was a reoccuring visual object then followed by an occurrence of thunderous noise in the same area. +2004-08-16,45.1752778,-121.0802778,Maupin,OR,flash,45,2130 object flashed on for about 2 full seconds then off for 5 seconds each time at roughly 5 deg. track object in outer space +2004-08-16,36.0305556,-75.6763889,Kill Devil Hills,NC,chevron,120,On the night of the 16th of August 2004, my wife and I observed a chevron craft moving in a south to north direction parallel to the co +2004-08-16,48.0841667,-121.9675,Granite Falls,WA,changing,21600,A bright object with flashing colored lights and consistent back and forth movement appeared in the Northwest Sky at about 10PM. +2005-08-16,37.9780556,-122.03,Concord,CA,other,300,shape changing ribbonlike objectwith lights at each end +2005-08-16,40.1738889,-80.2463889,Washington,PA,light,10,Bright orange stationary light that disappeared quickly. +2005-08-16,41.3144444,-81.8358333,Strongsville,OH,triangle,60,Triangle-shaped craft with yellow and red blinking lights grouped together in the center. +2005-08-16,30.5786111,-97.8527778,Leander,TX,light,15,Bright light from nowhere. ((NUFORC Note: Possible flare from Iridium satellite. PD)) +2005-08-16,39.7294444,-104.8313889,Aurora,CO,light,10,Flashing light Ascends quickly in the night sky +2005-08-16,43.2344444,-70.81,South Berwick,ME,triangle,900,this night was hot and hughmid we had went out on the deck and laid out on the proch to watch the stars when we saw this thing zooming +2006-08-16,37.3394444,-121.8938889,San Jose,CA,changing,10800,I have been seeing this star like light for over two years from my kithchen window. ((NUFORC Note: Twinkling star? PD)) +2006-08-16,29.9688889,-95.6969444,Cypress,TX,unknown,10,using f4.5 13.1 inch reflector telescope with a wide angle 40mm ocular obseving beehive star cluster 2am thursday august 16 2006. into +2006-08-16,39.1652778,-86.5263889,Bloomington,IN,light,300,Light moving from East to West above Lake Lemon near Bloomington. +2006-08-16,30.2669444,-97.7427778,Austin,TX,fireball,750,This object hovered, moved up/down/left/right changed into four different colors, and we heard a faint noise +2006-08-16,43.0513889,-83.3188889,Lapeer,MI,triangle,10,triangle w/3 lights (red, green, and white) on the underside. flew south towards peppermill rd. caused electrical problems. +2006-08-16,37.2872222,-121.9488889,Campbell,CA,chevron,60,2 V-shaped objects at a fast rate of speed crossing over eachother and very high in the sky +2006-08-16,41.6916667,-70.5,Forestdale,MA,circle,2,I was outside on the phone with my girlfriend, something weird in my gut told me to look up to the sky. +2006-08-16,35.7511111,-86.93,Spring Hill,TN,light,2,I saw a very bright orangish colored light traveling very fast over Spring Hill. +2006-08-16,38.7244444,-83.0133333,South Portsmouth,KY,light,7200,Blinking lights over South Portsmouth Ky +2006-08-16,33.8886111,-117.8122222,Yorba Linda,CA,disk,120,saw 2 lights in the sky. moving awkwardly. one flashed and dissapeared. the other dissapearded before . it was colorful +2006-08-16,42.1486111,-72.6083333,Chicopee,MA,unknown,1800,Whitish light with red light/s flash left and then right at odd intervals +2007-08-16,44.3730556,-71.6105556,Whitefield,NH,disk,600,Saucer stopped and appeared to search for something before flying behind Mount Washington. +2007-08-16,30.3333333,-87.1375,Pensacola Beach,FL,sphere,300,Bright orange balls of light flying in formation fading and reapearing over the water. ((NUFORC Note: +2007-08-16,46.5158333,-67.8669444,Mars Hill,ME,cylinder,900,Object was stationary for 10 min then dissappeared. +2007-08-16,41.0786111,-73.4697222,Darien,CT,egg,1,((HOAX??)) Neon green object dissapears in night sky. +2007-08-16,40.6866667,-73.3738889,Lindenhurst,NY,light,5,Green shooting light seen in sky over Lindenhurst, Ny +2007-08-16,40.5575,-74.285,Woodbridge,NJ,disk,60,Up in the sky was a hovering disk shaped object with yellow and blue lights. +2007-08-16,41.8025,-71.8863889,Danielson,CT,light,2,green light shoots through the sky turning to white and quickly dissapears +2007-08-16,40.6836111,-73.5105556,Wantagh,NY,other,2,ufo recon on long island? +2007-08-16,40.7141667,-74.0063889,New York City (Brooklyn),NY,fireball,3,Bright Neon Blue/Green Fireball flashed in the Brooklyn Sky on August 16, 2007 +2007-08-16,40.5866667,-122.3905556,Redding,CA,light,5,Single light making 90 degree turns, starting and stopping instantly without acceleration. +2008-08-16,42.2236111,-76.1836111,Newark Valley,NY,light,600,Bright light in sky moving back and forth and then disapeared +2008-08-16,38.6858333,-121.3711111,North Highlands,CA,light,2100,A BRIGHT LIGHT DANCING IN THE SKY FOR 35 TO 40 MINUTES ZIG-ZAGGING FAST AND SLOW +2008-08-16,41.8994444,-87.9402778,Elmhurst,IL,fireball,120,Too fast for a balloon or blimp, too colorful and soundless +2008-08-16,40.925,-98.3416667,Grand Island,NE,oval,300,My husband and I saw two silent, low flying, bright circular lights with orange tint, about 10 p.m. +2008-08-16,45.9975,-121.5269444,Trout Lake,WA,oval,45,UFO shines a beam of light at us then shoots across the night sky and disappears +2009-08-16,47.6402778,-92.5252778,Britt,MN,light,1800,Blinding lights over Britt,MN +2009-08-16,34.4113889,-118.5391667,Saugus,CA,fireball,30,Red burning light stationary in sky - Los Angeles +2009-08-16,42.135555600000004,-71.9705556,Charlton,MA,light,18000,We noticed a very bright spot in the sky. The main color was white. ((NUFORC Note: Star or planet, we suspect. PD)) +2009-08-16,37.0808333,-119.4844444,Auberry,CA,triangle,15,Silver triangle shape - Silent +2009-08-16,34.1866667,-118.4480556,Van Nuys,CA,cylinder,1200,not an airplane,it hapended close to burbank & van nuys airport +2009-08-16,33.4483333,-112.0733333,Phoenix,AZ,sphere,1200,Flashing moving lights over Phoenix AZ +2009-08-16,42.3405556,-75.1655556,Franklin,NY,changing,10800,light that changed in # and color from 1-4 lights and from yellow-orange-green/blue. +2009-08-16,42.3405556,-75.1655556,Franklin,NY,changing,7200,dancing light (lights) appear to be in a cluster that changes shape and color. +2009-08-16,43.5786111,-85.4491667,Stanwood,MI,fireball,120,Orange puslating ball that flew in erratic motion. +2009-08-16,35.4675,-97.5161111,Oklahoma City,OK,light,600,Me and my children where coming home as we drove up in the drive way we seen a lights going real slow in the sky and it was going so sl +2010-08-16,34.1425,-118.2541667,Glendale,CA,circle,3,Big green light fall out of the sky. ((NUFORC Note: Meteor?? PD)) +2010-08-16,39.6294444,-79.9561111,Morgantown,WV,cigar,300,Cigar shape rolling through sky +2010-08-16,41.5141667,-74.3838889,Circleville,NY,light,60,light coming strait at me like a plane from the SW, (middletown area) and then shot up fast above the moon exiting the atmosphere. +2010-08-16,38.005,-121.8047222,Antioch,CA,light,900,UFO sighted over Antioch, CA 08/16/10 Stationary for 10 minutes. +2010-08-16,25.8572222,-80.2783333,Hialeah,FL,light,60,Light flying in the sky like an insect. +2010-08-16,45.1572222,-88.7644444,White Lake,WI,light,7200,Multiple LARGE red/orange lights flying irratically +2010-08-16,42.9336111,-85.3419444,Lowell,MI,fireball,300,Two bright fireball orbs staying still then began to spin around each other a third object appeared then the other 2 dissapeard +2010-08-16,46.0647222,-118.3419444,Walla Walla,WA,other,7,This may or may not be a UFO sighting but I thought i should share it cause I just cannot explain what I saw. I was out walking my dog +2010-08-16,40.1044444,-74.9516667,Bensalem,PA,triangle,300,Triangle Shaped Craft (3 white lights and Dull red Light) +2010-08-16,46.5927778,-112.0352778,Helena,MT,fireball,180,Fiery orange-red ball slowly poassed over the valley. +2010-08-16,43.0605556,-88.1063889,Brookfield,WI,light,30,Me and my co-worker saw a string of 7 lights. I thought it was a promotional thing some local business was doing, but the lights rotat +2011-08-16,39.0086111,-94.4633333,Raytown,MO,triangle,900,Very bright color changing triangular shaped object floating and flying over small area +2011-08-16,36.1880556,-94.5402778,Siloam Springs,AR,circle,7200,star like object moving slowly in the sky very bright no sound +2011-08-16,37.9886111,-84.4777778,Lexington,KY,cylinder,6,Flat, reflective object spotted at high speed along US 60. Enters small cloud, Does not exit. +2011-08-16,47.4958333,-121.7855556,North Bend,WA,unknown,1200,Unidentified object in Western Washington sky on a bright sunny morning. +2011-08-16,43.3666667,-124.2166667,Coos Bay,OR,light,420,I saw a steady ball of light with no sound about 20ꯠ feet fly by in a northesterly direction from coos bay +2011-08-16,36.5483333,-82.5619444,Kingsport,TN,cylinder,10,Why is The Hubble Telescope flying so low? +2011-08-16,43.5172222,-70.3780556,Old Orchard Beach,ME,formation,300,6 slow moving balls of light disappear into a cloud +2011-08-16,36.5483333,-82.5619444,Kingsport,TN,cylinder,45,Out on 8:05 evening walk, looked up just as shiny object came from tree line overhead, it looked like 2- 55 gal. drums, separated in mi +2011-08-16,45.6388889,-122.6602778,Vancouver,WA,disk,10,gray to transparent disc traveling overhead from nnw to sse no sound +2011-08-16,43.6136111,-116.2025,Boise,ID,light,600,Bright Red UFO Seen Over Boise at End of Hyde Street Fair +2011-08-16,39.0416667,-94.72,Shawnee,KS,fireball,180,Observed two slow moving fireballs come out of the north, heading south, turned and went north. Both emitted no sound. +2011-08-16,36.0544444,-112.1386111,Grand Canyon (North Rim),AZ,oval,3600,Bright multi colored object seen at night,at our campsite near the Grand Canyon North Rim. +2012-08-16,41.3747222,-83.6513889,Bowling Green,OH,triangle,5,Giant white triangular UFO hovers over me for a 3 seconds then shoots off into the sky. +2012-08-16,39.5205556,-74.4861111,Port Republic,NJ,changing,1800,Two large light objects stationary in sky for over 20 minutes, just changed light shapes and then gone +2012-08-16,38.7525,-122.6138889,Middletown,CA,light,120,A bright, glowing object- not resembling an aircraft- proceeding Northerly and then turning Eastward disappeared into the early dawn. +2012-08-16,39.9441667,-74.0733333,Seaside Heights,NJ,disk,120,My wife, son, sister and her two kids were watching a movie on the beach in Seaside Heights, NJ with at least 25 other people when my w +2012-08-16,41.1175,-73.4083333,Norwalk,CT,triangle,420,We have a home on direct waterfront at a point unobstructed in Rowayton ( Norwalk ) CT and have never seen anything like this! +2012-08-16,44.5438889,-73.1483333,Colchester,VT,fireball,120,Bright red moving light in the NE sky +2012-08-16,37.5058333,-77.6494444,Midlothian,VA,flash,20,Pimk ball of light flashes in the sky over Midlothian, Virginia +2012-08-16,34.1480556,-117.9980556,Monrovia,CA,disk,300,It was round outline in red with lights in center and a glow aroung the object. +2012-08-16,42.0408333,-74.1186111,Woodstock,NY,fireball,300,Two fireballs flying over New York +2012-08-16,40.7402778,-75.31,Nazareth,PA,unknown,120,I saw a very bright light one night as I was taking out the recycling, when I returned with another can, it was gone. +2012-08-16,36.9741667,-122.0297222,Santa Cruz,CA,sphere,300,Round red orange object stationary in the sky. Disappeared and reappeared quickly in the south east sky. +2012-08-16,43.7380556,-69.8408333,Small Point,ME,sphere,120,Orange looking fireballs floating, dimming and brightening, and making circular motions around each other before vanishing. +2012-08-16,38.9916667,-74.8152778,Wildwood,NJ,unknown,5,Very fast sighting of a light traveling at a speed that was incredible . +2012-08-16,45.0602778,-123.6080556,Grand Ronde,OR,sphere,3600,Slow moving orange globes traveling from west to northeast, seemed to vibrate +2012-08-16,48.6330556,-112.3252778,Cut Bank,MT,sphere,20,Bright orbs, triangular lights, strange planes on patrol near a airforcebase in northern montana +2012-08-16,46.6044444,-122.5305556,Cinebar,WA,triangle,60,Bright lights in triangle turns then seems to enter space. +2012-08-16,30.3580556,-90.0655556,Mandeville,LA,light,7,White round light becoming bright/slightly larger, stopping, turning bluish/white and fading out. +2013-08-16,37.5913889,-80.5438889,West Union,WV,circle,3600,A big ball was over our head and it did not seem from this world as i know? +2013-08-16,43.073055600000004,-89.4011111,Madison,WI,fireball,600,Five fireball looking objects appeared moving at high speeds from the northwest moving south, southeast. One after another they moved a +2013-08-16,37.3541667,-121.9541667,Santa Clara,CA,circle,180,Got out of car to stretch my back after dropping my wife off at work, where she runs a project as a program coordinator at the local co +2013-08-16,46.2511111,-119.9005556,Grandview,WA,light,180,Seen something a cant explane what it was. +2013-08-16,36.2080556,-86.2911111,Lebanon,TN,cigar,360,Cigar Shapped object in clouds at sunset. +2013-08-16,39.2286111,-104.8866667,Larkspur,CO,disk,900,Orange saucer like object bobbing in night sky, running lights all around perimeter. +2013-08-16,38.5130556,-90.4358333,Fenton,MO,circle,20,Large bright orange craft. Silent and flew by fast +2013-08-16,38.3030556,-77.4608333,Fredericksburg,VA,circle,480,Slow flashing light grew dim enough to reveal circular craft at the center with dimmer steady lights around outer rim. +2013-08-16,39.9547222,-82.8122222,Reynoldsburg,OH,sphere,60,Yellowish orange ball of fire travelling across the sky +2013-08-16,38.676944399999996,-84.9069444,Sparta,KY,fireball,180,Seen hovering over house in triangle shape with blinking lights until fading away. +2013-08-16,40.0191667,-82.8794444,Gahanna,OH,light,600,Orange lights over the night sky in formation. Close without any noise moving slowly then fading away +2013-08-16,26.6833333,-80.28,Loxahatchee,FL,cone,90,Three orangish/red glowing objects hovering across the sky and finally disappearing straight up into space +2013-08-16,39.5186111,-104.7608333,Parker,CO,light,120,Bright orange light seen moving slowly in sky then disappears! +2013-08-16,43.0480556,-76.1477778,Syracuse,NY,other,300,At approximate time given I went outside my front door to observe a flashing stationary object composed of a red and yellow cluster bli +2013-08-16,35.9216667,-81.1766667,Taylorsville,NC,light,1800,Erratically moving white light saw by family of three in alexander county nc +2013-08-16,28.5380556,-81.3794444,Orlando,FL,fireball,180,An orange burning globe floated across the eastern sky in Orlando, Florida at 22:06 on 8/16/2013. +2013-08-16,41.9163889,-83.3977778,Monroe,MI,light,900,At least 17 reddish-orange lights ascending into the night sky over Monroe, Michigan 8/16/13 +2013-08-16,47.885,-120.1572222,Manson,WA,circle,15,Very bright, round light appeared instantly and receded. +2013-08-16,26.5216667,-82.1894444,Captiva,FL,fireball,15,4th SIGHTING OF A SILVER-GOLD, GLOWING ELONGATED/FOOTBALL SHAPED UFO POSSIBLY EMERGING FROM THE GULF OF MEXICO, AND FIRST SIGHTING OF A +2013-08-16,44.8277778,-92.9436111,Cottage Grove,MN,fireball,900,Four fireballs over eastern Minnesota. +2013-08-16,42.5005556,-90.6644444,Dubuque,IA,oval,600,Beautiful orange lights that moved without any sound +2013-08-16,35.3733333,-119.0177778,Bakersfield,CA,triangle,15,Three bright lights with bright reddish color. +2013-08-16,37.595,-120.9566667,Ceres,CA,triangle,300,BLUE LIGHTS FORM TRIANGLE OVER CENTRAL CALIFORNIA. +2013-08-16,40.3041667,-73.9927778,Long Branch,NJ,formation,600,What is this: A Forfmation then cingular orbs!? +2013-08-16,39.5752778,-76.9961111,Westminster,MD,fireball,240,Orange glowing object that didn't blink or flash it looked like it was on fire +1955-08-17,34.09,-117.8894444,Covina,CA,disk,600,It was about 1500 ft up. It just stayed there in one spot for 10 mins then was gone. +1957-08-17,40.8830556,-85.4975,Huntington,IN,triangle,3600,Directly over head at tree level a Massive, Silent, Hovering Object blocking the night sky +1960-08-17,33.7669444,-118.1883333,Long Beach (Terminal Island),CA,other,5,9/17/1960 -21:10 hours-Terminal Island, Califronia, Four Crescent over LBNSY- observed 4-5 seconds above broken clouds +1966-08-17,44.24,-68.3444444,Bass Harbor,ME,disk,300,Disk shape object seen in Blue Hill Bay, Bass Harbor, ME , 1966 +1966-08-17,39.5477778,-81.6397222,Beverly,OH,cigar,1200,IT WAS A WARM SUMMER NIGHT.THERE WAS 6 OF US IN MY NEW COBVERTIBLE.WE WERE ALL 16-17 YRS OLD AND NO WE WERE NOT DRINKONG OR SMO +1969-08-17,34.1722222,-118.3780556,North Hollywood,CA,sphere,600,Was up late watching TV and glanced out of nearby window to witness 6-7 bright orange lights to the south about half of a mile away. +1975-08-17,42.4736111,-73.1666667,Dalton,MA,circle,900,I was about 12 years old when this event happened. I walked into my yard at about 11 o'clock when all of a sudden everything became ext +1978-08-17,35.6225,-117.67,Ridgecrest,CA,disk,900,To whom it may concern, +1979-08-17,41.7244444,-81.2458333,Painesville (Township),OH,triangle,1680,ATTN: This is for Peter Davenport +1982-08-17,34.0522222,-118.2427778,Los Angeles,CA,oval,15,Small flying "metal Death Stars" +1982-08-17,38.3566667,-121.9866667,Vacaville,CA,fireball,480,Fireballs seen in Vacaville, CA. +1987-08-17,44.0463889,-123.0208333,Springfield,OR,cigar,240,Cigar Shaped and extremely close +1987-08-17,32.7152778,-117.1563889,San Diego (North),CA,disk,600,Silver disc hovering very highup in a specific triangular pattern. +1987-08-17,34.7444444,-120.2772222,Los Alamos,CA,chevron,1800,horseshoe shaped ( like an elect, razor) 6 or 7 feet long ,same wide approx 3ft deep ,blue light in window/w ,flashin red light in mid +1990-08-17,38.6858333,-121.0811111,El Dorado Hills,CA,unknown,60,sighting high up in space +1997-08-17,40.9294444,-75.3163889,Sciota,PA,disk,300,This is the second incident, nearly a year or so after my time in Haiti. One night in what I think is August 1997, I was home in b +1997-08-17,36.6777778,-121.6544444,Salinas,CA,light,1800,a LIGHT IN THE SKY THAT LOOKED LIKE THE NORTH STAR. THE DIFFERENCE WAS WE COULD SEE THE MOON AND THE NORTH STAR. THE OTHER LIGHT I COUL +1997-08-17,39.9522222,-75.1641667,Philadelphia,PA,sphere,25200,I sighted in daylight between 1 and 8 small, bright, round objects high in the sky over a period of 7 hours that flew from north to eas +1997-08-17,42.2916667,-85.5872222,Kalamazoo,MI,disk,17,A saucer in the sky. 500 Lights On Object0: Yes +1997-08-17,42.5,-96.4,Sioux City,IA,triangle,10,the 4 of us saw a totally black triangle shaped object with no lights or sound fly over head blackining the stars out. +1997-08-17,38.1336111,-92.5897222,Kaiser,MO,light,45,First spotted as a round white light between the moon and Venus, stationary, then accelerated so quickly across the sky that it was out +1997-08-17,41.7469444,-88.0502778,Woodridge,IL,light,60,BLUE/WHITE LIGHT APPEARED IN SKY,IT FLASHED INTENSELY THEN DIMMED AND ACCELERATED HORIZONTALLY,THEN SLOWED TO A STOP WHILE ITS LIGHT SO +1998-08-17,37.8172222,-96.8619444,El Dorado,KS,circle,420,I was standing in my driveway getting into my car when it happened. My back started to get extremly hot, it felt like I was getting a +1998-08-17,45.5972222,-122.9922222,North Plains,OR,oval,180,color silver,oblong shape,distance about a mile away,it wobbled and that was how i saw it had no wings,moving west to east +1998-08-17,41.4427778,-73.0630556,Beacon Falls,CT,light,60,My friend and I had just got out of my car in my driveway, looked up to the night sky which was the western sky, and saw a small light, +1998-08-17,42.9019444,-78.3505556,Darien,NY,triangle,5,UFO over a failed Laser Light show at Six Flags Park. +1999-08-17,47.1302778,-119.2769444,Moses Lake,WA,changing,300,3 blue/green lights (sometimes merged into one) moving absolutely silent across the sky from apx. west to east +1999-08-17,45.5236111,-122.675,Portland,OR,other,900,Stationary object over downtown Portland Oregon, white in color shaped like 3-pointed star or "Y". +1999-08-17,36.175,-115.1363889,Las Vegas,NV,disk,1200,Two silver disc directly over the city. +1999-08-17,33.4483333,-112.0733333,Phoenix,AZ,diamond,600,four lights in diamond config., size: laptop held at arms length. fast, silent, superstruture. +1999-08-17,38.2494444,-122.0388889,Fairfield,CA,other,120,STRANGE SILENT CRAFT SKIRTS MAJOR A.F. BASE! +1999-08-17,40.6588889,-74.3477778,Westfield,NJ,circle,3,I was on my hammock with my 19 mos. old son -- I was trying to rock him to sleep when I saw a small circular pinpoint -- green in hue - +1999-08-17,42.9633333,-85.6680556,Grand Rapids,MI,light,1080,Sighted a ball of light in the SW sky. It would flash red,green, and white while dimming and brightening. +1999-08-17,39.2666667,-74.6452778,Marmora,NJ,light,20,Erratic Light In The Sky +2000-08-17,42.1675,-71.3583333,Millis,MA,circle,1800,20 yr old paraplegia and 48 year old father. Silhouette in window, very bright white light, dog frightened, dog will not go into area o +2001-08-17,38.8466667,-91.9477778,Fulton,MO,cigar,120,Silver cigar over Central Missouri +2001-08-17,45.5236111,-122.675,Portland,OR,sphere,300,Daytime UFO sighting over Portland Oregon +2001-08-17,40.7608333,-111.8902778,Salt Lake City,UT,light,60,1 brite lite moveing straite and disaperd +2001-08-17,41.14,-104.8197222,Cheyenne,WY,other,240,Looked like the sun or moon. +2001-08-17,39.6402778,-106.3736111,Vail,CO,unknown,5,Sky illuminated with colours in Vail, CO, Friday, Aug 17, 2001. +2001-08-17,36.2166667,-81.6747222,Boone,NC,circle,600,Circle of lights over BOONE, NC +2001-08-17,34.54,-112.4677778,Prescott,AZ,light,180,Erratic starlike objects "dancing" in the sky +2001-08-17,48.1988889,-122.1238889,Arlington,WA,light,40,Rotating white lights eminating from the sides with a red light in the middle +2001-08-17,44.2911111,-121.5480556,Sisters (7 Miles Sw Of),OR,light,120,2 identical objects seen at high altitude. +2001-08-17,43.8441667,-88.96,Green Lake,WI,light,60,So for this intense light,being thesize of a football field, to just disappear as though a switch was flipped off... +2001-08-17,43.5336111,-109.6297222,Dubois,WY,triangle,1920,Large fireball and lots of triangular shaped objects flying with irratic and jittery patterns, together and apart. +2001-08-17,41.3113889,-105.5905556,Laramie,WY,fireball,25,Fireball ascends straight up in air, and comes right back down in same location. +2001-08-17,41.7413889,-105.9741667,Rock River,WY,fireball,1.5,object went vertical +2001-08-17,41.7413889,-105.9741667,Rock River,WY,fireball,2,Blinding Flash and then extreme velocity vertical takeoff of object. +2001-08-17,39.7555556,-105.2205556,Golden,CO,other,3,Low flaming meteor with possible ground impact. +2001-08-17,44.9430556,-123.0338889,Salem (Outside),OR,light,600,Yellowish light pulsating in the night sky +2002-08-17,40.7608333,-111.8902778,Salt Lake City,UT,fireball,6,Fireball across the top of the wasatch Mountains in Salt Lake City,Utah USA +2002-08-17,32.3716667,-112.86,Ajo,AZ,unknown,9000,numerous red/blue stationary objects in the az desert sky. +2002-08-17,40.3452778,-83.3036111,Pharisburg,OH,sphere,180,Twice, I obseved what looked liked a huge, shiny, chrome colored, solid, heavy ball berring flying in the sky and diappear before my ey +2002-08-17,42.5047222,-71.1961111,Burlington,MA,light,180,Very bright red light in the day time. +2002-08-17,42.1291667,-80.0852778,Erie,PA,cylinder,300,Bright Cylinder Shaped Object Makes a Showing Over Lake Erie in August 2002 +2002-08-17,35.6633333,-95.1977778,Braggs,OK,rectangle,600,UFO SPOTTED IN NORTHEASTERN OKLAHOMA TELLS MEDIA BUT i saw them by camp gruber military post +2002-08-17,34.6777778,-76.9511111,Emerald Isle,NC,formation,50,red lights were perfectly stationary to the southeast of our beachfront property.they had about a one secound delay enterval as they ap +2003-08-17,32.7152778,-117.1563889,San Diego,CA,triangle,240,Solid triangular object with lights on each corner making periodic 90 degree turns without slowing or banking. +2003-08-17,47.3225,-122.3113889,Federal Way,WA,egg,180,Witnesses see six green glowing egg shaped objects overhead flying east followed by a flashing blue saucer!! +2003-08-17,33.8536111,-118.1330556,Lakewood,CA,other,900,Two bright hazey ball shapes wobbling and traveling upwards +2003-08-17,41.525,-88.0816667,Joliet,IL,disk,30,object changed colors 3 times then sharply took off at incredible speed. +2003-08-17,38.6786111,-121.7722222,Woodland,CA,formation,420,Three sets of lights, like a formation of airplanes in the distance, hovering instead of moving. +2003-08-17,34.0522222,-118.2427778,Los Angeles,CA,light,10,White light over Los Angeles flew away at impossible speed +2003-08-17,43.073055600000004,-89.4011111,Madison,WI,light,1800,We got up at 0300. My wife leaves for work at 0430. AT 0400 I went out to have a smoke. I was looking out over Dane County regional air +2003-08-17,33.6,-117.6711111,Mission Viejo,CA,light,1200,Three bright lights in the morning on a bright and sunny day. +2003-08-17,41.4227778,-122.385,Weed,CA,circle,60,Four metallic disks sighted on the north side of Mt. Shasta. +2003-08-17,47.6816667,-122.2075,Kirkland,WA,circle,180,Round object travelling west above Kirkland, WA +2003-08-17,37.6922222,-97.3372222,Wichita,KS,cigar,20,cigar shaped ufo +2003-08-17,26.1219444,-80.1436111,Fort Lauderdale,FL,oval,1200,Four Circular Objects traveling north Three of them in a straight line and one just east of the others +2003-08-17,43.4763889,-70.7188889,Alfred,ME,rectangle,180,large rectangular craft in alfred me +2003-08-17,33.7458333,-117.8252778,Tustin,CA,light,15,Two bright white lights that appeared and disappeared +2003-08-17,36.7472222,-95.9805556,Bartlesville,OK,light,60,medium bright star moving south to north at great speed. +2003-08-17,35.1883333,-98.2602778,Gracemont,OK,fireball,3600,A light , but not a plane or star. +2003-08-17,48.5038889,-122.2361111,Sedro-Woolley,WA,flash,5400,8/17/03, Sedro-Woolley, WA a "blinking white star" that blinked on every 30-seconds slowly traversed n/w sky in n/w direction +2004-08-17,42.0694444,-72.6152778,Agawam,MA,triangle,600,Triangle shape +2004-08-17,40.6688889,-111.8238889,Holladay,UT,light,1,Red light/streak in sky, unbelievably fast. +2004-08-17,32.5091667,-92.1191667,Monroe,LA,light,15,2 BRIGHT LIGHTS WITH PLANE FLYING DIRECTLY TOWARDS ONE +2004-08-17,40.4591667,-90.6716667,Macomb,IL,light,180,Very bright then dim object no flashing lights spotted moving south then back north. It was spotted by a feeling my wife had. +2004-08-17,42.1958333,-70.7263889,Scituate,MA,unknown,180,Over ocean at Scituate MA, August 18, 2004, a bright light was observed, hovering. +2004-08-17,39.4736111,-118.7763889,Fallon,NV,light,60,The object was flashing white light while moving one direction then changed direction and disappeared +2004-08-17,48.0841667,-121.9675,Granite Falls,WA,triangle,14400,Same object as the sighting on the 15th again with an additional object sighted in the North sky close to the horizon ((Jupiter??) +2005-08-17,33.7475,-116.9711111,Hemet,CA,diamond,180,Objects just came out of the sky in a bright flash and left the same way. +2005-08-17,34.4441667,-85.7197222,Fort Payne,AL,triangle,1800,Silver, triangular craft seen. Around 100 ft. long and 50-75 ft. wide. ((NUFORC Note: Student report. PD)) +2005-08-17,35.7719444,-78.6388889,Raleigh,NC,changing,3600,looking to the west the object would elongate and then condense back to a round shape with red, green,white and yellow lights +2005-08-17,41.8505556,-87.7936111,Berwyn,IL,sphere,30,I was sitting on my back porch gazing at the stars when I notice a light moving north bound across the sky, then all of a sudden the li +2006-08-17,40.7391667,-89.0163889,El Paso,IL,light,1200,Bright Flashing Light In Western Sky w/ Multi-Colored Lights +2006-08-17,42.4683333,-82.9555556,Eastpointe,MI,disk,300,High altitude bright light changing color and intensity and a dim low saucer shape over SE Macomb County . +2006-08-17,41.6391667,-87.4547222,East Chicago,IN,changing,600,Saw a falling fireball that divided into 3 fireballs and then stay still in a oval shape and had no sound. +2006-08-17,32.7947222,-116.9616667,El Cajon,CA,light,60,Two bright objects travelling over San Diego headed north. High altitude, possibly outside atmosphere. +2006-08-17,37.7644444,-89.335,Murphysboro,IL,cylinder,30,Cylindrical object, 4-5x wider than long travelling west to east at high altitude with no navigational or strobe lights +2006-08-17,41.4169444,-81.6061111,Garfield Heights,OH,diamond,30,Two possible crafts of NE Ohio +2006-08-17,26.1416667,-81.795,Naples,FL,sphere,1800,STARLIKE IN APPEARENCE. PRIMARY COLORS RED,WHITE,AMBER,[CARMEL COLOR] +2006-08-17,40.6111111,-111.8991667,Midvale,UT,other,2400,Strange objects in the night sky over Midvale (Salt Lake City), Utah +2006-08-17,43.9827778,-124.0986111,Florence,OR,light,540,Strange Light in Coastal Sky +2006-08-17,41.3647222,-87.4411111,Cedar Lake,IN,other,10,Floating lights in a rooftop formation +2007-08-17,36.1538889,-95.9925,Tulsa,OK,light,15,slightly dim gold light, not blindingly bright. +2007-08-17,39.6263889,-74.6497222,Sweetwater,NJ,light,900,Two people spotted two dots of light moving erratically in different parts of the sky over New Jersey. +2007-08-17,40.2661111,-83.2127778,Ostrander,OH,sphere,25,A black sphere at dusk. +2007-08-17,35.4872222,-80.6219444,Kannapolis,NC,diamond,3600,Multiple sightings of star like object moving in rapid precise movements across the night sky. ((NUFORC Note: Sighting of Sirius? PD) +2007-08-17,38.9333333,-119.9833333,South Lake Tahoe,CA,formation,60,two following lights moving extermly fast south east accross the sky. ((NUFORC Note: ISS and Space Shuttle? PD)) +2007-08-17,44.9444444,-93.0930556,St. Paul,MN,disk,60,lighted disk with smaller brighter center light +2007-08-17,42.9119444,-83.9847222,Durand,MI,triangle,15,Three groups of two lights of a dim orange color. Together they formed a triangle. +2007-08-17,44.4213889,-84.1166667,Rose City,MI,light,240,A brilliant orange-red light seen flying slowly in the sky above Rose City, Michigan +2008-08-17,38.2972222,-122.2844444,Napa,CA,light,420,Orange light vanishes, followed by sonic boom. +2008-08-17,41.6986111,-88.0683333,Bolingbrook,IL,triangle,420,vapour trail heading straight up from western sky with craft heading in NE direction in IL +2008-08-17,34.2625,-118.4261111,Pacoima,CA,light,180,My sister, some friends and I were standing in the back yard. When my sister said look what the hell is that? In the Northeast sky we s +2008-08-17,39.2775,-74.575,Ocean City,NJ,oval,900,BLIMP SHAPED OBJECT IN THE SKY. 500 Lights On Object0: Yes +2008-08-17,29.7630556,-95.3630556,Houston,TX,chevron,1200,black slow moving V shape object over houston s george bush airport +2008-08-17,42.2588889,-88.1391667,Wauconda,IL,cigar,120,Bright silver cigar-shape ( no visible wings ) moving towards the N.East. viewed over Bangs Lake. +2008-08-17,30.0083333,-97.1591667,Smithville,TX,light,60,3 lights high in the sky. +2009-08-17,33.4222222,-111.8219444,Mesa,AZ,sphere,600,Bright white light left earth at incredible rate of speed +2009-08-17,26.6402778,-81.8725,Ft. Myers,FL,unknown,300,Curly que white con trail with sideways V grey trail in front. Very high and fast silver craft. +2009-08-17,33.7938889,-84.6605556,Lithia Springs,GA,oval,300,A Stealth oval over the woods in Litha Springs. +2009-08-17,33.4352778,-112.3575,Goodyear,AZ,light,60,Bright like disappears in Southwestern Sky over Goodyear, AZ. +2009-08-17,21.5902778,-158.1125,Haleiwa,HI,unknown,120,series of extremely large orange lights on the horizon +2009-08-17,44.9583333,-124.0166667,Lincoln City,OR,fireball,5,08/17/09 Lincoln City, OR Cylindrical About 3 seconds Bright green object made abrupt 90 degree turn, headed inland from over the ocean +2009-08-17,40.2363889,-83.3672222,Marysville,OH,triangle,60,Triangular craft, 5-6 red lights on edge +2010-08-17,41.8875,-88.3052778,Geneva,IL,light,3600,Light/object in Western Chicago suburbs. ((NUFORC Note: Jupiter would be visible in the southeast sky, at this time. PD)) +2010-08-17,41.7108333,-87.7580556,Oak Lawn,IL,light,240,zoomed camera on light and filmed did not look light a plane no sound no blinking lights +2010-08-17,41.8083333,-71.3375,Seekonk,MA,rectangle,600,Light blue rectangle craft +2010-08-17,39.7383333,-104.3227778,Strasburg,CO,circle,300,White circle high in the sky, Sat in one place for 5 minutes. +2010-08-17,32.7355556,-97.1077778,Arlington,TX,triangle,1800,On 8-17-10 about 7pm I went outside in my backyard and witnessed Neon Light Blueish lights in the sky NorthEast of me Flying in circles +2010-08-17,41.3436111,-86.3097222,Plymouth,IN,unknown,180,Bright blue lights hovering over town +2010-08-17,47.9791667,-122.2008333,Everett,WA,unknown,300,White "star" like object darts acrossed sky and suddenly stops, but doesn't disappear. +2010-08-17,37.9725,-89.0533333,Christopher,IL,light,152,Bright light moving slowly with what appears to be aircrafts around it. ((NUFORC Note: Possible celestial bodies?? PD)) +2010-08-17,47.8555556,-121.9697222,Monroe,WA,disk,3600,We saw 5 ufo's pass each with 10 minute intervals between each other they all had 4 huge white lights in sqaure formation. +2010-08-17,40.6213889,-79.1527778,Indiana,PA,light,1,8/17/10 23:17 Indiana, Pa. lights 1 second 6 white bar shaped lights crossed road in front of me. +2011-08-17,47.3811111,-122.2336111,Kent,WA,diamond,10800,White,blue when you zoom in,Moving at lightning speeds,Right over my house,kent wa. ((NUFORC Note: Stars, or satellites? PD)) +2011-08-17,36.175,-115.1363889,Las Vegas,NV,sphere,30,Bright round object seen flying south underneath path of airplaine. +2011-08-17,31.7586111,-106.4863889,El Paso,TX,circle,1200,Circular light above clouds in circular pattern over El Paso, Texas +2011-08-17,40.4591667,-90.6716667,Macomb,IL,light,180,Strange light in the sky and an odd Jet. This is to fix the date of my origional report. +2011-08-17,31.5491667,-97.1463889,Waco,TX,rectangle,480,Rotating rectangular metallic object sighted by 6 witnesses for 7-8 minutes. +2011-08-17,41.595,-72.6458333,Cromwell,CT,light,600,White light Southeast of Cromwell, CT +2011-08-17,44.5069444,-92.9052778,Cannon Falls,MN,cylinder,60,cylindrical, white, shining, floating object moved at lightning speed hovering in several places before disappearing +2011-08-17,27.8425,-82.6997222,Pinellas Park,FL,light,2700,Lights moving across sky then just vanish into thin air +2011-08-17,42.8858333,-87.8630556,Oak Creek,WI,triangle,1260,Three triangle lights plus one separate light +2011-08-17,34.0922222,-117.4341667,Fontana,CA,light,60,Lights on the sky evry night +2011-08-17,42.6827778,-89.0186111,Janesville,WI,sphere,120,Orange sphere in Janesville, WI moving North, then NNE. +2011-08-17,40.9252778,-73.0477778,Port Jefferson Station,NY,circle,180,Orange circular type object flying smoothly over the nightime sky in Port Jefferson Station, NY. +2011-08-17,41.595,-72.6458333,Cromwell,CT,light,900,3 fast moving lights +2011-08-17,41.995,-88.1855556,Bartlett,IL,light,180,Red disk shaped UFO over bartlett Illinois +2011-08-17,42.4972222,-82.9372222,Roseville,MI,light,300,Blue,red and green object dancing around while changing colors. +2011-08-17,47.6588889,-117.425,Spokane,WA,light,3600,Dozens of lights in the sky over Spokane Wa. Seen of 4 different occasions +2011-08-17,39.5297222,-119.8127778,Reno,NV,disk,30,Reno area fast traveling object +2011-08-17,45.1719444,-93.8744444,Buffalo,MN,unknown,10,Hovering silent craft, size of small plane, maybe spherical +2011-08-17,42.4927778,-92.3427778,Waterloo,IA,circle,30,5 witnesses observed a very bright light, then the object travel outward, then changed direction for a period of 10 seconds .. then sto +2012-08-17,34.2255556,-77.945,Wilmington,NC,cigar,45,Cigar-shaped object red pulses seen over Wilmington NC +2012-08-17,47.2033333,-122.2391667,Sumner,WA,triangle,4,Black, triangle, batman shaped object flew several hundred yards in front of vehicle in an almost arc motion was witnessed approx 3 sec +2012-08-17,36.175,-115.1363889,Las Vegas,NV,triangle,120,Triangular-shaped object with white lights and one red light above the tree line at Red Rock Canyon,Las Vegas +2012-08-17,41.9833333,-71.3333333,North Attleboro,MA,fireball,1200,Two orange fireballs in the sky. +2012-08-17,38.3861111,-97.4277778,Canton,KS,light,25,I was outside smoking when I seen two lights following each other. They went on for about 25 sec. until the first one disappeared then +2012-08-17,39.1141667,-94.6272222,Kansas City,KS,cigar,45,Cigar shaped object next to jet +2012-08-17,43.073055600000004,-89.4011111,Madison,WI,light,300,Extremely bright red light in NW night sky. No defined shape. Slowly traveled eastward. Light dimmed and disappeared. +2012-08-17,40.4405556,-79.9961111,Pittsburgh,PA,light,1800,Mysterious lights over city of Pittsburgh. +2012-08-17,41.7,-71.4166667,Warwick,RI,circle,30,Circular Object (Fiery?) over Warwick, RI +2012-08-17,40.6597222,-80.2394444,Conway,PA,circle,300,Orange fire balls made no sound +2012-08-17,45.2547222,-87.0713889,Ellison Bay,WI,fireball,300,Yellowish-orange sphere traveling slightly erratically, but mostly southerly at 9 pm off Ellison Bay, WI. +2012-08-17,44.9747222,-92.7566667,Hudson,WI,formation,120,20 very bright lights in distinct groupings traveling across the sky. +2012-08-17,43.1713889,-70.6094444,York Beach,ME,circle,600,9 round, reddish lights in a long, straight row about 30 seconds apart, sighted by 7 visitors on York Beach. +2012-08-17,32.4486111,-99.7327778,Abilene,TX,oval,45,Formations of blue-white, silent lights travelling at high speed over Abilene Texas. +2012-08-17,41.8088889,-88.0111111,Downers Grove,IL,fireball,180,Ball of fire travels at steady speed across the sky. +2012-08-17,47.6588889,-117.425,Spokane,WA,circle,120,Large very bright silent orb flew very fast through night sky then dimmed, blinked and disappeared. +2012-08-17,33.6083333,-117.7444444,Aliso Viejo,CA,fireball,30,Fireball approaching earth, changing direction and disappearing into the clouds. +2012-08-17,35.1594444,-84.8766667,Cleveland,TN,light,180,Round White Star Sized Light Slowly Moving After Being a Fixed Object. Slowly Vanished. +2012-08-17,45.8405556,-119.2883333,Hermiston,OR,light,120,Started as a very bright red light in the SW part of the sky. It traveled down at an angle from south to north at a fairly slow, steady +2012-08-17,39.9975,-85.7466667,Pendleton,IN,triangle,120,Large and small aircraft between 10pm and 3 am. ((NUFORC Note: No other reports from this area, that we are aware of. PD)) +2012-08-17,41.6833333,-86.25,South Bend,IN,fireball,600,I was astonishednd as groups of three, large orange fireball lights flew overhead, one group after another group totaling some 25 . +2012-08-17,39.3958333,-101.0519444,Colby,KS,triangle,480,Appeared to be three planes one large and two smaller flanking the the large one moving very slow and very low north to south. Saw thi +2012-08-17,42.4775,-83.0277778,Warren,MI,circle,180,15-20 bight lights maneuvering in the night sky, quiet and fast! +2012-08-17,29.7630556,-95.3630556,Houston,TX,other,120,I saw 2 unidentified objects flying at night . +2012-08-17,40.1416667,-87.3947222,Covington,IN,fireball,180,Fireball like object shooting at incredible speed then hovered and shot back into the sky. +2012-08-17,42.6583333,-83.15,Rochester Hills,MI,other,480,Numerous red/orange floating balls in night sky +2013-08-17,32.7152778,-117.1563889,San Diego (Pacific Beach),CA,circle,300,Small circular orb moving in various directions silently while changing colors, Red,Purple,White,Green,and Blue over LaJolla San Diego, +2013-08-17,28.5380556,-81.3794444,Orlando,FL,oval,120,Raspberry red oval craft observed traveling north to south along East Coast of Florida +2013-08-17,41.7797222,-71.4377778,Cranston,RI,light,1800,I pulled into work last night and realized my co worker, and a few people from the restaurant next to ours were staring at the sky. I g +2013-08-17,46.7747222,-91.3863889,Port Wing,WI,diamond,120,Bright light changed to red and faded away without a sound +2013-08-17,42.3086111,-83.4822222,Canton,MI,light,180,I was bicycling on MortonTaylor road around 7ish in the evening and suddenly saw long about 6 feet size in height lights moving from no +2013-08-17,40.1108333,-77.0352778,Dillsburg,PA,formation,180,Light formation over Dillsburg, PA 8-17-2013 +2013-08-17,37.9747222,-87.5558333,Evansville,IN,unknown,900,15 to 20 red/orange glowing objects soundlessly following one another across sky from NW to NE, a few seconds to a minute apart +2013-08-17,42.6158333,-70.6625,Gloucester,MA,circle,180,We were in awe and wonder what did we see? +2013-08-17,40.1302778,-75.5152778,Phoenixville,PA,unknown,300,Observed strange object in night sky three evenings in a row, flying in zigzag pattern, hovering then retreating. +2013-08-17,28.5380556,-81.3794444,Orlando,FL,sphere,180,Red/Raspberry Pulsating Orb Travelling in Straight Line from E to W +2013-08-17,41.6033333,-80.3055556,Conneaut Lake,PA,light,360,Captured video of 20 bright, silent orange lights traveling one after another in sky over Conneaut Lake PA +2013-08-17,41.4169444,-81.6061111,Garfield Heights,OH,other,10,Silent raspberry color object that has the ability to disappear . +2013-08-17,40.9977778,-72.2930556,Sag Harbor,NY,circle,1800,Orange light over Sag Harbor. +2013-08-17,39.43,-77.8044444,Shepherdstown,WV,rectangle,300,Four bright orange red lights in Shepherdstown, WV. +2013-08-17,42.3458333,-71.5527778,Marlborough,MA,light,120,Formation of white lights +2013-08-17,33.1433333,-117.1652778,San Marcos,CA,light,900,Three glowing lights, leaving and returning +2013-08-17,43.0011111,-84.5591667,Saint Johns,MI,sphere,240,Observed 4 orange spheres moving in a line slowly across the sky from south east to the north west. I grabbed my cell phone and took. +2013-08-17,40.7988889,-81.3786111,Canton,OH,sphere,90,2 orange fireballs in Ohio. +2013-08-17,41.3947222,-73.4544444,Danbury,CT,circle,480,15-18 orange circular objects w/o sound moving from n to ne. +2013-08-17,34.0961111,-118.105,San Gabriel,CA,fireball,240,3 Goldish Orange crafts heading north moving very slow like a half a mile 2 months time, then 2 more appeared and then 2 more... cross +2013-08-17,42.6333333,-71.3166667,Lowell,MA,circle,90,Orange ball like burning ember moving in erratic pattern about 5000 feet +2013-08-17,42.9633333,-85.6680556,Grand Rapids,MI,oval,720,A beautiful night, clear skies and a wonderful light show. I hope to see more in the future +2013-08-17,41.1305556,-85.1288889,Fort Wayne,IN,unknown,600,Orange/yellow lights in formation moving Fort Wayne indiana +2013-08-17,33.9966667,-77.9075,Kure Beach,NC,fireball,10,Orange glow disappears over kure beach, nc after 10-15 seconds. +2013-08-17,42.5586111,-113.7630556,Heyburn,ID,triangle,120,Triangle shaped craft flying at high altitude and speed. +2013-08-17,38.948055600000004,-81.7611111,Ravenswood,WV,sphere,120,I was heading to bed and went out to smoke a cigarette and looked up in the sky and noticed an orange ball in the sky that turned red. +1966-08-18,36.2702778,-121.8063889,Big Sur,CA,diamond,120,I was at Nepethe Lodge in the Big Sur area with a friend of mine and we were having dinner. I looked up at the sky and thought I was s +1972-08-18,39.5094444,-76.1644444,Aberdeen,MD,triangle,180,There were three lights on the object .There was no sound from the craft.It was treetop high in its flight. +1976-08-18,41.9888889,-88.6866667,Sycamore,IL,triangle,900,I looked up and saw hovering directly over my head at about two story roof height three lights in a triangular pattern. +1977-08-18,44.2947222,-90.8513889,Black River Falls,WI,light,2700,My girl friend and had been on a road trip to see my brother further up north. I turned off the interstate to take a short cut but I ma +1978-08-18,46.4947222,-87.3541667,Harvey (Marquette),MI,disk,300,We could see human forms in a window like windshield on this air craft that silently hovered! +1980-08-18,41.195,-82.4116667,Clarksfield,OH,cigar,240,Let me start by saying this event happened years ago but a friend just told me about your web sight. I was fishing with three friends a +1982-08-18,43.1063889,-76.2180556,Liverpool (Suburb Of Syracuse),NY,triangle,300,Low flying Large triangle Silent craft over suburbs of Large City +1984-08-18,41.7827778,-87.8780556,Countryside,IL,triangle,900,Grey, triangular shaped craft with green, blue, and white lights slowly floating over car. +1987-08-18,40.1483333,-89.3647222,Lincoln (Near),IL,disk,30,I saw something in a cornfield very close to the road we were on. It was hovering about 30 feet up in the air.It was large and fairly q +1988-08-18,46.4947222,-87.3541667,Harvey,MI,other,180,Very large dual disk saucer ,counter rotating hovering and finally submerging into lake superior about 1/2 mile offshore. +1992-08-18,32.4608333,-84.9877778,Columbus,GA,disk,60,UFO outside window, waits in backyard +1992-08-18,31.4361111,-88.0283333,Wagarville,AL,fireball,60,A single yellow "fireball" appeared just over the tree line off highway 43 in Wagarville, Alabama. Moments after spotting the object, 5 +1994-08-18,39.3544444,-84.1272222,Morrow,OH,disk,600,I could hit it with a baseball - the u.f.o. that is (a most VERY true story) +1995-08-18,42.3222222,-83.1763889,Dearborn,MI,triangle,60,fire like triangular object with sapphire blue cloud that pulsated 500 Lights On Object0: Yes +1996-08-18,45.12,-93.2875,Coon Rapids,MN,other,60,A V shaped craft with amber colored lights that was a big as a football field heading west towards Anoka, Minnesota on August 18, 1996. +1997-08-18,33.8847222,-118.41,Manhattan Beach,CA,teardrop,1200,Spheres clone then vanish +1998-08-18,39.2372222,-119.5919444,Dayton (Sutro Hills Area, Ne),NV,egg,900,In the evening playing with my daughter, back door blinds were open. My daughter SCREAMED 'LOOK DADDY LOOK, ALIENS'(She's only 3 1/2.) +1998-08-18,30.5452778,-87.7516667,Silverhill,AL,disk,180,disk shaped craft with sequential lights at approx, 100' altitude crossing fields then hiway I was traveling. +1999-08-18,38.7141667,-93.9911111,Holden,MO,circle,180,my daughters and i saw a round object with light circling around it.it came down out of the sky and went behind some trees across the f +1999-08-18,39.8813889,-83.0930556,Grove City,OH,oval,600,2 oval shaped objects with 3 jets following for about 10 minutes, then there was 12 black helicopters flying in same direction. Looked +2000-08-18,41.7355556,-122.6333333,Yreka,CA,diamond,7,it was diamond shaped ,very white,the speed it traveled at shocked me.i seen it very good.it made no sound. +2000-08-18,43.1836111,-89.2136111,Sun Prairie,WI,formation,165,Stange light seen same spot several times and then tried to make contact +2000-08-18,35.9758333,-94.3175,Prairie Grove,AR,cigar,30,Strange white cigar shaped light in the sky, observed for 30 seconds. +2000-08-18,47.9177778,-108.5255556,Zortman,MT,other,7200,Object able to change its direction at anytime without having to slow down. Very erratic behavior +2000-08-18,30.3838889,-87.275,Warrington,FL,chevron,120,chevron boomerangs near radio tower +2000-08-18,38.5161111,-90.2102778,Dupo,IL,diamond,1200,The object hovered directly in front of us and appeared to be watching US! +2000-08-18,34.09,-117.8894444,West Covina,CA,disk,300,While looking North my husband noticed a reddish object rising from the Northern Hemisphere. He directed our attention to the object, +2000-08-18,40.6516667,-119.3541667,Gerlach,NV,other,120,Three satellites moving across the sky in a perfect triangular formation. +2000-08-18,38.8741667,-121.1322222,Newcastle,CA,fireball,3,Bright green fireball comes close, but no explosion. +2001-08-18,29.0441667,-95.5688889,Brazoria,TX,unknown,10,Large UFO flew over treetops above the house emmitting LOUD reverbing zip gun sounds. +2001-08-18,41.1594444,-81.4405556,Stow,OH,light,3600,My camcorder recorded more then what i was seeing through the lens, I can not think of one explanation for what i was seeing +2001-08-18,48.1183333,-123.4294444,Port Angeles,WA,light,60,"SATELLITE" EMITTING BRILLIANT FLASH OF LIGHT IN TWO DIFFERENT DIRECTIONS +2001-08-18,35.2247222,-88.2491667,Savannah,TN,other,120,light flashing on and off in the sky it got fast then it faster and faster until it disappeared. +2001-08-18,46.2113889,-119.1361111,Kennewick,WA,light,60,U.F.O disguised as a satellite sneaks through the night sky! +2001-08-18,44.7813889,-71.1383333,Errol,NH,triangle,20,this exact object was seen in february of 2001 in aproximately same location +2001-08-18,46.6169444,-92.3822222,Wrenshall,MN,triangle,3600,Triangular shaped ufo which darted quickly across the sky near duluth MN, but then remained stationary for a half hour..... +2001-08-18,42.3266667,-122.8744444,Medford,OR,other,300,It was a bright light looked like a really bright star. It was going east floating slowly then it turned south east and zig zagged sli +2001-08-18,46.5030556,-92.6883333,Barnum,MN,circle,300,BRIGHT CIRCULAR UFO THAT HOVERS OVER CARLTON COUNTY MINNESOTA +2001-08-18,38.9516667,-92.3338889,Columbia,MO,light,40,I saw three lights that dissapeared behind some trees. +2001-08-18,34.54,-112.4677778,Prescott,AZ,formation,180,Triangle of lights moving in the upper atmosphere +2001-08-18,44.9902778,-123.025,Keizer,OR,triangle,360,Watched 3 lights in a triangle formation travel slowly and silently west to east across the night sky. +2001-08-18,47.7625,-122.2041667,Bothell,WA,triangle,600,i saw a trainguler shape in the sky with light on every corner. Lights like blue, red, yellow, green, all flashing at random times. the +2002-08-18,35.3733333,-119.0177778,Bakersfield (1-30, North Of),CA,cigar,900,Long, cigar shaped objects flying very low, doing manuevers that earthly aircraft can't do. Disppeared into thin air. +2002-08-18,40.2502778,-103.7994444,Fort Morgan (West Of),CO,light,10,While travelling northeasterly on Interstate hiway29 (enroute from Denver to Nebraska, at approx. 5:30 am on Sundat Aug 18, 2002, I ob +2002-08-18,42.9633333,-85.6680556,Grand Rapids (Outside),MI,disk,10,Disc seen in daylight from freeway. +2002-08-18,29.5819444,-95.7605556,Richmond,TX,oval,480,A ufo over houston +2002-08-18,33.08,-83.2322222,Milledgeville,GA,other,240,Black object ƻ curcles ,made no sound, traveled under clouds .verybad storm hit once it passed +2002-08-18,37.69,-95.1427778,Stark,KS,oval,300,Steady movement of object/s with sudden disappearance convinced us this was UFO +2002-08-18,33.6888889,-78.8869444,Myrtle Beach,SC,light,3,One orange light split into two lights over the ocean . +2002-08-18,42.9336111,-85.3419444,Lowell,MI,fireball,15,Blue shooting star. +2002-08-18,27.9655556,-82.8002778,Clearwater,FL,disk,300,Flying object +2003-08-18,42.6983333,-88.135,Eagle Lake Manor,WI,diamond,7,Flying diamond shape abruptly accelerates than dissapears +2003-08-18,45.8152778,-122.7413889,Ridgefield,WA,cylinder,60,Abright orange cylinder flying norhwest up much higher than I think a plane can go and the speed was not steady, it slowed then sped at +2003-08-18,28.3505556,-80.7255556,Rockledge,FL,other,60,claw hand appears after using scanner on computer +2003-08-18,42.2141667,-83.15,Wyandotte,MI,unknown,30,Four bright objects, three in a triangle formation, one kind of leading, moved southeast to north west at three times the speed of a pl +2003-08-18,43.9580556,-103.3580556,Rockerville,SD,triangle,300,two triangles in the night sky +2004-08-18,41.4227778,-122.385,Weed,CA,changing,21600,Big and bright object that changes shape and form in sky 4 nights in a row, moving eraticly. ((Venus??)) +2004-08-18,32.64,-117.0833333,Chula Vista,CA,light,2400,large bright yellow light and four smaller red,green and blue flashing lights in the eastern sky ((Venus??)) +2004-08-18,43.1219444,-75.2919444,Whitesboro,NY,light,240,A little glowing moving dot in the middle of the day +2004-08-18,45.010555600000004,-93.4552778,Plymouth,MN,oval,10,side by side reddish very fast tip to tip flying surfboards in Minnesota. +2004-08-18,47.8627778,-121.8152778,Sultan,WA,light,4,Neon Green glowing ball falls on the Cascade Mountain Range near Sultan on Highway 2. +2004-08-18,47.5708333,-122.2208333,Mercer Island,WA,oval,8,My mother and I were driving over the East Channel bridge, passing mercer Island. We both saw a faded green oval descending from west t +2004-08-18,47.5302778,-122.0313889,Issaquah,WA,fireball,2,green ball of light falling East of Issaquah. ((NUFORC Note: Possible meteor. PD)) +2004-08-18,40.8,-96.6666667,Lincoln,NE,other,300,triangle shape ship launches a red sphere ship that launches a white light +2004-08-18,42.2988889,-73.9988889,Cairo,NY,circle,300,UNIDENTIFIED FLYING OBJECT +2005-08-18,28.2438889,-82.7194444,New Port Richey,FL,other,900,object light was constant looked like a shooting star with a short tail +2005-08-18,21.3069444,-157.8583333,Honolulu,HI,unknown,600,Strange light over Honolulu just before sunrise, varying in number and light intensity. +2005-08-18,44.4913889,-73.1861111,Winooski,VT,changing,120,Delta or Vee shaped, silent, travelling west to east from Lake Champlain towards New Hampshire +2005-08-18,39.7944444,-87.3958333,Highland,IN,light,45,Shower of sparks and colors emitted from object +2006-08-18,39.8494444,-75.3561111,West Chester,PA,unknown,1800,small flashing light in East Goshen PA +2006-08-18,41.9941667,-88.2922222,South Elgin,IL,changing,1200,3 black craft,changed shape & became metallic silver as they gained altitude then sat in triangle formation +2006-08-18,40.8041667,-74.0125,North Bergen,NJ,disk,720,Bright star like UFO over North Bergen NJ +2006-08-18,40.8041667,-74.0125,North Bergen,NJ,disk,720,It was about 3 20 in the afteroon my back yard in my stairing at the sky watching the planes fly by, When I notice a star flashing whi +2006-08-18,34.2694444,-118.7805556,Simi Valley,CA,rectangle,300,Bright glowing white lights in Simi Valley coming from Santa Susana Mountains and then going over 188 Freeway +2006-08-18,41.8666667,-103.6666667,Scottsbluff,NE,light,60,Western Nebraska white-blue round light +2006-08-18,47.6063889,-122.3308333,Seattle,WA,other,120,Eradic moving, flashing light over West Seattle / Puget Sound. +2006-08-18,47.8569444,-121.6958333,Gold Bar,WA,light,45,Super Bright Light over Gold Bar +2006-08-18,45.9975,-121.5269444,Trout Lake,WA,triangle,60,I was attending a three-day symposium at the Sattva Sanctuary near Mount Adams, a spiritual sanctuary that is known for its UFO sightin +2006-08-18,41.0338889,-73.7633333,White Plains,NY,flash,2,driving home, headed south , from pougkeepsie,ny, on lower RT# 684, 3 very bright strobes flew over our car about 150 ft in the air hea +2007-08-18,41.2888889,-72.6822222,Guilford,CT,teardrop,60,Green luminesent object with contrail impacts ocean, lights up Guilford CT sky. +2007-08-18,39.8083333,-104.9333333,Commerce City,CO,disk,10,close encounter +2007-08-18,44.98,-93.2636111,Minneapolis,MN,other,300,UFO sited at Minnehaha Creek in Minneapokis Minnesota +2007-08-18,34.1063889,-117.5922222,Rancho Cucamonga,CA,oval,540,Bright orange oval light seen dropping smaller lite objects and then disappeared. +2007-08-18,34.1063889,-117.5922222,Rancho Cucamonga,CA,oval,600,Glowing orange orb in the sky... +2007-08-18,40.7666667,-72.8525,Mastic Beach,NY,light,60,Bright light over NY +2007-08-18,38.6244444,-76.9394444,Waldorf,MD,cigar,15,cigar object floating in air very clear +2007-08-18,38.5816667,-121.4933333,Sacramento,CA,cigar,60,Cigar shaped object, white and silver/metalic in appearance, hovering over Sacramento at noon today +2007-08-18,37.3177778,-112.5963889,Glendale,UT,circle,300,Floating silver object over Utah. +2007-08-18,45.4872222,-122.8025,Beaverton,OR,other,600,Two objects seen over Portland +2007-08-18,34.2011111,-118.5972222,Canoga Park,CA,cigar,600,Cigar shaped object glowing orange over topanga canyon blvd. +2007-08-18,42.55,-99.8622222,Ainsworth,NE,triangle,2,Strange lights over Ainsworth, NE, 2007 +2007-08-18,42.9336111,-85.3419444,Lowell,MI,circle,60,Orange glowing balls above tree line. +2007-08-18,41.1844444,-73.1336111,Stratford,CT,formation,300,giant vessel w/ 4 horizontal lights makes no sound then stands upright in distance? +2008-08-18,44.0247222,-88.5425,Oshkosh,WI,light,15,Bright star looking object disappears after another comes near. Seen by 3 people. ((NUFORC Note: Possible star or planet?? PD)) +2008-08-18,39.2866667,-86.7625,Spencer,IN,disk,3600,Strange acting flying objects viewed on night of Indiana earthquake, with 3 witnesses. +2008-08-18,32.7355556,-97.1077778,Arlington,TX,oval,1200,Large oval object hovering over major Texas city +2008-08-18,40.7583333,-74.9797222,Washington,NJ,circle,10,I saw a very shinny, flat, round object resembling a mirror in the sky that just disappeared. +2008-08-18,33.8158333,-78.6802778,North Myrtle Beach,SC,sphere,600,was watching ocean when orange balls where appering for about 20 to 30 secounds lasted for about 8 to 10 mins was 2 light at 1 time but +2009-08-18,39.6477778,-104.9872222,Englewood,CO,circle,15,Circular object in the sky above Denver +2009-08-18,41.2586111,-95.9375,Omaha,NE,cigar,30,A white aircraft, almost resembling a commercial airliner, vanished before my eyes. The aircraft did not posess normal characteristics. +2009-08-18,45.8169444,-67.8405556,Orient,ME,circle,120,bright circle of intense light that vanished into a pinpoint +2009-08-18,32.7252778,-114.6236111,Yuma,AZ,light,420,Lights turning on and off in a line +2009-08-18,38.2369444,-85.9858333,Lanesville,IN,chevron,3,Two blue-green smokey streaks of light forming large boomerang shape shot across about 50 feet above the road. No sound. +2009-08-18,47.7569444,-122.2797222,Lake Forest Park,WA,rectangle,900,rectanglular object in the sky. there for 15 minutes then is gone. +2010-08-18,46.5483333,-110.9013889,White Sulphur Springs,MT,egg,1800,very bright egg, eye shaped object seen over Castle Mountains +2010-08-18,38.5130556,-90.4358333,Fenton,MO,light,3600,Flashing white light hovering and circling. +2010-08-18,34.0336111,-117.0422222,Yucaipa,CA,flash,20,flashing light ufo in So California +2010-08-18,42.3916667,-71.5666667,Hudson,MA,oval,5,A very bright oval appeared from nowhere in Hudson, MA 01749 for a duration of 5 to 6 sconds- and disappeared. +2010-08-18,33.4669444,-117.6972222,Dana Point,CA,circle,60,Two Bright Yellow/Gold Lights. +2010-08-18,33.8005556,-118.3891667,Palos Verdes Estates,CA,changing,600,3 then 4 lights above Santa Monica Bay, directly aligned above each other, flashing green and red. +2010-08-18,39.0483333,-95.6777778,Topeka,KS,fireball,120,Fireball that simply vanished +2010-08-18,34.8272222,-116.6875,Newberry Springs,CA,circle,660,Yellow Orange Lights Spheres 15 then dissapearing have photos Newberry Springs CA +2010-08-18,39.8744444,-76.8661111,Spring Grove,PA,disk,10800,A row of lights that keep fading in and then disappearing only to reappear again. +2010-08-18,41.4813889,-74.3605556,Scotchtown,NY,unknown,5,Sitting in front of my house last night with my girlfriend and mom we were talking to each other. It was pretty clear out I was star ga +2010-08-18,47.6105556,-122.1994444,Bellevue,WA,other,5,A very bright while light that looked half ball of yarn with black portholes through binoculars ((NUFORC Note: Venus? PD)) +2011-08-18,33.7669444,-118.1883333,Long Beach,CA,light,300,Two throbbing extremely bright pulsating orbs the size of grapefruits outside bedroom window in Long Beach, CA +2011-08-18,48.0841667,-121.9675,Granite Falls,WA,light,4,Blue light from sky split in two and disappeared. ((NUFORC Note: Possible meteor? PD)) +2011-08-18,35.0872222,-97.3347222,Slaughterville,OK,triangle,600,TRIANGLE UFO AS BIG AS A FOOTBALL STADIUM. +2011-08-18,39.6477778,-104.9872222,Englewood,CO,sphere,300,Small, shiney, slow-moving object west south of Denver, CO +2011-08-18,41.5733333,-87.7844444,Tinley Park,IL,cylinder,120,Silver Silent Object Possibly with no wings +2011-08-18,42.2916667,-85.5872222,Kalamazoo,MI,light,7200,glowing orbs in the sky +2011-08-18,31.4172222,-89.5422222,Sumrall,MS,other,10800,star like object making circular and zigzag pattrens almost like its searching for something. ((NUFORC Note: Twinkling star?? PD)) +2011-08-18,48.7597222,-122.4869444,Bellingham,WA,light,180,Red light travels across Bellingham, Washington sky and vanishes. +2011-08-18,37.3394444,-121.8938889,San Jose,CA,light,30,2 High Altitude Craft over San Jose, CA. +2012-08-18,33.115,-104.3263889,Hagerman,NM,diamond,3600,Total of 6 bright white orbs with red and green lights that flashed when they moved around in two perfectly aligned triangle patterns. +2012-08-18,44.98,-93.2636111,Minneapolis,MN,fireball,300,I was in uptown Minneapolis near the Ice House and got video of 6-8 bright orange lights floating across the sky. Several people on th +2012-08-18,38.545,-121.7394444,Davis,CA,teardrop,60,10 orbs in scattered formation with fast moving satellite overhead +2012-08-18,36.9772222,-121.8983333,Aptos,CA,sphere,2400,12 objects observed on Monterey Ca coast +2012-08-18,43.0125,-82.9280556,Capac,MI,circle,273,While letting my dog outside at roughly 4am I noticed a very bright light in the sky. It's much much to bright for a star and I know wh +2012-08-18,39.7402778,-94.2408333,Cameron,MO,circle,60,Highly Reflective Object Vanishing in Clear Sky +2012-08-18,33.4147222,-111.9086111,Tempe,AZ,diamond,180,Photos of an unknown creature resembling both an amphibian and an armadillo who is seen holding a wand in his left hand at the end of w +2012-08-18,43.0333333,-71.0747222,Epping,NH,oval,600,About 24 dozen red to yellow spheres witnessed by 8 +2012-08-18,39.7391667,-104.9841667,Denver,CO,other,480,Orb over Denver tonight was a helium balloon +2012-08-18,41.4152778,-81.5661111,Maple Heights,OH,unknown,420,Stationary object in the sky which for 7 minutes which went straight up and disappeared. +2012-08-18,39.3575,-100.4413889,Hoxie,KS,cross,180,Very silent, white object flying slowly overhead then disappearing. +2012-08-18,42.2630556,-88.0038889,Mundelein,IL,fireball,300,Yellow ball of flame traveling through the sky. +2012-08-18,43.2127778,-75.4561111,Rome,NY,circle,420,Two fire ball like balls floating high in the sky!! +2012-08-18,42.4930556,-89.0366667,South Beloit,IL,sphere,900,Orange /redish sphere in sky moving from north to south slowly dimming out then moving west /wsw. no noise. +2012-08-18,47.9447222,-122.3033333,Mukilteo,WA,oval,1200,4 orange Orbs in the sky the size of large blimps in Mukilteo, WA. +2012-08-18,39.0436111,-77.4877778,Ashburn,VA,fireball,600,Bright red lights over Ashburn, Virginia +2012-08-18,40.6866667,-73.3738889,Lindenhurst,NY,fireball,180,Sitting at restaurant on water in lindenhurst, clear shot if sky.Fire ball moving towards us over what seemed to be as far east as +2012-08-18,44.823055600000004,-70.34,Phillips,ME,light,420,Orange light appears and then reappears in same "flight path" about 20 minutes later +2012-08-18,35.7077778,-79.8138889,Asheboro,NC,sphere,900,25-30 giant orange balls in the sky over Asheboro that floated and moved around then took off out of sight in the blink of the eye. +2012-08-18,42.0986111,-75.9183333,Binghamton,NY,unknown,120,Vessel with huge bright lights stops and turns before Vanishing! +2012-08-18,43.0280556,-73.3816667,Cambridge,NY,light,1200,Strange color changing light in the middle of a town with no power about 50 feet off the ground. +2012-08-18,48.0163889,-117.2755556,Elk,WA,formation,600,Eight very bright red orbs in Northeastern sky in verticle formation. +2012-08-18,44.8613889,-92.6236111,River Falls,WI,oval,600,8 objects redish orange +2012-08-18,34.4208333,-119.6972222,Santa Barbara,CA,circle,1800,12 bright orange spheres moving slowly over the ocean in Santa Barbara, CA. +2012-08-18,38.2008333,-77.5894444,Spotsylvania,VA,triangle,300,Orange glowing lights in sky over spotsylvania near courthouse +2012-08-18,42.1291667,-80.0852778,Erie,PA,formation,420,Beautiful 13 bright orange light formation in Erie PA 8/18/12 9:15 PM lasted 4-7 minutes +2012-08-18,43.073055600000004,-89.4011111,Madison (Town Of Westport),WI,cylinder,300,Five neon-orange fire-like orbs floating in a steady northeast to south direction in the sky over residential houses in Madison (Town o +2012-08-18,41.2222222,-73.0569444,Milford,CT,light,1200,Sequential sighting of a pair of reddish-yellow lens-like silent aerial lights. +2012-08-18,27.8002778,-97.3961111,Corpus Christi,TX,light,90,Bright star like object moving in sky over Corpus Christi Texas. +2012-08-18,39.6894444,-84.1688889,Kettering,OH,circle,15,Orange/red light in sky +2012-08-18,41.2586111,-95.9375,Omaha,NE,light,300,Unidentified orange lights observed over West Omaha. +2012-08-18,45.5394444,-122.3861111,Troutdale,OR,fireball,300,Fireball floating in sky +2012-08-18,35.6511111,-78.8338889,Holly Springs,NC,fireball,3600,12 bright orange orbs moving across sky below clouds 1 min apart same exact path, then reduce color brightness, slow down accross sky. +2012-08-18,41.8994444,-87.9402778,Elmhurst,IL,cylinder,120,Bright orange cylinder with four bright flames in middle. Unmanned. Very quiet. Traveling east to west. +2012-08-18,47.7505556,-90.3341667,Grand Marais,MN,teardrop,1800,Two different UFOs witnessed on Larch Lake, BWCA - Minnesota +2012-08-18,41.7636111,-72.6855556,Hartford,CT,light,5,Fast moving light over Hartford, CT +2012-08-18,43.0513889,-83.3188889,Lapeer,MI,fireball,600,Bright orange objects drifting mid sky, some in formation, others isolated, then they faded away +2012-08-18,42.7008333,-82.9591667,Macomb,MI,circle,900,On 8-18-12 at approximately 10pm in Macomb, MI me and another person witnessed 3-4 groups of 6-8 circular amber lights travelling in a +2012-08-18,40.7141667,-74.0063889,New York City (Manhattan),NY,sphere,240,Orange orbs over Manhattan. +2012-08-18,43.0716667,-70.7630556,Portsmouth,NH,teardrop,300,Orange eliptical object +2012-08-18,44.98,-93.2636111,Minneapolis,MN,light,300,About a dozen strange silent orange lights in a formation flew slowly over the night sky in Minneapolis, MN +2012-08-18,45.5872222,-122.3983333,Camas,WA,circle,240,Orange Disc's hovering across the Camas Meadows bulding, Camas WA +2012-08-18,43.4166667,-86.3569444,Montague,MI,light,600,Bizzare orangle lights in night sky. +2012-08-18,35.2961111,-89.6613889,Arlington,TN,circle,300,Reddish object descended within a shadowy spinning circular silouhette +2012-08-18,42.1291667,-80.0852778,Erie,PA,fireball,210,Fireball over Erie Pa. 8/18/12 duration, no more than 4 minutes. +2012-08-18,43.7816667,-86.4330556,Pentwater,MI,sphere,600,Amber- red flashing sphere in Pentwater, Michigan. +2012-08-18,32.4486111,-99.7327778,Abilene,TX,unknown,300,Initially 2 orange lights traveling quickly in N/NW direction followed by 4 blue objects also traveling in synchrony in a diamond confi +2012-08-18,30.2944444,-81.3933333,Jacksonville Beach,FL,fireball,60,Orange ball of light moving south to north over the ocean at extreme speed then disappeared. +2012-08-18,41.2222222,-73.0569444,Milford,CT,fireball,300,9 orbs suspended in the sky, they got bright fire a second and then they vanished +2012-08-18,39.9611111,-82.9988889,Columbus,OH,sphere,15,Orange shimmering object moving across night sky +2013-08-18,32.8338889,-109.7069444,Safford,AZ,circle,120,Green hazy circular craft w/strange light pattern on craft. +2013-08-18,47.3894444,-114.8011111,Paradise,MT,circle,180,A large white object with sparks coming off it lit up the night sky before breaking into pieces. +2013-08-18,32.7677778,-117.0222222,La Mesa,CA,flash,1800,Blinking white star looking light in sky over san diego +2013-08-18,30.2669444,-97.7427778,Austin,TX,rectangle,4500,Craft videoed near daybreak near Austin. +2013-08-18,35.0536111,-94.6233333,Poteau,OK,oval,900,Oval lights over north side of Cavanal Hill Poteau Ok August 18, 2013 +2013-08-18,41.0441667,-83.65,Findlay,OH,sphere,3600,Red orange blue flashing sphere followed by another moving slowly from south to north. +2013-08-18,34.0633333,-117.65,Ontario,CA,disk,120,Silver Dog-Dish shaped craft zipped from one point to the other and vanished. +2013-08-18,42.3811111,-88.1397222,Ingleside,IL,changing,600,A daylight glowing object that shape shifted, was very high altitude and made zipping movements +2013-08-18,33.4936111,-117.1475,Temecula,CA,circle,20,Saw A Circular Shiny Object Or Disk In The Sky +2013-08-18,33.3527778,-111.7883333,Gilbert,AZ,chevron,360,Stealth Aircraft flying street light high gilbert arizona. +2013-08-18,41.6716667,-72.9497222,Bristol,CT,fireball,300,Five orange circular objects were seen in Bristol August 18, 2013 at 20:06. +2013-08-18,46.8219444,-123.095,Rochester,WA,circle,1080,I witnessed a circular craft hovering low in the southern sky,just before dark. +2013-08-18,47.2530556,-122.4430556,Tacoma (Northeast Of),WA,fireball,600,When looking to the north from our front door we both saw 6 round orange balls. We are in the flight path for seatac and the in bound p +2013-08-18,44.4441667,-87.92,Bellevue,WI,triangle,60,Black triangle UFO w/ dimmed lights traveling with our vehicle at 80 MPH on 172 heading towards Two Rivers,WI +2013-08-18,43.4261111,-73.7127778,Lake George (Just North Of),NY,light,30,I was driving northbound on the nys northway,i came over a hill into a valley where just west of the north way i oberved 2 aircraft in +2013-08-18,20.8783333,-156.6825,Lahaina,HI,fireball,120,Two seperate events of orange and white fireballs, lacking tails, travel across northern skies of Kaanapali to the South. +2013-08-18,45.9975,-121.5269444,Trout Lake,WA,light,60,UFO light ship with power up cruising over our camp out. +2013-08-18,29.0336111,-95.4341667,Lake Jackson,TX,light,5,One object, disappeared, reappeared, became 3 +2013-08-18,45.1608333,-93.2347222,Blaine,MN,sphere,360,3 spherical orange ufo flying low just above my neighborhood. +1973-08-19,36.2261111,-92.6847222,Yellville,AR,light,300,I think I saw and investigated a UFO water-stop. +1975-08-19,34.4208333,-119.6972222,Santa Barbara,CA,disk,900,multiple ship sighting in Santa Barbara +1975-08-19,45.5236111,-122.675,Portland,OR,disk,300,A disc shaped craft that appeared to be made of metal. +1979-08-19,37.8591667,-83.9186111,Clay City,KY,sphere,60,Hovering sphere with flashing lights seen over a farm in Powell County, Kentucky. +1989-08-19,41.4994444,-81.6955556,Cleveland,OH,disk,20,FISHING ON LAKE ERIE, SAW A SAUCER LIKE OBJECT, FOR ABOUT 20 SECONDS, THEN VANISHED +1992-08-20,38.2541667,-85.7594444,Louisville,KY,unknown,3600,i looked up an saw 3. +1996-08-19,41.76,-70.0833333,Brewster,MA,disk,2700,It was daylight on approxiamately 8/19/96 I just had graduated high school in June and i was living at home with my parents i was not +1996-08-19,43.7275,-97.5927778,Spencer,SD,unknown,1320,Alien crafts-Eastern South Dakota- late summer early fall 1996 +1997-08-19,41.2938889,-82.2175,Oberlin,OH,triangle,600,this ship had two high lntense headlights in the front -triangular shaped -red diamond light on the bottom50 feet off the ground +1998-08-19,35.0844444,-106.6505556,Albuquerque,NM,light,180,light in the sky heading west that changed color and like a rubberband it zipped back heading east into space disapearing in the stars +1998-08-19,35.198055600000004,-111.6505556,Flagstaff,AZ,fireball,120,A meteor-like object, trailing burning debris, changed into a blinking point of light. It then made a gentle turn to the north and gra +1998-08-19,39.5297222,-119.8127778,Reno,NV,light,900,SOMETHING WHICH LOOKED LIKE A HUGE WING IN THE DARKNES, BUT NO BRIGHT LIGHTS +1998-08-19,39.5297222,-119.8127778,Reno,NV,light,900,WE ATTENDED THE RENO AIR RACES FROM THURSDAY SEPT. 17 TO 20TH. RENO ALSO WAS HOSTING THE NORTHERN CALIF. HARLEY DAVIDSON DEALER SPONSOR +1998-08-19,47.4019444,-122.3230556,Des Moines,WA,sphere,1800,Multi-colored sphere shaped object observed in western sky for approx. 30 minutes, the first 15 minutes or so in a stationary position. +1999-08-19,31.7952778,-94.1788889,Center,TX,fireball,15,A bluish white fireball type object, a little larger than a basketball zoomed from the other side of the lake from the trees across the +1999-08-19,38.9516667,-92.3338889,Columbia,MO,sphere,60,Observed small nonreflective sphere traveling SW at a low altitude +1999-08-19,34.2255556,-77.945,Wilmington,NC,triangle,10,Rolling triangle seen moving in front of storm system. +1999-08-19,47.5002778,-111.3,Great Falls,MT,oval,300,on august 19th. @ 20:00 hrs. we witnessed an unidientified craft. It came to a complete stop for 10 seconds, then proceded to climb st +1999-08-19,47.4741667,-122.2597222,Tukwila (Sea),WA,sphere,1320,I awaited darkness (approx.9:15pm...9:20pm) to check the reflectors outside my motorhome, and was walking backward up my road (away fro +1999-08-19,38.1041667,-122.2555556,Vallejo,CA,changing,900,bright flashing light moving erratically across the sky. when viewed on tv screen, it dances around at super speeds even in slow motion +2000-08-19,32.7152778,-117.1563889,San Diego,CA,circle,240,FIRST SIGHTING OF OBJECT IT WAS TRAVELLING FROM SOUTH TO NORTH AT A STEADY SPEED. IT WAS CIRCULAR GOLD IN COLOR WITH A FUZZINESS AROUN +2000-08-19,33.5988889,-117.2791667,Wildomar,CA,disk,45,Suddenly, the object started to move quite quickly in short abrupt movements back and forth. +2000-08-19,34.8697222,-111.7602778,Sedona,AZ,sphere,5,silver sphere sighted in sedona +2000-08-19,41.3436111,-70.8152778,Gay Head (Aquinah),MA,circle,60,Amber red pulsating circular pinwheel just over the ocean +2000-08-19,37.775,-122.4183333,San Francisco,CA,triangle,3,Bright green triangle flying at tremendous speed, creating a flash as it passed by the window. +2001-08-19,39.485,-80.1427778,Fairmont,WV,diamond,600,I Just woke up and looked out my window and saw two dimond saped bright green and had four wings. +2001-08-19,42.3763889,-71.2361111,Waltham,MA,formation,1500,An extremely bright light that appeared to be a star but when viewed through binoculars, three distinct lights banded together. +2001-08-19,34.2783333,-119.2922222,Ventura,CA,rectangle,10,Long white rectangular object seen over Ventura, CA. +2001-08-19,40.5141667,-88.9905556,Normal,IL,sphere,10,Silver ball in sky.... +2001-08-19,38.4405556,-122.7133333,Santa Rosa,CA,other,900,3 bright white flashes high up in night sky and "V" shaped craft faint white w/round white lights silently going overhead so. to north +2001-08-19,42.9058333,-88.1388889,Muskego,WI,light,300,Bright, slow moving, zig-zagging light moving SE from SW. +2001-08-19,41.5244444,-90.5155556,Bettendorf,IA,light,240,I am a mature 54 year old adult that has never scene or reported something of this nature. At 2100 hours I was standing outside my hou +2001-08-19,47.2033333,-122.2391667,Sumner,WA,formation,1380,LIGHTS IN TRIANGLE FORMATION MOVING NORTH TO SOUTH VERY SLOWLY +2001-08-19,43.3952778,-90.7741667,Soldiers Grove (Rising Sun),WI,light,2700,20-30 flying objects with lights of different colors all traveling to same spot, slowing down and disappearing in same place. +2001-08-19,35.5066667,-97.7622222,Yukon,OK,cross,300,It looked like a bright diamond with a cross +2002-08-19,28.8105556,-81.8780556,Leesburg,FL,unknown,10,White streak in overcast sky +2002-08-19,33.8805556,-78.5125,Sunset Beach,NC,rectangle,30,My wife and I were sitting on the deck looking out at the ocean when we saw 1 red rectangle appear in the sky.it was quickly joined by +2002-08-19,41.0525,-89.0502778,Wenona,IL,unknown,600,Bright lights In Central Illinois +2002-08-19,42.3313889,-83.0458333,Detroit,MI,other,600,Angels or UFO's on stormy morning? +2002-08-19,44.1636111,-93.9991667,Mankato,MN,cigar,900,bright objects in the sky that two us aircraft went over to investigate +2002-08-19,35.0227778,-94.3811111,Hartford,AR,unknown,300,Two horizontal rows of bright amber lights in the sky having no sound, after approximately 5 minutes they disappeared. +2002-08-19,42.5630556,-114.46,Twin Falls,ID,light,900,UFO outside Twin Falls- 2002 +2003-08-19,41.2619444,-95.8608333,Council Bluffs,IA,disk,900,it looked like it was gong slow because my car was movine same dorection but it was rilly moving along after I stoped +2003-08-19,40.7141667,-74.0063889,New York City,NY,circle,30,Blue disc with fire trails moving toward the earth and vanishing. +2003-08-19,41.5283333,-87.4236111,Griffith,IN,triangle,300,dark grey unlit triangular craft hovering silently +2003-08-19,41.8008333,-87.9369444,Hinsdale,IL,oval,3,Bright light appeared out of nowhere +2003-08-19,41.2619444,-95.8608333,Council Bluffs,IA,unknown,240,This craft appeared as though it was waiting to be inspected, but was so close I couldn't see it all. +2003-08-19,33.3061111,-111.8405556,Chandler,AZ,cone,120,Ice cream cone shaped craft seen for several minutes in neighborhood. 3 lights in triangle shape on bottom. Spotlight beam. No sound +2003-08-19,41.8072222,-77.0777778,Mansfield,PA,flash,300,The object was about 30 degrees south of the constellation casseopia and was not moving and emitted 8 slow flashes of real bright light +2004-08-19,32.4366667,-111.2247222,Marana (Northwest Of),AZ,triangle,300,Triangular low-altitude, slowly gliding, lighted object came over our home outside of Marana, AZ +2004-08-19,39.2902778,-76.6125,Baltimore,MD,light,20,BRIGHT LIGHT SHOT THROUGH THE SKY IN MANY DIRECTIONS AND SHOT UP INTO SKY UNTIL UNABLE TO SEE. +2004-08-19,44.8408333,-93.2980556,Bloomington,MN,unknown,28800,We watch an object in a fixed point in the sky, appearing metalic. Crystal Clear Blue sky. The object appeared directly overhead at abo +2004-08-19,46.6022222,-120.5047222,Yakima,WA,flash,8,Strange Yellow White Light in the sky ((NUFORC Note: Flare from Iridium satellite. PD)) +2004-08-19,44.9444444,-93.0930556,St. Paul,MN,unknown,600,ON Aug. 19th about 11am I was heading south on Ruth street towards Battle Creek to do some mountain biking. I observed a very shiny obj +2004-08-19,44.98,-93.2636111,Minneapolis,MN,sphere,300,I seen an object in the sky, thought it was a balloon, but it was too large and too high, in five minutes it barely moved. +2004-08-19,30.4783333,-90.0375,Abita Springs,LA,triangle,60,Triangle 'floating' in the sky and observed between tall pine trees +2004-08-19,44.98,-93.2636111,Minneapolis,MN,sphere,7200,White sphere viewed with naked eye and telescope in broad daylight was most likely a high altitude balloon +2004-08-19,44.98,-93.2636111,Minneapolis,MN,circle,7200,large object minneapolis baffles experts. +2004-08-19,44.739444399999996,-93.1255556,Rosemount,MN,light,3600,Bright object in daytime sky, MN +2004-08-19,44.9444444,-93.0930556,Saint Paul,MN,teardrop,3600,Strange object in Metro sky +2004-08-19,44.7894444,-93.6019444,Chaska,MN,rectangle,16200,Bright Object in skies above Minneapolis area, August 19th, 2004. +2004-08-19,44.6497222,-93.2425,Lakeville,MN,light,43200,Video of object over the Minneapolis metro area on 8-19-04 +2004-08-19,44.9008333,-93.5888889,Shorewood,MN,egg,18000,object floating over minneapolis area August 19, 2004 +2004-08-19,44.9483333,-93.3477778,St. Louis Park,MN,sphere,7200,A round, white craft flew at about 60ꯠ ft. in the air for about 5 hours +2004-08-19,44.9444444,-93.0930556,St. Paul,MN,circle,14400,White circular object observed 2.5 handspans above horizon for 4+ hours by 8 people in St. Paul, MN. +2004-08-19,44.9444444,-93.0930556,St. Paul,MN,light,10800,Bright light hovers for hours in broad daylight, thousands of people see it. +2004-08-19,44.98,-93.2636111,Minneapolis,MN,circle,12600,White high-altitude object suspended over Twin Cities and witnessed for 12 hours +2004-08-19,44.8613889,-92.6236111,River Falls,WI,teardrop,85,Immobile teardrop object in the west near evening. +2004-08-19,41.6005556,-93.6088889,Des Moines,IA,triangle,600,Lighted Triangle object hovers by major interstate +2004-08-19,32.9777778,-111.5169444,Coolidge,AZ,light,1200,Orange lights in the Casa Grande area in a line formation. +2004-08-19,40.4405556,-79.9961111,Pittsburgh,PA,light,900,I saw faint, white lights zipping around high in the sky during a cloudy night. +2004-08-19,38.5816667,-121.4933333,Sacramento,CA,unknown,120,Strobe like aircraft with rapidly blinking lights in Sacramento +2004-08-19,42.2708333,-83.7263889,Ann Arbor,MI,triangle,300,Triangular shaped object seen on Aug, 19, 2004 near Ann Arbor, MI +2004-08-19,39.9625,-76.7280556,York,PA,unknown,5,orange sphere traveled by at a high speed and disappeared. +2004-08-19,30.2941667,-87.5736111,Orange Beach,AL,circle,30,Orange Lights over Gulf of Mexico (Orange Beach, Ala.) ((NUFORC Note: Flares?? PD)) +2004-08-19,43.0183333,-78.6969444,East Amherst,NY,disk,900,Saucer shaped disc floating above suburban neighborhood +2004-08-19,47.1561111,-121.6491667,Greenwater (Near, By Mt. Rainier),WA,formation,240,Triangular light formations by Mt. Rainier ((NUFORC Note: We suspect the objects were U.S.Navy "NOSS" satellites. PD)) +2004-08-19,39.8847222,-122.5447222,Paskenta,CA,triangle,300,While doing wildlife research on the Mendocino National Forest, three biologists witnessed 3 star like objects in a triangular formatio +2004-08-19,44.6366667,-123.1047222,Albany,OR,triangle,60,The craft seemed 6-12ꯠ ft high but was hard to tell. It was aclear night and my nephew saw the lights first thinking they were satel +2004-08-19,34.0522222,-118.2427778,Los Angeles (250 Mi North Of, On Hwy 5),CA,triangle,30,Irratic flying object seen east of highway 5 near midnight. +2005-08-19,33.8838889,-84.5144444,Smyrna,GA,rectangle,60,A very angular dark object in stark contrast against the morning sky +2005-08-19,39.5791667,-104.8763889,Centennial,CO,cigar,60,Bright Cigar-shaped Object in Centennial Sky Moves Slowly then Disappears +2005-08-19,33.4933333,-112.3572222,Litchfield Park,AZ,triangle,180,Strange craft with blinking lights in a solid dark black triangular formation spotted over golf course in Litchfield Park, Arizona. +2005-08-19,33.4511111,-86.9966667,Hueytown,AL,sphere,1800,round light that had a unsual flight pattern, flew around 40' off the ground only 1-2 miles from us. we watched it for 30 mins. +2005-08-19,42.9633333,-85.6680556,Grand Rapids,MI,light,12,Group of Lights Flying in Exact Formation +2005-08-19,42.0411111,-87.69,Evanston,IL,unknown,600,Locagion: over Lake Michigan, seen from South Blvd. Beach in Evanston, IL. 200-300 yards from shore @ about 10:00PM. A hovering obje +2005-08-19,42.8177778,-75.4636111,Hubbardsville,NY,light,300,we were camping. It was the full moon. almost 100% cloud cover. Only saw the full moon briefly through a patch in the clouds. Saw objec +2006-08-19,42.4791667,-71.1527778,Woburn,MA,cylinder,6,Bright, hazy clyindrical object appearing and disappearing in Boston area +2006-08-19,46.8772222,-96.7894444,Fargo,ND,light,20,Very bright object flares even brighter. ((NUFORC Note: Probable sighting or Iridium 54. PD)) +2006-08-19,46.8772222,-96.7894444,Fargo,ND,flash,20,Update on bright flare... +2006-08-19,45.9975,-121.5269444,Trout Lake,WA,cylinder,259200,UFO convention, Orbs caught on camera +2006-08-19,48.9855556,-123.0766667,Point Roberts,WA,circle,900,6-round white/silver object.s...3 in a triangle formation west/east direction +2006-08-19,34.0522222,-118.2427778,Los Angeles,CA,circle,3600,Six circular objects, staying in the same place in the sky, but going in circular motion. +2006-08-19,35.4302778,-94.2313889,Kibler,AR,light,7,bright light over arkansas lock and dam 13 +2006-08-19,44.775,-117.8333333,Baker City,OR,triangle,15,12 V Shaped Lights in Sky +2006-08-19,47.2530556,-122.4430556,Tacoma,WA,oval,7,3 silent objects flying at extreme speed, first resembled tiny stars but loomed larger as out-of-focus, orange "oval" lights +2006-08-19,40.5852778,-105.0838889,Fort Collins,CO,circle,10,fort collins circle ufo bright then starlike dim moving south near concert downtown b52 concert +2006-08-19,43.6086111,-86.3638889,Shelby,MI,circle,300,Very bright, seemed to be coming out from lake michigan, stayed same color then started to pulsate. +2006-08-19,46.6022222,-120.5047222,Yakima,WA,triangle,15,The object was slightly dim with reddish and white lights, It was stationary north for a few seconds and hovered slowly south towards Y +2006-08-19,34.0555556,-117.1816667,Redlands,CA,circle,30,while sitting in our jaccuzzi my wife and i saw a light ...cirular in the direction north east in the constalation sepfus the king..... +2006-08-19,38.3483333,-92.5813889,Eldon,MO,light,7,Extreme speeds and angles of an UFO +2006-08-19,37.3636111,-118.3941667,Bishop (Closest Town),CA,light,7200,Six objects move westerly across the California night sky +2006-08-19,38.9938889,-80.2322222,Buckhannon,WV,circle,7200,One floatint object overhead and 17 disk shaped objects going into it. +2007-08-19,26.1219444,-80.1436111,Ft. Lauderdale,FL,disk,120,Object Seen In Florida +2007-08-19,43.4666667,-112.0333333,Idaho Falls,ID,unknown,30,Bright lights unlike any traditional aircraft. +2007-08-19,24.6694444,-81.3541667,Big Pine Key,FL,formation,20,could not intrelligenty explain +2007-08-19,37.5586111,-122.27,Foster City,CA,unknown,20,Undeniable stationary flickering speck +2007-08-19,38.3566667,-121.9866667,Vacaville,CA,changing,120,Bright white kite shaped light morphs into sickle shape as it turns before flattening out over Vacaville Hills on Aug. 19, 7:45pm. +2007-08-19,43.1961111,-73.6522222,Gansevoort,NY,unknown,240,UFO sighted 2 lights flying together in an equadistant form West to East Low and slow no noise +2007-08-19,33.5205556,-86.8025,Birmingham,AL,disk,60,UFO Sighting over townhome community in Birmingham Alabama. ((NUFORC Note: We cannot certify that this is a serious report. PD)) +2007-08-19,39.6491667,-119.7063889,Spanish Springs,NV,light,180,Two lights moving across sky in tandem. +2007-08-19,39.7286111,-121.8363889,Chico,CA,light,120,We saw2 bright lights traveling across the night sky at a high rate of speed in formation. ((NUFORC Note: STS and ISS? PD)) +2007-08-19,45.0238889,-69.2902778,Dexter (In Southern Sky),ME,circle,180,two bright fast moving spheres near bangor ((NUFORC Note: ISS in formation with Space Shuttle?? PD)) +2007-08-19,42.7119444,-73.2041667,Williamstown,MA,light,180,2 unblinking star-like objects moving quickly across the sky. ((NUFORC Note: ISS in formation with Space Shuttle?? PD)) +2007-08-19,38.8791667,-99.3263889,Hays,KS,light,120,I observed two constant lights in the sky. ((NUFORC Note: ISS in formation with Space Shuttle?? PD)) +2007-08-19,41.7797222,-71.4377778,Cranston,RI,light,120,There were 2 lights in the southern sky, one following the other, then a 3rd light shot from one of them and headed towards the ground. +2007-08-19,38.5816667,-121.4933333,Sacramento,CA,formation,30,I saw one craft, that I thought was thespace shuttle...then it floated fast... then dissapeared..then 4 more formed circle... then +2007-08-19,41.51,-71.1716667,Little Compton,RI,triangle,900,the object resonded to my flashlight,and flashed colored lights back +2008-08-19,43.5208333,-88.2288889,Kewaskum,WI,light,300,Seemingly bright star speeds away into night sky. +2008-08-19,33.1730556,-86.2516667,Sylacauga,AL,unknown,10,3 sets of burnt orange "headlights" moving as though in convoy +2008-08-19,38.8047222,-77.0472222,Alexandria,VA,triangle,2,Saw a triangular formation of lights in the sky. +2008-08-19,34.4838889,-114.3216667,Lake Havasu City,AZ,formation,20,formation of lights flying at high speeds +2008-08-19,42.2630556,-88.0038889,Mundelein,IL,light,30,Blue rounded light in sky seen traveling at high speed. +2008-08-19,41.1133333,-74.2458333,Ringwood,NJ,light,30,Object in sky brightened then dissapeared +2008-08-19,40.6936111,-75.1905556,Phillipsburg,NJ,flash,1200,Bright lighted craft over Phillipsburg, NJ and Easton, PA +2008-08-19,41.8272222,-86.3611111,Buchanan,MI,rectangle,300,Spotted a UFO with lights floating above treetops! +2008-08-19,33.9163889,-78.1613889,Oak Island,NC,circle,1200,Our family witnessed three circles of white light that appeard to go off and come back on again then changed formation from stright ac +2008-08-19,33.6625,-117.5894444,Trabuco Canyon,CA,oval,1200,two orbs moving in the sky changing direction so quickly and in a fashion of no aircraft I know of can do +2009-08-19,33.3941667,-110.7858333,Globe,AZ,changing,1200,Couple in Eastern Arizona witness strange craft in the night sky +2009-08-19,41.85,-87.65,Chicago,IL,rectangle,180,floated as if in water... +2009-08-19,42.1391667,-87.9288889,Wheeling,IL,triangle,120,Strange flashing motionless object suddenly speeds away. +2009-08-19,36.2675,-94.4844444,Gentry,AR,light,7200,3 people witness a strange bright flash of light near the ground in my backyard. +2009-08-19,43.0069444,-75.7997222,Perryville,NY,triangle,30,we saw a light that was a triangle shape that was in the sly for 30 seconds +2009-08-19,39.5752778,-76.9961111,Westminster,MD,circle,60,A magical star looking thing at a football game, right before 2 undeafeted teams played! +2009-08-19,32.7938889,-79.8627778,Mt. Pleasant,SC,disk,45,3-4 disk shaped craft, pale lit, moving slowly and silently at low altitude in nearly a straight line. +2009-08-19,35.0844444,-106.6505556,Albuquerque,NM,cigar,10800,Short cigar shaped object with rays of light eminating from one end; stayed in the sky for 2 hrs+. +2009-08-19,43.9822222,-117.2372222,Vale,OR,triangle,1800,Before I go into any detail about our experience, I would like to preface this account with a description of the area we were in. O +2009-08-19,43.9822222,-117.2372222,Vale,OR,triangle,1800,In desert area of Malheur County observed 2 Triangular shaped craft, each containing 3 red lights. One craft floated directly over us. +2009-08-19,28.5152778,-82.5730556,Weeki Wachee,FL,rectangle,600,Red, blue and white flashing objest viewed over the Gulf of Mexico from Spring Hill Florida +2009-08-19,41.85,-87.65,Chicago,IL,sphere,60,Pulsating sphere changing in size. +2009-08-19,33.1191667,-117.0855556,Escondido,CA,unknown,2700,Blue lights over escondido +2009-08-19,36.5969444,-120.8325,Panoche,CA,unknown,360,I-5 near Panoche - flying object with white, red, green lights +2010-08-19,33.5422222,-117.7822222,Laguna Beach,CA,fireball,3,Bright massive object falling in the sky +2010-08-19,39.7661111,-105.0766667,Wheat Ridge,CO,circle,120,A Brilliant White Light Like I have never seen before.. +2010-08-19,47.7575,-122.2427778,Kenmore,WA,triangle,840,SPHERES DID NOT TOUCH AS THEY MOVED IN A TRIANGLUR SHAPE. +2010-08-19,35.2305556,-89.7402778,Lakeland,TN,circle,2700,Seemingly Motionless craft near Memphis, TN. ((NUFORC Note: Sighting of Venus, we suspect. PD)) +2010-08-19,37.8105556,-95.4366667,Humboldt,KS,other,600,6 objects. 3 different shapes. flying in geometrical patterns. +2010-08-19,35.6008333,-82.5541667,Asheville,NC,unknown,1800,Large white light with a red hue low in the western sky. Remained for 20 min or more then vanished. ((NUFORC Note: Venus?? PD)) +2010-08-19,39.3397222,-85.2044444,Oldenburg,IN,changing,2700,Several UFO's spotted over Indiana +2011-08-19,36.8527778,-75.9783333,Virginia Beach,VA,oval,10,Blue oval object over ocean in front of a lightning storm move at a high rate of speed. +2011-08-19,47.4066667,-122.0375,Maple Valley,WA,other,5,Larger slower shooting star like object that I can confirm a situation to research! +2011-08-19,44.775,-117.8333333,Baker City,OR,fireball,10,Fireball, space debris, or unknown object . +2011-08-19,30.3319444,-81.6558333,Jacksonville,FL,light,30,A friend and I were driving home from work late one early morning in mid-august and were stuck at a red light that doesn't normally cha +2011-08-19,48.1958333,-114.3119444,Kalispell,MT,other,2700,Beam of infrared light terminating in a circle above the ground. +2011-08-19,27.895,-81.9736111,Mulberry,FL,unknown,420,silent aircraft or ufo that turned off lights and left only i red one on +2011-08-19,41.6833333,-86.25,South Bend,IN,sphere,30,A spherical craft several hundred feet up moving steadily east over Cleveland Road in South Bend, Indiana. +2011-08-19,25.8572222,-80.2783333,Hialeah,FL,teardrop,25,Three black, oblong objects in the vicinity of Hialeah east of the Palmetto Expressway +2011-08-19,32.2216667,-110.9258333,Tucson,AZ,unknown,300,Mothership? releasing several smaller ships. ((NUFORC Note: We wonder whether this is a serious report. PD)) +2011-08-19,34.8333333,-81.9922222,Moore,SC,disk,5,ufo beside plane traveling east in south caroline +2011-08-19,36.175,-115.1363889,Las Vegas,NV,teardrop,480,2 bright colored, fire like, teardrop shaped beings in the sky. +2011-08-19,39.0997222,-94.5783333,Kansas City,MO,fireball,120,Large white object came into atmosphere and broke up into 5 smaller objects over Kansas City, MO +2011-08-19,41.6361111,-70.9347222,New Bedford,MA,formation,360,Glowing orbs flying in formation in the New Bedford sky +2011-08-19,39.0997222,-94.5783333,Kansas City,MO,unknown,120,Kansas City MO/ Independence MO lights and configuration night sky sightings +2011-08-19,39.1141667,-94.6272222,Kansas City,KS,light,60,Cluster of lights spotted in sky over Kansas City, KS, moving at incredible rate of speed east toward KC, MO +2011-08-19,42.7875,-86.1088889,Holland,MI,formation,5400,7 crafts that were silver, yellow, and white lights over Lake Macatawa, the seemed to form angler formations. +2011-08-19,45.5230556,-122.9886111,Hillsboro,OR,light,180,Observed what appeared to be a fast satellite stop move in controlled impossible maneuvers then assume original trajectory +2011-08-19,28.5388889,-80.6722222,Merritt Island,FL,fireball,30,Fireball over Merritt Island - leveled off and headed north toward space center +2011-08-19,44.2619444,-88.4152778,Appleton,WI,disk,4,Appleton, Wisconsin UFO Silhouette Descending Towards Downtown. +2011-08-19,39.1405556,-121.6158333,Yuba City,CA,unknown,120,4 amber lights in formation moved slowly over me silently , seemed like either 2 objects or 1 big one. +2011-08-19,35.4797222,-79.1805556,Sanford,NC,light,600,Huge Whitish light +2011-08-19,32.3122222,-106.7777778,Las Cruces,NM,sphere,1200,Enormous yellow sphere seen rising over the Organ Mts. before midnight 8-18-2011 +2012-08-19,39.2508333,-106.2919444,Leadville (Near),CO,light,1500,Witnessed an object facing west over Turquoise Lake an unknown distance away between the mountains. Skies were clear, stars easily see +2012-08-19,33.8222222,-111.9175,Carefree,AZ,light,3600,Stationary flashing lights. ((NUFORC Note: Witness is former senior military. PD)) +2012-08-19,36.6211111,-93.2152778,Hollister,MO,light,3600,V-Shaped formation, hovering for 45 minutes to 1 hours, red and white flashing lights +2012-08-19,33.8752778,-117.5655556,Corona,CA,unknown,300,Possible UFO sighting in Corona, CA. Silvery reflective object flying at altitude suddenly stops and hovers. +2012-08-19,36.8527778,-75.9783333,Virginia Beach,VA,other,25,Saw a small,boxlike object with spikes or antenna travelling slowly over the city. +2012-08-19,42.7261111,-87.7827778,Racine,WI,sphere,180,Glowing spheres. +2012-08-19,34.2011111,-118.5355556,Reseda,CA,fireball,3,Fireball on top of church steeple. +2012-08-19,41.6052778,-81.4536111,Wickliffe,OH,light,180,Circular light pattern over Lake Erie flying straight up toward sky eventually disappearing +2012-08-19,43.1391667,-77.2725,Walworth,NY,sphere,90,4 orange glowing objects seen at night moving east to west. +2012-08-19,41.6155556,-87.0741667,Porter,IN,unknown,900,I saw an orange fireball surrounded by a white triangle of lights in the sky. +2012-08-19,33.0461111,-96.9938889,Lewisville,TX,cylinder,45,Looked up in the sky, round plate looking object about 600 feet maybe....purple lights then went red...then about 8 red lights in the s +2012-08-19,45.7811111,-122.5322222,Battle Ground,WA,teardrop,600,UFO sightening in Battle Ground Washington on 8/19/12 at 9:45pm. +2012-08-19,42.2097222,-79.4669444,Chautauqua,NY,fireball,240,3 sucessive silent fireballs in sky sighted over Chautauqua Lake in western New York state on August 19th or 20th. +2012-08-19,40.8427778,-73.2933333,Commack,NY,diamond,240,Yellowish/orange sphere. +2012-08-19,46.6066667,-93.3136111,Mcgregor,MN,triangle,60,3 orange dots in triangle formation +2012-08-19,44.98,-93.2636111,Minneapolis,MN,light,600,Orange objects over south Minneapolis sky +2012-08-19,46.0516667,-122.2983333,Cougar,WA,circle,300,Saw to bright white circular/spherical shapes in the sky to the southwest of Mt. St. Helens. +2012-08-19,43.0388889,-87.9063889,Milwaukee,WI,fireball,600,Silent group of 12-15 glowing orange orbs of light appear one at a time over horizon and flying in a spread out cluster NW to SWW +2012-08-19,39.8438889,-84.1247222,Huber Heights,OH,sphere,600,UFO over huber heights, ohio +2012-08-19,41.4538889,-75.3830556,Lake Ariel,PA,formation,1200,Formation of very large silent red-orange elliptical lights over Lake Ariel PA 8/19/12 +2012-08-19,36.1538889,-95.9925,Tulsa,OK,triangle,2700,Red, white and green flashing lights +2013-08-19,34.698055600000004,-118.1358333,Lancaster,CA,flash,600,Eastern sky lit up red and orange on the horizon, 3 flashes about 3-5 min intervals. +2013-08-19,32.3122222,-106.7777778,Las Cruces,NM,light,1200,Hovering Lights over Las Cruces. +2013-08-19,37.8405556,-88.6091667,Galatia,IL,cylinder,60,Aircraft with three large triangles of lights, one red triangle with two white triangles on each side rose from a nearby field. +2013-08-19,37.9736111,-122.53,San Rafael,CA,other,600,White flashing light 4x in clear moon-lit sky +2013-08-19,41.85,-87.65,Chicago,IL,sphere,1800,That t i was looking S out my window at a full moon. To the right and lower i seen a red object slowly pulsing. +2013-08-19,39.9611111,-82.9988889,Columbus (Northwest Part),OH,circle,30,Clear sky 9pm-Red Object traveling faster then any plane i ever eyewitnesses in the NE sky 35-40 secs. before &quot; blinking out&quot +2013-08-19,46.8219444,-123.095,Rochester,WA,circle,120,Observed object hovering at low altitude, spinning,and changing colors. in S.W. evening sky. +2013-08-19,40.2363889,-83.3672222,Marysville,OH,light,120,In ENE Ohio night sky, white/orange/red light dropped at a hooked angle within a split second, white trail behind and disappeared. +2013-08-19,40.2875,-74.1727778,Colts Neck,NJ,light,120,I was hanging out in front of my home walking the dog. First I saw a shooting star quizzing at speed of light of north to south. Approx +2013-08-19,40.0991667,-83.1141667,Dublin,OH,disk,120,Red light 1 blinking +2013-08-19,36.8527778,-75.9783333,Virginia Beach,VA,egg,3,Bright white light spotted hovering in the sky, then disappears. +2013-08-19,35.4086111,-80.5797222,Concord,NC,oval,10,A green fireball streaked down through the sky at a steep angle and disappeared +1960-08-20,40.4405556,-79.9961111,Pittsburgh,PA,sphere,300,A white sphere 5-7 ft. in diameter was viewed by about 35 people going form a stationary position to high rate of speed. +1963-08-20,45.5872222,-122.3983333,Camas,WA,unknown,900,Prune Hill, Camas, Washington, a rural area above the Columbia River and across the river from PDX--I was in bed in a daylight basement +1964-08-20,34.0522222,-118.2427778,Los Angeles (San Fernando Valley),CA,cross,300,Commercial looking airline, pin wheeling in place. +1964-08-20,27.7705556,-82.6794444,St. Petersburg,FL,unknown,2700,I saw very strange lites in the sky one night that seemed to hypnotise me for a half an hour. +1965-08-20,32.7763889,-79.9311111,Charleston,SC,sphere,30,Sphere of fire with multiple course changes of 15 degrees in ZERO TIME. 6 course changes, 30 seconds. +1965-08-20,40.7141667,-74.0063889,New York City (Brooklyn),NY,cylinder,120,I was 10 years old.My mother and I walked the dog to the Parade Ground, an annex of Prospect Park, Brooklyn, NY. We let the dog off +1965-08-20,40.7141667,-74.0063889,New York City (Brooklyn),NY,cylinder,120,1965 Dark Grey Cylinder UFO Updated Statement +1965-08-20,42.3694444,-71.9486111,Rutland,MA,cigar,300,No longer a bright white, but had turned to a radiant pulsating red hue. +1966-08-20,39.7683333,-86.1580556,Indianapolis,IN,light,1500,Red light in tree +1967-08-20,41.3888889,-70.5138889,Edgartown,MA,sphere,120,WHITE SPHERE STOPS OVER HOUSE +1967-08-20,38.7222222,-86.6705556,Huron,IN,cigar,300,While traveling west on Ind st hwy 60, my ex-wife and I saw a cigar shaped object houvering over the intersection of u.s. hwy 50 and In +1968-08-20,39.5763889,-74.7172222,Elwood,NJ,cigar,15,9/20/67 Elwood N.J. cigar/disc 15seconds object moved slowly at tree line and was reported by paper next day +1970-08-20,35.6919444,-84.8608333,Spring City,TN,fireball,60,Large fireball hovers above ground and then streaks into space at high speed. +1971-08-20,41.3894444,-82.0191667,North Ridgeville,OH,circle,15,A round "orange" ball, was seen by me approximately 12' over the top of my vehicle. It was void of any sound and brilliant in color. +1972-08-20,45.4463889,-122.6380556,Milwaukie,OR,light,300,An unseen, low-flying object was emitting a beam of light on the ground coming towards us. +1973-08-20,41.0241667,-80.615,Poland,OH,triangle,600,Cone shaped UFO with dents and lights heard and sighted low over an Ohio home in 1973 +1974-08-20,36.2127778,-121.125,King City,CA,oval,10,Three bright lime green luminous oval objects traveling at high rate of speed across night sky +1974-08-20,39.3522222,-112.5763889,Delta,UT,disk,10,Three spectacular sightings. Two diamond shaped formations (4 each) about 30 seconds or a minute apart. An hour later 8 discs flying si +1975-08-20,39.7763889,-74.8627778,Jackson,NJ,triangle,180,3 triangular shaped objects, with flashing red and green lights, accelerated out of site within a few seconds. +1975-08-20,29.4233333,-82.2169444,Orange Lake,FL,disk,30,a gray disk with a shinny rail on which a wheel turned +1975-08-20,41.3972222,-73.6175,Brewster,NY,cylinder,5,Sometime during an August sunday afternoon, I spotted an object at the intersection of Rt. 684 and I84 at Brewster, NY. This occurred +1975-08-20,39.4336111,-76.3580556,Joppa,MD,circle,1800,we saw 6 or more small crafts orangey red doing maneuvers for approx. 30 min in maryland +1976-08-20,34.0522222,-118.2427778,Los Angeles (90 Miles East Of),CA,rectangle,180,A dark rectangular object appears over my car out on the road and telepathically tells me not to panic, that I knew it was there. +1976-08-20,28.2916667,-81.4077778,Kissimmee,FL,disk,900,Vi junto con mis abuelos y mi hermana, un UFO muy grande, claro y nítido, como a 100 metros de nosotros y a una altura de 30 metros apr +1978-08-20,32.7677778,-117.0222222,La Mesa,CA,disk,1200,I saw a Yellow light in my room I thought it was Traffic light blinking Then I jump up and looked straight at it I remember everything +1978-08-20,42.5916667,-88.4333333,Lake Geneva,WI,disk,300,Close up of saucer over Lake Geneva, Wi. in 1978 +1979-08-20,41.9294444,-88.7502778,Dekalb,IL,fireball,900,Firesball hovering over cornfeild,,looks like red/orande with molten dribble..goes back & forth across field and then rises and novas +1979-08-20,33.4483333,-112.0733333,Phoenix,AZ,disk,300,Mother and two children recall ufo experience +1980-08-20,44.3244444,-75.2513889,Edwards,NY,chevron,1800,That is what struck me as weird and there was no engine noise. +1982-08-20,42.6605556,-84.0730556,Fowlerville,MI,oval,900,Silent Object over Fowlerville with Revolving Lights +1983-08-20,40.6936111,-89.5888889,Peoria County,IL,cigar,60,In the summer of 1983, while driving home from work in a rural setting, I saw a huge reddish orange cigar shaped object that looked lik +1985-08-20,40.155,-74.8291667,Levittown,PA,triangle,300,Low flying, large triangle having fun, playing with us. +1985-08-20,39.3994444,-84.5613889,Hamilton,OH,oval,300,Disk hovered over Hamilton. I viewed from Rt 4 on a hill overlooking the city. Blinking white lights. +1985-08-20,38.9780556,-122.8383333,Kelseyville,CA,light,1800,All craft were spotted in lake county, california in a span of about 20 years +1985-08-20,42.2063889,-78.1377778,Friendship,NY,rectangle,300,massive silent object. +1986-08-20,33.6888889,-78.8869444,Myrtle Beach,SC,sphere,180,7 Colored Balls of Light seen north of beach acess at 82nd Ave N. in Myrtle Beach,SC Aug 1986 +1986-08-20,61.2180556,-149.9002778,Anchorage,AK,disk,3,Three black saucer-shaped objects quickly take off from the woods. +1986-08-20,38.3483333,-92.5813889,Eldon (Near; Rural),MO,other,8,Three red lights. Triangle looking satelite maybe.Moved at speed of light or close to it. +1987-08-20,43.2233333,-85.5513889,Cedar Springs,MI,circle,600,No sounds, red flashing light on bottom, like knight rider. +1987-08-20,27.8336111,-97.0608333,Port Aransas,TX,triangle,180,Casa Grande, Az +1988-08-20,30.2327778,-95.1608333,Splendora,TX,sphere,1800,my friend and i witnessed a reddish-orange sphere in the sky. it disappeared and a few minutes later the light went over with helicopt +1988-08-20,36.0652778,-119.0158333,Porterville,CA,unknown,604800,lost time +1988-08-20,35.6505556,-78.4566667,Clayton,NC,sphere,120,Sphere shaped object about the size of a water tower, spinning rapidly. +1988-08-20,36.7280556,-108.2180556,Farmington,NM,unknown,480,Slow moving yellow/orange colored lights above Crouch Mesa +1989-08-20,41.55,-71.4666667,North Kingstown,RI,light,73800,Bright light, sunny afternoon sky, Aug. ྕ. Stationary for 2 hrs. plus, highly visible, eerie. +1990-08-20,35.0241667,-110.6966667,Winslow,AZ,formation,420,During the summer of 1990 while traveling East on I10 outside of Winslow, Az I sited to my left (9 o'clock position) a formation flight +1990-08-20,35.0241667,-110.6966667,Winslow,AZ,formation,420,Extremly unusal aircraft observed in highspeed flight and hover during day light hours. +1990-08-20,35.9669444,-83.1877778,Newport,TN,sphere,1380,"My friend and I seen this pure white ball of light in the sky on the way to his friends house." +1991-08-20,38.9822222,-94.6705556,Overland Park,KS,disk,300,It was on a Saturday or Sunday afternoon and I was going on my break from work when I got into my car and my boss Bill started talking +1993-08-20,39.2333333,-84.1613889,Goshen,OH,triangle,300,I was driving home from work east bound on rt.28 outside of Goshen OH when i caught sight of a group of helicopters flying in V formati +1993-08-20,36.9902778,-86.4436111,Bowling Green,KY,disk,40,Disc shaped object over KY skies no lights or sounds and plainly visible that it wasn't convensional aircraft. +1993-08-20,46.2113889,-119.1361111,Kennewick,WA,cigar,2,Sky opens, objects darts out, then disappears through another opening in the sky. +1993-08-20,43.0388889,-87.9063889,Milwaukee,WI,other,180,five lights over wisconsin state fair +1993-08-20,40.1933333,-85.3863889,Muncie,IN,triangle,300,ufo sighted just north of muncie,indiana +1993-08-20,35.5363889,-78.2847222,Selma,NC,oval,4,Saw a orangish yellow oval move very suddenly and make an immediate right hand turn. +1993-08-20,34.698055600000004,-118.1358333,Lancaster (Saddleback Butte Park),CA,triangle,120,there was a meteor shower that we went to watch at the park. three triangle shaped craft passed by 500 - 1000 feet overhead +1994-08-20,40.0025,-74.0608333,Normandy Beach,NJ,triangle,4,clear skies, daylight,a triangle shaped object moving faster then the speed of sound without a any sound then divided into 2 seperate . +1994-08-20,38.2972222,-122.2844444,Napa,CA,light,2,Bright light becomming glowing oval white light with two multi-colored lights zipping by at high rate of speed. +1994-08-20,43.0125,-83.6875,Flint,MI,disk,180,Object moved VERY slowly then accelerated incredibly fast from a stop, completely silent. +1994-08-20,37.1763889,-94.31,Carthage,MO,unknown,180,Unidentified large flying object +1994-08-20,32.7252778,-114.6236111,Yuma,AZ,oval,60,Small red dot zoomed in at high speeds, came up to us. Saw the craft in slight detail. +1995-08-20,41.2380556,-81.8419444,Brunswick,OH,disk,1800,large disk shaped object with light beams eminating from it +1995-08-20,33.3486111,-80.6830556,Bowman,SC,triangle,300,At approximately 4 a.m. I wass sitting at at truck stop off Interstate 26 near Bowman South Carolina doing some paper work. I noticed +1996-08-20,38.6880556,-83.6094444,West Manchester,OH,disk,600,Teen girl saw circular UFO with orange,green,reddish-orange .A series of rectangular windows were around the middle body. One window i +1996-08-20,33.4483333,-112.0733333,Phoenix,AZ,light,60,Star like UFO seen by hospital security flying around Boeing 737 in Phoenix Arizona. +1997-08-20,42.9633333,-85.6680556,Grand Rapids,MI,diamond,120,diamond shape UFO hovering +1997-08-20,32.2216667,-110.9258333,Tucson,AZ,light,60,Erratic movement not found in conventional aircraft +1997-08-20,42.4566667,-83.9463889,Pinckney,MI,light,600,Lights being chased by jets. The lights won +1998-08-20,29.4238889,-98.4933333,San Antonio,TX,fireball,60,It was a clear midnight, and a friend of mine were leaving from work. As we were heading to our cars, we were talking and not paying a +1998-08-20,34.1975,-119.1761111,Oxnard,CA,triangle,600,4 triangular objects hovering in clear sky, almost invisible to the eye. +1998-08-20,48.051944399999996,-122.1758333,Marysville,WA,triangle,30,I TOOK ABOUT 30 SECONDS OF WHAT I BELIEVE TO BE EXCELLENT FOOTAGE OF A UFO. +1998-08-20,40.1211111,-90.5630556,Rushville,IL,unknown,300,TWO BRIGHT ORANGE LIGHTS SIDE BY SIDE AND TWO BRIGHT YELLOW LIGHTS ON THE OUTSIDE OF THEM +1998-08-20,42.3608333,-85.8794444,Gobles,MI,disk,180,4 disks looked as if they were playing a game of "chicken" in the sky above a lake. +1998-08-20,38.4588889,-90.5363889,High Ridge,MO,flash,10,I got out of my car and went to unlock the door. I was still facing the door and there was a flash of light. The flashing only lasted +1999-08-20,34.8986111,-117.0219444,Barstow,CA,changing,300,Strange beam emmiting craft perform strange manuvers over California desert. +1999-08-20,47.6588889,-117.425,Spokane,WA,sphere,1200,Bright Star-like object hovered/drifted/changed direction then disappeared. +1999-08-20,41.1577778,-80.0888889,Grove City,PA,light,7200,Ball of light that remains Stationary, but changes color constantly +1999-08-20,40.0680556,-82.5197222,Granville,OH,disk,1200,hopping, disk shaped opject that made no sound and had colored flashing lights that changed color. +1999-08-20,43.5680556,-83.5141667,Akron,MI,light,900,From the night sky 4 bright twinkling colored balls appeared, hovering over our heads then moving to the sky to a large ball of light. +1999-08-20,44.98,-93.2636111,Minneapolis,MN,sphere,180,Two bright Spherical shapes chasing each other at high speed +1999-08-20,42.4375,-122.8577778,White City,OR,circle,1800,When I was going home from Awana I saw something (I thought it was Venus) When I went inside the house and looked out the window it mov +2000-08-20,35.6869444,-105.9372222,Santa Fe,NM,light,10,I am a college graduate and I was an officer in the US Army. I am almost 60 years old and I have never seen a UFO before. The date th +2000-08-20,31.7244444,-96.165,Fairfield,TX,cylinder,37800,A cylinder object with red and turquoise colors that had been moving back and forth, then stationary. +2000-08-20,41.1366667,-95.8905556,Bellevue (Capehart),NE,teardrop,10,Black Tear Drop Shape over Offut Air Force Base. +2000-08-20,26.8230556,-80.1388889,Palm Beach Gardens,FL,changing,3600,Solid white, round stationary object for 1 hour +2000-08-20,33.1958333,-117.3786111,Oceanside,CA,disk,3600,My girlfriend and I noticed a cresent shaped object over our house. The object would rise or fall slightly but for the most part remain +2000-08-20,33.8302778,-116.5444444,Palm Springs,CA,oval,900,Bright light over Palm Springs +2000-08-20,41.4713889,-75.6080556,Dickson City,PA,cylinder,1800,Multiple sighting report! +2000-08-20,45.0847222,-93.0097222,White Bear Lake,MN,unknown,600,2 flashing lights in the sky, circle counter clockwise one on right goes behind moon and they moved away from each other +2000-08-20,40.2452778,-75.65,Pottstown,PA,disk,420,I observed a shiny, transparent disc with multi-colored lights over power plant in Pottstown, Pa. +2000-08-20,41.4838889,-74.2180556,Maybrook,NY,other,120,UFO flew over my house. +2000-08-20,41.4458333,-74.4233333,Middletown,NY,other,300,UFO almost hit my house! +2000-08-20,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,120,Saw 5 bright lights in a straight row in Bklyn. NY sky for about 2 mins. and then they spead away. +2000-08-20,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,120,I saw 5 bright lights in a row in a Brooklyn sky and they suddenly sped away. +2000-08-20,38.7297222,-120.7975,Placerville,CA,unknown,300,Bright orange object moving in a east/northeasterly direction +2001-08-20,32.7152778,-117.1563889,San Diego (Point Loma),CA,light,2700,There were 3 bright objects traveling in erratic patters. +2001-08-20,36.6061111,-118.0619444,Lone Pine,CA,light,300,Me, my wife and her sister were driving on highway 138 near Lone Pine, Ca when my wife noticed a very bright light flying above the Iny +2001-08-20,33.9502778,-98.3458333,Dean,TX,light,300,the object ziged and zaged out of sight into space +2001-08-20,41.76,-70.0833333,Brewster,MA,disk,8,a small red light on a disc that was about 3 feet in diameter quickly darting in my garden whirring faintly +2001-08-20,39.7391667,-104.9841667,Denver,CO,fireball,180,Two different color orbs playing chase over denver & shortly after military aircraft shows up. +2001-08-20,35.1186111,-120.5897222,Arroyo Grande,CA,light,900,lights in the sky. +2001-08-20,45.4463889,-122.6380556,Milwaukie,OR,formation,120,2 bright red lights blinking very fast one on top and one on botom, the lights went on for about 20-30sec. then instantly lights stoped +2001-08-20,37.9780556,-122.03,Concord,CA,other,15,I saw what appeared to be a dark 4-sided object, flat in appearance, with no lights, headed northeast, on the evening of 8/20/01. +2001-08-20,32.9341667,-97.0777778,Grapevine,TX,light,180,me my sister and a friend went to Grapevine Lake water-skiing after it got dark we sat in the boat and just talk when I looked up in th +2001-08-20,37.9513889,-91.7711111,Rolla,MO,light,1080,bright orange lights associated with aircraft. +2001-08-20,30.8897222,-96.2944444,Edge,TX,light,120,I was looking at the big dipper when i noticed that there was a bright light directly in between the two stars that make up the bottom +2001-08-20,40.801944399999996,-72.8413889,Mastic (Long Island),NY,circle,900,i was out one night having a catch with my friend when he had said he saw a shooting star i didnt think nothing of it until he kept say +2001-08-20,47.5675,-122.6313889,Bremerton,WA,circle,900,As we looked toward south Seattle, there was a single bright white light moving in erratic patterns (small circles) and various speeds +2002-08-20,41.0944444,-88.425,Dwight,IL,triangle,60,3 huge transparent triangles with the dot to dot affect moved east then up at a gradual speed after getting our alert when they spun. +2002-08-20,40.5886111,-83.1286111,Marion,OH,triangle,300,trianglar object in sky +2002-08-20,37.6655556,-82.7716667,Prestonsburg,KY,other,2,I saw a silver object that just seemed to hover over the top of the mountain. +2002-08-20,39.9288889,-85.3702778,New Castle,IN,other,10,flying banana shaped object caught on film +2002-08-20,42.2708333,-83.7263889,Ann Arbor,MI,disk,1800,It was beyond our concept of reality and was therefore very disturbing. +2002-08-20,37.6866667,-96.9763889,Augusta,KS,light,300,2 sets of bright white lights in a horizontal line, no sound, no movement, approx. 5 minutes +2002-08-20,31.1169444,-97.7275,Killeen,TX,oval,10,Fast moving oval object observed just after dark in Texas +2002-08-20,44.0605556,-70.3941667,Poland,ME,fireball,600,an orange light that slowly dropped and flickered out. +2002-08-20,47.9961111,-115.7805556,Noxon,MT,unknown,2700,Large craft spotted in Northwest Montana +2002-08-20,35.9197222,-88.7588889,Milan,TN,light,3600,A large dull light the color of the sun when it sets with a brite red flashing light that rotated around it. The object hovered for one +2003-08-20,42.1583333,-72.3291667,Palmer,MA,light,180,Zig-Zagging flashing cigar shaped objects following the highway for miles seemed to be attached in some way. +2003-08-20,34.1808333,-118.3080556,Burbank,CA,fireball,360,Stationary Red Glow Caught On Mini DV Cam. +2003-08-20,30.2452778,-85.6483333,Lynn Haven,FL,triangle,60,it was just there +2003-08-20,29.4238889,-98.4933333,San Antonio,TX,light,3600,STAR LIKE OBJECT SOUTHEAST OF MARS FLASHING RED,GREEN BLUE. +2003-08-20,36.9902778,-86.4436111,Bowling Green,KY,triangle,1200,My sighting occured as I was driving home from Church around 8:15 PM. The night was very dark and cloudy. I was traveling home from t +2003-08-20,32.7833333,-96.8,Dallas,TX,diamond,1020,i never seen something like that . +2003-08-20,29.4238889,-98.4933333,San Antonio,TX,cigar,4,I saw what looked like a green laser shoot through the sky directly above me, making absolutely no sound. +2003-08-20,37.43,-122.2527778,Woodside,CA,diamond,8,silent black diamond outlined in lights crossed the sky very quickly, shortly afterward another smaller passed +2003-08-20,36.3294444,-78.3994444,Henderson,NC,formation,120,They were in a straight line with blinking lights +2003-08-20,37.9736111,-122.53,San Rafael,CA,light,240,faint blue flashing object in the binoculars +2003-08-20,36.9902778,-86.4436111,Bowling Green,KY,other,10,STAR GAZING SEEN NORTH STAR THEN OBSERVED ANOTHER OBJECT MOVE AT A HIGH RATE OF Speed I HAVE A STUDENT PILOT LIC. TO FLY AND THOUGT THI +2003-08-20,43.0019444,-75.9772222,Manlius,NY,circle,5,Round glowing object observed in Manlius N.Y. +2003-08-20,27.3361111,-82.5308333,Sarasota,FL,formation,3,two dim stars that were in a formation a flew an arch pattern together. then faded quickly +2003-08-20,33.8816667,-118.1161111,Bellflower,CA,fireball,1800,red fireball in sky over lakewood california dripping tiney red dots +2003-08-20,33.8536111,-118.1330556,Lakewood,CA,sphere,20,Small bright orb appeared about 15 feet from me. +2003-08-20,47.7544444,-122.1622222,Woodinville,WA,light,3,Green Light in the North-Northeastern sky. ((NUFORC Note: Probable meteor. PD)) +2004-08-20,47.3894444,-119.4894444,Soap Lake (Sun Lakes State Park),WA,triangle,300,The craft was a large triangle. +2004-08-20,36.4072222,-105.5725,Taos,NM,disk,60,flashing lights, sky cloudness +2004-08-20,44.0247222,-88.5425,Oshkosh,WI,disk,4,7 white, saucer shapes flying in v formation on live TV in Oshkosh, WI +2004-08-20,41.29,-73.9208333,Peekskill,NY,changing,60,A clear Sunday afternoon,Me and my girlfriend saw what looked like an amorphous color changing metallic//silver/red shaped object w +2004-08-20,45.4994444,-89.1666667,Pelican Lake,WI,circle,18000,it was stationary object very high in the afternoon clear sky, which was visible until dark and gone the next day +2004-08-20,41.6005556,-93.6088889,Des Moines,IA,triangle,600,Triangle sighted on I-35 in Des Moines +2004-08-20,41.0705556,-85.0144444,New Haven,IN,teardrop,120,Fast moving object with three white lights in front of it silently going across the sky +2004-08-20,46.3525,-124.0530556,Long Beach,WA,light,900,We saw a bright yellow light on the ocean moving very quickly north; it faded and then reappeared moving south. +2004-08-20,47.6105556,-122.1994444,Bellevue,WA,formation,20,The group of aircraft moved quickly at high altitude changed formation violently. +2004-08-20,41.85,-87.65,Chicago,IL,cylinder,300,Cylinder shaped with lights on the side. I Have never seen a plane do that... +2004-08-20,38.015,-121.6394444,Bethel Island,CA,light,15,a light in the sky moving fast and disappering +2004-08-20,41.85,-87.65,Chicago,IL,unknown,2700,Same UFO from Orland Parlk / Tinley Park? +2004-08-20,47.7505556,-90.3341667,Grand Marais,MN,other,1800,3 stars moving in a triangle formation near the Minnesota-Canada border? +2004-08-20,42.4391667,-123.3272222,Grants Pass,OR,circle,30,Three bright red cylinders changing to very bright white lights before disappearing at high speeds +2004-08-20,40.7141667,-74.0063889,New York City (Staten Island),NY,oval,900,the hazy white four objects traveled in a circle and came together about a dozen times in the center like they were playing a game. +2004-08-20,38.5347222,-105.9983333,Salida,CO,triangle,10800,3 Crafts Above Methodist Mountain in Colorado in August 2004! +2004-08-20,41.85,-87.65,Chicago,IL,triangle,120,Mother and daughter see "firework" stop, then turn into some type of unlighted craft. +2004-08-20,42.1816667,-88.3302778,Lake In The Hills,IL,triangle,180,On August 20񫺔 at exactly 10:25 to 10:27 pm we witnessed a triangular shaped object moving across the sky from north to south direct +2004-08-20,44.6369444,-124.0522222,Newport,OR,fireball,1800,Two men observe large, red/orange, glowing object disappear into the night sky. +2005-08-20,35.4086111,-80.5797222,Concord,NC,oval,20,Oval shaped object +2005-08-20,39.4822222,-89.1936111,Owaneco,IL,oval,30,Large very bright oval object that appeared to the right, left then right. +2005-08-20,47.6105556,-122.1994444,Bellevue,WA,unknown,30,2 very fast, gliding objects moving southbound over the Seattle area. +2005-08-20,41.85,-87.65,Chicago,IL,unknown,15,UFO's seen at The Chicago Air Show! +2005-08-20,47.6063889,-122.3308333,Seattle,WA,light,2700,White, small lights seen in the clear day sky. Objects seem 5 times in various locations over 45 minutes. +2005-08-20,32.9477778,-112.7161111,Gila Bend,AZ,changing,600,Wow, Thing's that you wouldn' t think of happenin to you!! They Can, and Sometime's DO!! +2005-08-20,40.7402778,-75.31,Nazareth,PA,triangle,180,Massive Triangle UFO Making a LOT of SOUND that shakes the windows +2005-08-20,43.1905556,-112.3441667,Blackfoot,ID,disk,600,UFO siting in Blackfoot, Idaho at lecture on flying saucers +2005-08-20,36.8655556,-87.4886111,Hopkinsville,KY,disk,600,Two objects moving in my direction from the south with beams of light pointing down. +2005-08-20,32.7947222,-116.9616667,El Cajon,CA,circle,120,Two bright red lights in the sky over El Cajon/San Diego +2005-08-20,43.8519444,-85.0052778,Lake,MI,unknown,60,Four identical 3-lighted objects seen holding motionless, close to each other, then 1 object accelerates up +2005-08-20,36.5297222,-87.3594444,Clarksville,TN,disk,300,Round saucer shaped craft streaking over the south side of Clarksville TN shining light beams north and to the ground. +2006-08-20,40.7141667,-74.0063889,New York City (Bronx),NY,circle,900,Three circular objects orbiting overhead and meeting at a point in their orbits. Than a fourth circular object behaving the same way. +2006-08-20,44.0583333,-121.3141667,Bend,OR,oval,2700,I came home from work and a neighbor called me over to view what they had been watching. I said "it's a bright star" My Neighbor said +2006-08-20,44.6102778,-93.0019444,Hampton,MN,triangle,180,TRIANGULAR CRAFT HOVERING AT HAMPTON, MINNESOTA - 04:00 AUGUST 2006 +2006-08-20,39.9522222,-75.1641667,Philadelphia (Near Art Museum),PA,rectangle,120,6 Light craft saw near art museum in philly. +2006-08-20,40.5866667,-122.3905556,Redding,CA,circle,300,Saw about 20 bright objects kind of like a swarm of bees, only they moved in jerks and zig zags +2006-08-20,39.0319444,-76.5030556,Arnold,MD,formation,70,15 purple lights quikly change formation before vanishing. +2006-08-20,32.7152778,-117.1563889,San Diego,CA,oval,70,i saw stange lights in space +2006-08-20,38.2558333,-119.2302778,Bridgeport,CA,circle,35,Viewed small object of softball size hovering above me at fourteen feet +2006-08-20,34.9872222,-118.5136111,Twin Lakes,CA,circle,35,Small softball size object hovering above me, at fourteen feet away +2006-08-20,48.7838889,-117.8105556,Onion Creek,WA,flash,1,TRACKING A FAINT SATELLITE, AND AN EMERGING FLASH! +2006-08-20,40.5069444,-111.4125,Heber City,UT,diamond,600,They flew in together and then took their spots. +2006-08-20,41.2586111,-95.9375,Omaha,NE,unknown,300,10:05p.m.in driveway witnessed strobing red/white lights moving from n.w to east in manner unlike no aircraft +2006-08-20,43.3030556,-77.9213889,Hamlin,NY,unknown,10,alien Being sighted in Hamlin, NY +2007-08-20,46.0647222,-118.3419444,Walla Walla,WA,unknown,6,Low flying Orange glow object +2007-08-20,41.4486111,-74.2858333,Lagrange,NY,diamond,300,Diamond shaped ufo +2007-08-20,35.4913889,-92.0311111,Heber Springs,AR,circle,30,It was fast. +2007-08-20,43.0972222,-89.5041667,Middleton,WI,other,600,Column of flashing white lights +2007-08-20,39.6080556,-119.2508333,Fernley,NV,circle,18000,((HOAX??)) UFO'S HOUVER OVER DESERT FLOOR AROUND ABOUT 10ꯠ FT. +2007-08-20,36.3805556,-92.2275,Henderson,AR,light,35,strange orange lights over Henderson AR +2007-08-20,29.1869444,-82.1402778,Ocala,FL,light,900,light was white round...it faded in and out about 6-8 times in 15min period..i signaled back with my 2 green neons on roof +2007-08-20,34.1741667,-97.1433333,Ardmore,OK,light,240,possable UFO +2007-08-20,34.9247222,-81.0252778,Rock Hill,SC,light,120,At 9:40 p.m. on August 20 2007 I witnessed two bright spherical lights for about two minutes. ((NUFORC Note: ISS and STS?? PD)) +2007-08-20,33.6888889,-78.8869444,Myrtle Beach,SC,light,300,Diagonal straight line of three lights fading on and off appearing in different parts of the sky +2007-08-20,31.5747222,-111.3316667,Arivaca,AZ,light,3600,On the 20th we observed three objects enter the atmosphere headed in a northerly direction. +2007-08-20,30.3741667,-86.3586111,Miramar Beach,FL,light,600,Mysterious Lights Over Gulf +2007-08-20,45.2444444,-123.1136111,Lafayette,OR,oval,20,2 very bright oval objects viewed in the sky over Lafayette Oregon. ((NUFORC Note: ISS and STS?? PD)) +2007-08-20,33.7091667,-117.9527778,Fountain Valley,CA,circle,900,there was a round shaped object that glowed a dull red collor in the night sky; that moved very slowly +2007-08-20,35.6527778,-97.4777778,Edmond,OK,sphere,120,Two bright star looking objects moving at unbelievale speed. Too high to be man made light. ((NUFORC Note: ISS and STS?? PD)) +2007-08-20,34.3738889,-80.0736111,Hartsville,SC,light,600,Extremely bright UFO staionary then spirals away out of sight. +2007-08-20,28.0833333,-80.6083333,Melbourne,FL,light,2,What looked like a star moving east across the sky and then disappearing into the distance. ((NUFORC Note: ISS?? PD)) +2007-08-20,43.2097222,-77.6933333,Greece,NY,cylinder,3600,cylindrical shaped object, due west in western NY sky, revolving green, red and white lights… ((NUFORC Note: Star?? PD)) +2008-08-20,40.0108333,-89.2822222,Mount Pulaski,IL,disk,3600,Bright, hovering disk over Mt. Pulaski, Illinois +2008-08-20,38.9905556,-77.0263889,Silver Spring,MD,triangle,20,Large triangular craft soundlessly moving slowly at low altitude in large metropolitan area. +2008-08-20,44.8408333,-93.2980556,Bloomington (Minneapolis),MN,fireball,15,Green orbe/fire ball over minneapolis/bloomington +2008-08-20,34.6180556,-79.0088889,Lumberton,NC,cigar,20,I was taking a walk when i looked up to see a shiny bolt, which was no airplane. +2008-08-20,41.49,-71.3133333,Newport,RI,cone,600,((HOAX??)) 4 cigar shaped craft hovering over newport +2008-08-20,42.4511111,-84.1805556,Stockbridge,MI,unknown,10,a point of light that looked like what might be a satellite traveling from north to south +2008-08-20,31.435,-97.7436111,Gatesville,TX,triangle,6,Silent slow moving wide triangular non illuminated object. +2008-08-20,26.1416667,-81.795,Naples,FL,light,240,UFO SIGHTING IN NAPLES, FL AUGUST 20th, 2008 +2008-08-20,39.2902778,-76.6125,Baltimore,MD,sphere,3,Globe of white light zooms directly at me while I look out my window at night. veers off and zooms away. +2008-08-20,32.4608333,-84.9877778,Columbus,GA,light,1500,Erratic moveing white light in Southeastern US +2009-08-20,37.4419444,-122.1419444,Palo Alto (Assumed Location),CA,light,120,three bright lights flashing thru thick trees in CA. +2009-08-20,25.7902778,-80.1302778,Miami Beach,FL,light,1200,Two bright lights hovering around Downtown Miami skyscrapers for 20 minutes, then descended into the ocean together. +2009-08-20,21.5902778,-158.1125,Haleiwa,HI,unknown,20,6 large white symmetrical round lights appear off surf in Haleiwa Oahu. +2009-08-20,38.5525,-78.9136111,Singers Glen,VA,light,40,3 Lights in formation travelling across the entire night sky +2009-08-20,43.2708333,-89.7219444,Sauk City,WI,light,7200,pulsating light across wi river. +2009-08-20,45.6961111,-121.285,Lyle,WA,changing,14400,Multiople haloed domes, orb with lightning bolts, beam, rectangular structure, 7 dancing objects in formation twinkling white and red +2009-08-20,37.725,-122.155,San Leandro,CA,circle,14400,Wierd lights in the sky of the SF Bay. +2009-08-20,42.9336111,-72.2786111,Keene,NH,triangle,60,It was a triangle with four lights three white ones and a red blinking one underneath. +2009-08-20,39.8494444,-75.3561111,West Chester,PA,light,300,Extremely bright flashing orb seen directly overhead. +2009-08-20,46.6316667,-114.0780556,Florence,MT,light,600,Dual lights traveling together in irregular pattern +2009-08-20,27.5872222,-82.4252778,Parrish,FL,unknown,45,UFO we could not see but heard and smelled +2009-08-20,37.4083333,-102.6138889,Springfield,CO,triangle,10800,A triangular object with a multitude of lights was spotted in the southeast Colorado night sky. +2009-08-20,40.7608333,-111.8902778,Salt Lake City,UT,formation,15,Lights like string of pearls dance across Utah sky. +2009-08-20,41.1411111,-73.2641667,Fairfield,CT,unknown,5,Object traveling at immense speed, size and altitude of satellite, over Fairfield, CT (metro NY airspace) +2009-08-20,40.5141667,-88.9905556,Normal,IL,light,7,I saw a Small Light in the sky, Then it moved away quickly. +2009-08-20,30.8325,-83.2786111,Valdosta,GA,light,3,seen three orange like lights they was floating in a triangle shape and was gone valdosta ga +2009-08-20,42.1102778,-88.0341667,Palatine,IL,light,2,Bright anomolus light seen streaking over Chicagoland +2010-08-20,40.0697222,-80.7402778,Bridgeport,OH,circle,10,Bright milk cap sized object hovers then takes off into nothing. +2010-08-20,29.1869444,-82.1402778,Ocala,FL,unknown,3,fiery shape flies to earth +2010-08-20,43.5408333,-116.5625,Nampa,ID,cigar,300,cigar shaped UFO. Mediam grey. no noise. large. elevation about the hight of normal helicopter flying overhead. +2010-08-20,38.5891667,-121.3016667,Rancho Cordova,CA,light,600,Slowly moving blinking star like obdject in the daylight 17:00 Hours PM +2010-08-20,41.5622222,-72.6511111,Middletown,CT,circle,2700,Large orange ball moving slowly and stopping in the sky. ((NUFORC Note: Possible sighting of Venus? PD)) +2010-08-20,35.5933333,-75.4683333,Rodanthe,NC,unknown,600,10 orange lights floating in the sky. +2010-08-20,41.6977778,-72.7241667,Newington,CT,cigar,30,I saw an oblong cigar shaped objected traveling southeast very rapidly. My fiance ran inside to get to her camera and I ran towards the +2010-08-20,41.6977778,-72.7241667,Newington,CT,cigar,30,I saw the object with my fiance traveling Southeast in the sky at a little past 11:00pm on Friday night August 20񫺚. It was oblong +2011-08-20,34.0336111,-117.0422222,Yucaipa,CA,sphere,480,slow spinning sphere that changed from solid black to shinny transparent while floating in one spot. +2011-08-20,39.9522222,-75.1641667,Philadelphia,PA,changing,20,Circularly moving lights around an "invisible" cylinder transforms into V triad of lights with a red and green tail lightI +2011-08-20,33.8702778,-117.9244444,Fullerton,CA,disk,3600,Bright silver/white disc seen north of Fullerton, California +2011-08-20,40.2986111,-83.0680556,Delaware,OH,sphere,4,bright round ball of light go straight over then disappeared +2011-08-20,33.3941667,-110.7858333,Globe,AZ,sphere,5400,Saw 3-4 erratic white-yellow spheres moving vertical, horizontal, diagonal, stopping, spiraling at high speed +2011-08-20,29.1691667,-95.4316667,Angleton,TX,formation,120,One ship or three hovering? +2011-08-20,42.8375,-76.4138889,Niles,NY,fireball,30,3 Fireballs Spotted in Triangle Formation Spotted in Niles NY 8:44pm 08/20/11 +2011-08-20,43.2966667,-87.9875,Cedarburg,WI,fireball,120,Fireball Seen in Sky +2011-08-20,40.3933333,-82.4858333,Mount Vernon,OH,circle,90,3 orange glowing lights forming a large triangle +2011-08-20,39.9375,-77.6613889,Chambersburg,PA,fireball,300,strange sightings +2011-08-20,40.6866667,-73.3738889,Lindenhurst,NY,rectangle,3600,red to orange flickering lights/flames attached to some type of object sailing fast in the sky over Lindenhurst,NY +2011-08-20,36.7569444,-90.3927778,Poplar Bluff,MO,circle,300,Three objects in triangle pattern +2011-08-20,40.2338889,-111.6577778,Provo,UT,light,60,We saw a mysterious light in the night sky that we cannot explain. +2011-08-20,20.8911111,-156.5047222,Wailuku,HI,other,60,Strange light occurance +2011-08-20,39.1141667,-94.6272222,Kansas City,KS,formation,20,8-16-2011 I saw a rectangular object like a 2-story building on its side not moving and 8-20-2011 8 orbs not moving were together. +2011-08-20,35.7972222,-84.2561111,Lenoir City,TN,fireball,180,Two orange lights moving East to West with no sound. 21:30 August 20th 2011 +2011-08-20,47.2530556,-122.4430556,Tacoma,WA,formation,60,15 -20 amber lights in sky in square formation over North Tacoma, Washington +2011-08-20,38.8822222,-77.1713889,Falls Church,VA,light,300,Two reddish-orange lights moving south to north, one after the other within 5 min., near Falls Church, VA +2011-08-20,38.1502778,-92.6177778,Osage Beach,MO,oval,60,We were watching a neighbor shoot off fireworks when we noticed an oval shaped object floating (about the size of a basketball in compa +2011-08-20,44.4077778,-69.4744444,Palermo,ME,light,420,Bright red object traveled slowly across the sky from the southwest to northeast and then disappeared. +2011-08-20,34.2783333,-119.2922222,Ventura,CA,fireball,3, I am a photographer from Ventura, Ca.  who lives on the Beach and watches the sky on a regular basis.  8/20/11 I witnessed a strange +2011-08-20,35.1894444,-114.0522222,Kingman,AZ,circle,240,Orange lights hover over Kingman Fairgrounds +2011-08-20,47.3075,-122.2272222,Auburn,WA,light,480,Witnessed 7 to 9 amber lights above the Eastern sky of Kent, WA traveling North at about 1000 ft above the ground at 22:30 Aug 20񫺛 +2011-08-20,39.0911111,-94.4152778,Independence,MO,light,600,While driving along road I noticed a grouping of lights,ahead were a couple cars with hazards on,pulled to side with the others witness +2011-08-20,42.8666667,-106.3125,Casper,WY,light,120,A light about the brightness of a star doing figure eights and circles. +2011-08-20,29.5847222,-81.2080556,Palm Coast,FL,fireball,10,Family of three in Palm Coast, FL saw three fire balls after reviewing video on clear night +2011-08-20,43.385555600000004,-84.8355556,Riverdale,MI,fireball,300,We saw a orange fireball looking thing at tree line level. WE though it was a helicopter, but it was silent and moved very fast. It mov +2011-08-20,41.3747222,-83.6513889,Bowling Green,OH,sphere,120,Pale orange light w/ bright center, size few feet wide-like orange plastic bag w/ glowing center-floated from low to become pt. in sky +2012-08-20,44.6127778,-124.0475,South Beach,OR,flash,300,Flashing "star." Erratic flight pattern and great speed. Suddenly disappeared. +2012-08-20,37.8172222,-96.8619444,El Dorado,KS,circle,1020,One light, magnitude six or so traveling at a high rate of speed and stopping, turning, hovering, and looping E to W then NW to SW. +2012-08-20,43.3652778,-72.1738889,Newport,NH,cylinder,20,Silver cylinder moving east west as fast as a satellite without any sound, wings or tail....looked like a shiny pipe. +2012-08-20,44.0061111,-97.1136111,Madison,SD,oval,120,Luminous oval in evening sky over Madison, SD. +2012-08-20,42.32,-89.0580556,Loves Park,IL,circle,300,Orange circle moving west near river. +2012-08-20,36.8252778,-119.7019444,Clovis,CA,flash,600,The lights seemed to be pulses of bright white lights, like nothing I've ever seen. +2012-08-20,35.6008333,-82.5541667,Asheville,NC,light,7200,West Asheville UFO Sightings +2012-08-20,35.1494444,-90.0488889,Memphis,TN,light,10,Bright star-like dot - western sky - that moved silently at an angle towards the north before vanishing into the clear night sky... +2012-08-20,41.3275,-89.1288889,Peru,IL,triangle,60,(/\) - Large V shape object with 5 amber lights just above the tree-line moving silently at 10-20 MPH +2012-08-20,41.6330556,-81.4688889,Willowick,OH,sphere,3600,4 orange spherical silent objects heading west across the NEohio night sky at 10:45pm +2012-08-20,42.4391667,-123.3272222,Grants Pass,OR,circle,60,Stars appear, move and fade away. +2012-08-20,46.1652778,-123.9225,Warrenton,OR,light,1200,Non-Moving flashing light dissapears suddenly into the sky +2012-08-20,47.1302778,-119.2769444,Moses Lake,WA,triangle,7,High speed, Three globes in triangle formation, orange glow. +2012-08-20,34.1841667,-118.9097222,Newbury Park,CA,triangle,2,A cluster of gold colored lights in a triangle shape appeared in the sky south of Newbury Park and disappeared about 2 sec. later +2013-08-20,38.7891667,-77.1875,Springfield,VA,cigar,3600,Crazy. +2013-08-20,40.45,-111.7694444,Highland,UT,light,120,Pulsating light in eastern sky, moving north to south, random pulse while moving across sky. +2013-08-20,41.6080556,-74.2994444,Pine Bush,NY,other,5,Odd lights in the sky over Pine Bush: commercial or extraterrestrial? +2013-08-20,44.5433333,-68.42,Ellsworth,ME,circle,1800,Branch Lake UFO sightings. Circular crafts, with white flashing lights. +2013-08-20,34.4208333,-119.6972222,Santa Barbara,CA,changing,300,Moving SEMI-VISIBLE striped waving object. +2013-08-20,36.06,-86.6722222,Antioch,TN,other,600,Black Squarish Object Shifting and moving Slowly +2013-08-20,42.4644444,-83.3763889,Farmington,MI,other,180,Nebulous Teardrop shaped object which emitted a single flash. +2013-08-20,39.7083333,-91.3583333,Hannibal,MO,fireball,30,Fire in the sky. +2013-08-20,43.8991667,-71.1488889,Madison,NH,light,240,Orange orb flew silently overhead, flickered, then went out; replace by black object. +2013-08-20,47.2530556,-122.4430556,Tacoma,WA,fireball,120,Bright Red/Orange Fireball in North Tacoma moving very fast and smooth from North to South +2013-08-20,47.2530556,-122.4430556,Tacoma,WA,fireball,120,Red and orange fireball shaped craft moving south in a smooth fast manner. +2013-08-20,42.3583333,-71.0602778,Boston,MA,light,120,Solid Non-Flashing Light +2013-08-20,34.0522222,-118.2427778,Los Angeles,CA,fireball,25,Three red orange balls of light traveling low over the Santa Monica bay in Los Angeles and then ascending vertically and fading out of +2013-08-20,45.4872222,-122.8025,Beaverton,OR,light,60,Bright white light traveling from west to east that suddenly disappeared. +2013-08-20,41.6561111,-70.4166667,Marstons Mills,MA,sphere,240,Bright white sphere above Cape Cod. ((NUFORC Note: Possible sightings of ISS?? PD)) +2013-08-20,47.6447222,-122.6936111,Silverdale,WA,light,300,White light Orb flys across sky at a steady pace slows down then moves on. +2013-08-20,42.0963889,-83.2919444,Flat Rock,MI,egg,360,10-15 UFOs spotted over I-75, orange in color. +2013-08-20,41.9202778,-79.6405556,Corry,PA,light,120,Bright Orb moving slow and low across the night sky. ((NUFORC Note: Possible ISS sighting? PD)) +2013-08-20,45.5236111,-122.675,Portland,OR,fireball,25,Orange fireball hovers over southeast Portland than disappears +2013-08-20,39.6547222,-77.5730556,Smithsburg,MD,triangle,120,While drivig down the highway I saw three huge lights in a triangle shape hovering over the tree tops on the top of the hill. +2013-08-20,33.9966667,-77.9075,Kure Beach,NC,fireball,3,Small fireball seen for a few seconds off coast. +2013-08-20,38.0683333,-78.8897222,Waynesboro,VA,circle,1500,Bright white light flying in circular motions over mountain. +1978-08-21,32.7561111,-91.8722222,Bastrop,LA,rectangle,600,Large rectangular object, about 100 yards over the power lines. +1983-08-21,41.3080556,-72.9286111,New Haven,CT,sphere,1200,Object next to Tweed New haven airport at tree level. Viewed by most residents of Stewart Street +1984-08-21,43.2966667,-87.9875,Cedarburg,WI,rectangle,2700,Re occuring sightings in same location., up close and personal proof is waiting +1990-08-21,33.4483333,-112.0733333,Phoenix,AZ,other,1800,Triangular figgure that was not registered in local air ops. +1993-08-21,43.4925,-70.4538889,Biddeford,ME,diamond,600,there was my friend his wife and myself we were at a place called rotary park.its a swimming place in biddiford. we had just finished s +1994-08-21,39.6005556,-82.9461111,Circleville,OH,triangle,20,On Sunday night, August 21, 1994, at 10:35p.m., a triangle-shaped craft was observed flying over U.S. Route 23 in front of the local Du +1997-08-21,38.3822222,-87.2127778,Winslow,IN,other,3,was looking at stares and saw huge streak of fire cross the sky +1998-08-21,33.8358333,-118.3397222,Torrance,CA,egg,120,egg shaped, reflected the sun. +1998-08-21,37.3636111,-118.3941667,Bishop (Remote, High Sierras, Above),CA,rectangle,10,Witnessed a craft cross the sky above the Sierra Nevada mountians. +1998-08-21,44.9430556,-123.0338889,Salem,OR,chevron,45,object was travelling below cloud level,from north to south. boomerang shaped pinkish silver color manuevered without changing speed th +1999-08-21,47.4830556,-122.2158333,Renton,WA,cigar,480,saw object approx 100-200 yrds in length hover above Valley Medical Center. Object was orange/red glow. +1999-08-21,47.4830556,-122.2158333,Renton (Ne Of, Approx. 5 Miles),WA,unknown,900,While looking at aircraft producing contrails, (4 parallel trails)through binoculars, my brother spotted ufo. +1999-08-21,47.3925,-121.3988889,Snoqualmie Pass (Interstate 90),WA,rectangle,10,Viewed solid object, rectangular or diamond shape, 300-400 ft above ground from apprx. 1000 ft away while driving. Daylight.Hovering.15 +1999-08-21,38.4530556,-85.6702778,Charlestown,IN,circle,20,Seemed to be a sattelite but for 3-5 seconds it brightened to near the brightness of Jupiter. +1999-08-21,39.2144444,-122.0083333,Colusa,CA,oval,2,My son-in-law was coaching a highschool football scrimage. A friend filmed it on his video camera and gave it to him after the game. +2000-08-21,45.1608333,-93.2347222,Blaine,MN,changing,240,4 shapeshifting craft checks out humans... +2000-08-21,47.6063889,-122.3308333,Seattle,WA,light,60,Bright white light, similar to Venus, moving northward in the northern sky, suddenly dimmed and faded from view. +2000-08-21,47.0380556,-122.8994444,Olympia,WA,unknown,60,Had returned to home. Was walking to the front door in a Southern approach. Noted a small single engine aircraft going over head at ab +2000-08-21,36.2,-86.5186111,Mt. Juliet,TN,cylinder,60,Two cylinder shaped objects moving quickly across the sky making no noise. +2000-08-21,40.2961111,-74.0513889,Eatontown,NJ,unknown,30,Sighted an object of large white light that stayed on the horizon for about 1 minute then disappeared as if turned off. +2000-08-21,45.5872222,-122.3983333,Camas,WA,sphere,240,A small light zigzaging and hovering then stopped and disappeared over southwest Washington. +2000-08-21,45.5872222,-122.3983333,Camas,WA,triangle,1200,Three lights made up shape of triangle, stationary. One big round red-orange sphere, moved across the sky, slowly, disappeared +2000-08-21,48.4111111,-114.3366667,Whitefish,MT,fireball,2,green &/or yellow +2000-08-22,35.0525,-78.8786111,Fayetteville,NC,unknown,60,report in north carolina and a similar report in south carolina +2001-08-21,47.6063889,-122.3308333,Seattle,WA,other,300,Dark Low Flying Plane-Like Object on Flight Path to Seatac Airport +2001-08-21,40.7141667,-74.0063889,New York City (Brooklyn),NY,flash,120,Flashing Object seen over Brooklyn +2001-08-21,47.9033333,-91.8669444,Ely (About 40-50 Miles Outside),MN,light,60,While canoeing at 3:30 AM we saw a blinking light in the sky similar to that of an aircraft. Suddenly it lit up & sped away +2001-08-21,44.2097222,-69.0652778,Camden,ME,other,240,Silver metallic flashing bell shaped craft. +2001-08-21,33.2,-117.2416667,Vista,CA,triangle,300,3 lights on each side on a triangle craft, 2 solid bright lighted craft +2001-08-21,35.1186111,-120.5897222,Arroyo Grande,CA,light,1800,saw more light tonite Of anyone in this area saw em tonite august 21 they wen in south east motion 2 at same speed one at fast sp +2001-08-21,32.7152778,-117.1563889,San Diego,CA,triangle,15,Saw a large triangle shaped craft moving slowly along beach. +2001-08-21,35.1894444,-114.0522222,Kingman,AZ,changing,30,While traveling southeast on US 93 from Kingman to Whickenburg, AZ one bright lite appeared approx. 45 to 50 deg. above the horizon. S +2002-08-21,40.1163889,-88.2433333,Champaign,IL,changing,300,Bright light, very distant. Color and sligh shape changing for 5 minutes then dimming out to nothing. +2002-08-21,47.0380556,-122.8994444,Olympia,WA,unknown,3600,6 objects appear through same entry point in sky 1 by 1 out of nowhere speed away and fade into thin air. +2002-08-21,43.073055600000004,-89.4011111,Madison,WI,triangle,300,delta wing object flew silently overhead +2002-08-21,36.2080556,-86.2911111,Lebanon,TN,triangle,300,Two triangular shaped craft hovering over power lines. +2002-08-21,42.3583333,-71.0602778,Boston,MA,cigar,60,Cigar shaped object over Logan Airport +2002-08-21,41.0338889,-73.7633333,White Plains,NY,disk,10,Small disk near Westchester Airport +2002-08-21,40.9083333,-90.2847222,Knoxville,IL,chevron,7,I wonder if anyone will believe what I just saw! +2002-08-21,40.7777778,-89.9663889,Elmwood,IL,chevron,5,I saw a bright blue light slowly decend from the sky, a lot bigger, brighter, and slower than a shooting star. +2002-08-21,32.7866667,-79.795,Isle Of Palms,SC,light,30,Strange red lights over the ocean - Isle of Palms, South Carolina +2002-08-21,45.6647222,-97.0494444,Sisseton,SD,light,60,Intelligent white light floating above us. Took off when it knew we seen it. +2003-08-21,43.6152778,-83.8419444,Essexville,MI,light,240,It look like a star from my distance; +2003-08-21,48.7597222,-122.4869444,Bellingham,WA,egg,300,Silent orb moving forward in pulses +2003-08-21,38.9636111,-84.0808333,Bethel,OH,disk,300,rapidly flashing light with VERY erratic movements appearing to cover great distances and lasting several minutes +2003-08-21,32.655,-79.9405556,Folly Beach,SC,light,120,Four or five yellow glowing balls of light +2003-08-21,41.7213889,-85.8175,Bristol,IN,diamond,300,Diamond Lights dance in the Heavens +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,light,1200,Lights over Tinley Park +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,light,1200,Three red lights (objects) moving in the sky making formations on August 22, 2004. +2004-08-21,43.0388889,-87.9063889,Milwaukee,WI,formation,37800,ufo's formed a circle over our roof and hovered there for about 11/2 hours +2004-08-21,47.6588889,-117.425,Spokane,WA,light,180,large white light, erratic motion over spokane +2004-08-21,46.3525,-124.0530556,Long Beach,WA,light,600,At Long Beach WA peninsula, on the beach, looking out over the ocean -- bright white/yellow circular light moving at high speed right a +2004-08-21,38.9011111,-77.2655556,Vienna,VA,diamond,1,it was in the shape of a dymand with a ppink haze behind it. +2004-08-21,29.7630556,-95.3630556,Houston,TX,light,10800,Beam of light in NE Houston +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,circle,3600,3 red lights hovered for about 1 hour to the south of my location in Tinley Park, Il. +2004-08-21,42.2169444,-88.0494444,Hawthorn Woods,IL,triangle,3600,saw a triangular formation of red lights in the sky +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,unknown,600,MY friends and i were sititng on my porch talking when i noticed three redish orangish colored lights in the sky.Thinking it was a plan +2004-08-21,41.4958333,-87.8486111,Frankfort,IL,triangle,2700,3 lights in a triangular formation in the north sky +2004-08-21,29.7630556,-95.3630556,Houston,TX,light,1200,An orange vertical column of light in the northeast sky +2004-08-21,41.6027778,-87.7438889,Oak Forest,IL,triangle,1200,Strange air ship moving north to south over the southwest Chicago suburbs. +2004-08-21,41.6302778,-87.8538889,Orland Park,IL,formation,600,August 21 (Chicago, IL) Identified Objects +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,fireball,900,3 Bright Red objects spotted in the atmosphere moving and blinking with NO SOUND! +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,formation,2700,I was at an outdoor wedding, and a person noticed the lights,(three red lights in this triangular formation),we thought it might have b +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,light,1800,Three blinking lights that do not appear to be airplanes +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,light,2700,3 red lights hovering in tinley park in odd shapes that came together as one and flew away. +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,light,900,three red lights hovering through the sky +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,oval,1800,4 red lights that were not airplane or from laser +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,triangle,3600,Leslie Kean's (see face book) UFOs is THE book ; however, it does not have a reference to the Tinley Park Triangle . +2004-08-21,42.9955556,-71.4552778,Manchester,NH,light,1325,Four yellowish lights moving Zeppelin-like across the south Manchester, NH skies, disappearing after 45 minutes. +2004-08-21,43.073055600000004,-89.4011111,Madison,WI,light,900,Four bright white lights in a row, descended sharply and diminished to a flashlight size and winked out and hit ground. +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,light,2100,3 Red Lights in Tinley Park, IL SSE Night Sky Hovering with 1 moving towards the others. +2004-08-21,41.4958333,-87.8486111,Frankfort,IL,unknown,1800,5 red lights in a row vertically drifting slowly eastward. +2004-08-21,41.4663889,-73.4861111,New Fairfield,CT,triangle,180,Triangular grouping at high altitude slowly moves and vanishes ((U.S. Navy "triplet" of satellites??)) +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,circle,1800,3 bright red lights that changed formation and then disappeared. +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,circle,900,flashing red lights, not ANYTHING like an airplane. +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,formation,1200,3 red lights changing formation +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,light,1200,3 bright red lights just hovering in sky, changing formation, before disappering +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,triangle,3600,Red light triangle, as well as blue lights, that were harder to see, given that starts appear white... +2004-08-21,43.1008333,-75.2330556,Utica,NY,triangle,45,triangle shape over utica ny aug 2004 +2004-08-21,40.4975,-74.4888889,Somerset,NJ,formation,120,Backwards triangular formation moving from east to west, with the back point breaking off and going south. +2004-08-21,42.2136111,-74.2191667,Hunter,NY,triangle,1.3,perfect triangle very dark and dim white lights on each point of the triangle. +2004-08-21,41.5038889,-87.7130556,Matteson,IL,circle,600,Multiple red lights. +2004-08-21,41.6302778,-87.8538889,Orland Park,IL,light,1200,3 solid red lights moving slowly across the sky in a triangular formation. 1 light stopped the other 2 rotated around it to form and eq +2004-08-21,41.6302778,-87.8538889,Orland Park,IL,light,720,3 bright red lights seen in the sky. +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,circle,1800,3 glowing lights in sky +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,formation,900,3 red lights in eastern sky. First in triangular formation and then slowly moving into a verticle line. Disappeared one by one. Mana +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,light,1200,I saw a red blinking light for about 20 min. +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,light,1800,3 bright red lights hovering for 30 minutes +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,light,1800,3 red lights +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,light,600,In the clear night sky me and my family were contacted by other family to see red lights in sky. THey were huge and they were red. At f +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,light,900,bright red lights moving slowly across the sky +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,light,900,there were three red lights that started out in a horizontal line and slowly moved to a vertical line by Each light flashing then movin +2004-08-21,37.3394444,-121.8938889,San Jose,CA,formation,30,High altitude, three craft formation travelling southeasterly above San Jose, CA, August 21 at 23:15 ((U. S. Navy NOSS satellites??)) +2004-08-21,37.6459,-93.0942,Buffalo,MO,circle,10800,After watching the one object dash in the sky we noticed many others further in the distance communicating with one another. +2004-08-21,41.6027778,-87.7438889,Oak Forest,IL,changing,1500,there were red lights which slowly moved over my location, which then "winked out" one by one. +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,triangle,600,I saw three bright red lights high up in the sky in the shape of a triangle that eventually aligned into a line and slowly disappeared. +2004-08-21,41.5733333,-87.7844444,Tinley Park,IL,unknown,1800,3 Red Lights over Tinley Park, IL 8/21/04 +2005-08-21,37.6938889,-85.8591667,Elizabethtown,KY,triangle,60,Took the dog to the bathroom around 3am. Was standing on the deck while the dog did its business. She started barking and looking behin +2005-08-21,42.2711111,-89.0938889,Rockford,IL,other,180,not sure if it was a millitary aircraft but the craft went across the sky in about 3 min I would say the craft was at least 30ꯠft i +2005-08-21,47.4830556,-122.2158333,Renton,WA,light,600,5 lights in the shape of Big Dipper +2005-08-21,32.7152778,-117.1563889,San Diego,CA,light,180,Flashing orange light splits into two and shoots in different directions before flickering out +2005-08-21,42.3636111,-87.8447222,Waukegan,IL,flash,900,Aflashing light with no shape moving in different directions in space at speeds that no aircraft can do +2005-08-21,39.4666667,-87.4138889,Terre Haute,IN,fireball,180,As they got closer, they became a brighter orange. When they met, there was a huge burst of orange, like a fire in the sky. +2005-08-21,35.1494444,-90.0488889,Memphis,TN,flash,300,WHITE HOVERING WITH RED AND GREEN FLASHING LIGHTS. +2006-08-21,40.7141667,-74.0063889,New York City (Glandale/Queens),NY,flash,1,SHOOTING FLASHBALL appears from nowhere and disappears. +2006-08-21,33.1975,-96.615,Mckinney,TX,circle,600,look to the sky seen an object that seem to be falling but then it it straightend out and look to be in control of what it was d +2006-08-21,42.3222222,-83.1763889,Dearborn,MI,cigar,600,cigar shaped metallic craft hovered for approximately 10 minutes then shot straight up out of sight. +2006-08-21,34.698055600000004,-118.1358333,Lancaster,CA,sphere,3,Bright "star" appeared out of nowhere, maintained it's position for 3 seconds, and then "zoomed-out" of sight +2006-08-21,42.5636111,-84.8358333,Charlotte,MI,light,60,two balls of light, the second was only 40 to 50 yard away, the experience gave us a feeling of joy inside. +2006-08-21,33.6469444,-117.6883333,Lake Forest,CA,oval,600,The craft appeared changed to red dissappeared reappeared flew to the middle then vanished. +2006-08-21,45.4711111,-89.7297222,Tomahawk,WI,light,3600,Triangular motion, flashing light alternating colors, staying in one basic location for more than hour. ((NUFORC Note: Sirius?? PD)) +2006-08-21,41.6680556,-76.2622222,Wyalusing,PA,triangle,600,Silent, slow, flying aircraft +2007-08-21,39.9347222,-75.0311111,Cherry Hill,NJ,unknown,5,Bright flash and machine-like noise late night in Cherry Hill, NJ +2007-08-21,37.8361111,-87.59,Henderson,KY,diamond,600,it was 9 15 in the morning snd i looked outside the window of my high school and 2 other students saw it. and then it quickly dissipear +2007-08-21,39.7391667,-104.9841667,Denver,CO,rectangle,90,Large white rectangular UFO over Denver +2007-08-21,39.7391667,-104.9841667,Denver,CO,cigar,60,Shiny metallic cigar shape (probably saucer) object travelling above Denver metro area. +2007-08-21,41.6005556,-93.6088889,Des Moines,IA,triangle,900,WHILE I WAS GOING TO AN INDIAN RESTAURANT I SAW A TRIANGLER SHAPED OBJECT. +2007-08-21,35.2269444,-80.8433333,Charlotte,NC,disk,600,Disk-Shaped Objects w/ Red and White Lights Over Incoming Flight Path of Charlotte-Douglas International Airport +2007-08-21,46.1383333,-122.9369444,Longview,WA,light,60,Red and green lights hovering over I-5, south of Longview, WA +2007-08-21,36.0652778,-119.0158333,Porterville,CA,triangle,60,Triangle shaped Bright Red Strobes Observed +2007-08-21,21.3155556,-158.0072222,Ewa Beach,HI,fireball,3,Spherical high altitude explosion and flash of light over Ewa Beach +2008-08-21,39.3641667,-74.4233333,Atlantic City,NJ,flash,10,I witnessed a very small rod with two flashing lights going off only a few inches from my head. +2008-08-21,37.6391667,-120.9958333,Modesto,CA,unknown,1800,This bright colorful light was spinning it seemed like far away in the north east sky. ((NUFORC Note: Probable star. PD)) +2008-08-21,44.9444444,-93.0930556,St. Paul,MN,light,600,large white bright light moving through night time sky +2008-08-21,41.49,-71.3133333,Newport,RI,disk,30,((HOAX)) flying saucer speeds by overhead while bystanders are appaled while the traind investigator me is not surprised. +2008-08-21,39.7391667,-104.9841667,Denver,CO,disk,120,Saucer shaped craft seen flying over downtown Denver from about 1-2 minutes. +2008-08-21,37.775,-122.4183333,San Francisco,CA,disk,120,Metallic saucer-like object seen over San Francisco Beach +2008-08-21,42.8863889,-78.8786111,Buffalo,NY,circle,1800,UFO seen through Dobsonian scope +2008-08-21,32.7666667,-96.5988889,Mesquite,TX,sphere,420,Close call for aircraft on approach into Dallas. +2009-08-21,32.4486111,-99.7327778,Abilene,TX,triangle,60,Just a fairly quick fly by from some craft Ive never seen before. +2009-08-21,39.5297222,-119.8127778,Reno,NV,circle,30,LARGE CIRCULAR DISK APPEARS FROM NOWHERE, THEN MOVES EAST AND FLAMES OUT +2009-08-21,34.2694444,-118.7805556,Simi Valley,CA,triangle,30,Triangle shaped craft with three bright lights seen over Simi Valley,Ca. +2009-08-21,41.4488889,-82.7080556,Sandusky,OH,teardrop,20,Large airplane-size metallic object over Lake Erie that "disintegrated" before my eyes on clear sunny day +2009-08-21,40.6575,-73.5836111,Freeport,NY,diamond,4,I was on a train platform waiting for a train. I was looking at the clouds, as I looked up I saw the three small white / silver diamond +2009-08-21,37.2011111,-87.1788889,Greenville,KY,flash,1200,Flashes of lights from what looks like stars. ((NUFORC Note: "Twinkling" stars?? PD)) +2009-08-21,42.5294444,-83.7802778,Brighton,MI,fireball,780,7 orange orbs in night sky below cloudline! +2009-08-21,40.7141667,-74.0063889,New York City (Brooklyn),NY,fireball,600,hugh fireball shape spinning on a clear sky +2009-08-21,41.4277778,-78.5611111,St. Marys,PA,fireball,1800,One fireball hovering in sky +2009-08-21,40.4166667,-86.8752778,Lafayette,IN,sphere,120,Orange Spheres Over Lafayette +2009-08-21,41.0886111,-74.1441667,Mahwah,NJ,fireball,5,Green fireball heading towards the earth +2009-08-21,33.5777778,-101.8547222,Lubbock,TX,other,180,UFO LUBBOCK TX +2009-08-21,46.8266667,-100.8891667,Mandan,ND,light,300,pulsating light moving south to north +2010-08-21,38.4783333,-107.8755556,Montrose,CO,sphere,300,((HOAX??)) Chasing UFO's +2010-08-21,27.875,-82.8513889,Indian Rocks Beach,FL,triangle,45,3 rust red bulbs of light in triangle form cruising just off the beach, Indian Rocks beach Florida. Aug/2010 +2010-08-21,40.3916667,-111.85,Lehi,UT,cigar,30,((HOAX??)) We saw a 3 light saucer pass by and the saw a two saucer pass over and split apart and disappear. +2010-08-21,40.1738889,-80.2463889,Washington (Near),PA,unknown,45,Large white craft seen on 1-70W during morning traffic +2010-08-21,34.1705556,-118.8366667,Thousand Oaks,CA,oval,1800,Bright white oval objects caught on camera in Thousand Oaks, CA during daylight... +2010-08-21,38.4405556,-122.7133333,Santa Rosa,CA,cylinder,5,A low flying cylinder shaped obect with a propeller fan looking device at the end about 150 above ground. +2010-08-21,27.9833333,-82.2758333,Seffner,FL,circle,120,Round white object travelling against the wind +2010-08-21,44.8408333,-93.2980556,Bloomington,MN,sphere,120,At approximately 5:45 pm on Saturday August 21st. I went for a bike ride. I looked up into the sky as I heard a jet over head. I saw th +2010-08-21,39.4561111,-77.9641667,Martinsburg,WV,light,10800,Circular light rotating ccw in the sky above the clouds from 9:00 until 12:00. ((NUFORC Note: Possible advertising light? PD)) +2010-08-21,41.3572222,-88.4211111,Morris,IL,fireball,45,Four fireballs moving rapidly south at 9:45pm CST west of Chicago +2010-08-21,40.7072222,-73.6763889,Franklin Square,NY,fireball,1200,multiple fireballs in sky over long island +2010-08-21,38.6772222,-87.5286111,Vincennes,IN,unknown,180,Low flying silent object with pulsating lights, possibly landing at airport +2010-08-21,32.7833333,-96.8,Dallas,TX,fireball,5,APPROXIMATE 5 SECOND GREENISH FLAME LIKE BURST SEEN DESCENDING @ A DOWNWARD ANGLE TO THE SOUTHWEST OF DALLAS +2010-08-21,39.0083333,-75.5783333,Felton,DE,changing,60,Coming from upstate new york we left here at 5:30pm. Tryed to get into the first entrance of the camping ground around 11:20pm. It was +2011-08-21,43.0591667,-77.6125,Henrietta,NY,oval,60,On the night of August 21st 2010, roughly around 1:30 am heading home after work. I saw a bronze sphere in the eastern sky. I pulled up +2011-08-21,39.7391667,-104.9841667,Denver,CO,cylinder,1200,Cylinder, Spherical, and disc shaped craft making rapid to slow impossible movements, and vanishing. +2011-08-21,37.9319444,-121.6947222,Brentwood,CA,formation,300,Two different white light objects moving in tandem in Brentwood, CA +2011-08-21,32.5630556,-97.1413889,Mansfield,TX,cylinder,60,Cylindrical object seen in Tarrant County TX +2011-08-21,42.2625,-71.8027778,Worcester,MA,other,600,I was in the parking lot of a fast food restaurant and noticed an object approximately two miles away traveling from south west to nor +2011-08-21,33.426944399999996,-117.6111111,San Clemente,CA,teardrop,5,1 craft hovering over shore. Clear day 1/2 mile away. Lost track of it behind some trees. +2011-08-21,32.7152778,-117.1563889,San Diego,CA,circle,1200,UFO sphere chrome type in Otay Lakes in Eastlake San Diego +2011-08-21,37.9975,-121.7113889,Oakley,CA,triangle,900,My friend and I were driving south on Main St in Oakley CA it was 8:25pm and we saw two flying objects in the sky. +2011-08-21,37.9688889,-121.6669444,Knightsen,CA,formation,600,Knightsen ca. Weird lights in the sky august 21st 2011 +2011-08-21,33.4936111,-117.1475,Temecula,CA,sphere,60,round orange sphere over the temecula valley +2011-08-21,37.9086111,-121.5991667,Discovery Bay,CA,triangle,1800,Six bright lights in the sky off of HWY 4 were flying with no noise in Discovery Bay camming from the west to east norht dissapears +2011-08-21,35.1111111,-81.2266667,Clover,SC,circle,180,Large circular flying object that appeared to be on fire. +2011-08-21,47.1302778,-119.2769444,Moses Lake,WA,fireball,1,Not the typical meteor burning through the atmosphere. A huge fireball with a short tail. +2011-08-21,34.8405556,-85.0427778,Tunnel Hill,GA,triangle,60,Two large unlit triangular objects passed overhead from horizon to horizon in about 30 seconds. +2012-08-21,41.9761111,-72.5922222,Enfield,CT,circle,300,Near fields and farms when we saw a circular/oval bright light it was immense. It started to land in the woods. +2012-08-21,42.05,-72.5833333,Longmeadow,MA,sphere,120,White ball, moves, navigates in sky , then leaves .. +2012-08-21,47.4958333,-121.7855556,North Bend,WA,egg,9000,Red/White Flashing Craft scene multiple nights in the skies over North Bend, Wa +2012-08-21,44.5191667,-88.0197222,Green Bay,WI,triangle,600,30+ lights traveled low and silent over the city and a silent triangle shape with no belly strobe flew directly overhead. +2012-08-21,44.5191667,-88.0197222,Green Bay,WI,formation,600,Observed 1 large unidentified craft and a series of 8 - 10 bright orange balls travelling evenly and slowly across the sky +2012-08-21,44.5191667,-88.0197222,Green Bay,WI,oval,600,UFO's over Green Bay +2012-08-21,44.5191667,-88.0197222,Green Bay,WI,unknown,1320,36 orange lights seen over Green Bay by seven in parking lot. Objects heading south to north in the western sky. +2012-08-21,42.2411111,-83.6130556,Ypsilanti,MI,disk,120,6 bright yellowish orange objects sighted, 4 disks, 1 rectangular box, and 1 line increasing in size downward,then vanished. +2012-08-21,40.1672222,-105.1013889,Longmont,CO,teardrop,2,Tear drop shaped light descending over Longmont, Colorado August 21, 2012. +2012-08-21,40.9366667,-87.1508333,Rensselaer,IN,unknown,1800,Three lights, one of them blinking. Moves north, then southeast, east, west, and every which way. +2012-08-21,40.2969444,-111.6938889,Orem,UT,light,2,Green orb of light moving in low horizontal trajectory. +2012-08-21,37.7138889,-97.1361111,Andover,KS,changing,1200,Uknown craft sighted in kansas, changed shape and color. +2012-08-21,46.2858333,-119.2833333,Richland,WA,formation,300,3 red flashing lights in a evenly spaced linear formation heading east, always keeping an even formation like an escort +2012-08-21,46.2113889,-119.1361111,Kennewick,WA,other,30,Long line of lights seen above Thompson Hill in Kennewick, Washington +2012-08-21,46.2113889,-119.1361111,Kennewick,WA,triangle,600,Massive triangular shape craft moving silently across clear night sky. +2012-08-21,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,240,Orange fireball going out of Myrtle beach into the sky +2012-08-21,39.9611111,-82.9988889,Columbus,OH,fireball,300,Teardrop fireball crosses path of plane. +2012-08-21,45.6388889,-122.6602778,Vancouver,WA,circle,15,Orb in the night sky. +2012-08-21,46.6022222,-120.5047222,Yakima,WA,disk,40,In total five objects in flight four small possibly air plain size other one large seemed to hover with flashing lights +2012-08-21,36.1866667,-94.1286111,Springdale,AR,light,600,Erratic lights. +2013-08-21,32.2344444,-97.755,Glen Rose,TX,circle,300,Strange bright orb that looks like a second sun in the sky, but lower than the sun. +2013-08-21,46.2113889,-119.1361111,Kennewick,WA,cigar,60,White cigar shaped object seen moving from east to west +2013-08-21,38.8905556,-90.1841667,Alton,IL,fireball,180,15 objects over Alton, Il. +2013-08-21,43.3036111,-70.7338889,North Berwick,ME,other,600,9 dark orange orbs floating in eastern sky, in formation. +2013-08-21,37.9363889,-90.7877778,Potosi,MO,cylinder,300,I don't know how to really explain this but i will give it a try,, i was just finishing up cutting my lawn when i sit down as i do ever +2013-08-21,41.1305556,-85.1288889,Fort Wayne,IN,fireball,600,Glowing object in sky, +2013-08-21,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,15,Brooklyn--8/21/13--Moving bright light vanishes. +2013-08-21,40.7141667,-74.0063889,New York,NY,rectangle,40,Red and green lights on something moving in one direction, stopped, hovered, changed directions, stopped again, then flew out of sight. +2013-08-21,41.9266667,-73.9130556,Rhinebeck,NY,fireball,1080,6 traveling campfires going NW to NE the night of the Full Moon 8/21. +2013-08-21,28.1875,-82.7397222,Holiday,FL,light,900,UFO with bright red light on the right and bright green light zooming from point to point and then hovering. +2013-08-21,40.9227778,-81.0191667,Sebring,OH,triangle,7200,We saw multiple triangles and a few disks. Some had flashing lights, some had bright solid lights. One had red arrows that blinked an +2013-08-21,38.1494444,-79.0719444,Staunton,VA,light,633,4 lights traveling in a clockwise circle coming together at a central point,over and over again. (NUFORC Note: Adv. lights?? PD)) +2013-08-21,40.7141667,-74.0063889,New York City (Brooklyn),NY,sphere,300,Orange Orb does a doubletake. +2013-08-21,40.9866667,-75.195,Stroudsburg,PA,light,2,I was taking an evening walk and talking on my phone for better reception for my cell phone. I was looking west/northwest following the +1965-08-02,40.4405556,-79.9961111,Pittsburgh,PA,oval,20,Transluscent Orb (Orange/Yellow/White with a clear light in center) streaked above my house from West to East +1972-08-02,36.7069444,-97.0852778,Ponca City,OK,light,900,Four lights like a radio or TV tower sits sationary for awhile then moves horizontil, lights remain at an equal distance apart, like th +1972-08-02,32.2216667,-110.9258333,Tucson,AZ,cylinder,300,A bright steadily flashing light traveled across the dark sky then turned its direction toward me and hovered about 25' in front of me +1978-08-02,43.3813889,-112.1225,Shelley,ID,light,10,Stationary bright light over foothills stays still for 10 seconds and then flies out of sight in less than a second. +1986-08-02,37.9608333,-120.2363889,Tuolumne,CA,disk,21600,Disk shaped, red lights circling the outside, flying on the treeline in the high country in the Sierra Nevada +1988-08-02,32.3413889,-90.3216667,Clinton,MS,circle,300,A colorful ring of lights hovering over someones house, then it moved away making no sound over the trees... +1996-08-02,39.9555556,-86.0138889,Fishers,IN,circle,10,ADDENDUM #2: Stationary circurlar object tilts up on it's axis,pulses white inside,disappears into slit opening hole in the sky +1996-08-02,39.9555556,-86.0138889,Fishers,IN,circle,10,I was raised and served in the military my first 20 yrs. I was a police officer (Elected Sheriff)for a four year term of office.I was a +1997-08-02,41.5622222,-72.6511111,Middletown,CT,disk,30,I got out of bed at 4:00 am to use the bathroom.As i returned i looke out the window up at the stars.I noticed a star moving very slow, +1997-08-02,36.8766667,-89.5877778,Sikeston,MO,light,2,a green light appeared as myself and two nephews were driving home. at first i thought it was an airplane but then it started too have +1997-08-02,44.6366667,-123.1047222,Albany (About 10 Minutes From),OR,oval,7,Oval shaped silver object sighted in the sky at 11:45am off of interstate 5. +1997-08-02,43.6630556,-116.6863889,Caldwell,ID,disk,1200,I work at a large potato pracessing plant plant 2 miles west of Caldwell .It was a clear bright sunny day hot 90 - 100 degress . I was +1997-08-02,38.7908333,-121.2347222,Rocklin,CA,other,10,One object was obviously pursuing another at very high altitude +1998-08-02,37.5536111,-77.4605556,Richmond,VA,sphere,120,Sphere...silver...shiny....spotted in western Henrico County (Richmond, VA) +1999-08-02,37.8591667,-122.4841667,Sausalito,CA,circle,120,approx.6 objects flying in formation. manevering in relationship to eachother breaking formation acelarateing then rejoining formation +1999-08-02,34.0983333,-118.3258333,Hollywood,CA,other,360,Friends and self were at a high point in the hills of Hollywood, when strange beams of light flashed the parking area of a lookout poin +1999-08-02,38.6272222,-90.1977778,St. Louis,MO,circle,180,MY WIFE AND I WERE ON OUR WAY TO THE DRUG STORE TO PICK UP MEDICINE WHEN WE CAME TO THE INTERSEGTION OF KINGSHIGHWAY AND ARSENAL, THERE +1999-08-02,47.3225,-122.3113889,Federal Way,WA,unknown,900,i thought it was ballons floating by i pointed it out to my niece &nephew object then became stationary.iwonder what it was because onl +1999-08-02,33.3277778,-92.2225,Marsden (See Below),AR,flash,5,falling object like roman candle +1999-08-02,46.8902778,-124.1027778,Westport,WA,light,90,A very bight light entering the atmosphere. Turned to level flight then it traveled at level flight to a point in the sky and stopped. +2000-08-02,33.9102778,-78.1180556,Long Beach (Southport),NC,light,5400,6 of us saw three bright lights appearing next to each other for about 1.5 hours, several crafts appeared to be searching for it. +2001-08-02,42.3427778,-87.9980556,Wildwood,IL,sphere,900,2nd sighting in 6 months Wildwood/Grayslake area Illinois +2001-08-02,44.9430556,-123.0338889,Salem,OR,light,300,red light in southern sky +2001-08-02,36.573055600000004,-79.0030556,Alton,VA,cigar,10,On my way to work on Thursday 8-2-01 I stopped at a local gas station. As I left I looked to my left before pulling out and saw a lar +2001-08-02,37.9886111,-84.4777778,Lexington,KY,unknown,120,It was a video shown on WTVQ Channel 36 in Lexington, KY. +2001-08-02,37.9886111,-84.4777778,Lexington,KY,other,1800,It was on the news WTVQ 36 ABC!!! +2001-08-02,32.9027778,-96.5636111,Rowlett,TX,rectangle,180,Black rectangular quiet no lights flew right over us. +2001-08-02,38.8402778,-97.6111111,Salina,KS,fireball,10,Salina Kansas Meteor ? +2001-08-02,29.1869444,-82.1402778,Ocala,FL,circle,2,A bright blue ring of light swooping in and vanishing with a trail of blue left behind +2001-08-02,45.5230556,-122.9886111,Hillsboro,OR,oval,180,Orange satillite enlarges 5 times its size as it flairs to white-blue, then back to original size and color . +2001-08-02,45.5236111,-122.675,Portland,OR,light,30,light bright to dim and gone +2002-08-02,41.3136111,-81.7247222,North Royalton,OH,diamond,1200,diamond /cylinder shaped craft witnessed by three and made belivers for life. +2002-08-02,47.6063889,-122.3308333,Seattle,WA,egg,300,High, fast moving whiteish shape heading north +2002-08-02,44.3836111,-89.8172222,Wisconsin Rapids,WI,triangle,10,Large,low flying triangle +2002-08-02,45.5236111,-122.675,Portland,OR,unknown,600,Two stationary lights, side by side, above the clouds and Willamette River. +2002-08-02,34.9322222,-86.5719444,Hazel Green,AL,triangle,300,Triangular shap goes through the eye of a storm +2002-08-02,36.175,-115.1363889,Las Vegas,NV,other,120,On my patio i saw a square flying in the sky. it was moving from the south to the north. IT WAS ON THE WEST SIDE OF TOWN.it looked as b +2002-08-02,34.2163889,-119.0366667,Camarillo,CA,other,15,Unbelievable craft observed at low altitude over Camarillo, CA. +2002-08-02,47.4066667,-122.0375,Maple Valley,WA,light,120,Light flashed oddly and changed direction twice. +2002-08-02,35.7233333,-79.4625,Siler City (Past, On 421),NC,triangle,120,two V shaped craft passing over road, hovering +2002-08-02,35.2225,-97.4391667,Norman,OK,light,2,Bright, spherical, white light seen over apartment complex. +2002-08-02,36.0397222,-114.9811111,Henderson,NV,other,600,On Augist 2, 2002, at 11:30 PM I saw a bright light illuminating my backyard, which then turned into two square intersecting boxes with +2002-08-02,44.5722222,-91.2272222,Osseo,WI,disk,1800,spinning craft with green aura circling above. +2003-08-02,36.0838889,-87.7947222,Waverly,TN,other,1200,the greatest light show of my life!!! +2003-08-02,36.595,-82.1888889,Bristol,TN,disk,900,Videotaped disc shaped craft in broad daylight +2003-08-02,48.3972222,-102.9377778,Tioga,ND,disk,120,5 of us saw it on top of a roof, looks like a star and moves faster than an airplane....then vanishes. +2003-08-02,48.1183333,-123.4294444,Port Angeles,WA,formation,8,At 11:30 PM on August 2, my friend and I saw four bright lights moving low and rapidly from N to South, flying in formation. +2004-08-02,28.5380556,-81.3794444,Orlando,FL,light,600,Saw a light slowly lift straight up from behind the trees, and then head South. The light kept increasing and decreasing in brightness +2004-08-02,45.5236111,-122.675,Portland,OR,unknown,180,Small craft, rapid movement and flight path, no sound. +2004-08-02,41.1616667,-112.0255556,Roy,UT,light,0.5,UFO fast lights seen in Roy, UT +2004-08-02,42.1713889,-77.9788889,Scio,NY,oval,20,The object floated for a matter of secounds then took off very fast. +2004-08-02,38.4022222,-122.8227778,Sebastopol,CA,triangle,900,3 lights, bright red, orange, faded white in color in a close, touching, triangle formation, slight cw/ccw rotation. +2004-08-03,56.4708333,-132.3766667,Wrangell,AK,circle,432000,We saw a Bright WHITE CIRCLE suddenly appear, and then dissappear. +2005-08-02,29.3011111,-94.7975,Galveston,TX,circle,300,Large metallic object hovering over galveston bay +2005-08-02,38.9780556,-122.8383333,Kelseyville,CA,other,300,I and my BF were sky watching last night and at around 12 midnight i saw a bright red blinking light to the right of me. I went to my s +2005-08-02,40.9397222,-123.6302778,Willow Creek,CA,light,120,Bright lights that are stationary and that move and then seem to disappear. +2005-08-02,42.2458333,-122.7875,Talent,OR,triangle,1200,witnessed an unidentified flying object that moved in a motion not capable of conventional aircraft ((NUFORC Note: Possible star??PD)) +2005-08-02,35.4427778,-84.5930556,Athens,TN,cigar,10,I had never taken UFO sightings seriously, but after seeing the unexplainable, I have no choice. +2005-08-02,42.7652778,-71.4680556,Nashua,NH,other,1500,Triangular craft terrorizes radio waves +2005-08-02,42.9813889,-70.9483333,Exeter,NH,cigar,240,cigar shaped, silver craft +2005-08-02,41.6986111,-88.0683333,Bolingbrook,IL,light,900,MY NEPHEW WHO IS 13 AND MYSELF WHO IS 35 SAW 1 LIGHT, APPEARANCE THAT LIKE ONE OF A STAR BUT MOVING. THREE DIFFERENT FIVE MINUTE TIME I +2006-08-02,41.7,-70.0277778,East Harwich,MA,formation,10,7 orange/red v shaped objects moving wsw - steady movement +2006-08-02,32.3511111,-95.3008333,Tyler,TX,unknown,3600,Red, white and b lue lighted object. ((NUFORC Note: Possible sighting of Sirius?? PD)) +2006-08-02,35.7719444,-87.7838889,Lobelville,TN,light,1800,We saw a small light in the sky; it seemed much farther away than any airplane, and it traveled fast. +2006-08-02,42.225,-121.7805556,Klamath Falls,OR,flash,180,Bright flashes, high pitched sound. +2006-08-02,32.8544444,-79.975,North Charleston,SC,other,2700,Object stood still in Charleston sky +2006-08-02,43.0972222,-89.5041667,Middleton,WI,chevron,300,Three lights in a row moved over Madison, WI. +2006-08-02,40.4166667,-86.8752778,Lafayette,IN,unknown,240,strange lights at break +2006-08-02,25.7738889,-80.1938889,Miami,FL,light,15,FAST MOVING LIGHT STOPPED COMPLETLY IN THE AIR FOR 5 SECONDS +2007-08-02,47.6063889,-122.3308333,Seattle,WA,circle,1800,Saw same thing thake place in Seattle like reported in Arizona 1997 but dooring daylight hours. +2007-08-02,34.7391667,-112.0091667,Cottonwood,AZ,circle,120,bright white light +2007-08-02,35.1083333,-77.0444444,New Bern,NC,other,600,SEVERAL SMALL CRAFT WITH VERY LARGE WING SHAPED CRAFT THAT MADE NO NOISE +2007-08-02,35.7111111,-78.6144444,Garner,NC,light,60,Bright white light moves across sky and stops suddenly and reverses +2007-08-02,47.6741667,-122.1202778,Redmond,WA,fireball,15,UFO Sighting +2007-08-02,38.2972222,-122.2844444,Napa,CA,light,120,UFO over Lake Berryessa. +2007-08-02,38.8461111,-77.3066667,Fairfax County,VA,circle,30,((HOAX??)) It was flying over ahead of us. At a fast paced speed. +2008-08-02,45.8958333,-119.4902778,Irrigon,OR,circle,10,The UFO sighted in Irrigon, Oregon was and a round object that slowly came done as if it were landing. This UFO was a very bright green +2008-08-02,45.9175,-119.3413889,Umatilla,OR,fireball,10,Huge fireball seen from NE Oregon town of Umatilla. +2008-08-02,33.9491667,-83.5347222,Bogart,GA,light,30,Two men see very bright light from sky, and then another flying object afterwards +2008-08-02,45.3575,-122.6055556,Oregon City,OR,other,360,At 1:30am a very large craft approaches Portland, OR airport from the south and stops near Oregon City. +2008-08-02,37.9577778,-121.2897222,Stockton,CA,fireball,6,On 08/02/2008 at approximately 2AM, my passenger and I witnessed a large burning object falling SW near Cal State Univ. - Stockton +2008-08-02,26.1219444,-80.1436111,Ft. Lauderdale,FL,light,120,Bright light circles north star and then strangley moves away +2008-08-02,37.9841667,-120.3811111,Sonora,CA,circle,30,It was a Metallic ball in the sky that moved at very high speed's +2008-08-02,42.3222222,-83.1763889,Dearborn,MI,oval,1200,Goggle Map-Street View: 24222 New York Dearborn MI- North West Sky Location +2008-08-02,36.1538889,-95.9925,Tulsa,OK,oval,10,August, 2nd 11:45 pm. I saw a oval -teardrop shaped UFO up close with binoculars,.ASTOUNDING! I am still perplexed..... +2008-08-02,36.1538889,-95.9925,Tulsa,OK,teardrop,10,While laying down studying stars with binoculars I saw a ovel-teardrop shaped craft up close with bare eye then with binoculars +2008-08-02,42.0072222,-87.9402778,Elk Grove,IL,chevron,120,I saw a chevron shaped metallic craft. +2008-08-02,42.8141667,-73.94,Schenectady,NY,light,30,Bright Light over Schenectady. +2008-08-02,38.8902778,-77.0844444,Arlington,VA,oval,300,black object appeared in the arlington sky after a mysterious thunderstorm. lightning still exists. +2008-08-02,26.1219444,-80.1436111,Ft. Lauderdale,FL,circle,12,Star Like Object..mimics the north star..and shoots out into atmosphere. +2008-08-02,28.9002778,-81.2638889,Deltona,FL,fireball,180,Orange flickering fireball +2008-08-02,33.9533333,-117.3952778,Riverside,CA,light,60,Bright flash followed by glowing, blinking object +2008-08-02,44.0247222,-88.5425,Oshkosh,WI,fireball,180,Flame over Oshkosh +2008-08-02,46.6622222,-122.9627778,Chehalis,WA,unknown,30,Wobbly, starburst shape object moving across the sky +2008-08-02,33.5805556,-112.2366667,Peoria,AZ,fireball,5,Flash and streak of green shoot across the night sky. +2008-08-02,42.3055556,-71.525,Southborough,MA,triangle,30,Spotted traveling along main road about 5 feet off of pavement, passed by my car and then disappeared +2008-08-02,31.135,-99.3347222,Brady,TX,other,900,Witnessed, two gray objects flying without lights and sound. +2008-08-02,33.9533333,-117.3952778,Riverside,CA,flash,3,Large flash, bright streak in the sky +2008-08-02,40.6386111,-73.6405556,Oceanside,NY,oval,4,Witnessed unlit oval craft. +2008-08-02,39.2775,-74.575,Ocean City,NJ,circle,3,Round object flying from south extremely quickly, but evenly. Seemed to be hazy and, therefore, was blurred slightly. Just flew ap +2008-08-02,48.4213889,-122.3327778,Mount Vernon,WA,unknown,135,High speed UFO possible sighting. +2008-08-02,40.5677778,-84.1936111,Wapakoneta,OH,sphere,90,sphere with orange flame moving across sky. +2008-08-02,30.6316667,-81.6066667,Yulee,FL,light,300,Flashing lights +2008-08-02,36.0397222,-114.9811111,Henderson,NV,changing,3600,Photos I took of UFO changing shapes and making very abrupt movements +2009-08-02,42.9469444,-76.4294444,Skaneateles,NY,circle,60,Circular object with white lights and spot light. Was about 10 feet in diameter, and 10-20 ft off ground +2009-08-02,34.1425,-118.2541667,Glendale,CA,unknown,720,I went out to throw out the trash and looked up at the sky to look at the moon and noticed a glowing object still. The object was south +2009-08-02,42.9633333,-85.6680556,Grand Rapids,MI,circle,2,Uniform circular pattern of lights moving very fast across the sky several thousand feet high. +2010-08-02,47.8763889,-95.0166667,Red Lake,MN,diamond,4800,spinning object with red blue lights over red lake +2010-08-02,29.4238889,-98.4933333,San Antonio,TX,changing,3600,is it a comet coming towards earth? +2010-08-02,33.6680556,-117.3263889,Lake Elsinore,CA,cigar,120,Lake Elsinore sighting 8/2/10 0600 +2010-08-02,37.2152778,-93.2980556,Springfield,MO,flash,780,tuesday eve at 945 pm my wife and I witnessed a ufo in the west sky.bright changed colors then slowly faded and blinked then faded out +2011-08-02,46.2113889,-119.1361111,Kennewick,WA,light,60,A very bright dot of moving red light, then a flash like an explosion far up in the western sky. +2011-08-02,33.9202778,-80.3416667,Sumter,SC,triangle,435,An unknown object appeared in the hour of darkness +2011-08-02,35.1494444,-90.0488889,Memphis,TN,cylinder,420,VERY LOW OBJECT w/ LIGHTS, sounded like helicopter, but WAS NOT! ((NUFORC Note: Student report. One of several. PD)) +2011-08-02,35.0844444,-106.6505556,Albuquerque,NM,circle,60,Green, glowing circle being chased through the albuquerque sky by helicopter +2011-08-02,42.1033333,-76.2625,Owego,NY,triangle,180,Triangular craft spotted with 3 white lights on corners, hovered without sound. +2011-08-02,40.8125,-76.1419444,Mahanoy City,PA,fireball,900,Orange fireballs appearing and disappearing. +2011-08-02,38.7908333,-121.2347222,Rocklin,CA,rectangle,10,Small dot of light grew rapidly into a brilliant rectangle and then vanished. +2011-08-02,32.8572222,-116.9213889,Lakeside,CA,circle,600,Orange circle of light above East County +2011-08-02,44.5877778,-83.3163889,Greenbush,MI,light,3600,Orange globes hovering over Greenbush Michigan +2011-08-02,38.9905556,-77.0263889,Silver Spring,MD,sphere,3600,Red-Orange "Fireballs" in the Night sky +2011-08-02,33.9533333,-117.3952778,Riverside,CA,light,30,Two bright lights overhead, travelling S to N +2011-08-02,39.0169444,-94.2813889,Blue Springs,MO,sphere,45,Orange sphere burning at the center appears over my house +2011-08-02,33.79,-118.2969444,Harbor City,CA,chevron,15,Trapezoid shaped object flew silently overhead from N to S and ten minutes later a flying wing about half a mile wide flew from W to E. +2011-08-02,36.5297222,-87.3594444,Clarksville,TN,light,15,It moved in very odd pattern and then seemed to explode then disappear. +2011-08-02,39.9611111,-82.9988889,Columbus,OH,fireball,20,Orange orb / ball seen over NE columbus ohio +2011-08-02,40.6688889,-111.8238889,Holladay,UT,light,120,Two bright, white lights were seen in formation, and possibly exiting Earth's atmosphere, late Au. 2nd over the Salt Lake Valley. +2011-08-03,34.9991667,-78.0913889,Warsaw,NC,circle,1200,we saw the ufo in smalltown warsaw nc. and helicopters where searching for the craft +2012-08-02,37.6391667,-120.9958333,Modesto,CA,fireball,600,Fiery Orb in night sky, no tail, no sound, seemed to burn out, and looked like a oval disk. +2012-08-02,48.2216667,-99.0886111,Penn,ND,other,60,We saw a deep orange orb that night... +2012-08-02,33.5377778,-92.4697222,Hampton,AR,other,8,Bright cigar shaped light on video in the middle of the woods in south Arkansas +2012-08-02,34.4838889,-114.3216667,Lake Havasu City,AZ,disk,30,Saucer shaped ufo with 7 or 8 very bright lights seen south of Lake Havasu City, AZ +2012-08-02,34.0522222,-118.2427778,Los Angeles,CA,light,1,Streak of bright white light over Los Angeles +2012-08-02,24.6694444,-81.3541667,Big Pine Key,FL,other,15,Around 06:00 my wife saw a "fireball" in the sky traveling North bound (WB from our bedroom) what it appeared. She thought it +2012-08-02,41.85,-87.65,Chicago,IL,cigar,300,Shiny silver blimp-like aircraft - no wings.. +2012-08-02,47.1013889,-94.5869444,Walker,MN,disk,60,Shiny object on a clear sunny day too far to i.d. +2012-08-02,32.9125,-96.6386111,Garland,TX,teardrop,5,Teardrop shape, hazy aura, like an LED light from my view about the size of a human fist. +2012-08-02,46.2113889,-119.1361111,Kennewick,WA,triangle,600,Saw three triangle shaped craft with red and white lights and moving in slow formation.. +2012-08-02,39.6836111,-75.75,Newark,DE,circle,5,After running at the Glasgow Park off of 896 and rt 40, my friend texts me and asks, "Dude, did you see those 8 orange lights leavin +2012-08-02,45.3575,-122.6055556,Oregon City,OR,fireball,180,Saw nine fireballs flying in the sky from the West Linn hills over the oregon City area. +2012-08-02,34.5794444,-118.1155556,Palmdale,CA,sphere,10,Fast bright moving object at night, level flight +2012-08-02,32.8572222,-116.9213889,Lakeside,CA,light,18,Unusual colored turquoise object keeping pace with Navy or Marine Corps helicopter +2012-08-02,42.0086111,-92.0908333,Van Horne,IA,disk,120,Disk-shaped object seen above treeline +2013-08-02,38.5675,-77.3283333,Dumfries,VA,sphere,30,Sphere/fireball falls toward Earth, then, disappears before contact +2013-08-02,37.2708333,-79.9416667,Roanoke,VA,other,120,Short 3 foot alien seen near creek in Roanoke, VA. +2013-08-02,39.6180556,-75.0761111,Franklinville,NJ,oval,10,Green oblong oval with greenish glow; very fast; turned and vanished; no color seen in or around clouds after it left. +2013-08-02,28.5380556,-81.3794444,Orlando,FL,fireball,120,Four Fireballs in Formation over Orlando +2013-08-02,40.0872222,-74.9038889,Croydon,PA,disk,120,Hovering oval/disc shaped object hovering above treeline in Croydon, PA +2013-08-02,44.9583333,-124.0166667,Lincoln City,OR,other,7200,Bright stationary pulsing light accompanied with other objects emanating faint pulses of colored lights (clear,red and blue in color). +2013-08-02,35.198055600000004,-111.6505556,Flagstaff,AZ,formation,180,Two Pairs of Lights +2013-08-02,43.3813889,-92.1138889,Cresco,IA,light,1800,Mysterious light in the Western sky. ((NUFORC Note: Venus?? PD)) +2013-08-02,36.9786111,-76.4283333,Newport News,VA,light,180,Saw several red lights (appeared to be airplane lights), one white, moving silently and slowly in the dark night sky all grouped togeth +2013-08-02,40.6883333,-75.2211111,Easton,PA,fireball,1800,8 or more firey orange objects move in formation in the sky. +2013-08-02,30.2458333,-87.7008333,Gulf Shores,AL,light,300,Reddish-orange orbs - believe they were Chinese lanterns launched from the beach +2013-08-02,43.1063889,-76.2180556,Liverpool,NY,sphere,3600,White shimmering spherical object in western sky just above the horizon after sundown +2013-08-02,36.9786111,-76.4283333,Newport News,VA,light,180,10 lights flying in formation behind an airplane +2013-08-02,35.7719444,-78.6388889,Raleigh,NC,sphere,600,Unknown object seen in Raleigh, NC 8/2/2013. +2013-08-02,37.4308333,-79.1233333,Madison Heights,VA,formation,600,Mass sighting +2013-08-02,38.4191667,-82.4452778,Huntington,WV,light,90,Numerous star-like objects observed in Huntington, WV +2013-08-02,47.9791667,-122.2008333,Everett,WA,sphere,300,13 bright orange sphere shaped lights moving through my neighborhood, two at time side by side +2013-08-02,38.5816667,-121.4933333,Sacramento,CA,fireball,180,Orange/amber sphere sacramento +2013-08-02,39.5069444,-84.7452778,Oxford,OH,light,300,5 amber lights traveling east over Oxford OH +2013-08-02,41.3830556,-71.6422222,Charlestown,RI,cylinder,30,White cylinder with orange flames hovering at rooftop height. +2013-08-02,41.3502778,-83.1219444,Fremont,OH,sphere,3600,In the sky at 180 degrees south of my back yard, I saw what I thought was a shooting star. It then stopped in the sky and changed direc +2013-08-02,39.4586111,-82.2319444,Nelsonville,OH,unknown,15,Triangular light formation over highway in Nelsonville, Ohio +2013-08-02,40.9166667,-74.1722222,Paterson,NJ,light,300,I actually have video footage it started off as a green ball going across the sky then it stopped backed up it seem like turned differe +2013-08-02,44.8613889,-92.6236111,River Falls,WI,circle,600,On Friday 08/02/13,at about 23:30, My wife and I were at my sons house in River Falls, WI. We were sitting in the back yard, having a b +1964-08-22,34.7997222,-87.6772222,Florence,AL,disk,60,Typical "saucer shaped craft" followed a valley leading to a major hydroelectric plant on the Tennessee River. +1966-08-22,47.4538889,-122.3205556,Seatac,WA,unknown,120,SAW UFO AT NIGHT TAKE OFF SO FAST THAT IT LOOKED LIKE IT KICKED IT INTO WARP DRIVE. +1967-08-22,40.4405556,-79.9961111,Pittsburgh,PA,circle,300,i looked up at the stars as it was getting darker. as i did i noticed a small point of light moving high across the sky. as i watched i +1970-08-22,27.8161111,-80.4708333,Sebastian,FL,unknown,300,Blue cone shaped light appears from sky and flashes downward as it pursues a family in vehicle. +1972-08-22,40.4591667,-74.3613889,Sayreville,NJ,light,900,I saw three luminescent green lights dancing in the sky , no deffinite shape ,to high to see any craft ... +1977-08-22,33.6602778,-117.9983333,Huntington Beach,CA,circle,240,Incident on Pacific Coast Highway leads to time loss +1978-08-22,40.1744444,-74.9230556,Langhorne (Bermuda),PA,disk,7200,Close Encounters of the Bermudian Kind 500 Lights On Object0: Yes +1980-08-22,47.3811111,-122.2336111,Kent,WA,teardrop,90,August, 6 p.m., clear day, UFO at 1000 ft altitude, airspeed approx. 150 knots, circular, no sound, black color., six witnesses., +1983-08-22,34.1866667,-118.4480556,Van Nuys (Los Angeles),CA,triangle,120,Large (200') black triangle craft with white & blue lights & plumbing like under structure flew at 350 feet . Loud tonal/buzzing +1987-08-22,42.075,-72.0338889,Southbridge,MA,light,1200,Hovering light that was stationary for minutes then moved away +1989-08-22,41.8477778,-74.5483333,Grahamsville,NY,rectangle,300,LARGE AIRCRAFT CARRIER FLOATING APPEARANCE WITH NO SOUND +1991-08-22,35.6008333,-82.5541667,Asheville,NC,oval,300,Yellow/Redish colored UFO on the Blue Ridge Parkway in Asheville,NC. +1995-08-22,37.2608333,-85.4988889,Greensburg,KY,rectangle,300,08/22/95 1:00 Greensburg Ky Rectangular 5 min. Cloud with a ship inside 10/02/05 +1997-08-22,32.3069444,-96.0063889,Eustace,TX,light,120,3 circular lights, rapidly spinning and blinking about 100 ft over the tree tops. +1997-08-22,27.5155556,-97.8558333,Kingsville,TX,cigar,6,A cigar shaped craft about the size of my pinky at arms lenght was seen traveling due north spotted over Kingsville, Tx. Craft traveli +1997-08-22,40.8861111,-73.2577778,Kings Park,NY,other,10,Neon green trail from ground (like firework) that became a fireball out of which vertically ascended what appeared to be a fighter jrt. +1997-08-22,42.4966667,-108.73,Atlantic City,WY,light,30,bright shiny red globe moving slow but able to change direction quickly +1998-08-22,41.665,-86.0758333,Osceola,IN,light,300,5 bright orange lights in a line going up the western horizon, slowly moving up the sky, quite spaced apart. 2 of them seem to have ex +1998-08-22,37.9375,-107.8116667,Telluride,CO,light,3,Similar to report from Longmont CO on 9/7/98.Very fast moving light +1998-08-22,39.885555600000004,-104.9866667,Northglenn,CO,fireball,480,Slow moving for the most part but had quick acceleration,absolutely no noise,bright light's (blue & orange) +1998-08-22,39.6847222,-83.9297222,Xenia (App.10 Mi. E Of Dayton),OH,unknown,30,Standing in backyard with girlfriend. Saw yellow-orange dull glowing light traveling SE to NW at fantastic speed. Blinked out of view!! +1998-08-22,36.5052778,-81.1211111,Sparta (12 Mi.north Of, Countryside),NC,unknown,300,A 69-yr-old male sighted small lights below the planet Jupiter. Looking through binoculars, another male 65 years old, sighted small li +1999-08-22,38.7741667,-76.0766667,Easton,MD,rectangle,180,We were woken by a low humming noise and an object with a bright light descending from the sky. It landed across the water from our h +1999-08-22,48.2933333,-122.6419444,Oak Harbor,WA,light,10800,I saw a red light that seemed some distance from me to the east making very strange (impossible for known aircraft) movements. +1999-08-22,43.0480556,-76.1477778,Syracuse,NY,other,1200,very suprized & dejaview of it as to want to record +1999-08-22,35.9380556,-77.7908333,Rocky Mount,NC,circle,60,I thought I saw a parachute or a balloon coming down from a heavy bank of clouds, then saw it zig-zag falling-leaf fashion. +1999-08-22,32.7833333,-96.8,Dallas,TX,circle,15,clody day round silver or chrome craft shaped like huge ball 3000 to 5000 ft stops in clouds then moves up out of site with such speed +1999-08-22,20.8783333,-156.6825,Lahaina (Maui),HI,sphere,4,Bright sphere, brightly lit with white, red and green. Quiet, fast moving, heading northwest. +1999-08-22,44.2727778,-121.1727778,Redmond,OR,fireball,2,Bluish tinted fireball 45 degrees above horision. Moving directly magnetic South. Part split off. +1999-08-22,43.6613889,-70.2558333,Portland (@ The Holiday Inn),ME,triangle,300,bright orange not to high up but move way to fast to not make any sounds,sharp turns at high speeds in and out of formation,dropped and +2000-08-22,47.6063889,-122.3308333,Seattle,WA,unknown,30,Bright slow moving object that became brighter during its path across the entire sky. +2000-08-22,36.6913889,-79.8727778,Martinsville,VA,unknown,2,star shaped,,,reddish in color +2000-08-22,44.3838889,-92.0327778,Wabasha,MN,flash,15,The rate of speed and no sound +2001-08-22,42.2141667,-83.15,Wyandotte,MI,light,900,Three lights in a triangular shape hovered over my town, with the bottom lights evetually moving very fast and the disappearing. +2001-08-22,33.5091667,-111.8983333,Scottsdale,AZ,light,300,Bright Lights in the Southern Sky over Phoenix. +2001-08-22,37.7397222,-121.4241667,Tracy,CA,light,480,LIGHT IN THE SKY IS MET BY ANOTHER LIGHT AND 3RD LIGHT IS RELEASED FROM ORIGINAL LIGHT TO FOLLOW THE SECOND LIGHT. +2001-08-22,40.4841667,-88.9936111,Bloomington,IL,oval,300,UFO south of Bloomington, IL by Randolph Grain Elevator. +2002-08-22,44.8613889,-92.6236111,River Falls,WI,disk,1800,The object was in the sky, then this large gold disk was on the ground. +2002-08-22,33.9938889,-96.3705556,Durant,OK,changing,600,A toy? Or what? A Demon? +2002-08-22,42.2411111,-88.3161111,Crystal Lake,IL,unknown,2700,Heard a repeating pattern of music notes during a severve thunderstorm +2002-08-22,41.1363889,-73.2838889,Southport (Not Sure),CT,light,4,a ball of light appeared out of the atmosphere over the highway and dove to the right behind trees +2002-08-22,46.9422222,-122.6047222,Yelm,WA,other,1800,A moon shaped object and the dream i thought was a dream +2002-08-22,40.7691667,-73.1155556,Bohemia,NY,diamond,30,ufo in diamond shape and the bottom was spinning and had hummingbird type winds on the outside. +2002-08-22,39.1416667,-104.0833333,Simla,CO,triangle,120,kinda like a triangle with blinking lights on the 2 sides.... +2002-08-22,21.3069444,-157.8583333,Honolulu,HI,light,60,Star-sized object shines brightly then disappears after making 30 degree angle turn +2002-08-22,28.2438889,-82.7194444,New Port Richey,FL,light,600,Helicopter and red/orange orb sighting. +2002-08-22,34.4716667,-104.245,Fort Sumner,NM,unknown,3600,Littel points of light moving acrost the sky.We saw at least 50 light in the sky behind a blinking object. It was not a usual air c +2002-08-22,34.4716667,-104.245,Fort Sumner,NM,unknown,3600,Triangular shaped objects with lights the same shape with red and gold coloring as well as the trail behind it. +2002-08-22,34.0633333,-117.65,Ontario,CA,changing,7200,OBJECT HOVERING ABOUT 2 HOURS, CHANGING SHAPE, NEWS WAS CALLED, POLICE WERE CALLED +2002-08-22,40.4841667,-88.9936111,Bloomington,IL,light,20,seen red and green light above the clouds as i was driving home. the lights came from the west going east and then disappeared. no nois +2002-08-22,30.2669444,-97.7427778,Austin,TX,flash,60,Very bright birdlike image with flapping wings flashing in sky, moving across sky to the south at first and then gradually turning to t +2002-08-22,41.3305556,-74.1872222,Monroe,NY,egg,300,Orb- brilliant white on Rt 17, NY +2003-08-22,32.3833333,-82.9913889,Rentz,GA,light,3600,Dancing light in the Georgia sky +2003-08-22,36.06,-86.6722222,Antioch,TN,unknown,1200,Four lights circling inside storm cloud +2003-08-22,32.7252778,-97.3205556,Fort Worth,TX,cigar,180,weird plane +2003-08-22,39.9611111,-82.9988889,Columbus,OH,changing,20,One large bright light, very low, in the Southwest part of sky, light dimmed, then seemed to turn into 3 smaller black craft that follo +2003-08-22,37.6922222,-97.3372222,Wichita,KS,other,20,"Stars" appear to move. +2003-08-22,34.2569444,-85.1647222,Rome,GA,unknown,20,My friend and I heard strange whistling sounds with many other people in a Wal-Mart parking lot. +2003-08-22,48.2325,-101.2958333,Minot (Burlington Actually But Put Minot Bc Its 7 Miles A),ND,oval,7,Oval , Yellow- Orange craft seen fly rapidly from NNW to zenith then to the east and vanish +2003-08-22,39.2022222,-83.6116667,Hillsboro,OH,disk,900,UFO SPOTTED THEN CROP CIRCLE APPEARS +2003-08-22,42.9116667,-73.8686111,Ballston Lake,NY,triangle,120,VERY close up look at a boomerang/trianglor shaped craft with lights on the bottom +2004-08-22,43.6136111,-116.2025,Boise,ID,oval,30,Green Oval Shaped UFO Sighted Near Gowen Air Field US Air Force Base Boise Idaho +2004-08-22,37.1772222,-96.7141667,Dexter,KS,light,1800,Round bright star like object lighting up the ground below it. Shot off silently. +2004-08-22,40.0608333,-95.6016667,Falls City,NE,triangle,45,Huge! +2004-08-22,32.8383333,-116.9730556,Santee,CA,circle,900,Circular white object, Hovered and moved, alt. approx. 50ꯠ ft.,... Not a Drifting balloon +2004-08-22,41.5444444,-73.2094444,Woodbury,CT,disk,10,It was augest 22, and we were driving home from my brithday party when I saw a disk with a slightly domed roof hovering in the sky. +2004-08-22,38.7908333,-121.2347222,Rocklin,CA,circle,300,Round Reflective Object Veiwed in Rocklin, CA at Approx. 6:10pm on August 22 +2004-08-22,41.4208333,-90.015,Atkinson,IL,light,300,Iridescent U.F.O. spotted by four eye witnesses over Northwest Illinois Sunday night at around 7:50 p.m. +2004-08-22,40.3275,-80.0397222,Bethel Park,PA,light,5,bright light moving slowly that dimmed out and disappeared. +2004-08-22,29.5633333,-95.2858333,Pearland,TX,cigar,900,Large vertical orange/pink glowing light the length of two full moons above the horizon +2004-08-22,44.4077778,-69.4744444,Palermo,ME,triangle,420,a triangle shaped formation over maine +2004-08-22,44.1266667,-70.8922222,Lovell,ME,light,90,Very dim flashing white light moving quitely, eratically, and misteriously across the sky. +2005-08-22,33.8752778,-117.5655556,Corona,CA,unknown,900,bright light headed ENE in daylight hours, very fast, changes in direction and speed, metallic object +2005-08-22,45.3041667,-83.4769444,Presque Isle,MI,light,240,A white light in a rural orange and gray sky. +2005-08-22,43.4452778,-71.4783333,Belmont,NH,light,1800,Group of white lights over lake +2005-08-22,26.3394444,-81.7788889,Bonita Springs,FL,formation,15,Two formation flying lights and red spheres flew across the sky out of distance. +2005-08-22,38.8402778,-97.6111111,Salina,KS,light,120,2 lights that split into 2 sets of 4 bright lights flashing and moving across the sky, then disappearing. +2005-08-22,44.9133333,-93.5030556,Minnetonka,MN,triangle,26,Triangular plane like object seen close to ground with little noise, moved very little over the course of 26 seconds then was gone. +2005-08-22,46.4163889,-117.0441667,Clarkston,WA,unknown,600,As I got home from work I looked in the sky as as I usually do and saw a blinking light. I followed it across the sky towards the weste +2006-08-22,38.4191667,-82.4452778,Huntington,WV,light,600,craft far off in distance with different colored lights. +2006-08-22,36.0725,-79.7922222,Greensboro,NC,diamond,30,At appx 4 am on 8/22/06, a diamond shaped object flew by . It had 4 whitish/yellow lights on the bottom, which flashed in sequence, fro +2006-08-22,40.6408333,-74.3111111,Clark,NJ,circle,300,3 pankake looking round ufos floating and circling as they made their way slowly across sky +2006-08-22,26.1416667,-81.795,Naples,FL,light,240,very bright reddish light that hovered, moved from side to side, and disappeared in the distance at rapid speeds +2006-08-22,40.0177778,-79.5897222,Connellsville,PA,formation,2,Illuminated objects flying in formation. +2006-08-22,34.8980556,-86.7336111,Toney,AL,triangle,600,2 triangular ships over my sons football game +2006-08-22,40.26,-74.2741667,Freehold,NJ,light,300,A bright light that hoover motionless eventually ascended straight up +2006-08-22,30.2394444,-81.3858333,Ponte Vedra Beach,FL,other,180,Odd shape ,a square with the front missing lots of lights red, blue, white on each side cabin like in rear. +2006-08-22,42.0372222,-88.2811111,Elgin,IL,light,1800,White lights with blue and red flashing lights around it +2006-08-22,32.1530556,-94.7991667,Henderson County,TX,diamond,900,Diamond shaped craft. +2006-08-22,43.9005556,-85.2580556,Evart,MI,light,1200,Light circles something not seen but blocks moon and clouds. +2007-08-22,41.9933333,-70.0502778,Truro,MA,other,180,Straight line of black smoke crosses sky +2007-08-22,36.2080556,-86.2911111,Lebanon,TN,teardrop,10,blue lights on bottom of fast moving silent object +2007-08-22,36.175,-115.1363889,Las Vegas,NV,circle,120,light circle with knob-like shapes on 2 sides seen above moon trailing plane and then ascended until it disappeared. this was observed +2007-08-22,30.3077778,-104.0186111,Marfa,TX,cigar,600,Steady cigar shape light cruises under Moon at speed with no sound or blinking. +2007-08-22,33.6888889,-78.8869444,Myrtle Beach,SC,oval,900,Two red ovals moving in irregular movements in a south-east approach. +2007-08-22,36.1583333,-81.1477778,North Wilkesboro,NC,diamond,30,Diamond-shaped light flying silently +2008-08-22,32.7252778,-114.6236111,Yuma,AZ,changing,1560,UFO sited in Yuma Arizona. Strange morphing UFO with brilliant translucent colors +2008-08-22,39.5297222,-119.8127778,Reno,NV,diamond,1800,Diamond, Spherical UFOS over Reno +2008-08-22,30.0858333,-94.1016667,Beaumont,TX,cylinder,5,Wingless tube +2008-08-22,30.2419444,-93.2505556,Westlake,LA,other,2400,Disappearing daytime star-like object appeared and disappeared seven times during daylight hours. ((NUFORC Note: Jupiter?? PD)) +2008-08-22,30.2419444,-93.2505556,Westlake,LA,unknown,2400,Daylight sighting of very large and bright starlike object moves then disappears after 40 min. observation +2008-08-22,30.3155556,-89.2475,Pass Christian,MS,fireball,10,We saw a bright green light fall from NW to SE very quickly. +2008-08-22,32.3122222,-106.7777778,Las Cruces,NM,light,480,SOMETHING ON FIRE MOVING RAPIDLY AWAY SILENTLY AND DISAPPEARING +2008-08-22,45.0725,-93.4555556,Maple Grove,MN,light,180,Orange ball of light flying across maple grove MN. traveling at high speed and made no sound. +2008-08-22,33.7669444,-118.1883333,Long Beach,CA,triangle,300,Perfect pulsating triangle over the freeway near the airport. +2008-08-22,33.8491667,-118.3875,Redondo Beach,CA,disk,60,Circular aircraft with white/blue lights around edges and 2 red lights on opposing sides +2008-08-22,41.85,-87.65,Chicago,IL,light,3600,Multiple blinking orange orbs over downtown and north side of Chicago +2008-08-22,40.2338889,-111.6577778,Provo,UT,chevron,3600,On 8/22/08 in Provo Utah we saw many chevron shaped groupings of rapidly moving clusters of bright crafts. +2008-08-22,44.3875,-68.2044444,Bar Harbor,ME,fireball,10,UFO appeared as a shooting star at first, then burnt a red trail and stopped in midair. +2009-08-22,43.1063889,-76.2180556,Liverpool,NY,light,10,fast zigzaging light over or around a normal plane clear night over Liverpool NY +2009-08-22,44.0805556,-103.2305556,Rapid City,SD,light,300,There was 5 of us outside. I looked to the east and seen a bright white light. I thought it was a helicopter but heard nothing. I let m +2009-08-22,37.3394444,-121.8938889,San Jose,CA,oval,180,Large, high altitude, oval-shaped object sighted over San Jose, CA +2009-08-22,46.1813889,-112.7838889,Warm Springs,MT,light,3600,Bright flickering Light +2009-08-22,30.2669444,-97.7427778,Austin,TX,light,20,Slow moving, blinking light moving across the sky vanishing with no cloud cover. +2009-08-22,44.1938889,-85.7144444,Hoxeyville,MI,sphere,1800,I observed a ballon like object brite yellow varing to orange in color hovering over a concert i was attending i obsevred this this obj +2009-08-22,35.2783333,-93.1336111,Russellville,AR,sphere,5,Large red/orange sphere sighted flying east for about five seconds. +2009-08-22,36.7477778,-119.7713889,Fresno,CA,light,2700,Red and blue flashing lights in star like object ..IT MOVED +2009-08-22,30.3319444,-81.6558333,Jacksonville,FL,flash,300,two lights flashing in unison very odd to see. very high in sky, in between horizon and directly over head. they flashed and moved off +2009-08-22,45.2627778,-94.1241667,Annandale,MN,light,600,A circular, rotating amber light decended and disappeared. Then the same light later ascended. +2009-08-22,32.7152778,-117.1563889,San Diego,CA,circle,5,On august 22, 2009 at about 21:43 in san diego, california. A bright circular craft with blue lights flew through sky and disappeared +2009-08-22,34.1063889,-117.5922222,Rancho Cucamonga,CA,teardrop,10,weird tear drop object that was moving extremely fast +2009-08-22,34.185,-83.9252778,Flowery Branch,GA,light,30,Two objects over north GA emit strobes then moved away. +2009-08-22,42.9722222,-85.9536111,Allendale,MI,light,600,U.F.O.'s in Allendale, MI +2010-08-22,33.1191667,-117.0855556,Escondido,CA,unknown,30,Star-like object seen above San Diego Wild Animal Park. +2010-08-22,34.1083333,-117.2888889,San Bernardino,CA,light,1200,bright daytime space sighting by numerous people... +2010-08-22,38.6247222,-79.245,Brandywine,WV,light,90,Between 0515-0520 a bright light much brighter than the stars was spotted five miles outside NIOC Sugar Grove, a Naval communicati +2010-08-22,37.1305556,-113.5075,Washington,UT,unknown,120,Was photgraphing clouds and didn't see object until I was looking at the photos on my computer. +2010-08-22,36.9102778,-121.7558333,Watsonville,CA,fireball,300,Three Fireballs in formation off coast of California, circle into one Fireball and vanish. +2010-08-22,40.2113889,-74.7883333,Morrisville,PA,circle,300,Round Yellow Pulsating Flashing Solid flying object +2010-08-22,41.1072222,-77.4847222,Mill Hall,PA,circle,300,overcast was cloudy right after dusk. i am use to seeing piper small air craft flying overhead and originally thought it was a small pl +2010-08-22,48.0983333,-122.5716667,Greenbank,WA,oval,300,Bright lightthat stayed stationary and fromed red & blue lights off oft the right side of it. Weird! +2010-08-22,30.0858333,-94.1016667,Beaumont,TX,circle,1200,a blue light over beaumont" texas +2010-08-22,47.6105556,-122.1994444,Bellevue,WA,light,300,Blue light swaying and dipping over Bellevue +2010-08-22,30.7233333,-95.5505556,Huntsville (Near),TX,light,7200,Hovering Glowing object for 2 hours near Huntsville Texas that moved around the western sky and appeard to shoot objects from it +2011-08-22,40.1933333,-85.3863889,Muncie,IN,oval,120,Pulsing Object +2011-08-22,45.6625,-110.5602778,Livingston,MT,light,240,2-3 very bright lights above Livingston in broad daylight +2011-08-22,37.5458333,-77.3280556,Highland Springs,VA,formation,240,I have never seen anything like this after years of watching planes fly near the Airport. +2011-08-22,41.6483333,-70.4816667,Mashpee,MA,sphere,30,Approximately 10 silver/ irridescent spheres seen flying South in a formation over Cape Cod, MA +2011-08-22,33.9791667,-118.0319444,Whittier,CA,triangle,120,V-Shaped object hovering over residential neighborhood. +2011-08-22,37.0944444,-88.0802778,Eddyville,KY,other,300,Objects over Lyon Co., KY. 8/22/2011 +2011-08-22,34.010555600000004,-95.5094444,Hugo,OK,fireball,300,orange lights over Hugo Oklahoma +2011-08-22,40.9008333,-80.8569444,Salem,OH,fireball,300,a orange fire ball moved acrossed the night sky in N.E. Ohio +2011-08-22,48.4111111,-114.3366667,Whitefish,MT,triangle,300,Series of red/orange objects seen over Whitefish, MT +2011-08-22,30.4211111,-87.2169444,Pensacola,FL,light,120,Three bright lights in the sky forming straight line then triangle. +2011-08-22,38.7133333,-77.7955556,Warrenton,VA,sphere,60,brilliant round white light, larger than the following helicopter +2011-08-22,35.0886111,-92.4419444,Conway,AR,triangle,300,While walking outside near midnight saw two triangular shaped low flying large craft directly overhead +2012-08-22,39.785,-85.7694444,Greenfield,IN,disk,900,3 UFOs seen near interstate I70 and Mt Comfort Airport. ((NUFORC Note: We suspect planets in the E sky. PD)) +2012-08-22,35.9605556,-83.9208333,Knoxville,TN,cylinder,60,Craft gleaming in sunrise. +2012-08-22,36.2138889,-83.295,Morristown,TN,rectangle,300,5th UFO Sighting around my 50th Birthday. +2012-08-22,34.6991667,-86.7483333,Madison,AL,light,180,Triangular light drifting high over Madison, AL in full daylight. +2012-08-22,40.6627778,-73.5519444,Merrick,NY,triangle,1200,Observed a slow moving dark triangle against a clear blue sky 8/22/12 +2012-08-22,33.4052778,-86.8113889,Hoover,AL,light,480,White light that appeared as comet but changed shape and slowed down. +2012-08-22,40.7141667,-74.0063889,New York City (Fresh Meadows; Queens),NY,cigar,120,Object was bright-neon-blue colored flying for about 2 minutes +2012-08-22,34.0336111,-117.0422222,Yucaipa,CA,sphere,60,Firey orange sphere +2012-08-22,44.9583333,-124.0166667,Lincoln City,OR,light,2700,15 orb shaped orangish lights and one came down towards the lake. +2012-08-22,35.0072222,-80.9452778,Fort Mill,SC,cylinder,300,Cylinder moving slowly above the treetops gradually fading into the sky +2012-08-22,41.5875,-109.2022222,Rock Springs,WY,sphere,240,Bright light traveling over Rock Springs +2012-08-22,48.0536111,-92.8308333,Orr,MN,sphere,30,Bright orange orb the size of a medicine ball at 2000 feet passed directly overhead with no sound. +2012-08-22,47.2530556,-122.4430556,Tacoma,WA,oval,180,A large rounded craft with bright white lights moving south at a low altitude. +2012-08-22,40.0333333,-83.1583333,Hilliard,OH,unknown,14400,For the last several nights an object with circling lights has been seen stationary in the sky over hilliard, have seen several planes +2013-08-22,31.8466667,-81.5961111,Hinesville,GA,unknown,60,Sounds, House Compression, Electrical Activity. +2013-08-22,42.6291667,-73.865,Slingerlands,NY,unknown,180,UFO. +2013-08-22,42.4975,-94.1677778,Fort Dodge,IA,circle,10,Bright white light disapeered away from the earth. +2013-08-22,33.6602778,-117.9983333,Huntington Beach,CA,fireball,900,Red glowing fireball orbs w/plane coming head on for them disappear manuevered with intelligence. +2013-08-22,36.0997222,-80.2444444,Winston-Salem,NC,circle,60,Dark object going south below clouds with singular rotating light on the bottom +2013-08-22,45.4541667,-94.5180556,Richmond,MN,light,420,White lighted aircraft looking object +2013-08-22,47.3294444,-122.5788889,Gig Harbor,WA,triangle,120,Bright lights/craft observed flying low over highway. +2013-08-22,45.4902778,-93.2475,Isanti,MN,fireball,360,Saw a fireball up close with my wife and 4 year old son. +2013-08-22,41.85,-87.65,Chicago,IL,triangle,120,Red fireball orbs and about two triangles ascending from chicago lake michigan +2013-08-22,43.073055600000004,-89.4011111,Madison,WI,light,600,Bright orangy-red and white light in SW sky over Madison, WI, travelling slowly and then disappearing. +2013-08-22,32.895,-97.5455556,Azle,TX,cigar,180,Orange cigar shaped craft chased down a backroad. +2013-08-22,36.0525,-95.7905556,Broken Arrow,OK,light,300,Lights in formation over South Broken Arrow, Ok +2013-08-22,38.260555600000004,-93.7727778,Deepwater,MO,sphere,600,Bright blue-white round or spherical object moving smoothly & rapidly across the sky during observation of Nova Delphinus 2013. +2013-08-22,38.3363889,-75.0852778,Ocean City,MD,light,180,3 whites lights moving slow in formation and then just disappeared. +2013-08-22,37.2277778,-77.4022222,Petersburg,VA,fireball,300,Ball of fire disappear in night sky. +2013-08-22,26.1416667,-81.795,Naples,FL,unknown,300,Red light no engine sound heard hovering over tree tops. +2013-08-22,39.0997222,-94.5783333,Kansas City,MO,light,2,Sweeping light soutwest to north observed central KC. +2013-08-22,40.3916667,-111.85,Lehi,UT,unknown,180,2 UFO's Over Lehi, Utah. +1963-08-23,43.0586111,-74.1969444,Broadalbin,NY,light,600,I was 13 at the time and had a great interest in aviation,and still do with 32 yrs under my belt with USAirways.I was walking home and +1974-08-23,43.8341667,-70.4388889,North Windham,ME,disk,2700,UNEXPLAINED LIGHTS THAT WENT UNDERWATER FASTER THAN THE SPEED OF LIGHT +1974-08-23,41.1669444,-73.2052778,Bridgeport (Pond Flowing Out Of Remington Arms Compound),CT,triangle,10800,2 girls lose track of time while singing "Octopus's Garden" and taking a short cut through the woods around a pond after seeing a UFO ! +1990-08-23,40.5866667,-122.3905556,Redding,CA,changing,300,symentrical group of orange dots in night sky, no sound at all, no break in flowing formation at all +1993-08-23,41.3113889,-105.5905556,Laramie (East Of),WY,changing,540,Cloud-like object at extreme range changes shape. +1997-08-23,45.7833333,-108.5,Billings,MT,cigar,8,Cigar-shaped object flies from horizon to horizon over Billings, Montana. +1997-08-23,34.1511111,-118.4483333,Sherman Oaks,CA,formation,600,I was at a party, there was at least 20 people outside when 5 light`s came out of the north east. I thought they might be helicopters u +1998-08-23,41.7822222,-72.6125,East Hartford,CT,unknown,300,the neighborhood lights up brighter than the day time for a split second +1999-08-23,34.2255556,-77.945,Wilmington,NC,disk,120,wife walking dog in yard. heard humming, she looked up and seen disk hovering over our house +1999-08-23,37.9680556,-91.3547222,Steelville,MO,sphere,900,QQ Silver shining sphere traveling towards sun, radio reception scrambled, vanished into thin air +1999-08-23,37.0208333,-93.2058333,Ozark,MO,disk,1800,Silver-Gray Disk Hovering Directly Over My Residence +1999-08-23,41.2222222,-73.0569444,Milford,CT,cigar,150,cigar shape ship with message. +1999-08-23,33.8352778,-117.9136111,Anaheim,CA,rectangle,300,brown rectangular object, appeared very high, no movement or sound +2000-08-23,32.0477778,-110.7113889,Vail,AZ,flash,5,4-5 bright flashes of blue light. One light brighter (closer or larger) than others it disappeared last. +2000-08-23,46.7833333,-92.1063889,Duluth,MN,formation,300,Unexplained lights over Lake Superior +2000-08-23,33.9325,-114.005,Bouse,AZ,light,600,6 bright Amber lights total, 1 seen rising in air, total time lapse 10 minutes East of Bouse Arizona near Harquahala Mountains. +2000-08-23,32.8794444,-111.7566667,Casa Grande,AZ,triangle,480,I observed a boomerang shaped object above my vehicle on the I-10 freeway, suspended without motion and completely silent. +2001-08-23,36.8052778,-93.4663889,Galena,MO,chevron,600,It was a v or u shape with 3 lights on the front and one orange one on the back, made NO noise and 200 ft. in the air huvring over us +2001-08-23,41.7122222,-72.6086111,Glastonbury,CT,teardrop,1800,A mysterious craft was seen hovering above yard. Expirienced "missing time" following the incident. 500 Lights On Object0: Yes +2001-08-23,37.9716667,-100.8722222,Garden City,KS,light,45,dont know???? +2001-08-23,42.0391667,-94.0275,Ogden (Near),IA,light,60,I saw a strange light in the sky that moved in a way that convential aircraft cannot move. +2002-08-23,47.0380556,-122.8994444,Olympia,WA,unknown,5400,no appearing lights tonight , just those light orbs.Anyone else see them? +2002-08-23,39.3352778,-76.3905556,Bowleys Quarters,MD,oval,10,A silent, blue oval appeared, flew east at high speed, then vanished. +2002-08-23,38.2541667,-85.7594444,Louisville,KY,light,1800,dancing light(s) +2002-08-23,35.0844444,-106.6505556,Albuquerque,NM,flash,5,I was smoking a cigarette when I looked up and saw a little brite light moving slow for about 5 seconds. Then i saw it flash with a br +2002-08-23,31.8455556,-102.3672222,Odessa,TX,unknown,15,Heard Loud Roar....Went outside to invetigate.....But wasn't able to see it +2002-08-23,33.4222222,-111.8219444,Mesa,AZ,oval,120,MESA IN BROAD DAYLIGHT +2002-08-23,33.3527778,-111.7883333,Gilbert,AZ,light,1800,Red pulsing light in Gilbert, Arizona +2002-08-23,47.8555556,-121.9697222,Monroe,WA,light,60,2 bright flashes that move away from earth +2003-08-23,42.1013889,-72.5902778,West Springfield,MA,other,4,bright green tailed luminous object . +2003-08-23,41.5066667,-90.515,Moline,IL,light,300,Appeared as a star in the sky. No motion and suddenly changed from the shape of a star into a rectangular box with a white light with +2003-08-23,40.7608333,-111.8902778,Salt Lake City,UT,light,7200,Object w/bright flashing colored lights observed over Wasatch Mtns. 6 days in a row. +2003-08-23,43.6155556,-84.2472222,Midland,MI,disk,480,We saw two metallic discs at a high altitude, actually chasing each other in the middle of the afternoon. +2003-08-23,39.5297222,-119.8127778,Reno,NV,sphere,120,Moving star-like object seen in daytime sky. +2003-08-23,34.8697222,-111.7602778,Sedona,AZ,oval,300,Dark stationary craft - hovering at about 1000 feet +2003-08-23,34.0983333,-118.3258333,Hollywood,CA,light,1200,i saw what appeared like a star during the daytime-ithought it was mars but after i few seconds of looking at it it i realized there wa +2003-08-23,39.5297222,-119.8127778,Reno,NV,light,2700,Multiple objects over Reno +2003-08-23,33.1433333,-117.1652778,San Marcos,CA,light,600,Bright green in formation --others smaller following. +2003-08-23,38.7838889,-90.4811111,St. Charles,MO,triangle,30,Large Triangular Shaped Object with Orange Lights along to edges - no sound +2003-08-23,36.0397222,-114.9811111,Henderson,NV,oval,14400,3 UFOs spotted in Henderson, NV +2003-08-23,34.0094444,-118.1044444,Montebello,CA,diamond,600,looking at Mars +2003-08-23,33.1433333,-117.1652778,San Marcos,CA,other,900,Moving lights with very bright colors moving from horizon to horizon. +2004-08-23,40.1302778,-75.5152778,Phoenixville,PA,light,2700,Light groupings spotted in northern sky at about 23:45 on 08/22/04. ((Jupiter??)) +2004-08-23,39.7391667,-104.9841667,Denver,CO,light,900,Denver downtown UFO sighting +2004-08-23,33.8491667,-118.3875,Redondo Beach,CA,formation,600,Four Circular Objects in Formation Sighted Over the Pacific Ocean Off Redondo Beach, Calif. +2004-08-23,39.6477778,-104.9872222,Englewood,CO,sphere,900,white sphere(s) seen again in Denver area; perhaps colour-changing +2004-08-23,35.0241667,-81.0280556,Tega Cay,SC,teardrop,30,Black Tear drop following tree line, moving slower than a plane, and keeping a very level line. +2004-08-23,32.77,-108.2797222,Silver City,NM,light,1800,Metallic orange lights over mountains Silver City, New Mexico +2004-08-23,34.8525,-82.3941667,Greenville,SC,triangle,420,Strange Triangle Hovering/Moving slowly then vanishing. +2005-08-23,35.8269444,-101.4425,Stinnett,TX,circle,7200,We watched a Glow in the shape of a circle stay in one spot kinda like it was huvering in the air we got out the binoculars saw that it +2005-08-23,33.9525,-84.55,Marietta,GA,triangle,45,Black triangle vanishes into clouds. +2005-08-23,38.6591667,-87.1727778,Washington,IN,light,45,Bright Orange Lights in Southern Indiana in NW Sky +2005-08-23,34.0552778,-117.7513889,Pomona,CA,light,300,A LIGHT FORMATION THAT TRAVELED IN AN UNUSUAL MANNER +2005-08-23,37.4791667,-82.5188889,Pikeville,KY,rectangle,420,The object moved at a relatively slow steady pace from east to west with lights at the front and the back completely silent and huge. +2006-08-23,39.4186111,-76.2947222,Edgewood,MD,oval,120,Tan,yellow,and red lights around the rim and it made a buzzing and beeping sound. ((NUFORC Note: Report from school student. PD)) +2006-08-23,34.2572222,-118.6002778,Chatsworth,CA,triangle,300,Bright yellow object flying from the east towards me. appeared triangular in it's shape +2006-08-23,34.0983333,-118.3258333,Hollywood,CA,oval,60,Black, flashing oval flying and then vanishing over Los Angeles. +2006-08-23,38.2494444,-122.0388889,Fairfield,CA,cone,21600,Sighting of Cone/Sphere shaped Crafts at Solano County Sherrifs Dept. , Fairfield, CA 500 Lights On Object0: Yes +2006-08-23,42.5802778,-83.0302778,Sterling Heights,MI,circle,20,I saw an object I cannot explain with lights on it Zig zag, hover, abd speed of to the right in the sky +2006-08-23,44.8994444,-109.1502778,Clark,WY,light,2100,Two lights flashing & moving near Cody, WY. +2006-08-23,41.6055556,-73.9719444,Marlboro,NY,light,900,star moved +2006-08-23,41.4569444,-72.8236111,Wallingford,CT,triangle,2700,Fleet of white triangular airplanes, circular center with three lights, rear again trangular. +2007-08-23,46.2811111,-87.4408333,Gwinn,MI,triangle,600,triangle craft that melted into the ground +2007-08-23,32.551944399999996,-117.0422222,San Ysidro,CA,light,120,Four white lights horizontal with ground and moving higher into sky, pivot into vertical position, begin twisting and then vanish +2007-08-23,42.0583333,-71.25,Foxboro,MA,light,120,Witnessed intense blinding light followed by loud electrical noise as it dissappeared and turned to a green color. +2007-08-23,44.4652778,-72.685,Stowe,VT,cigar,60,Cigar shaped ufo flying at 300 feet over my house and emiting a bright orange light. +2007-08-23,36.7477778,-119.7713889,Fresno,CA,light,4,I saw a flash in the sky Fresno,Ca 8/23/07 +2007-08-23,39.3633333,-76.5208333,Overlea,MD,flash,10,Quick moving rapidly flashing light at night +2007-08-23,37.3488889,-108.5852778,Cortez,CO,other,300,A football field size bright light with a multicolored beam in the middle +2007-08-23,39.075,-84.4472222,Fort Thomas,KY,disk,90,Hovering object with eight lights +2007-08-23,26.2375,-80.125,Pompano Beach,FL,sphere,1.3,Possible meteorite fragment or space debris visible above southern sky in Pompano Beach, Florida. +2007-08-23,42.2525,-78.8058333,Little Valley,NY,rectangle,120,Large, slender craft over Little Valley, New York +2007-08-23,47.3294444,-122.5788889,Gig Harbor,WA,triangle,10,Triangle shaped craft fly over +2008-08-23,28.5380556,-81.3794444,Orlando,FL,unknown,120,((HOAX)) we saw a ufo +2008-08-23,41.9716667,-75.7436111,Great Bend,PA,oval,3,the object that i saw in the sky, that was the size of a blimp at one mile,(and this was at least 6 miles away) disapeared in 2 seconds +2008-08-23,47.5302778,-122.0313889,Issaquah,WA,light,240,satellite-like in brightness, slow and changing direction, no contrail, heading first WSW then W. +2008-08-23,45.0275,-84.6747222,Gaylord,MI,light,2700,Bright moving object in the night sky in Otsego County, Michigan +2008-08-23,30.2419444,-93.2505556,Westlake,LA,light,120,Follow up on first sighting with second daylight sighting of large bright starlike obj. the next day. ((NUFORC Note: Not ISS. PD) +2008-08-23,35.7330556,-81.3413889,Hickory,NC,flash,2,Blue-Green Flash in the North Carolina Sky +2008-08-23,42.4975,-94.1677778,Fort Dodge,IA,fireball,420,Strange pulsing fireball low on the horizon. +2008-08-23,37.3038889,-82.3511111,Elkhorn City,KY,unknown,2700,Bright lights blinking , on hillside at Kettle Camp Elkhorn City Ky.Saw 4 different ones, lasted about 45 min. +2008-08-23,34.5794444,-118.1155556,Palmdale,CA,cylinder,120,It appeared over head, as if materializing, I saw no heat trail from entering the atmosphere, just a spot of light. +2008-08-23,34.1705556,-118.8366667,Thousand Oaks,CA,oval,30,Bright blue flare enters atmosphere, quickly shifts horizontal, gains altitude for 7 secs, blinks blue 24 times while descending fully +2008-08-23,36.0344444,-89.3855556,Dyersburg,TN,unknown,5400,Dyersburg Tenn. Four distinct colored lights in the shape of a diamond. Stationary for over forty five minutes. ((Star??)) +2009-08-23,41.0263889,-73.6288889,Greenwich,CT,chevron,3,Chevron shaped formation of orange lights shaped like stunted bowling pins streaked across the sky from N to S directly overhead. +2009-08-23,45.5236111,-122.675,Portland,OR,sphere,300,We witnessed 7 orange spheres moving north to south over portland oregon +2009-08-23,30.6747222,-87.9152778,Spanish Fort,AL,light,3600,Four balls of light spotted over Spanish Fort area. +2009-08-23,41.51,-71.1716667,Little Compton,RI,fireball,180,Strange orbs/lights seen above and around Warren Point during Hurricane Bill +2009-08-23,41.0086111,-91.9625,Fairfield,IA,oval,180,5 lights in shape of oval traveled from southwest to northeast sky which looked to outline one object at 3:16 AM. +2009-08-23,44.98,-93.2636111,Minneapolis,MN,light,600,Bright star like objects +2009-08-23,32.7152778,-117.1563889,San Diego,CA,rectangle,180,Update on previous San Diego rectangular object +2009-08-23,32.7152778,-117.1563889,San Diego,CA,rectangle,240,Huge rectangular object seen over north San Diego. +2009-08-23,42.2533333,-88.7247222,Garden Prairie,IL,triangle,420,My husband and I were in the back part of the property by a lake checking nursery trees. When we were finished we went down to the lak +2009-08-23,32.7833333,-96.8,Dallas,TX,other,345600,Wingless faceless brown bodied being lands on underhang of apt days appears in apt. +2009-08-23,40.8902778,-123.5833333,Salyer,CA,cylinder,360,Sighted 2 white cigar shaped craft traveling parallel just above the tree line crossing river +2009-08-23,38.4405556,-122.7133333,Santa Rosa,CA,fireball,1200,Fireballs in the North joined by others moving slowly from the South East then they drift upwards getting smaller disappearing +2009-08-23,38.4405556,-122.7133333,Santa Rosa,CA,sphere,900,Unusual Red/Orange Spheres Arrive and form a triangle over Santa Rosa, Sonoma County USA +2009-08-23,41.85,-87.65,Chicago,IL,fireball,3600,August 23, 2009 Seven Chicago Witnesses view strange Orange Red balls of light in night sky. +2009-08-23,39.1619444,-84.4569444,Cincinnati,OH,fireball,120,Fireball moves slow, then fast and change directions +2009-08-23,33.7458333,-117.8252778,Tustin,CA,circle,180,Large yellow & red lights on Red Hill Ave, going South towards Irvine Blvd. The lights simultaneous disappeared as I approached. +2009-08-23,37.2397222,-96.9952778,Winfield (5 Mi South Of),KS,light,180,2 objects in close proximity high enought to reflect sun light travelling north then did a large 180 headed back south observed 3-4 min +2009-08-23,41.4569444,-72.8236111,Wallingford,CT,formation,300,Two bright lights flying very low and very close together +2010-08-23,41.9994444,-88.145,Hanover Park,IL,triangle,600,7 ufo's over hanover park il. triangle shaped 5 lights (gliding) in sync forward (stopped in mid ir for a while) +2010-08-23,36.5297222,-87.3594444,Clarksville,TN,light,60,Fast moving light over larksville Tn +2010-08-23,41.7108333,-87.7580556,Oak Lawn,IL,light,20,Purple light UFO 10 minutes after Power Outage +2010-08-23,34.2072222,-84.1402778,Cumming,GA,disk,1200,An object with red & green lights flashing on & off and clear lights in the middle it stayed in the same place for at least ten minutes +2010-08-23,33.3022222,-84.5538889,Senoia,GA,light,3600,Light - 45 minutes - bright light (star shape) in SE Sky. ((NUFORC Note: Given the duration of the sighting, we suspect a star. PD)) +2010-08-23,40.0191667,-82.8794444,Gahanna,OH,oval,1800,2 oval shaped craft, moved slowly with no sound, 300-400 feet off the ground, very low, and later say fighters chase it. +2010-08-23,33.9908333,-118.4591667,Venice,CA,unknown,300,Venice Beach 2 Long Jetstreams.. ((NUFORC Note: Photo shows contrails behind a twin-engine airliner. PD)) +2010-08-23,44.9902778,-123.025,Keizer,OR,light,1200,Steady white light in sky. ((NUFORC Note: Sighting of Venus in the western sky, we suspect. PD)) +2010-08-23,37.7666667,-120.8461111,Oakdale,CA,sphere,3600,Fluterring Green light that moves horizontaly. ((NUFORC Note: Venus, or other celestial body. PD)) +2011-08-23,40.9866667,-75.195,Stroudsburg,PA,flash,2,Ball Of Light White In Color & Possibly Related To East Coast EarthQuake 8-23-11 Over Pa +2011-08-23,34.8027778,-86.9716667,Athens (Hwy 72 W),AL,light,600,Huge, motionless, multicolored ball of light in tree lines. +2011-08-23,34.7202778,-80.7711111,Lancaster,SC,light,1200,What started out as fun and exciting has turned into frightening. +2011-08-23,36.6083333,-83.7166667,Middlesboro,KY,circle,60,a big brite light in the sky moving south it was a ufo +2011-08-23,45.5236111,-122.675,Portland,OR,triangle,2,Started looking like a shooting star but then shot into triangle and went "dot dot dot into bigger ones and shot into the sky" and then +2011-08-23,39.7391667,-104.9841667,Denver,CO,disk,120,Denver, Cheeseman Park large ship sighted...disapears within minutes +2011-08-23,30.5166667,-86.4822222,Niceville,FL,other,120,I saw a dark chunky object floating in the sky +2011-08-23,36.175,-115.1363889,Las Vegas,NV,cylinder,10,Bright metallic blimp shaped object flying east right between the flight path of two planes. +2011-08-23,33.6888889,-101.9977778,Shallowater,TX,circle,3600,2 silver/white objects. one to the north, one to the northwest.original report was at 7:49pm cdt, and I took a video and reported i +2011-08-23,36.8525,-121.4005556,Hollister,CA,triangle,120,A triangular object glowing red/orange moving accross the sky in a north-east direction. +2011-08-23,45.7811111,-122.5322222,Battle Ground,WA,formation,180,Four bright, circular lights in formation of boomerang seen hoovering just above the trees, then disappeared. +2011-08-23,47.3075,-122.2272222,Auburn,WA,light,5,Really Fast light heading due South +2011-08-23,41.6005556,-93.6088889,West Des Moines,IA,triangle,15,One multi-lighted triangle-shaped UFO sighted over West Des Moines, Iowa at 9:25 PM on 08/23/2011 by two people driving home. +2012-08-23,38.7041667,-91.4372222,Hermann,MO,cigar,300,Cigar shaped UFO near Hermann, Missouri with "visit" the next night. +2012-08-23,40.3333333,-74.6008333,Plainsboro,NJ,fireball,10,2 fireball shapes over a farm in nj +2012-08-23,39.4125,-76.4638889,Perry Hall,MD,triangle,7200,Triangle shaped object with light, hovering over essex for 2 hours. ((NUFORC Note: Three planets in E sky?? PD)) +2012-08-23,42.865,-71.3744444,Londonderry,NH,other,60,Bullet shaped craft-- silent but fast +2012-08-23,40.735,-73.6883333,New Hyde Park,NY,fireball,10,Object flashing yellow orange green lights appeared, hovered, accelerated swiiftly and vanished +2012-08-23,41.4169444,-81.6061111,Garfield Heights,OH,light,180,Have been seeing orange lights in sky that flicker and go out. +2012-08-23,40.7811111,-73.2466667,Brentwood,NY,unknown,10,12 yrs old daughter and myself were sitting on front porch...watching planes...matching Satellites to ipad app Skywalk.....we saw an ob +2012-08-23,43.1547222,-77.6158333,Rochester,NY,changing,300,3 witness a bright star like light at first hover, and then transform into a multi-lighted object which went out of view. +2012-08-23,41.2586111,-95.9375,Omaha,NE,circle,60,An orange glowing ball the size of the moon was moving across the sky and split in to two and took off into the night sky! +2012-08-23,35.2269444,-80.8433333,Charlotte,NC,fireball,600,5 orange objects over Charlotte, two mins apart +2012-08-23,28.7027778,-81.3386111,Longwood,FL,light,1200,2 different flashing lights above longwood fl seen by 3 people . +2012-08-23,42.3583333,-71.0602778,Boston,MA,triangle,240,23AUG2012, 2030Hrs., Boston City Hall Plaza, Triangular Craft... +2012-08-23,42.3583333,-71.0602778,Boston,MA,triangle,240,Triangular Craft Over Boston City Hall Plaza, August 23, 2012, at Approx. 2030hrs… +2012-08-23,41.85,-87.65,Chicago,IL,fireball,30,Fireball of light for 30 seconds on the south end of Lake Michigan. +2012-08-23,33.5422222,-117.7822222,Laguna Beach,CA,formation,180,6-7 glowing red lights in the sky over Laguna Beach +2012-08-23,40.8258333,-74.2094444,Montclair,NJ,sphere,300,Orange flickering spherical object flys over Montclair NJ silently at steady speed & altitude. +2012-08-23,42.8666667,-106.3125,Casper,WY,light,600,Large gold glowing ball of light that flies west to east and disappears +2012-08-23,41.2411111,-77.0013889,Williamsport,PA,fireball,180,Orangish yellow orb seen by a friend and I. +2012-08-23,42.9633333,-85.6680556,Grand Rapids,MI,light,45,Not sure what i seen but it wasnt man made 1 +2012-08-23,47.0227778,-91.6705556,Two Harbors,MN,triangle,5,Driving on 61, I saw an orange light... almost triangle in shape over Lake Superior that was very noticeable and quickly faded within 5 +2012-08-23,42.4927778,-92.3427778,Waterloo,IA,fireball,30,One Fireball like object with an oscillating halo preceding it appeared at 9;05pm moving from South to North and another following the +2012-08-23,39.695,-79.1513889,Grantsville,MD,flash,3600,Hovering flashing lights over New Germany MD. +2012-08-23,40.975,-81.4083333,Uniontown,OH,fireball,105,I was in my upstairs bathroom looking out of the window and I saw what appeared to be a teardrop shaped fireball moving northwest throu +2013-08-23,40.0483333,-86.4691667,Lebanon,IN,light,3600,Bright white light seen from a distance with orange flashing lights +2013-08-23,42.135555600000004,-71.9705556,Charlton,MA,light,120,I was driving west on i90 and I saw a light in the sky I took out my phone and took a few shots it was 6:30 in the morning I have no cl +2013-08-23,41.6561111,-70.4166667,Marstons Mills,MA,sphere,120,I have once again seen the same craft again in the skies above Cape Cod, Ma.This will be my 4th report of seeing the same object. I +2013-08-23,41.8005556,-73.1216667,Torrington,CT,unknown,30,Star-like light moving at a very slow speed in a straight line +2013-08-23,42.1291667,-80.0852778,Erie,PA,cylinder,180,Cylinder ufo seems to be letting out round orbs in broad daylight. +2013-08-23,42.1291667,-80.0852778,Erie,PA,cylinder,73,Cylinder object floats over no noise +2013-08-23,37.948055600000004,-122.0597222,Pleasant Hill,CA,other,1200,Ok this is exciting for me so I will try to keep the facts straight.Aprox. 20 min ago I was looking up at the sky when I noticed a +2013-08-23,32.8794444,-111.5663889,Eleven Mile Corner,AZ,unknown,20,Observed large, shimmering, translucent shape in daylight sky over Arizona. +2013-08-23,44.2619444,-88.4152778,Appleton,WI,flash,1800,3 white flashing lights moving east then west twice and disappeared in the western sky. +2013-08-23,36.7477778,-119.7713889,Fresno,CA,light,120,Two lights of differnt size and brightness traveled in differnt directions and faded out. +2013-08-23,40.3369444,-104.9116667,Johnstown,CO,circle,10,3 white circle objects. +2013-08-23,40.3369444,-104.9116667,Johnstown,CO,light,5,Brilliant flashing light giving off a star affect traveling at an incredable rate of speed, from north to south +2013-08-23,41.6361111,-70.9347222,New Bedford,MA,unknown,300,Bright changing red and white light hovering +2013-08-23,44.0886111,-87.6575,Manitowoc,WI,light,300,UFO Bright light dissipated than vanished out of thin air +2013-08-23,33.4669444,-117.6972222,Dana Point,CA,formation,600,Second Sighting of orange lights over OC +2013-08-23,33.7455556,-117.8669444,Santa Ana,CA,light,1200,Lights, dripping metal then gone in the flash of a shooting star. +2013-08-23,37.9886111,-84.4777778,Lexington,KY,light,900,Big star shaped light that went across the sky and went up till it disappeared. +2013-08-23,39.9241667,-83.8088889,Springfield,OH,fireball,60,Fireball inside a vertical triangle. +2013-08-23,39.9241667,-83.8088889,Springfield,OH,light,60,Low and slow cruising white ball of light fades to orange then disappears. +2013-08-23,41.5236111,-90.5775,Davenport,IA,sphere,180,Fiery orbs/ spheres seen on two seperate occasions. +2013-08-23,43.6413889,-70.2413889,South Portland,ME,fireball,120,On 8/23/13 at 22:45 my co-worker and I witnessed 2 Orange balls of light heading in a southerly direction in unison. altitude was rough +2013-08-23,41.3958333,-72.8972222,Hamden,CT,circle,1020,For several minutes we watched many red/orange objects fly slowly and low across the sky. +2013-08-24,38.4494444,-78.8691667,Harrisonburg,VA,light,30,Orange orbs seen in Harrisonburg +1970-08-24,39.9536111,-74.1983333,Toms River,NJ,sphere,600,Sphere hovered over neighbors house; possible entity sighting. 500 Lights On Object0: Yes +1986-08-24,36.5858333,-79.3952778,Danville,VA,triangle,10,I had just left work and was visiting friend, while approaching their condo i was walking up steep hill >(leaning forward), bright ligh +1989-08-24,38.6675,-77.0286111,Accokeek,MD,unknown,300,While traveling on the same road for three consecutive nights, at about the same time each night, all power on my vehicle suddenly stop +1990-08-24,36.9741667,-122.0297222,Santa Cruz,CA,other,5,4 dim lights lt orange in color flying extremely low just above redwood tree line totally silent +1990-08-24,42.2347222,-88.9488889,Cherry Valley (Outside Of),IL,triangle,7200,8/24/1990 cherry valley,il. triangle observed for approx. 15min. then next thing sitting in car parked on side of road missing 2hrs. +1992-08-24,25.6666667,-80.3083333,Pinecrest,FL,disk,2,08/24/92 at 23:00 in Pinecrest FL. wife and I were out on our pooldeck and saw a sauser like object +1994-08-24,44.4258333,-69.0069444,Belfast,ME,triangle,1200,Scared to death at a city park. Overlooking Belfast Harbor +1997-08-24,33.8302778,-116.5444444,Palm Springs,CA,cigar,10,Cigar shaped craft in high heavens bewilders mother and son. +1997-08-24,45.3038889,-93.5669444,Elk River,MN,triangle,60,it was three green lights in the shape of a tryangle and this took place at night, and these 3 lights flashed and then it moved to a d +1997-08-24,35.3597222,-79.78,Biscoe,NC,changing,15,while standing outside my car in front of food store, a huge metal-grey oblong unidentifiably-shaped object suddenly soared over the fr +1998-08-24,29.7630556,-95.3630556,Houston (5 Miles South Of),TX,light,120,Red Light traveling N/E along the Hardy Tollway. While the light was red, a blue light, then green was visible next to the red light +1998-08-24,35.0844444,-106.6505556,Albuquerque (Outside Of),NM,triangle,10,My family and I were driving through the United States, and my father took a back road...and we stopped the car to take pictures of the +1998-08-24,42.125,-72.75,Westfield,MA,triangle,1200,In the summer of 98, my nephew had come into my third floor apt and said Uncle Ed you have got to see this .We went outside and we +1998-08-24,38.9338889,-76.8969444,Landover (Raljon),MD,diamond,20,Sitting in the end zone at Jack Kent Cooke stadium, over my right shoulder noticed dark diamond with rounded corners come up over the +1999-08-24,39.5297222,-119.8127778,Reno,NV,circle,10,object moved west-northwest for about 10 sec. very white color, sparks flew from behind +1999-08-24,37.3022222,-120.4819444,Merced,CA,changing,60,This large craft appeared above our office this morning. Within its short duration, the craft reduced almost all of our sunlight. App +1999-08-24,38.9736111,-92.7430556,Boonville,MO,other,900,We noticed an object suspended in the air at dusk. Object remained stationery for a time. The object then moved vertically and disappea +2000-08-24,42.865,-71.3744444,Londonderry,NH,oval,1200,Star like oject flashing was seen in Northwest Sky in Londonderry, NH +2000-08-24,48.5619444,-122.3969444,Bow,WA,fireball,2,fireball with a tail streaking WSW really close and fast +2001-08-24,47.4830556,-122.2158333,Renton,WA,fireball,1,Saw a Fireball at 9:00 pm sharp north of Sea-Tac Airport. +2001-08-24,43.3838889,-70.5452778,Kennebunk,ME,formation,120,Trio of 'craft' in formation, dots of lights. +2001-08-24,34.5036111,-93.055,Hot Springs,AR,light,120,We saw a bright lght that made no sound when it flew off quckly. +2001-08-24,42.2833333,-71.35,Natick,MA,oval,120,i saw a silvery colored object in the sky... +2001-08-24,44.1316667,-70.4936111,Oxford,ME,light,120,A stationary object stood for hours the night sky. It had three flashing lights, yellow, green and red. +2002-08-24,26.9616667,-82.3527778,Englewood,FL,light,52623200,bright stars, moving erratically, over the Gulf of Mexico +2002-08-24,41.5933333,-87.3463889,Gary,IN,circle,5,Large Dark Circular Object Hovering Over Highway +2002-08-24,30.3319444,-81.6558333,Jacksonville,FL,circle,60,Objects were moving eraticly I'm not sure what I saw. Hopefully weather balloons +2002-08-24,35.9258333,-85.4641667,Sparta,TN,circle,180,Message: beauty of the flesh creates power this is aliens addiction and our mystery, why we are alone. +2002-08-24,33.0888889,-96.8861111,The Colony,TX,disk,120,My daughter and I observed a bright disk shaped object flying over north Texas today. +2002-08-24,40.0791667,-75.3019444,Conshohocken,PA,disk,120,Purple and green, covered in lights. +2002-08-24,41.5733333,-87.7844444,Tinley Park,IL,circle,1200,aircraft hazard +2002-08-24,47.6063889,-122.3308333,Seattle,WA,other,3,Yellow-white dot of light moving fast over Queen Anne Hill +2002-08-24,38.5816667,-121.4933333,Sacramento,CA,unknown,240,Very bright Orange Pulsing Light Suddenly Vanishes in Skies Near Sacramento +2002-08-24,45.4983333,-122.4302778,Gresham,OR,flash,300,Fast flying strobe, changing directions and speed. +2003-08-24,34.0094444,-118.1044444,Montebello,CA,fireball,180,A very bright red light appears and disapears in three minutes after just huvering in the sky. +2003-08-24,34.0094444,-118.1044444,Montebello,CA,light,900,The large red light moved accross the sky, and stopped on the north side of our home. Affter about 15 min. it just vanished. +2003-08-24,32.8722222,-116.4175,Mt. Laguna,CA,light,300,they where blue lights very high in the sky, may have even been in space! +2003-08-24,40.7141667,-74.0063889,New York City (Staten Island),NY,flash,720,bronze sphere, flashed silver, looked like a black horizontal line when flash turned off. moved in straight line across sky. +2003-08-24,34.0625,-118.1219444,Monterey Park,CA,circle,480,FIVE RED BRIGHT LIGHTS IN A CRICLE RISE SLOWLY THEN DISAPPER +2003-08-24,48.2325,-101.2958333,Minot,ND,oval,5,Oval object with 3 lights flew over town. +2003-08-24,41.2338889,-96.3533333,Venice,NE,flash,3,Flash explanation +2003-08-24,41.2338889,-96.3533333,Venice,NE,light,3,A BRIGHT YELLOW BURST of light 3" in diameter - then a small white light +2003-08-24,42.9072222,-70.8125,Hampton Beach,NH,disk,1,came ino view and then vanished +2003-08-24,43.4552778,-76.5108333,Oswego,NY,circle,45,On Sunday August 24th at aprox. 10:15 AM eastern time mysely and 2 others observed a sequence of 9 bright white / silver circle shapes +2003-08-24,34.4208333,-119.6972222,Santa Barbara,CA,disk,900,My family and I observer a silver disk shaped object moving in a straight line turning end-over-end. +2003-08-24,40.6377778,-74.4513889,Watchung,NJ,circle,180,I saw two circular silver/white round objects very high in the sky that did not behave like conventional aircraft. +2003-08-24,42.3241667,-83.4002778,Westland,MI,disk,240,talking with freinds on drive way we saw a disk shaped object +2003-08-24,46.2652778,-96.6055556,Wahpeton,ND,light,15,AN ORANGE LIGHT THE SIZE OF A STAR IN THE SKY THAT FLASHED, LEFT, CAME BACK AND LEFT FOR GOOD +2003-08-24,42.5375,-71.5125,Littleton,MA,sphere,90,Silver White radiant Pulsating Sphere Streaks & stops in Sky 8/24/03 3:15 PM Littleton Mass. +2003-08-24,47.8555556,-121.9697222,Monroe,WA,fireball,5,Oval fireball, bright white and blue-green, with trailing tail, comes down swiftly at steep angle. (Nuforc Note: Meteor?) +2003-08-24,47.8555556,-121.9697222,Monroe,WA,fireball,5,Massive low altitude fireball speeding north over the horizon above Monroe, WA, at 16:00 on 8/24/03. +2003-08-24,40.8813889,-74.1136111,Garfield,NJ,light,900,Two specs, one on top of the other, moving south in tandem, the one on top blinking and makingd distance from the first. +2003-08-24,40.3041667,-74.1008333,Tinton Falls,NJ,circle,8,star shaped incredible rate of speed low whirring sound at night +2003-08-24,33.8444444,-117.7763889,Anaheim Hills,CA,light,4,It looked like the light from a satelite. +2003-08-24,41.31,-122.3094444,Mount Shasta (On),CA,light,2,Two occurrences of lights appearing to play leapfrog on eastern slope of Mt. Shasta +2003-08-24,34.0522222,-118.2427778,Los Angeles,CA,light,120,Red pulsing light above Los Angeles in August +2004-08-24,32.7152778,-117.1563889,San Diego,CA,light,9000,Bright objects seen for extended periods on cloudy night. +2004-08-24,30.3502778,-89.1527778,Long Beach,MS,light,180,The lights moved in reverse, forward, up and down. +2004-08-24,39.7391667,-104.9841667,Denver,CO,cylinder,60,Extremely bright small cylinder almost stationary in clouds abo e Denver. +2004-08-24,34.4777778,-83.7736111,Clermont,GA,light,5,I saw a bright multi-colored shape of light about 500 feet in the air that hovered then rapidly decended and vanished. +2004-08-24,36.3711111,-86.71,Millersville,TN,triangle,87,Triangular object encounters small plane in the night sky +2004-08-24,42.8244444,-99.7486111,Springview,NE,light,1200,Orange and white lights, moving quickly horizontally +2004-08-24,39.8494444,-75.3561111,West Chester,PA,triangle,300,Triangular craft, flashes of light +2004-08-24,34.9802778,-101.9183333,Canyon,TX,other,2280,Lights over canyon +2005-08-24,38.6780556,-121.175,Folsom,CA,cylinder,300,White cylinder craft dissapears and reappears right above us on Folsom lake in CA. 5 witnesses +2005-08-24,45.6388889,-122.6602778,Vancouver,WA,circle,900,I was driving south on andreson Rd when i seen 2 very bright objects in the sky.the sun had already set it look as if they where sp +2005-08-24,32.4366667,-111.2247222,Marana,AZ,other,6,3 red lights, rectangulare-like structure, non-moving, AZ +2005-08-24,34.4208333,-119.6972222,Santa Barbara,CA,changing,180,Fast craft transformed multiple times and dropped off something that hovered in the sky. +2006-08-24,38.2541667,-85.7594444,Louisville,KY,sphere,10800,6 orbs moving in formation high above the atmosphere +2006-08-24,34.2572222,-118.6002778,Chatsworth,CA,sphere,1200,very large bright twinkling stationary light . Stayed for 20 minuets. +2006-08-24,36.2083333,-115.9830556,Pahrump,NV,cigar,5,2 of these objects looked to be chasing or following each other, they were as low as the speed limit sign as i was driving down the str +2006-08-24,34.6086111,-98.39,Lawton,OK,sphere,540,dark sphere east of lawton moved northeast after a short duration +2006-08-24,41.5066667,-90.515,Moline,IL,cylinder,1200,The day was clear with high alto stratus.This happened at the Quad-city skyraiders model aircraft field and about six witness.The runwa +2006-08-24,42.3266667,-122.8744444,Medford,OR,flash,30,Unidentified Falling Object - Not Meteor. +2006-08-24,44.6402778,-93.1433333,Farmington,MN,flash,1,Explanation for 8/24/06 Flash (*please do not post, this is not a report*) +2006-08-24,44.6402778,-93.1433333,Farmington,MN,flash,1,Brilliant green flash sighted. ((NUFORC Note: Probable hoax from student, we believe. PD)) +2007-08-24,28.9538889,-95.3594444,Freeport,TX,oval,1800,Surfside, Texas Oval bright white. UFO glowing with heat dispersing from object. No sound. I was awaken by an intense white beam. +2007-08-24,39.535,-119.7516667,Sparks,NV,formation,600,Group of daytime lights observed in Sparks. +2007-08-24,41.3830556,-71.6422222,Charlestown,RI,disk,60,UFO darting football field length jumps before skingshoting away +2007-08-24,48.0152778,-122.0625,Lake Stevens,WA,sphere,600,round object in day time sky above clouds ~ 10ꯠ to 20ꯠ feeet hovering but moving very slowly East to West about the size of a BB +2007-08-24,39.1141667,-94.6272222,Kansas City,KS,fireball,60,Seconds later the four objects became one and looked like a huge fireball falling fast from the sky. +2007-08-24,44.0288889,-88.1627778,Chilton,WI,rectangle,360,Rectangular object over the field +2007-08-24,35.6505556,-78.4566667,Clayton,NC,circle,20,Steady bright white ball of light moving above tree line and then disappears in cloudless sky +2007-08-24,37.9836111,-122.0741667,Pacheco,CA,circle,12,Bright moving circle of light over Pacheco, California +2008-08-24,46.9005556,-97.2108333,Casselton,ND,unknown,21600,Imitates aircraft; red, blue & amber lights in the evenings, same place every evening; there are others nearby. +2008-08-24,39.7683333,-86.1580556,Indianapolis,IN,unknown,30,((HOAX??)) Object changed shape and left a tree flew away-in a 3-4point array shape-like a hat or disc-was gone-30secs or less.1 +2008-08-24,40.8,-96.6666667,Lincoln,NE,cigar,1380,The UFO had blue and yellow alternating lights, cigar shaped, and suddenly changed directions. +2008-08-24,33.8883333,-118.3080556,Gardena,CA,cigar,180,White/Silver cigar shaped craft dissappears behind powerlines +2008-08-24,41.5261111,-87.8891667,Mokena,IL,oval,90,Oval object traveling at the speed of a small plane , there was no sound coing from this object, golden in color. +2008-08-24,35.3733333,-119.0177778,Bakersfield,CA,changing,420,orange light in sky in western sky +2008-08-24,41.1594444,-73.7652778,Chappaqua,NY,other,300,A small thin silver object moving very slowly then speeded off. +2008-08-24,47.6777778,-116.7794444,Coeur D'alene,ID,light,900,I saw what appeared to be a satellite, but then it stopped moving, then moved in several directions. +2008-08-24,42.5986111,-77.1541667,Branchport,NY,fireball,60,None of us has ever witeness a similar sight that lasted appoximately 1 min, and we have video - poor quality. +2008-08-24,42.0841667,-88.0130556,Rolling Meadows,IL,fireball,1200,2 Orange Fireball lights with random blinking pattern seen hovering 300 ft. above Woodfield Mall, Schaumburg Il +2009-08-24,32.7677778,-117.0222222,La Mesa,CA,circle,1800,Bright cingular light above San diego that has no sound, has very jerky movement, and is at a extremely high altitude. +2009-08-24,47.3075,-122.2272222,Auburn,WA,triangle,7200,Lights in the skies over Auburn, Wa - Changing geometric shapes. +2009-08-24,44.1858333,-88.4625,Neenah,WI,other,120,2 stars moving parallel +2009-08-24,40.4166667,-86.8752778,Lafayette,IN,circle,30,bright pulsating light +2009-08-24,42.3266667,-122.8744444,Medford (Outskirts),OR,light,420,Strange flashing whitish light that moved like a plane but then stopped and stood still for five minutes. +2009-08-24,29.4238889,-98.4933333,San Antonio,TX,oval,30,I witnessed a strange craft hovering not too far above me in the atmosphere and then it shot off at warp speed with no warning. +2009-08-24,37.6391667,-120.9958333,Modesto,CA,changing,15,it looked like three bright dots, small gap then three more bright dots. it was dancing gracefully a mile or two above the horizon. +2009-08-24,47.4705556,-122.3455556,Burien,WA,cigar,30,I saw a staionary white cigar shaped object that had a black outline with a "cloud" around it for 30 seconds when it disapeared. +2009-08-24,36.0505556,-93.5183333,Kingston,AR,cigar,240,three lights moving in unison with no sound +2009-08-24,39.5186111,-104.7608333,Parker,CO,light,15,Bright white light moving fast from south to north. +2009-08-24,38.4369444,-82.3772222,Proctorville,OH,other,60,Strange silent object with bright amber light flying over Huntington WV +2009-08-24,39.3291667,-82.1013889,Athens,OH,circle,3600,I was standing on our deck with my cousin and I first seen the glow of it in the sky, It was BRIGHT orange and it pulsated bright to li +2009-08-24,40.7141667,-74.0063889,New York City (Staten Island),NY,light,5,Large blue dot of light hovers over The Verrazzano Bridge, zooms upwards and disappears. +2009-08-24,39.2022222,-83.6116667,Hillsboro,OH,unknown,120,Three blinking lights, high in the night sky. Conducting what seemed like "games" of tag. Incredible speeds and incredible turns. +2010-08-24,43.6136111,-116.2025,Boise,ID,disk,120,Multiple sightings of very fast, bright, disk shaped flying things. +2010-08-24,36.3302778,-119.2911111,Visalia,CA,triangle,600,white object passed overhead moving southeast disappeared, within 10 minutes saw oddshaped white object traveling northward trajectory +2010-08-24,43.6222222,-116.2372222,Garden City,ID,flash,240,Quick Flashing Object Ascends Over Fair Grounds And Pulses Motionless In Sky +2010-08-24,33.4483333,-112.0733333,Phoenix,AZ,changing,60,bright white light then turned black moved very fast then gone +2010-08-24,32.7252778,-114.6236111,Yuma,AZ,fireball,600,strange glowing lights in sky +2010-08-24,36.1658333,-86.7844444,Nashville,TN,circle,1800,Silent White Orb UFO followed by other Unidentified Craft +2010-08-24,30.5019444,-90.7477778,Livingston,LA,triangle,300,triangle shaped UFO viewed over Livingston Loisiana heading due North +2010-08-24,40.5866667,-122.3905556,Redding,CA,light,25,Bright white light +2010-08-24,36.4336111,-99.39,Woodward,OK,light,60,A supersonic plane? +2010-08-24,47.3483333,-122.1136111,Covington,WA,light,14400,Extremely bright white light in the eastern sky from covington, wa, slow moving. ((NUFORC Note: Jupiter sighting. PD)) +2010-08-24,45.6388889,-122.6602778,Vancouver,WA,fireball,300,2 fireballs hovering and possibly landing. ((NUFORC Note: Date is flawed. We cannot reach the source of the report. PD)) +2011-08-24,35.3733333,-119.0177778,Bakersfield,CA,fireball,7200,I WAS SLEEPING IN MY BED TO BE AWAKING IN A PARALYZING STATE. I COULD NOT MOVE A BONE IN MY BODY. MY MUSCLES WERE NOT RESPONDING. I WAS +2011-08-24,46.7216667,-92.4591667,Cloquet,MN,light,37800,UFO scanning, in the sky. ((NUFORC Note: Possibly not a serious report. PD)) +2011-08-24,41.010555600000004,-72.4855556,Cutchogue,NY,triangle,300,large black triangular craft seen over Interstate 80 in north west New Jersey. +2011-08-24,34.4811111,-98.3827778,Geronimo,OK,light,3600,At 0550 on 23 August 2011, I observed a light in the ESE sky, approximatly 25 degrees above the horizon. At the time the moon was in a +2011-08-24,45.5236111,-122.675,Portland,OR,other,60,T-shaped,y-shaped,triangle,three lights,daytime. +2011-08-24,35.7719444,-78.6388889,Raleigh,NC,other,600,Pyramid shaped craft with random blinking lights on the points of it, rotating in all directions. +2011-08-24,41.4191667,-83.7408333,Tontogany,OH,circle,900,Large aircraft with bright white circular lights on its bottom half that hovered but could also move extremely fast +2011-08-24,40.7141667,-74.0063889,New York City (Brooklyn),NY,triangle,5,Large wing seen moving quickly over Brooklyn 08-24-11 +2011-08-24,47.1055556,-122.0444444,Wilkeson,WA,light,1200,Dim lights moving rapidly across sky +2011-08-24,38.9236111,-75.5780556,Harrington,DE,sphere,5400,Multiple UFO sighting with possible contact +2011-08-24,33.5225,-117.7066667,Laguna Niguel,CA,circle,30,Four Glowing Orbs +2012-08-24,42.4222222,-88.6136111,Harvard,IL,fireball,300,Fiery white orb in the sky. +2012-08-24,36.7477778,-119.7713889,Fresno,CA,formation,4,Formation of four lights traveling at an apparent fast rate of speed silently across the night sky. +2012-08-24,40.9008333,-73.3436111,Northport,NY,fireball,600,Large white orb of light hovering/slowly drifting across the sky +2012-08-24,43.0480556,-76.1477778,Syracuse,NY,cigar,180,Two different craft, broad daylight, shape and flight characterists inconsistent with any known aircraft +2012-08-24,42.0652778,-71.2483333,Foxborough,MA,rectangle,60,3 red lights move from straight line to triangle formation and back again quickly and silently +2012-08-24,43.6488889,-72.3197222,White River Junction,VT,circle,120,3 orange round objects moved in different directions coming from the wilder dam direction. Went up into the sky the mysteriously disap +2012-08-24,43.1636111,-73.0727778,Manchester (Near),VT,disk,300,Disk Shaped UFO Near VT Swamp +2012-08-24,38.5816667,-121.4933333,Sacramento,CA,disk,300,Video footage of a disk like object in the Sacramento night sky. +2012-08-24,41.4644444,-81.5088889,Beachwood,OH,other,120,Flying object with green/red triangle lights sighted low in skyline over Beachwood, OH at 8:30pm +2012-08-24,39.1072222,-76.5713889,Pasadena,MD,fireball,600,Two red flare looking objects floated up in the Eastern sky. They both began to move slowly to tne North at the same elevation. +2012-08-24,42.1680556,-88.4280556,Huntley,IL,diamond,3,Five orange lights in diamond pattern with no sound flew slowly directly over head +2012-08-24,42.9375,-70.8394444,Hampton,NH,chevron,600,7 bright orange objects flying from the beach towards Portsmouth NH. Moved slowly and all disappeared in the same spot in the sky +2012-08-24,35.6511111,-78.8338889,Holly Springs,NC,fireball,240,Two bright orange fireballs cross the sky from west to east moving slowly, below clouds, no sound. The first one stopped and could see +2012-08-24,33.0780556,-96.495,Clear Lake,TX,sphere,300,Houston, 8/24/12 at 10pm...I was in my backyard pool , when I noticed a very bright sphere falling fast from the west to east...it wa +2012-08-24,47.5302778,-122.0313889,Issaquah,WA,fireball,600,Two controlled fireballs over lake sammamIsh +2012-08-24,43.114444399999996,-71.1002778,Nottingham,NH,circle,300,Orange ball of light rises through woods over tree line, follwed west to northeast path then disapeared +2012-08-24,43.1547222,-77.6158333,Rochester,NY,sphere,3,Bright orange sphere, moved upwards, stopped for about 5-10 sec, then slowly, moved south, stopped & faded away. 3x within 60 minutes +2012-08-24,42.2711111,-89.0938889,Rockford,IL,circle,1800,Strange Orange Light Balls Over Rockford Illinois +2012-08-24,35.6008333,-82.5541667,Asheville,NC,circle,180,Round orange light, silent and slow moving, suddenly changes direction and shrinks to a pinpoint, disappears. +2012-08-24,41.5894444,-88.0577778,Lockport,IL,circle,240,No noise and nothing machanical about this orange object +2012-08-24,43.5572222,-73.6552778,Bolton Landing,NY,circle,120,4 orange round shaped craft flying over Lake George and ascending into night sky very fast, witnessed by two people sitting on a dock +2013-08-24,35.2269444,-80.8433333,Charlotte,NC,light,600,My husband and I saw silent orange orbs of light in the sky. +2013-08-24,35.6527778,-97.4777778,Edmond,OK,other,900,Craft comes out of lake, hovers over me then shoots up. Then converse with 3 human like beings. +2013-08-24,35.6527778,-97.4777778,Edmond,OK,oval,300,Underwater Light appeared shot up out of a lake and hovered then disappeared. +2013-08-24,33.6016667,-90.7736111,Shaw,MS,circle,7200,Looked Like A Low Star then dotted off over tree line +2013-08-24,39.5522222,-84.2333333,Springboro,OH,fireball,30,Driving north saw fireball hovering over tree line in front of us, fireball rose as we approached took off towards the west while risin +2013-08-24,36.4513889,-86.5380556,Cottontown,TN,disk,5400,Dome-shaped saucer took 1hr and 30 mins to move across the sky. +2013-08-24,40.1205556,-75.1183333,Abington,PA,circle,1200,Something small, circular and white very slowly moved from the north down the sky toward the flight paths to Philadelphia Airport. +2013-08-24,39.7683333,-86.1580556,Indianapolis,IN,changing,240,Just saw a very strange sight. A group of bright blue and neon orange orbs floated over my house. They seemed to be at least 15ꯠ f +2013-08-24,42.1616667,-79.3919444,Bemus Point,NY,circle,3600,Round white and red lighted object over Chautauqua Lake, August 24, 2013 +2013-08-24,42.0897222,-76.8080556,Elmira,NY,sphere,180,Reddish/orange spheres seen over NY southern Tier 8/24/13 +2013-08-24,41.1413889,-73.3583333,Westport,CT,sphere,600,There were bright orange lights on the object that turned off within 10 minutes. +2013-08-24,43.3238889,-88.1666667,Jackson,WI,formation,600,String of 15 orange balls observed in Jackson, WI in the evening of Aug. 24, 2013 +2013-08-24,41.0816667,-74.5927778,Ogdensburg,NJ,oval,600,Orange fireball that disappeared then saw black saucer flying away over horizon. +2013-08-24,41.0180556,-75.9952778,Drums,PA,fireball,40,4 slow moving extremely bright fire balls moving across the sky from the SW to NE over Drums for about 30 seconds +2013-08-24,43.0055556,-88.8072222,Jefferson,WI,light,300,Three orange glowing objects flying over Jefferson, Wisconsin +2013-08-24,44.4752778,-70.1886111,Livermore Falls,ME,light,180,Two Orange/Reddish Craft moving slowly across Livermore Falls, Maine, blinking on and off +2013-08-24,47.6447222,-122.6936111,Silverdale,WA,light,1800,Orange Orbs in night sky +2013-08-24,40.4333333,-76.1125,Bernville,PA,light,30,At 9:00 pm witnessed white light hovering with no sound. Lights dim on and off.Object vanished abruptly +2013-08-24,44.9747222,-92.7566667,Hudson,WI,fireball,120,low flying fireball heading north over the HHS. +2013-08-24,42.6827778,-89.0186111,Janesville,WI,circle,30,Orange glow with kinda yellowish tint on bottom. +2013-08-24,36.4991667,-80.6075,Mt. Airy,NC,sphere,600,Yellowish/white silent spere seen NW North Carolina, Surry County. +2013-08-24,36.1658333,-86.7844444,Nashville,TN,fireball,480,Moving orange, round lights in the sky... 5 to 6 minues... 35 to 45 objects in random and changing formations. Silent +2013-08-24,40.7141667,-74.0063889,New York City (Bronx),NY,circle,1200,50 bright lights move fast and stop +2013-08-24,40.7141667,-74.0063889,New York City (Bronx),NY,other,180,They were definetly not stars or planes ect. +2013-08-24,33.9163889,-78.1613889,Oak Island,NC,light,600,Five orange lights moving across the sky. +2013-08-24,34.0522222,-118.2427778,Los Angeles,CA,circle,30,Over North Hollywood CA,Aug 24, 2013 Round Glowing Object darts across the Los Angeles sky like a speeding lantern. +2013-08-24,39.6761111,-89.7044444,Chatham,IL,circle,120,My son and I looking to the North, saw 3 circular orangeish/red objects moving quick smooth pace, Easterly towards the West. Objects w +2013-08-24,42.7044444,-73.9119444,Guilderland,NY,sphere,180,Two spherical objects were observed,they were each reddish orange, silent, and seen in the lower eastern sky. they moved in a straight +2013-08-24,40.8858333,-74.0438889,Hackensack,NJ,circle,480,5 bright white lights seen over North Jersey. +2013-08-24,37.7741667,-82.2377778,Belo,WV,light,180,Red orange lights in the wv sky +2013-08-24,39.9522222,-75.1641667,Philadelphia,PA,light,120,Single white light moving in plane filled sky. +2013-08-24,42.6333333,-71.3166667,Lowell,MA,light,600,Went into the sky and faded off as if going into space +2013-08-24,41.8011111,-88.0747222,Lisle,IL,circle,120,08/24/13, 21:35, lisle, il, circle shaped object with red below, two minutes. +2013-08-24,43.3766667,-72.3472222,Claremont,NH,circle,15,A large glowing object moves slowly then instantly disappears! +2013-08-24,41.6005556,-93.6088889,Des Moines,IA,formation,300,Orange Red Light Formations Over Des Moines, Iowa on August 24, 2013 at 10:00 p.m. +2013-08-24,41.1305556,-85.1288889,Fort Wayne,IN,circle,1800,2 circle bright white objects seen by 8 witnesses. +2013-08-24,41.1575,-81.2422222,Ravenna,OH,triangle,9000,10PM EST, Driving north on route 88 just passing SR5. I see 3 White lights hovering ahead moving south at a slow speed very low to gro +2013-08-24,36.1580556,-81.8355556,Seven Devils,NC,fireball,1500,230+ fireballs formed the shape of a Christmas tree and then split into 2 parallel lines of two groupings and continued from the east +2013-08-24,27.9011111,-81.5861111,Lake Wales,FL,fireball,20,Another fireball sighting in Lake Wales, FL +2013-08-24,38.8105556,-90.6997222,O'fallon,MO,sphere,1200,Seven orange orbs in the formation of the Big Dipper that individually hovered and moved across the sky acscending to the atmosphere. +2013-08-24,41.7255556,-87.825,Hickory Hills,IL,circle,30,Round fireball passing through the sky of Hickory Hills Illinois +2013-08-24,33.6,-117.6711111,Mission Viejo,CA,light,420,Four red lights floated up over Mission Viejo, CA. +2013-08-24,41.6638889,-83.5552778,Toledo,OH,light,600,3 lights in large triangle formation hovering and a 4th travelling west to east. +2013-08-24,39.36,-84.31,Mason,OH,light,600,Slowly moving orange lights in the sky. +2013-08-24,42.1861111,-86.3083333,Coloma,MI,sphere,90,I saw 3 Orange Spheres, with a Starburst effect about 500 feet AGL, heading due North, about 100 Knots Per Hour. +1949-08-25,47.17,-122.6013889,Steilacoom,WA,disk,900,AS A GIRL OF ABOUT NINE AND MY SISTER WHO WAS EIGHT AND OUR FATHER WERE DOWN AT THE WATER, AT DUSK SITTING AND LOOKING OUT, ALL ALONE. +1963-08-25,42.2769444,-72.4013889,Belchertown,MA,unknown,3600,Sighting occurred when I was 9 years old ... I was lying in bed , at night , when suddenly , a bright blue light lit up the room , as i +1967-08-25,46.9141667,-116.8330556,Princeton,ID,disk,1800,Flying Saucer: August 1967-A Teen's Observation +1967-08-25,33.9488889,-118.4447222,Playa Del Rey,CA,oval,300,Oval light (the size of a five story building) sighted from shore had no reflection on water, no sound and traveled at breakneck speeds +1972-08-25,33.5861111,-85.9183333,Coldwater,AL,triangle,360,seen in 1972 and seen later too +1972-08-25,39.1619444,-84.4569444,Cincinnati,OH,diamond,2700,Stationary , diamond shaped object , only visable thing in the sky between 4 and 5 pm +1974-08-25,40.3669444,-80.5413889,Colliers,WV,disk,180,There was a lighted object in the summer sky; I knew it couldn't be ours. +1976-08-25,32.2411111,-92.7158333,Jonesboro,LA,triangle,1800,Triangular craft w/ flashing lights in 1976 +1978-08-25,38.4405556,-122.7133333,Santa Rosa,CA,oval,20,Large glowing orange oval observed while driving south from Windsor, Ca. towards Santa Rosa on hwy 1. The object was moving slowly acro +1979-08-25,43.6008333,-83.1747222,Cass City,MI,disk,300,It happened out in the middle of nowhere and it lasted only five minutes. +1979-08-25,41.1238889,-100.765,North Platte,NE,other,12,Star gazing with a friend during meteror event we watch the stars. The background of the sky was midnight blue. Nearly 10:30 pm the b +1979-08-25,33.8080556,-84.1702778,Stone Mountain,GA,triangle,1200,While traveling along a country road one night from Snellville to Stone Mountain, we saw an aircraft slowly moving toward us. My husba +1985-08-25,40.1944444,-105.525,Allenspark,CO,light,60,An bright white light flashes 10 times. +1990-08-25,41.835,-87.8227778,Riverside,IL,rectangle,10,Rectangular shaped craft with two rows of three bright lights. +1993-08-25,32.5888889,-96.685,Wilmer,TX,light,1800,moch plane +1993-08-25,35.7111111,-78.6144444,Garner,NC,other,180,Flat square I only saw the bottom it was about 60 ft above my head +1994-08-25,40.7141667,-74.0063889,New York City,NY,egg,300,Observation of egg blimp shapped object in front of World Trade Center Towers, NY. Possibly a second sighting. +1994-08-25,40.7141667,-74.0063889,New York City,NY,egg,60,no light and moved very slowly +1994-08-25,41.0255556,-81.73,Wadsworth,OH,sphere,30,It was a cloudless, bright day. As I was getting into my Chevy Cavalier I saw this flat black bowling ball shaped thing with a ring aro +1994-08-25,41.5886111,-83.8911111,Swanton,OH,other,600,Football shaped object seen over house in country along with three objects hovering over road. +1994-08-25,33.1708333,-84.5805556,Alvaton,GA,triangle,600,We saw a bright light in the sky that ended up hovering directly above our car, was triangular, chased us before it left us alone. +1995-08-25,42.9033333,-78.755,Cheektowaga (Near),NY,unknown,6,bright ufo lights up night in new york near buffalo +1995-08-25,41.6555556,-74.6897222,Monticello,NY,circle,5,Copied written report: Physicist/astronomer sees huge, pulsing fireball to west of New York City. +1995-08-25,40.4405556,-79.9961111,Pittsburgh,PA,unknown,45,object travels very fast horizonally and then shoot straight up at 90 degree angle +1995-08-25,41.1827778,-80.7655556,Niles,OH,disk,15,I had just gone to bed when I noticed bright lights coming towards my home. I immediately got up and went towards the window and saw t +1995-08-25,33.7480556,-86.8086111,Morris,AL,other,40,There was a roundish object with glowing, shifting lights lining the edges of the craft as it hovered silently above the trees. +1995-08-25,42.1166667,-71.8652778,Oxford,MA,light,600,4 Balls of Light, changed color followed by search light scanning woods and back yard. +1995-08-25,42.0775,-78.43,Olean,NY,triangle,300,low, slow moving Triangular shaped craft with lights on pionts of triangle and one in center on bottom sighted +1995-08-26,42.3313889,-83.0458333,Detroit,MI,other,60,While getting ready to walk to the store for cigarettes late on August 25, 1995, I opened my door and my dog got out . I saw lights th +1997-08-25,34.0922222,-117.4341667,Fontana,CA,triangle,15,My brother and I saw 3 lights forming a shape of a triangle +1998-08-25,36.5663889,-121.9455556,Pebble Beach,CA,unknown,600,Unsual light seen throughout house late at night. +1998-08-25,48.2766667,-116.5522222,Sandpoint,ID,disk,10,While traveling north on rapid lightning, my husband, myself and a family friend observed a bright silver disc hovering motionless in t +1999-08-25,34.5036111,-93.055,Hot Springs,AR,unknown,5,At time stated above I was out looking almost strate up in the aera of Jupter when I saw this very bright light moveing north to south +1999-08-25,37.3394444,-121.8938889,San Jose,CA,unknown,5,Driving to work on HW 680, today, I and a friend who was in her own car saw an irridescent green streak, very bright against the blue s +1999-08-25,34.2011111,-118.5355556,Reseda,CA,sphere,1800,star-like objects traveling east to westᅎ seconds apart,high alt.,high speed, no tails or trails. +1999-08-25,38.6858333,-121.0811111,El Dorado Hills,CA,flash,2,My daughter and I saw a colorful streak or flash across the sky at aprox. 8.45 a.m. I asked her what she saw and she discribed the sam +1999-08-25,39.0719444,-85.2519444,Versailles (East Of),IN,sphere,180,The third time the orange sphere appeared, it brought with it, a friend, they moved across the sky together. +2000-08-25,37.7097222,-87.8127778,Waverly,KY,light,240,An object that produced yellow/orange and red bursts of light, moved in a zig-zag pattern at near light speed. +2000-08-25,47.7625,-122.2041667,Bothell,WA,other,1800,Unusual air traffic +2000-08-25,41.4611111,-71.7780556,Hopkinton,RI,light,120,Unexplained light +2000-08-25,36.175,-115.1363889,Las Vegas,NV,flash,900,Four or five identical bluish-white flashes. +2000-08-25,44.1002778,-70.2152778,Lewiston,ME,circle,3600,Third clear night UFO sighting observed in Western sky with red and greenish blinking lights, Lewiston, Maine. +2000-08-25,40.3977778,-105.0744444,Loveland,CO,disk,120,saucer or disklike object with white strobe on top and orange, rotating band around circumference. +2000-08-25,38.4772222,-89.0433333,Walnut Hill,IL,triangle,120,while outside on my deck i noticed a noise to the east and when i looked up there was a object just sitting there +2001-08-25,40.7683333,-73.7775,Bayside,NY,unknown,120,i didn't see crafts but i saw two distinct lights. changing shape on the wall and ceiling of my bedroom. all shades were drawn and no +2001-08-25,35.1677778,-114.5722222,Laughlin,NV,unknown,15,Swarm of orange lights over Laughlin, NV +2001-08-25,47.9544444,-117.4758333,Deer Park,WA,light,5,The object went diagonally downwards, changed from a white, to a dull green, to a dim light blue, to finally a dark yellow, it faded. +2001-08-25,39.9369444,-120.9461111,Quincy,CA,fireball,2,Blueish/Green ball of light lasted for 2 seconds moving very fast toward the West. +2001-08-25,38.5816667,-121.4933333,Sacramento,CA,fireball,2,same as Aug. 25 - Quincy, CA +2001-08-25,47.6480556,-121.9127778,Carnation,WA,disk,120,Saucer shaped aircraft with lights going around the rim. Took off at an angle. +2001-08-25,38.6105556,-122.8680556,Healdsburg,CA,triangle,300,triangular mass moving from west to east in the night sky, at first thought it was 3 satillites moving together. +2001-08-25,35.7686111,-106.6916667,Jemez Springs,NM,light,3600,High altitude, very rapidly moving lights. +2001-08-25,43.8377778,-123.2377778,Lorane,OR,circle,90,Round glowing blue object moving very fast, changing directions twice +2001-08-25,47.4236111,-120.3091667,Wenatchee,WA,circle,15,Green, circular object moving from NW to NE across the Western Hemispere night sky, being visible for 5-15 seconds +2001-08-25,34.1361111,-117.8644444,Glendora,CA,egg,1140,I WAS WATCHING THE MOON WITH MY BINOCULARS 80X100 (PARKS)WITH A TRIPOD IN A DRIVWAY VERY QUIET LIGHTING CLEAR SKIES WHEN ALL OF A SUDDE +2001-08-25,40.4925,-121.8880556,Shingletown,CA,triangle,240,3 points of light travel across California sky in triangle formation - witnessed by 2 +2001-08-25,48.2933333,-122.6419444,Oak Harbor,WA,light,1800,Lights on Whidbey Island +2002-08-25,33.3527778,-111.7883333,Gilbert,AZ,circle,2700,i have seen these red lights over az that have random blinks and suddenly dissapear. no actual craft shape, just lights. +2002-08-25,31.7586111,-106.4863889,El Paso (Over Juarez, Mexico),TX,circle,180,about 9:50 pm while seating on steeps of front porche facing south I observe a light above Juarez mx just like a plane landing and as w +2002-08-25,32.948055600000004,-96.7294444,Richardson,TX,disk,30,Solid white disc traveling extremely fast, going due south. +2003-08-25,40.4166667,-86.8752778,Lafayette,IN,flash,60,Fast streak of light over deserted road +2003-08-25,28.5380556,-81.3794444,Orlando,FL,light,420,glowing pinkish light, thought to be mars, hovered and then dropped from the sky +2003-08-25,39.2191667,-121.06,Grass Valley,CA,triangle,10,A bright flash of lightning the craft appeared while sitting in my missing daughters room, contemplating where she might be..;..the +2003-08-25,40.2425,-82.8591667,Sunbury,OH,triangle,900,Large, red triangle over Delaware County. +2003-08-25,34.6391667,-120.4569444,Lompoc,CA,disk,300,A shiny, tumbling disk was seen moving slowly to the southeast. +2003-08-25,33.7222222,-116.3736111,Palm Desert,CA,light,15,Three fast moving lights that changed position frequently. +2003-08-25,33.4483333,-112.0733333,Phoenix,AZ,unknown,960,i was flying near pheonix when a craft flew right in front of my airplane for 16 min +2003-08-25,38.7522222,-121.2869444,Roseville,CA,triangle,5,Triangle shape traveling at extreme speed across the night sky, no noise at all. +2003-08-25,36.1538889,-95.9925,Tulsa,OK,triangle,120,Triangular Craft in Sky Last Night +2004-08-25,33.1580556,-117.3497222,Carlsbad,CA,disk,10,I was driving south on Interstate 5 when I noticed a silver disc shaped craft in the sky about one mile ahead just past the Palomar Air +2004-08-25,31.9972222,-102.0775,Midland,TX,oval,660,objects moved very fast& then very slow at each other, & kept stopping for long periods of time, then vanished +2004-08-25,39.0483333,-95.6777778,Topeka,KS,cylinder,240,Bright cylinder seen flying over Topeka during storm. +2004-08-25,32.7994444,-97.2688889,Haltom City,TX,light,180,DFW Tx Alliance Airport area 2 lights moving and dancing in sky +2004-08-25,41.2794444,-72.5988889,Madison,CT,triangle,7200,Sparklers +2004-08-25,29.9319444,-90.3663889,Luling,LA,circle,2700,Small like a star but changes colors, blue, red, orange, green ((NUFORC Note: We suspect a celestial body. PD)) +2004-08-25,34.3319444,-92.9130556,Social Hill,AR,cigar,15,Cigar Shape flying north of the 92 mm on I-30 with a plane following. +2004-08-25,32.7994444,-97.2688889,Haltom City,TX,light,2,another one-Alliance/DFW Tx +2004-08-25,38.1866667,-91.9469444,Vienna,MO,triangle,900,Large triangle shape minicing stars hovering close to ground ((NUFORC Note: Triplet of satellites, we suspect. PD)) +2005-08-25,38.2097222,-84.5588889,Georgetown,KY,triangle,180,yellowish-orange ball that turns into red triangle (3 lights) +2005-08-25,39.3641667,-74.4233333,Atlantic City,NJ,other,60,Strange metailic object over a NJ shore community bay. +2005-08-25,44.5536111,-70.5513889,Rumford,ME,triangle,600,On august 25th i was cooking some steak on my deck, when i agzed toward the sky and saw a large triangular craft bordered with lights, +2005-08-25,36.0397222,-114.9811111,Henderson,NV,disk,300,Three stationary saucer shaped objects over Sunrise Mountain, east side of Las Vegas, NV, August 2005. +2005-08-25,37.9363889,-90.7877778,Potosi,MO,unknown,240,Object falling through earths atomsphere with large trail of orange behind it. +2005-08-25,40.7402778,-75.31,Nazareth,PA,light,120,Light Makes a Very Fast 180 to Follow After Another Light +2005-08-25,40.7791667,-72.9158333,Brookhaven,NY,sphere,3,Wierd neon green object. +2006-08-25,40.7608333,-111.8902778,Salt Lake City,UT,circle,480,Salt Lake City 3 Saucers Of Yellow Blue White Light +2006-08-25,46.2858333,-119.2833333,Richland,WA,light,60,A small silvery object seen go 0-5000 mph in a blink of an eye, in Richland Washington. +2006-08-25,37.3394444,-121.8938889,San Jose,CA,other,300,Irregularly shaped, rotating was observed over busy highway. +2006-08-25,38.4897222,-90.8166667,Gray Summit,MO,triangle,300,triangler craft spotted near gray summit, Missouri. +2006-08-25,43.2755556,-82.6211111,Croswell,MI,other,60,very low flying, silencing, and silent UFO. +2006-08-25,34.2255556,-77.945,Wilmington,NC,circle,300,My two friends and I were on Wrightsville Beach, NC. We had been observing the stars, the ocean, and my two friends were using their me +2006-08-25,30.4247222,-95.4797222,Willis,TX,unknown,2700,Bright flashing star like object hovering in the sky. +2007-08-25,34.5044444,-97.1191667,Davis,OK,unknown,7200,Davis, OK......light hovers silently over us.. +2007-08-25,32.7286111,-94.9422222,Gilmer,TX,triangle,300,Triangluar lighted craft in night sky. +2007-08-25,28.5380556,-81.3794444,Orlando,FL,light,10,Returning from vacation I saw a flourescent green object fall from the sky. ((NUFORC Note: Possible meteor? PD)) +2007-08-25,42.4927778,-92.3427778,Waterloo,IA,light,900,White light, moving in different directions/speeds and stopped in the night/morning sky. +2007-08-25,43.9011111,-85.8516667,Baldwin,MI,fireball,60,Orange Fireball object just above tree line in Western Michigan. +2007-08-25,43.073055600000004,-89.4011111,Madison (North Of),WI,light,10,Madison Sighting 8/25/07 +2007-08-25,46.3775,-120.3075,Toppenish (15 Mi South Of),WA,rectangle,10,Driving south on hwy 97 about 15 miles from Toppenish,Wa. A very dark area when I observed suddenly a bright green object falling strai +2008-08-25,39.7294444,-104.8313889,Aurora,CO,egg,300,UFO seen in backyard +2008-08-25,38.6272222,-90.1977778,St. Louis,MO,disk,2,Near light speed flying metallic shining energy charged saucer on a road to a city that is located between west and east bumblefudge +2008-08-25,40.7141667,-74.0063889,New York City (Bronx),NY,changing,7200,morphing/blimp/disc +2008-08-25,42.1155556,-75.9591667,Johnson City,NY,other,1200,Unknown object seen, followed by military helicopter with a picture of the chopper. +2008-08-25,42.3583333,-71.0602778,Boston,MA,light,600,Bright light in the sky +2008-08-25,32.2047222,-95.8552778,Athens,TX,triangle,8,Unkonwn object in the night sky emitting 4 dim lit lights in a triangular form +2008-08-25,42.2602778,-73.81,Athens,NY,teardrop,3600,Bright moving light in Athens, NY +2008-08-25,39.6411111,-85.1411111,Connersville,IN,light,6,Two lights moving at hig speeds no sound from north to south at night. +2008-08-25,41.85,-87.65,Chicago,IL,light,8,Ball of light hovering near Midway airport... +2009-08-25,37.9780556,-122.03,Concord,CA,rectangle,30,shooting star-like stops then a rectangular sivery metal ship appears going slow straight 400 ft in the air +2009-08-25,42.8583333,-70.9305556,Amesbury (Past),MA,triangle,20,Triangle shaped high speed (super sonic) we have military bases in area but don't ask them cilivians must have seen like truck drivers +2009-08-25,42.8583333,-70.9305556,Amesbury (Past),MA,triangle,20,unknown space craft est. speed over what ever our rockets can do because from where a plane was sighted in southwest sky approx. 50-60 +2009-08-25,34.2541667,-110.0291667,Show Low,AZ,unknown,60,This sighting was approx. 100-150 feet away from observer. Please note second sighting 1.5 month later. +2009-08-25,44.5069444,-92.9052778,Cannon Falls,MN,light,3600,Blinking light in the sky. ((NUFORC Note: We suspect a celestial body…a star or a planet. PD)) +2009-08-25,22.2119444,-159.4122222,Kilauea,HI,other,12,The object appeared to be eight lights in a bar to the northeast. It was approximately 15 or 20 degrees above the horizon. +2009-08-25,38.6172222,-121.3272222,Carmichael,CA,light,35,Saw three star-like objects moving through the sky, two moving together, one independent. +2009-08-25,38.6172222,-121.3272222,Carmichael,CA,light,35,Saw three star-like objects moving through the sky. +2009-08-25,33.6083333,-117.7444444,Aliso Viejo,CA,light,35,A very bright white light moving slowly West from the South, South East of Aliso Viejo California. +2009-08-25,36.9086111,-116.7583333,Beatty,NV,light,15,Bright, unblinking low-altitude light in motion north of Beatty, NV. +2009-08-25,33.8752778,-117.5655556,Corona,CA,rectangle,2,My husband, myself and my eleven year old were stargazing at the planet Jupiter in our southern night sky. As my husband was positioni +2009-08-25,40.76,-112.7766667,Delle,UT,flash,600,Bright strobing light in the sky near Delle UT +2009-08-25,41.5380556,-72.8075,Meriden,CT,fireball,2,i seen round fireball.seen it for 5 seconds.thought it might be meteor until 2 days later at 4pm their were 5 milatary +2009-08-25,44.9444444,-93.0930556,Saint Paul,MN,formation,120,strange lights in saint paul mn +2010-08-25,39.3641667,-74.4233333,Atlantic City,NJ,light,1200,Multicolored light in the sky. ((NUFORC Note: Possibly a "twinkling" star. PD)) +2010-08-25,38.4783333,-107.8755556,Montrose,CO,sphere,3600,round with changing colors, stayed in one place for an hour. ((NUFORC Note: Star or planet?? PD)) +2010-08-25,35.1225,-85.3438889,Signal Mountain,TN,disk,900,I just want some official answers of what might this object be, and what it could not be. +2010-08-25,34.8297222,-82.6016667,Easley,SC,other,30,Vshape object during Daylight hours spotted. +2010-08-25,38.7538889,-95.8347222,Burlingame,KS,triangle,7200,For a few days now, I have witnessed 2 triangular bright objects hovering for at least 2 hours just south west of Burlingame, Ks city l +2010-08-25,36.1658333,-86.7844444,Nashville,TN,fireball,1800,Bright red/ orange lights over ashland city/ nashville disappears behind trees. +2010-08-25,41.6572222,-87.68,Blue Island,IL,circle,600,Possible UFO over Blue Island, Illinois +2010-08-25,43.2341667,-86.2483333,Muskegon,MI,circle,180,We saw an object round in shape appear in the SW sky that traveled NE ((NUFORC Note: Overflight of ISS. )) +2010-08-25,38.6366667,-90.0255556,Caseyville,IL,fireball,2,HUGE reddish - orange fireball seen in Caseyville, IL +2010-08-25,43.1302778,-96.4538889,Hudson,SD,triangle,1800,this is a huge triangle shape ufo with one big light and three smaller lights +2010-08-25,40.6197222,-111.8094444,Cottonwood Heights,UT,sphere,300,A bright sphere like object that appeared out of nowhere. +2010-08-25,43.6630556,-116.6863889,Caldwell,ID,light,300,bright blue light +2011-08-25,41.6005556,-93.6088889,Des Moines,IA,egg,7,Siting looking at the stars was moving fast and steady rusty dark look no lights but had a glow and was heading west it came out of sig +2011-08-25,47.0027778,-108.3513889,Winnett,MT,flash,4,It was like a helicopter spotlight but soundless then winked out and then turned into an orange light and unnaturally sped to the right +2011-08-25,40.7719444,-80.7683333,Lisbon,OH,disk,105,Disk or oval object with ring of multi-colored flashing lights and very bright white light in bottom center. +2011-08-25,43.0255556,-74.9863889,Herkimer,NY,light,300,add on to earlier report +2011-08-25,43.0255556,-74.9863889,Herkimer,NY,light,300,orange bright light moving across sky chasing smaller bright white light +2011-08-25,40.1116667,-88.0416667,Saint Joseph,IL,light,120,zig zag patterned light +2011-08-25,36.2677778,-93.9408333,War Eagle,AR,triangle,60,Three sky blue triangles make two turns in formation +2011-08-25,40.65,-73.7244444,North Woodmere,NY,unknown,4,Invisible, Helicopter-Like, Strange-Sounding Flyby +2011-08-25,39.8966667,-79.9747222,Carmichaels,PA,disk,60,Bowl shaped stationary object sighted in sky +2011-08-25,38.8905556,-90.1841667,Alton,IL,sphere,900,Sphere with light was observed. Photograph taken with a cell phone camera. +2011-08-25,48.3636111,-120.1211111,Twisp,WA,fireball,20,bright amber-colored light drifts silently across the evening sky +2011-08-25,48.885555600000004,-118.5983333,Curlew,WA,light,30,Bright wobbly light seen descending in the sky just after dusk. +2011-08-25,48.1988889,-122.1238889,Arlington,WA,light,40,Glowing light slowing down, speeding up and wobbling in the air at night. +2011-08-25,36.7477778,-119.7713889,Fresno,CA,triangle,120,Large cheese shape triangle flying over fresno +2011-08-25,41.9575,-86.4855556,Baroda,MI,unknown,120,Red swiveling spotlight underneath low flying object +2011-08-25,47.7847222,-122.2730556,Brier,WA,light,60,White flickering light and erratic pattern of movement in northern sky. +2011-08-25,43.1330556,-115.6902778,Mountain Home,ID,circle,30,5 bright orange lights seen by 3+ Air Force personnel in Idaho +2011-08-25,43.5408333,-116.5625,Nampa,ID,cross,120,2 witness what appeared to be a low flying small aricraft completely on fire streak across the night sky. +2011-08-25,42.9994444,-83.6163889,Burton,MI,circle,3600,Burton Michigan,green red and white lights 7 or more east part of sky. ((NUFORC Note: Probably "twinkling" stars? PD)) +2011-08-25,48.7597222,-122.4869444,Bellingham,WA,triangle,1800,Triangular blinking object, low on the horizon, north of Bellingham. ((NUFORC Note: Sighting of Sirius?? PD)) +2012-08-25,42.3583333,-71.0602778,Boston,MA,oval,600,Large white illuminated oval shape above city of Boston. +2012-08-25,48.3683333,-124.6236111,Neah Bay,WA,sphere,60,Orange Object in Eastern Skies of Makah Bay, Washington, Saturday August 25th 12am. +2012-08-25,41.525,-88.0816667,Joliet,IL,light,300,Many moving orange glowing lights over Joliet, IL. +2012-08-25,43.0747222,-73.1544444,Arlington,VT,sphere,30,Reddish-orange orb +2012-08-25,36.0725,-79.7922222,Greensboro,NC,circle,1200,It looked exactly like the ufo's from the some of the NASA film +2012-08-25,42.425,-71.0666667,Malden,MA,light,3,Brilliant Green Orb like Light. ((NUFORC Note: Possible meteor?? PD)) +2012-08-25,38.8222222,-122.7219444,Cobb,CA,triangle,300,Giant Triangle sighting in northern california. +2012-08-25,35.9911111,-106.08,Espanola,NM,rectangle,2700,Changing rectangle lights +2012-08-25,42.0916667,-70.7061111,Marshfield,MA,cylinder,900,Silvery object being chased by three black helicopters at broad daylight +2012-08-25,45.6388889,-122.6602778,Vancouver,WA,fireball,5,White light falling to the ground leaving a red trail behind it. +2012-08-25,44.2786111,-75.3866667,Fowler,NY,sphere,600,20+ orangish spheres flew over tree line and blinked out one after the other in exact same area except for one. +2012-08-25,44.0247222,-88.5425,Oshkosh,WI,circle,120,An orange object floated at low level and slow from SSE to NNW. +2012-08-25,41.5647222,-87.5388889,Lansing,IL,sphere,240,Observed what appeared to be a ball of orange fire that made no sound travel from south to north over my home for 3-4 minutes duration. +2012-08-25,42.6011111,-76.1808333,Cortland,NY,fireball,600,A group of about 10 fireball like objects traveling at about the speed of a normal helicopter with no sound. Ten minutes to cross sky. +2012-08-25,40.11,-76.0330556,East Earl,PA,unknown,300,My husband and I saw 15 to 20 pulsating red/yellow lights in formation that broke up coming from east to west, flying directly over us +2012-08-25,42.6727778,-88.5444444,Elkhorn,WI,light,300,West to East. Slow moving. Humming sound. Bright red light. +2012-08-25,43.2097222,-77.6933333,Greece,NY,sphere,90,UFO sighting over Greece NY (Rochester area) - red fireball +2012-08-25,43.0388889,-87.9063889,Milwaukee,WI,formation,900,There were like 6-8 orange fireball looking objects forming circles, wavy lines and triangles. +2012-08-25,40.4058333,-79.9122222,West Homestead,PA,circle,300,Bright orange orb with a blue aura around it +2012-08-25,36.0997222,-80.2444444,Winston-Salem,NC,light,600,UFO sighting in Winston-Salem NC 8/25/12 at 21:00 (9pm eastern time) +2012-08-25,45.52,-123.0586111,Cornelius,OR,sphere,30,Seven bright golden/amber orbs over Cornelius, OR moving N to SE, no sound, semi-formation. +2012-08-25,41.5875,-109.2022222,Rock Springs,WY,light,600,Bright white light over rock springs, wy +2012-08-25,30.2669444,-97.7427778,Austin,TX,unknown,900,Unidentified flying object south of Austin +2012-08-25,41.3683333,-82.1077778,Elyria,OH,fireball,900,Firey orange orbs right over us! +2012-08-25,43.1797222,-71.8227778,Henniker,NH,fireball,600,Bright orange light moving west to east +2012-08-25,36.9438889,-82.4641667,Coeburn,VA,sphere,600,One orb and one bright light seen 08/25/2012 Coeburn, Va. Second sighting in two weeks +2012-08-25,40.8255556,-73.2030556,Hauppauge,NY,fireball,60,Bright orange fireball flying westward over long island +2012-08-25,43.4802778,-72.3852778,West Windsor,VT,cigar,3,21:46 EST West Windsor VT bright white low flying fast oblong object flying rapidly due north with blunt orange end. +2012-08-25,47.6483333,-117.0913889,Liberty Lake,WA,fireball,5,5 second big flaming ball in the night sky at an outdoor movie. +2012-08-25,34.9244444,-80.7436111,Waxhaw,NC,circle,300,15-20 red lights in the sky were hovering low in a staggered formation south of Charlotte for 5 min, then each moved northwest +2012-08-25,39.2666667,-81.5616667,Parkersburg,WV,light,30,Bright orange light moves rapidly across the sky and dissappears suddenly, three witnesses. +2012-08-25,36.1077778,-87.6330556,Mcewen,TN,unknown,120,Balls of Bright Lights +2012-08-25,34.0752778,-84.2941667,Alpharetta,GA,light,180,Slow moving, steady, bright orange light flew over and disappeared. +2012-08-25,26.4611111,-80.0730556,Delray Beach,FL,circle,300,Round ufo over Delray Beach, Florida +2012-08-25,42.6055556,-83.15,Troy,MI,light,300,Two orange lights one after the other, about same speed as airplanes, looked like it was on fire or Aura exactly, very weird I usually +2012-08-25,39.6513889,-75.3286111,Woodstown,NJ,fireball,20,4 Witnesses See Hovering Fireball in Woodstown, NJ +2012-08-26,41.9,-71.0902778,Taunton,MA,oval,30,I was walking back from downtown taunton to my house when i heard people calling my name i looked towards the direction the voices wher +2013-08-25,43.1705556,-78.6905556,Lockport,NY,fireball,180,Fireballs in the sky caught my eye. +2013-08-25,47.2430556,-68.3141667,St. Agatha,ME,light,1500,Northern maine sphere like. not moving. white steady light amd others +2013-08-25,27.2936111,-80.3505556,Port Saint Lucie,FL,light,600,After returning from an event in nearby town of Stuart Florida. We arrived home just before midnight. Myself and my wife were laying i +2013-08-25,36.6102778,-88.3147222,Murray,KY,oval,1200,Two objects seen with rotating red/white green/blue lights. +2013-08-25,46.6022222,-120.5047222,Yakima,WA,light,60,Large twinkling light. +2013-08-25,35.6969444,-82.5608333,Weaverville,NC,cylinder,15,Cylinder-shaped, silent UFO over Western, NC. +2013-08-25,43.0480556,-76.1477778,Syracuse,NY,changing,120,Object with orange light, seemed to shape shift. +2013-08-25,39.7683333,-86.1580556,Indianapolis,IN,circle,30,Two whitish yellowish circular objects in nw sky. +2013-08-25,35.7511111,-86.93,Spring Hill,TN,sphere,900,5 fire ball sphere lights. +2013-08-25,33.9236111,-84.8408333,Dallas,GA,triangle,240,Two Paulding County, GA, witnesses saw triangular craft hovering in the sky on 8/25/13. +2013-08-25,40.4775,-74.6272222,Hillsborough,NJ,light,480,Same as the reporting from Montclair, Nj. &quot; Large bright circular light that got smaller and smaller until it disappeared.&quot; I +2013-08-25,30.5425,-97.5463889,Hutto,TX,light,30,Two orange lights fly at eachother and become one. +2013-08-25,39.2744444,-76.0925,Worton,MD,circle,120,Three fiery orbs travel in straight formation, alter formation slightly, then disappear, one at a time +2013-08-25,34.7391667,-112.0091667,Cottonwood,AZ,rectangle,120,Large, metallic object lands on city street in Cottonwood, AZ.during rain storm +2013-08-25,42.2411111,-83.6130556,Ypsilanti,MI,fireball,600,Fireball breaks into two over Ypsilanti. +2013-08-25,41.5822222,-85.8344444,Goshen,IN,formation,180,Five red/orange orbs fly in formation with no sound. +2013-08-25,40.6219444,-74.245,Linden,NJ,oval,180,Green oval shaped UFO. +2013-08-25,31.1797222,-83.7891667,Moultrie,GA,circle,120,I was helping my girlfriend with laundry out of car when I notice what looked like a star. I told her to look at the crept star and the +2013-08-25,35.6969444,-82.5608333,Weaverville,NC,other,300,Two large objects from the east, silent and moving together, diverged and went separate directions. +2013-08-25,32.7938889,-79.8627778,Mount Pleasant,SC,fireball,1200,Bright Orange/Red lights across SC night sky. +1970-08-26,31.135,-99.3347222,Brady,TX,circle,37800,Object with colored lights seen in nite sky +1970-08-26,31.135,-99.3347222,Brady,TX,disk,37800,Saucer shaped object seen between Brady and Cherokee Texas +1990-08-26,40.9436111,-78.9711111,Punxsutawney,PA,sphere,900,7 or 8 rows of red lights +1998-08-26,37.485,-119.9652778,Mariposa,CA,fireball,5,Observed a light behind a tree that was bright white, then it took off and as it did, it turned brillaint green +1998-08-26,42.7022222,-83.4027778,Waterford,MI,fireball,10,Stargazing on my deck and sighted what I thought at the time was a large green meteor (Largest I ever seen) +1999-08-26,34.9416667,-118.9291667,Grapevine,CA,light,3,I didn’t write the date down, but the incident occurred about 1999-2000, I was driving late at night (between 11-1am) just leaving the +1999-08-26,47.5002778,-111.3,Great Falls,MT,light,30,Four lights moving at a 45-50 degree horizon +2000-08-26,34.1477778,-118.1436111,Pasadena,CA,disk,45,I WAS STOPED AT RED LIGHT STRAIGHT AHEAD 10 O-CLOCK SILVER DISK STATIONARY. IT LEFT BANKED MOVED INTO SOME POSITION AND VANISHED CLEAR +2000-08-26,32.7152778,-117.1563889,San Diego,CA,light,60,Red light in the sky, hovering no motion in any direction. Blinked white light and them seemed to grow brighter and explode. +2000-08-26,32.7152778,-117.1563889,San Diego,CA,triangle,900,three red lights forming a triangle. no sound. drifted . turned into a small white light dissapeared left a stream of sparks +2000-08-26,32.7152778,-117.1563889,San Diego,CA,circle,1200,Red, hovering, at times pulsating light seen above Pacific Beach area of San Diego, CA +2000-08-26,32.7152778,-117.1563889,San Diego,CA,fireball,1200,Bight red light hovering for about 20 minutes then disappearing, reapearing as a white flash, spiltting into 4 faint objects and gone. +2000-08-26,38.2494444,-122.0388889,Fairfield,CA,light,180,A white light, totally quiet, turned to yellow and then red before completely disappearing. +2001-08-26,47.6063889,-122.3308333,Seattle,WA,triangle,2,A dark aircraft with deep red colors triangularly shaped +2001-08-26,41.865,-80.79,Ashtabula,OH,light,300,Lights traveling from North to South. +2001-08-26,47.6063889,-122.3308333,Seattle,WA,unknown,420,Object seen over West Seattle +2001-08-26,38.7522222,-121.2869444,Roseville,CA,oval,600,Six oval-shaped objects sighted over Roseville, CA, changing formations. +2001-08-26,41.1305556,-85.1288889,Fort Wayne,IN,other,600,Silver UFO seen up close on U.S. 37 +2001-08-26,40.3772222,-105.5211111,Estes Park,CO,flash,90,while sitting in a hot tub on a condo deck after dark my guest and I wanted to see who could spot a satalite in the night sky first. My +2001-08-26,33.4483333,-112.0733333,Phoenix,AZ,light,1289,Gold light with halo, with "bits" falling from it. +2001-08-26,41.6986111,-88.0683333,Bolingbrook,IL,light,600,Red light stationary in sky while driving +2001-08-26,47.7544444,-122.1622222,Woodinville,WA,fireball,0.5,Probably just a meteor....but... +2002-08-26,41.85,-87.65,Chicago,IL,teardrop,600,I saw three objects passing by the moon from the East. Traveling fast, I didn't think three planes where traveling so close. Ilooked th +2002-08-26,45.3575,-122.3577778,Eagle Creek,OR,triangle,900,Extremely bright triangular shaped object sighted in the sky in Eagle Creek, Oregon. +2003-08-26,35.3858333,-94.3983333,Fort Smith,AR,oval,30,I was coming home from work around 12:00 pm Tuesday August 26, 2003. When I saw 3 round lights in the sky. Within another second or s +2003-08-26,30.3319444,-81.6558333,Jacksonville,FL,changing,180,Shape shift from triangle to 1/2 circle then to 2 ovals hten fade. +2003-08-26,44.7702778,-90.5991667,Greenwood,WI,unknown,300,Three objects in outer space formation +2003-08-26,42.5583333,-71.2694444,Billerica,MA,other,30,Huge shadow passing blotting out sun, causing short energy surge/ computer outages. +2003-08-26,33.6888889,-78.8869444,Myrtle Beach,SC,other,7200,Bright stationary orange light of short duration near Mars +2003-08-26,28.5380556,-81.3794444,Orlando,FL,circle,180,Bright moving stars/objects over central Florida on 8/26/2003 about 9:03pm +2003-08-26,47.9791667,-122.2008333,Everett,WA,egg,8,Egg shaped, fast moving, inside atmosphere, unlit with no sound. +2003-08-26,32.9627778,-117.035,Poway,CA,circle,5,a ball of yellow green trailing light +2003-08-26,34.1808333,-118.3080556,Burbank,CA,unknown,5,I saw a bright object with a short tail that appeared to be falling from the sky on a trajectory toward the earth in Burbank, CA +2003-08-26,31.1933333,-100.4983333,Christoval,TX,light,240,Very bright white light with smaller flashing white light on top- Very loud rumbling with it. +2003-08-26,35.6008333,-82.5541667,Asheville,NC,unknown,3600,Moving bright white light, size of large star appeared in Asheville, NC, NW sky at 2375 hours +2003-08-26,38.7744444,-82.3838889,Patriot,OH,light,20,bright light flashed on and off +2003-08-26,34.1722222,-118.3780556,North Hollywood,CA,light,300,Large bright red light hovers high in atmosphere then rockets away at unreal speed. +2003-08-26,34.0522222,-118.2427778,Los Angeles,CA,light,600,Bright Red Light hovering above LA +2004-08-26,36.5858333,-79.3952778,Danville,VA,unknown,2700,One hovering object with multicolored rapidly flashing lights--red, blue/green, white; 45+ minutes. +2004-08-26,37.9972222,-91.6141667,St. James,MO,changing,480,Unidentified object in the St.James Mo area. +2004-08-26,32.9544444,-97.0147222,Coppell,TX,triangle,1,Three small triangular shaped objects fly through my telescopes field of view. +2004-08-26,39.8175,-74.5352778,Chatsworth,NJ,unknown,120,Object hovers slightly above tree level until it dissappears into the forest +2004-08-26,39.4666667,-87.4138889,Terre Haute,IN,light,10,A HUGE LIGHT THAT WAS MOVING - THEN IN A SEC WENT DIM LIKE A STAR STILL MOVING +2004-08-26,41.3775,-71.8277778,Westerly,RI,triangle,60,black triangle over chopper and house in RI +2005-08-26,39.6402778,-106.3736111,Vail,CO,sphere,20,MUFON COLORADO REPORT: Sphere shaped UFO that disappeared and gave off strange visual effects. +2005-08-26,43.6525,-73.8013889,Chestertown,NY,cigar,120,Appeared to be silver and cigar shaped with opaque field rround it +2005-08-26,33.18,-96.4977778,Princeton,TX,light,300,moving "star" abruptly stops, waits, then changes course +2005-08-26,40.8461111,-74.2016667,Upper Montclair,NJ,oval,3600,The object got closer and began to change shape. It seemed to turn inside it's self and back out then it emitted a red beam. +2006-08-26,45.4872222,-122.8025,Beaverton,OR,other,2,Brilliant with varied shape, blinks out and moves to another part of the sky in one second before blinking out again. +2006-08-26,43.8519444,-85.0052778,Lake,MI,oval,18000,White oval shapped object no other lights, seeming to constantly rotate in a circle. +2006-08-26,34.5008333,-117.185,Apple Valley (Panoche Road),CA,unknown,180,Panoche Experience three lights three crafts three witnesses +2006-08-26,28.2486111,-81.2813889,St. Cloud,FL,sphere,180,Silver ball appears and dissappears in sky during daylight hours. +2006-08-26,43.8511111,-75.9411111,Rodman,NY,light,15,Extremely bright light that shot straight out of sight at amazing speed. +2006-08-26,34.1808333,-118.3080556,Burbank,CA,sphere,3,round, shiny lime green and going down fast behind hills +2006-08-26,33.3061111,-111.8405556,Chandler,AZ,triangle,90,Pulsating triangular shaped object flying low, fast and silent over South Eastern Phoenix +2006-08-26,47.5675,-121.8875,Fall City,WA,light,15,Extremely bright, steady light moving across night sky. ((NUFORC Note: Possible sighting of ISS. PD)) +2006-08-26,37.4852778,-122.2352778,Redwood City,CA,changing,1800,8/26/2006 2200 HOURS THREE UFO"S OVER SANTA CRUZ MOUNTAINS. +2006-08-26,34.0522222,-118.2427778,Los Angeles (Glassel Park),CA,fireball,8,2 Fireballs of light - large and close followed by 2 red lights further in the distance +2007-08-26,43.0388889,-87.9063889,Milwaukee,WI,diamond,1800,Peculiar,steady, red and white blinking ,star like object that slowly descended behind the tree line. +2007-08-26,33.8158333,-78.6802778,North Myrtle Beach,SC,formation,10,Approximately 26 August 2007, while sitting on the dunes at the beach, I saw what appeared to be a small falling star; it suddenly cha +2007-08-26,41.85,-87.65,Chicago,IL,diamond,900,Greenish Diamond shaped object with five smaller orbs in formation, daytime. +2007-08-26,38.2541667,-85.7594444,Louisville,KY,sphere,120,Two metallic shperes hovering in broad daylight then vanishing +2007-08-26,44.3,-120.8333333,Prineville,OR,sphere,7,UFO or Basket Ball in the middle of nothing? +2007-08-26,44.2519444,-85.4011111,Cadillac,MI,circle,180,One birght and three dark UFOs seen in the skies over Cadillac, Michigan +2007-08-26,42.9825,-77.4091667,Victor,NY,flash,2,On 8/26/07, I saw a bright flash in the sky followed later by three points of light in a triangular form moving in unison. +2007-08-26,42.7875,-86.1088889,Holland,MI,unknown,2,((HOAX??)) About 50 or so away we see this bright object. +2008-08-26,33.8463889,-118.0458333,La Palma,CA,sphere,300,2 purpish balls of light,ping ponging in the darkness,one shot a beam of white light in my eye,i was in my room +2008-08-26,32.9658333,-97.6833333,Springtown,TX,cigar,600,This is SCARY +2008-08-26,34.0513889,-84.0713889,Suwanee,GA,circle,5,vibrent bright cicurlar light seen going in one direction stopping then going in another. +2008-08-26,42.1155556,-75.9591667,Johnson City,NY,cigar,20,Silver cigar shaped craft sighted flying over Binghamton, NY, headed towards Chenango bridge/chenango Forks area. +2008-08-26,39.3897222,-74.5244444,Pleasantville,NJ,changing,45,single boomerang shape quickly turned into 6 smaller semi-circular lights over Pleasantville NJ +2008-08-26,39.5127778,-115.9597222,Eureka,NV,light,600,Flashing red lights performing in an unusual manner. +2008-08-26,43.1547222,-77.6158333,Rochester,NY,formation,5,12 to 15 points of light in formation of 2 triangle shapes, 2 loose ones on the left very fast heading north +2008-08-26,41.7013889,-71.1555556,Fall River,MA,circle,600,Circular pulsating lights +2008-08-26,38.7627778,-93.7358333,Warrensburg,MO,light,120,Two blue-white blinking lights, considerable distance apart, silently hovering over the road. +2008-08-26,38.6272222,-90.1977778,St. Louis,MO,diamond,120,square or diamond shape craft with flashing and scrolling lights near Hall Street in St Louis Mo ((NUFORC Note: Star?? PD)) +2009-08-26,33.7513889,-84.7477778,Douglasville,GA,light,1,Glowing green orb above the Moon in a picture +2009-08-26,22.0522222,-159.3377778,Wailua,HI,light,1500,Lights above Kauai beach +2009-08-26,36.8252778,-119.7019444,Clovis,CA,triangle,120,Three flashing red lights in a triangular shape seen south of Fresno +2009-08-26,34.6086111,-98.39,Lawton,OK,light,600,It would move slowly and sometimes quick in a circular pattern. +2009-08-26,37.6391667,-120.9958333,Modesto,CA,cigar,2700,Two crafts spotted over Westfield shopping cntr. Modesto +2010-08-26,43.0513889,-83.3188889,Lapeer,MI,circle,10800,Illuminating circular obj. whisking through the night sky, changing colors, and disappearing. ((NUFORC Note: Satellite? PD)) +2010-08-26,48.9466667,-122.4508333,Lynden,WA,light,90,Northwest Washington: light descends rapidly from within Big Dipper, varies its course playfully, then disppears over Canada. +2010-08-26,41.8088889,-88.0111111,Downers Grove,IL,light,120,Two bright lights in sky that almost hit then turned and went in various directions at high rate of speed. +2010-08-26,36.1866667,-94.1286111,Springdale,AR,cigar,5,Summary of Sighting: On Thursday August 26, 2010, a friend and I were returning from Springdale, AR. We were traveling on a side road +2010-08-26,28.8002778,-81.2733333,Sanford,FL,triangle,180,Cloud forms out of nowhere: 3 objects fly out of it! +2010-08-26,42.1013889,-72.5902778,West Springfield,MA,diamond,480,I reside on a small hillside location that opens up the view at night…So my view other than a few trees is unobstructed.On the nigh +2010-08-26,42.7325,-84.5555556,Lansing,MI,light,180,Three people in a car saw two lights moving at will and vary in brightness then fly away very fast. +2010-08-26,41.85,-87.65,Chicago,IL,sphere,60,Strange Craft Descends from Sky in Chicago and exits the night sky rapidly to the North East +2010-08-26,41.2586111,-95.9375,Omaha,NE,light,180,Bright white light moves across sky towards the north then turns east +2010-08-26,32.2205556,-98.2019444,Stephenville,TX,formation,120,A group of us at work were actually veiwing Mars with some binoculars and turned around and saw the orange and yellow lights +2010-08-26,36.1866667,-94.1286111,Springdale,AR,cigar,105,On August 26, 2010, while driving by Arvest Ball Park with a friend, I saw what looked like a huge airliner just sitting in midair. Up +2010-08-26,42.2366667,-123.0411111,Ruch,OR,light,60,Solid white light Ruch Oregon. ((NUFORC Note: Possibly the ISS. PD)) +2010-08-26,39.7391667,-104.9841667,Denver,CO,cigar,240,Slow flying black mass that eventually disappeared behind a cloud +2010-08-26,33.1191667,-117.0855556,Escondido,CA,light,600,blue flashing light that hovered then moved +2010-08-27,40.6461111,-111.4972222,Park City,UT,circle,120,Bright laser type lights and a craft in my backyard area last night. +2011-08-26,44.9444444,-93.0930556,Saint Paul,MN,light,10,UFO in Minnesota at midnight +2011-08-26,34.2669444,-118.3013889,Sunland,CA,sphere,600,White, Red & Green Disco light, High Alt. maybe 5 - 7 thousand feet AGL. +2011-08-26,29.7630556,-95.3630556,Houston,TX,flash,30,In a flash it was gone. +2011-08-26,28.5380556,-81.3794444,Orlando,FL,circle,600,Circular UFO sighted hiding behind clouds +2011-08-26,43.0986111,-77.4422222,Fairport,NY,fireball,45,SHOCKING +2011-08-26,36.8527778,-75.9783333,Virginia Beach,VA,circle,180,Possible UFO sighting. Unknown. Orange/dimming ball. Went across the beach towards the ocean. +2011-08-26,29.3011111,-94.7975,Galveston,TX,light,30,On Aug, 26, a bright, silvery-white light was observed; it appeared and disappeared three times in the due east at about 60-65 degrees. +2011-08-26,47.8555556,-121.9697222,Monroe,WA,unknown,30,Bright light seen three seperate times in a space of three and a half hours. +2011-08-26,41.5758333,-87.1761111,Portage,IN,other,1800,25 small red/orange spheres slowly moving in all different directions and fading in and out. +2011-08-26,42.1816667,-88.3302778,Lake In The Hills,IL,light,900,7 glowing red lights Lake in the Hills IL +2011-08-26,40.3719444,-75.2930556,Perkasie,PA,circle,90,Three bright orange circles,flying slowly in a triangular formation, from SE to NW +2011-08-26,33.6602778,-117.9983333,Huntington Beach,CA,triangle,300,Orange Lights in the sky +2011-08-26,43.6613889,-70.2558333,Portland,ME,formation,600,4 small red disappearing lights in arch formation +2012-08-26,43.5408333,-116.5625,Nampa (Lionshead Campgrounds),ID,light,3,3 second green flaming ball of light over our heads on beach. +2012-08-26,43.0480556,-76.1477778,Syracuse,NY,circle,600,Silent circular orbs floating west. +2012-08-26,41.9816667,-72.6511111,Suffield,CT,triangle,300,I saw five yellow resist triangle objects flying in formation. Moving in ways a plane couldn't. I pulled over in a field to watch. They +2012-08-26,38.010555600000004,-77.9088889,Mineral,VA,changing,1800,Large black filmy area in night sky with luminescent clouds. Movement was amoeba-like but it remained in the same spot. +2012-08-26,32.3291667,-96.625,Ennis,TX,changing,240,Burnt orange craft sitting in the sky +2012-08-26,44.6269444,-90.0075,Auburndale,WI,unknown,1800,Bright light above the tree tops. Almost as if something landed. +2012-08-26,33.8158333,-78.6802778,North Myrtle Beach,SC,triangle,7200,Strange hovering light and military jets s.c. +2012-08-26,39.1855556,-78.1636111,Winchester,VA,unknown,60,Loud hovering noises at night outside our bedroom window. +2012-08-26,42.6880556,-88.0513889,Union Grove,WI,fireball,300,Orange ball in sky floating but moving slow. +2012-08-26,39.5080556,-91.5286111,Center,MO,circle,600,Blue lights - round UFO sighted about 50 yards away from highway. +2012-08-26,43.4261111,-73.7127778,Lake George,NY,other,30,Extremely shiny object seen making strange manuevers in a cloudless afternoon sky. +2012-08-26,46.7172222,-122.1797222,Mineral,WA,unknown,1800,When I took the image of the eagle, what ever is in the PIC to the left, "was not" there! +2012-08-26,40.6408333,-74.8816667,Annandale,NJ,fireball,120,One fireball looking low object moved slow at first, then off it went to the east +2012-08-26,38.7430556,-94.8252778,Spring Hill,KS,light,600,UFO so bright I couldnt make out a shape, flew silently over my home. +2012-08-26,40.6461111,-111.4972222,Park City,UT,light,300,Flare birds. +2012-08-26,39.0997222,-94.5783333,Kansas City,MO,teardrop,60,5 objects viewed during landing approach to Kansas City MO airport MCI +2012-08-26,44.5616667,-72.5988889,Morrisville,VT,fireball,300,Pulsating and slowly moving fireball appears during sunset, stops then resumes travel after pulsating glow goes out +2012-08-26,41.1577778,-80.0888889,Grove City,PA,light,300,Same object as reported on 8/6/12 grove city pa. +2012-08-26,48.0402778,-122.405,Langley,WA,fireball,60,Location at Baby Island neighborhood, Whidbey, WA Object come from east to west,over Saratoga passage between Whidbey and Camano Isla +2012-08-26,37.0841667,-94.5130556,Joplin,MO,circle,7,7-8 red circle lights moving across the sky. +2012-08-26,35.2244444,-96.6702778,Seminole,OK,circle,180,Orbs of light moving in the evening sky +2012-08-26,43.0480556,-76.1477778,Syracuse,NY,fireball,300,10 floating fireball looking lights flying over parking lot of store in syracuse,ny. +2012-08-26,33.8302778,-116.5444444,Palm Springs,CA,circle,9,Two white orbs above Downtown Palm Springs, spotted by at least two completely sober people. +2012-08-26,47.8108333,-122.3761111,Edmonds,WA,flash,90,Quick moving and incredibly bright multicolored flashing lights seen in sky appearing to travel at great speeds. +2012-08-26,44.426944399999996,-124.0675,Waldport,OR,circle,1200,5 lights seen in night sky over ocean. +2012-08-26,40.9977778,-72.2930556,Sag Harbor,NY,fireball,5,Bright red ball shaped object in southern sky. +2013-08-26,39.3222222,-95.2666667,Winchester,KS,rectangle,8,This bright white light was traveling at a very high rate of speed, before falling into the horizon. +2013-08-26,37.9444444,-87.4052778,Newburgh,IN,light,7200,Very weird "stars" forming a stationary triangle in the sky. +2013-08-26,39.3702778,-94.7822222,Platte City,MO,light,5,Two extremely low green "fire-balls" with-in 26 hours, electrical interference. +2013-08-26,33.5755556,-83.1825,Greensboro,GA,circle,420,Pulsating slow moving white light in northeast sky. +2013-08-26,39.6291667,-75.6586111,Bear,DE,other,120,On the morning of August 26th a dark mushroom shaped object was seen moving without sound in the sky over Bear Delaware. +2013-08-26,35.1716667,-103.7244444,Tucumcari,NM,light,5,Pulsing white light over the horizon and a small moving light in the opposite direction. +2013-08-26,31.7586111,-106.4863889,El Paso,TX,light,120,Light headed north then south suddenly disappeared on the horizon almost instantly. +2013-08-26,40.3013889,-79.5391667,Greensburg,PA,fireball,120,Peculiar lights seen over shopping area +2013-08-26,42.6330556,-88.6436111,Delavan,WI,sphere,1200,Repeat Sightings in Delavan, WI. +2013-08-26,40.7608333,-111.8902778,Salt Lake City,UT,light,900,Bright lights in western sky that hover and change directions. +2013-08-26,39.2863889,-80.2563889,Bridgeport,WV,light,300,Bright planet size light hovering above hill before getting bighter then dim shooting high and out of sight. +2013-08-26,37.7527778,-100.0166667,Dodge City,KS,circle,3600,There was a light light that sat a over dodge city for at least an hour before vanishing completely. I was at the the Koch nitrogen ref +2013-08-26,43.6405556,-72.1444444,Enfield,NH,light,15,Silent, flashing light, moving in very fast S-pattern in Enfield, NH +1969-08-27,45.2488889,-68.5688889,Enfield,ME,oval,900,The object would stop and move and then blink off and be somewhere else in the sky. And started moving again but at a slow pace! +1978-08-27,27.7705556,-82.6794444,St. Petersburg,FL,light,1200,Nightmare of UFO attack preceds actual UFO sightings by 24 hours, coincidence? +1982-08-27,44.2797222,-68.3255556,Southwest Harbor,ME,cylinder,4500,Two crafts taking or dumping water +1998-08-27,41.6436111,-83.4869444,Oregon,OH,fireball,120,Bright Orange Fireball appeared in SW sky. Traveled slowly at about 30degrees across the southern sky toward the east. No sound, long t +1999-08-27,48.1183333,-123.4294444,Port Angeles,WA,fireball,2,Bright Blue-White fireball with Yellow-Orange Halo and Tail. +1999-08-27,47.3075,-122.2272222,Auburn,WA,circle,2,Large harvest moon shaped object between the hills in Auburn Wa. +1999-08-27,41.5033333,-74.0108333,Newburgh (Near),NY,triangle,120,Triangular shadow passes over moon +1999-08-27,42.4733333,-83.2219444,Southfield,MI,light,50,Extremly bright white light (strong enough to hurt your eyes) twice the size of Venus or Jupiter, moving slowly from NWest to SWest dir +1999-08-27,42.4733333,-83.2219444,Southfield,MI,light,60,Slow moving extremely bright white light, bright enough to hurt your eyes, rapidly changing to low density light while still moving. +1999-08-27,47.7847222,-122.2730556,Brier,WA,chevron,180,I saw and heard a chevron shaped, blue-ish lit object one night while outside. +2000-08-27,38.7525,-122.6138889,Middletown,CA,other,300,sperm like looking object with a long tapered tail, the whole object being very luminous yellow. +2000-08-27,37.7272222,-89.2166667,Carbondale,IL,light,30,Bright light moving across sky at very fast speed & very high alttitude +2000-08-27,44.0522222,-123.0855556,Eugene,OR,changing,30,I saw erratic, colored lights in the sky last night +2001-08-27,38.0194444,-122.1330556,Martinez,CA,other,3600,moving star looking light +2001-08-27,38.0194444,-122.1330556,Martinez,CA,light,5400,Seen colorfull, unusual moving star near the earths atmosphere. +2001-08-27,64.8377778,-147.7163889,Fairbanks,AK,circle,600,Extremely bright light circle with vapor release, accompanied by small less bright lights above Fairbanks, AK +2001-08-27,41.3947222,-73.4544444,Danbury,CT,circle,45,Multiple flashing white lights... +2001-08-27,46.4991667,-87.6116667,Negaunee,MI,light,1500,lights in the sky +2002-08-27,27.0994444,-82.4544444,Venice,FL,triangle,30,The craft were hidden by the moon and had a purple halo, and left at high speed +2002-08-27,34.5361111,-117.2902778,Victorville,CA,light,10800,Yellow point of light with no marker lights that initially was seen moving and then remained stationary for over 3 hours. +2002-08-27,35.0844444,-106.6505556,Albuquerque,NM,light,30,High velocity redish-orange light makes 90 degree turn without deceleration. +2002-08-27,27.5908333,-80.3444444,South Beach,FL,formation,1800,Three strange crafts hover above water, the first two dissappear into the third and largest one before shooting upward in the sky. +2003-08-27,39.8366667,-105.0366667,Westminster,CO,triangle,15,Couple sees object while looking at Mars. +2003-08-27,41.5036111,-84.4141667,Stryker,OH,flash,120,An object of light that had a 20 second span between flashes directly above me that seemed to be going up and away from me as each time +2003-08-27,43.0347222,-83.5180556,Davison,MI,light,240,Scalene triangles over Davison MI +2003-08-27,30.3319444,-81.6558333,Jacksonville,FL,rectangle,120,When picking up the daily paper, I waslooking for MARS and while seeing a bright flickering star a "ship" of some kind passed slowly by +2003-08-27,31.5330556,-81.4272222,Eulonia,GA,sphere,180,An Indigo Blue Ball..metallic like a Christmas tree Ball..aprrox size of Basketball..shooting sparks from top which appeared to start a +2003-08-27,48.5038889,-122.2361111,Sedro-Woolley,WA,light,720,Return of the Sedro-Woolley Winking Star +2003-08-27,37.5536111,-77.4605556,Richmond,VA,triangle,35,Object had triangular lights 3 bright one chnge in to 120 degree and disappear. +2003-08-27,33.4222222,-111.8219444,Mesa,AZ,fireball,900,2 glowing orange fireballs in the sky +2003-08-27,41.5402778,-82.7355556,Marblehead,OH,flash,5400,over a 90 min. span of time 10-20 objects flashing and moving very fast traveled across thesky. +2003-08-27,33.0580556,-112.0469444,Maricopa,AZ,diamond,7200,Bright orange lights south of Phoenix +2003-08-27,32.7152778,-117.1563889,San Diego (Cleveland National Forest),CA,oval,120,I drove as planned up to Mount Laguna to the top of Vista Point where the old radar installation/ FAA radar station is, which is now pr +2003-08-27,41.0813889,-81.5191667,Akron,OH,circle,20,We saw 2 bright stars that were stationary and started moving (keeping the same distance apart) and disappeared after 15-20 seconds. +2003-08-27,32.7152778,-117.1563889,San Diego,CA,light,4,rapidly moving white light--not meteor or satellite or aircraft +2003-08-27,29.7630556,-95.3630556,Houston,TX,unknown,600,I decided to go out to the car for some reason, as I walked on the third floor walkway I saw out to the western night sky-(very clear)- +2004-08-27,42.1094444,-79.2833333,Celoron,NY,triangle,8,Sky Blue Manta +2004-08-27,30.0858333,-94.1016667,Beaumont,TX,light,600,Exploding, traveling light that traveled far faster and more sparatically than any craft I've seen. +2004-08-27,37.0297222,-76.3455556,Hampton,VA,light,5,Orange Light in the North Sky +2004-08-27,26.7052778,-80.0366667,West Palm Beach,FL,light,60,circling pin point of light +2005-08-27,40.4077778,-74.0347222,Atlantic Highlands,NJ,cylinder,120,Small White UFO Flying Treetop Level, Possible Probe to 9 Other Larger UFO's Offshore in NJ +2005-08-27,36.1397222,-120.3591667,Coalinga,CA,triangle,120,Triangular lighted object gives an amazing acrobatic display on I-5, August 27, 2005 1:30 AM. +2005-08-27,36.1397222,-120.3591667,Coalinga,CA,triangle,240,Unexplained Encounter Along California's I-5 Freeway With Highly Manueverable and Partially Lit Low Flying Craft +2005-08-27,38.1375,-120.4586111,Murphys,CA,light,60,From my rear deck I noticed a fairly large light, similar to a landing light on a large aircraft, traveling rather slowly from the Nort +2005-08-27,44.0216667,-92.4697222,Rochester,MN,disk,600,A fleet of at least 100 disc shaped UFOs dancing across the sky! +2005-08-27,47.5288889,-121.8241667,Snoqualmie,WA,flash,2,Long rocket like object going extremely fast and in an instance dissapearing and the reappearing again. +2005-08-27,43.073055600000004,-89.4011111,Madison,WI,changing,720,It was an all black, cigar shaped object floating then moving away slowly. +2005-08-27,43.073055600000004,-89.4011111,Madison,WI,changing,900,madison wi, west side +2005-08-27,43.7094444,-98.0294444,Mitchell,SD,circle,240,I simply don't know what they were. +2005-08-27,47.4830556,-122.2158333,Renton,WA,disk,20,On the day of 08/27/05,at 8:47 PM Myself, was in Renton highlands, Washington State facing due west and saw an object coming out of the +2005-08-27,47.1855556,-122.2916667,Puyallup,WA,circle,6,We saw three small seperated lights move from the north to the south around 9:15 PM (Pacific time). +2005-08-27,47.1855556,-122.2916667,Puyallup,WA,circle,6,The three objects appeared 'moving from north to south at ahigh rate of speed and disappeared six seconds later. +2005-08-27,33.6083333,-117.7444444,Aliso Viejo,CA,cylinder,240,A silver-white cylinder with detached bright yellow light right underneath seen hovering 1000 feet up and sped up noislessly. +2005-08-27,40.6866667,-73.3738889,Lindenhurst,NY,changing,60,8/27/05 at 11:00 pm friend and i was talking,sky was clear,saw falling star,then it just stoped short in the sky,then zig zaged. +2005-08-27,40.8566667,-74.1288889,Passaic,NJ,disk,600,it appeared out of no where and while in the sky it was just flipping and twirling and then just disappeared... +2006-08-27,41.3308333,-94.0136111,Winterset,IA,disk,900,The Closest thing anyone will ever come to a actual real life encounter. +2006-08-27,30.3025,-81.9755556,Baldwin,FL,circle,1800,object moved at speed from one place to enother +2006-08-27,33.9547222,-118.2111111,South Gate,CA,other,1800,One bright light with a "tail"; 2 other side by side objects moving around in the sky. +2006-08-27,25.7738889,-80.1938889,Miami,FL,other,60,a curved line with a ball on top in florida, miami. +2006-08-27,34.6991667,-86.7483333,Madison,AL,formation,3600,A formation of four to five lights that for at least an hour would circle around each other, then dash off in different directions. +2006-08-27,36.175,-115.1363889,Las Vegas,NV,light,7200,Strange light in western sky over Las Vegas +2006-08-27,37.4852778,-122.2352778,Redwood City,CA,circle,1342,8/27/2006 22:00 ANOTHER LARGE SINGLE CRAFT ABOVE SANTA CRUZ MOUNTAINS. +2006-08-27,34.2366667,-84.4908333,Canton,GA,sphere,120,My wife and myself were shopping online, the computer desk happens to be next to a window. As we were looking at different WebPages so +2006-08-27,47.3225,-122.3113889,Federal Way,WA,unknown,5,Object with long green trail falling in Puget Sound Area. +2006-08-27,42.4775,-83.0277778,Warren,MI,flash,3600,Intermittent flashing lights over citie of Warren, Michigan +2007-08-27,41.2427778,-73.2011111,Trumbull,CT,light,240,bright light over merritt parkway +2007-08-27,37.6447222,-115.7427778,Rachel,NV,disk,180,Nevada desert UFO blazing near Area 51! +2007-08-27,46.6622222,-122.9627778,Chehalis,WA,oval,900,oval shaped object zig zag slowly in sky and held still at times; when still red and green lights. ((NUFORC Note: Possible star?? PD +2007-08-27,35.2827778,-120.6586111,San Luis Obispo,CA,circle,5,Round, white, slow moving object seen in San Luis Obispo California +2007-08-27,33.4486111,-84.455,Fayetteville,GA,flash,3600,I was watching lunar eclipse on Monday with uncle.After full eclipse decided to look at how bright the stars where.I saw Orion's belt a +2007-08-27,39.9625,-76.7280556,York,PA,sphere,45,I witnessed a glowing sphere darting across the sky and making a spiral maneuver. +2007-08-27,29.4236111,-95.2438889,Alvin,TX,fireball,20,Red and green object with noise that made a thumping noise when it hit the ground. +2007-08-27,36.665,-87.4427778,Oak Grove,KY,changing,180,From interstate highway, we saw an aircraft with 6 or 7 white lights changed shape and direction quickly. +2007-08-27,40.6175,-91.2877778,Niota,IL,light,25,String of orange lights near Niota ILLinois August 27, 2007 +2007-08-27,33.6083333,-117.7444444,Aliso Viejo,CA,disk,1200,Oval-shaped circle of very bright lights hovering and gliding from sided to side laterally in the sky over Aliso Viejo +2007-08-27,34.8697222,-111.7602778,Sedona,AZ,chevron,2,Chevon shaped object flaming at each tip falls to earth north of Sedona, Arizona. +2007-08-27,26.0625,-80.2333333,Davie,FL,unknown,60,Saw lights in sky moving east very fast, did not match planes near by +2007-08-27,48.2766667,-116.5522222,Sandpoint,ID,light,3600,Flashing erractic UFO +2007-08-27,43.3491667,-84.1902778,Roosevelt,MI,circle,86400,i sow the ufo around 2:23 in the morning i was stuned at want i sow i went out side to see it but then i sow 4 lights and a flash like +2008-08-27,33.6597222,-85.8316667,Anniston,AL,circle,5,It was circular and was in a cylindrical tube of blue light. +2008-08-27,29.5633333,-95.2858333,Pearland,TX,fireball,2,Bright Fireball-like object appeared/disappeared for 6 seconds over suburb of Houston at 3:04am +2008-08-27,29.7630556,-95.3630556,Houston,TX,cylinder,300,It took this long to find wedsite of the probe I saw in story above. +2008-08-27,29.7630556,-95.3630556,Houston,TX,cylinder,300,UFO PROB/FBI/CIA? 27 AUG 08 I was leaving work around 12:25 pm, 27 Aug 08, Ellington Fld, Houston, TX-- I was going home to evacuating +2008-08-27,41.6638889,-83.5552778,Toledo,OH,disk,240,i saw a ufo in toledo that i cant explain +2008-08-27,39.3641667,-74.4233333,Atlantic City,NJ,light,240,12 lighted objects in four formations appeared from the cloud cover +2008-08-27,33.1908333,-101.3777778,Post,TX,light,1800,light sitting in one place high in the sky for thirty minuts that i saw but others said all day, i watched light slowly leave.9-27-08 +2008-08-27,40.1744444,-74.9230556,Langhorne,PA,other,6,A boomerang object with a baby blue aura surrounding it hovering above Oxford Valley Mall in Langhorne Pa. +2008-08-27,28.2438889,-82.7194444,New Port Richey,FL,diamond,120,Black diamond UFO being chased by small plane. +2008-08-27,41.4663889,-73.4861111,New Fairfield,CT,light,60,Possible Hiperformance Spy Craft and Mother Ship +2008-08-27,48.4644444,-122.2327778,Clear Lake,WA,triangle,300,Triangular shaped UFOs +2009-08-27,39.4230556,-85.0127778,Brookville,IN,light,180,2 bright lights moving E to W at 45 deg. in the sky.They spread, shrank & faded away never going over the horizon but away from Earth. +2009-08-27,47.7544444,-122.1622222,Woodinville,WA,circle,1,A white color circle light flying low to the ground with a black circle in the middle of the white one +2009-08-27,41.8661111,-88.1069444,Wheaton,IL,cigar,120,Large Cigar shaped object in Wheaton IL quickly disappears in the clear sky after cartwheeling north for a minute or two. +2009-08-27,45.5872222,-122.3983333,Camas,WA,light,2,Bright, white light moving quickly across the sky in Camas, WA. +2009-08-27,37.6391667,-120.9958333,Modesto,CA,light,1200,3 unidentified aircraft over Modesto, CA +2009-08-27,39.2666667,-81.5616667,Parkersburg,WV,unknown,240,Object made 3 - 90 degree turns and then disappeared. +2009-08-27,37.7808333,-90.4216667,Farmington,MO,light,600,Swirling, white orbs flying in random patters over Farmington Missouri. +2009-08-27,31.7586111,-106.4863889,El Paso (East Side),TX,other,180,3 unknown objects moving across the el paso sky +2009-08-27,43.0944444,-79.0569444,Niagara Falls,NY,cigar,1200,Object viewed from observation tower at Niagara Falls NY, cigar shaped, with row of lights on side and light on each end. +2009-08-27,32.7152778,-117.1563889,San Diego,CA,fireball,120,burning fireball in sky mistook for moon! +2009-08-27,37.9736111,-122.53,San Rafael,CA,light,3,Still light object accelerates to right in night sky and disappears. +2009-08-27,40.4775,-74.6272222,Hillsborough,NJ,flash,33,Around 10:30 last night I saw flashes outside my window. VERY BRIGHT. I thought it was lightning aqt first because it was about 3 brigh +2009-08-27,44.5191667,-88.0197222,Green Bay,WI,teardrop,600,amber orange light moving erratically and moves on E/NE track--absolutey quiet +2009-08-27,33.6358333,-97.2225,Lindsay,TX,light,10800,Saw a what looked lik a star moving all around faster than any human carft could. ((NUFORC Note: Star?? PD)) +2010-08-27,34.9744444,-92.0163889,Cabot,AR,light,2,Bright light in Cabot/Jacksonville Area...creepy... +2010-08-27,46.2113889,-119.1361111,Kennewick,WA,fireball,120,A fireball, half the size of the sun and covered by a thin cloud, appeared in the eastern sky. +2010-08-27,35.0455556,-85.3097222,Chattanooga,TN,fireball,300,Five orange orbs ascend quickly into the sky over Chattanooga +2010-08-27,40.1022222,-75.2747222,Plymouth Meeting,PA,triangle,20,Craft hovering over PA turnpike +2010-08-27,40.1483333,-89.3647222,Lincoln,IL,light,1,Light(s) near a hot air balloon during a balloon festival at Logan Co. Airport. ((NUFORC Note: Possible lens flares? PD)) +2010-08-27,46.1469444,-122.9072222,Kelso,WA,changing,60,bright orange light in a line in washington +2010-08-27,34.8661111,-92.11,Jacksonville,AR,light,1800,Bright Light Southwest of Jacksonville, AR +2010-08-27,37.4947222,-120.8455556,Turlock,CA,light,60,This was not an aircraft or meteor. +2010-08-27,45.5236111,-122.675,Portland,OR,light,3,850 pm fast craft over portland qr +2010-08-27,42.0986111,-75.9183333,Binghamton,NY,light,180,bright light moving quickly from west to southeast +2010-08-27,47.6816667,-122.2075,Kirkland,WA,light,5,A bright light that was moving at what looked like hypersonic speedes. +2010-08-27,46.2858333,-119.2833333,West Richland,WA,other,60,Brilliant white light moving at extreme velocity traveling in a straight trajectory E to W. ((NUFORC Note: ISS at 21:20 hrs.. PD)) +2010-08-27,40.5852778,-105.0838889,Fort Collins,CO,sphere,120,Strange orange flickering ball as big as the moon, bright like a street lamp, 1000 to 2000 ft away traveled NE in a steady pace. +2010-08-27,47.9791667,-122.2008333,Everett,WA,light,180,ball of light shoots across sky, stops, and then heads back in the direction it came but at a much slower pace. +2010-08-27,41.2794444,-72.5988889,Madison,CT,diamond,20,Pulsating Diamond +2010-08-27,39.9852778,-104.82,Brighton,CO,circle,2700,Very bright flashing in a pattern of red, white, green, but mostly bright light.Watching from patio due west and another north west +2010-08-28,55.4763889,-133.1483333,Craig (Coffman Cove Road),AK,circle,180,big green light in the sky. +2011-08-27,34.0005556,-81.035,Columbia,SC,light,1800,Glowy orange lights on Cayce side of the river. +2011-08-27,34.2819444,-118.4380556,San Fernando,CA,disk,300,Large aircraft hovering very low over San Fernando with red,green and white lights then zoomed off to NW +2011-08-27,38.4683333,-91.4644444,Drake,MO,flash,20,A bright flash or blink was observed in several locations in the night sky. +2011-08-27,35.4816667,-86.0886111,Manchester,TN,light,10800,Moving Star moved fast,shot across the sky and came back,hovered and then moved almost like how a snake moves. +2011-08-27,43.1008333,-75.2330556,Utica,NY,diamond,60,Daytime UFO sighting 8/27/11 Utica, NY +2011-08-27,41.525,-88.0816667,Joliet,IL,triangle,180,Orange/Red Glowing Triangular object travels across sky +2011-08-27,41.85,-87.65,Chicago,IL,sphere,120,seen one metalic orb then seen 15-20 orbs +2011-08-27,43.105,-88.3419444,Hartland,WI,fireball,120,I was driving home and saw a bright orange object that looked like a fireball in the sky. I was driving west at the time. As I looked +2011-08-27,42.2119444,-88.2380556,Cary,IL,fireball,300,Fireballs seen over Cary, Illinois +2011-08-27,42.1816667,-88.3302778,Lake In The Hills,IL,triangle,45,Possible UFO Siting +2011-08-27,43.1705556,-78.6905556,Lockport,NY,light,120,Yellow lights in formation traveling silently across the sky, faded away one by one. +2011-08-27,37.3477778,-120.6080556,Atwater,CA,changing,15,UFO changed colors/shape over Atwater, California +2011-08-27,47.1055556,-122.0444444,Wilkeson,WA,light,1800,Continued from my other report.Went out about 10 after 9 tonight and they were there again. I then looked in a more southerly dire +2011-08-27,40.4075,-82.3269444,Howard,OH,fireball,60,3 red/orange glowing ball shaped objects pass through Knox County Ohio in a series +2011-08-27,39.9783333,-86.1180556,Carmel,IN,sphere,60,Unidentified flying object - tracked for approximately one minute and was a spherical pulsating Orange-Red color. +2011-08-27,41.8108333,-78.28,Port Allegany,PA,circle,900,red light going across sky +2011-08-27,47.6063889,-122.3308333,Seattle,WA,light,60,all of a sudden a new star appeared in ((NUFORC Note: Possible flare from an Iridium satellite?? PD)) +2011-08-27,41.3144444,-81.8358333,Strongsville,OH,teardrop,10800,Frequently seeing UFO in our western sky that darts in all directions and moves quickly with bright lines +2011-08-27,47.6063889,-122.3308333,Seattle,WA,circle,300,Two, bright, reddish-orange lights went across the sky, seemingly close as well as not making any noticeable sound. They headed across +2011-08-27,43.385555600000004,-84.8355556,Riverdale,MI,circle,600,Glowing round orange object that moved very fast and silently. +2011-08-27,37.9747222,-87.5558333,Evansville,IN,fireball,25,Brilliant reddsh orange "fireball" moving silently from north to south over Evansville Indiana. +2012-08-27,36.6436111,-93.2183333,Branson,MO,other,600,Silent whitish or grey sideways football type object flying low with odd flickering lights, no sound. +2012-08-27,34.8719444,-85.5091667,Trenton,GA,unknown,10,A brief encounter with an Unidentified Flying Object, belief is near-abduction sighting. +2012-08-27,42.9005556,-78.6705556,Lancaster,NY,teardrop,4,Bright green light in Lancaster, NY. +2012-08-27,44.6402778,-93.1433333,Farmington,MN,circle,2700,25-40 circular objects moving slowly/hovering at times in Farmington, MN. +2012-08-27,32.7152778,-117.1563889,San Diego,CA,light,900,Yellow-orange light seen 30 seconds and then it powered down and disappeared completly and then powered back on. +2012-08-27,30.0969444,-95.6158333,Tomball,TX,light,120,Amber Light in Tomball, Texas +2012-08-27,42.6375,-70.95,Topsfield,MA,teardrop,10,Driving up 95N just before exit 50(Topsfield/Boxford) saw a yellow/orange/green teardrop shaped sphere moving at a very high rate of sp +2012-08-27,39.9611111,-82.9988889,Columbus,OH,light,600,Red light in the southern sky. +2012-08-27,39.8366667,-105.0366667,Westminster,CO,unknown,120,I saw a bright blue stationary object that turned bright green and silently zoomed off faster than my head can turn. +2012-08-27,34.5008333,-117.185,Apple Valley,CA,sphere,30,My little brother and I were outside and he spotted a bright yellow orb in the sky. It was traveling slowly across. This bright light t +2012-08-27,36.2083333,-115.9830556,Pahrump,NV,light,180,3 lights triangle ,to 2 lights moved fast until 2 minutes or so dimmed and disappeared. +2013-08-27,44.6580556,-67.775,Columbia,ME,light,1800,Bright orange lights seen in sky making impossible maneuvers throughout the month of August. +2013-08-27,33.7488889,-84.3880556,Atlanta,GA,fireball,5,Green fireballs 2 different sightings over Atlanta. +2013-08-27,37.5536111,-77.4605556,Richmond,VA,light,60,Orange ball of light flickers and disappears over Richmond, VA. +2013-08-27,40.7141667,-74.0063889,New York City (Queens; Fresh Meadows),NY,fireball,1200,Four people spotted three orange weird objects in the sky that appeared a total of three times. +2013-08-27,47.0080556,-117.14,Garfield,WA,oval,120,Bright red/yellow ralling ball. +2013-08-27,43.1683333,-89.0666667,Marshall,WI,sphere,300,Orange glowing sphere shapes over night sky in Marshall WI 08/27/2013. +2013-08-27,42.0083333,-91.6438889,Cedar Rapids,IA,light,180,Lights resembled stars but moved in opposite directions then in circles.. +2013-08-27,41.9211111,-73.0605556,Winsted,CT,unknown,300,Three reddish crafts hovering and then disappear. +2013-08-27,36.175,-115.1363889,Las Vegas,NV,fireball,600,Fireballs over Las Vegas. +2013-08-27,32.9125,-96.6386111,Garland,TX,fireball,600,Possible fireballs in the sky that burned out over our house. +2013-08-27,40.4975,-74.4888889,Somerset,NJ,other,2,((HOAX??)) Alien spotted. +1960-08-28,46.8791667,-102.7891667,Dickinson,ND,circle,120,There was no sound no air movement and it moved off very fast . +1966-08-28,41.375,-86.5047222,Grovertown,IN,cigar,10,did i see rockets flying over my house +1972-08-28,43.0116667,-88.2313889,Waukesha,WI,oval,900,8/00/1972 or 8/1973 Waukesha, WI for 20 minutes, a sun-like oval object cited April 25, 2014 +1977-08-28,39.1502778,-123.2066667,Ukiah,CA,changing,60,Seperating points of light +1979-08-28,41.85,-87.65,Chicago,IL,changing,3045,Radioacive Neon Bats ? +1981-08-28,34.0522222,-118.2427778,Los Angeles,CA,cigar,3600,UFO Los angeles k-mart +1991-08-28,42.8741667,-77.2883333,Canandaigua,NY,sphere,900,It was a white sphere and it was keeping pace with my car +1994-08-28,32.7152778,-117.1563889,San Diego,CA,chevron,15,I was standing in by backyard, just past twilight, stargazing, when I noticed a large chevron shaped formation of lights, traveling fro +1996-08-28,47.7625,-122.2041667,Bothell,WA,triangle,2700,Looked out window of my house on a clear night at dusk and saw what looked liked a LARGE Triangular or boomerang type thing appearing l +1997-08-28,34.5036111,-93.055,Hot Springs,AR,circle,900,Three objects that turned into four objects. +1997-08-28,36.9086111,-111.4727778,Page (Lake Powell),AZ,light,900,8. PAGE-LAKE POWELL ARIZONA AUGUST 1997 ((This is the eigth and last to date of several of these experiences, all of which I now feel +1997-08-28,47.6777778,-116.7794444,Coeur D'alene,ID,triangle,2100,my self and several others saw a ship fly over our house , very quiet, no sound at all, was black no lights, had a true shape to it,Tri +1998-08-28,32.7152778,-117.1563889,San Diego,CA,sphere,300,From the south a somewhat dim yellow/green/orange sphere floated up and to the north from behind some trees. It then almost stopped and +1998-08-28,44.98,-93.2636111,Minneapolis,MN,sphere,60,Object just sat in the air glowing brightly, then dimmed. There seemed to be no pattern to it. +1998-08-28,30.6941667,-88.0430556,Mobile,AL,light,60,A string of what appeared to be about a dozen streetlights, but obviously were NOT. (Mobile, AL) +1998-08-28,40.7297222,-73.2108333,West Islip,NY,other,300,Large black boomerang low to ground near my house +1998-08-28,46.5425,-123.5036111,Frances,WA,fireball,2,green fireball seen falling in an arc toward Longview,WA and appear to hit the ground with 3 flashes +1999-08-28,32.7152778,-117.1563889,San Diego,CA,circle,300,Walkin out of house at early morning notice man with two small children staring into sky. I look to see what appears to be an orange ca +1999-08-28,34.1808333,-118.3080556,Burbank (East Of),CA,unknown,3600,Two very distinct light sources holding a stationary position aprox 5mi e. of Burbank Airport. Aprox. 3000 - 8000 ft.alt., aprox 1 mile +1999-08-28,40.7141667,-74.0063889,New York City (Staten Island),NY,sphere,60,Round bright silver object w/ belt wobbled across the sky +1999-08-28,37.6922222,-97.3372222,Wichita,KS,cigar,480,oblongular type object in western sky. appeared to be heading south, then stopped for a long period of time and sped off northwestardl +1999-08-28,34.2647222,-118.5222222,Granada Hills,CA,flash,1,Extremely bright flash lasting about 1 second from a pin-point in space. Lit up whole backyard. At about 20 deg due West from Zenith. +1999-08-28,40.7141667,-74.0063889,New York City (Bronx),NY,circle,20,I recorded on a 8mm camcorder, a round/disclike object moving across the face of the moon....twice!!! +1999-08-28,41.85,-87.65,Chicago (Xxxx W 55 St., By Midway Airport),IL,circle,300,siglent circluar black craft was in front of a full moon. it flu up to the top then right then left then vanished From - Fri Sep 10 19: +2000-08-28,38.9536111,-94.7333333,Lenexa,KS,light,600,What appears to be a very high, orange-like star or satellite moving across the heavens suddenly stops in its tracks. +2001-08-28,40.2425,-82.8591667,Sunbury,OH,disk,1200,Flying disc aircraft which could move forward, sideways, up and down and the craft had lights. +2001-08-28,38.3436111,-89.3805556,Nashville,IL,cigar,300,Cigar shaped UFO sighted while fishing. +2001-08-28,37.3566667,-77.4419444,Chester,VA,rectangle,60,Rectangular Object In Virginia Sky +2001-08-28,44.4591667,-69.6780556,Vassalboro,ME,fireball,2,streaking fireball over central maine +2001-08-28,40.0711111,-74.8652778,Burlington,NJ,changing,300,A shape shifting UFO +2001-08-28,42.9405556,-87.9958333,Greendale,WI,disk,240,Half acre sized black disc seen over Greendale, Wisconsin. +2001-08-28,40.0711111,-74.8652778,Burlington,NJ,oval,180,A local woman and several others reported to the police station that they saw a large oval of lights hovering over the Delaware river i +2001-08-28,46.9494444,-91.7788889,Knife River,MN,triangle,45,Triangle Lights over Lake Superior, MN, Aug 2001. +2002-08-28,46.1469444,-122.9072222,Kelso,WA,unknown,12,Bright orange light. +2002-08-28,46.7380556,-119.9016667,Mattawa,WA,fireball,7,Gold fireball with tail, broke up, but continued downward close to Hanford Nuclear Site. +2002-08-28,30.2669444,-97.7427778,Austin,TX,changing,300,Daytime observation of metallic object in Austin, Tx. +2002-08-28,34.0513889,-84.0713889,Suwanee (Just N Of Atlanta),GA,sphere,300,UFO spotted over Gwinnett county; metallic sphere surrounded by three or four smaller spheres which were rotating around the center. +2002-08-28,42.1947222,-122.7083333,Ashland,OR,light,45,miltiple UFO sighting over Ashland Oregon 8/28/02 +2002-08-28,48.5466667,-117.9044444,Colville,WA,light,45,Fast moving ball of light with darker core, changed direction. +2002-08-28,42.4075,-124.4205556,Gold Beach,OR,light,420,one night while looking at the stars i saw a bright green light moving very slowly +2002-08-28,34.0975,-117.6475,Upland,CA,rectangle,240,Wing shaped object made no sound +2002-08-28,47.0036111,-123.4075,Elma,WA,unknown,3600,this is weird!! +2002-08-28,33.4111111,-93.0694444,Stephens,AR,circle,480,A circular disc 25 ft. wide.with a golden lighted triangle on the bottom of the craft. +2002-08-28,36.2786111,-90.6627778,Peach Orchard,AR,light,2700,Midnight Sighting over Black River Refuge +2003-08-28,40.2986111,-83.0680556,Delaware,OH,light,600,Staying up late is sometimes a part of being a student! Right before going to sleep, after spending several hours of reading, I often +2003-08-28,35.2163889,-109.3330556,Sanders,AZ,light,180,Bright Light Seen at Dawn +2003-08-28,33.415,-111.5488889,Apache Junction,AZ,disk,60,08/28/03 Apache Junction,AZ photo of circular object +2003-08-28,33.0880556,-79.4613889,Mcclellanville,SC,other,180,Slow moving craft +2003-08-28,44.0463889,-123.0208333,Springfield (Camp Creek Road),OR,oval,900,Large oblong Bright & Colorfully Lite Up With No Sound Flew Right Above The Trees. +2003-08-28,35.3858333,-94.3983333,Fort Smith,AR,light,20,Bright Orange Lights with Rapid-Shift Right to Left +2003-08-28,38.5816667,-121.4933333,Sacramento,CA,cigar,60,possibly disk shaped craft with changeing colored lights in a horizontal row. +2003-08-28,30.4941667,-92.4175,Eunice,LA,light,300,I was returning from town to my farm located 4 miles NE of Eunice. I turned north off of the main Hwy. and as I cleared some trees to +2003-08-28,30.6322222,-87.0397222,Milton,FL,cigar,45,08/28/03 10:30pm object appeared houvered,pulsated,and blinked while it rotated for 30 to 40 sec. then disappered +2003-08-28,41.9402778,-85.0005556,Coldwater,MI,unknown,2,The wings of the craft emmitted a low intencity green light, and the craft flew low, slow, and silent. +2003-08-28,39.2547222,-105.2263889,Deckers (4 Mi. South Of),CO,light,2,Bright light with smaller lights over mountains near Deckers observed for over an hour. +2003-08-28,35.1894444,-114.0522222,Kingman,AZ,triangle,300,Triangular shape craft with diamond shape lights +2003-08-28,34.0094444,-118.1044444,Montebello,CA,light,3600,Bright red light in the skies over Los Angeles - stationary at first, then blinking in morse-code +2003-08-28,40.7141667,-74.0063889,New York City (Brooklyn),NY,teardrop,120,teardrop shaped craft with 3 steady lights underneath +2003-08-28,46.1311111,-92.8672222,Sandstone,MN,circle,120,I saw a very bright red cirucular shaped object travel jerk through the sky +2003-08-28,30.2669444,-97.7427778,Austin,TX,light,25,5 pure white lights, long cylinder moving fast +2003-08-28,37.9747222,-87.5558333,Evansville,IN,other,180,Our family had gone to bed for the night, when my daughter entered my bedroom and expressed concerned over an outside "light" that was +2003-08-28,34.0983333,-118.3258333,Hollywood,CA,triangle,60,On Thursday Aug 28 at or about 11:30 pm as my Mom and I were driving on the 101 fwy north between the Rampart and Silverlake blvd.We su +2004-08-28,35.7719444,-78.6388889,Raleigh,NC,light,900,Dim, sporadic, fast moving lights over park +2005-08-28,35.4713889,-98.3552778,Hinton,OK,oval,20,Bright oval fast moving object, seen moving across the dark sky, unlike falling star cause it could be seen moving through clouds. +2005-08-28,33.9533333,-117.3952778,Riverside,CA,chevron,300,Arrowhead seen above 215 freeway near Riverside Ca. +2005-08-28,34.0522222,-118.2427778,Los Angeles,CA,changing,300,the object is bright moving up and down with high speed. +2005-08-28,48.7258333,-119.0125,Wauconda,WA,light,900,BRIGHT STAR LIKE OBJECT ON HORIZION. MOVED VERY RAPIDLY AND STOP IN POSITION INSTANTLY +2006-08-28,39.2191667,-121.06,Grass Valley,CA,diamond,360,Three objects, four lights each. moved slowly and silently. +2006-08-28,36.7280556,-76.5838889,Suffolk,VA,flash,15,At approximately 5:55 AM I was traveling on US-460 Westinto downtown Suffolk to get gas. As I passed Starr Motors, I noticed a bright +2007-08-28,19.6255556,-155.0416667,Keaau,HI,light,300,Big Island of Hawaii while watching the lunar eclipse, witnessed a large glowing ball darting in the sky +2007-08-28,40.4333333,-110.0291667,Neola,UT,circle,300,A Ufo in the sky. +2007-08-28,47.5675,-122.6313889,Bremerton,WA,chevron,5,7 to 8 white lights, moving fairly quickly, no sound noticed +2007-08-28,47.6063889,-122.3308333,Seattle,WA,triangle,15,My wife and I were on our balcony from 2:15am to 3:45 to observe the lunar eclipse. I had setup my digital camera with telephoto lens +2007-08-28,38.405,-83.6122222,Wallingford,KY,other,60,Videotaped unidentified object floating in front of the moon during the lunar eclipse. +2007-08-28,40.2969444,-111.6938889,Orem,UT,changing,180,two amorphous flying objects +2007-08-28,44.5191667,-88.0197222,Green Bay,WI,circle,300,round black object in sky over green bay +2007-08-28,38.4219444,-77.4086111,Stafford,VA,other,300,Unknown sighting +2007-08-28,40.8366667,-72.9175,Yaphank,NY,egg,240,i was going to my cousins house out east.. he lives near Southaven park...so iam driveing down sunrise hwy and i see this thing fl +2007-08-28,36.5433333,-119.3861111,Dinuba,CA,triangle,10,White or silver triangle observed, no sound or lights, moving at a very high rate of speed. +2007-08-28,33.9375,-117.2297222,Moreno Valley,CA,triangle,120,TRIANGULAR SHAPED OBJECT HOVERING OVER MORENO VALLEY HILLS... +2007-08-28,39.8005556,-75.46,Claymont,DE,sphere,1,2 spheres side by side traveling west to east over claymont de. +2007-08-28,34.0522222,-118.2427778,Los Angeles,CA,cigar,5,large fast-moving craft traveling east to west over Culver City area of Los Angeles +2007-08-28,42.7325,-84.5555556,Lansing,MI,unknown,180,object above trees didnt move for 3-4 minutes 2 white lights 1 red pulsed +2007-08-28,43.5455556,-116.8122222,Marsing,ID,light,1500,Red lights over Snake River near Marsing, Idaho +2007-08-28,41.5963889,-73.9113889,Wappingers Falls,NY,oval,4,An object hovered over my car and it was bright with a white light that was blinking. It must have been about 40 feet above me and was +2007-08-28,39.7027778,-75.1122222,Glassboro,NJ,other,180,Two boomerang shaped objects in washington township Nj +2008-08-28,42.0694444,-76.155,Apalachin,NY,oval,15,inverted objects in Upstate New York +2008-08-28,34.0736111,-118.3994444,Beverly Hills,CA,flash,10,I was at a birthday bash of my friend, in the beverly hills area and there in the sky suddently were two flashing lights from the sky. +2008-08-28,34.9530556,-120.4347222,Santa Maria,CA,sphere,60,OBSERVED A SLOW MOVING OBJECT OVER SANTA MARIA, CA. THEN IT SUDDENLY VANISHED. ((Satellite??)) +2008-08-28,22.2052778,-159.5027778,Hanalei,HI,light,90,We saw six orange lights appear over Hanalei Bay, Kauaii +2008-08-28,40.2969444,-111.6938889,Orem,UT,triangle,30,Silent translucent triangle +2008-08-28,40.5247222,-111.8630556,Draper,UT,triangle,1800,Triangular, shadowy, silent shapes moving south across the Draper sky +2008-08-28,40.6083333,-75.4905556,Allentown,PA,disk,60,Slowly hovering disk shaped object with a four pronged star-like shape on the bottom flying 60 feet above tree level. +2008-08-28,34.7008333,-87.5288889,Leighton,AL,fireball,2,round ball of light +2008-08-28,41.6411111,-88.4472222,Yorkville,IL,circle,240,Power goes out, brite high in the sky moving all over +2008-08-29,38.935,-74.9063889,Cape May,NJ,changing,1200,Object appeared to be yellow colored run away balloon +2009-08-28,45.9975,-121.5269444,Trout Lake (Rural Washington),WA,fireball,300,Blinking white light / high acceleration into space / left a reddish white trail +2009-08-28,35.1494444,-90.0488889,Memphis,TN,fireball,1,Bright glowing green sphere that vanishes, very close and very big. ((NUFORC Note: Student report. PD)) +2009-08-28,29.7630556,-95.3630556,Houston,TX,light,30,Very bright light, idle, then shot off rapidly. +2009-08-28,42.6525,-73.7566667,Albany,NY,disk,30,A white disc in the sky that suddenly dissapears +2009-08-28,33.7569444,-118.3530556,Rolling Hills,CA,triangle,10,Triangles over San Pedro Basin. ((NUFORC Note: Student report. PD)) +2009-08-28,34.1458333,-118.8047222,Westlake Village,CA,flash,25,Driving on the 101 freeway north between Lindero Canyon and Westlake Boulevard exits, watching a rather remarkable sunset, there sudden +2009-08-28,36.3883333,-86.4466667,Gallatin,TN,light,10,seven small, red dots viewed moving at a high speed from southwest to northeast. +2009-08-28,47.6733333,-117.2383333,Spokane Valley,WA,formation,120,Unusual light formation over Spokane, WA +2009-08-28,47.6733333,-117.2383333,Spokane Valley,WA,formation,180,V-shaped formation of lights over Spokane, WA +2009-08-28,43.1263889,-93.4775,Ventura,IA,unknown,60,Craft with flashing white, red and blue lights hovering low over town making no noise. +2009-08-28,33.9966667,-77.9075,Kure Beach,NC,triangle,300,Bright Orange lights over Kure Beach North Carolina +2009-08-28,41.1238889,-100.765,North Platte,NE,triangle,360,I walked out of the house at 10 PM and something caught my eye, so I looked up and saw a Rectangle Object with a White Light on each c +2009-08-28,40.2169444,-74.7433333,Trenton,NJ,rectangle,1200,RECTANGLE SHAPED OBJECT WITH COLORED LIGHTS IN TRENTON N.J. 08/28/09 AT 22:00PM +2009-08-28,61.2180556,-149.9002778,Anchorage,AK,formation,1200,Odd Cloud Formation Lit Up and Moving Toward and Away from us. +2010-08-28,38.6055556,-86.1011111,Salem,IN,changing,2700,Pulsing, shape-shifting UFO in Southern Indiana. ((NUFORC Note: Sirius is to the left of, and below, Orion. PD)) +2010-08-28,42.5791667,-71.4383333,Westford,MA,fireball,120,3 Orange Fireballs in triangle formation +2010-08-28,41.6005556,-93.6088889,Des Moines,IA,light,600,Solid and silent red light flying over Des Moines, Iowa. +2010-08-28,47.6063889,-122.3308333,Seattle (Above),WA,other,300,Huge space shuttle like --- blimp like object observed floating above Seattle +2010-08-28,41.010555600000004,-73.8441667,Ardsley,NY,oval,180,11-13 bright orange circular orbs moved in unison in the evening near Ardsley NY +2010-08-28,37.8227778,-121.2755556,Lathrop,CA,fireball,300,the object got so bright we actually thought it would explode +2010-08-28,34.0522222,-118.2427778,Los Angeles,CA,other,300,Explanation of possible sightings in Los Angeles +2010-08-28,32.7919444,-115.5622222,El Centro,CA,triangle,1800,It would move slow and pause at times. +2010-08-28,34.0522222,-118.2427778,Los Angeles,CA,disk,40,We were heading to get dinner when all three of the witnesses notice a disc shaped objects floating through the air. Flashing lights. +2010-08-28,34.0522222,-118.2427778,Los Angeles,CA,disk,40,We were heading to get dinner when all three of the witnesses notice a disc shaped objects floating through the air. Flashing lights sy +2010-08-28,41.010555600000004,-73.8441667,Ardsley,NY,rectangle,60,seven lights in formation rotate and change formation to resemble the Big Dipper +2010-08-28,26.0625,-80.2333333,Davie,FL,light,900,South West Broward FL Orange Redish Lights Flyby on 8/28/2010 20:45 +2010-08-28,39.7219444,-86.09,Beech Grove,IN,fireball,1260,fireball i never seen anything like this before +2010-08-28,40.8258333,-74.2094444,Montclair,NJ,formation,2700,Parallel flashing lights sighted in Montclair, New Jersey. +2010-08-28,38.6591667,-87.1727778,Washington,IN,formation,300,Convoy of pulsing ruby slippers +2010-08-28,34.1511111,-118.4483333,Sherman Oaks,CA,other,240,ufc - scrolling lights hovering over los angeles area +2010-08-28,42.4133333,-73.6736111,Valatie,NY,light,30,Bright star like object seen performing maneuvers in the skies over Columbia County, NY +2010-08-28,45.7811111,-122.5322222,Battle Ground,WA,fireball,180,Fireballs witnessed by 6 people over Battle Ground, Washington skies August 28, 2010 +2010-08-28,39.2505556,-76.5208333,Dundalk,MD,light,30,UFO seen moving over dundalk. +2010-08-28,39.36,-84.31,Mason,OH,disk,1800,i was looking up at the sky for the international space staion.. and had seen this bright light from the east.. adn it was a constant l +2010-08-28,38.895,-77.0366667,Washington,DC,fireball,120,Red flaming object flying low over Washington DC with no sound +2010-08-28,36.1333333,-96.3541667,Mannford,OK,unknown,300,Reddish-orange orbs hovering, them disappearing in the night sky +2010-08-28,43.1547222,-77.6158333,Rochester,NY,fireball,600,We saw 20 to 30 fireballs floating or gliding higher and then slowly flickering out. +2010-08-28,37.9680556,-91.3547222,Steelville,MO,circle,5400,Strange craft drits erratically through the southern Missouri sky. ((NUFORC Note: Possibly Jupiter? PD)) +2010-08-28,41.010555600000004,-73.8441667,Ardsley,NY,other,30,Flame- like light moving across sky at helicopter speed but making no sound +2011-08-28,37.9513889,-91.7711111,Rolla,MO,light,300,Star-like object with two faint blue lights moving together. +2011-08-28,32.7763889,-79.9311111,Charleston,SC,oval,1800,Slow, moving, multicolored object above the sky in Charleston, SC. +2011-08-28,38.4247222,-90.7825,Catawissa,MO,triangle,37800,Catawissa Missouri in Franklin County, a hudge triangular shaped object in sky just like 4 nights prior to this +2011-08-28,40.4277778,-74.4163889,East Brunswick,NJ,sphere,3600,We saw a shpere like obj. in the sky that had pulsating colors of red, green, blue and yellow. ((NUFORC Note: Twinkling star? PD)) +2011-08-28,40.9038889,-73.1983333,Nissequogue,NY,sphere,180,round silver object hovering over long island bay during hurricane Irene +2011-08-28,38.5816667,-121.4933333,Sacramento,CA,circle,300,Circular object scene off I-5 in Sacramento's night sky. +2011-08-28,34.2783333,-119.2922222,Ventura,CA,circle,4,a huge circular greenish/blue colored flys through the evening sky in Ventura +2011-08-28,37.585,-79.0516667,Amherst,VA,sphere,120,Large orange orb. +2011-08-28,41.6116667,-93.885,Waukee,IA,other,180,Bright organge light- goes off and looks atom-shaped. +2011-08-28,35.4833333,-86.4602778,Shelbyville,TN,sphere,900,i,and my wife went to a gruduation party for a friend who graduated from collage,and we all were outdoors at our friends home all of us +2011-08-28,45.3575,-122.6055556,Oregon City,OR,light,300,Bright white light and small red light in sky 8-28-2011 Oregon city oregon +2011-08-28,40.3719444,-75.2930556,Perkasie,PA,triangle,300,Balls of firelike composition coming in and out, movied together in formation at bizarre speed, stopped on a dime, disappeared. +2011-08-28,43.0202778,-78.8805556,Tonawanda,NY,circle,1200,3 redidish organge cicle/spheres seen over Tonawanda NY +2011-08-28,45.6388889,-122.6602778,Vancouver,WA,light,300,long bright red light, low in sky +2011-08-28,47.6063889,-122.3308333,Seattle,WA,light,180,Seatte +2011-08-28,45.4463889,-122.6380556,Milwaukie,OR,light,120,bright light 08/28/2011 portland +2011-08-28,47.6588889,-117.425,Spokane,WA,light,60,3 bright orange lights at low altitude over northwest Spokane. +2011-08-28,47.1855556,-122.2916667,Puyallup,WA,circle,300,moving stars in the sky intersecting and disappearing +2011-08-28,44.0216667,-92.4697222,Rochester,MN,light,180,Lighted object in orbital motion changed color, stopped, moved erratically at varying speeds, on a non-orbital path. +2011-08-28,41.2969444,-88.3,Carbon Hill,IL,fireball,240,1 very low, just over trees, moving very slow from east to west movement. Ran into house after a few minutes, came back out and before +2011-08-28,33.9533333,-117.3952778,Riverside,CA,flash,4,2 Large Flashes of Light Seen in Riverside,CA 10:15pm 8/28/011 +2011-08-28,34.61,-112.315,Prescott Valley,AZ,oval,1200,During this time I felt like something was watching me when I was watching the object. +2012-08-28,46.7833333,-92.1063889,Duluth,MN,oval,2100,Oval strong light hovering in tree. +2012-08-28,41.525,-88.0816667,Joliet,IL,circle,180,We saw 7 glowing orange balls of light slightly above tree top level for several minutes. There was no sound. They took off straight up +2012-08-28,25.7738889,-80.1938889,Miami,FL,fireball,5,Reddish orange ball appears in the night sky at tremendous speed. +2012-08-28,33.5091667,-111.8983333,Scottsdale,AZ,fireball,15,Seven Orange "Fireball" Objects Dance in the Arizona Moonlight +2012-08-28,36.1538889,-95.9925,Tulsa,OK,disk,7200,Three stationary multi-colored lights in triangle formation over Tulsa, Ok +2012-08-28,61.2180556,-149.9002778,Anchorage,AK,light,300,2 bright lights over Anchorage +2012-08-28,29.7630556,-95.3630556,Houston,TX,cylinder,60,Never seen anything like this +2012-08-28,32.7833333,-96.8,Dallas,TX,other,12,Two greenish-yellow lights connected by an undulating fog at a high speed and no sound. +2012-08-28,40.3275,-80.0397222,Bethel Park,PA,light,120,4 red lights, with some white, in a sharp triangle formation with the 4th light in front of the point. No sound moving slowly. +2012-08-28,32.7919444,-115.5622222,El Centro,CA,other,1800,Ufo like movies type and then turned into orange bright star kinda +2013-08-28,41.2813889,-73.4986111,Ridgefield,CT,other,300,Slow moving red and yellow objects. +2013-08-28,19.5061111,-154.8486111,Kapoho,HI,light,600,Slow moving star like light in the sky at 10:30am vanishes. +2013-08-28,46.4111111,-86.6477778,Munising,MI,other,2,Square shaped UFO going over Lake Superior. +2013-08-28,39.2666667,-74.6452778,Marmora,NJ,triangle,60,Three V shaped objects with lights flying over treetops on Route 9 in Marmora, NJ. +2013-08-28,42.4972222,-82.9372222,Roseville,MI,fireball,600,Aware and very real. +2013-08-28,38.2511111,-87.5811111,Ft. Branch,IN,disk,1200,Witnessed bright light with red lights west of Ft. Branch. Followed it and witnessed it go low to the ground then raise up over trees. +2013-08-28,47.6063889,-122.3308333,Seattle (West Seattle/Seatac),WA,fireball,300,Two fireballs above West Seattle. +2013-08-28,38.8105556,-90.6997222,O'fallon,MO,other,5,Small dim white/semi-transparent trapezoid shaped object moved quickly across sky from west to southeast then faded off into distance +2013-08-28,40.2841667,-84.1555556,Sidney,OH,sphere,1200,Spotting of 8 clusters of 3 red/orange fire orbs flying over Sidney Ohio ( Took Pictures) +2013-08-28,26.5216667,-82.1894444,Captiva,FL,disk,3600,SIGHTING #27 AUGUST 27, 2013 – 5th SIGHTING OF A SILVER-GOLD, GLOWING ELONGATED/FOOTBALL (FLYING SAUCER) SHAPED UFO SILVER-GOLD UFO’S A +2013-08-28,45.7833333,-108.5,Billings,MT,fireball,60,Bright, glowing object at 5000 ft AGL. +2013-08-28,35.3272222,-96.925,Shawnee,OK,light,3600,Distant intermittent erratic bright white object dancing around in Northern Star sky region after dark freaky! +2013-08-28,42.9316667,-76.5663889,Auburn,NY,formation,180,Two formations of ufos heading south at 22:30 over Auburn, NY. +1974-08-29,42.6583333,-83.15,Rochester Hills,MI,disk,300,UFO MICHIGAN +1991-08-29,44.7316667,-116.08,Donnelly,ID,unknown,300,When there is an animal mutilation, what can you hear? +1992-08-29,42.6183333,-82.5311111,Algonac,MI,light,180,bright object bacame 8 separate objects and flew off in separate directions +1995-08-29,37.6938889,-85.8591667,Elizabethtown,KY,triangle,60,Black Triangular shaped craft with 3 pulsating red lights. +1997-08-29,40.2247222,-105.2708333,Lyons,CO,disk,120,Two High School Girls see silver disk move over town +1997-08-29,44.4752778,-70.1886111,Livermore Falls,ME,fireball,900,It finally split into two distinct balls of bright orange fiery lights about 1000 feet above and ahead of us. +1997-08-29,32.2216667,-110.9258333,Tucson,AZ,chevron,20,As we traveled the 10e freeway to Tucson the cheveron shaped craft approahed us as if it was going to land on the highway +1998-08-29,37.775,-122.4183333,San Francisco,CA,diamond,2700,3 diamond shaped craft with 4 bright lights hovered on the eastern sky. +1998-08-29,40.9008333,-80.8569444,West Salem,OH,changing,60,It had approx. 4 large lights, in a diamond shape that would blink, and immediately following it, a large burst of fire from the rear.. +1999-08-29,44.0247222,-88.5425,Oshkosh,WI,sphere,1,I watched a black sphere slowly moving in a SW direction. +1999-08-29,34.1072222,-118.0569444,Temple City,CA,light,900,Bright red light. +1999-08-29,34.1072222,-118.0569444,Temple City,CA,light,900,Red star-like object in the northeast sky. +1999-08-29,44.8408333,-93.2980556,Bloomington (East Bloomington),MN,triangle,172800,This seemingly craft has been hanging around here all summer! But tonight it came closer and we could see three lights in the shape of +1999-08-29,44.0991667,-87.7008333,Manitowoc Rapids,WI,fireball,60,Bright Fireball +2000-08-29,36.3125,-95.6158333,Claremore,OK,unknown,5400,I was go-karting and the i saw the ufo so i parked the go kart and ran inside and got a teliscope. +2000-08-29,41.2391667,-81.3461111,Streetsboro,OH,light,900,bright white light traveling west then reversed it's direction quickly and unlike convential aircraft did not have strobe or other iden +2001-08-29,38.7077778,-122.9013889,Geyserville,CA,light,20,At approximately 5:15AM, August 29th, 2001, I was observing the sky in a South by South west direction when a flash of light caught my +2001-08-29,40.3777778,-76.6466667,Grantville,PA,disk,60,My 12 year old daughter came home from school and said that she had to tell me something and that she thought I would not beleive her. +2001-08-29,33.4352778,-112.3575,Goodyear,AZ,other,1200,Five white objects moving from side to side during the daylight. +2001-08-29,41.4338889,-79.7066667,Oil City,PA,changing,1800,20 minute sighting of balloon-like objects in broad daylight by at leat 15 witnessess +2001-08-29,41.2586111,-95.9375,Omaha,NE,triangle,45,Black, triangular shaped observed over Omaha in daylight +2001-08-29,39.4152778,-81.455,Marietta,OH,triangle,60,Two Triangular black objects moving low to the ground and very quickly in a northeast direction. +2001-08-29,35.4975,-97.2686111,Choctaw,OK,oval,15,LARGE OVAL CRAFT WITH HUGE BRIGHT LIGHTS NEAR A AFB QUIET LOSE OF POWER AFTER WARD +2001-08-29,44.1897222,-70.1408333,Greene,ME,unknown,2,UFO sightings in Southern Maine +2001-08-29,41.8491667,-71.8191667,East Killingly,CT,cigar,300,Streaming lights moving above trees. +2001-08-29,44.5191667,-88.0197222,Green Bay,WI,light,5,1 bright object sharp focus oval egg shape (tear drop like shape)flying at a very high rate of speed north +2002-08-29,39.6133333,-105.0161111,Littleton,CO,disk,120,Daytime disk flying in stormy Denver weather +2002-08-29,34.2163889,-119.0366667,Camarillo,CA,other,60,Driving on 101 south in Camarillo my two Daughters started yelling for me to look out of the window, saw a large grey plane appeared to +2002-08-29,44.6216667,-123.9372222,Toledo,OR,triangle,0.01,The object I saw was very clear and moved at a remarkably fast speed, of which I cannot imagine anything of our technology, currently. +2003-08-29,29.7855556,-95.8241667,Katy,TX,changing,1140,Orange silver cross was not the dancing light, plasmic shere taped. Bizarly On and off camera were not same. +2003-08-29,34.8986111,-117.0219444,Barstow,CA,diamond,3600,Strange lights:red, blue, green, and yellow in Barstow CA. +2003-08-29,39.3641667,-74.4233333,Atlantic City,NJ,light,120,I saw lights in the sky while coming back from Atlantic City in a bus! +2003-08-29,45.5236111,-122.675,Portland,OR,triangle,420,Silent Triangle over Gresham/Portland Oregon remains motionless, rapidly accelerates away. ((OREGON/MUFON REPORT INCL.)) +2003-08-29,26.2441667,-80.2066667,Margate,FL,fireball,1200,I recorded an object that was glowing brighter than a star. I thought it was Mars and I recently saw a story on the local news about a +2004-08-29,38.1866667,-91.9469444,Vienna,MO,sphere,25,Sphere shaped object..again! +2004-08-29,38.4966667,-84.5641667,Corinth,KY,triangle,180,Triangular object with lights on each tip that switch patterns and hover ; seen on I 75 near Corinth, KY +2004-08-29,36.2083333,-115.9830556,Pahrump,NV,other,240,IT WAS A BOOMARANG SHAPE NO MARKING ON THE UNDERSIDE,WHITE IN COLOR NO LANDING GEARS AND NO FLAPS HAS LIGHT ON THE EDGES MADE NO SOUND +2004-08-29,40.7141667,-74.0063889,New York City,NY,triangle,180,8/29/04 1:30pm Eastern -Triangle over Empire State Building with protests below. +2004-08-29,40.7141667,-74.0063889,New York City (Brooklyn),NY,circle,180,11 hovering objects one very large(oval) daylight 3:15 pm Augᅍ񫺔 very high altitude due north +2004-08-29,34.0522222,-118.2427778,West Los Angeles,CA,diamond,900,Over Santa Monica, Slow Moving Bright in the Atmosphere +2004-08-29,37.5483333,-121.9875,Fremont,CA,rectangle,300,Anomalous object, lacking any aerodynamic features, rect./oval shape, DC-10 size, moving eastward. +2004-08-29,30.5880556,-91.1680556,Baker,LA,light,1800,2 white lights moving eratically in the sky. +2005-08-29,39.1433333,-77.2016667,Gaithersburg,MD,light,180,3 UFOs in sky, 2 fighter jets, Gaithersburg, Maryland +2005-08-29,42.9633333,-85.6680556,Grand Rapids,MI,formation,10,fast lights wobbling bowtie formation +2005-08-29,45.565,-94.3180556,St. Joseph,MN,light,1200,The 3 objects appeared above the horizon at sunset One headed West and two headed North. Very bright! +2005-08-29,34.2783333,-119.2922222,Ventura,CA,light,90,Bright starlike red light in night sky that travelled vertically, slowly leaving a small red trail before disintegrating. +2005-08-29,30.2669444,-97.7427778,Austin,TX,light,300,night manuevers +2005-08-29,44.98,-93.2636111,Minneapolis,MN,oval,2700,Flashing Ring floats S-SW from Minneapolis view area 45 minutes +2005-08-29,29.9911111,-93.9583333,Port Neches,TX,unknown,5400,Seven Very Fast Flying Objects Twirling Around At Incredible Speeds And Monuvers +2006-08-29,38.8338889,-104.8208333,Colorado Springs,CO,oval,600,UFO in Colorado Springs/Manitou Springs area +2006-08-29,45.5236111,-122.675,Portland,OR,egg,1,Object seen east of Portland Airport at 1:25pm Moving steadily south and level +2006-08-29,43.7122222,-89.8994444,Lyndon Station,WI,sphere,30,A silver sphere at travelling fast at a high altitude seen in rural Wisconsin skies. +2006-08-29,29.4238889,-98.4933333,San Antonio,TX,changing,300,Small dark objects over San Antonio, TX. +2006-08-29,40.8,-96.6666667,Lincoln,NE,light,60,I tracked a brilliant orange pulsating light moving slowly and silently for a minute, then saw it disappear. +2006-08-29,41.4872222,-120.5413889,Alturas,CA,light,120,Three lights appear in the Modoc County skies. +2006-08-29,33.6888889,-78.8869444,Myrtle Beach,SC,light,3600,I saw glowing lights over the Atlantic for one hour from the 19th floor . +2007-08-29,38.4219444,-77.4086111,Stafford,VA,other,180,TERRESTRIALS SIGHTED CLOSE TO QUANTICO MILITARY BASE +2007-08-29,41.0375,-74.0411111,Park Ridge,NJ,teardrop,120,air force jet at extream altitude chasing pie shape( with a notch in it) ufo at a much high altitude +2007-08-29,47.3144444,-116.5616667,Saint Maries,ID,cigar,120,Silent silvery-white cigar or blimp shaped craft spotted over saint maries Idaho +2007-08-29,39.4063889,-88.79,Shelbyville,IL,cigar,20,my daughters and son were waiting on church bus. My daughter suddenly points to object cylinderical,very long shiny. For a moment it +2007-08-29,40.7525,-73.6108333,Carle Place,NY,oval,1800,UFO sighted in Carle Place with fascinating lights! +2007-08-29,40.7525,-73.6108333,Carle Place,NY,oval,1800,UFO sighting in Carle Place! +2007-08-29,42.7261111,-87.7827778,Racine,WI,light,900,bright object rising out of lake michigan. +2007-08-29,38.2325,-122.6355556,Petaluma,CA,sphere,60,Blue sphere near the moon on the night of the eclipse +2007-08-29,39.9536111,-74.1983333,Toms River,NJ,sphere,120,Illuminated globes cross the sky +2008-08-29,39.8113889,-74.9833333,Clementon,NJ,cylinder,1,photo of cylinderical object. +2008-08-29,35.3186111,-82.4611111,Hendersonville,NC,circle,300,We were walking in the front yard when we noticed red circles moving and stopping in the sky. +2008-08-29,41.9941667,-88.2922222,South Elgin,IL,sphere,30,Redish Sphere moving at high speed across the night sky. +2008-08-29,43.1858333,-76.1727778,Clay,NY,triangle,900,Something shaped like a big triangle flew slowly and directly over the top of my car +2008-08-29,40.8,-96.6666667,Lincoln,NE,light,180,Bright red light surrounded by light red translucent red halo +2008-08-29,44.0463889,-123.0208333,Springfield,OR,light,300,STAR LIGHT TRAVELS FAST AND FAR! +2008-08-29,37.323055600000004,-122.0311111,Cupertino,CA,sphere,2,Bright spherical object streaking west to east in skys over San Jose +2008-08-29,39.2902778,-76.6125,Baltimore,MD,oval,300,it was a large aurora shape moving in a non comon aircraft way manmade it also had color type lights +2009-08-29,26.3583333,-80.0833333,Boca Raton,FL,light,120,one or two appeared outside changing from an orange light to white while roaming around a long cloud. +2009-08-29,37.6688889,-122.0797222,Hayward,CA,triangle,15,I saw a perfect triangle with lights at each point +2009-08-29,32.7152778,-117.1563889,San Diego,CA,flash,1,White flash of light zipped across night sky from southern direction towards the north and blacked out instantly. +2009-08-29,33.8463889,-118.0458333,La Palma,CA,sphere,1.2,Green Object flying over LA Area +2009-08-29,35.9786111,-114.8316667,Boulder City,NV,rectangle,300,Square/rectangular object seen over mountains during the day. +2009-08-29,40.7141667,-74.0063889,New York City (Brooklyn),NY,other,300,((HOAX??)) Two people were outside of Toys-R-Us and speaking to one another is some very strange dialect consisting of short tones. +2009-08-29,26.6155556,-80.0572222,Lake Worth,FL,circle,300,Very High Slow Moving Object +2009-08-29,41.9375,-70.0333333,Wellfleet,MA,rectangle,300,Odd rectangle shaped object hovering over Cape Cod Bay after sunset. +2009-08-29,37.725,-122.155,San Leandro,CA,disk,600,Saucer like object hoovering in circles with bright flashing lights moving across the sky +2009-08-29,37.7975,-96.9994444,Towanda,KS,fireball,180,White fireball looked like meteor but then changed directions. +2009-08-29,41.9575,-88.0808333,Bloomingdale,IL,sphere,600,bright lit-up orbs, 20-30 of them in the sky above Bloomingdale, IL. +2009-08-29,35.4105556,-80.8430556,Huntersville,NC,cylinder,300,Cylinder shaped object with orange glow, slowly moving to the east before disappearing from site. +2009-08-29,44.295,-93.2686111,Faribault,MN,triangle,40,5 orange lights in a V shape in the sky moving slowly south for 40 seconds then it sped up & disappeared. +2009-08-29,39.8027778,-105.0869444,Arvada,CO,light,180,What looked like a simple satellite, changed color, became more bright and expanded in 3-4 times in size. +2009-08-29,44.0522222,-123.0855556,Eugene,OR,sphere,60,We saw a glowing orange sphere in the sky, which moved south steadily then abruptly gained altitude and disappeared. +2009-08-29,40.2227778,-85.7788889,Frankton,IN,sphere,120,Frankton, IN on 600W, shpere object hovering over cornfield with red, yellow, and white flashing lights. +2010-08-29,39.2902778,-76.6125,Baltimore,MD,light,1200,Orange orb floating over Baltimore +2010-08-29,43.0388889,-87.9063889,Milwaukee,WI,unknown,600,multicolored lights, random fast movement, hovering, blinking +2010-08-29,40.4166667,-86.8752778,Lafayette,IN,other,30,floating object and strange lights in the sky. +2010-08-29,38.6630556,-90.5769444,Chesterfield,MO,sphere,3,Strange yellowish orange light moving quickly across the sky in Chesterfield, MO +2010-08-29,47.6105556,-122.1994444,Bellevue,WA,flash,1200,Bright flashing light travels erratically in both pulsing pattern and trajectory for extended period +2010-08-29,39.6836111,-75.75,Newark,DE,circle,120,Multiple witnesses of 2 flying disks in Newark, DE on 08/29/10 +2010-08-29,43.2133333,-77.58,Irondequoit,NY,cylinder,40,Cylinder Aerodynamic Object with 6 Glowing White Lights Seen Over Irondequoit, NY! +2010-08-29,47.7625,-122.2041667,Bothell,WA,light,1200,Gathering of a dozen or more orange lights in the northeastern sky - a "gathering" +2010-08-29,41.010555600000004,-72.4855556,Cutchogue,NY,unknown,3600,Bright object seen moving north of Riverhead, Long Island, NY. +2010-08-29,30.4866667,-90.9561111,Denham Springs,LA,disk,240,Fireball becomes a saucer right in front of my eyes!!! +2010-08-29,41.9583333,-70.6677778,Plymouth,MA,triangle,10,Red and white lights, Seen on Rt. 44 east shortly before Esta Rd +2010-08-29,41.9583333,-70.6677778,Plymouth,MA,triangle,120,3 lights, flying just above treetops headed east on Rt. 44 just past the highway. +2010-08-29,42.0825,-110.9544444,Cokeville,WY,formation,180,An object with lights hovered in the night sky for 3 minutes +2010-08-29,40.8894444,-111.88,Bountiful,UT,light,10,Rapidly moving formation of lights. +2010-08-29,42.5458333,-71.9111111,Westminster,MA,triangle,60,A silent moving object with very bright yellow-white lights. +2010-08-29,37.3394444,-121.8938889,San Jose,CA,light,120,Orange/Red light in sky viewed from San Jose +2011-08-29,42.525,-71.7602778,Leominster,MA,light,120,White dot slowly moving east to west in the sky over S. Leominster MA 8/29/11 @ 4:45am. +2011-08-29,29.4236111,-95.2438889,Alvin,TX,circle,20,Star Shooting towards earth and stops in mid air and make a 90 degree turn and slowly moves out of sight. +2011-08-29,29.4236111,-95.2438889,Alvin,TX,diamond,180,METOR STREAKS ACROSS THE SKY AND STOPS IN MID AIR AND STARTS BLINK A SILVER LIGHT THEN FLY AWAY. +2011-08-29,41.5119444,-87.9655556,New Lenox,IL,triangle,900,Three Triangle UFO's seen in the southwest sky in New Lenox Illinois by 7 witnesses. +2011-08-29,32.64,-117.0833333,Chula Vista,CA,light,3600,Object Hovering Followed Bicyclist +2011-08-29,41.85,-87.65,Chicago,IL,unknown,180,UFO's Flahing Intense Bright Light +2011-08-29,47.4888889,-92.4647222,Gilbert,MN,light,300,Star-like spheres for past few weeks consistant every night. +2011-08-29,47.6063889,-122.3308333,Seattle,WA,cylinder,900,8 yellow Orange orbs spotted in U village Area +2011-08-29,34.698055600000004,-118.1358333,Lancaster,CA,disk,60,Multi colored round disk object hovers down toward ground then straight back up FAST +2011-08-29,44.4202778,-83.3308333,Oscoda,MI,light,600,Light over Oscoda? +2011-08-29,36.6436111,-93.2183333,Branson,MO,light,10,saw bright light ascending +2011-08-29,41.8394444,-84.7480556,Reading,MI,light,60,Bright light moving in a zigzag/weaving pattern NE in Reading, MI flying NE then disappeared slowly (seconds) into space. +2011-08-29,39.6294444,-79.9561111,Morgantown,WV,triangle,20,Y-shaped or triangular object in the sky overhead, traveling westward. +2011-08-29,36.3486111,-82.2108333,Elizabethton,TN,unknown,600,UFO over Carter County TN +2011-08-29,41.6638889,-83.5552778,Toledo,OH,light,900,White light in NW ohio +2012-08-29,43.1547222,-77.6158333,Rochester,NY,light,300,Real bright star like object moving north to southeast silently low in the night sky. +2012-08-29,39.6547222,-77.5730556,Smithsburg,MD,triangle,10800,Sounded similar to a plane, but was triangular and set out on a repeated and definite flight plan! +2012-08-29,39.9611111,-82.9988889,Columbus,OH,fireball,60,Orange Glowing Orb or Fireball seen over Columbus OH, (North OSU Campus) +2012-08-29,40.7141667,-74.0063889,New York City (Bronx),NY,egg,600,5 bright white egged shaped crafts +2012-08-29,33.6602778,-117.9983333,Huntington Beach,CA,disk,3600,Ufo in Southern California sky with very distinct saucer shape, moved from East to West and Eventually disappeared over the ocean. +2012-08-29,39.0483333,-95.6777778,Topeka,KS,cross,605,Luminous Flourescent Green Flying Cross +2012-08-29,34.3916667,-118.5416667,Santa Clarita,CA,sphere,2400,Strange flying light visiting the same area in Southern California multiple times. +2012-08-29,39.9522222,-75.1641667,Philadelphia,PA,circle,90,Orange sphear seen by myself and my wife over south philadelphia. +2012-08-29,39.5522222,-84.2333333,Springboro,OH,cross,600,4 cross shaped object always in formation in the sky west of springboro close to wright brothers airport. Mostly stationary and only mo +2012-08-29,32.8475,-115.5686111,Imperial,CA,disk,35,Amber cigar shaped object with segmented light in zig zag pattern, reappearing 3 miles away in a giant ferris wheel shaped object. +2012-08-29,42.9766667,-78.5922222,Clarence,NY,oval,60,Balloon shape object, that appeared to have flames glowing within, traveling over Clarence NY 8/29/12 +2012-08-29,35.2269444,-80.8433333,Charlotte,NC,fireball,30,Green fireball with orange trail following. +2012-08-29,41.8025,-71.8863889,Danielson,CT,sphere,60,Helicopter chasing red globe +2012-08-29,34.7369444,-82.2544444,Simpsonville,SC,sphere,3,3 Blue/Green spheres sighted by two people in Northern sky, flying quickly in tight formation. +2012-08-29,30.2669444,-97.7427778,Austin,TX,fireball,2,Red and yellow Comet like object flashed across the sky just below the clouds in Austin. +2013-08-29,43.3627778,-86.1647222,Twin Lake,MI,other,7200,Lighted translucent objects meandering about woods & pasture. +2013-08-29,38.9108333,-94.3819444,Lees Summit,MO,light,14400,Stand-off between 2 military stealth plane and 1 UFO for 4 hours in Lees Summit Mo +2013-08-29,33.4483333,-112.0733333,Phoenix,AZ,cylinder,3600,Small tube that flashed red blue and green in the South eastern sky. +2013-08-29,33.8358333,-118.3397222,Torrance,CA,unknown,780,Large Bright object over the sea CA. +2013-08-29,39.6836111,-75.75,Newark,DE,circle,9000,Circle with lites +2013-08-29,40.7608333,-111.8902778,Salt Lake City,UT,light,900,I was on my deck with my husband. A bright object appeared in the western sky , in front of the clouds. It was there for 3 minutes and +2013-08-29,26.5216667,-82.1894444,Captiva,FL,oval,3600,SIGHTING #28. 6th SIGHTING OF A SILVER-GOLD, GLOWING ELONGATED/FOOTBALL (FLYING SAUCER) SHAPED UFOsᄻTH SIGHTING OF A FIREBALLS, AND +2013-08-29,33.9813889,-81.2363889,Lexington,SC,sphere,120,Two orange spheres seen travelling towards storm. +2013-08-29,27.2936111,-80.3505556,Port Saint Lucie,FL,fireball,1200,Fiery Colored Silent Agile Ball Of Light. +2013-08-29,42.8813889,-88.2066667,Big Bend,WI,unknown,300,Unidentified Lights between Mukwonago & Big Bend, WI. +2013-08-29,47.6777778,-116.7794444,Coeur D'alene,ID,light,300,Bright white star follows me home. +2013-08-29,36.595,-82.1888889,Bristol,TN,triangle,600,TRIANGLE OVER BRISTOL, TN. +1961-08-30,39.2561111,-84.4180556,Evendale,OH,unknown,15,This UFO event occurred in August or Semptember of 1961. I wish someone could shed some light on this matter. A lot of time has passe +1966-08-30,43.1547222,-77.6158333,Rochester,NY,disk,15,Disc shaped object came down from clouds, hovered for 15 seconds, then slowly went back up into the clouds. +1967-08-30,39.2486111,-94.9,Lansing,KS,unknown,300,Two sets of lights blinking alternately. +1972-08-30,61.2180556,-149.9002778,Anchorage,AK,circle,4,Large, bright, blue/white circular object appeared to do extremely high speed "fly-by" of Earth. +1975-08-30,45.7616667,-116.2997222,White Bird,ID,light,1200,It looked somewhat like UFO Pinball in the sky +1975-08-30,45.7616667,-116.2997222,White Bird,ID,light,1200,UFO Pinball? +1976-08-30,45.5236111,-122.675,Portland,OR,cigar,240,Cigar shaped object over Porland Oregon 8/76 +1978-08-30,41.8097222,-72.8311111,Avon,CT,rectangle,600,Driving early AM in Avon Ct. I spotted an object fifty feet in the air as large as a house. +1980-08-30,45.6855556,-92.9652778,Rush City,MN,unknown,1800,Space suit looking things and object in the woods +1980-08-30,42.0688889,-90.6655556,Maquoketa,IA,unknown,1200,OBJECT APPEREAD WAS DIM GOT BRIGHT WENT EAST REAPPERED SAME SPOT REPEATED SAME THING +1981-08-30,38.3891667,-84.5375,Sadieville,KY,light,1800,MY MOM & I WERE TRAVELING N ON I 75 from GEORGETOWN, KY TO SADIEVILLE WHEN WE NOTICED A A SINGLE WHITE LIGHT IN THE SKY SOME DISTANCE A +1988-08-30,36.175,-115.1363889,Las Vegas,NV,unknown,120,Close encounter at home +1989-08-30,24.5552778,-81.7827778,Key West,FL,teardrop,720,ON OR ABOUT THE DATE LISTED ABOVE I,ALONG WITH MY FAMILY, WERE DRIVING HOME FROM THE BEACH WHEN MY WIFE ,WHO WAS LOOKING OUT THE WINDOW +1992-08-30,40.0977778,-74.2180556,Lakewood,NJ,disk,1200,THE NIGHT BEFORE THE SIGHTING MY GIRLFRIEND AND I WERE WALKING OUTSIDE OUR APARTMENT COMMUNITY WHEN I POINTED OUT A CROSS IN FRONT OF T +1995-08-30,43.2052778,-96.2947222,Rock Valley,IA,triangle,3600,I was out stargazing and a large, completely silent triangle UFO passed overhead at phenomenal speed towards the East. Two more went ov +1996-08-30,37.2294444,-80.4141667,Blacksburg,VA,sphere,120,Two witnesses, no more than 40 feet from bright white sphere 3 1/2 - 4 feet in diameter blocking our way on rd. +1997-08-30,37.3394444,-121.8938889,San Jose,CA,formation,300,I saw round solid color objects flying in pairs in daylight +1997-08-30,35.114444399999996,-75.9813889,Ocracoke,NC,other,300,Several stationary white lights in a curved shape. +1998-08-30,29.8944444,-81.3147222,St. Augustine,FL,triangle,420,Three lights, silent craft, leaving a green Haze in the sky +1999-08-30,43.8130556,-74.6577778,Raquette Lake (Golden Beach Campground),NY,light,3600,A second object joined the first after the first had circled repeatedly for over 45 minutes, leading us to believe that it was a milita +2000-08-30,47.9791667,-122.2008333,Everett,WA,light,60,Basket ball sized ball of yellow light crossed highway at steady speed. +2000-08-30,40.0394444,-84.2033333,Troy,OH,light,60,Bright white light which appeared and disapeared in northern sky, in approx. one minute. +2001-08-30,42.8597222,-89.5380556,Belleville,WI,sphere,1200,Several spherical lights clustered together and moving independently in the SE sky. NOT STARS. Witnessed by Astonomy tutor . +2001-08-30,40.7608333,-111.8902778,Salt Lake City,UT,cone,1,4 cone shaped lights (pictures of them) in group of 2s plus 2 possible aircraft. +2001-08-30,45.5947222,-121.1775,The Dalles,OR,triangle,1200,Stationary grounded object north of Dallesport, Wash. Bright silver in sunlight. +2001-08-30,47.6447222,-117.5922222,Airway Heights,WA,circle,600,Circular object with rotating lights, moving south. +2001-08-30,44.0805556,-103.2305556,Rapid City,SD,light,2700,many light objects flying around in an area +2001-08-30,44.0838889,-93.2258333,Owatonna,MN,unknown,1200,Located in western sky. Not moving. Appears like a large star, but many different colors. Viewed with the binoculars, blues, greens, re +2002-08-30,41.1577778,-80.0888889,Grove City,PA,oval,120,Bright white light that changed color and moved +2002-08-30,30.2238889,-92.0197222,Lafayette,LA,triangle,600,A huge orange triangle heads toward Earth! +2002-08-30,41.1419444,-87.8611111,Bradley,IL,other,300,Banner-like object seen drifiting westward about 1915 in the evening of 08/30/02. +2002-08-30,39.1580556,-75.5247222,Dover,DE,triangle,360,Triangle shaped aircraft hovering low in a field off Route 1 South +2002-08-30,44.198055600000004,-70.4069444,Hebron,ME,unknown,10,Starlike object moves across the Southwest sky in a zig zag pattern for approximately 10 seconds. +2002-08-30,41.7694444,-71.1291667,Somerset,MA,unknown,5,I was sitting on my patio last night with a friend of mine when I suddenly noticed a light in the sky. It slowly appeared; maybe 2 or +2002-08-30,42.6411111,-78.5419444,Holland,NY,circle,1800,Flashing red,blue,green and yellow light's appeared +2002-08-30,46.8791667,-102.7891667,Dickinson,ND,triangle,120,Three points of light similar to a satelite forming a triangle gliding across rthe sky with consitant light intensity staying on course +2002-08-30,41.6047222,-80.8655556,Rome,OH,circle,1200,WAS LOOKING OUT MY KITCHEN WINDOW AT THE SKY NOTICED OBJECT INSKY CHANGING COLORS RED,GREEN ,BLUE NOT MOVING IT WAS A DISTANCE AWAY. LO +2003-08-30,40.6627778,-73.5519444,Merrick,NY,other,2700,4 elliptical lit objects surrounded by a haze/halo, proceeding to individually dive, climb, zigzag. Lasted about 45 minutes. +2003-08-30,26.1322222,-97.6308333,San Benito,TX,chevron,300,Boomerang shaped figure seen with a red hue! +2003-08-30,34.1083333,-117.2888889,San Bernardino,CA,light,5,2 different high speed objects observed from the little dipper. +2003-08-30,37.5536111,-77.4605556,Richmond,VA,circle,60,Very weird. +2003-08-30,35.9605556,-83.9208333,Knoxville,TN,triangle,60,MY FRIEND AND HAD JUST FINISHED CUTTING THE LAWN WHEN THE SUN WINKED OUT THATS THE WAY IT SEEMED THEN WE SAW THREE CRAFT MOVING SOUTH W +2003-08-30,47.9791667,-122.2008333,Everett,WA,changing,5400,3 white shape changing UFOs over Everett Wa. +2003-08-30,47.6063889,-122.3308333,Seattle,WA,cylinder,1800,Shiny cylndrical object hovering over downtown Seattle +2003-08-30,39.9611111,-82.9988889,Columbus,OH,formation,900,Formation of five points of lights in daylight, hovering and changing foramtion, comparable to satalites in brightness, rising up until +2003-08-30,34.1477778,-118.1436111,Pasadena,CA,changing,60,Object over Altadena witnessed by 2 +2003-08-30,34.4313889,-110.5933333,Heber,AZ,cigar,300,Bright large cigar shaped UFO in plain view for several minutes. +2003-08-30,40.4591667,-74.3613889,Sayreville,NJ,oval,240,August 30th 2003, UFO Appearance in Sayreville +2003-08-30,29.2105556,-81.0230556,Daytona Beach,FL,other,7,Glowing football shaped objects flying in straight line formation wing tip to wing tip over Daytona Beach, FL +2003-08-30,40.2736111,-76.8847222,Harrisburg,PA,unknown,600,Reddish object sits still for 10 minutes and then shoots across sky +2003-08-30,34.0094444,-118.1044444,Montebello,CA,fireball,37800,the red star in the sky +2003-08-30,26.3583333,-80.0833333,Boca Raton,FL,circle,60,While traveling home on a major highway in Boca Raton, FL, I saw a spaceship in the sky with a light coming out from the bottom. +2003-08-30,40.7230556,-74.3111111,Springfield,NJ,oval,900,Large object lit brightly came across sky near our home, outlined by brighter blue-white lights--silent & so bright,&low. +2003-08-30,34.0094444,-118.1044444,Montebello,CA,light,2700,We filmed this bright red light off and on for 45 minutes or longer.Though we could visibly see the light,you couldn't tell it was movi +2003-08-30,41.8583333,-76.3411111,Rome,PA,circle,5,circular object which looked like the total eclipse of the moon but 2/3's it's size traveling the speed of an airplane +2003-08-30,34.0805556,-118.0719444,Rosemead,CA,circle,2700,SLOW MOVING FIRE RED BALL IN THE SKY +2003-08-30,43.8005556,-70.1872222,Yarmouth,ME,light,1800,Bouncing Stars +2003-08-30,33.9791667,-118.0319444,Whittier,CA,light,4200,Unblinking red light motionless for over one hour in the sky. +2003-08-30,34.0952778,-118.1261111,Alhambra,CA,light,120,I heard many stories ,but this time I witnessed it. +2003-08-30,34.0522222,-118.2427778,Los Angeles,CA,triangle,2700,Mysterious red light in the northeast section of los Angeles. +2003-08-30,34.0625,-118.1219444,Monterey Park,CA,light,1200,Fiery red light to the right of Mars seemed to be composed of three smaller lights in a triangular configuration. +2003-08-30,46.5205556,-94.2883333,Nisswa,MN,other,600,A chain of lights moving slowly in the eastern sky +2003-08-30,40.7230556,-74.3111111,Springfield,NJ,other,1200,iT LOOKED LIKE A LIT-UP HOT AIRBALLOON THAT MOVED FASTER THAN A HOT AIRBALLOON +2003-08-30,45.6647222,-97.0494444,Sisseton,SD,formation,240,Strange jet fighter formations in the middle of the night. +2003-08-30,46.3580556,-94.2005556,Brainerd,MN,formation,120,3 seperate sighting of a series of 6 red lights taking on a wing formation, slow moving, engine sound (but not jet engine) +2003-08-30,34.0522222,-118.2427778,Los Angeles,CA,light,600,object was stationary for one min. then moved NW at a very slow slow speed then lights went out. +2003-08-30,33.0580556,-112.0469444,Maricopa,AZ,unknown,7200,17 stationary and slow moving starlike objects emitting brilliant rainbow lights +2003-08-30,35.0844444,-106.6505556,Albuquerque,NM,light,30,Saw two steady red lights moving very fast, very silently, jerking around, East to West over Albuquerque, NM. +2003-08-30,34.0522222,-118.2427778,Los Angeles,CA,sphere,1800,The object was sighted by many Los Annelinos according to the local news.. +2003-08-30,46.6066667,-93.3136111,Mcgregor,MN,other,300,Large V shaped aircfaft slowly flying overhead while other planes scramble to catch up. +2003-08-30,46.6066667,-93.3136111,Mcgregor,MN,other,5400,Very large, slow moving, wing shaped craft was chased by 3 F15's. 4 white lights, 4 red lights. +2003-08-30,46.6066667,-93.3136111,Mcgregor,MN,triangle,105,At 11:55 pm on August 30th, ten people who were gathered around a campfire in northern Minnesota witnessed a triangular shaped craft th +2003-08-30,46.6066667,-93.3136111,Mcgregor,MN,chevron,300,Huge, stealth like craft passses over us with red and white lights, only to be followed by squadrons of fighters in its path +2004-08-30,38.7838889,-90.4811111,St. Charles,MO,triangle,30,saw a triangle looking craft at 4:30 +2004-08-30,34.8697222,-111.7602778,Sedona,AZ,light,180,Shortly before 5 a.m., I awoke to the sound of one of my cats making noise upstairs. ((NUFORC Note: We suspect Venus??)) +2004-08-30,39.6477778,-104.9872222,Englewood,CO,sphere,300,Oddly-behaving white sphere once again seen in Denver area +2004-08-30,28.3197222,-80.6077778,Cocoa Beach,FL,oval,7200,lights in the daylight sky at the time of the Atlas rocket launch on the 31st of Aug. +2004-08-30,36.7477778,-119.7713889,Fresno,CA,disk,1800,I saw a bright, pinkish shaped saucer high in the sky moving slowly. +2004-08-30,40.7036111,-89.4072222,Washington,IL,unknown,1500,Flashing lights that almost hit an airplane +2004-08-30,48.0511111,-122.6897222,Nordland,WA,formation,300,3 craft flying in formation at an excesive rate of speed making no sound +2004-08-30,35.0844444,-106.6505556,Albuquerque,NM,unknown,180,The object's lights were different and its rapid gyrations were most violent to be a normal aircraft. +2004-08-30,35.9938889,-78.8988889,Durham,NC,oval,240,several small brights lights followed by dark slow moving object in the sky that blocked out night sky +2005-08-30,30.6941667,-88.0430556,Mobile,AL,flash,5,A bright flash that left a spot of light in my eye +2005-08-30,32.3641667,-88.7036111,Meridian,MS,other,3600,I saw three bright lights, came back later, and they were gone. +2005-08-30,33.3527778,-111.7883333,Gilbert,AZ,sphere,300,Gold shining spherical light on an unusual course +2005-08-30,37.9522222,-122.5561111,Kentfield,CA,disk,45,UFO exiting our atmosphere. +2005-08-30,45.2788889,-92.985,Forest Lake,MN,cylinder,300,Saw two objects from backyard, 3 of us saw them, oval shaped, took pictures, moved verically up and down +2005-08-31,39.2513889,-119.9719444,Incline Village,NV,cylinder,600,rainbow color lights over Lake Tahoe area, Cylinder object makes animals in area act strange and howel before apperance +2006-08-30,41.85,-87.65,Chicago,IL,oval,30,oval-shaped UFO sighted around noon southeast of the Chicago Loop +2006-08-30,37.6922222,-97.3372222,Wichita,KS,diamond,120,After my evening run I was standing in my back yard and stretching. As I was stretching I noticed movement in the sky. At first I thoug +2007-08-30,32.9808333,-80.0327778,Goose Creek,SC,diamond,30,An weird shaped object just siting and then just shot up into the sky. +2007-08-30,40.3972222,-91.3847222,Keokuk,IA,light,600,Sequential orange lights in night southeastern night sky Keokuk Iowa 8/30/2007 +2007-08-30,47.6063889,-122.3308333,Seattle (Above),WA,flash,5,Flash of light over Seattle similar to rocket burn, moves upward quickly. ((NUFORC Note: Possible sighting of Iridium satellite. PD) +2007-08-30,33.8936111,-117.7263889,Chino Hills (Seen From),CA,circle,3,Blue disc moving at incredible speed high above mountain range +2007-08-30,34.5525,-77.3975,Sneads Ferry,NC,other,120,Two UFO's appear over a small neighbourhood in North Carolina. +2007-08-30,43.6333333,-88.7294444,Waupun,WI,light,240,Lights 6-8 going from right to left with whole object moving from right to left slowly in air (pretty wide object) +2007-08-30,45.5394444,-122.3861111,Troutdale,OR,circle,120,Two objects seen passing together over Troutdale, Oregon, at 9:17 pm +2007-08-30,41.9005556,-87.8566667,Melrose Park,IL,unknown,3600,Colorful, pulsing light in western sky. ((NUFORC Note: Possible a sighting of Jupiter in the western sky. PD)) +2007-08-30,34.54,-112.4677778,Prescott,AZ,light,600,Unusual, silent, pulsating, red light, travelling slowly, then stopping and finally disappearing suddenly. +2007-08-30,34.0336111,-117.0422222,Yucaipa,CA,oval,1800,BLURRED OVAL SHAPE LIGHT MOVING IN ANTI CLOCKWISE MOTION BEHIND THE CLOUDS FOR AN HOUR AND COUNTING AT 11PM PST +2007-08-30,38.7236111,-89.9558333,Maryville,IL,triangle,6,Maryville, IL., triangular craft seen through night vision moving high and fast 8-30-07 +2008-08-30,46.7833333,-92.1063889,Duluth,MN,formation,60,White solid larger light light followed by 8 solid red lit lights in a perfect V formation mostly - no sound. +2008-08-30,39.5358333,-76.3486111,Bel Air,MD,changing,60,Black circle turns to flashing light, speeds away and disappears. +2008-08-30,42.9638889,-78.7380556,Williamsville,NY,other,300,What we saw- 1 large ring with a middle that was not filled in, in the sky with 2 jets in the back and one flashing yellow light in bet +2008-08-30,41.865,-80.79,Ashtabula,OH,changing,240,A cluster of clear sphere like objects that were changing shape and size moving in a Northerly direction. +2008-08-30,40.215,-104.8222222,Platteville,CO,light,600,For about 10 minutes, my father and I watched a solid dot move in a zig-zag pattern across the night sky moving to the Northeast. +2008-08-30,39.051944399999996,-82.6366667,Jackson,OH,light,60,4EXTREMELY FAST MOVING LIGHTS OVER JACKSON OHIO SPOTTED +2008-08-30,42.9391667,-75.4613889,Oriskany Falls,NY,fireball,300,Bright cicrclar objects moved VERY fast +2008-08-30,45.9975,-121.5269444,Trout Lake,WA,egg,7200,Orange egg shaped object headed towards Mount Adams in Wa +2008-08-30,44.2619444,-88.4152778,Appleton,WI,other,60,Fast moving craft in the night sky +2009-08-30,41.6802778,-90.3188889,Cordova,IL,light,600,Orange light traveling south along Mississippi River TOTALLY SILENT +2009-08-30,44.6369444,-124.0522222,Newport,OR,circle,8,Two separate LARGE balls of light fell from sky within five minutes of eachother. +2009-08-30,38.2283333,-120.5397222,Mountain Ranch,CA,light,5400,Huge bright light swooped through trees, 2 smaller lights interacted with larger one, as sun came up it asended up and out. +2009-08-30,40.5683333,-74.5388889,Bound Brook,NJ,rectangle,300,Large rectangular, gray, static craft spotted in Bound Brook, NJ while driving on 287 South around 3:00pm on 8/30/09. +2009-08-30,44.8613889,-92.6236111,River Falls,WI,other,300,An orange glowing object was observed moving across the sky and did not resemble a satellite or plane. +2009-08-30,41.7975,-87.9547222,Clarendon Hills,IL,circle,15,Observable with changes in direction. No real detail 99% of the time with some brilliant exceptions. +2009-08-30,42.4152778,-74.0225,Greenville,NY,circle,600,We witnessed over 20 UFO's traveling northeast across the sky in the span of about ten or fifteen minutes. +2009-08-30,37.5644444,-97.3519444,Haysville,KS,formation,5,Twelve red lights in sky went from circle to V shape formation and went south to north in a matter of seconds. +2009-08-30,34.2538889,-117.1638889,Cedar Glen,CA,light,5,object in the sky that could not be a start or other aircraft known to current populations +2009-08-30,36.4219444,-94.4533333,Gravette,AR,unknown,1800,Red, blue and white flashing light hovering hundreds of feet in the air. +2010-08-30,41.3205556,-73.0894444,Derby,CT,cigar,1800,LED like white lights, with red and greenor blue +2010-08-30,27.9455556,-82.2580556,Valrico,FL,triangle,10,translucent pink orange colors, bird shape, 5 of them making a formation of a triangle as they move foward on a swimming motion, +2010-08-30,42.9572222,-83.8305556,Swartz Creek,MI,fireball,600,Orange fireballs resolving into something solid after slowing down. +2010-08-30,28.0183333,-82.1130556,Plant City,FL,circle,45,Disc shaped object with pulsing outer band and transparent center. +2010-08-30,39.6952778,-74.2591667,Manahawkin,NJ,cone,90,Shiny metallic upside down cone shaped object over Jersey Shore. +2010-08-30,33.4483333,-112.0733333,Phoenix,AZ,other,15,a black barbell shape object passed over sky harbor airport around 3:20 pm,witnessed by 2 people +2010-08-30,34.4838889,-114.3216667,Lake Havasu City,AZ,unknown,900,Jets chasing illuminated object +2010-08-30,33.8886111,-117.8122222,Yorba Linda,CA,light,300,Bright light moving silently and beyond our capabilities. +2010-08-30,28.5555556,-82.4505556,Spring Hill,FL,fireball,300,One round ball of fire floating over Spring Hill, Florida +2010-08-30,40.8666667,-124.0816667,Arcata,CA,unknown,1140,I am familiar with aircraft and this object preformed like and aircraft but weird at low altitude and nighttime over populated area. +2010-08-30,44.0488889,-123.3497222,Veneta,OR,unknown,240,Orange flickering orb of light flying low and slow in Oregon +2011-08-30,30.3341667,-81.3988889,Atlantic Beach,FL,fireball,300,big bright orange and red fireball +2011-08-30,42.9633333,-85.6680556,Grand Rapids,MI,triangle,900,Bright non-blinking lights in a v shape that suddenly dropped from the sky +2011-08-30,39.1072222,-76.5713889,Pasadena,MD,flash,9,BLUE FLASHES, LIEK CAMERA STROBE, IN PASADENA SKY EARLY TUES.AM/3:30AM/8.30.11 +2011-08-30,39.4805556,-86.055,Franklin,IN,unknown,1200,Strange light pattern +2011-08-30,40.8686111,-82.3183333,Ashland,OH,cigar,300,Super bright white wingless aircraft persued by fighter jets directly over Ashland, Ohio +2011-08-30,32.7561111,-91.8722222,Bastrop,LA,light,705,White/Orange Light Ball in sky at night over louisiana +2011-08-30,40.7438889,-73.035,Blue Point,NY,fireball,300,10 fire like balls over south shore long island headed NE. +2011-08-30,35.2233333,-114.2222222,Golden Valley,AZ,light,15,small white dot. emitting two short burst's of white cone shaped light. +2011-08-30,36.4702778,-86.6513889,White House,TN,fireball,60,Large, bright orange flickering light (fire) with surrounding white "canopy" moving rapidly east to west +2011-08-30,41.2330556,-80.4936111,Sharon,PA,unknown,180,Blue-tinted orb observed appearing and suddenly disappearing. Sighted from the West Hill in Sharon, PA. +2011-08-30,48.0797222,-123.1005556,Sequim,WA,light,180,Two red pulsating lights over Dungeness area of Sequim, WA +2011-08-30,40.9311111,-73.8991667,Yonkers,NY,light,20,Moving light with no sound or blinking/pulsating. +2011-08-30,34.5827778,-117.4083333,Adelanto,CA,light,60,Bright light moving fast but not a shooting star +2011-08-30,32.8405556,-83.6325,Macon,GA,rectangle,180,Squared, flying vessel over Macon, GA +2011-08-30,42.8780556,-73.1972222,Bennington,VT,triangle,60,silent aircraft with three circular lights in triangle formation seemed to fly into space from normal plane altitude in one minute. +2011-08-30,41.9902778,-70.9755556,Bridgewater,MA,chevron,2,chevron object with lights north south path in Bridgewater MA almost invisible and really fast +2011-08-30,43.2063889,-76.4594444,Lysander,NY,other,600,Cubical obect sighted 15 miles north of New York State Fair, 8-30-11, 10:16 pm. +2011-08-30,43.6136111,-116.2025,Boise,ID,light,300,Reported light may not have been the ISS. +2011-08-30,42.9813889,-70.9483333,Exeter,NH,triangle,30,Large triangle w/ large white circular light near each edge and a smaller circular red light in center and a constant low rumble sound +2011-08-30,33.7669444,-118.1883333,Long Beach,CA,light,7200,UFO sighting in Long Beach, one drops from the sky, the other remained +2011-08-31,43.8730556,-111.1838889,Felt,ID,triangle,300,A near duplicate sighting, eleven yr.s apart. same general location +2012-08-30,35.9605556,-83.9208333,Knoxville,TN,light,30,Bright light moving very quickly across night sky. No noise but seemed relatively close. +2012-08-30,38.5816667,-121.4933333,Sacramento,CA,triangle,30,A huge stealthy triangle-shaped craft travels from north to south at a fantastic speed. +2012-08-30,37.6391667,-120.9958333,Modesto,CA,light,60,High-speed light over central valley +2012-08-30,31.6938889,-89.1305556,Laurel,MS,unknown,600,A red glowing object moving in and out of clouds that had a red yellow and green color when not in the direct path of the sun +2012-08-30,37.9158333,-122.3105556,El Cerrito,CA,disk,300,This aircraft was making maneuvers that are not physically possible by any known aircraft in all the militaries of the world. +2012-08-30,40.4405556,-79.9961111,Pittsburgh,PA,fireball,120,Fireball over Brookline, Pittsburgh, Pa. +2012-08-30,34.9386111,-82.2272222,Greer,SC,sphere,5,Large white falling star! +2012-08-30,33.7125,-115.4013889,Desert Center,CA,fireball,2100,My father and I were driving on I-10 East and seen a large fireball like object with many smaller ones trailing it. Shortly after we se +2012-08-30,38.3605556,-75.5997222,Salisbury,MD,light,900,Lights "Folded" and "Unfolded" into each other glowing Blue and Yellow, 3 separate times. +2012-08-30,38.3363889,-75.0852778,Ocean City,MD,fireball,7200,Flashing lights of all sort hovered above Ocean City, Maryland on August, 30, 2012. +2012-08-30,39.8969444,-76.1638889,Quarryville,PA,fireball,600,Orange Fireball sighted in Solanco +2012-08-30,43.1977778,-70.8741667,Dover,NH,light,180,Bright red slow moving lights +2012-08-30,42.0852778,-83.6825,Milan,MI,circle,3,Low-flying, orange-colored orb, the color/brightness of a candle flame +2012-08-30,33.3061111,-111.8405556,Chandler,AZ,formation,900,8 red-orange lights flying in formation near the 202 in South Chandler, Arizona +2012-08-31,21.8763889,-159.4538889,Poipu,HI,light,1170,Bright star-like light moving across sky, then disappearing out into space +2013-08-30,42.3147222,-88.4486111,Woodstock,IL,formation,300,Large!!!! group of "star formation" lights traveling east to west, fast rate of speed, between stars and clouds. +2013-08-30,27.8002778,-97.3961111,Corpus Christi,TX,circle,60,Light in sky never changed direction but did change colors red, green, blue. ((NUFORC Note: Twinkling star?? PD)) +2013-08-30,39.2486111,-87.3819444,Farmersburg,IN,light,7200,I saw an orange/yellow ball in the sky and then saw another identical ball seemed to fly toward the object and disappeared into it. +2013-08-30,36.7416667,-88.6366667,Mayfield,KY,changing,30,Changing shape, crescrent to orb and orangish color. +2013-08-30,61.5997222,-149.1127778,Palmer,AK,circle,900,Orange circles above Palmer. +2013-08-30,35.3858333,-94.3983333,Fort Smith,AR,triangle,1200,Clear night bright light that looked like a star but moved vertically and then horizontally with flashing lights rear. +2013-08-30,46.3580556,-94.2005556,Brainerd,MN,cigar,45,Cigar shaped craft witnessed by two people. +2013-08-30,41.6716667,-72.9497222,Bristol,CT,light,120,Bright white light moving slowly across the sky no sound. ((NUFORC Note: Sighting of ISS?? PD)) +2013-08-30,41.6716667,-72.9497222,Bristol,CT,light,120,Was a very bright white light that stuck around for a few minutes. +2013-08-30,30.4211111,-87.2169444,Pensacola,FL,fireball,120,Orange ball shape and not engine exhaust, no nav lights +2013-08-30,34.8697222,-111.7602778,Sedona,AZ,fireball,300,Two orange/red fireballs ascending in western sky. +2013-08-30,42.7677778,-78.6136111,East Aurora,NY,formation,300,Lights formation over 400 expressway East Aurora, NY +2013-08-30,43.7294444,-70.2425,Falmouth,ME,triangle,60,Nothing i have ever seen before. +2013-08-30,43.7294444,-70.2425,Falmouth,ME,light,180,Three orange/amber lights flying in formation North over Falmouth ME +2013-08-30,40.6805556,-74.6458333,Bedminster,NJ,fireball,180,I was traveling 206 north off of 287 north in new jersey with my mom at approximately 9pm Saturday night, August 30, 2013. My mom notic +2013-08-30,27.2936111,-80.3505556,Port Saint Lucie,FL,fireball,600,Fiery Colored Silent Agile Ball Of Light. +2013-08-30,41.6716667,-72.9497222,Bristol,CT,circle,900,Orange lights in the sky +2013-08-30,45.2025,-123.9616667,Pacific City,OR,circle,60,Orange hovering light moving slowly then rapidly then gone into thin air +2013-08-30,37.5586111,-122.27,Foster City,CA,formation,300,Orange objects in formation spotted in the Bay Area, CA by a skeptic. +2013-08-30,38.8119444,-77.6366667,Haymarket,VA,light,30,2 bright lights... +2013-08-30,38.8119444,-77.6366667,Haymarket,VA,light,30,2 bright lights... +2013-08-30,40.4841667,-88.9936111,Bloomington,IL,fireball,300,2 Fireballs flying low. +2013-08-30,40.29,-76.9341667,Enola,PA,circle,300,Blue, white, orange, and yellow flashing lights on an object that is moving/hovering in a slight circular motion. +2013-08-30,41.6005556,-93.6088889,Des Moines,IA,light,300,3 glowing red lights made formations and disappeared. +2013-08-30,44.0261111,-90.0738889,Necedah,WI,flash,5,Object in night sky flashes brightly a few times then &quot;takes off&quot; leaving a short streak if light before it disappears +2013-08-30,38.1041667,-122.2555556,Vallejo,CA,flash,10,Bright burning white light suddenly appearing then fading into a small shooting star. ((NUFORC Note: Iridium satellite? PD)) +1981-08-31,35.7627778,-117.3719444,Trona,CA,disk,300,My wife grabed my leg squeesed and said "whats that" i looked up and about 60ft. away was something staying in one position was a ufo +1990-08-31,42.4375,-71.7611111,Sterling,MA,unknown,14400,2 kids in a tent harassed all night by sounds, a bright light and something trying to enter our tent. 500 Lights On Object0: Yes +1991-08-31,41.2619444,-95.8608333,Council Bluffs,IA,cylinder,300,Daytime sighting of a black stationary tube that looked like UFO from Star Trek Movie with the whales. +1994-08-31,37.9577778,-121.2897222,Stockton (South Of),CA,circle,120,I was captured, encapsulated, I was one with that light, the objects were light. +1997-08-31,44.0455556,-71.6705556,Lincoln,NH,formation,5400,A static formation of 15 metallic spheres observed by about 150 people in a clear daylight sky. +1997-08-31,45.3002778,-122.9719444,Newberg,OR,light,300,A woman and her sun witness 5 strange lights, white in the center, yellow between the center and edge, and blue. Does unearthly maneuve +1997-08-31,41.7013889,-87.7791667,Chicago Ridge,IL,light,300,Me and a Friend were sitting on my Balcony of my Apartment. +1997-08-31,42.5294444,-83.7802778,Brighton (E. Of, N. Of South Lyon, Mi),MI,rectangle,900,Rectangular tilted object in sky, like harmonica with squares lighted. Est. object length at 1 mile +. +1997-08-31,42.5294444,-83.7802778,Brighton (West Of Detroit),MI,rectangle,600,A rectangular shaped object like a harmonica with the square holes brilliant white, stationary at 30 degrees over Detroit. IMMENSE siz +1997-08-31,41.7352778,-70.1944444,West Dennis (Cape Cod),MA,oval,60,Three "oval-shaped" objects, in formation: one in front, one directly behind, one "above" and behind the second one. All three appeard +1998-08-31,32.2216667,-110.9258333,Tucson,AZ,unknown,60,Pair of objects flying side by side. +1999-08-31,40.8325,-115.7622222,Elko,NV,light,180,((HOAX)) seen like airplane lights under partly cloudy conditions over Elko, but vanishhing in the clear portion of the night time sky. +1999-08-31,40.8325,-115.7622222,Elko,NV,light,60,((HOAX)) while going to restroom in hallway of roomming house I observed lights going northeast, then they just blinked out. +1999-08-31,25.7211111,-80.2686111,Coral Gables,FL,circle,420,14 objects,appearing to be reddish or orange in color,moving in a V formation.No sound,moving southwest. +1999-08-31,40.3,-90.0608333,Havana (Rural Route),IL,fireball,1800,Fireball crafts being launched from a larger craft. +1999-08-31,42.2136111,-74.2191667,Hunter,NY,triangle,600,I saw three pink "stars" flying in a triangle formation +1999-08-31,35.1166667,-80.7238889,Matthews,NC,chevron,600,A large chevron black craft floated over a park and parking lot. The craft made absolutely no noise. +2000-08-31,45.0408333,-93.2627778,Columbia Heights,MN,other,6,It was reddish and had rays comming out of it like when you look at the sun. +2000-08-31,33.9325,-114.005,Bouse,AZ,light,600,8/31/2000, "21:15-25" Bouse Az, friend and husband saw 6 bright amber lights appear in East and Northeast skies. +2000-08-31,37.3280556,-87.4988889,Madisonville,KY,disk,1800,UFO with flashing lights investigated by jets August 31 2000 +2001-08-31,32.7947222,-116.9616667,El Cajon,CA,sphere,900,An unusual sight in the night sky of El Cajon +2002-08-31,33.8958333,-118.2191667,Compton,CA,triangle,1020,two boomerang shaped objects seen east in sky followed by a square light. +2002-08-31,36.9741667,-122.0297222,Santa Cruz,CA,sphere,5,Almost translucent sphere travelling at high speed/altitude across Santa Cruz, CA during the day. +2002-08-31,42.3086111,-83.4822222,Canton,MI,other,600,3 section Metelic object sited in Canton Michigan +2002-08-31,41.5236111,-90.5775,Davenport,IA,light,20,ET over Rock Island Nuclear Arsenal +2002-08-31,48.885555600000004,-118.5983333,Curlew,WA,light,60,Strange object seen on Vulcan Mountain in Northeastern Washington State 8/31/2002 +2002-08-31,42.5294444,-83.7802778,Brighton,MI,light,120,High altitude lights traveling due North and due South +2002-08-31,38.2541667,-85.7594444,Louisville,KY,unknown,3600,On aug 31st and sept 1st in the west sky.I saw a off white ball of light in the sky.It flashed from off white to red sometimes more red +2002-08-31,43.8769444,-116.9938889,Nyssa,OR,changing,5400,Strobe type objects that vary in shape. +2002-08-31,40.7355556,-74.1727778,Newark,NJ,disk,15,I live in Kearny, NJ. Yesterday me and my wife saw something which we could not classify as an ordinary event. About 11.30 PM I came to +2003-08-31,34.0094444,-118.1044444,Montebello,CA,fireball,20,on sunday the 24th of august at 00:14hrs we witnessed a bright red spot in the sky as red as a stop light. It looked like a star.we all +2003-08-31,34.0522222,-118.2427778,Los Angeles,CA,light,1200,Red flashing object appeared in the Eastern direction gradually moved north-east, and suddenly disappeared. +2003-08-31,47.0044444,-122.5386111,Roy,WA,fireball,900,We were all celebrating a birthday party on the lake, between Northport Wa. and Colville Wa. There were about 25-30 people who all witn +2003-08-31,34.0094444,-118.1044444,Montebello,CA,light,1200,This has been reported by many others. First I saw a bright red light, nearly overhead, but more to the north. I watched it for 10 m +2003-08-31,44.9430556,-123.0338889,Salem,OR,unknown,1800,Salem OR, slow moving lights at midnight and 2 hours later heard noise but nothing spotted +2003-08-31,36.0041667,-120.1280556,Avenal,CA,light,3.5,Two bright lights moving extremely fast and change directions, zig-zagging through the sky. +2003-08-31,30.1763889,-85.8055556,Panama City Beach,FL,circle,20,It seemed to hover in small circles about three times then it shot out of site toward the southeast sky. +2003-08-31,31.7586111,-106.4863889,El Paso,TX,circle,600,A large white round object moving slowly across the sky and helicopters flying near the vicinity. +2003-08-31,40.7358333,-73.0825,West Sayville,NY,light,5,bright star-like object ascending out into space. +2003-08-31,34.1808333,-118.3080556,Burbank,CA,light,480,Two bright orange objects viewed from Burbank. +2003-08-31,44.9430556,-123.0338889,Salem,OR,light,6,Very Bright Light +2003-08-31,37.0741667,-76.8838889,Elberon,VA,other,45,An object appearing to be wide with four lights, hovering, two on each end, with the outer lights being slightly larger than the 2nd +2003-08-31,43.0388889,-87.9063889,Milwaukee,WI,teardrop,600,More intreging then the fireworks, the object hiding in the smoke. +2003-08-31,37.8044444,-122.2697222,Oakland,CA,triangle,4,three trianglular objects moving silently across entire sky before turning ((NUFORC Note: Possible sighting of "NOSS" satellites. PD) +2003-08-31,29.1383333,-83.0352778,Cedar Key,FL,light,1200,Very intense bright and changing light with many colors very far away . +2003-08-31,43.073055600000004,-89.4011111,Madison,WI,light,10,Bright light flying at a low level and high rate of speed - much faster than any aircraft and too low to be a conventional space craft. +2003-08-31,42.3513889,-91.4813889,Ryan,IA,light,4,Flying ball of light too large to be anything explainable, also too fast and flew in zig zag formation and appeard and dissapeard insky +2003-08-31,43.8005556,-70.1872222,Yarmouth,ME,triangle,20,Another night of star gazing, I was viewing towards the east when I notice a triangular shaped mass of stars moving south. As the mass +2003-08-31,42.5608333,-77.6963889,Dansville,NY,fireball,120,We saw a large fireball in the sky below a ceiling of clouds. We watched it move at a steady speed in a straight path across the sky, +2003-08-31,34.0522222,-118.2427778,Los Angeles,CA,light,600,Re: Bright Red Light hovering above LA +2003-08-31,45.2216667,-122.5808333,Mulino,OR,triangle,60,Triangle of white lights heading north at high altitude over Portland. ((NUFORC Note: Possible sighting of "NOSS" satellites. PD)) +2004-08-31,40.1319444,-74.035,Sea Girt,NJ,circle,5,Small circular light appears for a brief moment then vanishes +2004-08-31,41.85,-87.65,Chicago,IL,light,180,Light seen of Lake Michigan in Chicago +2004-08-31,41.9486111,-71.0736111,Raynham,MA,other,120,Low flying object with three lights flies very quickly over house;no noise. +2004-08-31,37.8216667,-121.9988889,Danville,CA,circle,120,4 bright shiney cicular objects in a close knit group seen over Mt. Diablo in broad daylight. +2004-08-31,35.0844444,-106.6505556,Albuquerque,NM,circle,60,White circular object rising straight up faster than balloon. +2004-08-31,30.3569444,-87.1638889,Gulf Breeze,FL,other,2700,strange bright cloud ((NUFORC Note: Missile launch from Cape Canaveral. PD)) +2004-08-31,41.5733333,-87.7844444,Tinley Park,IL,light,600,A different take on the three lights above Tinley Park, IL 0n 08/31/04 +2004-08-31,43.0255556,-74.9863889,Herkimer,NY,other,2400,"H" shaped object, green mist all around it, Upstate NY ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,36.595,-82.1888889,Bristol,TN,other,1200,Follow-up to east coast sighting on August 31st ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,39.6294444,-79.9561111,Morgantown,WV,other,120,strange lights above touchdown city, wv ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,41.4902778,-72.2758333,Salem,CT,other,1200,glowy fuzzy white butterfly/angel shaped thing. ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,43.1380556,-75.5711111,Verona,NY,other,900,figure 8 in the sky ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,36.595,-82.1888889,Bristol,TN,other,900,Large white object with strobe light spotted during nightly skywatching ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,41.8908333,-80.6763889,Kingsville,OH,other,900,8:30 P.M. EST August 31, 2004-resembled airplane explosion in atmosphere ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,41.8908333,-80.6763889,Kingsville,OH,other,1800,Three (3) witnesses to strange object in night sky ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,42.4705556,-73.5833333,Malden Bridge,NY,disk,1800,A shallow disc of light in cloudy light 45 deg, above hor., 8:45PM, Columbia Co., NY. ((NUFORC Note: Missile launch. PD)) +2004-08-31,40.7969444,-76.4122222,Mount Carmel,PA,other,1800,A hazy white patch of light slowly moving in the sky. ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,40.7969444,-76.4122222,Mount Carmel,PA,other,1800,Slow moving shape in the sky that faded but retained shape as it did, moved S to N. ((NUFORC Note: Missile launch. PD)) +2004-08-31,39.8466667,-75.7119444,Kennett Square,PA,changing,1800,Soft light appears and moves slowly over so. east PA early Tues. eve, 8/31. ((NUFORC Note: Missile launch. PD)) +2004-08-31,40.5741667,-74.6102778,Somerville,NJ,other,300,2 spherical lights in the northwest sky ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,37.91,-84.6947222,Troy,KY,other,3600,A cloud like cigar shaped object - moved eastward over our heads and dissipated((NUFORC Note: Missile launch. PD)) +2004-08-31,39.9966667,-74.9930556,Cinnaminson,NJ,formation,600,Strange shape moved from horizon to Apex with flashing strobe white light ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,40.9444444,-72.6275,Aquebogue,NY,other,1500,Aura or haze emitting light in the shape of a dove. ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,37.7475,-81.1425,Beaver,WV,other,2700,Large luminous cloud like object moved slowly across the sky. ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,39.5061111,-77.6527778,Boonsboro,MD,other,2100,Meteor, Comet, Craft breakup. ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,38.9258333,-79.8469444,Elkins,WV,changing,900,Explosive cloud over West Virginia, high altitude? ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,42.1127778,-76.0213889,Endwell,NY,other,900,Linked parabolic shapes with blinking light ((NUFORC Note: Missile launch from Cape Canaveral. PD)) +2004-08-31,41.7330556,-77.6422222,Galeton,PA,egg,600,comet shaped object hovering in the sky. ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,44.26,-72.5758333,Montpelier (Near),VT,other,900,Appeared low in the WSW as a fuzzy "star" about as bright as Jupiter or Venus. ((NUFORC Note: Missile launch. PD)) +2004-08-31,40.4897222,-81.4458333,New Philadelphia,OH,other,1200,The object we all seen was shaper similair to an eagle ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,40.7141667,-74.0063889,New York City,NY,light,1200,3 NYC professionals saw an oval, slightly green glow that stood still in the sky ((NUFORC Note: Missile launch. PD)) +2004-08-31,41.55,-71.4666667,North Kingstown,RI,light,300,blurry bar of light in western sky ((NUFORC Note: Missile launch from Cape Canaveral. PD)) +2004-08-31,39.9547222,-82.8122222,Reynoldsburg,OH,cylinder,600,On this night, I noticed a cylinder shaped illuminated object in the southeast sky. ((NUFORC Note: Possible contrail?? PD)) +2004-08-31,42.7522222,-76.8338889,Romulus,NY,cone,480,White blur with two lights, changed directions often, faded in and out; over the big dipper. ((NUFORC Note: Missile launch. PD)) +2004-08-31,43.5680556,-71.0305556,Wakefield,NH,changing,1800,Bright white 5 -pointed object surrounded by hazy/cloud, travelled SW to N, ((NUFORC Note: Missile launch. PD)) +2004-08-31,43.5680556,-71.0305556,Wakefield,NH,other,1200,5 appendaged object ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,40.9133333,-77.7786111,Bellefonte,PA,other,900,An odd, luminous cloud over Central PA ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,39.3330556,-82.9825,Chillicothe,OH,fireball,1200,Comet-like object that broke up and then dispersed in a large cloud. ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,44.4416667,-73.675,Au Sable Forks,NY,other,1500,Object repoted on 8/31/04 on your website ((NUFORC Note: Result of earlier missile launch. PD)) +2004-08-31,40.6883333,-75.2211111,Easton,PA,triangle,180,8/31/04 21:15 large triangular shaped craft seen in sky Easton, PA +2004-08-31,41.1305556,-85.1288889,Fort Wayne,IN,triangle,120,Triangle object spotted 8-31-04 in Indiana! +2004-08-31,35.4975,-97.2686111,Choctaw,OK,circle,5,Two bright objects over Oklahoma ((NUFORC Note: Flare of Iridium satellite? PD)) +2004-08-31,41.7486111,-77.3008333,Wellsboro,PA,other,3600,While camping at a campground nestled between hills in North Central Pennsylvania my husband and I observed what looked like a small cl +2004-08-31,41.6330556,-81.4688889,Willowick,OH,light,600,Big bright white ball in sky +2005-08-31,41.5261111,-87.8891667,Mokena,IL,light,1200,To lights hovering for 15-20 min +2005-08-31,33.4222222,-111.8219444,Mesa,AZ,light,180,strobe object vanishes +2005-08-31,43.0986111,-77.4422222,Fairport,NY,light,930,A couple of friends and my self were sitting in the park in the village when I looked to my left and noticed a ball of orange like ligh +2005-08-31,38.6272222,-90.1977778,St. Louis (Mehlville),MO,disk,30,Saw a strange hovering object move across road. +2006-08-31,44.8897222,-93.3497222,Edina,MN,light,60,High in the western sky on August 31st at 7:55 p.m. in Edina M.N. USA, a star like object that was fixed in the sky dimmed , split up, +2006-08-31,48.7838889,-117.8105556,Onion Creek,WA,light,30,this is my second entry for august...an oddity- a light, as bright as the brightest star, traveling approx. 35 deg. off horizon in east +2006-08-31,30.56,-91.9538889,Port Barre,LA,circle,50,Object displays remarkable variations in speed high in the night skies over Louisiana +2006-08-31,41.85,-87.65,Chicago,IL,unknown,900,Strange Lights in sky never seen before in hovering manner +2006-08-31,41.31,-122.3094444,Mount Shasta,CA,triangle,5,low flying, dark, large car sized triangle with rectangle dim lights +2007-08-31,34.0211111,-118.3955556,Culver City,CA,cigar,5,"silver cigar"-UFO near Culver City +2007-08-31,34.7463889,-92.2894444,Little Rock,AR,rectangle,120,White object moving with the wind +2007-08-31,41.6611111,-87.7525,Crestwood,IL,sphere,600,Spherical object maintains position in sky for ten minutes over approach path to Midway Airport +2007-08-31,43.4194444,-83.9508333,Saginaw,MI,triangle,60,we were driving north on I-75 as we notice these 3 bright lights in the shape of a triangle. the plane type object was a fairly large o +2007-08-31,34.7463889,-92.2894444,Little Rock,AR,circle,300,I saw a bright light in the evening sky that emitted approximately 6 other smaller lights and they all left at high speed. +2007-08-31,41.5380556,-72.8075,Meriden,CT,fireball,300,Initially spotted round orange fireball in Western sky, at an altitude approximately you'd see a small plane fly. Traveled East, then t +2007-08-31,39.5994444,-88.6077778,Sullivan,IL,light,600,a series of reddish/orange glow-type lights +2007-08-31,45.2061111,-123.8908333,Cloverdale,OR,other,5,Red ember-like object on barn roof. ((NUFORC Note: Possible meteor. PD)) +2008-08-31,40.2694444,-74.5236111,Hightstown,NJ,teardrop,60,For a minute i saw a flaming ball of fire moving south. +2008-08-31,44.7391667,-67.3905556,East Machias,ME,light,300,Flashing lights that approached each other and flew in a circle in Maine. +2008-08-31,48.1333333,-103.6333333,Williston,ND,triangle,5,Three orange dots in a triangular shape over ND +2008-08-31,42.4927778,-92.3427778,Waterloo,IA,light,2100,Over Waterloo viewed from Dewar and Oelwein +2008-08-31,42.1130556,-70.8125,Hanover,MA,sphere,120,It was a blue round shape object. +2008-08-31,40.6866667,-73.3738889,Lindenhurst,NY,light,5,Green orb of light on fire +2008-08-31,38.2325,-122.6355556,Petaluma,CA,sphere,1800,Small white point of light seen jumping around randomly and disappearing then reappearing +2008-08-31,42.2416667,-71.1666667,Dedham,MA,fireball,5,Clear/no clouds night. On patrol, parked in lot with second cruiser. Noticed two distinct flashes similar to lightning flash or trans +2008-08-31,46.7216667,-92.4591667,Cloquet,MN,triangle,120,Bright red lights moving in steady progression +2008-08-31,39.9522222,-75.1641667,Philadelphia,PA,disk,30,Silver Object over Philadelphia airport +2008-08-31,40.7691667,-73.1155556,Bohemia,NY,triangle,2,Large object high rate of speed no lights no sound or air movement very low altitude. +2008-08-31,33.4222222,-111.8219444,Mesa,AZ,cigar,5400,At sunset, a large cloud approached from the SW to a pos. approx. 10 km from us. ((NUFORC Note: We see clouds only. PD)) +2008-08-31,42.1816667,-88.3302778,Lake In The Hills,IL,light,300,Small town Lake in the Hills, IL sees triangle formation similar to the ones over Tinley Park 4 years ago, +2008-08-31,39.0633333,-84.5930556,Villa Hills,KY,formation,120,Fireball stops and turns into horizontal line of five lights. +2008-08-31,40.5852778,-105.0838889,Fort Collins,CO,triangle,480,Triangle seen in telescope. ((NUFORC Note: Possible "twinkling" star, we suspect. PD)) +2008-08-31,40.6975,-74.2636111,Union,NJ,light,5,Bright white light seen trailing through the sky North East of Union, NJ. +2008-08-31,42.3702778,-87.9019444,Gurnee,IL,changing,3600,Pulsating lights: white.red &green +2008-08-31,41.0358333,-71.955,Montauk (Town Of East Hampton),NY,circle,300,Bright red/orange disc seen moving silently over Atlantic Ocean from East to West on dark summer night. +2009-08-31,33.1191667,-117.0855556,Escondido,CA,cigar,300,It happened Sunday evening just after midnight. My roomate and myself were smoking a cigarette. He jumped up and exclaimed "what the ** +2009-08-31,41.8666667,-103.6666667,Scottsbluff,NE,flash,30,Bright flash of light followed by trail. +2009-08-31,37.2386111,-113.3583333,Leeds,UT,light,7200,In Northeast sky about 60 to 65 degrees off horizon. Moves back and forth slowly, from a Northwest to Southeast direction. Directly abo +2009-08-31,33.2097222,-87.5691667,Tuscaloosa,AL,light,1800,At least 7 high speed lights seen over Tuscaloosa/Hillcrest, AL +2009-08-31,46.8722222,-113.9930556,Missoula,MT,other,60,Silent, erratic, ultra-fast tour over Missoula area of 3-5 copper-colored craft. +2009-08-31,45.8202778,-88.0658333,Iron Mountain,MI,light,15,Glowing bright green light/orb falling to earth from the stars +2009-08-31,29.0297222,-82.7161111,Yankeetown,FL,cigar,5,cigar object crosses in front of moon slowly at 21:00 IN YANKEETOWN, FLORIDA +2009-08-31,35.925,-86.8688889,Franklin,TN,sphere,120,At 2:25 pm on 8/31/09, I noticed what I first thought was a black large bird (Black Vulture) flying high in the sky. Most of the time t +2009-08-31,33.1191667,-117.0855556,Escondido,CA,light,300,blue light sighting for the third time +2010-08-31,30.6741667,-96.3697222,Bryan,TX,triangle,60,3 chamber, triangle shaped object +2010-08-31,38.7538889,-95.8347222,Burlingame,KS,chevron,5400,1 main object, seconndary at higher elevation smaller 2large, bright cigar/chevron shapes +2010-08-31,33.9525,-84.55,Marietta,GA,triangle,300,Triangle in Marietta near Barret and Dallas highway. +2010-08-31,40.7141667,-74.0063889,New York City (Queens),NY,light,180,A bright white light bluish purple tint almost like a halogen light or LED light, somewhat triangular shape. +2010-08-31,38.5816667,-121.4933333,Sacramento,CA,rectangle,180,Translucent shimmering white soft edges rectangle wide as a the side of an AMTRAC train car. +2010-08-31,38.4088889,-90.57,House Springs,MO,disk,120,August 31, 2010, strange saucer shaped craft with large dome on top and many lights hovered over our yard in House Springs, Missouri +2011-08-31,34.1741667,-97.1433333,Ardmore,OK,triangle,120,Triangular craft with three red lights hovering and then circling areas in Ardmore, Oklahoma. +2011-08-31,41.5875,-109.2022222,Rock Springs,WY,light,300,Bright White like star moving plane speed, shifted side to side then was gone. +2011-08-31,33.4661111,-94.2883333,Hooks,TX,light,360,U are more than welcome to come and see this for yourselves.. It occurs nightly. +2011-08-31,42.1394444,-83.1783333,Trenton,MI,fireball,120,2 orange orbs.Thought they were flying Chinese lanterns at first but definitely not. +2011-08-31,34.2175,-118.3694444,Sun Valley,CA,triangle,180,2 large triangular silent craft with 3 extra large lights witnessed by 2 men +2011-08-31,40.9469444,-73.03,Mount Sinai,NY,other,20,Vertical disk shaped craft with red/white light very low scanning area +2011-08-31,41.0358333,-71.955,Montauk,NY,fireball,180,Came out of restaurant on south Edison in Montauk, ny. My husband went to get our car when I happened to look up in the sky and saw an +2011-08-31,37.4136111,-79.1425,Lynchburg,VA,other,180,The object, a bright white “T” shaped light, was seen moving across sky very smoothly, staggering side to side changing pace. After abo +2011-08-31,37.6941667,-122.0852778,Castro Valley,CA,light,300,Moving from the west in a south or south east direction - small single white object dimmed and disappeared +2011-08-31,37.0244444,-84.0752778,Lily,KY,diamond,300,Bright non-blinking object that began to dim and eventually disappeared completely. ((NUFORC Note: Possibly the ISS? PD)) +2011-08-31,36.0988889,-78.3013889,Louisburg,NC,circle,120,Observed what seemed to be a star that would get brighter and normal bright moving west to east, and when overhead it disappeared! +2011-08-31,37.0902778,-98.3980556,Hazelton,KS,unknown,120,bright white light in rural Barber county kansas +2011-08-31,41.0358333,-71.955,Montauk,NY,fireball,45,Undulating ball of fire over Montauk that went high and disappeared, 5 minutes later a 2nd one appeared and did the same thing. +2011-08-31,40.97,-81.6966667,Doylestown,OH,light,6,Large hovering bright blue light with rapid acceleration. +2012-08-31,35.7719444,-78.6388889,Raleigh,NC,other,300,Two lights, one red and one small green +2012-08-31,43.073055600000004,-89.4011111,Madison,WI,fireball,300,2 fireball like spheres from the West head east over Madison, same as 08/18/12 +2012-08-31,39.5297222,-119.8127778,Reno,NV,light,300,Figure 8 atmosphere highth bright light +2012-08-31,40.3088889,-76.5936111,Palmyra,PA,light,360,Starlike object witnessed in morning sky +2012-08-31,29.7630556,-95.3630556,Houston,TX,disk,1200,UFO spotted in Houston +2012-08-31,37.5263889,-120.7958333,Denair,CA,cigar,1200,Upright grey cigar looking ufo that did not make a sound and dissapeared slowly away southbound in the sky +2012-08-31,33.1580556,-117.3497222,Carlsbad,CA,cigar,3600,Long thin black line floating in the sky +2012-08-31,46.9422222,-122.6047222,Yelm,WA,rectangle,240,Two witnessed glowing orange rectangular object moving through the sky on the night of the "Blue Moon." +2012-08-31,41.4816667,-72.6816667,Durham,CT,oval,240,Hovering over a field, 6-10 bright lights on the edge of the bottom lined up. It looked 3D almost. By the time we went back, it was gon +2012-08-31,37.9444444,-87.4052778,Newburgh,IN,fireball,180,Orange fireball hovering and then sped away quickly seen by nurse and patient +2012-08-31,42.6011111,-89.6383333,Monroe,WI,formation,300,3 large red lights in souther Wisconsin +2012-08-31,35.7511111,-86.93,Spring Hill,TN,cigar,10,Object captured in photos +2012-08-31,37.1041667,-113.5833333,St. George,UT,fireball,180,WOW! Flaming ball of Fire? Or something else ? +2012-08-31,44.7677778,-93.2775,Burnsville,MN,sphere,60,Bright Orange sphere low altitude then disappeared +2012-08-31,28.7027778,-81.3386111,Longwood,FL,fireball,120,Four orange glowing globes floating quickly and silently in a fairly straight line then vanish one by one. +2012-08-31,41.8897222,-87.9888889,Villa Park,IL,circle,20,Orangish, Red circle traveling in straight line +2012-08-31,42.0583333,-70.1791667,Provincetown,MA,triangle,60,Illuminated triangle makes strange movements in the sky +2012-08-31,42.9386111,-74.1886111,Amsterdam,NY,unknown,900,I was driving East on Miami Ave, Amsterdam NY around 11:30 when I saw a large bright object in the sky. The occupant I was with record +2012-08-31,40.4655556,-80.0658333,Mckees Rocks,PA,light,300,Bright red shining object +2013-08-31,38.3497222,-81.6327778,Charleston,WV,triangle,180,Lights appeared in a triangular shape. +2013-08-31,35.0844444,-106.6505556,Albuquerque (Southeast),NM,light,5400,THE SKY SOUTHEAST OF ABQ THERE WAS A GROUPING OF LIGHTS JUMPING IN ONE AREA FOR OVER AN HOUR +2013-08-31,38.5888889,-89.9902778,Fairview Heights,IL,flash,1800,Star-like object that pulsed brightly and dimmed multiple times then became stationary +2013-08-31,35.8455556,-86.3902778,Murfreesboro,TN,circle,3,Extreamly bright, large, white light shot from one end of the sky to the other. +2013-08-31,33.3527778,-111.7883333,Gilbert,AZ,oval,900,Round illuminated object in sky over Gilbert, Queen Creek area this afternoon. +2013-08-31,45.3575,-122.3577778,Eagle Creek,OR,other,600,Bright star like object in the west that stopped, moved slowly then stopping again, then it was gone. +2013-08-31,36.4991667,-80.6075,Mt. Airy,NC,light,9000,Unidentifiable lights over NW North Carolina with constant rumbling, total of 12 over 2 and 1/2 hour time period. Surry County. +2013-08-31,33.5386111,-112.1852778,Glendale,AZ,changing,900,Observed two objects in night sky changing shapes and color,amazing detail when enlarged +2013-08-31,42.8666667,-88.3333333,Mukwonago,WI,rectangle,240,3 reddish orange lights traveling east over Mukwonago area. +2013-08-31,40.8527778,-73.1155556,Lake Grove,NY,fireball,30,Was in a parking lot in Lake Grove NY walking to my car when I looked up and saw this red-orange glow going across the sky from south-w +2013-08-31,41.2222222,-73.0569444,Milford,CT,triangle,120,Three red lights flying in formation followed by a triangular craft with one red light that was spinning slolwy +2013-08-31,41.5666667,-86.5519444,Fish Lake,IN,light,300,Bright golden light in sky changing directions then vanishing. +2013-08-31,39.6586111,-75.8263889,Elk Mills,MD,formation,300,Orange orbs or floating lights in sky over Elkton, MD +2013-08-31,42.5916667,-88.4333333,Lake Geneva (Near),WI,light,30,5 orange balls of light moving off towards the southwest of Lake Geneva Wi. +2013-08-31,41.6661111,-81.3397222,Mentor,OH,fireball,240,2 spheres bright red/orange over northern Mentor sky 8/31/13 at 20:50. Thought it was a plane on fire in pieces. +2013-08-31,35.1733333,-83.1294444,Glenville,NC,light,900,Orange light following a commanded path. +2013-08-31,42.8666667,-88.3333333,Mukwonago,WI,changing,120,Please read nuforc i beg you. this will help me so much. +2013-08-31,40.8558333,-73.2011111,Smithtown,NY,triangle,300,Glowing orb followed by smaller orange lights rotating around a point on long island. +2013-08-31,44.0713889,-72.9730556,South Lincoln,VT,circle,420,Three orange colored circular objects, S. Lincoln Vermont. +2013-08-31,41.4552778,-81.9180556,Westlake,OH,oval,120,Orange/red orbs over Lake Erie. +2013-08-31,42.9288889,-88.8369444,Fort Atkinson,WI,circle,300,Our 15yr old granddaughter and her friend made me and my husband come outside to see this fire in the sky. It was round and looked lik +2013-08-31,37.8044444,-122.2697222,Oakland,CA,light,20,On a clear night, a large, bright light appeared, dove rapidly, then rapidly ascened, and left. +2013-08-31,38.9536111,-94.7333333,Lenexa,KS,light,120,Orange light vanished after 2 minutes. +2013-08-31,42.3444444,-88.0416667,Grayslake,IL,fireball,300,8-31-2013 at 21:30 a yellowish –red fireball (1) observed over south Grayslake. +2013-08-31,42.3811111,-88.1397222,Ingleside,IL,teardrop,90,Orange bright orb gliding high in the sky that dimms to one small white and red light. +2013-08-31,41.926944399999996,-73.9977778,Kingston,NY,other,300,Hollow letter Y surrounded completely in a gaseous liquid fiery type plasma. Whole body flexing n twisting slightly. +2013-08-31,45.5230556,-122.9886111,Hillsboro,OR,fireball,600,Strange orange light(flame) in the sky +2013-08-31,43.2311111,-76.3011111,Phoenix,NY,circle,240,Eastbound orb. +2013-08-31,41.3947222,-73.4544444,Danbury,CT,rectangle,600,10-12 red-orange glowing objects flying slowly from south to north in clusters of two or three. +2013-08-31,39.7091667,-84.0633333,Beavercreek,OH,light,30,2 reddish orange lights traveling to NE, ((NUFORC Note: We are uncertain as to whether this is intended as a serious report. PD)) +2013-08-31,33.8388889,-83.9008333,Loganville,GA,unknown,480,Lights looked like constellation of stars, turned into 7 orange lights trailing +2013-08-31,40.2969444,-111.6938889,Orem,UT,disk,6,Two women saw an eerie, unlit, gliding, saucer-like object while watching for a meteor shower in a soccer field. +1957-08-03,39.8905556,-84.1988889,Vandalia,OH,disk,300,Disk with light spining through it's center crossed the sky from south to north in 3 min or less 8/3/57 +1973-08-03,29.4238889,-98.4933333,San Antonio,TX,sphere,2400,Huge glowing sphere emerging from night sky cloud in summer of1973, in San Antonio, Texas +1973-08-03,40.7322222,-74.2352778,Irvington,NJ,oval,900,Seven eliptical shaped crafts 6 miles from Newark Airport Summer approx 1973 +1978-08-03,41.9402778,-85.0005556,Coldwater,MI,cylinder,600,Observers a Cylinder shaft cross the road above us and in front of us and then depart the scene quickly after pacing the car we were in +1997-08-03,36.5433333,-114.4461111,Overton,NV,sphere,150,six spherical objects with pulsating red and green lights, one constant white light at one o'clock position unless object turns, then c +1997-08-03,38.6272222,-90.1977778,St. Louis,MO,cylinder,120,Observed cylinder shaped object hovering 30feet or less over hwy 40 west 2 miles west of downtown. Object was dark colored, no lights, +1997-08-03,33.8302778,-116.5444444,Palm Springs (Cathedral City),CA,light,600,A "UFO" was erratically flying in the sky circling an object, when it shot a light and destroyed the object. +1997-08-03,36.0155556,-82.1588889,Bakersville,NC,light,15,A bright light with a long tail (presumed to be a meteroite) was sited moving slowly across the eastern sky, in a south to north direct +1997-08-03,47.1008333,-107.485,Sand Springs (15-20mi. E/Se Of),MT,other,300,The object flew almost like a butterfly, very high up (30-40K+), blinking blue and red in four distinct spots as it flew from side to s +1998-08-03,42.5194444,-70.8972222,Salem,MA,changing,10800,Bright light hovered over Marblhead Bay for several hours. Oval to disk shape but seemed to also change shape as well as color. Bright +1998-08-03,44.0716667,-101.155,Midland,SD,unknown,2700,Red ball of light exploding into many small white lights with one strobing along highway. +1998-08-03,31.7586111,-106.4863889,El Paso,TX,light,2,BIG BALL OF LIGHT, SHOT OUT OF THE CLOUDS AND DOWN TOWARDS THE GROUND. ONLY LASTED FOR A FEW SECONDS, MAYBE A BALL LIGHTNING OTHER PEO +1998-08-03,31.7586111,-106.4863889,El Paso,TX,fireball,2,IN REFERENCE TO THE BALL OF LIGHT SEEN BY THE OTHER INDIVIDUAL ON THIS DATE. I WAS DRIVING HOME FROM WORK WHEN I SAW TWO BIG FIREBALLS +1998-08-03,45.5236111,-122.675,Portland,OR,light,120,Very bright steady blue-white light in sky over 3-5 deg. arc, steady movement over ene to wsw path, abruptly vanishing at "apex". No s +1999-08-03,45.4872222,-122.8025,Beaverton,OR,disk,30,Object appeared in the west, moving very fast in a south easterly direction. it was a dish shaped object, did not appear to have lights +1999-08-03,39.4811111,-76.6441667,Cockeysville,MD,light,1,I breifly looked up and saw a white light flash across above the treeline then disappear because of its rapid speed. +1999-08-03,43.073055600000004,-89.4011111,Madison,WI,light,80,bright white light, moving fast, got brighter towards the horizon, and then disappeared. +1999-08-03,38.5063889,-82.2986111,Lesage (Near),WV,light,60,An amber light was moving slowly over the hills from east to west. It suddenly blinked out and then blinked on again a few seconds late +1999-08-03,39.7241667,-77.4716667,Blue Ridge Summit (Area),PA,unknown,720,It was a warm summer night i was on my way to work the night sky was very clear ,and the sky was full of stars but from my view i could +2000-08-03,47.6816667,-122.2075,Kirkland,WA,disk,600,Bright light traveling north to southwest and another bright light crossed it's path going from south at almost noon. +2000-08-03,45.6388889,-122.6602778,Vancouver,WA,disk,45,my mom and I saw a metallic object fly very quickly in a diagonal line downwards from left to right then a tree blocked our view +2000-08-03,48.3883333,-115.555,Libby,MT,disk,120,We were watching the white oval object moving east in the clear blue sky, then it just disappeared! +2000-08-03,33.3061111,-111.8405556,Chandler,AZ,circle,7200,Towards the north sky, there was a red circle of light hovering motionless and without sound. My family and I wathed this red circle of +2000-08-03,33.6305556,-112.3325,Surprise,AZ,light,600,A red light that traveled across the sky, then dissapeared. +2000-08-03,41.2002778,-85.7055556,Pierceton,IN,other,600,These things were definitly in our area that particular week hovering very low just above the tree lines and houses. +2000-08-03,41.2377778,-81.9316667,Valley City,OH,flash,2,It was a green light, going across the sky, faster than any normal aircraft sighted in the area. +2000-08-03,43.3594444,-83.8816667,Bridgeport,MI,circle,600,Glowing object descends from sky and changes color from white to green - followed almost ten minutes later by strange flash in the sky. +2000-08-03,36.175,-115.1363889,Las Vegas,NV,fireball,30,Burning object spotted over the Las Vegas strip +2000-08-03,40.1786111,-122.2347222,Red Bluff,CA,cylinder,5,cylindrical shape,looked like the alein space craft from the startrek movie IV:the voyage home,minus the floating ball beneth it. +2001-08-03,46.1655556,-90.0625,Mercer,WI,light,600,multiple lights moving in unison at distinct angles +2001-08-03,45.4872222,-122.8025,Beaverton,OR,circle,90,Dark circle, or Dot at about 1ꯠ ft. moving due South to North, at small plane speed at 09:19, with a bizzare field that shimmered... +2001-08-03,33.4147222,-111.9086111,Tempe,AZ,cigar,120,The movement away from me was too quick to be a blimp, and the change in direction to sudden for a plane. +2001-08-03,46.6622222,-122.9627778,Chehalis,WA,unknown,300,Extremely loud rushing wind sound, swirling, slowing moving west +2001-08-03,47.7544444,-122.1622222,Woodinville,WA,circle,15,Saw 6 white, round objects in the sky in 2 formations of 3 each. +2001-08-03,26.9338889,-80.0944444,Jupiter,FL,oval,120,oval shaped lighted craft turned into one single light +2001-08-03,44.8738889,-88.1427778,Oconto Falls,WI,unknown,3,FireBall Crash In Oconto WI 23:35 08/03/01 +2002-08-03,45.5236111,-122.675,Portland,OR,light,30,Bright, White light moving North from South, Below the Moon. +2002-08-03,32.64,-117.0833333,Chula Vista,CA,formation,720,V Shaped Formation of White,Cross-like Objects Observed in Chula Vista, California +2002-08-03,39.7294444,-104.8313889,Aurora,CO,triangle,180,Several objects came from big one, then I lost sight of them... +2002-08-03,39.5611111,-76.2458333,Churchville,MD,light,5,3 big red lights outside the Movie Theater +2002-08-03,42.7325,-84.5555556,Lansing,MI,light,2700,Seen with the naked eye this object looks like a star. We see this "star" almost every night about the same time but it leaves at diff +2002-08-03,39.3352778,-76.3905556,Bowleys Quarters,MD,other,2,Bright white/blue strobe/flash - no sound - illuminating 3 "windows" behind flash - 2 - sec. no other lights +2002-08-03,33.9791667,-118.0319444,Whittier,CA,unknown,60,Three UFO's cat fight then fly off +2002-08-03,45.5236111,-122.675,Portland,OR,light,180,In a night sky 5 silver/blue lights circled in a circle, joined at the center, repeated the event & then the joined lights went out. +2002-08-03,43.9827778,-124.0986111,Florence,OR,circle,1200,It was an orange glow, with rapid movements far above the ocean, moving rapidly to the right and left, up and down. +2002-08-03,41.1544444,-96.0419444,Papillion,NE,light,15,Observed unusually bright object moving in conventional orbital pattern but not listed in online satellite resource. +2002-08-03,39.5994444,-88.6077778,Sullivan,IL,light,10,bright light fading to moving light +2003-08-03,32.5419444,-97.3205556,Burleson,TX,circle,900,the object was so illuminated it looked like a huge firecracker or starburst in the sky it was HUGE +2003-08-03,45.0861111,-93.2630556,Fridley,MN,other,2700,Star like object in the night sky looked like it was trying to avoid a falling star? +2003-08-03,38.801944399999996,-94.4525,Raymore,MO,triangle,720,My son and I came out to the back of where we live and was only living there for a short time until our house was being built. So we lo +2003-08-03,33.1958333,-117.3786111,Oceanside,CA,egg,60,Tight formation of metallic egg shaped crafts +2003-08-03,36.5988889,-80.5108333,Ararat,VA,disk,180,UFO in trouble has mothership support but recovers, then both fly off . +2003-08-03,38.7297222,-120.7975,Placerville,CA,formation,180,Triangle formation of lights. Looked like moving stars. +2003-08-03,35.3561111,-95.2652778,Porum,OK,light,2700,reappearing bright light over hills +2003-08-03,34.1347222,-116.3122222,Joshua Tree,CA,formation,45,A triangular formation of three lights heading south directly overhead. Appeared extremely high in the sky. Kept in perfect formation +2003-08-03,31.5255556,-92.4069444,Pollock,LA,light,180,Three orange lights traveling high altitude, close prox. to one another, high rate of speed. +2003-08-03,39.7763889,-74.8627778,Jackson,NJ,fireball,60,At around 11 pm, me and my three friends saw a large fireball with a trial of sparks behind it. I was moving very slow and passed in an +2003-08-03,33.7669444,-118.1883333,Long Beach,CA,light,1800,a large yellowish light appeared a couple thousand ft up to the south east of my home in long beach, ca. +2003-08-03,40.5408333,-74.5880556,Manville,NJ,light,1800,on august 3rd, 2003 my father looked out the window and noticed a bright light that was close to earth that would get bright then dimme +2003-08-03,41.6638889,-83.5552778,Toledo,OH,light,14400,odd flashing group of lights seen in toledo +2003-08-03,47.6816667,-122.2075,Kirkland,WA,light,300,We Can’t Explain It While on a five day back packing trip in the Pasayten Wilderness the first week of August, 2003, we saw a light in +2003-08-03,35.6869444,-105.9372222,Santa Fe,NM,cylinder,5,It was the fastest thing I had ever seen! +2004-08-03,38.5816667,-121.4933333,West Sacramento,CA,flash,1,It left skid marks in the sky with a trail of smoke. It was a blue light of a flash which I thought were fireworks that never popped. T +2004-08-03,33.4147222,-111.9086111,Tempe,AZ,light,1800,bright light in eastern sky above treeline (Venus??) +2004-08-03,34.2163889,-119.0366667,Camarillo,CA,changing,3600,Changing shapes +2004-08-03,33.5441667,-84.2338889,Stockbridge,GA,changing,1800,GEORGIA UFO GROUP Report/Tom Sheets: Shape Changing Glowing Orb/Light +2004-08-03,35.0844444,-106.6505556,Albuquerque (20 Miles East Of),NM,sphere,30,Silver sphere seen over mountain in New Mexico +2004-08-03,35.0525,-118.1730556,Mojave,CA,sphere,5,15:30 observed 2 spheres flying high altitude from west to east. VERY fast, passing below sun I could see spherical shape +2004-08-03,38.935,-74.9063889,Cape May,NJ,disk,3,Neon-Blue Disk w/ Many Lights on Bottom Seen Over Cape May Beach +2005-08-03,36.2569444,-83.0861111,Bulls Gap,TN,triangle,60,Triangle grey orb spotted above our trees in Bulls Gap, Tennessee +2005-08-03,40.3858333,-122.2797222,Cottonwood,CA,light,15,Lights return after con trails cover the sky with clouds. +2005-08-03,38.3325,-82.9486111,Grayson,KY,light,300,Two small objects flying side by side and disappearing in an odd way. +2005-08-04,42.2638889,-88.8441667,Belvidere,IL,triangle,180,Triangular noiseless flying craft with brightness on its underbody. +2006-08-03,47.0791667,-119.8547222,George,WA,light,120,I witnessed a very bright star-like object in the sky after a Dave Matthews Band Show at the Gorge in George, WA +2006-08-03,34.1161111,-118.1494444,South Pasadena,CA,fireball,5,It was very early in the morning, in the predawn hours. Under a clear sky filled with stars (or at least as clear as it gets in the Los +2006-08-03,37.8136111,-88.4380556,Eldorado,IL,unknown,2700,2 space ships in the sky +2006-08-03,35.925,-86.8688889,Franklin,TN,light,10,star sized object moving at jetliner speed, does a J-turn and doubles in speed before fading +2006-08-03,39.1555556,-84.4597222,Norwood,OH,light,240,1 Light chasing another. +2006-08-03,41.5736111,-75.5022222,Carbondale,PA,teardrop,1800,there were electrical effects, my cell phone went crazy +2007-08-03,42.8780556,-73.1972222,Bennington,VT,other,10,bright shooting light, slowly fades away. +2007-08-03,29.6655556,-95.0191667,La Porte,TX,light,60,The object moved very swiftly in a zig-zag pattern and then split into two seperate orbs right before my eyes +2007-08-03,33.1505556,-96.8233333,Frisco,TX,cigar,8,Two glowing light green oblong/cigar shaped objects side-by-side +2007-08-03,34.4047222,-103.2047222,Clovis,NM,light,300,Looked like a bright star moving quite fast +2007-08-03,33.9533333,-117.3952778,Riverside,CA,light,60,Bright, fast moving light passes overhead +2007-08-03,41.3680556,-89.4647222,Princeton,IL,triangle,120,Slow, low flying triangle shaped craft, three white lights, one red blinking light +2007-08-03,40.4411111,-75.8872222,Blandon,PA,formation,300,2 V-shaped formations of red and blue lights seen hovering low on the horizon +2007-08-03,42.8863889,-78.8786111,Buffalo,NY,circle,300,Bright white circular like light moving north, northest from the Elmwood strip in Buffalo, New York. ((NUFORC Note: ISS?? PD)) +2007-08-03,45.0352778,-93.5822222,Medina,MN,light,120,Bright, fast moving star-like object +2007-08-03,32.7558333,-111.6702778,Arizona City,AZ,triangle,60,Triangle UFO with orange lights seen over Arizona City twice in one day. +2007-08-03,41.6397222,-73.2088889,Bethlehem,CT,fireball,30,Ball of White Fire Shoots Across the Sky in Bethlehem +2007-08-03,29.875,-98.2622222,Canyon Lake,TX,light,73800,Unexplained light pattern that lasted for over an hour +2008-08-03,47.6261111,-120.2241667,Orondo (Near),WA,fireball,2,Fireball sighting with apparent explosion +2008-08-03,46.1013889,-123.2055556,Clatskanie,OR,circle,5,driving home from work seen bright green ball come from sky rather slowly, and dissapear about 50-100 feet above a large grassy field. +2008-08-03,40.6366667,-74.9102778,Clinton,NJ,unknown,1200,((HOAX??)) "Speeding Stars" over smalltown Clinton, New Jersey +2008-08-03,43.8841667,-121.4375,Sunriver,OR,cylinder,2700,Reflective Spinning object high over Sunriver, Oregon. 8/3/2008 +2008-08-03,42.5,-96.4,Sioux City,IA,disk,30,Object seen within 1 Mile East of Grandview park in Sioux City(NorthSide). It travelled at about 400 ft in elevation in a N.E. directio +2008-08-03,36.8527778,-75.9783333,Virginia Beach,VA,fireball,10526400,this object was very high up and emmited no sound.! +2008-08-03,39.2902778,-76.6125,Baltimore,MD,teardrop,900,Large object that changed colors in night skies over Baltimore,Maryland. +2008-08-03,39.2902778,-76.6125,Baltimore,MD,teardrop,60,craft observed crossing Baltimore in Canton area observed from Fleet St traveling east/west +2008-08-03,39.2902778,-76.6125,Baltimore,MD,oval,45,Large light traveling east to west, no sound, then flashed and instantly disappeared +2008-08-03,40.2330556,-76.1375,Denver,PA,light,15,Radiant green object souring through the sky than disappearing in a flash +2008-08-03,40.5261111,-75.0619444,Frenchtown,NJ,flash,3,We all saw a flash of light in the sky for 2-3 seconds just standing their. Then the beam shot into the sky leaving a blue trail. +2008-08-03,40.5883333,-73.6583333,Long Beach,NY,oval,4,An oval brilliantly bright/white object with a trailing tail moving east to west over the ocean in 3-4 seconds. +2008-08-03,38.9125,-75.4283333,Milford,DE,fireball,3,Three family members saw a green fireball, about the size of a tennis ball, travel E to W for 3 seconds, with trailing red-orange spark +2008-08-03,40.6552778,-74.3902778,Scotch Plains,NJ,cigar,2,UFO Sighting in Central NJ +2008-08-03,27.9472222,-82.4586111,Tampa,FL,unknown,5,Street lights went black and a strange blueish-white light came down from the sky +2008-08-03,39.2902778,-76.6125,Baltimore,MD,sphere,120,Orange Disc anomaly imaged in HD over trees in Baltimore Maryland +2008-08-03,38.9011111,-77.2655556,Vienna,VA,sphere,60,bright, large orange sphere "dancing" above tall tree tops at night +2008-08-03,36.0397222,-114.9811111,Henderson,NV,changing,3600,Rapid shape changing bright white light vanishing. +2008-08-03,40.9552778,-76.6291667,Riverside,PA,light,900,Bright star like object moving south changed colors from white to orange and then turned northeast. +2008-08-03,41.8616667,-88.1608333,Winfield,IL,triangle,5,Orange lights in shape of inverted 'Y' flew 200 ft. overhead traveling East. +2008-08-03,42.5802778,-83.0302778,Sterling Heights,MI,circle,30,large star-like object becomes red and vanishes +2009-08-03,32.7994444,-97.2688889,Haltom City,TX,light,2700,Very bright sparkly/pulsating color-changing light in Haltom City / North Fort Worth off of Loop 820 West & I-35W +2009-08-03,30.0969444,-95.6158333,Tomball,TX,triangle,30,white glowing triangle, dipped down, turned on its side and flew off very quickly to the west into space +2009-08-03,19.6255556,-155.0416667,Keaau,HI,circle,600,Saw two high-flying reddish balls +2009-08-03,28.5380556,-81.3794444,Orlando,FL,sphere,1200,Blue metallic sphere in early morning sky +2009-08-03,42.5847222,-87.8211111,Kenosha,WI,other,40,Stingray Shaped Object in broad Day light +2009-08-03,41.7425,-70.1625,East Dennis,MA,sphere,120,Orange spherical object seen moving toward shoreline, then in a left-to-right pattern across shoreline before abruptly flickering out. +2009-08-03,46.7163889,-122.9530556,Centralia,WA,light,10,High Speed light vanishes on clear night +2009-08-03,42.8666667,-88.3333333,Mukwonago,WI,light,120,I was looking in the east From my home in Mukwonago,WI and I would not say it was a craft it could of been but? It was just a very brig +2009-08-03,48.5127778,-122.6113889,Anacortes,WA,triangle,300,Very loud slow moving equilateral triangular aircraft with 3 white lights on bottom connected by red/peach colored lines +2010-08-03,28.805,-97.0033333,Victoria,TX,rectangle,7,Two Ufo sighting witin a month same town one 20 mins ago +2010-08-03,39.8005556,-76.9833333,Hanover,PA,unknown,1800,At 00:30 at coduras state park, unknown ship flew above treetops creating powerful down winds, flew over park area. Could hear winds fl +2010-08-03,33.4483333,-112.0733333,Phoenix,AZ,fireball,2,Large Green Fireball South Phoenix Arizona 12:30am 8/03/10 Ahwatukee area. +2010-08-03,33.7669444,-118.1883333,Long Beach,CA,fireball,1,Very fast Oblong crescent shaped object streaking through sky above Long Beach/Seal Beach, CA +2010-08-03,42.3583333,-71.0602778,Boston,MA,changing,600,Changes shape and flashing lights- one dark window- blue beam came down- picked up something 5 +2010-08-03,38.1502778,-92.6177778,Osage Beach,MO,fireball,2700,Very UNUSUAL lens reflection, atmospheric conditions or alien ball of light/fire +2010-08-03,36.3183333,-87.6947222,Erin,TN,circle,15,August 3, 2010 Around 7:00 pm I was watching TV when my TV was making a weird sound. It only makes this sound when a cell phone is aro +2010-08-03,32.77,-108.2797222,Silver City,NM,light,60,Intensely bright, slow-moving, "star-like" object that grew even brighter before it suddenly disappeared. +2010-08-03,26.7080556,-80.2308333,Royal Palm Beach,FL,unknown,1800,Large light gradually dropped then disappeared +2010-08-03,43.0630556,-86.2283333,Grand Haven,MI,light,40,Bright light moving from one horizon to the other in less than 40 seconds +2011-08-03,41.7297222,-93.6055556,Ankeny,IA,formation,1200,Triangle UFOs in formation around the New Highschool +2011-08-03,38.4177778,-82.5863889,South Point,OH,light,2400,Red and white hovering light over South Point, Ohio. +2011-08-03,29.4238889,-98.4933333,San Antonio,TX,triangle,2700,A triangular shaped object seemed to be floating and flashing bright, different colored light. Over a course of 45 minutes it slowly ch +2011-08-03,40.5852778,-105.0838889,Fort Collins,CO,sphere,60,Fight blue fast moving light over Fort Collins. +2011-08-03,38.8047222,-77.0472222,Alexandria,VA,disk,1050,Epic sighting man.... +2011-08-03,40.8597222,-74.0597222,Teterboro,NJ,circle,6,Round shape metallic object flying in the sky. +2011-08-03,38.3030556,-77.4608333,Fredericksburg,VA,light,2,Small ball of light in western sky +2011-08-03,33.8941667,-78.4269444,Ocean Isle Beach,NC,formation,60,Orange lights in formation over the ocean. Moved quickly to the right. +2011-08-03,40.8666667,-124.0816667,Arcata,CA,unknown,120,Multiple Northern California UFOs photographed at sunset with the evening crescent moon. +2011-08-03,28.7088889,-100.4991667,Eagle Pass,TX,oval,1800,3 Fast moving orange objects that made a loud noise as it moved +2011-08-03,35.2191667,-75.6905556,Hatteras,NC,formation,10,4 orange rectangular lights stayed stationary then vanished over hatteras beach +2011-08-03,42.1391667,-87.9288889,Wheeling,IL,light,1800,2 militar aircraft chasing 2 ufos for 30 minutes +2011-08-03,43.5408333,-116.5625,Nampa,ID,triangle,600,Two large amber glowing objects over Nampa/ Caldwell Idaho +2011-08-03,25.0861111,-80.4475,Key Largo,FL,chevron,10,Large Chevron UFO flying over Key Largo FL from the SW to NE - +2011-08-03,42.1888889,-120.3447222,Lakeview,OR,sphere,360,08-03-2011 Between Lakeview and Adel. 5-8 objects floating above the highway followed by millitary aircraft +2012-08-03,46.8722222,-113.9930556,Missoula,MT,changing,240,Changing shapes and colors spotted over the the city of Missoula +2012-08-03,42.9836111,-77.3261111,Farmington,NY,unknown,120,Bright flashing blinding white light, loud vibrating humming sound. No visual of anything but lights. +2012-08-03,40.6669444,-111.8872222,Murray,UT,chevron,10,Chevron shaped craft irregular shaped with spheres all along chevron +2012-08-03,42.5091667,-84.6558333,Eaton Rapids,MI,disk,300,Shimmering craft over river. +2012-08-03,42.3313889,-83.0458333,Detroit,MI,unknown,120,Bright orange object moving mid speed in sky then faded away +2012-08-03,40.6686111,-74.1147222,Bayonne,NJ,circle,15,Rapidly-approaching, brightly-lit craft disappears over Kill Van Kull +2012-08-03,20.785,-156.4655556,Kihei,HI,fireball,120,First appeared as a fireball. Then took shape like a bomb, thought we were under attack. Then as that disappeared in the sky another Fi +2012-08-03,34.7369444,-82.2544444,Simpsonville,SC,cigar,120,Orange/reddish cigar shaped craft travels across the horizon then disappears straight up vertically. +2012-08-03,47.6063889,-122.3308333,Seattle,WA,light,2,Bright white light seen over west seattle on august 3rd, 2012. +2012-08-03,34.0230556,-84.3616667,Roswell,GA,fireball,30,Looked like an airplane on fire. +2012-08-03,47.4830556,-122.2158333,Renton,WA,oval,30,Glowing orange elliptical object witnessed by 4 people in Renton, WA +2012-08-03,41.5822222,-85.8344444,Goshen,IN,fireball,120,Orange fireball low in the sky over Goshen IN. +2012-08-03,42.0986111,-75.9183333,Binghamton,NY,fireball,90,Unknown fire moving in sky +2012-08-03,35.1083333,-77.0444444,New Bern,NC,circle,120,Large orange circle appearing and moving across the sky at high rate of speed +2012-08-03,41.3747222,-83.6513889,Bowling Green,OH,circle,120,Large red object seen over northern ohio sept. 3rd around 11 pm +2012-08-03,40.8119444,-74.1247222,Lyndhurst,NJ,fireball,28,Red/Orange Ord Fireball UFO, with Nucleus Looking Center +2012-08-03,47.5302778,-122.0313889,Issaquah,WA,light,60,Light traveling in semi-circular path changing color and shedding particles. +2013-08-03,40.8538889,-74.8294444,Hackettstown,NJ,oval,2,Oval shape objects that would make 90 degree turns with lights during summer nights. +2013-08-03,26.6833333,-80.28,Loxahatchee,FL,fireball,15,Fireball seen exhibiting off manuverability +2013-08-03,41.2794444,-72.5988889,Madison,CT,fireball,600,Orange Glowing Fireball moved South, then North, then disappeared. +2013-08-03,41.6638889,-83.5552778,Toledo,OH,fireball,600,2 bright orange lights. +2013-08-03,40.7616667,-73.3297222,Deer Park,NY,light,5,Bright "star" suddenly moves then disappears. ((NUFORC Note: Possible flare from an Iridium satellite? PD)) +2013-08-03,36.5969444,-120.8325,Panoche (Near; On I-5),CA,cone,300,I-5 in California, two conical craft in flight formation, one steady white and one blinking white +2013-08-03,43.6086111,-86.3638889,Shelby,MI,disk,2,Disc shaped object that flew overhead on a clear sunny day. +2013-08-03,44.7433333,-92.8522222,Hastings,MN,diamond,600,About 21:05 heading East on Cty Rd 46 I noticed 7 lights in the NE sky heading SW. I pulled over to observe the lights , they were abou +2013-08-03,42.6538889,-73.9291667,Voorheesville,NY,circle,30,Orange glowing shere seen on 2 successive nights at almost the same time for 30-120 seconds +2013-08-03,40.4405556,-79.9961111,Pittsburgh,PA,circle,300,Possible UFO sighting +2013-08-03,42.4844444,-91.1227778,Dyersville,IA,circle,900,This blue lighted craft, with a bit of orange and it was over dyersville iowa on Aug 3rd 2013, hovered for a while at about 9:30pm, slo +2013-08-03,47.3319444,-122.8338889,Grapeview,WA,other,300,Red/orange orbs with sonic booms +2013-08-03,33.4222222,-111.8219444,Mesa,AZ,sphere,180,Pulsing bluish-white object seen over NE Mesa AZ +2013-08-03,40.7141667,-74.0063889,New York City (Bronx),NY,fireball,120,4 reddish/ orange objects seem in the sky. +2013-08-03,41.1383333,-81.8638889,Medina,OH,cylinder,240,Bright fireball colored shape hovering and moving slowly then vanished. +2013-08-03,35.0766667,-80.6694444,Indian Trail,NC,sphere,300,Eleven burning orange craft seen over Indian Trail North Carolina August 3, 2013 +2013-08-03,43.073055600000004,-89.4011111,Madison,WI,fireball,1200,Three orange/red fireballs over Madison's West Side. +2013-08-03,35.6008333,-82.5541667,Asheville,NC,light,60,Star-like bright light floats and flys across sky. +2013-08-03,35.4427778,-120.8911111,Cayucos,CA,fireball,600,Four Fireballs in Cayucos Sky +2013-08-03,33.7688889,-89.8083333,Grenada,MS,light,10,I was driving back to Memphis when I seen a light out of the top of my windsheild, that zoomed past and disappeared. It was pitch blac +2013-08-03,36.175,-115.1363889,Las Vegas,NV,light,2700,Line of 9 light orbs hovered over.Las Vegas NV 8/3/13. +2013-08-03,41.5066667,-83.1466667,Oak Harbor,OH,changing,600,Red light hovering in western sky with flashing light object next to it moving both disappeared abruptly +2013-08-03,42.0427778,-88.0797222,Hoffman Estates,IL,fireball,120,Red-orange orbs in Western sky +2013-08-03,42.0027778,-71.5152778,Woonsocket,RI,fireball,180,A bright red circle/light/fireball in the sky that didn't blink and suddenly disappeared. +2013-08-03,36.7477778,-119.7713889,Fresno,CA,light,420,I was asleep while my step dad proceeded to go outside to have a cigarette around 11:00 pm. When out of no where he started to wake me +2013-08-03,34.1480556,-117.9980556,Monrovia,CA,light,180,Color changing light quickly bobbing vertically and hovering over Monrovia CA +2013-08-03,44.8011111,-68.7783333,Bangor,ME,sphere,3600,Twice as bright and twice the size of a regular sized star, a constant white glow and red, blue, green lights squiggling within. +2013-08-03,45.1230556,-92.5363889,New Richmond,WI,light,300,Amber colored light in New Richmond, Wi. +2013-08-03,37.3394444,-121.8938889,San Jose,CA,fireball,1800,Orange red fireball seen 4 times above San Jose, Ca. 8/3/13 +2013-08-03,42.0083333,-91.6438889,Cedar Rapids,IA,cylinder,60,Flattened cylinder with blue glow +2013-08-03,41.5119444,-82.9377778,Port Clinton,OH,fireball,120,Orange looking fireball +1964-08-04,42.3583333,-71.0602778,Boston,MA,circle,3600,Red circle flies low over the city +1972-08-04,29.5666667,-94.3933333,High Island,TX,light,21600,Landing, beamed lights, formation and singly many witness and over several nights, affected phones/cars +1975-08-04,41.3875,-80.8694444,Bristolville,OH,disk,3600,On a summer day, in broad daylight, at a public park on a busy road, numerous witnesses, missing time and my brand new VW. +1993-08-04,33.1658333,-92.7444444,Newell,AR,circle,120,I saw circular lights for 2-3 minutes and experienced a time lapse and woke up in a different location. 500 Lights On Object0: Yes +1993-08-04,20.8783333,-156.6825,Lahaina,HI,chevron,4,Maui, August 1993, incredibly fast & quiet lighted craft moves across the sky, news reports confirm sighting with no explanation. +1994-08-04,40.7608333,-111.8902778,Salt Lake City,UT,light,3600,Cylinder of motionless lights in the sky seen over mine +1994-08-04,31.2825,-86.2555556,Opp,AL,circle,5,Witnessed a Dark Circle moving North to South - with what may have been a Light shining Upwards. +1994-08-04,34.8697222,-111.7602778,Sedona,AZ,sphere,300,Fire fight in the sky +1995-08-04,42.7652778,-71.4680556,Nashua,NH,rectangle,240,No lights...just "void" or black and no sound as it went by...couldnt make out if it was a rectangle or triangle. +1996-08-04,40.9083333,-90.2847222,Knoxville,IL,oval,300,Taking pictures of hayfields to paint.Object was not seen until film was developed. +1996-08-04,40.2452778,-75.65,Pottstown,PA,triangle,1200,((HOAX??)) Pennsylvania black ops? +1999-08-04,42.1944444,-71.9063889,Rochdale,MA,sphere,900,I observed a phosphorescent purple sphere going back and forth over the trees while camping out in the woods. +1999-08-04,42.4391667,-123.3272222,Grants Pass (Murphy Area),OR,egg,6,At 04:00 hours flying NE to SW, two white egg shape objects, flashing off and on. +1999-08-04,42.4361111,-123.1708333,Rogue River,OR,light,6,unblinking star-like lights moving N.E.high and very fast.One every 5 or ten minutes.All taking about the same path. +1999-08-04,34.0777778,-83.5616667,Arcade,GA,flash,90,I went out to put the mat back on the back porch. A flash lit up the yard. An intense periodic flash of light occurred about every 5 se +2000-08-04,45.9486111,-91.6880556,Springbrook,WI,light,300,A small red light what seemed to be a radio tower light grew larger and moved above the tree line and finally disappeared. +2000-08-04,34.0286111,-117.8094444,Diamond Bar,CA,circle,600,I was looking out the backyard at the mountains toward orange county border, and saw a white ball of light around the 57 freeway, about +2000-08-04,34.0194444,-118.4902778,Santa Monica,CA,triangle,10,daytime sighting over Santa Monica Mountains by two 11 year olds at Summer Camp +2000-08-04,47.4830556,-122.2158333,Renton,WA,formation,10,UFO's in Formation +2000-08-04,33.3527778,-111.7883333,Gilbert,AZ,unknown,1500,Observed 2 bright red glowing objects over Gilbert, AZ appearing at 7:52 pm, moving southeasterly, and disappearing at 8:14 and 8:17pm +2000-08-04,33.3061111,-111.8405556,Chandler,AZ,oval,1020,2 red UFOs over Gilbert +2000-08-04,33.3527778,-111.7883333,Gilbert,AZ,light,900,2 red star-like lights, western sky, moving towards the south east. 1st disapeared, the next disapeared in the same spot. +2000-08-04,33.3527778,-111.7883333,Gilbert,AZ,light,120,a red flashing light was in the south direction object did not move this is the third time ive seen this object in the last 4 weeks i w +2000-08-04,33.3527778,-111.7883333,Gilbert,AZ,sphere,900,we were in the back yard when we saw two red lights fly over us as if they were following each other but with no sound +2000-08-04,39.7683333,-86.1580556,Indianapolis,IN,flash,3,I can't remember the exact date, but at about 20:30 I was driving through my neighborhood on the way home from work when I noticed some +2000-08-04,44.1669444,-74.5383333,Tupper Lake,NY,cigar,1800,6 lights in a straite line stood directley over a barn for about 30 mins b4 completly disapearing +2000-08-04,47.7558333,-122.3402778,Shoreline,WA,light,35,a bright light in the south-western sky +2000-08-04,47.2530556,-122.4430556,Tacoma,WA,light,90,A bright object in the southern sky began brightening then dimmed and moved accross the sky toward the west. +2000-08-04,45.9975,-121.5269444,Trout Lake,WA,formation,240,Three satellite appearing objects traveled from NNW to SSE never breaking from an obtuse triangular formation. +2001-08-04,38.8338889,-104.8208333,Colorado Springs,CO,cylinder,18000,The most amazing thing we have ever seen. +2001-08-04,41.8661111,-88.1069444,Wheaton,IL,circle,120,white/silver circle at first stationary, then rising in altitude rapidly until no longer visible +2001-08-04,41.865,-80.79,Ashtabula,OH,cigar,120,two silver cigar shaped objects. Objects apprear to have bright silver lighting running down the middle. Moving slowly,one moving east, +2001-08-04,39.2477778,-88.1633333,Greenup,IL,rectangle,10,blue green rectangler shape +2001-08-04,36.8188889,-76.2752778,Chesapeake,VA,oval,15,4 glowing objects about 1/5th the size of a full moon seen on east coast Aug 4th 2001 +2001-08-04,29.7630556,-95.3630556,Houston,TX,cylinder,20,Rapidly moving silver cylinder crosses horizon of Houston +2002-08-04,42.8805556,-71.3277778,Derry,NH,unknown,300,Aircraft that sounds like a rocket launch? +2002-08-04,39.5994444,-105.9866667,Keystone,CO,light,3600,I woke my husband to look out the window. I didn't trust what I was seeing with my own eyes. +2002-08-04,40.8916667,-76.7977778,Northumberland,PA,disk,1200,I will be as brief as possible,A man named Todd Sees, was abducted and murdered by aliens on Montour Ridge ,in Northumberland County, n +2002-08-04,19.6255556,-155.0416667,Keaau,HI,disk,120,I could not believe that I was looking at a flying saucer as it sliced thru a cloud.... +2002-08-04,34.0983333,-118.3258333,Hollywood,CA,sphere,900,4 people saw 5 objects in the late afternoon forming a distinctive hovering pattern 20 to 30 thousand feet above Hollywood, CA. +2002-08-04,30.2669444,-97.7427778,Austin,TX,light,600,UFO spotted among group in Texas +2002-08-04,47.2152778,-123.0994444,Shelton,WA,unknown,2700,My husband and I watched lights in the sky for about 45 minutes. +2003-08-04,39.6133333,-105.0161111,Littleton,CO,disk,30,White disc flying over south Denver metro area +2003-08-04,31.4383333,-110.0972222,Hereford,AZ,other,1.5,I was stading on my front porch looking easterly when I first spotted a large closed horseshoe shaped object heading east from about on +2003-08-04,47.6063889,-122.3308333,Seattle (South Of, In Normandy Park),WA,cigar,180,We saw a cigar shaped object flying at the cloud level maintaing constant speed North to South +2003-08-04,40.6125,-74.1786111,Bloomfield,NY,other,7200,a trained mind can tell a ufo from other things in the sky +2003-08-04,38.0227778,-107.6708333,Ouray,CO,other,180,3 lights moving in perfect Triangle formation across the sky in Ouray County, Colorado on August 4, 2003 +2004-08-04,42.5836111,-83.2455556,Bloomfield Hills,MI,cone,120,Fast moving, low to treeline ufo +2004-08-04,44.7319444,-93.2175,Apple Valley,MN,sphere,180,approximately at 16:19 I was observing the sky (it was beautiful) and there were a few passenger planes passing, going in and out cloud +2004-08-04,40.1808333,-77.8661111,Shade Gap,PA,circle,900,Circular object red blue and white lights spinning below power lines and below trees. +2004-08-04,39.7294444,-104.8313889,Aurora,CO,light,1200,small faint star like object crosses the sky from the NW to SW then as the object got farther to the SE it faded and vanished.. +2004-08-04,42.4972222,-82.9372222,Roseville,MI,formation,300,Bright lights dancing in the night sky +2005-08-04,40.7652778,-73.8177778,Flushing,NY,light,109800,bright lights in NY sky +2005-08-04,21.3069444,-157.8583333,Honolulu,HI,flash,2,The Halogenbright flash appeared in the skies over Kaena point Oahu at about 0330 hrs. around 4 August 2005. +2005-08-04,37.775,-122.4183333,San Francisco,CA,disk,600,8/04/05 3:57 PM San Francisco, CA 4 round silver disks Sighting lasted 10 minutes +2005-08-04,38.1866667,-91.9469444,Vienna,MO,unknown,14400,MISSOURI INVESTIGATORS GROUP Report: I looked up in the sky and saw this bright shiny object. +2005-08-04,47.6063889,-122.3308333,Seattle,WA,light,90,Was it posible for a planet to be viewed by the naked eye to the west on this date? +2005-08-04,37.775,-122.4183333,San Francisco,CA,disk,600,8/4/05 3:57 PM Downtown San Francisco, CA 4 round silver objects sighting lasted 10 minutes +2005-08-04,29.7630556,-95.3630556,Houston (Metro, Southwest),TX,unknown,600,Riding home and saw a UFO in Houston Metro +2005-08-04,33.4502778,-82.1983333,Grovetown,GA,light,300,Strange disappearing lights that looked like aircraft at first. These lights have been reported in the area before. +2005-08-04,42.3583333,-71.0602778,Boston,MA,disk,90,Black Disc Floating over Charles River. +2005-08-04,30.6694444,-81.4627778,Fernandina Beach,FL,egg,90,Two rose-red ovals chase each other 5k feet overhead on straight course, little or no sound. +2006-08-04,44.9630556,-92.9647222,Oakdale,MN,cigar,1800,hovering oblong shaped craft appeard over sky, moving 40mph or slower, in a westerly direction +2006-08-04,45.0761111,-93.3325,Brooklyn Center,MN,disk,300,rocked back and forth while moving west +2006-08-04,37.0980556,-81.3411111,Burkes Garden,VA,triangle,1380,black slow moving triangle. +2006-08-04,36.7477778,-119.7713889,Fresno,CA,triangle,60,ufo triangle transparrent ! +2006-08-04,37.775,-122.4183333,San Francisco,CA,egg,120,Egg shaped object over San Francisco +2006-08-04,35.4675,-97.5161111,Oklahoma City,OK,cigar,30,Two UFOs spotted in Oklahoma City +2006-08-04,38.5280556,-81.6311111,Sissonville,WV,formation,3,Six globe-like lights in a semi-circular (stationary) formation. +2006-08-04,33.8302778,-116.5444444,Palm Springs,CA,cylinder,5,Fuzzy capsule does a zig zag +2006-08-04,40.0427778,-86.1275,Westfield,IN,light,2,Amber Orbs +2006-08-04,32.5338889,-96.6652778,Ferris,TX,light,10,Bright lights over Fewrris Texas that disapear in seconds +2006-08-04,37.2494444,-83.1933333,Hazard,KY,unknown,300,Two lights, due south, either formation or single object, no sound, observed this for 3-5 minutes. +2006-08-04,38.8105556,-90.6997222,O'fallon,MO,disk,1800,I know it is a UFO. It's crazy!!! +2006-08-05,45.0761111,-93.3325,Brooklyn Center,MN,disk,480,about 1:17 am over 252 in brooklyn center, evergreen park elementary, a brightly lit object hovered closer and closer to us. +2006-08-05,38.97,-89.6663889,New Douglas,IL,sphere,10,Bright blue-white transparent sphere in my house. +2007-08-04,29.7630556,-95.3630556,Houston,TX,unknown,1800,"shooting star" like, red white strobe lights, hovers..APPEARS to be in higher atmosphere.(or space) 60-80ꯠ FT , or more +2007-08-04,29.7630556,-95.3630556,Houston,TX,unknown,1800,this is an UPDATE... it is not a UFO... it is the star "ANTERES" several forum members on an aviation site helped me find out what i +2007-08-04,41.2375,-80.8186111,Warren,OH,light,7200,Light Flashes in the sky +2007-08-04,34.2255556,-77.945,Wilmington,NC,fireball,5,Fireball O'er Wilmington, NC. Unexplicable illuminations +2007-08-04,28.2916667,-81.4077778,Kissimmee,FL,light,5400,High altitude, long lasting contrails and two bright white lights over Central Florida +2007-08-04,30.4505556,-91.1544444,Baton Rouge,LA,fireball,420,Flaming Ball over Baton Rouge +2007-08-04,43.0125,-83.6875,Flint,MI,triangle,15,My dad's friend was driving me home from my hunter's saftey class one night. WE had just gone under the bridge at Belsay road and I tho +2007-08-04,44.7616667,-69.5619444,Canaan,ME,sphere,600,An fast flying ornage sphere, flaring brightly each time it made 90 and over 90 degree turns. Seen by 8 people. +2007-08-04,41.8463889,-71.8880556,Dayville,CT,oval,60,Orange glowing round or oval object moving very fast from west to east +2007-08-04,43.2136111,-77.9394444,Brockport,NY,light,30,Lighted object crosses entire sky in less than 30 Seconds +2007-08-04,43.1547222,-77.6158333,Rochester,NY,circle,240,Streaking bright UFO spotted by all of us around a campfire! Moving at a crazy speed.... ((NUFORC Note: ISS overflight. PD)) +2007-08-05,44.0522222,-123.0855556,Eugene,OR,unknown,300,I WAS WITH MY GRANDMOTHER AND WE WERE ON OUR WAY TO A FARM TO GET SOME PRODUCE WHEN SHE TOLD ME TO LOOK OUTSIDE OF THE CAR WINDOW BECAU +2008-08-04,28.5380556,-81.3794444,Orlando,FL,changing,21600,black survival knife shaped object seen over orlando florida +2008-08-04,28.5380556,-81.3794444,Orlando,FL,changing,21600,Transforming cigar shape with large protrusions that move and interlock +2008-08-04,42.1583333,-71.1452778,Canton,MA,cigar,10,Unidentified Flying object spotted in the sky in massachussetts +2008-08-04,44.9747222,-92.7566667,Hudson,WI,light,180,My wife and I saw a light very high in the sky that was not a plane. ((NUFORC Note: Daylight sighting of ISS?? PD)) +2008-08-04,41.85,-87.65,Chicago,IL,disk,60,Notched disc with slow wobbly movement at O'hare Terminal 3 observed at close range in daylight. +2008-08-04,42.3833333,-71.4166667,Sudbury,MA,sphere,900,Unidentified Bright cylindrical object in the sky +2008-08-04,41.3772222,-71.8341667,Pawcatuck,CT,light,180,bright light slow moving then shot off at high rate of speed +2008-08-04,44.1036111,-69.1094444,Rockland,ME,light,180,Maine slow moving light +2008-08-04,41.6005556,-93.6088889,Des Moines,IA,fireball,15,Red light over Des Moines, Iowa vewed from Mitchellville, Iowa. +2008-08-04,40.8472222,-73.8552778,Westchester County,NY,light,180,Reddish white light moving SSE across sky. ((NUFORC Note: Anonymous source does not indicate location of sighting. PD)) +2008-08-04,33.3941667,-104.5225,Roswell,NM,unknown,6,Unidentified Circle of Light accelerates and disappears at very high altitude +2008-08-04,42.8713889,-112.4447222,Pocatello,ID,light,300,09/04/08 at approximately 22:10 hours a bright light moved West to East, zigged and zagged then disappeared. ((NUFORC Note: ISS. PD)) +2008-08-04,30.2669444,-97.7427778,Austin,TX,light,5,light shot across sky horizontally from north to south at extremely high rate of speed. +2008-08-04,26.0625,-80.2333333,Davie,FL,formation,300,((HOAX??)) U.F.O's following each other to perfectly in line slowly. +2008-08-04,26.1272222,-80.2333333,Plantation,FL,formation,720,7 lights in the sky just West of Broward Blvd & Flamingo Rd +2008-08-04,26.0625,-80.2333333,Davie,FL,unknown,300,Lights over Davie Florida +2008-08-04,43.6136111,-116.2025,Boise,ID,other,600,((HOAX??)) Noted a star/spider shaped craft with yellow lights and blinking lights at ends. +2008-08-04,40.1033333,-75.2127778,Flourtown,PA,flash,2,Blue Light with Trail at a high rate of speed. +2009-08-04,33.7669444,-118.1883333,Long Beach,CA,unknown,5,Rainbow harbor UFOs +2009-08-04,35.0844444,-106.6505556,Albuquerque,NM,other,120,Blue/Green Glowing Figure 8 shape sighted in North East Albuquerque - followed by possible Military Aircraft +2009-08-04,41.9761111,-72.5922222,Enfield,CT,other,300,6 F-15's supersonic +2009-08-04,45.3247222,-118.0866667,La Grande,OR,sphere,60,Our family saw a slow moving bright red sphere above the neighborhood disappearing into the sky. +2009-08-04,33.3486111,-87.0141667,Mccalla,AL,changing,3600,August 4, 2009, I spotted in the night sky what first thought was a star. ((NUFORC Note: I suspect a "twinkling" star. PD)) +2009-08-04,38.8402778,-97.6111111,Salina,KS,light,3600,Glowing sphere moving north to south changing light intensity stopped and sat there. +2010-08-04,35.7719444,-78.6388889,Raleigh,NC,cone,60,Object over Raleigh +2010-08-04,32.2344444,-97.755,Glen Rose,TX,circle,600,low no noise craft like a ball of light went right over our heads +2010-08-04,27.9472222,-82.4586111,Tampa,FL,other,180,Floating Humanoid sighting in Tampa (West Chase) Florida area Aug 4, 2010. ((NUFORC Note: May not be a serious report. PD)) +2010-08-04,43.3380556,-89.0152778,Columbus,WI,light,1800,large bright stationary light, red/green/white flashing -7 witnesses form diff. locations. ((NUFORC Note: Venus in WSW sky?? PD)) +2010-08-04,28.0833333,-80.6083333,Melbourne,FL,light,1500,very bright light in west ((NUFORC Note: Venus in WSW sky?? PD)) +2010-08-04,39.3372222,-85.4836111,Greensburg,IN,triangle,30,Triangular Craft 3 white lights on each point 4-5 red lights in center various intensity SILENT the whole time +2010-08-04,40.2338889,-111.6577778,Provo,UT,disk,10,Hovering object during a thunder storm and rain. +2010-08-04,41.2586111,-95.9375,Omaha,NE,unknown,180,Fireball moving from north to south over downtown Omaha +2010-08-04,39.8122222,-85.2088889,Dublin,IN,sphere,300,Glowing orange sphere in Dublin Indiana +2011-08-04,46.8711111,-89.3138889,Ontonagon,MI,light,900,((HOAX??)) a really fast and bright star. ((NUFORC Note: One of several reports from the same source. PD)) +2011-08-04,30.5080556,-97.6786111,Round Rock,TX,circle,14400,Circle Object Round Rock Tx +2011-08-04,37.8791667,-79.2897222,Fairfield,VA,flash,2,My friend was driving me home and in the tree line right in front of us something pass over the road at a rapid rate of speed. +2011-08-04,35.6008333,-82.5541667,Asheville,NC,changing,120,Morphing Sphere UFO +2011-08-04,41.7408333,-87.8602778,Willow Springs,IL,other,180,I was walking my dog at 3:30 AM on 8-4-11 and I always look up at the stars. As I was looking at the stars, one of them started moving. +2011-08-04,31.6033333,-94.6552778,Nacogdoches,TX,triangle,6000,V Shaped - Dark Metallic - Recessed Lights - Lights made of Liquid - Possible 'Gain' of Time or Interference with watch 500 Lights On +2011-08-04,37.3394444,-121.8938889,San Jose,CA,other,4,Highly reflective object moving over homes in a populated area +2011-08-04,35.1894444,-114.0522222,Kingman,AZ,oval,1800,Possible UFO over kingman az +2011-08-04,35.1894444,-114.0522222,Kingman,AZ,oval,600,A UFO that was hovering outside the town of Kingman, Arizona for about 10 minutes total. ((NUFORC Note: Other reports. PD)) +2011-08-04,35.1894444,-114.0522222,Kingman,AZ,changing,900,30 lights heading toward Vegas over the Kingman area. +2011-08-04,38.3241667,-85.4725,Crestwood,KY,fireball,30,Orange/red balls of light near Louisville, Ky (no sound). +2011-08-04,47.7180556,-116.9505556,Post Falls,ID,light,25,Bright light on mountain top by cell tower- receded behind mountain after 25 sec +2011-08-04,45.4983333,-122.4302778,Gresham,OR,other,120,Two drone like objects chasing or observing a star like craft or object that was faster and more silent then any other craft or object +2011-08-04,45.8197222,-91.0116667,Winter,WI,rectangle,300,Flying fire rectangular object +2011-08-04,35.1894444,-114.0522222,Kingman,AZ,light,5400,Witnessed four bright lights that were in standing formation, changing in brightness. +2011-08-04,41.025,-80.7611111,Canfield,OH,fireball,300,Total of 7 Balls of light over Boardman area. +2012-08-04,47.0530556,-122.2930556,Graham,WA,fireball,1800,Flashing lights that are red and blue, floating type movement, with no noise. +2012-08-04,29.6861111,-90.5466667,Mathews,LA,light,600,SLOWLY HOVERING WHITE AND ORANGE ORBS -Somethings going on +2012-08-04,38.6272222,-90.1977778,St. Louis,MO,formation,2700,Circling lights in sky above St. Louis. ((NUFORC Note: Advertising lights?? PD)) +2012-08-04,39.3641667,-74.4233333,Atlantic City,NJ,flash,5,Hot pink laser flash from sky 1/4 mile wide toward ground hold for 5 seconds then reversed. +2012-08-04,42.9375,-70.8394444,Hampton,NH,sphere,180,We observed five or six round red-orange lights slowly traveling in a row across the sky in Hampton NH about 10pm on August 4, 2012. +2012-08-04,36.7625,-80.735,Hillsville,VA,circle,1800,Very fast moving objects that appeared to hover up and down in the sky +2012-08-04,30.3319444,-81.6558333,Jacksonville,FL,chevron,600,We were going to our friends house when we noticed the UFO and stopped to look at it just hovering. It was in broad daylight and all wo +2012-08-04,21.3155556,-158.0072222,Ewa Beach,HI,light,900,Random lights over Ewa Beach. +2012-08-04,47.3225,-122.3113889,Federal Way,WA,formation,60,We saw many bright orange lights traveling from north to south at a high rate of speed. I'm not sure if it was one huge object or many +2012-08-04,44.9430556,-123.0338889,Salem,OR,sphere,35,The object struck me as pretty because it was like a mirror with green lights. +2012-08-04,40.1983333,-83.0102778,Lewis Center,OH,light,300,I was walking my dogs and it dusk in Lewis Center Ohio not too far south of the Alum Creek Dam. I was with my husband who also saw the +2012-08-04,41.8786111,-71.3830556,Pawtucket,RI,cylinder,180,Bright Red/Orange Light flying across sky weeving in and Out, Slowing down and Speeding up. +2012-08-04,39.6469444,-105.0247222,Sheridan,CO,circle,1500,Two white dots, one larger pulsing light, seen in easter sky from Sheridan, CO, 9:00-9:25 PM MDT, 08/04/12, at least 9 witnesses +2012-08-04,40.2491667,-75.1344444,Warrington,PA,fireball,30,3 red fireballs/orbs witnessed in Warrington Bucks County PA +2012-08-04,34.7369444,-82.2544444,Simpsonville,SC,fireball,180,Reddish orange crafts (two) move slowly through the sky, one following the other. +2012-08-04,40.1738889,-80.2463889,Washington,PA,light,300,Red balls of light +2012-08-04,39.7172222,-74.9697222,Sicklerville,NJ,sphere,240,7 Red/White pulsating spheres moving in a line parallel to the ground apx. 4 minutes +2012-08-04,40.9113889,-73.7827778,New Rochelle,NY,fireball,1200,Bright Orange lights in the Sky above New Rochelle NY +2012-08-04,41.76,-70.0833333,Brewster,MA,fireball,30,Orange lights over cape cod bay and the Brewster flats. +2012-08-04,43.3277778,-78.1911111,Carlton,NY,formation,600,Several lights coming from the west over Lake Ontario going east. Groups followed in the back. Some dissapeared and most headed north t +2012-08-04,33.3061111,-111.8405556,Chandler,AZ,flash,5,Bright green light, Southeast sky over Chandler,AZ +2012-08-04,42.9813889,-70.9483333,Exeter,NH,light,600,Strange slow-moving red lights in the Northern sky at Exeter, NH, at 22:00 hours on August 4, 2012. +2012-08-04,40.4147222,-74.3658333,Old Bridge,NJ,light,60,Bright red light in Old Bridge. +2012-08-04,47.0380556,-122.8994444,Olympia,WA,cone,60,1 craft moved at moderate speed in sharp zig zag motions. Changed colors quickly. +2012-08-04,35.7330556,-81.3413889,Hickory,NC,triangle,120,Orange lights forming triangle, disappeared quickly. +2012-08-04,35.7330556,-81.3413889,Hickory,NC,formation,900,V formation of lights over Hickory, NC. (Wife's report.) +2012-08-04,35.7330556,-81.3413889,Hickory,NC,light,600,Orange/Red lights seen over Catawba/Burke County NC. ((Husband's report)) +2012-08-04,42.7852778,-88.405,East Troy,WI,triangle,300,Triangle red in color object moving at a high rate of speed moving west. +2012-08-04,40.8830556,-85.4975,Huntington,IN,light,180,Pink lighted unknown object in sky over Huntington +2012-08-04,39.6133333,-105.0161111,Littleton,CO,circle,2,White ball of light moved quickly across the sky. +2013-08-04,39.7588889,-84.1916667,Dayton,OH,fireball,300,Dozens of oranges fireball like objects flying silently, disappearing, then reappearing, they just kept coming over the horizon, flying +2013-08-04,40.9169444,-72.6625,Riverhead,NY,fireball,480,3 Giant Fireballs over Easter Long Island! UFO Sighting 09/04/2013 +2013-08-04,29.7352778,-94.9772222,Baytown,TX,other,30,Strange sparkling somewhere near Baytown, Texas +2013-08-04,39.9611111,-82.9988889,Columbus,OH,light,5,Ohio light sighting. +2013-08-04,39.7588889,-84.1916667,Dayton,OH,fireball,180,Shape changing fireball that hovered close to the ground an flew off with incredible speed +2013-08-04,45.0230556,-85.7597222,Leland,MI,flash,0.5,1/2 second, blinding flash of light +2013-08-04,41.6375,-70.9041667,Fairhaven,MA,teardrop,1200,I was glad to have a late night sighting and share it with my daughter. +2013-08-04,42.5030556,-83.1836111,Berkley,MI,egg,20,Orange UFO in Berkley, MI +2013-08-04,39.7463889,-84.2866667,Drexel,OH,diamond,300,White diamond glowing ufo gliding fast paced with absolutely no sound to it. +2013-08-04,39.1155556,-77.5638889,Leesburg,VA,circle,30,Red metallic football shaped object very high in the sky heading southbound at 16:40 over Northern Virginia. +2013-08-04,34.7016667,-86.3758333,Gurley,AL,circle,2,Bright green sphere with red tip behind it coming down at a 45 degree angle from north going south visible for only a few seconds. +2013-08-04,34.8555556,-86.7508333,Harvest,AL,fireball,4,Bright green multi-point fireball falling out of sky. +2013-08-04,46.1852778,-123.5847222,Knappa,OR,circle,600,Multiple lights in sky. +2013-08-04,36.8641667,-86.7102778,Auburn,KY,circle,30,Fast moving white sphere with greenish blue outer layer with a cone shaped trail. +2013-08-04,43.9961111,-70.0611111,Lisbon Falls,ME,oval,2700,5 white lights moving and hovering in lisbon falls maine. +2013-08-04,43.4261111,-73.7127778,Lake George,NY,circle,240,Reddish-Orange Sphere over Lake George Village NY +2013-08-04,39.6066667,-75.8336111,Elkton,MD,sphere,300,Several craft at different speeds cross sky at approx same high attitude. Shined high powered spot lite and laser at 1 and it stopp +2013-08-04,36.8252778,-119.7019444,Clovis,CA,light,30,Bright light that weaves from left to right and was a fast mover. +2013-08-04,40.5675,-89.6405556,Pekin,IL,light,7200,6 objects that apeared to be stars moving through the sky. no tail or trail. inteligent control +2013-08-04,40.5,-111.95,West Jordan,UT,light,600,Numerous whites light observed flying over West Jordan, Utah +2013-08-04,45.5236111,-122.675,Portland,OR,formation,5,V shape formation of 5 soft white lights +2013-08-04,40.015,-105.27,Boulder,CO,sphere,120,Erratically moving, reddish glowing sphere seen from West Boulder to the North East +2013-08-04,44.8463889,-69.3591667,Palmyra,ME,other,7200,Stars that would take off and move to other locations or vanish. +2013-08-04,34.4208333,-119.6972222,Santa Barbara,CA,light,420,Extremely white bright light object , high altitude with no sound. No blinking indicator lights or other colored lights. +2013-08-04,46.8722222,-113.9930556,Missoula,MT,light,3600,Appearing and disappearing lights above and below, and on mountain line. moving slow then very fast like a shooting star then not movi +2013-08-04,47.7180556,-116.9505556,Post Falls,ID,fireball,7200,Looking to the north east from post falls past rathdrum, Idaho a multiple coloref Jagged edged, even like zig zag edges moving up and n +1961-08-05,40.5327778,-79.9677778,Glenshaw,PA,disk,900,2 scientists, among 7 witnesses see disk hovering approximately 100 feet above neighbor's home then yard. +1961-08-05,40.4405556,-79.9961111,Pittsburgh,PA,sphere,600,Orange yellow sphere size of small house hovers above trees 50 feet away from young girl on country lane +1969-08-05,41.3908333,-72.86,North Haven,CT,disk,1200,UFO explosion and sighting +1973-08-05,39.6330556,-74.9663889,Victory Lakes,NJ,oval,120,Watched a large, silent,bright, whitish, oval object hovering, moving slowly left to right and then so fast upward we lost sight of it. +1975-08-05,37.5536111,-77.4605556,Richmond,VA,oval,120,I saw a big UFO ship, August 5, 1975, four or so city blocks high ; it seemed to create clouds, and I saw the mechanical functions. +1975-08-05,37.5536111,-77.4605556,Richmond,VA,egg,300,On August 5, 1975, at 6:31 P.M., while I was riding a bicycle, I stopped, along with my friend to watch a beautiful UFO. It was undergo +1978-08-05,55.3422222,-131.6461111,Ketchikan,AK,rectangle,180,Aircraft carrier shaped UFO +1980-08-05,33.0580556,-112.0469444,Maricopa,AZ,other,1200,August 1980 HUGE, silent, boomerang craft in rural desert area south of Phoenix. +1980-08-05,62.1091667,-145.5463889,Glennallen,AK,rectangle,1500,Unidentified Bright Light Sitting On Road +1982-08-05,43.2127778,-75.4561111,Rome,NY,cigar,180,I SEEN A CIGAR SHAPE CRAFT PASS OVER VERY SLOW THE ONLY NOISE IT MADE WAS A WIND SOUND BUT THERE WAS NO WIND AT THAT TIME . I JUST WATC +1988-08-05,45.2619444,-83.6988889,Posen,MI,fireball,1380,Warm summer clear night. My grandmother saw them first and asked what are thoughs Lights in the sky? I said what lights there is no lig +1990-08-05,39.4022222,-107.2105556,Carbondale,CO,other,120,Playing baseball I looked in the sky and saw a huge silverish object and it was too big to tell a definate shape +1992-08-05,39.12,-90.3283333,Jerseyville,IL,light,600,my brother and i chased after bright orange light in jerseyville,Il summer 0f 1992 +1992-08-05,44.3883333,-73.8158333,Wilmington,NY,triangle,10,Mystery lights flew over my home and car within 60 feet of the ground. +1995-08-05,37.7477778,-84.2947222,Richmond,KY,other,2100,While on the back deck watching for shooting stars an object shoot across the sky and stopped suddenly in mid air, a second object appe +1995-08-05,32.8383333,-116.9730556,Santee,CA,light,15,The object was in the form of a light, silently traveling from north to south, dissappearing from view without acceleration. +1995-08-05,45.6966667,-90.4002778,Phillips,WI,unknown,180,Field and woods light up by a red light that has no source. Light seems to scan area for about a minute. Object turns lights on and lan +1997-08-05,36.9741667,-122.0297222,Santa Cruz,CA,diamond,2700,My roomate was taking a picture of me on a mountain. When he snapped a picture of the craft also. I was electrified or something and my +1998-08-05,38.0466667,-97.3447222,Newton,KS,formation,1800,all 3 started to move forwored very slowly +1998-08-05,44.7391667,-67.3905556,East Machias,ME,light,60,Light in sky got brighter and truck almost stalled out light flickered out. +1998-08-05,39.0638889,-108.55,Grand Junction (West Of),CO,light,1800,Saw three objects which flashed red, blue and white lights. Lights appeared to be stationary. Binoculars revealed three distinct lights +1999-08-05,47.6588889,-117.425,Spokane,WA,triangle,600,Triangular shaped UFO silently flies over Spokane, Wa. August 5th, 1999 +1999-08-05,43.6122222,-116.3905556,Meridian,ID,light,30,A white light, typical of visible orbiting satellites, moved erratically on a westerly course in the pre-dawn sky. +1999-08-05,44.5069444,-92.9052778,Cannon Falls,MN,unknown,1800,I'm not sure what I saw, could be satelites, maybe? +1999-08-05,30.3319444,-81.6558333,Jacksonville,FL,changing,30,I was lifeguarding at a local pool when i looked up to the sky because it was a pretty sunset when i saw somthing move from behind a la +1999-08-05,44.4583333,-93.1613889,Northfield,MN,egg,600,they buzzed over hyw.35 and stoped over my appartment building and then they rose up into the clouds and vanished. +1999-08-05,43.9786111,-90.5038889,Tomah,WI,other,20,The object was a distorted mass of some sort that moved in a northwest direction across the sky,not real fast but not slow either. +2000-08-05,40.9252778,-74.2769444,Wayne,NJ,sphere,900,((NUFORC Note: Witness cryptically reports witnessing a sphere.)) +2000-08-05,33.4483333,-112.0733333,Phoenix,AZ,circle,15,A round black object that flew over N. Phoenix at 8:35 p.m. 8/5/2000 +2000-08-05,34.4838889,-114.3216667,Lake Havasu City,AZ,cone,900,red cone shape with orange base low flying no noise flight east to west the west to north over Lake Havasu AZ +2000-08-05,48.7597222,-122.4869444,Bellingham,WA,triangle,20,We saw three lines of lights in a triangular shape. It seemed that the lights kind of flickered back and forth along the lines. It mov +2000-08-05,34.0922222,-117.4341667,Fontana,CA,circle,60,Dark round object flying low having no lights and making no sounds. +2000-08-05,43.2080556,-71.5380556,Concord (Se),NH,light,5,My wife was outside having a cigarette when she looked up and saw an object and then it just shot off to the South west. She said it wa +2000-08-05,48.9244444,-122.0758333,Maple Falls,WA,formation,30,Triangular formation (3 light points) sited traveling from north to south on a clear evening - east of Bellingham, WA. . +2001-08-05,42.0333333,-88.0833333,Schaumburg,IL,light,600,UFO's seen over O'Hare International Airport. at 1:30 AM 8/5/01 +2001-08-05,32.9627778,-117.035,Poway,CA,diamond,120,Dull silver craft with a group of multicolored lights in the center, spinning across the sky, lights at *wing* tips. +2001-08-05,41.85,-87.65,Chicago,IL,other,120,square bright object surrounded by faint red lights seen over chicago +2001-08-05,40.7141667,-74.0063889,New York City,NY,light,600,I saw a light under our plane but above the city below us. +2001-08-05,41.85,-87.65,Chicago,IL,diamond,120,Diamond shaped object, orange in color with small points of light surrounding the main body +2001-08-05,41.85,-87.65,Chicago,IL,sphere,300,A pinkish brown sphere with sporatic lights crosses the sky at a medium steady pace. +2001-08-05,33.6411111,-117.9177778,Costa Mesa,CA,light,30,Two flying objects that were acting very strangely. +2001-08-05,47.9791667,-122.2008333,Everett,WA,formation,180,My husbund and I was installing our metal roofing then......... +2001-08-05,34.1066667,-117.8058333,San Dimas,CA,cylinder,240,Cylinder shaped object at high altitude +2001-08-05,33.6411111,-117.9177778,Costa Mesa,CA,light,20,I saw two lights cross the sky at a high rate of speed from the south to south west and disa peer from sight. it was a clear sky. +2001-08-05,34.0122222,-117.6880556,Chino,CA,cigar,60,One Green blinking object; two red objects fly in southwest sky before vanishing. +2001-08-05,40.4841667,-88.9936111,Bloomington,IL,light,1800,Light in sky, strange non repetitive movements, high altitude +2002-08-05,47.6472222,-90.6747222,Lutsen,MN,unknown,120,Strobing Satellites ? +2002-08-05,31.1502778,-81.3697222,St. Simons Island,GA,circle,240,On the beach at sunrise, my partner and I witnessed a silver-colored orb flying above the clouds. It was shaped as a circle, 1/2 cm ro +2002-08-05,35.2269444,-80.8433333,Charlotte,NC,sphere,5,Bright orange/yellow light appears. +2002-08-05,41.6661111,-81.3397222,Mentor,OH,cylinder,60,Cylinder like silver object moving in west to east direction over NE OHIO +2003-08-05,42.1947222,-122.7083333,Ashland,OR,oval,5,3 oval electric blue objects +2003-08-05,40.8830556,-85.4975,Huntington,IN,light,300,glowing sphere shaped object +2003-08-05,48.1958333,-114.3119444,Kalispell,MT,light,3600,Several nights of sightings +2004-08-05,39.1619444,-84.4569444,Cincinnati,OH,circle,180,Wish I had written down the exact day and time but i didn't want to report it.I worked at an office complex in cincinnati ohio as a +2004-08-05,38.9716667,-95.235,Lawrence,KS,chevron,120,Isosceles triangle shaped craft, seemingly hovering, and then disappearing. +2004-08-05,45.8527778,-87.0216667,Gladstone,MI,triangle,10,round fuzzy light finally seen through binoculars +2004-08-05,39.3280556,-120.1822222,Truckee,CA,egg,1800,Large,white, shimmering, orbital object seen skimming peaks on Donner summit, CA. early morning 08/05/04 +2004-08-05,35.8455556,-86.3902778,Murfreesboro,TN,cylinder,120,Two cylindrical shaped objects,whitish or silvery gray colored, moving next to each other on or around August 5th񫺔 around 5:30 PM. +2004-08-05,39.535,-119.7516667,Sparks,NV,disk,7200,Objects in the sky give terrific light show!!! (Venus??) +2004-08-05,44.0522222,-123.0855556,Eugene,OR,chevron,4,Chevron shaped craft over Eugene dunno what it was +2004-08-05,39.5297222,-119.8127778,Reno,NV,formation,180,Possibly huge craft, two red lights, flying over Reno. +2004-08-05,39.535,-119.7516667,Sparks,NV,other,7200,1small steady light splitting into 6, with circulating lights on bottom. +2005-08-05,36.0625,-94.1572222,Fayetteville,AR,teardrop,7200,seven craft of three different, unique shapes, observed over north fayetteville neighborhood. +2005-08-05,42.96,-78.4058333,Corfu,NY,light,180,NOT IN OUR ATMOSPHERE!!! 90-DEGREE TURNS!! FLASHING WITH INCREASED SPEED!! +2005-08-05,33.78,-118.2616667,Wilmington,CA,circle,540,orange glowing object over Carson,CA +2005-08-05,47.6063889,-122.3308333,Seattle,WA,circle,20,I saw a silver ball in the clear blue skies above the Blue Angles flying routine in Seattle on 8/5/2005 at Seafair. +2005-08-05,32.3211111,-89.1633333,Newton,MS,other,120,Sphere turns into jet +2005-08-05,27.7519444,-98.0694444,Alice,TX,cylinder,3,possible cruise missle sighting +2005-08-05,37.9736111,-122.53,San Rafael (North Bay),CA,rectangle,900,Mysterious aircraft in the bay area. +2005-08-05,43.5238889,-74.9447222,Atwell,NY,cigar,1800,Five friends camping see four UFOs in one evening, and one the next night. +2005-08-05,35.9911111,-106.08,Espanola,NM,circle,1200,INTENSELY BRIGHT LIGHT APPEAR AND DISAPPEAR, HOVER AND MOVE FROM ONE AREA TO ANOTHER. +2005-08-05,41.85,-87.65,Chicago,IL,cigar,300,3 cigar shaped lights +2005-08-05,41.85,-87.65,Chicago,IL,fireball,120,they started out like comets from the sky converting into circle of lights moving side to side +2005-08-05,45.4533333,-121.1294444,Dufur,OR,flash,900,Faint Yellow darting light zig zagged hight in night sky above Mt Hood Oregon +2005-08-05,41.2586111,-95.9375,Omaha,NE,light,240,Apparent intercept of unidentifed 'satellite' by second object. +2005-08-05,47.6105556,-122.1994444,Bellevue,WA,unknown,60,appeared as a small light moving very fast and very high in the sky south to north +2006-08-05,44.2811111,-69.0091667,Lincolnville,ME,light,120,3 lights formed triangle in night sky +2006-08-05,27.8002778,-97.3961111,Corpus Christi,TX,disk,7,A white ball with gray belt going aroung the center in Corpus christi texas in east sky +2006-08-05,42.4775,-83.0277778,Warren,MI,fireball,120,Large fireball, 4:45 a.m. , 8/5/06 +2006-08-05,47.9130556,-122.0969444,Snohomish,WA,circle,2700,two witness large brilliant ring of lights over Snohomish Washington +2006-08-05,30.3319444,-81.6558333,Jacksonville,FL,unknown,10,IN A CLOUDLESS SKY BEFORE SUNRISE I BRIEFLY OBSERVED A VERY HIGH, WHITE STAR SHAPED OBJECT, MOVING EAST TO WEST. +2006-08-05,38.2541667,-85.7594444,Louisville,KY,fireball,841,baseball size bright blue flying glow, approached me made a noise and left quickly (KY) +2006-08-05,42.4927778,-92.3427778,Waterloo,IA,cigar,270,White Cigar Shaped Craft seen over Waterloo, Iowa +2006-08-05,42.4927778,-92.3427778,Waterloo,IA,cigar,600,Bright White/Sliver Cigar Shaped Craft sighted Iowa +2006-08-05,34.2011111,-118.5355556,Reseda,CA,rectangle,3,Rectangle, no wings, no sound, no lights +2006-08-05,40.5186111,-78.395,Altoona,PA,light,60,A bright light hovered in the sky and then disappeared quickly +2006-08-05,26.4611111,-80.0730556,Delray Beach,FL,disk,120,Daytime Siteing of three white discs over Delray Beach, Florida +2006-08-05,32.5005556,-94.7402778,Longview,TX,triangle,1200,Light formation seen in large rain cloud. +2006-08-05,32.5005556,-94.7402778,Longview,TX,triangle,1200,Rain "Cloud" in Northeast Texas +2007-08-05,36.175,-115.1363889,Las Vegas,NV,other,15,Looked like Haiti UFOs seen the same weekend. +2007-08-05,34.0522222,-118.2427778,Los Angeles,CA,fireball,9,We saw 2 firey orange orbs, like 2 small suns near each other, west of the Los Angeles skyline for 5-9 seconds at 1:22 in the afternoon +2007-08-05,39.7391667,-104.9841667,Denver,CO,circle,120,Circular object flying up and into the clouds before a storm. +2007-08-05,33.9163889,-78.1613889,Oak Island,NC,other,1800,3 green lights in horizontal formation converged into 1 bright orange light, 3 oranage lights reappeared in triangular formation +2007-08-05,37.0208333,-93.2058333,Ozark,MO,light,120,reddish light that moved slowly across night sky making turns +2008-08-05,34.0211111,-118.3955556,Culver City,CA,chevron,15,I was taking the dog out and as I got to the door I looked up and saw a very large craft with a light pattern on the bottom which I hav +2008-08-05,26.0108333,-80.1497222,Hollywood,FL,other,180,At 5:00 am my wife went to the bathroom, we live in a HIGH RISE on the Ocean. She woke me up and we looked out the window and saw a +2008-08-05,38.8986111,-92.1233333,Millersburg,MO,triangle,120,MISSOURI INVESTIGATORS GROUP Report: The 1st time I spotted it, it was flying low, triangle shape with a light on each corner… +2008-08-05,37.3341667,-79.5233333,Bedford,VA,triangle,15,Silent, slow moving triangle shaped craft. +2008-08-05,39.9777778,-105.1313889,Louisville,CO,other,20,I was at my friend's house playing in her back yard when I saw a strange metallic object painted red in most areas. The shape was un +2008-08-05,39.8005556,-76.9833333,Hanover,PA,circle,1800,One circular object that descended from sky to the side of a group of trees, ascended at 5 – 10 miles per hour in a straight path. It +2008-08-05,32.2216667,-110.9258333,Tucson,AZ,disk,382,UFOs Caught on Videotape in Tucson Arizona August 5th 2008 +2008-08-05,45.1647222,-69.3569444,Sangerville,ME,circle,30,yellow/white light seen from about three miles away +2008-08-05,47.6588889,-117.425,Spokane,WA,diamond,20,Steel fish-looking ufo swimming through our atmosphere +2008-08-05,39.9611111,-82.9988889,Columbus,OH,light,6,bright white orb moves slowly, dims, and vanishes followed by all night power outage +2008-08-05,32.7025,-103.1355556,Hobbs,NM,teardrop,30,Large, pear shaped (upside down teardrop shape) object glowing orange, then drifted away. +2008-08-05,33.4483333,-112.0733333,Phoenix,AZ,triangle,120,Black triangle, 3 lights at each point, thin in shape, hanging point down, turned clockwise, lights stretched and sped away +2008-08-05,33.4483333,-112.0733333,Phoenix,AZ,unknown,120,Red and Greenish/White lights making a zigzag motion, then disappearing over the horizon +2009-08-05,45.5236111,-122.675,Portland,OR,triangle,60,Triangle shaped object flying across Portland Oregon at 12:15 pm Wednesday Aug 5, 2009 +2009-08-05,33.4708333,-81.975,Augusta,GA,rectangle,30,Silent black rectangle flying over highway Augusta, GA +2009-08-05,36.5697222,-115.6697222,Indian Springs,NV,cylinder,600,UFO Sighting Indian Springs NV, off Highway US 95 +2009-08-05,33.9163889,-118.3516667,Hawthorne,CA,other,14400,light formations, objects that go from slow moving to fireball like. strange lights moving in circular motion +2009-08-05,34.1361111,-117.8644444,Glendora,CA,disk,480,Silver Disk above Glendora, Ca. +2009-08-05,46.9422222,-122.6047222,Yelm,WA,triangle,35,silver triangle shape sighting in Yelm WA +2009-08-05,36.9741667,-122.0297222,Santa Cruz,CA,light,600,There were big, bright lights flying in two formations. +2009-08-05,27.9455556,-82.2580556,Valrico,FL,cigar,45,Cigar shaped object with no wings following Commercial Jet airliner. +2009-08-05,30.3958333,-86.2288889,Santa Rosa Beach,FL,light,180,Orange lights in a line appearing and disappearing. +2009-08-05,33.3941667,-104.5225,Roswell,NM,light,35,Large orange lights north of Roswell, NM +2009-08-05,33.8422222,-103.7713889,Kenna,NM,formation,300,Lights flashing in sky. +2009-08-05,43.4194444,-83.9508333,Saginaw,MI,fireball,180,Orange glowing fire ball +2009-08-05,36.8252778,-119.7019444,Clovis,CA,circle,600,circular object with twinkling lights +2009-08-05,42.09,-78.4944444,Allegany (Near),NY,disk,1200,U.F.O. sighting over the Allegany river in New York. +2009-08-05,45.5236111,-122.675,Portland,OR,triangle,40,UFO in Portland Oregon Aug 5, 2009 +2010-08-05,34.3597222,-98.3075,Walters,OK,other,30,Bright yellow, flowy UFO sighted in Walters, Oklahoma by working mother. +2010-08-05,33.7825,-117.2277778,Perris,CA,fireball,1200,Large object with a variety of very birght colors in the sky moved quite rapidly......for no appearent reason? +2010-08-05,36.0525,-95.7905556,Broken Arrow,OK,light,300,Bright white light becomes two bright lights over Broken Arrow Oklahoma +2010-08-05,38.935,-74.9063889,Cape May,NJ,disk,2,Black Craft broad daylight at the beach, captured in photo, no one saw it at the time. +2010-08-05,37.3394444,-121.8938889,San Jose,CA,light,300,Small white dot high in sky similar to 7/2009 case over San Jose. +2010-08-05,37.3394444,-121.8938889,San Jose,CA,other,5,White dot in sky seen streaking twice in opposite directions over East San Jose foothills. +2010-08-05,48.7597222,-122.4869444,Bellingham,WA,light,360,Yellow orange focused light stationary over Lake accelerates and within 15 seconds disappears into night sky. +2010-08-05,25.0861111,-80.4475,Key Largo,FL,other,180,moving from south to north-east across the sky in less than 3 minutes;higher and faster than a plane. +2010-08-05,46.3830556,-120.73,White Swan,WA,light,1800,Silver Blue Light Observed doing spirals, zigzags and other movements in sky. +2010-08-05,29.4238889,-98.4933333,San Antonio,TX,sphere,1800,Sphere-like object with flashing lights seen in western sky over San Antonio, TX. ((NUFORC Note: Sighting of Venus, we suspect. PD)) +2010-08-05,29.4238889,-98.4933333,San Antonio,TX,sphere,1800,Sphere-like UFO sighted over San Antonio, Texas August 5-6, 2010 +2011-08-05,25.7902778,-80.1302778,Miami Beach,FL,light,18000,Out my bedroom window and out hovering in the sky over the ocean a bright small light shined for 5 hrs. ((NUFORC Note: Star? PD)) +2011-08-05,25.8572222,-80.2783333,Hialeah,FL,fireball,3,Fireball UFO zooms away at warp speed making no sound. +2011-08-05,29.6194444,-95.6347222,Sugar Land,TX,rectangle,12,Slow rectangular bright iridescent object in Texas sky. +2011-08-05,42.4605556,-83.6516667,South Lyon,MI,oval,30,Bright reflection of sun in oval object. Disappeared +2011-08-05,41.14,-104.8197222,Cheyenne,WY,circle,1200,8/5/11 I observed five round brightly colored objects moving sw to ne quietly at great speed. +2011-08-05,38.2544444,-104.6086111,Pueblo,CO,triangle,4,Creme white triangular craft and streak behind it. +2011-08-05,41.6458333,-88.6216667,Sandwich,IL,fireball,240,12-14 Red-Orange orbs all following each other. +2011-08-05,44.5386111,-87.7038889,Luxemburg,WI,triangle,120,Strange triangular craft over Highway 57 outside of Luxemburg, WI glowing orange and pulsating +2011-08-05,41.4827778,-87.3327778,Merrillville,IN,fireball,120,Fireball in Merrillville IN +2011-08-05,40.1316667,-75.46,Oaks,PA,triangle,120,UFO Sighting on Route 422 near Oaks +2011-08-05,33.7669444,-118.1883333,Long Beach,CA,light,360,Bright green light over north Long Beach CA. +2011-08-05,45.8197222,-91.0116667,Winter,WI,fireball,120,Firey colored spherical moving object with unheard of propalsion +2011-08-05,44.5727778,-116.675,Cambridge,ID,triangle,120,Triangle shaped figure flying low making no noise and flashing red and blue lights very fast +2012-08-05,35.7211111,-77.9158333,Wilson,NC,other,7200,Bright lights look like a star, moves fast and stops, circles a standard craft, they circle the area and return to larger craft several +2012-08-05,33.4483333,-112.0733333,Phoenix,AZ,other,10800,Large bright star-like objects that seem to seek out a property and change position with a person's movement. +2012-08-05,41.6005556,-93.6088889,Des Moines,IA,light,12600,Several moving lights over des moines, IA, blended in sky as if they were stars til they started moving.((NUFORC Note: Planets?? PD)) +2012-08-05,43.3033333,-91.7855556,Decorah,IA,triangle,120,Super large boomerang solid lighted object moving very fast. +2012-08-05,26.3583333,-80.0833333,Boca Raton,FL,unknown,3600,The past week I've noticed a stationary white light with red flashing lights to the west. Every night the same light. ((Star??)) +2012-08-05,30.4211111,-87.2169444,Pensacola,FL,light,300,High altitude, very slow moving white light travels in half-circle then merges with another stationary white light that disappears. +2012-08-05,39.6836111,-75.75,Newark,DE,circle,5,Two silvery-white circular shaped craft appeared to use a cloaking technology to reappear and disappear. +2012-08-05,33.2441667,-86.8163889,Alabaster,AL,cigar,5,August 5 2012 Alabama chemtrails, punch hole clouds, and ufos. +2012-08-05,34.8986111,-117.0219444,Barstow (Toward; South On Hwy 40),CA,sphere,120,Orange Spheres HWY 40 Needles, Ca - Bartsow. +2012-08-05,35.3858333,-94.3983333,Fort Smith,AR,sphere,60,Bright white round light ball, no Nav lights, no sound from the craft and not a meteor too clow for that. +2012-08-05,47.6063889,-122.3308333,Seattle,WA,circle,1800,They appeared 1 at a time, starting below the big dipper, from the west, flying just beyond the North star before they faded and disapp +2012-08-05,45.1563889,-87.1680556,Ephraim,WI,fireball,300,Upon leaving our house this evening, my husband and I watched as 4-5 reddish orange bright lights moved across the sky, in a line, o +2012-08-05,44.7433333,-92.8522222,Hastings,MN,light,900,Bright, fast moving, blinking lights up in the sky over Hastings, Minnesota on August 5, 2012 at 10:20 pm. +2012-08-05,29.7630556,-95.3630556,Houston,TX,fireball,600,About 9 red glowing objects going up into night sky formed lines, then triangles, then disappeared. +2012-08-05,46.0930556,-95.8172222,Ashby,MN,light,300,A star like object moves across the sky at super speed... +2012-08-05,44.0216667,-92.4697222,Rochester,MN,light,600,A star like object moves across the sky at super speed. +2012-08-05,44.98,-93.2636111,Minneapolis,MN,fireball,600,6 orange fireballs flying quickly above Minneapolis. +2013-08-05,29.2105556,-81.0230556,Daytona Beach,FL,circle,60,My friend and I were sitting on the balcony of a hotel on the water, on Daytona Beach. Suddenly and orange ball appeared over the water +2013-08-05,40.1302778,-75.5152778,Phoenixville,PA,unknown,60,Bright light in the sky over Phoenixville +2013-08-05,32.7733333,-92.4055556,Farmerville,LA,light,7200,A bright round light appeared from nowhere, swept and slowly moved on a short distance then stopped. the light dimmed and after a short +2013-08-05,41.8525,-72.6441667,Windsor,CT,unknown,60,Red flashing light in sky above Windsor Connecticut +2013-08-05,40.4180556,-79.6258333,Export,PA,light,120,Bright white light heading South East across the sky near Export, Pa. +2013-08-05,39.7588889,-84.1916667,Dayton,OH,sphere,480,I was driving to work for to differents days Monday 8/5/13 - 8/7/13 days when I see this sphere with orange color without any move I m +2013-08-05,33.9163889,-78.1613889,Oak Island,NC,circle,300,Orange round lights seen north of the beach on Oak Island. Made a triangle formation once, then went in a straight horizantal line. Mov +2013-08-05,38.4219444,-77.4086111,Stafford,VA,oval,120,Two purple ovals with a white light in between that pulsed with a purple haze around it then it diapered into thin air, a bright pink. +2013-08-05,42.4641667,-92.6280556,Dike,IA,light,4,Blue lights of large size moving across the sky. larger than any meteorite that I've ever seen and very clearly blue in color moving fr +2013-08-05,45.1505556,-94.6827778,Grove City,MN,oval,5,Oval Shaped Object dissapears in split second. +2013-08-05,44.6497222,-93.2425,Lakeville,MN,cigar,7,Neon Blue Shape with Soft White Center Shooting Across the Sky and Disappearing +2013-08-05,26.5216667,-82.1894444,Captiva,FL,fireball,1200,7th SIGHTING OF AMBER-ORANGE UFOS (FIREBALLS) +2013-08-05,44.5402778,-123.3663889,Philomath,OR,light,360,08/05/13 21:59 Low flying, very large white light, heading north, viewed for 6 minutes. +2013-08-05,41.8258333,-103.66,Gering,NE,other,2,I was sitting on my friends porch when I noticed a few small bright flashes of light, about the size of stars, out of the corner of my +2013-08-05,47.7505556,-90.3341667,Grand Marais,MN,unknown,30,Early August 2013 Near Eagle Mountain of the Boundary Waters Canoe Area of Northern Minnesota Around 10 p.m. CDT At a camp site, I l +2013-08-05,41.6561111,-70.4166667,Marstons Mills,MA,circle,420,Bright sphere seen two nights in a row moving across the sky! +2013-08-05,30.8325,-83.2786111,Valdosta,GA,circle,600,Happens every night, round objects that move around. Just about the same area every night as well. +2013-08-05,47.7558333,-122.3402778,Shoreline,WA,oval,60,Bright white light, brighter than any stars out this evening that slowly traveled in a not so straight line out of sight +2013-08-05,37.4947222,-120.8455556,Turlock,CA,light,60,Orbs of light across the sky +2013-08-05,32.7733333,-92.4055556,Farmerville,LA,flash,120,A bright circular flash of light appeared. The sky was clear. It was much like a light bulb that blows out when you turn on the switch. +2013-08-05,46.8083333,-100.7833333,Bismarck,ND,light,180,Light moving from SSW to NNE over Bismarck +1955-08-06,39.9866667,-75.4013889,Newtown Square,PA,circle,4,A round object going from bottom to top of moon in 4 seconds +1965-08-06,29.4238889,-98.4933333,San Antonio (Ranch Outside Of),TX,egg,900,We spotted the glowing object slowly hovering about 15 feet above the densely planted mesquite, oak, and huisache trees. +1966-08-06,38.4405556,-122.7133333,Santa Rosa,CA,disk,2700,AUGUST 6, 1966 BETW EEN 12;30A.M.+ 1.45 A.M. MYSELF AND TO FRIENDS MY PARENTS SISTOR ALL WHERE PRESANT ONE SAUCER ABOUT A QUATER MILE A +1973-08-06,39.7391667,-104.9841667,Denver,CO,triangle,300,Very large, boomerang shaped object, silently moving slowly at treetop height East to West with no wind disturbance. +1986-08-06,38.0608333,-97.9294444,Hutchinson,KS,triangle,2700,was taking a walk late at night and looked up in the sky and seen the strangest thing +1992-08-06,46.2272222,-116.0283333,Kamiah,ID,unknown,600,March 21, 2005 NUFOR Attn: Peter Davenport I talked with you on the telephone and made a drawing rendition of what I and my wife wit +1995-08-06,39.5297222,-119.8127778,Reno,NV,formation,60,dull orange group of craft maneuvering and rotating arround each other in the sky over reno +1997-08-06,37.6922222,-97.3372222,Wichita,KS,light,30,Lights hanging in sky northeast of home +1997-08-06,33.9427778,-113.1733333,Aguila,AZ,triangle,900,Large triange craft composed of 3 large white globes glided low over hiway in front of truck. It searched the ground with beams of lig +1998-08-06,44.6366667,-123.1047222,Albany,OR,cone,45,we saw 2 objects in the sky over albany or that stood still then took off in the sky we were driving north on I5 just inside city limit +1999-08-06,40.2969444,-111.6938889,Orem,UT,triangle,900,Noticed what first appeared to be an airplane in the sky, but never did change position, eventually it seemed to move farther away, or +1999-08-06,44.6613889,-84.7147222,Grayling,MI,disk,2700,1 object seen with naked eye - 5 others seen using night vision goggles. +1999-08-06,40.5308333,-112.2975,Tooele,UT,light,300,saw a light moving in random directions..... +1999-08-06,33.6188889,-117.9280556,Newport Beach,CA,diamond,120,A large shinning diamond flying slowly or hovering. +1999-08-06,33.8847222,-118.41,Manhattan Beach,CA,other,22,BROWNISH,GREY NO LIGHTS..LIKE A BIG BIRD HIGH BUT NO WINGS FLAPPING APPROX 1000FT UP CROSSING TOWARDS LAX, SPEED FASTER THAN ANY JET, N +2000-08-06,36.175,-115.1363889,Las Vegas,NV,formation,240,6 red and white strobing lights travling in the eastern sky above Las Vegas +2000-08-06,45.5236111,-122.675,Portland,OR,other,600,Yellow slow flight pulsing bag object above 35000' +2000-08-06,45.5236111,-122.675,Portland,OR,light,180,bright light moving South to North, then turns due East over Portland, Or. Above airliner traffic, and faster. +2000-08-06,36.7477778,-119.7713889,Fresno,CA,light,600,Two nights in a row. We were not scared, even though we knew they could not possibly be planes. +2000-08-06,43.9827778,-124.0986111,Florence,OR,light,7200,Sighting of two brilliant orbs of light over ocean in Florence Oregon, August 2000 +2001-08-06,43.6480556,-93.3680556,Albert Lea,MN,light,300,Light moving very slowly to the west, then at a 45 degree angle, shot out of sight. +2001-08-06,34.1808333,-118.3080556,Burbank,CA,fireball,1,Greenish Fireball seen over south Burbank CA. 1 second duration. +2001-08-06,34.0522222,-118.2427778,Los Angeles,CA,light,60,Los Angeles CA, 08/06/01: extremely bright bluish-white light moves across sky at remarkable speed. +2001-08-06,44.9111111,-116.0977778,Mccall,ID,unknown,180,Flashing lights moving from West to East +2001-08-06,47.8291667,-118.4138889,Lincoln,WA,circle,90,Bright object changes color, velocity, altitude and trajectory in East Washington night sky. +2001-08-06,45.5236111,-122.675,Portland,OR,chevron,1800,bright as a red flare , chevron shaped, silent, 1000 ft over my house and stayed for 30 min..caught on video tape. +2001-08-06,45.5236111,-122.675,Portland,OR,sphere,900,slow moving bright red shere under low cloud deck. +2001-08-06,45.1475,-122.5758333,Molalla,OR,chevron,10,3 Triangular craft in a formation south to north, emitting a whirring sound and displaying 4 white lights each. +2002-08-06,38.9430556,-76.8925,Landover Hills,MD,unknown,1800,We were awakened by this loud sound around our home and saw in the sky through some trees this large flying object hovering over our ar +2002-08-06,44.765,-69.7197222,Skowhegan,ME,teardrop,1260,Craft was teardrop shaped and was completely silent +2002-08-06,29.7630556,-95.3630556,Houston,TX,circle,1200,Saw two black objects hovering over Houston +2002-08-06,39.2902778,-76.6125,Baltimore,MD,triangle,384,The 3 connected triangles in the Sky. +2002-08-06,40.8813889,-74.1136111,Garfield,NJ,light,1800,bright white like a star +2002-08-06,37.3655556,-119.7252778,Ahwahnee,CA,light,240,Three lights in triangular formation +2002-08-06,38.6966667,-76.8480556,Brandywine,MD,light,60,Bright Blue light moving over Brandywine MD changed to Orange then disappeared. +2002-08-06,33.9533333,-117.3952778,Riverside,CA,changing,7,Witness is retired from a career as an inspector with a defense contractor, and is in the habit of paying close attention to detail. I +2002-08-06,46.2677778,-89.1777778,Watersmeet,MI,light,5,Bright light zig-zagging through sky. +2002-08-06,32.2216667,-110.9258333,Tucson (Nearest Town),AZ,light,300,Stationary white star-like light took off at high speed and disappeared when we looked, strange flash above, ground shaking. +2003-08-06,42.0416667,-70.6727778,Duxbury,MA,sphere,45,A night on the beach +2003-08-06,38.6244444,-76.9394444,Waldorf,MD,light,8,Bright orange light seen in daytime sighting by UFO investigator while travelling. +2003-08-06,39.6133333,-105.0161111,Littleton,CO,cylinder,300,Two cylinders or disks circling for several minutes +2003-08-06,32.7152778,-117.1563889,San Diego,CA,other,300,Very high in the bright blue sky, string of pearls, +2003-08-06,40.4233333,-104.7086111,Greeley,CO,cylinder,10,daylight siting cylinderical type +2003-08-06,46.6022222,-120.5047222,Yakima,WA,other,120,Three "star-like" objects were spotted heading north from 9:30-9:32 and 11:00-11:05 at night. +2003-08-06,40.7977778,-85.8205556,Wabash,IN,light,4500,FLASHING RED, GREEN and WHITE LIGHTS THAT ALTERNATE +2003-08-06,34.2083333,-77.7966667,Wrightsville Beach,NC,rectangle,7200,Flashing light over atlantic ocean +2003-08-06,37.1327778,-104.8483333,Weston,CO,light,1200,Bright star like light with blue and red lights shining downward while moving quickly in zig-zag patterns. +2004-08-06,33.8302778,-116.5444444,Palm Springs,CA,other,1200,Round craft with pulsing white lights around the perimeter, treetop level right ahead of my car! +2004-08-06,41.7,-70.7633333,Marion,MA,changing,600,On 8/6/04 around 8pm I saw a stange glowing object in the sky changing from a Ball shape to Oval shape! +2004-08-06,36.8466667,-76.2855556,Norfolk,VA,cigar,300,glowing needle over norfolk va +2004-08-06,34.7302778,-86.5861111,Huntsville,AL,light,15,Bright light moving and fading to dark, like high altitude rocket thruster, seen briefly near Cassiopea. +2004-08-06,37.6022222,-87.1130556,Utica,KY,unknown,300,My daughter (age 27) who lives in KY called me in CA at the time of this sighting. She called and asked me if 2 satellites ever travel +2004-08-06,45.3841667,-122.7627778,Tualatin,OR,light,900,1 boomerang shaped, bright lighted object... +2005-08-06,35.3186111,-82.4611111,Hendersonville,NC,light,5400,3 starlight objects do trickery through the sky for 1 1/2 hour (video footage) +2005-08-06,29.4605556,-95.0511111,Dickinson,TX,cigar,240,two lights seen maybe cigar shaped craft moving inland over texas from the gulf of mexico +2005-08-06,30.4188889,-97.0113889,Lexington,TX,unknown,1800,The object made erratic movements. +2005-08-06,34.0522222,-118.2427778,Los Angeles (Sw Of),CA,light,60,Fast moving bright object seen from the Discovery Space Shuttle does a 180 degree turn +2005-08-06,32.7447222,-116.9980556,Spring Valley,CA,cigar,1200,Cigar shaped, floating, and did not move over Spring Valley CA. +2005-08-06,33.6188889,-117.9280556,Newport Beach (Off Shore),CA,sphere,1200,Object over ocean 100 feet, came closer to boat stopped for 10 minutes, reversed from same direction and speed and disappeared. +2005-08-06,41.8661111,-88.1069444,Wheaton,IL,sphere,2700,Sighting of bright orb in sky, following an unusual path, reversing directions twice +2005-08-06,45.5236111,-122.675,Portland,OR,circle,300,slow moving object over north west portland oregon +2005-08-06,36.1397222,-120.3591667,Coalinga,CA,triangle,300,080605, Coalinga, Flying over I5, Brightly lit Wedge shaped ufo separates into 3 objects (yellow, red, white). +2005-08-06,35.2597222,-80.4255556,Locust,NC,unknown,600,group of lights. high rate of speed no sound +2005-08-06,40.3977778,-105.0744444,Loveland,CO,light,30,Flashing light with no running lights inbetween flashes over NE Colorado +2005-08-06,39.1458333,-121.5902778,Marysville,CA,oval,1,See-Through greyish object poses for a split second-2 witnesses didn't collaborate on description but were the SAME +2005-08-06,41.3144444,-81.8358333,Strongsville,OH,cylinder,3600,Red and green cylinder object standing almost stationery with slight, jerky motions. +2006-08-06,35.3413889,-89.8972222,Millington,TN,circle,45,3 objects flying in the night sky +2006-08-06,45.9975,-121.5269444,Trout Lake,WA,formation,120,triangle pattern of stars moving from South to North +2006-08-06,42.3086111,-83.4822222,Canton,MI,egg,20,Extremely bright flash of light, faint crackling sound with electrical discharge as craft stopped in midair. +2006-08-06,46.9247222,-88.6263889,Tapiola,MI,rectangle,21600,was driving & square craft hovered over me! I sped up to 80ph..but my speed kept slowing down. I slowed for a SHARP turn, craft was +2006-08-06,46.8722222,-113.9930556,Missoula,MT,disk,45,White disk flying over Montana +2006-08-06,33.5091667,-111.8983333,Scottsdale,AZ,light,60,Yellow jellyfish shaped light bouncing around in the sky during the day, when the sun was out. +2006-08-06,42.0986111,-75.9183333,Binghamton,NY,other,120,upstate NY sighting +2006-08-06,33.4483333,-112.0733333,Phoenix,AZ,formation,900,Stationary 3-object formation in the night sky, 2 flat, one sphere +2006-08-06,32.7252778,-114.6236111,Yuma,AZ,light,30,White light in the sky near Yuma, AZ +2006-08-06,33.6469444,-117.6883333,Lake Forest,CA,disk,180,circular object spotted flying in a "pendulum" flying pattern above Lake Forest, California +2006-08-06,44.9238889,-92.9591667,Woodbury,MN,light,7200,Blue green rotating lights +2006-08-06,40.1811111,-74.6647222,Yardville,NJ,circle,300,Pulsating light gets smaller as it makes an arching movement in the night sky. +2006-08-06,30.4063889,-87.6836111,Foley,AL,unknown,1800,My children were swimming in our pool at 11 PM. They came in because they saw 3 different flashes of light & it scared them. I (the Mot +2007-08-06,37.9841667,-120.3811111,Sonora,CA,light,600,Very bright orange light low in sky, then just blinked out from left to right. +2007-08-06,33.1030556,-96.6702778,Allen,TX,cigar,180,Suddenly a cigar shaped object, bluish white in color sped across the sky underneath the planet Jupiter and rising as it sped across th +2007-08-06,33.4416667,-94.0375,Texarkana,AR,other,1800,15-20 cigar-shaped ships with red and blue lights, numerous bright white lights apearing and dissapearing, +2008-08-06,45.5236111,-122.675,Portland,OR,disk,10,Something was flying over downtown Portland on August 6th +2008-08-06,33.6694444,-117.8222222,Irvine,CA,light,7,A light in the night sky that wobbled, changed direction and zoomed off at an astonishing rate of speed +2008-08-06,34.3527778,-82.9322222,Hartwell,GA,light,180,I saw a rather big white light which I took for a planet or possibly a star at WNW. ((NUFORC Note: Intl. Space Station sighting. PD)) +2008-08-06,31.3066667,-94.2688889,Broaddus,TX,unknown,2400,pulsationg lights in northern sky. ((NUFORC Note: Possible star?? PD)) +2009-08-06,36.8252778,-119.7019444,Clovis,CA,light,90,Flashing lights over Clovis dancing in the sky +2009-08-06,33.9830556,-118.0958333,Pico Rivera,CA,light,10,LIGHT SPEEDLY FLYING ACCROSS THE SKY.. WITH THREE BRIGHT FLASHES EAST TO WEST. +2009-08-06,40.5,-111.95,West Jordan,UT,disk,600,Possible early morning unusual flying object sighting in residental area of Utah. +2009-08-06,26.9338889,-80.0944444,Jupiter,FL,circle,1800,White - blue and red light seen in the eastern sky moved steadily up the sky in 30 minutes. +2009-08-06,33.426944399999996,-117.6111111,San Clemente,CA,other,180,When I was driving home yesterday, I was looking at the sky because it was so blue and clear - no clouds at all. Then, I saw a silveri +2009-08-06,41.6716667,-72.9497222,Bristol,CT,sphere,600,round, 3 orange lights in front, silent, slow, +2009-08-06,41.6716667,-72.9497222,Bristol,CT,sphere,600,Thursday, August 6񫺙 at 9:10 p.m. over Bristol, connecticut 06010 USA, my wife and I heard a loud bang outside and my wife asked me +2009-08-06,38.4405556,-122.7133333,Santa Rosa,CA,light,3600,Three distinct blue lights hover above northern Santa Rosa. +2009-08-06,29.7436111,-98.4527778,Bulverde,TX,light,2,Green Light fell straight down to Earth in about 2 seconds just north of San Antonio, TX. +2010-08-06,34.2,-90.5708333,Clarksdale,MS,light,2700,Lights in Sky +2010-08-06,42.6583333,-83.15,Rochester Hills,MI,triangle,15,I spotted a floating object in the sky with 3 yellow lights in the shape of a trianagle, that disappeared into the clear night sky. +2010-08-06,41.14,-104.8197222,Cheyenne,WY,other,300,Two pulsating large yellow-white lights with bulbous and tall center between lights +2010-08-06,38.8338889,-104.8208333,Colorado Springs,CO,flash,3,Bright round flash flies over Colorado Springs for 3 seconds. +2010-08-06,43.55,-96.7,Sioux Falls,SD,fireball,1200,Twelve orange balls of light moving over Sioux Falls, SD, at 2:00 hrs. on 08/06/10 +2010-08-06,42.5277778,-70.9291667,Peabody,MA,disk,10,Silver disk flew over my backyard, directly overhead, low and slow. +2010-08-06,61.2180556,-149.9002778,Anchorage,AK,circle,60,UFO APPEAR'S OVER ANCHORAGE ALASKA 80ꯠ FT. LOOK'S LIKE A BB & NO MOVEMENT +2010-08-06,42.2769444,-73.9572222,South Cairo,NY,triangle,120,Triangle following plane went vertical was gone in a second +2010-08-06,28.5491667,-81.7730556,Clermont,FL,cigar,90,I observed a small silver cigar shaped craft observed flying north at a fast steady pace dissapear into the clouds +2010-08-06,40.9222222,-89.4861111,Chillicothe,IL,light,600,bright orange glowing lights traveling over Chillicothe, Illinois +2010-08-06,41.4338889,-73.1172222,Oxford,CT,cigar,180,We saw a weird glowing light in the sky that appeared to be slowly moving and then hovering. Obj. had red lights around it that blink +2010-08-06,42.1236111,-71.1791667,Sharon,MA,triangle,30,A year back me and my daughter were dropping my mother off at her elderly home. There is a round driveway and we dropped off my grandmo +2010-08-06,42.9336111,-72.2786111,Keene,NH,light,3,4 to 5 lights traveling in formation from the northwest to the southeast and looked like dim spotlights in the sky. +2010-08-06,44.8341667,-87.3769444,Sturgeon Bay,WI,light,5,Brief moving light, turned off as if on a dimmer switch +2010-08-06,33.9213889,-78.0205556,Southport,NC,fireball,900,See approx. 15 reddish orange bright lights flying east of Southport, NC toward Wilmington, NC. All were flying in a straight line acr +2010-08-06,37.9680556,-91.3547222,Steelville,MO,circle,300,Bright red circular object seen in the night sky around Steelville MO +2011-08-06,39.9975,-85.7466667,Pendleton,IN,triangle,4,Triangular, orange,still,flickering +2011-08-06,32.2216667,-110.9258333,Tucson,AZ,light,3600,star like object going straight up +2011-08-06,33.685,-117.2722222,Canyon Lake,CA,triangle,5,Bright red triangle craft flying over Menifee, Quail Valley, Canyon Lake, California +2011-08-06,26.625,-81.625,Lehigh Acres,FL,light,480,3 UFO's sighted that look like stars in the sky. Impossible flight maneuvers...cloaking capabilities. +2011-08-06,35.0525,-78.8786111,Fayetteville,NC,disk,600,A shiny fast moving oblong disk was moving through the sky over the moon and then it moved to the west out of sight! +2011-08-06,33.7669444,-118.1883333,Long Beach,CA,cone,60,The Aircraft was a circle it white lights surrounding it with one on top of it. +2011-08-06,37.2872222,-121.9488889,Campbell,CA,fireball,1200,2 Visible fireballs in night sky in Campbell, CA +2011-08-06,41.5066667,-90.515,Moline,IL,fireball,60,Fireball in Moline, Illinois +2011-08-06,47.3544444,-102.3355556,Halliday,ND,fireball,180,Bright orangish/red burning object moved slowly above the treetops, then turned & moved away from us & disappeared. +2011-08-06,40.7438889,-73.1391667,Oakdale,NY,fireball,900,6 slow moving fireballs seen in western sky on Long Island +2011-08-06,45.9933333,-123.9213889,Seaside,OR,fireball,900,3 Fireball Looking Objects Seen Over Seaside, Oregon on the Evening of August 6th, 2011 +2011-08-06,42.2047222,-83.4852778,Belleville,MI,light,120,I was heading home to Dearborn from Kalamazoo eastbound on I-94, and I saw what at first appeared to be an airplane coming from Detroit +2011-08-06,44.8408333,-93.2980556,Bloomington,MN,light,180,I shortly viewed a short lived cluster of 8 lights at approximately 1500 feet over a swamp area in a river valley by an airport.. +2011-08-06,46.8772222,-96.7894444,Fargo,ND,light,3,A very bright light just appeared and did a semi-circular swoop and disappeared into the distance. +2011-08-06,42.1655556,-88.2941667,Algonquin,IL,unknown,1800,3 Craft 1 went right, 1 left the other straight up and gone ? No planes could do this +2011-08-06,28.4413889,-82.4572222,Masaryktown,FL,fireball,30,Rocket shaped object in green fireball slowly moving downward at a 90 degree angle. +2011-08-06,41.535,-80.8683333,Orwell,OH,light,60,Strange star like ball of light follows plane and then tales off +2011-08-06,27.9472222,-82.4586111,Tampa,FL,fireball,5,Green fireball with tail in night sky. ((NUFORC Note: Possible meteor, containing copper?? PD)) +2011-08-06,26.1416667,-81.795,Naples,FL,circle,6,Bright white circle with light blue arura in the night sky. +2012-08-06,41.6527778,-70.2833333,Hyannis,MA,fireball,120,A very fast moving orange object with a black shadow around it at a high altitude and then disappeared. +2012-08-06,40.5991667,-77.5716667,Lewistown,PA,light,3600,Changing color light moving very fast. ((NUFORC Note: Possible "twinkling" star, we suspect. PD)) +2012-08-06,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,180,Loud humming/vibrating noise and bright blue light. +2012-08-06,48.0511111,-122.6897222,Nordland,WA,light,2400,Stationary light goes from dim to bright with secondary tiny object going past it, disappears, reappears, blinks out with a red flash. +2012-08-06,46.7325,-116.9991667,Moscow,ID,light,300,Fast moving light overhead various days and disappears and changes direction. +2012-08-06,39.6416667,-77.7202778,Hagerstown,MD,triangle,2100,Triangle shaped light low on horizon did not move for more than 30 minutes, but did flash intermittently. +2012-08-06,42.1291667,-80.0852778,Erie,PA,light,180,Bright White Light in the Sky. +2012-08-06,39.9522222,-75.1641667,Philadelphia,PA,rectangle,1500,Black rectangled shaped object, polsating like a jelly fish, appeared and observed me. +2012-08-06,29.3011111,-94.7975,Galveston,TX,oval,120,Silent, brilliant white, oval light size of a BB over Gulf observed moving for 3 1/2 minutes from due S to NNW +2012-08-06,33.0186111,-117.06,Rancho Bernardo,CA,light,600,Rancho Bernardo Bright Star UFO +2012-08-06,41.1577778,-80.0888889,Grove City,PA,light,300,Bright white light in small town pa. +2012-08-06,34.1705556,-118.8366667,Thousand Oaks,CA,light,5,Very bright light increased in brightness then faded. there was no movement across horizon. ((NUFORC Note: Iridium satellite? PD)) +2012-08-06,41.5355556,-73.8994444,Fishkill,NY,light,600,Orange sphere circles new york night sky +2012-08-06,36.3883333,-86.4466667,Gallatin,TN,triangle,300,Triangle shaped objecting flying away from us very slowly. Strange blinking patterns and three points of triangle too far apart to be +2012-08-06,25.7738889,-80.1938889,Miami,FL,oval,3600,5 individuals see Huge 300 ft Craft about 50 feet away for one hour. Could throw rock and hit it. +2012-08-06,41.2975,-82.6055556,Milan,OH,circle,3,Very fast bright orange light moving south to north. +2012-08-06,38.0491667,-87.2741667,Boonville,IN,sphere,240,Saw a bright white light going across the sky, very slow def not a plane. Pretty close to earth compared to the planes in the sky. I sw +2012-08-06,41.4444444,-87.6313889,Crete,IL,circle,600,3 pairs of orange circular shaped lights flying fast overhead. +2012-08-06,42.4083333,-71.0125,Revere,MA,light,5,Bright light in sky zoomed by at an incredible speed. +2012-08-06,47.6063889,-122.3308333,Seattle,WA,fireball,60,Staying in condo on 1st ave in downtown seattle. Saw very bright object transverse sky from north to south, 75 degrees above horizon t +2012-08-06,43.2983333,-72.4827778,Springfield,VT,circle,60,Bright Red Circle In the sky +2012-08-06,40.0580556,-82.4013889,Newark,OH,sphere,180,Movind sw to ne +2012-08-06,38.7455556,-83.845,Ripley,OH,light,240,Bright light moving accross the night sky. +2012-08-06,40.1561111,-79.9744444,Van Voorhis,PA,light,1200,Lights flies through sky followed by helicopter group. +2012-08-06,41.3205556,-75.8194444,Exeter,PA,other,900,A fleet of UFO's in Exeter PA +2012-08-06,37.0583333,-120.8488889,Los Banos,CA,fireball,20,On august sixth 2009 well watching the space station pass overhead about halfway through the pass almost directly north slightly east +2012-08-06,40.8041667,-74.0125,North Bergen,NJ,sphere,20,Another Triangular Formation in the skies of new jersey 3 glowing lights +2012-08-06,39.285,-80.9686111,Pennsboro,WV,light,20,Blueish light seen wabbleing through the sky over pennsboro wv +2012-08-06,45.8661111,-122.405,Yacolt,WA,oval,45,One brilliant white,blue oval/diamond shaped craft. +2012-08-06,46.6022222,-120.5047222,Yakima,WA,formation,1800,Looked to the SW watched a triangle of 3 flashing lights that held postion for 30 minutes. then proceeded slowly to SW. +2012-08-06,33.4330556,-79.1216667,Pawleys Island,SC,light,900,Walking along the South End of Pawleys Island beach on a clear night we saw 3 orange lights appears suddenly in the sky, attracting our +2012-08-06,40.7516667,-92.4147222,Bloomfield,IA,fireball,2,Large ball of light sighted above rooftops. +2012-08-06,45.7255556,-121.8180556,Carson,WA,sphere,120,Bright white ball of light +2013-08-06,33.2469444,-95.8997222,Commerce,TX,sphere,300,I unmistakingly saw two faint stars flying at the same speed flying eastward from my backyard while star gazing from my swimming pool ! +2013-08-06,40.4211111,-79.7883333,Monroeville,PA,light,240,Stationary white light seen hovering off to the east of Monroeville, Pa. +2013-08-06,34.0522222,-118.2427778,Los Angeles,CA,sphere,30,Reflective orbs flying back and forth and making formations in southern sky seen from Los Angeles, CA. +2013-08-06,26.7052778,-80.0366667,West Palm Beach,FL,circle,600,Craft was round and gave off an extraordinary amount of light. +2013-08-06,34.9244444,-80.7436111,Waxhaw,NC,cylinder,1800,Three Reddish Orange craft seen flying through Waxhaw,N.C.. +2013-08-06,43.3636111,-73.3941667,Hartford,NY,light,600,Hovering bright purpe/orange/green object, 50 feet above vehicle, farm country. +2013-08-06,33.8872222,-118.3516667,Lawndale,CA,egg,3,I saw an airborne egg shaped object that was completely silent and pulsing a dim red light. +2013-08-06,44.3044444,-92.7902778,Wanamingo,MN,light,300,Thunderstorm bright red orb +2013-08-06,46.4163889,-117.0441667,Clarkston,WA,light,240,Bright light appears and follows same course nightly for past several months +2013-08-06,26.5216667,-82.1894444,Captiva,FL,flash,15,5th SIGHTING OF A "FLASHER." +2013-08-06,44.3105556,-69.78,Augusta,ME,oval,60,White and Orange oval craft in the sky over State of Maine !!! +2013-08-06,41.9444444,-71.2861111,Attleboro,MA,oval,180,Two red/orange objects flying in synchronicity over Attleboro, Massachusetts 08/06/13 +2013-08-06,40.3916667,-111.85,Lehi,UT,light,90,Not ISS...South to North light emits bright blue/white light over Lehi, Utah +2013-08-06,41.6638889,-83.5552778,Toledo,OH,light,1800,Star like objects +2013-08-06,39.0305556,-82.8244444,Beaver,OH,fireball,120,Three fireballs in the sky in Beavercreek, OH +2013-08-06,38.8183333,-84.6608333,Verona,KY,circle,180,Yellow-Orange glowing sphere and two smaller spheres chasing each other +2013-08-06,34.1063889,-117.5922222,Rancho Cucamonga,CA,rectangle,60,Rectangle shaped UFO with red, green and white lights in Rancho Cucamonga +2013-08-06,44.1002778,-70.2152778,Lewiston,ME,circle,8,Bright light in constellation Cassiopeia. ((NUFORC Note: Possible "flare" from Iridium satellite? PD)) +2013-08-06,40.6083333,-75.4905556,Allentown,PA,fireball,600,Fire ball with flame +2013-08-06,34.3527778,-82.9322222,Hartwell,GA,other,10,Bright green flash and green smoke trail +2013-08-06,35.0844444,-106.6505556,Albuquerque,NM,unknown,180,Red and green lights of different sizes pulsating then &quot;turning&quot; upside down and moving direction rapidly on I40 at Wyoming e +2013-08-06,47.6777778,-116.7794444,Coeur D'alene,ID,light,180,White slowly pulsing bright star. +2013-08-06,35.0525,-78.8786111,Fayetteville,NC,triangle,120,9 to 10 black triangular objects moving at low speed and altitude & a low muffled sound. +2013-08-06,35.0525,-78.8786111,Fayetteville,NC,triangle,120,Objects have never seen in our area by me. Almost hover like and moving at a slow speed. Objects were projecting beams of light. +1953-08-07,38.1041667,-122.2555556,Vallejo,CA,light,3600,At first we thought they were shooting stars +1957-08-07,39.7683333,-86.1580556,Indianapolis,IN,light,3600,Flashing light over Indiana +1965-08-07,41.6666667,-70.1852778,South Yarmouth,MA,light,60,on aug 07 1965 ,i was 16 . playing baseball with approx 16 others .looking to the east i observed three spots of intense light at appro +1974-08-07,37.6833333,-87.9166667,Morganfield,KY,circle,1800,light objects dart side to side buting on show +1975-08-07,46.0647222,-118.3419444,Walla Walla,WA,light,180,A bright greenish white light hovered about 2000 feet high, then began moving & flew rapidly w/o sound over the Blue Mtns of NE Oregon +1977-08-07,45.4711111,-89.7297222,Tomahawk,WI,oval,120,Multi colored silent object moving slowly Northeast. +1978-08-07,35.5741667,-105.6744444,Pecos,NM,disk,8,Carrier craft picks up scout ship +1980-08-07,45.4563889,-123.8427778,Tillamook,OR,rectangle,120,It was big as a football feild with lit up windows, i could see movement inside, it was so low & slow i could see alot of detail. +1984-08-07,46.8605556,-68.0125,Caribou,ME,egg,900,Three of us saw a large object with a searchlight darting and traveling over fields in northern Maine. +1988-08-07,40.7061111,-74.5497222,Basking Ridge (Near),NJ,chevron,30,Daylight NJ i78 large chevron shaped craft 50 plus eye witnesses +1991-08-07,42.8027778,-83.0130556,Romeo,MI,light,300,Glowing light hovering and rising slowly then shooting across dky. +1994-08-07,28.2713889,-82.7197222,Port Richey,FL,egg,15,Silver Egg Shaped craft +1994-08-07,40.7141667,-74.0063889,New York City (Staten Island),NY,oval,120,i know what i saw +1994-08-07,42.2411111,-83.6130556,Ypsilanti,MI,formation,2700,3 objects, amber in color, bell shaped, flew V or tri-angular formation, no sounds emitted, flew very lo and slow. +1995-08-07,35.1494444,-90.0488889,Memphis,TN,disk,180,6 witnesses, one goes into complete denial, occurs in a populated urban environment. +1996-08-07,38.6880556,-83.6094444,West Manchester,OH,oval,900,Teen saw 8 UFOs near town.Woods got red as Ufo rose out , joined by 5 white specks. Object broke off object from woods and flew to lef +1996-08-07,38.6880556,-83.6094444,West Manchester,OH,unknown,60,2 bros. saw an object in front of S. windowappear to come from sky and make flashesof light two different times, then shoot away +1997-08-07,40.7141667,-74.0063889,New York City,NY,other,2,NTSB report of anomalous object near 747 aircraft. +1998-08-07,32.8794444,-111.7566667,Casa Grande,AZ,triangle,180,Triangle Shaped Object Over I-10 Near Casa Grande +1998-08-07,32.8794444,-111.7566667,Casa Grande,AZ,triangle,300,Triangle Shaped Object Over I-10 Near Casa Grande. +1998-08-07,41.4713889,-75.6080556,Dickson City,PA,chevron,50,2 chevron UFOs head directly toward each other, then do a “loop-de-loop” around one another, and continue on their original headings. +1998-08-07,35.7972222,-84.2561111,Lenoir City,TN,other,60,I was riding in a boat and noticed a very bright pair of lights at about 30 degrees above the horizon I turned to ask my wife if she sa +1999-08-07,28.6119444,-80.8077778,Titusville,FL,unknown,20,Gigantic Low-Flying Craft Moving Slowly, Flat Bottom with Lights, Dissapeared When I Turned To Follow Its Flight Path +1999-08-07,38.4972222,-122.9655556,Santa Nella (Along I-5),CA,disk,30,circular shaped frisbee like disc with a flourescent white glow approximately 900 to 1ꯠ feet off ground and approximately 1ꯠ yard +1999-08-07,33.7591667,-118.0058333,Westminster,CA,diamond,1320,I looked up, at about a 165 degree angle, and spotted what appeared to be a silent white radiant elongated diamond shaped object, it wa +1999-08-07,40.7141667,-74.0063889,New York City (Manhattan),NY,triangle,300,Black Tetrahedron Pyramid UFO in plain daylight over New York City. +1999-08-07,35.5361111,-100.9594444,Pampa,TX,light,60,Light traveling on a north - south trajectory. +1999-08-07,34.2308333,-111.3244444,Payson (Near Roosevelt Lake),AZ,disk,3600,Two very bright star like lights that at first were stationary then moving closer to each other, then one moving off very fast and comi +1999-08-07,34.61,-112.315,Prescott Valley,AZ,light,300,Bright orange light traveling North-West. +2000-08-07,45.1475,-122.5758333,Molalla,OR,disk,60,observed a disc shaped object hovering above me, which accelerated to the East at a highe rate of speed covering 140 degrees in 3 secon +2000-08-07,29.7855556,-95.8241667,Katy,TX,oval,5,My nine year old daulter and her friend came in the house telling me they just had seen this oval object with red lights in the middle +2000-08-07,44.8486111,-74.2952778,Malone,NY,circle,30,circle/round object above field in upstate ny. +2001-08-07,35.5847222,-80.8102778,Mooresville,NC,disk,660,Disk shape object changing colors and moving up and down and side to side +2001-08-07,37.6486111,-118.9711111,Mammoth Lakes,CA,disk,300,From the west, I noticed a dark disk shaped object slowly moving and stopping as it made its way towards my location. +2001-08-07,34.5008333,-117.185,Apple Valley,CA,sphere,600,Sphere shaped object floating next to moon. +2001-08-07,42.0411111,-87.69,Evanston,IL,triangle,20,Triangle-shaped craft hovered for about 15 sec. then streaked off +2001-08-07,42.0411111,-87.69,Evanston,IL,triangle,20,I looked up and saw a streak of light and then it slowed down. I couldn't tell exactly how far away it was...but it didn't seem too far +2001-08-07,43.2341667,-86.2483333,Muskegon,MI,triangle,300,This is what my friend told down the street and he was really serious. +2001-08-07,43.5408333,-116.5625,Nampa,ID,disk,30,((HOAX??)) Close sighting UFO +2002-08-07,36.7533333,-86.1905556,Scottsville,KY,unknown,3600,Several Lights Above Grandma's House +2002-08-07,32.948055600000004,-96.7294444,Richardson,TX,unknown,18000,strobes int the sky over dallas ... many saw .many shocked..... +2002-08-07,48.1988889,-122.1238889,Arlington,WA,other,1200,At approx 1335 8-7-02 I was seated at my desk which is on the 2nd floor of the building where I work. My office window is on the south +2002-08-07,29.9986111,-95.2619444,Humble,TX,changing,1800,Strange object seen hovering overhead in the eveing sky in Humble, Texas. +2002-08-07,38.8902778,-77.0844444,Arlington,VA,light,1200,Lights after dusk in Arlington, Va. +2002-08-07,38.2325,-122.6355556,Petaluma,CA,light,300,looked like a flickering planet but a little larger than the largest thats visable to the naked eye. +2002-08-07,40.0736111,-104.4144444,Prospect Valley,CO,light,300,Brilliant electric blue pulsating light moving at an incredible speed soundlessly passing within 100 yards of our vehicle. +2002-08-07,47.4741667,-122.2597222,Tukwila,WA,light,4,Sea-Tac Washington, solid red and orange object streaks across sky +2002-08-07,38.6652778,-78.4597222,Luray,VA,other,7200,Blue Ridge Mountains, Luray, Va - 8 objects dancing, zigzagging, constantly verying speed/direction or 2 hour+ period +2002-08-07,45.6388889,-122.6602778,Vancouver,WA,disk,25,It slowly moved northbound low and slow over rooftops. +2003-08-07,41.85,-87.65,Chicago ('burbs),IL,other,900,glowing orange slice moving south on I-55 +2003-08-07,33.78,-118.2616667,Wilmington,CA,diamond,240,red ufo seen above the northern sky/horizon over Wilmington, Ca +2003-08-07,41.45,-87.47,Saint John,IN,unknown,15,Saw a strong blue light across the ground suddenly lift and blast across the sky out of sight. +2003-08-07,64.8377778,-147.7163889,Fairbanks,AK,circle,5400,((NUFORC Note: Possible sighting of Mars. PD)) Flickering Star like Object Moving Laterally at about 0130 hrs +2003-08-07,46.355,-85.5094444,Newberry,MI,light,120,A star-like light passing overhead in an arc, appearing in intervals over a time of about 60 to 120 seconds. +2003-08-07,42.0983333,-76.0497222,Endicott,NY,unknown,30,There were two (2) Hot Air Balloons and one (1) Unknown Object. +2003-08-07,34.2647222,-118.5222222,Granada Hills,CA,unknown,900,Strobing craft over the San Fernando Valley +2003-08-07,46.82,-67.9236111,Maine (Northern Part),ME,sphere,120,Green sphere seen make a V path in front of our car in Northern Maine. +2004-08-07,36.3133333,-82.3536111,Johnson City,TN,flash,2,Shooting Star in TN? +2004-08-07,30.5872222,-104.4961111,Valentine,TX,circle,900,7 to 9 orb-type objects each illuminating alternately hovering directly over Marfa,TX Aerostat facility estimate 1ꯠ feet altitude. +2004-08-07,33.4483333,-112.0733333,Phoenix,AZ,oval,60,One bright yellow oval shaped unidentified flying object +2004-08-07,32.7947222,-116.9616667,El Cajon,CA,triangle,7200,We saw the bright lights and others over the the hills near the mountains ((NUFORC Note: Twinkling stars?? )) +2004-08-07,32.7252778,-97.3205556,Fort Worth,TX,sphere,0.75,Red Orb flying vertically up into clouds. +2004-08-07,42.2286111,-71.5230556,Hopkinton,MA,light,360,Lake Maspenock sighting +2004-08-07,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,1800,Saw object in picture after viewing it on the computer. +2004-08-07,43.5247222,-73.2522222,West Hampton,NY,light,600,Star-like lights visible in daytime sky over beach. +2004-08-07,32.4283333,-90.1322222,Ridgeland,MS,circle,30,Ball of light moving at a rapid speed. +2004-08-07,40.3977778,-105.0744444,Loveland,CO,flash,60,Bright flash of light for a few seconds in Loveland, CO. +2005-08-07,45.0761111,-93.3325,Brooklyn Center,MN,light,3600,Strange colorful light in the sky +2005-08-07,39.7377778,-76.7016667,New Freedom,PA,light,30,((NUFORC Note: Hoax?? PD)) About 6 weeks ago I was standing out back of my house, letting the dog out at about 1:30 AM. +2005-08-07,41.8955556,-106.2041667,Medicine Bow,WY,light,2040,Shimmering light ,similar to northern lights, accompanied by spotlights moving fast in Wyoming +2005-08-07,41.055,-73.8205556,Elmsford,NY,triangle,300,Sunday, August 7 2005, aprox time: 10:05pm.Location: Elmsford, NY, 30 minutes from NYC. I was outside with my husband in our ba +2005-08-07,40.7,-73.9061111,Ridgewood (New York City, Queens),NY,other,1800,Strange object seen standing still for more then 30 seconds. +2005-08-07,40.4163889,-120.6519444,Susanville,CA,unknown,37800,It dissappeared and reappeared. +2006-08-07,35.2244444,-90.7866667,Wynne,AR,light,240,Fast moving light +2006-08-07,40.0063889,-75.7036111,Downingtown,PA,light,20,Bright light, not moving, then disappeared +2006-08-07,36.7619444,-83.695,Pineville,KY,changing,3,long snake/worm like horizontal multicolor shape jumping all over the place and into different shapes. +2007-08-07,39.9019444,-84.0919444,Brandt,OH,other,3,A UFO was visible in a sunrise digital photograph that was not otherwise visible. +2007-08-07,38.3397222,-122.7,Rohnert Park,CA,formation,600,Cluster of four bright lights in clear blue sky. ((NUFORC Note: Possibly an advertising light?? PD)) +2007-08-07,36.175,-115.1363889,Las Vegas,NV,oval,300,stars moving in sin city +2007-08-07,42.1291667,-80.0852778,Erie,PA,fireball,300,Orange Flaming Orbs fall from the sky over Lake Erie, August, 2007 +2007-08-07,32.7152778,-117.1563889,San Diego,CA,light,420,Bright light changed to dim and traveled acros sky beconing stationary and changing course 90 deg. +2007-08-07,31.5747222,-111.3316667,Arivaca,AZ,light,18000,Colorful craft, orbs, strobe beacons in Arivaca +2007-08-07,35.6527778,-97.4777778,Edmond,OK,disk,2,ufo chase with 3 air planes. +2007-08-07,39.4561111,-77.9641667,Martinsburg,WV,cigar,420,i dont think i can explain what it truely was, but im sure the govt. will deny this one too. +2007-08-07,40.5308333,-112.2975,Tooele,UT,fireball,7,Very high, very fast, and in a unique shape. +2008-08-07,40.6583333,-74.3,Cranford,NJ,triangle,3600,Small blinking lights moving fast in the distance. ((NUFORC Note: Possible star?? PD)) +2008-08-07,35.6266667,-120.69,Paso Robles,CA,cigar,30,A silver shiny cigar shaped object hovering 300 ft above the ground in Paso Robles. +2008-08-07,27.8775,-97.2113889,Ingleside,TX,disk,600,ABOUT 30 SILVER DISC SHAPED OBJECTS +2008-08-07,33.2147222,-97.1327778,Denton,TX,disk,300,I went outside for my afternoon break and happened to look up and see a shiny object traveling thru the sky. Of course my first thought +2008-08-07,27.9011111,-81.5861111,Lake Wales,FL,triangle,5,It was triangle shaped and it had bright white lights no red or green lights were present. 500 Lights On Object0: Yes +2008-08-07,32.64,-117.0833333,Chula Vista,CA,oval,100,Slow Moving, Oval shaped, very low in the sky, and a very bright white,and it vanished… ((NUFORC Note: ISS? PD)) +2008-08-07,33.1030556,-96.6702778,Allen,TX,teardrop,60,Around 9:20 we saw a really bright light in the sky at first we thought it was an airplane but it didn't have red blinking lights and i +2008-08-07,37.7022222,-121.9347222,Dublin,CA,circle,30,Bright Still Light, After 15-20 Seconds sped away with greenish light. too low and too fast to be a plane +2008-08-07,35.4975,-97.2686111,Choctaw County (Southeastern Ok),OK,light,30,Bright, glowing white light moving slowly above us with no blinking lights. ((NUFORC Note: ISS? PD)) +2008-08-07,42.4222222,-87.8572222,Beach Park,IL,cigar,120,Disappearing cigar shape +2008-08-07,42.0102778,-76.5275,Waverly,NY,light,2700,Bright light in the sky that illuminated the clouds. ((NUFORC Note: Jupiter?? PD)) +2008-08-07,47.2944444,-101.6222222,Hazen,ND,cylinder,10,Big and huge and very silent ,with dim lights all around it +2008-08-07,38.9430556,-84.5441667,Independence,KY,circle,180,bright round object on dark fairly clear night spotted by nonbeliever that faded into the dark +2008-08-07,39.7136111,-82.5994444,Lancaster,OH,unknown,120,Bright, Nonflashing Pinkish Light without any accompanying lights visible. +2009-08-07,39.8366667,-105.0366667,Westminster,CO,light,3600,was not a star or anything of nature. ((NUFORC Note: Possible sighting of a star, we suspect. PD)) +2009-08-07,37.2708333,-79.9416667,Roanoke,VA,fireball,25,falling star that curved around and came right up in front of me , firery orange/blue neon green ring around it +2009-08-07,39.4194444,-76.7805556,Owings Mills,MD,triangle,30,Trianle white lights move across Owings Mills +2009-08-07,38.9794444,-90.9805556,Troy,MO,fireball,5400,Possible UFO sightings are likely balloons. +2009-08-07,33.9375,-117.2297222,Moreno Valley,CA,unknown,180,I thought it was a Jet from the air force base but it was to quiet too be. +2009-08-07,42.3313889,-83.0458333,Detroit,MI,fireball,300,The bright fire red object moved from West to Northeast for a duration of 4-5 minutes. +2009-08-07,38.5816667,-121.4933333,Sacramento,CA,cigar,172800,Log cylinder flying thing extremely fast +2009-08-07,35.0844444,-106.6505556,Albuquerque,NM,rectangle,900,Black Rectangle Three Green Light Bars UFO Crash seen from Albuquerque 08/07/2009 +2009-08-07,41.5930556,-81.5269444,Euclid,OH,fireball,300,SIX ORANGE GLOWING ORBS FLYING HOVERING THEN DISSAPERARINT +2009-08-07,40.5308333,-112.2975,Tooele,UT,other,300,Strange orange orbs appear and disappear over Dugway Proving Grounds,Utah. +2010-08-07,38.4966667,-84.5641667,Corinth,KY,light,10,Two objects, one possibly a meteroite, the other object moved at same speed stopped in mid flight and went back the way it came. +2010-08-07,41.6430556,-89.2277778,Sublette,IL,unknown,300,Lite moved across the sky changing colors from white to orange makes a 90 degree turn towards earth and stops hanging in the sky change +2010-08-07,38.9688889,-77.1427778,Glen Echo,MD,sphere,600,Stationary metallic like sphere over the Washington DC area +2010-08-07,33.6305556,-112.3325,Surprise,AZ,light,180,Large Orb Above White Tank Mountain Range +2010-08-07,38.9488889,-83.4058333,Peebles,OH,circle,60,round object with much smaller attached object circling the main object in vertical motion +2010-08-07,32.7252778,-114.6236111,Yuma,AZ,light,20,Three eyewitnesses of approximately 20 lighted objects in the southwest desert moving in a northwesterly direction +2010-08-07,42.7005556,-74.9247222,Cooperstown,NY,fireball,180,A bright orange ball moving south, stopping and then retreating backwards until it disappeared. +2010-08-07,42.2769444,-73.9572222,South Cairo,NY,light,180,Bright light on the western ridge. ((NUFORC Note: Venus is in the western sky at this time. PD)) +2010-08-07,25.7738889,-80.1938889,Miami,FL,triangle,300,Saturday night at 915pm my wife and I were watching T.V. . Our son walks in from out side and said there is fire in the sky. I told him +2010-08-07,38.7208333,-75.0763889,Rehoboth Beach,DE,light,300,Repeated Observation of Red/Orange Flickering Lights off Delaware Coast +2010-08-07,43.5355556,-70.7155556,Waterboro,ME,light,300,Amber/Orangish colored light in sky...no sound at any point, for duration of sighting, no commercial flashing tail or wing lights seen +2010-08-07,46.6022222,-120.5047222,Yakima,WA,triangle,360,At 10:48 to 10:56. Four different lights, shining like if they were wildfire, appeared soundless, somewhat, over Yakima City (Which was +2010-08-07,47.1302778,-119.2769444,Moses Lake,WA,sphere,600,The evening of Saturday, August 7, 2010, using my binoculars, I observed some lights over the airport, Grant County International Airpo +2011-08-07,29.1869444,-82.1402778,Ocala,FL,circle,120,A red glowing ball skipping accross the sky. +2011-08-07,44.5469444,-69.6216667,Winslow,ME,light,101,Odd oscillating white lights above Maine (Sighted in central Maine) +2011-08-07,26.625,-81.625,Lehigh Acres,FL,unknown,600,UFO sightings 2 days in a row in Lehigh Acres, Florida. +2011-08-07,35.1894444,-114.0522222,Kingman,AZ,other,60,Low flying object sighted outside of Kingman, AZ +2011-08-07,39.4336111,-76.3580556,Joppa,MD,light,10,Bright ball of light moving fast right to left then slow up and down then gained speed and disappeared +2011-08-07,44.98,-93.2636111,Minneapolis,MN,circle,6,Round white object over Minneapolis that disappeared +2011-08-07,36.2702778,-121.8063889,Big Sur,CA,formation,10800,2 glowing blue and red triangular forms change into human form at Big Sur. Also, red irridescent squid like being dances above sea. +2011-08-07,42.0111111,-87.8405556,Park Ridge,IL,circle,30,Bright red circular light with red light beams in front +2011-08-07,40.0444444,-111.7313889,Payson,UT,light,300,Pulsing bright white lights, circle object in the night sky, moved in circles, up and down-left to right,went straight down disappeared +2011-08-07,32.7947222,-116.9616667,El Cajon,CA,formation,600,3 long shaped triangle ufo formation +2012-08-07,33.5777778,-101.8547222,Lubbock,TX,other,600,Green Light in the sky over Lubbock, TX. +2012-08-07,39.3397222,-74.5755556,Linwood,NJ,light,120,Red orange blue yellow balls of flicking light that were stationary side by side. +2012-08-07,39.7391667,-104.9841667,Denver,CO,light,900,Two Star-like UFO's Seen in Denver During the Time of the 2012 Summer Olympics in August. +2012-08-07,37.4716667,-121.1286111,Patterson,CA,triangle,1800,Looked up at the sky as I usually do before leaving for work, watched a Triangular 3 light formation moving north to south very slowly +2012-08-07,41.2230556,-111.9730556,Ogden,UT,changing,3600,Diamond morphing orb, changed shape light intensities +2012-08-07,46.9738889,-124.155,Ocean Shores,WA,light,15,Bright light with red and green lights underneath hovered in sky. I thought it a strange spotlight for a copter or plane? Then I though +2012-08-07,43.3219444,-70.5813889,Wells,ME,fireball,300,Ufo Fireball +2012-08-07,47.6063889,-122.3308333,Seattle,WA,rectangle,10,A BRIGHT CRYSTALLY RECTANGLE FLOATS OVER SEATTLE ON A CLEAR BLUE SKY MORNING. +2012-08-07,41.6611111,-72.78,New Britain,CT,light,300,I was driving on Hwy 72. I saw about 20 lights in two rows moving slowly across the sky. I don’t know how long it went on for, I saw +2012-08-07,32.3361111,-81.3916667,Guyton,GA,light,60,Low flying object, solid orange color with no flashing lights during a rain storm +2012-08-07,44.9061111,-66.9905556,Eastport,ME,light,120,It looked like a meteor but it drifted down the sky slowly and did mot go out +2012-08-07,40.6855556,-76.1958333,Pottsville,PA,unknown,1800,Orange light moving slowly across the sky. +2012-08-07,41.7,-70.3,West Barnstable,MA,light,60,One solid light with to faint blinking lights with a blueish white tint. +2012-08-07,26.3583333,-80.0833333,Boca Raton,FL,teardrop,180,Orange and grey pine cone shaped orb sighted while driving east in Boca Raton, Fl., between 8:15 and 8:30 PM. +2012-08-07,43.2080556,-71.5380556,Concord,NH,other,360,Very bright, could not see shape traveled northeast, not to fast ,but it was big and bright ,no other lights.Path like from bow to epso +2012-08-07,41.6611111,-72.78,New Britain,CT,circle,180,Noticed red-orange lights flying close togther +2012-08-07,33.8158333,-78.6802778,North Myrtle Beach,SC,light,240,Orange/reddish lights over Myrtle Beach that would appear and then fade out and then they were gone. +2012-08-07,27.4952778,-81.4411111,Sebring,FL,fireball,90,Line of fireballs in sky over Sebring, Florida (central florida) 9 PM EST 8/7/12 +2012-08-07,34.4358333,-119.8266667,Goleta,CA,disk,240,Bright orange sphere seen over El Capitan State Beach 8/7/12 +2012-08-07,44.305,-69.9775,Winthrop,ME,light,120,Bright cigar shaped light in Winthrop, ME. +2012-08-07,35.2675,-75.5427778,Buxton,NC,light,20,2-3 glowing yellowish orange lights, splitting from one light in parallel lines over ocean in Buxton NC. +2012-08-07,33.6305556,-112.3325,Surprise,AZ,triangle,900,It consisted of three white stars at each tip of a perfectly formed triangle in a star lit sky. +2012-08-07,33.6305556,-112.3325,Surprise,AZ,triangle,900,We saw a perfect triangle shape ( 1 star top- 2 at base) of bright stars on August 7 & 8, 2012. +2012-08-07,41.7736111,-74.4841667,Ulster Heights,NY,circle,300,VERY BRIGHT SOLID BALL OF LIGHT IN SKY - MOVING SLOWLY - NO SOUND - NO BLINKING LIGHTS - SOMETIMES MOVING ERRATICALLY +2012-08-07,39.0383333,-80.4675,Weston,WV,light,20,West Virginia call about 9:15 pm 08/07/2012 , about bright slow moving light, and other directional objects. +2012-08-07,44.3105556,-69.78,Augusta,ME,circle,300,Disc/ball shaped object crossed the skyline faster than a conventional aurcraft and returned slowly, with no sound. +2012-08-07,36.3133333,-82.3536111,Johnson City,TN,cigar,180,Huge long ufo moving very slow. +2012-08-07,45.2025,-123.9616667,Pacific City,OR,light,300,3 witnesses observed a series of orange lights move rapidly from the SW to the NE from the tree line/horizon to an ever increasing alti +2012-08-07,38.9536111,-94.7333333,Lenexa,KS,fireball,70,Very low ball of fire slowly floating over Kansas City metro area +2012-08-07,34.0122222,-117.6880556,Chino,CA,circle,2,A grey circle dart quickly across the sky. +2012-08-07,28.5380556,-81.3794444,Orlando,FL,chevron,180,August 7, 2012 sighting of orange lights in the sky in western Orange County, FL (near Walt Disney World) +2012-08-07,28.5380556,-81.3794444,Orlando,FL,chevron,180,Orange lights over west Orange County (Orlando area), FL +2012-08-07,43.6122222,-116.3905556,Meridian,ID,other,300,Shape changing object slowly rotating clockwise with tentacle like arms with bright orange light on one side. +2012-08-07,35.2191667,-75.6905556,Hatteras,NC,light,600,Orange Lights seen up in the night sky. They moved across the sky quickly +2012-08-07,43.0513889,-83.3188889,Lapeer,MI,disk,120,Bright orange ball over Lapeer, MI. +2012-08-07,33.6888889,-78.8869444,Myrtle Beach,SC,sphere,120,Large bright lights in half moon shape over ocean along coast. +2012-08-07,42.6055556,-83.15,Troy,MI,circle,300,Eight orange round shape flying objects over Troy-MI +2012-08-07,46.1541667,-119.0327778,Finley,WA,other,60,Strange object burns through the sky in finley washington +2012-08-07,44.7972222,-106.9555556,Sheridan,WY,light,300,Bright light seen moving slowly across sky at helicopters height with no noise and a 2 second rear-end emittance. +2012-08-07,46.2,-119.0119444,Burbank,WA,sphere,7,A large, bright, orange sphere, with a tail that was blue and green +2012-08-07,39.9202778,-80.7433333,Moundsville,WV,triangle,600,Three lights in the sky tat formed a perfect triangle +2012-08-07,33.1811111,-102.2738889,Brownfield,TX,triangle,300,Floating bright light over luboock,tx08-07-2012 10:30pm +2012-08-07,41.6611111,-91.53,Iowa City,IA,changing,3600,Ufo spotted by IC Eastern airport. Round sphered shaped with 3 three lights view looked triangle. Slowly gliding came at car +2012-08-07,33.8158333,-78.6802778,North Myrtle Beach,SC,fireball,30,Reddish yellow orbs seen off the beach in North Myrtle Beach, South Carolina +2012-08-07,43.0202778,-123.2919444,Myrtle Creek,OR,fireball,120,Bright orange orb moving through the sky. +2012-08-07,39.8208333,-84.0194444,Fairborn,OH,fireball,15,UFO above Fairborn Ohio no noise and not man made. +2012-08-07,43.5172222,-70.3780556,Old Orchard Beach,ME,cross,300,A florescent orange glowing cross shaped craft with glowing yellow aura moving slowly across the sky low altitude +2012-08-07,44.5625,-92.5336111,Red Wing,MN,light,60,Star-like object over Red Wing, MN +2012-08-07,44.7630556,-85.6205556,Traverse City,MI,light,10,Silent Glowing Orange Sphere Moving in a Straight Line Witnesed Over Traverse City, Michigan. +2013-08-07,27.9011111,-81.5861111,Lake Wales,FL,fireball,300,Large red/yellow fireball followed by craft similar to the space shuttle +2013-08-07,29.8944444,-81.3147222,Saint Augustine,FL,fireball,480,Stunning orange fireball in the sky.. +2013-08-07,47.9791667,-122.2008333,Everett,WA,unknown,120,Witnessed and bright white light floating along in the night sky, no noise at all. Second sighting in a couple days +2013-08-07,36.175,-115.1363889,Las Vegas,NV,sphere,900,Strange object seen flying low over summerlin ,very bright sphere,moving from west to north. +2013-08-07,28.0219444,-81.7330556,Winter Haven,FL,fireball,600,Fireball that dropped something with flashing lights. +2013-08-07,44.9238889,-92.9591667,Woodbury,MN,triangle,1200,A triangular shape with rotating blue and white lights, made an almost musical engine sound, could fly in all directions including shar +2013-08-07,39.4336111,-76.3580556,Joppa,MD,oval,10,I looked up while in a hammock and saw what looked like an odd planet, took a photograph and took another photograph and it was gone. +2013-08-07,33.7125,-115.4013889,Desert Center,CA,unknown,72000,2 air crafts moving from north to south not too fast I couldn't tell what shape they were but they were definitely on identifiable I wo +2013-08-07,41.7244444,-81.2458333,Painesville,OH,fireball,300,I saw 2 undefinable fireball objects just before sunset on 8/7/2013 +2013-08-07,26.3583333,-80.0833333,Boca Raton,FL,cigar,300,I saw the objects for minutes, local 911 calls are being withheld, local a.m. radio is reporting accurately. +2013-08-07,33.8491667,-118.3875,Redondo Beach,CA,oval,600,3 Lights along Los Angeles Coastline +2013-08-07,26.7052778,-80.0366667,West Palm Beach,FL,sphere,300,Orange glowing orb releasing blue smoke in all directions . +2013-08-07,26.4611111,-80.0730556,Delray Beach,FL,formation,900,Strange cloud and small formation. South Florida +2013-08-07,28.5380556,-81.3794444,Orlando,FL,circle,180,Round Ball of light emitting &quot;sparks&quot;/light hovering in Orlando, Florida +2013-08-07,28.8002778,-81.2733333,Sanford,FL,light,300,Bright round lights appear in sky after the launch of the Delta IV Rocket @ Cape Canaveral. +2013-08-07,26.7052778,-80.0366667,West Palm Beach,FL,triangle,180,At approx. 20:30 hrs EST I watched a comm. aircraft transition (witnessed standard aircraft lights) from N to S just E of Fl coast. +2013-08-07,26.0519444,-80.1441667,Dania Beach,FL,formation,300,Swirling star, glowing cloud, and flashing objects. +2013-08-07,26.2375,-80.125,Pompano Beach,FL,light,240,Noticed 2 odd craft in E sky one spewing vapor or smoke the other with odd random blinking white lights not conducive to nav lights. +2013-08-07,26.7052778,-80.0366667,West Palm Beach,FL,light,600,Light over sky west palm beach, FL +2013-08-07,41.9583333,-70.6677778,Plymouth,MA,oval,2,Bluish white oval shape craft disappear after seconds +2013-08-07,41.4788889,-87.4547222,Schererville,IN,fireball,600,Green orb-like fireball over Schererville, IN appearing twice +2013-08-07,44.510555600000004,-89.4261111,Custer,WI,circle,300,I get the daily NASA Space-station fly-over report but never get to see it because of the weather or time of fly-over. Wednesday night, +2013-08-07,64.8377778,-147.7163889,Fairbanks,AK,diamond,60,Diamond shaped UFO near Fairbanks Airport. +2013-08-07,42.9955556,-71.4552778,Manchester,NH,triangle,90,Triangle ufo over Manchester/Hooksett +2013-08-07,35.0536111,-94.6233333,Poteau,OK,light,30,6 reddish/orange lights hovering in sky +2013-08-07,47.6063889,-122.3308333,Seattle,WA,circle,420,Slow and steady moving orange/red circles sighted in lower altitude sky above northeast Seattle +2013-08-07,39.1513889,-97.8888889,Ada,KS,sphere,1200,While sitting out side these red/orange sphere apaired for a short time going up and then east. +1945-08-08,33.6602778,-117.9983333,Huntington Beach,CA,disk,300,MY DAD SAYS HIS AUNT AND UNCLE SAW THIS CRAFT IN 1944 OR 1945 DURING THE DAY IT HOVERED OVER THEM FOR ABOUT 5 MINUTES IN THE AREA OF BU +1955-08-08,39.0911111,-94.4152778,Independence,MO,fireball,300,Flaming ball of light making right angle turns seen from front porch on a hot summer's night. +1958-08-08,43.5780556,-70.3222222,Scarborough,ME,disk,600,I was a young girl around 1958 when I saw a saucer-shaped craft on the ground in daylight resting between two sets of power lines +1962-08-08,41.0333333,-82.0122222,Lodi,OH,other,600,cluster UFO's ...no sound...it looked like one craft with.approx. 10-12 circular with bright red lights. Broke apart into seperate craf +1965-08-08,33.0738889,-106.0180556,Tularosa,NM,disk,300,Object in the skys, 1963 or 65? +1965-08-08,44.98,-93.2636111,Minneapolis,MN,changing,120,A firery ball came from a high altitude at a steep angle in the northern sky. It leveled off and changed to a dome shape with a pulsati +1967-08-08,40.6955556,-73.3261111,Babylon,NY,circle,120,Circular object with lights around perimeter hovering over witness +1967-08-08,37.4694444,-105.8694444,Alamosa,CO,light,1200,Alamosa UFO disappears after flash of blinding light. +1968-08-08,39.9347222,-75.0311111,Cherry Hill,NJ,disk,2700,Early 1960's South New Jersey Large circular craft, zig-zag movement, visable more than 20 minutes. +1974-08-08,41.2761111,-72.8688889,East Haven,CT,light,60,Police officers observe UFO 2 nights consecutively in August of 1974 +1974-08-08,41.6661111,-81.3397222,Mentor,OH,disk,600,It wasn't just a light, a shape or a "ball". This thing had the mechanics, details and lights. And of course it was dead silent! +1974-08-08,42.1969444,-88.0933333,Lake Zurich,IL,sphere,600,The objects I saw changed me forever +1975-08-08,41.9294444,-88.7502778,Dekalb,IL,light,10,at 10:00 pm I saw a pin point of light slowly descending into a area were there nothing for miles but cornfields +1976-08-08,38.5816667,-121.4933333,Sacramento,CA,rectangle,300,fire emitting rectangle shaped object traveling at high velocity, low attitude roocket blasting noise then vanished silent. +1976-08-08,47.7883333,-122.3075,Mountlake Terrace,WA,triangle,300,Triangle craft headed towards Boeing Everett, WA facility +1976-08-08,28.2713889,-82.7197222,Port Richey,FL,formation,120,5 glowing, pale green spheres in a chevron formation slowly flying north to south +1977-08-08,43.0716667,-70.7630556,Portsmouth,NH,rectangle,60,shoe box shape in New Hampshire in late ྂs. +1977-08-08,41.7386111,-80.77,Jefferson,OH,triangle,180,Triangle shaped with red, blue, white, lights on corners. Making right turns. +1980-08-08,35.3619444,-86.2094444,Tullahoma,TN,light,1260,Lights forming a triangle in the sky +1981-08-08,32.5230556,-92.6377778,Ruston,LA,oval,300,SMALL OVAL SHAPE, IT APEARED TO WHITE FLAMES THAT COMING FROM THE BOTTOM. THERE APPEARED TO BE SOMEONE IN THE CRAFT THAT WAS LOOKING +1983-08-08,41.9116667,-86.01,Cassopolis,MI,sphere,120,Spherical Orb GlidingThrough the Sky. +1984-08-08,45.0275,-84.6747222,Gaylord,MI,other,120,Pinwheel with star like center. +1986-08-08,41.1538889,-80.7016667,Girard,OH,fireball,90,Two Fiery Orbs Flown Over The House Tops From South to North +1988-08-08,38.8694444,-89.0886111,Shobonier,IL,other,2,i was around 6 or 8 i lookede out of the van and there it was , i told my parents but they didnt believe me so i never talked about it +1988-08-08,40.9955556,-82.6672222,Plymouth,OH,triangle,900,While driving on ST. RT. 61 between Shelby and Plymouth I spotted a huge triangle shaped object. +1988-08-08,44.5861111,-69.5513889,Benton,ME,sphere,120,Reflective spherical object on or above my car going with the flow and then took off with now noise and no lights. +1989-08-08,41.1594444,-73.7652778,Chappaqua,NY,cylinder,120,Hudson Valley UFO, summer late 1980s +1989-08-08,45.5947222,-121.1775,The Dalles,OR,triangle,1800,I was watching a single light such as an airplane might do when it is coming at you, but it didn't move it just sat there, it was about +1990-08-08,33.6602778,-117.9983333,Huntington Beach,CA,sphere,1800,Four Round Metallic Spheres in California +1990-08-08,42.3583333,-71.0602778,Boston,MA,oval,3600,An unidentified flying (still?) object sighted in Boston in the summer of 1990 +1990-08-08,41.2586111,-95.9375,Omaha,NE,other,89,the stealth ufo using antigravitic technoligies +1993-08-08,36.8347222,-81.515,Marion,VA,other,60,hard metal octagon shaped object floating away above tree tops in marion, va in summer of 1993 +1996-08-08,33.0738889,-106.0180556,Tularosa,NM,sphere,45,Glowing orb of light follows test sled and then shoots off toward viewer. +1997-08-08,33.3702778,-112.5830556,Buckeye,AZ,light,120,bright blue light going east to west went from horizon to horizon in less than 2 min at estimated alt of 35ꯠ feet indicating very gr +1997-08-08,42.6702778,-71.3025,Dracut,MA,triangle,120,A large black flying machine shaped like a triangle that made no sound. +1997-08-08,43.1086111,-77.4877778,East Rochester,NY,sphere,30,This is the second time I have seen a black spherical object in this general area. +1997-08-08,47.8211111,-122.3138889,Lynnwood,WA,other,960,Noticed object low and far in Western sky just north of setting sun. Object was round and did not move. +1997-08-08,40.7297222,-73.2108333,West Islip,NY,other,300,This was peculiar to say the least. We had just returned from a day trip to Fire Island and I was on my back porch (lived basically nex +1997-08-08,60.5544444,-151.2583333,Kenai,AK,cigar,600,BACK in 1997 I seen a Cigar shaped UFO. +1998-08-08,32.8544444,-79.975,North Charleston,SC,unknown,480,Saw a UFO at night in the woods near power lines. +1998-08-08,47.2530556,-122.4430556,Tacoma,WA,other,90,On the morning of approximately August 08, 1998 I along with a friend were fishing at the mouth of the Puyallup River where it empties +1998-08-08,34.7658333,-84.77,Chatsworth (Fort Mountain),GA,circle,10,MUFON/GEORGIA FOLLOW-UP REPORT: Hovering dark mass surrounded by yellow glow +1999-08-08,40.7858333,-74.7805556,Long Valley,NJ,disk,1800,it was big and green and had flashy lights. It looked to have shed a light down on something and take that something up. It was rathe +1999-08-08,40.7141667,-74.0063889,New York City (Brooklyn),NY,oval,900,UFO'S in Brooklyn New York broad daylight sighting +1999-08-08,36.3547222,-79.6647222,Reidsville,NC,triangle,7200,Triangle object over field, 30 ft from ground, also saw being from this sighting +1999-08-08,39.7391667,-104.9841667,Denver,CO,unknown,640,Saw a very bright amber light eluminating out of a four pointed objected. about 10:30pm and around this date. +2000-08-08,38.7297222,-120.7975,Placerville,CA,unknown,30,unusual light seen traveling in a northwesterly direction near Placerville, CA +2000-08-08,40.4775,-74.6272222,Hillsborough,NJ,sphere,600,I saw a round metalic object that had indentations. It was moved slowly across the sky. the object appeared to move under its own pow +2000-08-08,40.7141667,-74.0063889,New York City (Staten Island),NY,changing,300,gray shiny object changing from oblong to round to flat disk traveling from south to north in daytime sky. +2000-08-08,33.5927778,-79.0088889,Garden City,SC,light,7200,Orange balls of light over the ocean fading in and out +2000-08-08,44.9008333,-93.5888889,Shorewood,MN,sphere,300,Orange Orb seen flying around town in Minnesota. +2000-08-08,38.4327778,-90.3775,Arnold,MO,light,1200,Three lights came out of the sky and circled and dissapeared. +2001-08-08,32.9344444,-97.2513889,Keller,TX,fireball,7200,We saw a fireball in the sky +2001-08-08,47.5675,-122.6313889,Bremerton,WA,diamond,3600,Two bright white diamond shaped lights in clear night sky. +2001-08-08,47.6588889,-117.425,Spokane,WA,unknown,1680,Unusual light outside my bedroom window. +2001-08-08,47.6063889,-122.3308333,Seattle,WA,light,10,Green Quick Moving Light +2001-08-08,47.7558333,-122.3402778,Shoreline,WA,circle,20,Light grey, no lights, traveling fast and low, small in size, silent, steady path, illuminated by city lights on bottom. +2001-08-08,43.6763889,-73.75,Brant Lake,NY,sphere,10,A sphere shaped object crossing across the night sky +2002-08-08,40.4416667,-74.1302778,Keansburg,NJ,circle,20,I was outside with my dog, in NJ, when I noticed a white light through the trees. It was high up in the sky, but in the horizon. As it +2002-08-08,44.4758333,-73.2125,Burlington,VT,cylinder,60,a self propelled pentoid or cylinder shaped object that looked light brownish and it moved like a plane. +2002-08-08,42.4083333,-71.0125,Revere,MA,sphere,90,5-Foot Diameter Dull-Black Noiseless Sphere, Buzzing Buildings +2002-08-08,47.6063889,-122.3308333,Seattle,WA,disk,900,Hovering for about 10 minutes. Seemed large and very shiny. It would seem to flash when sun hit it. +2002-08-08,36.9669444,-109.6372222,Mexican Water,AZ,triangle,420,One night I was sitting outside with my baby girl, hoping to see a falling star. We were just sitting in our lounge chair looking up i +2002-08-08,39.1619444,-84.4569444,Cincinnati,OH,sphere,30,Did you see what I saw on 8/8/02? +2002-08-08,33.9077778,-81.5475,Batesburg,SC,unknown,2700,Bright object with an orange tint hovered for 45 minutes. +2002-08-08,42.1666667,-83.7816667,Saline,MI,unknown,3,FAST moving BIG object with smaller one tailgating. +2003-08-08,38.4094444,-82.2947222,Barboursville (Area, Rural),WV,unknown,240,intense blue light on route 10 between davis creek mountain and barboursville(rural area) +2003-08-08,42.9955556,-71.4552778,Manchester,NH,diamond,30,shiny diamond object that made a pocket in the clear blue sky and disappeared through it leaving a whisp of cloud +2003-08-08,33.4483333,-112.0733333,Phoenix,AZ,oval,900,glowing large object spotted over phoenix +2003-08-08,33.4147222,-111.9086111,Tempe,AZ,flash,900,FLASHING LIGHT/ NO MOVEMENT/VERY BRIGHT AND HIGH IN THE SKY +2003-08-08,33.5091667,-111.8983333,Scottsdale,AZ,disk,900,3 objects moving south towards Tucson. Were stationary 2 just vanished 3rd remained moving slowly towards the south +2004-08-08,46.51,-114.0922222,Stevensville,MT,circle,1500,red circle during thunderstorm +2004-08-08,40.7583333,-73.6352778,East Williston,NY,sphere,780,UFO over Long Island ((Venus??)) +2004-08-08,39.9625,-76.7280556,York,PA,other,7200,I saw 5 lights in a row close together, stationery but moved backwards over the course of 2 hrs, high in the sky. ((Venus??)) +2004-08-08,38.005,-121.8047222,Antioch,CA,flash,3600,blue flashing light with undulating whisp traling seen south west of downtown antioch from 10:30-11:30 pm on 08/08/2004 +2004-08-08,47.6741667,-122.1202778,Redmond,WA,circle,60,11:25am - East of Redmond, WA. - white circular object moving in a zigzag manner. Moved North for a little while and then went East. +2004-08-08,40.0377778,-76.3058333,Lancaster,PA,circle,2400,30 plus circle objects +2004-08-08,39.7458333,-75.5469444,Wilmington,DE,sphere,15,I observed a metallic sphere travelling west to east below cloud level. +2004-08-08,46.8772222,-96.7894444,Fargo,ND,cigar,1,Large, bright silvery object moving very rapidly inside chemtrail. +2004-08-08,43.1547222,-77.6158333,Rochester,NY,cigar,40,Cigar shaped object in sky +2004-08-08,37.9841667,-120.3811111,Sonora,CA,triangle,420,Triangular Object Reappears for Third Time over Sonora, CA ((NUFORC Note: Probable aircraft. PD)) +2004-08-08,35.1494444,-90.0488889,Memphis,TN,chevron,180,Cluster of Orbs followed by formation of single Orbs +2004-08-08,47.2152778,-123.0994444,Shelton,WA,light,5,Bright orange object flying very rapidly to the southwest, no tail and too fast to be meteorite. +2005-08-08,44.0463889,-123.0208333,Springfield,OR,rectangle,300,bright, white space shuttle sited 15ꯠ - 20ꯠ' over springfield, oregon, 7:14am 08/08/05, no sound +2005-08-08,47.6063889,-122.3308333,Seattle,WA,cigar,60,A silver cigar-shaped object stationery in the evening sky over Seattle +2005-08-08,42.2711111,-89.0938889,Rockford,IL,circle,15,One of the sightings in Rockford I have seen. +2005-08-08,37.5986111,-122.3861111,Millbrae,CA,light,2,Bright fast moving light in the western bay area sky, near San Francisco. +2005-08-08,33.5777778,-101.8547222,Lubbock,TX,changing,180,the shape started with cloudy formation then evovled into a burnted orange color starting at the bottom of the cloud. Then turned more +2006-08-08,28.6697222,-81.2083333,Oviedo,FL,light,20,On a very clear night, a star-like light flashed three times heading south overhead and vanished. +2006-08-08,34.2005556,-86.1663889,Boaz,AL,oval,300,bright light oval shape crusing speed, then turned angle, then sped out of sight into space +2006-08-08,40.0377778,-76.3058333,Lancaster,PA,oval,30,August 8, 2006 Lancaster, PA at 1 pm I saw a steel blue oval shaped object traveling rapidly in a straight line in front of the clouds +2006-08-08,29.4238889,-98.4933333,San Antonio,TX,disk,300,TWO DISK SHAPED OBJECTS OVER SAN ANTONIO +2006-08-08,37.5483333,-121.9875,Fremont,CA,disk,25,strange shiny silver object flew fast over the hill, stops, then disappears +2006-08-08,33.0461111,-96.9938889,Lewisville,TX,sphere,30,In cloudless blue sky observed dark orange sphere following a plane and then it disappeared into thin air +2006-08-08,31.0747222,-96.1425,Cross Roads,TX,unknown,600,Erracticly flashing, multicolored lights moving fast making itermittant zigzag motions +2007-08-08,40.7608333,-111.8902778,Salt Lake City,UT,light,2400,stationary red and blue flashing lights in eastern Salt Lake City sky +2007-08-08,27.9472222,-82.4586111,Tampa,FL,triangle,2700,Smoke screen from aircraft shaped like three v's sideways with two lower case e's off to the left ........at least 6 aircraft +2007-08-08,30.5880556,-103.8941667,Fort Davis,TX,fireball,240,green fireball sightings in Texas +2007-08-08,38.6272222,-90.1977778,St. Louis,MO,light,15,Pulsating , odd performing "aircraft"(?) +2008-08-08,42.6522222,-78.8972222,Eden,NY,circle,900,Unusual bright zig-zagging lights in the Eden, North Collins NY sky. +2008-08-08,43.8013889,-91.2394444,La Crosse,WI,disk,120,((HOAX??)) I saw a saucer shaped object moving at high speeds that had lights blinking along the edges of it. +2008-08-08,36.6102778,-88.3147222,Murray,KY,flash,6,oval object shoots across the sky and explodes in bright flash. +2008-08-08,33.8594444,-84.6838889,Powder Springs,GA,triangle,60,I saw an object with three red, flashing lights forming a triangle flying low over my neighborhood. +2008-08-08,26.2030556,-98.2297222,Mcallen,TX,disk,180,Daytime Objects Unexplained +2008-08-08,45.3002778,-122.9719444,Newberg,OR,light,120,object over newberg oregon, 2 witnessed, white light with three red lights attached. +2008-08-08,37.3688889,-122.0352778,Sunnyvale,CA,egg,60,Reflective silver object, possibly orb or egg shaped flying near some fighter jets this afternoon in Sunnyvale, CA +2008-08-08,33.2147222,-97.1327778,Denton,TX,disk,300,I went outside to have my afternoon break, which today was at 5:25. I happened to look up and see the same object as I had seen the +2008-08-08,41.85,-87.65,Chicago (Over Nw Indiana?),IL,other,3600,Bright orange reddish lights flickering over lake Michigan ((Chicagoland area)) +2008-08-08,26.1833333,-98.1227778,Alamo,TX,sphere,600,2 silver "tubes" seen flying in sky. Not weather balloons. No wings. Moving fast. +2008-08-08,38.2541667,-85.7594444,Louisville,KY,fireball,60,Multiple witnesses observe moving light. ((NUFORC Note: Possible sighting of ISS. PD)) +2008-08-08,32.64,-117.0833333,Chula Vista,CA,circle,120,Small white dot, moved relativily slowly shows continuously at App. 9:00 PM PST +2008-08-08,43.3636111,-73.5319444,Kingsbury,NY,sphere,25,silent orange globe of unknown origin. +2008-08-08,32.7825,-117.2513889,Mission Beach (San Diego),CA,light,300,two orange shaped objects which moved somewhat in tandem for several minutes and then eventually disappeared. +2008-08-08,39.3761111,-77.155,Mt. Airy,MD,light,3,Very bright light moved extremely quickly across the sky. Seen again within a few seconds going opposite direction. +2008-08-08,27.8002778,-97.3961111,Corpus Christi,TX,light,900,bright light over Corpus Christi, Texas takes 90 degree evasive action when Navy plane approaches & disappears. +2008-08-08,32.7152778,-117.1563889,San Diego,CA,other,420,Two orange "X" objects +2008-08-08,30.4505556,-91.1544444,Baton Rouge,LA,fireball,600,Fire Ball object with comet like tail changing directions and dropping flares over Baton Rouge +2008-08-08,38.6786111,-121.2247222,Orangevale,CA,circle,10,Round ball of eluminating light which was whitish blue Explodes and the pieces stayed elumanated! +2008-08-08,40.1741667,-75.0441667,Southampton,PA,triangle,3000,Huge bright yellow/reddish trangulair light in the N sky +2009-08-08,42.3833333,-71.4166667,Sudbury,MA,triangle,180,Huge low flying and very loud UFO over sudbury MA +2009-08-08,27.3361111,-82.5308333,Sarasota,FL,cylinder,90,spotted hovering silent clyndrical object. +2009-08-08,38.8422222,-106.1305556,Buena Vista,CO,light,900,Star like object moving randomly within 5 degree box on the horizon. +2009-08-08,39.5236111,-87.125,Brazil,IN,light,25,vanishing star over brazil indiana +2009-08-08,41.5455556,-71.2919444,Middletown,RI,fireball,5,~24 orange/red fireball shaped objects moving in pairs along common flight path before ascending and dissappering. +2009-08-08,33.7488889,-84.3880556,Atlanta,GA,sphere,45,Ring of lights floating over Midtown, Atlanta +2009-08-08,30.4505556,-91.1544444,Baton Rouge,LA,fireball,240,Fire In Sky-- Baton Rouge, LA +2009-08-08,43.4763889,-70.7188889,Alfred,ME,rectangle,600,4 rectangular glowing objects glide silently by and ascend until they disappear into a point in Alfred Maine. +2009-08-08,42.2638889,-88.8441667,Belvidere,IL,unknown,30,Object moving west to east very quickly, no noise, one steady light in front one flashing light at rear. +2009-08-08,39.5297222,-119.8127778,Reno,NV,disk,2700,Disk-shaped object sighted with rotating lights, only a few hundred feet away. +2009-08-08,41.85,-87.65,Chicago,IL,circle,10,Circle light ball in a city,traveling perfectly straight and at the same height all the time. +2009-08-08,33.2486111,-111.6336111,Queen Creek,AZ,sphere,1200,Bright red sphere glowing in the sky. +2009-08-08,38.2116667,-89.9941667,Red Bud,IL,circle,180,Large circular object with red blinking lights over Red Bud, IL Sunday Night +2009-08-08,43.5197222,-85.08,Blanchard,MI,sphere,600,Orange orb or light in the night sky - Blanchard Michigan 8-8-9 +2009-08-08,59.6425,-151.5483333,Homer,AK,oval,40,Single light changing to multiple lights and back +2010-08-08,33.7488889,-84.3880556,Atlanta,GA,unknown,5,Large bright white light shot across sky going SSE towards Atlanta +2010-08-08,44.3633333,-98.2138889,Huron,SD,rectangle,10,((HOAX??)) It was at a stand still like it was waiting at a stop sign! +2010-08-08,43.1488889,-72.3611111,Alstead,NH,circle,7200,Bright lights last night way up by the stars noo flashing lights. ((NUFORC Note: Possible satellites, we suspect. PD)) +2010-08-08,33.8352778,-117.9136111,Anaheim,CA,cross,1380,Cross-like UFO off 91 freeway in Anaheim, CA. +2010-08-08,41.3572222,-88.4211111,Morris,IL,sphere,600,3 metalic spheres connected in a triangle in daytime +2010-08-08,43.0116667,-88.2313889,Waukesha,WI,circle,30,Red/Yellow blinking/flickering light with unpredictable flight path +2010-08-08,46.6022222,-120.5047222,Yakima,WA,unknown,180,Small object flying above jetliner +2010-08-08,38.7013889,-90.1486111,Granite City,IL,light,30,bright light, stationary,seemed to kind of roll then slowly dissapeared, +2010-08-08,41.77,-72.3055556,Coventry,CT,cigar,180,Two very bright lights in sky. +2010-08-08,39.4141667,-77.4108333,Frederick,MD,unknown,60,Four very bright white lights that hovered. +2010-08-08,42.5005556,-90.6644444,Dubuque,IA,light,600,Two Orange Spheres moments apart, followed by smaller moving star like object, which became two lights moving together from another dir +2010-08-08,43.7730556,-88.4469444,Fond Du Lac,WI,circle,90,very bright and silent light traveling across sky that camera captured as red and white bobber looking object. +2010-08-08,31.7586111,-106.4863889,El Paso,TX,light,600,Strange star-like object hovering over El Paso mountains, almost hit car and swooped down below the road (on mountain) disappearing. +2011-08-08,37.0513889,-122.0722222,Felton,CA,other,1800,Orange light was glowing in the distance.When looked with a binoculars it looked like an X the center had 4 lights, red green blue +2011-08-08,41.5008333,-90.4441667,East Moline,IL,light,180,What began as what appeared to be a stationary star started to fly and then faded from view. +2011-08-08,39.8083333,-104.9333333,Commerce City,CO,light,60,White light changes direction and zooms into space +2011-08-08,40.66,-111.9955556,Kearns,UT,chevron,900,Blue, purple and green craft hovering and flying up and down around Kearns, UT 8/8/2011 +2011-08-08,33.9022222,-118.0808333,Norwalk,CA,light,240,White spot over the CA skies +2011-08-08,41.2786111,-72.5280556,Clinton,CT,other,7380,I knew it was something strange and I went to go get my camera. +2011-08-08,35.6008333,-82.5541667,Asheville,NC,teardrop,120,Very bright white craft, thought it to be an airplane, but wasn't... Craft observed through binoculars and was teardropped with hump in +2011-08-08,38.4047222,-82.6005556,Catlettsburg,KY,sphere,8,Reflective sphere travelling West.... +2011-08-08,36.3811111,-75.8333333,Corolla,NC,sphere,300,Three strange orange lights in the sky above Corolla, NC +2011-08-08,32.7833333,-96.8,Dallas,TX,triangle,45,Smallish triangular "floating?" northwest direction, red, blue, yellow lights on corners, low flying. +2011-08-08,33.2,-117.2416667,Vista,CA,triangle,300,A bright red orbish thing coming from the north moving to the east +2011-08-08,42.3266667,-122.8744444,Medford,OR,light,205,Me and my friend were laying in a grassy hill in Medford, Oregon. We were on vacation, just counting bats and star-gazing. The stars we +2012-08-08,41.995,-73.8758333,Red Hook,NY,light,60,Strange noiseless light low in the sky moving south. +2012-08-08,37.78,-121.9769444,San Ramon,CA,sphere,1200,Sphere with red white green flashing lights +2012-08-08,39.9611111,-82.9988889,Columbus,OH,sphere,8,Orb in the night sky that accerated very fast +2012-08-08,45.5236111,-122.675,Portland,OR,unknown,8,Curious to know what is going on. +2012-08-08,41.8244444,-72.8941667,Canton,CT,light,1800,Single, unblinking, and inaudible orange point of light progressed across clear night sky of Canton CT. +2012-08-08,39.4436111,-77.545,Middletown,MD,fireball,10,Burst of flame and shot away. +2012-08-08,41.7002778,-73.9213889,Poughkeepsie,NY,triangle,25,As soon as i left my house i saw a white lighted triangle craft which i lost track of then found and then dissapeared. +2012-08-08,40.6638889,-74.2111111,Elizabeth,NJ,disk,600,It was a sauser shape object which was flying over Elizabeth very slowly and made no noise whatsoever it was very low and it had many m +2012-08-08,33.6888889,-78.8869444,Myrtle Beach,SC,sphere,300,Driving home from work on 501 we saw 2 orange lights in the sky and they faded within seconds. From our position we could tell that th +2012-08-08,33.6888889,-78.8869444,Myrtle Beach,SC,light,4,Unidentifed stream of appearing lights leaving trail/ seems to multilpy +2012-08-08,38.1302778,-121.2713889,Lodi,CA,fireball,300,3 orange fireballs moving across night sky +2012-08-08,33.8158333,-78.6802778,North Myrtle Beach,SC,formation,300,Two instances of strange lights over the ocean, one right after the other. +2012-08-08,33.9908333,-118.4591667,Venice,CA,light,6,Mystery dim light over Santa Monica, Ca +2012-08-08,39.6619444,-74.1655556,Surf City,NJ,sphere,30,Orangish glowing sphere floating across the sky??? +2012-08-08,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,900,Unidentified orange orbs flash and then synchronize over the ocean +2012-08-08,40.8963889,-78.2208333,Philipsburg,PA,fireball,120,Five reddish,orange balls slowly moving south over town.One ball staying still while the other four creating semetrical patterns in the +2012-08-08,44.855,-69.9002778,North Anson,ME,light,180,High speed light that seemed to wobble! +2012-08-08,33.6888889,-78.8869444,Myrtle Beach,SC,light,600,Lights over ocean +2012-08-08,33.6888889,-78.8869444,Myrtle Beach,SC,sphere,30,Sphere seen following jet +2012-08-08,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,420,Myrtle Beach spotted and recorded fireball/orbs. +2012-08-08,26.2030556,-98.2297222,Mcallen,TX,oval,10,I saw a ufo that was hovering from the sky, then dropped from the sky to the ground. +2012-08-08,45.7202778,-123.8927778,Nehalem,OR,light,300,Two, then one stationary red lights pulse, fade, then disappear offshore from Nehalem State Park +2012-08-08,40.7705556,-74.2330556,West Orange,NJ,sphere,600,10 - 14 reddish-orange spheres flying slowly over northern NJ. +2012-08-08,39.3577778,-78.0402778,Inwood,WV,triangle,10,Orange triangle with flames from tail shooting through sky above tree line +2012-08-09,44.2727778,-121.1727778,Redmond,OR,light,600,A brilliant white light traveling NE from the SE. no sound, no flashing lights just a big bright white light traveling slowly at arou +2013-08-08,45.9047222,-122.7427778,Woodland,WA,fireball,300,Light on Lewis River brighter than brightest star moved hundreds of miles very fast in non-linear fashion; not a human craft. +2013-08-08,44.2169444,-85.9577778,Wellston,MI,other,12,I was asleep in our tent camping with my family in The Manistee National Forrest.We have a tent that has a screen ceiling so we can sta +2013-08-08,40.1302778,-111.5777778,Mapleton,UT,light,15,Light swept like a searchlight across a field in front of my house and suddenly disappeared, no engine noises. +2013-08-08,33.7458333,-117.8252778,Tustin,CA,disk,1200,20 disk/saucers seen and split in Tustin,CA +2013-08-08,27.7705556,-82.6794444,St. Petersburg,FL,cylinder,1,Black high speed object, rod? +2013-08-08,33.5805556,-112.2366667,Peoria,AZ,light,600,Bright color changing light that shifts positions quickly, disappears and reappears over Peoria. +2013-08-08,25.7738889,-80.1938889,Miami,FL,triangle,10,Perfect equilateral triangle lights in the sky, disappeared after about ten seconds +2013-08-08,43.5172222,-70.3780556,Old Orchard Beach,ME,circle,120,Low flying bright object at the beach +2013-08-08,33.4483333,-112.0733333,Phoenix,AZ,light,180,The craft spotted following the International Space Station was "definitely" the Japanese Craft in hot pursuit to catch up. +2013-08-08,45.5236111,-122.675,Portland,OR,oval,40,Silent white-lighted oval orb followed at distace by smaller reddish object. +2013-08-08,44.5038889,-72.9980556,Jericho,VT,sphere,360,Small object following International Space Station. ((NUFORC Note: Japanese HTV-4 craft flying close to the ISS. PD)) +2013-08-08,47.6777778,-116.7794444,Coeur D'alene,ID,circle,360,HTV4 following ISS on 08AUG13 Spokane WA / Coeur d;Alene, ID. ((NUFORC Note: Japanese HTV-4 craft flying close to the ISS. PD)) +2013-08-08,45.4463889,-122.6380556,Milwaukie,OR,light,180,Small reddish light following the space station very closely behind.((NUFORC Note: Japanese HTV-4 craft flying close to the ISS. PD)) +2013-08-08,46.24,-116.6233333,Winchester (Near),ID,other,240,A five light pattern trailed by two lights maintained a northernly heading and constant speed. +2013-08-08,46.1880556,-123.83,Astoria,OR,light,120,Orb following space station. ((NUFORC Note: Japanese HTV-4 craft flying close to the ISS. PD)) +2013-08-08,47.6741667,-122.1202778,Redmond,WA,light,300,Amber Light Trails The International Space Station UFO sighting +2013-08-08,47.9791667,-122.2008333,Everett,WA,other,360,ISS visible pass followed very closely by a craft designated HTV4 +2013-08-08,32.7152778,-117.1563889,San Diego,CA,circle,300,15 flying objects over San Diego. +2013-08-08,44.9583333,-124.0166667,Lincoln City,OR,circle,240,Light orb over Lincoln City, Or. +2013-08-08,26.5216667,-82.1894444,Captiva,FL,flash,1200,6th, 7th and 8th SIGHTINGS OF "FLASHERS;" +2013-08-08,43.4452778,-71.4783333,Belmont,NH,unknown,240,Two orange dot moving across the night sky. ((NUFORC Note: Japanese HTV-4 craft flying close to the ISS. PD)) +2013-08-08,48.8466667,-122.5897222,Ferndale,WA,light,120,Went out back then saw space station with another trailing it i honestly cant remember exact time approx. 5 min later I saw another sat +2013-08-08,48.9466667,-122.4508333,Lynden,WA,cylinder,300,Black cylinder object with two solid light flying at a very slow speed eastward. It made no noise. Seen one law enforcement agent, me. +2013-08-08,34.0522222,-118.2427778,Los Angeles,CA,circle,180,It shot through the sky twice, it stayed still for a while and then disapeared. +2013-08-08,40.1502778,-74.0313889,Spring Lake Heights,NJ,light,180,Bright light that was undulating and wobbly +1957-08-09,32.7152778,-117.1563889,San Diego (North Of, At Sea),CA,disk,900,At least a hundred miles out to sea, a long time ago, in 1957, a very interesting sighting, after midnight. First report. +1961-08-09,42.1102778,-88.0341667,Palatine,IL,disk,1800,saw 5 orange disks bobbing up & down and side to side watching us at a missle base +1968-08-09,44.0522222,-123.0855556,Eugene,OR,cigar,300,A cigar shaped large object, that blended colors from red to white. Stayed about 3 min. +1971-08-09,37.9344444,-121.4261111,Holt,CA,disk,300,this sauser hoovered over tin quanset hut shed 3 minutes lit up the entire building then shot off at fast speed +1974-08-09,47.6588889,-117.425,Spokane,WA,cigar,15,Confirmation of 1974 report 34 years later. +1974-08-09,47.6588889,-117.425,Spokane,WA,other,10,I was 11 years old and happened to be in a car with my mom, and we saw a bullet shaped craft with flames comming out of the rear. I hav +1977-08-09,39.7391667,-104.9841667,Denver,CO,triangle,15,Myself and a friend's sister were standing on a rear balcony at 18th and Franklin St. (SE corner, alley) when we both seemed to "sense" +1993-08-09,42.5083333,-89.0316667,Beloit (East Of),WI,triangle,600,2 Triangle UFOs Spotted over Wisconsin +1993-08-09,42.5997222,-71.3677778,Chelmsford,MA,triangle,300,a friend and i were going home i noticed three lights just above the treeline of a local park, so i stopped the car in the middle of th +1993-08-09,39.8366667,-105.0366667,Westminster,CO,triangle,60,A white puffy cottonball appeared and then a triangle emerged from it. It was totally silent and had a light on each corner. +1994-08-09,47.9791667,-122.2008333,Everett,WA,triangle,900,Triangular UFO with maroon lights over Everett Washington. +1997-08-09,44.8408333,-93.2980556,Bloomington,MN,triangle,5,Tiangular with rounded edges and blue,red lights on the bottom that were fashing not very brightly.We were coming home from store, stor +1997-08-09,39.5358333,-76.3486111,Bel Air,MD,other,180,Object sited while in stationary position then object zigged down then left then up then right then up into the clouds then reappeared +1998-08-10,44.6613889,-84.7147222,Grayling,MI,sphere,1800,Brownish orange, large lights. a smaller , same colored light came out from under one of the lights. Lights would blink out then reappe +1999-08-09,33.7319444,-84.9191667,Villa Rica,GA,other,5,Crown shaped object seen 1/4 mile away moving fast just above treetops. Metallic, smooth with silver color. +1999-08-09,40.6936111,-75.1905556,Phillipsburg,NJ,unknown,600,Southwest sky. Rocket or missle shaped went straight up until lost from view (binoculars) +1999-08-09,46.6022222,-120.5047222,Yakima (About 10-30 Miles Nw Of),WA,fireball,180,Comet-like object, high in sky, set at \ angle, nearly vertical, stationary, no aircraft in sight. +1999-08-09,40.0891667,-75.3963889,King Of Prussia,PA,cross,15,While on our roof, my two sons and I saw three glowing, noiseless orange/brown/yellow glowing objects flying fast in perfect formation +1999-08-09,39.9611111,-82.9988889,Columbus,OH,flash,2,2 bright flashes in the sky. +2000-08-09,40.7002778,-73.5933333,Uniondale,NY,fireball,12,I saw 1 object move quick from the east stop for about 2 seconds, cut at a 15-25 degree angle then i lost sight for a second behind tre +2000-08-09,35.0844444,-106.6505556,Albuquerque,NM,circle,20,i was taking pictures of the sunset and didn't notice until later what had passed in front of my lense. +2000-08-09,38.9716667,-95.235,Lawrence,KS,other,600,Spectacular "rainbow" cloud in Kansas, too! +2000-08-09,34.0211111,-118.3955556,Culver City,CA,light,180,While siting out on my balcolney at around 9:48pm Pacific time, I saw a Flying object about the size of a large star fly over head at a +2000-08-09,35.2413889,-87.9177778,Houston County,TN,sphere,60,Two large gold low flying sphere's move slowly, silently, across the horizon. +2000-08-09,33.4502778,-88.8183333,Starkville,MS,fireball,40,I thought, I was about to see a shooting star, when a lime green ball of light erupted and trailed downward for over 30 sec. +2000-08-09,34.5361111,-117.2902778,Victorville,CA,fireball,300,Dancing Fireball-type Lights with succeeding Flash, Sonic Boom. +2001-08-09,39.7683333,-86.1580556,Indianapolis,IN,oval,120,I have a REAL PICTURE of a UFO!!!!!! +2001-08-09,35.3733333,-119.0177778,Bakersfield,CA,disk,120,saw what appeared to be saucers,flying at rapid rates of speed,flashing lights on all of them some in a circular motion, others diagona +2001-08-09,34.8641667,-118.1625,Rosamond,CA,oval,420,Oval orange colored object sighted in evening mojave desert sky traveling noiseless for 7 minutes and vanishes +2001-08-09,38.4725,-90.8866667,Villa Ridge,MO,light,120,White light that changed color, disappeared & reappeared +2001-08-09,35.8880556,-106.3063889,Los Alamos,NM,light,15,Jet chasing object over Los Alamos National Labs +2002-08-09,29.4238889,-98.4933333,San Antonio,TX,fireball,12,At appox 12:24am myself and my neighbor witnessed an object that looked like a falling star travel at a high speed across the northwest +2002-08-09,38.0194444,-122.1330556,Martinez,CA,flash,6,bright streak in the sky +2002-08-09,47.6063889,-122.3308333,Seattle,WA,diamond,90,Large diamond-shaped UFO with four round projections silently glides over downtown Seattle. +2002-08-09,42.3416667,-72.5888889,Hadley,MA,oval,10,Briefly witnessed small ball of light in sky before it disappeared +2002-08-09,40.4405556,-79.9961111,Pittsburgh,PA,light,10,Bright light that moved slowly and stayed in one spot for l/2 hour +, repeated this for two hours+. +2002-08-09,40.2572222,-74.3961111,Manalapan,NJ,diamond,1800,Foggy white diamond shaped object spotted in sky before fading away. +2002-08-09,36.175,-115.1363889,Las Vegas,NV,unknown,3600,large glowing object over mnts west of vegas. seen by many people located in different areas of the valley. object has been there alot +2002-08-09,36.5483333,-82.5619444,Kingsport,TN,light,5400,Flashing lights moving across sky in northern direction. +2002-08-09,47.0530556,-122.2930556,Graham,WA,cigar,120,The object appeared in the night sky like a brigt star. However it was brighter than any other I,d ever seen It was moving in a south e +2002-08-09,47.6063889,-122.3308333,Seattle,WA,light,60,craft seen over seattle with no running lights and no sound. +2002-08-09,37.9375,-107.8116667,Telluride (Nearest Town),CO,light,60,White star-like light wobbled as it got closer to me, then it was scared away by 5-6 F-15s that scoured the area for hours afterwards. +2003-08-09,47.1052778,-104.7119444,Glendive,MT,chevron,180,3 chevron shaped objects flying in formation that disappeared +2003-08-09,37.0511111,-122.0136111,Scotts Valley,CA,disk,1800,Santa Cruz County (Scotts Valley) 3 objects moving, not human like, 1 identified as saucer, 6 witnesses +2003-08-09,36.1694444,-75.7555556,Duck,NC,sphere,30,saw something characteristic of a bright star moving at plane's speed which changed directions and then disappeared +2003-08-09,45.4983333,-122.4302778,Gresham,OR,light,420,OR UFO Review Case: Investigative findings and conclusions to the triangle lights sighting case in Gresham Oregon, August 9th, 2003. +2003-08-09,36.1658333,-86.7844444,Nashville,TN,unknown,3600,ON 8/9/03 I OBSERVED AN OBJECT IN THE DISTINT NIGHT SKY. AT FIRST I THOUGHT IT WAS A STAR,BUT THEY WERE NO OTHER STARS IN THE NIGHT SKY +2004-08-09,40.3977778,-105.0744444,Loveland,CO,disk,1800,4 am i was coming home from work........saw a light far away moving fast and it looked like it was blinking or flashing +2004-08-09,33.4222222,-111.8219444,Mesa,AZ,cigar,120,I was turning from Baseline onto southbound Hawes RD. I saw what appeared to be a redish orange blimp looking object. It was very brigh +2004-08-09,45.5236111,-122.675,Portland,OR,triangle,5,7 very fast moving lights over Portland Oregon! +2004-08-09,40.3977778,-105.0744444,Loveland,CO,disk,3600,object white in color with red glow around it +2004-08-09,38.5816667,-121.4933333,Sacramento,CA,light,600,Bright light near Venus +2004-08-09,47.6063889,-122.3308333,Seattle,WA,cigar,3600,Four bright cigar-shaped objects held their position high above the Cascades, side by side, for at least 40 minutes. +2004-08-09,39.0997222,-94.5783333,Kansas City,MO,sphere,30,Two clusters of white dots in the daytime sky +2004-08-09,42.575,-71.0791667,North Reading,MA,unknown,120,there was 3 objects moving in a circular motion, then went in oposite directions faster than i ever seen anything move. +2004-08-09,36.1536111,-85.6436111,Baxter,TN,unknown,1200,My husband and I were sitting on our front porch in Baxter, TN (Putnam Co, right off of I-40, exit 280. About 70 east of Nashville.) Th +2004-08-09,33.8358333,-79.0480556,Conway,SC,unknown,2,object moving at a high rate of speed. +2004-08-09,35.6225,-117.67,Ridgecrest,CA,light,5,White satellite or starlike object that did an "S" turn and a loop before disappearing +2004-08-09,40.115,-111.6541667,Spanish Fork,UT,triangle,15,unnatral high flying craft flys faster than any man made craft triangle light pattern +2004-08-09,33.0580556,-112.0469444,Maricopa,AZ,light,600,blinking lights above Table Top mountain... +2004-08-09,42.1969444,-88.0933333,Lake Zurich (Sub Of Chicago),IL,flash,2,A sudden extraordinary occurance in the sky...seeing at near range a ufo...traveling fast, low, horizontal as a ball and streak. +2005-08-09,34.0522222,-118.2427778,Los Angeles,CA,unknown,2,silent white and red lights filling my backyard two hours before space shuttle landing. +2005-08-09,29.0255556,-80.9272222,New Smyrna Beach,FL,fireball,4,Bluish ball of light observed at New Smyrna Beach Florida. Possible bolide. +2006-08-09,25.9013889,-97.4972222,Brownsville,TX,triangle,15,2 triangular shaped objects spinning around each other over the roof of an apartment in Brownsville, Texas. +2006-08-09,39.1652778,-86.5263889,Bloomington,IN,circle,2,white falling circle in the sky in Bloomington Indiana +2006-08-09,34.2572222,-118.6002778,Chatsworth,CA,triangle,900,5:40 a.m. 8/9/06 HugeTriangular Craft Seen flying over Chatsworth, Ca +2006-08-09,30.3319444,-81.6558333,Jacksonville,FL,light,60,it was a very bright light in the eastern sky, it was a full moon with clear skys it was parial to the moon.this object was of triangu +2006-08-09,27.8002778,-97.3961111,Corpus Christi,TX,triangle,30,triangle shape object fell very slowly into the sea +2006-08-09,33.6613889,-95.2663889,Detroit,TX,oval,120,As i was driving to my house the craft was hovering above the road. I could make out tall things moving around inside. They stopped as +2006-08-09,39.7458333,-75.5469444,Wilmington,DE,sphere,900,3 objects interacting over DE City +2006-08-09,32.7152778,-117.1563889,San Diego,CA,light,1,UFO white light reported accelerating at extremely high rate of speed spotted in San Diego!!!! +2006-08-09,42.4383333,-74.6877778,Harpersfield,NY,light,600,bright orange/yellow lights seen hovering above tree tops,no sound. +2006-08-09,46.6022222,-120.5047222,Yakima,WA,light,120,Light appears, dims and again appears, slowly moving due north. +2006-08-09,39.7047222,-105.0808333,Lakewood,CO,disk,480,i was walking outside my house late one night and i saw about four bright saucer shaped craft floating low almost at the tree line.(i l +2007-08-09,41.7858333,-88.1472222,Naperville,IL,sphere,5,Bright orange sphere moving at an extremely fast speed, North-Eastern Illinois +2007-08-09,38.9952778,-110.1611111,Green River,UT,diamond,300,A good friend and I were traveling westbound on I-70 a few miles west of Green River, Utah as we had just stopped to gas up there. We w +2007-08-09,40.9747222,-84.8683333,Monroeville,IN,cylinder,40,Light grey colored cylinder moving slowly upwards as it crossed the sky. +2007-08-09,26.2030556,-98.2297222,Mcallen,TX,sphere,600,When returning with take out food I noticed a bright star-like light in the sky. It was too early for a star. I took my food into the +2007-08-09,34.9488889,-85.2569444,Fort Oglethorpe,GA,circle,1800,Witnessed while in backyard pool, 5 star-like lights traveling east to north and west to north-east zig-zagging. +2007-08-09,36.3133333,-82.3536111,Johnson City,TN,light,600,bright light being chased by planes +2007-08-09,37.3280556,-119.6483333,Oakhurst,CA,triangle,15,3 huge Triangle objects headed from Yosemite to Fresno seen in Oakhurst CA +2007-08-09,41.2922222,-89.5061111,Tiskilwa,IL,triangle,240,Dark triangle with lights seen at low altitude +2007-08-09,32.2216667,-110.9258333,Tucson,AZ,circle,60,small Sesna size orange glowing orb traveling fast +2008-08-09,39.5297222,-119.8127778,Reno,NV,sphere,5,Normally you can't see bright stars in downtown Reno but when i was looking up at the sky i saw a bright sphere dance around for a se +2008-08-09,40.6638889,-74.2111111,Elizabeth,NJ,disk,120,I saw a huge disk w/ 2 big lights and several smaller lights around it. +2008-08-09,40.4405556,-79.9961111,Pittsburgh,PA,disk,120,((HOAX)) orange white and red lighted rotating disk moving up and down then suddenly flew away at a very fast pace. +2008-08-09,37.5483333,-121.9875,Fremont,CA,sphere,240,Saw four spheres in the sky, paired up, and moving oddly. +2008-08-09,34.0522222,-118.2427778,Los Angeles,CA,light,300,Silver Objects Hovering Above Los Angeles +2008-08-09,37.1672222,-87.6925,Dawson Springs,KY,circle,450,Two small orbs seen hovering over Dawson Springs, KY at a great distance. +2008-08-09,33.3941667,-104.5225,Roswell,NM,light,180,09/08/08 Roswell, NM Light (object reflecting setting sun light) still, then dash e/se in less than one sec.to horizon +2008-08-09,30.0797222,-95.4169444,Spring,TX,circle,900,Large, glowing bright circular object moving accross sky. No sound or strobe lights. Slowly moving & then sped up & vanished +2008-08-09,44.1197222,-70.1080556,Sabattus,ME,unknown,240,Fast high moving white lights in the clear night sky that disappeared from view. +2008-08-09,30.4505556,-91.1544444,Baton Rouge,LA,fireball,180,Fire in the sky +2008-08-09,41.5180556,-83.3591667,Genoa,OH,unknown,180,My husband was the first to notice them. There was about 8 orange lights in the sky.He ran to the house to get me. He said to hurr +2008-08-09,29.7630556,-95.3630556,Houston,TX,light,3600,Series of tall columns arorned with white lights and alternating on/off from left to right +2008-08-09,41.9538889,-75.2808333,Hancock,NY,light,60,Orange starshaped light in the sky +2008-08-09,38.0408333,-122.7869444,Olema,CA,triangle,30,Olema, Ca. UFO sighting +2008-08-09,45.4438889,-93.7361111,Orrock,MN,light,420,Object leaves sky in a flash, returns in a flash and is followed by another object +2009-08-09,37.3394444,-121.8938889,San Jose,CA,light,3600,Strange bright Red light over San Jose, CA. +2009-08-09,39.2888889,-77.86,Charles Town,WV,chevron,900,Hazy blue then bright white darting light +2009-08-09,37.8172222,-96.8619444,El Dorado,KS,teardrop,60,Three craft with bright red rectangular lights in body and a large floodlight in front hovering above Kansas highway. +2009-08-09,42.1155556,-75.9591667,Johnson City,NY,triangle,120,Dark, soundless triangle low in the sky, that had a solid light in each corner of the triangle. +2010-08-09,34.3397222,-78.2255556,Riegelwood,NC,circle,3,i saw i bright object in the sky that left a trail +2010-08-09,30.0858333,-94.1016667,Beaumont,TX,flash,600,Early am my dog barked to go outside because he is 17 years I have to lift him and take him outside my back fenced in yard. I sit on m +2010-08-09,36.175,-115.1363889,Las Vegas,NV,other,600,A Thin Slice of Black over the Las Vegas mountain range +2010-08-09,40.7,-73.9061111,Ridgewood,NY,other,40,((HOAX??)) http://www.ufocenter.com/reportformsubmit.html +2010-08-09,40.7141667,-74.0063889,New York City (Central Park),NY,circle,30,Transparent circle suddenly disappeared +2010-08-09,32.0833333,-81.1,Savannah,GA,formation,1200,3 slow moving lights in triangular formation over Savannah, GA +2010-08-09,47.6733333,-117.2383333,Spokane Valley,WA,formation,10,40+ fireballs in formation moving fast and changing shapes +2010-08-09,35.4675,-97.5161111,Oklahoma City,OK,circle,55,Circular, bright orange object flying north in the sky that fell apart and disappeared. +2011-08-09,40.0044444,-85.3847222,Mount Summit,IN,triangle,60,I was outside of my house smoking a cigar on a fairly clear night. I was just casually looking at the moon and stars. After being outsi +2011-08-09,47.3075,-122.2272222,Auburn,WA,cross,30,Cross shaped craft over highway 18. +2011-08-09,32.2216667,-110.9258333,Tucson,AZ,rectangle,180,Rectangular Grid over Catalina Mountains in Tucson, AZ +2011-08-09,21.3069444,-157.8583333,Honolulu,HI,unknown,5,Extremely fast green light seen zooming over Honolulu in a south to north direction. ((NUFORC Note: Possible meteor?? PD)) +2012-08-09,29.1655556,-81.0047222,South Daytona,FL,light,1,Bright light moving fast and disapeared +2012-08-09,38.895,-77.0366667,Washington,DC,light,600,6 glowing objects fly near roof. (reoccuring) +2012-08-09,44.9033333,-94.1952778,Silver Lake,MN,unknown,240,Two high altitude, high speed craft converge on each other, one bright white, the other yellowish-gold +2012-08-09,47.6063889,-122.3308333,Seattle,WA,cigar,60,Bright object in sky fades away over Seattle +2012-08-09,28.6802778,-81.5097222,Apopka,FL,fireball,300,7 Fireballs in Apopka sky +2012-08-09,35.5666667,-75.4688889,Waves,NC,fireball,300,Glowing red orbs in the skys over rodanthe, nc. +2012-08-09,41.7352778,-70.1944444,Dennis,MA,fireball,900,A co-worker and I saw 2 Red and orange objects come up from over the tree line out in the distance. They were going up and twards us bu +2012-08-09,45.0563889,-92.8058333,Stillwater,MN,fireball,180,6-7 Orange-ish lights (a few looking like 'fireworks') flew aross the sky from north to south in 'V' formation for 2-3 minutes +2012-08-09,32.7152778,-117.1563889,San Diego,CA,other,1800,Fast Moving Bright Ball Hangs Over Mission Bay San Diego +2012-08-09,39.7841667,-74.9925,Pine Hill,NJ,light,60,Bright white light hovers, then just vanishes. +2012-08-09,44.7825,-69.3838889,Pittsfield,ME,light,300,Bright orange light over the tree lines. +2012-08-09,40.2455556,-74.8463889,Yardley,PA,oval,300,Three pulsating objects in the sky, moving independently and joined by two more before disappearing +2013-08-09,47.4236111,-120.3091667,Wenatchee,WA,light,600,Flying Lights Changing DIrections over Fancher Heights, East Wenatchee, WA 98802. Lights change from bright white light to red fireball +2013-08-09,46.7311111,-120.6983333,Naches,WA,egg,120,Large oval craft seen breaking through clouds. +2013-08-09,37.3022222,-120.4819444,Merced,CA,circle,12600,Circular, shiny, reflective object clearly observed in sky on August 9, 2013 at 11:00 am by several witnesses +2013-08-09,43.0880556,-70.7366667,Kittery,ME,flash,300,Red Flasing Lights +2013-08-09,37.3022222,-120.4819444,Merced,CA,circle,3600,Two bright dots, moving west to east, viewed in a telescope +2013-08-09,41.2333333,-80.4488889,Hermitage,PA,circle,300,3 red fireballs in the Eastern sky near hermitage pa. +2013-08-09,45.7811111,-122.5322222,Battle Ground,WA,fireball,300,Large orange ball phasing dim to bright +2013-08-09,39.7155556,-88.6325,Lovington,IL,fireball,120,Whatever I saw was very odd, and I had never seen anything like it before. +2013-08-09,39.4013889,-76.6022222,Towson,MD,fireball,60,Bright orange sphere quietly flying accross the night sky. +2013-08-09,26.5216667,-82.1894444,Captiva,FL,fireball,60,10th SIGHTING OF A “UGO” AND 8th SIGHTING OF MANY UFO “FIREBALLS” +2013-08-09,26.5216667,-82.1894444,Captiva,FL,light,300,FIRST SIGHTING OF A BRILLIANT BLUE-WHITE UFO +2013-08-09,26.5216667,-82.1894444,Captiva,FL,oval,7200,EXTRAORDINARY SIGHTING OF SILVER-GOLD, GLOWING FOOTBALL SHAPED UFOS APPARENTLY COMING OUT OF THE GULF AND MERGING TOGETHER, AND 9TH SIG +2013-08-09,44.6497222,-93.2425,Lakeville,MN,disk,300,A formation of large amber lights +2013-08-09,42.6158333,-70.6625,Gloucester,MA,sphere,1200,On two consecutive nights saw multiple orange glowing objects follow same course +2013-08-09,32.63,-83.6897222,Centerville,GA,triangle,900,Triangular UFO following a red light. +2013-08-09,44.5038889,-72.9980556,Jericho,VT,light,240,Two fiery orbs traveling one after the other across the sky, second larger than first, both totally silent then disappearing mid flight +1957-09-10,44.9444444,-93.0930556,St. Paul,MN,disk,300,3 UFO's saucer-shaped with flashing lights landed in field next to me, when I approached took off with great speed. +1960-09-10,37.6922222,-97.3372222,Wichita,KS,oval,1200,MADE ONY A HUMMING SOUND EVEN WHEN IT TOOK OFF. +1965-09-10,40.5697222,-79.765,New Kensington,PA,cigar,1800,Ufo over filled stadium +1967-09-10,45.3069444,-69.0338889,Brownville,ME,circle,180,Three metallic circles saw on the western horizon. +1967-09-10,38.7316667,-82.9977778,Portsmouth,OH,other,1800,Starting with a single craft flying at altitude of no more than 600-800 feet, on a heading from N to S, flying over my sister's house, +1967-09-10,33.7488889,-84.3880556,Atlanta,GA,cigar,1200,Cigar shaped UFO with lights all around it stationary in the sky for 10 min, then moved and stationary for 10min, took off-gone in sec. +1968-09-10,37.7433333,-87.7038889,Corydon,KY,disk,10,silvery saucer crossing overhead 200-300 feet up clear sky tipping side to side no sound +1968-09-10,38.8338889,-104.8208333,Colorado Springs,CO,sphere,300,Possibly observed a "mother ship" with three smaller craft darting about it. +1968-09-10,36.1777778,-94.2333333,Tontitown,AR,unknown,120,Mysterious illuminated cloud appears over the National Forrest. +1970-09-10,31.4636111,-100.4366667,San Angelo,TX,light,20,Three white light plasma craft (w intelligent thought) sped across Texas sky and the shot up into atmosphere. +1971-09-10,39.7683333,-86.1580556,Indianapolis,IN,other,300,Crescent-shaped object seen in 1971 +1973-09-10,30.4113889,-88.5344444,Moss Point,MS,circle,10800,it was round and glowing like a full moon, the color was sort of a white or gray +1975-09-10,41.5380556,-72.8075,Meriden,CT,disk,7200,A very large yellow-orange disk hovered above the trees before appearing to degrade to a small round white light as it flew away. There +1976-09-10,44.2269444,-71.7483333,Franconia,NH,other,28,Crystal clear sky, White Mountains, NH (checking out satellites) tracking a satellite it stopped, four (whatevers) shot out 4 direction +1976-09-10,40.7141667,-74.0063889,New York City (Bronx),NY,disk,900,1976 Sighting - 2 disks over NY city. +1976-09-10,42.6525,-73.7566667,Albany,NY,circle,120,It was a warm night for early September in upstate New York. It was "trash night." My parents purchased a new easy chair for +1981-09-10,36.3294444,-78.3994444,Henderson,NC,rectangle,900,I was leaving my job at the hospital in 1981. I had a newborn son and my husband was with him at my home in Henderson NC.I was driving +1983-09-10,40.3444444,-86.6652778,Mulberry (Near),IN,light,900,Aircraft chasing ufo +1987-09-10,35.0886111,-92.4419444,Conway,AR,cylinder,10,Heard a rumbling in the sky and then saw a yellow streak just above the treeline.Looked to have a yellowish color. With either red writ +1989-09-10,41.455,-73.7544444,Kent Cliffs,NY,disk,1200,Disk shaped UFO hovering with red and white alternating lights with planes in chase +1991-09-10,46.4166667,-117.0166667,Lewiston,ID,light,1200,A large panning light that would move from position to position faster than seemily possible. +1993-09-10,33.4483333,-112.0733333,Phoenix,AZ,rectangle,60,A massive object in the sky, that shined a light in front of me that was very weird.... +1993-09-10,42.1486111,-72.6083333,Chicopee,MA,triangle,600,craft flies directly over us (very high up) from west stops, gets smaller (ascends) and shoots of north at a very high rate of speed +1995-09-10,36.8347222,-81.515,Marion,VA,triangle,600,The football field sized object was triangular and had a gondola - shaped structure underneath. +1995-09-10,39.12,-88.5433333,Effingham,IL,cigar,30,ILLinois. siting +1996-09-10,36.1880556,-94.5402778,Siloam Springs,AR,triangle,300,three lights moving in a triangle formation, no sound, all three lights went out at the same moment +1997-09-10,34.1222222,-117.5972222,Alta Loma,CA,circle,3600,Very bright circular object about 1500 to 2000 above ground level very slowly moving to the southwest. +1998-09-10,33.1958333,-117.3786111,Oceanside,CA,fireball,15,Bright, fire-like object streaked from west to east in a level, horizonal attitude at a speed that took approximately 10 seconds to cov +1998-09-10,32.9627778,-117.035,Poway,CA,flash,6,Flash of the brightest light ever, fire colored, tail twice as long, travelling west to east,horizontally. Was in the Union tribune on +1998-09-10,35.823055600000004,-79.8611111,Sophia,NC,fireball,3,A huge blue, orange ball shooshed in front of us +1998-09-10,31.4636111,-100.4366667,San Angelo,TX,fireball,1800,big, glowing, slow , red comet-like fireball with a tail that slowly stretched accross the sky, and took forever to slowly fade away +1998-09-10,38.7838889,-90.4811111,St. Charles,MO,cigar,25,Cigar shape with 3 port-hole windows, lit up with bright white light, moving slowly So. to No. Obvious pointed frame work(trianular lik +1998-09-10,38.8422222,-106.1305556,Buena Vista,CO,changing,600,Ball of light that was thought to be a star dropped out of formation and changed colors and direction at super speeds +1999-09-10,38.3566667,-121.9866667,Vacaville,CA,fireball,5,Eastbound on I-80 through Vacaville, object appeared to travel from west to east +1999-09-10,43.0388889,-87.9063889,Milwaukee,WI,triangle,120,One dark morning I saw a triangular shaped object with lights and it made no sound just before I pulled out of my driveway. +1999-09-10,37.6391667,-120.9958333,Modesto,CA,formation,15,Three luminous disks trail a jetliner +1999-09-10,33.66,-86.8127778,Gardendale,AL,other,300,I was sitting at my computer, sitting close to my window when out the window when all of a sudden I heard a huge black helicopter came +1999-09-10,39.1141667,-94.6272222,Kansas City,KS,teardrop,420,I saw what I intially thought to be a helium baloon rise up in a gradual fashion and hover at about 3-5000ft,it appeared to change shap +1999-09-10,38.8902778,-77.0844444,Arlington,VA,other,2,Sitting on couch watching TV and saw out my window a large 'falling star' entering from the west and falling earthward. +1999-09-10,47.5675,-122.6313889,Bremerton,WA,triangle,60,There was four of us setting on my back pouch. we saw this thing in the sky that shape like a triangle move all in prefect uniform. +1999-09-10,47.1694444,-92.4761111,Cotton,MN,triangle,5,I was sitting on my deck and the craft came over. It was an inverted V shaped craft. It took about 5 seconds to fly over. There was n +1999-09-10,33.7488889,-84.3880556,Atlanta,GA,light,480,I AM A TRUCK DRIVER I WAS HEADED 1-20 WEST BOUND.WHEN I NOTICED 3 VERY BRIGHT LIGHTS THEY WOULD DIM AND BRIGHTEN IN ORDER THEY SEEMED T +1999-09-10,29.7630556,-95.3630556,Houston,TX,sphere,30,Four withe esferic objets over the skies of Houston +1999-09-10,38.7613889,-120.5855556,Pollock Pines,CA,light,1200,My friend and I were sitting outside on the patio of Crystal View Station when I noticed a light approximately 3500 ft in the air slowl +2000-09-10,40.5269444,-97.5955556,Geneva,NE,light,15,one bright object which turned into eleven +2000-09-10,41.85,-87.65,Chicago,IL,other,300,Black object hovering across the sky. +2000-09-10,35.6527778,-97.4777778,Edmond,OK,light,30,I saw what looked like a shooting star and noticed the head of the light was shaped in a perfect triangle +2000-09-10,39.7391667,-104.9841667,Denver,CO,triangle,120,triangle object withred lights on points and white light in center +2000-09-10,46.8069444,-92.2380556,Hermantown,MN,triangle,300,my feiance and I were driving home from a weekend out of town. We were driving south on hwy 53 just north of hermantown minnesota..When +2001-09-10,41.52,-81.4888889,Lyndhurst,OH,disk,10,Small, reflecting disk passed silently West to east in a cloudless sky within 10 seconds +2001-09-10,30.2669444,-97.7427778,Austin,TX,triangle,5,UFO Sighting in Austin TX Over UT/Capital Night Before 9/11 +2001-09-10,47.2044444,-121.9902778,Enumclaw,WA,unknown,180,W. Washington State: 9/10/01 Two bright white burning, falling objects, one may have hit the ground +2001-09-10,39.0997222,-94.5783333,Kansas City,MO,light,30,Light flies across sky, then turns at an angle upward and disappears. +2001-09-10,40.7608333,-111.8902778,Salt Lake City,UT,triangle,120,Triangle shaped UFO seen over the Salt Lake Valley. +2001-09-10,40.7608333,-111.8902778,Salt Lake City,UT,triangle,300,Black,Triangular shaped object appears in SLC. +2001-09-10,39.8027778,-105.0869444,Arvada,CO,diamond,90,Bright oval/diamond shape object white and red lights. +2001-09-10,39.7588889,-84.1916667,Dayton,OH,light,600,Brilliant light turning red then disappears +2001-09-10,45.6388889,-122.6602778,Vancouver,WA,light,6,observed 5 bright lights seen over Vancouver, WA +2001-09-10,39.5538889,-104.9688889,Highlands Ranch,CO,formation,10,Fast High altitude V Formation over Colorado day before 9/11 attacks +2001-09-10,38.2541667,-85.7594444,Louisville,KY,light,15,Ball of light traveling perfectly horizonial +2001-09-10,45.2102778,-123.1975,Mcminnville,OR,unknown,120,Non-flashing, eratic behavior, disapeared into sky +2001-09-10,39.0236111,-94.6933333,Merriam,KS,egg,20,UFO over Kansas City...What is it?? +2002-09-10,38.9541667,-119.7647222,Minden,NV,circle,120,Midnight Shadow On The Patio With No Visible Reason Why. +2002-09-10,35.1216667,-120.6202778,Grover Beach,CA,light,60,light over south san luis obispo county septmeber 10 +2002-09-10,34.8697222,-111.7602778,Sedona,AZ,sphere,600,I was driving into Sedona to work on route 179 at approximately 7:45am. Shortly before the Villlage of Oak Creek my 10 year old son wh +2002-09-10,36.0305556,-75.6763889,Kill Devil Hills,NC,rectangle,480,BRIGHT CLEAR DAY SEVERAL OF US WERE WALKING BEACH AND WE LOOKED OUT TO SEA, AND GOING ALONG OVER THE OCEAN WAS A LARGE RETANGULAR SHAPE +2002-09-10,41.31,-122.3094444,Mount Shasta (Near),CA,light,300,Mount Shasta light phenomena observed in brightly lit meadow in broad daylight for 5 minutes +2002-09-10,32.6858333,-117.1822222,Coronado,CA,light,1200,A bright, 3-4" in diameter light moving in a circle, changing directions and turning into two eyes focussing on me! +2002-09-10,44.3352778,-85.215,Lake City,MI,light,120,Three white lights forming triangle moving through nightime sky +2002-09-10,38.8461111,-77.3066667,Fairfax,VA,light,3,Blue light fell from the sky like a missle +2003-09-10,32.7591667,-97.7969444,Weatherford,TX,flash,10,Low bright flashing lights, sound of car low idleing +2003-09-10,38.1916667,-120.8280556,Valley Springs,CA,circle,120,Very bright light seen in California sky. +2003-09-10,29.5177778,-98.3158333,Converse,TX,triangle,20,Triangle shaped object seen near Randolph AFB +2003-09-10,29.4238889,-98.4933333,San Antonio,TX,formation,90,Triangular Formation UFO Sighting +2003-09-10,26.2030556,-98.2297222,Mcallen,TX,circle,5,saw bluish craft at very fast speed +2003-09-10,40.1694444,-78.5205556,Osterburg,PA,teardrop,300,We were outside building a roof for our dogs new doghouse when i happen to hear a faint buzzing sound. So I looked up and tapped my br +2003-09-10,27.7705556,-82.6794444,St. Petersburg,FL,diamond,300,saw one large object moving accross the sky ,moving slowly from north to south direction very stainge shape as if it was pointed at the +2003-09-10,40.7141667,-74.0063889,New York City (Manhattan),NY,disk,900,Disk shaped object over lower Manhattan +2003-09-10,33.8158333,-78.6802778,North Myrtle Beach,SC,circle,2700,For about 45 minutes with 5 minute lapses between sightings we saw extremely bright red lights in different places with no trails +2003-09-10,43.7102778,-75.4025,Glenfield,NY,circle,2,A bright light almost a peach color, faded completely then reappeared again after several minutes +2003-09-10,32.4366667,-111.2247222,Marana,AZ,light,120,3 Orange Orbs Over S Pinal County +2003-09-10,38.935,-74.9063889,Cape May,NJ,formation,1800,Red Orange lights in formation a good portion of sky with sophisticated movement. +2003-09-10,33.6888889,-78.8869444,Myrtle Beach,SC,circle,2700,2 orange-red circular objects that would flick on, first one, then from that one another, stay on for a few seconds, then flick out and +2003-09-10,45.6797222,-111.0377778,Bozeman,MT,other,900,green laser beam that was big shot threw the sky for 15 minuts then vanished like some one truned off the light swich +2003-09-10,47.3894444,-119.4894444,Soap Lake,WA,circle,7200,10-20 Blinking light crafts near Soap Lake, WA +2003-09-10,38.3686111,-93.7780556,Clinton,MO,unknown,20,9-10-03/22:00 hrs Clinton, Missouri Irregular shape In view for approx. 20 seconds This object was larger than the moon. It was +2003-09-10,38.5752778,-78.5027778,Stanley,VA,unknown,600,Series of rectangular burnt orange lights observed at approx 10 PM over Elkton, Va. and were observable from at least 40 miles away. +2003-09-10,40.7655556,-73.0155556,Patchogue,NY,light,60,10:30pm i was taking my garbage to the dumpster outside when i looked at the stars. They were bright and beautiful. Then i saw a bright +2003-09-10,60.5544444,-151.2583333,Kenai,AK,flash,30,A Light In The Sky +2004-09-10,34.1722222,-118.3780556,North Hollywood,CA,triangle,600,I stood outside smoking when I gazed up toward a bright star shining blue and a bit red as well as I blew smoke up in awe of the stars +2004-09-10,35.7077778,-79.8138889,Asheboro,NC,oval,45,large super bright white 3 football fields long ufo spotted in asheboro n.c. +2004-09-10,39.2672222,-76.7986111,Ellicott City,MD,disk,7,1 shinny disk shaped metallic object that was not moving in the sky. It disappeared out of thin air. +2004-09-10,34.0752778,-84.2941667,Alpharetta,GA,oval,60,Silver object skimmed across horizon just above tree lines on State Bridge Rd +2004-09-10,40.7666667,-72.8525,Mastic Beach,NY,light,30,NY Bright light no blinking no sound.high altitude but real bright,heading south vanished,ƽ min later same object 8:30 p.m L.I. +2004-09-10,37.9841667,-120.3811111,Sonora,CA,disk,240,Low Flying Glowing Object Videotaped over Sonora, CA +2004-09-10,42.5,-70.8583333,Marblehead,MA,sphere,60,bluish metallic liquid ORB or sphere +2004-09-10,41.4133333,-75.4936111,Mount Cobb,PA,unknown,900,Rounded Triangle +2004-09-10,42.9011111,-78.3888889,Darien Center,NY,light,900,Fast moving light sighted south of Darien Center, NY several times, by several people +2004-09-10,37.81,-85.9813889,Vine Grove,KY,light,1800,Colored lights near Brandenburg Kentucky ((NUFORC Note: Possible twinkling star. PD)) +2004-09-10,38.9516667,-92.3338889,Columbia,MO,light,90,((NUFORC Note: Student rept.; address invalid; possible hoax. PD)) Low flying round shaped object with lights around bottom. +2005-09-10,36.8188889,-76.2752778,Chesapeake,VA,triangle,1500,large triangular object that was seen over our home +2005-09-10,32.4608333,-84.9877778,Columbus,GA,disk,300,pure white,saucer shaped,going 100 miles per min.Ƹver 100 ft above me, faster than a jet or rocket +2005-09-10,44.0783333,-116.9327778,Payette,ID,circle,600,two white circles flying and then one hovering. +2005-09-10,32.8794444,-111.7566667,Casa Grande,AZ,sphere,180,More than two dozen sphere object traveling southwest to northeast. +2005-09-10,40.8597222,-74.0597222,Teterboro,NJ,light,300,Three lights in the sky forming a triangle in a clear blue sky. +2005-09-10,47.3294444,-122.5788889,Gig Harbor,WA,unknown,300,Gig Harbor, WA Sept. 10th, 6:00+ p.m.: Three lights in triangular formation cross telescope field of view... +2005-09-10,43.5277778,-71.4708333,Laconia,NH,disk,1800,6 disks look like white lines in sky +2005-09-10,32.4366667,-111.2247222,Marana (Avra Valley),AZ,light,2700,A dozen unknown lights form a trailing line and a wall of light in the face of fighter jets over Tucson, Arizona. +2005-09-10,33.5669444,-84.5811111,Fairburn,GA,circle,5,9/10/05 Bright Light with tail moved quickly southward in Fulton County, Georgia +2005-09-10,37.4694444,-105.8694444,Alamosa (Madano Pass),CO,unknown,600,Light in NW sky appears to be a planet, then moves off to west at a HIGH rate of speed. +2005-09-10,42.7355556,-94.6688889,Pocahontas,IA,light,45,bright white- blue light in northern Iowa skies +2005-09-10,42.2833333,-71.2333333,Needham,MA,rectangle,300,Needham, MA event. (NUFORC Note: Probably local aircraft. PD)) +2005-09-10,45.3602778,-120.7844444,Grass Valley,OR,light,600,Bright streaks across the night sky light up surrounding area's below as if it were daylight +2005-09-11,33.9791667,-118.0319444,Whittier,CA,oval,300,toy ballon shaped ufo +2006-09-10,35.4675,-97.5161111,Oklahoma City,OK,unknown,10,Triangular light formation suspended high in air +2006-09-10,43.2658333,-70.865,Berwick,ME,unknown,30,i was walking down the road with my son he first saw this glowing objectit was moving slowly from the east and then it turned an shot s +2006-09-10,34.0966667,-117.7188889,Claremont,CA,oval,600,odd dim oval shaped light near Mount Baldy in southern California. +2006-09-10,33.6680556,-117.3263889,Lake Elsinore,CA,sphere,15,Floating light suddenly moves slowly then speeds off into space! +2006-09-10,34.426944399999996,-77.5463889,Surf City,NC,other,15,Star-like object moving irractically in the night sky, flashed sequence of lights in one direction. +2006-09-10,37.6819444,-121.7669444,Livermore,CA,fireball,120,I saw a very large flourescent green fireball explode in the sky over the area of the Lawrence Livermore Lab. It exploded three times +2007-09-10,30.6277778,-96.3341667,College Station,TX,unknown,600,Stationary red, blue, green, white light high in College Station sky around 5am +2007-09-10,45.1002778,-91.4886111,Bloomer,WI,cylinder,60,Cylinder shape over WI September 10, 2007 +2007-09-10,40.6113889,-79.8372222,Russellton,PA,cigar,120,((HOAX??))Rocket Shaped UFO reported in Deer Lakes (Russellton PA) Very Fast Moving!!!! +2007-09-10,30.2669444,-97.7427778,Austin,TX,oval,540,oval with several bright colors at one point heading south then retreating north east +2007-09-10,40.3977778,-105.0744444,Loveland,CO,triangle,35,White triangular lights seen over Loveland Colorado +2007-09-10,38.6666667,-90.3208333,University City,MO,triangle,120,I witnessed a stationary triangular object with lighting at each of the three corners until it slowly moved from sight into the clouds. +2008-09-10,34.1683333,-118.605,Woodland Hills,CA,cigar,5,Daylight Cigar / Cylinder Shape Flying Object +2008-09-10,45.5236111,-122.675,Portland,OR,cylinder,900,gold cylindrical object with red top and bottom. Tumbles head over head at high altitiude. +2008-09-10,32.8794444,-111.7566667,Casa Grande,AZ,oval,300,I sensed that UFOs might be in the area during a thunderstorm and went out and took pictures. I obtained a clear picture of a UFO whic +2008-09-10,33.9133333,-78.3041667,Holden Beach,NC,light,1800,Flashing lights in the sky +2008-09-10,42.4511111,-84.1805556,Stockbridge,MI,unknown,10,a point of light that looked like what might be a satellite traveling from north to south +2008-09-10,39.1786111,-94.1930556,Sibley,MO,light,3600,I see amber lights on a nightly bases. I flash them with my 40mile green laser.about 1 out of ever 10 i see respond back by powerin +2008-09-10,47.2530556,-122.4430556,Tacoma,WA,triangle,300,Triangle light formation seen moving in Tacoma night sky, for the second time. +2008-09-10,46.8083333,-100.7833333,Bismarck,ND,changing,10800,Illuminating light surveys the North Dakota Capitol, Bismarck +2008-09-10,34.2575,-88.7033333,Tupelo,MS,sphere,15,Strange Lights In Tupelo +2008-09-10,29.6580556,-81.5986111,East Palatka,FL,light,5,Night sky orb craft seen over Florida River +2009-09-10,39.3994444,-84.5613889,Hamilton,OH,other,900,5 Bright star like lights in the Sky of Hamilton, Ohio. +2009-09-10,38.8338889,-104.8208333,Colorado Springs,CO,fireball,60,Fireball appearing and disappearing in daylight sky over Colorado Springs +2009-09-10,33.4222222,-111.8219444,Mesa (Nne Of),AZ,disk,480,Self-luminous, flourescent-glowing , disc-oid object appears stationary in central Arizona skies +2009-09-10,41.8083333,-74.8866667,Youngsville,NY,light,120,Color changing object that hovered for 1-2 minutes, then faded away. +2009-09-10,43.8736111,-116.4983333,Emmett,ID,circle,60,Light looked like a star but bigger and brighter went across the sky semi fast got dimmer. ((NUFORC Note: Satellite?? PD)) +2009-09-10,46.0130556,-91.4844444,Hayward,WI,sphere,180,Very bright light over northern Wisconsin. +2010-09-10,28.0341667,-80.5888889,Palm Bay,FL,sphere,240,They were the color of flare's, no blinking or noise moving at around 15 mph. +2010-09-10,38.2205556,-90.3958333,Festus,MO,other,360,Floating aircraft,long missle neck leading to pretzel rear that was cut off short. White&Blue Color.Turned slow over me&gone +2010-09-10,40.6219444,-73.7472222,Inwood,NY,light,1800,My daughter woke me up said there was a light bugging her when she was sleeping. When she woke up she looked in the sky saw colorful li +2010-09-10,43.4911111,-83.3969444,Caro,MI,rectangle,20,Low flying object with two lights (front & back) absent any engine noise acept for the increased sound of wind passing over the object. +2010-09-10,37.0297222,-76.3455556,Hampton,VA,unknown,1800,UFOs over Hampton Roads waterway +2010-09-10,39.3772222,-105.8,Jefferson,CO,sphere,20,Large, bright ball of light, bobbled a bit , then straight up and gone in a second or two. +2010-09-10,43.1547222,-77.6158333,Rochester,NY,unknown,3600,2 round balls of light hovering over Rochester NY +2010-09-10,43.0388889,-75.0708333,Frankfort,NY,oval,120,Thought it was plane at first, but it emoted no sound nor flashing light. +2010-09-10,37.4716667,-121.1286111,Patterson,CA,cone,20,First One craft was a plane and the other object was not,I was in my backyard looking at the stars. When there was a plane comming from +2010-09-10,45.6388889,-122.6602778,Vancouver,WA,circle,120,it really disapeared +2010-09-10,47.4294444,-122.5444444,Olalla,WA,circle,600,Noticed strange electical screetches on audio equipment and looked up to see something traveling fast and erratically. +2010-09-10,44.0583333,-121.3141667,Bend,OR,triangle,300,Bend Oregon has sighting of UFO on Friday September 10th at 10 pm. +2010-09-10,35.8680556,-83.5619444,Sevierville,TN,unknown,780,Constant Thunder +2010-09-10,41.3683333,-82.1077778,Elyria,OH,sphere,1800,Bright circular shape, changes colors frequently and did not move. +2010-09-10,37.5058333,-77.6494444,Midlothian,VA,disk,3600,saw 3 lighted circular aircrafts with friends then continued to see them as i returned home. +2011-09-10,40.0830556,-74.0686111,Point Pleasant,NJ,light,600,Fireballs over new jersey +2011-09-10,41.2511111,-74.49,Glenwood,NJ,circle,60,Saw a amber sphere traveling from west to east, stop it's flight and change direction away from the planet and faded away. +2011-09-10,29.7630556,-95.3630556,Houston,TX,sphere,1200,Very bright object moving all around quickly at times and slow at some times. +2011-09-10,43.4697222,-111.9658333,Ammon,ID,light,1260,i saw this object in the east southeast sky, it had many colors and moved at great speed in all directions but seemed to stay close to +2011-09-10,41.7108333,-87.7580556,Oak Lawn,IL,unknown,7,Maybe Nasa Missle Launch or we have an orange Chariot +2011-09-10,42.8863889,-78.8786111,Buffalo,NY,circle,180,My husband was on the back deck and called for me to come out and up in the sky was two orange dots following each other then the first +2011-09-10,42.6566667,-83.7530556,Hartland,MI,fireball,900,Large Glowing Orange flying objects in sky flying in pairs,purposeful movement, very bright +2011-09-10,41.4605556,-75.8491667,Falls,PA,circle,7200,Red, White, Blue, Lights in sky over PA, Falls +2011-09-10,44.4591667,-69.6780556,Vassalboro,ME,cylinder,10,Approximately 13:30(130pm)on Saturday September 10񫺛 at Vassalboro, ME, about ten miles N of Augusta on the Holman Day Rd. +2011-09-10,42.9638889,-78.7380556,Williamsville,NY,other,15,On Sept 10th 2:30 p.m in Williamsville NY.In clear skys my daughter captured an amazing photo of a UFO +2011-09-10,36.5663889,-121.9455556,Pebble Beach,CA,light,15,Blue light +2011-09-10,35.3255556,-112.8766667,Seligman (15 Miles West Of),AZ,disk,900,UFO photos of 9-10-11 at approx. 8pm in the yavapai desert in arizona, usa. +2011-09-10,40.6283333,-76.3875,Tremont,PA,sphere,240,Ten Orbs Staggered but Still +2011-09-10,47.9791667,-122.2008333,Everett,WA,circle,420,12-20 orange orbs float and fade away seen by 2 witnesses . +2011-09-10,44.6497222,-93.2425,Lakeville,MN,formation,3600,Hovering objects with flashing lights viewed from a suburban area. ((NUFORC Note: Possibly a sighting of stars?? PD)) +2011-09-10,33.1030556,-96.6702778,Allen,TX,egg,5,I was walking my dog down my block in this evening like I always do. As I came to the end of my block, I looked up and saw green blue p +2011-09-10,47.4830556,-122.2158333,Renton,WA,light,300,Two bright orange lights at high altitude, Seattle Wa +2011-09-10,42.9722222,-85.9536111,Allendale,MI,other,900,Multiable orange globes hovering +2011-09-10,43.4711111,-89.7441667,Baraboo,WI,circle,1260,Several sightings in one night in same area... +2011-09-10,43.0202778,-78.8805556,Tonawanda,NY,fireball,300,two bright amber lights hovering or moveing slow +2011-09-10,44.1102778,-70.6797222,Harrison,ME,circle,600,Yellowish/red spheres observed off to the southwest about 9:30 PM on 9/10/11? +2011-09-10,41.6269444,-88.2038889,Plainfield,IL,cigar,60,While outside in my backyard tending a fire pit while seated, facing south my 8 year old son facing north pointed up in the sky just ov +2011-09-10,41.5119444,-82.9377778,Port Clinton,OH,unknown,1800,Stationary blinking light, changing from red to green to white in NW sky viewed in Ohio +2011-09-10,47.6063889,-122.3308333,Seattle,WA,circle,60,orange Chinese lanterns fly in formation over large party over 50 kids and adults witness +2011-09-10,26.192777800000002,-97.5786111,Lantana,TX,changing,360,Bright Blue craft over Lantana, TX +2011-09-10,34.2661111,-116.3922222,Landers,CA,circle,2,This video was taken while trying to capture lightening strikes over the high desert near Twentynine palms Marine base. A red light app +2011-09-10,38.8916667,-121.2919444,Lincoln,CA,unknown,180,At approximately 11:20pm on September 10, 2011 there was a UFO flying parallel to highway 65 towards Lincoln this craft was flying low +2011-09-10,42.5,-96.4,Sioux City,IA,light,180,Bright orange lights taking an unusual flight pattern and then disappearing in the same area in the sky. +2011-09-10,38.8813889,-94.8188889,Olathe,KS,teardrop,180,A bright glowing orange/amber light appeared in the sky and moved at various speeds before shooting off at incredible speeds. +2011-09-10,42.5630556,-114.46,Twin Falls,ID,fireball,60,Orange fiery-looking orb appeared to be floating at the treeline. +2011-09-10,36.1630556,-82.8311111,Greeneville,TN,light,7200,The bright moving lights ranged from very low to where you would normally see a helicopter fly. The movements were very fast, back and +2012-09-10,36.7855556,-108.6863889,Shiprock,NM,other,7200,Orange balls manifesting out of shiprock mountain +2012-09-10,41.1305556,-85.1288889,Fort Wayne,IN,oval,10,Fort Wayne - 10 second sighting of Slow Medium Oval Object - 1:22am September 10th 2012 +2012-09-10,40.4405556,-79.9961111,Pittsburgh,PA,unknown,2,Saw what I believe to be some kind of a comet or craft +2012-09-10,41.8713889,-72.3691667,Tolland,CT,light,10800,A large bright white light with spikes of light shooting out and then retracting . +2012-09-10,34.0005556,-81.035,Columbia,SC,disk,20,My husband and I was driving on Charlesron highway towards lexingtin exit 61 when a bright green shaped object appeared in the middle o +2012-09-10,33.8158333,-78.6802778,North Myrtle Beach,SC,triangle,1200,3 orange lights at Myrtle Beach, triangle shape +2012-09-10,44.0247222,-88.5425,Oshkosh,WI,light,900,Flashing white lights over Lake Winnebago +2012-09-10,29.9144444,-90.0538889,Gretna,LA,sphere,5,Silver sphere. +2012-09-10,40.9255556,-73.1413889,Stony Brook,NY,flash,45,Extremely bright flashes of light moving away and gaining altitude on a clear, bright day. +2012-09-10,39.2902778,-76.6125,Baltimore County,MD,sphere,30,3 orange spheres become one over 695 in Baltimore County. +2012-09-10,43.0944444,-79.0569444,Niagara Falls,NY,fireball,300,A bright yellow point of light surrounded by distinct orange sphere moving north to south. +2012-09-10,43.0255556,-74.9863889,Herkimer,NY,oval,30,Manilla oval shape orb seen in skies over Central New York +2012-09-10,41.0886111,-74.1441667,Mahwah,NJ,fireball,1800,Orange ball in the sky, disappearing and re-appearing. +2012-09-10,41.0886111,-74.1441667,Mahwah,NJ,fireball,900,Orange Fireball Sighting - 3 eyewitnesses, captured on two video devices +2012-09-10,44.1858333,-88.4625,Neenah,WI,triangle,20,6 lights flying in perfect large triangle formation. 2 were flashing orange. +2012-09-10,41.0602778,-111.9702778,Layton,UT,cone,3600,Cone hovered above layton ut for one hour +2012-09-10,41.2586111,-95.9375,Omaha,NE,unknown,900,50 lights in sky over 72nd street attached to black silhouette. +2012-09-10,26.1591667,-97.9905556,Weslaco,TX,light,20,Flying object responds to light flashing +2012-09-10,45.7055556,-121.5202778,Hood River,OR,light,5400,Hood River Sept 2012 what is this light +2012-09-10,33.8158333,-78.6802778,North Myrtle Beach,SC,unknown,1200,Flashing lights over ocean. +2012-09-10,38.6825,-90.1569444,Madison,IL,triangle,15,I KNOW PLANES AND HELICOPTERS AND THIS WAS NOT EITHER +2012-09-10,40.3408333,-76.4116667,Lebanon,PA,sphere,10,Two dimly lit spherical objects, moving at a fast speed, observed in Lebanon, PA. +2012-09-10,41.805,-80.9483333,Geneva,OH,light,1800,White and orange erratic moving lights in the night sky. +2012-09-10,33.9133333,-78.3041667,Holden Beach,NC,triangle,3600,Large triangle formation of 3 orange fireballs followed by 8-10 small craft with erratic blinking white lights. +2012-09-10,33.8158333,-78.6802778,North Myrtle Beach,SC,changing,1500,Strange orange and white lights or obs over the beach +2012-09-10,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,3600,Strobe like flashes with orange fireballs in the shape of a triangle. +2012-09-10,33.9908333,-118.4591667,Venice,CA,light,120,Saw a light hovering close to the water, traveled faster than an airplane. Covered a great distance in less than two minutes +2012-09-10,31.1169444,-97.7275,Killeen,TX,circle,4,Observered what i thought was a star but brightened considerably then disappears. ((NUFORC Note: Flare of Iridium satellite? PD)) +2013-09-10,33.7475,-116.9711111,Hemet,CA,light,600,2nd spotting in 3 days of light-point flying ovals, circular, short & long bursts, many stops & starts very high altitude no noise +2013-09-10,43.6794444,-70.4447222,Gorham,ME,cross,15,Metalic object spotted, dissapears. +2013-09-10,34.8469444,-119.1558333,Pine Mountain Club,CA,unknown,30,Circle of light in the night sky that shrank down to a small light that then disappeared into the heavens. +2013-09-10,38.5052778,-122.4691667,St. Helena,CA,flash,1,St Helena CA sighting (flash of light across the horizon) +2013-09-10,35.2675,-75.5427778,Buxton,NC,rectangle,60,Bright orange rectangle in three connected equal sized boxes. Didn't move. +2013-09-10,44.8113889,-91.4983333,Eau Claire,WI,unknown,1800,Orange lights appear over Eau Claire, WI on September 10, 2013. +2013-09-10,43.0388889,-87.9063889,Milwaukee,WI,fireball,60,Three orange orbs flying west in the sky in Milwaukee, WI on 9/10/2013. +2013-09-10,41.7,-71.4166667,Warwick,RI,formation,600,Silent orange lights in formation. +2013-09-11,33.6888889,-78.8869444,Myrtle Beach,SC,circle,120,On my last night vacationing on myrtle beach as i sat on the hotel balcony i saw orange circles appear over the ocean. They appeared an +1974-09-11,39.7391667,-104.9841667,Denver,CO,other,300,Normal heavnly bodies do not travel in geometric patterns. +1975-09-11,47.9416667,-119.0022222,Grand Coulee,WA,cigar,600,My uncle and I were outside walking his dogs. He worked for a major airplane manufacturer in washington, and was over visiting. we sa +1986-09-11,35.1536111,-78.1055556,Calypso,NC,sphere,120,UFO of spherical red and yellow lights hovers over family leaving them with no memory of incident +1993-09-11,41.2975,-82.6055556,Milan,OH,triangle,600,black,three circular lights on bottom,cut corners, +1995-09-11,36.9458333,-94,Pierce City,MO,cigar,2,update 9/11/95 ufo Pierce City +1995-09-11,36.9458333,-94,Pierce City,MO,cigar,5,Cigar- shaped metallic object hovers over field- shines light, disappears in daylight near Pierce City MO. +1998-09-11,33.3941667,-104.5225,Roswell,NM,diamond,5,My sister and I were driving south to Carlsbad and were about 5 to 10 miles outside of Roswell, NM. All of a sudden a bright, pulsat +1999-09-11,46.8772222,-96.7894444,Fargo,ND,light,2100,i was outside at work and saw in the east, a very bright light. in an otherwise starless sky.stationary at first. but then extreemly sl +1999-09-11,39.1072222,-76.5713889,Pasadena,MD,diamond,2700,seen objects in sky thought it was a ballon at first then started making funny movements then disappeared then seen agian in differnt l +1999-09-11,47.1855556,-122.2916667,Puyallup,WA,light,300,Coming onto highway 518 I saw a light, then noticed there were more, very high up in the sky. Made my husband pull over off the freewa +1999-09-11,31.7091667,-98.9908333,Brownwood (Rural Area Surrounding),TX,disk,60,Saw an oval shaped saucer with dark hull covered in lights. +1999-09-11,42.8666667,-106.3125,Casper,WY,triangle,30,Saw 1 UFO far off making shapes, another UFO snuck up on me from the same direction. Flew close to me and turned East. I ran +1999-09-11,47.6588889,-117.425,Spokane,WA,fireball,3,I saw a bright floresnt green ball with a tail of greens and some yellow streak across the sky heading in a west. It was flying horizo +1999-09-11,40.4555556,-109.5280556,Vernal,UT,chevron,360,Pilots at local airport watched unidentified craft for several minutes. +1999-09-11,47.6588889,-117.425,Spokane (30mi Nnw Of),WA,light,10,Large round bright green light moving quickly across the sky. +1999-09-11,47.6588889,-117.425,Spokane,WA,changing,15,Watched what looked like a shooting star, kept getting bigger and faster. Dropped for about 10 sec, then came to a complete stop. Hov +1999-09-11,47.6588889,-117.425,Spokane,WA,other,3,Like a Meteor but it was larger, slower, brighter and more colorful. +1999-09-11,40.8583333,-74.1641667,Clifton,NJ,oval,900,Bright white craft moved slowly and low to the horizon, heading approx. south-southeast. +1999-09-11,40.935,-74.0194444,New Milford (Bergen County),NJ,oval,300,Going home SAt night-8:45-Saw glowing oval object in the sky through the trees.-5minutes- Near home- Stop in parking lot- it is gone Fr +1999-09-11,43.6136111,-116.2025,Boise,ID,teardrop,5,unknown object,possible space junk,illuminated the sky from east to west -- intensely blue in color. +1999-09-11,40.2022222,-74.0125,Bradley Beach,NJ,light,60,Star-like light that moved in different directions, heading south, south-east and dissappeared. +1999-09-11,39.9594444,-82.5958333,Kirkersville,OH,changing,120,A flying object with 3-5 lights inside a changing shape, on a straight (west to east) trajectory. +1999-09-11,35.2269444,-80.8433333,Charlotte,NC,light,60,When looking in the sky, I saw a light moving very high up in the sky, It wasn't blinking like an airplane and moving to slow to be met +1999-09-11,45.52,-123.0586111,Cornelius,OR,light,60,Thought we were seeing a satellite arcing approxiamatley E-W, then object increased brightness, apparent size, then dimmed/brightened, +1999-09-11,42.9633333,-85.6680556,Grand Rapids,MI,flash,10,90-degree turn by a meteor +1999-09-11,34.47,-118.1958333,Acton,CA,fireball,3,While driving westbound on I14 from Acton I saw green ball of light move across the sky from my upper left to my lower right view throu +1999-09-11,40.7355556,-74.1727778,Newark,NJ,disk,1200,WE WERE OUTSITE THE HOUSE ON A BIRTHDAY CELEBRATION,ONE OF THE GUESS CALL OUR ATTENTION ON SHINE FLYING OBJECT UP IN THE SKY;I NEVER HA +2000-09-11,36.9208333,-89.3505556,Charleston,MO,triangle,900,TRIANGLE SHAPE CRAFT +2000-09-11,38.4783333,-82.6380556,Ashland,KY,other,1200,orange object moved up river -altitude 400 ft. +2000-09-11,38.8338889,-104.8208333,Colorado Springs,CO,other,30,During my son-in-laws birthday gathering, we were rattled to hear a jet fighter flying low over our house off of Woodmen Rd. My younges +2000-09-11,18.2966667,-66.8775,Lares (Puerto Rico),PR,cigar,8,I spotted a cigar shaped object in mid-air while outside one night in Lares, PR. +2000-09-11,39.7683333,-86.1580556,Indianapolis,IN,sphere,240,Object meandered like a leaf in a stream. +2001-09-11,39.9522222,-75.1641667,Philadelphia (Suburb),PA,unknown,60,UFO SIGHTING ON 9 / 11 / 01 ---the night of the World Trade Center bombing. +2001-09-11,40.7141667,-74.0063889,New York City,NY,sphere,3600,sphere floating above NY vanishes after bright flash +2001-09-11,46.8808333,-96.3163889,Hawley,MN,cigar,60,cigar streaking across the sky eastward +2001-09-11,40.7141667,-74.0063889,New York City (Brooklyn),NY,other,180,Fireball in sky on 911 before WTC +2001-09-11,40.7141667,-74.0063889,New York City (Manhattan),NY,oval,300,I'M WRITING FROM ITALY I'VE READ ON A NEWSPAPER THIS MORNING THERE WAS AN UFO BETWEEN THE TOWERS DURING THE ATTACK. COULD YOU PLEASE CO +2001-09-11,40.7141667,-74.0063889,New York City,NY,disk,120,As reported by several people from around the world, we witnessed something the day of the terrorist attacks on TV, viewed only once an +2001-09-11,42.1291667,-80.0852778,Erie,PA,cigar,120,Planes guided into the Trade Centers by UFOs. +2001-09-11,42.7455556,-89.5947222,Monticello,WI,formation,300,Many lights went by us and followed us when we ran. +2001-09-11,40.7141667,-74.0063889,New York,NY,light,15,UFO spotted on 9/11 video link +2001-09-11,40.7141667,-74.0063889,New York,NY,triangle,2,This is related to UFO activity or it's technology PLEASE TAKE THE TIME TO LOOK IT UP THANK YOU +2001-09-11,40.7141667,-74.0063889,New York City (World Trade Center),NY,other,45,3 UFO's emerge from WTC buildings after second plane hit +2001-09-11,35.0844444,-106.6505556,Albuquerque,NM,sphere,600,Spherical silver balls which emitted bright white light +2001-09-11,40.7141667,-74.0063889,New York City,NY,sphere,120,UFO over New York City on September 11, 2001 +2001-09-11,40.2022222,-74.0125,Bradley Beach,NJ,cigar,120,Cigar shaped object moving fast, southward from NYC. +2001-09-11,41.3897222,-81.4413889,Solon,OH,sphere,300,a hovering large round object +2001-09-11,40.8427778,-73.2933333,Commack,NY,chevron,20,Long Island on day of 9/11 World Trade Center Bombing +2001-09-11,41.4958333,-87.8486111,Frankfort,IL,light,900,The evening of 9-11 we lost our electricity which was very frightening after what happened earlier that day. We went outside, the sky w +2001-09-11,34.4838889,-114.3216667,Lake Havasu City,AZ,light,7200,UFO's over Havasu +2001-09-11,41.6986111,-88.0683333,Bolingbrook,IL,circle,3600,At around 19:30 Central time I spotted 2 flashing lights traveling South to North side by side. Within a few minutes of observation the +2001-09-11,34.8963889,-98.2002778,Cyril,OK,light,900,2 to 5 objects sighted while 3 conventonal aircraft buzzing in the area - 4 adult witinesses +2001-09-11,33.4222222,-111.8219444,Mesa,AZ,circle,180,Round object just hovering over homes. +2001-09-11,42.4083333,-71.0125,Revere,MA,changing,7200,Ufos over Beachmont.Eve of Trade center Attack +2001-09-11,47.6063889,-122.3308333,Seattle,WA,light,10800,colored lights stationary in sky on night of air traffic shutdown in USA 9/11/01 +2001-09-11,35.6869444,-105.9372222,Santa Fe,NM,cone,37800,We saw objects in the sky that could not have been stars. We observed them through bionoculars and saw 9 objects that hovered, pulsated +2001-09-11,42.4152778,-71.1569444,Arlington,MA,circle,7200,2 unidentified objects over Arlington, Ma skies for over 2 hours with military observation. +2001-09-11,41.6375,-70.9041667,Fairhaven,MA,circle,10,Circular ball of fire racing across the sky on the day america was attacked. +2001-09-11,38.6658333,-120.925,Shingle Springs,CA,light,30,meteor like object +2001-09-11,41.9583333,-85.325,Colon,MI,triangle,600,Sighting of wedge shaped object +2001-09-11,41.7519444,-87.9738889,Darien,IL,formation,3600,I know nothing about aviation. I saw 3 objects pulsating in the night sky, thought to be helicopters but very high. Objects had red & g +2001-09-11,40.5794444,-75.3411111,Hellertown,PA,light,3600,Very slowly moving green, red and white lights flashing in the night sky. +2001-09-11,42.8141667,-73.94,Schenectady,NY,light,5,I'm not sure how much valuable information this is for you, it's taken me awhile to write something. On september 11 after the nationa +2001-09-11,30.4380556,-84.2808333,Tallahassee,FL,light,3600,Light Formations +2002-09-11,39.5297222,-119.8127778,Reno,NV,unknown,60,I was on my way home from work. I was coming up over a small pass about 12 miles North of Reno on Hwy 395, just before the Cold Spring +2002-09-11,40.7141667,-74.0063889,New York City,NY,sphere,1500,4 light appeard behind the president during address to the nation on 9-11-02 +2002-09-11,45.5236111,-122.675,Portland,OR,oval,15,I Saw 4 oval shaped objects in the sky to the north of my house +2002-09-11,35.2827778,-120.6586111,San Luis Obispo,CA,light,20,MY WIFE AND I WERE CAMPING AT LAKE NACIMENTO IN SAN LUIS COUNTY,, IT WAS 22:00 APROX. WE WERE LOOKING NORTH NORTH EAST ,, NO MOON,,.. +2002-09-11,43.1688889,-86.2638889,Norton Shores,MI,fireball,2,A brightly lighted round aircraft, traveling at a fairly slow speed and a low altitude toward Lake Michigan, clearly seen. +2002-09-12,40.7008333,-73.7133333,Elmont,NY,triangle,60,I was watching tv and i heard a really loud noise. at first i thought it might have been a plane. but it kept getting louder so i thoug +2003-09-11,39.8083333,-104.9333333,Commerce City,CO,formation,300,series of blinking lights +2003-09-11,38.5322222,-93.5219444,Windsor,MO,triangle,600,Silent, low flying, multi-light triangle shaped ufo. +2003-09-11,30.3580556,-90.0655556,Mandeville,LA,triangle,1200,A Twenty Minute Experience @ 2:13 AM in Mandeville Louisiana +2003-09-11,30.2263889,-93.2172222,Lake Charles,LA,sphere,19800,We saw one large craft that changed colors and later on we saw 2 other crafts that were smaller and emitted a red light. +2003-09-11,37.5536111,-77.4605556,Richmond,VA,flash,120,Numerous flashing lights over Richmond, Virginia on September 11, 2003 +2003-09-11,39.9241667,-83.8088889,Springfield,OH,oval,1800,3 lighted oval aircraft dissapears +2003-09-11,40.6547222,-76.1011111,Orwigsburg,PA,circle,1200,Two bright colored lights came from the east and stood over Orwigsburg at 8:00. I was up at my computer when my Mom yelled up to get do +2003-09-11,37.2638889,-122.0219444,Saratoga,CA,circle,600,On 09/11/03 about 21:00 Hrs Ca time 3 star like obj at hi altitude travel acrosss sky from south to north within moments of eachother. +2003-09-11,44.1669444,-74.5383333,Tupper Lake,NY,light,1800,1 strange light in the Sky then 3 big orange lights. Both were gone Within 30 minutes +2003-09-11,36.0958333,-79.2672222,Mebane,NC,light,1800,saw a bright light with red and green lights sitting in the sky, too slow for a plane,moving very slowly to the north. +2003-09-11,41.6638889,-83.5552778,Toledo,OH,triangle,120,the craft came from the south at a very low speed an turned to the north east . it didnt bank like a plane but more like a sweep +2003-09-11,38.8047222,-77.0472222,Alexandria,VA,circle,5,Bright,zig zagging, greenish-blue orb flashes across sky, mysterious helicopter trails behind +2003-09-11,38.8047222,-77.0472222,Alexandria,VA,circle,10,Not sure what it was but it went very fast across the sky not certain on the exact shape either as it was moving WAY to fast. It had a +2004-09-11,34.7463889,-92.2894444,Little Rock (Lonoke),AR,triangle,1200,Slow moving triangle over Little Rock, AR. +2004-09-11,44.6336111,-121.1283333,Madras,OR,circle,300,light ,white blinking,rotating on a circle,like a flat horizontal ferris wheel.saw the same thing in thesame place 2 times this week ov +2004-09-11,42.3763889,-71.2361111,Waltham,MA,disk,900,I saw a disk-shaped object covered with lights that was in the sky, and it was just hovering there. +2004-09-11,41.4047222,-81.7230556,Parma,OH,light,60,Two stars, one bright the other dimmer moving from N to S very close together on 9/11/04 8:40PM +2004-09-11,43.3163889,-76.7025,Fair Haven,NY,fireball,600,Orange light which traversed the starlite sky from due south to due north +2004-09-11,34.0522222,-118.2427778,Los Angeles,CA,oval,2700,I saw a UFO with a few other witnesses on Friday night the 10th but didn't have a chance to capture it on videotape. Luckily it came ba +2004-09-11,34.0522222,-118.2427778,Los Angeles,CA,oval,2700,Very detailed footage on UFO over Downtown Los Angeles on 09/11/04. +2004-09-11,40.2697222,-74.8002778,Ewing,NJ,flash,37800,Stationary light flashing white, red, blue, west of Ewing NJ. ((NUFORC Note: Possible twinkling star? PD)) +2004-09-11,41.176944399999996,-112.0030556,Riverdale,UT,light,120,Slow moving, bright light, with no flashing lights. ((NUFORC Note: Possible sighting of the ISS orbiting overhead? PD)) +2004-09-11,45.1977778,-93.3869444,Anoka,MN,light,180,quick flashing lights west of anoka minnesota +2004-09-11,44.9180556,-69.8672222,Embden,ME,triangle,60,THREE LIGHTS IN TIRANGLE FORM move quickly across sky, stop get hazy and appear to just disappear. +2004-09-11,41.0441667,-83.65,Findlay,OH,flash,1800,strob light in sky moved left to right up and down fast movements +2005-09-11,33.0197222,-96.6986111,Plano,TX,other,300,Disappering Plane????? +2005-09-11,33.9966667,-77.9075,Kure Beach,NC,triangle,4,Triangular Shape with a Reflection of the Stars behind it (cloaked or something) +2005-09-11,35.0844444,-106.6505556,Albuquerque,NM,circle,10,A dim orange sphere, traveling in a sweeping curve. +2005-09-11,40.6563889,-73.6097222,Baldwin,NY,sphere,1800,during daylight, three bright "stars" maneuvered and disappeared. +2005-09-11,20.9175,-156.3258333,Haiku,HI,diamond,3600,I spotted one black disk/diamond shaped object hovering and leaving a faint exhaust trail just at cloud level. +2005-09-11,36.1197222,-80.0738889,Kernersville,NC,flash,2,bright flash heading southeast about 10 degrees left below a half moon, towards Greensboro,very possibly a meteorite,but very definetly +2005-09-11,35.9130556,-79.0561111,Chapel Hill,NC,unknown,310,low quick moving light +2005-09-11,41.6005556,-93.6088889,West Des Moines,IA,light,3,Blue light that look about as bright as Venus streaked across the sky from the south to the north. I am in apartments sw of the I-235 +2005-09-11,34.4047222,-103.2047222,Clovis,NM,light,9000,I acrobatic, 3 in formation, bright light coming from ground near ranches +2005-09-11,34.4263889,-117.3,Hesperia,CA,triangle,120,long triangle in night ski going west to east four lights on each side had night vission goggle to see it.. +2005-09-11,28.3644444,-82.1961111,Dade City,FL,light,240,bright light-moved slowly over city for a couple of minutes then,at a high rate of speed, zipped away. +2006-09-11,33.6680556,-117.3263889,Lake Elsinore,CA,fireball,1,Bright, maybe burning, object traveling extremely fast explodes over Lake Elsinore +2006-09-11,40.4811111,-74.4836111,Voorhees,NJ,fireball,30,STRANGE lights over voorhees. +2006-09-11,29.7630556,-95.3630556,Houston,TX,triangle,120,Black Triangle at Treetop level in City of Houston. Tx. +2006-09-11,39.9094444,-94.9675,Nodaway County (Sw Ia/Nw Mo),MO,fireball,10,Green fireball in connection with Possible Abduction or Visitation. +2006-09-11,36.3133333,-82.3536111,Johnson City,TN,cigar,1200,Aircraft near miss with a "meteor," subsequent sightings. ((NUFORC Note: Report from former MUFON State Director. PD)) +2006-09-11,43.6136111,-116.2025,Boise,ID,rectangle,240,Rectangular object,bright lights in front. fainter ones behind, indicating shape longer thanis was wide, with no noise. +2006-09-11,39.9866667,-75.4013889,Newtown Square,PA,fireball,6,I am employed as a security guard at a corporate campus in Newtown Square PA, 30 miles west of Philadelphia. I arrived at work tonight +2006-09-11,40.7141667,-74.0063889,New York City,NY,fireball,3,Like a shooting star but slowed down, hovered an instant, changed directions, another quick hover, changed directions again then sped o +2007-09-11,32.2216667,-110.9258333,Tucson,AZ,changing,30,Golden triangular object reshaping into golden half moon or dome before disappearing. +2007-09-11,30.2669444,-97.7427778,Austin,TX,other,5,Strange wedge shaped yellow-orange lights flying South over Austin TX +2007-09-11,34.1363889,-118.7736111,Agoura Hills,CA,disk,300,Saucer shape w/lghts around rim that were in a chasing pattern. Red light on top in the center. +2007-09-11,34.1486111,-118.3955556,Studio City,CA,light,300,Bright white light surrounded by revolving colored lights suggesting a disc shape travelling east over the San Fernando Valley. +2007-09-11,34.2241667,-118.2391667,La Crescenta,CA,sphere,60,sphere like object with lighting spinning above us in la cresenta ca. +2007-09-11,40.1002778,-79.5872222,Scottdale,PA,sphere,5,Bright object that flew away quickly +2007-09-11,39.2022222,-83.6116667,Hillsboro,OH,circle,3600,Very bright in the sky, orange sparks before take-off +2007-09-11,39.5538889,-83.2569444,New Holland,OH,light,9900,strange bright lights in sky south of New Holland Ohio +2007-09-11,34.9744444,-92.0163889,Cabot,AR,chevron,420,Two very large stationary crafts illuminating the sky above Arkansas. +2007-09-11,42.3266667,-122.8744444,Medford,OR,triangle,6,A triangular set of three dim or orange lights were seen moving very fast and silently across the night sky over Medford, Oregon. +2007-09-11,40.0638889,-80.7211111,Wheeling,WV,light,900,A star? satellite? space station? OR??????????? ((NUFORC Note: Possible sighting of Jupiter?? PD)) +2009-09-11,34.1808333,-118.3080556,Burbank,CA,formation,420,first thought it was sky divers with lites till the lights formed and moved up 100 feet off the ground that was when i freaked out. +2009-09-11,39.0875,-81.9227778,West Chester,OH,light,20,Bright, white light in the sky in West Chester, OH 9/11/09 at 7:05am. +2009-09-11,45.6388889,-122.6602778,Vancouver,WA,light,180,two orbes, traveling SW to E, not a plane, sattelite, nor shoot star, disappeared into the sky. +2009-09-11,33.4222222,-111.8219444,Mesa,AZ,light,1800,Bright white light turns yellowish then fades away into space. +2009-09-11,33.3061111,-111.8405556,Chandler,AZ,light,900,dot light in sky north northeast of chandler, az, it did not move, clouds passed it by +2009-09-11,33.4222222,-111.8219444,Mesa,AZ,unknown,1800,It was around 7:00 pm when I noticed a bright white sort of haze non moving light.It was at a very high alltitude because at first I th +2009-09-11,45.4983333,-122.4302778,Gresham,OR,sphere,240,UFO seen over Gresham, OR. It was a black orb that was tumbling through the air at a high rate of speed. +2009-09-11,42.2177778,-85.8911111,Paw Paw,MI,circle,900,3 circle objects appear over town +2009-09-11,34.948055600000004,-82.1275,Lyman,SC,disk,15,((HOAX??)) I saw two blue saucer shaped craft in the sky just above the tree line moving up and down +2009-09-11,29.4411111,-83.2875,Horseshoe Beach,FL,unknown,300,for the last month almost every night strange lights appear off the coast of horseshoe beach where i live, me and one of my friends are +2009-09-11,47.2044444,-121.9902778,Enumclaw,WA,teardrop,60,Driving along a back road in my town when another motorist and myself was it... +2009-09-11,45.7452778,-87.0644444,Escanaba,MI,light,60,Bright white light over Escanaba, MI +2009-09-11,47.3294444,-122.5788889,Gig Harbor,WA,sphere,3600,Multi-colored sphere hovering over Seattle +2009-09-11,40.8,-96.6666667,Lincoln,NE,circle,900,I left my apartment around 9:15 PM. It was dark out. I walked toward my car in the parking lot of the apartment complex. To the east +2009-09-11,41.85,-87.65,Chicago,IL,changing,2400,On Friday, September 11, at about 21:30 hours I observed, in the sky south of my home in Prospect Heights, Illinois, two very bright ob +2009-09-11,44.9430556,-123.0338889,Salem,OR,sphere,300,Four large orange spherical objects with a diamond shape "halo"in long arc overhead. +2009-09-11,38.3030556,-77.4608333,Fredericksburg,VA,changing,1800,Strange colorful siting in the western sky +2009-09-11,47.6588889,-117.425,Spokane,WA,light,15,fast moving star like object over spokane, washington 09/11/09 +2009-09-11,36.3944444,-79.1547222,Leasburg,NC,triangle,900,i need help with my case +2009-09-11,28.2394444,-82.3280556,Wesley Chapel,FL,light,3,I was out front of my home smoking a cigarette and talking on my phone I was looking up facing east and saw a green glowing ball very b +2010-09-11,32.0355556,-82.5083333,Uvalda,GA,disk,900,disk over river near power plant +2010-09-11,41.9141667,-88.3086111,Saint Charles,IL,light,140,Red Star like light moving NW to SE +2010-09-11,40.7141667,-74.0063889,New York City,NY,other,1200,2 Silver orbs very high altitude (EAST) . Observed across Hudson near wtc. +2010-09-11,47.6063889,-122.3308333,Seattle,WA,triangle,120,I was driving home from work. I do not remember the exact date. It was light out in Seattle and it happened within a year of now. I was +2010-09-11,29.7855556,-95.8241667,Katy,TX,oval,900,High flying curving white orb. +2010-09-11,35.1494444,-90.0488889,Memphis,TN,rectangle,60,Rectangular white object observed for a minute or less over Memphis about fifteen minutes before sunset. +2010-09-11,40.6183333,-74.7447222,Whitehouse,NJ,fireball,600,information worth reading concerning possible contact. +2010-09-11,41.3297222,-90.6702778,Reynolds,IL,light,30,a solid white light traveling West to East, dimmed and then disappeared +2010-09-11,39.7047222,-105.0808333,Lakewood,CO,unknown,75,Bright white light traveling across sky turns red then gone. ((NUFORC Note: Possible satellite?? PD)) +2010-09-11,45.0791667,-93.1469444,Shoreview,MN,circle,18000,round bright circling orb around tower +2010-09-11,41.6638889,-83.5552778,Toledo,OH,triangle,10800,Triangular UFO with red/blue lights hovering for 3 hours, moving in zig zag motion every 2-3 minutes +2011-09-11,45.5947222,-121.1775,The Dalles,OR,fireball,30,2 witnesses to a large orange fireball object flying upwards into the atmosphere +2011-09-11,39.9555556,-86.0138889,Fishers,IN,light,300,Two bright lights appear out of no where and make very odd movements in the sky directly above us. +2011-09-11,61.5813889,-149.4394444,Wasilla,AK,triangle,2,a tiangle shaped craft with yellow lights below flew over. +2011-09-11,42.2444444,-83.1458333,Ecorse,MI,light,1200,Yellowish/ Orange sphere of light , 6 total, seen by 5 people I know, plus others in the neighborhood. +2011-09-11,34.0522222,-118.2427778,Los Angeles,CA,changing,7200,Downtown night lights in Los Angeles bunch of shaping lights and rays of blue lighting. +2011-09-11,41.7108333,-87.7580556,Oak Lawn,IL,circle,300,Two round orange with white flaming lights on top +2011-09-11,34.6175,-89.9686111,Senatobia,MS,circle,5,Large white light moving at helicopter speed, no sound, totaling a distance of about 6" from viewing point before disappearing. +2011-09-11,42.2825,-83.1752778,Melvindale,MI,diamond,480,These objects were seen on two consecutive nights 9-10/9-11-2011 by four people each night. They were filmed by two different HD video +2011-09-11,42.3086111,-83.4822222,Canton,MI,light,240,Canton, MI - Large - Brilliant - Orange/Amber Star-Like U.F.O.S - shrink and dim down / then disappear !!! +2011-09-11,41.1366667,-95.8905556,Bellevue,NE,sphere,300,orange and yellow sphere +2011-09-11,42.3313889,-83.0458333,Detroit,MI,formation,120,LIGHTED OBJECTS SIGHTED OVER DETROIT I75 HIGHWAY +2012-09-11,33.8352778,-117.9136111,Anaheim,CA,light,300,Red light in sky dropping flares +2012-09-11,44.0125,-75.7947222,Black River,NY,circle,900,Red circle craft with blinking white and green lights +2012-09-11,32.5230556,-92.6377778,Ruston (On Interstate 20),LA,light,4,Telephoned Report: An experienced truck driver, who had extensive military experience, witnessed a very bright, almost blinding, white +2012-09-11,38.2325,-122.6355556,Petaluma,CA,light,180,Looking up north in the sky, probably above Santa Rosa, I noticed a bright orange object moving west. I watched it looking for flashing +2012-09-11,27.8002778,-97.3961111,Corpus Christi,TX,sphere,300,Four of us saw a pulsing white sphere in the sky in our backyard. +2012-09-11,41.7472222,-73.1891667,Litchfield,CT,flash,195,I saw erratic flight pattern different colors and tumbling pattern western location of sky. +2012-09-11,48.5936111,-122.4152778,Blanchard,WA,sphere,1800,I was in this location not by choice but by accident. this night became a fight for my survival,as i was lost in this area and had to k +2012-09-11,25.7902778,-80.1302778,Miami Beach,FL,unknown,15,Very fast object that stops then comes back +2012-09-11,42.1744444,-71.6027778,Upton,MA,sphere,120,White sphere, 1 witness, unnatural movement. +2012-09-11,37.0583333,-120.8488889,Los Banos,CA,cylinder,1200,Large chrome cylinder shaped object with black dots spinning with two flaps hanging from the bottom. +2012-09-11,41.7352778,-70.1944444,West Dennis,MA,other,60,Silver object seen hovering over marsh in West Dennis during daytime on 9-11-12 +2012-09-11,33.6305556,-112.3325,Surprise,AZ,light,600,UFOs over Surprise Arizona +2012-09-11,37.9444444,-87.4052778,Newburgh,IN,triangle,30,Pleasent, exiting and peacefull +2012-09-11,33.5508333,-79.0416667,Murrells Inlet,SC,light,20,It happened twice within a 20 minutes span.3 people saw it the first time 3 people saw it the second time 3 lights then a V shape 1 +2012-09-11,27.3361111,-82.5308333,Sarasota,FL,oval,20,Bright Orange light in night sky +2012-09-11,42.6841667,-83.3772222,Drayton Plains,MI,circle,120,The highway in Waterford runs alongside a lake they were going across also. +2012-09-11,41.8458333,-70.95,Lakeville,MA,triangle,120,Triangle of fiery lights +2012-09-11,37.5233333,-77.3161111,Sandston,VA,triangle,15,3 red-orange (non-blinking) lights in a tight triangle formation high in the night sky heading north. +2012-09-11,42.0022222,-83.3086111,Newport,MI,fireball,2700,6 Orange Fireballs +2012-09-11,37.5175,-76.9791667,New Kent,VA,circle,30,Amber light over new kent, va +2012-09-11,47.5288889,-121.8241667,Snoqualmie,WA,formation,30,Two fast moving UFO's moving west to east 25 miles east of Seattle +2012-09-11,42.3222222,-83.1763889,Dearborn,MI,fireball,300,2 Bright Orange Spheres +2012-09-11,36.2944444,-76.2513889,Elizabeth City,NC,light,120,Saw a cluster of red lights moving at a high rate of speed with no sound over my neighborhood. Followed the lights for several minutes +2013-09-11,41.0894444,-112.0638889,Syracuse,UT,sphere,6,Blue Orb UFO spotted flying over northern Utah. +2013-09-11,39.4575,-77.7491667,Sharpsburg,MD,circle,3600,Orange color changing object +2013-09-11,44.2911111,-105.5016667,Gillette,WY,circle,10,Strange craft flying above street lights. +2013-09-11,36.8527778,-75.9783333,Virginia Beach,VA,cigar,2100,Cigar shaped green purple lights huge object if anyone knows plz research! -VA +2013-09-11,37.323055600000004,-122.0311111,Cupertino,CA,unknown,20,Red loud ufo, another big white light appeared in front of it then disappeared all Recorded for prove +2013-09-11,38.6038889,-89.8072222,Lebanon,IL,oval,10,A Football Like shaped mothership seen east of Lebanon, Il +2013-09-11,47.3075,-122.2272222,Auburn,WA,unknown,900,Star like light on clear sunny day moving north to south changing from bright to almost invisible repeatedly. +2013-09-11,36.1658333,-86.7844444,Nashville,TN,triangle,180,Triangle/ three lights/ silent/ lights went out one at a time until you didn't see it. +2013-09-11,34.6777778,-76.9511111,Emerald Isle,NC,circle,3000,Red and orange circular objects disappearing and reappearing. +2013-09-11,35.0525,-78.8786111,Fayetteville,NC,changing,15,Meteors or any other space debri dont turn with these angles and become stationary like this.. +2013-09-11,33.6888889,-78.8869444,Myrtle Beach,SC,cylinder,5,Reddish orange lights on a cylinder shape appeared high in and sky and disappeared six people saw the object before it disappeared. +2013-09-11,34.6777778,-76.9511111,Emerald Isle,NC,fireball,5,Two orange balls of light appearing sporadically over thirty minutes then fading to nothing. +2013-09-11,35.7525,-120.6952778,San Miguel,CA,triangle,120,The red light and the portal. +2013-09-11,34.6777778,-76.9511111,Emerald Isle,NC,rectangle,60,Over ocean, first looked like orange star then got larger and simply faded away.Then five more apeared two rectangle shaped with t +2013-09-11,44.3236111,-93.9577778,Saint Peter,MN,circle,60,A bright glowing orange circular object streaked from West to East in the late evening sky, leaving a wide light colored trail behind. +2013-09-11,45.5230556,-122.9886111,Hillsboro,OR,triangle,15,Dull black triangle with 4 lights moved quickly overhead from horizon to horizon +2013-09-11,33.6888889,-78.8869444,Myrtle Beach,SC,light,60,Saw four orange lights appear over ocean then disappear. +2013-09-11,33.6888889,-78.8869444,Myrtle Beach,SC,fireball,1800,Fireballs in a line. +2013-09-11,33.5091667,-111.8983333,Scottsdale,AZ,other,1800,I saw a cluster of white lights from 11:30pm-1:00am slowly moving across the sky. +1954-09-01,42.8688889,-76.9780556,Geneva,NY,disk,120,While marching on a bivouac maneuver in (?) September 1954, I caught a glimpse overhead of a disc-shaped, metallic in color object that +1957-09-01,33.1069444,-98.5891667,Graham,TX,sphere,30,Three shiny spheres over Graham Texas +1957-09-01,41.3197222,-81.6269444,Brecksville,OH,circle,180,20 ft in diameter glowing ufo landed a few feet from my car . +1958-09-01,46.8772222,-96.7894444,Fargo,ND,disk,900,Flying Saucer seen while driving home from work. +1961-09-01,41.6638889,-83.5552778,Toledo,OH,light,172800,Watched light move over woods for several nights, encountered two small glowing figures, experienced time displacement. +1962-09-01,47.6063889,-122.3308333,Seattle,WA,circle,180,This event occurred many years ago when I was eight. I have never spoken publicly of it, but now, at the age of 45, I am interested in +1964-09-01,41.7822222,-72.6125,East Hartford,CT,fireball,1.5,Redish-Orange object falling e to w in northern sky North of East Hartford, CT +1965-09-01,38.5766667,-92.1733333,Jefferson City,MO,sphere,120,Mid 1960's in Jefferson City Mo silver sphere descended and rapidly ascended upon approach of a military jet +1966-09-01,40.7141667,-74.0063889,New York City (Queens),NY,sphere,2700,SITING OF A MASSIVE UFO ABOVE THROGS NECK BRIDGE SEPTEMBER 1966 +1967-09-01,32.6408333,-90.3647222,Bentonia,MS,light,300,a light that did not light the ground around me but was so bright i just could look at it then it shot across the sky +1967-09-01,41.3136111,-81.7247222,North Royalton,OH,disk,600,what did we see? +1969-09-01,42.1416667,-71.25,Walpole,MA,oval,300,The object just hovered for a few minutes without making sound. There was no movement in the trees and the silence was deafening. +1970-09-01,34.0522222,-118.2427778,Los Angeles,CA,disk,120,Northbound saucer-shaped objects zigzag across Southern California +1971-09-01,42.7208333,-94.215,Humboldt,IA,cigar,45,Craft resembling a large blimp appears out of thin air from a cloudless sky ,descends, lands and vanishes +1971-09-01,45.0238889,-69.2902778,Dexter,ME,sphere,60,I was thirteen then. My grandmother, mother and I were having an ice cream in the car outside a diner. About 45-50 degrees south we saw +1971-09-01,42.8863889,-78.8786111,Buffalo,NY,triangle,60,Silent, unmarked arrowshaped aircraft flying low over the University at Buffalo. Was it an experiment? +1971-09-01,44.8830556,-68.6725,Orono,ME,rectangle,300,craft was about 30-40' in length with very defined corners rectangular in shape and glowing red from inside, hovering, +1971-09-01,42.7966667,-85.8616667,Forest Grove,MI,circle,1500,Clear night, full moon, a huge dark object above my home. +1972-09-01,42.0266667,-96.0969444,Onawa,IA,disk,180,Saucer shaped object with square red lights moves slowly over small Iowa town. +1972-09-01,30.46,-97.9880556,Lago Vista,TX,light,1800,star like distance and appearance of many lights moving in formation +1972-09-01,39.2688889,-84.2638889,Loveland,OH,disk,600,A huge, silver, saucer-shaped object appeared in the sky. It suddenly zipped right over our backyard where it stopped & hovered about +1974-09-01,39.6527778,-78.7627778,Cumberland,MD,light,1800,wife & I were coming down the long curve on US 40 east of cumberland Md. Damned comp wouldnt accept time of 1730, just starting to get +1974-09-01,41.4463889,-86.1480556,Bremen,IN,disk,5,saw disk shaped object out of window +1974-09-01,57.0530556,-135.33,Sitka (North Of, St. John Bay),AK,disk,300,On hunting trip, woke to see object hovering over bay and "navigating" up the bay and up the head waters and out of sight over hillside +1975-09-01,33.8702778,-117.9244444,Fullerton (North Of Anaheim...I.e.disneyland),CA,other,1800,The craft resembled a large balloon. I mean it had a basket, and some type of revolving cone-thing. Now put a cone on its side, the con +1975-09-01,39.0911111,-94.4152778,Independence,MO,disk,60,disk shape revolving around tv tower +1975-09-01,34.4436111,-118.6086111,Valencia,CA,oval,900,In Valencia, Ca. the craft I was watching, was watching me. +1976-09-01,38.4,-105.2166667,Canon City,CO,oval,120,Aug 1976 Canon City Colo Disk shap duration 2 min just came over mountain and flew by +1976-09-01,29.4238889,-98.4933333,San Antonio,TX,sphere,5,i was about 7years old. my parents and sister and brother were sitting at the table eating breakfast when the greyish metalic sphere hi +1976-09-01,47.2430556,-68.3141667,St. Agatha,ME,light,600,This very bright light getting brighter and not moving, I kept my eyes on it , +1976-09-01,26.2752778,-80.0875,Lighthouse Point,FL,disk,600,Saw a saucer with extreme brightness, spinning rapidy, with windows surrounding the ship, and no sound. +1976-09-01,45.5827778,-122.3522222,Washougal,WA,light,1200,Red light in sky, in evening, stayed in place for 15 to 20 minutes. +1976-09-01,33.1841667,-90.4891667,Belzoni,MS,light,1200,Spotted air craft hubbering about 1/2 out infront of us as we got out of our car. Stood and watched it for 15-20min. until it sped away +1976-09-01,37.3655556,-119.7252778,Ahwahnee,CA,fireball,120,Huge fireball hit and one big or three smaller crafts with blue lights came from where it hit the ground +1977-09-01,41.1416667,-87.875,Bourbonnais,IL,triangle,1800,BOLIDE RELATED UFO +1977-09-01,33.0197222,-96.6986111,Plano,TX,disk,1200,Low ufo disc seen by 5 in broad daylight. +1977-09-01,47.9791667,-122.2008333,Everett,WA,triangle,600,Two Objects in late afternoon, camouflaging themselves in the clouds, translucent, traveling east above 45th ave., then north, then rap +1977-09-01,43.0747222,-73.1544444,Arlington,VT,sphere,300,grayish color sphere shaped craft,no lights, and two more smaller crafts came out of the rear of the larger craft. +1977-09-01,34.0286111,-117.8094444,Diamond Bar,CA,chevron,1200,Huge flying saucer type object observed closely on Pomona Fwy near Diamond Bar, CA in 1978. +1977-09-01,40.1997222,-76.7313889,Middletown,PA,disk,300,Adamski type craft visible for 5 mins 500' above Swatara Creek. Portholes, red light, ion-blue glow on bottom. Craft accellerated into +1977-09-01,42.9633333,-85.6680556,Grand Rapids,MI,cone,180,I know what I saw....I don't care if you don't believe me.... +1977-09-01,44.1897222,-73.7863889,Keene Valley,NY,light,15,Bright blueish light flew over me I was frozen and couldn't move +1977-09-01,35.9152778,-94.9697222,Tahlequah,OK,triangle,600,Stopped on North Water street just north of Allen Road because one of the four passengers in the car needed to urinate. I was in back l +1978-09-01,37.775,-122.4183333,San Francisco,CA,circle,300,RED OBJECT IN THE SKY! +1978-09-01,42.5,-96.4,Sioux City (Ia)/Sioux Falls (Sd) (Between; On I 29),IA,other,600,Landed UFO off I29 between Sioux Falls, SD & Sioux City, IA in late summertime 1978 +1978-09-01,35.1494444,-90.0488889,Memphis,TN,triangle,360,ufo sighting over my car Memphis +1978-09-01,46.3238889,-120.0075,Sunnyside,WA,light,60,Bright light over Yakima Valley in about 1978 +1978-09-01,39.785,-85.7694444,Greenfield,IN,light,1200,Three lights in the shape of a triangle. +1978-09-01,41.995,-88.1855556,Bartlett,IL,disk,2700,UFO Followes us to Police Dept then disappeared then reappeared as we headed home. I stood under it for about 30 to 40 minutes. 500 +1979-09-01,30.2138889,-92.3744444,Crowley,LA,unknown,60,Machine Sounding Heart Beat +1979-09-01,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,60,Major UFO seen over Brooklyn New York "It was silent and very much visable"... +1979-09-01,40.8427778,-73.2933333,Commack,NY,other,900,In 1979 while driving east on new highway in commack just after dark ,i was looking at the sky over parkway drive north, what looked li +1979-09-01,37.301944399999996,-78.3922222,Farmville,VA,disk,1,2 out of 3 witnesses sitting together saw saucer fly by overhead, completely silently and suddenly. +1979-09-01,41.4044444,-80.3913889,Greenville (Near The Greenville Airport),PA,triangle,2700,Craft was triangular in shape. +1979-09-01,38.6763889,-81.6602778,Kenna,WV,circle,300,Round object with lights hovered for a wile and then accelerated increadably fast, not of this world. +1979-09-01,38.2008333,-77.5894444,Spotsylvania,VA,other,3600,Returning home from an evening shopping trip my husband spotted several bright lights in the sky into the distance. Instead of continui +1979-09-01,39.3583333,-93.4955556,Carrollton,MO,sphere,7200,UFO Abduction ofr Four People Near Missouri River in 1979 +1979-09-01,42.2711111,-89.0938889,Rockford,IL,formation,20,Several round objects in a straight line formation +1979-09-01,35.3627778,-98.4475,Sickles,OK,triangle,600,It followed behind us for three miles. Appeared to be triangle shape with three lights. Made no Sound. +1980-09-01,38.9833333,-93.5683333,Concordia,MO,sphere,3,Ball of light in Concordia, MO- 1980 +1980-09-01,47.9188889,-122.5530556,Hansville,WA,disk,1200,Spotted glowing disks off to east over Mukelto area. They were pulsating. Suddenly flashed, blinked, rose straight up & half of them f +1981-09-01,36.8366,-94.3761,Diamond,MO,light,180,UFO sighting/Time Travel?/Visitors? +1981-09-01,33.5669444,-84.5811111,Fairburn,GA,disk,120,UFO sighting in Fairburn, GA around the fall of the year. +1981-09-01,41.375,-74.6930556,Port Jervis,NY,triangle,1200,While walking on route 209 south, 2 miles north of Port Jervis, ny, I noticed a dull red light far in the distance. At first sighting, +1982-09-01,38.3241667,-85.4725,Crestwood,KY,light,180,Red lights going toward a larger, stationery ,white light and then disappearing. I counted about 17 or so in 1982. +1983-09-01,36.1988889,-115.1166667,North Las Vegas,NV,diamond,60,as i was leaving work driving on craig rd i saw 4 very bright lights in the sky just to the right of the front of my car. i pulled over +1983-09-01,40.6083333,-75.4905556,Allentown,PA,disk,2100,It was about 150 ft above me , made no sound, emitted no wind, floated till it came to Dorney Park,after about 5 minutes it dropped and +1983-09-01,40.015,-105.27,Boulder,CO,triangle,10,I observed a large triangular shaped object in 1983 in the same area and with identical characteristics described in a 2005 report. +1984-09-01,39.2902778,-76.6125,Baltimore,MD,triangle,900,An extremely large black rectangle or triangle ufo floating at tree top level outside our house. +1984-09-01,32.7977778,-117.2394444,Pacific Beach,CA,oval,1800,Mystery craft scares Pacific Beach residents +1984-09-01,36.1755556,-106.1827778,Medanales,NM,light,60,tHIS IS ALL I SAW.. LOOKING WEST FROM WINDOW AT NIGHT , I SAW A RED BRILLIANT LIGHT ON LAND ABOUT 11/2 ACRE AWAY. AS I STARED AT THE LI +1984-09-01,42.2733333,-83.1344444,River Rouge,MI,sphere,10,ufo scans goodyear blimp in 1984 over River Rouge Michigan +1984-09-01,30.3405556,-97.5566667,Manor (In Or Just Outside Of),TX,unknown,10,my friend and I drove out to the country, near his father's property, which is located in or just outside of Manor, Texas. we just w +1985-09-01,45.6722222,-118.7875,Pendleton,OR,rectangle,180,rectangle falling turning and flipping end over end +1985-09-01,41.5580556,-73.0519444,Waterbury,CT,oval,300,Waterbury, CT 1985. Large UFO Hovers over Holy Land off RT 84 and downtown area for minutes Seen by many. +1986-09-01,34.2527778,-83.5616667,Maysville,GA,triangle,300,Triangle shaped ship over Georgia in the 1980's. +1986-09-01,48.2933333,-122.6419444,Oak Harbor,WA,other,15,Possible military test craft in Oak Harbor, Washington. +1986-09-01,36.8527778,-75.9783333,Virginia Beach,VA,unknown,300,Two creatures or aliens in Bay Colony, no UFO. +1987-09-01,34.2247222,-118.4488889,Panorama City,CA,other,60,Purple glowing spiral shaped object that hovered and slowly rotated silently. +1987-09-01,40.6430556,-73.6961111,Hewlett,NY,disk,60,LILCO Lot Sighting +1988-09-01,33.3941667,-104.5225,Roswell (West Side),NM,disk,2,examples page will not come up +1988-09-01,35.5066667,-97.7622222,Yukon,OK,light,600,bright light off I-40 and Mustang Rd in Yukon, OK +1989-09-01,35.1822222,-83.3816667,Franklin,NC,sphere,15,A perfect sphere, almost transparent , very transluscent , soundlessly floating above me +1989-09-01,35.9036111,-81.0908333,Hiddenite,NC,disk,10,A VERY LARGE SAUCER SHAPED OBJECT (ABOUT THE SIZE OF TWO FOOTBALL FIELDS) (SILVER IN COLOR) WITH FLASHING COLORED LIGHTS (GREEN, RED & +1990-09-01,39.1580556,-75.5247222,Dover,DE,circle,900,AS I WAS SITTING IN MY CAR WAITING FOR MY COWORKERS TO ARRIVE AT OUR CONSTRUCTION SITE, I NOTICED A LIGHT IN THE DISTANCE THAT SEEM TO +1990-09-01,36.8347222,-81.515,Marion,VA,triangle,120,I stood directly under a gigantic spacecraft no more than a couple hundred feet above my neighborhood. +1990-09-01,42.4133333,-89.0091667,Roscoe,IL,triangle,600,At the time I was about thirteen years old, but I remember it well. We lived near big apple orchard and had just finished picking a b +1990-09-01,29.4238889,-98.4933333,San Antonio,TX,other,60,7 points of light in the sky, far away, circling each other, then fading away. +1991-09-01,32.4486111,-99.7327778,Abilene,TX,triangle,600,Swaying round light at rooftop height between 2 houses and right above--a huge triangular black object--no sound. 500 Lights On Obj +1991-09-01,33.8025,-93.3808333,Prescott,AR,sphere,7200,Un like other incounters I have read about, The ship I saw was landed +1991-09-01,36.1538889,-95.9925,Tulsa,OK,rectangle,900,It was the size of a football field. +1991-09-01,38.6272222,-90.1977778,St. Louis,MO,rectangle,60,Sitting in the backyard reading when I noticed a dark shape against the clouds...again!! +1991-09-01,38.6272222,-90.1977778,St. Louis,MO,rectangle,180,Witnessed a black rectangle go over our house... +1991-09-01,42.3583333,-71.0602778,Boston (Above),MA,circle,30,The object was absolutely solid as I observed it, but appeared to fly thru the windows. +1991-09-01,42.4391667,-123.3272222,Grants Pass,OR,light,28800,Light appeared over mountain +1992-09-01,39.3133333,-74.9813889,Port Elizabeth,NJ,rectangle,900,The Dorchester WaWa UFO +1992-09-01,42.0255556,-88.1783333,Streamwood,IL,triangle,30,triangle pulsating ufo shot from many miles away stopped instantly,spinning and moving slowly over houses +1992-09-01,40.0455556,-86.0086111,Noblesville,IN,triangle,300,black triangle over "Tesla" concert in Noblesville,IN 1992 +1993-09-01,42.8255556,-78.8236111,Lackawanna (Suburb Of Buffalo),NY,triangle,1800,3 Triangular craft, each identical to each other with a different colored light in each corner, circling over Lake Erie, followed by a +1993-09-01,44.4041667,-70.7911111,Bethel (Albany Township),ME,light,120,A bright star made right-angle turns without deceleration and sped down over the horizon. +1994-09-01,35.2480556,-93.0488889,Pottsville,AR,sphere,300,A bright orange sphere hovering over interstate 40 turned white then vanished. +1994-09-01,40.7141667,-74.0063889,New York City,NY,light,10800,5 LIGHT THAT LOOKED LIKE STARS MOVING UP AND DOWN ON LIGHT AT A TIME +1994-09-01,42.4391667,-123.3272222,Grants Pass,OR,changing,43200,Thought of as a Dream for 20 Years, Recent Information Convinced me that Iv been Abducted by Aliens. +1994-09-01,35.1716667,-103.7244444,Tucumcari (On I-40 Westbound),NM,triangle,240,WAS TRAVELING WEST BOUND I-40 WEST OF TUCUMCARI NM AND OBSERVED A TRINGULAR OBJECT MOVING AT MY SPEED CLOSER TO ME THAN THE BACK DROP T +1994-09-01,37.775,-122.4183333,San Francisco,CA,sphere,900,glowing ball just under the surf about 2 1/2 feet off the beach south of san francisco/ocean beach approx 9/94 +1995-09-01,46.9738889,-124.155,Ocean Shores,WA,triangle,300,Black triangular craft vibrates me out of sleep, blocks out sky. Verified next day by independant witness. +1995-09-01,36.2083333,-115.9830556,Pahrump,NV,changing,300,Time 9:00 a.m. went outside to pump water up from well. I heard an airforce jet,so I looked up. At about 1:00 oclock high, the jet wa +1995-09-01,36.2083333,-115.9830556,Pahrump,NV,light,720,9;30a.m. six starlike objects following an airforce jet spotted in the northern sky. 11;30a.m. approximately 145 starlike objects sig +1995-09-01,32.0833333,-81.1,Savannah,GA,diamond,180,Strange spinning lights behaving strangely in downtown Savannah +1995-09-01,45.0025,-101.2330556,Eagle Butte,SD,light,180,The unexplained bright blue light. +1996-09-01,26.2708333,-80.2708333,Coral Springs,FL,light,15,bright round light flew over our car two times +1996-09-01,33.2097222,-87.5691667,Tuscaloosa,AL,disk,60,Saucer skirts clouds, disappears +1996-09-01,40.1847222,-89.5808333,New Holland (Rural),IL,unknown,600,Witnessed an object with 3 lights forming an equilateral triangle on its bottom plane that hovered and made no noise. +1996-09-01,45.4386111,-88.6602778,Wabeno,WI,fireball,15,orange ball seen following a secret aircrat, at 450 mphin the northwoods of wisconsin. +1996-09-01,36.9758333,-82.5758333,Wise,VA,oval,600,Mysterious aircraft sighted in the hills of Southwest Virginia +1997-09-01,41.2280556,-72.9919444,Woodmont,CT,disk,900,walking my dog along the beach,I was taking pictures of the oyster boats with my digital camera, when I viewed the pictures, I found a +1997-09-01,36.3941667,-87.0366667,Pleasant View,TN,fireball,5,large white fireball or super flare... +1997-09-01,33.1580556,-117.3497222,Carlsbad,CA,light,300,Round orb of light seen in back yard.between apr.and oct 1997. +1998-09-01,40.7141667,-74.0063889,New York City (Brooklyn),NY,oval,1200,Two eliptical luminous pink objects travelling North East at approximately Mark-2 in parallel formation. However, there was sound emi +1998-09-01,45.9933333,-123.9213889,Seaside,OR,triangle,2,On this warm night I was watching the starry sky, suddenly and lasting only moments, a silk-like floated over my sight line. It gave t +1998-09-01,40.4172222,-74.0625,Leonardo,NJ,disk,180,Saw three disk shaped objects over my house. Very qiuet. Nothing spectacular, but I NEVER saw anything like it before. +1998-09-01,39.9861111,-88.2588889,Tolono,IL,circle,3,I was trimming hedges. took break, looked up an saw object appear the disappear +1998-09-01,41.3113889,-89.0713889,Jonesville,IL,cigar,600,had seen the same lookung object earlier in day disapeared behind buildings around 4:30 Iwas stuck on lift bridge it was not moving abo +1998-09-01,41.3397222,-75.7366667,Avoca,PA,triangle,120,Driving South on I-81 around 20 miles South of Avoca Airport. Saw large object hovering right off the side of highway. Nighttime spott +1998-09-01,33.7125,-115.4013889,Desert Center (~West To 10 Miles East Of Chiriaco Summit),CA,sphere,2700,At two different locations 15 miles apart we saw 4 huge orbs of bright light. Two very different formations. On the second sighting saw +1999-09-01,39.7211111,-82.2988889,Junction City,OH,triangle,120,5 red lights circled each other hovering about 150 feet off ground for about a minute and a helf then fly away and a high rate of speed +1999-09-01,36.9741667,-122.0297222,Santa Cruz,CA,unknown,60,looked like a shooting star, but stars don't move that way. +1999-09-01,41.5733333,-87.7844444,Tinley Park,IL,triangle,2,I was outside having a smoke and noticed two objects in the sky or space far up shooting across the sky and were red and blue tint of c +1999-09-01,47.7625,-122.2041667,Bothell,WA,formation,4,i was waiting outside of my friend's workplace (ATL, a Phillips company) for him to get off when i saw 4 star like objects flying in a +1999-09-01,41.0255556,-81.73,Wadsworth,OH,light,45,Stationary orange ball of light just above horizon: Southeast Medina County, Ohio. Aprx 4:30am EDT. Stargazing several miles west of +1999-09-01,35.4736111,-81.2547222,Lincolnton,NC,changing,300,Glowing object in morning sky +1999-09-01,37.9577778,-121.2897222,Stockton,CA,formation,7200,Multiple contrails on polar trajectory +1999-09-01,41.4994444,-81.6955556,Cleveland,OH,light,1800,Distinct, isolated grouping of seven white orbs during the day several miles straight up (12 o'clock) that hovered then faded. +1999-09-01,41.85,-87.65,Chicago,IL,cigar,1,I am the producer of the CBS television Series "Early Edition" filmed in Chicago. A second unit filming a locked off shot of a clock i +1999-09-01,34.5002778,-91.5525,Stuttgart,AR,cigar,60,I observed a silver cigar shaped object traveling at about 4000ft. at a speed of about 250-300mph.The object was traveling west north +1999-09-01,35.198055600000004,-111.6505556,Flagstaff,AZ,oval,1200,oval shaped with some kind of "bumps" on top +1999-09-01,39.7047222,-105.0808333,Lakewood,CO,rectangle,1184,A very bright white rectangular object which did not appear to be moving, but instead a clould moved over it and then it went behind Gr +1999-09-01,39.1697222,-91.8827778,Mexico,MO,unknown,45,Black object seen flying very high/fast changing direction/altitude at incredible rate until it disapeared into the clouds. +1999-09-01,42.4075,-124.4205556,Gold Beach,OR,fireball,60,Fireball flew from west to east by south-east. Split into three peices and disapeared over the horizon. +1999-09-01,45.12,-93.2875,Coon Rapids,MN,triangle,10,Large boomerang shaped invisible object blocked starlight while flying across sky +1999-09-01,22.0783333,-159.3219444,Kapaa,HI,triangle,600,While vacationing on the East Coast of Kauai I went out on a clear night and looked up at the stars. I saw lots of satelites and I also +1999-09-01,42.3266667,-122.8744444,Medford,OR,changing,120,My sons caretaker was standing in the parking lot in Meford, Or. last Wednesday and saw a bright orange/red ball coming over the Table +1999-09-01,38.5722222,-94.8788889,Paola,KS,cigar,60,Shape shifter, Cigar shaped craft. +1999-09-01,45.5236111,-122.675,Portland,OR,other,900,Two seperate fly by's of apparently military Jets, with no wing or nose lights, Afterburners produced only visible light. Extremely Lou +1999-09-01,38.2494444,-122.0388889,Fairfield,CA,triangle,300,A huge black triangular object was seen slowly traversing across the sky very close at what he estimated to be 900' off the ground. Th +1999-09-01,43.3666667,-124.2166667,Coos Bay,OR,other,30,large fireball, faded to long cone shaped object moving from west to east about 15 to 20 degrees up from horizon +1999-09-01,43.9827778,-124.0986111,Florence,OR,fireball,15,Orange, moving south, followed by small illuminated object below and slightly behind. Continued burning until obscured by trees. +1999-09-01,41.4872222,-120.5413889,Alturas,CA,formation,20,bright lights in formation traveling south to north +1999-09-01,38.8966667,-121.0758333,Auburn,CA,fireball,120,Traveling across the entire horizon in less than 2 minutes, 7-8 comet-like objects blazed across the sky. One of the objects trailed of +1999-09-01,38.8966667,-121.0758333,Auburn,CA,fireball,30,Sparkling Streaks- First impression was that it was space debris entering- What was unusual was that there seemed to be a formation of +1999-09-01,39.7286111,-121.8363889,Chico,CA,fireball,20,Four glowing objects slowly moving across the night sky, leaving a short trail. +1999-09-01,38.6858333,-121.0811111,El Dorado Hills,CA,light,60,Saw 3 lights in triangular type formation. with clouds glowing around each light. No blinking just solid light. traveling in perfect fo +1999-09-01,44.0522222,-123.0855556,Eugene,OR,light,5,White fuzzy circle, red streak, fireball, acceleting at a very fast rate, gone... +1999-09-01,38.0383333,-122.5366667,Marinwood (Northern Part Of San Rafael),CA,teardrop,7,Standing on the back deck of my friend's house, facing east, we observed 3 objects to the north/northeast moving in a perfectly straigh +1999-09-01,38.1075,-122.5686111,Novato,CA,light,180,we were traveling east on hwy. 37 and saw moving slowly above us from the north/west, what looked like three giant bars of light, simil +1999-09-01,45.5236111,-122.675,Portland,OR,unknown,120,direction traveling NW to NE objects were about the size of split pea at arms length colour, red One appeared from nowhere traveling NE +1999-09-01,39.5297222,-119.8127778,Reno,NV,fireball,60,A Meteor with a Difference. +1999-09-01,38.3566667,-121.9866667,Vacaville,CA,triangle,300,The object was considerably larger then a C-5, and was irregular in shape. As it was clear the object did have a surface mass he descr +1999-09-01,39.7475,-122.1952778,Orland,CA,fireball,180,We have a Dairy in Northern California just east of Interstate 5. I was out side feeding the cows and to the east on the horizon level +1999-09-01,38.5816667,-121.4933333,Sacramento,CA,changing,10,streaming,flow of light,similar to that of northern lights (aurora) +1999-09-01,34.4208333,-119.6972222,Santa Barbara,CA,cigar,10,An orange stick shaped object paused at about 80 deg. and slowly went down over harbor area to the south. +1999-09-01,64.5638889,-149.0930556,Nenana,AK,light,1200,Several stars moving then stopping and moving again in another direction. +1999-09-01,34.4208333,-119.6972222,Santa Barbara,CA,cigar,5,Bright orange vertical cigar shaped something at 45 deg. slowly drop into ocean? +1999-09-01,47.6588889,-117.425,Spokane,WA,triangle,5,Brief very rapid movement over hills to north from spokane valley. Banks of lights on wedge shape. Very strange. +1999-09-01,47.7847222,-122.2730556,Brier,WA,formation,30,While sitting in hot tub gazing at the stars my wife and I observed 3 what appeared to be satelites +1999-09-01,39.7286111,-121.8363889,Chico,CA,other,30,a fast moving object appeared in the raod while I was driving, blue and white lights, I stopped and watched, the object stopped and hov +1999-09-01,38.4191667,-82.4452778,Huntington,WV,rectangle,60,A bright star suddenly appeared in the western sky. It then fell toward the earth in a streak of white light. Near the horizon, it sudd +1999-09-01,39.0911111,-94.4152778,Independence,MO,other,60,Aircraft in formation +1999-09-01,40.7425,-84.1052778,Lima,OH,light,180,Looking to the Northeast, I saw two orange lights that just disappeared. I have seen these lights on several occasions along with frie +1999-09-01,35.8455556,-86.3902778,Murfreesboro,TN,fireball,600,Two objects seen possiably leaving moon's surface or flying around Moon.... +2000-09-01,38.6688889,-120.9861111,Cameron Park,CA,egg,10800,Object was circular with kind of a square shape at the top (grey) +2000-09-01,33.7591667,-96.6691667,Pottsboro,TX,other,300,white snake-like figure moving fluidly through the clouds. +2000-09-01,38.45,-91.0083333,Union,MO,other,180,Franklin County, Union, Missouri at Hwy 50 and Prairie Dell Rd, WalMart +2000-09-01,41.9444444,-71.2861111,Attleboro,MA,circle,30,points of light curving top and bottom to the left with a bright shining round ball in the middle of the shape +2000-09-01,33.1908333,-101.3777778,Post,TX,light,900,I was followed closely by a flashing blue light, for about 15 miles. +2000-09-01,32.4613889,-97.3877778,Joshua,TX,triangle,900,Low Flying Triangular Object With Two Huge White Lights!!! +2000-09-01,37.8044444,-122.2697222,Oakland,CA,cylinder,300,Horizontal column w/ lights traveled across sky,turned around then disappeared.& a starlike object w/in minutes apart.No sounds. +2000-09-01,44.0005556,-96.3172222,Pipestone (20-30 Miles North Of),MN,triangle,600,silent low flying "cloaked" Triangle in Minnesota/South Dakota +2000-09-01,34.8697222,-111.7602778,Sedona,AZ,fireball,30,"shooting star" streaking all the way down to the ground and bouncing back up +2000-09-01,41.6833333,-86.25,South Bend,IN,triangle,600,Saw triangular craft in early Fall 9-12 years ago that was either jet black or transparent with three lights in Northern Indiana. +2000-09-01,33.4147222,-111.9086111,Tempe,AZ,flash,1200,Flashes over the Southern horizon +2000-09-01,42.7675,-78.7441667,Orchard Park,NY,other,45,Three lights skull/heart shape. flew low made loud noise. +2001-09-01,41.4444444,-87.6313889,Crete,IL,oval,120,I WAS A NONE BELELIEVER TILL THIS HAPPENED, I WAS IN TOTAL AWE OF HOW A OBJECT OF IT'S SIZE MOVED AND CHANGED DIRECTION SO FAST. +2001-09-01,34.0230556,-84.3616667,Roswell,GA,formation,10,I had just finished eating dinner at the Waffle House on Cobb Parkway when I began to feel a tingling sensation in my right rear molar +2001-09-01,33.9608333,-83.3780556,Athens,GA,triangle,180,Black Triangle in athens Ga 3 in the morning moving slowly in a south eastern direction over mckey court Athens GA +2001-09-01,32.7833333,-96.8,Dallas,TX,disk,60,Dallas UFO in the western sky +2001-09-01,29.8830556,-97.9411111,San Marcos (20 Miles West Of),TX,other,180,Silent triangle formation of three lights at extreme altitude ((NUFORC Note: Possible sighting of U. S. Navy "NOSS" satellites?? PD)) +2001-09-01,36.1333333,-96.3541667,Mannford,OK,other,180,7 objects in a game formation shooting at each other with 3 in the middle trying to deflect the shots, with referees top & bottom. +2001-09-01,39.4666667,-87.4138889,Terre Haute,IN,sphere,5,Moving from the NE, a faint lite green sphere having no sound changed direction towards the S, almost as if it noticed I was observing +2001-09-01,39.4666667,-87.4138889,Terre Haute,IN,oval,5,What is best described as an elongated off-white irridescent oval object, appeared in the center of the clear sky, going silently to th +2001-09-01,39.9522222,-75.1641667,Philadelphia,PA,fireball,300,Dense white unusual and persisten contrail with reddish fireball at tip resembled spacecraft reentry. +2001-09-01,47.3294444,-122.5788889,Gig Harbor,WA,cigar,120,blue silicon craft - cigar shape - est. size length of football field - white light radiating from mid point in length of craft +2001-09-01,34.8697222,-111.7602778,West Sedona,AZ,light,1800,white and blinking red light play tag over Sedona +2001-09-01,39.9508333,-86.2619444,Zionsville,IN,disk,900,Low hovering disc, 4 lights +2001-09-01,28.6986111,-81.3083333,Winter Springs,FL,triangle,240,Triangle UFO followed by Military Jets +2001-09-01,35.2269444,-80.8433333,Charlotte,NC,disk,120,I sawa silver object hovering 100ft over a area of trees +2002-09-01,38.5816667,-121.4933333,Sacramento,CA,light,180,Sept. 1, 2002 4 am at Sacramento, CA ....At 4am my dog started barking so I got up to see what was going on. On my way back in I glan +2002-09-01,41.8741667,-80.1319444,Edinboro,PA,unknown,600,strange contrail in the northwestern pa. sky over lake erie. +2002-09-01,42.1083333,-72.0791667,Sturbridge,MA,changing,600,Unidentified Objects sighted in local town! +2002-09-01,30.6083333,-87.34,Cantonment,FL,rectangle,420,unexplained but was nice to see +2002-09-01,32.6108333,-110.7702778,Oracle,AZ,disk,600,Disc (100 ft diameter) came out of cloud-hovered at altitude of 200 feet for 10 minutes. -15 people witness siting. +2002-09-01,42.4169444,-88.0738889,Lake Villa,IL,sphere,15,Silver spherical object emitting green flame trail traveling right past me +2002-09-01,39.0483333,-95.6777778,Topeka,KS,triangle,900,Me and my husband saw a triangular UFO very closely in KS. It was losing control, then regained and took off. +2002-09-01,41.2586111,-95.9375,Omaha,NE,unknown,300,What a way to start September. +2002-09-01,48.6483333,-118.7366667,Republic,WA,light,600,The speed at which this light traveled was beyond anything we have on this earth, and then the flash was overwhelming. +2002-09-01,45.9975,-121.5269444,Trout Lake,WA,triangle,60,triangular formation of white lights moving and making a 180 degree turn +2002-09-01,45.7544444,-122.8763889,Scappoose,OR,triangle,15,While camping on an island on the Columbia River with perfect visibility, four adults witnessed what I believe to be three objects, but +2002-09-01,45.9975,-121.5269444,Trout Lake (Mt. Adams),WA,triangle,60,Oregon UFO Review Case: Triangle formations over Washington and Oregon checked against satellite data...OUFOR. +2003-09-01,45.5236111,-122.675,Portland,OR,light,600,small compact formation of lights, no movement; but bursts of red and yellow lights - very faint. +2003-09-01,44.0463889,-123.0208333,Springfield,OR,oval,600,Craft seen in daylight over Oregon +2003-09-01,38.7891667,-77.1875,Springfield,VA,teardrop,120,Two "jellyfish" shaped UFOs floating above skies of Springfield, VA. +2003-09-01,34.1866667,-118.4480556,Van Nuys,CA,sphere,10,Green light seen in the daylight twice in one month. +2003-09-01,39.2505556,-76.5208333,Dundalk,MD,sphere,300,Got to get this off my chest. I'm not the hysterical type, but what I saw while parked on the damn Wal-Mart parking lot (of all places) +2003-09-01,29.9688889,-95.6969444,Cypress,TX,circle,20,look i was taking photos of a bad storm on Sept 1, 2003 @5:23pm in Cypress Texas. i took my camera outside to get pictures of the stor +2003-09-01,38.9988889,-84.6266667,Florence,KY,unknown,300,Small object over Florence, KY +2003-09-01,39.7391667,-104.9841667,Denver,CO,light,600,Point of Light spotted in denver on 9/01/03 +2003-09-01,34.0522222,-118.2427778,Los Angeles,CA,disk,600,I saw 7 lights in the sky and I saw the figure when the deadlights sweeped on it. +2003-09-01,34.2011111,-118.5355556,Reseda,CA,other,240,Bright light seen above Los Angeles...fades and moves northerly at high speed +2003-09-01,47.6063889,-122.3308333,Seattle (Alkii Beach),WA,light,5,Bright light flashed and moved up(vertical) +2003-09-01,34.1683333,-118.605,Woodland Hills,CA,circle,120,Large white blinking stationary circle west of Los Angeles 2003 +2003-09-01,42.4391667,-123.3272222,Grants Pass,OR,other,180,We saw a lobed orb over Grants Pass, Oregon, on 9/1/03. +2003-09-01,47.0561111,-93.9158333,Remer,MN,light,300,I was on a farm in northern minnesota and just happened to glance up at the sky, I saw the big dipper and noticed three star sized ligh +2003-09-01,32.0833333,-81.1,Savannah,GA,light,2700,Flashing object in western sky, blue, red, amd amber lights, never moving, just flashing slow then fast +2004-09-01,39.2022222,-83.6116667,Hillsboro,OH,light,1200,Three bright lights seen in sky +2004-09-01,41.7880556,-71.9502778,Brooklyn,CT,sphere,600,Yet another UFO spotted by my house +2004-09-01,33.4483333,-112.0733333,Phoenix (South Of),AZ,triangle,1800,Three white light and on small light +2004-09-01,39.6333333,-105.3166667,Evergreen,CO,circle,600,Small silver orb spotted above Denver CO mid-morning in fall of 2004 +2004-09-01,34.2983333,-108.1341667,Pie Town,NM,sphere,300,White plane-like object with two gold orbs above it-very noisey. +2004-09-01,40.7141667,-74.0063889,New York City (Bronx),NY,oval,300,shiny "ball" hovering motionless in the sky on a very clear evening +2004-09-01,40.3338889,-76.7894444,Linglestown,PA,triangle,30,Bright light becomes three trinagle craft over I81 Linglestown area +2004-09-01,41.8238889,-71.4133333,Providence,RI,egg,120,Two Oval/Egg shaped objects over Providence sky +2004-09-01,42.35,-71.1569444,Brighton,MA,light,180,Very bright star, no tail, moving at the speed of an airplane, then diming to nothing within seconds. ((NUFORC Note: Satellite?? PD)) +2004-09-01,30.3933333,-86.4958333,Destin,FL,light,180,Lights in sky above gulf waters in Destin, FL +2004-09-01,40.7452778,-86.7647222,Monticello,IN,unknown,60,Any Update? +2004-09-01,34.1397222,-118.0344444,Arcadia,CA,light,300,Approximately 10:45 PM on September 1, 2004 I observed an object moving from east to west while looking out my bedroom window which fac +2005-09-01,40.8013889,-72.8680556,Shirley,NY,oval,480,BRIGHT RED AND BRILLIANT WHITE LIGHTS AROUND AN OVAL SHAPED OBJECT! +2005-09-01,36.323055600000004,-86.7133333,Goodlettsville,TN,rectangle,5,Shinny or lighted object going very fast then maneuvered as if to dodge something, like a Bat would do, then the whole thing tilted bac +2005-09-01,37.3394444,-121.8938889,San Jose,CA,light,600,Red Ball turns to Star and shoots off Stars! +2005-09-01,35.7563889,-83.9705556,Maryville,TN,cylinder,10,Huge black cylinder, in front of cloud. +2005-09-01,43.0125,-83.6875,Flint,MI,disk,120,ufo while driving on exspress way +2005-09-01,36.1222222,-83.4925,Jefferson City,TN,light,25,Strange Object Passes over House +2005-09-01,41.7013889,-71.1555556,Fall River,MA,cylinder,8,OBJECT SPEED APPX. 70 MPH +2005-09-01,40.5583333,-85.6591667,Marion,IN,light,5,A bright light, traveling at high speeds, disappeared after 5 seconds. +2005-09-01,41.7858333,-88.1472222,Naperville,IL,light,1200,Lights in low clouds. ((NUFORC Note: Possibly advertising lights?? PD)) +2005-09-01,41.1305556,-85.1288889,Fort Wayne,IN,triangle,15,Triangle shape with low glow seen for about 15 seconds +2005-09-01,35.8455556,-86.3902778,Murfreesboro,TN,triangle,3600,Triangles hovering close to ground over Mufreesboro, TN +2005-09-01,41.8177778,-88.1733333,Warrenville,IL,sphere,15,ALOT of activity over Big Dipper, with Large BRIGHT White , turning red Sphere and then dissappearing. Pulsing light over Big Dipper. +2005-09-01,42.0597222,-93.88,Boone,IA,chevron,180,Slow moving boomerang moves across a Central Iowa town. +2005-09-01,47.5002778,-111.3,Great Falls,MT,light,180,First Incident: At 21:55 I was outside and noticed a light in the sky moving. It looked just like a star. There was no flashing strobe +2005-09-01,33.9255556,-116.8755556,Banning,CA,egg,3600,Observed several egg shaped objects. The first appeared on the western horizon around 10 pm PST. we were able to observe the craft for +2005-09-01,41.2375,-80.8186111,Warren,OH,triangle,300,Triangle craft with a bright blue and white light in 2 corners, and a red blinking light in the other. +2005-09-01,41.6736111,-88.0016667,Lemont,IL,unknown,900,Bright light observed hovering above the refinery and then changed directions twice as it flew off to the north. +2006-09-01,47.6816667,-122.2075,Kirkland,WA,rectangle,5,An open rectangle in the sky above Seattle +2006-09-01,31.7319444,-84.1708333,Leesburg,GA,light,600,Sharp turns and zig zags with this light +2006-09-01,28.1758333,-80.5902778,Satellite Beach,FL,triangle,15,4 triangle shaped objects heading south. +2006-09-01,41.2616667,-75.8972222,Kingston,PA,unknown,300,disk shaped object, low whine , 6 flashing orange lights, 3 front, 3 back +2006-09-01,41.9994444,-88.145,Hanover Park,IL,changing,90,UFO followed aircraft above it changing shape and color at same time,theplane crew and pass,unaware. +2006-09-01,40.7141667,-74.0063889,New York City (Manhattan),NY,sphere,180,Small sphere in NYC +2006-09-01,46.9422222,-122.6047222,Yelm (East Of),WA,light,20,Very bright, unmoving object in eastern sky that suddenly faded to invisibility over about six seconds. +2006-09-01,47.9130556,-122.0969444,Snohomish,WA,other,1.5,tanto shaped long object with a matching smaller section at 2/3 rd the length on the bottom. +2006-09-01,45.3088889,-89.4963889,Gleason,WI,sphere,360,A friend and I were standing in his driveway messing around with a new fishing rod that he had bought. Out of the corner of my eye I sa +2006-09-01,38.1141667,-82.6033333,Louisa,KY,fireball,2,I saw a bright large white light with sparks coming from it with a trail of smoke falling at an angle then disappered befor hitting the +2006-09-01,41.3322222,-87.7852778,Peotone,IL,oval,180,UFO sighting in Peotone, Illinois. ((NUFORC Note: Possible hoax?? PD)) +2007-09-01,43.0361111,-71.1838889,Raymond,NH,oval,600,Odd stars?? +2007-09-01,45.5972222,-122.9922222,North Plains,OR,light,600,A stationary star suddenly shoots straight across the sky above North Plains then shoots towards space. +2007-09-01,33.9761111,-117.9044444,Rowland Heights,CA,unknown,1800,Star-like light pulsating and slowly moving across the sky. +2007-09-01,47.4008333,-116.9161111,Worley (South Of),ID,unknown,120,Unexplained lights above US 95 south of Worley, ID. 500 Lights On Object0: Yes +2007-09-01,42.3136111,-122.9658333,Jacksonville,OR,circle,20,Bright object appearing and dissapearing slowly. +2007-09-01,37.9963889,-105.6991667,Crestone,CO,triangle,1800,Triangular lights spotted over Challenger Peak Area from Crestone, Colorado. ((NUFORC Note: Sighting of Venus?? PD)) +2007-09-01,47.1855556,-122.2916667,Puyallup,WA,circle,420,Round white silver objects with flashy light pattern along edge crescent shape to right +2007-09-01,47.1855556,-122.2916667,Puyallup,WA,sphere,120,September 1, 2007 clear morning sighting of three or four UFOs floating in the skies of Puyallup Wa - four witnesses on the scene +2007-09-01,32.7666667,-96.5988889,Mesquite,TX,other,60,Alien face observes man from behind in his house. +2007-09-01,33.9530556,-109.2086111,Nutrioso,AZ,sphere,1800,Bright, yellow/white, apparently spherical, object in Western sky as sun was setting - weather balloon? No movement obvious. +2007-09-01,40.3525,-74.4405556,Jamesburg,NJ,oval,180,Two oval craft clearly observed in perfect formation then moving out of sight in 10 - 15 seconds. +2007-09-01,47.2530556,-122.4430556,Tacoma,WA,fireball,4,We witnessed a bright green "meteor-like" object shoot downward in front of us. ((NUFORC Note: Possible meteor? PD)) +2007-09-01,39.7588889,-84.1916667,Dayton,OH,triangle,120,We were heading west on I70 near exit 26 in Ohio, just west of Dayton. The lights appeared in the southwest and I thought it was the li +2007-09-01,42.5636111,-84.8358333,Charlotte,MI,fireball,180,Bright orange flame, low in sky moving in a NE direction over Charlotte, MI +2007-09-01,42.4972222,-82.9372222,Roseville,MI,fireball,180,We noticed a firey orange object with a white light that rotated around it moving slowly in the sky. +2007-09-01,42.7325,-84.5555556,Lansing,MI,formation,180,Red orbs over Lansing Michigan +2007-09-01,42.0527778,-124.2827778,Brookings,OR,light,3600,On Sept. 1, 2007, bright and oddly-colored light, moving really fast! +2007-09-01,39.9347222,-75.0311111,Cherry Hill,NJ,rectangle,120,It had a glassy appeal, like a see through bottom. +2007-09-01,48.2325,-101.2958333,Minot,ND,triangle,20,Smooth moving black triangular shaped object with white dots on bottom, flew over us at about 500 feet above us. +2007-09-01,36.1658333,-86.7844444,Nashville,TN,other,5,Large white/green ball trailing green crap behind it close to green hills in Nashville. 500 Lights On Object0: Yes +2007-09-01,41.9233333,-85.5283333,Centreville (Bib Gish Lake),MI,sphere,120,The red sphere, which did not blink, about four times the size of the brighest star or planet in the sky, rose over the southern side o +2007-09-01,35.8455556,-86.3902778,Murfreesboro,TN,other,360,Bright Fiery unknown object +2008-09-01,42.2711111,-89.0938889,Rockford,IL,light,300,UFO moving in a triangular movement over Rockford, IL. It moved back and forth and up and down. Then slowly dissapeared. +2008-09-01,35.5066667,-97.7622222,Yukon,OK,triangle,1200,I have lived in yukon all my life. I was 17 when this occurred and will take what me and a friend seen to the grave. we sneeked outside +2008-09-01,43.0480556,-76.1477778,Syracuse,NY,light,600,a small red light +2008-09-01,41.3077778,-88.1466667,Wilmington,IL,unknown,2100,Object flying with blinking red light, flying erratic, hovering, then doin it again 3 X. +2008-09-01,33.8883333,-118.3080556,Gardena,CA,chevron,600,Cheveron shaped object seen above the skies of SouthBay area near LAX. +2008-09-01,28.8919444,-99.0947222,Pearsall,TX,triangle,300,TRIANGLE SHAPE WITH 4 SETS OF LIGHTS WHITE SHAPE THEN DID A SLIGHT TURN THEN VANNISHED +2008-09-01,39.2827778,-80.5591667,Salem,WV,light,2100,star like light that changes colors +2009-09-01,36.5988889,-80.5108333,Ararat,VA,rectangle,30,looked out bedroom window, saw a rectangular shape that was colored like fire +2009-09-01,32.8083333,-98.1125,Mineral Wells,TX,rectangle,60,About 25mph and silent tablet shaped bottom covered in small dimley lit light blue lights. About 50 ft long and 150 ft off the ground +2009-09-01,41.6486111,-70.3486111,Centerville,MA,light,20,Bright round object +2009-09-01,41.2586111,-95.9375,Omaha,NE,sphere,240,Ufo right above tree 50-80 foot. +2009-09-01,39.9611111,-82.9988889,Columbus,OH,oval,30,UFO follows a small aircraft over the southend of Columbus,Oh +2009-09-01,36.3061111,-81.5136111,Fleetwood,NC,sphere,300,Opaque objects that seemed to disappear once they got above the horizon +2009-09-01,41.6638889,-83.5552778,Toledo,OH,fireball,15,Fire Ball +2009-09-01,41.3322222,-87.7852778,Peotone,IL,light,5,Green light followed by white trail in Illinois. +2009-09-01,33.4502778,-82.1983333,Grovetown,GA,light,600,I have had two incidence years apart...why? +2009-09-01,40.1933333,-85.3863889,Muncie,IN,sphere,300,Bright orange light in the northwest sky near the Muncie airport. +2009-09-01,37.8591667,-122.4841667,Sausalito,CA,rectangle,2,Glowing green object crashing +2010-09-01,33.7738889,-117.9405556,Garden Grove,CA,sphere,10,I witnessed to UFO's collide +2010-09-01,33.1580556,-117.3497222,Carlsbad,CA,other,5,Eagle-looking object hovering over my location for appx. 5 seconds...then darted off at high speed. +2010-09-01,38.0280556,-121.8836111,Pittsburg,CA,light,60,Bright Light +2010-09-01,40.5,-111.95,West Jordan,UT,circle,180,Reddish-Orange Light seen in sky and circular craft seen taking off into the sky. +2010-09-01,33.0580556,-112.0469444,Maricopa,AZ,light,60,Bright light in the skies south of Maricopa, AZ increases luminosity before additional lights spawn and streak away. +2010-09-01,31.4636111,-100.4366667,San Angelo,TX,light,30,Three faint lights flying in formation while traveling at enormous speed across the nigth sky. +2010-09-01,33.5805556,-112.2366667,Peoria,AZ,other,120,My wife and I were star gazing at approximately 10 to on September 1, 2010. At about 10:10pm with a crystal clear sky, I noticed a roun +2010-09-01,35.7719444,-78.6388889,Raleigh,NC,circle,3600,I was looking out of my bedroom window that night because i couldnt sleep and saw something in the sky at 10:25pm, with flashing red, b +2010-09-01,45.3002778,-122.9719444,Newberg,OR,chevron,20,Black V shaped object completely silent moving across the night sky. +2011-09-01,43.6522222,-94.7266667,Sherburn,MN,triangle,120,object spotted, triangular in shape, 3 glowing red/amber lights, silent, 25 to 30 feet in length, made movements not possible to planes +2011-09-01,47.4475,-122.4586111,Vashon,WA,light,900,Semi-circle of lights flashing outside a hazy circle. +2011-09-01,47.5675,-122.6313889,Bremerton,WA,circle,1800,I saw what looked like a very bright star. ((NUFORC Note: We suspect a twinkling star, possibly Sirius. PD)) +2011-09-01,48.5344444,-123.0158333,Friday Harbor,WA,circle,2700,Bright light and a deep rumbling sound with other light. ((NUFORC Note: We suspect a twinkling star, possibly Sirius. PD)) +2011-09-01,35.1822222,-83.3816667,Franklin County,NC,other,60,super low altitude stealth jet 9/1/11 NC +2011-09-01,42.7158333,-78.8297222,Hamburg,NY,cone,20,Bun shaped object hovering over parking lot and then darting back and forth at high speed. +2011-09-01,41.5513889,-70.6152778,Falmouth,MA,light,180,Bright silent craft with no navigation lights slowly cruises across the night sky. ((NUFORC Note: ISS?? PD)) +2011-09-01,43.9747222,-75.9111111,Watertown,NY,rectangle,30,4 lighs in shape of box over city +2011-09-01,39.0347222,-87.1658333,Linton,IN,light,180,We noticed two bright lights in the dusk sky. +2011-09-01,39.1041667,-95.8583333,Silver Lake,KS,light,120,An object moving Southeast in Kansas that appeared to be a bright star but dimmed and disappeared. +2011-09-01,39.7294444,-104.8313889,Aurora,CO,cylinder,120,hovering orange/yellow eliptical () with hazy lights over south denver metro +2011-09-01,44.2411111,-68.3563889,Bernard,ME,fireball,120,A bright orange fireball traveled very slowly , taking 1 - 2 minutes, from east to west over Bass Harbor before burning itself out. +2011-09-01,36.0625,-94.1572222,Fayetteville,AR,unknown,300,Stationary craft with flashing multicolored lights +2011-09-01,33.8136111,-85.7613889,Jacksonville,AL,light,120,white light ascends vertically +2011-09-01,40.1572222,-76.3072222,Lititz,PA,changing,60,Orange/red sphere very large changed shape and color into small white light that flew off near Lancaster, PA +2011-09-01,38.7430556,-94.8252778,Spring Hill,KS,formation,180,Orange-red ball in sky south of KC splits into multiple balls before fading away. +2011-09-01,42.6763889,-76.8233333,Ovid,NY,light,300,it stopped and much quicker began to go the opposite direction suddenly plummeted toward the ground shot back up to where it was before +2011-09-01,45.5236111,-122.675,Portland,OR,sphere,300,Bright Orange Sphere Formation Seen From Downtown Portland. +2011-09-01,35.1225,-85.3438889,Signal Mountain,TN,disk,300,ENORMOUS,Low Flying,SUPER BRIGHT Craft with 4 witnesses +2011-09-01,33.1811111,-102.2738889,Brownfield,TX,light,120,Fast-moving, pulsing orange light. Silent and erratic movements over northern Texas +2011-09-01,31.1480556,-97.4630556,Morgans Point Resort,TX,circle,600,I was leaving a small suburban community to pick my girlfriend up from work, when I was sitting at the stop sign Before turning on the +2011-09-01,40.0377778,-76.3058333,Lancaster,PA,light,600,thought it was a radio pole light, than it blinked, shot straight down, blinked 4/5 times and went into a clound +2012-09-01,37.9975,-121.7113889,Oakley,CA,triangle,7200,Bright Starlike Orbs Slowly Move down to 50-100FT. Above Earths Surface Without Sound +2012-09-01,47.5675,-122.6313889,Bremerton,WA,circle,60,I WAS OUTSIDE HAVING A SMOKE ON THE 20th OR 27th OF SEPTEMBER AT ABOUT 2:30 SOMETHING WHEN I LOOKED UP AND SAW A VERY BRIGHT FLORESCENT +2012-09-01,44.0077778,-76.0447222,Dexter,NY,fireball,120,I was at home where I have kind of a country setting. My cat was in the window and I went over to pet him. I looked out of the window +2012-09-01,42.0313889,-80.2555556,Fairview,PA,light,60,It looked like a bright amber colored star flying at plane speed and altitude. +2012-09-01,40.8655556,-73.5325,Oyster Bay,NY,fireball,45,Bright red light across the bay +2012-09-01,33.4483333,-112.0733333,Phoenix,AZ,triangle,1500,Red white and blue lights over phoenix +2012-09-01,46.5927778,-112.0352778,Helena,MT,light,20,A VERY BRIGHT STATIONARY STAR BEGINS MOVING, THEN DIMS OUT AFTER A BRIEF RED DIM LIGHT. +2012-09-01,33.5091667,-111.8983333,Scottsdale (Phoenix),AZ,changing,7200,Strange, but peacefull object fly follow my car .. +2012-09-01,35.2847222,-81.2841667,Bessemer City,NC,formation,2,Triangle formation as storm approached +2012-09-01,35.2225,-97.4391667,Norman,OK,unknown,30,A blinking light which changed intensity, and had a non-recurring pattern, moving in a non-uniform direction, then streaked across sky +2012-09-01,41.85,-87.65,Chicago,IL,other,600,V shaped craft. +2012-09-01,43.4261111,-73.7127778,Lake George,NY,sphere,90,Bright stationary light, that turned to orange and then quickly disappeared +2012-09-01,43.5911111,-71.7372222,Bristol,NH,light,45,Very bright red orange light, high speed then stopped, hovered then very slowly moved. +2012-09-01,38.8916667,-121.2919444,Lincoln,CA,light,1200,Three single lighted aircraft that changed colors perform Close Encounter like night flight ballet over Rocklin, Ca. +2012-09-01,44.3675,-91.3163889,Whitehall,WI,light,60,Single red light that did not flash. +2012-09-01,40.0830556,-74.0686111,Point Pleasant,NJ,fireball,120,Orange-Red Fireball Across the Sky +2012-09-01,41.1577778,-80.0888889,Grove City,PA,light,300,3rd sighting +2012-09-01,38.8113889,-89.9530556,Edwardsville,IL,fireball,600,5 yellow orange fireball/orbs seen by 3 people in Southern Illinois near 20 miles from St.louis +2012-09-01,34.2363889,-79.7347222,Quinby,SC,fireball,300,5-7 orange orbs in the sky +2012-09-01,44.9483333,-93.3477778,St. Louis Park,MN,fireball,300,7 fireballs in sky above 394W and Louisiana Ave +2012-09-01,44.9483333,-93.3477778,St. Louis Park,MN,light,180,7 orbs in MN. +2012-09-01,44.9444444,-93.0930556,Saint Paul,MN,sphere,10,I saw a round orange ball moving in the sky at 9:12 pm on Sept. 1st in Highland Park heading west. When I stopped and looked at it, th +2012-09-01,42.2416667,-70.8041667,Cohasset,MA,sphere,45,2 fainted orange spheres mirroring each other until they separeated +2012-09-01,39.55,-86.0797222,Whiteland,IN,disk,600,Red / orange craft travelling north / northwest in Whiteland IN. +2012-09-01,40.6866667,-73.3738889,Lindenhurst,NY,fireball,5,A fireball coming down +2012-09-01,41.4847222,-81.9222222,Bay Village,OH,triangle,300,7 or more red triangles with one light, red flashing/pulsating, trailing behind +2012-09-01,43.3238889,-88.1666667,Jackson,WI,triangle,240,Large bright blue triangular shaped moving in figure 8 pattern, dipping up and down in the sky +2012-09-01,42.865,-71.3744444,Londonderry,NH,circle,60,Circular object, no sound, one bright white light with an orange glow, flickered and faded out quickly. +2012-09-01,41.3361111,-75.9636111,Dallas,PA,triangle,120,Orangish-Red lights over Dallas, PA +2012-09-01,34.035,-77.8938889,Carolina Beach,NC,teardrop,360,One floating orangish ember type object seen over the ocean at Carolina Beach NC +2012-09-01,44.0522222,-123.0855556,Eugene,OR,circle,7200,UFO's all over the night skies of eugene, oregon. +2012-09-01,35.7330556,-81.3413889,Hickory,NC,unknown,2400,Mulitcolored flashing object seen near lake Hickory, NC. +2012-09-01,33.6602778,-117.9983333,Huntington Beach,CA,light,300,Saw a bright light falling quickly in the sky, looked like something burning very brightly and falling at a very quick rate. It disappe +2012-09-01,34.0552778,-117.7513889,Pomona,CA,light,1,A blue light made a straight horizontal line and disappears, 5 minutes later (what i thought was a huge star) forms another thicker whi +2012-09-01,34.0552778,-117.7513889,Pomona,CA,light,2,Blue light shined back yard for seconds and disappears Looked at the sky immediately and found nothing crazy! +2012-09-01,34.5361111,-117.2902778,Victorville,CA,circle,1800,Round orange object followed by two objects of shimmered light in triangular formation orange ball would move up and in circles +2012-09-01,47.6063889,-122.3308333,Seattle,WA,fireball,1400,Fireball sighting in Seattle +2012-09-02,41.7352778,-70.1944444,Dennis,MA,circle,1260,Bright orange orb at a very high rate of speed, slowing down, then dissapearing. +2012-09-02,38.9747222,-74.8338889,Wildwood Crest,NJ,disk,300,((HOAX??)) I lost power in my apt. and started to feel almost like the sensation or feeling of energy.((NUFORC Note: Date is flawed.)) +2013-09-01,38.4344444,-82.1325,Milton,WV,oval,900,24 ORANGE LIGHTS OF MILTION, WV. +2013-09-01,41.85,-71.4666667,North Providence,RI,disk,5,Bright greenish blue circular disc object moving over head leaving a white trail behind it. +2013-09-01,32.7355556,-97.1077778,Arlington,TX,fireball,120,Bright orange seen in Texas. +2013-09-01,29.8830556,-97.9411111,San Marcos,TX,light,2,Bright light falling with gravity. +2013-09-01,40.7608333,-111.8902778,Salt Lake City,UT,sphere,1800,Strange lights in Salt Lake. +2013-09-01,29.4238889,-98.4933333,San Antonio,TX,egg,12,Unidentified egg shaped phenomenon moving slow among visible birds passing it up! +2013-09-01,36.4516667,-103.1836111,Clayton,NM,other,300,Bright white fast-flying UFO. +2013-09-01,42.4772222,-88.0955556,Antioch,IL,other,1.5,Odd object moving at a high rate of speed. +2013-09-01,33.7688889,-89.8083333,Grenada,MS,light,600,"Star-like" light keeps appearing a disappearing at sunset. (( +2013-09-01,40.0930556,-83.0180556,Worthington,OH,unknown,600,Orange fire balls /fire ball craft +2013-09-01,42.7166667,-70.8791667,Rowley,MA,disk,900,Multiple UFO craft and direct encounter with Orb dispatched from larger ship. +2013-09-01,38.6580556,-77.25,Woodbridge,VA,formation,300,5 Bright orange lights in Eastern Sky moving abrudtly and not in any pattern. +2013-09-01,35.7327778,-84.3338889,Loudon,TN,fireball,120,A flame like object moving at a good speed in a clear pattern. +2013-09-01,34.4208333,-119.6972222,Santa Barbara (North Of),CA,triangle,480,Large triangular craft with yellow/orange bright lights flying very slowly heading due east, no sound. +2013-09-01,39.7091667,-84.0633333,Beavercreek,OH,fireball,1800,Two orange fireballs moving over Beavercreek Ohio for approx 30 minutes. +2013-09-01,39.7091667,-84.0633333,Beavercreek,OH,fireball,600,7 fireballs in the sky over Beavercreek, Ohio. +2013-09-01,34.9830556,-85.2861111,Rossville,GA,disk,1500,Was bright light bluish/yelllowish/orange light hovering then moved top another spot. seen same thing twice on same spot. +2013-09-01,39.9611111,-82.9988889,Columbus,OH,fireball,180,Strange glowing fireball/orange object moving quickly in Columbus, OH. +2013-09-01,42.0583333,-70.1791667,Provincetown,MA,fireball,180,4 rocket fires seen in succession traveling northeast over Cape Cod Massachusetts. +2013-09-01,41.2544444,-82.3997222,Wakeman,OH,circle,120,Viewed a bright orange round light in the night sky moving right to left and then up to dim or dissapeared. +2013-09-01,44.4311111,-84.0258333,Lupton,MI,light,240,Two UFO's seen over our lake in Lupton Michigan , very bright star like , illuminated in red and orange lower than a aircraft moving fr +2013-09-01,39.9402778,-82.0133333,Zanesville,OH,unknown,120,Two Unknown Silent Aircraft With Reddish Orange Light Observed Over Zanesville, Ohio. +2013-09-01,43.3380556,-89.3802778,Arlington,WI,oval,60,Three Orange Lights on Oval Shaped Craft which moved slowly- no sound, then rapid accelleration upward. +2013-09-01,33.6411111,-117.9177778,Costa Mesa,CA,oval,420,Many orange red globes in the night sky over orange county california. +2013-09-01,47.9791667,-122.2008333,Everett,WA,light,60,Huge red glowing light east of Everett WA makes 90 degree turn and moves toward Snohomish as seen by Ebey Island resident. +2013-09-01,36.3047222,-86.62,Hendersonville,TN,fireball,900,Four fireballs seen in the night sky +2013-09-01,45.3,-122.7725,Wilsonville,OR,cigar,20,1 UFO observed 2 times 10 seconds apart, going S to N, then N to S, at 22:15 hrs over Wilsonville, OR on 9/1/13. +2013-09-01,41.1280556,-101.7191667,Ogallala,NE,light,600,My husband,friend and I were at the sandy beach camping site and we saw a bright flying object. It was flying low and very bright. Afte +2013-09-01,39.8841667,-82.7536111,Pickerington,OH,triangle,180,Triangle shaped object with huge lights spotted going down into a corn field. +1946-09-13,41.7108333,-87.7580556,Oak Lawn,IL,formation,15,V-formation 5 silver disks with 1 trailing behind, size of small peas high & fast heading NE bypassing Chicago to Indiana +1973-09-12,29.4238889,-98.4933333,San Antonio,TX,circle,300,Dark round object with long trail of sparks following it seemed to slowly float just above our home. +1975-09-12,40.1052778,-85.6802778,Anderson,IN,triangle,120,helicoptor with a spot light on (posibly a police Jetranger) flying Nth towards us at 100 to 150 ft altitude. ufo makes a non banking +1977-09-12,38.8688889,-117.9211111,Gabbs,NV,triangle,180,Triangular craft w/ six amber lights over Nevada desert. +1982-09-12,43.1536111,-93.2008333,Mason City,IA,sphere,60,While helping on paper rout, early morning, right orange globe went down off to my right. +1982-09-12,34.7983333,-83.4202778,Wiley,GA,flash,300,I witnessed 3 large diffused flashing lights just above the tree line near Tallulah Falls, Georgia. +1985-09-12,21.0933333,-157.0238889,Kaunakakai,HI,egg,180,Silent egg-shaped golden-copper object +1985-09-12,37.505,-105.0072222,La Veta,CO,circle,6,Well what happened was when I was about 5 I was coming back from a trip from my grandparents. I was looking out the windown and it was +1988-09-12,37.3341667,-80.9627778,Oakvale,WV,cylinder,2,Being followed by something unknown....... +1989-09-12,26.9616667,-82.3527778,Englewood,FL,other,360,LOOKED LIKE SEVEN STARS IN V FORMATION MOVING HIGH RATE OF SPEED,FASTER THAN A SATALITE,AND SEEMED TO BE FARTHER OUT THAN A SATTALITE +1991-09-12,47.4830556,-122.2158333,Renton,WA,fireball,600,At 7:35 P.M. this evening I witnessed an object traveling from S.E to N.W. It appeared to be similar to a "shooting star" with a brigh +1992-09-12,39.6988889,-78.18,Hancock,MD,triangle,1200,The triangle craft hovered silently just over the tree line. It was just before dark and the sky was clear. +1992-09-12,40.7141667,-74.0063889,New York City (Manhattan),NY,teardrop,300,Manhattan UFO +1996-09-12,34.5361111,-117.2902778,Victorville,CA,disk,10800,Saturn/top shaped round disk with black ring circumscribed in bottom and 3-4 companion blobs +1996-09-12,46.2113889,-119.1361111,Kennewick,WA,other,240,Pulsating white light that disappeared like a vapor. +1998-09-12,45.5236111,-122.675,Portland,OR,light,20,Very high altitude, small light, appeared to be a star. moved from west to east, when overhead turned 90 degrees to the north. +1998-09-12,27.8002778,-97.3961111,Corpus Christi,TX,sphere,345600,As I left my home I saw a clear sphere in the sky with a type of irridescent light inside of it. The shape inside was like or was a med +1998-09-12,46.7588889,-114.08,Lolo,MT,disk,300,My son and I saw a bright, white colored object in the sky right near the moon, but lower about a half hour ago. +1998-09-12,30.4455556,-86.5791667,Shalimar,FL,fireball,600,. A burning orb appeared for the west at about 45 degrees and slowly moved to about 20 degress changing color from a bright red to a ve +1998-09-12,37.8216667,-121.9988889,Danville,CA,fireball,4,i was looking up with my dad and this bright white fireball came out of the east and headed west and blew up/dissapeared over Mt. Diabl +1998-09-12,45.0994444,-123.3936111,Sheridan,OR,triangle,5400,observed 2 sets of 7 lights. yellow, blue, red and green. Distance undetermined. Used a spotting scope. Lights pulsed in some pattern. +1999-09-12,39.9522222,-75.1641667,Philadelphia (Northeast),PA,circle,1.5,While in patrol at above time notced a bright star or planet in eastern sky,approx 30 degrees above horison.Iwas looking there a few mo +1999-09-12,35.1241667,-109.5375,Navajo (15 Miles West Of, On I-40 Eastbound),AZ,oval,420,Was Driving east on I-40 and notices the oval/ovid shape at NNE direction. white and moving west +1999-09-12,40.6975,-74.2636111,Union,NJ,unknown,900,2 black hovering objects...approx 10k ft high.. +1999-09-12,43.8286111,-115.8336111,Idaho City,ID,light,240,bright light that vanishes +1999-09-12,37.2694444,-107.0091667,Pagosa Springs,CO,cigar,180,Just before dark, I was looking off my porch to the west mountians and saw a blinking white light rising very slowly into the ski until +1999-09-12,47.0380556,-122.8994444,Olympia,WA,light,1.5,Observation of commercial aircraft approaching Sea-tac airport(SW to N dir.),inbound 2110pm, appearance of sattelite? crossing in a NW +2000-09-12,40.9519444,-76.46,Catawissa,PA,unknown,60,Craft flew across sky on fire. +2000-09-12,47.8569444,-121.6958333,Gold Bar,WA,triangle,600,Strange "V" formation in morning sky over the Skykomish Valley. +2000-09-12,34.0202778,-117.8644444,Walnut,CA,sphere,600,I went out at 2:30 PM in the afternoon. I through out the trush I look it the sky in the Northwest it fly and stop in about three then +2000-09-12,29.4238889,-98.4933333,San Antonio,TX,other,900,This object moved across the sky leaving no smoke trail, vabor trail, no sound or never changed direction, sighted for 20 min. +2000-09-12,38.801944399999996,-94.4525,Raymore,MO,light,20,Strange ball of light moving erratically. +2001-09-12,34.0522222,-118.2427778,Los Angeles,CA,circle,60,3 UFO over Los Angeles +2001-09-12,40.2413889,-75.2841667,Lansdale,PA,teardrop,120,white teardrop +2001-09-12,39.7391667,-104.9841667,Denver,CO,light,120,Odd movement in the Denver sky +2001-09-12,36.0769444,-87.3877778,Dickson,TN,rectangle,11,RECTANGLE MIMICED NIGHT SKY & STARS SEEN DURING YR. OF COMET PASSING NEAR EARTH +2001-09-12,43.6136111,-116.2025,Boise,ID,other,10,Giant blue V flying south over airport during 9-11 no-fly +2001-09-12,37.3861111,-122.0827778,Mountain View,CA,light,4,Observed a bright red object (Looking South) traveling diagonally from right to left at about 45 degrees, leaving a faint red trail. D +2001-09-12,38.5816667,-121.4933333,Sacramento,CA,disk,60,Disk shape clear day, no clouds in sky just hovering over no sound, no lights 500 Lights On Object0: Yes +2001-09-12,36.2702778,-121.8063889,Big Sur,CA,fireball,3600,Stars in the sky dancing in the middle of a clear day. +2001-09-12,40.6219444,-74.245,Linden,NJ,changing,900,Day after WTC disaster-glowing object observed during countrywide "no fly"- changed shape and color +2001-09-12,31.3058333,-82.2422222,Blackshear,GA,light,900,Large Light Object chased by Coast Guard Falcon Jet in late afternoon (During the No-fly time span) +2001-09-12,40.1461111,-74.7122222,Bordentown,NJ,triangle,180,Three ufo's, triangular, with very bright, round lights at the point of each angle. +2001-09-12,40.6766667,-95.8588889,Nebraska City,NE,light,86400,Small,star like object seen in sky moving about erratically. +2001-09-12,35.3338889,-81.8652778,Forest City,NC,unknown,30,September 12th 2001--strange, fast, craft flying and hovering when all planes supposed to be grounded +2001-09-12,38.2541667,-85.7594444,Louisville (Ky)/Henryville (In),KY,other,25200,ufos watching over america?? +2001-09-12,41.4994444,-81.6955556,Cleveland,OH,light,30,High speed maneuvering lights +2001-09-12,39.5069444,-84.7452778,Oxford,OH,unknown,900,Set of 3 unknown aircraft making impossible moves above Oxford, Ohio +2002-09-12,41.7352778,-70.1944444,Dennis,MA,other,10,Gray, faceted craft seen moving south over Route 6 in broad daylight. +2002-09-12,35.2269444,-80.8433333,Charlotte,NC,cigar,2,White cigar... +2002-09-12,43.0925,-75.6516667,Oneida,NY,triangle,300,yellow triangle with yellow pulsing lights +2002-09-12,32.8577778,-97.2544444,Watauga,TX,oval,840,While i was jogging i notice a small brite light in the northern sky, since i was near my home a ran to get my telescope, with my wife +2002-09-12,41.2586111,-95.9375,Omaha,NE,sphere,3600,Stationary object sighted over Omaha days apart. +2002-09-12,43.7508333,-87.7144444,Sheboygan,WI,light,120,Three red lights formed triangle and faded away +2002-09-12,30.4055556,-86.6188889,Fort Walton Beach,FL,triangle,900,deep red pulsating triangles flying over Ft. Walton Beach +2002-09-12,46.7313889,-117.1786111,Pullman,WA,light,1800,Single object approached from the N-NW, Twinkled, sometimes emited red-blue-gold flashes, made 90deg. turn then hovered for 20 min. +2003-09-12,34.9158333,-85.1091667,Ringgold,GA,unknown,3,atlanta lights observed by second party 150 miles away +2003-09-12,46.6541667,-120.5288889,Selah,WA,disk,3600,Multiple light formations seen in Selah WA. +2003-09-12,39.7730556,-75.0516667,Turnersville,NJ,rectangle,30,As I was starting my mourning walk,I looked up at the sky to see if if there was any rain clouds forming,instead i notice this object m +2003-09-12,37.1297222,-80.4091667,Christiansburg,VA,circle,2,two objects high in the sky ,round and traveling at a rate of speed compared to a normal jet-about 100 times faster.covered the horizon +2003-09-12,29.7513889,-82.425,Alachua County,FL,light,2,Uniform blue-green sky for 1.5 seconds. Not likely a fireball meteor, I suggest. +2003-09-12,29.6619444,-94.8897222,Beach City,TX,light,420,Fast moving, high altitude. +2003-09-12,42.9313889,-74.6230556,Fort Plain,NY,triangle,120,Unknown object viewed through 8" telescope containing 3 bright lights arranged in triangular shape +2003-09-12,37.4688889,-122.14,East Palo Alto,CA,circle,120,My family and I attended a birthday party Friday, 9/12/2003 at East Palo Alto, California.It was an outdoor party and the night sk +2003-09-12,46.6022222,-120.5047222,Yakima,WA,unknown,10,mysterious 3 sets of 3 lights saw no clue what is was then a big flash pls read +2003-09-12,40.6916667,-81.1813889,Malvern,OH,light,172800,green white and red flashing lights in the sky +2003-09-12,42.7794444,-96.9288889,Vermillion,SD,rectangle,7,Darker than night rectangle with dim lights +2003-09-12,34.0966667,-117.7188889,Claremont,CA,fireball,60,I was walking home from work (Domino's Pizza) and i always look at the stars when i walk because i like to.This time when i looked i sa +2003-09-12,42.7283333,-73.6922222,Troy,NY,triangle,120,Triangle object stationary then moves fast and turns around...... +2004-09-12,33.7938889,-84.6605556,Lithia Springs,GA,oval,3600,red, green, blue, yellow lights and they both shot up and left +2004-09-12,44.3522222,-103.7647222,Lead,SD,flash,1800,light in the sky flashed once approx. every 2 minutes but never moved. Stayed in one location and flashed once every 2 minutes! +2004-09-12,64.8377778,-147.7163889,Fairbanks,AK,oval,10800,Very Distant odd luminous light hangs in the Night sky for a number of hours moving slowly,Fades n disappears. ((NUFORC: Star?? PD)) +2004-09-12,37.4419444,-122.1419444,Palo Alto,CA,triangle,10,Triangle Shape Zooms overhead , no noise, pulsates, changes sizes 3 times, then each point of light seperates and zooms off. +2004-09-12,47.6063889,-122.3308333,Seattle,WA,cigar,10,Cigar shaped object with two lights over Seattle +2004-09-12,42.6875,-83.2341667,Auburn Hills,MI,sphere,600,it looded like a star but it was daylight and it moved +2004-09-12,41.8005556,-73.1216667,Torrington,CT,light,240,Strange Light Returns +2004-09-12,46.3238889,-120.0075,Sunnyside,WA,light,1200,the lights were hovering and would go on and off and line up in different angles +2004-09-12,43.4066667,-124.2230556,North Bend,OR,unknown,240,A strange shape, maybe wedge shaped? I could see a large circular shape with spokes on the bottom of it. +2004-09-12,48.0797222,-123.1005556,Sequim,WA,unknown,900,Two objects very high up and very fast behave as if taking part in a chase +2005-09-12,43.1797222,-71.8227778,Henniker,NH,unknown,360,2 bright lights moving erratically in sky and blinking. +2005-09-12,47.6419444,-122.0791667,Sammamish,WA,light,900,A "Twinkling" huge light that moved around and changed colors +2005-09-12,37.2708333,-79.9416667,Roanoke,VA,triangle,597,bottem was covered with lights. and it was a big black triangle like shape. +2005-09-12,34.1808333,-118.3080556,Burbank,CA,unknown,15,daylight obstruction / eclipse before area wide power outtage in Los Angeles. +2005-09-12,33.4483333,-112.0733333,Phoenix,AZ,diamond,900,it made a strange noise like a loud humming nosie. +2005-09-12,40.5852778,-105.0838889,Fort Collins,CO,light,20,How aircraft shouldn't move +2005-09-12,34.4047222,-103.2047222,Clovis,NM,light,5400,Performing maneuvers near Clovis, NM, same craft as 9/11 +2005-09-12,32.2216667,-110.9258333,Tucson,AZ,other,1200,They almost looked flamelike, very bright, very large - amber or orange-colored. +2005-09-12,29.4238889,-98.4933333,San Antonio,TX,formation,300,Star like objects hovering in sky, slowly moving, disappearing and reappearing +2005-09-12,41.9666667,-71.4333333,Cumberland,RI,unknown,120,In line strobe lights over Cumberland, RI +2006-09-12,34.2661111,-116.3922222,Landers,CA,circle,300,I saw a real something in the sky. Clear as a bell and very interesting +2006-09-12,41.9486111,-71.0736111,Raynham,MA,disk,30,saw silver refective disk doing manuvers a plane just cant do. +2006-09-12,41.5580556,-73.0519444,Waterbury,CT,light,3600,Waterbury, Middlebury Space Craft? +2007-09-12,41.175,-76.075,Glen Lyon,PA,light,1800,19 ufos circling around glen lyon, PA +2007-09-12,39.7294444,-104.8313889,Aurora,CO,egg,300,Two flashing objects in night sky. +2007-09-12,40.8,-96.6666667,Lincoln,NE,circle,10,I noticed a white circle moving slowly at a constant speed in the sky. It's possible that it could have been an oval. It was fairly s +2007-09-12,33.5225,-117.7066667,Laguna Niguel,CA,triangle,7200,The object is still there. It changed shapes from a triangle to 3 circular shapes. ((NUFORC Note: Venus sighting. PD)) +2007-09-12,37.2152778,-93.2980556,Springfield,MO,oval,2700,Two Brightly lit craft observed around Springfield Missouri. +2007-09-12,38.9716667,-95.235,Lawrence,KS,unknown,180,Two UFOs spotted in sky over Lawrence in a few minutes by lone observer. +2007-09-12,42.4683333,-73.8166667,Ravena,NY,light,1800,Triangular bank of bright, unmoving white blinking lights seen over Ravena, NY. ((NUFORC Note: Possibly Venus in the E sky. PD)) +2007-09-12,42.4683333,-73.8166667,Ravena,NY,teardrop,1800,Teardrop shaped lights over Ravena NY +2007-09-12,28.5380556,-81.3794444,Orlando,FL,oval,300,Oval "star", glowing very white and slightly pulsing, stayed stationary, then moved southeast in very unorthodox manner +2007-09-12,34.4988889,-82.0144444,Laurens,SC,light,900,TWO BRIGHT LIGHTS ONE ON TOP THE OTHER NORTH NORTHEAST SKY 45 DEG +2007-09-12,34.9494444,-81.9322222,Spartanburg,SC,light,10,2 bright lights , 1 above the other, was 10 times brighter than venus for about 10 secs. was a long was off. +2007-09-12,41.7338889,-87.7794444,Burbank,IL,unknown,1200,Four unique objects form a rectangle in the western skies of Chicago. +2007-09-12,39.3330556,-82.9825,Chillicothe,OH,light,900,Lights with 'projectiles' west of Chillicothe, Ohio. +2008-09-12,31.1169444,-97.7275,Killeen,TX,light,600,multicolor flashing light in the sky +2008-09-12,37.9577778,-121.2897222,Stockton,CA,sphere,300,Spherical black UFO over Stockton +2008-09-12,36.1988889,-115.1166667,North Las Vegas,NV,disk,120,Large saucer shaped spacecraft sighted 9-12-08 around 8 P. M. in North Las Vegas, NV. +2008-09-12,45.7055556,-121.5202778,Hood River,OR,triangle,5,I was driving on Hwy 84 with my daughter and saw a triangle shaped object it all happened so quickly but I know it had lights on it an +2008-09-12,45.3247222,-118.0866667,La Grande,OR,fireball,10,Located 1/4 mile from Morgan lake, a large, spark shooting green glowing fire ball was descending from East to West of the lake. +2008-09-12,37.7022222,-121.9347222,Dublin,CA,disk,300,We saw these white lights moving in a circular motion and couldn't believe our eyes. +2008-09-12,37.3394444,-121.8938889,San Jose,CA,fireball,7,Facing north, at about 2 o'clock high, I saw a bright ball of light (an electromagnetic spacecraft) make an abrupt turn from NW to NE a +2008-09-12,37.8822222,-119.8547222,Mather,CA,oval,20,a glowing craft appeared over our house and hovered, vibrated and zipped around slighty and disappeared in an instant +2008-09-12,32.7152778,-117.1563889,San Diego,CA,fireball,180,3 orange glowing balls above san diego. sighted in pacific beach at around 11 pm. they moved north and then straight up +2009-09-12,43.0891667,-87.8875,Shorewood,WI,fireball,300,Flaming stationary object over Shorewood Wisconsin +2009-09-12,33.8752778,-117.5655556,Corona,CA,circle,720,Three orange circular objects in the evening sky hovered for 12 minutes and then vanished. +2009-09-12,39.6427778,-84.2866667,Miamisburg,OH,triangle,600,Miamisburg UFO Triangular White light hovering air craft spotted on Soldiers Home Miamisburg Rd. +2009-09-12,38.8966667,-121.0758333,Auburn,CA,triangle,30,Black craft 600 ft above home, seen by two girls in suburban Auburn. +2009-09-12,41.85,-87.65,Chicago,IL,teardrop,3600,Tear shaped objects slowly moving across the lake about 100 feet from the surface of the water. +2009-09-12,47.8108333,-122.3761111,Edmonds,WA,chevron,10,Black Low Flying Boomerang Craft - Daytime - Both Wife and I shocked at what we witnessed at same time +2009-09-12,46.1469444,-122.9072222,Kelso,WA,cylinder,30,Very Big UFO over I-5 in Kelso +2009-09-12,48.1183333,-123.4294444,Port Angeles,WA,light,6,Very bright white star like object moving at fast pace blast of blinding light and then vanished +2009-09-12,39.3897222,-74.5244444,Pleasantville,NJ,other,540,8 ball shaped lights that changed colors and then faded in to the sky flying up. +2009-09-12,35.6225,-117.67,Ridgecrest,CA,triangle,600,Triangular shaped object that flew over witnesses three times before splitting into 90 triangles and flying eastward +2009-09-12,34.7680556,-78.0083333,Teachey,NC,unknown,120,a light beamed down from the sky onto the ground +2009-09-12,38.7891667,-90.3225,Florissant,MO,fireball,300,Hovering fireball object in the sky +2009-09-12,43.0605556,-88.1063889,Brookfield,WI,circle,900,Three amber colored lights moving at various distances. No blinking aircraft lights or sound. +2009-09-12,43.0605556,-88.1063889,Brookfield,WI,triangle,600,Two groups of yellow -orange lights formed a moving, silent triangle that rose into the night sky faded and disappeared +2009-09-12,42.7252778,-85.7225,Dorr,MI,circle,600,We seen A orange-red glowing object saturday 9-12-09 about 10:00 pm.It started out low and headed west then it just kept rising And dis +2009-09-12,44.8480556,-93.0425,Inver Grove Heights,MN,fireball,600,fireballsin sky +2009-09-12,41.4047222,-81.7230556,Parma,OH,fireball,900,Multiple fast moving fire lights at different intervals on same vector disappearing at same spot. +2009-09-12,34.1591667,-118.5002778,Encino,CA,triangle,120,Blue and red triangular craft spotted; red disc spotted soon after +2010-09-12,41.7472222,-73.1891667,Litchfield,CT,fireball,600,Orange balls in fleet formation. +2010-09-12,41.1416667,-87.875,Bourbonnais,IL,sphere,4,A plasma-like ball shot across the sky at an incredibly high speed and disappeared, leaving an eerie trail of light behind. +2010-09-12,41.6897222,-87.7972222,Worth,IL,fireball,10,Bright light seen streaking across suburban Chicago sky. +2010-09-12,29.5072222,-95.0947222,League City,TX,unknown,75,Hovering light near Galveston, TX. ((NUFORC Note: We suspect a "twinkling" star, but cannot be certain. PD)) +2010-09-12,41.1594444,-81.4405556,Stow,OH,triangle,900,bright lights hoovering over stow ohio +2010-09-12,29.9447222,-90.0466667,Algiers,LA,other,300,Bronzed color , boomerang shape craft with an invisibility mode +2010-09-12,33.6630556,-95.4622222,Reno,TX,triangle,10,i was headed east leaving Reno i had just pasted a church and i was on a cell phone talking to my friend and i saw a triangle in the sk +2010-09-12,41.2586111,-95.9375,Omaha,NE,light,20,Bright white light crossing the sky +2010-09-12,39.9536111,-74.1983333,Toms River,NJ,cigar,3,Cigar shaped haze with two rectangular windows. +2010-09-12,32.7355556,-97.1077778,Arlington,TX,triangle,600,2 Hyper White Blue lights when roll move completed, discovered as a 3 light triangle object +2011-09-12,35.6125,-77.3666667,Greenville,NC,light,7200,Organized light craft over Greenville, NC +2011-09-12,41.9841667,-86.1086111,Dowagiac,MI,diamond,7200,I am shaking right now! I pulled up with the jeep top down and say a diamond in the sky, then I noticed greenblighys flaking to each o +2011-09-12,41.1838889,-96.0308333,La Vista,NE,light,240,Observed: Bright white light, about 2-3 times brighter/bigger than the brightest star at night. stationary, then moved, then vanished +2011-09-12,29.6655556,-95.0191667,La Porte,TX,circle,300,Bright white circular object flying around in broad daylight +2011-09-12,34.2575,-88.7033333,Tupelo,MS,other,60,((HOAX??)) Floating plane spotted, then vanishes. +2011-09-12,45.6388889,-122.6602778,Vancouver,WA,circle,360,Purple Light, Brightness changing +2011-09-12,29.5072222,-95.0947222,League City,TX,sphere,3,Possible UFO sighting traveling on I-45 towards Galveston. +2011-09-12,42.8666667,-106.3125,Casper,WY,circle,2700,It Was circular and had red green blue and purple lights. ((NUFORC Note: Possible sighting of a twinkling star?? PD)) +2011-09-12,41.2586111,-95.9375,Omaha,NE,triangle,60,Very fast triangle type object +2011-09-12,41.8238889,-71.4133333,Providence,RI,triangle,1,Fleeting triangular object following a meteor path +2011-09-12,42.1572222,-79.1022222,Kennedy,NY,unknown,300,large very bright lights semed to be connected, no noise vey close to my house +2012-09-12,47.9791667,-122.2008333,Everett,WA,triangle,10,Flying Lights/Orbs in Triangle Formation In South Everett, WA. +2012-09-12,39.6416667,-77.7202778,Hagerstown,MD,triangle,3600,Large pulsating triangular object seen hovering over town for at least an hour. +2012-09-12,40.7566667,-88.1911111,Piper City,IL,changing,300,Large silver vertical object hovering +2012-09-12,44.4583333,-93.1613889,Northfield,MN,light,20,A large light that turned white, green, and pink. +2012-09-12,37.0583333,-120.8488889,Los Banos,CA,circle,3600,UFO spotted over Los Banos CA +2012-09-12,42.3702778,-87.9019444,Gurnee,IL,unknown,600,Strange sound that hovered in sky early in morning +2012-09-12,36.9772222,-121.8983333,Aptos,CA,changing,300,Pulsating star changes to cylinder, portal shape, late afternoon, Aptos, CA +2012-09-12,44.9483333,-93.3477778,St. Louis Park,MN,circle,180,2 round light orbs flying together low in sky that separated +2012-09-12,32.855,-90.4055556,Yazoo City,MS,light,60,Bright light moving extremely fast. +2012-09-12,34.0561111,-78.8905556,Loris,SC,other,1800,Strange Slow moving string of lights over Loris, SC, Not an airplane +2012-09-12,45.9194444,-119.2880556,Mcnary,OR,oval,10,I was taking pictures of my son at sunset and when we got home I saw something in the sky on one of the pictures. I flipped to the next +2012-09-12,45.4872222,-122.8025,Beaverton,OR,disk,300,I'm a pilot. At dusk, after work, I saw a golden, metallic saucer-shaped object in the sky. It came from the south and was probably a +2012-09-12,33.8941667,-78.4269444,Ocean Isle Beach,NC,light,900,Yellow lights +2012-09-12,32.7252778,-97.3205556,Ft. Worth,TX,fireball,240,I was walking to my laundrymat in my apartment and looked directly in the air maybe looking 2 miles away and my attention was instantly +2012-09-12,33.6888889,-78.8869444,Myrtle Beach,SC,sphere,10,Around 8:30 tonight coming up to the river oaks / Carolina forest blvd intersection I saw what appeared to be bright orangeish reddish +2012-09-12,42.8141667,-73.94,Schenectady,NY,fireball,420,9/12/12 Rotterdam, NY fireball 20:30 Six fireballs floated over residence uiformly spaced 7min. 9/14/12 14:20 +2012-09-12,33.9163889,-78.1613889,Oak Island,NC,formation,300,Bright Orbs near Oak Island Pier. +2012-09-12,46.2944444,-93.8266667,Garrison,MN,other,30,UFO spotted over Garrison, Minnesota. +2012-09-12,34.1480556,-117.9980556,Monrovia,CA,oval,60,Strange lights near monrovia +2012-09-12,34.9202778,-82.2963889,Taylors,SC,other,7200,Large spheres of light making formations across the sky with flickering lights coming and going. +2012-09-12,42.6583333,-83.15,Rochester Hills,MI,disk,480,Pulsating orange lights that extinguished, revealing humming gray discs. +2012-09-12,33.5508333,-79.0416667,Murrells Inlet,SC,circle,15,Sitting on porch, saw what looked like a shooting star.Yet there was no trail left behind alike usual. About 5 mis later in the same di +2012-09-12,39.1711111,-92.3452778,Riggs,MO,light,900,Blue to Red to White to Green light flashing in the sky to the West. +2012-09-12,40.4975,-74.4888889,Somerset,NJ,light,1200,Blinking Light of Short Duration & Approximately 3.0 to 3.5 Minute Period. +2012-09-12,33.8958333,-118.2191667,Compton,CA,fireball,60,Saw a ball of light floating in the sky +2012-09-12,41.2222222,-73.0569444,Milford,CT,fireball,120,Vertical formation of Glowing orange lights seen over Silver Sands State Park in Milford Ct. +2012-09-12,21.3069444,-157.8583333,Honolulu,HI,light,300,Orange/white light appears in sky over Waikiki moving erratically at very high altitude, stationary stars in background. +2012-09-12,39.2902778,-76.6125,Baltimore,MD,circle,900,Orange Objects In The Sky +2013-09-12,36.9752778,-121.9522222,Capitola,CA,fireball,600,My wife and I saw a glowing orange light moving around in the night sky near our home. A minute or so later, another light appeared bel +2013-09-12,27.9472222,-82.4586111,Tampa,FL,cross,3,A cross shaped glowing figure fell at a rapid speed from the sky shortly after midnight. +2013-09-12,33.9375,-117.2297222,Moreno Valley,CA,light,1,Object looked liked a star but it got so bright like it illuminated it was scary, it took of like the speed if sound,they are here. +2013-09-12,40.8580556,-74.0811111,Hasbrouck Heights,NJ,oval,30,Bright UFO over NJ +2013-09-12,41.7858333,-88.1472222,Naperville,IL,triangle,60,Naperville IL Triangle shaped UFO , video evidence. +2013-09-12,33.3702778,-112.5830556,Buckeye,AZ,light,5400,As with most nights out here, watching the Orange lights to the South/West. I was laid off from work this week so I have time to explor +2013-09-12,33.9133333,-78.3041667,Holden Beach,NC,fireball,2,A single orange fireball in the South sky that lasted approximately 2 seconds and disappeared. +2013-09-12,30.4111111,-88.8277778,Ocean Springs,MS,triangle,120,Dark Triangle hovering north of interstate highway +2013-09-12,47.2530556,-122.4430556,Tacoma,WA,triangle,180,Boomarang in shape 3 lights +2013-09-12,38.3294444,-89.1908333,Ashley,IL,light,240,Strange stationary lights in sky. +2013-09-12,38.4022222,-122.8227778,Sebastopol,CA,changing,5,Bright green flashing lights in the sky +2013-09-12,47.2530556,-122.4430556,Tacoma,WA,light,180,Bright flickering light with a dimmer one beneath it. Started slow, but took off and disappeared. +2013-09-12,34.4208333,-119.6972222,Santa Barbara,CA,triangle,600,Triangular, red and green lights, hovering and moving, varying from 300-1000+ feet in Santa Barbara, CA, 2 witnesses. +2013-09-13,45.2102778,-123.1975,Mcminnville,OR,triangle,600,Very slow moving object rectangular in shape with orange and red lights, making no sound. +1974-09-13,34.0005556,-81.035,Columbia,SC,disk,300,Columbia, South Carolina 1974 Sighting. +1982-09-13,37.7644444,-89.335,Murphysboro,IL,light,1800,I saw a beam of light hit the ground,about 1 foot wide +1993-09-13,32.7252778,-114.6236111,Yuma,AZ,triangle,300,Yuma- Arizona 1993 Large Triangle shaped craft. +1996-09-13,39.9625,-76.7280556,York,PA,flash,5,We both saw something, the same thing, and we both felt really weird about it. +1996-09-13,30.2669444,-97.7427778,Austin,TX,triangle,240,Triangle shaped, low-flying, slow, silent Stealth fighter sized object with a red, revolving light on bottom. +1998-09-13,34.2977778,-83.8241667,Gainesville,GA,other,15,ME AND THREE OF MY FRIENDS WHERE COMING BACK FROM HELEN GA.WHEN I SAW ABOUT TEN OR SO LIGHTS ZIGZAGGING EVERYWHER WHEN I DID A DOUBLE T +1998-09-13,42.4391667,-123.3272222,Grants Pass (Murphy Area),OR,fireball,3,Flying from the South going North East. The green fireball with barely a tail came between two trees on the land behind our home, and +1998-09-13,41.4227778,-122.385,Weed,CA,fireball,8,Very bright blue-green fireball moved downward then went out. +1998-09-13,40.015,-105.27,Boulder,CO,other,10,I witnessed a shape over head coming from the north +1998-09-13,27.4986111,-82.575,Bradenton,FL,other,6,Dimmed orange lights in formation of a half circle--six lights in semi-circle with one light in center of semi-circle +1998-09-14,47.7544444,-122.1622222,Woodinville (Hyw 9 &Amp; 522 Jxn.),WA,light,3,I was exiting off hwy 522, as I made the left hand turn on to hwy 9. I saw a large white light, with a green tint to it. It had a very +1999-09-13,40.8686111,-82.3183333,Ashland,OH,fireball,2,At 01:01 on the 09-13-1999. I did see what looked to be fireball moving south on a heading of 170. I was looking south while driving s +1999-09-13,42.8102778,-89.8619444,Blanchardville,WI,other,60.3,Jest chasing objects: Jet goes down in local farm. +1999-09-13,34.0966667,-117.7188889,Claremont,CA,light,2700,flashing bright light changing colors and smaller objects flying around it in the night sky. +1999-09-13,40.7988889,-76.8625,Selinsgrove,PA,unknown,5,object was travelling from north to south at about 500 feet above the ground, air speed of approx. 900 mph. reappeared approx. 10 secon +1999-09-13,42.8125,-70.8777778,Newburyport,MA,oval,300,Bright oval-shaped light, approx. 30 degrees above horizon in N.E. portion of sky. Moved slowly from left to right. Observed for approx +1999-09-13,42.5463889,-71.1741667,Wilmington,MA,other,300,In the eastern sky about 45-50 degrees I noticed what looked to be a star. About every minute there would be a flash at around 7:00 to +1999-09-13,48.7597222,-122.4869444,Bellingham,WA,oval,90,looking to the north I saw a orange colored object flying west.It changed directions to east,then back to west,then north where is diss +1999-09-13,42.1097222,-86.48,St. Joseph,MI,light,30,I just witnessed three solid bright white lights moving in a south-southeasterly direction. There were not blinking or colored lights v +1999-09-13,36.1538889,-95.9925,Tulsa,OK,flash,1,Bluish-white flash lit up the sky for approx 1 second. Flash was low altitude, behind a hill near the airport with no explosion. Couldn +2000-09-13,45.6797222,-111.0377778,Bozeman,MT,other,4,An angular, heat glowing object w/ a tail smoothly streaked in a S.E. path, clearing a mtn. range on 09/13/00 at 24:04. +2000-09-13,39.1155556,-77.5638889,Leesburg,VA,rectangle,60,Highly illuminated rectangular shaped object tilted at a 20-30 degree angle in the early AM hours. +2000-09-13,41.6638889,-83.5552778,Toledo,OH,sphere,600,sphere, traveling north, 8-10ꯠ ft, silver white, no sound, changing direction slightly, speed of 180 mph, plane's in the area. +2000-09-13,47.9791667,-122.2008333,Everett,WA,formation,600,3 points of light forming a triangle +2000-09-13,38.9458333,-105.2888889,Florissant,CO,flash,1800,FLASHING STROBES OVER PIKES PEAK-VERY ERRATIC-NO DIRECTIONAL PATTERN- HOVERING ,THEN VERY FAST- ONE HALF HOUR DURATION +2000-09-13,36.8766667,-89.5877778,Sikeston,MO,cigar,120,Cigar shaped Object in Sikeston +2000-09-13,39.7588889,-84.1916667,Dayton,OH,triangle,25200,At around 9PM september 13th 2000 a craft, the size of a football field was seen very low in the sky going in the direction of Wright P +2000-09-13,42.9638889,-78.7380556,Williamsville,NY,light,10800,Repeat sighting of 9/6/00, with 3 stationary, star-like objects in a triangle formation constantly blinking red, green and white lights +2000-09-13,40.4986111,-98.9475,Minden,NE,oval,360,weird +2001-09-13,37.2705556,-76.7077778,Williamsburg,VA,light,3,Me and my friend had snuck outside to play ding dong ditch. All of a sudden this purple light went across the sky, its was slow at firs +2001-09-13,28.0391667,-81.95,Lakeland,FL,other,300,I saw what I thought was a silent jet plane flying low and slow over the trees above my house at 1:30 in the morning. +2001-09-13,38.4258333,-94.8380556,Fontana,KS,disk,300,A disc was observed flying level and then tilting on its edge over and over again. +2001-09-13,39.3677778,-94.3619444,Kearney,MO,cigar,11,It was the day airplanes resumed flight after the sept.11 attacks. I was standing out in the pasture with my dogs enjoying the day. It +2001-09-13,29.9544444,-90.075,New Orleans,LA,sphere,300,Small mettalic spheres "chasing" each other +2001-09-13,36.1538889,-95.9925,Tulsa,OK,unknown,240,Large silver object hovering in N Horizon with 2 white lights side by side. Took off in steep climb +2001-09-13,40.9483333,-80.6591667,North Lima,OH,rectangle,180,Sunset-orange rectangular object meanders in sky above North Lima, Ohio. +2001-09-13,40.8861111,-73.2577778,Kings Park,NY,other,3,Pulsating Golden Coil seen at 30 feet height 90 foot distance from observer - floating slowly to earth +2001-09-13,34.4963889,-118.3247222,Agua Dulce,CA,light,50,Object aproached along ridge, ascendded and vanished. +2001-09-13,42.6252778,-74.1338889,Berne,NY,light,180,Bright blue-white light hovers then soars OUT of atmosphere 2 days after 9/11 when planes were grounded +2001-09-13,37.9736111,-122.53,San Rafael,CA,unknown,60,solid object with 3 lights floats overhead, blocking out sky and stars in Marin Co., Ca. +2001-09-13,47.7425,-121.9844444,Duvall,WA,unknown,900,Strange lights in the Duvall night sky Sept 13, 2001 +2001-09-13,41.2913889,-87.4205556,Lowell,IN,fireball,120,During Sept 11ths No Fly order, red ball is chased down by possible military aircraft & both vanish. +2001-09-13,42.2711111,-89.0938889,Rockford,IL,fireball,300,Fireball in the sky around 911, being chased by the military! +2002-09-13,43.5780556,-70.3222222,Scarborough,ME,circle,5400,U.F.O. circle-shaped, w/ V at top white/reddish color with brilliance and movement (as if pulled by gravity) +2002-09-13,45.3127778,-107.9363889,Ft. Smith,MT,unknown,600,Three bright lights with no sound. +2002-09-13,47.8211111,-122.3138889,Lynnwood,WA,unknown,600,A TOTAL OF FIVE OBJECTS SPREAD OUT (THOUGH NOT EQUALLY SPACED) IN A STAGGERED LINE MOVING VERY SLOWLY FROM THE NORTH TO SOUTH. APPEARED +2002-09-13,31.8455556,-102.3672222,Odessa,TX,other,30,RAH-66 black helicopters +2002-09-13,39.8911111,-74.9222222,Marlton,NJ,unknown,7,High flying object seen traveling at a high rate of speed. +2002-09-13,39.6477778,-104.9872222,Englewood,CO,formation,1020,Multiple flying objects put on an airshow! +2002-09-13,32.1130556,-103.1930556,Jal,NM,light,5,Fast Moving object...Traveling from South to North +2002-09-13,39.9611111,-82.9988889,Columbus,OH,triangle,120,He could clearly make out three lights, with combinations of red and white."It was weird. I thought it was 3 planes flying together +2002-09-13,29.6483333,-81.6377778,Palatka,FL,circle,10,Bright round object in the sky stayed stationary for approximately 10 seconds then took off like a flash. My friend and I only stared a +2002-09-13,30.4055556,-86.6188889,Fort Walton Beach,FL,oval,2,Glowing pinkish-red ovals flying very fast +2003-09-13,34.0522222,-118.2427778,Los Angeles,CA,flash,2,Saw an eerie blue/white lighting up of the entire western section of the sky above Los Angeles. +2003-09-13,47.6063889,-122.3308333,Seattle,WA,other,3,Falling star +2003-09-13,46.9422222,-122.6047222,Yelm,WA,triangle,600,I saw a dark triangular shape, slowly moving at treetop level,without any sound, There were white and red lights on the bottom that fa +2003-09-13,47.2530556,-122.4430556,Tacoma,WA,sphere,1800,Spet 13 03 saw 2 glowing spheres traveling north to south then becoming staionary for 20 to 30 mins. high above my house. +2003-09-13,47.2530556,-122.4430556,Tacoma,WA,formation,1080,Video taped 3-6 shiny objects for 12 min hovering in the sky in a V formation while other objects flew around them. +2003-09-13,39.7391667,-104.9841667,Denver,CO,other,1200,I heard what initially sounded like a commercial aircraft, but it sounded like it was coming down. I went out on my deck, and above my +2004-09-13,28.6775,-81.3280556,Casselberry,FL,disk,30,Florida, Casselberry: Disc shaped object flying from NE to NW about 2000 ft altitude, unknown speed. +2004-09-13,21.3069444,-157.8583333,Honolulu,HI,sphere,15,As I exited the Halawa K-mart something above cought my attention. I immediately looked up and what I saw was a brilliantly lit, sphere +2004-09-13,42.0833333,-71.3972222,Franklin,MA,light,240,I arrived home with my children at approximately 8:25 P.M. and noticed a bright star in the north. At first I thought it was a bright s +2004-09-13,40.2794444,-75.3875,Harleysville,PA,unknown,900,Sep 13, 8:25 PM- witnessed ship that had a Mercedes like logo above Harleysville, PA +2004-09-13,33.4066667,-112.0727778,South Phoenix,AZ,light,900,Amber lights appearing over South Mountain repeatedly. +2004-09-13,38.8338889,-104.8208333,Colorado Springs,CO,chevron,30,No lights much larger than any aircraft very high rate of speed over 10000 ft. AGL +2004-09-13,34.0522222,-118.2427778,Los Angeles,CA,fireball,15,Orange fireball in sky near LAX dissipating into glowing ember +2005-09-13,39.0838889,-77.1530556,Rockville,MD,changing,300,strange dark shape changing object with an "aura" +2005-09-13,33.5386111,-112.1852778,Glendale,AZ,light,300,More "Phoenix Lights" +2005-09-13,34.2308333,-111.3244444,Payson,AZ,disk,14,Possible U.F.O. captured in photo, while out by the river with my dog, at dusk, snapping some "Moon Rise" pic's w/digital camera. +2005-09-13,40.9175,-96.5280556,Waverly,NE,light,300,bright ufo passes military plane +2005-09-13,33.4352778,-112.3575,Goodyear,AZ,unknown,1200,Slow moving lights in the night sky. +2005-09-13,33.4933333,-112.3572222,Litchfield Park,AZ,light,1200,Amber lights near Luke AFB +2005-09-13,34.4047222,-103.2047222,Clovis,NM,light,7200,UFO seen, possible govt test +2005-09-13,44.9430556,-123.0338889,Salem,OR,light,6,I was in the parking lot and happened to look up and saw a bright light (-6 or -7 in magnitude) traveling southeast from approximately +2005-09-13,42.2172222,-73.865,Catskill,NY,triangle,120,Mom and Daughter see triangular craft with bright white lights in New York. +2005-09-13,36.4386111,-105.5438889,Taos Pueblo,NM,triangle,210,On the above night stated, a friend and I were driving on Pueblo Lands. (Closed to non-tribal members of Taos Pueblo Indain Reservatio +2005-09-13,34.575,-80.9022222,Great Falls,SC,oval,780,Oval object 90 yards above field. +2006-09-13,33.1191667,-117.0855556,Escondido,CA,triangle,120,orange light floating!! +2006-09-13,29.7944444,-98.7316667,Boerne,TX,disk,5,I saw a hovering green disk and then there was a flash and it disappeared. +2006-09-13,34.4302778,-103.6319444,Melrose,NM,circle,180,aircraft following unknown object +2006-09-13,40.4775,-104.9008333,Windsor,CO,cigar,900,Yellow flying object +2006-09-13,30.2655556,-94.1994444,Lumberton,TX,sphere,5400,Quick moving craft seen in various locations in the night sky. +2006-09-13,34.0555556,-117.1816667,Redlands,CA,triangle,60,three flashing red lights. lights looked like they were dispersing. red lights flicked. +2006-09-13,32.9125,-96.6386111,Garland,TX,light,1800,twinkling multicolored light in NE sky viewed from Dallas Area 9-13-06 +2007-09-13,42.7416667,-74.7769444,Roseboom,NY,disk,300,Shook with smoke and flew of into the woods. +2007-09-13,42.3086111,-83.4822222,Canton,MI,disk,180,Saucer with 3 Very Bright Lights Observed In Non Ballistic Flight, Then Disappeared +2007-09-13,35.6869444,-105.9372222,Santa Fe,NM,sphere,1200,Translucent Spherical object Motionless in sky for extended period +2007-09-13,43.0125,-83.6875,Flint,MI,disk,120,ON THURSDAY SEPT.13TH 2007 AROUND 1700 HRS ,MY WIFE AND I WITNESSED A DISK SHAPE CRAFT IN OUR LINE OF SIGHT WHILE DRIVING . WE WERE NE +2007-09-13,35.8880556,-106.3063889,Los Alamos,NM,diamond,1200,Bright diamond-shaped object +2007-09-13,35.6869444,-105.9372222,Santa Fe,NM,light,2100,motionless bright lights dimmed and disappeared with the sundown. ((NUFORC Note: Possible sighting of Jupiter?? PD)) +2007-09-13,36.7280556,-108.2180556,Farmington,NM,circle,900,Four objects in circular reddish moving in the sky over Farmington and Kirtland, NM. +2007-09-13,36.9086111,-111.4727778,Page,AZ,other,5,Fast moving, large red crescent object +2007-09-13,39.2688889,-84.2638889,Loveland,OH,fireball,180,Inexplicable fires in sky over Clermont County, Ohio +2007-09-13,41.6022222,-71.2508333,Portsmouth,RI,triangle,1800,A triangluar craft with blinking lights seemed to be surveying the backroads of Portsmouth and Middletown before it flew away. +2007-09-13,39.3330556,-82.9825,Chillicothe,OH,fireball,30,5-7 large orange spheres. +2007-09-13,39.3330556,-82.9825,Chillicothe,OH,light,30,Strange aerial lights on Route 550 in Chillicothe Ohio. +2007-09-13,47.7661111,-116.7855556,Hayden,ID,light,15,very strange kind of made the hair on your neck stand up!!!! +2007-09-13,38.6411111,-83.7444444,Maysville,KY,light,1800,Objects were too bright and their aerodynamics were out a place +2007-09-13,39.0275,-83.9197222,Mount Orab,OH,formation,2700,Exotic Mystery Lights In Our Mount Orab Sky on 9/13/2007 +2007-09-13,42.8336111,-88.7322222,Whitewater,WI,cigar,30,cigar-shaped +2008-09-13,34.1063889,-117.5922222,Rancho Cucamonga,CA,diamond,60,Rancho Cucamonga Daytime Diamond Shaped Object +2009-09-13,47.9791667,-122.2008333,Everett,WA,light,604800,flashing lights during night and silver eliptacal during day +2009-09-13,39.4152778,-81.455,Marietta,OH,circle,60,Circular space craft with large light in center and small surrounding circular lights seen hoovering near I-77 +2009-09-13,46.0647222,-118.3419444,Walla Walla,WA,unknown,4800,UFO over Walla Walla WA. +2009-09-13,35.2269444,-80.8433333,Charlotte,NC,chevron,5,Faint chevron-shaped object over Charlotte, NC +2009-09-13,44.0886111,-87.6575,Manitowoc,WI,light,300,Three Bright Lights over Manitowoc +2009-09-13,42.1666667,-83.7816667,Saline,MI,light,10,It started on 9-13-09 i was driving home from work at 7:30 heading south when an orenge light of to the east caught my eye i watched it +2009-09-13,37.6391667,-120.9958333,Modesto,CA,formation,120,3 brightly lit formation in the sky in Central California +2009-09-13,44.7747222,-122.6138889,Lyons,OR,light,30,bright light moving slowly across the sky & suddenly disapears +2009-09-13,42.2411111,-83.6130556,Ypsilanti,MI,changing,30,Very bright object hovered aboved the treetops for a long time before moving extremely slowly toward the west. ((Star??)) +2009-09-13,47.3811111,-122.2336111,Kent,WA,light,1,Looking exactly like Jupiter in night sky, a light appeared high in sky at time of ISS orbiting above, speeds across, vanishes, it exhi +2009-09-13,48.4780556,-120.185,Winthrop,WA,circle,2700,Multi-colored flashing UFO and White bright UFO. +2009-09-13,41.85,-87.65,Chicago,IL,triangle,90,3 red/orange lights in an isosceles triangle formation. +2010-09-13,43.55,-96.7,Sioux Falls,SD,triangle,30,Triangle formation of lights moving quickly to the North, near Sioux Falls +2010-09-13,31.3363889,-81.9563889,Hortense,GA,sphere,30,Bright orange light/sphere seen over eastern horizon in Georgia. +2010-09-13,40.3488889,-104.7013889,La Salle,CO,sphere,60,Glowing spherically shaped object possibly using lighting and sound to mimic conventional aircraft. +2010-09-13,42.2711111,-89.0938889,Rockford,IL,unknown,2700,There was lights on a hoovering UFO, that only moved side to side and back and forward. +2010-09-13,43.1008333,-75.2330556,Utica,NY,light,30,every night i sit in my porch and look to the sky n i always see a light moving slowly i dont know if its a satelite but when an air +2010-09-13,41.85,-87.65,Chicago,IL,other,60,Midwestern location view of a single star moving north across the night sky at 7:40 pm on 9/13/10. +2010-09-13,30.86,-100.6005556,Eldorado,TX,triangle,45,Ufo in west TX +2010-09-13,39.0638889,-108.55,Grand Junction,CO,light,60,Bright object crosses Colorado's Southern sky +2010-09-13,40.4416667,-75.3419444,Quakertown,PA,light,300,an object that moved and changed directions in ways airplanes cannot +2010-09-13,32.7763889,-79.9311111,Charleston,SC,light,180,Very bright light travels across night sky in slightly irregular path and then fades +2010-09-13,34.2072222,-84.1402778,Cumming,GA,light,60,A white light flew overhead and made no noise, no blinking lights, like a bright star moving in a controlled manner. +2010-09-13,30.4891667,-99.7716667,Junction,TX,light,30,Bright star slowly rising from the north sky turned amber red acclarated up outta sight .. +2010-09-13,31.4636111,-100.4366667,San Angelo,TX,other,300,quickly moving, heavenly body seen vanishing +2010-09-13,41.5875,-109.2022222,Rock Springs,WY,light,120,Bright light rapidly moved toward my friend n I, changing shape n color +2010-09-13,35.2269444,-80.8433333,Charlotte,NC,unknown,4,I was traveling in Charlotte, NC south bound on I 485 in between the Northlake mall exit and HWY 16 exit. I saw what appeared to be an +2010-09-13,41.6077778,-122.8391667,Ft. Jones,CA,triangle,6,Large Black Triangular UFO +2011-09-13,39.2505556,-76.5208333,Dundalk,MD,triangle,300,triangle lights fly accross the sky and disappear. +2011-09-13,29.2163889,-82.0577778,Silver Springs,FL,diamond,720,Very unusual. +2011-09-13,37.7691667,-90.6247222,Bismarck,MO,light,3600,strobing light, changing colors - red, orange and blue, 30 deg above horizon, stationary. ((NUFORC Note: Probably Sirius. PD)) +2011-09-13,34.9386111,-82.2272222,Greer,SC,sphere,240,5 red spheres in sky Greer SC 9-13-11 +2011-09-13,34.9386111,-82.2272222,Greer,SC,sphere,240,Greer S C, 5 red spheres moving southerly near GSP/ 9/13/11 +2011-09-13,43.2669444,-73.585,Fort Edward,NY,oval,600,White object traveling fast +2011-09-13,33.7797222,-116.4644444,Cathedral City,CA,unknown,1.5,We saw what appeared to be a hovering fireball +2011-09-13,38.9988889,-84.6266667,Florence,KY,triangle,3.5,Blue aura, september 13th 2011. vanished in sky. possibly triangular. 6-11 p.m. +2011-09-13,38.52,-89.9838889,Belleville,IL,circle,4,a quick moving fire ball in the sky. +2011-09-13,41.8666667,-103.6666667,Scottsbluff,NE,light,20,Fast moving UFO with 90 degree right turn around Scottsbluff, NE +2011-09-13,38.9697222,-76.8802778,New Carrollton,MD,unknown,2,Loud Sonic Booms Heard Followed By Helicopter In Maryland +2012-09-13,42.8863889,-78.8786111,Buffalo,NY,light,5,Blinding blue/white light over Buffalo, NY. +2012-09-13,35.7477778,-95.3694444,Muskogee,OK,light,1200,Cluster of 20 or more multicolored lights hovering in same area for 20 or more minutes. +2012-09-13,33.5508333,-79.0416667,Murrells Inlet,SC,changing,240,Redish orange lights all over the sky and then one formation spinning in a circle over Murrells inlet south Carolina +2012-09-13,41.7355556,-111.8336111,Logan,UT,light,240,I think it was a pair of large military jets similar to a c-17 but I am only guessing by the load sound of the jet engine. Judging by t +2012-09-13,44.0463889,-123.0208333,Springfield,OR,unknown,300,Red ufo at Clearwater Park, Springfield, Oregon. +2012-09-13,33.4330556,-79.1216667,Pawleys Island,SC,fireball,300,It seemed to be moving in a linear path but occasionally it moved laterally or another object was appearing.I assume it was something b +2012-09-13,46.5705556,-123.2961111,Pe Ell,WA,diamond,45,Unknown object in the sky +2012-09-13,42.4386111,-73.1258333,Hinsdale,MA,disk,14400,Flying saucers over plunkett lake in Hinsdale Ma flashing red and green lights, also flashed white beam really birght. +2012-09-13,33.8158333,-78.6802778,North Myrtle Beach,SC,circle,900,Multiple glowing orange lights at North Myrtle Beach. +2013-09-13,40.5719444,-85.7691667,Sweetser,IN,light,300,Red light sighted over Sweetser Indiana. +2013-09-13,41.926944399999996,-73.9977778,Kingston,NY,oval,1200,Around and about 5:00am-5:30am my grandmother and I we out side the front door of our house to take the garbage cans back in from the s +2013-09-13,37.7741667,-87.1133333,Owensboro,KY,fireball,15,Sighting of Unusual Flaming Object in Night Sky, East Daviess County, Kentucky, 7:52pm CDT, September 13, 2013 +2013-09-13,41.4383333,-92.1688889,Webster,IA,fireball,300,There were aircraft in the vicinity, the object emitted other objects. +2013-09-13,40.5080556,-80.0833333,Ben Avon,PA,sphere,300,North-east moving south-west. First 7 or so light craft, then a half dozen stragglers. They were surely not planes, nor Chinese lantern +2013-09-13,29.7858333,-82.0316667,Keystone Heights,FL,other,15,Fast moving object; Bright orange star shaped.... Silent +2013-09-13,33.4669444,-117.6972222,Dana Point,CA,fireball,300,Saw orange fireball moving across sky. Smoothly, not blinking. Changed directions and then went upward until no longer visible. +2013-09-13,42.3683333,-83.3527778,Livonia,MI,fireball,120,Flame-like bright, moving orange light and smaller, flickering light seen over Livonia, MI. +2013-09-13,33.4483333,-112.0733333,Phoenix,AZ,fireball,20,Bright orange firball traveling southeast. +2013-09-13,33.8158333,-78.6802778,North Myrtle Beach,SC,unknown,60,Fiery looking object, no sound, moved slowly at first then more rapidly and disappeared in the clouds. +2013-09-13,40.015,-105.27,Boulder,CO,changing,18000,September, Friday the 13 Left Hand Canyon hundreds of crafts and beings in the sky and on the ground +2013-09-13,30.6741667,-96.3697222,Bryan,TX,light,60,Blue Floating Light +2013-09-13,40.0591667,-74.1375,Bricktown,NJ,sphere,3,Brilliant white-bluish round light in sky over new jersey. +2013-09-13,44.5191667,-88.0197222,Green Bay,WI,circle,180,Red ball of light with orange glow gliding not far above tree line, then dis appears in sky. +2013-09-13,34.0230556,-84.3616667,Roswell,GA,circle,15,As I was walking home from picking up something I had forgotten on the field I was playing on, I was looking at the sky and at first I +2013-09-13,37.5536111,-77.4605556,Richmond,VA,disk,1200,Saucer: red light flashing every 3 seconds +2013-09-13,40.015,-105.27,Boulder,CO,cigar,3600,Steady, long streak of green light emanating waves and modulations of light ,fading and brightening for over one hour under and thru t +2013-09-13,42.8694444,-85.6447222,Kentwood,MI,light,300,Unknown Sighting +1958-09-14,38.4783333,-82.6380556,Ashland,KY,circle,45,Near observations of a slow moving silent object and ground effects. +1974-09-14,35.6419444,-97.7461111,Piedmont,OK,disk,30,Classic inverted bowl shape with a periscope that extended underneath for observation +1981-09-14,33.89,-84.1430556,Lilburn,GA,disk,300,I was coming home from my friends house,I stopped to rest on the side of the road near a well known trail leading into some woods. I no +1982-09-14,35.7452778,-89.5297222,Ripley,TN,unknown,2700,The three of us watched a large object with flashing multicolor lights in neighbors field for 45 min to an hour +1982-09-14,33.3288889,-92.5383333,Calion,AR,triangle,10,Hovered then shot off like a missle +1982-09-14,33.3288889,-92.5383333,Calion,AR,triangle,10,It was black with a bunch (100 or more) small white lights (Like a christmas tree/decoration) and hovered silently. +1985-09-14,40.0063889,-75.7036111,Downingtown,PA,disk,120,Huge hovering ufo above home. +1990-09-14,34.6402778,-78.4841667,White Lake,NC,other,40,out of this world +1991-09-14,35.0525,-78.8786111,Fayetteville (Near),NC,light,600,Fast moving object that would just stop and then dart off and then just stop again. +1993-09-14,41.6638889,-83.5552778,Toledo,OH,oval,900,Very bright blue light lit up the night and a huge orange fiery glowing object that hovered over the house. +1994-09-14,41.5766667,-74.4875,Wurtsboro,NY,circle,660,I was coming back from yankee lake when i saw it coming towards route 17.About 11:30 P.M. +1995-09-14,42.8863889,-78.8786111,Buffalo,NY,other,2,The starlike object moved VV from right to left. Iam a former U.S.A.F. fighter bomber crewchief. +1996-09-14,41.6005556,-93.6088889,Des Moines,IA,disk,900,my friend and i saw a blurry white shape, 'bobbing' far off in a blue sky. we got the binoculars and with those saw that it was a class +1996-09-14,40.6422222,-116.9333333,Battle Mountain,NV,disk,300,Full moon or just after (that time) 8 to 8-30 pm. Two seperate occasions, the first a month earlier. Disc shaped, no lights, featureles +1996-09-14,39.4938889,-74.4575,Smithville,NJ,disk,5,Large craft hovers over car. witnessed by 4 individuals in two seperate locations! +1998-09-15,43.0944444,-79.0569444,Niagara Falls,NY,flash,38,craft headed in westerly direction from east to canada illuminated as if it were object entering atmospere but gave off white greenish +1999-09-14,39.0991667,-76.8486111,Laurel,MD,circle,180,I saw a orange/red glowing object that stopped glowing and then moved, at a very high rate of speed, out into space at about a 20-30 de +1999-09-14,47.3225,-122.3113889,Federal Way,WA,cylinder,30,I saw a day glow bronze colored cylinderical craft near Campus drive and First Ave. Hovering with appendages (4) +1999-09-14,47.3225,-122.3113889,Federal Way,WA,cylinder,30,Cylindrical, or cigar-shaped, bright bronze object with bright orange "appendage" underneath stationary at 80 degrees in SE-SSE clear b +1999-09-14,45.4983333,-122.4302778,Gresham,OR,changing,1500,watched a black object float across the sky level while appearing to rotate on 3 axis, seperate into 2 objects, reconnect and then slow +1999-09-14,40.8002778,-72.7902778,Center Moriches,NY,light,7,4 or 5 lights on an angle +1999-09-14,30.6741667,-96.3697222,Bryan,TX,triangle,15,Moving northwest to southeast, silently moving triangle shape. Blocked stars from view as if it were a triangular shadow moving across +1999-09-14,45.6388889,-122.6602778,Vancouver,WA,diamond,60,I thought it was a star +1999-09-14,47.9447222,-122.3033333,Mukilteo,WA,circle,3,When looking towards the N.W. sky from the back porch of my apartment, I witnessed a glowing, greenish object moving horizontally from +2000-09-14,43.8494444,-73.0225,Goshen,VT,unknown,15,Strang firery object falls over north east Vermont +2000-09-14,33.4708333,-81.975,Augusta,GA,cone,180,Unknow object hovering over Air Port in Augusta Ga., this was no aircraft such as a plane or helicopter etc! +2000-09-14,29.7630556,-95.3630556,Houston,TX,cylinder,1200,Videotaped a floating cylinder while taking pictures of planes leaving trails in the sky. +2000-09-14,45.6388889,-122.6602778,Vancouver,WA,egg,120,White object on clear day +2000-09-14,34.0194444,-118.4902778,Santa Monica,CA,diamond,1200,AT AROUND 7:30 ON THE DAY OF SEPTEMBER 15 I WAS GOING TO HAVE DINNER WIFE CAME OUT TO GET ME, WE BOTH NOTICED THE BEAUTIFUL SUNSET WE W +2000-09-14,33.4716667,-86.8008333,Homewood,AL,egg,8,football or egg shaped silver ufo floated over mountain crest in alabama. +2000-09-14,45.5236111,-122.675,Portland,OR,triangle,180,Triangular shaped object viewed through a telescope after initial sighting by 4 adults. +2000-09-14,41.6005556,-93.6088889,Des Moines,IA,light,30,It was a round star object that went straight then zig zagged. +2001-09-14,47.7988889,-122.4969444,Kingston,WA,light,1,Super fast bright light parallel to ground, below tree level, 10 miles away - or shooting star much farther away? +2001-09-14,48.051944399999996,-122.1758333,Marysville,WA,light,1800,We spotted a series of brighty shiny objects in the norther sky. WE could tell they were not planes or stars. +2001-09-14,34.4113889,-118.5391667,Saugus,CA,light,60,Bright star-like light, moveing erratically and at high speed over L.A.'s San Gabriel Valley and Mountains 9/14/01 +2001-09-14,40.2727778,-80.9969444,Cadiz,OH,light,45,i belived it was going fast to cover the distance that it did. it was no airplane!! +2001-09-14,44.7630556,-85.6205556,Traverse City,MI,rectangle,5,Enormous silent hovering craft above golf course. +2001-09-14,38.9858333,-119.1619444,Yerington,NV,chevron,10,delta winged object, flying south, no sound appeared to be very close. With the recent terroism attack, the thought occurred that it wa +2002-09-14,33.5386111,-112.1852778,Glendale,AZ,triangle,1800,PHOENIX TRIANGLE U.F.O SPOTTED AGAIN- SEP/ 14/ 2002 AT 12:05 AM +2002-09-14,30.2944444,-81.3933333,Jacksonville Beach,FL,triangle,30,Star gazing turns to UFO gazing +2002-09-14,45.5236111,-122.675,Portland,OR,circle,1200,circular object hovers over portland +2002-09-14,47.6588889,-117.425,Spokane,WA,triangle,1800,3 unidentified obects moving from east to west went through Spokane on 9-14-02 at 5:15 am and then many jets followed +2002-09-14,39.6133333,-105.0161111,Littleton,CO,circle,600,groups of black circular objects +2002-09-14,39.41,-74.365,Brigantine,NJ,unknown,60,Enlarging the digital images showed what appeared to be in shape of a saucer like object. +2002-09-14,43.9441667,-90.8127778,Sparta,WI,unknown,15,The light was directly over my head, and no sound of a aircraft. +2003-09-14,47.9791667,-122.2008333,Everett,WA,unknown,420,Low frequency pulsing sound above house, flash of light and momentary power outage and sound instantly gone +2003-09-14,33.4222222,-111.8219444,Mesa,AZ,triangle,7200,Tripod shaped object with red, blue, and yellow/white flashing lights hovering and or moving over the east valley. +2003-09-14,30.3880556,-95.6961111,Montgomery (Near),TX,cylinder,60,I saw what looked like a bright star then it just dimmed out. +2003-09-14,48.0152778,-122.0625,Lake Stevens,WA,cylinder,300,CYL OBJECT NO WINGS MOVING SLOWLY THEN ACCELARATING THEN DISSAPEARING +2003-09-14,33.6411111,-117.9177778,Costa Mesa,CA,fireball,300,Bright light moving fast across the sky +2003-09-14,21.3069444,-157.8583333,Honolulu,HI,circle,3600,As I lay on the beach not far from waikiki I noticed a small round object way up near the clouds to my left over diamond head crater,a +2003-09-14,37.0372222,-95.6161111,Coffeyville,KS,unknown,1200,Seen objects that looked like dim stars darting around sky. Air craft scrambled.. Inconsistent blinks.. Non-Official aircraft +2003-09-14,41.5783333,-70.5591667,East Falmouth,MA,changing,1200,We saw a cigar shaped dim orange craft fly by ahead of us, we also saw a flashing green and red star that moved across the sky. +2003-09-14,48.1988889,-122.1238889,Arlington,WA,light,20,-1MAG or brighter object low in north/northwestern sky moves downward about 2 to 3 deg growing fainter then disappears +2003-09-14,40.4555556,-109.5280556,Vernal,UT,light,7200,Wobbling bright "twinkling star" exhibits white/yellowish light along with bluish and red randomly flashing lights. +2003-09-14,40.7141667,-74.0063889,New York City (Bronx),NY,light,60,Two orange lights in the dark Bronx sky +2004-09-14,32.2216667,-110.9258333,Tucson,AZ,changing,180,BRIGHT ORANGE/YELLOW OBJECT FILMED AT SUNSET IN WESTERN SKY +2004-09-14,32.7833333,-96.8,Dallas,TX,light,2,travelling southbound on Highway 67, I saw a very bright light travelling very quickly away from the city. It was very high in the sky, +2004-09-14,32.8138889,-96.9486111,Irving,TX,changing,1200,Dancing lights in the sky for more than 20 minutes in a populated DFW skyline. +2004-09-14,44.1036111,-69.1094444,Rockland,ME,triangle,360,Large Triangle spotted over Mooshead Lake ME +2004-09-14,42.0658333,-94.8666667,Carroll,IA,triangle,120,triangle of light suddenly cruises past the stars in unison +2005-09-14,41.4244444,-91.0430556,Muscatine,IA,fireball,5,Fire ball in the western sky from Muscatine +2005-09-14,48.55,-109.6833333,Havre,MT,formation,600,Many lights in the sky all at once, four witnesses. +2005-09-14,48.55,-109.6833333,Havre,MT,light,600,Many lights appear at once, 4 known witnesses. +2005-09-14,33.3527778,-111.7883333,Gilbert,AZ,rectangle,900,Two Boomerang or V shaped crafts with green lights over Gilbert, Arizona +2005-09-14,40.4163889,-91.1361111,Carthage,IL,flash,120,it looked like a big roman candle shooting off +2005-09-14,45.0791667,-93.1469444,Shoreview,MN,sphere,40,Round, bright, low flying object silently flys overhead! +2005-09-14,26.4377778,-81.8069444,Estero,FL,teardrop,15,Large bright green object with a small amount of red in back was observed rapidly crossing the sky moving west to east at a low angle t +2005-09-14,38.6772222,-87.5286111,Vincennes,IN,changing,360,Night sighting of shape changing object sighted over Vinncennes IN, by experienced balloon pilot. +2006-09-14,35.9605556,-83.9208333,Knoxville,TN,other,120,Silent white light expands and blinks out over head at night. +2006-09-14,33.4483333,-112.0733333,Phoenix,AZ,light,120,it was an oval of lights that happened no later then 8: 15 pm. +2006-09-14,36.7263889,-78.1291667,South Hill,VA,circle,300,UFO in South Hill, VA Near the Kerr Dam +2007-09-14,28.8002778,-81.2733333,Sanford,FL,rectangle,120,Two oblong objects flying in formation near Orlando International Airport +2007-09-14,37.6819444,-121.7669444,Livermore,CA,unknown,2700,Standstill White Orb ((NUFORC Note: Sighting of Venus. PD)) +2007-09-14,41.6258333,-71.2138889,Tiverton,RI,circle,900,Huge, bright light in morning sky. ((NUFORC Note: Sighting of Venus. PD)) +2007-09-14,41.5244444,-90.5155556,Bettendorf,IA,triangle,240,Tiangular 3 white lighted object hovering with no sound +2007-09-14,41.7627778,-87.8,Bedford Park,IL,circle,900,A group of circular shaped lights - 30 - 50 in total seen by 7 people at 7:45am in Bedford Park, IL +2007-09-14,30.2669444,-97.7427778,Austin,TX,triangle,10,Green triangle light display over ACL festival in Austin. +2007-09-14,33.7747222,-84.2963889,Decatur,GA,other,7200,Strange, small star-like lights moving in erratic patterns alternating in speeds. +2007-09-14,26.5863889,-80.0522222,Lantana,FL,circle,25,I saw a biright, wite ufo through my teloscope moving west +2007-09-14,31.7838889,-81.6077778,Allenhurst,GA,light,25,SITTING IN CAR, I LOOKED UP AND A STRANGE ORANGE LIGHT CAUGHT MY EYE, I FOLLOWED THE OBJECT UNTIL THE OBJECT STOPPED IN MID AIR, +2007-09-14,37.775,-122.4183333,San Francisco,CA,triangle,7,UPDATED REPORT - PLEASE UPDATE PREVIOUS REPORT - THX - Triangle of lights flies over San Francisco +2007-09-14,31.5088889,-87.8944444,Jackson,AL,triangle,30,Triangular light-formation over forest near Jackson, AL around midnight. +2008-09-14,39.1366667,-77.715,Purcellville,VA,unknown,720,Bright circle of lights with red lights around it and then white lights, hovering then moving off slowly +2008-09-14,35.3819444,-78.5488889,Benson,NC,other,240,very bright star object +2008-09-14,34.3597222,-98.3075,Walters,OK,circle,420,bright white circle light from west to south east, completely silent no flashing lights at all, for around 7minutes +2008-09-14,35.2269444,-80.8433333,Charlotte,NC,rectangle,900,Large dark gray rectangle hovering in northern sky +2008-09-14,37.948055600000004,-122.0597222,Pleasant Hill,CA,disk,15,Flying objects over Pleasant Hill, CA 09/14/2008 +2008-09-14,47.0075,-122.9080556,Tumwater,WA,sphere,120,A bright white sphere with ocassional streamers flew across the clear blue sky toward the Black Hills. +2008-09-14,25.9013889,-97.4972222,Brownsville,TX,triangle,172800,triangle in backyard,, i have knowledge and they know,, i know. +2008-09-14,33.7475,-116.9711111,Hemet,CA,unknown,60,UFO spotted over Hemet, CA around 8:49pm Sep. 14, 2008 +2008-09-14,40.8261111,-73.5025,Syosset,NY,disk,600,UFO over central long island +2008-09-14,42.9055556,-74.5722222,Canajoharie,NY,unknown,120,UFO in area, then a AWAC jet following +2008-09-14,40.9866667,-75.195,Stroudsburg,PA,other,180,Flying wing observed in pennsylvania on september 14 2008 +2008-09-14,42.9463889,-71.5163889,Bedford,NH,light,900,Yellow-orange "stars" moving erratically then stopping, and so on. +2008-09-14,33.5016667,-117.6616667,San Juan Capistrano,CA,circle,300,Rapid moving white light seen flying beneath full moon, 9-14-2008, from San Juan Capistrano, Orange County, CA +2008-09-14,44.4294444,-75.1502778,Russell,NY,unknown,240,Large, very bright oval shaped amber colored lights at very low altitude moving slowly across the night sky +2009-09-14,34.0922222,-117.4341667,Fontana,CA,circle,60,5 white circles were seen from the east going from south to north. +2009-09-14,40.7608333,-111.8902778,Salt Lake City,UT,light,1800,star-like object changed color from white light to red; moved very fast & maneuvred like no conventional aircraft +2009-09-14,42.2708333,-83.7263889,Ann Arbor,MI,unknown,1800,Craft flashing many colors near Ann Arbor, MI +2009-09-14,43.2616667,-70.8658333,Somersworth,NH,fireball,120,Ball of flame that appeared to prepare to land! +2009-09-14,33.4483333,-112.0733333,Phoenix,AZ,formation,900,6 craft over phoenix in broad day light visible for at least 15 minutes +2009-09-14,33.8141667,-86.8094444,Warrior,AL,sphere,15,bright lime green sphere explodes and falls in Blount co. Alabama +2009-09-14,38.1041667,-122.2555556,Vallejo,CA,diamond,5,Observed a kite-shaped asterism silently moving like a low flying plane. +2009-09-14,42.5047222,-71.1961111,Burlington,MA,unknown,5400,Multicolored object moving vertically and horizontally without sound. ((NUFORC Note: Possible twinkling star?? PD)) +2009-09-14,36.8188889,-76.2752778,Chesapeake,VA,unknown,120,Around 10:15 pm on September 14, 2009. My fiance and I witnessed a light traveling at a fast speed. At first glance we thought it was +2009-09-14,47.3075,-122.2272222,Auburn,WA,unknown,1,Orange light seen over South King Co Wa, +2009-09-14,32.7866667,-79.795,Isle Of Palms,SC,light,1200,7 lights sighted off of Isle of Palms, SC, 9/14/09 +2009-09-14,34.1425,-118.2541667,Glendale,CA,other,180,A V-shaped object in the night sky, no noise, could only be seen with binoculars +2009-09-14,43.0344444,-76.6241667,Port Byron,NY,cigar,5,Cigar-shaped object sighted in NY +2010-09-14,32.7833333,-96.8,Dallas,TX,triangle,20,Object over D.F.W. Metroplex +2010-09-14,40.2547222,-75.0897222,Jamison,PA,triangle,5,Bright V shaped object very fast and Low +2010-09-14,30.5252778,-89.6794444,Picayune,MS,light,3,A yellow ball of light "turned on" flickered then shot downward at a rapid speed for two seconds and vanished. +2010-09-14,38.1302778,-121.2713889,Lodi,CA,circle,5,Detected a moving circular light over a farm, next to the Interstate 5 freeway. After 3-5 seconds, it shot straight up into the sky. +2010-09-14,34.3686111,-84.9341667,Adairsville,GA,other,2,Extremely Low Flying Aircraft, appears to be searching for something strange. +2010-09-14,42.2011111,-85.58,Portage,MI,diamond,720,Low speed diamond object metallica or white, that seemed to change shape in the way a floating plastic bag does. +2010-09-14,34.1083333,-117.2888889,San Bernardino,CA,light,180,strange light over san bernardino +2010-09-14,30.4866667,-90.9561111,Denham Springs,LA,light,120,Unusual bright lights moving high in the night sky +2010-09-14,39.9852778,-104.82,Brighton,CO,light,1200,Bright white and orange light in western sky. +2010-09-14,34.6183333,-82.4780556,Williamston,SC,unknown,3600,Bright Red/Orange light hovered changed altitude rapidly "danced" dissappeared then reappeared several times. +2010-09-14,36.1538889,-95.9925,Tulsa,OK,unknown,4,Star drops out of sky straight down. +2010-09-14,43.0605556,-88.1063889,Brookfield,WI,sphere,2400,3 orange spheres moving througout the sky in various directions for 40 minutes +2010-09-14,30.2669444,-97.7427778,Austin,TX,unknown,1200,4-6 lights dancing in sky west of Austin, TX. Chasing ea. other and going up/down side to side forming squares +2010-09-14,38.5130556,-90.4358333,Fenton,MO,fireball,3600,bright flickering red lights orbitting around Fenton MO caught on camer and video +2010-09-14,27.2436111,-80.83,Okeechobee,FL,light,2700,Flying white light faded into the sky +2010-09-14,37.9780556,-122.03,Concord,CA,cylinder,2100,Large craft hovered wothout making any noise,left same way. +2010-09-14,31.6088889,-85.0472222,Fort Gaines,GA,fireball,300,bright orange ball +2011-09-14,38.1302778,-121.2713889,Lodi,CA,light,1500,UFO Sighting September 14, 2011. +2011-09-14,33.8333333,-111.95,Cave Creek,AZ,circle,30,Three amber/yellow lights in triangle formation seen in Arizona night sky, then disappeared. +2011-09-14,36.175,-115.1363889,Las Vegas,NV,fireball,120,Shooting star like craft seen looking S-SW from northwest Las Vegas +2011-09-14,36.175,-115.1363889,Las Vegas,NV,other,180,Possible Explanation for Green Light In Sky in Las Vegas +2011-09-14,36.0397222,-114.9811111,Henderson,NV,fireball,5,Fireball with a long tail +2011-09-14,36.2083333,-115.9830556,Pahrump,NV,fireball,45,BRILLIANT GREEN WHITE LIGHT LASTING 45 SECONDS WEST TO EAST DIRECTION OVER PAHRUMP, NV +2011-09-14,36.0397222,-114.9811111,Henderson,NV,unknown,30,Saw the light in Las Vegas before it turned green and yellow +2011-09-14,36.175,-115.1363889,Las Vegas,NV,fireball,10,Green fireball followed by red tail, +2011-09-14,36.2083333,-115.9830556,Pahrump,NV,unknown,45,Green light in the sky +2011-09-14,33.4483333,-112.0733333,Phoenix,AZ,teardrop,45,I noticed a very bright Blue-Green (like an acetylene flame) Tear shaped light coming towards the raised highway +2011-09-14,33.0416667,-116.8672222,Ramona,CA,unknown,600,Bright round light going across the sky from NW to SE across Ramona area. +2011-09-14,45.5236111,-122.675,Portland,OR,light,15,I'm an amateur astronomer and have seen many objects before (satellites, iridium flares, ect.), and these were unusual. +2011-09-14,33.6680556,-117.3263889,Lake Elsinore,CA,fireball,900,Fireball seen over Lake Elsinore, CA +2011-09-14,33.6680556,-117.3263889,Lake Elsinore,CA,fireball,900,Monitored radio report of crashed object on fire, "meteors" +2011-09-14,40.015,-105.27,Boulder,CO,chevron,4,Pink and blue pulsating manta ray shaped ufo over boulder +2012-09-14,36.175,-115.1363889,Las Vegas,NV,formation,180,Large group of white objects with four red objects flying away from it +2012-09-14,31.4622222,-97.1955556,Hewitt,TX,unknown,240,An unexplained high to low frequency sounding moving object with a quick flash of contained blue lightning. +2012-09-14,29.9544444,-90.075,New Orleans,LA,triangle,120,Two very high altitude craft bright white color, glowing or reflecting sunlight. +2012-09-14,33.5225,-117.7066667,Laguna Niguel,CA,sphere,1200,Silver ball in California's Sky. +2012-09-14,47.4538889,-122.3205556,Seatac,WA,sphere,3,Bright orange orb flown over by landing aircraft at Seatac. +2012-09-14,41.9761111,-72.5922222,Enfield,CT,unknown,900,7 floating red and blue lit crafts floated above Enfield CT +2012-09-14,42.2625,-71.8027778,Worcester,MA,fireball,120,Fireballs seen above Route 290 near Holy Cross College +2012-09-14,34.1063889,-117.5922222,Rancho Cucamonga,CA,chevron,30,Slow moving Chevron shaped flying craft, glowing with a pattern of blinking and changing lights +2012-09-14,40.0638889,-80.7211111,Wheeling,WV,light,600,Red lights following each other but not in any type of formation +2012-09-14,41.85,-87.65,Chicago,IL,diamond,60,3 Lighted Objects Spotted in Chicago 9-14-2012 +2012-09-14,41.1016667,-80.7647222,Austintown,OH,oval,120,Orangish colored object hovering in sky, then flew south. +2012-09-14,36.3811111,-75.8333333,Corolla,NC,fireball,300,Fireball over Corolla NC +2012-09-14,41.7958333,-87.9755556,Westmont,IL,light,180,Orange orbs flying in formation over Chicago land area US34 +2012-09-14,42.5625,-96.7052778,Ponca,NE,cylinder,6,It was cylindrical and kept changing color +2012-09-14,30.0797222,-95.4169444,Spring,TX,light,60,Travebright white light with flashing white light. Traveling in straight line from south to north. +2012-09-14,41.85,-87.65,Chicago,IL,oval,300,Several Yelowish-Orang to Red lights over West Chicago +2013-09-14,26.6155556,-80.0572222,Lake Worth,FL,triangle,180,3 bright orange triangles slowly moved across the sky in a triangle formation, then the light emitting from each faded 1 by 1. +2013-09-14,39.9508333,-86.2619444,Zionsville,IN,sphere,50,Faint Sphere/Saucer travelling South became more difficult to see, vanished, and left a greenish-white streak in the sky for a second. +2013-09-14,33.6305556,-112.3325,Surprise,AZ,unknown,1,Fast moving object with what appear to be windows and some other exterior features. +2013-09-14,38.2008333,-84.8733333,Frankfort,KY,unknown,30,I was just sitting on my porch when I saw these ufos they where white circles forming a triangle that's all I seen +2013-09-14,42.0358333,-91.6819444,Hiawatha,IA,light,1200,Extremely intense, bright light moving very slowly across the sky at a very high altitude. +2013-09-14,36.3883333,-86.4466667,Gallatin,TN,rectangle,60,Two black square-ish translucent objects seen on 109 over gallatin skies. One was still the other was weaving then vanished. +2013-09-14,41.3683333,-82.1077778,Elyria,OH,fireball,120,Bright orange orb, dropping flare like flashes in Northeastern sky, changed direction and faded into high altitude. +2013-09-14,39.9611111,-82.9988889,Columbus,OH,light,60,Bright light seen stopping, turning, and behaving very unlike an aircraft. +2013-09-14,35.3658333,-120.8488889,Morro Bay,CA,fireball,20,No noise, larger than golf ball sized,approximately 1100 to 2200 feet elevation, bright orange, light emmitting in the shape of badmit +2013-09-14,36.6102778,-88.3147222,Murray,KY,circle,5,An orange ball, about the size of the moon appeared just above the tree line appear for a few sec.s then disappeared. The object did n +2013-09-14,33.66,-86.8127778,Gardendale,AL,sphere,14400,Up to 9 Objects flying erratically and taking interest in several commercial planes. Birmingham, AL area +2013-09-14,43.2797222,-75.6438889,Blossvale,NY,fireball,180,Fire ball chase. +2013-09-14,41.2222222,-73.0569444,Milford,CT,other,60,I saw a jellyfish type object hovering. It was pale blue in color and translucent. There was a bright light that looked like a small fl +2013-09-14,42.0583333,-70.1791667,Provincetown,MA,light,300,For several minutes the lights hovered over provincetown - everyone on commercial street stopped to look up at the light which moved up +2013-09-14,47.6063889,-122.3308333,Seattle,WA,fireball,300,Small orange fireball type object fell to the pavement on Alkai Beach area +2013-09-14,43.0480556,-76.1477778,Syracuse,NY,circle,600,Seen 3 orange balls of light. They disappeared and then reappeared. We followed them for about a mile. I video taped it for up to 3 min +2013-09-14,39.4141667,-77.4108333,Frederick,MD,circle,300,8-12 orangish red circles floating in western sky, slowly disappeared +2013-09-14,40.1855556,-75.4519444,Collegeville,PA,light,120,White dot of light traveled across the sky, very fast, then shot away. +2013-09-14,36.9902778,-86.4436111,Bowling Green,KY,light,120,8-9 Flame colored lights flying in a low formation over Bowling Green, KY. +2013-09-14,41.85,-87.65,Chicago,IL,circle,120,Red glowing lights over chicago chased by an airplane. +2013-09-14,30.2366667,-93.0136111,Iowa,LA,fireball,420,About 20 fireballs going south to north . Filmed about 3 minutes on iphone +2013-09-14,41.7197222,-72.8325,Farmington,CT,circle,900,15-20 similar objects with orange light (no sound) seen moving across night sky from west to south +2013-09-14,38.3030556,-77.4608333,Fredericksburg,VA,light,21600,Bright light seen in Fredericksburg, Virginia! +2013-09-14,43.6122222,-116.3905556,Meridian,ID,circle,900,More than a dozen red lights travelling slowly towards North and then slowly together up in the sky +2013-09-14,45.2630556,-122.6913889,Canby,OR,sphere,300,Three amber orbs or spheres. +2013-09-14,39.9611111,-82.9988889,Columbus,OH,light,120,Large red light moving very fast from South to North over southern Columbus. Halfway across sky it shrank (maybe changed direction slig +2013-09-14,42.1291667,-83.1444444,Grosse Ile,MI,fireball,120,Red/orange floating lights/fireball stopped in air than dissapeared. +2013-09-14,40.0377778,-76.3058333,Lancaster County (South Of Willow Street),PA,light,20,6 orange/red round orbs/lights going up into south sky over southern Lancaster County, PA 9/14/13 9:45 p.m. +2013-09-14,41.9902778,-70.9755556,Bridgewater,MA,fireball,600,Six red orbs in a formations were seen in the sky traveling South. Singulare ords followed for about 15 minutes. +2013-09-14,30.6277778,-96.3341667,College Station,TX,light,60,Blue Floating Light +2013-09-14,40.4166667,-86.8752778,Lafayette,IN,circle,900,Cluster of multicolor stationary lights +2013-09-14,40.0952778,-76.4102778,Landisville,PA,oval,360,Fireball. +2013-09-14,38.6272222,-90.1977778,Saint Louis,MO,disk,600,I sent a similar e-mail to Debbie Ziegelmeyer and Margie Kay (MUFON)but thought I should post it here as well. Maybe there is an explan +2013-09-14,39.9611111,-82.9988889,Columbus,OH,light,240,Round orange object spotted over Columbus Ohio +2013-09-14,34.2366667,-84.4908333,Canton,GA,fireball,300,Six bright orange fireball like orbs in an arch +2013-09-14,38.8105556,-90.6997222,O'fallon,MO,circle,300,About 10:40 pm CST my wife and i saw about 75 plus orange circular objects in the western sky moving slowly west. They were in a zig za +2013-09-14,33.4486111,-84.455,Fayetteville,GA,light,300,Five bright white lights moving E to W at constant speed and altitude with no similarities to aircraft. +2013-09-14,42.0963889,-79.3758333,Ashville,NY,cone,900,Flashing Craft over Chautauqua, NY +2013-09-14,39.3994444,-84.5613889,Hamilton,OH,fireball,1800,15 fireballs in sky moving at a good speed. +2013-09-14,40.0144444,-74.3116667,Lakehurst,NJ,fireball,1800,Two high intensity orange glowing balls of light appearing and reappearing across the sky. +2013-09-14,41.1369444,-77.4472222,Lock Haven,PA,rectangle,30,Black rectangle heading westward. +2013-09-14,41.4994444,-81.6955556,Cleveland,OH,unknown,2400,I saw a bright light that looked like a star that began to circle the sky with two white lights and one red light flashing. +1934-09-15,46.9233333,-98.0027778,Valley City (6.5 Miles East Of),ND,disk,5,Two brothers observe, hear, three black discs streak overhead, moving from SE to NW; below high overcast. 500 Lights On Object0: Ye +1949-09-15,33.1908333,-101.3777778,Post,TX,disk,10,Disk object appeared very close to ground above Post, Texas for just a few seconds in about 1949 or 1950 +1952-09-15,44.7130556,-69.7911111,Norridgewock,ME,disk,300,SUNNY DAY, WITHIN 450 FEET, LOW...REPORTED TO DOW A.F.B. IN BANGOR. NO NOISE SLOW ANTI GRAVITY DEF. NOT FROM EARTH! +1956-09-15,39.3341667,-76.4397222,Middle River,MD,circle,60,three round blue-white disks in V formation moving from SE to NW +1957-09-15,31.7586111,-106.4863889,El Paso,TX,disk,600,Undified Flying Object +1957-09-15,29.0336111,-95.4341667,Lake Jackson,TX,fireball,13,fireball seen on country road. +1957-09-15,47.2530556,-122.4430556,Tacoma,WA,disk,20,a large disk spacecraft the size of a Boeing 727 seen in the evening skies over Tacoma, Wn. +1959-09-15,37.7086111,-117.2347222,Goldfield,NV,light,60,The object hovered over the pick-up, and raised it from the sand +1959-09-15,39.7588889,-84.1916667,Dayton,OH,disk,900,formation of 6 saucers moving from Wright Paterson east to Dayton Ohio +1959-09-16,39.4736111,-118.7763889,Fallon,NV,oval,7200,I was an Air Force radar operator at Fallon Navel Air Station, in the year of 1959 Iwas working the day shift on that day. Iwas on sc +1960-09-15,36.5483333,-82.5619444,Kingsport,TN,circle,300,An orange, circular craft drifted over the house from east to west shortly after sundown. +1960-09-15,47.6063889,-122.3308333,Seattle,WA,disk,120,Triple disc sighting prior to dusk with a light beam and possible healing. Witnessed. +1961-09-15,41.2113889,-96.62,Wahoo,NE,egg,300,Egg shaped craft near Wahoo, NE +1962-09-15,36.515,-77.19,Severn (Northhampton) (Uk/England),NC,unknown,900,Car electrical system failed, then recovered +1964-09-15,38.9430556,-109.8166667,Crescent Junction,UT,disk,300,Four discs, glowing white, shifting about, zipped off FAST when military jets came roaring out of nowhere. +1964-09-15,46.6022222,-120.5047222,Yakima,WA,disk,120,Here is my report +1964-09-15,35.0166667,-81.8041667,Cowpens,SC,disk,600,I looked in awe and fascination at the huge craft hovering directly over me and time seemed to stand still... +1964-09-15,36.6002778,-121.8936111,Monterey,CA,disk,1200,UFO responds to signals +1965-09-15,39.7683333,-86.1580556,Indianapolis,IN,egg,20,Zig Zagging Egg in daytime +1965-09-15,41.6269444,-79.6738889,Titusville,PA,triangle,5,Man recalls back in the 1960's of three trangular shaped objects moving northwest over his hometown toward Lake Erie in the night sky. +1965-09-15,44.3530556,-121.1766667,Terrebonne,OR,light,21600,Pairs of RED LIGHTS spinning up, down, spiraling, twirling....as if playing. +1965-09-15,38.364444399999996,-98.7644444,Great Bend,KS,changing,180,White cube that glowed like a lightbulb +1966-09-15,39.4666667,-87.4138889,Terre Haute,IN,sphere,1800,Close Encounter with Scanning Object +1966-09-15,31.7822222,-97.5763889,Clifton (Near),TX,flash,3654000,I think I was Taken and accidently put in a different space time and then it was corrected.I have no memery of anything else. +1966-09-15,64.0377778,-145.7322222,Delta Junction,AK,cigar,900,Long Cigar shape w/portholes bright orange on the ends or edges +1966-09-15,34.2011111,-118.5972222,Canoga Park,CA,cigar,300,Blue cigar shape ufo seen over home in california 1966 +1966-09-15,41.6638889,-83.5552778,Toledo,OH,triangle,1200,glowing orb hovers 20 feet above onlookers +1966-09-15,38.4191667,-82.4452778,Huntington,WV,triangle,45,Triangular object with red lights, moved from hover to bullet speed in an instant. 2 observations, 2 different towns +1967-09-15,38.26,-96.8194444,Cedar Point,KS,light,300,It is interesting to me tht I've had three encounters. 500 Lights On Object0: Yes +1967-09-15,42.5777778,-121.865,Chiloquin,OR,disk,120,It was steel gray, simigloss exterior.It was a disk. the sun was behind the horizon.It was dusk. the craft was hovering over the ri +1967-09-15,38.4405556,-122.7133333,Santa Rosa,CA,circle,7,ORANGE/RED CIRCLE OR SPHERE. APPROX. - 15% TO 20% LARGER THAN FULL MOON. +1967-09-16,46.8605556,-68.0125,Caribou,ME,disk,10,Three sightings: disc, zig-zagging star, bar of light +1968-09-15,42.6733333,-91.9133333,Oelwein,IA,cigar,300,a cigar shaped craft with muti-colored lights around it traveling toward the southwest absolutely silently and at a rather slow speed. +1968-09-16,44.5922222,-102.4302778,White Owl,SD,fireball,18000,UFO analyzes missile site. +1969-09-15,37.3022222,-120.4819444,Merced,CA,unknown,900,One evening when I was returning from classes at the local college, I was driving west on M Street that at that time led back into town +1970-09-15,40.26,-121.3919444,Deer Creek,CA,diamond,1800,UFO's land and at flight during a overcast morning... +1970-09-15,39.2341667,-92.2805556,Sturgeon,MO,unknown,1200,Rumbling noise Bright light and Silence In MO. +1971-09-15,29.4238889,-98.4933333,San Antonio,TX,oval,60,Daylight sighting of an oval shaped lighted phenomena appears and reappears several times +1971-09-15,29.7630556,-95.3630556,Houston (Near),TX,circle,2700,This is about a craft with a circular beam of light that could penetrate through a roof and ceilng of a house. +1971-09-15,35.1211111,-81.5161111,Blacksburg,SC,disk,300,I saw some bright lights moving over high voltage power lines.Object made right turn and went down behind some trees.I drove ahead and +1971-09-15,40.4155556,-74.1913889,Hazlet,NJ,disk,600,Large saucer, rotating lights, low hover, late night, family of 5, witnessed 1971, NJ +1972-09-15,30.1586111,-85.6602778,Panama City,FL,unknown,180,This was more of an audible sighting instead of a visual. At approx. 3:00 in the morning, my backyard suddenly lit up with a brilliant +1972-09-15,34.2575,-88.7033333,Tupelo,MS,oval,180,School Teacher observes large Oval craft near Tupelo +1972-09-15,47.4066667,-122.0375,Maple Valley,WA,disk,8,It flew over the house just above the tree tops. It was going very fast, It made no sound then it just vanished. +1972-09-15,40.9366667,-87.1508333,Rensselaer,IN,light,300,One evening about an hour after sundown in 1972, approximately half-way between Rensselaer and Francesville, Indiana, an elderly friend +1973-09-15,41.9905556,-76.1311111,Little Meadows,PA,oval,900,Oval Object With Aura - Close Up +1973-09-15,43.1586111,-76.3330556,Baldwinsville,NY,unknown,1200,Four teens saw bright light only a few hundred feet in early evening sky for about 15 minutes, no noise! +1973-09-15,41.3136111,-81.7247222,North Royalton,OH,disk,300,brightlight at first.light got smaller as it neared us.no sound.could make out three windows and three occupants. +1973-09-15,38.8213889,-121.1919444,Loomis,CA,light,120,It looked like a faint star to began with. one that as redish in color, and was just sitting there within a group of other stars that w +1974-09-15,46.1469444,-122.9072222,Kelso,WA,triangle,120,Grandma's UFO +1974-09-15,39.7286111,-121.8363889,Chico,CA,chevron,300,in 1974, I saw a white triangular object moveing low and slow over orchards and fields north of chico CA +1974-09-15,42.3313889,-83.0458333,Detroit,MI,disk,1200,The“craft” slowed to a full stop and hovered just above a cemetery that was 3 streets north of ours +1974-09-15,31.3269444,-89.2902778,Hattiesburg,MS,triangle,120,three lights in triangle shape bright flashing and incredible movement +1974-09-15,42.515,-74.0458333,Westerlo,NY,light,300,Watched light maneuver in nite sky in maner that normal aircraft cant do. 90 degree turns massive speed +1974-09-15,41.1252778,-84.8533333,Woodburn,IN,rectangle,600,Hugh rectangular object hovered over my home. +1975-09-15,28.1138889,-81.6180556,Haines City,FL,disk,600,silver saucer hovering over an orange grove. +1975-09-15,39.6533333,-75.5169444,Pennsville,NJ,disk,300,Red, saucer shaped aerial phenomenon of unconventional configuration with no audible propulsion. +1976-09-15,27.5061111,-99.5072222,Laredo,TX,oval,2,In the fall of 1976, three of us saw a grayish oval ufo with lighted windows hovering very low above some trees. +1976-09-15,37.1461111,-79.3011111,Lynch Station,VA,light,600,Silent bright craft releases smaller craft in 1976. +1976-09-15,38.5816667,-121.4933333,Sacramento,CA,oval,360,In September 1976, I had another UFO encounter. This time I was out of the Army and living with my former girlfriend H. L. in an apart +1977-09-15,42.4419444,-121.2697222,Beatty,OR,light,480,A bright object flying in the sky turned 90 deg on the fly came toward us then glowed brightly for maybe 8 min then flew away from us a +1977-09-15,34.0952778,-118.1261111,Alhambra,CA,disk,1200,"People of Earth; unite and love each other" +1977-09-15,35.9605556,-83.9208333,Knoxville,TN,disk,300,Two disc shaped objects flying in tandem +1977-09-15,42.9075,-72.0630556,Dublin,NH,triangle,600,There were six of us. We were on the "Upper Field" of our prep school where there were no outside lights. The night sky was bright (goo +1977-09-15,34.4313889,-110.5933333,Heber,AZ,triangle,10,Witnessed an enormous black triangle with lights traveling overhead, at a very low altitude at night in a remote area. +1978-09-15,43.3219444,-70.5813889,Wells,ME,triangle,60,huge, diamond shape object flying low in southern Maine +1978-09-15,29.4075,-82.2977778,Flemington,FL,oval,420,This incident is my very first of two in my lifetime I have witnessed and happened when I was 18 which was a little more than 30 years +1978-09-15,47.3483333,-122.1136111,Covington,WA,disk,600,1978 Covington, WA Disc-shaped Object +1978-09-15,35.5361111,-100.9594444,Pampa,TX,light,600,Had UFO come within 30 to 40 feet from us. Then took off very very fast into space. No doubt there is other life out there, none at all +1978-09-15,41.2283333,-80.9547222,Braceville,OH,diamond,900,It was over 28yrs. ago now, and I can remember it like yesterday. +1978-09-15,40.8813889,-82.6619444,Shelby,OH,triangle,600,Triangular, slow moving object with no lights and very low altitude outside of Shelby +1979-09-15,30.6741667,-96.3697222,Bryan,TX,oval,1200,Shining Bright Light, Oval Shaped, no sound +1980-09-15,36.2505556,-83.7975,Maynardville,TN,light,120,A late night viewing of a bright, white light during a camping trip leads to an unusual physical manifestation. +1980-09-15,42.489444399999996,-83.1447222,Royal Oak,MI,disk,1200,after leaving work at (15 mile and Crooks Rd)about 12:30am I travaled south on Crooks Rd for about 15 mts stopping for a red light at C +1980-09-15,44.2797222,-68.3255556,Southwest Harbor,ME,light,300,Large round white light +1980-09-15,40.8325,-115.7622222,Elko,NV,light,15300,Spotted aluminum-colored square- shaped blinking lights which disappeared, car stopped & red/orange ball followed us. +1980-09-15,41.7783333,-96.2208333,Tekamah,NE,unknown,480,Standard running light, hovers, flies slow, climbs fast and absolutely no sound and no jet engines flames. +1980-09-15,41.1669444,-73.2052778,Bridgeport,CT,triangle,300,I was sitting on my front porch and noticed a bright light in the distance over the trees. I mentioned it to my fiance and he said it w +1981-09-15,33.3766667,-79.2947222,Georgetown,SC,triangle,180,Triangular shape over Georgetown, early 1980's +1981-09-15,30.6741667,-96.3697222,Bryan,TX,other,900,cant describe what I saw? And when I try something deep inside tells me not to!!! sorry..... +1981-09-15,40.0788889,-93.6163889,Trenton,MO,rectangle,3600,Soundless rectangle Trenton, Missouri. +1981-09-15,40.0625,-79.7638889,Star Junction,PA,circle,1800,Crafts seen by many in PA media covers +1982-09-15,43.8013889,-91.2394444,La Crosse,WI,disk,1200,I saw a disk hoovering over a Parking lot with aprox 30 others. Lights revolving around it. Motionless. +1982-09-15,39.1611111,-80.3522222,Lost Creek,WV,light,900,Two lights moving slowly at tree top level around our house with no sound. +1982-09-15,36.5111111,-83.0286111,Eidson,TN,chevron,14400,We saw multicolored lights in the night sky in Eidson TN in fall 1982 that were the shape of a football-field-size parallelogram. +1982-09-15,42.6827778,-89.0186111,Janesville,WI,rectangle,1200,2-3 football fields in length in the sky lights all over it. in the middle of Janesville. +1983-09-15,38.9541667,-119.7647222,Minden,NV,sphere,600,driving up mountian road,observed 3 large round balls hanging in mid-air +1983-09-15,34.4047222,-103.2047222,Clovis,NM,triangle,300,it blocked out the stars as it slowly tracked across town towards Cannon AFB, so I could make out its giant triangular shape easily +1983-09-15,41.1844444,-73.1336111,Stratford,CT,triangle,2700,V shaped UFO tracked for miles by Ct residents (Hudson Valley Connected) +1984-09-15,40.6305556,-76.1713889,Schuylkill Haven,PA,triangle,120,Triangular craft with bright white lights on corners was observed above building. +1984-09-15,60.5372222,-150.7647222,Sterling,AK,light,1200,My friends & I were fishing at a lake(Paddle Lake) for a weekend on the Keni Peninsula in Alaska. The first evening Bob ******* & me wh +1985-09-15,41.5286111,-109.4655556,Green River (No. Of),WY,light,1200,I saw unexplainable lights in the same area & the same time frame that livestock was being mutilated. +1986-09-15,40.7141667,-74.0063889,New York City (Brooklyn),NY,sphere,1500,A clear bright starry night. Very nice indeed with great air quality that night.I was on duty and doing guard. The premises are outdoor +1986-09-15,32.3511111,-95.3008333,Tyler,TX,other,10,Large ship with no sound and no lights passing over my apt complex +1986-09-15,35.1536111,-78.1055556,Calypso,NC,other,300,In 1986 NC, a red and yellow glowing object appears to mother, son, and daughter leaving them without memory of it +1986-09-15,40.5866667,-122.3905556,Redding,CA,cigar,60,In September 1986 I was working for the National Park Service at the Whiskeytown National Recreation Area just west of Redding, CA. I +1986-09-15,41.6469444,-73.5686111,Wingdale,NY,other,1200,First obect traveling at high speed, second object stationary on mountain top observed for several minutes +1987-09-15,43.1063889,-76.2180556,Liverpool,NY,cigar,3,Cigar-shaped object with three white lights above LongBranch Elementary School, Liverpool, NY +1987-09-15,43.1741667,-87.9241667,River Hills (Milwaukee Suburb),WI,unknown,15,Saw a stationary and noise-free formation of five lights that looked like a Mack Truck in the sky, with two large white lights almost l +1987-09-15,42.8711111,-97.3969444,Yankton,SD,triangle,6,silent isosceles triangle shaped mirage-like UFO with no lights +1987-09-15,36.2077778,-119.3463889,Tulare,CA,light,1200,Not a light in the sky, this was 30 feet off the ground and we watched it for 20 minutes, it was covered up. +1988-09-15,30.8777778,-90.7813889,Darlington,LA,unknown,900,Blade sound passes overhead while photographing wildlife at night. +1989-09-15,30.2669444,-97.7427778,Austin,TX,circle,900,Up close sighting of UFO then confirmed by helicopter pursuit in Austin, Texas. +1989-09-15,41.29,-73.9208333,Peekskill,NY,unknown,60,Massive, low flying, slowly moving craft that emitted no sound. +1990-09-15,33.5086111,-96.6119444,Howe,TX,cigar,600,Silver, silent, stationary cigar object +1990-09-15,39.6444444,-86.8647222,Greencastle (West Of),IN,other,600,A silver-metallic hockey puck shaped object just hanging in the daytime sky. +1990-09-15,41.4552778,-74.2630556,Campbell Hall,NY,triangle,600,The object seemed to be triangular in shape due to the setting of approx.7-8 red lights.It seemed to be larger than a football field, n +1990-09-15,42.7130556,-85.4619444,Middleville,MI,disk,60,The huvering silent crafts lighs moved and focused on us befor it crossed the road and shot away in the night. +1991-09-15,35.2338889,-92.3875,Greenbrier,AR,light,66276000,Orange or amber balls or orbs of light multiplying and maneuvering beyond known and current aircraft abilities +1993-09-15,30.3502778,-89.1527778,Long Beach,MS,chevron,60,I WAS UP WATCHING TV WHEN I REMEMBERED THAT I HAD LEFT SOMETHING IN MY CAR. SO AS I WALKED OUTSIDE I LOOKED UP, AS I ALWAYS DO IN HOPE +1993-09-15,42.9697222,-77.2305556,Manchester,NY,disk,5,I was about 15 feet away from a small disk shaped object flying through the woods. +1993-09-15,39.5297222,-119.8127778,Reno,NV,formation,45,Daytime sighting over Reno airport of formation consisting of three aqua spheres and two bronze elliptoids +1993-09-15,37.3636111,-118.3941667,Bishop,CA,sphere,600,Large sphere witnessed at music festival. +1993-09-15,38.9711111,-81.9144444,Racine,OH,light,2100,There was a large number of lights in the sky flying in geometric patterns. +1993-09-15,37.775,-122.4183333,San Francisco,CA,circle,240,Round shiny object emitting three rows of blue pulsing arc rays. +1994-09-15,42.6583333,-71.1375,Andover,MA,cigar,15,enormous transparent cylinder/cigar shaped object w/stars(?) attached +1994-09-15,36.0594444,-91.9083333,Melbourne,AR,disk,10,I am a retired Fire Captain, City of Detroit, Mi. In 1991 We, my wife and youngest daughter, purchased a home in the "Ozarks", Melbourn +1994-09-15,40.4405556,-79.9961111,Pittsburgh (Outside Of),PA,disk,60,While watching Prime Time live on TV, they stopped for the Crash of USAir Flight 427 and when showing the sky, the only object seen was +1994-09-15,41.926944399999996,-73.9977778,Kingston,NY,triangle,600,Kingston, NY Sighting +1994-09-15,41.0477778,-79.8136111,North Washington,PA,oval,4,F A S T - Ionized Sphere? +1994-09-15,47.6588889,-117.425,Spokane,WA,disk,120,I was able to clearly see three seperate disk shaped vehicles, with brassy looking metalic bodies that had three round nubs at the extr +1995-09-15,61.5813889,-149.4394444,Wasilla,AK,light,600,Noticed two objects traveling in an erratic manner in a southerly direction out of the North-East. +1995-09-15,28.2916667,-81.4077778,Kissimmee,FL,disk,300,green glowing glow around silver disk with red ball on bottom +1995-09-15,32.9627778,-117.035,Poway,CA,other,360,Rainbow colored cloud that changed colors constantly, hovering just above treeline. +1995-09-15,36.175,-115.1363889,Las Vegas,NV,other,1500,garbage can shaped object +1995-09-15,33.9319444,-117.9452778,La Habra,CA,disk,420,UFO in sky with light blinking independent ring of light disk saucer shape +1995-09-15,41.3116667,-75.8377778,Wyoming,PA,unknown,600,I was driving home late at night an observed 3 columns of green light in a field. +1996-09-15,44.9430556,-123.0338889,Salem,OR,teardrop,6,While driving home on State street just East of Lancaster (we were traveling East) a bright lime/jade green "comet" appeared infront of +1996-09-15,32.7677778,-117.0222222,La Mesa,CA,light,30,Bright reddish star in La Mesa +1996-09-15,47.9505556,-124.3841667,Forks,WA,unknown,900,In 1996 I was at my daughters in forks washington. about 9 p.m. i steped outside to smoke, i was looking at the stars, it's usualy clou +1996-09-15,34.6277778,-86.2744444,Woodville,AL,triangle,180,Object had 4 white lights shining their beams behind it. They swept around to the front and it took off north. +1996-09-15,44.7502778,-75.1313889,Madrid,NY,other,120,slow moving row of 3 or 4 red window like lights following our road, above the telephone lines after dusk +1996-09-15,34.5438889,-85.3105556,Trion,GA,triangle,30,The craft was between earth and a full moon. +1997-09-15,29.7630556,-95.3630556,Houston,TX,disk,300,Beautiful silver-colored flying saucer about the size of a round 18 wheeler with turquoise lights around perimeter seen.clearly in ྜྷ. +1997-09-15,34.1511111,-118.4483333,Sherman Oaks,CA,cigar,15,Cigar shaped object in Sherman Oaks +1997-09-15,41.2122222,-80.4969444,Farrell,PA,disk,300,Low-flying, object prior to west to east moving severe storm on PA/OH border. +1997-09-15,33.8925,-80.5183333,Wedgefield,SC,triangle,900,Traingle or 3 separate crafts in triang. formation over AFB bombing range. +1997-09-15,41.6347222,-84.9994444,Angola,IN,circle,180,Tire shaped object sighted in the woods of indiana had no lights and moved with purpose. +1997-09-15,44.9430556,-123.0338889,Salem,OR,light,30,We saw a bright green object that looked like a comet or shooting star but it moved very slowly. +1997-09-15,47.6419444,-122.0791667,Sammamish,WA,unknown,30,I looked North toward Mt. Baker, I saw a bright light that hoovered for about 15 seconds, then shot up, then to my left, then disappear +1997-09-15,45.6647222,-93.9094444,Foley,MN,unknown,300,strange bright light fades away +1997-09-15,41.9483333,-71.9744444,Woodstock,CT,sphere,3,Bright, fast low flying object crossed field of view at close range during drive at night +1998-09-15,40.7608333,-111.8902778,Salt Lake City,UT,sphere,23,A solid Spherical object appears over one of the building and the Westminster College in Salt Lake City. +1998-09-15,40.7608333,-111.8902778,Salt Lake City,UT,sphere,3,UPDATE: Sept 15ᆒ sighting, MUFON report +1998-09-15,35.6527778,-97.4777778,Edmond,OK,cylinder,60,Crash site is known as Cherry Farm Edmond Oklahoma 1998 +1998-09-15,42.0969444,-79.2355556,Jamestown,NY,egg,120,sliver orb, seen flying with air force one +1998-09-15,47.6063889,-122.3308333,Seattle,WA,other,1,Angled orange light array traveling at stupendous speed across I5 Highway near Boeing Field in the evening. +1998-09-15,42.7633333,-78.31,Varysburg,NY,sphere,300,7 red orbs convene into silver orb in proximity of high tention power lines, orb travels se towards wethersfield wind farm. +1998-09-15,40.7141667,-74.0063889,New York City (Manhattan),NY,triangle,600,Object zig zagging east to west and stopping in distance turned out to be huge triangle with many lights when it flew directly overhead +1998-09-15,33.5777778,-101.8547222,Lubbock,TX,other,300,See-thru UFO's? +1998-09-15,34.1477778,-118.1436111,Pasadena,CA,fireball,20,I only submit this because of the increased number of sky sightings the past 10 days- what I saw was the largest shooting star [?] that +1998-09-15,41.7688889,-87.8577778,Hodgkins,IL,sphere,120,What I saw was purely unexpected, the sun had just set and I was sitting in my car when I noticed one plane being followed by what look +1998-09-15,37.4602778,-89.2469444,Anna,IL,light,10,I saw a light going across a field after dusk. It was to fast for a plane and it had no landing lights. +1998-09-15,41.3711111,-73.4144444,Bethel,CT,egg,180,In Sept. of 1998 at aprox. 10:00PM my wife, daughter and I came out our front door headed for our automobile to visit my wife's mother +1998-09-15,43.9808333,-84.4863889,Gladwin,MI,unknown,3600,My husband and I were sitting out on our back porch, facing west, watching what seemed to be lightening. It was like strobeing lights c +1998-09-15,28.0680556,-80.5605556,Melbourne Beach,FL,circle,10,What looked like a bright green ball entering the atmosphere. +1998-09-15,33.1191667,-117.0855556,Escondido,CA,changing,300,Neon orange dougnut shaped craft drops blue balls of lights +1998-09-15,58.3833333,-134.6597222,Auke Bay,AK,light,37800,A very bright light, small red glow on top. Off to the top left a blue/green ray of light. Every 30 seconds (Aprrox) two white lights +1998-09-15,47.1855556,-122.2916667,Puyallup,WA,fireball,5,A bluish/gree fireball (size of a large grape - with arm extended) and a long white tail trailing behind as it arched over the Puyallup +1998-09-15,58.3833333,-134.6597222,Auke Bay,AK,light,2400,A large red light between 400ft agl. and up,erratically moved in all directions and at varing speeds. A smaller green light departed fr +1999-09-15,33.4936111,-117.1475,Temecula,CA,sphere,600,I was working the night shift at a manufacturing plant when I went outside to take a break. It was around 1:00-1:30am and night visabil +1999-09-15,39.4666667,-87.4138889,Terre Haute,IN,triangle,90,Triangular shaped ship seen flying at low altitude across southern Terre Haute, Indiana +1999-09-15,43.9105556,-69.8211111,Bath,ME,triangle,120,Orange lights that changed to bright white +1999-09-15,43.5408333,-116.5625,Nampa,ID,unknown,45,Witnessed white contrail that appeared to go from level flight to straight down. Contrail actually indicated 90 degree turn S to W to +1999-09-15,34.0552778,-117.7513889,Pomona,CA,light,120,object was heading north toward mt.baldy,reversed course(on a dime)headed south traversed the sky.about a fist away from moon it zig za +1999-09-15,40.1211111,-90.5630556,Rushville,IL,fireball,20,orange light moving across sky and stops and exlpodes into a fireball and disappears +1999-09-15,36.5858333,-79.3952778,Danville,VA,unknown,300,unusual colored flashing strobe lights +1999-09-15,39.4352778,-84.2030556,Lebanon,OH,triangle,300,Ultra-slow totally silent low-flying huge dull black triangular body with evident 'cockpit.' +1999-09-15,40.1211111,-90.5630556,Rushville,IL,light,2700,4 orange lights luminating in sky and disappearing +1999-09-15,43.5408333,-116.5625,Nampa,ID,triangle,180,I witnessed a very large triangle moveing very slow heading northeast torward northern oregon. It had a white blinking light on each co +1999-09-15,45.2897222,-122.3325,Estacada (Near),OR,changing,7200,My friend, and I was riding late at night, and seen a bright light coming over the hill +1999-09-15,26.1272222,-80.2333333,Plantation,FL,triangle,30,We saw the stealth bomber fly over our house at night near Ft. Lauderdale, FL in the late 1990's +1999-09-15,33.7455556,-117.8669444,Santa Ana,CA,triangle,20,Five dark triangles in a "V" formation +1999-09-15,48.3725,-114.1805556,Columbia Falls,MT,disk,30,Bright object seen close up in Montana ྟ. +1999-09-15,42.0083333,-91.6438889,Cedar Rapids,IA,unknown,900,Looking west, at about 20-30 degrees up from the horizon, saw strange light that appeared to be moving very slowly or hovering. Lights +2000-09-15,41.6638889,-83.5552778,Toledo,OH,triangle,300,The object was triangle in shape and hovering above with no sound and black in color. +2000-09-15,40.0977778,-74.2180556,Lakewood,NJ,disk,120,Saucer craft altitude 50+ feet going at 10+mph passed over apartment building +2000-09-15,34.5022222,-97.9575,Duncan,OK,other,5,Close encounter of the third kind - small blue 'gray' type alien. +2000-09-15,47.4811111,-118.2533333,Harrington,WA,rectangle,900,Very slow moving huge black triangle shaped object, no sound, crosses in front of me. +2000-09-15,28.5388889,-80.6722222,Merritt Island,FL,triangle,120,i was sitting in the north bound turn lane on a red lite on rt 3 to go west on 528.and looked north north east just north of sea ray an +2000-09-15,34.2575,-88.7033333,Tupelo,MS,disk,30,Man & wife watching contrails witness silvery disc +2000-09-15,44.0522222,-123.0855556,Eugene,OR,other,20,Late Fall, 2000: Eugene OR Bowl / Cone Two-Part UFO Sighted in Broad Daylight +2000-09-15,27.1972222,-80.2530556,Stuart,FL,egg,120,Chrome shiny object moving north from Stuart, Florida. At first glance appeared to be the underside of a commercial airplane until 90 +2000-09-15,46.8852778,-103.1991667,Belfield,ND,disk,900,first I see a bright light appearing like a very bright star, it starts to waver, which called my attention to it, +2000-09-15,41.5425,-87.6022222,Glenwood,IL,triangle,300,Triangular object with very bright lights hovers over suburb, then vanishes. +2000-09-15,48.0841667,-121.9675,Granite Falls (23 Miles East Of),WA,unknown,180,Row of 5-6 white or off white lights @ ~3귔 feet 2-4 miles from my position moving silently & slowly West to East. +2000-09-15,34.1486111,-118.3955556,Studio City,CA,light,300,Satellite looking object seen at sunset changes direction twice. +2000-09-15,42.3086111,-83.4822222,Canton,MI,disk,300,Low, fast flying discs spotted on busy main street. +2000-09-15,34.9672222,-94.7244444,Wister,OK,triangle,30,Observed a dark colored, unlighted triangular object apparently following a turboprop commuter airplane. +2000-09-15,40.6175,-91.2877778,Niota,IL,flash,5,flashes of light boggle a crowd's minds +2000-09-15,37.8716667,-122.2716667,Berkeley,CA,disk,300,While looking from Berkeley west over the Pacific Ocean just after sunset, an orange light was seen about 5 degreees above the horizon. +2000-09-15,31.4588889,-85.6405556,Ozark,AL,light,15,ETV's (Extra Terrestrial Vehicle) sighting +2000-09-15,39.0991667,-76.8486111,Laurel,MD,circle,30,Bright light suddenly shrinking to small and going out. +2000-09-15,41.965,-80.4075,East Springfield,PA,light,15,growing then shrinking light over lake erieᅄ miles west of erie,pa. +2000-09-15,32.8633333,-108.2208333,Pinos Altos,NM,circle,60,An orange ball of light moved out from behind a far off cliff - stopped and stayed in one place for about a minute (my feeling was that +2000-09-15,43.4666667,-112.0333333,Idaho Falls,ID,chevron,180,Fast, low flying, Boomerang, no sound! +2000-09-15,45.6388889,-122.6602778,Vancouver,WA,light,600,Twinkling color changing lights seen from Vancouver Washington. +2001-09-15,43.0944444,-79.0569444,Niagara Falls,NY,teardrop,30,Teardrop-glowing ever so slightly +2001-09-15,43.1186111,-83.695,Mt. Morris,MI,circle,30,The object was bright glowing flourescent green ball +2001-09-15,33.9411111,-84.2136111,Norcross,GA,light,30,2 starlike objects approximatly a football field apart circles over Norcross,Georgia +2001-09-15,45.8527778,-87.0216667,Gladstone,MI,light,12,Three ufos performing maneuvers over Gladstone Michigan. +2001-09-15,43.5391667,-89.4625,Portage,WI,other,60,Observed two yellowish spheres interconnected with unvisible bonds moving very low accross the skies without any noice or sound +2001-09-15,42.7325,-84.5555556,Lansing,MI,sphere,60,bright star in the sky over lansing at the noon hour +2001-09-15,47.6063889,-122.3308333,Seattle,WA,circle,600,Four circular objects over Seattle. +2001-09-15,35.7719444,-78.6388889,Raleigh,NC,light,10,Cross shaped orange & green lights moving at incredible speed. +2001-09-15,40.4166667,-86.8752778,Lafayette,IN,unknown,60,UFO on Hwy 52 +2001-09-15,40.4166667,-86.8752778,Lafayette (10 Miles N Of),IN,other,120,Transparent dome with red light in middle, and flashing red lights underneath RIGHT next to the highway. +2001-09-15,47.6063889,-122.3308333,Seattle,WA,light,3600,Non-mobile red white and blue steadily flashing light at 40 degrees in the west sky +2001-09-15,64.5638889,-149.0930556,Nenana,AK,fireball,1,Streaking, glowing object bursts into bright green fireball and disappears +2002-09-15,26.625,-81.625,Lehigh Acres,FL,flash,5,Large Blue Flash with radio outage. +2002-09-15,35.2269444,-80.8433333,Charlotte,NC,cone,120,230 am 0n sept 15 2002 my friends and I WERE ON LAKE WYLIE fishing. WE were startled as two cone shaped objects passed oveerhead at obl +2002-09-15,42.9075,-71.7669444,Lyndeborough,NH,disk,600,Around 8:30 i noticed a ball of light moving diagnally and then hovering above the tree line +2002-09-15,42.2711111,-89.0938889,Rockford,IL,disk,120,there were 4 of them and when the last one connected with the third one they looked just like the leader . +2002-09-15,38.7041667,-77.2280556,Lorton,VA,disk,120,I wish I had known about this reproting system sooner, so that the explanation I am about to give would be fresher in my mind. Neverthe +2002-09-15,41.85,-87.65,Chicago,IL,oval,3600,2 shapes appearing to be round hovering in the western sky. They had red and green lights and were moving up and down, left and right l +2002-09-15,39.1141667,-94.6272222,Kansas City,KS,triangle,900,Triangle UFO hovering over Kansas City +2002-09-15,37.1222222,-76.3461111,Poquoson,VA,disk,120,UFO sighting in Poquoson VA. +2002-09-15,41.3113889,-105.5905556,Laramie,WY,sphere,7200,2 oval lights in sky northeast of town. flying around, hovering, steadily growing dimmer. +2002-09-15,41.4827778,-87.3327778,Merrillville,IN,other,300,Night time sighting of a dim, bird shaped, pulsating craft, followed by a bright light performing ariel acrobatics. +2002-09-15,41.85,-87.65,Chicago,IL,formation,7,Two strange light formations flying over Chicago at night. +2002-09-15,36.175,-115.1363889,Las Vegas,NV,circle,1,I was outside smoking observing the stars, haven't seen stars this clear for a while when I noticed a red with yellow and white object +2003-09-15,39.9611111,-82.9988889,Columbus,OH,other,600,Large black cube shaped UFO spotted; Columbus, OH. Time seemed to stop! +2003-09-15,40.8,-96.6666667,Lincoln (West Of),NE,unknown,5,Blue disk appears to explode shooting blue light toward ground. +2003-09-15,46.6808333,-92.8838889,Cromwell,MN,light,300,Cromwell, Minnesota.... Deer Hunting Opening Day....Carlton County Movings Lights +2003-09-15,34.0022222,-95.0936111,Valliant,OK,other,360,At Valiant OK, on 09/15/2003, in the late morning I saw an oddly bright light, then it fade out. +2003-09-15,34.010555600000004,-95.5094444,Hugo,OK,cylinder,600,Sighting of large bright silver orb-like craft followed by sighting of 2 cylinder silent craft. +2003-09-15,34.0583333,-106.8908333,Socorro (Outside Of),NM,rectangle,120,Silent flying rectangle with lit windows at dusk close to the ground out in the desert flying in the direction of White Sands +2003-09-15,40.8216667,-74.4813889,Morris Plains,NJ,formation,2400,Four sets of four circular, white globes, in "infinity" +2003-09-15,32.6975,-113.9527778,Tacna,AZ,light,5100,I am a TRUCK DRIVER ( HAY HAULER ) .. I had just got loaded with hay in Tacna and ingressed onto the freeway ( INTERSTATE 8 ) and inst +2003-09-15,32.4366667,-111.2247222,Marana,AZ,light,1800,More Orbs in Pinal AZ +2003-09-15,34.0269444,-78.6380556,Pireway,NC,light,10,One orange light divides into two +2003-09-15,37.9341667,-122.5341667,Larkspur,CA,circle,45,Object seen in the eastern sky that was originally slightly smaller but with a planetary brightness which travelled up and away and dim +2003-09-15,33.8158333,-78.6802778,North Myrtle Beach,SC,light,2400,Between the hours of 20:00 adn 21:00 on 9/15/2003, looking out over the ocean. We saw one round light splint into two then disappear. T +2003-09-15,36.7097222,-81.9775,Abingdon,VA,circle,1800,a large, perfectly round light, much larger and brighter than any star +2003-09-15,41.3327778,-79.3558333,Snydersburg,PA,triangle,300,flying triangular ufo with shiny bright orb escort +2003-09-15,35.2147222,-80.0025,Mount Gilead,NC,unknown,720,Craft with light too low and too quiet for a plane and too often to ignore anymore. +2003-09-15,30.2263889,-93.2172222,Lake Charles,LA,disk,10,Disc seen with circular whiteish outter edge +2003-09-15,39.7391667,-104.9841667,Denver,CO,formation,2,The formation can best be described as being in the shape of a "snake" +2003-09-15,41.55,-71.4666667,North Kingstown,RI,formation,5,I watch for satelites and this night I saw what appeared to be 3 flying in an irregular triangle formation in the Northeast sky at abou +2003-09-15,39.4808333,-84.4577778,Trenton,OH,fireball,0.7,A large,green,flare like or meteor like object. +2003-09-15,43.0125,-83.6875,Flint,MI,oval,10,oval shaped object with faint light haze all around it. +2004-09-15,39.0911111,-94.4152778,Independence,MO,triangle,600,Observed triangular object moving over house. +2004-09-15,48.2325,-101.2958333,Minot,ND,other,120,An amber colored, tylenol shaped something above our house in North Dakota. +2004-09-15,38.005,-121.8047222,Antioch,CA,disk,300,Three metallic looking objects found in sky over Antioch on morning of 9/15/04. +2004-09-15,35.2269444,-80.8433333,Charlotte,NC,rectangle,10,Large Rectangle UFO floating over north Charlotte, NC +2004-09-15,40.8022222,-124.1625,Eureka,CA,triangle,600,The movement of the craft did not seem forced. Drifiting opposed to flying>>>> +2004-09-15,35.4675,-97.5161111,Oklahoma City,OK,light,10,Group of 15 to 20 lights flying North to South +2004-09-15,41.2375,-80.8186111,Warren,OH,rectangle,600,photo attached +2004-09-15,31.4675,-97.1144444,Robinson,TX,circle,180,Near Waco Texas, Several objects were observed at extremely high altitudes and at high rates of speeds +2004-09-15,36.6777778,-121.6544444,Salinas,CA,light,300,moving object acossed central california +2004-09-15,33.6888889,-78.8869444,Myrtle Beach,SC,unknown,10,4 Lights appeared in myrtle beach. +2004-09-15,41.2586111,-95.9375,Omaha,NE,sphere,12,((NUFORC Note: Possible satellites?? PD)) A star like object that grew bright white and or Amber. +2004-09-15,31.1238889,-97.9027778,Copperas Cove,TX,cigar,300,UFO Observance, 15 SEP 04, South Southwest of Copperas Cove, Texas +2004-09-15,34.1063889,-117.5922222,Rancho Cucamonga,CA,fireball,3,Unusual object dropped from airplane, lit up half of the sky. +2004-09-15,46.9105556,-98.7080556,Jamestown,ND,triangle,2700,Rotating triangular lights fly overhead, stops and hovers in sky for 30 min before taking off at extremely high speeds. +2004-09-15,29.6513889,-82.325,Gainesville,FL,light,480,Stationary piercing bright light over Hunter's Crossing Publix drifted over Devil's Millhopper. +2004-09-15,44.1002778,-70.2152778,Lewiston,ME,triangle,300,September 15ᄴ in Lewiston Maine, a triangular lit up object slowly moves over my back lawn +2004-09-16,45.3247222,-118.0866667,La Grande (Morgan Lake),OR,changing,2,This sounds like i'ntl space station descriptions, this was not. I am standing outside my vehicle at morgan lake 5mi. outside la Grande +2005-09-15,47.2530556,-122.4430556,Tacoma,WA,oval,600,Bright lights fading in and out, one after another. Then moving accross sky and stopping. +2005-09-15,39.8963889,-82.4202778,Thornville,OH,oval,10,an oval ship appeared in the northwest sky up about 60 degrees that was traveling west on edge , bottom to the south. it then disappear +2005-09-15,36.0988889,-78.3013889,Louisburg,NC,triangle,900,There was a black triangle object with three glowing disk beneath the craft hovering in the eastern sky as the sun was setting, pausing +2005-09-15,38.9783333,-76.4925,Annapolis,MD,disk,4,UFO SIGHTED IN ANNAPOLIS OVER WEST ST. +2005-09-15,42.8863889,-78.8786111,Buffalo,NY,oval,180,silent soft green shimmering craft +2005-09-15,33.9608333,-83.3780556,Athens,GA,disk,60,I was sitting in my car with the sun roof open, waiting for my wife. As I was waiting I was looking at the cloud formations because th +2005-09-15,39.1433333,-77.2016667,Gaithersburg,MD,other,25,In parking lot walking to store, happened to look up and see black object cross from west to east and was turning point to point (sidew +2005-09-15,34.0480556,-118.5255556,Pacific Palisades (L.a.),CA,triangle,60,Triangular flying vessel studded with green lights performing amazing maneuvers over Pacific Coast Hwy. +2005-09-15,44.5722222,-91.2272222,Osseo,WI,circle,5,There were 2 yellow globes in the sky close to each other-when we noticed them first 1 blinked out-then the other blinked out. Drove do +2005-09-15,33.3061111,-111.8405556,Chandler,AZ,circle,1200,Response to orange balls of light seen: I've seen them since 2004 +2005-09-15,43.5277778,-71.4708333,Laconia,NH,light,600,Huge formation of blinking lights over lake +2005-09-15,33.8158333,-78.6802778,North Myrtle Beach,SC,light,2700,Peculiar lights in the sky +2005-09-15,30.3152778,-93.6616667,Starks,LA,fireball,7,fireballs intersecting +2005-09-15,40.7161111,-73.8505556,Forest Hills,NY,changing,120,2 handglider sized birds/crafts? with transparent wings over Queens blvd. and 67th Ave.Waved wings,flew around each other and seemed to +2006-09-15,35.0455556,-85.3097222,Chattanooga,TN,oval,1200,Oval-shaped, lighted craft seen in southern Tennessee +2006-09-15,24.7133333,-81.0905556,Marathon,FL,cigar,5,4 faintly mini-carrot shaped orange colored objects streaked across the sky weaving in and out of each other. +2006-09-15,26.0783333,-97.8491667,Santa Maria,TX,circle,2700,Bright object seen hovering over sugar cane field near Rio Grande River. +2006-09-15,42.3313889,-83.0458333,Detroit,MI,sphere,300,Spherical type craft seen over Detroit river between the cities of Detroit and Windsor, disappears into small black rain cloud. +2006-09-15,46.8605556,-68.0125,Caribou,ME,sphere,900,Pulsating blue softball size lights in yard. +2006-09-15,41.8875,-88.3052778,Geneva,IL,unknown,600,3 large amber colored lights hovering motionless in the sky. +2006-09-15,34.4838889,-114.3216667,Lake Havasu City,AZ,rectangle,40,A large, low flying object flew over our heads in complete silence. +2006-09-15,37.7741667,-87.1133333,Owensboro,KY,light,1200,Series of white and blinking colored lights flying around the sky. +2006-09-15,38.545,-121.7394444,Davis,CA,light,120,Saw two stationary orange lights in the sky, high in the sky, and nearby each other. +2006-09-15,33.5955556,-98.6252778,Archer City,TX,triangle,3,Four speeding lights streak across Archer County, Texas +2006-09-15,40.8852778,-73.3766667,Centerport,NY,light,900,Bright orange lit object rose vertically from Bay and took off at lightening speed. +2007-09-15,36.175,-115.1363889,Las Vegas,NV,light,900,My daughter and I saw a small light flying on the corner of the roof of the Wynn Hotel. +2007-09-15,47.6447222,-122.6936111,Silverdale,WA,diamond,20,Diamond shaped white and red lights over Bangor, WA. +2007-09-15,26.6155556,-80.0572222,Lake Worth,FL,light,37800,Traveling Bright point of light . +2007-09-15,38.8002778,-90.6263889,St. Peters,MO,other,900,3 shiny objects at high altitude. ((NUFORC Note: Sighting by former Air Traffic Controller. PD)) +2007-09-15,47.6397222,-122.8272222,Seabeck,WA,light,900,colored lights rotate around in a orb, way brighter then a star. ((NUFORC Note: Sighting of Sirius?? PD)) +2007-09-15,39.4141667,-77.4108333,Frederick,MD,sphere,1200,It was a clear crisp day and there was something white in the sky. ((NUFORC Note: Student report. No date indicated. PD)) +2007-09-15,43.2166667,-123.3405556,Roseburg,OR,sphere,20,Silvery sphere observed flying in a non-linear path; I'm convinced it was a UFO. +2007-09-15,36.9333333,-82.6291667,Norton,VA,disk,180,Disk shaped pinkish purple object high in the sky made no sound seen through camera screen. Photographed. +2007-09-15,44.0247222,-88.5425,Oshkosh,WI,disk,2,Object hovered for a few seconds, and then disappeared in to Lake Winnebago. +2007-09-15,34.4358333,-119.8266667,Goleta,CA,cigar,900,While photographing a strange-looking oblong cloud a slice appeared to be pushed ou +2007-09-15,41.4802778,-71.5230556,Kingston,RI,fireball,120,Pinkish Red Fireball Flash Sighting. ((NUFORC Note: Student report. PD)) +2007-09-15,37.2152778,-93.2980556,Springfield,MO,triangle,7200,Weird bright light over Springfield Missouri +2007-09-15,38.676944399999996,-86.9141667,Loogootee,IN,fireball,300,Orange fireball in western sky +2007-09-15,44.6366667,-123.1047222,Albany,OR,formation,2,Red & orange brightly lit object glides by home seen through window +2007-09-15,41.3711111,-73.4144444,Bethel,CT,light,30,two stars rotating 180 degrees and spliting apart +2007-09-15,27.9769444,-82.8280556,Clearwater Beach,FL,unknown,1800,Extremely stealthy aircrafts, like helicopters, fly over Gulf of Mexico and Clearwater Beach, Florida +2007-09-15,39.8397222,-74.1905556,Forked River,NJ,triangle,600,2 Triangle shaped objects hovering in pine Barrens on Lacey Road Forked river NJ +2008-09-15,48.88,-115.0525,Eureka,MT,triangle,3600,I am missing one hour of time. 500 Lights On Object0: Yes +2008-09-15,29.4238889,-98.4933333,San Antonio,TX,triangle,300,San Antonio, TX. September 2008 - 3 Witnesses - Triangular Formation in the sky. +2008-09-15,39.4922222,-80.9038889,Middlebourne,WV,formation,420,3-4 very large dirt brown animal-like objects floating along side clouds +2008-09-15,33.3941667,-104.5225,Roswell,NM,changing,2700,bright blue illuminating object above the buildings hanging out in the sky changed shapes and colors +2008-09-15,41.8994444,-87.9402778,Elmhurst,IL,fireball,180,Fireball object (2 of them) heading west to east at steady rate of speed. No sound emitted from the craft. Another followed behind. +2008-09-15,26.1219444,-80.1436111,Fort Lauderdale,FL,disk,120,3 UFOs seen around Fort Lauderdale, Florida, USA. +2008-09-15,28.0833333,-80.6083333,Melbourne,FL,triangle,120,Triangle Shaped Craft +2008-09-15,36.8527778,-75.9783333,Virginia Beach,VA,fireball,1200,((SERIOUS REPORT??)) We saw a strange light in the sky; saw two strange looking men in a grocery store, one of which, I spoke with. +2009-09-15,29.7630556,-95.3630556,Houston,TX,oval,120,Oval shaped object, huge and very, very bright approx. 100 yards in front of my car. +2009-09-15,34.4838889,-114.3216667,Lake Havasu City,AZ,light,12,Two bright verticle blue neon lights appeared the in sky flashed, then disappeared. +2009-09-15,38.6858333,-121.0811111,El Dorado Hills,CA,unknown,585,looks like a blinking star with white, red, blue lights , appears and disappears. ((NUFORC Note: Possible sighting of Sirius? PD)) +2009-09-15,30.4211111,-87.2169444,Pensacola,FL,sphere,60,Large Red Glowing Ball Diagonal descent from sky +2009-09-15,45.9933333,-123.9213889,Seaside,OR,light,5400,Slow moving, multi-colored and unexplainable by me, a longtime resident. ((NUFORC Note: Possible star? PD)) +2009-09-15,41.7858333,-76.7883333,Troy,PA,light,180,Orange light traveling westerly then turning south and up increasing speed over Troy Pa. +2009-09-15,32.7938889,-79.8627778,Mount Pleasant,SC,formation,30,Half Arrow shaped string of white, christmas like, and barely flashing/flaring lights. About 6 n the main line and 3 on the half arrow +2009-09-15,30.3155556,-89.2475,Pass Christian,MS,sphere,3600,Stationary orange lights appear then fade away after a few seconds off MS Gulf Coast. +2009-09-15,33.8941667,-78.4269444,Ocean Isle Beach,NC,light,900,Strange lights over Ocean Isle Beach, NC. +2009-09-15,32.4708333,-85.0008333,Phenix City,AL,unknown,2,Extremely fast light in low sky. +2009-09-15,47.7180556,-116.9505556,Post Falls,ID,light,300,Unkn object following aircraft +2009-09-15,28.0341667,-80.5888889,Palm Bay,FL,light,300,Two green lights were witnessed by myself and my coworker in Palm Bay, Florida on September 15, 2009. +2009-09-15,33.8805556,-78.5125,Sunset Beach,NC,light,1200,Mysterious Lights witnessed over Sunset Beach, NC +2009-09-15,47.4830556,-122.2158333,Renton,WA,sphere,45,Two brown spherical objects rotating around each other +2009-09-15,40.6411111,-124.2241667,Loleta,CA,light,1200,Bright white light flickering red and green over the pacific ocean. ((NUFORC Note: Possible sighting of twinkling star? PD)) +2010-09-15,39.1405556,-121.6158333,Yuba City,CA,chevron,30,Boomeranged/stealth bomber shape, silent, no lights or sound, massive size +2010-09-15,34.09,-117.8894444,Covina,CA,other,480,flashing light red and white in H shaped, but no green light like aircraft +2010-09-15,39.5213889,-85.7769444,Shelbyville,IN,sphere,15,Very high, quick, "ball" traveling north to south +2010-09-15,33.8158333,-78.6802778,North Myrtle Beach,SC,circle,120,same as before I was out on the balcony of our hotel and there was a circle over the ocean that just sat there for I don't know ho much +2010-09-15,40.8688889,-72.5180556,Hampton Bays,NY,triangle,10,A triangular UFO with three red unblinking lights flew directly over us from north to south at a steady, slow speed. +2010-09-15,33.2447222,-81.3588889,Barnwell,SC,other,30,Odd air craft that had some sort of rope with a round thing on fire! (fire was red with some purple!) See flying one way! +2010-09-15,42.1816667,-87.8002778,Highland Park,IL,light,15,Bright light seen in the North heading south then to vanish in a red color. +2010-09-15,36.0725,-79.7922222,Greensboro,NC,light,180,Bright light +2010-09-15,33.7838889,-116.9577778,San Jacinto,CA,circle,20,Two large white balls coming out of the east made a sharpe left heading south. Moving very fast. Apron. Seven thousand feet. Talk to me +2010-09-15,35.1097222,-79.4725,Pinebluff,NC,other,180,Solid white light viewed from Pinebluff, NC +2010-09-15,41.6602778,-71.4563889,East Greenwich,RI,triangle,60,Three bright white lights in a triangular shape - with a red pulsing light at the rear moving over highway - LOW +2010-09-15,38.6366667,-90.0255556,Caseyville,IL,circle,5,Golden - yellow, half dark ball moved across sky and turned into an orange flash in Caseyville, IL on 9-15 +2011-09-15,44.8408333,-93.2980556,Bloomington,MN,sphere,5,Bright sphere sitting still in sky, after 3 seconds it moved impossibly fast vertically, down behind horizon. +2011-09-15,34.9594444,-96.7525,Konawa,OK,disk,1200,Object over konawa +2011-09-15,39.6836111,-75.75,Newark,DE,disk,600,Strange cloud changed shapes and became a saucer. +2011-09-15,39.9355556,-91.4097222,Quincy,IL,light,900,We stopped by the park by near the river eating arby,s and we noticed that one star was out just one then we noticed it wasnt a star it +2011-09-15,35.7913889,-78.7813889,Cary,NC,formation,20,Oval light changing from green to blue with red pinpoint of light in the middle. +2011-09-15,36.2083333,-115.9830556,Pahrump,NV,flash,10,SECOND EVENT IN TWO NIGHTS THIRTY MINUTES APART. MORE DRAMATIC SAME COLOR OF GREEN WHIT LIGHT OVER PAHRUMP, NV. +2011-09-15,39.6236111,-89.6488889,Glenarm,IL,changing,10,For the past few weeks I have observed a star in the sky that appeared to be changing colors. ((NUFORC Note: Sirius. PD)) +2011-09-15,39.6236111,-89.6488889,Glenarm,IL,changing,10,Shape changing star explodes into a beautiful rainbow, and returns to original shape +2011-09-15,33.3061111,-111.8405556,Chandler,AZ,light,30,Bright Red Light in Sky in Southeast Phoenix Area +2011-09-15,33.6411111,-117.9177778,Costa Mesa,CA,light,20,Lights over Costa Mesa 9.15.11 +2011-09-15,22.1452778,-159.3155556,Anahola,HI,flash,60,Flashing Lights with different colors for 2 minutes like an air fight. +2011-09-15,39.2088889,-76.0669444,Chestertown,MD,flash,7200,Every 10 seconds flashing green light +2011-09-15,41.4088889,-75.6627778,Scranton,PA,light,60,A BRIGHT GREEN LIGHT FLY BY MY HOUSE VERY FAST +2012-09-15,44.2811111,-69.0091667,Lincolnville,ME,rectangle,1800,Awakened to a bright beam of light coming through the ceiling skylight focused on the wall beside my head. +2012-09-15,33.9236111,-84.8408333,Dallas,GA,triangle,300,3 BRIGHT VIBRANT ORANGE TRIANGULAR OR DIAMOND SHAPED CRAFT CAME IN LIKE JETS, BUT SILENTLY AND THEN HOVERED SLOWLY BEFORE DISSAPPEARING +2012-09-15,42.3266667,-122.8744444,Medford,OR,other,1800,UFO Landing in Medford, OR. +2012-09-15,26.6402778,-81.8725,Ft. Myers,FL,changing,1200,9/15/12, 4:00 Two round pulsating lights, changing colors, and shape seen over Ft Myers, Florida in south eastern sky. ((Planets?? PD)) +2012-09-15,40.5127778,-76.1047222,Shartlesville,PA,light,10,Fast, erratic moving red ball of light between Bernville and Shartlesville, PA +2012-09-15,34.7302778,-86.5861111,Huntsville,AL,light,600,Amber light with circumference of light around it also. It moved fast,stopped, then bobbed before moving north. +2012-09-15,38.8338889,-104.8208333,Colorado Springs,CO,light,3600,Red and white Lights UFO over Colorado Springs CO +2012-09-15,42.3086111,-83.4822222,Canton,MI,unknown,120,09/15/12 8:15 PM Canton MI one red light on each/no rear light/12 to 15 of them/some in formation others flying about by themselves +2012-09-15,43.5780556,-70.3222222,Scarborough,ME,oval,600,Over thirty orange silent lights all grouped and traveling east at the same speed. +2012-09-15,33.4483333,-112.0733333,Phoenix,AZ,disk,2400,ON 9/15/12 IN THE EARLY MORNING BETWEEN 3:30 AND 4:00 I OBSERVED A SAUCER SHAPED SET OF RED, GREEN, AND WHITE LIGHT SIMUTANEOUSLY FLASH +2012-09-15,34.1425,-118.2541667,Glendale,CA,disk,180,UFO Sighting at Scholl Canyon, Glendale, CA +2012-09-15,44.2152778,-75.7975,Theresa,NY,cigar,30,The only thing I could think of is that it looks like a missile. ((NUFORC Note: Report from aircraft mechanic. PD)) +2012-09-15,43.0116667,-88.2313889,Waukesha,WI,fireball,45,It was looked like flare flying through the sky, it shifted directions and continue on. It was flying about the same speed at a small a +2012-09-15,42.3086111,-83.4822222,Canton,MI,light,300,Line of Lights over Canton, MI +2012-09-15,40.6936111,-89.5888889,Peoria,IL,triangle,300,Two sets of flickering orange lights in triangular form (6 lights total) seen over Rt 6 between Peoria and Chillicothe, IL, 9/15/12 +2012-09-15,42.9802778,-88.6311111,Rome,WI,light,120,Bright red/orange ball of light moving across the night sky. +2012-09-15,34.1138889,-83.4316667,Nicholson,GA,unknown,15,Strange craft sighted. +2012-09-15,26.2708333,-80.2708333,Coral Springs,FL,triangle,15,I was crossing a corner on a street at night and I looked to the right and I see a unidentifiable flying object about cloud high. I saw +2012-09-15,26.1719444,-80.1322222,Oakland Park,FL,fireball,120,6 Fire Balls falling in close formation then breaking apart and hovering +2012-09-15,26.0625,-80.2333333,Davie,FL,changing,60,Golden light/ fireball splits into 4 objects ,then changes formation while changing directions and changing rate of descent +2012-09-15,45.7833333,-108.5,Billings,MT,unknown,240,2 red lights moving NE to SW silently +2012-09-15,41.4030556,-72.4513889,Chester,CT,circle,600,Ten to twelve orange circles flying in formation southerly over Chester, Connecticut. +2012-09-15,42.6727778,-88.5444444,Elkhorn,WI,light,600,4 orange colored objects, low to the ground, flew west to east over sunset park. each one was spaced about a minute apart. +2012-09-15,43.6122222,-116.3905556,Meridian,ID,egg,1200,A fluxuating flaming orb moving across the sky. +2012-09-15,40.6936111,-89.5888889,Peoria,IL,circle,120,Round, bright red lighted objects of 10 or so, very quiet, flying south to north over Peoria, Illinois on 9/15/2012. +2012-09-15,41.7858333,-88.1472222,Naperville,IL,light,1290,Multiple orb shaped lights in the sky traveling over Naperville. +2012-09-15,42.2916667,-85.5872222,Kalamazoo,MI,fireball,20,Reddish-orange fireball +2012-09-15,45.3680556,-113.4080556,Jackson,MT,oval,5,Spacecraft entering Earth’s atmosphere. +2012-09-15,41.4541667,-70.6041667,Vineyard Haven,MA,sphere,1200,Round orange spheres… +2012-09-15,34.2997222,-79.8763889,Darlington,SC,circle,3600,A circle, or orb, of bright flashing multi-colored lights, hovering in one place.. +2012-09-15,39.8341667,-96.0638889,Seneca,KS,fireball,600,Orange Fireball in the sky +2012-09-15,41.85,-87.65,Chicago,IL,light,300,Dancing Orbs +2012-09-15,37.4852778,-122.2352778,Redwood City,CA,light,1800,Red Light in the sky 09/15/2012-09/16/2012 +2012-09-16,39.1616667,-84.7491667,Cleves,OH,triangle,30,((HOAX??)Saw somethimg coming at me it hovered over my house look like a christas tree green red white lightssouds like chopper behind. +2013-09-15,45.6388889,-122.6602778,Vancouver,WA,triangle,300,North to south trajectory. Fireball orange in relatively straight line. One went over without sound very bright when seen in the north +2013-09-15,34.0238889,-118.1711111,East Los Angeles,CA,circle,5400,A circular object hovering in the sky for 1-2 hours with red, green, and white flashing lights not going in any type of direction. +2013-09-15,44.2811111,-69.0091667,Lincolnville,ME,triangle,1800,Awakened in the middle of the night by a bright, focused light by my head coming through the skylight. +2013-09-15,25.7738889,-80.1938889,Miami,FL,fireball,120,3 FIRE BALL FLOATING HI IN THE SKY GOING IN THE DIRECTION OF THE WIND +2013-09-15,33.4147222,-111.9086111,Tempe,AZ,sphere,600,Strange red-orange spherical objects travelling in single file formation in the night sky. +2013-09-15,40.7616667,-73.3297222,Deer Park,NY,light,300,3 flying flashing objects in triangle formation. +2013-09-15,40.6883333,-75.2211111,Easton,PA,formation,900,Floating small red lights. +2013-09-15,36.4991667,-80.6075,Mt. Airy,NC,light,2400,Extremely large star/cross like light over NW North Carolina. +2013-09-15,43.1116667,-88.4991667,Oconomowoc,WI,light,8,Light descends and makes a sharp left turn +2013-09-15,41.7141667,-72.6530556,Wethersfield,CT,fireball,60,3 Flaming Balls over Wethersfield CT +2013-09-15,39.8494444,-75.3561111,West Chester,PA,oval,120,5 flame colored orbs flying in formation then fading into the night. +2013-09-15,34.2977778,-83.8241667,Gainesville,GA,formation,600,16 orange lights in shape of butterfly +2013-09-15,41.5822222,-85.8344444,Goshen,IN,rectangle,120,Couple sees slow-moving, large, rectangular object in the night sky as it flies directly over them. +2013-09-15,30.2913889,-90.4019444,Manchac,LA,unknown,1500,Blinding hovering light on the manchac bridge, and it wasn't a helicopter. +2013-09-15,32.7763889,-79.9311111,Charleston (South),SC,triangle,6,Hovering craft, completely silent. +1966-09-16,41.85,-87.65,Chicago,IL,cigar,600,Chicago 1966 sighting when no aircraft were flying. +1973-09-16,42.0152778,-94.3772222,Jefferson,IA,oval,14400,My friend and i saw an oval object and the next thing i knew four hours had passed. +1984-09-16,40.8452778,-73.3355556,Elwood,NY,chevron,1800,Cheveron shaped ojects in V shape formation; daytime sighting, silent moving +1987-09-16,47.6588889,-117.425,Spokane,WA,disk,240,saucer overhead,hover 150 feet,no noise,within 100 yds,amber lights around edge one on top, viewed with 7-21 pwr binoculars,started rot +1994-09-16,47.08,-122.0502778,Carbonado,WA,changing,1800,IT CAME DOWN THE HILL AND INTO THE ROAD ORANGE-YELLOW BIG AS A HOUSE 50YDS AWAY +1994-09-16,47.08,-122.0502778,Carbonado,WA,oval,3600,IT STOPPED IN THE ROAD AHEAD SO CLOSE I COULD HAVE HIT IT WITH A ROCK +1995-09-16,45.3,-122.7725,Wilsonville,OR,light,180,Bright lights from miles away to within 150 yds and 300 ft in the air. +1996-09-16,42.4602778,-71.3494444,Concord,MA,oval,180,Large craft seen hovering over trees along Route 2 in Massachusetts. +1997-09-16,41.2280556,-72.9919444,Woodmont,CT,disk,1200,Blizzard,my Siberian Husky , and I were walking along Anchor Beach in woodmont Connecticut , enjoying the view of the oysterboat workin +1997-09-16,44.98,-93.2636111,Minneapolis,MN,other,120,Morphing Triangle +1998-09-16,32.7152778,-117.1563889,San Diego (Point Loma/Ocean Beach Area),CA,light,900,As two copters were approaching airport from the West, (along I-5) the light shrunk X2 & rapidly descended into the cover of a Star Pin +1999-09-16,30.3494444,-97.37,Elgin,TX,disk,300,A ROUND DISK TYPE OBJECT, WHITE(LIGHT) IN COLOR WITH WHITE & ORANGE LIGHTS SURRONDING PERIMETER ABOUT 100 METERS ABOVE AND HOVERING. +1999-09-16,44.8755556,-91.9191667,Menomonie,WI,egg,1800,post script to Leader Telegram article reporting strange object in sky witnessed by 3 people. +1999-09-16,44.8755556,-91.9191667,Menomonie,WI,circle,5,Woman taking break from work sees a ball of light change color and then shoot off out of her sight. +2000-09-16,40.8663889,-73.0361111,Selden,NY,circle,3600,hello 1) 5 lights 2) circle then converge in middle almost touching then go back and recircle i saw it for about 30 min. my sistersaw i +2000-09-16,43.6613889,-70.2558333,Portland,ME,unknown,10800,implanted piece in hand. +2000-09-16,39.4561111,-77.9641667,Martinsburg,WV,triangle,120,A triangular metalic UFO exhibiting no vapor trail was spotted in the vicinity of two commercial aircraft. +2000-09-16,40.7141667,-74.0063889,New York City (Manahattan),NY,formation,600,Unidetified cluster of objects moving over Manahattan +2000-09-16,37.775,-122.4183333,San Francisco,CA,sphere,1800,Major sighting over SanFranciso Ca. on 9-16-00. Object was seen for up to 30 mintues high up over south downtown SF.Bright shiny object +2000-09-16,41.1305556,-85.1288889,Fort Wayne,IN,cigar,15,Dark gray colored object with two big circles on the side +2000-09-16,39.7458333,-75.5469444,Wilmington,DE,triangle,360,Seen in the sky by Mother daugther and 3 grandkids was a very strange thing. It was triangle in shape. In each corner there was a brig +2000-09-16,35.1677778,-114.5722222,Laughlin,NV,formation,60,8 to 9 individual craft in a chevron formation that broke briefly into 2 individual rotating circles then reverted back to the chevron. +2000-09-16,37.7741667,-87.1133333,Owensboro,KY,circle,120,fast moving red light +2001-09-16,37.0297222,-76.3455556,Hampton,VA,rectangle,90,At approximately 3:30am on the morning of Sunday, Sep 17, 2001, I was looking towards in the direction of the moon (in it's last phase) +2001-09-16,40.6975,-74.2636111,Union,NJ,sphere,600,crystal clear blue sky background. no other objects in the sky. Went outside on my deck to observe a high flying eagle, hawk or other l +2001-09-16,42.9633333,-85.6680556,Grand Rapids,MI,cigar,60,It was a partly cloudy day. I was returning from a drive to Ludington, Michigan. I was at a traffic light waiting for it to change wh +2001-09-16,40.7408333,-73.6630556,Garden City Park,NY,unknown,2340,Something in our troubled NY skies? +2001-09-16,40.8066667,-74.1858333,Bloomfield,NJ,teardrop,600,Metallic Teardrop shaped object sited over NYC a few days after the WTC bombing, no joke! +2001-09-16,41.85,-87.65,Chicago,IL,light,60,Bright, very big, white light over Chicago +2001-09-16,40.7425,-84.1052778,Lima,OH,unknown,600,we saw a "star"in full light...shortly after 9/11 9 it was /9/16 sunday) +2001-09-16,40.7141667,-74.0063889,New York City,NY,circle,1,A diving white ball of light, headed North. +2001-09-16,47.6105556,-122.1994444,Bellevue,WA,fireball,3,A CIRCULAR BALL OF LIGHT WITH NO TAIL! MOVING VERY FAST FROM ZENITH TO NORTHERN HORIZON.. TOO FAST FOR PLANE/ NO TAIL +2001-09-16,44.3875,-68.2044444,Bar Harbor,ME,light,1800,Satellites in the sky moving at right angles without slowing down - and stopping as still as a star +2001-09-16,38.9805556,-76.9372222,College Park,MD,light,2,bright light trailed across North DC sky +2001-09-16,26.3394444,-81.7788889,Bonita Springs,FL,circle,7200,I WAS WALKING MY DOG WHEN I LOOKED UP AND I SAW THIS BOLD SHAPE AND THE COLORS WERE RED - BLUE-GREEN. IT WAS HOVERING THE SOUTH WEST SI +2002-09-16,34.0633333,-117.65,Ontario,CA,light,1800,Three "lights" in the sky at the base of Mt. Baldy. +2002-09-16,33.1433333,-117.1652778,San Marcos,CA,changing,37800,Captured on film 9/16/02 Southern California Sky +2002-09-16,41.6730556,-93.6975,Johnston,IA,changing,1800,High flying objects spotted on Interstate-80 in Iowa on Sept 16th 2007 +2002-09-16,33.9166667,-117.8991667,Brea,CA,disk,2,Silver craft followed by an odd flash +2002-09-16,40.2030556,-79.9263889,Monongahela,PA,unknown,900,Is a bright white light, with a circling red light. +2002-09-16,22.0783333,-159.3219444,Kapaa,HI,circle,240,Array of small white with purple belly lights following eachother in an angle over slleping giant Kapaa HI. +2003-09-16,41.8975,-84.0372222,Adrian,MI,oval,1,Object making no sound, and near almost no obstructions, dissapears after observer breaks gaze for a few seconds. +2003-09-16,31.4144444,-86.0677778,Elba,AL,light,3600,light in sky changing course moving at rapid rate of speed, no sound. Four witnesses +2003-09-16,43.5758333,-124.1738889,Lakeside,OR,triangle,600,A six lighted wedge flying north to south in the western sky. +2003-09-16,41.5783333,-70.5591667,East Falmouth,MA,light,1200,More green red lights in Falmouth +2003-09-16,42.2791667,-71.4166667,Framingham,MA,light,3600,Unidentified lights +2003-09-16,44.6286111,-74.8141667,Parishville,NY,unknown,1800,Fighters trying to shoot down UFO over Ft. Drum NY? +2003-09-16,32.7252778,-97.3205556,Fort Worth,TX,light,120,Red light that flew almost horizonally then suddenly "fell" from the sky. +2004-09-16,41.1575,-81.2422222,Ravenna (Canada),OH,light,3,fast light going around a star and up +2004-09-16,34.0936111,-118.6005556,Topanga,CA,unknown,60,Blood Red light in night sky with no sound +2004-09-16,39.6580556,-78.9286111,Frostburg,MD,light,1200,Looked out my bedroom window and saw two objects in the sky moving in clockwise motion. +2004-09-16,35.2269444,-80.8433333,Charlotte,NC,disk,15,I,d never seen anything like it befor. It was a red string of lights.It didnt move. +2004-09-16,43.4716667,-72.9777778,Wallingford,VT,sphere,180,round anomolies. +2004-09-16,33.1283333,-107.2522222,Truth Or Consequences,NM,light,3600,Possible metalic object reflected sun's light very brightly for over an hour. +2004-09-16,39.0638889,-108.55,Grand Junction,CO,disk,900,first object was huge second much smaller both chased by fighter jets. +2004-09-16,35.0844444,-106.6505556,Albuquerque,NM,light,1800,Possible Weather Balloon? +2004-09-16,48.051944399999996,-122.1758333,Marysville,WA,triangle,120,low flying unfamiliar object just ahead in the sky +2004-09-16,33.6888889,-78.8869444,Myrtle Beach,SC,unknown,600,lights moving closer and farther away same direction and still at one point and a ufo lighting up the sky with its red/orange light +2004-09-16,47.2372222,-93.53,Grand Rapids,MN,sphere,120,this thing was super bright!!! +2004-09-16,34.1477778,-118.1436111,Pasadena,CA,unknown,60,Faint moving object glows white then disappears over Pasadena 9/16/04 ((NUFORC Note: Iridium satellite "flare?" PD)) +2004-09-16,37.6430556,-91.1891667,Boss,MO,light,45,four orange lights +2004-09-16,47.7361111,-122.6452778,Poulsbo,WA,light,600,Lighted object seen near the Bangor Naval Subbase exibiting irrational flight behavior. +2005-09-16,40.3977778,-105.0744444,Loveland,CO,other,10,Bright starlike object slowly fades at initial viewing +2005-09-16,34.0658333,-84.6769444,Acworth,GA,rectangle,120,Large rectangular shape, almost colliding with jumbo jet over Acworth, GA. on September 16th, 2005 +2005-09-16,45.1425,-93.1630556,Lexington,MN,light,1200,I lIVE IN SHOREVIEW MN. WE WERE ON THE WAY TO THE D.Q. AROUND 6:45PM WE WENT TO THE ONE IN LEXINGTON WHICH IS APPROX. 10-15 MINUTES FRO +2005-09-16,28.9886111,-80.9025,Edgewater,FL,sphere,30,Fire from the sky +2005-09-16,44.0522222,-123.0855556,Eugene,OR,changing,3,Plum red flash gets my attention +2005-09-16,32.3130556,-97.0113889,Maypearl,TX,unknown,1440,mysterious object +2005-09-16,43.2802778,-71.6005556,Penacook,NH,triangle,600,triangle over Camp Spaulding +2005-09-16,32.3130556,-97.0113889,Maypearl,TX,unknown,1440,mysterious object +2006-09-16,37.3183333,-84.9394444,Liberty,KY,changing,180,glowing cone/heat/sound/electric disturbance. +2006-09-16,38.2972222,-122.2844444,Napa,CA,fireball,300,Fireball across the napa sky around 9pm, looked like an airliner on fire but afdter checking nothing reported +2006-09-16,36.6002778,-121.8936111,Monterey,CA,rectangle,360,Non moving long rectangle over the ocean turned and went over my head at about 2000 feet +2006-09-16,39.9522222,-75.1641667,Philadelphia,PA,other,420,Ar around 12:45pm, I heard the loudest noise in my entire life. The noise was so strong it shook my windows. Upon hearing it I went o +2006-09-16,34.7444444,-120.2772222,Los Alamos,CA,changing,1200,I was driving to my hometown of Orcutt, CA. and as I was driving on the 101 North I witnessed a stringy black to grey object that chan +2006-09-16,40.2969444,-111.6938889,Orem,UT,unknown,120,Bright light vanishes in a puff of smoke +2006-09-16,42.7675,-78.7441667,Orchard Park,NY,other,1800,Activity hot spot. ((NUFORC Note: One of many reports from same source. +2006-09-16,48.9202778,-122.3413889,Everson,WA,light,90,object very dim, flaring to bright white, then back to dim. and maintaining a satellites speed. +2006-09-16,37.8044444,-122.2697222,Oakland,CA,disk,60,u.f.o sightin in oakland california, object tries to drop lower to the ground +2007-09-16,40.015,-105.27,Boulder,CO,triangle,9,A large triangle craft, with about 20 red lights blinking once per second. The craft appeared to be very large, about twice the size of +2007-09-16,47.4236111,-120.3091667,Wenatchee,WA,changing,30,Hazy red object that changed shape and moved erratically. +2007-09-16,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,60,I just wanted to report that I saw a star like object in the night sky that could have been a red party balloon traveling southbound fa +2007-09-16,33.5161111,-90.1794444,Greenwood,MS,triangle,5,At approximately 03:00 I saw a triangle shaped object with no light visable traveling southwest in a clear sky +2007-09-16,42.0983333,-76.0497222,Endicott,NY,teardrop,120,Very clearly watched and photographed an object drop down from the sky. +2007-09-16,41.0813889,-81.5191667,Akron,OH,light,120,I was walking through the local university campus Sunday the 16th of September. I was the only person walking on the commons area at th +2007-09-16,34.1425,-118.2541667,Glendale,CA,triangle,900,Three white circular objects in a triangular formation hover above the hills between Glendale and Los Angeles, California. +2007-09-16,37.7397222,-121.4241667,Tracy,CA,cigar,120,2 white lights, one red and another white light in a line found over Tracy in the evening. +2007-09-16,47.5675,-122.6313889,Bremerton,WA,light,18000,changing object hovering in sky for five hours. ((NUFORC Note: Celestial body…star or planet?? PD)) +2007-09-16,35.6008333,-82.5541667,Asheville,NC,chevron,12,Boomerang shaped object, glowing pink, red and yellow flying south. +2008-09-16,36.1538889,-95.9925,Tulsa,OK,formation,600,Line formation of Lights in Tulsa,Ok. +2008-09-16,43.6952778,-71.6311111,Ashland,NH,formation,120,4 or 5 bright lights in sky dimmed, disappeared, reappeared then vanished! +2008-09-16,41.6269444,-88.2038889,Plainfield,IL,circle,10,there was somethin catching the light from the sun and it vanished after about 10 seconds +2008-09-16,34.0522222,-118.2427778,Los Angeles (150-200 Mi. E Or Ne Of),CA,sphere,3,Small metallic copper object 1-2 mi. above ground traveling w/sw-e/ne (viewed from L.A.-bound 757) +2008-09-16,39.7047222,-105.0808333,Lakewood,CO,fireball,2,Green light moving towards south at high speed. +2008-09-16,42.3811111,-88.1397222,Ingleside,IL,teardrop,300,Three UFOs hovering in the night sky +2009-09-16,30.3116667,-95.4558333,Conroe,TX,chevron,5,Chevron object, no noise, no lights. +2009-09-16,34.0522222,-118.2427778,Los Angeles,CA,disk,240,Curcular disk shaped craft with 3 bright lights ascends straight up into the sky over Los Angeles at an unusually slow speed. +2009-09-16,39.7294444,-104.8313889,Aurora,CO,oval,15,Brillant oblong object spotted over Aurora, CO. +2009-09-16,32.3716667,-112.86,Ajo,AZ,light,1800,Many lights, changing color and blinking randomly, merging and dividing, flying randomly and also in formation, in Ajo, AZ on 9/16/09. +2009-09-16,39.9611111,-82.9988889,Columbus,OH,unknown,300,Silver looking object disappears into the sky. +2009-09-16,46.3394444,-117.0472222,Asotin,WA,flash,30,Flash in the sky moving south, south of asotin washington +2009-09-16,39.3677778,-94.3619444,Kearney,MO,fireball,3900,hazy blue huge falling star, no sound, followed by small light disapearing moving S>N and spyplane next. +2009-09-16,31.2230556,-85.3905556,Dothan,AL,diamond,240,Diamond shaped silent object floating over Dothan, AL +2009-09-16,38.3988889,-82.5783333,Kenova,WV,circle,60,I saw a large, bright circular light, followed by a lot of "sparks". +2010-09-16,41.1669444,-73.2052778,Bridgeport,CT,light,300,Looked like a big round lit Christmas ball +2010-09-16,40.4991667,-74.3994444,Piscataway,NJ,unknown,400,Object seen over Interstate 287 in Piscataway NJ +2010-09-16,41.1305556,-85.1288889,Fort Wayne,IN,oval,60,oval or disc-like shaped metallic object that was moving faster than a plane horizontally across the sky +2010-09-16,34.0552778,-117.7513889,Pomona,CA,other,3,Light flashing then disappears in the day time sky. +2010-09-16,35.0072222,-80.9452778,Fort Mill,SC,light,900,Strange Lights in sky over Fort Mill, SC (just south of Charlotte NC) +2010-09-16,33.9325,-114.005,Bouse,AZ,other,900,Reddish amber UFO sited in Arizona +2011-09-16,39.0838889,-76.7005556,Odenton,MD,circle,180,2 Clockwise Rotating Lights around each other. ((NUFORC Note: Possibly an advertising or display light?? PD)) +2011-09-16,39.8494444,-75.3561111,West Chester,PA,disk,120,Large circular shaped craft with bright and consistant pulsing lights on outer perimeter. +2011-09-16,44.6697222,-74.9816667,Potsdam,NY,fireball,4,Orange fireball in sky. +2011-09-16,44.2911111,-121.5480556,Sisters (In-Flight),OR,triangle,0.5,Orange Dart-like craft passes our aircraft at close proximity in flight +2011-09-16,36.0463889,-115.4030556,Blue Diamond,NV,fireball,5,White & green fireball impacts mountain range behind Blue Diamond, Nevada +2011-09-16,41.24,-81.4408333,Hudson,OH,light,120,Two distant orange/red lights cross sky and suddenly disappear. +2011-09-16,34.3608333,-117.6325,Wrightwood,CA,fireball,900,3 Red lights +2011-09-16,45.2461111,-93.4519444,Ramsey,MN,circle,60,Ball of Fire over Ramsey, MN seen by 2. +2011-09-16,43.6136111,-116.2025,Boise,ID,light,300,Two seperate lights that flashed and then started moving towards one another. +2011-09-16,43.7122222,-89.8994444,Lyndon Station,WI,fireball,600,Large red flashing light moving quickly across the horizon. +2011-09-16,34.0983333,-118.3258333,Hollywood,CA,light,4,Bright neon green light, lit the whole cloudy north sky for a second. +2011-09-16,39.9522222,-75.1641667,Philadelphia,PA,oval,5,Bright oval shaped object seen in the skies over downtown Philadelphia, made a quick hook in the sky and disappeared. +2011-09-16,42.0583333,-70.1791667,Provincetown,MA,circle,600,Immense golden light over Provincetown harbor returned three more times in 12-15 minutes +2012-09-16,33.5988889,-117.2791667,Wildomar,CA,circle,3,It all happened within 3 - 5 seconds and did not change speed, it just glided along. +2012-09-16,33.7091667,-117.9527778,Fountain Valley,CA,light,300,Possible abduction in Fountain Valley, California, intellegent life has arrived and wants us to know! +2012-09-16,39.72,-84.325,Liberty,OH,triangle,45,Object with dim red lights +2012-09-16,39.5297222,-119.8127778,Reno,NV,light,1800,The object was a bright light, light blue in color, and much brighter than a star or planet. ((NUFORC Note: Sighting of Venus? PD)) +2012-09-16,32.4205556,-104.2283333,Carlsbad,NM,other,1800,Clouds leaving contrails +2012-09-16,37.3394444,-121.8938889,San Jose,CA,disk,4,Silent craft moving south from San Jose to Gilroy at an estimated 3ꯠ MPH +2012-09-16,41.2222222,-73.0569444,Milford,CT,oval,600,Overflight of two separate orange lights +2012-09-16,26.2708333,-80.2708333,Coral Springs,FL,other,600,ME and MY FRIEND just saw 3 orange lights that were stopped then went on slowly n made strange manovers +2012-09-16,44.9583333,-124.0166667,Lincoln City,OR,sphere,300,My wife and I spent a few days on the coast in Lincoln City, OR. On September 16th around 9 p.m. my darling wife and I were outside on +2012-09-16,44.9583333,-124.0166667,Lincoln City,OR,light,180,Five red lights in night sky. +2012-09-16,37.8044444,-122.2697222,Oakland,CA,fireball,4,Brilliant Orange Light Streaks Horizontally Across the Night Sky in Oakland, CA - Sept 16, 2012 +2012-09-16,38.3497222,-81.6327778,Charleston,WV,unknown,900,Strange Set of 2 Lights In The Sky Located Off Campbells Creek Drive, Charleston WV +2013-09-16,44.5191667,-88.0197222,Green Bay,WI,other,900,Odd Constellation Dances in Sky for 20 Minutes, then Returns to Original Odd Constellation Form. +2013-09-16,43.4666667,-112.0333333,Idaho Falls,ID,circle,1800,Round Ball Of Light Falling Like A Meter With No Tail Trailing Behind It. Disappeared From View (LandeD?) Near Craters Of The Moon Area +2013-09-16,41.595,-72.6458333,Cromwell,CT,unknown,600,Flickering blue light and other unknown colors. looks like its above rocky hill or in that direction +2013-09-16,33.4352778,-112.3575,Goodyear,AZ,changing,1200,Strange bright globs of lights in the evening sky. +2013-09-16,38.5472222,-122.8152778,Windsor,CA,light,17,Bright light traveled away and faded into a redshift until I could no longer see it. +2013-09-16,34.1808333,-118.3080556,Burbank,CA,changing,1200,Saw a cigar, boomering , highly glowing flying object hoovering over Burbank Ca 9/16/13 . +2013-09-16,46.2830556,-96.0772222,Fergus Falls,MN,unknown,3600,Am still observing this object...is flashing lights of red , blue , orange ..it is quite a distance away as with my binoculars I can st +2013-09-16,40.7608333,-111.8902778,Salt Lake City,UT,other,3600,Another day, another sighting. +2013-09-16,32.7152778,-117.1563889,San Diego,CA,unknown,6,Around 11:18 pm I Saw a bright object hurdle down from sky. I Initially dismissed it as a shooting star, until bright blue, pink and i +1979-09-17,30.6941667,-88.0430556,Mobile,AL,rectangle,300,Rectangular object motionless in the sky over the Gulf of Mexico for 4 to 5 mintues which shot off straight up and was gone in less tha +1979-09-17,35.0525,-78.8786111,Fayetteville,NC,cylinder,3000,Missing time involved. Other witness remembers nothing. Tractor beam taking water aboard craft. 5 miles downrange, appeared 300 feet +1989-09-17,38.8858333,-94.5327778,Grandview,MO,circle,5,It seemed like minutes passed, but only seconds. +1991-09-17,34.2541667,-110.0291667,Show Low,AZ,formation,10,3 lights "disguised" as a plane +1994-09-17,40.6638889,-74.2111111,Elizabeth,NJ,disk,180,i could not identify this object with any known craft although i has study janes and nasa craft for years! +1996-09-17,42.7119444,-73.2041667,Williamstown,MA,formation,300,three points of light in the shape of triangle slowly moved across the sky. +1998-09-17,33.0416667,-116.8672222,Ramona,CA,sphere,3,SAW A BRIGHT ORANGE SPHERE APPEAR IN THE SOUTHWESTERN SKY AND STREAK HORIZONTALLY ACROSS THE SKY +1998-09-17,41.5261111,-87.8891667,Mokena,IL,disk,30,We were looking out my window, and there it was, just sitting there, making no sound and hovering at around 25 feet up, and it dissapea +1999-09-17,41.8008333,-87.9369444,Hinsdale (Unincorporated Area),IL,other,3600,i feared for my life +1999-09-17,34.145,-81.2758333,White Rock,SC,circle,1800,On September 17, 1999 in White Rock, SC a bright circular object was spotted in the northern sky. As a airliner aproached it moved to t +1999-09-17,40.0444444,-111.7313889,Payson,UT,sphere,8,Large mirror-like sphere observed streaking across the sky south of Payson, Utah +1999-09-17,21.3069444,-157.8583333,Honolulu,HI,circle,300,Me and my friend were talking and my friend spotted a sphere in the sky. It was moving kind of slow and then reached a point in the sky +1999-09-17,45.43,-122.3736111,Boring,OR,circle,180,A total of three crafts were seen, one of them branching off the other. +1999-09-17,31.2519444,-93.3411111,Anacoco,LA,disk,2400,My wife called me to the living room to see an ornange pulsating light. I watched it for a bit and it shot straight up, almost out of s +1999-09-17,45.2630556,-122.6913889,Canby,OR,circle,300,saw two bright objects aprox one eigth size of moon,in the southwest of the sky.there was a red beam joining the two objects. +1999-09-17,41.14,-104.8197222,Cheyenne,WY,unknown,3,Seen an oject west of town at hotel it refected city lights with brown golden color moving west fast with no lights no sound and no vis +1999-09-17,38.7713889,-90.3708333,Hazelwood,MO,triangle,40,More or less triangular shaped object. Moving east to west, turned wo move west to east. Slow moving. Appeared small, but it was hard t +1999-09-17,33.4483333,-112.0733333,Phoenix,AZ,oval,3600,It changed colors, hovered for about 10 min. then faded to a light fuzz and slowly jetted away. This repeated the exact same routine, i +1999-09-17,41.2619444,-95.8608333,Council Bluffs,IA,flash,2,While driving home from school in Council Bluffs down Interstate 80 I observed a bright flash that streaked across the sky a great dist +1999-09-17,36.0152778,-83.415,Dandridge,TN,triangle,600,Watched red light grow large then disappear when I was getting into my car. Reappeared in front of me while driving, I pulled over and +1999-09-17,36.8527778,-75.9783333,Virginia Beach,VA,fireball,2,a ball of light shot over my head. +2000-09-17,41.4994444,-81.6955556,Cleveland,OH,cigar,300,long silver cigar shaped flying high with no vapor trail and no sound +2000-09-17,37.775,-122.4183333,San Francisco,CA,chevron,2700,Single neon yellow/gold Chevron in San Francisco afternoon sky. +2000-09-17,37.775,-122.4183333,San Francisco,CA,light,2700,3 intensely bright, very small points of light, high in the sky, unmoving for at least 30-45 minutes +2000-09-17,37.775,-122.4183333,San Francisco,CA,light,9000,Several, individual blinking lights, in afternoon San Francisco sky. +2000-09-17,46.2113889,-119.1361111,Kennewick,WA,chevron,15,My husband and I saw something strange in the sky last night. We were in the hot tub, listening to dreamland and watching the stars. +2000-09-17,30.5333333,-92.0813889,Opelousas,LA,chevron,10,Wing- shaped, low altitude, very fast, very large, completely silent, no running lights, black-colored. +2000-09-17,37.3861111,-122.0827778,Mountain View,CA,fireball,2,website doesn't appear. +2001-09-17,38.9988889,-84.6266667,Florence,KY,flash,1800,2 objects flashing changing colors,red,blue,&yellow or white +2001-09-17,28.9886111,-80.9025,Edgewater,FL,triangle,5,Fadeing star triangle craft +2001-09-17,35.3858333,-94.3983333,Fort Smith,AR,unknown,900,Bright Light with Tail in Ft Smith Night Sky +2002-09-17,40.8883333,-80.6941667,Columbiana,OH,fireball,1380,I saw a fireball/disc like shape in the woods. +2002-09-17,33.4708333,-81.975,Augusta,GA,light,10800,Lights in the sky +2002-09-17,37.1230556,-120.2591667,Chowchilla,CA,unknown,8,two lights changing places in the sky +2002-09-17,45.5236111,-122.675,Portland,OR,unknown,600,Sighting of a possible beam or tether directly connected from the ground to an aircraft at an altitude of 2귔 ft. +2003-09-17,44.0463889,-123.0208333,Springfield,OR,flash,1,brilliant flash of light +2003-09-17,38.4088889,-121.3705556,Elk Grove,CA,light,60,I saw a moving star like light in space flash a bright lite at me then turned on spotlight at it and it came back and did it again. +2003-09-17,39.7683333,-86.1580556,Indianapolis,IN,changing,1800,family and i seen objects of light moving and hovering south west of downtown light had a tail the first object looked like a tear drop +2003-09-17,35.2269444,-80.8433333,Charlotte,NC,light,600,Blinking Object In the Sky +2003-09-17,40.2472222,-75.2441667,Montgomeryville,PA,light,600,While looking for Mars in Sept. I saw an unblinking bright red light in the southwest sky which disappeared. +2003-09-17,30.6322222,-87.0397222,Milton,FL,triangle,600,A Dozen Trianglar Bright Shapes at once +2003-09-17,33.7488889,-84.3880556,Atlanta,GA,egg,6,Floating, silent panel of lights +2003-09-17,32.2502778,-101.4783333,Big Spring,TX,oval,45,unknown object in tx +2003-09-17,36.9486111,-84.0969444,Corbin,KY,light,9,Strange vanilla star-like light descends over yard. +2003-09-17,43.0830556,-73.785,Saratoga Springs,NY,unknown,300,small 3 light triangle with 2 blinking on sides seen hovering, then moving about 100-200 feet up over road +2003-09-17,43.5911111,-71.7372222,Bristol,NH,rectangle,420,Building shaped object w/lights moving west in mountains +2003-09-17,35.9744444,-83.6269444,Kodak,TN,circle,1800,Flashing object +2003-09-17,38.5816667,-121.4933333,Sacramento,CA,light,10,Star-like object appeared for 10 seconds, changed direction on a dime, and was gone. +2003-09-17,28.5380556,-81.3794444,Orlando,FL,triangle,900,2 witnesses viewed 4 triangular objects over Orlando with white flashing lights & a red light underneath in the upper atmosphere. +2003-09-17,21.3069444,-157.8583333,Honolulu,HI,sphere,300,I thought it was a star as it flickered between white and red. +2004-09-17,36.4033333,-76.7533333,Gatesville,NC,oval,5,Smooth oval with indistinguishable darker area around center, silvery color, disappeared in a split-second. +2004-09-17,35.6508333,-117.6608333,China Lake,CA,formation,300,Red and white lights. +2004-09-17,47.5675,-122.6313889,Bremerton,WA,sphere,240,I noticed Venus in the wrong place and it was moving! +2004-09-17,39.0638889,-108.55,Grand Junction,CO,oval,180,Grand Junction, Colorado 3 minutes +2004-09-17,33.5091667,-111.8983333,Scottsdale,AZ,sphere,7200,Daylight sighting of a large spherical object on 9/17/04 hovering for more than three hours over northeast Scottsdale, AZ. ((Balloon)) +2004-09-17,33.4483333,-112.0733333,Phoenix,AZ,sphere,11700,DAYLIGHT SIGHTING OF SPHERE IN PHOENIX, ARIZONA +2004-09-17,39.6133333,-105.0161111,Littleton,CO,cigar,5,Cigar shaped flying object appears for 3-5 seconds in the southern sky +2004-09-17,34.3619444,-111.9777778,Dugas,AZ,rectangle,300,flashing square-shaped motionless light in night sky +2004-09-17,29.4238889,-98.4933333,San Antonio,TX,triangle,30,Triangle shape craft sighted moving north west aprox 15 knots @ 1귔 agl, with large lights surrounding the craft. +2004-09-17,37.9841667,-120.3811111,Sonora,CA,triangle,180,Fourth Triangular Object Videotaped over Sonora, CA +2004-09-17,46.7833333,-92.1063889,Duluth,MN,disk,60,It was a very eye opening experience. 500 Lights On Object0: Yes +2004-09-17,40.8022222,-124.1625,Eureka,CA,triangle,600,I witnessed an elongated, triangular aircraft moving at a very slow speed approximately trenty feet above the Redwood trees. +2005-09-17,42.5916667,-88.4333333,Lake Geneva,WI,light,900,Two bright amber lights flying in diagnol formation over downtown under a full moon +2005-09-17,33.2466667,-84.2641667,Griffin,GA,light,2700,looked like star with a haze aroud it, had a yellow light that moved very fast in different shapes watched for about 45 minutes. woke m +2005-09-17,39.7102778,-111.8355556,Nephi,UT,disk,1200,went to set up the Gps base station for the survey crews in morning at 7:00am,it took 3 of us to set up the antenna tower 40 min.while +2005-09-17,47.3225,-122.3113889,Federal Way,WA,light,1800,me and my friend were talking on the phone and i look out the window and saw a ball of light orange-red and it was slowly speed up and +2005-09-17,35.4494444,-97.3963889,Midwest City,OK,cylinder,180,I WAS TRAVELING NORTH ON SUNNYLANE ROAD IN MIDWEST CITY OKLAHOMA AND NOTICED A VERY WHITE HIGH ALITUDE OBJECT ALMOST OVERHEAD. IT APPEA +2005-09-17,36.7477778,-119.7713889,Fresno,CA,disk,180,Many lit up flying objects in the sky that my digital camera found. +2005-09-17,33.3805556,-84.7997222,Newnan,GA,cigar,120,A stubby oblong/circular shaped UFO sighting occured over Newnan GA 40 minutes south of Atlanta. +2005-09-17,39.6836111,-75.75,Newark,DE,triangle,60,3bright lights trianglular shape like an airplane, but hovering +2005-09-17,42.5916667,-88.4333333,Lake Geneva,WI,circle,2700,Lights over Lake Geneva, WI. +2005-09-17,45.4611111,-123.9666667,Oceanside,OR,light,3,Over the ocean, 1 bright white light blinked off became two, another blinked on became five horizontal +2005-09-17,38.5063889,-82.2986111,Lesage,WV,light,5,Fast-moving bright white light that suddenly disappears. +2005-09-17,30.2669444,-97.7427778,Austin,TX,fireball,3,A bright green glowing sphere, almost teardrop shaped that fell extremely fast and disappeared, +2005-09-17,48.55,-109.6833333,Havre,MT,fireball,120,Bright Lights on the High-Line +2005-09-17,40.1569444,-74.2577778,Matthews,NJ,diamond,300,It was diamoned shape and green. +2006-09-17,36.175,-115.1363889,Las Vegas,NV,chevron,0.45,boomerrang V -shaped object ,very large at height but close enough to distinguish that it was not commercial nor militaryas my experi +2006-09-17,38.785,-76.2247222,St. Michaels,MD,cylinder,240,Cylinder shaped UFO that came to my wedding! +2006-09-17,39.5491667,-76.0919444,Havre De Grace,MD,disk,3,The object captured in a photograh appeared to be a silver disk/saucer above the Chesapeake Bay. +2006-09-17,37.775,-122.4183333,San Francisco,CA,light,2700,4 white lights high up in the sky over San Francisco +2006-09-17,32.64,-117.0833333,Chula Vista,CA,other,10,A white, u shaped object viewed in the San Diego night sky. +2006-09-17,32.7152778,-117.1563889,San Diego,CA,sphere,300,UFO's in sunny San Diego California +2006-09-17,34.2977778,-83.8241667,Gainesville,GA,light,90,We live North of Atlanta 40 miles, on Lake Lanier it came frome the south west to the north east very high, very fast no sound two whit +2006-09-17,36.2083333,-115.9830556,Pahrump,NV,light,600,Moving Star-Type lights In the Sky +2007-09-17,40.725,-73.2458333,Bay Shore,NY,formation,600,Two sightings in two weeks over Bay Shore, NY +2007-09-17,39.2130556,-106.9372222,Snowmass Village,CO,light,7200,Bright white lights bounced around in sky over Colorado Springs for 1 hour approx. on Sept. 17, 2007 +2007-09-17,26.1416667,-81.795,Naples,FL,disk,5,UFO seen in night sky over Naples, FL +2007-09-17,38.7297222,-120.7975,Placerville,CA,triangle,120,Triangle with flashing lights in Placerville +2007-09-17,43.0805556,-88.2611111,Pewaukee,WI,unknown,1,Ridiculously, blinding bright light in the middle of the day +2007-09-17,36.1630556,-82.8311111,Greeneville,TN,light,216,STRANGE LIGHTS +2007-09-17,34.4208333,-119.6972222,Santa Barbara,CA,light,60,Bright light after sunset in Southern California +2007-09-17,38.3333333,-123.0469444,Bodega Bay,CA,cigar,900,Streaking object appears to stop and hover for several minutes +2007-09-17,35.1494444,-90.0488889,Memphis,TN,light,15,bright ball of white light falling in western sky +2007-09-17,39.5138889,-121.5552778,Oroville,CA,triangle,30,Silently flying south at very high rate of speed a trianglar shape with three very bright lights in each corner zoomed overhead. +2007-09-17,40.2941667,-90.4277778,Vermont,IL,light,60,Central Illinois Lights- Military Maneuvers? +2007-09-17,40.9477778,-90.3711111,Galesburg,IL,light,180,Formation of 3 light in a triangle, one moved quicky, then they dimmed out, real bright. +2007-09-17,44.2802778,-71.6886111,Bethlehem,NH,light,90,The light changed from white to red to blue. It zig-zagged left, right, back over, triangle shape, a couple of times then dove north-w +2007-09-17,45.445,-93.9986111,Clear Lake,MN,light,300,Three Lights Seen Above Lake +2007-09-17,41.4569444,-72.8236111,Wallingford,CT,circle,3600,brightly colored flashing red green and yellow pentagon/ circular shaped object bouncing up and down in the night sky +2007-09-17,41.6005556,-93.6088889,Des Moines,IA,unknown,3600,Green lit-up horizon with saucer like flying object. +2007-09-17,41.6061111,-73.1186111,Watertown,CT,disk,2400,Very unusual light pattern, slow moving object, visible for 40+ minutes. +2007-09-17,36.6377778,-82.5811111,Gate City,VA,sphere,180,Yellow-orange light with erratic movement seen for approx. 3 minutes in Scott county, Virginia, Sept. 2007. +2007-09-17,37.5072222,-122.2594444,San Carlos,CA,formation,10,Independent lights forming a chevron passed silently at a very high altitude at a very high rate of speed; each light shifted position +2008-09-17,33.9533333,-117.3952778,Riverside,CA,other,12,Fluorescent white wing like ship traveling north west, slow, no sound, over roof of house at 4am. +2008-09-17,33.5091667,-111.8983333,Scottsdale,AZ,changing,600,Object morphed after descent +2008-09-17,39.8016667,-89.6436111,Springfield,IL,fireball,2400,2 fireballs in sky.FA-22 Raptors intersepting its way +2008-09-17,32.8233333,-97.1702778,Hurst,TX,circle,1200,A bright white circular object being circled by a smaller object +2008-09-17,33.9533333,-117.3952778,Riverside,CA,egg,20,Slow moving black egg shaped object hovering down from sky +2008-09-17,44.3730556,-71.6105556,Whitefield,NH,light,60,Softball shaped white lights in the sky +2008-09-17,37.6438889,-98.7372222,Pratt,KS,circle,120,Circular craft with no identifier lights. +2008-09-17,41.0238889,-81.1636111,Atwater,OH,triangle,300,TRIANGLE UFO'S ARE REALLY IN THE SKY +2008-09-17,43.8716667,-71.9147222,Wentworth,NH,light,30,5 lights in parallel 1 underneath +2008-09-17,40.2794444,-86.5108333,Frankfort,IN,other,600,Balls of spinning lights making weird shapes and a earthquake. +2008-09-17,39.6894444,-84.1688889,Kettering,OH,other,120,Low Flying Quiet Object in Sky with 4 Bright White Lights +2008-09-17,43.12,-85.56,Rockford,MI,unknown,1500,Object giving off bright red, white, gold and green lights. Stayed in place for 30 mins and disapeared. ((NUFORC Note: Star?? PD)) +2008-09-17,34.2977778,-83.8241667,Gainesville,GA,light,10,Large bright white ball of light flying through local area. +2008-09-17,43.3719444,-83.5833333,Vassar,MI,fireball,60,large orange ball with a long orange tail, plummeting toward the ground; blew apart in NE sky. ((NUFORC Note: Possible meteor? PD)) +2009-09-17,43.7402778,-92.8691667,Brownsdale,MN,changing,14400,((HOAX??)) Hurry up and check this out wierd things fill the sky and really scary things have been happening!!! +2009-09-17,29.7630556,-95.3630556,Houston,TX,circle,120,Glowing green orb. +2009-09-17,39.8208333,-84.0194444,Fairborn,OH,unknown,600,Pulsing glow of light dancing over WPAFB +2009-09-17,47.9791667,-122.2008333,Everett,WA,triangle,10,I saw a triangle ufo with four white lights moving quickly with no sound in Everett Wa. +2009-09-17,38.8966667,-121.0758333,Auburn,CA,triangle,300,A large, black triangle ship flying low at mid-day with no sound +2009-09-17,41.2786111,-72.5280556,Clinton,CT,unknown,20,It was a gold color but up very high like in space. No strobes, red, green lights. +2009-09-17,42.9638889,-78.7380556,Williamsville,NY,triangle,15,Orange-yellowish, hazy lights in the shape of a triangle. +2009-09-17,38.6083333,-91.2188889,New Haven,MO,unknown,900,unknown object with many colored lights floating in sky for several minutes. +2009-09-17,39.1619444,-84.4569444,Cincinnati,OH,circle,900,.I was lying down for the night and looked up to see a very large orange orbe in the window that would minamize then expand to become l +2010-09-17,39.0638889,-108.55,Grand Junction,CO,triangle,30,Massive,silent triangular shape slowly moving over Grand Junction,Colorado at approximately 1:00am on 9-17-2010 +2010-09-17,35.5641667,-121.0797222,Cambria,CA,light,60,2 BRIGHT and FAST Round Orange Lights over the skies of Cambria, CA on September 17, 2010 +2010-09-17,33.0183333,-80.1758333,Summerville,SC,formation,60,Unidentifiable, V formation of flashing lights in a flowing movement. +2010-09-17,33.2858333,-79.6927778,Jamestown,SC,cigar,60,blinking starts in a row that was moving +2010-09-17,34.2247222,-118.4488889,Panorama City,CA,circle,1800,this was a white orb circle ufo. +2010-09-17,35.5288889,-77.4013889,Winterville,NC,circle,45,Round object closely flying with large airplane, with 4 delta-winged fighters following in formation +2010-09-17,39.0638889,-108.55,Grand Junction,CO,chevron,20,U.F.O. zips across sky at incredible rate of speed, HUGE and very high in the sky Western Colorado. +2010-09-17,39.6894444,-84.1688889,Kettering,OH,disk,60,aluminum-type disk with hump. +2010-09-17,38.8902778,-77.0844444,Arlington,VA,light,300,Several people observed slow moving light in sky for about five minutes. +2010-09-17,39.9130556,-83.1625,Galloway,OH,other,600,5 objects with comet tails some still some moving over Galloway OH +2010-09-17,33.1191667,-117.0855556,Escondido,CA,light,300,The object if you can picture it was the color of one of those yellow or streetlights lights in the sky. Also the flight pattern was ex +2010-09-17,38.2541667,-85.7594444,Louisville,KY,flash,1,A smear of bright multi-colored lights in the sky, lasting for only an instant. +2010-09-17,41.5733333,-87.7844444,Tinley Park,IL,triangle,900,Tinley Park Lights 3 Red Lights form a Triangle +2010-09-17,32.5155556,-95.4091667,Lindale,TX,triangle,15,We were laying outside in the hammock and looking at the moon and stars when the sky completely blacked out. All we could see was a tr +2010-09-17,30.2263889,-93.2172222,Lake Charles,LA,light,900,The following description was provided to me from a work associate. He describes that he was awakened one night, around 10:30 pm by hi +2011-09-17,42.1486111,-72.6083333,Chicopee,MA,flash,10,a flash of light bigger than a shooting star +2011-09-17,35.6505556,-78.4566667,Clayton,NC,unknown,30,Power out green light power out green light. loud noise +2011-09-17,33.0197222,-96.6986111,Plano,TX,oval,2,Oval Greenish-White Light with sparks +2011-09-17,32.7252778,-97.3205556,Fort Worth,TX,circle,120,Red LED lite @ incredible speed, approached saw circular sheer curtain of opalecent color 6 rays glowed around circle +2011-09-17,38.5083333,-90.3227778,Mehlville,MO,oval,120,Bright white lights in circlular position with two larger lights in center and five smaller lights to outside. +2011-09-17,41.995,-88.1855556,Bartlett,IL,disk,180,Red disk shaped UFO over bartlett Illinois +2011-09-17,32.8994444,-105.9597222,Alamogordo,NM,fireball,30,Fire ball suddenly shoots up right angle and amazing speeds. +2011-09-17,40.9008333,-80.8569444,Salem,OH,fireball,240,Three round orange lights flying very close together +2011-09-17,41.7858333,-88.1472222,Naperville,IL,light,600,Me and my wife were traveling north on rt 59 when I happened to look up I saw 15 to 20 red lights in the sky. Two formations looked lik +2011-09-17,39.051944399999996,-82.6366667,Jackson,OH,diamond,1800,Two UFO's witnessed in Jackson, OH +2011-09-17,39.7627778,-86.3997222,Avon,IN,unknown,1800,17 Ufo's seen in Avon Indiana September 17, 2011. +2011-09-17,41.7,-71.4166667,West Warwick,RI,light,300,I saw 6 or 7 red lights slowly moving in the sky north of West Warwick, RI that were heading north +2011-09-17,39.4463889,-89.7808333,Girard,IL,other,180,A set of bright orange lights in the sky +2011-09-17,38.1886111,-80.0163889,Huntersville,WV,formation,300,Moving Formation of Orange lights in the sky +2011-09-17,42.1816667,-88.3302778,Lake In The Hills,IL,triangle,900,Strange glowing orange orb UFO lights northwest Chicago il +2011-09-17,42.8652778,-83.1427778,Leonard,MI,formation,600,Formations of orange balls moving steadly from the northeast horizen to the west overhead then dissapering in the exact same spot. +2011-09-17,41.2380556,-85.8530556,Warsaw,IN,sphere,600,Orange spheres traveling east to west on a beautiful clear night +2011-09-17,32.0038889,-106.6052778,Anthony,NM,triangle,6,While watching night sky with my head in the east-west position, a smooth, rounded, triangular craft passed over heading due south towa +2011-09-17,34.1347222,-116.3122222,Joshua Tree,CA,disk,120,Reddish orange object with white center seen by 4 slowly moving from east to west over Joshua Tree, Ca.++++++++++++++++++++++++++++++++ +2011-09-17,33.34,-86.6302778,Chelsea,AL,oval,600,These were all a oval dark orange colored shapes that seem to be flowing in some sequence. They appeared coming up from a mountain for +2011-09-17,40.7452778,-86.7647222,Monticello,IN,circle,300,Two bright orange/red circles spotted in Monticello, IN - (Shaffer / Big Monon Lake) - lasting 5 minutes +2011-09-17,40.0811111,-75.09,Rockledge,PA,cone,300,4 orange lights, 3 in the front in a sideways V formation and 1 in the back < - , the lights were steady orange not flashing. +2011-09-17,38.6635,-90.8184,Defiance,MO,circle,120,Strange lights over Defiance +2011-09-17,29.8944444,-81.3147222,St. Augustine,FL,circle,3,White ball of light shot up from behind trees in heavy wooded area on St Rd 16/95 in St Augustine +2012-09-17,33.7091667,-117.9527778,Fountain Valley,CA,unknown,300,UFO gives light show in urban amerca, party on! not. +2012-09-17,26.0625,-80.2333333,Davie,FL,circle,600,Bright flashing lights +2012-09-17,39.1730556,-77.2719444,Germantown,MD,light,60,White orb of light that rapidly ascended +2012-09-17,45.9047222,-122.7427778,Woodland,WA,light,15,Saw a slow moving glowing white orb land on a big building right a roof. +2012-09-17,44.9444444,-93.0930556,St. Paul,MN,light,180,2 glowing red/orange oval shaped orbs observed coming from the ground on Como Golf Course +2012-09-17,39.7338889,-90.2288889,Jacksonville,IL,other,600,Disk-on-disk UFO making atmosphere around it pulsate +2012-09-17,42.4908333,-76.2975,Dryden,NY,light,10,Bright light with a grey oval background. Appeared for 10 seconds then disappeared in the sky +2012-09-17,44.8011111,-68.7783333,Bangor,ME,light,10,Three blinking lights in nightsky of Bangor, Maine, helicopters searching the area. +2012-09-17,47.2530556,-122.4430556,Tacoma (Northeast Section),WA,light,50,Two very bright square flashing lights +2012-09-17,40.4077778,-74.0347222,Atlantic Highlands,NJ,disk,120,I noticed a UFO in the night sky and at times and I read a book that a UFO was hurting someone's body and I don't want that to happen. +2012-09-17,30.1491667,-96.6858333,Carmine,TX,fireball,240,Large extremely bright star-like object moved steadily from zenith to northern horizon +2012-09-17,33.9202778,-80.3416667,Sumter,SC,light,240,Unexplained light that shone in my eyes and lit up and area of my yard +2013-09-17,36.0625,-94.1572222,Fayetteville,AR,triangle,45,Triangle with orange lights traveled from 180° S to 240° SW over 45 seconds, then dropped vertically behind tree line. +2013-09-17,39.8022222,-75.0644444,Blackwood,NJ,sphere,15,A bright white sphere moving slowing across the day sky. +2013-09-17,33.4222222,-111.8219444,Mesa,AZ,triangle,2400,2 ufo sighted above Superstition Mt Mesa Az 330am 9-17 +2013-09-17,43.0125,-83.6875,Flint,MI,changing,180,Daytime sighting of shape changing object. +2013-09-17,35.1494444,-90.0488889,Memphis,TN,other,10,Metallic forest green with a dark circle around the middle. Seemed to be hovering and looked like a Weber grill without the legs. +2013-09-17,31.5686111,-111.0516667,Tumacacori,AZ,changing,300,Bright Amber Light over the Tumacacori Mtns, near Tumacacori, AZ, Shape Shifting Back and Forth to a Large Triangle +2013-09-17,41.0813889,-81.5191667,Akron,OH,unknown,7,I was driving home from and and looked up at the night sky. I saw one really sparkly object that left a really long white trail. As soo +2013-09-17,33.9533333,-117.3952778,Riverside,CA,circle,180,20-25 bright orange orbs in full moon night sky, formed a line and changed direction, then disappeared +2013-09-17,43.6613889,-70.2558333,Portland,ME,light,900,Looked like bright star moving erratically and flashing red and green litghts. +1986-09-18,37.7741667,-87.1133333,Owensboro,KY,cylinder,180,"Baton-shaped" object moving end-over-end in clear afternoon sky. +1986-09-18,40.2875,-74.1727778,Colts Neck,NJ,fireball,1800,ET Sighting in Colts Neck NJ 1986, shooting objects across the sky. +1987-09-18,40.7425,-84.1052778,Lima,OH,rectangle,480,I saw a battleship size ufo that was outlined with lights but was transparent at the same time. +1991-09-18,47.0380556,-122.8994444,Olympia,WA,changing,180,Single star morphs into Hoberman Sphere, rotates, reverts, turns red, divides, flies away in formation +1996-09-18,42.2708333,-83.7263889,Ann Arbor,MI,fireball,5,Falling white light made "u" turn and disappeared. +1997-09-18,38.6880556,-83.6094444,West Manchester,OH,changing,6300,My husband and I saw an object hovering in the sky north of our home at 4:15 a.m. E.S.T. September 18񫺍, Thursday. It looked like a +1997-09-18,30.1586111,-85.6602778,Panama City,FL,unknown,30,Looked like stars in the sky so far up/moveing fast +1998-09-18,40.8597222,-99.9869444,Cozad,NE,changing,30,I witnessed a distortion of the star field from the right to the left. North to south. +1998-09-18,38.4783333,-82.6380556,Ashland,KY,oval,120,short-lasting experience with small object in the sky. +1998-09-18,34.0286111,-117.8094444,Diamond Bar,CA,oval,60,Green Pulse light seen for the second time in Diamond Bar. Last year the same light went horizonal across the sky. It was traveling fas +1998-09-18,32.9594444,-117.2644444,Del Mar,CA,fireball,60,This was like a green colored light, like a star. It was lower than any other aircraft would be. It was decending, in an easterly dir +1998-09-18,40.7608333,-111.8902778,Salt Lake City,UT,triangle,12,Black (flush w/night sky) triangle craft flew directly overhead. This craft produced no sound. The only reasons we could identify the +1998-09-18,34.4888889,-118.6219444,Castaic,CA,fireball,2,Traveling north on I-5 in Castaic, seen a greenish-white brilliantly lit fireball. Perfectly round in size come out of the sky, at a do +1999-09-18,36.0305556,-75.6763889,Kill Devil Hills,NC,formation,10,5-6 pale orange lights brightness of major Orion constellation stars viewed at 33 dgr from horizen moving due south together for 45 dg +1999-09-18,32.5,-110.9205556,Catalina (35 Mi North Of Tucson),AZ,sphere,45,Walking on our ten acres toward our business I noticed a shinny,bright object hovering near power lines. The color was chrome like and +1999-09-18,44.7391667,-67.3905556,East Machias,ME,light,420,Flare Lights +1999-09-18,36.1658333,-86.7844444,Nashville,TN,circle,120,it was something moving slowly and high in the ski. not a plane or a helicopter but something. +1999-09-18,44.4161111,-118.9519444,John Day (Clyde Holliday Camp Ground, 7 Miles West Of),OR,light,1200,Six very high lights in the sky manuevered in different directions, turned abruptly with no radius, and one chased another. +1999-09-18,47.9130556,-122.0969444,Snohomish,WA,unknown,180,A vehicle of some sort appeared to be over the Snohomish/Arlington area that pulsed between a red and white light. There were also one +2000-09-18,40.6083333,-75.4905556,Allentown,PA,disk,300,White, disk shaped, and very fast. +2000-09-18,32.7152778,-117.1563889,San Diego,CA,oval,600,A ballon-like small derigible looking object moved in a straight path, unaffected by wind currents, at a constant speed of about 5 mph +2000-09-18,34.1747222,-86.8436111,Cullman,AL,light,3600,very quick moving object +2000-09-18,26.4972222,-82.0786111,St. James City,FL,changing,1800,Weird and we've got pictures, video and witnesses to prove it. +2000-09-18,38.2544444,-104.6086111,Pueblo,CO,sphere,120,Bright, yellow gold orb sighted west of Pueblo CO. +2000-09-18,40.5866667,-122.3905556,Redding,CA,flash,30,seen 3 flashed disappared over horizon 30 seconds and very high rate of speed!! +2000-09-18,31.1955556,-98.7177778,San Saba,TX,light,600,light appears from nowhere hovers for 10 minutes slowing moving right changes color and then disappears, +2000-09-18,35.9925,-94.5677778,Westville,OK,light,600,My husband was sitting outside looking at the stars when I heard him hollering for me. He pointed to the sky. I seen what looked like +2000-09-18,32.7152778,-117.1563889,San Diego,CA,oval,30,I went into my backyard to shut a gate. as i was walking i was looking at the night s sky, and to my surprise i saw an oval shaped dis +2001-09-18,42.2813889,-83.3863889,Wayne,MI,circle,2700,A round circle of white light split off into 3 circles which rotated around location of original circle every 2 or 3 seconds. +2001-09-18,33.4483333,-112.0733333,Phoenix,AZ,circle,10,Bright green object races across the early morning horizon one week after 9/11. +2001-09-18,44.9583333,-124.0166667,Lincoln City,OR,light,120,Orange/bronze flare of light over ocean, not moving. +2001-09-18,47.6063889,-122.3308333,Seattle,WA,light,30,Bright red light in the Seattle sky. +2002-09-18,35.9152778,-82.0647222,Spruce Pine,NC,light,300,what in the hell was it +2002-09-18,36.0838889,-89.8291667,Steele,MO,disk,300,Between 0745 and 0800 hrs going southbound on I-55 through the Missouri Bootheel the skies were partly cloudy (25% clouds) that an unid +2002-09-18,36.2680556,-89.9108333,Bragg City (Peach Orchard),MO,disk,600,Flying Saucer near Peach Orchard Gin +2002-09-18,36.7569444,-90.3927778,Poplar Bluff,MO,disk,600,Disk East of Poplar Bluff Seen and Feds come to investigate. +2002-09-18,35.0866667,-89.81,Germantown,TN,cylinder,4,Silver cylinder with bulbous ends appeared for four seconds near clouds in daylight and was photographed. +2002-09-18,45.6388889,-122.6602778,Vancouver,WA,other,300,the craft seemed very large,and had simeltaneous flashing red lights,all in a straight line. +2002-09-18,40.29,-76.9341667,Enola,PA,unknown,900,Lights in the sky above Harrisburg Pennsylvania +2002-09-18,40.2736111,-76.8847222,Harrisburg,PA,other,2700,There were a series of yellow and red light formations on the horizon of the night sky. +2002-09-18,40.4863889,-86.1336111,Kokomo,IN,light,600,Yellow lights seen above the Kokomo Indiana sky +2002-09-18,42.4391667,-123.3272222,Grants Pass,OR,other,1200,Noticed very bright color changing "star" 15 - 20% above horizon which had several smaller lights circle it. +2003-09-18,34.426944399999996,-77.5463889,Surf City (Topsail Island),NC,light,7200,Many craft coming from and returning to a paticular fixed object in the sky. +2003-09-18,34.698055600000004,-118.1358333,Lancaster,CA,sphere,60,Retired aerospace employee witnesses loud, "flying sphere" near Edwards AFB. +2003-09-18,26.7052778,-80.0366667,West Palm Beach,FL,cigar,60,A cigar shaped craft seen while on A1A north and then at Lake Worth pier 5-6 miles offshore. at around 3000 ft. +2003-09-18,35.9380556,-77.7908333,Rocky Mount,NC,flash,1,Rocky Mount, North Carolina car enveloped by an intense, transient green flash during Hurricane Isabel. +2003-09-18,32.2216667,-110.9258333,Tucson,AZ,circle,3600,I was outside with my husband and friend's when I looked up and saw something in the sky.one of the craft's looked closer than the +2003-09-18,35.6527778,-97.4777778,Edmond,OK,chevron,120,2/3 visible of a triangle with a murky white haze. +2003-09-18,38.8338889,-104.8208333,Colorado Springs,CO,rectangle,7200,Very bright, yellowish with dark splotches, an almost perfect parallelogram, seen near Pikes Peak, CO. +2003-09-18,34.6391667,-120.4569444,Lompoc,CA,flash,900,Bright red and orange lights darting back and forth made my cell phone lose reception and when they dissapeared my cell was working ok. +2003-09-18,47.6063889,-122.3308333,Seattle (Leschi),WA,sphere,60,Woman and daughter hear, and see, a very brightly lighted, spherical "ball of light" move across Lake Washington. +2004-09-18,34.1063889,-117.5922222,Rancho Cucamonga,CA,disk,900,Brite White and Red lights Have Video taped it. +2004-09-18,44.1025,-85.1469444,Marion,MI,disk,60,round shiny object overhead about 1000 ft and climbed in a stairstep manner like a homesick angel(very fast) and was gone +2004-09-18,41.52,-81.4888889,Lyndhurst,OH,light,1800,Bright, color changing first magnitude object hovers and dances for half an hour +2004-09-18,43.5611111,-91.6358333,Spring Grove,MN,diamond,14400,One very luminated bright light just hovering in the sky, than it would slowly fade,see a haze than re-appear. ((Celestial objects??)) +2004-09-18,40.4811111,-74.4836111,Voorhees,NJ,triangle,60,Triangle craft over southern NJ +2004-09-18,37.9413889,-93.3161111,Hermitage,MO,unknown,120,V formation of lights , glide across bottom of storm cloud. +2004-09-18,33.9411111,-84.2136111,Norcross,GA,sphere,600,saw what is beleived to be a weather balloon hovering and then disappear +2004-09-18,41.85,-87.65,Chicago,IL,circle,480,Would it be possible they were stars? +2004-09-18,47.6063889,-122.3308333,Seattle,WA,triangle,120,Black Triangle over Lake Washington +2004-09-18,35.3069444,-106.4241667,Placitas,NM,disk,1800,Lights in the sky +2004-09-18,42.8863889,-78.8786111,Buffalo,NY,formation,10,We observed 7 circular lights in V formation traveling WNW-ESE. Lights in the rear were criss-crossing within the formation. They trave +2004-09-18,40.7933333,-77.8602778,State College,PA,light,5,Light that zigzaged across the sky and dissapeared +2005-09-18,42.5916667,-88.4333333,Lake Geneva,WI,light,600,BRIGHT, GOLD, FLYING BALL. Moving from one horizon to overhead to up and away at a constant speed +2005-09-18,47.2530556,-122.4430556,Tacoma,WA,triangle,1200,V/Triangular Object over Tacoma Washington +2005-09-18,41.0219444,-73.9477778,Tappan,NY,light,2700,and saw a huge light in the sky were it hovered for a time . +2005-09-18,39.7588889,-84.1916667,Dayton,OH,fireball,60,A fireball in the southwestern hemosphere that was five times the size of a planet that lasted for 60 seconds +2005-09-18,47.7297222,-116.7691667,Dalton Gardens,ID,light,2,Night time view of (possible space craft) +2005-09-18,37.4136111,-79.1425,Lynchburg,VA,cigar,15,maybe sighting of ISS? +2005-09-18,41.7469444,-88.0502778,Woodridge,IL,light,120,I live up on a relatively large hill when I exited my car i looked southwest towards a landfill you can see about 2-3 miles from my hou +2005-09-18,39.5955556,-74.8819444,Collings Lakes,NJ,other,20,not a UFO, but what I believe to be an actual alien in my wooded backyard. +2005-09-18,34.6086111,-98.39,Lawton,OK,fireball,1200,4 fireballs orbiting eachother for 20 min. +2005-09-18,43.2363889,-87.9844444,Mequon,WI,oval,1800,Oval objects with red lights fly at sporadic rates of speed and change direction seemingly randomly. +2005-09-18,26.1272222,-80.2333333,Plantation,FL,light,300,While driving in my jeep with my top down an object in the sky caught me eye so I pulled over to watch it. It looked like an extremely +2006-09-18,37.775,-122.4183333,San Francisco,CA,light,60,Two Bright Purple lights fly strangely through clouds over San Fransisco State University +2006-09-18,42.7511111,-122.4877778,Prospect,OR,sphere,1200,Ball of light seen over Prospect, Oregon +2006-09-18,42.2458333,-84.4013889,Jackson (Near; I-94),MI,other,10800,I saw an object/light in the sky unlike any others I have ever heard of. +2007-09-18,34.0233333,-84.6155556,Kennesaw,GA,fireball,1,Mysterious light traveling North over Kennesaw, GA +2007-09-18,45.5236111,-122.675,Portland,OR,light,2,Earth shaking explosion followed by bluish green glow on hill above home. +2007-09-18,43.2127778,-75.4561111,Rome,NY,rectangle,2,2 UFO's. 1 of them, displayed beautiful colors of ruby red, royal blue lasted all night. ((NUFORC Note: Venus and Mars? PD)) +2007-09-18,33.6694444,-117.8222222,Irvine,CA,circle,300,several bluish green lights created a circular object. +2007-09-18,35.4872222,-80.6219444,Kannapolis,NC,triangle,10,triangular reddish reflective object flying South +2007-09-18,35.3733333,-119.0177778,Bakersfield,CA,triangle,60,Triangle craft, 3 corner lights one center. Flew straight course but made partial spines on its axis left and right. +2008-09-18,32.7152778,-117.1563889,San Diego,CA,triangle,3600,I saw five crafts in the sky. +2008-09-18,36.1538889,-95.9925,Tulsa,OK,cone,180,AWESOME SIGHT.... couldn't believe our eyes. +2008-09-18,41.6619444,-86.1586111,Mishawaka,IN,circle,45,a round object, with a loud noise and two green lights on the top, spinning, It was there and just like that it was gone +2008-09-18,38.9905556,-77.0263889,Silver Spring,MD,changing,900,object drifted across the moon as the day was setting, it was odd to see a object coming from above the moon, so i looked really caref +2008-09-18,36.1538889,-95.9925,Tulsa,OK,cone,120,Two syncrinized space crafts moving in and out of existance through Tulsa Sky's. +2008-09-18,38.801944399999996,-81.3511111,Spencer,WV,unknown,300,unidentified object appeared to be following contrail of jet airplane +2008-09-18,43.8052778,-71.8130556,Rumney,NH,light,5,Strange sighting in Rumney New Hampshire +2008-09-18,33.4147222,-111.9086111,Tempe,AZ,light,120,It appeared to be a large white star, but it was slowly moving NNE. It sped up, changed into 2 smaller red lights, then vanished. +2008-09-18,39.9783333,-86.1180556,Carmel,IN,other,180,Low flying, horizontally flashing strobe lights. (Reminescent of CE3K) +2008-09-18,40.7280556,-74.0780556,Jersey City,NJ,disk,600,slow flying round shaped object with many lights flying at night in Jersey City,NJ +2008-09-18,44.0536111,-71.1288889,North Conway,NH,rectangle,180,Last night heading home from work my wife and the three kids picked me up and on our way home over Settlers Green there was an object i +2009-09-18,33.6602778,-117.9983333,Huntington Beach,CA,light,60,Two bright blue lights in western sky southern california +2009-09-18,40.9113889,-73.7827778,New Rochelle,NY,diamond,45,Slow moving star light +2009-09-18,40.8538889,-74.8294444,Hackettstown,NJ,light,30,A pinpoint star-like light appeared and illuminated a foggy area beneath it, much like a flash-light, then diminished,. +2009-09-18,39.4561111,-77.9641667,Martinsburg,WV,sphere,45,stationary object opened from the bottom a spotlight type beam that slowly brightened /expanded then faded away slowly then up in sky +2009-09-18,43.0716667,-70.7630556,Portsmouth,NH,light,20,single point of white light with a long funnel shaped trailing white light lasted for appx 15 - 20 seconds then faded out it was appx.2 +2009-09-18,41.9202778,-79.6405556,Corry,PA,light,60,Bright light and beam vanishes into thin air +2009-09-18,40.26,-74.2741667,Freehold,NJ,light,20,Strange light over Freehold, NJ +2009-09-18,37.9408333,-93.2075,Preston,MO,triangle,300,Ufo in Preston, Mo +2009-09-18,43.6136111,-116.2025,Boise,ID,light,1200,A red light North of Boise, erratic/still, movment! +2009-09-18,40.6233333,-79.73,Natrona Heights,PA,fireball,120,Unidentified flame flying low over natrona heights +2009-09-18,43.6136111,-116.2025,Boise,ID,circle,1800,Circle of intensely bright red lights that initially spewed out falling lights and hovered for a long time before receding slowing up. +2009-09-18,40.5866667,-122.3905556,Redding,CA,disk,8,Soft orange glowing diamond shape with circular center +2009-09-18,45.3180556,-85.2583333,Charlevoix,MI,circle,300,4 Orange Lights Observed In The Sky +2009-09-18,43.6136111,-116.2025,Boise,ID,light,900,Bright red light in sky moving very slow and at a random pace. +2009-09-18,41.8666667,-72.45,Rockville,CT,oval,120,Fast moving, oval shaped ufo with orange light that went back and forth on the bottom. +2009-09-18,38.6272222,-90.1977778,St. Louis,MO,formation,120,6 glowing orange lights with a center blue light seen in St. Louis +2009-09-18,43.6136111,-116.2025,Boise,ID,light,1200,Red, slowly pulsating light, that hovered in the north for twenty minutes. +2010-09-18,38.2538,-94.3356,Butler,MO,sphere,1200,brass colored sphere moving around power pole and transformer, next to Convenience Store at corner of our block +2010-09-18,34.1388889,-118.2130556,Eagle Rock,CA,sphere,10,Glowing Sphere over Eagle Rock, CA +2010-09-18,38.005,-121.8047222,Antioch,CA,diamond,2700,Large bright white lights flashing with blue lights on two sides hovering in western sky which was dark at the time and slightly cloudy +2010-09-18,43.1547222,-77.6158333,Rochester,NY,egg,120,Semi-egg shaped object floating above local highway 20-25 feet in the air. +2010-09-18,40.8255556,-73.4680556,Woodbury,NY,light,600,3 lights obsereved over nys thruway while helicopters persued. +2010-09-18,38.6861111,-76.535,Chesapeake Beach,MD,circle,300,9-18-10. Six round orange lights evenly spaced, moving in syncronized formation curving upward until disappearing one by one. +2010-09-18,40.7555556,-73.5880556,Westbury,NY,fireball,600,Three orange lights in the shape of the big dipper, then 2 more came into view. +2010-09-18,38.2541667,-85.7594444,Louisville,KY,triangle,3600,I seen about 12 objects that were in the shape of a triangle, that had lights on them. Some looked as if they were burning. There was n +2010-09-18,41.4827778,-87.3327778,Merrillville,IN,teardrop,3,One, elongated teardrop shaped flying object about 13 feet high in the sky and maybe 500 ft away. +2010-09-18,42.2155556,-79.8344444,North East,PA,fireball,20,Fireball over North East Pennsylvania moves across Lake Erie towards Canada +2010-09-18,40.6883333,-75.2211111,Easton,PA,sphere,300,Raubesville Pa, Bright orange star shaped light fast moving, hovered and the shot back into the sky again. +2011-09-18,40.0394444,-84.2033333,Troy,OH,light,720,Pulsating red light over Troy, Ohio on 18 Sept 2011. +2011-09-18,38.0194444,-122.1330556,Martinez,CA,light,3600,Extremely bright light seen moving and stopping for over an hour +2011-09-18,28.0611111,-82.3025,Thonotosassa,FL,triangle,300,Bright lights over I4 just before exit 14. +2011-09-18,42.4997222,-85.4080556,Delton,MI,unknown,1800,At 530 am i observed a flickering starlike light slowly moving around a small area in the sky. it was far away and very unfamiliar. +2011-09-18,33.3061111,-111.8405556,Chandler,AZ,teardrop,3600,Tear Dropped Shaped Object and Orb Cluster Observed In Arizona +2011-09-18,33.2486111,-111.6336111,Queen Creek,AZ,light,2400,We saw a stationary glowing ball in South Eastern sky. ((NUFORC Note: Possible star?? PD)) +2011-09-18,42.9763889,-88.1083333,New Berlin,WI,triangle,600,4 Red/Orange Triangular shaped lights merge into a single light. +2011-09-18,40.4533333,-111.7772222,Alpine,UT,circle,180,Red, circular object floating above Alpine, Utah...STRANGE! +2011-09-18,42.2619444,-110.1938889,La Barge,WY,circle,900,Strange object in the mountains of western wyoming wittnessed on 3 consecutive years on almost the same exact day every year. +2011-09-18,39.1502778,-123.2066667,Ukiah,CA,light,7200,Bright but silent slowly moving light with occasional red flash low in sky east of Ukiah, CA ((NUFORC Note: Possibly Sirius? PD)) +2011-09-18,37.6688889,-122.0797222,Hayward,CA,circle,1800,Bright, non wavering light. solid circle. ((NUFORC Note: Possible star?? PD)) +2011-09-18,36.175,-115.1363889,Las Vegas,NV,sphere,600,Bluish dim glow with redish rotating spheres +2011-09-18,39.7327778,-75.1319444,Pitman,NJ,circle,2,Sat night, 9/17/11 Pitman and Washington twp NJ, light comes down to earth and then shoots back up on an angle. +2011-09-18,26.1416667,-81.795,Naples,FL,triangle,40,TRIANGLE LIKE WITH AN ORB.. +2012-09-18,33.3702778,-112.5830556,Buckeye,AZ,circle,7200,Redish orange orbs in the south sky were just floating about airplane hight and after about 5 minutes they would dim out then they reap +2012-09-18,47.9544444,-117.4758333,Deer Park,WA,light,2,Bright white star-like light flashes then disappeared. +2012-09-18,37.8216667,-121.9988889,Danville,CA,disk,6,Near miss. +2012-09-18,40.6877778,-83.2125,Morral,OH,light,300,Flashing lights and bright white light in bathroom with me. +2012-09-18,42.0083333,-91.6438889,Cedar Rapids,IA,oval,600,Shiny oval objects no wings and no sound +2012-09-18,47.2530556,-122.4430556,Tacoma,WA,light,50,Second night of Very bright square lights. ((NUFORC Note: We suspect a sighting of a twinkling star. PD)) +2012-09-18,33.4708333,-81.975,Augusta,GA,circle,10,Nine lights on a circular object appeared and disappeared twice while I was riding on the I-20W towards Atlanta... +2012-09-18,35.9605556,-83.9208333,Knoxville,TN,light,8,Two bright lights in the sky moving in coordinated efforts, my boyfriend and I witnessed the same event. +2012-09-18,36.3047222,-86.62,Hendersonville,TN,disk,120,Reddish disc moving steadily accross the sky, Hendersonville, TN. +2012-09-18,41.1419444,-87.8611111,Bradley,IL,egg,15,Two small football shaped objects locked in formation with no lights. +2012-09-18,36.7533333,-86.1905556,Scottsville,KY,formation,3600,Soundless Aircraft rises from tree line and flies away +2012-09-18,41.1238889,-100.765,North Platte,NE,triangle,3,Large V-shape formation of lights +2013-09-18,38.7669444,-90.4113889,Bridgeton,MO,light,180,Orange round light in the sky. +2013-09-18,36.7280556,-76.5838889,Suffolk,VA,triangle,900,We witnessed an object hovering approx 500-600 ft high from a distance of approx 1/4 mile away with orange/red illuminating lights. +2013-09-18,34.1422222,-87.9886111,Hamilton,AL,fireball,300,Two fireball traveling northwest on a level plain with a slight zig zag motion! +2013-09-18,40.7933333,-73.4155556,Melville,NY,cylinder,120,Clear cloudless sky and at noon, I saw a silver cylinder along with my wife! +2013-09-18,38.9905556,-77.0263889,Silver Spring,MD,circle,120,Saw grey spherical craft in sky just sat still for abt 60 seconds. I took a picture then it disappeared. +2013-09-18,46.8219444,-123.095,Rochester,WA,circle,1200,Singular light seen low in evening sky near Rochester, WA. ((NUFORC Note: Venus?? PD)) +2013-09-18,39.0263889,-122.6708333,Clearlake Oaks,CA,diamond,900,Diamond shaped white light four time the brightness of Venus in WSW sky visible for 15 minutes. +2013-09-18,40.8358333,-78.8766667,Smithport,PA,light,1200,The object was seen looking west bearing 265 degrees and about 10 degrees from horizon. Ruled out landing lights from aircraft due to +2013-09-18,47.6447222,-122.6936111,Silverdale,WA,light,1140,Orange orbs, lights in the night sky. +2013-09-18,39.2902778,-76.6125,Baltimore,MD,light,180,Red and green light over north east Baltimore. +2013-09-18,39.6283333,-84.1594444,Centerville,OH,triangle,120,Large Triangle shaped flying object was perfectly stationary then moved in a curve away from us over Centerville, Ohio off 675. +2013-09-18,43.6136111,-116.2025,Boise,ID,formation,35,Formation of 2-3 crafts. +2013-09-18,47.6063889,-122.3308333,Seattle,WA,light,10,Light in Sky Warps towards space. +2013-09-18,38.2119444,-85.2236111,Shelbyville,KY,cigar,240,Cigar shaped fireball ascending up diagonally then disappeared. +2013-09-18,38.2119444,-85.2236111,Shelbyville,KY,cigar,240,It was red and white then turned into a fireball going upwards then disappeared. +2013-09-18,28.5491667,-81.7730556,Clermont,FL,light,300,Witnessed 3 separate orange glowing orbs ascending up in the sky in a slant all moving slow not in unison. They came together. +2013-09-18,47.9791667,-122.2008333,Everett,WA,fireball,45,Fireball seen at the same time two other reports from my town were reported. +2013-09-18,43.6808333,-114.3627778,Ketchum,ID,circle,90,Bright orange light in the sky over the Wood River Valley, Hailey Idaho +2013-09-18,34.0513889,-84.0713889,Suwanee,GA,light,300,Red and blue light, so at first I thought it was a plane, way off in the distance and high- like a plane at full altitude. +2013-09-18,35.1477778,-114.5675,Bullhead City,AZ,unknown,1500,Spotted from Bullhead city az craft in north eastern sky hovering at around 30000 feet 30 min so far. +2013-09-18,34.2072222,-84.1402778,Cumming,GA,light,20,A blur light over GA 400 between exit 15 and 16. September 18 and september 29th. Watched the blue light for 15seconds leaned foreword +1976-09-19,40.1461111,-74.7122222,Bordentown,NJ,oval,3600,Classic case of "Missing Time" in Bordentown New Jersey in 1976 +1979-09-19,39.2902778,-76.6125,Baltimore,MD,light,60,saw three lights in a triangle shape as I looked to the left I saw a single light following the others +1986-09-19,36.8352778,-76.2986111,Portsmouth,VA,unknown,600,A trail of smoke +1996-09-19,41.5052778,-82.0283333,Avon Lake,OH,changing,180,ufo spotted 9-19-96 on the shores of Lake Erie in Avon Lake, Ohio, United States of America +1997-09-19,41.6302778,-87.8538889,Orland Park,IL,rectangle,240,When pulling out of my driveway headed north I noticed a stationary bright white light above the west horizon which suddenly sped off t +1997-09-19,47.6063889,-122.3308333,Seattle,WA,other,120,On the night described above, We were getting ready to leave a freind's house in West Seattle. I was the first one out the door. While +1998-09-19,35.9786111,-114.8316667,Boulder City,NV,triangle,300,Silent, triangular craft, lined with pale blue/white lights, headed south +1998-09-19,47.6063889,-122.3308333,Seattle,WA,disk,900,Disk hovered over highway +1998-09-19,47.6063889,-122.3308333,Seattle,WA,egg,180,The "craft" had about 6 white lights around its perimeter and a redish one in the middle. The thing was moving slowly towards the west, +1999-09-19,47.6063889,-122.3308333,Seattle,WA,triangle,15,Three glowing triangular objects moved from east to west at a high rate of speed, silently and in perfect formation. +1999-09-19,30.3411111,-95.0852778,Cleveland,TX,cigar,900,coming down new salem road saw objects in sky again..only three cigar shape with lights going around +1999-09-19,27.9472222,-82.4586111,Tampa,FL,flash,15,HI PETER괒AMEST DOG STARTED BARKING WENT TO FRONT DOOR APPROX 40DEG ABOVE EST HORIZ FAST MOVING LIGHT FLASHING(WHITE)TAKE CARE GOOD H +1999-09-19,34.4208333,-119.6972222,Santa Barbara,CA,disk,1800,Wife saw it first looking north, altitude approx. 1000-2500 feet, then lost it in marine cover. Hovered, slight climb, hover, slight cl +1999-09-19,34.4208333,-119.6972222,Santa Barbara,CA,other,480,I observed an object rising slowly up from about 2000 ft. until it disappeared into the low clouds. It was star shaped and rotating. +1999-09-19,39.7155556,-82.9530556,Ashville (2 Miles South Of),OH,other,2,Weird brown triangular object +1999-09-19,47.7625,-122.2041667,Bothell,WA,light,10,Observed through binoculars a bright light moving from north to south at a high rate of speed. +1999-09-19,39.9522222,-75.1641667,Philadelphia,PA,disk,120,Three circular craft in a triangle formation passed in a northerly direction +2000-09-19,37.7527778,-100.0166667,Dodge City,KS,sphere,180,Bright yellow gold orb sighted east of Dodge City KS with aircraft chasing. +2000-09-19,38.2494444,-122.0388889,Fairfield,CA,fireball,180,2 fire balls in the sky, apparently communicating with each other +2000-09-19,34.1511111,-118.4483333,Sherman Oaks,CA,other,15,My wife and I saw an Ǝ' shaped white light in the sky move very quickly (vertically)across a great distance, then disappear. +2000-09-19,29.7630556,-95.3630556,Houston,TX,sphere,1800,Silver sphere the size of a VW bug seen in the northern sky of downtown Houston Texas for about 30 min moving in different directions. +2000-09-19,47.1633333,-122.0255556,Buckley,WA,triangle,900,Six triangle shaped crafts flew over white river high school at about 12 noon on sept. 19/2000 +2000-09-19,41.1538889,-80.7016667,Girard,OH,circle,600,At first it seemed random then it was precision all the way and the last one went back and out first 2 hovered. +2000-09-19,38.2544444,-104.6086111,Pueblo,CO,triangle,600,Strange craft over Pueblo Colorado +2000-09-19,37.8402778,-85.9491667,Radcliff,KY,light,12,The lght broke into 3 lights and dove into the earth +2000-09-19,41.9475,-80.5544444,Conneaut,OH,light,300,bright lights that change direction at great speed +2000-09-19,41.1575,-81.2422222,Ravenna,OH,formation,5,Formation of 4-5 huge boomerang shaped objects, fully lit, silent, shooting star speed, flying in perfect unison. +2000-09-19,34.0027778,-84.1447222,Duluth,GA,light,4,Dim light in the sky like a faint star +2000-09-19,36.9613889,-120.0597222,Madera,CA,light,3600,this is not the frist time we saw this, about a year we saw it for more there 30 min the next night we saw it for about 10-15min tonigh +2000-09-19,45.5872222,-122.3983333,Camas,WA,fireball,3,fire ball fell for 3 sec. than out of site. +2000-09-19,33.3061111,-111.8405556,Chandler,AZ,flash,1500,Bright white flashes of light south of Chandler. Very slowly moving from West to East, at a high altitude. My husband and I watched i +2000-09-19,33.5091667,-111.8983333,Scottsdale,AZ,flash,300,Flash of white light every 5 seconds moving very slowly from West to East thru The Great Square/Pegusus. +2001-09-19,36.4336111,-99.39,Woodward,OK,triangle,300,Silvery triangle in Oklahoma skies..changes directions instantly +2001-09-19,36.4336111,-99.39,Woodward,OK,triangle,300,Silvery triangle object in Oklahoma skies +2001-09-19,37.6305556,-122.41,San Bruno,CA,other,6300,Four flying objects that at times were stationary and also moved at tremendous speed +2001-09-19,47.6063889,-122.3308333,Seattle,WA,unknown,180,Possible Aurora Sighting Over Seattle +2001-09-19,35.2219444,-101.8308333,Amarillo,TX,disk,7200,LARGE SAUCER . MANY LIGHTS . 2 HRS.PLUS. TRAVELING EAST FROM AMARILLO ON I-40.2230 HRS. +2002-09-19,34.2133333,-118.5711111,Winnetka,CA,triangle,3600,5 objects in the Eastern San Fernando Valley sky. +2002-09-19,38.5580556,-91.0119444,Washington,MO,triangle,3600,Triangle shaped object with lots of lights showed sings of commuication with flash light +2002-09-19,45.6188889,-123.1130556,Banks,OR,other,180,Wing shaped UFO spotted above the Banks city area. +2002-09-19,42.0341667,-91.5975,Marion,IA,disk,180,i was on hole 2 at hunters ridge and i saw a shiney silver shaped suacer the top part was spinning and the bottom part was spinning a d +2002-09-19,36.3008333,-119.7819444,Lemoore,CA,light,1200,UFO??? +2002-09-19,36.9752778,-121.9522222,Capitola,CA,cone,45,An object that looked like a bright white circle with a cone shaped tail flew with an irregular flight pattern and then disappeared. +2002-09-19,34.1394444,-117.9763889,Duarte,CA,other,600,Missle Launch? +2002-09-19,36.8525,-121.4005556,Hollister,CA,fireball,900,looked like a single landing light with a vapor trail that grew and grew till it was 8 to 10 times the size of the object, then with a +2002-09-19,36.8525,-121.4005556,Hollister,CA,unknown,300,I was following a contrail which was not the usual contrail, it had a very robust signature and a glowing aspect to it. It was heading +2002-09-19,35.1894444,-114.0522222,Kingman,AZ,fireball,1200,light trail continued to glow 15 minutes after the object disappeared +2002-09-19,37.3541667,-121.9541667,Santa Clara,CA,light,120,An extremely bright round light in the sky about 10 degrees from the zenith, was observed shortly after dusk. The diameter and height o +2002-09-19,39.1722222,-120.1377778,Tahoe City,CA,sphere,420,it looked like a comet streaking through the sky. cool. +2002-09-19,37.4419444,-122.1419444,Palo Alto,CA,other,45,white light and gaseous tail resembling a comet tracking through upper atmosphere, which exploded like a firework +2002-09-19,33.6408333,-117.6022222,Rancho Santa Margarita,CA,unknown,15,Object leaves illuminated cloudlike spiralling path in the night sky, before disappearing +2002-09-19,40.5866667,-122.3905556,Redding,CA,light,10,bright white light in evening sky with cone shaped tail exploded and vanished. +2002-09-19,37.775,-122.4183333,San Francisco,CA,fireball,60,while light, very high in the outh eastern sky on horizontal or slightly upward trajectory. white flare behind it - conical shaped. mov +2002-09-19,37.3541667,-121.9541667,Santa Clara,CA,sphere,120,UNKNOWN SPACE DEBRIS TRAVELING NORTH WITH A VERY LARGE CONE SHAPE VAPOR TRAIL +2002-09-19,38.005,-121.8047222,Antioch,CA,light,120,Glowing ball that left a vapor trail. +2002-09-19,33.8169444,-118.0363889,Cypress,CA,changing,180,I don't know if it was a UFO...but I have never noticed a plane go in a straight line up so fast and with a red light leaving a trail o +2002-09-19,37.948055600000004,-122.0597222,Pleasant Hill,CA,cylinder,60,An object with a trailing white narrow line +2002-09-19,33.5091667,-111.8983333,Scottsdale,AZ,light,120,Bubble with stationary beam shining into it, lightning bolt coming out of the bottom. +2002-09-19,34.005,-118.8091667,Malibu,CA,sphere,1800,bright, large, white sphere, with flaming orange contrails over Pacific Coast Highway +2002-09-19,32.7152778,-117.1563889,San Diego,CA,changing,30,Perfect cone shape light in non foggy conditions turns to a spider web shape then fades away. +2002-09-19,33.9133333,-78.3041667,Holden Beach,NC,unknown,1800,Red and white lights seen over Holden Beach, NC +2002-09-19,28.5388889,-80.6722222,Merritt Island,FL,chevron,300,The movement of the three lights was strange first vertical then horizontal +2002-09-19,33.6888889,-78.8869444,Myrtle Beach,SC,light,15,It was small , but HOT in color and pulsed for about 4-5 burts then disappeared, reapeared once more in a new direction +2002-09-19,40.8372222,-81.2597222,Louisville,OH,unknown,45,unknown aircraft seen trailed at low altitude be helicopter in stark county OH. +2003-09-19,40.3469444,-74.0647222,Red Bank,NJ,flash,60,NJ: Bright Blue and Orange lights (2X) at approx 01:15 am (as seen from exit 114 of the GSP) +2003-09-19,35.3786111,-81.3791667,Cherryville,NC,rectangle,600,I WAS FISHING FROM A PIER IN A SMALL VALLEY BEHIND MY HOUSE WHEN THE OBJECT APPEARED. IT LOOKED TO BE ABOUT 400 FEET IN THE AIR WHEN I +2003-09-19,40.1672222,-105.1013889,Longmont,CO,light,900,Clusters of lights flying abnormaly shortly after daybreak. +2003-09-19,35.1258333,-117.985,California City,CA,cylinder,300,"tiny" flying cylinder (not a drone, Predator, cruise missile, etc.) no wings/rudder/no exhaust/no prop +2003-09-19,38.5891667,-121.3016667,Rancho Cordova,CA,circle,120,Red-orange ball of light over the skies of Sacramento, CA. +2003-09-19,30.7911111,-91.1305556,Ethel,LA,oval,300,One the date stated me and my father were working in the yard. I am sort-of a big UFO fan and I often "search the sky". I looked up and +2003-09-19,30.7911111,-91.1305556,Ethel,LA,oval,300,THEY WENT CRAZY +2003-09-19,34.6627778,-106.7758333,Belen,NM,oval,37800,Intense glowing object changing colors +2003-09-19,35.0844444,-106.6505556,Albuquerque,NM,light,300,Bright red light in Albuquerques southwestern sky. +2003-09-19,35.0844444,-106.6505556,Albuquerque,NM,sphere,3600,Bright star like light visible in daylight, faded to faint star at night. +2003-09-19,38.5130556,-90.4358333,Fenton,MO,sphere,120,red spheres in the sky +2003-09-19,37.6486111,-118.9711111,Mammoth Lakes,CA,light,300,Point that would shift left or right as it slowly moved downward. +2003-09-19,39.5147222,-86.7938889,Cloverdale,IN,other,5,I saw a large red circle and a few small red circles. +2003-09-19,39.6861111,-74.9955556,Williamstown,NJ,triangle,30,Two Triangle Shaped UFOs in Williamstown, New Jersey. +2003-09-19,39.0216667,-105.7952778,Hartsel,CO,light,300,I was looking at the sky Southeast of my location in rural Hartsel, Colorado. There was a very bright light, and I saw flashes of red +2003-09-19,32.8138889,-96.9486111,Irving,TX,cigar,10800,WHAT HAPPEND IN THOSE COUPLE OF HOURS WE CANT EXPLAIN +2003-09-19,38.0608333,-97.9294444,Hutchinson,KS,triangle,20,The craft appeared and flew over than dissappeared. +2004-09-19,39.7011111,-89.1230556,Blue Mound,IL,cigar,10,The cigar shaped craft moved fast and extremely sharp turns then dissapeared in a blue light. +2004-09-19,40.7988889,-81.3786111,Canton,OH,cigar,15,SEPT.19ᄴ 16:35HRS 4:35PM BRIGHT SILVER CIGAR OR BLIMP SHAPE OBJECT MOVING VERY FAST N.E.TO S.W. +2004-09-19,40.6677778,-81.2575,Waynesburg,OH,cigar,60,Large silver cigar shaped object moving rapidly NE to SW +2004-09-19,33.4936111,-117.1475,Temecula,CA,light,1200,Light turning on and off +2004-09-19,42.9955556,-71.4552778,Manchester,NH,flash,120,At approximately 20:35hrs greater than what conventional aircraft (40+ thousand feet) a brightness of two very strong white lights appe +2004-09-19,33.8358333,-79.0480556,Conway,SC,light,8,3 or 4 lights in circular or triangular pattern with one trailing behind ((NUFORC: Satellites? PD)) +2004-09-19,41.395,-82.5552778,Huron,OH,light,120,Three light able to move very quickly +2004-09-19,36.3133333,-82.3536111,Johnson City,TN,egg,480,College Professor reports acorn shaped anomolous object +2005-09-19,38.9730556,-123.1152778,Hopland,CA,other,120,I have in the past thought I saw, or hoped that I saw, a UFO. Now I know I have never before seen something like this. +2005-09-19,33.6694444,-117.8222222,Irvine,CA,circle,480,The objects were a whitish light in color and moved interactively +2005-09-19,43.5277778,-71.4708333,Laconia,NH,disk,35,disk seen hovering beneath a cloud +2005-09-19,32.0280556,-110.0380556,Dragoon,AZ,light,300,Seeing a Group of shiny UFO's while a Military plane "flies low" +2005-09-19,25.7738889,-80.1938889,Miami,FL,other,30,Objects photographed over Miami +2005-09-19,33.4483333,-112.0733333,Phoenix,AZ,light,30,Bright white light - brighter than North Star, no visible blinks or flicker - moved directly UP/out of the atmosphere, and fast. +2005-09-19,44.0747222,-89.2877778,Wautoma,WI,circle,3,Two bright lights in the evening sky +2005-09-19,43.5391667,-89.4625,Portage (Near),WI,light,3,Lights in the sky around Portage seen on HWY 51 +2005-09-19,40.015,-105.27,Boulder,CO,cigar,10,BOOMERANG shaped. no lights on craft. Nighttime sighting. DEFINITLY under intelligent control. utterly silent. +2005-09-19,41.9233333,-85.5283333,Centreville,MI,other,300,It looked like a giant Fourth of July sparkler roaming the sky. +2005-09-19,34.0027778,-84.1447222,Duluth,GA,light,180,2 different moving lights over Duluth. +2005-09-19,43.5391667,-89.4625,Portage,WI,formation,1200,Four orange lights in a row with a single orange light to the lower right of them. +2005-09-19,38.2919444,-122.4569444,Sonoma,CA,diamond,300,09/19/05 about 5-10 minutes at approximatley 23:30 hours, diamonds shaped Red Blue Yellow White flickering lights. +2005-09-19,39.8208333,-84.0194444,Fairborn,OH,triangle,20,I am licensed radio operator and a trained weather spotter. On this evening I was outside to make weather observations while attempting +2005-09-19,35.5955556,-78.7316667,Willow Springs,NC,disk,1800,This is the third sighting I have had. +2006-09-19,32.7355556,-97.1077778,Arlington,TX,egg,30,Oval UFO streking southward in the DFW area, going about 1ꯠ mph silently. +2006-09-19,40.305,-87.7008333,Henning,IL,sphere,300,large shinning yellow-white sphere moving SSE,slowly then disappear, smaller red disc accompanying object stopped and remain in sight +2006-09-19,35.2044444,-89.8738889,Bartlett,TN,sphere,7,After a sky glow, a bright object moved rapidly at low altitude without sound and parallel to the ground. +2006-09-19,30.3116667,-95.4558333,Conroe,TX,light,5,6 small circular subdued lights in triangular formation slowly traveling across night sky +2007-09-19,38.4147222,-86.9994444,Ireland,IN,cylinder,20,Long red line with blinking red lights, that flew straight up into the stars out of site. +2007-09-19,28.0833333,-80.6083333,Melbourne,FL,light,7,I was standing on my porch smoking a cigarette at approximately 8:40 PM It was cloudy with pretty low clouds when I thought that out o +2007-09-19,33.9838889,-109.7463889,Hawley Lake,AZ,unknown,300,Me and a friend of mine went camping in hawley lake arizona which is apache reservation.My friend and i were on our last day at the lak +2007-09-19,42.6425,-73.7433333,Rensselaer,NY,changing,300,Object flying west to east stoped and hovered changed shape into two disks and shot straight up +2007-09-19,42.9486111,-95.0116667,Webb,IA,light,420,Large orange lites in straight line formation coming on one at a time then going off simutaneously, no sound. Bt moving quickly. +2008-09-19,39.0541667,-84.0530556,Williamsburg,OH,light,900,my wife and i observed what appeared to be a orange light that was moving across the eastern sky from Williamsburg, OH. on the 18th of +2008-09-19,39.8366667,-105.0366667,Westminster,CO,light,30,Star like light that flew off into space then became no longer visible +2008-09-19,34.4838889,-114.3216667,Lake Havasu City,AZ,unknown,300,Large Shade Spots with no corresponding objects +2008-09-19,40.7652778,-73.8177778,Flushing,NY,cigar,30,Two crafts moving over Flushing, NY +2008-09-19,34.0522222,-118.2427778,Los Angeles,CA,fireball,15,Two fireballs shot across the sky towards downtown los angeles +2008-09-19,38.6038889,-89.8072222,Lebanon,IL,triangle,900,shaped craft was flying very low and very slow directly over my vehicle +2008-09-19,35.8966667,-77.5361111,Tarboro,NC,light,120,Large bright light traveling northeast from the area near the planet Jupiter +2008-09-19,40.7141667,-74.0063889,New York City (Staten Island),NY,cylinder,300,UFO spotted on 9/19 at 8:00 PM near Newark Airport +2008-09-19,40.6638889,-74.2111111,Elizabeth,NJ,disk,15,U.F.O Spotted by teen, At night (21:03) Giving out 5 colors or more of light +2008-09-19,34.1975,-119.1761111,Oxnard,CA,circle,60.3,red circle in the skys of oxnard +2008-09-19,33.7797222,-116.4644444,Cathedral City,CA,light,5,I witnessed a tiny dot of light move across the sky laterally at a VERY high rate of speed. +2008-09-19,42.0333333,-70.9597222,East Bridgewater,MA,formation,180,1 large bright, white, round object and 2 smaller ones on either side of the larger one moving West to East in about 3 minutes. +2008-09-19,29.7630556,-95.3630556,Houston,TX,circle,180,Two star-like objects were seen high in the sky both moving in one direction +2008-09-19,35.2827778,-120.6586111,San Luis Obispo,CA,changing,360,a star that turned 10 times its size, got dim again, and then black, over and over , moving by perfumo canyon +2009-09-19,39.9522222,-75.1641667,Philadelphia,PA,fireball,8,What did I see, a shooting star or is it something that moves faster then a plane! +2009-09-19,38.7191667,-94.4583333,Peculiar,MO,oval,5,Oval shaped object moving at extremely high rate with low light on opposite edges. +2009-09-19,42.3702778,-87.9019444,Gurnee,IL,fireball,120,Two spherical bright orange objects flew slowly across the sky, slowed down and kept going in a straight line and then disappeared. +2009-09-19,44.551944399999996,-69.6322222,Waterville,ME,sphere,10,we both could not believer what we saw +2009-09-19,35.3,-106.5505556,Bernalillo,NM,teardrop,8100,Pearlescent, teardrop object stationary in sky for two hours, turns red and disappears at night fall +2009-09-19,47.4830556,-122.2158333,Renton,WA,triangle,180,Triangular object with three red steady lights flying over Renton. +2009-09-19,44.1266667,-70.8922222,Lovell,ME,triangle,300,triangle shapes hovering over Kezar Lake at sunset. +2009-09-19,40.0161111,-81.0727778,Bethesda,OH,oval,300,white oval light with wide light beam ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.9736111,-72.1441667,Amagansett,NY,light,10,7:30 ish, Bright light with a bell shaped cloud over the atlantic off the cost of Amagansett. ((NUFORC Note: Missile launch. PD)) +2009-09-19,39.4336111,-76.3580556,Joppa,MD,unknown,120,Bright searchlight hovered at high altitude and then rapidly ascended from view.((NUFORC Note: Missile launch. PD)) +2009-09-19,39.8005556,-76.9833333,Hanover,PA,light,60,Bright white light in cloudless sky approximately 20ꯠ ft. ((NUFORC Note: Missile launch. PD)) +2009-09-19,44.0313889,-70.105,Lisbon,ME,circle,10,Bright blue beam hovering, slowly descending to the ground. No sound at all, 6 witnesses +2009-09-19,43.4391667,-70.7747222,Sanford,ME,light,120,We were having a fire and saw a very bright cone shaped light above the tree line, it stayed for a minute or so then vanished. +2009-09-19,40.4975,-74.4888889,Somerset,NJ,light,30,Extremely bright cones shaped light shining down from the sky. ((NUFORC Note: Missile launch. PD)) +2009-09-19,36.7280556,-76.5838889,Suffolk,VA,light,30,Bright light in sky. ((NUFORC Note: Missile launch. PD)) +2009-09-19,39.4013889,-76.6022222,Towson,MD,triangle,30,A small sphere shape object appeared, with a triangle shaped light being emitted from the bottom. ((NUFORC Note: Missile launch. PD)) +2009-09-19,42.9747222,-72.5222222,Putney,VT,light,60,VANISHING BRIGHT WHITE LIGHT WITH CONE SHAPED MIST IN PUTNEY, VT. ((NUFORC Note: Missile launch. PD)) +2009-09-19,39.4622222,-76.2794444,Abingdon,MD,cylinder,180,Extremely bright and radiating light outward. ((NUFORC Note: Missile launch. PD)) +2009-09-19,42.1944444,-71.8361111,Auburn,MA,disk,20,a white cone shape light in the sky. ((NUFORC Note: Missile launch. PD)) +2009-09-19,42.0866667,-71.475,Bellingham,MA,flash,60,Strange light progressivly brighter, cone of light from below in Massachusetts, ((NUFORC Note: Missile launch. PD)) +2009-09-19,43.2658333,-70.865,Berwick,ME,triangle,20,(light with defined beam appeared very bright(looked like an upside down v). ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.0711111,-74.8652778,Burlington,NJ,cone,30,7:50 PM, cone-shaped object, three spot-light type lights. ((NUFORC Note: Missile launch. PD)) +2009-09-19,39.2505556,-76.5208333,Dundalk,MD,sphere,45,A dark sphere appeared southeast of dundalk, maryland then disappeared leaving a haze of smoke.((NUFORC Note: Missile launch. PD)) +2009-09-19,40.7691667,-80.0630556,Evans City,PA,triangle,15,Triangular object in the sky in Evans City pa ((NUFORC Note: Missile launch. PD)) +2009-09-19,38.4494444,-78.8691667,Harrisonburg,VA,disk,90,Very bright disk shape eastern sky Harrisonburg. ((NUFORC Note: Missile launch. PD)) +2009-09-19,39.1155556,-77.5638889,Leesburg,VA,cone,20,Object with cone shaped tail rises above Dulles, VA. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.2572222,-74.3961111,Manalapan,NJ,circle,15,circular stationary white light shining straight down thru an apparent haze. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.5819444,-74.9594444,Pittstown,NJ,light,15,two beams of light high in the sky. ((NUFORC Note: Missile launch. PD)) +2009-09-19,41.8238889,-71.4133333,Providence,RI,unknown,20,I ran across information that seems to explain the beams. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.9169444,-72.6625,Riverhead,NY,cone,60,It was like a bright white spot light. It then split into 2 and disapeared. ((NUFORC Note: Missile launch. PD)) +2009-09-19,41.7075,-71.8291667,Sterling,CT,unknown,180,Large glow of light that led down to a beam with no sound. ((NUFORC Note: Missile launch. PD)) +2009-09-19,42.7283333,-73.6922222,Troy,NY,unknown,2,large bright missle like object, headed straight up leaving an inverted v shaped dust cloud behind it - very very large - reached a cer +2009-09-19,41.2427778,-73.2011111,Trumbull,CT,sphere,60,Bright white light over Trumbull, CT. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.0047222,-75.635,West Grove,PA,light,120,West Grove PA 9/19/09 Chester County 19:50 ((NUFORC Note: Missile launch. PD)) +2009-09-19,34.2083333,-77.7966667,Wrightsville Beach,NC,disk,10,Glowing disk with single beam sighted at Wrightsville Beach 9/19/09 at 7:50p.m. ((NUFORC Note: Missile launch. PD)) +2009-09-19,41.5755556,-72.3325,Colchester,CT,light,240,Large, bright white "spotlight" high in sky over Colchester, Ct ((NUFORC Note: Missile launch. PD)) +2009-09-19,43.5341667,-72.3566667,Plainfield,NH,other,60,Growing, star-like object expels glowing cloud and then collapses into cloud and is gone.((NUFORC Note: Missile launch. PD)) +2009-09-19,40.5983333,-76.0936111,Auburn,PA,light,30,bight light appeared in sky shinning a beam down for 30 seconds ((NUFORC Note: Missile launch. PD)) +2009-09-19,43.9608333,-73.2108333,Cornwall,VT,cone,30,cone of light in sky at height of air traffic ((NUFORC Note: Missile launch. PD)) +2009-09-19,39.2505556,-76.5208333,Dundalk,MD,light,20,dot of light whith a beam of light below it, beam of light was in a cone shape ((NUFORC Note: Missile launch. PD)) +2009-09-19,43.3094444,-73.6444444,Glens Falls,NY,circle,40,Circle of light with triangular ray ((NUFORC Note: Missile launch. PD)) +2009-09-19,42.1958333,-73.3625,Great Barrington,MA,light,30,Bright pure white cone of light, not moving, over northwestern Connecticut, for about 20 sec.. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.3280556,-75.8911111,Mount Penn,PA,circle,30,Light appears, searches, than disappears into a mist. ((NUFORC Note: Missile launch. PD)) +2009-09-19,41.5769444,-73.4088889,New Milford,CT,light,120,Star-like object in the sky with beam of light directed down to earth +2009-09-19,41.4813889,-73.2136111,Southbury,CT,cone,30,Cone shaped bright white light - gradually disappeared / resembled a flashlight pointing down.((NUFORC Note: Missile launch. PD)) +2009-09-19,39.8494444,-75.3561111,West Chester,PA,cone,120,A white circle of light with a lighter, cone-shaped light underneath it; the circle disappeared the cone shape faded to a "cloud" +2009-09-19,40.9025,-74.4075,Boonton,NJ,oval,30,Sighting of an elevating object that emitted a strong traingular light downward. +2009-09-19,41.7625,-70.7222222,Wareham,MA,unknown,30,We called 911 and reported this to the Bourne State police barracks. No way we were the only ones who saw this. +2009-09-19,42.1111111,-71.6666667,Whitinsville,MA,light,20,Bright white light for 10 seconds with a fading shower. ((NUFORC Note: Missile launch. PD)) +2009-09-19,41.9038889,-72.4702778,Ellington,CT,light,15,Odd bright light in sky, with haze around it that seems to fade out. ((NUFORC Note: Missile launch. PD)) +2009-09-19,41.5033333,-74.0108333,Newburgh,NY,cone,20,Unidentified light emmiting cone shaped object spotted hovering over Newburg, NY ((NUFORC Note: Missile launch. PD)) +2009-09-19,41.3163889,-73.0936111,Shelton,CT,circle,90,circle of light with beam of light shining towards the ground ((NUFORC Note: Missile launch. PD)) +2009-09-19,41.9666667,-71.55,North Smithfield,RI,sphere,60,I was looking up at the stars and all of the sudden a giant circle was right in front of my eyes. ((NUFORC Note: Missile launch. PD)) +2009-09-19,42.4152778,-71.1569444,Arlington,MA,cone,30,Cone Shaped light from bright dot. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.7988889,-81.3786111,Canton,OH,light,45,Ball of light with illuminating light shining down at night sat still. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.2883333,-75.2094444,Chalfont,PA,light,120,light and weird mist in sky over Chalfont, Pa. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.7408333,-74.3841667,Chatham,NJ,light,30,very bright V shape light pointing downwards. ((NUFORC Note: Missile launch. PD)) +2009-09-19,39.9611111,-82.9988889,Columbus,OH,diamond,180,4 Orange lights in a diamond formation hovering over Worhtington Hills, in Columbus, OH +2009-09-19,40.864444399999996,-76.5527778,Elysburg,PA,light,30,Cone of light eerily appears to Knoebel's Amusement Park goers on the way to the parking lot.((NUFORC Note: Missile launch. PD)) +2009-09-19,40.7325,-73.4458333,Farmingdale,NY,light,25,The beam of light was controlled, there was no sound. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.63,-79.9697222,Gibsonia,PA,cone,45,Strange coned shaped light setting still and silent in the eastern night sky. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.1022222,-75.1525,Glenside,PA,light,15,A triangular bright light pointing downward in a haze on a clear night.((NUFORC Note: Missile launch. PD)) +2009-09-19,42.5875,-72.6,Greenfield,MA,light,30,White light with no known source fading into a mist without sound on cloudless night. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.9111111,-74.9677778,Hope,NJ,cone,50,UACNJ observatory in Hope, NJ looking due south; searchlight shining straight. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.8758333,-75.7327778,Jim Thorpe,PA,light,30,beam of light hovered for 30 seconds vanished into thin air. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.8,-96.6666667,Lincoln,NE,fireball,300,Orange fireball looking object moving very slowely in the sky. +2009-09-19,39.6855556,-74.1452778,Long Beach,NJ,light,30,This object had no where to go but up ,It used this this mist cloud to cloak itself((NUFORC Note: Missile launch. PD)) +2009-09-19,40.3041667,-73.9927778,Long Branch,NJ,light,60,Bright light in sky pointing down. ((NUFORC Note: Missile launch. PD)) +2009-09-19,43.1433333,-77.1894444,Marion,NY,light,120,very bright spotlight with mist straight upward motion. ((NUFORC Note: Missile launch. PD)) +2009-09-19,42.4983333,-75.7683333,Mcdonough,NY,light,120,Large bright white light with beam witnessed in New York state. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.2,-74.0283333,Neptune City,NJ,light,15,very bright large cone shaped light in sky for 15 seconds .... then disapered. ((NUFORC Note: Missile launch. PD)) +2009-09-19,43.8038889,-73.2983333,Orwell,VT,unknown,30,Cone of light emanating downward from stationary point in the sky. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.4405556,-79.9961111,Pittsburgh,PA,changing,15,A brief, bright light in Western Pennsylvania. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.3872222,-75.1469444,Plumsteadville,PA,circle,30,bright circular light shining down toward the ground. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.1022222,-75.2747222,Plymouth Meeting,PA,cone,30,Cone of light, higher than plane or helicopter, Did not move. ((NUFORC Note: Missile launch. PD)) +2009-09-19,41.4569444,-72.8236111,Wallingford,CT,fireball,30,Wallingford, CT UFO siting? ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.4333333,-76.1125,Bernville,PA,oval,60,oval light to the right of jupitar and 15 min. after to the left of jupitar ((NUFORC Note: Missile launch. PD)) +2009-09-19,41.1175,-73.4083333,Norwalk,CT,cone,40,Large very bright light overhead in a conical shape that went straight up into the sky. ((NUFORC Note: Missile launch. PD)) +2009-09-19,41.2569444,-72.0244444,Fishers Island,NY,light,30,Fishers Island, Long Island Sound, a large lamp shade/flashlight in the sky for 10 seconds+ ((NUFORC Note: Missile launch. PD)) +2009-09-19,41.7702778,-75.1786111,Hilltown,PA,cone,30,Large bright cone shaped object like a large flashlight and then a cloud. ((NUFORC Note: Missile launch. PD)) +2009-09-19,38.6358333,-77.4380556,Independent Hill,VA,light,120,Light over Independent Hill VA ((NUFORC Note: Missile launch. PD)) +2009-09-19,41.4372222,-71.5019444,Wakefield,RI,triangle,60,Bight ball of light in the sky trailed by a more diffuse morphing cloud of light. ((NUFORC Note: Missile launch. PD)) +2009-09-19,41.7797222,-71.4377778,Cranston,RI,cone,180,cone shaped hazy light pointed downward from sky. ((NUFORC Note: Missile launch. PD)) +2009-09-19,38.6652778,-78.4597222,Luray,VA,oval,30,It came downward slowly from the sky and hovered for about 6 seconds then it went up vertically and disapeare. The object was all white +2009-09-19,40.1319444,-74.035,Sea Girt,NJ,fireball,60,moving fast, bright light, long tail, burned out. ((NUFORC Note: Missile launch. PD)) +2009-09-19,41.55,-71.4666667,North Kingstown,RI,light,180,There was a bright bell shaped light in the sky. ((NUFORC Note: Missile launch. PD)) +2009-09-19,43.5636111,-70.2005556,Cape Elizabeth,ME,circle,15,large circular light that fanned out, released cloud, then dissapeared ((NUFORC Note: Missile launch. PD)) +2009-09-19,38.7741667,-76.0766667,Easton,MD,other,10,Orb of light raised from the ground, in the distance, slowly into the high sky; disappeared.((NUFORC Note: Missile launch. PD)) +2009-09-19,41.0161111,-77.5313889,Lamar,PA,circle,30,Cone like light shining down from circular object. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.3908333,-75.4925,Pennsburg,PA,cone,60,Hovering bright light witnessed by a group of Scouts. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.6552778,-74.3902778,Scotch Plains,NJ,light,45,Spotlight over new jersey. ((NUFORC Note: Missile launch. PD)) +2009-09-19,39.9388889,-74.1933333,Beachwood,NJ,light,600,Four unown objects in sky in a perfect symetric pattern with many witnesses present. +2009-09-19,39.8716667,-76.4833333,Brogue,PA,light,60,Strange Light in the sky. ((NUFORC Note: Missile launch. PD)) +2009-09-19,40.8969444,-75.5033333,Kresgeville,PA,oval,30,Oval light source and hazy conical beam of light. ((NUFORC Note: Missile launch. PD)) +2009-09-19,39.823055600000004,-78.7183333,Hyndman,PA,other,30,Bright white lights spotted over Hyndman Pa area Bedford County Pa. +2009-09-19,38.4105556,-76.4555556,Lusby,MD,unknown,420,Verry large wite light. Was not moving. Very large surrounding area lite up. ((NUFORC Note: Missile launch. PD)) +2009-09-19,41.1016667,-80.7647222,Austintown,OH,unknown,87,Silent moving strobing white lights September 9 2009 +2009-09-19,47.1555556,-122.4327778,Parkland,WA,light,15,Not typical airplane movement. +2009-09-19,40.9633333,-72.1852778,East Hampton,NY,circle,60,Huge spotlight hovering, disappearing cloud/smoke. ((NUFORC Note: Missile launch. PD)) +2009-09-19,39.8494444,-75.3561111,West Chester,PA,formation,180,brightly lit objects flying qucikly in a formation +2009-09-19,40.0377778,-76.3058333,Lancaster,PA,light,15,Bright star like object near Jupiter disappeared in a mist like ball of light. ((NUFORC Note: Missile launch. PD)) +2009-09-19,44.98,-93.2636111,Minneapolis,MN,light,1500,UFO - Viewed From Downtown Minneapolis, MN +2009-09-19,30.3319444,-81.6558333,Jacksonville,FL,formation,300,Formation of 9 orange lights +2009-09-19,41.0691667,-78.3583333,Shawville,PA,light,120,Point of light in the sky with Cone of bright light shining from the base. +2009-09-19,42.5377778,-83.4811111,Walled Lake,MI,circle,1800,Approximately 50 bright to dark orange, orb like lights, no blinking lights on them, no headlights. +2009-09-19,39.8494444,-75.3561111,West Chester,PA,fireball,60,6-8 Bright reddish orange fire balls in the sky +2009-09-19,44.2941667,-92.6688889,Zumbrota,MN,other,8,Octagon shaped craft made a 90 degree turn +2009-09-19,39.3419444,-78.7569444,Romney,WV,light,60,This took place before sunset and appeared in the Eastern sky. It was in the shape of a flashlight (lighted part) and appeared for 10 s +2010-09-19,27.6383333,-80.3975,Vero Beach,FL,circle,40,Erratic object, looked similar to a star, never moved more than 10 - 20 degrees during my entire 35 minute viewing period. +2010-09-19,39.7683333,-86.1580556,Indianapolis,IN,unknown,1,Ligt streak during a video on Sunday night football. +2010-09-19,41.2586111,-95.9375,Omaha,NE,fireball,180,Red light over NW Omaha moving south to north before fading away completely. +2011-09-19,41.4444444,-87.6313889,Crete,IL,disk,1500,52 yr. old woman saw 6 lights in field in crete illinois. kids with flashlights? +2011-09-19,46.2113889,-119.1361111,Kennewick,WA,light,300,A continuous string of 20 to 30 fast blinking multi-colored lights that vanished after five minutes. +2011-09-19,32.2216667,-110.9258333,Tucson,AZ,circle,300,UFO sighting Tucson, AZ, Sept 19, 2011 at 8:30 pm +2011-09-19,42.3716667,-88.09,Round Lake Beach,IL,sphere,600,I Saw two bright spherical amber colored objects, one floating above the other. Both objects were stationary. +2011-09-19,40.4233333,-104.7086111,Greeley,CO,sphere,480,i saw an orange sphere in the sky about quarter the size of a full moon, it looked like fire glowing inside a ball. +2011-09-19,41.4994444,-81.6955556,Cleveland,OH,triangle,5,I was driving down a Cleveland street approaching a red light when I heard what sounded like an ambulance siren. When checking my surr +2011-09-19,46.6811111,-68.0163889,Presque Isle,ME,unknown,21600,5 objects seen in aroostook county sky numerous times! ((NUFORC Note: We suspect twinkling stars. PD)) +2011-09-19,38.9858333,-119.1619444,Yerington,NV,unknown,30,small very fast craft spoted in nevada desert with a hellicopter. +2011-09-19,38.9716667,-95.235,Lawrence,KS,light,90,Oranges star traveling slightly faster than u would expect a plane, 16th of a inch tail trailing. Travel was from right to left ruling +2012-09-19,39.7475,-122.1952778,Orland,CA,triangle,10,Silent black triangular craft flew over my head and disappeared into the night sky. +2012-09-19,39.6861111,-74.9955556,Williamstown,NJ,light,10800,Very bright light that moved side to side/ up and down +2012-09-19,40.4841667,-88.9936111,Bloomington,IL,disk,1800,Row of approximately 6 lights of varying intensity and color:white, blue, red, yellow.Seen in north eastern sky. Seemed not to be +2012-09-19,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,600,Noticed an object move across the sky, eventually slows down while flashing light at me; events are being acted as I think of them now. +2012-09-19,38.9016667,-107.9258333,Cedaredge,CO,rectangle,30,Day time observation of rectangles with aircraft. +2012-09-19,39.6294444,-79.9561111,Morgantown,WV,other,3600,Orange lines and dots on the horizon of the sunset; differed in size and shape; moving very slowly, while disappearing and reappearing. +2012-09-19,44.7272222,-75.3213889,Lisbon,NY,light,15,Orange colored light appeared in the southern sky. Then three more lights appeared at a 45 degree angle from the first light and appear +2012-09-19,31.5544444,-110.3030556,Sierra Vista,AZ,disk,15,Strange object following something it seems +2012-09-19,39.7683333,-86.1580556,Indianapolis,IN,triangle,240,Triangular craft with two blue white strobing lights over Indianapolis +2012-09-19,40.4405556,-79.9961111,Pittsburgh,PA,circle,300,Two orange lights in sky over Pittsburgh +2012-09-19,38.2544444,-104.6086111,Pueblo,CO,fireball,7200,12 fireball like objects northwest pueblo.preformed diffrent shapes. +2012-09-19,38.35,-104.7222222,Pueblo West,CO,sphere,420,ORANGE "FIREWORK" SPHERE W/ TRIANGLE IN THE CENTER HOVERED IN PW 7 MINUTES, SILENTLY, THEN DISAPPEARED +2012-09-20,43.5555556,-73.4041667,Whitehall,NY,unknown,50,Strange disappearing planes +2013-09-19,38.3225,-75.2180556,Berlin,MD,light,30,A Bright White Light darting around and stopping during the daytime that disappeared in a cloud. +2013-09-19,42.225,-121.7805556,Klamath Falls,OR,teardrop,600,Fast moving aircraft with little jet trail moves across Oregon sky's. +2013-09-19,38.2019444,-83.9294444,Sharpsburg,KY,sphere,180,White and red spheres. +2013-09-19,35.0844444,-106.6505556,Albuquerque,NM,circle,900,Star like craft with wings just hovering in one spot in the sky, airplanes flying near it and dogs are barking like crazy. +2013-09-19,41.7,-71.4166667,West Warwick,RI,fireball,15,Bright orange fireball with 300 meter trail. +2013-09-19,43.2255556,-74.1725,Northville,NY,fireball,600,Glowing orange orb in the sky... Strange. +2013-09-19,48.0797222,-123.1005556,Sequim,WA,light,600,Ultra-quiet, ultra-fast bright yellowish-whitish light soared in straight line, at low altitude, red light flashed, craft vanished. +2013-09-19,44.4652778,-72.685,Stowe,VT,sphere,180,Fiery/pulsing circular object about 2000 feet up that became round ringed with red. +2013-09-19,40.2202778,-74.0125,Asbury Park,NJ,sphere,60,Watched a neon blue orb fly directly over head, slowly and silently. Appeared very close but hard to say. +2013-09-19,42.3875,-71.1,Somerville,MA,disk,180,I was on the patio with a friend in Somerville. It was a crisp night and we were in a relatively quiet neighborhood. A blue and green d +2013-09-19,40.0063889,-75.7036111,Downingtown,PA,circle,4,Very clear night it was a full moon. A round very bright ball of light moved very fast from west to east. It was lower than planes fly. +2013-09-19,47.3075,-122.2272222,Auburn,WA,circle,150,Quavering/shimmering red object near moon in east sky around 9:25 pm. +2013-09-19,32.2686111,-107.7580556,Deming (Near),NM,other,180,Orange glowing orb west of Deming, New Mexico. +2013-09-19,39.1325,-77.7688889,Round Hill,VA,light,2,Neon green ball of light flashed through sky on perfectly clear, full moon night. ((NUFORC Note: Meteor?? PD)) +2013-09-19,42.9133333,-85.7052778,Wyoming,MI,fireball,90,Large fireball object size of full moon, changing direction, speed and brightness. +1956-09-20,33.6669444,-93.5913889,Hope,AR,circle,1200,Sitting on a pond bank on sunny afternoon when 9 saucers appeared at 12:00 o'clock at a very high altitude. They were silver in color +1957-09-20,36.8655556,-87.4886111,Hopkinsville,KY,cigar,600,4 matalic silver cigar shaped objects; no sound september1957, kentucky +1964-09-20,41.85,-87.65,Chicago,IL,sphere,2700,My name is Larry Cardozo. I am 53 years old and live in Ventura, California. This sighting happened quite some time ago – I would gue +1967-09-20,34.1683333,-118.605,Woodland Hills,CA,triangle,300,I noticed a light that appeard to be above the Sepulveda Mullholland pass area. The light moved vertically and horizontally stopped and +1967-09-20,39.9583333,-84.1722222,Tipp City,OH,light,300,An object , reported in Project Blue Book, followed us for about one half mile then shot straight into the night sky. +1969-09-20,64.8377778,-147.7163889,Fairbanks,AK,cigar,30,My sister and I were awakened by a flashing bright light. We looked out of the window and saw a hovering cigar shaped object. It stayed +1970-09-20,40.6113889,-79.8372222,Russellton,PA,triangle,600,4 Sided UFO with Lights spotted in Russellton in the Summer of 1970 +1971-09-20,45.9047222,-122.7427778,Woodland,WA,disk,360,Saucer shaped craft at roof level just hovering, round windows along the side and dome in the middle. +1972-09-20,38.7041667,-91.4372222,Hermann,MO,disk,300,Sphere was hoovering over grandpa's house when I was 10-12 in 1970ish with green and orange lights don't remember it leaving. +1972-09-20,37.2508333,-92.5102778,Hartville,MO,chevron,480,Two chevron shaped objects traveling together at low speed over rural Wright County, MO +1973-09-20,40.7583333,-82.5155556,Mansfield,OH,oval,6,Pure white oval shaped image moving slowly. Major axis was several full moon widths long. Minor axis about half of major. No colors or +1973-09-20,38.8402778,-97.6111111,Salina,KS,light,30,Light object makes perfect square moving in the night Kansas sky. +1973-09-20,40.7583333,-82.5155556,Mansfield,OH,cigar,1200,In the Fall of 1973 my sister and I came upon a large silver object hovering approximatley 20 feet above us on a clear, sunny afternoon +1973-09-20,40.7583333,-82.5155556,Mansfield,OH,cigar,300,Cigar shaped craft chases little boy home. +1973-09-20,29.7630556,-95.3630556,Houston,TX,chevron,1200,I was driving home from the Univ. of Houston and was at the light near Foley's warehouse (still in same place) and looked up to my fron +1975-09-20,44.4983333,-84.5919444,Roscommon,MI,oval,2100,Bright light in the sky, amazing speed and menuvers +1975-09-20,29.9972222,-98.0983333,Wimberley,TX,light,600,A very bright light moving very quickly and erradically in the southern sky chased by two air force jets. +1976-09-20,36.7433333,-84.1597222,Williamsburg,KY,circle,30,Father and I saw lg round object, looked like a setting sun in the East over a mountain. Lit up whole side of mountain. Just appeared +1978-09-20,27.9472222,-82.4586111,Tampa (Outskirts Of),FL,sphere,1800,round object-big as about 5 hot air-realy big-- ballons-lights-windows-saw people aboard-spectators +1980-09-20,38.2541667,-85.7594444,Louisville,KY,circle,900,I did not know how to report so i found this sight i am now 52 and most passegers are in there 68 -70. +1980-09-20,41.8875,-74.2944444,Samsonville,NY,disk,25200,25 foot craft hovering above my house. +1982-09-20,30.275,-89.7811111,Slidell,LA,changing,1200,Shape shifting, color changing UFO +1982-09-20,38.6652778,-78.4597222,Luray,VA,unknown,180,While sight seeing upon the summit of Old Rag Mountain in the Shenadoah Mountains myself and a friend encounterd an individual that app +1982-09-20,45.5541667,-115.4602778,Dixie,ID,disk,14400,High mountain Idaho sighting, disc shaped revolving lights underneath,like a memory gameᅎ ft across. +1984-09-20,40.7141667,-74.0063889,New York City (Bronx),NY,teardrop,300,BRIGHT WHITE LIGHTS SEEN IN THE BRONX IN THE 1980's. +1985-09-20,26.2513889,-80.1791667,Coconut Creek,FL,disk,240,Two ships, 500 feet away, over Tradewinds Park and as large as 2 to 3 football fields each +1986-09-20,32.2216667,-110.9258333,Tucson,AZ,unknown,20,Paired blue halos ascend rapidly and silently. +1987-09-20,35.6869444,-105.9372222,Santa Fe,NM,unknown,900,Groups of bright shiny lights in the sky moving around during the daytime. +1988-09-20,33.9533333,-117.3952778,Riverside,CA,flash,7,Unidentified patch of light in the night sky +1988-09-20,40.7141667,-74.0063889,New York City (Staten Island),NY,circle,600,looking up clear as day a huge bright light, that resembled a mini sun.It was huge and I didnt see any particular shape or colors other +1988-09-20,40.7583333,-82.5155556,Mansfield (Outside Of),OH,sphere,1200,Ball of light enters van, in Richland county,Ohio +1989-09-20,34.1616667,-118.0519444,Sierra Madre,CA,teardrop,30,odd sighting at Mount Wilson +1990-09-20,37.9444444,-87.4052778,Newburgh,IN,triangle,3600,lighted object with a strange motion. May have been livestock involvment. +1990-09-20,42.4972222,-82.9372222,Roseville,MI,other,3600,My brother& i were in front of our mothers house,we witnessed an aircraft break physical laws as we know them.A very large stubby shutt +1990-09-20,46.9811111,-123.8880556,Hoquiam,WA,fireball,180,driving home from ocean city,to hoquiam. my at the girlfriend and I noticed two orange "fireballs" hovering over Bowerman Basin.The big +1990-09-20,35.8888889,-79.8080556,Level Cross,NC,sphere,2700,I and my mother and sister and dog were traveling from greensboro nc to a small commnity in randolph county when it orange ball appeare +1994-09-20,41.4713889,-75.6080556,Dickson City,PA,fireball,40,Burnt orange ball from 06:50 rising from the west for about 30 seconds until it reach the ཆ:30' postion in the sky before blinking ou +1994-09-20,38.5891667,-121.3016667,Rancho Cordova,CA,fireball,1,While driving East on highway 50 fireball dropped out of sky. +1994-09-20,39.0725,-93.7169444,Higginsville,MO,other,900,We saw what we thought was a star that kept moving around and disappeared. +1994-09-20,41.2383333,-81.7452778,Hinckley,OH,circle,300,UFO Medina County 1994 +1995-09-20,39.7161111,-83.8777778,Wilberforce,OH,oval,309,Over 40 passengers! +1995-09-20,44.5191667,-88.0197222,Green Bay,WI,diamond,1500,CLEARLY VIEWED A LARGE, TRIANGULAR SHAPED OBJECT.BEST ESTIMATE ON SIZE WOULD BE 150 TO 200 FEET IN LENGTH. +1995-09-20,55.1858333,-162.7211111,Cold Bay,AK,fireball,120,Fireballs traveling low on horizon at great rate of speed and manueverablilty +1995-09-20,33.5427778,-90.5369444,Sunflower,MS,cylinder,300,1995 Blue cylinder object flies over car stops and darts off with great speed. +1996-09-20,35.9516667,-95.6505556,Coweta,OK,disk,18000,I am providing approx. time and dates. I was out our home in the county line road between Coweta and Broken Arrow Oklahoma. I had stepp +1997-09-20,32.9627778,-117.035,Poway,CA,triangle,1320,lights in the shape of a "V" were observed by approx 12 people, nobody had an explanation of what they saw, and nobody had ever seen su +1998-09-20,36.175,-115.1363889,Las Vegas,NV,other,10,Driving to work. Green Bright light caught my eye going from northwest to south east. My daughter spotted it at the same time. It was b +1998-09-20,39.9861111,-88.2588889,Tolono,IL,circle,4,Out cutting hedges and saw object in sky +1998-09-20,47.4741667,-122.2597222,Tukwila,WA,sphere,900,Four lustrous orbs sighted over Burien +1998-09-20,34.0805556,-118.0719444,Rosemead,CA,disk,60,I saw a saucer-shaped UFO with multi-colored lights. +1998-09-20,47.7625,-122.2041667,Bothell (Northern Sky),WA,circle,5,fireball desending from sky toward horizon. +1999-09-20,33.6,-117.6711111,Mission Viejo,CA,light,20,A red light about the size and shape of a star moving at about the speed of a shooting star but with no tail. As I watched it it slowed +1999-09-20,34.1119444,-118.1980556,Highland Park,CA,triangle,300,A trianular object observed hovering, but wobbling, and then going up at a high rate of speed. +1999-09-20,31.3269444,-89.2902778,Hattiesburg,MS,sphere,10,I was watching the sky when over head I saw a Black spherical object pass over. +1999-09-20,43.2227778,-71.0475,Barrington,NH,cigar,15,Both witnesses see cigar shaped object in sky, tree level, far distance, when reaching crest of hill, object was gone. +1999-09-20,33.4222222,-111.8219444,Mesa,AZ,light,45,I was sitting in my back yard looking at all the airplanes, when I looked south. I saw a bright light that was not seeming to move. Its +2000-09-20,38.6858333,-121.0811111,El Dorado Hills,CA,circle,240,I saw this bright circular, blurry light in the sky that got bigger as it came closer +2000-09-20,33.4483333,-112.0733333,Phoenix,AZ,triangle,600,LARGE TRIANGLE SHAPED OBJECT OVER THE METROCENTER IN PHX,AZ. +2000-09-20,41.4838889,-74.2180556,Maybrook,NY,other,15,I saw a large UFO fly over my house. +2000-09-20,44.4469444,-95.7880556,Marshall,MN,triangle,5,A flattened out "V", made up of many pinpoints of light glided silently, smoothly, but quickly over-head +2001-09-20,40.7141667,-74.0063889,New York City,NY,changing,600,Objects seen after WTC disaster in calm NEW YORK sky. +2001-09-20,47.6063889,-122.3308333,Seattle,WA,other,900,four stars in the day time sky +2001-09-20,39.7047222,-105.0808333,Lakewood,CO,sphere,300,While at work on 9/20/01, I was just closing up the store and as the last of the customers had just left so I could lock the door, they +2001-09-20,41.8930556,-70.9116667,Middleboro,MA,rectangle,60,enormous rectangular extremely low-flying silent craft with visible panels moving at est. 30mph +2001-09-20,47.4830556,-122.2158333,Renton,WA,flash,1,Large White Flash above Renton +2002-09-20,45.0408333,-93.2627778,Columbia Heights,MN,triangle,6,Triangle shaped object traveling east to west approximately 45 degrees above northern horizon. +2002-09-20,47.6588889,-117.425,Spokane,WA,unknown,5,Multiple, unilluminated high-speed craft flying over Spokane in early morning of 9/20/02. +2002-09-20,39.7391667,-104.9841667,Denver,CO,sphere,600,Two unknown daylight lights observed high above Denver +2002-09-20,37.8216667,-121.9988889,Danville,CA,disk,120,100 people saw a neon orange glowing saucer disappear into the hills. +2002-09-20,35.4119444,-99.4038889,Elk City,OK,oval,1200,UFO Orb Report +2002-09-20,40.1783333,-75.1288889,Horsham,PA,light,20,It was around P.M. when I was taking my dog outback. I just happened to be looking up the sky{clear night} as I do when its clear out, +2003-09-20,33.635555600000004,-96.6086111,Sherman,TX,light,10,Bright Greenish in color object in Sherman / Denison area +2003-09-20,42.3802778,-72.5236111,Amherst,MA,triangle,1,Oject left a fire trail below it, could not be identified. +2003-09-20,40.2794444,-86.5108333,Frankfort,IN,disk,2,When I looked at it, it instantly fell out of view. +2003-09-20,42.5391667,-82.9494444,Fraser,MI,light,1800,star-like lights in the form of triangles and diamonds dancing in the late afternoon sky +2003-09-20,42.4647222,-71.0105556,Saugus,MA,disk,30,Black disc with no lights seen in broad daylight. +2003-09-20,34.8697222,-111.7602778,Sedona,AZ,cylinder,5,Silver cylinder in vertical configuration moving rapidly Westward faster than an airplane for 5 seconds before it disappeared. +2003-09-20,42.4711111,-83.1422222,Pleasant Ridge,MI,unknown,1200,Dark object in the sky over Michigan, reflecting sunlight. +2003-09-20,41.2338889,-96.3533333,Venice,NE,other,120,Large, flying "T". +2003-09-20,47.4066667,-122.0375,Maple Valley,WA,light,420,lights acting strangely +2003-09-20,45.6872222,-120.8125,Maryhill,WA,light,600,A Mars like object presented itself and disappeared. +2003-09-20,38.2325,-122.6355556,Petaluma,CA,fireball,10,Great Ball Of Fire +2003-09-20,35.5847222,-80.8102778,Mooresville,NC,unknown,10,Strobing "stars"??? +2004-09-20,35.2080556,-82.2386111,Tryon,NC,cigar,240,a gigantic aircraft that had no sound at all. +2004-09-20,41.6080556,-74.2994444,Pine Bush,NY,rectangle,5,Flying rectangle over Pine Bush, NY late last September? +2004-09-20,33.3061111,-111.8405556,Chandler,AZ,other,120,I saw the low flying aircraft about 200 yards away flying at almost ground level and it had three filtered lights under the craft. +2004-09-20,38.0694444,-78.7008333,Crozet,VA,sphere,15,Supper fast object stops dead ;wavers left then right; then shoots strait up and gone; MIDDAY!!!! +2004-09-20,37.8716667,-122.2716667,Berkeley,CA,cigar,240,Fast moving (UFO)object over Berkeley +2004-09-20,39.9830556,-75.8241667,Coatesville,PA,cross,30,Unkown Craft Flying Over Coatesville. +2004-09-20,34.54,-112.4677778,Prescott,AZ,light,60,Three lights in western sky over northern AZ +2004-09-20,39.4458333,-123.8041667,Ft. Bragg,CA,other,300,Two thin football shaped objects were seen flying in, towards landfall, from the Northwest, by me and my girlfriend, right about sunset +2004-09-20,39.185,-88.6522222,Shumway,IL,light,300,Witnessed two bright lights that moved quickly then disappeared only to reappear in the sky approximately 1/4 mile distant at 500 feet. +2004-09-20,31.9516667,-97.3211111,Whitney,TX,unknown,600,One large set of red and white flashing lights followed by several smaller sets of red and whte flashing lights. +2004-09-20,36.3705556,-82.2969444,Watauga,TN,disk,45,Blue Glowing object trailing airplane +2004-09-20,34.1952778,-79.7627778,Florence,SC,triangle,60,Motionless pitch black triangular UFO just disappears +2004-09-20,47.8108333,-122.3761111,Edmonds,WA,triangle,120,Triangle over Edmonds +2004-09-20,35.1738889,-79.3925,Southern Pines,NC,flash,2,Blue star burst that lasted about 2 seconds with a sonic boom, no smoke trail .Very clean light . +2004-09-20,32.7152778,-117.1563889,San Diego,CA,fireball,120,fireball as big as truck in San Diego +2005-09-20,47.4508333,-122.8261111,Belfair,WA,circle,300,Large, full round object that hung in the sky without moving. +2005-09-20,47.573055600000004,-117.6811111,Medical Lake,WA,light,180,Connection to a Craft, the feeling we feel when seeing such an unexplainable event +2005-09-20,30.7436111,-98.0552778,Bertram,TX,light,60,three orange lights moving left to right +2005-09-20,43.8091667,-76.0244444,Adams,NY,disk,600,It was fast made no sound and left no trail. +2005-09-20,36.8430556,-83.3219444,Harlan,KY,fireball,1200,The shape was oval. It moved across the sky. 5 UFO's were observed. It looked like it was burning and had red lights. The background +2005-09-20,31.5686111,-93.4838889,Many,LA,light,60,flying light similar to venus, but venus does not move ;) +2005-09-20,33.7938889,-84.6605556,Lithia Springs,GA,changing,120,I was riding as a passenger in the car on the way to to buy a present for my brother as it was his birthday.We were riding through +2005-09-20,45.5236111,-122.675,Portland,OR,cylinder,10,I was riding in the passenger seat of my best friends car my fiance in the backseat behind me, when i noticed a large black shadow over +2005-09-20,28.9002778,-81.2638889,Deltona,FL,fireball,2,Very bright fireball over Deltona Florida skies +2005-09-20,33.4483333,-112.0733333,Phoenix,AZ,cone,180,Cone shaped craft with fire and smoke trail in Phoenix sky. +2005-09-20,35.0844444,-106.6505556,Albuquerque,NM,light,600,Brilliant white light west of Albuquerque +2005-09-20,32.3716667,-112.86,Ajo,AZ,disk,180,I WAS SCANNING THE SKY WITH MY BINOCULARS WHEN I NOTICED AN ORANGE/YELLOW DISCK MOVING FROM NW TO SW, IT WAS BRIGHTER THAN A SATTELITE, +2005-09-20,43.5277778,-71.4708333,Laconia,NH,circle,360,3 white craft in triangle formation, 1 red craft shot out a white light +2005-09-20,37.3688889,-122.0352778,Sunnyvale,CA,formation,600,while walking my dog two objects appeared on my left over railroad tracks +2005-09-20,42.7522222,-76.8338889,Romulus,NY,flash,3,I saw a bright blue/white light in the South East sky. +2005-09-20,43.1825,-99.2916667,Burke (North Of),SD,other,40,Air Force bombing runs mistaken for UFO's +2005-09-20,33.7747222,-84.2963889,Decatur,GA,unknown,20,it was not a police helicopter and it was close and hovering about telephone pole height. +2005-09-20,41.5066667,-90.515,Moline,IL,triangle,20,MISSOURI INVESTIGATORS GROUP Report: Black triangle ship moving west to east, +2005-09-20,40.7141667,-74.0063889,New York City (Brooklyn),NY,teardrop,600,"Whining" cross between quiet helicopter and blimp seen sailing low going southwest over Park Slope, Brooklyn, NY +2006-09-20,33.9886111,-83.8980556,Dacula,GA,circle,30,i reporded this sighting to you about two weeks a go obout two oject one white round light one red round light WHEN I SUBMIT MY SRREEN +2006-09-20,30.4891667,-99.7716667,Junction,TX,unknown,25,Two lumious objects observed near Junction Texas. +2006-09-20,29.7630556,-95.3630556,Houston,TX,sphere,25,White zigzagging shpere splits into two spheres. +2006-09-20,26.1416667,-81.795,Naples,FL,triangle,12,Triangle craft with lights flying over Naples Airport +2006-09-20,44.8011111,-68.7783333,Bangor,ME,light,300,Pilot and passenger witness light to the northeast of their aircraft, which they could not identify. +2006-09-20,32.6208333,-83.6,Warner Robins,GA,light,3,I was driving home from CDL class at the Technical College. My friend was also driving next to me. We were on a four lane road. The +2006-09-20,41.7958333,-87.9755556,Westmont,IL,light,3600,dim light moving verry fast and changing directions on a dot +2006-09-20,30.3758333,-89.7483333,Pearl River,LA,other,5,I saw a bright, white object flying at a VERY high rate of speed and then suddenly disappear. +2006-09-20,42.2958333,-90.6208333,La Motte,IA,flash,2,Wierd flash of light +2006-09-21,42.4375,-122.8577778,White City,OR,cigar,120,white light near bridge in white city, oregon +2007-09-20,39.1080556,-76.9980556,Cloverly,MD,light,5,Strange lights in sky over Cloverly, MD shoot off at amazing speed. +2007-09-20,38.0563889,-83.9433333,Mount Sterling,KY,rectangle,120,Illuminated object shaped like a bus hovering silently above a communications tower +2007-09-20,40.1005556,-74.8522222,Bristol,PA,disk,10,Silver Shaped DISC traveling at a high rate of speed. +2007-09-20,33.7669444,-118.1883333,Long Beach,CA,fireball,10,fireballs in a triangle ((NUFORC Note: Student report. PD)) +2007-09-20,43.0125,-83.6875,Flint,MI,disk,900,Sept 20, 2007, two UM-Flint students observe 11 discs making formations in the early evening sky. +2007-09-20,43.1552778,-75.9697222,Bridgeport,NY,other,300,Luminous object tracking aircraft +2007-09-20,41.7958333,-87.9755556,Westmont,IL,triangle,240,triangle craft seen over house in Westmont, IL +2007-09-20,43.3666667,-124.2166667,Coos Bay,OR,cigar,780,The cigar shaped object, possibly hundreds of feet long, flew slowly along the Pacific coastline. +2007-09-20,28.0777778,-82.7638889,Palm Harbor,FL,cylinder,5,Cylinder Shaped Object moving Very fast with a purple underglow +2007-09-20,32.9169444,-107.7055556,Kingston,NM,triangle,120,10/20/07 21:00 Kingston NM Triangle 2-3 mins Three Black Triangular aircraft manuvered acros the horizon and then hovered over our loca +2007-09-20,42.4758333,-88.3058333,Richmond,IL,circle,900,White light with white beam spotted across small field in rural Illinois +2007-09-20,44.2802778,-71.6886111,Bethlehem,NH,light,900,Night after night, more and more moving lights in sky in Littleton NH area +2007-09-20,47.0980556,-122.2030556,Orting,WA,light,120,A bright light hovered 300 feet above the ground before accelerating at an incredible speed and disappearing among the stars +2008-09-20,37.5697222,-85.2527778,Lebanon,KY,unknown,120,white craft with red stripe streaking extremely fast in sky, with engine break grinding/whinning sound following within 2seconds +2008-09-20,35.7325,-78.8505556,Apex,NC,other,120,Three silver balls forming a triangle shape +2008-09-20,39.0997222,-94.5783333,Kansas City,MO,cone,600,Unknown "orange" object seen floating above Kansas City +2008-09-20,41.3625,-74.2716667,Chester,NY,unknown,1200,seperate beads of light ( either relecting light or self illuminated) with a stiff black line trailing from the bottom +2008-09-20,37.775,-122.4183333,San Francisco,CA,circle,1200,15 small white orbs drifting high in formation west Over SF, CA City Hall 9-20-08 +2008-09-20,41.1108333,-112.0252778,Clearfield,UT,formation,30,Two white objects flying north and then south below Francis Peak. +2008-09-20,40.6219444,-74.245,Linden,NJ,circle,120,Two lights (no directional lights or blinking lights) traveling high, and fast speed. +2008-09-20,29.2936111,-82.1905556,Martin County,FL,triangle,30,Multiple craft in shape of triangle perform high speed flyby at high altitude. +2008-09-20,40.4775,-74.6272222,Hillsborough,NJ,disk,600,Huge, Bright Flying Saucer Shaped Object with red blinking lights seen very clearly. +2008-09-20,33.426944399999996,-117.6111111,San Clemente,CA,changing,600,White/Blue Rectangular object over Orange County CA changed shape, searchlight pointed at object. +2008-09-20,33.4625,-117.6708333,Capistrano Beach,CA,cigar,900,Rotating tall objects sighted over South Orange County Southern California with no sound. +2008-09-20,36.6777778,-121.6544444,Salinas,CA,sphere,60,Two faint orange objects moving in sky over Salinas +2008-09-20,37.6658333,-77.5066667,Glen Allen,VA,light,600,Blinking white and red and blue colored stationary lights near Glen Allen, VA +2008-09-20,41.2833333,-70.1,Nantucket,MA,unknown,900,saw object that I thought was a plane, no noise moved too slow +2008-09-20,42.1102778,-88.0341667,Palatine,IL,oval,60,i'm clean meaning i wasn't drinking smoking or on any drug i don't wear glasses or contacts i saw three oval white object flying throug +2008-09-20,26.1033333,-97.1644444,South Padre Island,TX,light,30,light moving shape of cross over South Padre Island blackest part of night +2009-09-20,41.3461111,-73.0794444,Ansonia,CT,circle,30,Huge ball of light. ((NUFORC Note: Meteor?? PD)) +2009-09-20,40.8125,-76.1419444,Mahanoy City,PA,light,3,A brief thick streak heading downward of greenish/blueish light in Schuylkill County PA. ((NUFORC Note: Meteor?? PD)) +2009-09-20,46.7833333,-92.1063889,Duluth,MN,fireball,300,Firey orange object over Duluth, Minnesota +2009-09-20,41.8186111,-72.48,Vernon,CT,circle,3,Large green, illuminated light flew right in front of our car, reaching as low as 100 ft. +2009-09-20,42.7647222,-71.4402778,Hudson,NH,light,10,White light without noise to go with it +2009-09-20,29.8830556,-97.9411111,San Marcos,TX,triangle,60,Boomerang shaped object seen in the night skies over San Marcos, Texas. +2009-09-20,46.8722222,-113.9930556,Missoula,MT,fireball,7,One bright ,dark pink, slow moving, orb went through my yard at 3am lasting 5 or so seconds. +2009-09-20,34.0752778,-84.2941667,Alpharetta,GA,light,300,Orange lights, smoke or fog. +2009-09-20,35.3069444,-106.4241667,Placitas,NM,light,1800,Very large star like object dropped three smaller bright objects. +2009-09-20,41.7208333,-73.9605556,Highland,NY,oval,5,While driving, clear blue sky, very shinny object. As I pulled off the road object was gone. +2009-09-20,41.0113889,-95.8819444,Plattsmouth,NE,cigar,120,Pod or cigar shaped craft over plattsmouth +2009-09-20,44.2238889,-68.6780556,Deer Isle,ME,light,2,Large ball of light, streaking south to north, over Deer Isle, Maine. +2009-09-20,33.8352778,-117.9136111,Anaheim,CA,light,1800,Looked up in the WNW sky and saw a light that was blinking white,green,and then red; object briefly moved and then stayed still. +2009-09-20,43.4441667,-71.6477778,Franklin,NH,disk,10,I was driving on route 127 towards Franklin from the Sanborton area. I was with 2 friends. We had just passed the damn, on our right wa +2009-09-20,27.9455556,-82.2580556,Valrico,FL,flash,5,A loud strange noise and a blue beam of light showed at 8:15 PM. +2009-09-20,32.6030556,-98.215,Santo,TX,circle,3,I saw a bright pink light in the western sky. I saw a circular shape outlined in pink. It lit the sky up horizontally. It lasted abo +2009-09-20,41.3908333,-72.86,North Haven,CT,cylinder,20,Bright beam of light omitted from cylinder. +2009-09-20,42.1944444,-71.8361111,Auburn,MA,light,45,lights in the skies of Aubunr, Mass. +2009-09-20,37.6391667,-120.9958333,Modesto,CA,light,300,Three different color light flying every which way...not together +2009-09-20,35.8238889,-80.2536111,Lexington,NC,circle,7200,I thought it was a star until it moved quickly northward. +2009-09-20,36.0652778,-119.0158333,Porterville,CA,sphere,1800,round ball hovering change colors from blue, red and orange +2010-09-20,41.3775,-71.8277778,Westerly,RI,unknown,2400,Low flying jet like sound followed by a long sighting of three color lighted object hovering. +2010-09-20,34.1975,-119.1761111,Oxnard,CA,fireball,360,A moving fire ball over oxnard, ca morphing into a comet shape with tail. +2010-09-20,34.448055600000004,-119.2419444,Ojai,CA,sphere,240,Red meteor like object streaking, stopping completely, looking like a satellite, then extinguishing altogether. +2010-09-20,34.2783333,-119.2922222,Ventura,CA,changing,300,huge comet like object with fireball trail, turned white, stopped, became incircled by swirling white tails, then disappeared. +2010-09-20,37.3394444,-121.8938889,San Jose,CA,fireball,240,redish orange fireball in the sky south of san jose +2010-09-20,39.6463889,-121.7988889,Durham,CA,other,120,White fuzzy cloud like object in Sky +2011-09-20,44.9238889,-92.9591667,Woodbury,MN,unknown,30,Unexplained lights over Woodbury MN. +2011-09-20,45.5236111,-122.675,Portland,OR,rectangle,6,Orange glowing, black center wing +2011-09-20,27.8002778,-97.3961111,Corpus Christi,TX,oval,120,I saw a black oval in the sky surrounded by a streaming light. +2011-09-20,43.55,-96.7,Sioux Falls,SD,light,393,Bright light like space station but brighter and moving in strange ways unlike aircrafts +2011-09-20,39.2902778,-76.6125,Baltimore,MD,unknown,120,Object in mid air with 3 distinct lights +2011-09-20,35.198055600000004,-111.6505556,Flagstaff,AZ,circle,3300,shining red and blue light in western sky, circular, ring, spinning +2011-09-20,42.2458333,-122.7875,Talent,OR,triangle,35,it looked like something of a V shape entered the atmosphere glowing. +2011-09-20,48.2325,-101.2958333,Minot,ND,other,8,Cresent shaped solid object, silent, with no lights seen over minot n.d. moveing south east 15 min. ago. +2011-09-20,46.7163889,-122.9530556,Centralia,WA,cigar,5,Glowing object flies west to east over I-5 +2011-09-20,27.880277800000002,-80.5005556,Micco,FL,unknown,3600,Red lights seen by four over Micco, FL +2011-09-20,47.1302778,-119.2769444,Moses Lake,WA,light,3600,Bright light in night sky. Had side to side, up and down and circular movement. ((NUFORC Note: Star?? )) +2011-09-20,41.3455556,-88.8425,Ottawa,IL,fireball,60,line of 15-20 reddish orange "fireballs" flying above tree line +2011-09-20,39.3,-85.2222222,Batesville,IN,formation,60,Orange lights that formed straight lines in the sky +2011-09-20,38.4783333,-82.6380556,Ashland,KY,sphere,1200,Orb shaped, pulsating violet/white light going eastward, stopping then quickly out of site to the north. +2012-09-20,42.575,-70.9305556,Danvers,MA,oval,60,Two oblong objects (whitish/orange hue) travelling straight then stopped, did some figure eight swirls around each other and disappered +2012-09-20,39.6294444,-79.9561111,Morgantown,WV,fireball,3,I saw a fireball of green light that was completely silent. +2012-09-20,45.2461111,-93.4519444,Ramsey,MN,triangle,5,Two yellow dots with red on top, forming a triangular shape. +2012-09-20,44.7341667,-85.1758333,Kalkaska,MI,light,3600,Kalkaska, MI. A hovering light at 1:30 in the morning was seen on September 21, 2012. +2012-09-20,41.7,-71.4166667,Warwick,RI,light,180,I got up to let my dogs out at 1:30 AM on September 20, 2012. Standing out on my deck I noticed how clear the sky was. When I looked to +2012-09-20,32.9125,-96.6386111,Garland,TX,light,180,Flashing red blue green light hovering in sky. +2012-09-20,47.6063889,-122.3308333,Seattle (Madison Park),WA,light,20,Lights hovering over Lake Washington +2012-09-20,39.315,-84.2208333,Maineville,OH,cylinder,3,Silver Cylinder Shape with verticle rings around - mostly likely normally transparent +2012-09-20,40.5580556,-90.035,Canton,IL,changing,180,Saw several bright lights in sky over canton Il that apeared and disapeared several times +2012-09-20,33.5205556,-86.8025,Birmingham,AL,light,3600,Unknown object over Birmingham metro flashing rapidly, changing directions for over an hour. ((NUFORC Note: Possible star? PD)) +2012-09-20,39.025,-79.9358333,Belington,WV,cylinder,180,Silver streak. Imagine taking a pencil and drawing just a basic line in the sky. it was about an inch long from my perception of vision +2012-09-20,36.2641667,-94.6927778,Colcord (6 Miles North Of),OK,triangle,180,Three lights over north east Okla. +2012-09-20,39.0005556,-74.7997222,North Wildwood,NJ,light,120,We saw 5 orange/reddish orbs hovering slowly above us. +2012-09-20,33.8158333,-78.6802778,North Myrtle Beach,SC,unknown,1200,Orange ball of light seen over the ocean +2012-09-20,42.0833333,-71.0188889,Brockton,MA,light,420,Bright green/blue light seen travelling at incredible speed & present long enough to rule out any known air craft or meteor. +2012-09-20,39.4194444,-76.7805556,Owings Mills,MD,unknown,10,Just read above. +2013-09-20,47.0380556,-122.8994444,Olympia,WA,fireball,30,Flash of light near moon. +2013-09-20,34.1952778,-82.1619444,Greenwood,SC,fireball,480,I was walking my friend home when we looked up a red and green light was moving north and we kept looking and it went down an came back +2013-09-20,44.035,-69.5372222,Newcastle,ME,sphere,300,Bright white sphere moving slowly across the sky +2013-09-20,38.9580556,-76.2105556,Grasonville,MD,flash,30,Line of 4-6 bright white blinking lights in sky. +2013-09-20,39.9536111,-74.1983333,Toms River,NJ,light,900,Glowing "star" moving vertically at a fast rate after hanging in the sky for several minutes +2013-09-20,35.0166667,-81.8041667,Cowpens,SC,circle,300,Orange ball seen over tree top then disapppered withg no sound or any trail behimd it either +2013-09-20,40.4897222,-111.9380556,Bluffdale,UT,fireball,30,Amateur astronomer sees bright, stationary object next to a star begin to move and descend behind the mountains. +2013-09-20,32.2216667,-110.9258333,Tucson,AZ,teardrop,18,Object over Tucson pursued by Air Force jets after entering local air space. +2013-09-20,40.5186111,-78.395,Altoona,PA,fireball,180,Orange fireball with some white spots on it. +2013-09-20,40.8336111,-75.7141667,Lehighton,PA,triangle,180,Triangle shaped craft with orange lights, every few sec. looked like shooting orange flames coming out of it. +2013-09-20,27.875,-82.8513889,Indian Rocks Beach,FL,changing,10,Round ball of light turns and heads out to sea. Indian Rocks Beach, FL. +2013-09-20,36.2716667,-83.14,Whitesburg,TN,unknown,600,Numerous red "dots" moving South to North. +2013-09-20,35.0844444,-106.6505556,Albuquerque,NM,unknown,3,Something fell to earth in new mexico last night, craft like. +2013-09-20,37.5361111,-96.6416667,Latham,KS,circle,3600,Flashing colors like ball that never moved. +2013-09-20,34.8525,-82.3941667,Greenville,SC,triangle,173,Greenville, SC, woman takes 2min13 video of ufos 20Sept2013 and broadcast on local Fox 21 TV. +1956-09-22,41.0263889,-73.6288889,Greenwich,CT,light,1290,Strange movements amoung the stars +1970-09-21,39.9355556,-91.4097222,Quincy,IL,unknown,10800,Bright blue/white light and lost time. 500 Lights On Object0: Yes +1979-09-21,43.5636111,-70.2005556,Cape Elizabeth (Near; Location Unspecified By Witness),ME,light,1800,At approximately 1AM in September of 1979, a police officer two towns south from the town I work in called our mutual neighboring polic +1986-09-21,34.4677778,-84.4291667,Jasper,GA,triangle,60,09/21/1986, Jasper, GA, triangular shape, a minute or two of duration, 3 feet above ground hovering +1988-09-21,42.3313889,-83.0458333,Detroit,MI,oval,60,Oval shape craft seen in cloudbank tilting back and forth. +1992-09-21,40.1633333,-110.4022222,Duchesne,UT,light,120,A green light descending from the sky +1994-09-21,41.2613889,-114.1933333,Montello,NV,other,40,A necklace of colored lights against light blue sky, about 800 yards long, moving slowly north. Blue sky could be seen through the cen +1994-09-21,41.2613889,-114.1933333,Montello,NV,circle,60,multi-colored circle of lights moving slowly in northerly direction above mountains. +1996-09-21,39.2763889,-122.1902778,Maxwell,CA,other,600,Large, motionless, thimble-shaped object radiating bright light from big windows, 1000 ft. over I-5. +1998-09-21,38.2122222,-119.0111111,Bodie (State Historic Park),CA,sphere,120,I saw a spherical object traveling east to west at 3PM. It appeared to change from white to black to silver and flew below the clouds. +1998-09-21,35.3733333,-119.0177778,Bakersfield,CA,changing,300,At 17:10 hrs I was driving west heading into downtown and had a clear view of the horizon. Off to the south I saw a silver cylindrical +1998-09-21,34.8697222,-111.7602778,Sedona,AZ,other,900,Gigantic craft, silent - stacked rounded lit windows, huge turbo engine. Followed by three black helicopters +1998-09-21,34.8697222,-111.7602778,Sedona ( Village Of Oak Creek),AZ,oval,20,craft accompanied by two silent aircraft and followed by one loud aircraft +1998-09-21,33.7427778,-116.2883333,Bermuda Dunes,CA,formation,5,While gazing up at the stars, I witnessed a large formation of lights heading southbound accross the sky. +1999-09-21,39.7391667,-104.9841667,Denver,CO,light,40,Star like light moved about 10 moons, disappeared, reappeared and moved 10 more moons then disappeared again. +1999-09-21,46.2469444,-114.1594444,Hamilton,MT,disk,300,Husband saw 1st. It was sitting still directly west of Hamilton, over Bitterroot Range. As soon as he pointed it out to a friend, it be +1999-09-21,32.7152778,-117.1563889,San Diego,CA,circle,1.5,Ilooked up saw circular object with 3 whitish lights on the outside one big red in the middle and went away strangely in an instant. +1999-09-21,39.7683333,-86.1580556,Indianapolis,IN,chevron,10,I observed a large boomerang shaped object and a smaller object that I am sure was associated the the first. The event was at right abo +1999-09-21,47.6588889,-117.425,Spokane,WA,fireball,420,orange fireball w/short tail +1999-09-21,47.7180556,-116.9505556,Post Falls,ID,fireball,1200,Driving eastbound I-90 near ID/WA stateline. Observed fireball with other cars stopped by side of highway for approx. 20 minutes. +1999-09-21,32.2413889,-96.4072222,Chatfield,TX,oval,3600,I WAS ABDUCTED INTO AN AIRCRAFT AND USED FOR EXPERIMENTS BY UNKNOWN BEINGS. +1999-09-21,41.3130556,-81.9469444,Columbia Station (Heading West, Past Grafton),OH,disk,1800,My daughter saw wierd light in the sky, and called out to myhusband and I who ran to the window...upon seeing this low flying, quiet br +1999-09-21,47.9791667,-122.2008333,Everett,WA,changing,30,I watched a cylinder shaped object head west, then changed form to a boomerang, transparent like state and then it traveled south +2000-09-21,46.5536111,-95.7161111,Dent,MN,light,73800,Very bright light plus red and green lights in southeastern sky - seen for 2 1/2 hours, then moved off south. +2000-09-21,40.8883333,-80.6941667,Columbiana,OH,unknown,6,The object broke into view in the blue then receded the way it entered +2000-09-21,40.8883333,-80.6941667,Columbiana,OH,circle,6,The edge of the craft slid into view from space just showing it's grey through the blue sky! +2000-09-21,36.5816667,-86.5163889,Portland,TN,circle,10,circular object turning orange as it sped away very quickly. +2000-09-21,32.2413889,-96.4072222,Chatfield,TX,oval,3900,Bright white irridescent, round in shape, no clouds near. The blinding light from the object gave me a headache to look at it. I stop +2000-09-21,32.2413889,-96.4072222,Chatfield,TX,disk,3600,i was abducted by an ailien craft and my body was examined. +2000-09-21,31.8144444,-94.8402778,Cushing,TX,fireball,2,Object passed straight overhead, moving from north to south. It seemed to be very close, seemingly to be just above a large oak tree. I +2000-09-21,37.3394444,-121.8938889,San Jose,CA,oval,10800,possible UFO crash debris discovered in southwest New Mexico (recent) +2001-09-21,45.1219444,-95.0430556,Willmar,MN,disk,15,FORMATION OF DISKS SHOOT ACROSS THE SKY . +2001-09-21,30.8325,-83.2786111,Valdosta,GA,triangle,2,A small dark triagle object traveling at a high rate of speed +2001-09-21,41.2586111,-95.9375,Omaha,NE,cigar,300,Metallic hovering object seen near Offutt AFB, NE. +2001-09-21,42.7369444,-84.4838889,East Lansing,MI,disk,15,It was very high in the sky too far for me to measure. It was reflecting in the sun but it wasn't moving. I looked about a few minutes +2001-09-21,32.2413889,-96.4072222,Chatfield,TX,oval,3600,I was driving home from work and had just talked to my daughter on the cell phone. I looked at the clock and it said 7:30pm I told her +2001-09-21,35.0844444,-106.6505556,Albuquerque,NM,oval,7,A couple of friends, my wife and I were staying in Albuquerque (87104) at the Sheraton Old Town hotel on September 21, 2001. We were s +2001-09-21,43.3247222,-95.1497222,Milford,IA,rectangle,300,Large, bright white lights appear in a straight line and then disappear +2001-09-21,39.1230556,-93.1966667,Marshall,MO,flash,1341,bright bright light +2001-09-21,36.175,-115.1363889,Las Vegas,NV,fireball,2,bright blue fire ball falling down in the North Las Vegas area by Nells AFB. +2002-09-21,39.5877778,-105.0688889,Columbine,CO,circle,2700,Round silver object seen only through binoculars that remained stationary for over 30 minutes. +2002-09-21,33.1580556,-117.3497222,Carlsbad,CA,teardrop,3600,Pinkish Lightbulb shape over neighborhood +2002-09-21,39.5488889,-89.2944444,Taylorville,IL,light,1200,We were traveling west just outside of Assumption, IL going towards Taylorville IL. Myself,my daughter, my neighbor,her stepson and my +2002-09-21,34.6380556,-99.3336111,Altus,OK,triangle,1800,i was leaving work and as i stepped outside i noticed a cright white light to the north..the sun was setting so it stood out.by the tim +2003-09-21,36.2441667,-80.8486111,Elkin,NC,fireball,10,While siting on my front porch which I do nearly every night. I was watching Commercial Jet Liners pass back and forth. I know they mus +2003-09-21,37.775,-122.4183333,San Francisco,CA,other,600,White spheres connected with what had the flexiblity of rope. Moved like a snake thru the sky. +2003-09-21,37.4283333,-121.9055556,Milpitas,CA,unknown,900,The eel like objects entered the atmosphere from what seems to be out of nowhere as a jet passed by. +2003-09-21,34.1425,-118.2541667,Glendale,CA,sphere,480,White sphere with sluight reflective quality moving slowly, then stopping briefly then disappeared. +2003-09-21,34.4,-119.2991667,Oak View,CA,disk,900,Saucer-shaped object drifted eastward over Ojai, wobbling as it descended out of sight. +2003-09-21,36.175,-115.1363889,Las Vegas,NV,circle,180,Videotaped disc shaped craft in broad daylight +2003-09-21,43.1941667,-71.1513889,Northwood,NH,light,1200,30 -40 lights like stars but much to close def not a plane +2003-09-21,35.3733333,-119.0177778,Bakersfield,CA,light,10,Bright white light (twice the size of Mars) moving slowly in the sky and then fading out. +2003-09-21,41.7561111,-124.2005556,Crescent City,CA,other,1,bright object appears in sky, then disappears in a mega second. +2003-09-21,42.3966667,-88.1836111,Fox Lake,IL,triangle,120,Triangle Craft flying in a low altitude +2003-09-21,42.0583333,-70.1791667,Provincetown,MA,other,3600,a bright, twinkling star that had red and blue appearances to it....through the binoculars other colors were visible +2004-09-21,39.1619444,-84.4569444,Cincinnati,OH,fireball,2,Big white light coming down +2004-09-21,45.5236111,-122.675,Portland,OR,circle,1200,At approx 5:30 AM I looked out my window and saw a large yellowish light in a circular form. It almost looked like a bright city lamp +2004-09-21,35.7719444,-78.6388889,Raleigh,NC,flash,1,A white line of light flashed across a portion of the sky and disappeared. +2004-09-21,41.8758333,-72.8016667,Simsbury,CT,other,180,A white, beluga whale shaped object about a third the size of a small plane flew from hor. to hor. in 3 min. ((NUFORC: Contrail?)) +2004-09-21,39.9611111,-82.9988889,Columbus,OH,disk,300,Glowing UFO seen in Columbus that began traveling backwards nearly instantly +2004-09-21,42.8794444,-88.4741667,Eagle,WI,oval,120,at approx. 20:25 pm tonight while traveling east on state hyw. 59 from Palmyra to eagle, WI. with my family wherew hyw Z intersects hyw +2004-09-21,47.5675,-122.6313889,Bremerton,WA,sphere,480,Two pulsating objects rapidly changing colors, hovering over Bremerton Naval Base!! +2004-09-21,37.2508333,-92.5102778,Hartville,MO,light,2700,Single object emitting multi-colored light - red, green, white, blue in a static position in the western sky at about 30 desgrees up fr +2004-09-21,38.1838889,-83.4327778,Morehead,KY,oval,25,It seems to glow; it is globular in shape +2004-09-21,40.7933333,-77.8602778,State College,PA,light,300,We saw a bright light that reached intense speeds and had abrupt stops. +2004-09-21,47.3005556,-122.44,Browns Point,WA,light,60,Bright light over South Puget Sound. +2005-09-21,41.6908333,-98.0033333,Albion (Rural),NE,flash,10,Unexplained bright light in early morning hours +2005-09-21,36.175,-115.1363889,Las Vegas,NV,cone,1800,Large glowing streak in sky with two strange objects. +2005-09-21,33.6694444,-117.8222222,Irvine,CA,disk,120,Great gift idea for posters on this board... +2005-09-21,43.5277778,-71.4708333,Laconia,NH,disk,600,Disk seen hiding in cloud hovering over city +2005-09-21,40.9025,-74.4075,Boonton,NJ,other,1200,Three flare-like objects slowly moving vertically at a great distance +2005-09-21,33.5386111,-112.1852778,Glendale,AZ,disk,30,I saw a round object moving across the sky after dark heading east from Glendale,Az towards Phoenix. It was just getting dark and it se +2005-09-21,32.7152778,-117.1563889,San Diego,CA,unknown,20,Flew in and out of atmosphere leaving weird trails. +2005-09-21,44.3877778,-71.1736111,Gorham,NH,other,2400,2 craft were flying around vally and appeared to be fighting with orange light balls at close range. +2005-09-21,43.5013889,-71.5125,Winnisquam,NH,light,300,Bright flashing light slowly moving over tree tops and lake +2005-09-21,44.0747222,-89.2877778,Wautoma,WI,light,2700,Four lighted objects with irregular flashing light with erractic flight pattern, occasionally emitting bright flare like flashes. +2005-09-21,43.4891667,-71.5827778,Sanbornton,NH,disk,240,A friend and I went to the observatory ontop of Steele Hill Inn. We could see in every direction for miles and observed the usual plane +2005-09-21,48.4111111,-114.3366667,Whitefish (?),MT,flash,240,flashing red and green object at night.. then suddenly a flash bulb type of light went off right below it. +2005-09-21,34.4838889,-114.3216667,Lake Havasu City,AZ,light,600,What looked like a bright orange star over the lake, as we gazed at it, it totally disappeared right before our eyes, like it knew we s +2005-09-21,39.9202778,-80.7433333,Moundsville,WV,other,300,Bright then fade +2005-09-21,40.2572222,-74.3961111,Manalapan,NJ,unknown,300,extremely bright lights hovering over the tree line before dipping below the tree line +2005-09-21,48.9466667,-122.4508333,Lynden,WA,disk,900,10 disc shaped lights hovering at an angle between the cities of ferndale wa. and lynden, wa. They were light blue in color almost like +2006-09-21,41.7519444,-87.9738889,Darien,IL,oval,2,balls of light over chicago burbs +2006-09-21,29.7630556,-95.3630556,Houston,TX,teardrop,5,Blueish-Green Bright Light falling in the sky. +2006-09-21,26.6155556,-80.0572222,Lake Worth,FL,triangle,1,Brownish silent triangular object gliding across the sky at 05:30 in Lake Worth Florida 09/21/2006 +2006-09-21,39.8397222,-74.1905556,Forked River,NJ,cigar,7,Shimming object in the sky between Popcorn Park Zoo and Garden State Parkway NJ +2006-09-21,33.426944399999996,-117.6111111,San Clemente,CA,changing,7200,Many colored lights flew into a strange formation turned into sideways discs (about 9) and lit up in all colors, blinking at eachother +2006-09-21,39.9852778,-104.82,Brighton,CO,formation,3600,This object in the sky consisting of lights, was low, and seemed interested in following my movements on the ground. +2006-09-21,39.3330556,-82.9825,Chillicothe,OH,oval,5,luminous oval spotted, low in sky +2006-09-21,39.4013889,-83.1808333,Frankfort,OH,unknown,300,Two randamly blinking lights moving with quickly changing direction ans speed oves South Ohio. Orange light while something was dropped +2006-09-21,45.8208333,-120.8205556,Goldendale (North Of),WA,light,2.5,Bright greenish white light falls directly in front and center sight of NB hwy 97 just before Yakima Indian Reservation +2007-09-21,43.2327778,-100.8530556,Rosebud,SD,changing,60,A Group of 9 Lights in 2 Rows flying south, slowing down then forming a V shape. A Low Humming Sound can be Heard. +2007-09-21,40.7088889,-84.3536111,Spencerville,OH,cigar,6,Cigar shape with two lights at both ends. +2007-09-21,30.1102778,-97.315,Bastrop,TX,cigar,45,a cigar shaped object hovered then backed up , came forward and then quickly disappeared! +2007-09-21,37.9886111,-84.4777778,Lexington,KY,disk,45,I was walking down the street with my dog, and I noticed my small dog that never barks started to growl and spasm uncontrollabley. Then +2007-09-21,41.88,-88.0077778,Lombard,IL,chevron,2400,a chevron-shaped bright light that appeared early morning in the eastern sky and would only ascend or descend +2007-09-21,42.7883333,-71.2013889,Salem,NH,diamond,300,Object was a bright light that stood out brighter than any star seen in sky from that location. +2007-09-21,35.3255556,-112.8766667,Seligman,AZ,cigar,180,bar shape bright silver no markings moved slowly horizontally and suddenly vanished +2007-09-21,40.0016667,-76.8505556,Dover,PA,sphere,360,pulsating light, hovers, disappears +2007-09-21,33.6602778,-117.9983333,Huntington Beach,CA,other,180,octogon-like craft traveling through Huntington Beach. +2007-09-21,35.0844444,-106.6505556,Albuquerque,NM,cigar,60,Bright White disk shape hovering, then suddeny dissapears. Very shocking. +2007-09-21,42.5802778,-83.0302778,Sterling Heights,MI,circle,5,a black circle hoverring over an airplain for 4-5 second +2007-09-21,41.6388889,-70.9708333,North Dartmouth,MA,other,30,mirror shaped object hovering +2007-09-21,39.0875,-81.9227778,West Chester,OH,triangle,180,traingular craft with array of bright lights silently gliding near treeline +2007-09-21,39.0875,-81.9227778,West Chester,OH,triangle,1500,Bright Triangular Shaped Craft +2007-09-21,39.2052778,-84.3947222,Deer Park,OH,triangle,600,Witnessed an object with hundreds of yellow bright lights that formed a triangle shape in Cincinnati. +2007-09-21,39.2561111,-84.4180556,Evendale,OH,triangle,900,the craft was really big and came so close and yet it remained silent the whole time +2007-09-21,35.5641667,-89.6463889,Covington,TN,fireball,6,lookin north debre fell from west to east space junk i guess +2007-09-21,33.2,-117.2416667,Vista,CA,triangle,420,MY FRIEND AND I WERE FISHING IN THE COVE BY OCEANSIDE,CA AND NOTICED A BRIGHT LIGHT. WE THOUGHT IT MIGHT BE A COBRA OR A MILITARY AIRCR +2007-09-21,33.6411111,-117.9177778,Costa Mesa,CA,circle,300,Blue ring object seen hovering above the Costa Mesa area +2008-09-21,47.8125,-116.8955556,Rathdrum,ID,unknown,2400,At approximately 2:30 on September 21, 2008 I heard a buzzing sound that appeared to be coming from my roof. I stepped onto the porch a +2008-09-21,47.8125,-116.8955556,Rathdrum,ID,unknown,2400,Dear Mr. Davenport, Here is a brief description of my brothers experience.I'm listing my contact information because we do not want it +2008-09-21,38.6272222,-90.1977778,St. Louis,MO,cigar,26,A cigar shaped ufo was hovering over the mississippi river then went straight up and was gone. WOW!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +2008-09-21,34.2819444,-118.4380556,San Fernando,CA,sphere,2700,Dividing object over San Fernando 9/21/08 followed by two jets... +2008-09-21,40.5983333,-124.1561111,Fortuna,CA,oval,1,When reviewing pictures taken at a civil war re-enactment in Fortuna, CA on September 21, 2008, I noticed an oval/circular object in th +2008-09-21,34.0522222,-118.2427778,Los Angeles,CA,sphere,2,Strange Object seen during Los Angles Airport (LAX) Approach... +2008-09-21,29.5847222,-81.2080556,Palm Coast,FL,cigar,60,WE SAW A GLOW AND THEN A CRAFT TO THE RIGHT OF THE GLOW IN THE CLOUDS. +2008-09-21,40.9477778,-90.3711111,Galesburg,IL,light,60,Earlier report was found to be ISS. +2008-09-21,40.9477778,-90.3711111,Galesburg,IL,light,60,An unusually bright light moved across the sky and disappeared about 30 degrees off the horizon. +2008-09-21,32.2216667,-110.9258333,Tucson,AZ,other,7,crescent shaped object crosses my path +2008-09-21,39.0638889,-108.55,Grand Junction,CO,unknown,240,unknow over Grand Junction co +2008-09-21,40.7205556,-76.1913889,Saint Clair,PA,cylinder,180,My husband called me out of the house on saturday night (10/20/08 at 8:30P.M.) sounding panicked . Hurry come here. I ran out and saw +2008-09-21,37.8541667,-90.5180556,Park Hills,MO,sphere,10800,On 09-21-08 recieved phone call from an acquaintance approx. 40 miles east of my residence.Acquaintance was seeing sphere shaped ob +2008-09-21,41.0036111,-76.4552778,Bloomsburg,PA,fireball,2,blue object with flames crashes +2008-09-21,26.1033333,-97.1644444,South Padre Island,TX,light,600,light bouncing like bumblebee from South Padre Island all the way to Mexico +2009-09-21,47.6063889,-122.3308333,Seattle,WA,triangle,10,7 unblinking lights in triangle formation flying low and northward fast in seattle +2009-09-21,33.8958333,-118.2191667,Compton,CA,light,1800,I really know that what i saw was not of this earth +2009-09-21,30.1102778,-97.315,Bastrop,TX,sphere,37800,9/21/0Blinking colored lights forming perfect spherical-shaped object in night sky; moving slowly from sw to north, back to south +2009-09-21,47.4830556,-122.2158333,Renton,WA,light,10,2 separate sightings within 5 minutes of each other +2010-09-21,38.2538,-94.3356,Butler,MO,unknown,300,Alien like figures seen near and on buildings of our town square along with many yellow lights overhead. +2010-09-21,40.1,-76.3544444,East Petersburg,PA,chevron,10,Two identical white lights, one following the other, speeding across a very early morning clear sky +2010-09-21,33.8886111,-117.8122222,Yorba Linda,CA,light,600,Bright star-like white light visible under dense white marine layer, stationary for ten minutes, then gone. +2010-09-21,43.1755556,-76.1197222,Cicero,NY,circle,1,Pulling into my devolpment, i see a strange white-glowing light fly from about the middle of the sky to vanishing in 1 second. +2010-09-21,40.5813889,-79.5666667,Apollo,PA,light,3600,a LIGHT that moves around like a "firefly". Then changes color. +2010-09-21,36.8527778,-75.9783333,Virginia Beach,VA,sphere,120,Ufo In Virginia Beach +2010-09-21,38.6822222,-104.7002778,Fountain,CO,oval,600,Large Grey Metallic Object Over Cheyenne Mountain (NORAD) Area. +2010-09-21,39.5297222,-119.8127778,Reno,NV,other,60,Small plane size rectangular shape with triangular nose, looked to be investigating a small cloud while walking along Offenhauser Dr. +2010-09-21,28.0341667,-80.5888889,Palm Bay,FL,oval,2,Bright yellow and red object over USAF tracking station +2010-09-21,28.0341667,-80.5888889,Palm Bay,FL,oval,2,I glanced west from my screen room and observed a large bright object for a few seconds before it disappeared behind some trees. The ob +2010-09-21,28.0341667,-80.5888889,Palm Bay,FL,oval,5,LARGE YELLOW AND RED OBJECT OVER USAF TRACKING STATION +2010-09-21,41.4772222,-72.5125,Haddam,CT,light,1200,Few Combined Bright lights hovering area between 20-25 minutes than dissapeared +2011-09-21,45.5236111,-122.675,Portland,OR,flash,7,I saw multiple objects I can not describe last night in Portland, Oregon around midnight. +2011-09-21,38.9988889,-84.6266667,Florence,KY,triangle,7200,Triangle shaped object, 3 white lights, 1 red light in the center, extremely loud and prolonged sound. +2011-09-21,34.0788889,-87.2122222,Arley,AL,fireball,8,Light falling from sky with whooshing noise heard. +2011-09-21,39.5186111,-104.7608333,Parker,CO,changing,600,Sphere transforms into transparent sheet.flyes away at high.speed. +2011-09-21,44.9430556,-123.0338889,Salem,OR,egg,120,Was driving at about 8 pm, suddenly in front of me in the sky a bright green egg shape appeared slowly crossed sky then accelerated and +2011-09-21,45.2630556,-122.6913889,Canby,OR,fireball,15,large green fireball plummenting out of the sky +2011-09-21,45.4563889,-123.8427778,Tillamook,OR,cylinder,10,Bright glowing orb +2011-09-21,45.0725,-93.4555556,Maple Grove,MN,fireball,180,Fireballs seen over Maple Grove MN +2011-09-21,42.9633333,-85.6680556,Grand Rapids,MI,oval,2,Light - Oval +2012-09-21,37.5536111,-77.4605556,Richmond,VA,circle,300,9/21/12 Richmond Va UFO sighting +2012-09-21,42.4758333,-88.3058333,Richmond,IL,circle,120,Orange orbs traveling NNE. One after another with a 20 second space. +2012-09-21,35.54,-75.4733333,Salvo,NC,disk,180,Over Salvo, N.C. - Disc shaped objsct moving in circles, forward & backward on the drop of a dime, Very high in sky. No sound. +2012-09-21,43.2227778,-71.3325,Epsom,NH,other,8,White, oblong-with-appendage, silent, high elevation, over 1000mph, no sonic boom, erratic trajectory. +2012-09-21,35.54,-75.4733333,Salvo,NC,circle,7200,Flying craft with orange flames underneath +2012-09-21,42.9261111,-89.3844444,Oregon,WI,circle,7200,Several slow moving orangish circular lights in the sky. +2012-09-21,32.7977778,-117.2394444,Pacific Beach,CA,fireball,600,Sitting in our living room watching the boats go by when we noticed these strange orange orbs in the sky. +2012-09-21,44.98,-93.2636111,Minneapolis,MN,other,360,V-shaped stealth aircraft +2012-09-21,41.926944399999996,-73.9977778,Kingston,NY,light,5,Was driving Northbound on the NYS Thruway, just before Kingston, NY exit (number 19) when right in front of us up in the sky was a brig +2012-09-21,43.3236111,-76.1169444,Mallory,NY,oval,7,Mother and 10 yr. old daughter witnessed green sphere of light in the skies of Mallory, New York on 9/21/12 +2012-09-21,47.0533333,-109.9097222,Moccasin,MT,other,20,Yellow orange elongated bar shape converted to three individual dots. +2012-09-21,41.2591667,-80.4722222,Sharpsville,PA,circle,1200,BRIGHT ILLUMINATED OBJECT IN THE SKY +2012-09-21,26.7052778,-80.0366667,West Palm Beach,FL,triangle,300,3 red lights in a triangle patter and slowly disappearing, seen by one firefighter and 4 civilians +2012-09-21,42.4405556,-76.4969444,Ithaca,NY,unknown,5,Ithaca, NY fiery massive structure above route 13 by Cornell +2012-09-21,47.3116667,-108.4213889,Valentine,MT,fireball,60,Four orange lights in sky. +2012-09-21,42.4405556,-76.4969444,Ithaca,NY,rectangle,5,Ithaca, New York Sighting 9/21 8:48PM +2012-09-21,40.0063889,-75.7036111,Downingtown,PA,oval,180,Round red objects numbering 2 to 4 duration 5 to 10 minutes climbing from the west to the east always in line formation +2012-09-21,41.5933333,-73.0858333,Oakville,CT,fireball,180,Two orange globe like objectes slow moving csouthwest over oakville/watertown then stopped and disintegrated +2012-09-21,35.54,-75.4733333,Salvo,NC,formation,3600,Salvo, N.C. looking North towards Waves, N.C. & Rodanthe, N.C. (beach side) approx. 9:30pm & lasting over an hour 4 events on & off (th +2012-09-21,40.9444444,-72.6275,Aquebogue,NY,light,600,Orange lights in sky moving in staggered line formation +2012-09-21,43.1705556,-78.6905556,Lockport,NY,fireball,300,Fireballs with cylinder top heading west to east above lockport NY at 21:30 on 9/21/12 +2012-09-21,32.7152778,-117.1563889,San Diego,CA,circle,300,Glowing orange orb +2012-09-21,38.2919444,-122.4569444,Sonoma,CA,fireball,300,Driving home from event, noticed three red pulsating orbs in a large V formation, moving together across the sky to the west. Seemed v +2012-09-21,44.7433333,-92.8522222,Hastings,MN,unknown,1,Strange flash of light that turned the sky blue +2012-09-21,35.6225,-117.67,Ridgecrest,CA,oval,7,Red oval object traveling at a high rate of speed. +2013-09-21,42.3875,-71.1,Somerville,MA,sphere,40,4 glowing orange orbs paired off in twos and moving sequentially before fading into the night sky +2013-09-21,35.6125,-77.3666667,Greenville,NC,disk,30,Glowing orange/yellow light in sky flew across and diss appeared instantly. +2013-09-21,32.7458333,-96.9975,Grand Prairie,TX,other,120,Boomerang shaped - large slow -beige-no lights or sound- north east to south west 6am 9/21/2013 +2013-09-21,35.9197222,-88.7588889,Milan,TN,circle,180,Large elongated diamond formation of 15 silent red circle lights +2013-09-21,38.7508333,-77.4755556,Manassas,VA,sphere,10,Spherical white blinking object floats acrossed the street the darts off as a car was about to hit it. +2013-09-21,35.0844444,-106.6505556,Albuquerque,NM,cylinder,900,Large bright cylindical UFO observed for 15 min. ((NUFORC Note: Helium-filled balloon at high altitude. PD)) +2013-09-21,38.8611111,-86.4872222,Bedford,IN,sphere,60,Black orb with teal flashing lights hovering over and into trees. +2013-09-21,35.2333333,-106.6638889,Rio Rancho,NM,unknown,1500,Unmoving pure white light turned to orange then faded over Rio Rancho. ((NUFORC Note: Helium-filled balloon at high altitude. PD)) +2013-09-21,41.5244444,-90.5155556,Bettendorf,IA,circle,1800,No sound just bright light and movement faster than planes +2013-09-21,35.6869444,-105.9372222,Santa Fe,NM,cylinder,300,Santa Fe , NM UFO 9/21/2013 +2013-09-21,33.3061111,-111.8405556,Chandler,AZ,fireball,240,4 flare like lights in the eastern sky. +2013-09-21,26.9338889,-80.0944444,Jupiter,FL,cross,600,9 CROSS-SHAPED GLOWING, RED/ORANGE/YELLOW LIGHTS FLOATING OVER JUPITER FLORIDA +2013-09-21,42.7261111,-87.7827778,Racine,WI,other,360,Strange lights above Lake Michigan in racine +2013-09-21,37.6922222,-97.3372222,Wichita,KS,disk,3600,Object with big bright white lights, and smaller, red, white, and blue lights hovering in the sky. +2013-09-21,42.7194444,-82.4922222,Marine City,MI,circle,1200,At approximately 20:15 on September 21, 2013 we were traveling due West looking in the direction of Algonac Michigan when we noticed st +2013-09-21,25.7738889,-80.1938889,Miami,FL,light,60,Light moving randonly in air. +2013-09-21,41.1383333,-81.8638889,Medina,OH,fireball,600,4 fireballs following each other. one dropping what looked like sparks intermittently 7 times +2013-09-21,26.1272222,-80.2333333,Plantation,FL,cross,600,Many cross shaped large orange-red lights seen moving slowly towards the south +2013-09-21,40.5488889,-84.5702778,Celina,OH,unknown,1200,Incredible light over Grand Lake +2013-09-21,34.4263889,-100.2036111,Childress,TX,light,3,Weird green light falling from the sky over childress tx, ((NUFORC Note: Meteor?? PD)) +2013-09-21,45.74,-92.7952778,Lind,WI,fireball,300,A ball of fire moved thru the sky at what seemed liked a low flying aircraft speed.we reallized it was a ball of flame that faded befor +2013-09-21,40.1577778,-83.0752778,Powell,OH,sphere,300,15 red orange spheres in a cloud formation. All objects spun in spherical orbits independent of one another. +2013-09-21,39.9611111,-82.9988889,Columbus,OH,fireball,240,6-7 orange fireballs following in formation across sky +2013-09-21,34.6086111,-98.39,Lawton,OK,circle,5,I saw a green and blue orb of light,circular falling in a straight line silently changing colors into the tree line so of Rogers n Sher +2013-09-21,42.7630556,-88.2141667,Waterford,WI,formation,60,Reddish orange colored bright lights that flew into a circle formation for several seconds..then some flew out and away, then the rest. +2013-09-21,61.2180556,-149.9002778,Anchorage,AK,oval,180,Was red and orange balls floating and soaring brightly lit all running straight line from north to south +2013-09-21,44.0805556,-103.2305556,Rapid City,SD,unknown,2400,Bright top shaped light spinning very rapidly flashing green, blue and red. +2013-09-21,41.6005556,-93.6088889,Des Moines,IA,light,600,Orange/red lights hover over Des Moines. +2013-09-21,29.4238889,-98.4933333,San Antonio,TX,formation,1200,ORANGE SPHERES IN THE SKY. +2013-09-21,32.7458333,-96.9975,Grand Prairie,TX,oval,120,Ufo sighting Grand Prairie, Tx. 10:30pm 9/21/13 +2013-09-21,41.5736111,-84.0052778,Delta,OH,fireball,30,Brightly orange fireball with small objects coming out of it. +2013-09-21,36.2077778,-119.3463889,Tulare,CA,light,1200,Two flashing lights, possibly pursued by a very silent and bright aircraft. +2013-09-21,40.8297222,-74.2405556,Verona,NJ,fireball,900,Red fiery balls of light disappearing into sky. +1976-09-02,46.4541667,-92.7616667,Moose Lake,MN,disk,300,Floating down the light beam +1978-09-02,39.3111111,-94.9222222,Leavenworth,KS,light,180,Bright orange light shines spotlight on lake,makes no sound. +1984-09-02,43.2841667,-92.8108333,Osage,IA,sphere,300,The ship seemed to be looking for something. +1990-09-02,32.7833333,-96.8,Dallas,TX,light,45,VERY BRIGHT LIGHTS FROM UP ABOVE. +1991-09-02,37.1305556,-121.6533333,Morgan Hill,CA,unknown,1800,We witnessed about 12 black objects pass overhead at night. +1996-09-02,41.0380556,-74.2944444,Wanaque,NJ,formation,90,8 vertical strobing white lights above Wanaque reservoir NJ +1997-09-02,42.6183333,-82.5311111,Algonac,MI,unknown,15,Starlike craft makes a pass three time faster than any sattelite, horizon to horizon in less than 15 seconds,Algonac, MI. +1997-09-02,45.5236111,-122.675,Portland,OR,formation,20,Four pink/orange lights in V formation flying over metro Portland +1998-09-02,41.14,-104.8197222,Cheyenne,WY,light,6,Light traveled from horizon to horizon in six seconds. Flashed at ending horizon. +1998-09-02,40.9477778,-90.3711111,Galesburg,IL,circle,300,a ball bearing aprox 200 feet from ground +1998-09-02,42.0333333,-88.0833333,Schaumburg,IL,oval,30,One brightly-lit oval took off from the ground into the sky. +1998-09-02,58.301944399999996,-134.4197222,Juneau,AK,triangle,60,Seeing 3 space crafts in one night, +1998-09-02,45.5236111,-122.675,Portland,OR,disk,15,I went out to lock my car at 11:33 PM on September 2nd and saw a white disk shaped object streak across the northern sky. +1999-09-02,32.7833333,-96.8,Dallas,TX,unknown,60,Thursday morning (9-02-99) at 03:15 I was awakened by my TriField meter with external coil. Loud alarm for over a minute. +1999-09-02,42.4075,-124.4205556,Gold Beach,OR,light,180,Red lights in V formation less than 2 miles off Paf.coast-westerly flew off due North first. Easterly advanced of center light & went +1999-09-02,29.9544444,-90.075,New Orleans,LA,light,7200,Light streaked across sky ... power failure/brownout followed. +1999-09-02,45.6388889,-122.6602778,Vancouver,WA,sphere,20,2 floating white-ish orbs and 1 red spinning cube. +1999-09-02,45.07,-85.2644444,Central Lake,MI,cylinder,2400,Saw shiny metallic object in NW sky at sunset, high on horizon. Appeared to be tilted at 45 degree angle, hovering high above horizon. +1999-09-02,60.1041667,-149.4422222,Seward,AK,light,180,3 lights observed. Pretty sure they were in orbit. 1 leading, 2 following equal distances from lead in triangular form heading in a n +1999-09-02,60.1041667,-149.4422222,Seward,AK,light,180,US Navy's "Classic Wizard", aka "White Cloud" +2000-09-02,32.8472222,-117.2733333,La Jolla,CA,disk,40,((NUFORC Note: Witness apparently reports witnessing a disk-shaped object on this date.)) +2000-09-02,47.6063889,-122.3308333,Seattle,WA,cigar,3,Cigar shaped object with several blueish white lights on side sighted moving easterly over Queen Anne neighborhood +2000-09-02,33.4147222,-111.9086111,Tempe,AZ,circle,60,U.F.O. seen over Tempe AZ at 4:14 am 9/2/2000 +2000-09-02,39.9616667,-82.4913889,Hebron,OH,light,1200,erratic star-like light changes speed/direction +2000-09-02,47.6063889,-122.3308333,Seattle,WA,other,1200,one circular UFO with colored lights, one fireball object, revealed itself and disappeared. +2000-09-02,40.2969444,-111.6938889,Orem,UT,other,3,Five connected lights moving in the direction of the point at an unearthly speed. +2000-09-02,36.8744444,-94.8772222,Miami,OK,disk,2700,saucer shaped, extremely silent, muiltple multiple colored lights, erratic movement in sky. +2001-09-02,39.1652778,-86.5263889,Bloomington,IN,oval,7200,SEVEN CRAFTS FLASHING , IN ORION'S BELT CONSTALATION FORMATION!!!! +2001-09-02,32.7252778,-97.3205556,Fort Worth,TX,circle,15,Circular light seen zig-zagging over Ft Worth on Sept. 2nd, 2001 +2001-09-02,40.6547222,-73.6722222,Lynbrook,NY,sphere,900,A UFOchecked us out while we flew model rockets. +2001-09-02,25.8572222,-80.2783333,Hialeah,FL,fireball,10,Bright Ball Across the Sky +2001-09-02,25.9083333,-80.3088889,Miami Lakes,FL,teardrop,30,To close and to colorful +2001-09-02,25.9402778,-80.2458333,Carol City,FL,other,90,Explosion of brilliant light traveling north south +2001-09-02,38.4405556,-122.7133333,Santa Rosa,CA,cross,180,slowly moving cross shaped object with brilliant orange lights, hovers and drops two much smaller objects with the same color. +2002-09-02,44.0838889,-93.2258333,Owatonna,MN,formation,3,White triangler formation +2002-09-02,38.1302778,-121.2713889,Lodi,CA,chevron,7200,Two large groupings sighted in NE and E part of the sky outside of Lodi/Stockton California +2002-09-02,47.6588889,-117.425,Spokane,WA,other,1800,a black box object +2002-09-02,40.015,-105.27,Boulder,CO,light,20,Glowing orbs sighted at University of Colorado at Boulder +2003-09-02,47.8108333,-122.3761111,Edmonds,WA,light,600,Bright object in the sky flashes on and off +2003-09-02,45.5230556,-122.9886111,Hillsboro,OR,sphere,3600,Metalic sphere about twice the size of a commerial airliner. +2003-09-02,40.2247222,-105.2708333,Lyons,CO,light,20,two red stars ,following the first ,then disappear +2003-09-02,47.2358333,-122.5491667,University Place,WA,triangle,20,UFO over University Place/Tacoma area flying in a zig zag motion. +2004-09-02,44.9444444,-93.0930556,St. Paul,MN,light,120,9/2/04 On a clear blue sky evening I noticed a bright star that seemed to be going straight into the atmosphere. +2004-09-02,47.6816667,-122.2075,Kirkland,WA,light,300,Slow moving UFO spotted from Kirkland, WA ((NUFORC Note: Blimp?? PD)) +2004-09-02,26.1219444,-80.1436111,Fort Lauderdale,FL,unknown,1200,object vented some type of vapor and left a cone shaped vortex when it left the atmosphere +2004-09-02,47.6816667,-122.2075,Kirkland,WA,oval,120,Very large, Very Slow, completely lighted aircraft over Lake Washington ((NUFORC Note: Blimp?? PD)) +2004-09-02,45.6647222,-97.0494444,Sisseton,SD,fireball,5,"Armageddon" or "Deep Impact" type fireball cruises over South Dakota +2005-09-02,29.9544444,-90.075,New Orleans,LA,sphere,7200,I saw several high speed sphere shaped objects with purposeful erratic turning ability , with night vision goggles +2005-09-02,47.5302778,-122.0313889,Issaquah (Ouside Of),WA,circle,5,Blue and orange object in the sky +2005-09-02,37.4136111,-79.1425,Lynchburg,VA,cigar,180,White cigar shaped object was stationary in the sky and then it was simply no longer there. +2005-09-02,40.9397222,-123.6302778,Willow Creek,CA,circle,3600,bright star like flash in the same spot every night +2005-09-02,43.6086111,-86.3638889,Shelby,MI,cigar,60,Shinny silver tube craft no wings - some dark areas. +2005-09-02,38.2541667,-85.7594444,Louisville,KY,light,600,Round objects spotted in Louisville, Kentucky. +2005-09-02,31.0980556,-97.3425,Temple,TX,light,4,screaming whistle with bright light hit windshield with a shocking vibrating noise and disappeared. +2005-09-02,39.2902778,-76.6125,Baltimore,MD,cylinder,60,Two distant shapes going west +2005-09-02,35.2619444,-81.1875,Gastonia,NC,fireball,20,NCCPO REPORT: All things considered, this is an odd sighting and I cannot possibly begin to explain it. +2005-09-02,43.0388889,-87.9063889,Milwaukee,WI,light,180,white wavering light +2005-09-02,40.3697222,-80.6341667,Steubenville,OH,circle,900,More than a shape, they looked like stars,flashing red, green and white. One was much larger than the other - both moving slowly in a +2005-09-02,47.2530556,-122.4430556,Tacoma,WA,unknown,180,tacoma wa sighting +2005-09-02,48.1988889,-122.1238889,Arlington,WA,light,45,BRIGHT LIGHT DISAPPEARS SUDDLENLY IN NORTHWEST SKY +2005-09-02,43.4422222,-71.5894444,Tilton,NH,light,300,white blinking lights flying very close together +2005-09-02,44.9430556,-123.0338889,Salem,OR,light,4,Observed slowly moving white light at 10:40 pm heading north from direcly overhead +2005-09-02,36.7477778,-119.7713889,Fresno (Near),CA,cigar,300,UFO THAT STOPPED DEAD CENTER, HOVERED, AND BOLTED UP TO THE RIGHT AND CONTINUED TO HOVER ALONG I-10 E NEAR FRESNO, HEADED TO TEXAS. +2005-09-02,39.8494444,-75.3561111,West Chester,PA,light,3600,light flashing for about an hour and started slowly moving away +2005-09-02,45.5866667,-87.5572222,Carney,MI,circle,3600,Pictures of a distinct round shaped (beach ball sized) object - taken in a 10 minute sequence in the woods by a motion camera. +2005-09-03,40.7719444,-80.7683333,Lisbon,OH,cigar,180,2 UFO's 1plane and a military jet fighter this morning WOW!!!!! +2006-09-02,42.7675,-78.7441667,Orchard Park,NY,light,900,Butterfly effect............lighted UFO +2006-09-02,40.5152778,-107.5458333,Craig,CO,light,120,Unusual Light Over The Rockies +2006-09-02,29.7630556,-95.3630556,Houston,TX,circle,3.5,sliver/green low flying orb +2006-09-02,38.9330556,-104.6080556,Falcon,CO,changing,30,White daytime object observed, changed shape and continued to climb out of sight, first fast then slowed then fast again. +2006-09-02,30.0269444,-95.0855556,Huffman,TX,cigar,60,craft flew up, to the right, then behind trees +2006-09-02,34.0194444,-118.4902778,Santa Monica,CA,sphere,600,Dark grey sphere over Pacific Coast Highway - Santa Monica CA. +2006-09-02,30.3569444,-87.1638889,Gulf Breeze,FL,light,120,At approximately 7:45 (not exact on time) but during astronomical twilight I noticed a greenish/blue light about 10 degrees above the s +2006-09-02,37.725,-122.155,San Leandro,CA,disk,120,My husband was driving on the I580 freeway from Oakland to Hayward, California. We were driving by San Leandro California when my 13 y +2006-09-02,44.7630556,-85.6205556,Traverse City,MI,unknown,600,september 2, 2006 sighting traverse city +2006-09-02,33.7877778,-117.8522222,Orange,CA,light,4,Bright Copper Glowing Object, emits burst of light and debris or object is deployed and falls toward northern Orange County +2006-09-02,40.6516667,-119.3541667,Gerlach,NV,light,20,LIGHTS -OVER- BURNING MAN 2006- DURING THE BURN!!! +2006-09-02,29.4238889,-98.4933333,San Antonio,TX,fireball,2,green fireball over san antonio, texas +2006-09-02,44.7630556,-85.6205556,Traverse City,MI,circle,900,Five nearly circular "fire colored" objects drifting across the sky +2006-09-02,42.6525,-73.7566667,Albany,NY,cross,180,I saw an extremely slow moving plane shaped object that neither sounded like, nor acted like a normal plane. +2006-09-02,29.6802778,-97.6472222,Luling (Near),TX,sphere,3,Orb of light that lit up the sky, that moved and dimmed out really fast and dissapeared. +2007-09-02,38.7072222,-77.0233333,Fort Washington,MD,disk,120,Object zig-zagged around sun in less than a minute. +2007-09-02,27.7,-80.9044444,Yeehaw Junction,FL,disk,30,close encounter of the second type. ((NUFORC Note: We are uncertain as to whether this is a serious report. PD)) +2007-09-02,33.9375,-117.2297222,Moreno Valley,CA,unknown,15,unidentified hovering object in the morning sky above Riverside, CA. +2007-09-02,39.8494444,-75.3561111,West Chester,PA,sphere,1800,seven orbs spotted over south east pa. +2007-09-02,40.3977778,-105.0744444,Loveland,CO,triangle,120,4 Synchronized Lights Flying above Loveland +2007-09-02,40.97,-81.6966667,Doylestown (Southeast Of),OH,unknown,60,Daylight: Tiny bright traveling east, then appeared to hover, made a sharp left turn north, accelerated, and blinked out of sight. +2007-09-02,38.2541667,-85.7594444,Louisville,KY,sphere,300,Two metallic spheres hovering in sky then vanishing as jet plane passes nearby. +2007-09-02,42.4030556,-86.2736111,South Haven,MI,unknown,300,Three mettallic type objects observed over Lake Michigan at sunset south of South Haven +2007-09-02,40.1744444,-74.9230556,Langhorne,PA,cigar,60,Shiny silver cigar shaped object with no sound. +2007-09-02,34.4313889,-110.5933333,Heber,AZ,circle,1500,Very bright white circular object between in Heber Arizona +2007-09-02,35.0241667,-110.6966667,Winslow,AZ,sphere,600,Bright light in Arizona sky - took some photos. +2007-09-02,37.6391667,-120.9958333,Modesto (On I-5; 130 Miles South Of Sacramento),CA,triangle,40,Triangular shaped, low altitude, white, solid lights were sporadically moving in the night sky in complete silence, lasted 40 sec +2007-09-02,39.1619444,-84.4569444,Cincinnati,OH,light,240,Bright, blinking star -like objects moving from the western horizon toward the east were observed. +2007-09-02,45.9975,-121.5269444,Trout Lake,WA,changing,30,10 ships, shift shaping from solid crafts to light spheres and large white light, not visible to naked eye. +2007-09-02,39.7683333,-86.1580556,Indianapolis,IN,fireball,600,Orange/red fireballs over Indianapolis. +2007-09-02,38.1075,-122.5686111,Novato,CA,other,300,TRIANGULAR GLIDER, no propulsion noise, very fast. +2007-09-02,42.8666667,-106.3125,Casper,WY,light,5,Fast moving stars flying in a V formation. +2007-09-02,46.2811111,-87.4408333,Gwinn,MI,cigar,180,cigar like objects going at high rates of speed +2007-09-02,35.2269444,-80.8433333,Charlotte,NC,unknown,7,Grayish object flying fast North to south over Independence Blvd +2008-09-02,40.8616667,-80.2866667,Ellwood City,PA,circle,600,Red and Blue flickering object +2008-09-02,43.0797222,-86.0672222,Nunica,MI,circle,6,fast moving object size of star shoots fast east and then lights up and disappears. ((NUFORC Note: Possible Iridium satellite. PD)) +2008-09-02,42.085,-76.0541667,Vestal,NY,egg,300,Close range observation of a brightly lit egg shaped UFO in Vestal, NY +2008-09-02,42.8863889,-78.8786111,Buffalo,NY,light,10,Green and red Lights spotted over Buffalo making a 90 degree turn before travelling at a high rate of speed over my car +2008-09-02,40.9644444,-76.8847222,Lewisburg,PA,light,15,Large bright white steady lights low on horizon over Lewisburg PA +2008-09-02,40.9983333,-78.3416667,Woodland,PA,circle,1200,Possible UFO over PA +2008-09-02,33.4222222,-111.8219444,Mesa,AZ,light,3600,Two bright amber colored lights appeared over Phoenix, Az. +2008-09-02,44.6697222,-74.9816667,Potsdam,NY,light,900,Bright light splits into three +2008-09-02,33.6058333,-78.9733333,Surfside Beach,SC,flash,600,Flashing Lights and Orange Orbs +2008-09-02,33.8158333,-78.6802778,North Myrtle Beach,SC,sphere,3600,Two sightings, 3-5 bright lights in a diagonal formation and 3 bright orange spheres moving together illuminating and fading out. +2008-09-02,38.3363889,-75.0852778,Ocean City (45 Miles Offshore From),MD,light,1200,A string of lights that came on and off for 20 minutes +2008-09-02,46.2397222,-119.0994444,Pasco,WA,triangle,120,Gunmetal grey type aircraft with two bright lights and a red blinking light in the center over Pasco, WA. +2009-09-02,36.06,-86.6722222,Antioch,TN,cigar,120,listen this was not an airplane and there was definatly three flying objects shaped like rods +2009-09-02,42.0083333,-91.6438889,Cedar Rapids,IA,flash,2700,flashing blue and red lights, didnt move for an hour then vanishd +2009-09-02,39.1588889,-108.7283333,Fruita,CO,light,40,Light over Fruita, Colorado +2009-09-02,41.1175,-73.4083333,Norwalk,CT,unknown,40,very radiant object sitting in the sky, looks closer than a star +2009-09-02,38.6105556,-122.8680556,Healdsburg,CA,light,120,I was at Lake Sonoma pig hunting,somethig caught my eye in the western sky.It was a bright light about ten miles high and moving west. +2009-09-02,40.0427778,-86.1275,Westfield,IN,sphere,7200,ball of light that hovered up and down and right and left. +2009-09-02,35.2269444,-80.8433333,Charlotte,NC,sphere,300,Bright, spherical object flying over Charlotte, NC +2009-09-02,34.9247222,-81.0252778,Rock Hill,SC,other,2400,1-4 Lights Flickering On and Off and Then Disappeared in Upstate South Carolina near Rock Hill. +2009-09-02,38.2538,-94.3356,Butler,MO,unknown,7200,Was it an Alien? +2009-09-02,44.0463889,-123.0208333,Springfield,OR,other,7200,A Fleet of lights in the sky, heading south I-5 corridor 9/2/09 +2009-09-02,39.0638889,-108.55,Grand Junction,CO,unknown,60,Rumbling red light in the sky with a bluish-purple tail moving very fast and changing direction instantaneously. +2009-09-02,30.6483333,-91.1563889,Zachary,LA,other,45,The object appeared to be a large wing shape and white, and had sort of a faint glow as if light was reflecting off of it. +2009-09-02,40.3972222,-91.3847222,Keokuk,IA,light,4,A extremly bright ball of light shot across the night sky a couple of thousand feet in the air then diappeared. +2009-09-02,41.760555600000004,-88.32,Aurora,IL,light,120,Large, bright, amber, flaring light over Aurora, IL +2009-09-02,34.0522222,-118.2427778,Los Angeles,CA,unknown,300,strange lights rising in the sky moving back and forth +2010-09-02,39.9166667,-75.3880556,Media,PA,triangle,3600,small in distance over the east sky, triangle, red and blue lights, will look tonight to get picture if possible +2010-09-02,36.1658333,-86.7844444,Nashville,TN,unknown,60,The Object proceeded over our location in response to an interactive action. +2010-09-02,33.7877778,-117.8522222,Orange,CA,disk,120,((HOAX??)) I went outside to enjoy the sun and I observed an unusual object in the daytime sky. +2010-09-02,47.0075,-122.9080556,Tumwater,WA,other,180,Tiny object seen flying close to large airplane. +2010-09-02,40.015,-105.27,Boulder,CO,light,25,Bring blue light seen traveling across the south western sky at high speed. +2010-09-02,34.09,-117.8894444,Covina,CA,disk,10,Gray, saucer-shaped object spotted near Covina. +2010-09-02,40.8894444,-111.88,Bountiful,UT,formation,8,Same formation of lights seen again. +2010-09-02,41.7108333,-87.7580556,Oak Lawn,IL,egg,120,low flying fast moving aircraft in airport airspace. +2011-09-02,37.3022222,-120.4819444,Merced,CA,light,7200,Flashing, pulsating ufo hovering over merced, ca +2011-09-02,38.5816667,-121.4933333,Sacramento,CA,unknown,1,3 bright white lights streak across sky in triangular formation, leave bright trail. +2011-09-02,36.5944444,-94.3838889,Pineville,MO,other,3600,blinking light over Missouri/Arkansas border that moved and "hovered" strangley +2011-09-02,42.8508333,-72.5583333,Brattleboro,VT,flash,48,Stepped outside to have a smoke, on a cloudless clear night and looked up to so a bright orange light at first looked like just an air +2011-09-02,43.0480556,-76.1477778,Syracuse,NY,disk,1800,a color changing object that left a trail of light +2011-09-02,41.6361111,-70.9347222,New Bedford,MA,disk,1200,Disk-like object floating over new bedford aprox. 300' in air. +2011-09-02,30.3844444,-81.9388889,Bryceville,FL,other,5,Craft with two white lights on either side decended from the north and headed east ,it made no noise. +2011-09-02,44.3580556,-89.0858333,Waupaca,WI,sphere,60,I saw two reddish orange balls of light fly over head. +2011-09-02,41.6005556,-93.6088889,Des Moines,IA,unknown,60,Sometime after 8:30, I went home with my mother and after parking in the driveway, I looked up (facing north) as always. Everything se +2011-09-02,36.3727778,-94.2086111,Bentonville,AR,disk,2700,Ufo in the sky at bentonville arkansas +2011-09-02,33.5777778,-101.8547222,Lubbock,TX,light,120,White Light over Lubbock Texas 23:00 Sept. 2, 20111 +2011-09-02,38.801944399999996,-81.3511111,Spencer,WV,light,60,The object was a bright light with a smaller one atop it moving erritacally plus fast then slow it moved S.E. +2011-09-02,40.7608333,-111.8902778,Salt Lake City,UT,circle,240,3 very bright Orange crafts, Very low and moving in a triangle formation. One by one they shot upward and disappered +2011-09-02,29.4238889,-98.4933333,San Antonio,TX,triangle,10,Triangular Unidentified Object with lights covering all 3 sides flying at medium speed +2011-09-02,47.2380556,-123.4066667,Matlock,WA,light,1200,Single light, made abrupt movement and disappeared. +2011-09-02,41.85,-88.3125,Batavia,IL,circle,300,Orangish orb floating in SE sky. Moved off slowly then disappeared. +2011-09-02,42.6727778,-88.5444444,Elkhorn,WI,other,60,Flying orange ball of light traveling south. +2012-09-02,38.8338889,-104.8208333,Colorado Springs,CO,unknown,1200,Large disk shaped object above Mtn Shadow..Glowing red-blue-green-white.&is stationery.. +2012-09-02,41.7822222,-72.6125,East Hartford,CT,light,2,My buddy and I were in a deep conversation and both saw a turquoise light go in light speed threw the sky under the clouds at lighten s +2012-09-02,41.85,-87.65,Chicago,IL,teardrop,300,((HOAX??)) It was big and shiny in a teardrop shape. 500 Lights On Object0: Yes +2012-09-02,43.4097222,-70.9888889,Milton,NH,light,1200,2 bright lights near Milton NH +2012-09-02,41.1238889,-100.765,North Platte,NE,triangle,300,Pumping fuel at loves travel center looked over to see people looking up in the sky walked over to see what was going on looked up in s +2012-09-02,40.5186111,-74.4125,Edison,NJ,disk,30,Driving on 287 in Edison NJ, I saw a disk shaped crafter that disappeared after a moment. +2012-09-02,42.1680556,-88.4280556,Huntley,IL,oval,8,We were sitting in our backyard around a bonfire when we saw a craft fly up out of the eastern sky. It moved westerly over our house. +2012-09-02,29.7630556,-95.3630556,Houston,TX,fireball,3,Green ball of fire falling from sky. +2012-09-02,36.7097222,-81.9775,Abingdon,VA,unknown,120,Thermal hit in the clouds after a storm +2012-09-02,41.3080556,-72.9286111,New Haven (Suburb),CT,fireball,120,It was floating arching descending but stationary on a very busy highway. +2012-09-02,30.5311111,-96.6927778,Caldwell,TX,diamond,30,We were walking with our church group and we were watching the stars then an intense noise rang out, but we couldn't see where it came +2012-09-02,39.7047222,-105.0808333,Lakewood,CO,sphere,360,Black Spherical Object Observed &quot;Floating&quot; Nearly Stationary over North Denver Area Looking East from Lakewood, Colorado +2012-09-02,44.551944399999996,-69.6322222,Waterville,ME,unknown,900,3 of us spotted several objects at night, appearing and disppearing, then appearing and disppearing. +2012-09-02,44.4686111,-71.1855556,Berlin,NH,circle,180,Large orange light in sky over berlin nh +2012-09-02,41.4169444,-87.3652778,Crown Point,IN,circle,300,My husband and I were in the backyard with our two dogs at about 8:30 last night He said, "Look up!" There were two ro +2012-09-02,42.9375,-70.8394444,Hampton,NH,circle,30,I saw 3 smallish circular yellow lights flying close together in a triangular form. They traveled across the sky toward the eastern ho +2012-09-02,42.6727778,-88.5444444,Elkhorn,WI,light,1800,I have seen a number of red lights silently go across the skies in front of my front door a number of times. I reported this sighting a +2012-09-02,44.4888889,-71.5697222,Lancaster,NH,light,300,3 lights decended and then rose up and faded away. +2012-09-02,33.7630556,-81.245,Pelion,SC,fireball,180,Orange fireball over Pelion, SC Sept. 2, 2012 +2012-09-02,40.7483333,-75.6122222,Slatington,PA,circle,3600,Four brigt, orange orbs that appear and disappear for the duration of an hour or so. +2012-09-02,41.2222222,-73.0569444,Milford,CT,oval,2400,Two pairs of bright orange orbs slowly ascending +2012-09-02,26.5625,-81.9497222,Cape Coral,FL,fireball,35,Orange object very bright then disappears +2012-09-02,26.6402778,-81.8725,Fort Myers,FL,oval,1200,It was a light over the lake close to my apartment complex and just stop, go away and came back and started bouncing. My son saw anot +2012-09-02,47.6063889,-122.3308333,West Seattle,WA,sphere,180,Orange light travels from the north over west seattle then accelerates into the sky. +2012-09-02,39.7588889,-84.1916667,Dayton,OH,triangle,240,Yellowish/orange lights +2012-09-02,40.5063889,-79.8433333,Verona,PA,fireball,1200,In the night sky, six people saw 3 orange flaming pulsating objects slowly move across the sky. +2012-09-02,37.3394444,-121.8938889,San Jose,CA,fireball,600,2 orange balls of light/fire hovering over east hills area +2013-09-02,38.4344444,-82.1325,Milton,WV,light,960,24 strange lights in sky for 16 minutes. +2013-09-02,39.0044444,-76.8758333,Greenbelt,MD,triangle,180,On my way to work I witnessed two low flying, triangular shaped craft moving in complete silence along baltimore washington parkway. +2013-09-02,26.6583333,-80.2416667,Wellington,FL,cylinder,7,Object caught inside lightning in 960 frames super slow motion, incredibly fast, makes turn +2013-09-02,33.5805556,-112.2366667,Peoria,AZ,circle,120,LARGE CIRCULAR BRIGHT LIGHT AT DUSK IN ARIZONA +2013-09-02,47.4538889,-122.3205556,Seatac,WA,unknown,180,The UFO flew so high it was hard to see. It was fast and zigged, looking asterisk-like. It may have searched for signal source. +2013-09-02,33.4222222,-111.8219444,Mesa,AZ,circle,180,Very bright light in north eastern sky. Larger then stars and smaller then moon. ((NUFORC Note: We suspect a star. PD)) +2013-09-02,33.4222222,-111.8219444,Mesa,AZ,triangle,2100,Appeared round from the ground, but unusually bright. Upon observation through binoculars it appeared more diamond shaped. +2013-09-02,33.0580556,-112.0469444,Maricopa,AZ,light,720,Light changing from red to white and changing in size stationary then disappears +2013-09-02,33.2486111,-111.6336111,Queen Creek,AZ,circle,1200,UFO filmed over queen creek, az. +2013-09-02,33.4352778,-112.3575,Goodyear,AZ,cone,1200,There was no other objects in the sky, the entire duration, including clouds. +2013-09-02,42.2041667,-72.6166667,Holyoke,MA,unknown,180,5 unidentified lights travel through the night sky. +2013-09-02,33.5975,-112.2711111,Sun City,AZ,light,900,Husband was in the swimming pool and tapped on the kitchen window for me to come outside. I walked out, and he pointed to a bright spo +2013-09-02,39.0875,-81.9227778,West Chester,OH,fireball,900,Fireball object seen in West Chester, OH. Strange flight pattern. +2013-09-02,30.4327778,-93.9622222,Buna,TX,light,900,An orange light that seemed to move when it wasn't illuminated. +2013-09-02,44.9583333,-124.0166667,Lincoln City,OR,light,120,Seen a red solid light moving from west to east. The object was not flashing like a airplane and was a difrent collor. It disappeared i +2013-09-02,44.9583333,-124.0166667,Lincoln City,OR,circle,60,A round orange ball of light- looking like fire traveled north across the sky before fading in the distance. It seemed to be rotating a +2013-09-02,37.3769444,-77.5061111,Chesterfield,VA,triangle,60,Hovered slowly down road, object had flashing lights in each corner. +2013-09-02,47.9791667,-122.2008333,Everett,WA,fireball,900,I observed an orange fireball about1/6 the size of the moon, traveling across the sky at a moderate speed twice in a 10 minute period. +1967-09-22,35.0844444,-106.6505556,Albuquerque,NM,unknown,3600,A property search and a "close encounter" with unknowns? +1970-09-22,25.4683333,-80.4777778,Homestead,FL,light,300,BRIGHT LIGHT...LOST POWER TO MISSILE SITE...LEFT AT HIGH RATE OF SPEED +1970-09-22,40.7141667,-74.0063889,New York City (Manhattan),NY,sphere,120,While I realize this is reaching a bit far back, I believe this is an important sighting, and should be reported. It was around 11: +1973-09-22,44.0394444,-101.6647222,Philip,SD,disk,120,Saucer craft landed near us. +1973-09-22,37.3058333,-89.5180556,Cape Girardeau,MO,disk,1200,I watched a disk-shaped craft hover above treeline for about 20 minutes +1974-09-22,32.7169444,-116.8752778,Jamul (East Of),CA,fireball,2100,round glowing fireball traveling northt to south and straight up and straight up and down +1986-09-22,38.3030556,-77.4608333,Fredericksburg,VA,triangle,180,I saw 4 orange non flashing glowing lights in a traingle formation. +1990-09-22,40.1163889,-88.2433333,Champaign,IL,egg,120,Black silhouette in twilight sky, almond shaped UFO moving N to S at constant speed and low altitude +1995-09-22,32.8338889,-109.7069444,Safford (Blm Land 15 Outside),AZ,disk,300,air craft 12ꯠ feet long at about 10ꯠ ft. Made up of two sqs. linked at edge one lite with ports and lights lead half dark in nigh +1995-09-22,32.3641667,-88.7036111,Meridian,MS,other,30,I was on the 5th floor of the hospital in the room with my grandmother who was dying. She died at approx 4 pm. Other family members wer +1996-09-22,39.7391667,-104.9841667,Denver,CO,light,180,I witnessed 2 unusual and unidentifiable light sources in the sky above Denver. It was an unseasonably warm September evening, no cloud +1996-09-22,30.4211111,-87.2169444,Pensacola,FL,cigar,10,silent and fast illuminated craft +1997-09-22,38.6272222,-90.1977778,St. Louis,MO,other,3600,We had just moved into our new home and could not sleep. At approx. 3:00 a.m. I noticed a glowing object in the eastern sky at about h +1997-09-22,43.1125,-84.9855556,Palo,MI,cigar,360,I was sitting outside on the Phone with a friend when I looked up and saw a silent, cigar shaped craft flying west to east due north of +1998-09-22,30.2669444,-97.7427778,Austin,TX,triangle,2,i was walking my dog.looking up at stars i felt a pressure i looked to my left out of the right corner of my eye i seen something acros +1998-09-22,61.55,-149.8666667,Big Lake,AK,light,180,Observer awoke and looked out window, seeing greenish colored light being orbited by smaller white/yellow lights +1998-09-22,38.8338889,-104.8208333,Colorado Springs,CO,fireball,15,Green 'fireball' with a blue tail. +1998-09-22,41.6022222,-71.2508333,Portsmouth,RI,egg,2,Amber/gold rising from tree level 45 deg up. Fast and accelerating. Dissaperaed behind tree branch. Very bright. +1998-09-22,32.9627778,-117.035,Poway,CA,cylinder,2,Vertical cylinder, gold and hot, bright light on the bottom. +1998-09-22,44.0522222,-123.0855556,Eugene,OR,unknown,2,Bright Light/Metor +1998-09-22,40.31,-75.1302778,Doylestown (Near),PA,other,3600,It was octagon shaped. It appeared to spin in a counter-clockwise direction with moving lights of red, green and white. It seemed to st +1998-09-22,42.9763889,-88.1083333,New Berlin,WI,chevron,60,I was on my way to work the night shift as a nurse in a local nursing home. I was traveling 35 miles per hour going east. I immediatly +1998-09-22,35.1075,-106.3722222,Cedar Crest,NM,fireball,4,Walking our dogs at 10:00 pm 9-22-98 looking south a large ball of light with a tail 3 times larger than the ball that sparked and flic +1998-09-22,32.9855556,-80.11,Ladson,SC,sphere,0.5,At approx. 23:55 EST 09/22/98 what is best described as a small orb or disc passed at high rate of speed directly above witness and was +1999-09-22,38.7508333,-77.4755556,Manassas,VA,circle,40,sitting outside, saw bright light in sky, traveling at a high speed. +1999-09-22,40.8613889,-83.4616667,Wharton,OH,triangle,180,while driving home from a football game, my family and i saw 3 lights on the horizon +1999-09-22,45.0725,-93.4555556,Maple Grove,MN,oval,60,It hovered above us for about 1 minute without a sound and then took off. +2000-09-22,41.2844444,-84.3558333,Defiance,OH,other,90,The object, in about 1 -2 seconds, moved from my east to west without a noise. It looked circular and glowed like the moon. +2000-09-22,43.2925,-85.0813889,Stanton,MI,disk,240,Father and son see three saucers on way to school. +2000-09-22,38.2541667,-85.7594444,Louisville,KY,teardrop,720,Flame looking object south of Louisville, KY airport in 2000 +2000-09-22,34.1141667,-116.4313889,Yucca Valley,CA,cylinder,3600,i was traveling from desert hot springs to barstow via old woman springs rd (hwy 247 i think it is) on hwy 62 passing from morongo vall +2000-09-22,39.9966667,-74.9930556,Cinnaminson,NJ,fireball,8,ROUND RED FUZZY OBJECT MOVING WEST TO EAST IN A VERY FAST MANNER. +2000-09-22,38.8038889,-76.9069444,Camp Springs,MD,circle,120,I looked up & observed for 1 min. a white circular object, againsta clear blue sky, that dissappeared from sight right overhead. +2000-09-22,35.198055600000004,-111.6505556,Flagstaff,AZ,other,3,At 7:41 p.m. mst a bright flare type light was seen four degrees below Polaris. 35 years of amateur astronomy and I've never seen that. +2000-09-22,47.2530556,-122.4430556,Tacoma (Northeast),WA,disk,5,5-7 SILVER DISKS WITH ROSE AURAS FLYING IN A DIAGONAL LINE 300-500 FT UP WITH NO SOUND +2000-09-22,27.4986111,-82.575,Bradenton,FL,egg,30,Disappearing double egged object twice +2000-09-22,41.8758333,-72.8016667,Simsbury,CT,chevron,30,awesome it was magical and i hope they come back +2001-09-22,35.8455556,-86.3902778,Murfreesboro,TN,circle,840,Light Orange Sphere +2001-09-22,38.2544444,-104.6086111,Pueblo,CO,triangle,10800,Multiple UFO sightings in Pueblo 09/22/01 +2001-09-22,44.0455556,-71.6705556,Lincoln,NH,light,2700,RED,BLUE-GREEN AND YELLOW-WHITE LIGHTS SITTING STILL IN SKY. +2001-09-22,44.9369444,-91.3927778,Chippewa Falls,WI,unknown,300,Two extremely loud electical/plastic sounding/zapping explosions overhead at 9:45pm on 09/22/01 +2001-09-22,40.7944444,-105.2166667,Livermore,CO,sphere,9000,Pulsating Glowing Sphere +2001-09-22,38.6958333,-119.5430556,Topaz Lake,NV,oval,300,It was a bright hovering over the ridge of the mountains +2002-09-22,35.0866667,-89.81,Germantown,TN,sphere,8,Object containing connected spheres photographed in the western sky in daylight near faint clouds. +2002-09-22,34.6888889,-89.3583333,Lake Center,MS,teardrop,240,Trucker observes Star-like object near Lake Center, Ms. +2003-09-22,43.4261111,-73.7127778,Lake George,NY,flash,300,Bright lights that changed color seen on ground with corresponding area power surge. +2003-09-22,32.1141667,-81.1541667,Garden City,GA,egg,720,Round " Ball shape in the sky +2003-09-22,47.6588889,-117.425,Spokane,WA,fireball,2,Fireball above Spokane Airport +2003-09-22,42.1033333,-88.3727778,Gilberts,IL,triangle,3,Triangle shaped object flying across the sky VERY FAST. +2003-09-22,48.1988889,-122.1238889,Arlington,WA,other,10,Large Jet Disappears with its Four Comtrails +2003-09-22,45.5236111,-122.675,Portland,OR,light,60,Bright shining object over Porland OR +2003-09-22,44.0977778,-70.2316667,Auburn,ME,triangle,240,TRIANGLE LIGHTS IN SKY +2003-09-22,35.1338889,-94.5344444,Cameron,OK,circle,900,The circle objects seemed to disapear as fast as they apeared!!!!!!!!!!! +2003-09-22,38.9516667,-92.3338889,Columbia,MO,light,5,Star-like light with trail descended in NW night sky to the west and disappeared after 3-5 seconds. +2003-09-22,35.3858333,-94.3983333,Fort Smith,AR,formation,900,a formation of five strange lights +2003-09-22,33.4483333,-112.0733333,Phoenix,AZ,light,2700,Stationary amber orbs of light fade out then reappear in the exact same spot. +2004-09-22,38.7236111,-85.3694444,Milton,KY,unknown,1800,strange colored lights +2004-09-22,38.1075,-122.5686111,Novato,CA,teardrop,300,Three objects equal distance from each other following same course. +2004-09-22,44.4563889,-89.5438889,Plover,WI,other,1800,amazing 3 huge light balls +2004-09-22,36.8525,-121.4005556,Hollister,CA,other,720,These were 4 or 5 connected globs of white material floating down out of the sky, no sound, no aircraft seen. +2004-09-22,41.6538889,-81.4505556,Eastlake,OH,light,1800,Neon Blue Flashes of light around Perry Ohio Nuclear Power PLant light up night sky and cause power disturbances +2004-09-22,38.2325,-122.6355556,Petaluma,CA,formation,900,6 small disks grouped together, changing formation, variable brightness, visible for 15 minutes, no clouds. +2004-09-22,39.36,-84.31,Mason,OH,sphere,60,Silver ball chased by jet aircraft +2004-09-22,34.7247222,-100.5336111,Memphis,TX,sphere,1800,Manuevering bright objects in the western sky, leaving short contrails, disappearing and reappearing. +2004-09-22,34.0480556,-118.5255556,Pacific Palisades,CA,changing,1800,TWO UFOs in LA 22 sept 2005 +2004-09-22,34.0522222,-118.2427778,Los Angeles,CA,light,45,Fast moving object heading South to Northeast. +2004-09-22,33.4066667,-112.0727778,South Phoenix,AZ,light,300,More amber lights over South Mountain +2004-09-22,44.0355556,-89.5213889,Coloma,WI,light,2,3 linear yellow lights over Coloma, Wisconsin +2004-09-22,33.8894444,-118.1588889,Paramount,CA,egg,600,LOOKED LIKE DUCKS FLYING SOUTH BUT THAY GLOWED +2004-09-22,43.5455556,-116.8122222,Marsing,ID,unknown,2700,Spotted UFO in the clear autumn night traveling across the sky in a SE direction toward an Air Force Base +2004-09-22,39.7683333,-86.1580556,Indianapolis,IN,flash,2,I saw two yellow/pink flashes of light just left of the moon approx. 5 mins apart, not weather related. +2004-09-22,41.28,-91.3605556,Columbus Junction,IA,light,180,Distorted lights moving slowly at a high altitude then stopping for 20 to 30 sec. then slow orangish flash and their gone. +2005-09-22,30.3116667,-95.4558333,Conroe,TX,triangle,180,I was evacuating from the hurricane Rita down the conterflow of I45 highway. I had been driving several hours and decided to jump the +2005-09-22,30.6277778,-96.3341667,College Station,TX,disk,120,ufo +2005-09-22,37.9319444,-121.6947222,Brentwood,CA,light,120,Two bright white lights travel quickly over Brentwood, Ca. +2005-09-22,47.4475,-122.4586111,Vashon,WA,fireball,1,Extremely bright white light dropped down from Orion to the ENE for one second covering apx 30 Deg. +2005-09-22,35.3733333,-119.0177778,Bakersfield,CA,disk,60,civilian sighting, can not be explained has to be experienced, Dreamland encounter, happend while dreaming. +2005-09-22,41.5680556,-87.7202778,Country Club Hills,IL,unknown,120,Cloaked object, with lights to disguise it as an airplane when viewed from a more horizontal standpoint. +2005-09-22,33.0416667,-116.8672222,Ramona,CA,fireball,180,((NUFORC Note: Vandenberg AFB missile launch. PD)) Point of light leaves an expanding glowing pear-shaped cloud of gasses. +2005-09-22,33.8752778,-117.5655556,Corona,CA,light,60,((NUFORC Note: Vandenberg missile launch. PD)) Strange light in the W side of the sky like a search light. +2005-09-22,34.1722222,-118.3780556,North Hollywood,CA,light,600,((NUFORC Note: Vandenberg AFB missile launch. PD)) Bright Light that left a Trail behind. +2005-09-22,34.2694444,-118.7805556,Simi Valley,CA,fireball,480,Bright lights and glowing ball seen over Simi Valley, Ca.. +2005-09-22,34.5636111,-111.8536111,Camp Verde,AZ,changing,300,Object sighted in Yavapai County, could be damaged craft. +2005-09-22,33.3061111,-111.8405556,Chandler,AZ,light,1800,((NUFORC Note: Missile launch. PD)) Glowing trail of orange-white light low in the sky accompanied by super-bright, blue-white light. +2005-09-22,34.7177778,-111.9208333,Cornville,AZ,light,300,Bright white light emitting circular beam fills horizon over Mingus mountains +2005-09-22,33.6125,-117.7119444,Laguna Hills,CA,unknown,600,Very Bright *V* shaped light coming from aircraft. HUGE amount of Light uncomparable to a plane in the same vision of field. +2005-09-22,33.5805556,-112.2366667,Peoria,AZ,unknown,10,Slow moving bright white light emitting particles +2005-09-22,37.6625,-121.8736111,Pleasanton,CA,sphere,300,Bay Area Ball of Light +2005-09-22,32.9627778,-117.035,Poway,CA,circle,240,craft spun around then twisted then flew up +2005-09-22,33.9533333,-117.3952778,Riverside,CA,fireball,180,THis siting was of a fireball spiraling through the western sky. It looked like it might have disipated but again flaired up. Not sure +2005-09-22,33.6305556,-112.3325,Surprise,AZ,fireball,180,Comet like light seen in the western sky near Surprise, Arizona +2005-09-22,32.2216667,-110.9258333,Tucson,AZ,fireball,15,bright object in the western sky, traveling north to south, with fan like trail. +2005-09-22,33.8886111,-117.8122222,Yorba Linda,CA,light,30,Comet-like object with a white light and contrail. +2005-09-22,33.8886111,-117.8122222,Yorba Linda,CA,triangle,120,((NUFORC Note: Vandenberg AFB missile launch. PD)) Boomerang shaped object with bright light emanating from the rear of the craft. +2005-09-22,33.4483333,-112.0733333,Phoenix,AZ,oval,60,the boject had a large bright tale like a comet then it turned off like a light it was huge thousands of people had to see it +2005-09-22,32.7152778,-117.1563889,San Diego,CA,circle,60,smoke like obect in air looked like meteoroid.. other object was small movign in zig zag movements and no lights. +2005-09-22,32.77,-108.2797222,Silver City,NM,light,9,bright object emits spherical cloud like something out of WAR OF THE WORLDS. +2005-09-22,39.5347222,-107.7825,Rifle,CO,light,120,Brillant Large Light +2005-09-22,36.8813889,-81.7622222,Saltville,VA,other,300,Witnesses claim they saw object maybe "500 feet" in the air, red and green lights, stationary for a minute or so and then moved slowly +2005-09-22,44.3752778,-71.2802778,Randolph,NH,light,2700,9/22/05 -Red lights (5-8) stationery changing to small white with roar +2005-09-22,39.9266667,-74.0775,Seaside Park,NJ,light,300,bright orange lights observed from beach to east-southeast in repeating pattern +2006-09-22,35.2219444,-101.8308333,Amarillo,TX,triangle,90,Overflight of three white luminescent delta shaped craft in a triangular formation. +2006-09-22,36.9613889,-120.0597222,Madera,CA,disk,900,If these are aircraft, they sure are quiet also. +2006-09-22,40.7141667,-74.0063889,New York City (Staten Island),NY,cigar,60,I saw a cigar shaped craft with a light on each end. The lights weren't very bright. It was silent and it glided across the sky very qu +2006-09-22,28.0391667,-81.95,Lakeland,FL,disk,1800,disk shaped object floats over power plant in lakeland fl. then lands in water +2006-09-22,41.9833333,-71.3333333,North Attleboro,MA,oval,120,Hiding in the clouds +2006-09-22,33.7069444,-117.2441667,Quail Valley,CA,triangle,120,UFO seen on Menifee,CA +2006-09-22,39.9777778,-105.1313889,Louisville,CO,light,60,My 6 year old took a picture which he then discovered had a ufo in it. +2006-09-22,42.5277778,-70.9291667,Peabody,MA,triangle,300,Triangular craft flying over Peabody Massachussetts. +2006-09-23,28.9825,-95.9691667,Bay City,TX,triangle,1500,UFO SIGHTED AT MATAGORDA TX +2007-09-22,34.1683333,-118.605,Woodland Hills,CA,circle,60,Cirle of light in the sky, moving along doing manuvers that no aircraft of earth could do. +2007-09-22,40.3636111,-89.1144444,Funks Grove,IL,oval,35,Large oval shaped object radiating green tint then bursting with speed into an orange hue. +2007-09-22,48.9466667,-122.4508333,Lynden,WA,light,7200,lights in the night sky +2007-09-22,42.1672222,-85.8469444,Lawton,MI,changing,9000,This is not the first sighting over Bankson Lake Lawton Michigan. +2007-09-22,34.4869444,-83.185,Martin,GA,other,73800,UFO sighting in Georgia, at a lake, 3 of us saw it, early in the morning, 1 big object and other star like objects moving in the sky +2007-09-22,39.6416667,-77.7202778,Hagerstown,MD,light,1800,Bright light over Maryland skies,,,, +2007-09-22,31.3352778,-109.9475,Naco (Mexico),AZ,disk,5,UFO over Naco AZ/MX +2007-09-22,33.7938889,-84.6605556,Lithia Springs,GA,disk,10,Gray disc shape craft that evades airplane. +2007-09-22,35.9483333,-106.07,La Mesilla,NM,circle,5400,Saw a light above & to right of moon that moved steadily at a very low rate of speed to L of moon. ((NUFORC Note: Jupiter? PD)) +2007-09-22,37.1491667,-105.3963889,San Pablo,CO,diamond,1800,Incredibly pure white, bright light, hanging motionless, low in s sky just after sunset Sept. 22. ((NUFORC Note: Jupiter? PD)) +2007-09-22,37.2138889,-105.5638889,San Acacio,CO,diamond,2400,diamond shape translucent ship over New Mexico +2007-09-22,41.6638889,-83.5552778,Toledo,OH,triangle,10800,triangular formation of l.e.d.-like blue lights seen in sky over maumee river by large group of people. +2007-09-22,31.5936111,-83.0144444,Ambrose,GA,oval,2,I was standing in my backyard watching the sunset and taking a couple photos when i noticed an oval shaped light hovering over my famil +2007-09-22,29.0297222,-82.7161111,Yankeetown,FL,light,3600,Dancing light in sky after dark. Faded and grew stronger several times. Very distant. +2007-09-22,38.9516667,-92.3338889,Columbia,MO,other,3600,Flashes of light with smaller lights about level of where satellites orbi +2007-09-22,42.8422222,-84.5691667,Dewitt,MI,fireball,240,2 lower flying small orange balls of that looked like fire and made no sound flying steadily. +2007-09-22,41.4994444,-81.6955556,Cleveland,OH,changing,7200,Red and Blue lights hovering over Cleveland's West side. We saw it from the E side in Garfield. ((NUFORC Note: Star?? PD)) +2007-09-22,44.5366667,-122.9058333,Lebanon,OR,fireball,60,Silent red and orange energy fireball glides just over tree tops in forested backyard outside of Lebanon, Oregon +2007-09-22,34.0522222,-118.2427778,Los Angeles,CA,sphere,900,There was a total of 4 orbs. 3 were white and one was orange/red under the gray clouds. They were about 1-2 miles away north/east of +2007-09-22,38.9747222,-74.8338889,Wildwood Crest,NJ,light,45,BRIGHT LIGHT MOVES ACROSS THE SKY WITH OUT A SOUND +2008-09-22,27.4986111,-82.575,Bradenton,FL,other,10,Dim object going north to south, not lighted, no lights or sound. +2008-09-22,47.9255556,-122.6822222,Port Ludlow,WA,disk,300,One stationary object was seen by my husband and me for less than 5 minutes. I ran out of the room to get the binoculars (gone less tha +2008-09-22,40.3408333,-76.4116667,Lebanon,PA,oval,5,BRIGHT ORANGE OVAL WITH TWO BLACK STRIPES. DID NOT MOVE...FADED AWAY. +2008-09-22,44.0463889,-123.0208333,Springfield,OR,light,60,Small Bright light moving across sector of sky then quickly disappearing +2008-09-22,39.8016667,-89.6436111,Springfield,IL,disk,300,white glowing craft travels overhead and changes direction +2008-09-22,43.3033333,-75.5183333,Lee Center,NY,light,7200,Bright Flickering Hovering Lights +2008-09-22,35.1083333,-77.0444444,New Bern,NC,light,180,they were both bright lights. +2008-09-22,44.5647222,-123.2608333,Corvallis,OR,teardrop,2,White hot glowing object directly overhead illuminates the wall of apartment building. +2008-09-22,44.9583333,-124.0166667,Lincoln City,OR,light,15,array of lights over the ocean +2008-09-22,38.5816667,-121.4933333,Sacramento,CA,light,45,Flashinng light in the sky not consistent with terrestial aircraft. +2008-09-22,33.7488889,-84.3880556,Atlanta,GA,triangle,3,My daughter and I went out to look at the lunar eclipse that was to take place at 11:00pm. We were looking in the sky for the moon and +2009-09-22,44.8147222,-71.8808333,Island Pond,VT,light,60,Two star-like objects move across night sky, then disappear in an instant. +2009-09-22,35.2269444,-80.8433333,Charlotte,NC,light,300,small roving light turns to two, then comes toward us and changes size and color again. +2009-09-22,35.614444399999996,-88.8138889,Jackson,TN,unknown,2,White Flashes over Hwy 70 Jackson TN +2009-09-22,32.6730556,-97.4602778,Benbrook,TX,light,300,strange moving lights that can't be satalites +2009-09-22,39.3458333,-84.5605556,Fairfield,OH,sphere,120,Pulsating Orb, Orange Orb +2009-09-22,34.2611111,-116.8441667,Big Bear City,CA,light,900,Driving home on hwy. 38 going towards Big Bear I saw six amber lights hovering above the mountain approximately 1000 feet above the rid +2010-09-22,37.0944444,-88.0802778,Eddyville,KY,sphere,120,Slow moving amber orb over Southeast Lyon Co., KY. +2010-09-22,41.9166667,-88.1975,Lakewood,IL,oval,240,EXTREMLY BRIGHT OBEJCT OF CONTINUOUS LUMINOSITY. +2010-09-22,34.2255556,-77.945,Wilmington,NC,oval,20,Round black object moved across infront of moon no sound. +2010-09-22,34.9616667,-89.8294444,Olive Branch,MS,light,1800,unexplanable light over rural olive branch, ms +2010-09-22,42.4775,-83.0277778,Warren,MI,triangle,600,Bright 'stars' turn into UFOs and then disappear. +2010-09-22,34.0194444,-118.4902778,Santa Monica,CA,fireball,120,Two fireballs seen south of Santa Monica. +2010-09-22,34.0522222,-118.2427778,Los Angeles,CA,other,30,it was shaped liked an octopus and it was dark in color and the arms were rotating around the center they were moveing to independently +2010-09-22,44.8086111,-124.0619444,Depoe Bay,OR,fireball,600,three fast moving orange lights moving south to north along the Oregon Coast, then faded away. +2010-09-22,45.52,-123.0586111,Cornelius,OR,sphere,60,Spherical, white light shoots left and right in Oregon sky. +2010-09-22,36.4272222,-76.8536111,Eure,NC,light,180,A bright orange light hauling ass across the sky. +2010-09-22,34.0522222,-118.2427778,Los Angeles,CA,disk,120,UFO seen hovering and speeding off. +2011-09-22,37.0561111,-85.0886111,Russell Springs,KY,flash,600,Strange 5 to 6 second pulse of Light streaked across Kentuckys view towards the north-east. +2011-09-22,40.2794444,-75.3875,Harleysville,PA,circle,240,5 orange/ yellow light over Harleysville Pa +2011-09-22,33.4147222,-111.9086111,Tempe,AZ,disk,10,Green Illuminated disc hovering over Tempe,AZ in front of Aircraft +2011-09-22,33.2,-117.2416667,Vista,CA,fireball,180,Slow moving slow pulsating fireball that stopped in sky then dropped sparks and starting falling with sparks +2011-09-23,45.2216667,-122.5808333,Mulino,OR,circle,180,circle/ red/orange differnt color lights spun +2012-09-22,44.2911111,-105.5016667,Gillette,WY,other,23400,3 UFO's +2012-09-22,35.0072222,-80.9452778,Fort Mill,SC,rectangle,600,Lights hovering above tree line +2012-09-22,34.2011111,-118.5972222,Canoga Park,CA,formation,120,05:58 AM COLOUR VERY UNUSUAL OR UNKNON 2 MINUTS DISAPEPrs in secons +2012-09-22,41.2586111,-95.9375,Omaha,NE,cylinder,1800,I saw a bight light that appeared to follow me from south Omaha to west Omaha on Satruday 9/22/2012 +2012-09-22,35.9911111,-106.08,Espanola (Seen From),NM,unknown,3600,Unknown white dot in sky Staying in one spot +2012-09-22,32.7025,-103.1355556,Hobbs,NM,oval,1800,Very bright white oval shaped object seen outside an aircraft window over west Texas. ((NUFORC Note: Jupiter. PD)) +2012-09-22,32.7152778,-117.1563889,San Diego,CA,sphere,60,Black sphere over San Diego airport flying against the wind north to south. +2012-09-22,40.4436111,-76.4286111,Fredericksburg,PA,cigar,10,Metallic, cigar-shaped object, no wings, reddish-orange color, silently travelled in a South/Southwest direction over my house. +2012-09-22,35.6869444,-105.9372222,Santa Fe,NM,diamond,3600,Seen above cloudine at sunset at 2 oclock/ originally thought to be reflecting the sun/ later bright white emitting own light in two po +2012-09-22,37.8044444,-122.2697222,Oakland,CA,changing,1800,Strange brights lights above Oakland Zoo +2012-09-22,35.0844444,-106.6505556,Albuquerque (Near),NM,circle,3600,Circle shape to the west staying mostly in one spot as light fades it gets harder to see. Smaller than the moon but way bigger than a +2012-09-22,35.3,-106.5505556,Bernalillo,NM,cone,7200,Those New Mexicans from Albuquerque, Rio Rancho and Santa Fe that reported a bright object near the moon really saw a helium balloon. +2012-09-22,44.9747222,-92.7566667,Hudson,WI,fireball,60,Me and a friend were in his yard when we saw 2 strange fireballs in the sky just apear out of nowhere. They seemed to be hovering for a +2012-09-22,33.4222222,-111.8219444,Mesa,AZ,circle,600,Four white round lights in a square formation +2012-09-22,35.6869444,-105.9372222,Santa Fe,NM,diamond,1800,Diamond shaped object in sky at sunset we have video. +2012-09-22,38.2325,-122.6355556,Petaluma,CA,light,300,8 twinkling orangish-light reddish starlike lights, starting at low altitude-climbing to 5k-10k and wink out +2012-09-22,40.1244444,-87.63,Danville,IL,fireball,300,Slow moving glow in night sky. +2012-09-22,48.22,-122.685,Coupeville,WA,changing,1200,Growing, organic light separates into individual gold lights +2012-09-22,34.8697222,-111.7602778,Sedona (South Of),AZ,fireball,0.5,EXTREMELY fast meteor-like object sighted above high thin overcast. +2012-09-22,42.5294444,-83.7802778,Brighton,MI,light,1200,Hovering lights in Brighton Mich night sky +2012-09-22,37.8227778,-121.2755556,Lathrop,CA,fireball,60,Large orange fireball type glow falling from night sky over Manteca CA 22 SEP 2012/ 21:35 +2012-09-22,40.0991667,-83.1141667,Dublin,OH,rectangle,300,9/22/2012 Saw around 20 objects that changed stages. +2012-09-22,40.0580556,-82.4013889,Newark,OH,sphere,300,Sphere orange light anomaly in the sky +2012-09-22,41.0997222,-80.6497222,Youngstown,OH,light,180,Orb like lights in pretty straight line +2012-09-22,33.4052778,-86.8113889,Hoover,AL,flash,3,Orange and blue lights +2012-09-22,45.49,-123.9575,Cape Meares,OR,light,120,Bright orange light, star shaped, hovering high over town. +2012-09-22,38.6272222,-90.1977778,St. Louis (South City),MO,changing,120,Large dark object with two bright headlights +2012-09-22,38.8444444,-82.1372222,Point Pleasant,WV,flash,18000,3 pulsating lights in small town West Virginia +2012-09-22,34.035,-77.8938889,Carolina Beach,NC,circle,120,Orange Orb like spear over ocean at Carolina Beach, NC. +2013-09-22,42.6827778,-89.0186111,Janesville,WI,light,180,8 UFO's with red lights sighted over southern Wisconsin traveling together +2013-09-22,40.1572222,-76.3072222,Lititz,PA,changing,240,Many red objects flying in different directions for about 4 minutes and then disappearing +2013-09-22,46.1311111,-92.8672222,Sandstone,MN,light,2700,Greenish white light metalic object swaying in sky. +2013-09-22,42.3802778,-72.5236111,Amherst,MA,unknown,3600,Flashing Lights, Changing colors, Amherst +2013-09-22,40.6883333,-75.2211111,Easton,PA,cigar,60,Traveling south on RT 248 in Easton Pa Saw a long cigar shaped shinny object off to my left It was moving faster than a plan no wings +2013-09-22,35.2619444,-81.1875,Gastonia,NC,cone,120,3 cones hover over back yard/trees. +2013-09-22,35.0844444,-106.6505556,Albuquerque,NM,sphere,450,A brilliant, white, nonmoving light or orb seen in Eastern sky over Albuquerque for about 2 or more hours. +2013-09-22,35.2333333,-106.6638889,Rio Rancho,NM,circle,2400,Bright white, round object in eastern sky seen from church doorway. +2013-09-22,35.2225,-97.4391667,Norman,OK,light,10,Star-like object moving away from Sirius and then disappeared +2013-09-22,42.9363889,-71.0538889,Kingston,NH,fireball,0.5,OBJECT BLUE LIGHT,SEROUDID BY BRIGHT LIGHT. +2013-09-22,41.7,-71.4166667,Warwick,RI,circle,1800,It looked like a star but moved in various directions.. that a plane could not do. we realized it was moving because it was between two +2013-09-22,43.6794444,-70.4447222,Gorham,ME,fireball,3,Blue Fireball seen in daylight +2013-09-22,43.3369444,-71.5658333,Canterbury,NH,unknown,5,Blue-Green Object Streaking Through the Sky +2013-09-22,44.0977778,-70.2316667,Auburn,ME,fireball,15,I observed a green/orange/white fireball streaking across my neighborhood. It flickered a little before dying out just above the tree t +2013-09-22,44.3741667,-70.0333333,North Wayne,ME,oval,5,Oval fireball arced above us +2013-09-22,41.9583333,-70.6677778,Plymouth,MA,fireball,8,One bright green fireball with slow white sparks on tail flying down at an angle +2013-09-22,42.7883333,-71.2013889,Salem,NH,fireball,5,Green fireball in sky +2013-09-22,37.6202778,-82.2691667,Belfry,KY,light,1800,A large light that would continuously stop, hover, and change directions in flight. +2013-09-22,41.85,-87.65,Chicago,IL,fireball,30,Orange/red glowing fireball in southwest sky over Lincoln Park neighborhood of Chicago, IL. +2013-09-22,33.89,-84.1430556,Lilburn,GA,fireball,300,My husband, and I were walking at Lilburn Park, right before dark, when we saw three fire balls with a pulsating firey triangle shape i +2013-09-22,41.7019444,-70.25,Yarmouth Port,MA,light,2,Bright green object falling very fast from the sky. +2013-09-22,38.5816667,-121.4933333,Sacramento,CA,formation,600,Orange lights in the sky over Sacramento, CA. +2013-09-22,38.5816667,-121.4933333,Sacramento,CA,sphere,1800,20 orange orbs hovering over Sacramento for at least 30 minutes. +2013-09-22,40.7875,-82.7366667,Crestline,OH,changing,120,Large orange shape shifting object over route 30 Crestline, OH. +2013-09-22,40.3488889,-85.15,Redkey,IN,light,1800,My wife, my son and I all saw lights hanging low in the sky,around 8:47 P.M where there should not be lights. It was closely in-line wi +2013-09-22,40.4841667,-88.9936111,Bloomington,IL,disk,30,Formation of many orange orbs. +2013-09-22,43.3238889,-88.1666667,Jackson,WI,light,1200,Multiple bodies of light flashing and floating over the Washington County area. They were NOT stars +2013-09-22,40.4841667,-88.9936111,Bloomington,IL,fireball,120,Around 30 orange glowing objects flying in a constant speed towards South West Direction. +2013-09-22,38.6105556,-122.8680556,Healdsburg,CA,unknown,120,This was a startling experience for both of us! +2013-09-22,44.3875,-68.2044444,Bar Harbor,ME,light,60,3 aircraft, stealth, heading NE over Bar Harbor. +2013-09-22,34.0005556,-81.035,Columbia,SC,sphere,45,Five orange lights over columbia sc +2013-09-22,40.4861111,-74.4522222,New Brunswick,NJ,light,3,Bright light traveling fast south parallel to I95 new bruinswick nj +2013-09-22,39.0838889,-77.1530556,Rockville,MD,circle,3,White fluorescent light color/dark circle in center/spherical shape/glimpse of it leaving orbit vanished leaving 2 lights behind it +2013-09-22,38.6172222,-121.3272222,Carmichael,CA,formation,180,Massive High Altitude Red/White Blinking Light 'V' Formation over Carmichael, CA. +2013-09-22,40.7319444,-73.1861111,East Islip,NY,light,25,4 Orange lights in formation of rectangle in sky/ no sound +1965-09-23,46.2113889,-119.1361111,Kennewick,WA,oval,10800,BADGER CANYON UFO LANDING, SEPTEMBER 1965. +1975-09-23,41.2008333,-73.3811111,Weston,CT,circle,300,BRIGHT LIGHT WATCHING US SLEEP 2:00 AM THEN GONE HIGH RATE OF SPEED WESTON CT PRIVATE HOME +1991-09-23,40.3061111,-121.0047222,Westwood,CA,light,2700,a bright tube of light resembling an elevator shaft descended from the light object to the ground and then returned. +1992-09-23,32.5436111,-86.2119444,Wetumpka,AL,triangle,120,MY DAD had a deck beside the House, where i occasionaly sit & watch the stars at Night I sometimes go out to look at the stars once or +1993-09-23,41.2427778,-73.2011111,Trumbull,CT,circle,30,The craft object that I witnessed was very strange that had translucent like energy moving through it. +1995-09-23,39.3522222,-112.5763889,Delta (65 Miles Sw Of),UT,flash,900,Huge flashing someting passed overhead. It lit about 1/3 of the sky. It flashed like a strobe light at about 4 second intervals. +1995-09-23,29.7955556,-90.8227778,Thibodaux,LA,other,60,Eyewitness of a large, silent, bluish-white object traveling over Thibodaux from east to west. +1997-09-23,42.0177778,-95.355,Denison,IA,disk,300,After seeing the SR71 Blackbird I saw a saucer shaped craft hoovering silently. +1997-09-23,44.5938889,-72.6169444,Hyde Park,VT,fireball,15,Glowing green ball skirting along grounds of house +1997-09-23,41.9266667,-73.9130556,Rhinebeck (South Of),NY,triangle,30,2 sightings of apparently the same triangular object, moving above tree level at a very slow rate of speed with only a dull hum +1997-09-23,41.3972222,-73.6175,Brewster,NY,triangle,30,Triangle Shaped-Matte finished flying object "floating" across the sky +1998-09-23,43.7486111,-87.9769444,Plymouth,WI,circle,5,Bluish-green ball of light, moving from the east to the west. Object had a tail. +1998-09-23,47.6105556,-122.1994444,Bellevue (North Of),WA,fireball,2,While driving west on 520 toward 405, observed a very fast fireball dropping vertically to my right (north) and disappearing behind the +1998-09-23,34.0522222,-118.2427778,Los Angeles,CA,chevron,45,large boomerang shaped craft that glowed an irridescent white light. approx. 4am ..... the 4th week of september........ moving at a st +1998-09-23,42.8141667,-73.94,Schenectady,NY,sphere,15,Bright green-white light flying soundlessly overhead +1998-09-23,37.3341667,-79.5233333,Bedford,VA,disk,600,silver disk approx size of moon with 2 black rings traveling east to west +1998-09-23,32.7563889,-99.8958333,Anson (Just East Of, On Hwy 180),TX,fireball,2,I saw a baseball sized fireball, green with yellow and red sparks trailing it, for about 2 seconds and then it disappeared. +1998-09-23,42.2694444,-71.6166667,Westborough,MA,sphere,90,Round Ball, Diameter the Sun would appear near sunset, perhaps a tad smaller. Silvery to almost translucent, pulsating between visible +1998-09-23,45.5236111,-122.675,Portland,OR,other,600,Same night as green fireball seen from Eugene to Seattle, and a report of sivlery UFO seen in Vancouver (heard on Art Bell) an unusual +1998-09-23,44.9430556,-123.0338889,Salem,OR,sphere,60,Object was perfect sphere with blue half circle trail size tip of my pinky +1998-09-23,34.0983333,-118.3258333,Hollywood,CA,fireball,8,Viewed a green "fireball" fall from the sky. +1998-09-23,30.2669444,-97.7427778,Austin,TX,disk,60,I was standing in my driveway, I looked up and saw a circular craft coming into view from a northwest direction. The size was like som +1998-09-23,47.9791667,-122.2008333,Everett,WA,fireball,1,driving s. on I-5 by everett mall, saw green fire ball moving e-w at about 500-1000 feet. small object w\tail moving very fast. expecte +1998-09-23,29.7630556,-95.3630556,Houston,TX,fireball,4,I was at the Texaco gasoline loading rack on the north side of Houston. I was loading my truck, when i happened to look to the west and +1998-09-23,43.1225,-123.4113889,Winston,OR,light,2,Bright, green fireball +1998-09-23,43.1225,-123.4113889,Winston,OR,teardrop,2,Large, green fireball like object +1998-09-23,47.2044444,-121.9902778,Enumclaw,WA,other,5,I was going to work wednesday night, going West on a back road. Igot a flash on my left side ,looking left or south Isaw a bright green +1998-09-23,47.2797222,-122.6044444,Bayview,WA,fireball,5,movement from east to west, travelling appx. 45 degree angle towards the ground +1998-09-23,47.7625,-122.2041667,Bothell (South Of),WA,light,5,Object entered atmosphere from above, traveling east to west. +1998-09-23,47.7625,-122.2041667,Bothell,WA,fireball,5,Viewed a brightly green shooting-star like fireball. It started about in the southeast sky at a downward angle and traveled west before +1998-09-23,47.7361111,-122.6452778,Poulsbo (North Of),WA,fireball,2,Green fireball with yellow tail. +1998-09-23,33.5091667,-111.8983333,Scottsdale,AZ,fireball,1.2,Good day: This evening at approximately 9:00pm in Scottsdale Arizona I was driving eastbound on Sheer Blvd. at 110th street, my attenti +1998-09-23,47.6063889,-122.3308333,Seattle,WA,fireball,8,While travelling south on highway 509 (south of 1st south bridge), a greenish fireball observed in SouthWest sky at about 10 o'clock hi +1998-09-23,47.2530556,-122.4430556,Tacoma (Southwest Of),WA,fireball,5,At 10 min. after 9pm I was facing to the south during my lunch break when I saw a fireball with a green tail traveling east to west at +1998-09-23,45.6388889,-122.6602778,Vancouver,WA,fireball,5,A 5 second slow 60 degree arc of light; slower & brighter greenish glow toward end of arc traveling east to west. +1998-09-23,47.9791667,-122.2008333,Everett,WA,fireball,2,Bright Green blazing ball passing from Northeast to Southwest burning out before the horizon. +1998-09-23,47.3811111,-122.2336111,Kent,WA,oval,2,Bright fluorescent blue-green object, flying very fast East to West, in Southern sky. No noise. No tail, but very phosphorescent. Calle +1998-09-23,32.9627778,-117.035,Poway,CA,fireball,10,This is the second sighting in 3 weeks. first sighting 3 weeks ago was a large black object low in sky trailing a blue green red tail +1998-09-23,47.4830556,-122.2158333,Renton,WA,fireball,4,Green Fireball +1998-09-23,39.2422222,-121.4080556,Browns Valley (Oregon House),CA,sphere,120,Signted object in western sky. It was moving vertical from 20 degrees above the horizon to the horizon. The color was orange and green +1998-09-23,29.7630556,-95.3630556,Houston,TX,fireball,3,I saw a fireball fall from the sky. +1998-09-23,34.4888889,-118.6219444,Castaic,CA,cigar,7200,It looked like a bright star,,,,but it pulsated, and gave off different shades of green and blue,,it also seemed to move back and forth +1998-09-23,47.1855556,-122.2916667,Puyallup,WA,other,2,Streak of green light with small head and long tail, like meteror +1998-09-23,47.6105556,-122.1994444,Bellevue,WA,fireball,3,White/green fireball falling slowly in vicinity of 405/520 interchange. +1998-09-23,47.9447222,-122.3033333,Mukilteo,WA,light,2,Additional sighting of "Greenish" ball of light. +1998-09-23,43.1547222,-77.6158333,Rochester,NY,sphere,3,I observed a very bright sphere travelling from 60 deg. to 20 deg. East of Rochester, NY. It was a bright white sphere, moving very fas +1999-09-23,38.5913889,-75.2916667,Millsboro,DE,egg,2700,Followed vehicle and occupants from Home to destination approximately 30 to 40minutes away. Stopped when vehicle stopped and appeared t +1999-09-23,48.4111111,-114.3366667,Whitefish,MT,circle,600,Circular Craft Flashing a Red Beam +2000-09-23,33.5386111,-112.1852778,Glendale,AZ,triangle,10800,Shooting star looking object that moved quickly and freely across the sky for several hours. +2000-09-23,37.5483333,-121.9875,Fremont,CA,triangle,120,Triangle Craft day time sighting low elevation for about 2:00 minutes in S.F. bay area +2000-09-23,47.3075,-122.2272222,Auburn,WA,light,180,Bright light seen neer Auburn super mall +2000-09-23,44.739444399999996,-93.1255556,Rosemount,MN,triangle,60,Craft that blew are minds +2001-09-23,33.9533333,-117.3952778,Riverside,CA,other,600,Eight objects seen within 10 minutes in broad daylight. +2001-09-23,33.8572222,-84.02,Snellville,GA,other,30,Daylight Meteor / Space Debris +2001-09-23,47.7625,-122.2041667,Bothell,WA,triangle,1800,2objects with 3 lights in triangle shape moving very slowly at a high altitutde. +2001-09-23,47.7625,-122.2041667,Bothell,WA,triangle,1800,2 triangle shape object fly slowly over Bothell +2001-09-23,47.7625,-122.2041667,Bothell,WA,triangle,600,Not balloons +2001-09-23,30.4891667,-99.7716667,Junction (10 Min W. Of, On I-10),TX,oval,7,Unidentified black object flying next to I-10, 10 minutes West of Junction, TX. +2002-09-23,43.8286111,-115.8336111,Idaho City,ID,changing,1200,At 4 a.m., star-like, brilliant, flashing red and green colors, seemed to change shape to a thin line under binoculars. +2002-09-23,30.5080556,-97.6786111,Round Rock,TX,sphere,240,round bright orange object started to decend at a very fast speed +2002-09-23,36.0625,-94.1572222,Fayetteville,AR,changing,180,Small white changing object seen flying curving path in blue sky. Object seen straight overhead -followed to horizon. 6:14pm Arkansas +2002-09-23,32.7355556,-97.1077778,Arlington,TX,chevron,60,chevron formation of dim lights of what seemed like either huge airplane or formation of some kind. +2002-09-23,37.2152778,-93.2980556,Springfield,MO,fireball,2,The trail of the fireball was very shortlived. +2002-09-23,33.7669444,-118.1883333,Long Beach,CA,triangle,4500,Time was about 21:15 I was in my back yard when I heard a loud jet as I looked up I could see these lights flashing I could not believe +2002-09-23,43.9697222,-72.3230556,Vershire,VT,circle,10800,red, and green flashing lights in VT +2002-09-23,40.1261111,-82.9291667,Westerville,OH,light,3,Westerville OH September 23 2002 UFO Sighting +2003-09-23,40.5852778,-105.0838889,Fort Collins,CO,triangle,5,3 lights in rigid formation traversing the sky in about 5 seconds +2003-09-23,40.5852778,-105.0838889,Fort Collins,CO,triangle,15,Strange triangle-shaped aircraft with 7 dim lights flying low, fast, and completely silent. +2003-09-23,33.635555600000004,-96.6086111,Sherman,TX,light,7,point of light passing quickly from west to east in Sherman Texas +2003-09-23,45.5236111,-122.675,Portland,OR,light,5400,single object non-moving, changing colors, red, blue-green, white +2003-09-23,37.4419444,-122.1419444,Palo Alto,CA,light,900,4 lights, similar to those viewed near Stanford on 9/29/03 +2003-09-23,26.8230556,-80.1388889,Palm Beach Gardens,FL,unknown,420,extremely bright glowing object at dusk, then fading to three lights circling craft in odd flash pattern +2003-09-23,38.2919444,-122.4569444,Sonoma,CA,other,4,Bright light appears in aftermath of power outage in Sonoma, California on September 23, 2003 +2003-09-23,45.5236111,-122.675,Portland,OR,sphere,10,Happened to see a very bright planet like white golf ball size light and I went outside to investigate further. +2003-09-23,37.1305556,-121.6533333,Morgan Hill,CA,other,4,A bright glowing green peanut shaped object shot off into the sky leaving a white trail +2003-09-23,37.6430556,-91.1891667,Boss,MO,light,20,Six very bright lights, soccer ball size, at treetop level , horizontal & perfectly spaced. +2003-09-23,38.0627778,-91.4033333,Cuba,MO,unknown,10,Six strange lights in the sky. +2003-09-23,29.4238889,-98.4933333,San Antonio,TX,flash,3,Flash of light and a light hovering in the clouds then disapearing +2003-09-23,39.2611111,-81.6719444,Washington,WV,circle,615,Hovering circular white light with red and green flashing lights. +2003-09-23,38.9591667,-85.8902778,Seymour,IN,other,30,A flock of 1000 lighted ducks soaring between Mars and Earth blocking Mars for a split second. +2003-09-23,46.2636111,-96.5877778,Breckenridge,MN,triangle,5,golden brown triangle speeds across sky +2004-09-23,37.0513889,-122.0722222,Felton,CA,light,3600,close encounters 3 times +2004-09-23,32.3263889,-109.4863889,Bowie,AZ,disk,5280,recorded a white light getting bigger, smaller, brighter, and dimmer moving throughout the N-NE-S part of night sky +2004-09-23,41.7055556,-70.2291667,Yarmouth,MA,light,25,SATTELITES MOVE, THESE OBJECTS DID NOT. +2004-09-23,42.5630556,-114.46,Twin Falls,ID,other,180,09/23/04 2154 Hours Observed Orange lights in formation of half circle total 8 lights in all +2005-09-23,37.7780556,-81.1883333,Beckley,WV,triangle,300,Two lighted upsidedown V's in sky side by side with UFO craft at tip. +2005-09-23,30.4327778,-93.9622222,Buna,TX,light,7200,bright light +2005-09-23,44.3877778,-71.1736111,Gorham,NH,formation,7200,Orange V-Pattern Lights Viewed in Mountains of Northern New Hampshire +2005-09-23,30.7816667,-85.5386111,Chipley (15 Miles Southeast Of),FL,light,600,Bright lights with no sound in NW Florida area. Jets in full AB's in area also. +2006-09-23,41.31,-122.3094444,Mount Shasta,CA,light,1,A light over Mt Shasta that went within itself. +2006-09-23,33.3061111,-111.8405556,Chandler,AZ,chevron,120,ufo?? good reason to believe so. +2006-09-23,34.0522222,-118.2427778,West Los Angeles,CA,light,1800,Metallic Object, Gunships Arrive. ((NUFORC Note: Student report?? Describes self as "game designer." PD)) +2006-09-23,38.1141667,-82.6033333,Louisa,KY,light,1200,It happened the same day the space shuttle reported its UFO . I think it was the 23ed sept. I went to my sister house and I was telling +2006-09-23,48.0097222,-122.5247222,Freeland,WA,unknown,600,A short, wide streak of light appeared in the sky with no visible craft, eventually disappearing north into the distance. +2006-09-23,40.3916667,-111.85,Lehi,UT,triangle,10,Faint, fast moving triangular object with three red lights at each corner over Lehi, Utah +2006-09-23,46.7133333,-93.4883333,Palisade,MN,light,120,It flew almost all the way across the clear night horizon far too fast to be an aircraft or a satelitte, zig-zagged, then darted upward +2006-09-23,30.5402778,-88.6875,Vancleave,MS,light,3600,very colorful flashing object in the night sky ((NUFORC Note: Possible sighting of a "twinkling star?") +2007-09-23,40.2330556,-76.1375,Denver,PA,light,7200,Bright Light appears in the sky at about the same time in the AM. ((NUFORC Note: Sighting of Venus. PD)) +2007-09-23,33.9886111,-83.8980556,Dacula,GA,light,2700,Flashing light moving very slowing up from horizon. +2007-09-23,28.5491667,-81.7730556,Clermont,FL,light,3600,One September 23, 2007, at approximately 6:00am, I went out to retrive my morning papers and happened to look up into the morning sky a +2007-09-23,33.6888889,-78.8869444,Myrtle Beach,SC,sphere,180,Perhaps the objects were not in the right time and were not meant to seen by people in this time. +2007-09-23,41.1844444,-73.1336111,Stratford,CT,triangle,600,TWO TRIANGLE CRAFTS NO SOUNDS OBSERVED, +2007-09-23,42.4461111,-87.8327778,Zion,IL,unknown,60,3 round white lights in a triangle formation +2007-09-23,34.9158333,-85.1091667,Ringgold,GA,unknown,2700,Stationary twinkling lights . +2008-09-23,37.775,-122.4183333,San Francisco,CA,triangle,25,Triangular formation of dim lights spotted moving smoothly across San Francisco night sky. +2008-09-23,37.6547222,-122.4066667,South San Francisco,CA,unknown,300,2:30am, a very loud rumbling noise overhead, strange musical sounds, and greenish image projected on wall. +2008-09-23,44.4563889,-89.5438889,Plover,WI,sphere,60,Small metallic spherical object seen hovering on more than one occasion over Hwy 54 in Plover +2008-09-23,40.8955556,-75.3238889,Saylorsburg,PA,other,10,Strange object seen in Saylorsburg, PA skies. +2008-09-23,36.175,-115.1363889,Las Vegas,NV,triangle,35,A triagle in orbit flys long way with six to eight light then disappears. +2008-09-23,44.98,-93.2636111,Minneapolis,MN,triangle,120,triangle shape air craft +2008-09-23,44.4686111,-71.1855556,Berlin,NH,light,10,bright lights in the sky that jump around and vanish +2008-09-23,26.525,-80.0666667,Boynton Beach,FL,triangle,30,Large white trident shape craft with flowing wispy undulating tail seen in sky south florida, boynton beach on 09/23/08. +2008-09-23,40.8152778,-73.1127778,Ronkonkoma,NY,flash,1800,Twinkling red/white bright star that moved ever so slightly for 30 minutes then dissapeared +2008-09-23,42.5377778,-83.2330556,West Bloomfield,MI,triangle,24,Strange noise, flew very slowly, was much lower than regular aircrafts should be. +2008-09-23,42.7844444,-83.2397222,Lake Orion,MI,circle,60,Blue white light travelling slowly in north east direction over rural Lake Orion, Michigan. +2009-09-23,43.6122222,-116.3905556,Meridian,ID,disk,7200,Over 2 hours long UFO hoovers nears Boise, Idaho skys. +2009-09-23,34.54,-112.4677778,Prescott,AZ,flash,3600,UFO sighting Prescott Arizona +2009-09-23,41.14,-104.8197222,Cheyenne,WY,oval,5,Bright light shooting across the sky +2009-09-23,38.8813889,-94.8188889,Olathe,KS,light,15,Satellite that apparently was something else. +2009-09-23,27.4986111,-82.575,Bradenton,FL,light,60,Early morning sighting of 3 triangular shaped lights. One changed position. Together moving quickly southeast +2009-09-23,38.545,-121.7394444,Davis,CA,light,180,The UFO came into my vision as i was sitting in my yard. I was facing north and i noticed the white bright light flying through the sk +2009-09-23,32.3094444,-90.1388889,Flowood,MS,other,600,Saw odd shaped object in sky in daylight. +2009-09-23,41.760555600000004,-88.32,Aurora,IL,unknown,30,Slow bright light, no sonic sound and turned sharply and light turned red and disappeared +2009-09-23,32.7152778,-117.1563889,San Diego,CA,light,7200,Ball of moving light over North County, San Diego +2009-09-23,38.2538,-94.3356,Butler,MO,cylinder,14400,sightind and abduction on country road. +2009-09-23,37.7058333,-121.0838889,Salida,CA,cigar,1200,cigar shaped object with bright gold lights hoovering 20 feet above almond orchards then disappered +2009-09-23,36.3133333,-82.3536111,Johnson City,TN,light,10,Orange/ amber light with red flashing light out infront of object totally silent. +2009-09-23,34.698055600000004,-118.1358333,Lancaster,CA,other,14400,ufos looks like star but moves from one end of sky to other( south& north) very fast. +2010-09-23,29.9258333,-94.2505556,Fannett,TX,disk,1200,light going around in a big circle +2010-09-23,31.5686111,-111.0516667,Tumacacori,AZ,chevron,5400,Phoenix Lights Over the Tumacacoris, Southern AZ, Sept. 23, 2010: Both Amber Light Lines and a Chevron. +2011-09-23,28.3858333,-80.7422222,Cocoa,FL,sphere,900,white sphere stationary in the sky, flashing like a star +2011-09-23,35.4675,-97.5161111,Oklahoma City,OK,light,600,A series of red lights moving south to north. +2011-09-23,25.7738889,-80.1938889,Miami,FL,unknown,1200,UFO CAME NOT 1 BUT THREE TIMES +2011-09-23,42.9633333,-85.6680556,Grand Rapids,MI,diamond,60,7 Diamond-shaped objects over Grand Rapids +2011-09-23,35.4491667,-89.815,Munford,TN,disk,60,my son was taking picture with his ipad over an old barn we have on our property and when he looked on one of the pictures the image th +2011-09-23,33.5777778,-101.8547222,Lubbock,TX,light,7200,2 Bright Lights in the West Texas +2011-09-23,33.0897222,-82.0158333,Waynesboro,GA,unknown,60,While riding in car I snapped a picture of this craft moving north at a high rate of speed. +2011-09-23,40.6041667,-73.6558333,Island Park,NY,fireball,120,One fireball floating slowly up and down in the sky a circle with fire in it my husband and I both saw it +2011-09-23,45.4469444,-122.5291667,Happy Valley,OR,fireball,30,Two separate fireballs descending slowly, in different parts of sky,one touching ground very near us, the far one vanishing at horizon +2011-09-23,25.7738889,-80.1938889,Miami,FL,circle,60,I turned around and glanced up at the black sky and saw a white round object larger than a normal star sloping down very slowly. I thou +2011-09-23,45.16,-92.9930556,Hugo,MN,other,60,Flame in the sky +2011-09-23,40.2141667,-77.0088889,Mechanicsburg,PA,triangle,30,Triangular object with 3 lights seen flying above Interstate 81 near 581 +2011-09-23,27.875,-82.8513889,Indian Rocks Beach,FL,other,60,2 lights spread probably 30 feet across from what i can tell than 1 more appeared in the center when it flew behind trees it was gone +2012-09-23,28.0891667,-80.5658333,Indialantic,FL,circle,300,Red lights in sky over Brevard +2012-09-23,38.3363889,-75.0852778,Ocean City,MD,sphere,600,4 bright orange spheres flying over Ocean City +2012-09-23,41.8638889,-87.8533333,Broadview,IL,light,180,10 to 15 lights clustered in but unattached standing still in the sky +2012-09-23,41.2794444,-72.5988889,Madison,CT,light,300,7 Large bright lights over North Madison in cloudy, overcast 2:00 AM sky 9/23/2012 +2012-09-23,33.2147222,-97.1327778,Denton,TX,diamond,10,Diamond-like shaped black UFO with no lights spotted in Denton TX in the middle of the night at low altitude +2012-09-23,38.8338889,-104.8208333,Colorado Springs,CO,triangle,4,A reddish/Orange object traveling silently at a very high rate of speed at relatively low altitude. +2012-09-23,63.6941667,-170.4788889,Savoonga,AK,light,120,One object hovering around Savoonga, ak. Sevral sightings this month. +2012-09-23,43.0125,-83.6875,Flint,MI,fireball,60,Large, glowing object (fireball?) invisible to naked eye +2012-09-23,40.4566667,-74.2469444,Laurence Harbor,NJ,changing,240,Strange cluster of what appeared to be stars in the daytime sky. +2012-09-23,40.1744444,-74.9230556,Langhorne,PA,fireball,1500,Orange fireballs like objects. +2012-09-23,40.1744444,-74.9230556,Langhorne,PA,fireball,1500,On September 23, 2012, in Langhorne, PA, I saw four unidentified flying objects and unusual aircraft activity. +2012-09-23,41.8238889,-87.8516667,Brookfield,IL,diamond,1200,About 20 orange lights crossing the sky flying mostly in groups of 4 +2012-09-23,43.7730556,-88.4469444,Fond Du Lac,WI,fireball,600,Witnessed 18 to 20 fireball orange round orbs +2012-09-23,47.2530556,-122.4430556,Tacoma,WA,other,60,Solid Black Blob +2012-09-23,34.5438889,-85.3105556,Trion,GA,sphere,60,Bright, reflective object in the sky that suddenly disappeared over Trion, Georgia. +2012-09-23,33.7488889,-84.3880556,Atlanta,GA,other,3,I was on Delta flight 1307 from Richmond to Atlanta. I was sitting on the left side of the plane in a window seat. +2012-09-23,42.1291667,-80.0852778,Erie,PA,light,600,Two groups of bright red lights hovered and moved independently in all directions for about 10 minutes over Erie, PA. +2012-09-23,27.9472222,-82.4586111,Tampa,FL,fireball,10,09/23/2012 in florida 8:30pm driving in my car spotted a red ball of fire floating in the sky,looked like it was coming toward the grou +2012-09-23,25.7738889,-80.1938889,Miami,FL,formation,10,V shape formation. Slow motion and altitude. +2012-09-23,36.2694444,-95.8544444,Owasso,OK,cross,120,Before last night, I always shook my head and thought everyone who told a UfO/alien story was silly and ridiculous. +2012-09-23,39.9522222,-75.1641667,Philadelphia,PA,circle,900,I saw alot of lights and helicopters etc , after. +2012-09-23,43.8908333,-72.4916667,Tunbridge,VT,cross,10800,Multiple objects in sky that changed color and moved in a different manner than any satellite. ((NUFORC Note: Possible stars? PD)) +2012-09-23,43.105,-88.3419444,Hartland,WI,changing,900,CRAZY UFO ENCOUNTER i was outside having a ciggarette about 9:20pm and kinda daydreaming and gazing off to the south. I see a orange gl +2012-09-23,37.3394444,-121.8938889,San Jose,CA,fireball,300,Cluster/gathering of reddish-orange lights in the sky. +2012-09-23,37.7361111,-120.9344444,Riverbank,CA,triangle,4,Elongated Triangle traveling at a high speed, Southbound over Riverbank CA. +2012-09-23,40.0427778,-86.1275,Westfield,IN,triangle,5,Red orange triangle fly over at rapid speed. +2012-09-23,39.9611111,-82.9988889,Columbus,OH,sphere,180,Four red/orange orbs move erratically over Columbus, Ohio. +2013-09-23,42.4927778,-92.3427778,Waterloo,IA,other,7200,Moving lights in the sky seen in different variations. +2013-09-23,42.4588889,-88.5177778,Alden,IL,unknown,420,Auditory phenomena of unknown origin repeated at same time at two week interval. +2013-09-23,33.8358333,-79.0480556,Conway,SC,disk,1080,UFO hovering above house with blinking lights which then floated north past tree line. +2013-09-23,40.1108333,-77.0352778,Dillsburg,PA,cigar,7200,Star like object in sky, swinging sideways and dipping up and down with many colored lights. ((NUFORC Note: Arcturus? PD)) +2013-09-23,39.2280556,-84.3541667,Montgomery,OH,disk,60,A gray dot when zoomed in on by an iTouch to be found to be saucer like. +2013-09-23,39.7391667,-104.9841667,Denver,CO,triangle,180,Triangular shaped object with a large round light on what appears to be the bottom. +2013-09-23,39.8775,-84.3022222,Englewood,OH,fireball,1200,There were multiple balls of light moving in every direction. +2013-09-23,39.6427778,-84.2866667,Miamisburg,OH,light,60,A round object as bright as the Sun but smaller. +2013-09-23,36.7758333,-121.6686111,Prunedale,CA,fireball,300,Fireball with orange tail across monterey county california sky 9-23-13. +2013-09-23,40.0333333,-83.1583333,Hilliard,OH,fireball,180,Low flying silent fireball. Thought it was a plane on fire. +2013-09-23,36.8527778,-75.9783333,Virginia Beach,VA,other,5,Metalic object bigger than empire state building appeared to rise up in blue aura of light. +2013-09-23,39.7047222,-105.0808333,Lakewood,CO,other,20,Observer 1 was outside and saw three oval shaped lights going in a diagonal circle. One of the lighted ovals disappeared and then came +2013-09-23,41.9941667,-88.2922222,South Elgin,IL,formation,120,Strange orange Light over Northern Illinois. +2013-09-23,32.3122222,-106.7777778,Las Cruces,NM,light,1200,Bright fading in and out light above town, second time seeing in a span of couple days. +2013-09-23,32.9761111,-96.595,Sachse,TX,sphere,30,Bright white sphere. +2013-09-23,35.7477778,-95.3694444,Muskogee,OK,light,120,What was thought to be a satellite, stopped completely in its travels and sat stationary for a full minute. +2013-09-23,39.7391667,-104.9841667,Denver,CO,fireball,600,Light objects appearing over North Denver in a triangle formation. +2013-09-23,40.4555556,-109.5280556,Vernal,UT,fireball,10,Large green fireball over a lake. +2013-09-23,39.7391667,-104.9841667,Denver,CO,sphere,300,3 orange spheres. +2013-09-23,38.301944399999996,-84.1475,Millersburg,KY,triangle,1800,Low horizon extremely bright triangular rapid maneuverable white with intermittent long phase reddish-orange lights at points at base +2013-09-23,26.4611111,-80.0730556,Delray Beach,FL,light,180,4 Yellow/Orange lights hovering in sky. +2013-09-23,41.8488889,-72.5722222,South Windsor,CT,light,2100,There were lights on the object, and was stationary at times. +2013-09-23,36.175,-115.1363889,Las Vegas,NV,light,300,3 pulsating lights observed near the Las Vegas valley by 2 witnesses on Sept. 23 2013 @ 9:23 PM MST. +2013-09-23,41.2844444,-84.3558333,Defiance,OH,sphere,120,Blue/White sphere over woods. +2013-09-23,39.6877778,-86.6702778,Coatesville,IN,disk,3600,Saw a disk shape with a dome top and bottom with blinking red and green lights. +1995-09-24,28.2916667,-81.4077778,Kissimmee,FL,disk,600,green glowing disk with lizard like creatures. +1997-09-24,43.2341667,-86.2483333,Muskegon,MI,disk,2,Saw from a car. Metallic saucer about 1 mile away. +1997-09-24,30.0269444,-95.0855556,Huffman,TX,teardrop,10,Large object seen running N. of FM 1960 bearing W. It was about 1ꯠ through 4ꯠ' feet in altitude. Looked to be between 5-8mi awa +1998-09-24,44.7972222,-106.9555556,Sheridan (10 Miles South Of, At The Sheridan Pipeline),WY,other,900,It looked like a star at first but since when do stars move in an octagon motion i went inside to get my bill of lading and came back o +1998-09-24,41.3747222,-83.6513889,Bowling Green,OH,flash,5,We saw a bright oval shaped flash of white light that traveled across the sky near the horizon. +1998-09-24,40.2736111,-76.8847222,Harrisburg (South Of, On I-83 Between Exits 11 &Amp; 10),PA,fireball,6,In the western sky a fireball the size of a baseball fell. First it was white, then red and then green +1998-09-24,33.6602778,-117.9983333,Huntington Beach,CA,fireball,2,saw a larger, brighter, greener, rounder, and slower than normal "falling star" toward the SW while driving to my girlfriend's house. +1998-09-24,37.6391667,-120.9958333,Modesto (North Of),CA,light,1,I was driving northbound on Hwy 99, to the NW I saw what appeared to be a GREEN shooting star "drop" from the sky in a NW direction (fr +1998-09-24,40.7141667,-74.0063889,New York City,NY,fireball,420,A red, glowing object hovering above the East River. It then dropped into the river, and its glow could still be seen after the object +1998-09-24,64.7511111,-147.3494444,North Pole,AK,sphere,600,Two Orange sphere appeared low on horizon just to left of North Star. One was hidden during filming I believe by trees. They hovered, +1998-09-24,45.1294444,-107.3925,Wyola,MT,disk,600,I looked forward and noticed in the upper right hand corner of the wind shield a dark well defined disk shaped object. +1999-09-24,39.7286111,-121.8363889,Chico,CA,other,300,small silver object, low flying in very strait line emitting what looked to be a thick bright billowy contrail the shape and length of +1999-09-24,39.9522222,-75.1641667,Philadelphia,PA,fireball,600,Three round, orange, reddish balls hovering, moving, but not advancing forward. After 5 mins, one moved slowly off the the left. +1999-09-24,42.6055556,-83.15,Troy,MI,triangle,180,Very very large triangular object outlined with lights appearing from the west, stopping briefly, then disappearing in the east at a ve +1999-09-24,32.8369444,-97.0816667,Euless,TX,unknown,60,Observed unknown objec exhibit instantanious accelleration and decelleration in airspace near DFW airport +1999-09-24,38.9105556,-122.6091667,Lower Lake,CA,triangle,3600,At 10:00pm our dogs and the neiborhood dogs started to bark. I went outside to check why they were barking. I looked around and saw i +2000-09-24,34.5636111,-111.8536111,Camp Verde,AZ,unknown,3,Fast moving bright lights that split and disappeared +2000-09-24,38.71,-105.1394444,Victor,CO,cylinder,300,colored lights behind Pike's Peak +2000-09-24,47.9791667,-122.2008333,Everett,WA,light,300,Triangle formation of faint lights moving south. +2000-09-24,26.7052778,-80.0366667,West Palm Beach,FL,light,240,Bright light, blinking off West Palm Beach, FL coast - 23.12 hous on 24 September 2000 +2000-09-24,42.0347222,-93.6197222,Ames,IA,flash,300,Birght flashing light in sky +2002-09-24,39.8402778,-88.9547222,Decatur,IL,triangle,45,Me and my good friend saw something very unusual at the zoo. +2002-09-24,39.36,-84.31,Mason,OH,sphere,480,looked like a star during full daylight--cloudless day. seemed high up, not really moving much +2002-09-24,43.7291667,-87.8105556,Sheboygan Falls,WI,light,1183,White light varying in intensity at going bright then dim across sky, then changeing to white, red, and blue in rapid succession appea +2002-09-24,26.1833333,-98.1227778,Alamo,TX,diamond,600,I had stepped out of my house to take my kids to pick up some Burger King and when I looked at the field next to our house I saw two bi +2002-09-24,42.2305556,-97.0175,Wayne,NE,sphere,120,Bright, sphere shaped light that seemed to float back and forth, then disappeared. +2003-09-24,36.1658333,-86.7844444,Nashville,TN,triangle,90,I saw 3 things wednesday. 2ufo's and one strange thing. +2003-09-24,40.7141667,-74.0063889,New York City (Brooklyn),NY,sphere,2,9/24/03 Bklyn N.Y. sphere less then 2 sec. Object moved at speed of meteor. Stopped and made left turn. then dissappeared. +2003-09-24,40.7141667,-74.0063889,New York City (Brooklyn),NY,sphere,2,9/24/03 BklynN.Y. sphere less than 2 seconds. object moved at speed of meteor. stopped and made a left turn an dissappeared +2003-09-24,44.6697222,-74.9816667,Potsdam,NY,triangle,255,Triangular with red/white/blue/orange lights, danced through the sky, also flew vertically and gave off partial beam of red.. +2003-09-24,35.2269444,-80.8433333,Charlotte,NC,light,300,Craft moves at least 43겨 miles per hour +2003-09-24,38.8338889,-104.8208333,Colorado Springs,CO,sphere,600,Unknown sphere seen in relatively close range moved rapidly and suddenly stopping and changing positions placement in the sky. +2003-09-24,38.4177778,-82.5863889,South Point,OH,light,1800,3 objects that look like stars, except stars don't have red and blue flashing lights. 2 of them dissapeared after a few minutes but th +2003-09-24,40.7236111,-73.7052778,Floral Park,NY,sphere,10,spherical object intersecting jet contrail at approximately 30000 feet +2003-09-24,30.4211111,-87.2169444,Pensacola,FL,fireball,4,Green Fireball, no lasting contrail, strange trajectory. +2003-09-24,26.1219444,-80.1436111,Fort Lauderdale,FL,triangle,120,It had no running lights and did not make a sound. +2003-09-24,40.7438889,-74.0327778,Hoboken,NJ,circle,20,Bright whitish blue stationary light, 15º north, 10º west of immediate overhead view. Object twice as bright as Mars. Object suddenly i +2003-09-24,43.2669444,-73.585,Fort Edward,NY,cigar,180,A long object with very bright lights +2003-09-24,43.2669444,-73.585,Fort Edward,NY,disk,600,I wrote in last year and never heard if anyone had seen what we did. Again I will tell you what we had seen. My daughter and I were com +2003-09-24,42.7844444,-83.2397222,Lake Orion,MI,circle,30,object in sky with bright light +2003-09-24,40.5308333,-112.2975,Tooele,UT,triangle,30,Very bright (triangular?) object flashing red & green observed drifting after being stationary. +2003-09-24,45.5236111,-122.675,Portland,OR,circle,180,Flickering Colored Orb +2004-09-24,35.2269444,-80.8433333,Charlotte,NC,light,45,pulsing light racing us on the highway outside charlotte, nc +2004-09-24,29.8944444,-81.3147222,St. Augustine,FL,cigar,60,2004 cigar shapped object hovering in sky over neighbors house +2004-09-24,41.2022222,-79.3277778,Strattanville,PA,disk,600,orange glowing ufo +2004-09-24,42.2830556,-87.9530556,Libertyville,IL,circle,1200,color changing, bouncing object in the sky. ((NUFORC Note: We suspect the object may have been a star. PD)) +2005-09-24,37.1694444,-104.5,Trinidad,CO,unknown,1,2 large white lights moving N/NE. (We were facing North) Each light was about the size of Mars in the night sky. There was no sound, n +2005-09-24,41.1844444,-73.1336111,Stratford,CT,unknown,7200,Twinkling multi-colored light in the South Eastern sky of Stratford, CT sky at around 3:00am. Lasted for over 2 hours, hovering. +2005-09-24,40.6297222,-91.315,Fort Madison,IA,light,1200,Recently my friends and I were on a mission trip just outside of Fort Madison, Iowa. We had just finished doing some work on a house wh +2005-09-24,30.5575,-97.3041667,Noack (Near Thrall),TX,rectangle,1500,It looked exactly like a plain white shirt box you would put a dressing robe in to give your dad for Christmas... +2005-09-24,42.9633333,-85.6680556,Grand Rapids,MI,chevron,300,Red chevron shadowing small plane. +2005-09-24,41.85,-87.65,Chicago,IL,oval,300,Two oval objects flying high over Chicago Sky +2005-09-24,33.9938889,-96.3705556,Durant,OK,other,1200,A Bright Light High Up in The Southern Sky... +2005-09-24,33.9022222,-118.0808333,Norwalk,CA,circle,360,THE SHINNING OBJECT MOVED SLOW FROM ONE SPOT TO ANOTHER THAN IT TOOK OFF LIKE A SHOOTING STAR. +2005-09-24,40.1786111,-122.2347222,Red Bluff,CA,other,3,Flash lighting entire skyline +2005-09-24,41.5061111,-87.6355556,Chicago Heights,IL,circle,3600,Three strange lights in the night sky on Sept. 24th, 2005. Were they were man-made or terrestrial? +2005-09-24,38.8338889,-104.8208333,Colorado Springs,CO,flash,360,Bright Flashing extremely white lights. +2005-09-24,26.3180556,-80.1,Deerfield Beach,FL,triangle,30,I saw a boomerang/triangle shaped object sort of swimming through the air. It moved like a jelly fish and looked like it was plasma. +2006-09-24,47.4236111,-120.3091667,Wenatchee,WA,chevron,15,Two pink/orange chevron shaped objects flying north with no sound. +2006-09-24,41.7355556,-122.6333333,Yreka,CA,light,1800,The UFO hovered, not moving, canging color and was 10+ times brighter than any star. +2006-09-24,30.6325,-97.6769444,Georgetown,TX,chevron,30,At 11:30 on September 24, We observed a quiet, fast V-shaped craft travelling from approx. NE to SW, lasting approx. 30 to 45 seconds. +2007-09-24,40.2561111,-75.4641667,Schwenksville,PA,circle,2100,Two possible UFO's sighted twenty miles west of Philadelphia, Pa. ((NUFORC Note: Sighting of Venus and Mars. PD)) +2007-09-24,41.5933333,-87.3463889,Gary,IN,rectangle,72,It was shaped like a thin razor. +2007-09-24,33.8752778,-117.5655556,Corona,CA,circle,15,One bright white circular object traveling West to East at very high altitude. +2007-09-24,43.1683333,-89.0666667,Marshall,WI,light,120,i saw two lights flying to my left as a i was driving in the country towards home i was on highway t going east. the lights were low f +2007-09-24,40.0330556,-75.7638889,Guthriesville,PA,disk,15,Rotating orange beam appeared to stop and zig-zag away from approaching comm. airplane +2007-09-24,44.9430556,-123.0338889,Salem,OR,light,15,No aircraft could have hovered so high, nor ascended vertically so quickly. +2007-09-24,26.9172222,-82.0786111,Punta Gorda Isles,FL,other,180,Dull silver-colored and soundless object descened at angle from clouds to about twenty feet above treetops, then traveled east. +2008-09-24,38.3105556,-85.4875,Pewee Valley,KY,fireball,180,3 fireballs one following a VERY low jet airliner less than a minute after i saw the first 2. +2008-09-24,32.2216667,-110.9258333,Tucson,AZ,teardrop,15,Unidentified object sighted east side tucson +2008-09-24,41.0036111,-76.4552778,Bloomsburg,PA,circle,60,Rotating disc over Buckhorn seen for a minute, then disappears. +2008-09-24,36.2361111,-90.0555556,Kennett,MO,cylinder,600,Slow moving cylindrical shaped object flying at low fairly low altitude. +2008-09-24,36.6080556,-94.4475,Lanagan,MO,light,2100,northwest sky red and blue blinking hovering light ,for over 30 minutes moving in a cross formation +2008-09-24,34.5022222,-97.9575,Duncan,OK,other,1800,Numourous Objects In Night Sky For About 45 minutes. ((NUFORC Note: We suspect satellites and stars. PD)) +2008-09-24,41.3144444,-81.8358333,Strongsville,OH,light,20,bright lights spotted in the middle of the little dipper in strongsville OH 9/24 at exactly 9:45 pm +2008-09-24,33.7838889,-116.9577778,San Jacinto,CA,light,10,Red light In San Jacinto, CA. +2008-09-24,30.3319444,-81.6558333,Jacksonville,FL,fireball,7,It was a hugh bright bluish-greenish object traveling the tree line from east to west. +2008-09-24,33.4936111,-117.1475,Temecula,CA,triangle,3600,Brightly lit object about the size and brightness of a planet in the night sky, made several movements in multiple directions. +2009-09-24,34.0233333,-84.6155556,Kennesaw,GA,light,300,MUFON/GEORGIA REPORT: MUFON Investigation of Large Brilliant Light Over I-75 North of Atlanta +2009-09-24,33.4483333,-112.0733333,Phoenix,AZ,disk,30,Flying craft illuminated by solid orange light bar over phoenix AZ at 12:25am. +2009-09-24,47.2530556,-122.4430556,Tacoma,WA,light,10,((HOAX??)) Bright Blue wall of light in Tacoma. +2009-09-24,32.7577778,-84.875,Hamilton,GA,fireball,2,Green fireball came out of the sky and dissapeared into the trees. +2009-09-24,32.7577778,-84.875,Hamilton,GA,fireball,2,Grren fireball came out of the sky and dissapeared into the trees. +2009-09-24,42.5091667,-84.6558333,Eaton Rapids,MI,light,420,Fast moving white light over Lansing Michigan area. +2009-09-24,33.4472222,-84.1469444,Mcdonough,GA,circle,10,Observed a large circular orb of dense greenish-white light falling relatively slowly straight toward the ground. +2010-09-24,41.1616667,-112.0255556,Roy,UT,unknown,300,Repetitive meteor style lights in a group flying over Utah's Hill Air Force Base then disappearing. +2010-09-24,32.6466667,-97.2255556,Kennedale,TX,disk,1980,Saucer-shaped obj. w/ rotating red, white and sometimes red lights, moving and hovering for 33 min.((NUFORC Note: Possible star?PD)) +2010-09-24,31.7586111,-106.4863889,El Paso,TX,other,10,Several different shape ufo sightings in the past few months. +2010-09-24,36.0397222,-114.9811111,Henderson,NV,fireball,0.5,Bright Green Fireball in night sky travelling west-east over Henderson NV Food for Less parking lot 9-24-10 +2010-09-24,43.3616667,-70.4772222,Kennebunkport,ME,other,1200,Thirty craft with orange lights pass overhead in Kennebunkport, Maine. +2010-09-24,43.3616667,-70.4772222,Kennebunkport,ME,other,900,I own a retail store in Kennebunkport, a summer resort town on the southern coast of Maine. Yesterday, September 24, 2010, I went to m +2010-09-24,34.5794444,-118.1155556,Palmdale,CA,light,40,4 white dim lights cruising together and thought it was a plane when I noticed there was no beacon light. +2010-09-24,34.0194444,-118.4902778,Santa Monica,CA,circle,600,Large UFO, comes from over the ocean and then to over the santa monica pier. +2011-09-24,46.4819444,-90.3058333,Kimball,WI,diamond,540,Diamond craft lit up night. +2011-09-24,28.3244444,-82.3372222,Pasco,FL,unknown,1200,Moving fast with flashing colors +2011-09-24,36.175,-115.1363889,Las Vegas,NV,light,10800,I noticed a bright blue light in the middle of the sky. ((NUFORC Note: We suspect a sighting of a twinkling star. PD)) +2011-09-24,29.8944444,-81.3147222,St. Augustine,FL,circle,1200,A SPINNING CIRCLE THAT HAD LIGHT ON IT THAT CHANGED COLORS. ((NUFORC Note: We suspect a sighting of a twinkling star. PD)) +2011-09-24,36.175,-115.1363889,Las Vegas,NV,oval,4,Five green lights in an oval form appeared and disappeared from the clouds +2011-09-24,35.2219444,-101.8308333,Amarillo,TX,circle,1200,Two bright flashing round objects moveing in all directions then stoping ubruptly +2011-09-24,35.7563889,-83.9705556,Maryville,TN,triangle,3600,Green and red lights from a bright object moving. ((NUFORC Note: We suspect a sighting of a twinkling star. PD)) +2011-09-24,43.4197222,-85.8,Newaygo,MI,cigar,300,Today I saw a craft that I thought may be a plane. Long silver shape as you would see when a plane is side ways. I did not see a tail s +2011-09-24,42.2141667,-83.15,Wyandotte,MI,cylinder,74,Wyandotte, MI Cylinder/1min/14secs Craft with rotating door +2011-09-24,42.2141667,-83.15,Wyandotte,MI,fireball,300,red fireball object saucer like flying object +2011-09-24,37.9405556,-101.2544444,Lakin,KS,light,600,Single brilliant light moving from southwest to northeast at moderate speed. ((NUFORC Note: Possible satellite or ISS?? PD)) +2011-09-24,34.4208333,-119.6972222,Santa Barbara,CA,light,300,((HOAX??)) huge blue violet light +2011-09-24,44.7677778,-93.2775,Burnsville,MN,unknown,900,Hovering Object Near Cliff Rd/Portland Ave S +2011-09-24,28.1611111,-81.6019444,Davenport,FL,disk,60,Domed Disc in the skies of Davenport, FL 9/24/2011 +2011-09-24,41.1844444,-73.1336111,Stratford,CT,other,300,Several orange lights moving in unison across the night sky. +2011-09-24,43.0986111,-77.4422222,Fairport,NY,formation,60,2 large lights in the sky with a orange glow. At first thought to be a plane flying very low and quite, however they joined together to +2011-09-24,34.6833333,-82.8375,Clemson,SC,cylinder,180,Observed large bright orange fiery object over Clemson SC night sky near midnight. +2011-09-24,25.7738889,-80.1938889,Miami,FL,other,15,Witnessed a silent arrowhead shaped craft that blended in with the night sky and clouds +2012-09-24,35.7111111,-78.6144444,Garner,NC,light,67,Orange star like light slowly moving changed direction then bolted off. +2012-09-24,43.3219444,-70.5813889,Wells,ME,disk,60,I saw a small, black, disk-shaped object traveling north at a very high rate of speed (traveling in a straight line) under the clouds +2012-09-24,38.9519444,-76.5783333,Riva,MD,fireball,300,Orange fireball seen slowly rising up in the sky, moving away, then disappearing behind a cloud. Object seen by 4 individuals. +2012-09-24,47.6063889,-122.3308333,Seattle,WA,rectangle,60,Low flying aircraft with red and green lights over Green Lake area in Seattle. ((NUFORC Note: Aircraft? PD)) +2012-09-24,41.6763889,-71.9155556,Plainfield,CT,circle,900,Huge craft with red lights over tree tops circling area 3 times +2012-09-24,35.7913889,-78.7813889,Cary,NC,light,3,Bright illumination in Cary, NC. +2012-09-24,42.5116667,-73.0583333,Windsor,MA,circle,3,My companion and I witnessed a very bright, large, green ball which shot quickly behind the tree line. +2012-09-24,26.1416667,-81.795,Naples,FL,rectangle,120,Bright, color-alternating craft appearing and and disappearing over the ocean +2013-09-24,36.175,-115.1363889,Las Vegas,NV,fireball,5,Fireball streaked from above at 45 degree angle and then disappeared about 500 ft from the ground. +2013-09-24,33.4511111,-79.5611111,Andrews,SC,disk,300,Unexplained Object Seen From Back Porch. +2013-09-24,43.0652778,-76.0788889,East Syracuse,NY,disk,300,Saucer pacing an airplane over by Fremont Road. +2013-09-24,36.8527778,-75.9783333,Virginia Beach,VA,formation,300,Unknown line of white lights moving slowly to the North North East +2013-09-24,39.9611111,-82.9988889,Columbus,OH,other,300,Object sighted - Columbus, OH 09/24/2013 7:07? – 7:12 am.Location: Columbus, OH. North end east of I71 and west? of Westerville ro +2013-09-24,39.5127778,-75.9516667,Elk Neck,MD,unknown,7,Strange object in sky disappears. +2013-09-24,36.1538889,-95.9925,Tulsa,OK,disk,300,Tulsa OK 61st & Harvard residential area UFO 20 - 25 feet off the ground above the trees (front yard). +2013-09-24,42.4738889,-96.4133333,South Sioux City,NE,sphere,5400,The sphere is best described as a perfect pearl. ((NUFORC Note: Lens flare?? We await other reports. PD)) +2013-09-24,41.6777778,-79.88,Townville,PA,light,600,Moving point of light over the Meadville/Titusville, PA area. +2013-09-24,41.5261111,-87.8891667,Mokena,IL,unknown,1200,Bright Light observed for 15 minutes SW sky near Mokena Illinois. +2013-09-24,42.6041667,-72.5569444,Turners Falls,MA,fireball,30,THREE REDDISH ORANGE LIGHTS IN MOTION; DISSOLVED +2013-09-24,42.8597222,-89.5380556,Belleville,WI,light,180,I observed a orange light flying from east to west across the sky at average speed like a low flying plane.the orange light was constan +2013-09-24,41.1305556,-85.1288889,Fort Wayne,IN,flash,60,Midwest clear sky unidentified flashing object. +2013-09-24,33.5508333,-79.0416667,Murrells Inlet,SC,triangle,240,Triangle Lights over BrookGreen Gardens. +2013-09-24,37.5536111,-77.4605556,Richmond,VA,triangle,1800,Multiple Triangular Craft over Richmond, Virginia. +2013-09-24,64.8377778,-147.7163889,Fairbanks,AK,circle,120,3 white orbs. 2 in front 1 behind. +2013-09-24,42.7647222,-71.4402778,Hudson,NH,fireball,300,Fireball in the sky! +2013-09-24,47.2944444,-101.6222222,Hazen,ND,cigar,6,Long, cigar-shaped object; dark grey with three oddly-placed lights; rapid flight path and silent +2013-09-24,39.9611111,-82.9988889,Columbus,OH,oval,900,((HOAX??)) A big colorful oval shaped vessel slowly descending, while spinning and moving forward. No noise what so ever. +2013-09-24,44.8344444,-85.2825,Rapid City,MI,triangle,900,Reddish Lights on a Triangle Seen by 8+ people. +1966-09-25,37.0583333,-120.8488889,Los Banos,CA,egg,180,2 egg shaped objects in daylight near Los Banos CA +1976-09-25,41.0813889,-81.5191667,Akron,OH,light,900,large ball of light, made no sound +1979-09-25,44.8277778,-92.9436111,Cottage Grove,MN,circle,300,Saucer shape in city of Cottage Grove,MN seen for 5 minutes +1981-09-25,39.0169444,-94.2813889,Blue Springs,MO,other,600,When I felt the bed sheets grazing my back, I knew I was the one moving and not the bed. +1987-09-25,32.4063889,-97.2113889,Alvarado,TX,light,600,Hey, it's Following Us! +1991-09-25,34.6833333,-82.8375,Clemson,SC,triangle,120,Traingular craft, with a circle in it's center,. circular lights in the circle that rotated. +1992-09-25,34.0122222,-117.6880556,Chino,CA,disk,900,We saw what we thought was an eclipsed moon, at first. Saucer craft remained motionless in the sky. +1992-09-25,45.0097222,-93.3488889,Golden Valley,MN,flash,9000,A flashing bright, white light hovered over my neighborhood for over 2 hours. +1995-09-25,28.8997222,-82.3747222,Hernando,FL,triangle,120,well i was over a friends house i was 15 years old. i have a telescope and we were looking at the moon it was a clear night and fule mo +1995-09-25,47.6063889,-122.3308333,Seattle,WA,triangle,120,Cloudless night, clear: craft silent, six round, pale orange lights on underside of craft; travelled south to north, not fast.I saw it +1997-09-25,41.1108333,-112.0252778,Clearfield,UT,triangle,90,We observed a low flying craft (aprox.100yards up ) hovering over head and moving in a westerly direction. The movement was slow. +1998-09-25,43.0388889,-87.9063889,Milwaukee (80 Miles Nw Of, 6000ft Msl),WI,oval,20,I'm a Cargo Pilot who flies a nightly run between MKE and EAU, WI. At 0040 central time. My co-pilot and I witnessed a very intense li +1998-09-25,35.1494444,-90.0488889,Memphis,TN,flash,180,Approx. it was 5:41 in the morning and I was driving down this road called farm road and all of a sudden, I see this flash and it went +1998-09-25,40.6652778,-73.0686111,Fire Island Pines (Off Great South Bay),NY,cylinder,600,While Kayaking in the Bay, I noticed a large black Cylinder rolling/floating in the sky, I pointed it out to a man on shore and a passi +1998-09-25,38.1747222,-121.2775,Acampo,CA,teardrop,3,An orange colored, teardrop shaped object trailed by white sparks appeared in the Eastern sky at about 130 degrees from the horizon. +1998-09-25,47.8555556,-121.9697222,Monroe,WA,fireball,3,Bright green ball of light about size of moon apeared at 60 degrees ended at 20 degrees +1998-09-25,34.8547222,-106.7047222,Bosque Farms,NM,unknown,180,Well I was looking at the cresent moon with my celestron 4.5 telescope and I saw a shadow traveling across the moon. +1998-09-26,40.2363889,-83.3672222,Marysville,OH,disk,10,red/orange in color, hovered for about 5 seconds, turned white and disappeared. +1999-09-25,35.1822222,-83.3816667,Franklin,NC,circle,1800,Recently my mother and myself have witnesst a white light with red and blue lights flashing around it.We have witnesst it together and +1999-09-25,47.9791667,-122.2008333,Everett,WA,light,300,I watched a streak of light move in a southerly direction heading downward eventually disappearing behind the Olympic Mountains. +1999-09-25,45.8208333,-120.8205556,Goldendale (3 Miles Ne Of),WA,circle,5,Bright greenish light heading north-east +1999-09-25,46.5352778,-89.2811111,Ewen,MI,fireball,1,Greenish blue fireball which appeared to be quite large in size. Arced toward earth in a west to east direction but north of Ewen, MI. +1999-09-25,36.1658333,-86.7844444,Nashville,TN,cigar,60,silver cigar shape +1999-09-25,33.9533333,-117.3952778,Riverside,CA,other,600,two objects came from east to west then broke apart soon they came together again but now there were three they zigzagged between eacho +1999-09-25,42.7619444,-74.1341667,Duanesburg (Mohawk Valley),NY,light,600,We could not identify shape since it was night. The lights were identifiable. Not as an airplane, we've seen those often around here, +1999-09-25,36.175,-115.1363889,Las Vegas,NV,disk,240,(Peter: we discussed this over the phone with you last Saturday). My husband and I were outside in our spa in South Las Vegas. At 11:08 +1999-09-25,36.175,-115.1363889,Las Vegas,NV,oval,420,Location:South Las Vegas Time/Date 9/25/99 at 11:08 pm Sighting:5 round objects (about 1/2 size of the full moon)appearing one at a tim +1999-09-25,45.4208333,-122.6694444,Lake Oswego,OR,formation,240,As reported directly to Peter Davenport by phone 9-25-99, 23:25pm-------I went outside with binoculars to do a sky watch and was lookin +2000-09-25,42.1102778,-88.0341667,Palatine,IL,circle,300,round black object hovering over line of trees +2000-09-25,34.1425,-118.2541667,Glendale,CA,oval,720,Formation of bright white objects observed over Los Angeles. +2000-09-25,35.0844444,-106.6505556,Albuquerque,NM,light,1800,At twilight we saw through binoculars three bright lights arranged in an inverted triangle making small darting movements in place. +2000-09-25,38.2494444,-122.0388889,Fairfield,CA,circle,120,can't access examples +2000-09-25,21.1363889,-157.2138889,Maunaloa (Molokai),HI,chevron,120,Never before seen Red Lights +2000-09-25,47.7558333,-122.3402778,Shoreline,WA,triangle,7,2 Triangle Shaped, Low Flying, Silent Craft over Seattle- 9/25/00 +2001-09-25,33.6116667,-111.7166667,Fountain Hills,AZ,triangle,15,Dark unlit aircraft passes at low altitude +2001-09-25,34.4208333,-119.6972222,Santa Barbara,CA,unknown,1200,intense red dot high in the sky that started to blink. +2001-09-25,40.8625,-76.7947222,Sunbury,PA,light,300,Possible Central Pennsylvania Sighting ~09.25.01 +2001-09-25,34.0005556,-81.035,Columbia,SC,light,15,Star-like object reported in Natchitoches, LA seen previously in South Carolina +2001-09-25,40.1130556,-87.2625,Veedersburg,IN,triangle,900,Was on way home at approx. 9:45pm. Came to a "T" in the road by church/cemetery. Thats when I looked up and noticed a triangular airc +2002-09-25,39.1458333,-92.6836111,Fayette,MO,disk,2,It was in the afternoon. On the way home in the country on a gravel road surounded by corn feilds. The sky was a light blue. no clouds. +2002-09-25,34.0233333,-84.6155556,Kennesaw,GA,diamond,300,Three diamond shaped lights spotted in kennesaw GA +2002-09-25,38.4405556,-122.7133333,Santa Rosa,CA,other,4,Fast moving object , possible cigar shape +2002-09-25,34.4725,-81.8808333,Clinton,SC,other,3,The HugeBlur passed my field of view in no time flat, Like it was shot from a Very Big Gun. +2002-09-25,43.0125,-83.6875,Flint,MI,light,60,a star seemed to move across the sky +2002-09-25,28.5380556,-81.3794444,Orlando,FL,sphere,120,My wife came home from work telling me that while she was at work, doing a security check outside of her work, a co-worker stated,"what +2003-09-25,38.9172222,-97.2136111,Abilene,KS,changing,240,Glider shaped with round greenish grey orbs making the formation changes formation +2003-09-25,38.935,-74.9063889,Cape May,NJ,sphere,300,Brightly lighted (white light) stationary object in the Southeastern sky witnessed by three people. +2003-09-25,27.3361111,-82.5308333,Sarasota,FL,other,180,I saw a fast moving white thin boomerang shaped line in the sky at night ,which was not a cloud or smoke or birds . not +2003-09-25,46.2113889,-119.1361111,Kennewick,WA,light,2700,Rather bright, star-like object with occasional short light jets. Object at high altitude moving erratically +2003-09-25,46.9222222,-95.0583333,Park Rapids,MN,light,14400,Blue and Red ball of light, that just floated in the sky , TELEPATHY THEORY MY OWN ENCOUNTER +2003-09-25,48.7597222,-122.4869444,Bellingham,WA,light,1200,I was walking East on Kellogg Road at 7am when I viewed a BEAUTIFUL, HUGE, glowing orange, tri-level, extremely dimensional, lenticular +2003-09-25,29.2855556,-81.0561111,Ormond Beach,FL,oval,180,A comet-like object with a vapor trail behind it hovering above trees +2003-09-25,39.5297222,-119.8127778,Reno,NV,light,50,6:30pm/star like object moved straight down from high in the sky and appeared to change speed. +2003-09-25,48.1988889,-122.1238889,Arlington,WA,circle,600,This object was viewed from west looking east.While in the drive-thru line at the Smokey Point KFC, my doughter and I watched a lar +2003-09-25,35.2269444,-80.8433333,Charlotte,NC,oval,180,One oval, silver craft spotted over highway, appeared to hover and then fly away +2003-09-25,38.7741667,-87.3077778,Bicknell,IN,light,3600,Star light objects strobing red then white moving at very fast speeds for the altitude +2003-09-25,44.7630556,-85.6205556,Traverse City,MI,disk,900,Typical saucer shaped craft hovering close to road apx 45 feet above road +2003-09-25,31.2230556,-85.3905556,Dothan,AL,light,900,I witnessed a color-shiftin object in the sky of Alabama when I was star-gazing. +2003-09-25,30.4211111,-87.2169444,Pensacola,FL,fireball,15,A bright Green, almost flourescent in color decending down from the sky at a constant speed to only vanish not vaporate. +2003-09-25,35.6047222,-91.2816667,Newport,AR,formation,2700,V shaped Formation over Newport, AR. +2003-09-25,37.3394444,-121.8938889,San Jose,CA,triangle,420,Red & White Triangle +2003-09-25,29.7630556,-95.3630556,Houston,TX,other,8,Crescent Shaped Object +2003-09-25,41.6561111,-70.4166667,Marstons Mills,MA,unknown,300,The sky above me was solid black, no stars ,no light of any kind and the black void changed it's shape. +2004-09-25,42.9222222,-88.0994444,Tess Corners,WI,light,420,Tess Corners - Lights in Formation +2004-09-25,40.4775,-104.9008333,Windsor,CO,triangle,30,Black triangle with three lights seen flying over Windsor, Colorado. +2004-09-25,42.3313889,-83.0458333,Detroit,MI,light,300,Shaft of light above Detroit +2004-09-25,40.4652778,-88.3758333,Gibson City,IL,oval,60,Slow moving round silver object going east in Illinois. +2004-09-25,44.9483333,-93.3477778,St. Louis Park,MN,oval,600,2 objects circled eachother for 5-8 minutes, only until they were directly overhead did we get to see the oval shape, and silver color. +2004-09-25,41.85,-87.65,Chicago,IL,oval,900,Dark oval shaped object over the city. +2004-09-25,47.6105556,-122.1994444,Bellevue,WA,unknown,900,High Tech Survelliance or Millionare seen High Above Bellevue, WA +2004-09-25,41.85,-87.65,Chicago,IL,circle,60,Saw a circular/ring shaped dark craft above the shore of Lake Michigan/downtown Chicago against a blue sky. +2004-09-25,39.8866667,-86.5433333,Lizton,IN,light,1200,Very bright light changing from white to blue hovering in the same spot for approx. 20 minutes then disappeared. +2005-09-25,32.9413889,-93.2986111,Shongaloo,LA,light,600,It was a light with a haze around it. +2005-09-25,40.4591667,-74.3613889,Sayreville,NJ,oval,180,blimp-like craft over the Raritan +2005-09-25,34.61,-112.315,Prescott Valley,AZ,fireball,180,Extremely bright glowing orange ball of light with some sort of dim object obove it, possibly a reflection on a larger surface +2005-09-25,33.2347222,-84.8358333,Grantville,GA,light,180,Mysterious Lights that seemed to have landed and taken off again +2006-09-25,48.1055556,-114.6622222,Marion,MT,unknown,2100,Bright spot in sky blinking red and green and (sometimes) white light, stationery place in sky for 30 minutes. +2006-09-25,29.9108333,-91.6633333,Jeanerette,LA,light,5,Fast moving object appears and disappears in seconds. +2006-09-25,29.7630556,-95.3630556,Houston,TX,unknown,30,Large dark object hovering east to west over Houston Suburbs. +2006-09-25,33.2,-117.2416667,Vista,CA,unknown,300,small dark object in sky, not traveling. +2006-09-25,43.1977778,-70.8741667,Dover,NH,triangle,1200,one UFO spotted in the skys over Dover NH, making amazing turns with its bright pinkish/red lights +2006-09-25,48.1183333,-123.4294444,Port Angeles,WA,triangle,10,Large triangular shaped object followed by smaller round lights in changing formations. +2006-09-25,45.1888889,-93.5527778,Rogers,MN,light,180,"Star" observed moving erratically through the evening sky +2006-09-25,32.8794444,-111.7566667,Casa Grande,AZ,triangle,180,Triangular craft with orange lights moving in an odd pattern. +2006-09-25,43.3636111,-73.3941667,Hartford,NY,fireball,300,Orangish ball of light traveling quietly near my home, like a wave & bouncy for around 5 minutes. Hartford NY +2006-09-25,42.0372222,-88.2811111,Elgin,IL,rectangle,5,3 lights flew silently over Elgin Illinois at 22:15 +2006-09-25,45.3841667,-122.7627778,Tualatin,OR,oval,1200,saw UFO while walking home. Tualatin, Oregon. 9-25-06 +2007-09-25,33.1191667,-97.0252778,Lake Dallas,TX,rectangle,180,I saw a rectangular shaped object on the western horizon glowing orange I saw a jet intercepting the object and then abruptly turn away +2007-09-25,32.7947222,-116.9616667,El Cajon,CA,light,600,Orb of light changed directions rapidly in the sky +2007-09-25,45.4177778,-122.4577778,Damascus,OR,circle,3600,Huge ball of light seen in eastern sky at 6 am Sept 25, 2007 east of Gresham, Oregon. +2007-09-25,27.9472222,-82.4586111,Tampa,FL,sphere,988,Ufo Danced over Tia from a distance it looked still but i put the zoom on the camera and wallah +2007-09-25,44.7133333,-72.5305556,Eden Mills,VT,formation,180,Unidentified slowly moving Mobile Object flew north from Lake Eden, Vermont +2007-09-25,35.925,-86.8688889,Franklin,TN,triangle,120,Black Triangle or dark colored unidentified object south of Nashville at dusk +2007-09-25,39.2902778,-76.6125,Baltimore,MD,light,20,white light over baltimore +2007-09-25,36.8347222,-81.515,Marion,VA,triangle,420,a black triangle hovered over our campsite for +2007-09-25,34.2255556,-77.945,Wilmington,NC,light,60,Multiple orange lights over ocean in eastern sky of North Carolina +2007-09-25,35.2922222,-81.5358333,Shelby,NC,circle,10,Round, lighted object over Shelby, NC, hovered then zoomed away. ((NUFORC Note: Possible hoax?? PD)) +2007-09-25,40.7683333,-73.7775,Bayside,NY,triangle,120,1 white light underbelly has 3 lights? v shapeƹ red light following moving very very fast +2007-09-25,41.3080556,-72.9286111,New Haven,CT,oval,900,STRANGE ORBS OVER LONG WHARF HARBOR? +2008-09-25,44.2272222,-73.0577778,Starksboro,VT,triangle,150,huge low flying craft. +2008-09-25,38.7627778,-93.7358333,Warrensburg,MO,other,5,At approximately 1 am of Sept. 25th, 2008, I saw an object in the sky that I was and am unable to identify. +2008-09-25,30.2669444,-97.7427778,Austin,TX,triangle,30,2 independent observers witnessed very fast, very high, triangular lights soaring through the Austin sky and then dissappearing. +2008-09-25,42.0719444,-83.9716667,Clinton,MI,sphere,5,previously stationary bright blue object descends rapidly towards ground +2008-09-25,42.55,-99.8622222,Ainsworth,NE,triangle,30,Three objects that are silent and unexplainable +2008-09-25,40.4511111,-85.37,Hartford City,IN,oval,2,Large, Bright LED type light flying low and fast then dimming out quickly. +2008-09-25,39.0541667,-84.0530556,Williamsburg,OH,sphere,8,Super intense white light moving at airplane like speeds for 6 seconds, changed to intense green and warp speeded away in 1 second +2008-09-25,38.9636111,-84.0808333,Bethel,OH,circle,900,One shape shifing UFO, or two to three UFO's? +2008-09-25,42.4133333,-89.0091667,Roscoe,IL,disk,30,Disk shaped metallic object in sky, hovered, and was gone. Slight trail, but also gone in seconds. +2008-09-25,43.9925,-72.1294444,Bradford,VT,unknown,15,four large reddish orange lights for about 15 sec. then just vanished +2008-09-25,36.175,-115.1363889,Las Vegas,NV,unknown,5,"Shooting Star" Slows, Turns, and Spirals Inward +2008-09-25,37.5483333,-121.9875,Fremont,CA,changing,180,GHOST-LIKE BLOB W/ 4 ROUND GHOST-LIKE BALLS INSIDE&IT WAS CHANGING SHAPES SLOWLY +2008-09-25,38.9636111,-84.0808333,Bethel,OH,circle,900,'Flashing UFO and circular UFO in the night sky' +2009-09-25,34.0005556,-81.035,Columbia,SC,formation,300,vertical lights 3 with one on each side columbia S.C +2009-09-25,40.4555556,-109.5280556,Vernal,UT,sphere,300,bright spherical light going across the sky. stopping and starting and then just disappeared. +2009-09-25,38.7511111,-105.5208333,Guffey (4 Miles Outside Of),CO,light,30,ball of light, yellowish white in color, slightly bigger than the planet jupiter. ((NUFORC Note: ISS sighting?? PD)) +2009-09-25,29.8452778,-97.8405556,Martindale,TX,changing,300,((HOAX??)) now i belive +2009-09-25,36.0625,-94.1572222,Fayetteville,AR,light,15,Bright light moving West to East in Northwest Arkansas...Then vanished into thin air! +2009-09-25,44.0163889,-70.9811111,Fryeburg,ME,flash,3600,Flashing light over Black Cap +2009-09-25,43.1413889,-95.1441667,Spencer,IA,changing,3600,Unexplained pattern of mult-colored lights that moved, diappeared, reappeared and has 7 Iowans believing that there are definately UFOs +2009-09-25,35.4777778,-94.2216667,Alma,AR,unknown,4,Triangular pattern of lights hovering above Alma, Arkansas +2009-09-25,41.4372222,-71.5019444,Wakefield,RI,light,2,two lights moved horizontally then zig zaged very fast and shot out of sight. +2009-09-25,37.2752778,-107.8794444,Durango,CO,light,300,Very bright light moving fast, turning red then dissapears. +2010-09-25,36.6777778,-121.6544444,Salinas,CA,light,3600,multi strobing stationary lights in the night sky. ((NUFORC Note: Star? PD)) +2010-09-25,29.7630556,-95.3630556,Houston,TX,changing,1800,object changing shapes and colors over houston. ((NUFORC Note: We suspect that the object was a twinkling star. PD)) +2010-09-25,42.0083333,-91.6438889,Cedar Rapids,IA,circle,180,UFO over Cedar Rapids +2010-09-25,41.9833333,-71.3333333,North Attleboro,MA,oval,492,Red-orange large lights flew fast across the sky, 16 of them. +2010-09-25,34.0922222,-117.4341667,Fontana,CA,disk,240,disc shape but molded its shape like a jelly fish,it glowed orange reddish lights it flow up and down hovering for about 6 sec then wen +2010-09-25,35.1322222,-118.4480556,Tehachapi,CA,flash,300,While driving from Anteloe Valley to Tehachapi California, at approx. 10pm, I observed what appeared to be a bright orange light leavin +2010-09-25,41.0036111,-80.3472222,New Castle,PA,fireball,90,Witnessed 12-15 larger-than-stars orbs hover over New Castle, Pa, then slowly dim a few at a time. +2010-09-25,35.7719444,-78.6388889,Raleigh,NC,cylinder,3,Cylindrical Object Over Raleigh NC +2010-09-25,27.9472222,-82.4586111,Tampa,FL,rectangle,30,Apparently one dimensional grey rectangle floating low in sky in broad daylight, busy traffic, somewhat fluid looking. 500 Lights O +2010-09-25,41.4825,-73.41,Brookfield,CT,other,15,Bright orange/yellow object moving at high speed making no sound +2010-09-25,40.7408333,-74.3841667,Chatham,NJ,circle,50,Orange light glowing in the sky, it was twice the size of Jupiter +2010-09-25,47.9544444,-117.4758333,Deer Park,WA,oval,180,A brilliant orb emitting red white and blue flashes hovered briefly in the sky south of Deer Park Washington. +2010-09-25,33.1958333,-117.3786111,Oceanside,CA,light,20,We saw a solid yellowish light with a vapor trail silently pass fade then re-appear. +2010-09-25,42.3444444,-88.0416667,Grayslake,IL,rectangle,300,Large black rectangular object moving silently towards the east horizon; no sound; no lights, but entered the atmosphere with a bright +2010-09-25,34.1705556,-118.8366667,Thousand Oaks,CA,circle,120,a light apeared in the Northern sky thrust across the sky and dissappeared then reappeared leaving con trails. +2010-09-25,33.426944399999996,-117.6111111,San Clemente,CA,fireball,180,Ufo sighting off of south orange county coast +2010-09-25,34.0522222,-118.2427778,Los Angeles,CA,light,20,Strange Light Observed over Santa Monica Bay +2010-09-25,33.8847222,-118.41,Manhattan Beach,CA,fireball,90,At around 950pm (PDT) , my wife and I were walking our dogs around the block when we observed a shining light in the sky. Our fi +2010-09-25,41.0036111,-80.3472222,New Castle,PA,formation,60,formation of bright orange lights seen moving across the night sky from north to south and then disappears +2010-09-25,41.0036111,-80.3472222,New Castle,PA,fireball,180,There were 10 orb shaped balls, the color of fire. +2010-09-25,33.5872222,-102.3775,Levelland,TX,unknown,2700,Lights appearing and disappearing in a set patteren +2010-09-25,41.7411111,-70.5994444,Bourne,MA,fireball,120,Two flame like objects flying over cape cod canal. +2011-09-25,39.7588889,-84.1916667,Dayton,OH,light,240,Red spherical light flew overhead in Dayton, Ohio. +2011-09-25,33.5386111,-112.1852778,Glendale (Luke Airforce Base),AZ,sphere,420,UFO over Luke AFB Glendale,AZ +2011-09-25,33.7591667,-118.0058333,Westminster,CA,unknown,355,UFO shoots up into the sky from outside my window at about 5- 5:30 am. computer freezes and no sound after that. +2011-09-25,45.5236111,-122.675,Portland,OR,light,1200,Yellow/Orange light ball with blinking lights over Sauvie Island +2011-09-25,35.2144444,-90.1963889,Marion,AR,disk,60,Disc with amber orbes and cloudy gray craft. +2011-09-25,47.5930556,-93.6905556,Marcell,MN,circle,60,Brilliant bright white light that seemed to be floating across the sky and then suddenly disappeared. +2011-09-25,30.3672222,-89.0927778,Gulfport,MS,fireball,5,I was driving on I-10 West bound and about to exit onto Hwy 49 South into Gulfport when I saw a bright multi-colored light streaking ou +2011-09-25,39.9522222,-75.1641667,Philadelphia,PA,unknown,900,I videoed on my cell Phone little flashing blue lights for about 5 minutes. Also, the entire night sky would flash blue. +2011-09-25,37.4738889,-108.5038889,Dolores,CO,light,240,Red light traveling north to south the reversed direction +2011-09-25,39.6236111,-89.6488889,Glenarm,IL,unknown,120,Corkscrew chemtrail in air from unknown object +2011-09-25,35.3858333,-94.3983333,Ft. Smith,AR,light,10,We saw a single, non-flashing green light at night over Ft. Smith, AR and never heard it make a sound. +2011-09-25,44.635555600000004,-72.6808333,Johnson,VT,light,120,Two Silent Bright Lights Move In Formation +2011-09-25,43.9827778,-124.0986111,Florence,OR,light,120,Red lights over Florence, Oregon +2011-09-25,46.8569444,-122.8516667,Tenino,WA,light,120,Bright lights in sky moving perpendicular, coming together as one and lifting away to space, vanished +2011-09-25,42.135555600000004,-71.9705556,Charlton,MA,other,3600,Bright Pulsating Moving Light/Object. ((NUFORC Note: Sirius?? PD)) +2011-09-25,41.4088889,-75.6627778,Scranton,PA,fireball,2,Fireball crossed over the Interstate +2011-09-25,44.823055600000004,-70.34,Phillips,ME,light,2,Very large light moving across the sky, disappearing behind the tree line, followed by a flash of light as if something had exploded +2011-09-25,34.5636111,-111.8536111,Camp Verde,AZ,fireball,6,fireball shoots of in sky to the west near camp verde AZ +2012-09-25,33.9816667,-118.2241667,Huntington Park,CA,light,3,Shooting star like object. +2012-09-25,45.7227778,-93.1705556,Braham,MN,disk,1500,Unidentified Object hovering over Grasston, Minnesota +2012-09-25,42.6333333,-71.3166667,Lowell,MA,disk,900,Bright white spherical light surrounded by flashing lights in pattern of red, blue, green. ((NUFORC Note: Planet/star in E sky? PD)) +2012-09-25,41.85,-87.65,Chicago,IL,sphere,60,Bright orange orb fly's over Cook County, IL. +2012-09-25,41.5758333,-72.5030556,East Hampton,CT,sphere,300,Went out to have a cigarette and saw Glowing sphere (like star) in southerly dir. heading S. +2012-09-25,36.9877778,-119.7108333,Friant,CA,light,300,Flying colors in the middle of nowhere. +2012-09-25,42.5813889,-94.8458333,Fonda,IA,unknown,240,White light object rises from tree line and elevates (4 minutes) and disappears. ((NUFORC Note: Bright planet in the E sky? PD)) +2012-09-25,44.2272222,-73.0577778,Starksboro,VT,other,20,There was a huge object in the sky with blinking lights that was much larger than a airplane with lights about 6-10 inches apart. +2012-09-25,38.9805556,-76.3147222,Stevensville,MD,triangle,1200,Hovering triangular object near Chesapeake Bay. +2012-09-25,33.1191667,-117.0855556,Escondido,CA,sphere,21600,Bright Unusual Lights Shapeshifting and Pulsating in Escondido CA. ((NUFORC Note: Possible sighting of stars?? PD)) +2012-09-25,36.6775,-76.9227778,Franklin,VA,fireball,180,Dull orange light moving through the sky slowly. +2012-09-25,35.3519444,-75.5108333,Avon,NC,sphere,5,Two hovering crafts appeared in Avon, NC, and emitted a distinct pattern of 4 circular orangish lights each. +2012-09-25,41.5241667,-72.0763889,Norwich,CT,rectangle,25,Strange object with 5 green lights follws low flying smalll aircraft +2012-09-25,35.54,-75.4733333,Salvo,NC,formation,600,Several bright lights in the sky over the Outer Banks +2013-09-25,42.4738889,-96.4133333,South Sioux City,NE,sphere,14400,Bright lite over work showed co workers. +2013-09-25,45.8925,-111.5513889,Three Forks,MT,circle,2700,Strange movement of circular lights. +2013-09-25,42.8922222,-76.1055556,Lafayette,NY,light,300,Strange light disappears. +2013-09-25,41.4438889,-80.5888889,Kinsman,OH,light,3,Bright light that quickly shot across the sky and then out of sight. +2013-09-25,47.6741667,-122.1202778,Redmond,WA,formation,240,Formation of 7 red-orange lights seen by 1 person on SR-520 Eastbound near Redmond Washington. +2013-09-25,38.8813889,-94.8188889,Olathe,KS,light,1800,Spotted a light in the sky south of I-435, just above the horizon. It appeared stationary for several minutes then began to appear to m +2013-09-25,45.1608333,-93.2347222,Blaine,MN,unknown,240,4 large very bright objects seen flying over blaine over the course of 4 min. +2013-09-25,33.6188889,-117.9280556,Newport Beach,CA,triangle,180,Hovering black triangle with different colored lights- dropped vertically within 3-5 seconds. +2013-09-25,38.0527778,-81.1041667,Fayetteville,WV,changing,2100,Upon letting my dogs out, I observed a bright flashingight i'n the NE sky. This light moved rapidly and randomly. It appeared to have r +2013-09-25,37.5947222,-82.2755556,Huddy,KY,fireball,300,Yellowish/orangeish /redish sphere not an earth made thing seen by two people at night in mountains then went up to sky and was gone +1979-09-26,41.1111111,-74.0688889,Monsey,NY,disk,600,I saw a large sauser shaped craft hovering over power lines for 10 minutes,then it flew away rapidly. +1985-09-26,30.2669444,-97.7427778,Austin,TX,chevron,1200,Chevron flew 5 mph, 150 yards from me, 200 feet off the ground. +1996-09-26,32.7555556,-98.9019444,Breckenridge,TX,changing,2,constantly changing nebulous-shaped object flying disturbingly fast at the moment of a full lunar eclipse +1998-09-26,41.7,-71.4166667,Warwick,RI,circle,10800,Heard on AM 630 WPRO art bell,ufos were spotted.Went out w/ portable radio saw a big bright light an what appeared to be a comet. +1998-09-26,33.4483333,-112.0733333,Phoenix,AZ,sphere,120,Red and green light came over the hill and I thought perhaps a cesna off course but it stopped and sat for about 30 -45 seconds then ab +1998-09-26,41.8241667,-90.6477778,Grand Mound (2 Miles West Of, On Highway 30),IA,other,3,Greenish dust at 1000 to 4000ft moving east to west at approxament speed depinding on altatude 500 to 1000mph +1998-09-26,41.5875,-109.2022222,Rock Springs,WY,fireball,10,Was driving and saw a greenish/blue fireball looking object, travelling west to east. +1998-09-26,37.948055600000004,-122.0597222,Pleasant Hill,CA,light,600,I walked up a hill and saw 4 lights come from the sky I ran got my camera and started to film. The battrey ran out then the UFO's dis +1998-09-26,39.6133333,-105.0161111,Littleton,CO,other,2,I saw a bright green "shooting star," but it was much brighter and larger than a normal SS, which I've seen dozens of. It appeared in t +1998-09-26,33.9608333,-83.3780556,Athens (Near),GA,circle,5,My girlfriend and I saw a ball of light streak across the sky +1998-09-26,37.3394444,-121.8938889,San Jose,CA,formation,300,2 sets of 5 objects moving in parallel formation +1998-09-26,47.17,-122.6013889,Steilacoom,WA,fireball,2700,White circular fireball with slight blue halo around edges seen south of Steilacoom towards known military airfield. Object was relati +1999-09-26,45.3247222,-118.0866667,La Grande,OR,fireball,2,As I left my house, I noticed to the northeast a fireball descending to the horizon behind the mountains surrounding our valley. I orig +1999-09-26,47.6105556,-122.1994444,Bellevue,WA,triangle,10,The object was black, triangular and had some protrusions on the back (fat end of the triangle) that may have been tail fins like on a +2000-09-26,30.1577778,-95.4891667,The Woodlands,TX,chevron,5,Transparent, shimmering chevron with rows of lights on the underside of each leg traveling silenty and at fantastic speed. +2000-09-26,44.6669444,-93.6266667,Jordan,MN,cigar,120,It was cigar shaped with a fin shaped tail it was very quiet it was silver and then changed to blue +2000-09-26,33.4625,-117.6708333,Capistrano Beach,CA,fireball,5,Large fireball in southern sky, low to horizon, burning white to blue, traveling east to west at 2000 hrs. 09/26/00 +2000-09-26,33.8302778,-116.5444444,Palm Springs,CA,fireball,4,Brilliant Green Fireball moves slowly from high in the SE to low in the SW +2000-09-26,33.6,-117.6711111,Mission Viejo,CA,fireball,1.5,i was driving on my way home, I PULL UP TO A STOP SIGN WHERE I MUST TURN RIGHT OR LEFT, IN FRONT OF ME IS A HOUSE WITH A HILL BEHIND IT +2000-09-26,32.2216667,-110.9258333,Tucson,AZ,fireball,10,Around 8:30 PM a bluish green object was seen traveling in a northwesterly direction. It was not only odd because of the color but was +2000-09-26,47.8108333,-122.3761111,Edmonds,WA,flash,300,We saw a bright light leave the atmosphere and continue into space. +2000-09-26,41.7297222,-93.6055556,Ankeny,IA,triangle,60,Triangular shaped craft (20-30ftlength of side) with a light at each corner, hovered motionless 40-50feet over a farmhouse. +2001-09-26,40.7141667,-74.0063889,New York City,NY,light,3600,bright, blue light, high in sky, glowing like flame +2001-09-26,33.9791667,-118.0319444,Whittier,CA,formation,2,V-shaped formation of pale amber lights +2001-09-26,41.2105556,-74.0180556,Thiells,NY,circle,1200,was out side and I saw a circular object with blinking red and white lights. +2001-09-26,37.6688889,-122.0797222,Hayward,CA,oval,1200,4 bright oval-shaped white objects hovering over my house in Hayward, CA. +2002-09-26,37.5483333,-121.9875,Fremont,CA,fireball,300,On Saturday morning i woke up and went outside to get the paper. The wind was calm and but it was a cloudy day. When looked up at the s +2002-09-26,34.5080556,-119.2905556,Wheeler Springs (Near Ojai),CA,other,15,Four or five rectangles connected with thin filament, one degree in length, moving slowly +2002-09-26,40.6677778,-111.9380556,Taylorsville,UT,triangle,3600,Orange UFOs in Huge V Formation over Taylorsville Utah +2002-09-26,39.0416667,-94.72,Shawnee,KS,light,180,Bright light in the sky flashing. +2003-09-26,39.6283333,-84.1594444,Centerville,OH,chevron,60,Very LargeSilent Dark Aircraft +2003-09-26,44.2194444,-123.2044444,Junction City,OR,triangle,7,Observed triangle shaped craft moving at high velocity from East to West, then make an almost 90 degree turn to the north. +2003-09-26,42.38,-84.3491667,Pleasant Lake,MI,oval,8,I saw a U.F.O. while flying a kite at 8 yrs. old +2003-09-26,25.7738889,-80.1938889,Miami,FL,triangle,15,Arrow head. Front had 4 rod shaped flourescent lights, 2 back corners, transparent center. Hand size at arms length +2003-09-26,47.6063889,-122.3308333,Seattle (Area),WA,unknown,15,dark, blimp-like object over Seattle +2003-09-26,34.0633333,-117.65,Ontario,CA,sphere,2,Spherical object seen from commerical airliner over Ontario, CA +2003-09-26,37.3541667,-121.9541667,Santa Clara,CA,sphere,15,Observed a spherical object moving at high speed, in a straight course from southest to northwest. The object appeared to be round in s +2003-09-26,37.8486111,-81.9936111,Logan,WV,cylinder,3000,flying silver cylinder object +2003-09-26,35.4541667,-94.4405556,Dora,AR,light,120,FAST MOVING BRIGHT LIGHTS SEEM TO COLLIDE IN THE SKY THEN DISAPPEAR +2003-09-26,44.1811111,-75.2825,Pitcairn,NY,light,300,Bright object was seen traveling below the big dipper south to north +2003-09-26,46.4477778,-120.4191667,Wapato,WA,light,15,Yellow white lights in the sky turned an orange color and accelerated at a tremendous speed. +2003-09-26,48.9855556,-123.0766667,Point Roberts (Canada),WA,light,40,HBCCUFO CANADIAN REPORT: Light traveled on a straight line, but the strange thing was, it moved from side to side as it moved +2003-09-26,28.3641667,-82.6936111,Hudson,FL,circle,900,To the naked eye it appears as a bright star changing colors. +2003-09-26,37.7477778,-84.2947222,Richmond,KY,light,3600,Long duration sighting, likely at least 10 miles distance, but undoubtedly strange behavior. +2003-09-26,33.6888889,-78.8869444,Myrtle Beach,SC,light,30,Lights that disappeared and re-appeared in another location. +2004-09-26,37.8091667,-85.4669444,Bardstown,KY,light,300,Bright lights over tree line in Kentucky +2004-09-26,42.9980556,-78.1877778,Batavia,NY,teardrop,3,Tear-dropped shaped, butane colored craft/fireball descending from SE to SW across sky. +2004-09-26,40.4863889,-86.1336111,Kokomo,IN,light,120,a very bright white and yellow pulsating light emitted a smaller light of same consistancy +2004-09-26,39.6263889,-111.4388889,Fairview,UT,cylinder,60,silver grey disk shaped +2004-09-26,39.6477778,-104.9872222,Englewood,CO,sphere,1200,daytime sphere stationary over Denver sky for 20 minutes +2004-09-26,45.5236111,-122.675,Portland,OR,light,15,Spouse and I saw a silent, bright fast moving light cross the sky, change color to red, then fade completely away. +2004-09-26,42.1811111,-72.3611111,Three Rivers,MA,light,2100,I was sitting outside talking to a lady friend of mine when I noticed a starlike object hanging to low in the sky. It sat above the tre +2004-09-26,35.8088889,-80.3730556,Tyro,NC,flash,60,bright white object seen above trees +2004-09-26,37.3541667,-121.9541667,Santa Clara,CA,light,1,A very bright multi colored light that shot across the sky and then vanished. +2004-09-26,40.8841667,-72.9377778,Middle Island,NY,light,15,A bright light in the clear night sky disappeared. +2004-09-26,39.9522222,-75.1641667,Philadelphia,PA,formation,300,sighting in philly south of the city moving west of 3 lights that seemed to be independant, and flying in formation +2004-09-27,42.6566667,-83.7530556,Hartland,MI,light,3600,Very bright lighted orbs, NOT stars hovered in the early morning skies ((Venus??)) +2005-09-26,33.8302778,-116.5444444,Palm Springs,CA,chevron,60,Dark, unlit, wing-shaped UFO flew over Palm Springs - NNW to SSE - 12:05 am 9/26/05 +2005-09-26,36.9102778,-121.7558333,Watsonville,CA,triangle,1500,it was similar to a manta ray with no tail bobbing in the sky, black with soft edges +2005-09-26,44.7322222,-92.4872222,Ellsworth,WI,formation,7200,I was driving home from Hudson, and had just driven through River Falls when I spotted the first one. It was a very bright light, large +2005-09-26,39.0997222,-94.5783333,Kansas City,MO,circle,1200,Orange Glow over Kansas City seen for 20 minutes. +2005-09-26,40.8861111,-73.2577778,Kings Park,NY,light,4,Intense Bright light appears to make jet alter flight path +2005-09-26,28.1486111,-80.5886111,Indian Harbour Beach,FL,fireball,60,11:39 pm watched a huge yellow ball of flame slowly cross the sky leaving glowing pieces falling behind +2005-09-26,43.5944444,-83.8888889,Bay City,MI,triangle,60,Huge non lite craft with spheres attached and trailing over Bay City Michigan. +2006-09-26,45.52,-123.0586111,Cornelius,OR,triangle,10,4 lights moving South to North +2006-09-26,34.185,-83.9252778,Flowery Branch,GA,disk,420,Classified Report From Code Name: PITD +2006-09-26,33.7838889,-116.9577778,San Jacinto,CA,triangle,20,Dark triangular object seen over San Jacinto, CA +2006-09-26,39.7425,-105.5130556,Idaho Springs,CO,unknown,120,bright lights stanley rd. +2007-09-26,36.0397222,-114.9811111,Henderson,NV,other,10,Very fast half moon craft. +2007-09-26,41.2786111,-72.5280556,Clinton,CT,unknown,40,A gold,yellowish light going across the sky in space... up with the stars! +2007-09-26,36.3486111,-82.2108333,Elizabethton,TN,triangle,60,9-26-07 @ 06:00am a triangle shape object with lite orange lights all around it . stay about 50 seconds,and left. Silent. +2007-09-26,43.6155556,-84.2472222,Midland,MI,circle,300,Group of star like (at night) and black in day going in circles,right angles, figure 8's then vanishing +2007-09-26,26.9758333,-82.0908333,Port Charlotte,FL,cigar,30,Incredibly fast moving craft with bright lights over Charlotte County, FL +2007-09-26,34.4838889,-114.3216667,Lake Havasu City,AZ,disk,900,AROUND 8:00 pm WE WERE SITTING OUTSIDE AND SAW 3 LIGHTS IN A ROW TOGETHER THAT STAYED IN ONE LOCATION OVER THE ROOFS OF HOMES IN THE DI +2007-09-26,26.9758333,-82.0908333,Port Charlotte,FL,light,20,bright lights moving unlike a plane or helecopter +2007-09-26,33.9966667,-77.9075,Kure Beach,NC,circle,30,2 groupings of 3 and 4 bright orange round lights over the ocean horizon off the shore at Kure Beach, NC. +2007-09-26,45.4944444,-122.8658333,Aloha,OR,diamond,300, I was walking from my house, the local shopping center, and I looked up and saw what I at first thought was bright star, or maybe an a +2007-09-26,46.2858333,-119.2833333,Richland,WA,oval,600,Bright blue object spotted in front of a full moon hovering. Then shot straight up into the air at a amazing speed, leaving a trail +2008-09-26,29.7630556,-95.3630556,Houston,TX,formation,7,Saw four circular lights flying quickly in formation and then change formation, there was no sound, helipcopters circled around shortly +2008-09-26,43.698055600000004,-85.4836111,Big Rapids,MI,light,15,i watched five objects flying low and fast just east of big rapids mich +2008-09-26,28.5380556,-81.3794444,Orlando,FL,changing,120,Completely black, moved at a leisurely pace, made a somewhat invisible aura, and changed shape. ((NUFORC Note: Student report. PD)) +2008-09-26,38.0194444,-122.1330556,Martinez,CA,oval,420,Bubble Shaped Object Spotted in Martinez,CA +2008-09-26,39.7391667,-104.9841667,Denver,CO,changing,300,Three moving craft near Lowry. +2008-09-26,36.175,-115.1363889,Las Vegas,NV,sphere,10,A Sphere of light was seen hovering next to the Stratosphere building in Las Vegas. +2008-09-26,47.6588889,-117.425,Spokane,WA,triangle,180,It really could have been a jet way up there but when it took that little jog I knew,it wasn't WHEW!!! +2008-09-26,30.8827778,-87.7730556,Bay Minette,AL,light,90,Bright light, appeard to be falling star in Southern Sky, fell then stopped, ocillated, changed direction and accelerated out of sight. +2008-09-26,47.0344444,-122.8219444,Lacey,WA,fireball,120,Light orb traveling westward +2008-09-26,41.14,-104.8197222,Cheyenne,WY,triangle,3,"V" shaped craft moving north to south with seven round lights. +2009-09-26,33.8752778,-117.5655556,Corona,CA,other,300,I saw a rod/sky fish 15 feet above my head in the middle of the day. +2009-09-26,34.54,-112.4677778,Prescott,AZ,light,20,UFO sighted over Prescott, Ariona +2009-09-26,42.9955556,-71.4552778,Manchester,NH,sphere,2400,High Altitude silver object hovering over central New Hampshire on 9/26/09. ((NUFORC Note: Report from airline pilot. PD)) +2009-09-26,37.3394444,-121.8938889,San Jose,CA,light,180,It was Saturday 09/26/2009, apprx 1:05 pm , I saw a bright light in the sky, at first I thought it was a balloon, but then it began t +2009-09-26,37.5986111,-122.3861111,Millbrae,CA,circle,60,I was driving down 101 US South today heading towards the Millbrae exit and to my left I saw planes as usual as the SFO airport is righ +2009-09-26,33.4147222,-111.9086111,Tempe,AZ,circle,60,Bright circular light travels quickly and silently from NW to SE becomes brighter turns oval shapped zigzags abruptly and disappears. +2009-09-26,33.4483333,-112.0733333,Phoenix,AZ,light,480,Very intense bright white light from Northwest to southeast traveled 50-75 miles very slow light faded out. ((NUFORC: ISS. PD)) +2009-09-26,41.0263889,-73.6288889,Greenwich,CT,circle,1200,there was this lights we never seen before over greenwich - port chester area , before +2009-09-26,36.175,-115.1363889,Las Vegas,NV,light,30,Bright light moving across the night sky +2009-09-26,33.5386111,-112.1852778,Glendale,AZ,light,180,Solid white lights in the shape of a boomerang that started to flash in a revolving sequencing pattern 1 mile above the ground. +2009-09-26,32.6630556,-95.4880556,Mineola,TX,light,45,The object moved so smoothly but looked controlled by the choppy speed. +2009-09-26,41.1305556,-85.1288889,Fort Wayne,IN,disk,30,Craft sighting in Fort Wayne, Indiana. +2009-09-26,45.3575,-122.6055556,Oregon City,OR,sphere,120,Strange orange lights in sky over oregon city flying north to south. +2009-09-26,29.4238889,-98.4933333,San Antonio,TX,unknown,3,BRIGHT WHITE FLASH IN NIGHT SKY, FAIGHT OBJECT MOVED AWAY FAST IN ARC +2009-09-26,40.4233333,-104.7086111,Greeley,CO,other,300,Bar shaped craft +2009-09-26,34.1336111,-117.9066667,Azusa,CA,light,1500,Saw 2 distinct VERY BRIGHT lights in the sky over Azusa, Ca. +2009-09-26,33.9375,-117.2297222,Moreno Valley,CA,light,120,bouncing star light object in night northwestern sky . +2010-09-26,40.7358333,-73.0825,Sayville,NY,other,20,Looking to the sky on a very clear night we saw a glowing object that was reasonably close maybe 1-2 miles in the sky east of us. The a +2010-09-26,40.2961111,-74.0513889,Eatontown,NJ,disk,3,ufo +2010-09-26,33.7413889,-118.1038889,Seal Beach,CA,light,300,I saw, in broad daylight, up to 18 white, round dots that disappeard, reappeared, and multiplied several times. +2010-09-26,41.7180556,-94.9322222,Audubon,IA,oval,10800,Three different bright lights that did not move, yet when seen with binoculars had red blinking lights. ((NUFORC Note: Stars?? PD)) +2010-09-26,28.5780556,-81.8869444,Mascotte,FL,unknown,20,Fast moving Bright Light. +2010-09-26,42.1013889,-72.5902778,Springfield,MA,light,2,Green light appears out of nowhere in night sky +2010-09-26,34.0122222,-117.6880556,Chino,CA,disk,120,Round UFO with yellow-orange moving lights traveling east to west and disappeared. +2010-09-26,37.4419444,-122.1419444,Palo Alto,CA,other,20,four lights,wierd hovering sound flying over silicon +2011-09-26,31.7077778,-81.7425,Ludowici,GA,light,1020,I saw a group of star-like lights in the sky that blinked and moved and seemed to be directed by another larger brighter light. +2011-09-26,29.7630556,-95.3630556,Houston,TX,light,6900,Point of light in the sky; too bright for star, moving unlike aircraft, satellite, ba.loon or parachute. ((NUFORC Note: Star?? PD)) +2011-09-26,33.5386111,-112.1852778,Glendale (Luke Airforce Base),AZ,sphere,900,UFO over Luke AFB Glendale,AZ +2011-09-26,33.3766667,-79.2947222,Georgetown,SC,cigar,180,White lights that multiplied +2011-09-26,39.4013889,-76.6022222,Towson,MD,egg,10,Single, chrome, stationary object witnessed near Baltimore, Maryland. Vanished instantly. +2011-09-26,42.1925,-76.0613889,Maine,NY,triangle,180,Triangular shaped object.Size of large van.No noise or physical disturbance.Two rear white lights, one green light +2011-09-26,33.6888889,-78.8869444,Myrtle Beach,SC,light,30,Two orange lights in the sky +2011-09-26,41.0844444,-76.8641667,Watsontown,PA,triangle,4,Object cutting through haze of night. +2011-09-26,43.6136111,-116.2025,Boise,ID,oval,180,multi-color flashing lights with bright white in the middle. Hovering with no noise every night. ((NUFORC Note: Sirius? PD)) +2011-09-26,37.775,-122.4183333,San Francisco,CA,triangle,3,Triangle craft with lights seen over SF +2011-09-26,42.1033333,-76.2625,Owego,NY,light,1800,2 shinning lights in-sink moving, came closer. +2012-09-26,44.3105556,-69.78,Augusta,ME,unknown,6,2 large blue flashes in different locations late night in Maine +2012-09-26,46.0130556,-91.4844444,Hayward,WI,unknown,7200,Was sitting out side looking into the sky, Was looking at the stars when i looked to my side and saw 2 Orbs Of bright orange lights flo +2012-09-26,38.9938889,-80.2322222,Buckhannon,WV,formation,900,UFOs Observed Over Buckhannon, WV - September 2012 +2012-09-26,47.1719444,-122.5172222,Lakewood,WA,sphere,180,Bright orange ball of light or orb seen flying at the tree lines for 3 minutes +2012-09-26,33.8352778,-117.9136111,Anaheim,CA,light,300,Bright Copper color light moving over Anaheim CA sky +2012-09-26,38.0563889,-83.9433333,Mount Sterling,KY,fireball,900,Six fireballs flying across the sky. +2012-09-26,42.1686111,-92.0233333,Vinton,IA,circle,180,I seen a circle object that was red, it shimmered like a fire. It was somewhat low in the sky and flew towards the west side of town an +2012-09-26,42.9038889,-78.6925,Depew,NY,light,120,Approximately 7 reddish/orange colored circles where seen randomly, silently maneuvering in the sky at approximately 8:20pm before grad +2012-09-26,40.1933333,-85.3863889,Muncie,IN,circle,300,Glowing Fire Colored Orb in the Sky +2012-09-26,41.2586111,-95.9375,Omaha,NE,diamond,600,3 slow moving, diamond shaped crafts flew in a strait line from N to S over the city. +2012-09-26,41.6752778,-85.7061111,Middlebury,IN,light,120,Two orange red ball of light seen by 5 factory workers in Middlebury, IN. +2012-09-26,47.8627778,-121.8152778,Sultan,WA,circle,7200,Color changing stationary light in the north east sky near Seattle. ((NUFORC Note: Sighting of star, Capella, we suspect. PD)) +2012-09-26,45.5061111,-91.7380556,Rice Lake,WI,unknown,6300,Stationary flashing lights in sky. ((NUFORC Note: Possible sighting of "twinkling" star?? PD)) +2013-09-26,42.5583333,-70.8805556,Beverly,MA,sphere,1200,2 round spheres chasing each other in a counter clockwise elliptical pattern +2013-09-26,30.4505556,-91.1544444,Baton Rouge,LA,light,1800,Very low and slow moving bright, blurry light spotted during a very close encounter +2013-09-26,48.9938889,-122.7458333,Blaine,WA,light,2700,Small, colorful, flashing light. +2013-09-26,37.7741667,-87.1133333,Owensboro,KY,fireball,15,Red fireball crossed Hwy 54 changed to green and blue and disappeared, just before sun up. +2013-09-26,41.1305556,-85.1288889,Fort Wayne,IN,fireball,4,It was just before dawn and the sky was clear with just a little fog. I was just getting out of my car at work when I saw the bright fi +2013-09-26,41.6611111,-72.78,New Britain,CT,light,1500,15-18 Red/Orange orbs moving across the sky that disappeared quickly along with a single white light that lingered for a few minutes. +2013-09-26,41.0997222,-80.6497222,Youngstown,OH,cross,300,At or about 7:55 pm est. i was traveling S.W. from my house heading to taco bell to get some food and i looked off to the West and saw +2013-09-26,41.5380556,-72.8075,Meriden,CT,disk,300,FLASH OF LIGHT SPOTTED IN BACKYARD, CIRCULAR SHAPED OBJECT WITH ROTATING LIGHTS ON IT +2013-09-26,36.8352778,-76.2986111,Portsmouth,VA,light,1102,White light, moved very very fast. +2013-09-26,41.3772222,-71.8341667,Pawcatuck,CT,teardrop,180,Teardrop shape hovers, changes colors then flies away +2013-09-26,41.5236111,-90.5775,Davenport,IA,light,600,Western sky, bright light contrails under it then under contrails was another bright oval light moving only vertical in the sky! +2013-09-26,39.1619444,-84.4569444,Cincinnati,OH,circle,180,Seen two orange fire balls rotating around each other with no sound and lasted for a few min Them the bright light vanished and the fle +2013-09-26,44.6336111,-86.2344444,Frankfort,MI,fireball,1500,Objects traveled in opposite direction horizontally and vertically +2013-09-26,39.1155556,-77.5638889,Leesburg,VA,formation,360,Triangle light formation. +2013-09-26,37.4947222,-120.8455556,Turlock,CA,chevron,10,Observed a "V" shaped UFO with 15 whitish-yellow lights traverse 105 degrees of sky in 10 seconds, on a heading of 150. +2013-09-26,37.7652778,-122.2405556,Alameda,CA,unknown,120,Two red-lighted objects with red lights flowing down from them spotted over San Francisco Bay. +2013-09-26,33.9383333,-78.7333333,Longs,SC,circle,30,3 glowing spheres going completing dark and appearing in opposite direction. +2013-09-26,33.8358333,-79.0480556,Conway,SC,circle,47,Appears to be three red-orange independent objects with independent movement. White light much larger and simply vanised +2013-09-26,29.6236111,-81.8905556,Interlachen,FL,light,1200,REALLY BRIGHT ORANGE SLOW MOVING OBJECT SEEN OVER WEST PUTMAN COUNTY FLA. +2013-09-26,38.8902778,-77.0844444,Arlington,VA,sphere,600,Orange and red sphere over Northern Virginia +2013-09-26,35.9555556,-80.0055556,High Point,NC,diamond,1800,Flashing diamond shaped object that change blue/white/red +2013-09-26,26.6155556,-80.0572222,Lake Worth,FL,chevron,240,(2) Boomerang shaped crafts spotted over Lake Worth, FL heading south +2013-09-26,33.8158333,-78.6802778,North Myrtle Beach,SC,circle,180,Fast moving, low altitude orange orb +2013-09-26,33.8158333,-78.6802778,North Myrtle Beach,SC,circle,180,Large Orange Circles hovering and &quot;dancing&quot; in the sky - North Myrtle Beach +2013-09-26,37.4947222,-120.8455556,Turlock,CA,light,4,09/26/13, 21:58hours, what first appeared to be a magnitude 2 meteorite made a climbing "U" turn - and then disappeared. +2013-09-26,33.7488889,-84.3880556,Atlanta,GA,light,10,Two red and two green lights came across the top of our car at a fast rate of speed. +2013-09-26,38.8402778,-77.4291667,Centreville,VA,changing,60,About 10:00 pm ESP , 9/26/2013 Centreville, Virginia. I was at a stop light and saw a blue laser light reflecting on the the clouds a +2013-09-27,42.76,-87.9133333,Franksville,WI,fireball,180,My neighbor drove in the yard and I stepped out on my porch. She was looking up and to the south and she says &quot;did you see the fi +1965-09-27,44.551944399999996,-69.6322222,Waterville,ME,circle,300,Round blue circular object hovers and dissolves in Maine. +1966-09-27,36.8466667,-76.2855556,Norfolk,VA,oval,5400,My dad Lcdr Lund said it was real later in my life, this was a Navy Secret. +1966-09-27,41.0097222,-95.2252778,Red Oak,IA,oval,180,Beeping sounds and unidentifiable greenish, foggy light that flooded area for approx. 3 min. in the early morning hours. +1976-09-27,44.9444444,-93.0930556,St. Paul,MN,unknown,3600,Their was a green fog. I saw what appeared to be an oval shaped object wrapped or swaddled in a somewhat goldish, metallic material. +1980-09-27,44.9444444,-93.0930556,St. Paul,MN,light,7200,ufo encounter with missing time +1981-09-27,43.8955556,-103.4177778,Keystone,SD,oval,8,UFO photographed near Keystone, South Dakota. +1989-09-27,36.0102778,-84.2697222,Oak Ridge (Over Classified Y12 Facility),TN,disk,1800,Huge Saucer with lights seen, over Oak Ridge, hovered, lights changed, and suddingly disappeared . +1991-09-27,29.8830556,-97.9411111,San Marcos,TX,triangle,480,Giant V-Shaped Craft +1994-09-27,35.4491667,-86.7888889,Lewisburg,TN,disk,60,A light split into 5 lights. +1995-09-27,40.8586111,-76.23,Ringtown (2 Mi.outstde),PA,teardrop,240,while driving ,noticed an object in clear night sky ,seemed to be comming in my direction +1997-09-27,38.3241667,-85.4725,Crestwood,KY,disk,900,A big disk with red and green lights on the rim was coming closer to the ground, it's body was the color of the sky. +1997-09-27,43.9991667,-96.6486111,Egan,SD,other,1800,The Weirdest Thing I Have Ever Seen +1998-09-27,32.7666667,-96.5988889,Mesquite,TX,triangle,60,triangle headed west toward downtown dallas +1998-09-27,43.0761111,-88.7741667,Johnson Creek (Near; On I-94 East, Heading Toward Milwaukee),WI,sphere,60,Saw a bright, white, spherical object at cloud level. It moved from north to south at a rapid pace, then disappeared. +1998-09-27,47.4705556,-122.3455556,Burien,WA,triangle,4,Exactley the same as the Salt Lake City,UT sighting Reported 9/26/98. I read it for the first time today and it's what convinced me to +1998-09-28,47.6741667,-122.1202778,Redmond,WA,circle,7,I was looking eastward and saw a bright yellow ball streak across the sky, traveling horizontally from south to north, for 6 - 7 second +1999-09-27,45.2630556,-122.6913889,Canby,OR,formation,180,Triangular formation, pinpoints of white light, sighted in the western sky. +1999-09-27,34.1591667,-118.5002778,Encino,CA,light,120,Saw a motionless light floating in the sky. It flashed off and on at 1/2 second intervals then disapeared. From - Thu Sep 30 23:30:13 +1999-09-27,40.8272222,-83.2813889,Upper Sandusky (On Rt.30, West Of),OH,fireball,1200,driving east on 30 noticed an unmoving orange fireball just to NE of road. Remained stationary for 10-20 min. then started toward south +2000-09-27,41.9,-71.0902778,Taunton,MA,disk,10,I was returning home from work and pulled up to a traffic light which was on red. The light is on Bay street right by the Taunton indus +2000-09-27,39.3702778,-78.0958333,Gerrardstown,WV,disk,12,The disk had four lights,one long on each third and a fourth in the center flashing emitting beams of light as it moved +2000-09-27,40.6955556,-73.3261111,Babylon,NY,circle,1800,I woke up at 3:00 in the morning and as I always do, I looked out at the night sky. My house is very high and so it is a natural thing +2000-09-27,38.0822222,-122.5136111,Bel Marin Keys,CA,light,5,Slow-moving horizontal round white light +2000-09-27,39.5538889,-104.9688889,Highlands Ranch,CO,triangle,180,Triangle object, orange, blue and red lights, no sound, high speeds,close to ground. +2000-09-27,35.2338889,-92.3875,Greenbrier,AR,circle,3600,Something in the western sky in Arkansas +2000-09-27,44.0805556,-103.2305556,Rapid City,SD,light,60,Looked for and found a satellite, as well as a UFO +2000-09-27,44.5047222,-114.2308333,Challis,ID,triangle,60,An enormous triangular silent object just floating 200 feet straight above us. +2001-09-27,39.0997222,-94.5783333,Kansas City,MO,cigar,2700,I WAS DRIVING MY CAR I SAW A BRIGHT SHINNING OBJECT TO MY LEFT AND THE AREA WAS WOODED,BUT AS I DROVE NEAR SOME CLEARING'S I SAW AN OB +2001-09-27,32.2986111,-90.1847222,Jackson,MS,light,20,A light brighter than Venus, moving in an 'S' pattern, fades into the darkness of the southern sky. +2001-09-27,30.4380556,-84.2808333,Tallahassee,FL,triangle,60,Located in the southern united states, early evening, lasting 1 minute, a triangular shaped craft with white lights outlining it. +2001-09-27,42.1655556,-88.2941667,Algonquin,IL,fireball,10,Glowing ball seen descending into field. +2001-09-27,39.7391667,-104.9841667,Denver,CO,light,3600,20+ lights seen individually, very rapid speed, abrupt direction changes, no sounds, multiple witnesses in Denver +2002-09-27,41.8977778,-87.8138889,River Forest,IL,teardrop,10,Teardrop craft with revolving lights moving in opposite direction +2002-09-27,47.3811111,-122.2336111,Kent,WA,sphere,120,I really saw a dark grey sphere hovering motionless then moved slowly got smaller and dissapeared!!!!! +2002-09-27,35.1494444,-90.0488889,Memphis,TN,light,20,The international space station was being followed by another vehicle of sorts. +2002-09-27,39.0875,-81.9227778,West Chester,OH,light,10,Light's in the sky +2003-09-27,48.0152778,-122.0625,Lake Stevens,WA,light,180,There are 5 objects appearing in the sky. The objects do not have a visible shape. From our perspective, they are all within about a f +2003-09-27,33.0094444,-83.5338889,Gray,GA,sphere,2400,The object had blue, white and red lights and hovered in the sky moving only slightly and then hovering again. I took some photos with +2003-09-27,48.9391667,-119.4344444,Oroville,WA,oval,2,Bright shining oval shaped shere, it rolled over and then disappered. +2003-09-27,47.2033333,-122.2391667,Sumner,WA,sphere,180,Bright silver sphere seen in skies above Sumner, Washington-then disappears. +2003-09-27,42.1155556,-75.9591667,Johnson City,NY,circle,180,Circular craft cross sky, stops, and flies off +2003-09-27,39.4019444,-75.0397222,Millville,NJ,light,60,fix to "Bright light low on the horizon with eratic flight path and speeds." +2003-09-27,47.0791667,-119.8547222,George,WA,light,15,Object observed from Gorge Amphitheater on September 27, 2003. +2003-09-27,33.6888889,-78.8869444,Myrtle Beach,SC,light,10800,LARGE BRIGHT WHITE LIGHT DISAPEARS AFTER SPLITTING 2 RED LIGHTS TO THE LEFT AND TO THE RIGHT IN THE SKY! +2003-09-27,47.6063889,-122.3308333,Seattle,WA,light,60,Witnessed a bright green silent light traveling from the north towards the south. +2003-09-27,33.1505556,-96.8233333,Frisco,TX,triangle,300,Triangle, moving south from the north, not moving very fast, I was completely sober and my wife saw it too. +2004-09-27,44.9611111,-90.7997222,Thorp,WI,light,2,3-4 horizontal lights in WSW, visible only seconds but bright as moon. +2004-09-27,27.9375,-82.2861111,Brandon,FL,diamond,60,We saw object(s) flying in tight formation and or lights on the underside of an odd shaped craft . +2004-09-27,40.0455556,-86.0086111,Noblesville,IN,circle,5,Yellow-White Flat Round Light travels west to east then another travels east to west all in 15 seconds +2004-09-27,35.8455556,-86.3902778,Murfreesboro,TN,triangle,300,Delta Shaped Object seen flying toward Nashville TN from Murfreesboro TN. +2005-09-27,35.3733333,-119.0177778,Bakersfield,CA,unknown,600,While driving to work at 6:30 am I observed a jet trail streaking across the sky at a very fast rate. what appeared to be faster than m +2005-09-27,29.4238889,-98.4933333,San Antonio,TX,light,15,Light in night sky +2005-09-27,43.0202778,-71.6008333,Goffstown,NH,light,1380,Two Bright Lights Hovered over Power Lines +2005-09-27,32.7702778,-101.445,Gail,TX,circle,180,i live on lake thomas in borden co. we were out looking for sign of some wild hogs that go up and down the colorado river just after da +2006-09-27,34.1511111,-118.4483333,Sherman Oaks,CA,circle,30,Dropped off son at school, witnessed floating sphere / heart shapped almost that went left to right, thought it was a balloon until it +2006-09-27,42.8433333,-71.7355556,Wilton,NH,other,240,red matalic stretched dimond shape with red light flashing +2006-09-27,41.2402778,-75.945,Plymouth,PA,cigar,30,The object at first seemed to be an airliner coming in for a landing. Then it was noticed that BRIGHT WHITE object appeared to be dangl +2006-09-27,33.8358333,-118.3397222,Torrance,CA,oval,60,An oval-shaped flying object appeared on one of my photographs that i have taken for school's yearbook duty. +2006-09-27,47.6472222,-120.07,Waterville (East Of),WA,other,3,Metallic Object Flying Close To Ridge Near Dry River Bed +2006-09-27,31.5058333,-97.2047222,Woodway,TX,cigar,120,LONG, LOW VERY BRIGHT CIGAR SHAPED OBJECT, NO SOUND , LARGE WINDOWS , DISAPPEARED +2006-09-27,38.5225,-82.7172222,Flatwoods,KY,disk,180,SAUCER SHAPED CRAFT MOVING SOUTH TO NORTH OVER THE OHIO RIVER INTO OHIO FROM KENTUCKY +2006-09-27,42.3583333,-71.0602778,Boston,MA,other,10,fast moving odd shaped craft +2006-09-27,29.7352778,-94.9772222,Baytown,TX,sphere,180,Disk shaped navy blue U.F.O emmiting light beams into sky in Baytown Texas +2007-09-27,32.2161111,-80.7527778,Hilton Head Island,SC,unknown,600,It looked like the Space Shuttle Main Engines but instead of three there were two. The color coming from the exhausts was red and blue +2007-09-27,28.5380556,-81.3794444,Orlando,FL,oval,2,Object near DAWN space probe during launch from KSC +2007-09-27,39.5297222,-119.8127778,Reno,NV,rectangle,30,Large rectangle, invisible apart from its outline +2007-09-27,32.9536111,-96.89,Carrollton,TX,light,360,Bright pin point light moving extremely slow at High Altitude +2007-09-27,36.175,-115.1363889,Las Vegas,NV,triangle,20,Myself, and two police officers, observed a flying triangle flying over us in the Las Vegas sky. +2007-09-27,39.0911111,-94.4152778,Independence,MO,unknown,20,Fast bright object over Independence, MO +2007-09-27,41.0238889,-81.1636111,Atwater,OH,triangle,120,Triangle Craft Sighting +2007-09-27,35.0886111,-92.4419444,Conway,AR,light,300,UFO over the practice field at UCA +2007-09-27,33.4147222,-111.9086111,Tempe,AZ,triangle,120,((HOAX??)) Large triangle shaped object with several lights on the bottom flew over tempe +2008-09-27,29.7630556,-95.3630556,Houston,TX,light,180,one bright light noticed - three light travel together then split to for a perfect triangle. +2008-09-27,34.9386111,-104.6819444,Santa Rosa,NM,fireball,20,A large yellow fireball traveling slowly and nearly horizontal across the night sky +2008-09-27,33.9488889,-118.4447222,Playa Del Rey,CA,flash,900,Fire alarm went off then Strobing light filled the sky +2008-09-27,27.9472222,-82.4586111,Tampa,FL,oval,120,Silver metallic oval-shaped object seen over I-4 in Tampa, Florida on 09/27/2008 in daylight +2008-09-27,41.5733333,-87.7844444,Tinley Park,IL,light,180,2 Flashing Lights In Tinley Park +2008-09-27,30.2944444,-81.3933333,Jacksonville Beach,FL,flash,600,At approximately 15:15 on Saturday September 27th 2008, I was wading on the shore of Jacksonville Beach in about 5 feet of water observ +2008-09-27,36.175,-115.1363889,Las Vegas,NV,sphere,3000,Sphere over Las Vegas viewed from the pool of the Imperial Palace Hotel. +2008-09-27,39.3722222,-104.8555556,Castle Rock,CO,light,2700,Star-like colored lights hovering very low, small plane had to sweve to miss it. +2008-09-27,41.7533333,-86.1108333,Granger,IN,light,120,Two bright lights that dimmed fast +2008-09-27,41.1397222,-112.0497222,Clinton,UT,triangle,6,triangle shaped craft with 3 large lights in the corners traveling 800+ mph with no sound. +2008-09-27,42.4805556,-83.4755556,Novi,MI,sphere,1200,Four glowing orbs watched as they travelled from the northeast to the southwest in Novi, Oakland County, Michigan +2009-09-27,46.5352778,-121.9558333,Randle,WA,disk,1200,It seems to move left and right and up and down in it's pattern of flight. +2009-09-27,45.5236111,-122.675,Portland,OR,circle,2400,Silver objects flying near the sun +2009-09-27,37.7858333,-77.1052778,Aylett,VA,light,300,fast moving bright solid light in the sky. +2009-09-27,24.5552778,-81.7827778,Key West,FL,oval,5,One fire ball flying over the ocean in keywest for about 5 seconds then it vanished +2009-09-27,33.2147222,-97.1327778,Denton,TX,light,120,Bright, wobbling, white light moving accross the sky, no sound and moving fast compare to other airplanes and satellites. +2009-09-27,37.6391667,-120.9958333,Modesto,CA,light,120,bright blue neon light moving slowly across the sky +2009-09-27,40.6080556,-74.2780556,Rahway,NJ,circle,7,the object appeared as a streak of light then stopped for 2 secs then took off in another direction and disappeared +2009-09-27,26.7052778,-80.0366667,West Palm Beach,FL,fireball,15,Fireball that crossed northern horizon then shot upward and disappeared. +2009-09-27,41.1413889,-73.3583333,Westport,CT,disk,60,Large saucer in the sky over Westport, CT! +2010-09-27,38.4,-105.2166667,Canon City,CO,cigar,30,cigar shape object reflecting the sun's light +2010-09-27,38.2225,-85.3552778,Simpsonville,KY,unknown,2700,9/27/10 SIMPSONVILLE,KY VARIOUS COLORED LIGHTS 45 MINS HOOVERING IN SKY 9/28/10 +2010-09-27,29.9888889,-97.8769444,Kyle,TX,chevron,4,Huge bommerange shaped UFO with faint red lights flying stealth northwest to southeast +2011-09-27,42.7875,-86.1088889,Holland,MI,cylinder,120,Cylinder shape, 2 bright lights on bottom, one on each side of craft as well as one in front, foggy skies, craft aprox 15ft from roof. +2011-09-27,37.7477778,-84.2947222,Richmond,KY,triangle,120,Triangular aircraft with huge round lights underneath traveled within 30 feet of my window as I watched it come across the river. +2011-09-27,31.1502778,-81.3697222,St. Simons Island,GA,sphere,7200,Object appeared as a rounded bright light, stopping then moving rapidly (erratically) in any direction. ((NUFORC Note: Star?? PD)) +2011-09-27,39.9205556,-105.0861111,Broomfield,CO,other,1500,Gold lime green irregular bulb-shaped object Broomfield, CO 5:30PM 9/27/11 +2011-09-27,34.1397222,-118.0344444,Arcadia,CA,light,120,Light blue/white light near the hills North of the 210 Freeway +2011-09-27,34.7463889,-92.2894444,Little Rock,AR,sphere,60,two huge amber, orange orbs flew over my house. +2011-09-27,42.9033333,-78.755,Cheektowaga (Buffalo),NY,fireball,60,We saw a fireball object, no lights, no sound nor smoke/exhaust. +2011-09-27,44.0522222,-123.0855556,Eugene,OR,circle,600,Five fiery lights/dark circular objects seen by young couple in Eugene, OR. +2011-09-27,26.9616667,-82.3527778,Englewood,FL,light,7200,Bright colored lights of 1 object hovering in one position over Gulf of Mexico from FL. ((NUFORC Note: Star, possibly Sirius. PD)) +2011-09-27,32.2216667,-110.9258333,Tucson,AZ,sphere,900,Triangle of three light green orbs flying North over Tucson, AZ before shooting directly up and disappearing. +2011-09-27,35.2619444,-81.1875,Gastonia,NC,fireball,5,Very low in sky, humming sound, not very fast, color of fire ball with bobbing top on it +2011-09-27,35.7913889,-78.7813889,Cary,NC,circle,18000,Typical looking illuminating object very similar to the ones seen in the NASA STS-75 videos. ((NUFORC Note: Possible star? PD)) +2012-09-27,35.5666667,-75.4688889,Waves,NC,circle,240,I just wanted to let you know we saw several of the fireballs traveling all over and then fade out. We went to explore further while va +2012-09-27,35.7719444,-78.6388889,Raleigh,NC,circle,20,Silver circle hovering in sky +2012-09-27,42.614444399999996,-94.1458333,Badger (S. Of; N. Of Fort Dodge),IA,cylinder,600,One rotating blade (but rotated very, very slow). No sound. +2012-09-27,34.1738889,-84.5013889,Holly Springs,GA,cigar,240,Two rocket-like objects streaking across the daylight sky +2012-09-27,40.5575,-74.285,Woodbridge,NJ,unknown,30,Mystery CONTRAILS ASSOCIATED with LOUD SKY ROAR/RUMBLE +2012-09-27,37.3394444,-121.8938889,San Jose,CA,fireball,180,3 fireball objects in San Jose/Campbell +2012-09-27,39.3291667,-82.1013889,Athens,OH,fireball,90,Close orange fiery object flying slow and low +2012-09-27,41.0658333,-75.3202778,Scotrun,PA,egg,480,There we 2 egg shape or bell shape orangy glowing objects. They hovered in close proximity travelling in multiple directions. +2012-09-27,48.7597222,-122.4869444,Bellingham,WA,sphere,300,Brightly glowing sphere slowly hovered over Bellingham then ascended upwards into space. +2012-09-27,40.3972222,-91.3847222,Keokuk,IA,other,2,See thru small aircraft looking object, flying slow and low with no noise or lights +2012-09-27,30.5991667,-87.1611111,Pace,FL,other,120,What I saw looked like a helicopter, which also sounded like a helicopter. +2012-09-27,24.5552778,-81.7827778,Key West,FL,fireball,30,Big orange/yellow fireball traveling N to S over Atlantic, many lights 3 persons saw-2 took Cellpics,the zoomed in 1 had shadow face +2012-09-27,42.7875,-86.1088889,Holland,MI,triangle,300,A cluster of bright lights on what looked like a triangle plane but then proceeded to Hover above the tree tops next to me. +2013-09-27,46.2113889,-119.1361111,Kennewick,WA,changing,30,Drone/ufo in kennewick wa low to ground followed car side by side +2013-09-27,39.0066667,-76.7794444,Bowie,MD,sphere,120,Single Orange Reddish sphere traveling in slow motion before disappearing +2013-09-27,35.4869444,-93.8275,Ozark,AR,circle,2,Yellowish orange orb moving horizonally, low to the ground at a very high rate of speed with no sound, no tail +2013-09-27,42.6727778,-88.5444444,Elkhorn,WI,light,2,Light hovering above the tree line for several hours +2013-09-27,42.4852778,-83.3772222,Farmington Hills,MI,cigar,5,Metallic cigar shaped at one end, rectangle at the other end. Hovering, no sound. +2013-09-27,34.2561111,-78.045,Leland,NC,light,900,Bright light hovering over Hwy 17 in Winnabow NC cutting circles and flips while changing colors red, white and green. +2013-09-27,39.4805556,-86.055,Franklin,IN,unknown,2,We saw a bust of light then a fast streak across the sky. +2013-09-27,40.0333333,-83.1583333,Hilliard,OH,flash,5,Blue flash lights up the night sky +2013-09-27,39.0875,-81.9227778,West Chester,OH,flash,4,Lightning ring +2013-09-27,41.4738889,-81.5372222,Shaker Heights,OH,circle,1.5,Blue green round fireball appeared while my husband was walking the dog. It seemed to be at a distance but was quite large...seemed to +2013-09-27,43.0125,-83.6875,Flint,MI,unknown,5,Driving down ballanger to vanslyke about to go over the tracks i catch a blue turquoise color ball out the corner of my eyes as soon a +2013-09-27,40.8830556,-85.4975,Huntington,IN,rectangle,300,Reddish rectangular object +2013-09-27,36.175,-115.1363889,Las Vegas,NV,light,600,Never seen this before +2013-09-27,33.4052778,-86.8113889,Hoover,AL,disk,1200,Bright blue saucer with blue lights beaming from the bottom of the object spanning outwards. Cat missing. +2013-09-27,46.9011111,-119.6294444,Royal City (North Of),WA,unknown,600,Dozen Orange Orb Lights in Central Washington State +2013-09-27,33.6888889,-78.8869444,Myrtle Beach,SC,unknown,4,Triangular shaped dark orange light. Very large in the direction of the ocean. +2013-09-27,40.2330556,-76.1375,Denver,PA,sphere,240,Observer see 2 orange spherical objecta seperated by about 40 seconds. +2013-09-27,33.8872222,-118.3516667,Lawndale,CA,fireball,30,Lawndale, CA bright fireball-like object flashed across the sky going in a northwesterly direction, lasting approximately 10-30 second +2013-09-27,41.3252778,-82.4933333,Berlin Heights,OH,light,3600,Twinkling lite that hovered then vanished then despaired a couple of miles away. hovered again and vanished +2013-09-27,33.5805556,-112.2366667,Peoria,AZ,fireball,180,Fireball in sky, slowed to a complete stop, then dimmed out in the night sky. +2013-09-27,39.3544444,-84.1272222,Morrow,OH,triangle,45,Three orange lights/equilateral triangle over SW Ohio about 45 seconds then disappeared. +2013-09-27,42.2708333,-83.7263889,Ann Arbor,MI,fireball,5,Green Fireball seen streaking towards ground +2013-09-27,39.4141667,-77.4108333,Frederick,MD,fireball,1.5,Fireball +2013-09-27,40.0991667,-83.1141667,Dublin,OH,other,1,I saw the sky light up, only for a second, to see a light traveling faster than i've ever seen +2013-09-27,40.8041667,-74.0125,North Bergen,NJ,disk,780,Lights in the sky Hides bigger Object Behind it! +2013-09-27,39.8208333,-84.0194444,Fairborn,OH,flash,180,My daughter and I saw a bright flash of exploding light in the sky over Fairborn, Ohio. +1966-09-28,41.7,-71.6833333,Coventry,RI,circle,1200,It was night and we all saw a hugh silver highly shiny circle craft not more than 100 feet away from us it was an incredible thing to +1973-09-29,41.3144444,-81.8358333,Strongsville,OH,other,600,A gray metal bell shaped object, half as tall as it was wide, no windows, no sound, hovered 25' in the air. +1978-09-28,42.5997222,-71.3677778,Chelmsford,MA,disk,900,1 mother ship with her smaller ones +1985-09-28,43.9441667,-90.8127778,Sparta,WI,circle,1185,this object was spherical, luminous,slowed down,and fast when it left. +1988-09-28,42.6011111,-89.6383333,Monroe,WI,circle,15,Orange light in distance made intstant 90 degree turn upwards and zoomed away at impossible speeds. +1995-09-28,33.5091667,-111.8983333,Scottsdale,AZ,fireball,15,Sighting of lone fireBall on 09/28/95.In the hours between 8pm and 10pm. +1997-09-28,37.775,-122.4183333,San Francisco,CA,triangle,15,flying-wing shape outlined by 12-14 lights. Apparent high altitude over- head east to west mvmnt. Appx. 9-12 moon widths +1998-09-28,30.2669444,-97.7427778,Austin,TX,triangle,10,shape resembled a b2 bomber, gray/brown bttm, apprx 1000 feet high traveling slowly and completely silent along the I35 corridor. Disa +1998-09-28,39.1619444,-84.4569444,Cincinnati,OH,fireball,10,like shooting star or meteorite but had a rather long tail. +1998-09-28,46.0980556,-88.3338889,Crystal Falls,MI,light,300,I saw a moving light in the sky that wobled about as bright as jupiter But moving i could also see jupiter off to the side i then saw a +1998-09-28,47.9791667,-122.2008333,Everett,WA,unknown,3600,Noticed two illuminated objects high in the South East part of the sky, one was stationary the other moved towards it and positioned it +1998-09-28,42.0694444,-72.6152778,Agawam,MA,oval,120,I WAS AT MY AUNTS AND LOOKED UP IN THE SKY AND SAW THIS CRAFT HOVER THERE BOUT 2-300FEET UP IN AIR,LIKE TWO PLATES ONE REVERSED WITH DI +1998-09-28,40.9402778,-74.1322222,Fair Lawn,NJ,triangle,2,1 large triangular Craft flew through the sky followed by A small light sphere. +1999-09-28,39.9611111,-82.9988889,Columbus,OH,light,5,My girlfriend an I were outside of our apt. it was a nice night, no cloud, the object was as bright as a star from the big dipper, goin +1999-09-28,33.5091667,-111.8983333,Scottsdale,AZ,disk,1800,round flat type disk hovered and proceeded to move slow. white in color .eventually slowly moved away and disappeared +1999-09-28,38.4722222,-81.8144444,Poca,WV,disk,120,Standing outside on front porch when strange disk shaped object flew over a hill and headed as if it was to land. One witness told anot +2000-09-28,41.4219444,-82.3647222,Vermilion,OH,disk,30,I saw 3 disc shaped crafts with a greenish hue. +2000-09-28,38.6880556,-83.6094444,West Manchester,OH,other,5,White jet seen disappearing after passing through a trail left by a jet. +2000-09-28,41.0602778,-111.9702778,Layton,UT,triangle,300,Black triangle shaped object, red and blue strobe-lit, two and-a-half miles east of HAFB, hovering at an altitude of 150-200 ft. +2000-09-28,36.2138889,-83.295,Morristown,TN,triangle,480,Huge, triangular craft with six white rectangular lights on the bottom witnessed in EastTennessee +2000-09-28,44.0247222,-88.5425,Oshkosh,WI,disk,10,Glowing orange flying saucer above UW Oshkosh seen +2000-09-28,38.6702778,-89.9844444,Collinsville,IL,fireball,4,3 white/grey objects seem to be separting from a larger object with smoke around them. She saw a huge fireball. +2000-09-28,36.9958333,-85.9119444,Glasgow,KY,other,7,A seemingly long object with a dull glow on the frontƻ rectangular white lights in a row, then a red light which disappeared rather su +2001-09-28,43.0347222,-83.5180556,Davison,MI,cigar,300,Davison Michigan's Cigars shaped space craft +2001-09-28,39.5297222,-119.8127778,Reno,NV,fireball,600,Large fireball spotted over Nevada +2001-09-28,44.5191667,-88.0197222,Green Bay,WI,fireball,4,UFO seen over Green Bay Wisconsin +2001-09-28,37.5536111,-77.4605556,Richmond,VA,other,180,sighted 09/28/2001 no noise Richmond, Va. at 11:00 PM 2-3 minutes duration going west to east shape of a sailor's cap +2002-09-28,47.6063889,-122.3308333,Seattle,WA,fireball,120,Streaking objects with smoke/steam tail just above the horizon, east of Seattle just before sunrise. The first appeared at 6:50Am, the +2002-09-28,33.4222222,-111.8219444,Mesa,AZ,other,120,Observed a dark, oblong craft fly over Mesa, AZ approx. 5 minutes after watching Air Force One pass by. +2002-09-28,41.3166667,-110.3836111,Fort Bridger,WY,disk,30,Saw very bright green light in western sky. +2002-09-28,40.6166667,-87.3208333,Fowler,IN,triangle,30,Elongated pyramid-shaped ufo seen flying in the country. +2002-09-28,41.2230556,-111.9730556,Ogden,UT,circle,5,Round green light in the western sky of Utah +2002-09-28,40.8002778,-72.7902778,Center Moriches,NY,light,60,2 white objects traveling closely behind a plane +2002-09-28,40.8622222,-73.6341667,Glen Cove,NY,light,180,bright slow moving object that started to dim then disappear as another faint "star" slowly fell to where it disappeared in the nw sky. +2002-09-28,40.5866667,-122.3905556,Redding,CA,light,180,Two bright lights, no sound, thin faint white trails behind then, travelled from west to east. +2002-09-28,24.5552778,-81.7827778,Key West,FL,fireball,30,Can someone tell me what this is? +2002-09-28,33.7669444,-118.1883333,Long Beach,CA,fireball,10,When doing trash run I looked to sky and saw a scary green fireball which seemed to want to communicate, as if it were alive. +2002-09-28,40.7141667,-74.0063889,New York City (Staten Island),NY,light,300,Last evening at exactly 8pm, myself and my landlord witnessed a bright white light moving from a southeastern to northeastern direction +2002-09-28,21.3069444,-157.8583333,Honolulu,HI,fireball,2,green fireball fall from the sky. +2003-09-28,36.0344444,-89.3855556,Dyersburg,TN,other,10,Craft in the sky that had bright lights and vanished right before our eyes. +2003-09-28,36.175,-115.1363889,Las Vegas (Close To),NV,triangle,60,I was returning from california I saw tree lights appear theiy were brigther than a star a little brighter that venus, they appear clos +2003-09-28,32.948055600000004,-96.7294444,Richardson,TX,formation,30,three lights moving in formation from north to south +2003-09-28,33.9608333,-83.3780556,Athens,GA,triangle,60,the only thing you could see was 3 lights in the shape of a triangle, floating slowly over a field near some houses. +2003-09-28,36.595,-82.1888889,Bristol,TN,triangle,10,I just woke up from a nap, and i go outside to jump on the trampoline and listen to music. I turned off the deck light and went outside +2003-09-28,37.2708333,-79.9416667,Roanoke,VA,circle,300,i havent never seen anything like that ever ! +2003-09-28,47.2530556,-122.4430556,Tacoma,WA,unknown,300,Tacoma/Puyallup - Light that moved & changed color +2003-09-28,41.6561111,-70.4166667,Marstons Mills,MA,other,120,Black void in the sky moving at a fast pace, this is the 3rd sighting in a year...... +2003-09-28,33.9841667,-88.4880556,Amory,MS,sphere,900,3 spheres spotted over Amory, MS while jets from Columbus AFB were training overhead. +2003-09-28,29.7630556,-95.3630556,Houston,TX,cylinder,180,Object had no wings or tail and made no sound. It appeared cylindrical and at times disc like. We saw it in daylight in a clear sky +2003-09-28,35.6869444,-105.9372222,Santa Fe,NM,egg,3600,A large bright egg shaped object that moved slightly. +2003-09-28,44.775,-117.8333333,Baker City,OR,rectangle,20,Panel of light surgically zig/zagged across sky. Here to gone in 2 seconds flat. Impressed the hell out of us. WE WANT 1 +2003-09-28,35.6869444,-105.9372222,Santa Fe,NM,teardrop,900,I saw a short teardrop shape brighter than Mars with a small bright object following, with a bright letter " D" in the center. +2003-09-28,45.52,-123.0586111,Cornelius,OR,disk,5,washer shape in early night sky at Cornelius, Oregon 9/28/03 +2003-09-28,47.6105556,-122.1994444,Bellevue,WA,light,5,WE HAVE VIDEO TAPE OF IT! ((NUFORC Note: Probable "twinkling" stars, we suspect. PD)) +2003-09-28,36.1733333,-79.9891667,Oak Ridge,NC,light,3600,Bright light skipping around at approximately a 60 degree angle from ground. I Much brighter than any other object in the sky. +2003-09-28,47.0380556,-122.8994444,Olympia,WA,light,2,looking through an open drivers-side window to the west while about to pull into my driveway, thought what i was to see was a very brig +2004-09-28,42.9058333,-88.1388889,Muskego,WI,unknown,8,Bright flashes +2004-09-28,28.1611111,-81.6019444,Davenport,FL,disk,20,Fast moving objects racing across florida sky +2004-09-28,33.4483333,-112.0733333,Phoenix,AZ,triangle,900,Triangle UFO with red and white lights over Phoenix AZ +2004-09-28,43.5391667,-89.4625,Portage,WI,formation,5,triangle formation lights bright as full moon +2004-09-28,36.7477778,-119.7713889,Fresno,CA,light,4,Side by side cruise over Fresno CA. +2005-09-28,39.6294444,-79.9561111,Morgantown,WV,chevron,2700,orange orb seen rising into large chevron shaped object, plus other crafts visible +2005-09-28,38.7838889,-90.4811111,St. Charles,MO,changing,20,We watched 4 lights expand and contract at astonishing speeds in the night sky, then vanish. +2005-09-28,33.7669444,-118.1883333,Long Beach,CA,fireball,1,Bright green fireball decended straight down from the sky, it faded about 100 feet before hitting the ground. +2005-09-28,30.2944444,-81.3933333,Jacksonville Beach,FL,triangle,900,Huge triangle of lights gliding smoothly southeast with no sound. +2005-09-28,28.2713889,-82.7197222,Port Richey,FL,other,3,Unique Flying Boomerang Seen ! +2005-09-28,38.1886111,-119.9897222,Pinecrest,CA,disk,2,spider like threads and a saucer +2005-09-28,41.4775,-105.6361111,Wyoming (I-80, Westbound),WY,other,1200,Interstate 80, westbound, Wyoming, flying object seen by police officer and family. +2005-09-28,38.1916667,-120.8280556,Valley Springs,CA,light,360,Very bright light appears, disappears, reappears. +2005-09-28,35.2625,-77.5819444,Kinston,NC,formation,120,Vshape with light orange glow to it....very wide in shape +2005-09-28,41.4541667,-70.5625,Oak Bluffs,MA,oval,900,Went on my second floor balcony at 8:30 pm and noticed very bright yellowish light at 30 degrees above the horizon. Object too bright t +2005-09-28,41.5061111,-87.6355556,Chicago Heights,IL,cigar,300,high pitched whirling noise and random lights moving very quickly with sharp turns. +2005-09-28,45.0791667,-93.1469444,Shoreview,MN,circle,7,glowing orb +2005-09-28,42.0416667,-70.6727778,Duxbury,MA,light,600,Strange bobbing light above horizon. +2006-09-28,47.7558333,-122.3402778,Shoreline,WA,other,1200,To small to be a jet, not right for a private prop. +2006-09-28,32.7252778,-97.3205556,Fort Worth,TX,other,30,White Crescent shaped objects spotted. +2006-09-28,41.85,-87.65,Chicago,IL,flash,2,Chicago Flash of Light +2006-09-28,35.7686111,-106.6916667,Jemez Springs,NM,light,15,Large bright light passed from West To East through a Valley +2006-09-28,39.8811111,-75.3241667,Ridley Park,PA,rectangle,60,Appeared as white, two story building shaped object, no wings, moving slowly at low altitude. +2006-09-28,41.9122222,-72.5455556,Broad Brook,CT,triangle,60,Aprox 8PM eastern in Broad Brook, CT I saw a known black triangle craft. It had one large white lamp at te front tip and two large whit +2006-09-28,36.0397222,-114.9811111,Henderson,NV,other,4,I was sitting in my back yard talking to a friend on the phone. The night was dark, the moon was just over the west mountains and was +2006-09-28,33.2075,-92.6661111,El Dorado,AR,triangle,10,We saw a kite shaped object with lights shaped like a V,no sound flew very low. +2007-09-28,39.1547222,-122.1483333,Williams,CA,chevron,900,Bright motionless chevron shaped light and two orange orbs. ((NUFORC Note: Venus. PD)) +2007-09-28,37.5536111,-77.4605556,Richmond,VA,unknown,300,Unknown Object making unbelievable turn over Richmond +2007-09-28,42.4775,-83.0277778,Warren,MI,formation,20,Dynamic formation of five fast-moving, silent objects flying over Detroit area +2007-09-28,29.9986111,-95.2619444,Humble,TX,rectangle,10,Very fast-moving object, bright with an apparent trail, headed Northeast and losing altitude near Humble, Tx. +2008-09-28,41.0408333,-76.8672222,New Columbia,PA,circle,60,6 circular object moved in straight line across the sky going west. +2008-09-28,34.0094444,-118.1044444,Montebello,CA,rectangle,60,there was a huge rectangular object vertically on top of East Los angeles +2008-09-28,48.5127778,-122.6113889,Anacortes,WA,changing,300,as soon as we all saw the light, a blanket of light, then black showed under it and it disappeard. +2008-09-28,30.2669444,-97.7427778,Austin,TX,triangle,300,Triangle shaped UFO in the sky over city park in Austin, Tx. +2008-09-28,30.7619444,-86.5705556,Crestview,FL,sphere,60,taken at night before the moon rose and there was 2 objects in the sky +2008-09-28,35.198055600000004,-111.6505556,Flagstaff,AZ,other,60,Two UFOs over Flagstaff in the Constellation of Cassiopeia +2008-09-28,35.9605556,-83.9208333,Knoxville,TN,light,120,Orangish, white "stars" or "planets" in Orion's Belt, then moved and flew off +2008-09-28,39.8308333,-77.2313889,Gettysburg,PA,light,120,Bright White Light at Night +2008-09-28,27.7705556,-82.6794444,St. Petersburg,FL,diamond,900,Large, dark, diamond-shaped object hovering +2008-09-28,30.4211111,-87.2169444,Pensacola,FL,oval,120,Oval shape UFO over Pensacola +2008-09-28,48.4288889,-118.1691667,Rice,WA,light,300,2 Multi-colored, flashing, sparkling lights +2008-09-28,26.5625,-81.9497222,Cape Coral,FL,circle,5,Bluish circle moved quickly across the sky and dsappeared +2009-09-28,32.7252778,-97.3205556,Fort Worth,TX,other,20,Boomerang shaped craft glides across the sky early in the morning +2009-09-28,33.9375,-117.2297222,Moreno Valley,CA,other,20,Black square box, longer in width than height, with a white light bubble on the bottom portion. +2009-09-28,26.1219444,-80.1436111,Fort Lauderdale,FL,sphere,180,Crystal sphere no sound over Fort Lauderdale and Miami Airport +2009-09-28,37.9716667,-100.8722222,Garden City,KS,light,180,Bright Star Like Object +2009-09-28,28.5380556,-81.3794444,Orlando,FL,light,30,Looked like a distant star then moved slowly for no more than 30 seconds. It stopped and then it was gone. +2009-09-28,44.5191667,-88.0197222,Green Bay,WI,triangle,300,09-28-09 Green Bay WI, Triangle Shape Object, 3 Lights on one side, One Light on the bottom side on the other, and red light in center. +2009-09-28,37.6391667,-120.9958333,Modesto,CA,light,300,Blue light and smaller white light +2010-09-28,42.1583333,-71.1452778,Canton,MA,unknown,3,Very bright objects moving very fast +2010-09-28,30.2733333,-91.8991667,Breaux Bridge,LA,circle,10800,i saw around lighted object in the sky only seen at night. +2010-09-28,32.4608333,-84.9877778,Columbus,GA,light,5,A white light appeared in the morning sky. It was larger than the stars out at that time. It was first seen going to the left and the +2010-09-28,34.0194444,-118.4902778,Santa Monica,CA,oval,1800,object made by many rings +2010-09-28,37.2427778,-85.1894444,Knifley,KY,light,1800,I looked up and saw a pulsing, strobe-like light in the sky. ((NUFORC Note: Twinkling star?? PD)) +2010-09-28,41.2586111,-95.9375,Omaha,NE,sphere,34,Weird boomerang releases spheres, lights. ((NUFORC Note: We do not know if this is intended as a serious-minded report. PD)) +2010-09-28,40.9477778,-90.3711111,Galesburg,IL,oval,240,Three people saw two objects,one was a jet the other unknown oval gray object. The jet was following the oval object at great speed but +2010-09-28,44.9430556,-123.0338889,Salem,OR,light,720,Sept. 28th 2010 13-15 or more bright objects seen in NE Salem Oregon, at 2:27 PM PDT +2010-09-28,28.9886111,-80.9025,Edgewater,FL,light,900,Flashes of light hovering without sound making right angle extreme turns in sky +2010-09-28,33.5755556,-83.1825,Greensboro,GA,light,30,Small White light moving extremely fast across the sky...............took only 30 seconds to cross the entire night sky in our vision. +2010-09-28,32.8338889,-109.7069444,Safford,AZ,unknown,300,White solid light making a very loud thumping sound +2010-09-28,37.775,-122.4183333,San Francisco,CA,light,300,Abnormal Movement of Unknown Object +2010-09-28,34.7463889,-92.2894444,Little Rock,AR,circle,5,A ball of light moving very quickly. +2010-09-28,46.6022222,-120.5047222,Yakima,WA,chevron,5,Chevron shape of pale white/yellow lights flying overhead with no sound. +2010-09-28,41.3025,-73.3838889,Redding,CT,light,1800,I saw a bright light that slowly moved through the sky and seemed to have striations that looked like lightning bolts eminating from it +2011-09-28,41.1536111,-81.3580556,Kent,OH,light,420,Red green and blue lights hovering with strange flight pattern then lands +2011-09-28,41.0761111,-73.8591667,Tarrytown,NY,triangle,180,Ufo seen over Tappan Z Bridge Westchester County NY +2011-09-28,31.1502778,-81.3697222,St. Simons Island,GA,circle,3600,Sighting of two UFOs at the same time (bright objects darting in the sky late at night). +2011-09-28,44.6366667,-123.1047222,Albany,OR,oval,180,UFO witnessed by skeptical man and nephew in Northwest. +2011-09-28,40.6758333,-89.0077778,Kappa,IL,other,300,2 lighted boomerang shaped flying objects seen neat El Paso Illinois +2011-09-28,44.8008333,-122.7933333,Stayton,OR,circle,3600,Round Obj. with green, red, yellow, blue & white lights moving E to W for over an hour. ((NUFORC Note: Star, perhaps Sirius? PD)) +2011-09-28,45.6388889,-122.6602778,Vancouver,WA,sphere,180,Slow moving flaming fireball moving east to west SW Washington, 9/28/11 20:50 +2011-09-28,42.9230556,-98.3880556,Greenwood,SD,oval,900,Witnessed three ufo's usa, greenwood, sd +2011-09-28,44.3113889,-124.1036111,Yachats (South Of),OR,other,300,Low-flying, arrow-shaped craft with unblinking white-yellow lights and one red blinking light +2011-09-28,38.5736111,-97.6741667,Lindsborg,KS,other,420,2 witness enormous craft +2011-09-28,39.6333333,-105.3166667,Evergreen,CO,light,60,Two bright lights that changed formation in NNE sky. +2011-09-28,35.9608333,-78.2538889,Bunn,NC,circle,1,Orange ball of light in sky +2011-09-28,47.8627778,-121.8152778,Sultan,WA,circle,45,with regular 7x35mm binoculars and spotted it directly above us, way up in the sky traveling from West to East white ball type circle +2011-09-28,38.2919444,-122.4569444,Sonoma,CA,triangle,7,UFO spotting in Nothern California +2011-09-28,41.7758333,-72.5219444,Manchester,CT,flash,900,on the above date and time at 2245 pm driving home off I-84 manchester glowing pulsating light above rain clouds it was raining hard in +2012-09-28,32.5363889,-94.9425,Gladewater,TX,circle,4,At approximately 1:15 AM (CST), five individuals spotted a round ball approximately a football field's distance above the trees. +2012-09-28,28.2486111,-81.2813889,St. Cloud,FL,fireball,120,Two orange spheres. +2012-09-28,39.1141667,-94.6272222,Kansas City,KS,other,180,Pyramid Drone over KC, Kansas. Morphed to oblong oval before disappearing. +2012-09-28,44.9444444,-93.0930556,Saint Paul,MN,rectangle,17,Rectangle object with lights moving across sky +2012-09-28,32.5630556,-97.1413889,Mansfield,TX,rectangle,600,3 Unknown Aircrafts; 2 VERY large 1 small one. +2012-09-28,39.1619444,-84.4569444,Cincinnati,OH,sphere,300,Silent Orb with rotaing ligths seen over strip mall in Finneytown Ohio +2012-09-28,28.182222199999998,-81.8241667,Polk City,FL,unknown,4200,At least 4 objects in the Western sky of FL for several nights in a row, they stay for about 1 1/2 hours and slowly move further WEST. +2012-09-28,33.6694444,-117.8222222,Irvine,CA,circle,5,Hi speed orange ball, not meteor. +2012-09-28,33.7091667,-117.9527778,Fountain Valley,CA,other,2700,Silent, green object sits under color-changing friend +2012-09-28,34.0522222,-118.2427778,Los Angeles,CA,unknown,300,We noticed a craft flying with lights going either in formation around the craft or on one side straight back and forth - the light is +2012-09-28,34.1705556,-118.8366667,Thousand Oaks,CA,disk,600,A disk-like shape hovered around the sky, surrounded by lights. +2012-09-28,41.85,-87.65,Chicago,IL,circle,300,Four orange globes moving slowly and changing positions +2012-09-28,39.1619444,-84.4569444,Cincinnati,OH,light,240,Looking from the west to the south east in cincinnati three lights that seemed to have a tail behind them were moving in a line. A lig +2012-09-28,29.4747222,-81.1272222,Flagler Beach,FL,triangle,300,A very large vertical triangle shape of orange lights slowly moving by until they faded out. Flagler Beach, FL +2012-09-28,26.1219444,-80.1436111,Ft. Lauderdale,FL,chevron,45,A giant wing shaped object, little slower than the typical passenger jets that fly over regularly. No lights or sound at all. +2012-09-28,41.6827778,-88.3513889,Oswego,IL,fireball,600,Group of ten or more orange fireballs across Oswego, IL sky on 9/28/12 +2012-09-28,42.9633333,-85.6680556,Grand Rapids,MI,fireball,180,Four Orange Spheres Appered Like Fire in the Sky +2012-09-28,37.6391667,-120.9958333,Modesto,CA,fireball,900,Moderately large orange spheres dissapearing into the vast space. +2012-09-28,43.0494444,-88.0075,Wauwatosa,WI,circle,45,Orange fireballs in night sky +2012-09-28,40.0580556,-82.4013889,Newark,OH,light,15,Single orange light moving very fast W to E +2013-09-28,42.3583333,-71.0602778,Boston,MA,flash,5,Two colored flashes of light lasting about 5 seconds each until ending in a ball of light. +2013-09-28,33.8302778,-116.5444444,Palm Springs,CA,flash,20,I was waiting outside my car for someone and I saw a flash come from above me. I thought it was a low flying airplane but when I looked +2013-09-28,34.0522222,-118.2427778,Los Angeles,CA,light,600,Spotted two glowing white circular shapes flying over Los Angeles +2013-09-28,43.6136111,-116.2025,Boise,ID,other,10,I was outside smoking a cigarette, when a huge prop plane flew overhead and captured my attention. For some reason my gaze was drawn t +2013-09-28,34.2283333,-118.5358333,Northridge,CA,fireball,480,Fireball Flying Object (FFO); Look like fireballs but an actual craft (this is a new origin of new entities?) +2013-09-28,33.9791667,-118.0319444,Whittier,CA,light,900,Large light and small light over Southeast L.A. County +2013-09-28,33.34,-86.6302778,Chelsea,AL,fireball,8,Very bright white and blue light crossing over the Sky and then dissapeared +2013-09-28,45.12,-93.2875,Coon Rapids,MN,circle,7200,Ufo moving towards a big steady one distance away than both stay steady while a huge one appears and leaves them +2013-09-28,37.0944444,-88.0802778,Eddyville,KY,fireball,1200,My friend and I were driving south when we saw a fireball in the sky. It was a little higher than any kite I have seen and absolutely s +2013-09-28,39.7852778,-75.9791667,Oxford,PA,oval,900,Round orange objects in the sky. Were unlike anything I have ever witnessed and i am thrilled. +2013-09-28,33.5386111,-112.1852778,Glendale,AZ,unknown,300,UFO sighting over Glendale, Az on 9/28/2013 (150 Orange objects) +2013-09-28,36.5297222,-87.3594444,Clarksville,TN,teardrop,300,Orange and Red Fireball Type of lights +2013-09-28,34.9202778,-82.2963889,Taylors,SC,other,3,Bright, white, elongated object moving at super-fast speed. +2013-09-28,34.2072222,-84.1402778,Cumming,GA,fireball,2,Observed moving over KOHL'S in Cumming, Ga. +2013-09-28,33.8388889,-83.9008333,Loganville,GA,sphere,30,Unusual +2013-09-28,30.4211111,-87.2169444,Pensacola,FL,cylinder,300,3 orange/red upright cylinders moving south then turned west. +2013-09-28,33.9375,-117.2297222,Moreno Valley,CA,light,300,At least 8 orangish red star like spots in the night sky. maybe 1/2 mile away helicopter height in the sky. my husband & i saw them hov +2013-09-28,33.9608333,-83.3780556,Athens,GA,circle,300,Very bright light hovering above trees then shot off +2013-09-28,42.0986111,-75.9183333,Binghamton,NY,light,600,A light that sat in the sky then simply faded out. no plane. no planet, no satellite. +2013-09-28,41.4994444,-81.6955556,Cleveland,OH,circle,14400,Red and green orb. ((NUFORC Note: We suspect a sighting of Arcturus. PD)) +2013-09-28,41.6583333,-70.8166667,Mattapoisett,MA,light,180,Lights in sky over Mattapoisett +2013-09-28,44.7344444,-74.1691667,Owls Head,NY,circle,600,30 or so round red globs of light come uo from the northeast--5 at a time--over the tree line--then disappear. +2013-09-28,41.8713889,-72.3691667,Tolland,CT,unknown,120,Flame like things coming from slow moving object coming down from sky +2013-09-28,39.8427778,-82.8047222,Canal Winchester,OH,formation,900,Line of light fade out +2013-09-28,39.7219444,-85.8891667,New Palestine,IN,fireball,900,A dozen fireballs seen in sky near New Palestine, IN +2013-09-28,41.0813889,-81.5191667,Akron,OH,triangle,600,Wx:CAVU/dark/calm. 3rd one had halo of red around yellow/orange lite. It dropped a "flare" that burned out 1/3 way down. +2013-09-28,39.7852778,-75.9791667,Oxford,PA,oval,1800,Many red lights sited over Oxford Pa. all going in same direction +2013-09-28,35.3822222,-85.1088889,Sale Creek,TN,fireball,300,Six brilliant red and orange fireballs moving slowly and disappearing one at a time. +2013-09-28,34.6916667,-89.9772222,Coldwater,MS,sphere,120,Orange orbs in ms +2013-09-28,39.7683333,-86.1580556,Indianapolis,IN,formation,300,Many white objects in the sky. +2013-09-28,43.0944444,-79.0569444,Niagara Falls,NY,circle,60,Orange light circle seen by four people in Niagara Falls. +2013-09-28,33.4483333,-112.0733333,Phoenix,AZ,formation,540,Triangle formation of red lights high over central phx at 9 pm +2013-09-28,34.8697222,-111.7602778,Sedona,AZ,unknown,3600,flahsing red green and yellow, strobing white lights. +2013-09-28,38.8105556,-90.6997222,O'fallon,MO,changing,120,Group of orange colored lights. +2013-09-28,40.5727778,-81.0858333,West Carrollton,OH,circle,300,Bright light splits into two then four bright lights. +2013-09-28,37.3769444,-77.5061111,Chesterfield,VA,light,300,Four orange objects flying in a semi formation with four witness +2013-09-28,39.7852778,-75.9791667,Oxford,PA,fireball,1800,Red lights in complete straight line same distance away from each other 40-60 of them not far from tree top. +2013-09-28,30.2238889,-92.0197222,Lafayette,LA,triangle,120,Fire-orange glowing craft moved forward quickly, stopped, hovered, changed directions quickly, stopped, then disappeared into thin air. +2013-09-28,34.7997222,-87.6772222,Florence,AL,sphere,60,A red, yet transparent object with two orbiting lights moving very low to the ground without making a sound. +2013-09-28,35.7719444,-78.6388889,Raleigh,NC,formation,120,Lights seen above downtown Raleigh, +2013-09-28,44.5322222,-69.4430556,Albion,ME,diamond,60,Amber/orange object in sky at night, quietly moving over head till out of sight, no blinking. +2013-09-28,38.9988889,-84.6266667,Florence,KY,other,60,A star that "blinked out." +2013-09-28,26.1272222,-80.2333333,Plantation,FL,sphere,60,2 bright white spheres close together no sound moving quickly in unison. +2013-09-28,40.2875,-74.1727778,Colts Neck,NJ,fireball,600,Strange fireball formation in the sky. +2013-09-28,37.9886111,-84.4777778,Lexington,KY,sphere,480,Orange-colored bright lights or dots high in SE sky; 8-10 pairs moving slowly, independently in Z formation +2013-09-28,27.1958333,-82.4905556,Osprey,FL,chevron,30,Observed a cloud like semi transparent Vee shaped object +2013-09-28,40.4416667,-74.1302778,Keansburg,NJ,fireball,1800,Fireballs. +2013-09-28,48.76,-98.3677778,Langdon,ND,cylinder,3600,Object seen in west, northwest sky. Object appears to be Stationary but bobs up and down and side to side. Object is NOT moving with th +2013-09-28,42.7652778,-71.4680556,Nashua,NH,fireball,120,Bright red light moving slowly and then fading away. Three green lights in the same area. +2013-09-28,41.7758333,-72.5219444,Manchester,CT,formation,60,Formation of lights similar to the stars,on clear sky,advanced slowly in constellation type shape and disappeared one by one +2013-09-28,35.2030556,-85.9211111,Sewanee,TN,light,900,Three amber lights moving up and down at the tree line. +2013-09-28,39.0166667,-84.6008333,Erlanger,KY,oval,240,5 lights in formation +1962-09-29,32.0833333,-81.1,Savannah (Hunter Afb),GA,oval,180,Hunter AFB, Savannah Georgia 1962-1963: Luminous zig-zag disk +1975-09-29,47.2430556,-68.3141667,St. Agatha,ME,light,600,moved and stopped across the horizon at incredible rate of speed +1979-09-29,45.0655556,-93.2016667,New Brighton,MN,disk,600,A close encounter with some backup. +1981-09-29,44.8897222,-93.3497222,Edina,MN,disk,3600,I am an extraterrestrial human being. The spacecraft that I came from is referenced by numerous cultures around the earth. From the anc +1989-09-29,25.7738889,-80.1938889,Miami,FL,chevron,900,Dark boomerang shaped UFO hovers over MIA airport then flies upward past arriving airliner +1998-09-29,32.7355556,-97.1077778,Arlington,TX,formation,5,A series of 10 lights moving across the sky in a straight line +1998-09-29,32.7252778,-114.6236111,Yuma,AZ,fireball,1.5,Light green ball, the size of one quarter the moon, when the autumn moon is at twelve o'clock, traveling in a due north tragectory. [Ob +1998-09-29,48.7258333,-119.0125,Wauconda,WA,fireball,2,green fireball falling in NE direction. Smell of ozone shortly after. +1998-09-29,43.1547222,-77.6158333,Rochester,NY,fireball,4,Walking dog, looked up, saw large orange fireball with a long orange tail streak across sky directly above. +1999-09-29,33.5777778,-101.8547222,Lubbock,TX,other,2,Meteor looking object, very bright. Visible only 2 seconds after which it vanished. Suspected meteor however it's trajectory was North +1999-09-29,38.8813889,-94.8188889,Olathe,KS,sphere,60,Traveling W to pick up son from school. Saw extraordinarily bright orb slowly traveling N in straight line. Size was about diameter of +1999-09-29,36.1658333,-86.7844444,Nashville,TN,fireball,300,fiery object looking like craft in movie "it came from outer space" or comet-like with fiery tail observed traveling in nw direction fr +1999-09-29,35.4494444,-97.3963889,Midwest City,OK,rectangle,600,3 Objects witnessed: 1 object was traveling NE to SW - flashing red, white, green. Two objects came straight from the East, they came o +1999-09-29,38.9716667,-95.235,Lawrence,KS,triangle,180,Pulled out of Checker's parking lot, (grocery store)onto 23rd St. Driving East until I came onto 23rd & Ohio St. Present with my wife, +1999-09-29,38.9822222,-94.6705556,Overland Park,KS,fireball,4,Green fireball with trail headed N-NW in Eastern KS - arching downward - resembled size and speed of a single discharge from a roman ca +2000-09-29,38.2972222,-122.2844444,Napa,CA,sphere,300,Observed a bronze or amberish orb 1000 ft. up hovering over a residential area for appx 3 mins and then it moved away. +2000-09-29,40.6258333,-75.3708333,Bethlehem,PA,other,300,2 starlike objects crossed paths with each other going in opposite directions +2000-09-29,37.6922222,-97.3372222,Wichita,KS,light,300,I observed a very high-flying light that in no way resembled an aircraft, satellite, weather balloon or other eaxily explaine phenomena +2000-09-29,33.3061111,-111.8405556,Chandler,AZ,fireball,12,Small EmeraldGreen light moving at approximately 5-8 MPH in a straight line-Emitted two or three White flashes to rear +2001-09-29,34.2783333,-119.2922222,Ventura,CA,other,300,It was 10:30 am, and one of the most beautiful days of the year, I steped outside in my back yard and looked to the North West of my ho +2001-09-29,36.175,-115.1363889,Las Vegas,NV,other,1200,Black triangular shape object tracking stealy across the sky. +2001-09-29,29.7630556,-95.3630556,Houston (Spring/North Suburbs),TX,cigar,5,Sliver of light crashes in North Houston +2001-09-29,40.7141667,-74.0063889,New York City (Bronx),NY,cone,120,Blue extra bright light +2001-09-29,41.6088889,-73.6822222,Poughquag,NY,unknown,3600,red, green and white (or yellow) flashing lights on a silent, stationary object in the east/northeast sky +2001-09-29,42.6525,-73.7566667,Albany,NY,formation,10800,formations in the sky +2002-09-29,30.7997222,-81.69,Kingsland,GA,triangle,300,Triangular object over elementary school +2002-09-29,34.7825,-97.9566667,Rush Springs,OK,light,4,A very fast light headed from the ground towards the sky. +2002-09-29,42.0038889,-87.9702778,Elk Grove Village,IL,teardrop,120,Orange tear drop craft flying in the west. +2002-09-29,30.3958333,-88.8852778,Biloxi,MS,light,180,Couple observes Star-like objects over Keesler AFB +2002-09-29,39.2997222,-75.605,Smyrna,DE,triangle,1800,Triangle craft with 3 bright lights +2002-09-29,39.4652778,-95.7361111,Holton,KS,light,30,Bright slow moving star that dissapeared +2002-09-29,38.6927778,-75.075,Dewey Beach,DE,triangle,300,Very largeTriangle shaped silent craft moving off of the ocean over our heads with lights at each corner +2003-09-29,33.3452778,-110.4525,San Carlos,AZ,triangle,45,3 lights spoted over Apache Reservation +2003-09-29,39.5183333,-119.9877778,Verdi,NV,oval,5,Yellow bell shaped craft in the sky west of Reno in late September, 2003. +2003-09-29,48.1988889,-122.1238889,Arlington,WA,triangle,300,metalic object high alltitude +2003-09-29,43.3094444,-73.6444444,Glens Falls,NY,cigar,15,Bright cigar shaped witnessed by three people through binoculars. +2003-09-29,37.4419444,-122.1419444,Palo Alto,CA,light,3600,4 big bright lights hovering over Stanford university area...changing formation...top one arched away and disappeared. Seen from 280 fr +2003-09-29,44.9633333,-73.5877778,Mooers,NY,disk,900,Bright illuminating circular object, moving at rapid speed, following our light. +2003-09-29,36.79,-121.32,Tres Pinos,CA,flash,7,Bright sustained slower moving streak across the northwestern sky in Central California Monterey Bay Area +2003-09-29,37.2575,-87.1511111,Mercer County,KY,unknown,7200,i've watched the sky since the mid-60's, so I am fairly familiar with what is up there and what might be odd...as I pulled from my driv +2004-09-29,37.9747222,-87.5558333,Evansville,IN,circle,20,2 objects, one following the other, leaving the atmosphere. +2004-09-29,35.0525,-118.1730556,Mojave,CA,triangle,7200,white triangular shaped object appeared suddenly below an aircraft then hyperjumped into space +2004-09-29,43.9113889,-88.7297222,Pickett,WI,changing,900,bright, flashing strobe lights - lined up vertically -across the sky - then one group of four yellow colored lights in a horizontal row +2004-09-29,44.4563889,-89.5438889,Plover,WI,light,1800,Many erratically moving blinking star-like lights, occaisional bright orange "flares" +2004-09-29,35.5272222,-86.3336111,Wartrace,TN,triangle,25200,Four UFO'S spotted in Wartrace, TN for several hours! ((NUFORC Note: Possible twinkling stars, we suspect. PD)) +2004-09-29,44.7894444,-93.6019444,Chaska,MN,unknown,1800,Multicolored stationary point of light in ENE sky ((NUFORC Note: Twinkling star, we suspect. PD)) +2004-09-29,35.7697222,-91.6408333,Batesville,AR,light,240,A bright orange glow floated upward like a balloon but faster than a nearby plane then vanished. My sister and I watched it dissapear. +2005-09-29,39.5297222,-119.8127778,Reno,NV,chevron,10,Dimly lighted chevron object moving quickly over NW Reno. +2005-09-29,35.6447222,-109.095,St. Michaels,AZ,light,3000,Multiple Lights Appear in the Morning Sky, Persist For At Least 40 Minutes +2005-09-29,32.7447222,-116.9980556,Spring Valley,CA,egg,10,Egg-shaped metal object that remained stationary in sky, and disappeared as I watched. +2005-09-29,36.7477778,-119.7713889,Fresno,CA,formation,900,15-20 flying formation objects seen from Fresno, CA +2005-09-29,26.6155556,-80.0572222,Lake Worth,FL,unknown,2,we just saw a big flash in the sky on the eastern horizon , when we looked up the only thing there was a line of smoke like if a airpl +2005-09-29,25.7738889,-80.1938889,Miami,FL,fireball,5,HUGE OBJECT ON FIRE APPROACHING EARTH AT HIGH SPEED SEEN FROM MIAMI, FL +2005-09-29,40.7138889,-73.5594444,East Meadow,NY,other,5,Bright Shooting Object Observed Flying North at Rapid Speed and Appeared to Loop Straight Down +2005-09-29,28.2713889,-82.7197222,Port Richey,FL,unknown,3600,Bright Lights Above Port Richey. +2005-09-29,38.3363889,-75.0852778,Ocean City,MD,circle,1200,North of Ocean City Md on 9/29/05 white blinking light moved quickly north then returned and left again +2005-09-29,39.9166667,-75.3880556,Media,PA,flash,240,During Astronomy Lab course at Delaware County Community College. Students were looking at the constellation Cassiopeia when left of th +2005-09-29,35.925,-86.8688889,Franklin,TN,light,120,Fast moving noiseless object with three solid red lights shining at approximately -2.5 magitude. +2005-09-29,36.0625,-94.1572222,Fayetteville,AR,cigar,10,Ultra black, cigar shaped object streaks across night sky over Fayetteville, Arkansas +2006-09-29,29.7630556,-95.3630556,Houston,TX,oval,60,Ufo on 09/29/06 in Houston TX, Oval Shadow-like oblject. +2006-09-29,46.6022222,-120.5047222,Yakima,WA,other,300,ship over Hospital in Yakima, Wa. on September 29񫺖 +2006-09-29,47.6063889,-122.3308333,Seattle,WA,fireball,2,Fireball over Puget Sound +2006-09-29,39.0483333,-95.6777778,Topeka,KS,triangle,420,The object dived into the ground. ((NUFORC Note: We wonder whether this is a serious report. PD)) +2006-09-30,43.4222222,-95.1019444,Spirit Lake,IA,light,5,High altitude orange light moving from zenith west to 30 degrees at incredible speed and rapidly fading. +2007-09-29,21.9811111,-159.3711111,Lihue,HI,light,120,Green light moves in akward movements +2007-09-29,34.8722222,-89.6905556,Byhalia,MS,disk,15,On September 29th 2007, around 6:30P.M.,Myself and my Wife were traveling west on Highway 78 in Byhalia Mississippi. The Sun was bright +2007-09-29,35.3394444,-97.4863889,Moore,OK,light,240,looked like a moving star real bright then kinda faded out...wuz a bright non blinking star like light..hard to explane =/ +2007-09-29,41.85,-87.65,Chicago,IL,diamond,1800,More Chicago UFO's +2007-09-29,40.4863889,-86.1336111,Kokomo,IN,sphere,360,daytime sighting +2007-09-29,39.0838889,-76.7005556,Odenton,MD,light,60,A star looking light in the heavens that suddenly vanished. +2007-09-29,38.8755556,-84.6102778,Walton,KY,circle,2,We saw a dark round fast moving object engulfed by fire/plasma that vanished +2007-09-29,41.85,-87.65,Chicago,IL,circle,3,Falling Green Orb in Chicago +2008-09-29,48.0152778,-122.0625,Lake Stevens,WA,light,600,UFO knocks out Comcast??? +2008-09-29,33.8894444,-118.1588889,Paramount,CA,triangle,300,2 flying shapes over los angeles witnessed by father and son +2008-09-29,40.1672222,-105.1013889,Longmont,CO,triangle,45,UFO might have been invisible to the naked eye but my digital camera got it!!! +2008-09-29,37.0513889,-122.0722222,Felton,CA,formation,120,I've never seen anything like it before. +2008-09-29,32.3641667,-88.7036111,Meridian,MS,other,25,Two of us saw a flying triangular gray illuminated object above our house and yard. +2008-09-29,29.7630556,-95.3630556,Houston,TX,unknown,1200,Extremely Bright White object, Just like we saw at the beginning of the year, in Houston, when thousands saw it! +2008-09-29,35.6233333,-95.9602778,Okmulgee,OK,light,60,bright light seen in the north going from west to east +2008-09-29,34.2330556,-97.4875,Healdton,OK,light,25,While out on an evening walk I witnessed a light that suddenly flew off. +2008-09-29,38.6175,-90.3491667,Brentwood,MO,other,70,Two air crafts that initally appeared to be on fire that made no noise +2008-09-29,37.43,-122.2527778,Woodside,CA,triangle,120,Black triangular-shaped craft, moving very slowly 200 yards above our house; weooo, weooo, weooo sound; huge yellow beam in front. +2008-09-29,39.0083333,-75.5783333,Felton,DE,changing,300,Large, highly bright and changing lighting, shape changing, increbable speed UFO captured on phone video. Felton Delaware +2008-09-29,30.0269444,-95.0855556,Huffman,TX,light,180,Strange rectangular shape of lights hovering over the highway in which we were traveling near Huffman. +2008-09-29,34.9530556,-120.4347222,Santa Maria,CA,triangle,1800,3 objects flying over Santa Maria, Ca +2009-09-29,31.6033333,-94.6552778,Nacogdoches,TX,rectangle,90,I saw a pink-tinted craft of rectangular shape that resembled an angular jellyfish moving quickly past the moon shortly before dusk. +2009-09-29,36.0997222,-80.2444444,Winston-Salem,NC,flash,1200,a total of 7 flashing or glowing orbs apeared and then disapeared out of thin air, i was very much in shock for a few days. +2010-09-29,47.6063889,-122.3308333,Seattle,WA,unknown,300,peculiar moving bright lights over seattle sound headed sw +2010-09-29,34.0233333,-84.6155556,Kennesaw,GA,other,180,saw black bell-shaped object hovering over I-575 +2010-09-29,43.0605556,-88.1063889,Brookfield,WI,circle,180,Strange round flaming orange/gold craft flying in the sky +2010-09-29,38.6658333,-120.925,Shingle Springs,CA,cone,3,Silver shape travelling at great speed +2010-09-29,26.5625,-81.9497222,Cape Coral,FL,triangle,90,large triangle shaped almost transparent craft traveling low and slow with no lights or sound. +2010-09-29,47.8108333,-122.3761111,Edmonds,WA,formation,300,2 objects flying South at high speed over the Seattle area +2010-09-29,37.5630556,-122.3244444,San Mateo,CA,light,60,UFO sighting and Flashing lights over San Mateo California +2010-09-29,26.5625,-81.9497222,Cape Coral,FL,triangle,180,huge vehicle trying to be invisible and doing a good job.....we dont have this...do we..no sound +2010-09-29,33.2613889,-97.2377778,Krum,TX,light,21600,one giant bright light and numerous small white lights the size of stars in Krum, Texas. ((NUFORC Note: Stars?? PD)) +2010-09-29,42.5,-96.4,Sioux City,IA,other,8,9-12 white lights glide from north to south across morningside sky +2010-09-29,34.0552778,-117.7513889,Pomona,CA,formation,300,Spotted over the freeway - Flying Squid Like object +2011-09-29,43.4666667,-112.0333333,Idaho Falls,ID,triangle,180,triangel shape 3 light one one each coner greenish yellow made no noise at all moving very fast +2011-09-29,34.0027778,-84.1447222,Duluth,GA,cylinder,30,I went outside smoking cigaret and I saw yellow object flying in circles.It was not plane for sure.it make 2 circles and then fly away +2011-09-29,47.3075,-122.2272222,Auburn,WA,unknown,30,It was about 4:11 am.. I had just went out side and had coffee and a smoke..I was watching the star's as I do every morning.I looked ov +2011-09-29,33.7669444,-118.1883333,Long Beach,CA,changing,360,Big, extremely bright, bluish-white, silent light that changed shape in the sky over the ocean in Long Beach, CA. +2011-09-29,40.4938889,-80.0519444,Bellevue,PA,sphere,30,saw perfectly sphered shaped white object tracking very visibly across slowly accross the sky +2011-09-29,34.1808333,-118.3080556,Burbank,CA,formation,30,V shaped Craft's in V shaped Formation +2011-09-29,37.9725,-89.0533333,Christopher,IL,light,2,Spotted a green light in the sky moving south to northwest, no trail very fast over my home to the horizon in a down direction as if to +2011-09-29,33.8158333,-78.6802778,North Myrtle Beach,SC,sphere,120,UFO sighting Sept 29th 2011 8:53 I witnessed two yellow-orange color spheres about the size of 1/8 of the moon and 5 small star size ob +2011-09-29,35.1494444,-90.0488889,Memphis,TN,light,420,I know that what me and my daughters witness was not airplanes it was something that we had not seen before. +2011-09-29,33.6888889,-78.8869444,Myrtle Beach,SC,circle,10,4 orange/yellow circular shapes spotted in Myrtle Beach +2011-09-29,33.6888889,-78.8869444,Myrtle Beach,SC,triangle,600,we saw a large bright orange circular lights that formed a v shaped pattern clearly then blink rapidly and disappear. +2011-09-29,34.8697222,-111.7602778,Sedona,AZ,oval,3600,Oval shaped craft with multi-colored revolving lights in sky and stayed in same area for 2 hrs. ((NUFORC Note: Star?? Sirius?? PD)) +2011-09-29,33.4041667,-79.9219444,St. Stephen,SC,unknown,1200,On the evening of September 29, 2011, my Husband and I took our dog outside for a walk. As we always do we went over to the driveway a +2011-09-29,33.4041667,-79.9219444,St. Stephen,SC,unknown,1500,10 to 12 lights followed by jet fighters over Berkely County in South Carolina +2011-09-29,46.8083333,-100.7833333,Bismarck,ND,triangle,10,Sept 29, 2011 3 dot triangle form fast moving, group for 8-10 seconds, no sounds no strobes no idea. +2011-09-29,35.3272222,-96.925,Shawnee,OK,chevron,15,i was laying outside in the driveway looking at the stars and noticed what appeared to be the upper air pushing and was able to see a d +2012-09-29,39.7588889,-84.1916667,Dayton,OH,circle,90,Round red object seen by two security officers then two fighter jets flew over area +2012-09-29,40.2338889,-111.6577778,Provo,UT,rectangle,60,Huge rectangular shaped object in the night sky with 4 bright white lights, two on top and two on the bottom with flashing red lights. +2012-09-29,38.5816667,-121.4933333,Sacramento,CA,fireball,3,Bright blue fire balls in night sky over south sacramento +2012-09-29,27.3361111,-82.5308333,Sarasota,FL,other,1800,My friend woke me up and showed me a flickering multicolor object in the sky below Orion's belt. ((NUFORC Note: Sirius?? PD)) +2012-09-29,31.8055556,-81.4308333,Midway,GA,light,120,I saw the distorted head figure as I tried to move and reach out to my daughter. +2012-09-29,37.7775,-76.5138889,Lively,VA,other,2,Multiple lights on silent fast dark object +2012-09-29,42.3241667,-83.4002778,Westland,MI,triangle,420,Thirty-two noiseless orange lit triangles flying through the night sky. +2012-09-29,38.2325,-122.6355556,Petaluma,CA,other,300,UFO on Stony Point +2012-09-29,44.2727778,-121.1727778,Redmond,OR,sphere,1800,Small, white, lumenescent sphere observed drifting through chemtrail activity from High Desert, Central Oregon. +2012-09-29,34.8027778,-86.9716667,Athens,AL,fireball,1800,Fire lights over hwy 72 near Athens, Alabama. +2012-09-29,41.8238889,-87.8516667,Brookfield,IL,light,120,Star like object seen during daylight hours... Moving south. +2012-09-29,38.8466667,-91.9477778,Fulton,MO,formation,1.3,Formation of lights in the sky over Millersburg. +2012-09-29,42.5377778,-83.2330556,West Bloomfield,MI,sphere,600,Orange glowing sphere seen over West Bloomfield, Mi. +2012-09-29,47.6063889,-122.3308333,Seattle,WA,light,240,[seattle] Chain of 8 equally spaced, fast moving constant orange lights over Cascades, Western Washington. +2012-09-29,41.3525,-73.0088889,Woodbridge,CT,fireball,120,Flame-like object in sky +2012-09-29,42.2416667,-71.1666667,Dedham,MA,circle,600,Many orange lightsƼ formed a square, top 2 separated horizontally while bottom2 moved closer together +2012-09-29,43.0386111,-78.8644444,North Tonawanda,NY,fireball,120,Fireball in sky very decsending very low then rose in sky till it disapeared. +2012-09-29,42.9872222,-85.0711111,Ionia,MI,other,600,4 orange/yellow lights over michigan town +2012-09-29,42.8863889,-78.8786111,Buffalo,NY,unknown,300,6 orange reddish, flashing lights, slowly coming off the horizon joining in formation +2012-09-29,45.6388889,-122.6602778,Vancouver,WA,triangle,60,Red blue and white triangle +2012-09-29,41.3947222,-73.4544444,Danbury,CT,formation,600,Several amber lights in a configuration that moved around and turned on and off. +2012-09-29,42.4183333,-71.1066667,Medford,MA,other,420,White and blue lighted object rised and hovered over medford, eventually dropping slowly straight down +2012-09-29,42.1291667,-80.0852778,Erie,PA,fireball,600,5 orange/red, burning lights in zig-zag formation +2012-09-29,39.515,-84.3983333,Middletown,OH,circle,180,4 Lights over Middletown +2012-09-29,61.2180556,-149.9002778,Anchorage,AK,light,3600,Jesus Christ enlighten us. +2012-09-29,43.9180556,-123.0233333,Creswell,OR,sphere,1,Bright white sphere Creswell, OR. +2012-09-29,42.9633333,-85.6680556,Grand Rapids,MI,other,10,Bright star shape move and drop suddenly down from the sky, lost visibility because of trees. +2012-09-29,40.9252778,-74.2769444,Wayne,NJ,light,120,Dull orange light over Wayne NJ +2012-09-29,41.7791667,-83.5688889,Temperance,MI,oval,300,Orange Globes moving across sky over Temperance, MI 8/29/12 at 10:10pm +2012-09-29,39.9991667,-83.6216667,Catawba,OH,fireball,360,Six pulsating fireballs flying over Foxhaven Marina, Lake Erie and straight up out of sight. +2012-09-29,41.8455556,-87.7538889,Cicero,IL,disk,6,Two U.F.O's fly pass the moon at lightning fast speeds. ((NUFORC Note: Nighthawks and bats, caught in flight with video camera. PD)) +2013-09-29,46.8675,-122.2652778,Eatonville,WA,disk,1200,Seen 1 object/big light in the middle with smaller lights going around/view east of Eatonville wa.colour was changing.Seems to emit or +2013-09-29,43.0202778,-78.8805556,Tonawanda,NY,triangle,120,Object passed overhead low in atmosphere silently with red and white lights around perimiter and orange tail glow. 5th sighting of this +2013-09-29,35.4713889,-93.4663889,Clarksville,AR,circle,2,Solid orange circle/orb flew by with no trail, sound, or glow. +2013-09-29,36.1658333,-86.7844444,Nashville,TN,disk,60,Very bright, disk shaped UFO moved very rapidly above Briley Parkway in Nashville. +2013-09-29,40.2697222,-74.8002778,Ewing,NJ,other,900,Red/orange embers moving in different directions way about the clouds. +2013-09-29,42.7761111,-71.0777778,Haverhill,MA,other,21600,Frequent sightings in same area nightly! +2013-09-29,39.5522222,-84.2333333,Springboro,OH,circle,180,3 bright yellow lights moving independently, disappearing and reappearing in western sky of SW OHIO +2013-09-29,42.2172222,-73.865,Catskill,NY,light,300,Was laying in bed and bright light caught my eye. I went outside and saw the 3 lights following eachother and going in the same directi +2013-09-29,44.0791667,-72.0588889,Newbury,VT,circle,600,White Pulsating Light With Red +2013-09-29,42.5077778,-73.5069444,East Nassau,NY,flash,3600,Strange lights followed by fighter jets +2013-09-29,33.426944399999996,-117.6111111,San Clemente,CA,unknown,900,Bright, white/orange light hovers over ocean +2013-09-29,32.7152778,-117.1563889,San Diego,CA,fireball,300,Red light/fireball ascending over San Diego for 5 minutes. +2013-09-29,35.2980556,-81.0161111,Mt. Holly,NC,light,12,Light in sky over Mt. Holly, NC/Lake Norman. +2013-09-29,35.0844444,-106.6505556,Albuquerque,NM,light,300,Extremely fast and agile green light over Albuquerque. +2013-09-29,39.3161111,-105.8922222,Como,CO,changing,300,Flickering red, white, green and blue lights over Como Colorado +2013-09-29,35.5322222,-97.9547222,El Reno,OK,fireball,120,10 Orange orbs hovering in the sky then faded out. +2013-09-29,39.9872222,-76.0208333,Gap,PA,fireball,300,10 Orange Lights Above Gap/White Horse Pennsylvania +2013-09-29,34.9775,-85.3577778,Lookout Mountain,GA,other,2,UFO sighting on Nick-a-Jack Road on Lookout Mountain 9/29/13. +2013-09-29,64.8377778,-147.7163889,Fairbanks,AK,light,420,2 orange orbs fly south over chena ridge +1946-09-30,32.7552778,-114.3613889,Dome,AZ,flash,40,observed sudden,very bright flash of light from large ,flying object that appeared to be on fire. +1964-09-30,39.7458333,-75.5469444,Wilmington,DE,unknown,10,I thought it was a star....until it MOVED....three times! +1966-09-30,38.4191667,-82.4452778,Huntington,WV,circle,60,Two circular objects noted in So. WV in 1966, made 90 degree turns without changing speed. +1967-09-30,43.1833333,-90.1977778,Lone Rock,WI,oval,300,I had just had my car tuned-up that day and my mother and I were on our way to work at an ammunition plant, 2nd shift. When the car qu +1968-09-30,40.5186111,-74.4125,Edison,NJ,disk,1800,Sighting of a disc shaped object by three people. +1968-09-30,40.5186111,-74.4125,Edison,NJ,disk,1800,This object was seeen by three people of good reputation who were at a gas statiion in the Clara Barton section of Edison, New Jeresey. +1968-09-30,40.5186111,-74.4125,Edison,NJ,disk,1800,Three people saw a light go down in a nearby woods, and approaching it found it was a saucer shaped object. +1971-09-30,41.4277778,-78.5611111,St. Marys,PA,cigar,300,Cigar shaped object in the sky, hovering, not moving at all. +1973-09-30,40.805,-81.9352778,Wooster,OH,triangle,60,Driving on a back road in rural Wayne county, we had been driving along a stretch of woodland when we entered some cleared farmland. A +1974-09-30,32.2588889,-91.7475,Baskin,LA,oval,600,Hello sir I may be 30 years late but i have to tell someone that will believe me. I`ve tried to tell my story and all i got was my let +1979-09-30,34.1241667,-81.2375,Ballentine,SC,oval,1,Silver Craft almost hit by our boat, and disappears into the sky in a flash, on Lake Murray S.C. +1979-09-30,41.525,-88.0816667,Joliet,IL,egg,5,Cold Case UFO Joliet, IL. +1983-09-30,38.9177778,-83.9833333,Hamersville,OH,sphere,180,Glowing red sphere with three white lights on the bottom in the formation of a triangle... +1985-09-30,42.3802778,-72.5236111,Amherst,MA,rectangle,10,Drum like Object with Vertical Rectangle Light Panels. +1988-09-30,39.6619444,-75.5666667,New Castle,DE,triangle,30,Silent and hovering. +1989-09-30,30.1388889,-82.9519444,Mcalpin,FL,unknown,120,Silent orange rotating light over McAlpin, Florida field. +1992-09-30,38.6447222,-121.2711111,Fair Oaks,CA,disk,60,Fair Oaks, CA 1990's UFO Sighting +1995-09-30,40.9747222,-84.8683333,Monroeville,IN,triangle,120,UFO in Monroeville Indiana +1995-09-30,39.2902778,-76.6125,Baltimore,MD,disk,300,U.F.O SEEN IN HAMPDEN IN THE FALL OF1995 +1996-09-30,44.7630556,-85.6205556,Traverse City,MI,rectangle,5400,U.F.O. sighting and lost time. +1997-09-30,43.073055600000004,-89.4011111,Madison,WI,light,300,Strange light inside Lake Monona +1998-09-30,32.2216667,-110.9258333,Tucson,AZ,light,4,original call 9-30-98-Saw 5 lights in crooked 'J' form. ZOOM from north to south.No sound.Light constant-NOT meteoric in appearance.See +1999-09-30,39.8444444,-97.1713889,Morrowville,KS,sphere,20,Fast, noiseless, highly reflective object seen +1999-09-30,37.3394444,-121.8938889,San Jose,CA,circle,600,I SAW A WHITE OBJECT AT A VERY HIGH ALTITUDE NEXT TO A 747 FLYING SOUTH ,I THOUGHT THE AIRCRAFT IS GOING TO COLLIDE WITH THE OBJECT BUT +1999-09-30,33.3061111,-111.8405556,Chandler (But Seemed Far Away And High In),AZ,sphere,300,Sphere was aiming light like a flashlight on glowing smoke. +1999-09-30,48.4213889,-122.3327778,Mount Vernon,WA,disk,11,A disc shaped object glowing a dull red fading to magenta moving at extreeme velocity moving from north-northeast to the southwest over +1999-09-30,39.0838889,-77.1530556,Rockville,MD,triangle,10,I RETURNED TO THIS SUMMARY BECAUSE SOMETHING DIFFERENT JUST NOW HAPPENED AS I WROTE THE COMPLETE DESCRIPTION. BUT THE FIRST SIGHTING WA +1999-09-30,46.9755556,-123.8144444,Aberdeen,WA,triangle,300,UFO seen - Giant, seven lights, slow, low, very loud low pitch roar, traveled over town. +1999-09-30,40.7958333,-74.3152778,Livingston,NJ,other,60,just star gazing and 1 star was moving +1999-09-30,46.9813889,-123.6013889,Montesano,WA,triangle,120,Large, loud Trangular Object, lighted below +2000-09-30,34.2011111,-118.5972222,Canoga Park,CA,sphere,300,UFO Sighting At The Turn of the Century In the SFV , CA +2000-09-30,33.3941667,-110.7858333,Globe,AZ,circle,15,A bright white aura was around the bottom half of the sphere +2000-09-30,33.3941667,-110.7858333,Globe,AZ,circle,30,Object was brillant green ,marble shaped ,with an aura of white light and dropping at a slight angel. +2000-09-30,35.1494444,-90.0488889,Memphis,TN,light,120,UFO over Memphis +2000-09-30,33.4483333,-112.0733333,Phoenix,AZ,other,5,Phoenix Blue/white Astroid???? +2000-09-30,33.5091667,-111.8983333,Scottsdale,AZ,fireball,5,Large blue/white flamed object falling to Earth in the Eastern sky above Phoenix. +2000-09-30,34.0522222,-118.2427778,Los Angeles,CA,formation,120,5 red lights flying in formations, then disappearing, then an orange object, and a red one reappearing. +2000-09-30,34.1722222,-118.3780556,North Hollywood,CA,changing,300,A cluster of spinning red lights which formed into a diamond shape. +2000-09-30,36.175,-115.1363889,Las Vegas,NV,sphere,40,Two colored spheres (blue & red) seen traveling very quickly in an arc from the North to South East in a "playful" zigzag motion. +2000-09-30,34.0522222,-118.2427778,Los Angeles,CA,triangle,480,5-6 bright lights hovering low in a synchronized fashion forming a big triangle/arrow shape. +2000-09-30,29.4238889,-98.4933333,San Antonio,TX,changing,900,twinkling star to naked eye, blue and red flashing lights, change shape in binoculars +2001-09-30,33.4483333,-112.0733333,Phoenix,AZ,fireball,10,0105 hours, streaming flash of golden objects. +2001-09-30,33.4147222,-111.9086111,Tempe,AZ,other,60,a missle/warhead type object over the tempe sky +2001-09-30,40.7141667,-74.0063889,New York City,NY,light,4,new york WTC 09/30/01 +2001-09-30,33.8169444,-118.0363889,Cypress,CA,disk,1200,starlike metal disk sighted in daylite hovering in fixed position in sky above military airfield. +2001-09-30,36.3275,-119.6447222,Hanford,CA,disk,10,Daylight disk seen over Hanford, California +2001-09-30,45.5230556,-122.9886111,Hillsboro,OR,changing,1076,triangular object(s) coasted through Oregon and Washington. +2001-09-30,39.0997222,-94.5783333,Kansas City,MO,sphere,1200,4 spherical lights with one that tried to intercept another before ascending straight up at a rapid rate +2001-09-30,45.5236111,-122.675,Portland,OR,formation,5,Wedge formation of 5 round (or disc) shaped objects glowing pale green flying north incredibly fast on 9/30/01 @ 7:15PM over Portland +2001-09-30,39.7047222,-105.0808333,Lakewood,CO,sphere,300,Big red thing fallowing a van +2001-09-30,39.7047222,-105.0808333,Lakewood,CO,circle,300,circular craft, bright spokes of color, flickering, moved quickly with great changes in altitude, seemed to cause "flash lightning. +2001-09-30,39.7047222,-105.0808333,Lakewood,CO,sphere,1200,October 30th 2001. 8:00 pm I had gotten home from work and just went to get gas. I was on my way back from the gas station when I notic +2001-09-30,39.7047222,-105.0808333,Lakewood,CO,sphere,300,Excited about my daughters tenth birthday party at the Old Stone House Park in Lakewood Colorado, we had just opened presents when my d +2001-09-30,44.1197222,-70.1080556,Sabattus,ME,oval,3600,I saw an object, +2001-09-30,34.2077778,-117.1083333,Running Springs,CA,fireball,10,Large Fireball seen in the sky moving from west to east. +2002-09-30,41.5930556,-81.5269444,Euclid,OH,disk,900,Round, red, green, bright white object +2002-09-30,39.8438889,-84.1247222,Huber Heights,OH,light,600,While driving close home I saw the lights in the sky. Not moving shaped like a tapole. Arriving home I ran in for my camera made two pi +2002-09-30,41.2616667,-75.8972222,Kingston,PA,oval,30,u.f.o. darts away from path of approaching aircraft. +2002-09-30,42.7008333,-82.9591667,Macomb,MI,circle,60,Large white object observed...... +2003-09-30,35.5066667,-97.7622222,Yukon,OK,disk,40,HBCCUFO CANADIAN REPORT: Saucer hovering and slowly moving sideways a bit. +2003-09-30,38.7725,-112.0833333,Richfield,UT,other,2,GREEN falling star. +2003-09-30,38.3122222,-109.2475,La Sal,UT,sphere,1,a small object that appered and disappered very fast. +2003-09-30,44.4988889,-75.3430556,De Kalb,NY,fireball,10800,Multiple orange balls drifting slowly downward apparently over Fort Drum, NY +2003-09-30,37.775,-122.4183333,San Francisco,CA,unknown,30,Bright light with a long tailing streak moving Westward +2003-09-30,41.0358333,-71.955,Montauk,NY,triangle,5,2 fast moving, silent boomerang/triangle shaped lights. +2003-09-30,41.2833333,-70.1,Nantucket,MA,triangle,20,this boomerrang shaped object glided over the buildings, no noise at all, 400 to 600 ft. off the ground +2003-09-30,42.3683333,-88.8219444,Poplar Grove,IL,light,600,TWO brightly lit UFO's spotted near Poplar Grove, IL +2004-09-30,42.3583333,-71.0602778,Boston,MA,unknown,420,SILVER/METALLIC OBJECT OVER BOSTON MOVING SLOWLY OPPOSITE OF WIND DIRECTION +2004-09-30,36.2433333,-84.67,Sunbright,TN,oval,300,Took a photo with my digital cam. of a flowering plant and when I got home and downloaded pics. it was on two of them. +2004-09-30,41.6347222,-84.9994444,Angola,IN,disk,2,it was very bright silver, had a small round top on it +2004-09-30,47.4180556,-122.6297222,Burley,WA,diamond,120,I was driving my Peterbuilt Truck on Eastbound SR#-16 at the Burley, Wa, truck scales near milepost 20 it was dark cool clear night, an +2004-09-30,38.545,-121.7394444,Davis,CA,light,600,Strange Crescent Light Phenomena: Davis, CA +2004-09-30,47.6063889,-122.3308333,Seattle,WA,light,3,small star sized light moving at high rate of speed, NOT a meteor! Too fast for satellite +2004-09-30,40.7608333,-111.8902778,Salt Lake City,UT,circle,2,I was standing on a balcony and was facing north/east. I saw a circular shape to the upper right side of my vision. It was much large +2005-09-30,34.61,-112.315,Prescott Valley,AZ,fireball,360,At 2:10 AM i was in my back yard and saw an orange glow through my neighbors trees. It was going up (or approaching from the distance) +2005-09-30,41.5119444,-87.9655556,New Lenox,IL,triangle,300,triangle of stars breaking off in diffrent directions +2005-09-30,37.0833333,-88.6,Paducah,KY,triangle,480,Strange encounter with unknown craft. +2005-09-30,40.9805556,-111.8866667,Farmington,UT,rectangle,25,Farmington Utah bright white light with blue in the middle in the shape of fixed wing aircraft flying Southwest to Northeast. +2005-09-30,41.0705556,-85.0144444,New Haven,IN,cigar,360,Big as a jumbo jet, silver and red, no noise, no smoke, danced acrossed the sky. +2005-09-30,38.3566667,-121.9866667,Vacaville,CA,disk,600,saucer octagon shape lights on corners and a blue light on the bottom +2005-09-30,29.4238889,-98.4933333,San Antonio,TX,light,240,Three bright orbs of light over San Antonio suburb. +2005-09-30,40.9133333,-77.7786111,Bellefonte,PA,cigar,7200,Black tubular telephone size object flying over the Bellefonte PA (near a airport & Penn State) approximately 10:30am on 9/30/2005. +2005-09-30,36.8297222,-84.8491667,Monticello,KY,rectangle,1830,We saw a sm, rectang. object 2x with a hum & circ., wavy-patterned air around it make quick 90 deg turns w unbelievable speed +2005-09-30,40.7141667,-74.0063889,New York City (Manhattan),NY,other,600,Silver object above Manhattan, NYC +2005-09-30,26.2708333,-80.2708333,Coral Springs,FL,disk,60,SHIP BY THE SUN TOOK A PICTURE IN AMAZEMENT +2005-09-30,39.5297222,-119.8127778,Reno,NV,fireball,60,Fireball seen in sky over SE Reno. +2005-09-30,41.1416667,-87.875,Bourbonnais,IL,light,8,((NUFORC Note: Possible satellites? PD)) Bourbonnais, Il, 09-30-05 (2) bright moving lights,very high - lasting 6 - 8 seconds +2005-09-30,34.3908333,-110.5525,Overgaard,AZ,sphere,40,Brilliant white sphere instantly appearing in night skies over Heber-Overgaard, Arizona +2005-09-30,41.7880556,-87.8102778,Summit,IL,flash,120,I was sitting in the back seat of my mom's car at the Summit Amtrak station waiting for my sister's train to arrive. It was approximat +2005-09-30,34.2783333,-119.2922222,Ventura,CA,sphere,8,2 "cotton balls" of light on same course moving quickly East to West +2005-09-30,41.85,-87.65,Chicago,IL,light,180,several peculiar red lights flew about in a formation and appeared to climb +2005-09-30,38.2544444,-104.6086111,Pueblo,CO,triangle,20,TRIANGLE IN THE SKY +2005-09-30,38.7327778,-86.4736111,Mitchell,IN,light,20,((NUFORC Note: Star or planet? PD)Brilliant white light, very high, swaying left, right, up, down, slowly but continuously moving up +2005-09-30,40.7816667,-76.3461111,Ashland,PA,circle,2700,Circle of lighst ((NUFORC Note: Suspected sighting of a star or planet. PD)) +2005-09-30,42.2411111,-88.3161111,Crystal Lake,IL,cigar,240,Cigar shaped oject over Crystal Lake, IL with one red and several white lights hovering slowly then faded into space leaving a trail +2005-09-30,41.5119444,-87.9655556,New Lenox,IL,light,300,strange red lights verticle in a row in the sky. +2005-09-30,41.6027778,-87.7438889,Oak Forest,IL,light,1200,red dots seen in sky looked like a cell phone tower +2005-09-30,41.6027778,-87.7438889,Oak Forest,IL,sphere,600,two red lights were dangling in the air looking just like stars just disappeared after about 10 minutes +2005-09-30,41.6027778,-87.7438889,Oak Forest,IL,triangle,1800,Strange red lights as big as stars, blinking slowly. +2005-09-30,41.5852778,-87.8430556,Orland Hills,IL,light,900,My wife and I both watched 3 red lights to the east of our home for about 15:00 min.They didn't do much just slowly got closer to e +2005-09-30,41.5852778,-87.8430556,Orland Hills,IL,unknown,900,Two red light just hovering +2005-09-30,41.6302778,-87.8538889,Orland Park,IL,circle,7200,3 red objects in the sky +2005-09-30,41.6302778,-87.8538889,Orland Park,IL,light,2700,there were 3 red lights seen in the east sky, in the shape of a triangle. there was originally one light and then 2 more came from the +2005-09-30,41.6302778,-87.8538889,Orland Park,IL,light,2700,September 30th sights in Orland Park Illinois of the 3 red lights. +2005-09-30,41.6302778,-87.8538889,Orland Park,IL,light,420,Strang red lights appear in the sky. +2005-09-30,41.6302778,-87.8538889,Orland Park,IL,other,900,My friends and I saw three lights that resembled bright red stars rearranging themselves in the northern sky. +2005-09-30,41.5733333,-87.7844444,Tinley Park,IL,circle,900,Two bright red objects move across sky west to east with no set speed or direction. +2005-09-30,41.5733333,-87.7844444,Tinley Park,IL,light,1800,RED LIGHTS IN TINLEY PARK THIRD TIME IN 13 months +2005-09-30,41.5733333,-87.7844444,Tinley Park,IL,light,3600,2 objects that moved uniformally slowly, quickly, and stopping and staying together +2005-09-30,41.5733333,-87.7844444,Tinley Park,IL,light,600,Two round red lights moving from wws to een in the night sky. +2005-09-30,41.5733333,-87.7844444,Tinley Park,IL,light,900,2 red lights nest to star. hovered for fifteen minutes or so, moving in a vertical fashion(up&down). Had blinking red lights +2005-09-30,41.5733333,-87.7844444,Tinley Park,IL,triangle,1200,On Friday,September 1st at 11:00 PM, four of us who live in Tinley Park spotted 3 red lights that formed a triangle in the night sky. I +2005-09-30,41.5733333,-87.7844444,Tinley Park,IL,unknown,1800,UFO red lights in sky over tinley park, very descriptive explanation. +2005-09-30,41.6027778,-87.7438889,Oak Forest,IL,circle,1200,two bright lights moving slowly from west to east. bright red stars +2005-09-30,41.6027778,-87.7438889,Oak Forest,IL,light,1800,2 Bright Red lights above my house, then gain altitude before heading east very slowly +2005-09-30,41.6027778,-87.7438889,Oak Forest,IL,sphere,600,2 Red light ufo's passing across sky 9/ 30/05 from west to east and 3 red lights ufo's on 10/1/05 w/ ext. video +2005-09-30,41.6302778,-87.8538889,Orland Park,IL,formation,1500,Two red lights of undetermined origin over Orland Park, IL (USA) +2005-09-30,41.7613889,-88.4436111,Sugar Grove,IL,light,900,3 red lights - triangle shape N NE sky 45 degree angle off of horizon +2005-09-30,41.5733333,-87.7844444,Tinley Park,IL,unknown,900,2 red lights moving west to east +2005-09-30,41.5733333,-87.7844444,Tinley Park,IL,circle,600,Sept. 30th 2005 Red Lights Sighting 11:18pm Tinley Park, IL +2005-09-30,41.6680556,-87.7963889,Palos Heights,IL,light,300,UFO spotted over Chicago's Southwest suburbs +2005-09-30,41.6302778,-87.8538889,Orland Park,IL,light,600,Red lights over sky of Orland Park, IL +2005-09-30,41.5733333,-87.7844444,Tinley Park,IL,light,600,Two red lights in the sky +2005-09-30,41.6027778,-87.7438889,Oak Forest,IL,circle,300,red circle in sky flashing on and off +2005-09-30,41.6302778,-87.8538889,Orland Park,IL,triangle,900,Three red lights that formed a triangle. +2005-09-30,41.5733333,-87.7844444,Tinley Park,IL,changing,1200,red lights over tinley park, IL +2005-09-30,41.5733333,-87.7844444,Tinley Park,IL,circle,1200,The 3 red lights of south chicago +2005-09-30,32.2216667,-110.9258333,Tucson,AZ,light,30,Brilliant light over the Catalinas +2005-09-30,41.6302778,-87.8538889,Orland Park,IL,light,1200,Two pulsing bright red lights in eastern sky seen around 11:30 p.m. from my backyard in Orland Park, IL +2006-09-30,21.9811111,-159.3711111,Lihue,HI,light,60,Two "Dancing" lights rising from the east traveling upwards over Lihue, Kauai just after 1:00 am 30 Sept. +2006-09-30,36.8255556,-79.3983333,Chatham,VA,triangle,720,Silent fast moving triangular or Gemini space-capsuled body with intense and rapidly flashing bluish white lights. +2006-09-30,33.7669444,-118.1883333,Long Beach,CA,light,1200,2 oval shaped lights in the sky. Moved quickly, following each other in circles and various directions then vanished very rapidly when +2006-09-30,61.2180556,-149.9002778,Anchorage,AK,disk,2700,Disk shaped object in sky for 45 minutes +2006-09-30,61.2180556,-149.9002778,Anchorage,AK,disk,1800,Large shiny white disk hovering West and East in afternoon sky. +2006-09-30,35.0844444,-106.6505556,Albuquerque,NM,unknown,2,3 UFOs seen in one weekend +2006-09-30,39.5030556,-82.0847222,Glouster,OH,sphere,600,Very huge round black object rose out of water over our heads. +2006-09-30,41.525,-88.0816667,Joliet,IL,diamond,600,Dimond shape craft with red lights hovering over Joliet, Il.. +2006-09-30,32.3122222,-106.7777778,Las Cruces,NM,triangle,3600,09/30/06 Las Cruces NM Triangle spoted under the Pleiades for 30 min +2006-09-30,40.5,-111.95,West Jordan,UT,teardrop,20,Dark, teardrop shape without light, moving faster than normal planes, made no noise +2007-09-30,34.7697222,-84.9702778,Dalton,GA,flash,20,strobe lights in the sky +2007-09-30,41.1838889,-96.0308333,La Vista,NE,triangle,120,Triangular Ufo in Bellevue? +2007-09-30,32.4608333,-84.9877778,Columbus,GA,light,900,Light in the east burning very bright. it was flashing red, blue, white, and orange. ((NUFORC Note: Possible twinkling star. PD)) +2007-09-30,37.9358333,-122.3466667,Richmond,CA,circle,1200,Big white object circular and about 15 small round star like orbs around this massive white object +2007-09-30,33.6188889,-117.9280556,Newport Beach,CA,sphere,180,Large red object flying with six small sphreres +2007-09-30,34.4872222,-78.6563889,Clarkton,NC,other,300,This was a reddish vertical streamer that drifted to the south and was in the western sky. +2007-09-30,41.3113889,-105.5905556,Laramie,WY,other,1500,large craft white streak in sky at18:30 about 20miles South of Laramie with rotating lights underneath +2007-09-30,42.3702778,-87.9019444,Gurnee,IL,sphere,300,Large orange orb moving south to north across the eastern sky just prior to sunset. +2007-09-30,35.0011111,-92.6297222,Bigelow,AR,light,15,Glowing Lights Near Ouachita National Forrest +2007-09-30,39.8277778,-77.9036111,Mercersburg,PA,unknown,240,My friend and I have never seen anything like that . but i feel blesed that we did (unbeliveable) but true!!! +2007-09-30,33.4147222,-111.9086111,Tempe,AZ,other,120,saw a small blinking cloudlike object fly directly overhead from my backyard at night. +2007-09-30,40.3977778,-105.0744444,Loveland,CO,formation,10,3 circular object formation or triangle over Loveland, CO +2007-09-30,32.5380556,-81.9325,Portal,GA,triangle,90,I want to talk to the East Dublin couple to compare notes +2007-09-30,32.5380556,-81.9325,Portal,GA,triangle,90,Really big triangle with 3 large lights following behind a dark delta wing craft with red lights across rear +2008-09-30,35.5938889,-105.2233333,Las Vegas,NM,diamond,120,4 Lights moving in unison then diappeared after a sudden bright flash of light over Mora county, NM +2008-09-30,30.2669444,-97.7427778,Austin,TX,other,5,Floating ghostly kite like ufo +2008-09-30,33.9411111,-84.2136111,Norcross,GA,other,600,((HOAX??)) Huge black blimpe object hovering/flying over Norcross Georgia!! +2008-09-30,29.7630556,-95.3630556,Houston,TX,other,240,Witnessed white floating object hovering and spinning slowly in the sky in Houston, Texas. +2008-09-30,35.0525,-78.8786111,Fayetteville,NC,light,120,Possible UFO chased by fighter jet over or near Fort Bragg/Pope AFB NC. +2009-09-30,34.3616667,-110.2947222,Clay Springs,AZ,disk,60,9/30/09 7:30 Clay Springs Az. 1 minutes disk shape over the ranch house looking west. 4/20/10 +2009-09-30,29.7630556,-95.3630556,Houston,TX,circle,1200,a flying object making circles around the moon for 20 minutes, Houston +2009-09-30,38.6272222,-90.1977778,St. Louis,MO,disk,20,It was about 7:20 to 7:30 pm in St. Louis MO, I was outside, getting some fresh air, when all of a sudden, something I believed to be a +2009-09-30,42.19,-87.9083333,Lincolnshire,IL,triangle,7200,Fleet of unbeleivably low flying airplanes searching for UFO's with spotlights +2009-09-30,42.1538889,-88.1361111,Barrington,IL,light,5,two fast moving dim lights over chicago subburb +2010-09-30,40.2794444,-86.5108333,Frankfort,IN,flash,35,Large blue flashes of light in the sky. +2010-09-30,32.7252778,-97.3205556,Fort Worth,TX,triangle,30,At around midnight I saw a UFO flying across the sky. Two triangles Flying one in front of the other with a blinking light on the end +2010-09-30,47.6733333,-117.2383333,Spokane Valley,WA,triangle,600,In a look out called the saltese hills, star gazing because there had already been quite a few weird things in the sky. +2010-09-30,42.6388889,-83.2911111,Pontiac,MI,sphere,480,..it seemed the show was over-then 20 seconds later another orb slowly fades in. +2010-09-30,34.0013889,-81.7722222,Saluda,SC,changing,1800,UFO SEEN IN SALUDA SOUTH CAROLINA HOME +2010-09-30,33.0197222,-96.6986111,Plano,TX,disk,300,Collin County Sighting Plano, TX & Allen, TX +2010-09-30,42.0083333,-91.6438889,Cedar Rapids,IA,triangle,0.5,Flying object in the background of our video in video class flies 100 yards in less than 1/2 a second +2010-09-30,42.6780556,-88.2761111,Burlington,WI,diamond,3600,Flashing Lights Moving and Stationary In the South to Northwest Sky +2010-09-30,40.8716667,-111.8913889,Woods Cross,UT,light,1200,Orange Cigar Shape bright light after sunset west of Woods Cross Utah Light +2010-09-30,42.6183333,-82.5311111,Algonac,MI,sphere,600,"V" formation of orange spheres +2010-09-30,34.4263889,-117.3,Hesperia,CA,light,480,Strange lights not visible to the naked eye but not to the camara. +2010-09-30,41.85,-87.65,Chicago,IL,light,600,10-12 lights floating in a Y formation then separating in groups of 3, all while silent, no noise was made. +2010-09-30,37.9452778,-104.8347222,Colorado City,CO,triangle,3,3 of us saw a bright white light triangle inside of a lighted rectangle directly overhead then it travelled directly south and disappea +2010-09-30,33.3047222,-83.6833333,Monticello,GA,light,30,singular light running across the sky too fast for satelight and too slow for shooting star with no blinking lights. +2010-09-30,47.8325,-96.1330556,Terrebonne (Rural Area),MN,light,3600,Bright white round light,doesn't move, gets very bright then almost fades out then repeats this for a long time.((NUFORC Note: Star?)) +2010-09-30,33.8675,-117.9972222,Buena Park,CA,unknown,1800,i really dnt want to waste my time on perfecting this letter but me and my sister and two other friends saw a ufo, no lie it was close +2010-09-30,37.0833333,-88.6,Paducah,KY,triangle,180,Triangle shaped object with center white light and flashing red lights. +2011-09-30,25.7902778,-80.1302778,Miami Beach,FL,chevron,1200,Boomerang shaped silent fast moving object in miami beach. +2011-09-30,40.8041667,-74.0125,North Bergen,NJ,circle,5,U.F.O. observation. +2011-09-30,42.9911111,-76.8025,Tyre,NY,cigar,45,Cigar shaped object seen from car. +2011-09-30,36.4194444,-82.3041667,Piney Flats,TN,sphere,30,Viewed three silver colored spherical objects above high voltage TVA power lines. +2011-09-30,35.9605556,-83.9208333,Knoxville,TN,oval,300,West Knoxville Bright Blue Object +2011-09-30,42.9763889,-88.1083333,New Berlin,WI,triangle,300,Red & white lights in shape of a triange in the sky +2011-09-30,41.5622222,-72.6511111,Middletown,CT,fireball,900,Spinning disc fireballs +2011-09-30,39.1533333,-74.6933333,Sea Isle City,NJ,unknown,300,Single Flame like entity traveling north easterly viewd by one individual. +2011-09-30,41.1366667,-95.8905556,Bellevue,NE,sphere,3600,Very unusual craft seen over Bellevue NE, headed for Offutt. +2011-09-30,31.1238889,-97.9027778,Copperas Cove,TX,other,10,2 to 3 dozen white lights in an unorganized wing or boomerang formation moving from north to south with no sound +2011-09-30,41.2586111,-95.9375,Omaha,NE,chevron,60,Boomerang shape, color hard to describe like hard mist +2011-09-30,35.2505556,-91.7361111,Searcy,AR,diamond,120,Orange-reddish object not moving at fast rate of speed began to move at ENORMOUS one out of me and and I friends field of vision. +2011-09-30,31.1238889,-97.9027778,Copperas Cove,TX,unknown,10,second sighting sfter minutes of filing a report +2011-09-30,29.8986111,-93.9286111,Port Arthur,TX,light,15,Group of fast moving lights inthe night sky. +2011-09-30,45.6388889,-122.6602778,Vancouver,WA,fireball,300,Red Fireball like objects hovering over a field in Vancouver, WA +2011-09-30,45.6388889,-122.6602778,Vancouver,WA,light,240,Large reddish-pink lights slowly moving south. +2011-09-30,45.6388889,-122.6602778,Vancouver,WA,fireball,30,3 red balls in triangler form in sky in vancouver,WA above fourth plain blvd at 23:15. +2012-09-30,26.4611111,-80.0730556,Delray Beach,FL,circle,300,Circular round lights the color of a flame moving in the sky above Delray Beach, FL mid-night 12/29/12 +2012-09-30,39.7683333,-86.1580556,Indianapolis,IN,fireball,300,I went outside to smoke and seen multiple fireballs slow moving over indianapolis towards the east all in close proximity of each other +2012-09-30,44.7894444,-93.6019444,Chaska,MN,fireball,180,VIDEO OF ORANGE ORB!!!! +2012-09-30,47.6105556,-122.1994444,Bellevue,WA,light,3600,Colorful electrical looking sphere seen looking east towards Issaquah. +2012-09-30,43.1977778,-70.8741667,Dover,NH,cigar,38,Near pease Air Force base in Dover nh sand pits +2012-09-30,38.8791667,-99.3263889,Hays,KS,circle,360,Bright metallic objects moving in different directions and flashing and dissapeared when plane went by. +2012-09-30,36.3047222,-86.62,Hendersonville,TN,circle,1200,BRIGHT ORANGE GLOWING ROUND OBJECT PULSATING IN SKY MOVING ALONG THEN STOOD STATIONARY +2012-09-30,36.7958333,-89.9577778,Dexter,MO,triangle,180,Triangular aircraft +2012-09-30,34.0522222,-118.2427778,Los Angeles,CA,oval,900,White oval object traveling overhead northeast toward Pasadena CA in daylight. +2012-09-30,20.9541667,-156.6897222,Honokowai,HI,cone,18000,During our trip to Maui from Sept.25 to Oct.7 we witness up to 6 cone shaped objects to the west of Maui in differant areas. +2012-09-30,47.6588889,-117.425,Spokane,WA,other,420,What appeared to by a very large "invisible" craft making very loud, low frequency rumble. +2012-09-30,45.5236111,-122.675,Portland,OR,fireball,180,Orange firelike floating slowly along treeline. +2012-09-30,34.0852778,-117.96,Baldwin Park,CA,triangle,300,Driving home at night on the 10 freeway eastbound passing Baldwin Park Ca saw three red lights in the sky forming a triangle +2012-09-30,42.3333333,-88.2666667,Mchenry,IL,fireball,600,Multiple bright fireball orbs hovering over mchenry,il meijers.vanishing as jet approached them +2012-09-30,41.926944399999996,-73.9977778,Kingston,NY,flash,5,Bright white flash in the sky that fell seemingly close. almost like a spark with no noise. +2013-09-30,44.505,-73.4805556,Keeseville,NY,changing,3600,Multiple flashing lights in sky. +2013-09-30,43.2341667,-86.2483333,Muskegon,MI,teardrop,600,Bright white light moving vertical then horizontal. +2013-09-30,35.2016667,-88.2391667,Austin,TN,cylinder,240,Large Rotating Metallic Cylinder Slowly Traverses Sky. +2013-09-30,42.4369444,-71.5061111,Stow,MA,oval,1200,Big cluster of bright lights stationary way above tree line in Stow MA. +2013-09-30,43.9680556,-88.9433333,Berlin,WI,light,1200,Light over Berlin WI area. +2013-09-30,39.6236111,-77.4111111,Thurmont,MD,unknown,240,Huge Craft with several lights moves over Northern Frederick County. +2013-09-30,44.8041667,-93.1666667,Eagan,MN,triangle,2700,((HOAX??)) Shimmering triangle, high altitude, intelligently controlled over Eagan, Minnesota. ((NUFORC Note: Venus?? PD)) +2013-09-30,41.6894444,-70.1569444,South Dennis,MA,triangle,120,Heard humming, saw three white steady lights in triangle form, helicopter was flying near it... LOW altitude +2013-09-30,40.6966667,-74.9411111,Glen Gardner,NJ,unknown,1200,Stat. obj. high in the sky that had rapidly flashing lights - colors were distinct. ((NUFORC Note: We suspect Arcturus. PD)) +1967-09-03,37.9963889,-105.6991667,Crestone (Near Alamosa),CO,fireball,30,Saw 3 house size balls of fire come straight down, turn to fly horizontal straight at us for 40 miles in 3-4 seconds then pass out of s +1972-09-03,18.2030556,-67.14,Mayaguez (Puerto Rico),PR,oval,5,It came out of nowhere as I stood in the open lot, I just stood there in awe, unable to move, a 12 years old witnessing a once in a li +1974-09-03,35.8455556,-86.3902778,Murfreesboro,TN,disk,300,The dish shaped object with 3 portholes visible followed us for approximately 5 miles and then vanished. +1980-09-03,39.0997222,-94.5783333,Kansas City,MO,sphere,60,Summer of 1980...First and thankfully last encounter. Kansas City, Missouri +1988-09-03,42.5,-71.5833333,Harvard,MA,sphere,180,Bright silver craft witnessed by many people. Sorry no police that I know of,but one correction officer.That would by me. +1992-09-03,34.2255556,-77.945,Wilmington,NC,disk,540,multiple saucers, there and gone. +1993-09-03,40.8091667,-123.4730556,Burnt Ranch,CA,disk,1800,Huge disk with hour glass directly above (center) silver type ball, moving eractly, but in some sort of sync with each pattern differen +1998-09-03,41.7561111,-124.2005556,Crescent City (100 Miles South Of),CA,formation,240,5 points of light, quite distant, looked to be playing,having fun. +1998-09-03,44.0216667,-92.4697222,Rochester,MN,cigar,30,Long silvery object spotted in sky. +1998-09-03,40.6575,-73.5836111,Freeport (Long Island),NY,sphere,5,We were driving West on Southern State pkwy. a Blue-Green Sphere Shaped Object zoomed East to West across the sky +1999-09-03,37.7780556,-81.1883333,Beckley,WV,other,5400,Over a period of 1.5 hours last night, we watched a total of 8 separate star-type lights in the northeast and southwest areas of our sk +1999-09-03,32.0833333,-81.1,Savannah,GA,fireball,5,Blue-green fireball +1999-09-03,40.8858333,-74.0438889,Hackensack,NJ,sphere,10,I was loking up at saw what I thought was a planet in the clear sky.A big bright planet.Then the object got larger and larger and then +1999-09-03,37.3394444,-121.8938889,San Jose,CA,other,2,I saw a strangely burning object about 10x as large as a flair. It wobbled, and an angular shape could be seen within it. #2 sighting +1999-09-03,44.9430556,-123.0338889,Salem,OR,chevron,2100,At 2230 I saw a bright flash of light in the NW sky..this was followed by a sighting of a pinkish colored boomerang shaped craft.it loo +1999-09-03,48.7052778,-119.4383333,Tonasket (20 Miles East Of),WA,light,1800,revolving multi-colored lights +1999-09-03,39.1652778,-86.5263889,Bloomington,IN,cylinder,10,Bright white cylinder moving swiftly toward the horizon. 4 witneses saw the same thing from 3 locations at the same time. +2000-09-03,42.1291667,-80.0852778,Erie,PA,fireball,30,A fireball was visible in the northeastern sky early Sunday morning in Erie, PA. +2000-09-03,34.09,-117.8894444,West Covina,CA,changing,60,Two disc-like objects, first appearing as stars, do rapid zig-zag-like manuevers in the western sky above Los Angeles, CA +2001-09-03,41.9852778,-72.4466667,Somers,CT,rectangle,10,Object with 4 light beams and high pitch grinding sound in the Connecticut/Massachusets border line on 9/3/2001, 5:16 am. +2001-09-03,45.1244444,-92.6733333,Somerset,WI,unknown,1200,Object seen while veiwing airial (chemtrail) jet spraying. +2001-09-03,40.5611111,-81.7944444,Berlin,OH,changing,300,Star-like object that split in 2 then formed cigar shape!! +2001-09-03,38.4405556,-122.7133333,Santa Rosa,CA,cross,300,Orange ohject moves slowly, drops smaller objects then blinks out. +2001-09-03,40.6386111,-73.6405556,Oceanside,NY,fireball,5400,There was a weird object, in the sky for around an hour and a half. The object seemed to be stationary but towards the last 20 minutes +2002-09-03,42.4527778,-75.0641667,Oneonta,NY,diamond,180,Diamond-shaped object with 4 blinking lights very high +2002-09-03,29.8830556,-97.9411111,San Marcos,TX,light,3600,DANCING BRIGHT LIGHT SEEN TWICE WITHIN 2 WEEKS +2002-09-03,40.2797222,-75.2997222,Hatfield,PA,circle,900,3 circular shapes moving in fast/slow intermittant speeds. Moving odd distances across sky then to another. One darted off before the o +2002-09-03,30.2669444,-97.7427778,Austin,TX,oval,15,Bright Star-Like object obsevered in South-East Sky +2002-09-03,33.7797222,-116.4644444,Cathedral City,CA,changing,5400,Two white translucent "jellyfish" objects repeatedly change shape; 5-10 thousand feet high in blue afternoon sky 60-90 Minutes. +2002-09-03,38.5580556,-91.0119444,Washington,MO,teardrop,120,I SEE THINGS IN THE SKY ALL THE TIME +2002-09-03,36.175,-115.1363889,Las Vegas,NV,fireball,300,Red Glow Streaks Across Southwest -- Crashes to Earth +2002-09-03,33.3941667,-104.5225,Roswell,NM,unknown,120,Humming, oscillating sounds outside of Roswell, NM +2002-09-03,48.8466667,-122.5897222,Ferndale,WA,other,10,I was watching the Northern Lights last night with my boyfriend. He was looking at constellations through binoculars when I saw it. A +2003-09-03,32.6080556,-80.085,Kiawah Island,SC,triangle,300,I am an Internal Mecicine physician and my girlfriend ownes a linen business. For some reason we awoke around 2:30 am we awoke and sat +2003-09-03,32.7252778,-97.3205556,Fort Worth,TX,disk,2,Saucer Over Ft Worth Tx. In Broad Daylight . Took Picture By Accident. +2003-09-03,36.7069444,-97.0852778,Ponca City,OK,disk,20,i seen a bright silver disc, with black dot in middle, going straight,then side to side. +2003-09-03,32.7152778,-117.1563889,San Diego,CA,light,30,Large white shinning round blob in the Northern sky, flying very slowly upward, then quickly speeds off. +2003-09-03,47.3225,-122.3113889,Federal Way,WA,triangle,600,Speeding Triangle Shaped UFO +2003-09-03,47.6063889,-122.3308333,Seattle,WA,formation,5,Telephoned Report: A man calls to report that while he was out walking his dogs in the vicinity of Northgate in Seattle, his periphera +2003-09-03,32.7252778,-97.3205556,Fort Worth,TX,triangle,30,An object made up of 5 white lights in a V shape moved across the sky at a steady pace. +2003-09-03,41.4286111,-90.4608333,Coal Valley,IL,formation,30,Three objects spread apart near the constellation of Draco and travel in tandem until they ultimately grow faint and disappear. +2003-09-03,32.7355556,-97.1077778,Arlington,TX,light,105,Bright Red lights hovering and then falling to the ground one by one +2003-09-03,32.6063889,-116.4680556,Campo,CA,light,10,object moved fast and in a straight line +2003-09-03,41.2586111,-95.9375,Omaha,NE,unknown,1200,Two unidentifiable crafts "playing" over Omaha, that changed color and emitted no sound. +2003-09-03,39.8680556,-104.9713889,Thornton,CO,light,2700,Stationary lights in sky for extended period of time that appeared to be an aircraft of some form +2004-09-03,40.7694444,-74.0208333,Weehawken,NJ,light,2700,Two flashing lights following aircraft over NYC on the last night of the RNC 04. +2004-09-03,41.8186111,-72.48,Vernon,CT,triangle,20,3 bright lights in the shape of a Triangle +2004-09-03,44.8613889,-92.6236111,River Falls,WI,teardrop,60,I read the report on the bright object high up in the sky over the metro area. I posted one on 8/24/04 stating that I saw a very bright +2004-09-03,40.6513889,-76.4980556,Hegins,PA,fireball,900,Fireball +2004-09-03,47.2530556,-122.4430556,Tacoma,WA,light,900,the light was at a very high altittude, but had very distinctive colors, It was moving at a very high speed due to the distance covered +2004-09-03,40.6513889,-76.4980556,Hegins,PA,fireball,900,Fireball +2004-09-03,30.19,-98.0863889,Dripping Springs,TX,circle,4,I believe this to be natural so I could have the wrong web site. ((NUFORC Note: Flare from Iridium satellite. PD)) +2004-09-03,37.6688889,-122.0797222,Hayward,CA,light,300,strange light in the sky. had no directional lights was travling south eastery . witnessed for about 5 minutes then it vanished. +2004-09-03,26.9616667,-82.3527778,Englewood,FL,other,20,An object passed quickly through the sky with 6 circles of luminescence with absolutely no sound as it passed overhead. +2004-09-03,40.7355556,-74.1727778,Newark,NJ,oval,300,Oval-shaped glow sitting over Newark skyline +2004-09-03,28.0777778,-82.7638889,Palm Harbor,FL,triangle,5,A large black trianglular object with about 9 circular white lights bordering the underside flew overhead in palm harbor. +2005-09-03,41.9102778,-88.0716667,Glendale Heights,IL,triangle,20,I meet with a local astronomy club,& have a telescope to stargaze, & have never before seen anything so clear with unaided eye! +2005-09-03,43.22,-85.7511111,Kent City,MI,oval,240,White, pulsating oval shaped unidentified craft. +2005-09-03,41.2708333,-73.7780556,Yorktown Heights,NY,sphere,2100,White Spheres Sail Across Early Evening Skies. +2005-09-03,41.0441667,-83.65,Findlay,OH,triangle,9,Two triangle parallel objects in the eastern sky in Northwestern Ohio +2005-09-03,36.2125,-79.7138889,Browns Summit,NC,changing,900,diamond*triangle ( couldnt tell) amber colored with greenish purple glow with lighting bolts coming off it. +2005-09-03,35.91,-79.0755556,Carrboro,NC,unknown,1200,I looked into the sky and saw an unusally bright light and thought it was a helicopter going to the nearby hospital. The lights flicke +2005-09-03,47.6063889,-122.3308333,Seattle,WA,light,300,5 dark blue lights traveling east then south +2005-09-03,47.6063889,-122.3308333,Seattle,WA,light,300,Bright blue lights in the night sky above downtown Seattle. +2005-09-03,45.4994444,-89.1666667,Pelican Lake,WI,disk,10800,Pelican Lake UFO sightings, Amazing and very large. They emitted a beam of light and orbited,about 3/4 size of the moon was their size. +2005-09-03,45.4994444,-89.1666667,Pelican Lake,WI,oval,10800,Three-Hour UFO Sighting Accompanied By: A Beam Of Light - A Nosey Helicopter - And A Creature, +2005-09-03,35.7825,-80.8875,Statesville,NC,unknown,1800,Tri-colored light in eastern sky attracts attention of star gazer near midnight in Statesville, North Carolina. +2006-09-03,35.8263889,-82.5494444,Mars Hill,NC,other,60,Bright objects in sky. ((NUFORC Note: Probably a moth, captured by the camera. PD)) +2006-09-03,38.6652778,-78.4597222,Luray,VA,sphere,12,SILVER BALL BEARING LIKE OBJECT MAKING NO NOISE ON TOP OF MOUNTAIN. +2006-09-03,42.1816667,-87.8002778,Highland Park,IL,cylinder,1800,9/3/06 Highland Park, Illinois Cylinder Shaped UFO +2006-09-03,44.6336111,-86.2344444,Frankfort,MI,light,12600,Lights seen above Lake Michigan September 3, 2006. ((NUFORC Note: Sightings of satellites?? PD)) +2006-09-03,35.1963889,-78.0666667,Mount Olive,NC,sphere,30,Large red colored sphere, larger than any plane, larger than any star was noticed descending onto the horizon. +2006-09-03,37.6938889,-85.8591667,Elizabethtown,KY,disk,7200,Several lights appear over Elizabethtown, KY. +2007-09-03,36.1958333,-85.4486111,Algood,TN,oval,1200,Algood TN oval craft over car no sound and burns us like a sunburn helicopter chasing +2007-09-03,44.0522222,-123.0855556,Eugene,OR,cross,900,silent, black and "X" shaped +2007-09-03,38.015,-94.8833333,Mapleton,KS,circle,15,Bright circle swimming through the stars. +2007-09-03,26.1916667,-80.0966667,Lauderdale-By-The-Sea,FL,circle,120,Glowing circle seen over house. +2007-09-03,41.4569444,-72.8236111,Wallingford,CT,light,300,Bright Round Light Moves North In Night Sky Wallingford,Connecticut No Sound +2007-09-03,28.2438889,-82.7194444,New Port Richey,FL,triangle,60,we are normal people who do not report anything but we saw a real ufo +2008-09-03,28.1355556,-81.0763889,Holopaw,FL,triangle,300,UFO spotted on 192 in Holopaw. +2008-09-03,35.4797222,-79.1805556,Sanford,NC,unknown,30,not sure what this was +2008-09-03,39.9155556,-79.1525,Rockwood (Somerset),PA,other,15,Silver helicopter-looking craft moved vertically from still position. +2008-09-03,30.0797222,-95.4169444,Spring,TX,triangle,60,large triangle craft spotted 2 witnesses +2008-09-03,38.0194444,-122.1330556,Martinez,CA,light,240,Light travels across sky then takes off like a shot +2008-09-03,36.5330556,-82.3269444,Blountville,TN,other,600,B2 shaped vehical at low altitude moving in total silence at low speeds with no external engines. +2008-09-03,36.5330556,-82.3269444,Blountville,TN,other,600,B2 shaped vehicle 20 feet above trees moving in total silence at low speeds with no external engines +2008-09-03,33.9608333,-83.3780556,Athens,GA,light,180,Stationary or almost stationary bright red light turns white and drops a smaller red light that moves away. +2008-09-03,33.9608333,-83.3780556,Athens,GA,unknown,1200,Solid red light moving slowly across sky, at times had white things coming off of it as if it was falling off. +2008-09-03,34.3438889,-108.495,Quemado,NM,sphere,2700,Color changing sphere in the sky for about 45 minutes +2008-09-03,36.0966667,-81.1825,Moravian Falls,NC,unknown,120,Traveling home from Church band rehearsel wed evening..as i passed into view of my Dad`s old trailer, you can see a wonderful horizon. +2009-09-03,37.1316667,-80.5766667,Radford,VA,flash,30,A brilliant flash of light from the NW sky in East Radford, VA, USA at 00:56 on 09.03.09. +2009-09-03,38.1558333,-121.6902778,Rio Vista,CA,cigar,8,Military Cloaks Plane +2009-09-03,40.6258333,-75.3708333,Bethlehem,PA,cigar,300,On the way to school, my son saw a cigar shaped object in the sky. +2009-09-03,40.7163889,-73.3222222,North Babylon,NY,circle,120,UFO Sighting on Long Island,NY +2009-09-03,47.6063889,-122.3308333,Seattle,WA,light,600,large white lighted craft viewed over seattle, wa +2009-09-03,46.7566667,-88.4527778,L'anse (Alberta Village),MI,light,3634,A white orb traveled 1/4 of the sky. It came to rest Se of the logging town of Alberta. It disappeared 1 1/2 hours later. Completely. +2009-09-03,33.7488889,-84.3880556,Atlanta,GA,light,2100,Dancing lights (star-like) above atlanta, fast, erratic, playful, above clouds, 35 minutes +2009-09-03,63.8569444,-148.9661111,Healy,AK,light,3600,Objects in night sky over Healy, AK moving at high speeds and changing directions instantaneously. +2009-09-03,37.9886111,-84.4777778,Lexington,KY,other,60,Metor zooming toward the ground then stops above the city and turns off all lights and moves in a straight line. +2009-09-03,47.9791667,-122.2008333,Everett,WA,light,1200,bright light traveling fast. +2009-09-03,34.0522222,-118.2427778,Los Angeles,CA,oval,5,UFO with intense lights seen over LA on Sept. 3rd, 2009 +2010-09-03,34.6422222,-82.4561111,Pelzer,SC,changing,1200,3 red lights in shape of a perfect triangle over the steam mill in Pelzer,sc +2010-09-03,37.7397222,-121.4241667,Tracy,CA,triangle,20,Triangle shaped craft with strange light patterns +2010-09-03,47.7588889,-116.7558333,Hayden Lake,ID,triangle,30,Boomerand shaped lights in the sky and where moving fast in circles. +2010-09-03,47.7661111,-116.7855556,Hayden,ID,triangle,10,three dim lights in the sky. +2010-09-03,40.0875,-108.8041667,Rangely,CO,unknown,30,Two objects, one trailing the other, extremely high altitude (looked like two satellites). As bright as Sirius. +2010-09-03,42.4522222,-71.1375,Winchester,MA,triangle,120,rotating grey triangle +2010-09-03,42.5847222,-87.8211111,Kenosha,WI,other,5,V-Shaped object, no lights, flew in straight line at extreme speed +2010-09-03,37.7652778,-122.2405556,Alameda,CA,circle,1200,Alameda Ufo , Was not listed on google sky .. +2010-09-03,39.2072222,-86.2511111,Nashville,IN,light,240,My wife and I regularly hike in the Brown County State Park in the evenings. On our drive home at about 8:55 p.m., we passed a cleared +2010-09-03,34.4208333,-119.6972222,Santa Barbara,CA,other,30,long ovel shape flying in the sky over Santa Barbara +2010-09-03,41.6027778,-87.7438889,Oak Forest,IL,other,45,Four dim , glowing objects, flying north to south in changing formation. +2010-09-03,34.1347222,-116.3122222,Joshua Tree,CA,light,4,Two objects running in parallel lit up moving at the same speed very high up with no sound. +2010-09-03,43.2122222,-77.4302778,Webster,NY,triangle,3000,Orange center light, 3 red lights at rear. Object was not flashing any lights, only steady illumination. +2010-09-03,40.1786111,-122.2347222,Red Bluff,CA,circle,300,I was driving down highway 36 towards Fortuna out of the Red Bluff city limits and we saw some three bright lights to the right of my c +2010-09-03,45.2536111,-92.8055556,Scandia,MN,triangle,300,V/ triangular shaped. at first looked like a huge shining star. sounded like a train. nothing like a helicoptor nor plane. +2010-09-03,39.3958333,-101.0519444,Colby,KS,sphere,60,Strange yellow light/sphere appears, changes direction in sky, emits smaller sphere, and then fades to black (Jets scrambled) +2010-09-03,35.2305556,-89.7402778,Lakeland,TN,diamond,30,Diamond Shaped craft over Lakeland, TN. +2010-09-03,34.0555556,-117.1816667,Redlands,CA,circle,4,Pea-Sized Dim Amber Glowing Disk Within A Perfect Black Circle @ about 10K Feet Above +2011-09-03,42.5833333,-71.8027778,Fitchburg,MA,circle,120,Orange lights sceen over fitchburg ma. +2011-09-03,30.5080556,-97.6786111,Round Rock,TX,light,60,A ball of light larger than a commercial airliner. +2011-09-03,38.0280556,-121.8836111,Pittsburg,CA,teardrop,60,1 was a bright light that hovered in the sky, the other was red and green it keep changing colors. 45 mins.((NUFORC Note: Stars? PD)) +2011-09-03,47.3088889,-122.0019444,Black Diamond,WA,teardrop,120,Was traveling East on Hiway 18 just before black Diamond, Saw a black upside down teardrop shape object above treetops north from hiway +2011-09-03,42.5116667,-73.0583333,Windsor,MA,circle,300,Myself and a passenger observed a hovering and moving red ball of light while driving in a rural area. +2011-09-03,42.9072222,-70.8125,Hampton Beach,NH,sphere,900,ORANGE RED BALLS OF LIGHT , INTENSITY OF LIGT WAS CONSISTANT AND DIDN'T CHANGE WITH CRAFT CHANGING DIRRECTION +2011-09-03,43.1547222,-77.6158333,Rochester (Town Of Chili),NY,circle,4440,8-18 red/orange lights seemingly rising from the distant tree line above I-490 westbound after chili center exit south/southwest of my +2011-09-03,29.7855556,-95.8241667,Katy,TX,rectangle,3000,Red light hovering in sky then moved away at incredible speed. +2011-09-03,36.2294444,-77.1144444,Aulander,NC,triangle,60,three bright yellow lights hovering/departing and then disapearing after about one minute. +2011-09-03,30.4027778,-92.215,Church Point,LA,cylinder,600,Non reflecting Cyclinder shaped craft with no light or movement or noise. +2011-09-03,44.4905556,-73.1113889,Essex Junction,VT,light,600,Bright orange lights moving slowly in formation. +2011-09-03,43.8122222,-71.0361111,Freedom,NH,egg,20,i was camping near ossipee nh on the maine border. it was about 9pm and dark. i was on a golf cart heading in a easterly direction. my +2011-09-03,38.3219444,-94.3480556,Passaic,MO,other,600,On a research outing i heard and saw movement alongside the road i was working on, later something was found in the images. +2011-09-03,36.3727778,-94.2086111,Bentonville,AR,fireball,120,Orange glowing ball hovering over Bentonville/Centerton AR area disappeared into the night +2011-09-03,41.2458333,-75.8816667,Wilkes-Barre,PA,fireball,600,I saw a steadily moving, bright and low fireball glide across the night sky. +2011-09-03,41.1280556,-101.7191667,Ogallala,NE,sphere,300,orage spheres in sky over lake macconaghy +2011-09-03,41.395,-82.5552778,Huron,OH,light,300,Orange pulsating light(s) seen for 5 minutes. +2011-09-03,41.45,-71.45,Narragansett,RI,unknown,120,Newton Ave/ Hazard Rock area- Huge hovering object with light formations dissapeared. +2011-09-03,42.3761111,-85.455,Richland,MI,circle,120,Saw many circular obs of light taking off from the Battle Creek, MI are and hovering moving upwards and sideways then disappearing. +2011-09-03,40.8861111,-73.2577778,Kings Park,NY,oval,600,6 glowing spheres in the sky, moving in exact uniform formation +2011-09-03,40.3611111,-83.7597222,Bellefontaine,OH,fireball,1200,Seen 3 large slow moving large orange,flame like,objects moving South to North over camping area North of Bellfontaine,Ohio,Looked at f +2011-09-03,41.0288889,-84.0791667,Glandorf,OH,sphere,300,Orange/red sphere +2011-09-03,26.775,-80.0583333,Riviera Beach,FL,teardrop,2,Fuzzy teardrop-shaped yellowish-white light streaking over the Atlantic, offshore of Singer Island +2012-09-03,47.9252778,-97.0325,Grand Forks,ND,changing,300,Firework- like balls of light dart and merge into a swelling ball of light. +2012-09-03,33.6694444,-117.8222222,Irvine,CA,cylinder,540,6 extremely bright lights, surrounding a dark bodied craft, moving very slowly +2012-09-03,30.7486111,-99.2302778,Mason,TX,oval,10,Craft appeared above horizon for about 10 seconds and disappeared. +2012-09-03,40.4666667,-74.6611111,Belle Mead,NJ,fireball,120,Bright Orange pulsating Light over central NJ +2012-09-03,42.1102778,-88.0341667,Palatine,IL,sphere,180,Red orb increasing light intensity and rapid movement away straight up +2012-09-03,41.6269444,-88.2038889,Plainfield,IL,other,420,Low level brightly colored reddish orange object flying over Plainfield, IL 9-3-12 at 9:05 PM +2012-09-03,36.2694444,-95.8544444,Owasso,OK,light,10,Driving south toward Tulsa from Owasso OK, a green and white bar of light was seen traviling at a high rate of speed. +2012-09-03,29.8944444,-81.3147222,St. Augustine,FL,fireball,120,Me and my 2 sons were walking down Menendez st near the lions bridge my son told me to look up in the sky and we witnessed a yellow lig +2012-09-03,41.5066667,-90.515,Moline,IL,triangle,60,Orange/Yellowish square to triangle appeared directly over house in Moline, IL +2012-09-03,40.4966667,-80.6069444,New Cumberland,WV,triangle,600,Three red lights forming a triangle in the sky +2012-09-03,36.0419444,-94.2469444,Farmington,AR,sphere,300,Orange/amber orb. NO sound. NO other lights. moving horizontally from south to north 200 ft above ground +2012-09-03,64.8377778,-147.7163889,Fairbanks,AK,unknown,120,Metallic sounds and bright flash of light - Seen from indoors with blinds shut +2012-09-03,42.7166667,-70.9736111,Marlboro,MA,fireball,600,Fireball moving towards us then stopped & faded away slowly +2012-09-03,38.8813889,-94.8188889,Olathe,KS,unknown,600,My family was traveling west and my wife noticed a ufo hovering about 10 miles west of Olathe down 135th st. I instructed my wife to pu +2013-09-03,37.8486111,-81.9936111,Logan,WV,triangle,120,Long half a mile at least, white lights along the side. +2013-09-03,44.9238889,-92.9591667,Woodbury,MN,triangle,20,Two flying objects of unusual shapes, one like a "space station," the other like a triangle, very loud, with several different. +2013-09-03,36.1866667,-94.1286111,Springdale,AR,sphere,120,Metallic sphere over Arkansas. +2013-09-03,26.7052778,-80.0366667,West Palm Beach,FL,sphere,240,Orange glowing orb seen by 2 people. +2013-09-03,33.5422222,-117.7822222,Laguna Beach,CA,light,120,Two bright orange objects move in synchrony from Pacific coastline heading inland. +2013-09-03,36.4991667,-80.6075,Mt. Airy,NC,circle,2400,Huge bright circular object over Mt. Airy, NC...Surry County. +2013-09-03,40.7988889,-81.3786111,Canton,OH,light,900,4-5 bright white lights, shining downward, hovering in a group, then disappeared. +2013-09-03,40.7608333,-111.8902778,Salt Lake City,UT,changing,1500,Bright object. +2013-09-03,37.9402778,-97.8680556,Yoder,KS,sphere,600,Glowing orange sphere hovering at western horizon, disappeared suddenly. +2013-09-03,44.9583333,-124.0166667,Lincoln City,OR,light,120,Bright red to dark slow flashing. +2013-09-03,39.0702778,-76.5455556,Severna Park,MD,sphere,120,Orange spheres over Maryland. +2013-09-03,43.045,-75.8669444,Chittenango,NY,circle,120,Small bright, colorful flashing objects seen in Chittenango, NY. +2013-09-03,36.7477778,-119.7713889,Fresno,CA,oval,120,From the western horizon moving southeast what appeared to be traveling at a very high rate of speed. +1962-09-04,38.6272222,-90.1977778,St. Louis,MO,sphere,3600,Observation of spherical white colored craft in geostationary position for 1 hour plus. +1975-09-04,40.0069444,-75.0286111,Palmyra,NJ,circle,600,Object was seen flying at high altitude above drive in projection screen in the distance. +1975-09-04,34.4016667,-86.4491667,Union Grove,AL,cigar,1200,Two brothers observe cigar-shaped UFO late at night after work. +1980-09-04,28.5380556,-81.3794444,Orlando (South-Southeast),FL,rectangle,15,Saw a multi-colored, rectangular object flying through the sky from the NE to the SW... +1981-09-04,41.9486111,-71.0736111,Raynham,MA,disk,120,There was a silver disk shaped object silently suspended in mid air positioned at a downward slant ot very far from the treeline. +1983-09-04,40.0363889,-88.9569444,Maroa,IL,disk,30,Enormous luminous disc seen over farmstead in broad daylight +1994-09-04,21.3155556,-158.0072222,Ewa Beach,HI,cigar,10,09/04/94, Ewa Beach HI, Unidentified Spacecraft about 10 times larger and similar in design to our modern aircraft carriers. +1995-09-04,33.9488889,-118.4447222,Playa Del Rey,CA,light,60,Anomalous light approaches LAX neighborhood and disappears at high altitude. +1996-09-04,38.8119444,-94.5316667,Belton,MO,triangle,1200,It was large, fast, transparent, only two hundred yards away, and made absolutley no sound at any time. +1998-09-04,41.14,-104.8197222,Cheyenne,WY,cigar,60,Saw two silver objects flying over Cheyenne. Performed odd maneuvers. Thought nothing of it until I got into the city & saw an AF copte +1998-09-04,34.1394444,-117.9763889,Duarte,CA,light,30,Two lights flickering over the san gabriel mountains. The two lights were moving east quite fast without any sound. +1998-09-04,44.1547222,-122.34,Blue River,OR,cylinder,240,While outside watching the skies I observed what at first I believed to have been a satellite travelling in a northwestern direction. I +1999-09-04,36.6777778,-121.6544444,Salinas,CA,light,60,My sister in Salinas saw a green light - about the color of a traffic light. At first looked like a shooting star but was slower and t +1999-09-04,38.0280556,-121.8836111,Pittsburg,CA,other,3,Fireball sighting +1999-09-04,37.3541667,-121.9541667,Santa Clara,CA,light,10,Bright light appearing in the sky which then accelerated at a rapid rate till it was no longer visible. +1999-09-04,39.7683333,-86.1580556,Indianapolis,IN,cylinder,300,I saw a smoky gray cylinder with blue vertical stripes dividing the cylinder into thirds. I have no idea of the altitude, since I don' +1999-09-04,35.0886111,-92.4419444,Conway,AR,light,120,I witnessed a C130 military aircraft flying over. The plane had one large light flying along side the fusilage of the plane and one sma +1999-09-04,40.7141667,-74.0063889,New York City,NY,triangle,15,A triangular object moving quietly, larger than anything I've ever seen. And, to close, not to make noise!! +1999-09-04,42.9633333,-85.6680556,Grand Rapids,MI,light,2400,SEEN STATIONARY OBJECT IN S.W. SKY. OBJECT DID NOT MOVE, HOVERED FOR MORE THAN 30 MIN. IN EXACT LOCATION. WHITE,RED BLUE-GREEN LIGHTS +1999-09-04,39.8288889,-84.8902778,Richmond (Just East Of),IN,triangle,240,Observed fireball with small tail in slow swirling motion, then observed a series of orange lights in a perfect V formation. +1999-09-04,45.8152778,-122.7413889,Ridgefield,WA,light,2,a large white ball coming towards me then as I focused on it, it seemed to know somehow that I was aware of it and it turned, faster th +1999-09-04,41.1747222,-91.8194444,Brighton (Outside Of),IA,fireball,1800,camping, object zig-zagged, stopped off and on, went behind a large cloud bank and was so bright it lit through the cloud, weird hard t +1999-09-04,36.1658333,-86.7844444,Nashville,TN,light,6,I had walked out back and looked up at the sky and a golden light was moving slowly across the sky. There were no flashing lights so I +1999-09-04,33.0183333,-80.1758333,Summerville,SC,circle,900,((HOAX??)) I was stopped on dirt road in the woods and two bright objects passed over me. +1999-09-04,48.7052778,-119.4383333,Tonasket (20 Miles East Of),WA,light,1200,varying speed pulsating light, very bright to very dim +2000-09-04,34.1458333,-118.8047222,Westlake Village,CA,light,7200,At about 3:45 am we witnessed 2 objects in the sky. Each flashed red, green, and blue tones in a random pattern. They remained relativ +2001-09-04,43.1219444,-75.2919444,Whitesboro,NY,sphere,15,Watched small silver orb traverse 1/3rd of the sky and disappear in plain sight. +2001-09-04,40.77,-87.8588889,Crescent City,IL,rectangle,7200,big bright light coming closer 4 ufo objects in sky pink cloud over us couldnt see where we were going +2001-09-04,45.8902778,-122.8058333,Columbia City,OR,light,60,a light form ripping around the sky +2001-09-04,42.4775,-83.0277778,Warren,MI,circle,900,circular luminous craft changes shape while being chased by two military jets. +2001-09-04,40.7875,-82.7366667,Crestline,OH,other,10800,Unusual Flashing lights and explosions over North Central Ohio +2001-09-04,34.8697222,-111.7602778,Sedona,AZ,light,1200,Strange bright light blinking multiple colors west of Sedona near Secret Mountain +2001-09-04,37.9061111,-122.5438889,Mill Valley,CA,light,1800,Strange light above San Francisco Bay +2002-09-04,44.0872222,-69.7994444,Richmond,ME,sphere,54000,these objects darted about. Quarter size objects with radiant light beams all around hovered in vertical line then darted +2002-09-04,32.7252778,-97.3205556,Fort Worth,TX,triangle,900,Very LARGE V shaped objects or objects +2002-09-04,47.8211111,-122.3138889,Lynnwood,WA,light,120,Interesting aerial phenomena just after darkfall +2002-09-04,43.5977778,-84.7675,Mt. Pleasant,MI,light,3,Bright amber light gently zig-zags downward and ball of light outside of my home. +2002-09-04,41.1305556,-85.1288889,Fort Wayne,IN,other,600,A very strange light observant at midnight. +2002-09-05,28.555,-82.3880556,Brooksville,FL,sphere,2100,we got photos +2003-09-04,41.9238889,-89.0686111,Rochelle,IL,fireball,10,Observed a green fireball with white and green flames track across the western sky going from north to south. +2003-09-04,37.9513889,-91.7711111,Rolla,MO,oval,7,Bright Green Oval shaped UFO spotted. +2003-09-04,44.98,-93.2636111,Minneapolis,MN,formation,1200,Three faint blue triangles high in the sky. +2003-09-04,37.9063889,-122.0638889,Walnut Creek,CA,circle,5,Circular object in No. CA streaking towards Mt. Diablo State Park area +2003-09-04,37.5202778,-122.2747222,Belmont,CA,fireball,2,Meteor like flaming ball, except much larger and closer in appearance. +2003-09-04,37.485,-119.9652778,Mariposa,CA,fireball,2,it appeared to be a meteror entering the earth's atmosphere and was large enough that it may not have completely burned prior to impact +2003-09-04,38.7522222,-121.2869444,Roseville,CA,teardrop,2,glowing light moved rapidly downward from northeast to southeast in sky head of the meteorite was a neon green while the sides and tail +2003-09-04,38.4736111,-122.8891667,Forestville,CA,fireball,180,Two lights in eastern sky. +2003-09-04,48.5038889,-122.2361111,Sedro-Woolley,WA,flash,60,At approximately 21:40 hours, saw a BRIGHT flashing light almost directly overhead in the area of the top of the northern cross, which +2003-09-04,38.9974,-94.144,Oak Grove,MO,light,300,I was standing with my sister in her driveway when we saw what looked like an airplane with its landing lights on comming towards us fr +2004-09-04,29.8944444,-81.3147222,St. Augustine,FL,cylinder,6,Large gray cylinder hovering just above tree tops +2004-09-04,36.9102778,-121.7558333,Watsonville,CA,light,2700,Bright red, plasma-type object seen hovering over Mt. Madonna, are for 45 mins. +2004-09-04,33.6602778,-117.9983333,Huntington Beach,CA,light,5,A shooting bright red light intermittently visible in eastern sky near Saturn. +2004-09-04,33.5386111,-112.1852778,Glendale,AZ,teardrop,12,Silent black tear-drop shaped craft going above mach speed. +2004-09-04,33.5538889,-117.2130556,Murrieta,CA,triangle,180,Dim Luminous Large Triangle / Grouped Lights +2004-09-04,40.4591667,-74.3613889,Sayreville,NJ,rectangle,300,White Rectangular Object sighted near Sayreville Water Tower +2004-09-04,35.655,-82.6963889,Leicester,NC,fireball,15,the object looked like a bright star and immediately disappeared. +2004-09-04,33.7738889,-117.9405556,Garden Grove,CA,unknown,300,Object moving at a high speed in full daylight observed by two witnesses. +2004-09-04,30.4505556,-91.1544444,Baton Rouge,LA,cigar,300,while watching live football game, an allumminum sigar shaped object appeared above the clouds, I took picture. +2004-09-04,30.2669444,-97.7427778,Austin,TX,unknown,2700,Small black orb hovering in the sky moving irregularly north or barton hills +2004-09-04,30.2669444,-97.7427778,Austin,TX,unknown,2700,small black object hovering above austin, copter nearby +2004-09-04,37.8044444,-122.2697222,Oakland,CA,light,600,Hi, I am writing this for a friend who witnessed 6 red lights about 7pm over Oakland, CA on or about Sept 4th. The red lights changed +2004-09-04,36.595,-82.1888889,Bristol,TN,other,480,Lobed object seen moving westerly at high altitude +2004-09-04,35.0525,-118.1730556,Mojave (Red Rock Canyon Rec.),CA,light,900,2 lights moving quickly & erraticly north of mojave ca. (edwards???) +2004-09-04,40.7452778,-86.7647222,Monticello,IN,unknown,20,Three dots of light in Earth's orbit moving east and then disappeared. +2004-09-05,48.1958333,-114.3119444,Kalispell,MT,triangle,120,Triangle Craft ((NUFORC Note: NOSS satellite formation?? PD)) +2005-09-04,34.1161111,-118.1494444,South Pasadena,CA,fireball,2,Large, glowing, bright green "fireball" falling fast south of Los Angeles. +2005-09-04,42.2708333,-83.7263889,Ann Arbor,MI,light,5,TWO RED-ORANGE LIGHTS IN "FORMATION" OVER ANN ARBOR, MI. +2005-09-04,37.4852778,-122.2352778,Redwood City,CA,circle,900,A flashing ,stretching light in the south west sky in redwood city +2005-09-04,39.6452778,-121.4022222,Berry Creek,CA,light,6,A bright light that left a trail. +2005-09-04,42.5488889,-74.8213889,Schenevus,NY,circle,3600,Red, blue and white lights continuously moving on unidentified object in Upstate NY sky +2005-09-04,37.6922222,-97.3372222,Wichita,KS,cone,120,Cone-shaped light that changes colors +2005-09-05,36.2325,-80.7083333,Boonville,NC,cigar,10800,Unusual activity in our small community, crafts seem to hover with lights not like anything recognizable. +2005-09-05,33.8491667,-118.3875,Redondo Beach,CA,triangle,300,Triangulat UFO seen over Redondo Beach, California at 6:00 a.m. lights were not blinking, making strange patterns +2006-09-04,40.3355556,-75.9272222,Reading,PA,light,240,September 2006 Possible UFO/Satellite Battle over Pennsylvania Skies +2006-09-04,32.7152778,-117.1563889,San Diego,CA,cylinder,30,We saw a silver cylindrical shaped object, like a cigar in the sky above the Corranado bridge in San Diego. It was very bright silver a +2006-09-04,45.5608333,-94.1622222,Saint Cloud,MN,teardrop,480,Definetly not a typical aircraft, military or commercial jet of any kind +2006-09-04,41.2586111,-95.9375,Omaha,NE,light,60,White light flies over Omaha +2006-09-04,38.9905556,-77.0263889,Silver Spring,MD,light,300,birght satellite -like nocturnal light with a distinctly orange color wher no satellite should have been. +2007-09-04,37.7397222,-121.4241667,Tracy (20 Miles Outside Of; On I-5),CA,triangle,1200,Driving towards San Francisco between 12 mid night and 1 am on the morning of Tuesday Sept 4. A triangle like device was making h +2007-09-04,33.6694444,-117.8222222,Irvine (Enroute To),CA,triangle,30,A triangularly shaped, noiseless aircraft almost crashed into our car. +2007-09-04,33.8158333,-78.6802778,North Myrtle Beach,SC,cone,1800,$ bright lights over Atlantic Ocean flying in rectangle formation, changed to orange cones then orangle cirlces with black core. +2007-09-04,39.9625,-76.7280556,York,PA,oval,60,Bright object in the sky +2007-09-04,33.6888889,-78.8869444,Myrtle Beach,SC,light,10,UFO in Myrtle Beach, South Carolina +2007-09-04,41.885,-87.7844444,Oak Park,IL,disk,3,heard "humming" sound and then a brilliant flash went off. Within the flash was a disk shaped prism of rainbow colors. +2007-09-04,38.645,-82.8488889,Franklin Furnace,OH,formation,2400,Several amber colored lights in formation in Southren Ohio. +2007-09-04,39.0997222,-94.5783333,Kansas City,MO,triangle,10,3 round lights in a boomerang shape with a bright comet like tail, very close to the ground. +2007-09-04,40.7608333,-111.8902778,Salt Lake City,UT,triangle,900,Extremely large black triangle silently hovering with three round lights in each corner on the bottom seen very up close. +2007-09-04,34.6777778,-76.9511111,Emerald Isle,NC,rectangle,4,Three vertical rows of huge bright red lights observed in Emerald Isle, NC over the ocean under Mars in the sky. +2007-09-04,40.2141667,-77.0088889,Mechanicsburg (Harrisburg),PA,disk,3600,Saucer, flat shaped object with numerous blinking lights (red-ivory-green) around perimeter. Plate like +2007-09-04,42.0036111,-79.8111111,Wattsburg,PA,flash,60,My brother and I saw three bright flashes off the side of the road in Wattsburg, PA. +2008-09-04,45.6388889,-122.6602778,Vancouver,WA,light,3600,I awoke and looked out my bedroom window to see what looked like a very bright star. ((NUFORC Note: Probable star. PD)) +2008-09-04,33.9227778,-87.6172222,Eldridge,AL,diamond,0.5,09/04/08 eldridge,al diamond object 0.5 seconds +2008-09-04,47.6733333,-117.2383333,Spokane Valley,WA,triangle,900,Saw two triangular shaped objects. Yellow to bright white. Came up over the horizon northeast and headed west and upward very brig +2008-09-04,37.6391667,-120.9958333,Modesto,CA,triangle,90,Low level Triangular shaped aircraft with many red and white flashing lights +2008-09-04,47.8108333,-122.3761111,Edmonds,WA,formation,90,Observed 3 lights in formation in night sky with 2 fading out and one accelerating out of sight. +2009-09-04,33.18,-96.4977778,Princeton,TX,diamond,90,Two objects with red and green flickering lights seen in night sky with little are no movement. ((NUFORC Note: Stars? PD)) +2009-09-04,39.8905556,-84.1988889,Vandalia,OH,triangle,60,triangler figure in Vandalia, OH +2009-09-04,37.5058333,-77.6494444,Midlothian,VA,flash,2,I saw a bright blue flame that was streaking down and then it intensified at least 3 times brighter and dissapeared. +2009-09-04,34.8172222,-97.4055556,Maysville,OK,light,20,unidentified white light object with two windows in it appeared to be burning or crashing towards earth +2009-09-04,42.505,-90.0986111,Apple River,IL,disk,300,Bright orange lights sighted in Apple River, Illinois +2009-09-04,41.3952778,-81.6763889,Seven Hills,OH,fireball,60,Bright red object as bright as Jupiter going south then in seconds darts west and fades away. +2009-09-04,41.88,-88.0077778,Lombard,IL,circle,2700,White flat circle with pulsating lights in sky +2010-09-04,41.6269444,-88.2038889,Plainfield,IL,other,120,red orb seen in plainfield.illinois at route 126 and druden +2010-09-04,34.1511111,-118.4483333,Sherman Oaks,CA,circle,3600,Blinking UFO in the South East sky of Los Angeles +2010-09-04,48.5466667,-117.9044444,Colville,WA,disk,120,Spacecraft sighted over Washington State. +2010-09-04,36.98,-85.6122222,Edmonton,KY,triangle,120,Several lights on the bottom of the craft that were white, flashed about every second, and were in the form of a triangle. +2010-09-04,41.4444444,-87.6313889,Crete,IL,triangle,60,On 09/04/10 at 11:40 am i saw a ufo in Crete,Illinois. +2010-09-04,35.1436111,-82.8213889,Rosman,NC,cylinder,15,Cylinder seen disappearing over P.A.R.I. in Rosman, NC +2010-09-04,41.7858333,-88.1472222,Naperville,IL,light,90,Round object appears to have returned over my house +2010-09-04,38.7975,-90.7855556,Lake Saint Louis,MO,light,600,Bright unmoving light i high in the clear sky. +2010-09-04,37.0372222,-95.6161111,Coffeyville,KS,cigar,30,9/04/2010 at 6:30 pm . an object flying north over coffeyville ks moving at high speed appearing to be cigar like in shape . +2010-09-04,43.1947222,-88.7288889,Watertown,WI,sphere,10,silver sphere vanished before my eyes +2010-09-04,38.4191667,-82.4452778,Huntington,WV,circle,60,Circular black object with single bright white light, hovering, turning, then moving at incredible speed. +2010-09-04,38.1502778,-92.6177778,Osage Beach,MO,fireball,900,We all saw 3 separate balloon shaped crafts that appeared to have a bright red (fire almost) color. They were moving pretty slow at fir +2010-09-04,42.2711111,-89.0938889,Rockford,IL,fireball,180,Three orange glowing lights traveling together in the form of a verticle triangle in the night disappear into the clouds. +2010-09-04,41.4444444,-87.6313889,Crete,IL,fireball,120,Radiating ball of light tracking due east for approx 2 minutes. +2010-09-04,41.4458333,-74.4233333,Middletown,NY,unknown,3,Object dips up and down and zig zags. +2010-09-04,26.3180556,-80.1,Deerfield Beach,FL,unknown,1800,8 bright white lights ...unidentified shape... +2010-09-04,37.6194444,-84.5780556,Lancaster,KY,triangle,120,Glowing low flying triangular shaped object slowly flew over us, appeared to be on fire but didn't loose altitude. +2010-09-04,40.7608333,-111.8902778,Salt Lake City,UT,circle,20,two round star-like objects falling and moving to the North at a very fast speed +2010-09-04,39.7683333,-86.1580556,Indianapolis,IN,circle,30,Large round gray object moving low to the ground making no sound. +2010-09-04,40.6866667,-73.3738889,Lindenhurst,NY,unknown,90,It was a very bright light, extremly high up that was brighter than anything else in the night sky +2010-09-04,41.3255556,-85.6977778,North Webster,IN,other,120,The following is a correction and addition to a report filed 3 days ago. I discovered I had the direction of travel of the craft incorr +2010-09-04,47.6105556,-122.1994444,Bellevue,WA,unknown,180,silent, slow airborn globe that accelerated suddenly and straight upwards, without a sound +2010-09-04,42.4391667,-123.3272222,Grants Pass,OR,light,600,Formation of lights moving erradically but within a defined area west by southwest of Grants Pass, OR +2010-09-04,35.2230556,-93.1577778,Dardanelle,AR,light,1800,Slow moving, hovering, flashing light above Yell County, AR. +2011-09-04,35.9669444,-83.1877778,Newport,TN,triangle,180,black triangle newport tn cocke county +2011-09-04,42.2886111,-77.2186111,Savona,NY,light,3600,I am at a loss to rationally explain what my girlfriend and I have seen, not once, not twice, but three times in a week! +2011-09-04,37.7991667,-88.2611111,Ridgway,IL,circle,300,4 smaller objects went into 1 larger, brighter pulsating object that emitted a bright white light for 30sec +2011-09-04,36.3302778,-119.2911111,Visalia,CA,disk,9000,One main craft with bright rotating lights and orange light crafts flying in and out of and around the main craft. +2011-09-04,32.9536111,-96.89,Carrollton,TX,unknown,120,Bright Blue Fork Shaped object with flames. +2011-09-04,48.6011111,-93.4108333,International Falls,MN,oval,15,Very small with pink and blue lights and could move very fast. It flew very close to us +2011-09-04,32.9544444,-97.0147222,Coppell,TX,light,5,((HOAX??)) A light from the sky, with no sound, and this was clearly squared , it was a soft scanning light like a copier machine +2011-09-04,33.1975,-96.615,Mckinney,TX,light,5,Bright light appeared in sky, illuminating tree as if it wee a helicopter shining a searchlight. Then a bright white light in the shap +2011-09-04,44.295,-93.2686111,Faribault,MN,egg,300,craft, egg shaped, with U shape around half of it, slowly flying by at about 500 feet in the air, lasting about 5 minutes +2011-09-04,36.0997222,-80.2444444,Winston-Salem,NC,flash,600,Two U.F.O's were over the airshow and commerial flight path, like they were watching at high altitude. +2011-09-04,41.0441667,-83.65,Findlay,OH,fireball,300,multiple orange lights traveling as a group in no particular shape or pattern +2011-09-04,33.3941667,-104.5225,Roswell (No Joke),NM,light,240,A light in the sky moving in a zig-zag pattern +2011-09-04,41.9666667,-92.5766667,Tama,IA,fireball,60,A fiery Red Orb like ball floated through the sky. +2011-09-04,32.2216667,-110.9258333,Tucson,AZ,triangle,300,2 pulsating orb like lights hovering, ascending straight up, then across and saw its triangular shape and lights +2011-09-04,40.0891667,-75.3963889,King Of Prussia,PA,formation,120,3 people see formation in Pennsylvania sky +2011-09-04,42.4927778,-92.3427778,Waterloo,IA,circle,50,4 large orange orbs moving across sky +2011-09-04,44.5647222,-123.2608333,Corvallis,OR,light,60,Two lights appear within extremely close proximity, fly straight, and then vanish at the same time. +2011-09-04,42.4033333,-78.6855556,Ashford Hollow,NY,other,30,i was at my parents cabin in ashford hollow ny for the holliday weekend. my kids were gonna meet me out there but didn't make it. so of +2011-09-04,40.5416667,-79.7994444,Cheswick,PA,light,180,Orange/White dancing flame +2011-09-04,38.9516667,-92.3338889,Columbia,MO,sphere,300,Fifty silent spherical craft moving quickly over Columbia Missouri +2011-09-04,47.0380556,-122.8994444,Olympia,WA,chevron,21600,Very large white light that was not a star +2011-09-04,33.9166667,-117.8991667,Brea,CA,oval,120,strange super white object in sky with yellow lights hovered then disappeared +2012-09-04,41.6638889,-83.5552778,Toledo,OH,fireball,300,Orange/red no sound pulsating, moves fast and smooth +2012-09-04,43.7508333,-87.7144444,Sheboygan,WI,other,120,Strange V lights +2012-09-04,36.175,-115.1363889,Las Vegas,NV,triangle,900,Large dark triangular metalic object w/ metalic arms silently hovering near SW home in Las Vegas, NV following smaller dark object +2012-09-04,26.0391667,-97.5561111,Rancho Viejo,TX,circle,3,Very large, very bright light moving incredibly fast, diminished into a light orange color and disappeared. +2012-09-04,35.3394444,-97.4863889,Moore (Southeast Of),OK,light,180,2 bright orbs of light moved west at rapid speed after first seen hovering above 149th between Harrah an Moore Ok.. +2012-09-04,40.5852778,-105.0838889,Fort Collins,CO,rectangle,30,Square craft with evenly spaced orange glows +2012-09-04,47.3075,-122.2272222,Auburn,WA,circle,7245,Bright white/blue object followed by 3 helicopters, then disappears +2012-09-04,40.4533333,-111.7772222,Alpine (Near),UT,flash,5,Disc flares and disappears over Mt. Timpanogos, UT 4 Sep 12 +2012-09-04,33.7922222,-82.4791667,Lincolnton,GA,disk,1200,Bright lights seen over Lincolnton, GA., 9:30PM- Set.4TH-2012 +2012-09-04,35.0844444,-106.6505556,Albuquerque,NM,other,1200,At 930pm mst myself and two other once again saw a light appear 35% above western horizon due west of our house. object had green and r +2013-09-04,40.8686111,-73.0019444,Coram,NY,flash,240,My husband and I stepped outside for a cigarette, and like always we look up to wish on a star...I spotted a flashing light high up, +2013-09-04,35.4713889,-93.4663889,Clarksville,AR,flash,1,Brilliant flash of blueish/white light that illuminated the entire area +2013-09-04,40.8838889,-97.7466667,Bradshaw,NE,diamond,10,Low flying, very large diamond shaped flashing yellow light moving extremely fast to the east. +2013-09-04,41.5380556,-72.8075,Meriden,CT,cylinder,420,Daytime sighting over Meriden CT Silver Cylinder shape object zigzagging no wings no tail no nose no vapor trail no sound. +2013-09-04,34.9244444,-80.7436111,Waxhaw,NC,sphere,2400,Multiple red/orange orbs hovering in sky, and an aircraft with orange triangle on bottom, and silent military helicopter spotted. +2013-09-04,33.7455556,-117.8669444,Santa Ana,CA,light,10,3 extremely fast moving lights, in a delta formation, moving from N/W to S/E over southern California. +2013-09-04,39.3772222,-76.54,Parkville,MD,light,120,I saw 2 vertical white/blue lights that were fairly low zoom through the sky going toward loch raven reservoir then saw the same thing. +2013-09-04,34.005,-118.8091667,Malibu,CA,diamond,30,A half green-half red diamond shaped craft moving west fast and silently +2013-09-04,41.3966667,-73.0763889,Seymour,CT,fireball,300,My roommate & I witnessed what appeared to be a floating ball of fire rise above the Housatonic River behind our house. +2013-09-04,35.3394444,-97.4863889,Moore,OK,light,60,Extremely fast red/orange orb of light. +2013-09-04,33.5966667,-83.8602778,Covington,GA,circle,180,9 GLOWING BALLS CROSSING HIGHWAY 20 EAST BOUND. +2013-09-04,32.7152778,-117.1563889,San Diego,CA,light,150,Two crafts with red lights hovering over Tierrasanta. +2013-09-04,40.3352778,-82.0069444,Warsaw,OH,fireball,360,Large intense yellow fireball with red attached tails. +2013-09-04,34.2977778,-83.8241667,Gainesville,GA,unknown,300,Two green lights in gainesville. two witness. +1957-09-05,37.2266667,-121.9736111,Los Gatos (West Of),CA,disk,60,3 craft seen in day light, very low altitude and as clear in detail and color as a car on the road. +1960-09-05,42.8863889,-78.8786111,Buffalo,NY,oval,180,Precise movements of a "craft" apparently observing a large tank like structure. +1964-09-05,40.7141667,-74.0063889,New York City (Throggs Neck Bridge),NY,disk,180,Lengthy observation of low flying, large spacecraft hovering just above Throggs Neck Bridge: September, 1964 +1965-09-05,40.3916667,-74.3988889,Spotswood,NJ,cylinder,10,Silent Cylinder Hovers over Schoolyard in Central NJ +1966-09-05,35.3733333,-119.0177778,Bakersfield,CA,circle,180,1966, I was 11 flashing multicolored lites, red green blue, I think white not sure, moved from stationary positon. fast! +1966-09-05,41.4297222,-97.3680556,Columbus,NE,circle,1800,Circular craft, nighttime sighting, close range, red, green, yellow lights, probable abduction, missing time +1967-09-05,37.7433333,-87.7038889,Corydon,KY,disk,30,Saw a silver disk pass east to west over me on a sunny September aftermoon +1976-09-05,41.3138889,-81.6852778,Broadview Heights,OH,disk,180,Low flying metalic saucer slowly flying over apartment complex (30 feet in air and silent) +1980-09-05,37.1305556,-121.6533333,Morgan Hill,CA,disk,900,ufo sighting in small town on the busiess holiday weekend. +1985-09-05,58.301944399999996,-134.4197222,Juneau,AK,circle,7200,My Brother and I believed we saw something that sped up time with light's from a ship. While we were in transit with a Vessel to Seattl +1985-09-05,43.6105556,-72.9730556,Rutland,VT,triangle,80,The light the triangle shape no sound, even a hotair bollon make noise +1991-09-05,42.5877778,-76.3672222,Groton,NY,triangle,2,My sister and I saw a massive, silent, v-shaped formation of bright white lights fly directly overhead. +1992-09-05,46.2272222,-116.0283333,Kamiah,ID,circle,600,maybe a somewhat round craft with three large lights per side, with a seperate round craft +1995-09-05,35.9516667,-95.6505556,Coweta,OK,disk,14400,I have done conciderable research on this subject since contact. It fits documented discriptions listed in UFOlogy by Jim Marrs. +1995-09-05,35.0844444,-106.6505556,Albuquerque,NM,triangle,20,It moved fast and stopped over my head. Then, it hovered for 10 sec. before it speed off like it had turned. But the object never turne +1996-09-05,35.5869444,-80.4630556,Faith,NC,triangle,30,Large black triangle, lights on the corners. Moving 3 or 4 mph right above the treetops. Faint humming noise. 500 Lights On Object0 +1998-09-05,32.7763889,-79.9311111,Charleston,SC,fireball,5,I work a Chas. AfB and I walked off an airplane and looked across the horizon and saw it moving horizontally. I have seen thousands of +1999-09-05,47.6741667,-122.1202778,Redmond,WA,light,180,bright light that did not move at all. 1 bright light turned to 3 distinguishable lights. dissappeared suddenly +1999-09-05,46.3675,-91.1080556,Grand View (Near, Remote Location In N. Wisconsin),WI,formation,300,Myself and approximately 15 others witnessed three lights moving in a triangle shaped formation for about 5-10 minutes. +1999-09-05,43.1338889,-70.9269444,Durham,NH,rectangle,10,We saw a white rectangular-shaped object very high in the eastern sky moving very slowly. +1999-09-05,38.6644444,-80.71,Sutton,WV,disk,600,Object in Early Morning Sky over Sutton,WV 3 witnesses +1999-09-05,37.8716667,-122.2716667,Berkeley,CA,cigar,60,Listening to Art Bell 9/9, I was struck by the report of glassy cigar shaped object seen in Florida. Similar object seen here. +1999-09-05,32.2836111,-83.4722222,Hawkinsville,GA,disk,60,We saw four saucers with bright lights . +1999-09-05,44.2941667,-92.6688889,Zumbrota,MN,circle,4,Two circular shaped objects came from the north, northwest and flew at a 45 degree angle to eachother. They kept the same distance apa +1999-09-05,37.6775,-113.0611111,Cedar City,UT,light,3,flashing light high in sky. +1999-09-05,46.5530556,-91.5763889,Brule,WI,formation,600,Triangular formation of three lights moving across the sky. +1999-09-05,36.3275,-119.6447222,Hanford,CA,fireball,5,Facing south I observed a round, green fireball traveling straight down almost vertical, with a vapor trail as it burned out. +1999-09-05,37.3183333,-84.9394444,West Liberty,KY,light,37800,bright pulseating light diffferencating from green to orange to white +2000-09-05,42.075,-70.8805556,Hanson,MA,light,3600,Two slowly moving distant lights. +2000-09-05,40.5866667,-122.3905556,Redding,CA,triangle,240,Huge..floating west to east Redding, CA...object that appeared to look like missles going across.in V shape, no noise +2000-09-05,39.2033333,-76.6625,Linthicum Heights (Bwi Airport),MD,light,40,a bright white light no solid object visable +2001-09-05,27.9091667,-82.7875,Largo,FL,light,120,Fast moving flashing lights ,seen over Largo,fl.. +2001-09-05,39.8208333,-84.0194444,Fairborn,OH,triangle,35,THE CRAFT GLIDED OVER ME SILENTLY ONE LIGHT IN FRONT THREE IN BACK AND ONE RED IN THE MIDDLE. +2001-09-05,41.2852778,-72.4480556,Westbrook,CT,changing,7200,Numerous objects were seen in the sky- red and blue lights were emitted from these objects. +2001-09-05,47.3075,-122.2272222,Auburn,WA,unknown,120,Sonic-Booms rattle Windows in Auburn +2001-09-05,40.7966667,-74.4819444,Morristown,NJ,sphere,660,Silver metallic object, moving slowly SE, toward Union NJ +2001-09-05,34.3580556,-86.2947222,Guntersville,AL,light,900,((HOAX??)) I saw a large bright white light toward the ENE from my front yard. +2001-09-05,39.2666667,-81.5616667,Parkersburg,WV,light,30,On 5 Sep 2001, at approx. 2049,A bright white light, that swelled and disappeared, was seen from Parkersburg, WV in the north sky. +2001-09-05,38.6105556,-122.8680556,Healdsburg,CA,rectangle,900,Not made in U. S. of A. +2001-09-05,35.5941667,-119.34,Wasco,CA,fireball,3,I was on my way to work and saw a fire ball that seemed to be just above the tree line before it hit the ground. +2001-09-05,21.3069444,-157.8583333,Honolulu,HI,light,45,11:15 pm. Looking South from the Halekulani Hotel on Wikiki beach, 6th floor. I had arrived earlier that day with my wife, and had NOT +2001-09-05,41.4138889,-73.3038889,Newtown,CT,unknown,60,Sighting over Southern Newtown, CT +2002-09-05,40.5983333,-76.0936111,Auburn,PA,other,900,Triangle formation of three erratically moving starlike lights +2002-09-05,38.2541667,-85.7594444,Louisville,KY,disk,60,Silver saucer shaped craft moving in rapid eratic movements and 90 degree turns. +2002-09-05,37.9322222,-87.895,Mt. Vernon,IN,light,7200,Bright Light seemed to draw nearer +2002-09-05,43.073055600000004,-89.4011111,Madison,WI,other,600,Triangular formation of what looked like stars in shape and bightness +2002-09-05,42.5530556,-87.9333333,Pleasant Prairie,WI,triangle,300,Very large triangular object seen in Southeast Wisconsin +2002-09-05,29.7630556,-95.3630556,Houston,TX,disk,120,Extreme large, very bright orb gave off no light to anything else, observed in texas. +2003-09-05,33.4483333,-112.0733333,Phoenix,AZ,other,60,Square shaped craft flying over downtown Phoenix, AZ. +2003-09-05,37.9886111,-84.4777778,Lexington,KY,cross,60,I saw a totally white object, shaped like a plane without wings, flying the height a plane flies. +2003-09-05,32.7152778,-117.1563889,San Diego,CA,oval,600,this object appeared to be off the coast of los angeles, from where we were standing it was for sure over the ocean, it was a very clea +2003-09-05,39.5297222,-119.8127778,Reno,NV,light,1800,Lights appear over football game in Northwest Reno +2003-09-05,33.3061111,-111.8405556,Chandler,AZ,triangle,60,THE OBJECT SWOOPED DOWN AND DECENDED EASTWARD, TOTALLY SILENT +2003-09-05,47.4705556,-122.3455556,Burien,WA,rectangle,2,green, glowing rectilinear object streaking across night sky, E to W, in West Seattle +2003-09-05,45.5230556,-122.9886111,Hillsboro,OR,circle,3,Green ball with a pink/red tail entering our atmosphere , then flying of over the horizon. +2003-09-05,33.1433333,-117.1652778,San Marcos,CA,circle,300,I was leaving my friends house after swiming in the pool and I had one friend with me and it was about 1145 at night and i was fallowin +2004-09-05,43.9552778,-86.4525,Ludington,MI,disk,300,video over lk. mi. +2004-09-05,42.9222222,-88.0994444,Tess Corners,WI,formation,420,Bright Lights in formation +2004-09-05,36.3133333,-82.3536111,Johnson City,TN,fireball,20,Shooting star? +2004-09-05,38.3363889,-75.0852778,Ocean City,MD,unknown,600,The crafts are not moveing and have flickering lights +2004-09-05,33.0461111,-96.9938889,Lewisville,TX,oval,900,long oval cloud with red light in the exact middle +2004-09-05,33.5538889,-117.2130556,Murrieta,CA,other,120,Flying Spider +2004-09-05,37.775,-122.4183333,San Francisco,CA,light,20,Satellite-like light in night sky making unexpected direction and speed changes +2004-09-05,26.1,-98.2627778,Hidalgo,TX,fireball,15,Fireball flying over deep south Texas. +2004-09-05,29.3102778,-100.4175,Brackettville,TX,fireball,2,large orange ball with green tail turning into an orange tail +2004-09-05,41.6269444,-79.6738889,Titusville,PA,light,180,Bright object traveling NE to SW +2005-09-05,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,20,Early morning Labor Day, I was sitting on my front step looking at the stars. I focused on 3 stars in a triangular format. That's when +2005-09-05,38.05,-85.5458333,Mount Washington,KY,disk,25,I saw a metallic disk over the shoulder of a realestate agent in the distance in Mt. Washington,KY on 9-5-05 +2005-09-05,44.0522222,-123.0855556,Eugene,OR,light,1,Video on infrared records something +2005-09-05,34.2694444,-118.7805556,Simi Valley,CA,light,10,Blue Dot like light +2005-09-05,32.7355556,-97.1077778,Arlington,TX,fireball,60,A distant explosive sound as the area around me turned deep blue for a second and then I witnessed two bright lights in the sky. +2005-09-05,47.7625,-122.2041667,Bothell,WA,light,240,Star-like object changing luminosity while meandering from SE to NW direction before vanishing +2005-09-05,40.7372222,-114.0366667,Wendover,UT,cigar,30,We were headed on 80east heading east and we saw this very bright flashing light that just sat in the sky +2005-09-05,33.0183333,-80.1758333,Summerville,SC,triangle,120,My 2 children and I were heading out to the store. We live near an air force base so we constantly watch the skies for odd aircraft. +2006-09-05,36.3833333,-85.3230556,Livingston,TN,light,120,Brilliant white light seen in the night sky over a rural area in Tennessee +2006-09-05,34.0047222,-118.43,Mar Vista (West Los Angeles),CA,light,20,Two of us witnessed a horizontal pulsating red light moving south at low altitude and low speed and then disappeared. +2006-09-05,32.7947222,-116.9616667,El Cajon,CA,formation,30,sting ray shaped objects fly in formation over el cajon +2006-09-05,39.8208333,-84.0194444,Fairborn,OH,triangle,30,Black Triangle Clearly Spotted In Ohio +2006-09-05,32.9477778,-112.7161111,Gila Bend,AZ,fireball,600,Amber lights in southern night sky near Gila Bend, AZ. ((NUFORC Note: Possible military flares at Gila Bend firing range?? PD)) +2006-09-05,34.0633333,-117.65,Ontario,CA,light,600,Bright Orange light moving across the sky Eastward vieiwing from Ontario, CA. +2006-09-05,37.3394444,-121.8938889,San Jose,CA,light,5,strange bright light in north east sky +2007-09-05,44.9430556,-123.0338889,Salem,OR,rectangle,1800,A large, bright orange rectangle appeared in front of the mountains, changed shape and produced orbs. +2007-09-05,40.7583333,-82.5155556,Mansfield,OH,sphere,60,Two small flying steel spheres +2007-09-05,43.4522222,-71.2180556,Alton,NH,cigar,60,Possible Missile Test. +2007-09-05,42.5277778,-92.4452778,Cedar Falls,IA,light,3,Last Wednesday or Thursday, about 9 PM, I looked out my living room window and saw a ball of light streak across the sky. It was fairly +2007-09-05,39.5297222,-119.8127778,Reno,NV,changing,120,On our vacation my husband and myself were outside on the hotel balcony, where we saw 4 objects rise from a distant mountain. They had +2007-09-05,29.3472222,-99.1411111,Hondo,TX,formation,15,Arc-shaped craft / formation of lights moving at very high speed East to West at low altitude +2007-09-05,33.3941667,-104.5225,Roswell,NM,changing,15,dim lights moving in u shaped formation over Roswell +2008-09-05,32.9411111,-97.1338889,Southlake,TX,unknown,6,A white wavy oval that is fast moving and silent seen by two people. +2008-09-05,40.3280556,-79.6155556,Jeannette,PA,circle,30,Orange globe moving slow just fazed out. +2008-09-05,33.4222222,-111.8219444,Mesa,AZ,changing,600,Five very bright, solid yellowish, to golden lights that changed shape and format. +2008-09-05,31.4227778,-103.4927778,Pecos,TX,circle,180,((HOAX??)) i was at work and a friend of mine had recorded it i was working at a prison and i was the recreation officer at the time +2008-09-05,33.6102778,-117.7244444,Laguna Woods,CA,circle,1800,Circular Ring having blinking colored lights, hovering, doing roller-coaster type dips, turns, climbs. (( Model airplane.)) +2008-09-05,34.2283333,-92.0030556,Pine Bluff,AR,formation,40,There was a glowing V-shaped formation flying very high and very fast. +2008-09-05,33.5538889,-117.2130556,Murrieta,CA,light,600,extremely rapiding blinking red light meets with other, then both go back from original spotted location. +2008-09-05,32.7152778,-117.1563889,San Diego,CA,circle,180,Two fireballs in the night sky in San Diego +2009-09-05,39.6836111,-75.75,Newark,DE,triangle,2400,Orange-ish array of lights cruising over I-95 in Delaware +2009-09-05,47.6588889,-117.425,Spokane (Near),WA,other,1800,My wife, son and myself were going to Spokane Washington to look at some houses that we were going to buy during the first week of this +2009-09-05,38.6447222,-121.2711111,Fair Oaks,CA,oval,5,Shinny disks in the sky. +2009-09-05,27.8002778,-97.3961111,Corpus Christi,TX,other,240,1 Star shaped, dark color, moving slow, making no noise, cloudy morning, moving eratic +2009-09-05,34.1361111,-117.8644444,Glendora,CA,sphere,240,Silver Sphere over looking California wild fires +2009-09-05,43.8013889,-91.2394444,La Crosse,WI,light,1,Extremely bright white light that I captured on camera over the city of La Crosse WI +2009-09-05,39.4666667,-87.4138889,Terre Haute,IN,fireball,600,I dont know what it was. But it looked like something on fire streaking through the sky. It was just like watching a plane go by but wi +2009-09-05,39.7294444,-104.8313889,Aurora,CO,unknown,120,Craft moving from N to S later Flash in sky like star going nova +2009-09-05,40.8822222,-74.0836111,Lodi,NJ,fireball,180,Red glowing object over south eastern sky in Lodi Nj on 9/5/2009 +2009-09-05,43.1547222,-77.6158333,Rochester (Greece),NY,circle,300,Orange objects in sky +2009-09-05,41.4797222,-91.5811111,Riverside,IA,teardrop,120,Two Slow Flying Fireballs Within Seven Minutes +2009-09-05,41.2083333,-78.5758333,Penfield,PA,sphere,120,Bright orange non-blinking ball +2009-09-05,44.8011111,-68.7783333,Bangor,ME,light,1500,Small star-like white light seen 3 separate times, seach time changing direction, travelling straight, and ascending until out of view. +2009-09-05,39.4402778,-84.3622222,Monroe,OH,light,60,My wife and I were driving East on the SE side of Monroe near the Lebanon Correctional Institute (LCI). As I looked out my window (dri +2009-09-05,35.3186111,-82.4611111,Hendersonville,NC,changing,90,Possible UFO sighting over Hendersonville, NC +2010-09-05,35.7719444,-78.6388889,Raleigh,NC,circle,7200,we saw 2 objects in the sky one night flashing colors and not moving. ((NUFORC Note: Possible "twinkling" star, we suspect. PD)) +2010-09-05,46.0086111,-122.8433333,Kalama,WA,unknown,10,Objects seen on clear night sky 30 miles north of Portland, Oregon. +2010-09-05,41.9994444,-88.145,Hanover Park,IL,triangle,420,7 ufo triangles HUGE over hanover park, then stopped in mid air and rotated lights to look like constelations! +2010-09-05,39.6291667,-75.6586111,Bear,DE,sphere,30,a round metallic object flying over bear del. disappeared and reappeared changed direction and flew away at incredible speed +2010-09-05,34.0736111,-118.3994444,Beverly Hills,CA,light,900,6-8 lights flying in formations above LOS ANGELES +2010-09-05,43.3219444,-70.5813889,Wells,ME,fireball,240,Orange soundless object sceen in night sky above southern costal Maine town in early September 2010. +2010-09-05,47.3075,-122.2272222,Auburn,WA,light,900,Two bright lights flying circles around each other +2010-09-05,43.0386111,-78.8644444,North Tonawanda,NY,triangle,1200,4 objects appeared in the eastern sky approx 30 degrees above the horizon near jupiters position at the time.they were very bright as t +2010-09-05,30.4211111,-87.2169444,Pensacola,FL,light,60,I saw a slow moving light that went out, and then a bit later came back on, and then went It was traveling north, high up and slow. +2010-09-05,33.9611111,-116.5008333,Desert Hot Springs,CA,triangle,3,Wedge-triangle shape transparent dark cloud with entrails following movement.West to East over foothills of Joshua Tree +2010-09-05,42.6727778,-88.5444444,Elkhorn,WI,unknown,40,Orange light travels in straight trajectory north over county fair in Wisconsin. +2010-09-05,39.0516667,-84.5341667,Fort Wright,KY,fireball,600,Orange orb over Cincinnati +2010-09-05,39.1619444,-84.4569444,Cincinnati,OH,egg,4,During the WEBN 2010 Fireworks show a bright white light flys directly thourgh the show and was recorded on my dvr. +2010-09-05,39.2191667,-121.06,Grass Valley,CA,sphere,300,Two objects flying in formation. +2010-09-05,39.8963889,-82.4202778,Thornville,OH,formation,180,10-12 hoovering balls of light +2010-09-05,43.1547222,-77.6158333,Rochester,NY,circle,45,Orange circular light , it hovered for a time before moving away at a high rate of speed +2010-09-05,46.5330556,-93.71,Aitkin,MN,fireball,60,Glowing in the tree line was an amazing aluminous orange fireball . +2011-09-05,42.8713889,-112.4447222,Pocatello,ID,light,900,Not quite a satellite. +2011-09-05,29.7352778,-94.9772222,Baytown,TX,unknown,180,Three large bright lights in the sky, unexplainable. +2011-09-05,45.5236111,-122.675,Portland,OR,light,5,bright light that looked like a satellite then shoots straight up leaving a streak behind momentarily +2011-09-05,47.6063889,-122.3308333,Seattle,WA,light,60,Eight orange lights appeared over downtown Seattle and then disappeared. +2011-09-05,25.7738889,-80.1938889,Miami,FL,circle,20,Bright light splits in two +2011-09-05,44.0522222,-123.0855556,Eugene,OR,light,2,Bright fast moving light +2011-09-05,42.2711111,-89.0938889,Rockford,IL,light,90,Bright orange object seen over Rockford, IL, many witnesses. +2011-09-05,39.9611111,-82.9988889,Columbus,OH,unknown,120,Set of bright lights close together (as if on one craft), stationary in sky, and then dart southward and disappear. +2011-09-05,31.1238889,-97.9027778,Copperas Cove,TX,triangle,30,Triangle shaped craft with six lights flying silently at approx 250 mph at 550 ft traveling north to south. +2011-09-05,44.6497222,-93.2425,Lakeville,MN,fireball,300,Red light object in the Minnesota sky +2011-09-05,33.9533333,-117.3952778,Riverside,CA,light,4,White dot flying at high speed on Labor Day evening in Riverside, CA +2011-09-05,37.1305556,-121.6533333,Morgan Hill,CA,sphere,300,Sphere changing color and slowly darted around +2012-09-05,46.9966667,-120.5466667,Ellensburg,WA,triangle,180,Bright yellow orbs in a triangular formation with blue and red lights flying close to the ground in Ellensburg, WA +2012-09-05,34.4113889,-118.5391667,Saugus,CA,disk,600,It showed up and disappeared then left +2012-09-05,33.7091667,-117.9527778,Fountain Valley,CA,oval,30,It was a freaky experiance and I hope nothing happend to us during the visual +2012-09-05,46.1469444,-122.9072222,Kelso,WA,oval,6,I was in my car at a local business waiting for the replenishing crew. Looking at the stars I noticed what looked like a satellite movi +2012-09-05,37.2152778,-93.2980556,Springfield,MO,formation,600,Looked like a Helicopter but made no sound, flying very low, very bright lights that made a haze, electronic interference. +2012-09-05,43.1230556,-71.0119444,Lee,NH,light,300,Orb-like lights in or on West Mill Pond at dawn +2012-09-05,40.9597222,-72.9966667,Miller Place,NY,diamond,90,Bright white object with flashing red and blue lights seen over Miller Place, New York. +2012-09-05,34.0027778,-84.1447222,Duluth,GA,other,480,Bright yellow lights moved up and down in a zig-zag spiraling motion then disappeared. +2012-09-05,38.4325,-82.0202778,Hurricane,WV,triangle,360,Large triangle red lights seen by many +2012-09-05,39.7683333,-86.1580556,Indianapolis,IN,unknown,4,Large falling object that doesn't make a sound. +2012-09-05,47.3075,-122.2272222,Auburn,WA,chevron,120,Objects raised out of the east there were 2 bright orange lights that were chevron or circular in shape +2013-09-05,35.9411111,-80.4094444,Advance,NC,diamond,420,UFO traveling north-south flys over rural farm area slowly and silently. +2013-09-05,40.8,-96.6666667,Lincoln,NE,sphere,3600,Hovered in the sky with flashing lights. +2013-09-05,35.245,-81.3413889,Kings Mountain,NC,other,60,"T-Shaped" lighted craft travels North-South across sky at low altitude, makes very soft, hollow whistling noise, sky flashes. +2013-09-05,39.4997222,-76.6413889,Hunt Valley,MD,sphere,60,Shiny sphere seen over 83 south at Hunt Valley, MD 9/5/2013 at 7:16am. +2013-09-05,40.4163889,-120.6519444,Susanville,CA,cigar,300,It turned sideways while still moving in the same direction. +2013-09-05,39.7391667,-104.9841667,Denver,CO,disk,2,Ufo shoofing thru the sky during a national broadcadt. (NFL) 9/5/13. +2013-09-05,35.9411111,-80.4094444,Advance,NC,triangle,420,Diamond craft looks like a very large bright red star then flys over us with blinking multicolored lights on stroke of midnight. +2013-09-05,33.3527778,-111.7883333,Gilbert,AZ,unknown,5,Tiny cluster of white orbs one by one quickly appearing a disappearing. So close together it may have looked like one object. +2013-09-05,36.3883333,-86.4466667,Gallatin,TN,circle,1800,Circular objects, bright, reflective, appearing then vanishing. +2013-09-05,37.0583333,-120.8488889,Los Banos,CA,triangle,300,Lighted object hovering over lonely country road. +2013-09-05,33.9791667,-118.0319444,Whittier,CA,circle,300,2 Large round red pulsating objects in the sky appeared to be on fire. Seen by 5 people in Whittier, CA. +2013-09-05,42.0866667,-71.475,Bellingham,MA,circle,25,Large Red dot traveling north to south 3x plane beacon size. +2013-09-05,35.7913889,-78.7813889,Cary,NC,circle,2700,Bright glowing circular object south of Raleigh Durham Airport in Cary, NC. +2013-09-05,38.5816667,-121.4933333,Sacramento,CA,changing,600,Bright white pulsating light, changing in shape and color (white, red, and blue). +2013-09-05,40.6883333,-75.2211111,Easton,PA,fireball,180,Round object high in sky with flames coming from it. +2013-09-05,34.6777778,-76.9511111,Emerald Isle,NC,circle,120,Emerald Isle orange lights. +2013-09-05,47.9791667,-122.2008333,Everett,WA,triangle,60,All week long, multiple sightings, orange/red/green with stop and go flight patterns +2013-09-05,33.8925,-86.7577778,Hayden,AL,unknown,300,Approx. 21:00 hrs seen two lights very close together with lights(white&red) blinking left to right in odd sequence unknown shape. +2013-09-05,42.0252778,-121.5994444,Merrill,OR,flash,14400,White flashes of light over mountains in Southern Oregon. +2013-09-05,64.8377778,-147.7163889,Fairbanks,AK,disk,300,HUGE SAUCER FLYING INTO FORT WAINRIGHT +2013-09-05,40.4405556,-79.9961111,Pittsburgh,PA,unknown,60,Three amber lights were moving slowly across the night sky of Pittsburgh a little before 10PM. +2013-09-05,42.6288889,-78.7377778,Boston,NY,oval,2,Bright light traveled quickly across sky. +2013-09-05,39.7686111,-76.68,Shrewsbury,PA,circle,120,Bright orange round light in sky moving slowly in a south to south west direction. +2013-09-05,42.1013889,-72.5902778,Springfield,MA,changing,300,It wasn't a plane, planes don't hover.it wasn't a helicopter either it was silent. +2013-09-05,33.6058333,-78.9733333,Surfside Beach,SC,disk,300,2 orange orbs seen in the night sky. +2013-09-05,43.0986111,-77.4422222,Fairport,NY,oval,1200,Flying orb of light casts an eerie silence. +1966-09-06,46.2397222,-119.0994444,Pasco,WA,disk,120,I WAS WITH MY FGIFL FRIEND AND HER PARENTS AT A SMALL PICNIC GROUND NEAR PASCO WA.IT WAS ALREADY DARK OUT , I WAS FACING NORTH SHE WAS +1967-09-06,40.2680556,-96.7466667,Beatrice,NE,disk,120,sighting of disc in Beatrice Nebraska +1989-09-06,47.6105556,-122.1994444,Bellevue,WA,sphere,25,A huge Globe-shaped object is seen at very high altitude-stationary and soundless in the hazy, evening sky of late summer +1992-09-06,46.2272222,-116.0283333,Kamiah,ID,circle,600,at first there were window size lights, then a round lighted object, then the round object by itself that shot from ground level to the +1993-09-06,47.6063889,-122.3308333,Seattle,WA,triangle,6,lights over Seattle +1995-09-06,43.6952778,-71.6311111,Ashland,NH,cylinder,19800,Breathable fluid tank; multiple species; peaceful agenda +1996-09-06,40.8852778,-73.9527778,Englewood Cliffs,NJ,chevron,600,On August 6th of 1996, while driving North on Route 9-W from Fort Lee, NJ to Englewood Cliffs NJ, I observed (what appeared to be) a la +1997-09-06,47.3483333,-122.1136111,Covington,WA,triangle,900,Triangle shaped with six lights underneath. One side of the triangle was red, one other side was blue. Both of these sides had a hori +1998-09-06,35.3733333,-119.0177778,Bakersfield,CA,other,30,Dark oval with something attached to bottom of object about half the size as the top object hanging in a "j" type. +1998-09-06,34.7391667,-112.0091667,Cottonwood,AZ,other,300,Star shaped light turning red then white jumping across the sky split into 3 white lights then returned to red star +1998-09-06,39.1141667,-94.6272222,Kansas City,KS,disk,60,My mother and I saw a disk shaped object rise above the horizon, east of 78th street on I-70. Object then turned into a bluish white li +1998-09-06,43.4666667,-112.0333333,Idaho Falls,ID,other,120,Very large wedge (flying wing) with tall winglets (Looked to be about 15 to 20 feet tall)at each wing tip. There were what looked to be +1999-09-06,35.265,-116.0736111,Baker (Approx. 25 Mi. S Of),CA,oval,30,OVAL OBJECT TRAVELING IN THE SKY AT A HIGH RATE OF SPEED THEN SHOT DOWNWARDS INCREASED ITS SPEED THEN TOOK OFF LEAVING A TRAIL BEHIND I +1999-09-06,44.98,-93.2636111,Minneapolis,MN,unknown,2,Fast moving blue-white light. +1999-09-06,32.9536111,-96.89,Carrollton,TX,flash,120,My boyfriend and I witnessed an intense flash of light yellowish,orange and I thought a plane exploded in midair. +1999-09-06,44.8519444,-71.5522222,Columbia,NH,light,300,Very bright stationary light which decreased in intensity just over wooded ridge. +1999-09-06,35.1894444,-114.0522222,Kingman (About 20 Miles,nw Of O The W Of Hyw 93),AZ,fireball,240,At first the size o a pee, comming from the north. It stoped about a maile away ( size )Now of basketball. Then it went to the East.Mov +1999-09-06,33.1383333,-95.6008333,Sulphur Springs,TX,light,60,Bright light passed overhead. +1999-09-06,42.4055556,-83.0969444,Highland Park,MI,triangle,45,The craft was larger, and flying lower than any aircraft I've ever seen and produced absolutely no sound. +2000-09-06,41.0983333,-83.9847222,West Leipsic,OH,light,1080,Observed two bright lights from vehicle and chased them until they went out of sight in different directions. +2000-09-06,42.9072222,-70.8125,Hampton Beach,NH,circle,4,Daylight sighting of UFO near water +2000-09-06,47.2530556,-122.4430556,Tacoma,WA,fireball,600,on 09-06-00 @ approximately 19:15 hours Our Son spotted what he called a "falling star", However the object appeared to be make a contr +2000-09-06,42.9638889,-78.7380556,Williamsville,NY,light,12600,We observed 3 objects with multi-color lights which were stationary over our house for 3 1/2 hrs. +2000-09-06,38.9488889,-83.4058333,Peebles,OH,fireball,120,two object appox.500 to 1000 feet in the air ,moving at high rate of speed . no noise detected at all , from either witness. extremely +2000-09-06,33.6125,-117.7119444,Laguna Hills,CA,light,1500,In so. california, four unidentified lights flew from the northwest in strange patterns, and then were followed by airplanes from NE. +2001-09-06,42.3952778,-94.6336111,Rockwell City,IA,triangle,240,A silent,slow,low to the ground,dull-black triangle craft with round unlit red lightes. +2001-09-06,38.005,-121.8047222,Antioch,CA,fireball,5,Sept 6 2001 4:50 a.m. Contra Costa co. Ca Looked like shooting star but right to left.Slight left turn before gone. +2001-09-06,41.0533333,-73.5391667,Stamford,CT,fireball,30,fire enter atmosphere ,everybody saw... +2001-09-06,39.1155556,-77.5638889,Leesburg,VA,cigar,300,Large aircraft was ascending and emitted bright white trail of smoke that stayed luminated for 45 minutes. +2001-09-06,39.4141667,-77.4108333,Frederick,MD,cigar,1800,While commuting to Bethesda Md. from Hagerstown Md. I noticed a fluorescent cloud in the eastern sky. This cloud glowed with light simi +2001-09-06,43.9827778,-124.0986111,Florence,OR,circle,30,Bright red fire ball in front yard +2001-09-06,37.5536111,-77.4605556,Richmond,VA,changing,720,White/silver floating object over downtown sky of Richmond, Virginia, high altitude, stationary and mobile behaviors. +2001-09-06,41.1383333,-81.8638889,Medina,OH,unknown,900,THE SOUNDS OF TEN JET ENGINES HUVERING OVER MY HOUSE. +2001-09-06,41.7858333,-88.1472222,Naperville,IL,light,30,Intense display of stationary light in 3 phases of color shifting +2001-09-06,38.9980556,-77.2886111,Great Falls (Fairfax County),VA,light,30,Tri-Colored UFOS. +2001-09-06,42.4775,-83.0277778,Warren,MI,disk,300,Large UFO-13 Mile and Hayes area Warren, MI. +2001-09-06,43.0630556,-83.8511111,Flushing,MI,light,10,We are on an airline flight path for Toronto and I watch for planes going east and west. While walking down my drive way I looked towar +2002-09-06,39.9866667,-83.0616667,Marble Cliff,OH,triangle,600,musical triangular cratf +2002-09-06,39.9611111,-82.9988889,Columbus,OH,unknown,120,In Columbus, Ohio we heard music and saw flashing lights that appeared to be coming from something flying through our neighborhood. +2002-09-06,38.9716667,-95.235,Lawrence,KS,circle,120,5 objects of circular shape make a W shape in the sky +2002-09-06,39.1625,-76.625,Glen Burnie,MD,cylinder,10,Cylinder light disapears without a trace Near BWI airport in MD. Cylinder gets skinnier and then disapears like when turning off a TV. +2002-09-06,40.2736111,-76.8847222,Harrisburg,PA,changing,180,3 lights in the sky which stayed lit for 2/3 seconds in one pattern, disappeared and reappeared in different patterns... +2002-09-06,40.6263889,-105.1711111,Bellvue,CO,teardrop,120,Teardrop shape that created a tail flying low and parallel to the gound. +2002-09-06,39.945,-105.8166667,Fraser,CO,triangle,60,Triangular shape with long, blunt nose; light fluorescent green; appeared suddenly, moving east. +2002-09-06,44.2911111,-105.5016667,Gillette,WY,fireball,5,Neon green flying object seen over Gillette, Wyoming +2002-09-06,44.4908333,-103.8588889,Spearfish,SD,cigar,120,I saw a cigar shaped, glowing blue object travelling at a high rate of speed. +2002-09-06,41.0358333,-107.6569444,Baggs,WY,oval,60,blue florecent oval with a red long tail,saw it out of a window,went from the west to the east at high rate of speed,went into a cloud +2002-09-06,44.7972222,-106.9555556,Sheridan,WY,oval,20,blue-green bright oval was spotted 20 miles south of Sheridan, WY descending to earth +2002-09-06,33.4222222,-111.8219444,Mesa,AZ,circle,120,At about 10 PM I witnessed several small circles of light moving around in the sky, (South West.) I immdediatly got some friends who li +2002-09-06,38.9716667,-95.235,Lawrence,KS,triangle,15,Chevron or V shaped formation of hazy (no lights) objects silently moving at incredible speed. +2002-09-06,41.4994444,-81.6955556,Cleveland (Shaker Heights),OH,formation,60,3 "stars" formed a triangle and moved and then disapeared one by one. +2002-09-06,43.801944399999996,-83.0008333,Bad Axe,MI,triangle,60,was sitting on front porch saw a triangular shaped craft pass from north to south,had three lights that were dim like a satalite flew v +2003-09-06,40.7141667,-74.0063889,New York City,NY,other,3,A single green light going very fast and disapearing +2003-09-06,40.7683333,-74.1458333,Kearny,NJ,circle,3,the craft in the sky is like a spinning orb with its lights of red, yellow, and green. +2003-09-06,33.6888889,-78.8869444,Myrtle Beach,SC,disk,600,We saw the Saucer, when the sun bounced on it, and sit in the sky for around 5 min.The other Round lights would swirl, and split apart +2003-09-06,35.6008333,-82.5541667,Asheville,NC,unknown,30,What WAS that? +2003-09-06,33.8358333,-79.0480556,Conway,SC,chevron,900,conway sc observed triangeler object for appox 15 it moved erracit and left at a very high rate of speed +2003-09-06,40.7141667,-74.0063889,New York City,NY,cigar,3600,Lights over New York City +2004-09-06,28.0391667,-81.95,Lakeland,FL,light,180,Went over house during hurricane +2004-09-06,38.0683333,-78.8897222,Waynesboro,VA,cigar,3600,Spinning red cigar in gyrosphere. +2004-09-06,40.7141667,-74.0063889,New York City,NY,light,3000,5:00 AM Monday Sept. 6, 2004 - 13 orbs of light over 8th Avenue at 26th St. in Manhattan ((NUFORC Note: Venus and stars?? PD)) +2004-09-06,30.2669444,-97.7427778,Austin,TX,triangle,30,slow silent lighted silver triangle pre-dawn northwest Austin going south to north at steady rate of speed +2004-09-06,45.4316667,-84.9919444,Harbor Springs,MI,light,1800,bright light that seem to hover and fall repeatedly. +2004-09-06,27.8002778,-97.3961111,Corpus Christi,TX,triangle,180,My daughter (age 2) and I were sitting outside, when she pointed out what she thought were airplanes. We have made this a game and pla +2004-09-06,33.5386111,-112.1852778,Glendale,AZ,sphere,20,I wasn't going to fill out a report at all but I have had 2 sightings of 2 different objects in 3 days! I was outside working at about +2004-09-06,40.7944444,-80.1369444,Zelienople,PA,other,60,On Interstate 79, we spotted a Y shaped white/silver craft above the treeline. It was making unbelievable circular maneurvers +2004-09-06,32.8438889,-97.1427778,Bedford,TX,sphere,50,Small white sphere noticed in the sky on Labor day in the Hurst-Euless-Bedford area. +2004-09-06,34.1283333,-117.2077778,Highland,CA,disk,300,dark disk in sky towards san bernardino mountains +2004-09-06,47.6063889,-122.3308333,Seattle,WA,teardrop,4,orange-yellow teardrop flying very fast over south seattle +2004-09-06,37.5530556,-83.3836111,Jackson,KY,triangle,10800,The triangular object's had a bright white light ,them a red and blue flashing lights. The white flashing light was more brilliant tha +2004-09-06,39.6133333,-105.0161111,Littleton,CO,other,5,Diffuse coherent ghostlike object seen rapidly crossing night sky. +2004-09-06,26.7052778,-80.0366667,West Palm Beach,FL,oval,120,SIGHTING AFTER HURRICAN IN FL +2005-09-06,37.1305556,-121.6533333,Morgan Hill,CA,light,60,A white bright star like object moving slowly in the 15 degrees above the horizen from Henry Co State Park! +2005-09-06,41.1572222,-85.4883333,Columbia City,IN,triangle,60,appeared to rise up in south east heading west very very low over trees and houses in neighborhood. 3 lights in "V" form, no sound as o +2005-09-06,40.0336111,-76.5047222,Columbia,PA,disk,30,9/6/05 05:30 AM Columbia, PA 30 second duration, disk-shaped craft with lights flying at low altitude +2005-09-06,34.2255556,-77.945,Wilmington,NC,other,300,UFO in the vicinity of chemtrail +2005-09-06,35.9525,-80.84,Olin,NC,unknown,6,While scanning the sky with binoculars for the planet Venus a strange object flew into the field of view. +2005-09-06,31.4722222,-90.8966667,Meadville,MS,other,360,Please don't laugh at this +2005-09-06,31.5491667,-97.1463889,Waco,TX,light,120,descending blue light changes colors stops then rapidly disappears heading nothwesterly in waco,tx. +2005-09-06,32.6858333,-117.1822222,Coronado,CA,cigar,900,4 bright flashing light seen at a very high altitude in south Coronado bay area +2005-09-06,47.6063889,-122.3308333,Seattle,WA,triangle,10,Triangular craft w/ large,dim yellow-orange lights @ corners over N. Seattle 09/06/05 +2005-09-06,33.4483333,-112.0733333,Phoenix,AZ,unknown,300,Nighttime lights moving over the Northwestern Valley of Phoenix. +2005-09-06,39.5533333,-77.9952778,Hedgesville,WV,light,1800,a star like light moving irratically and changing colors (red,green/blue, white) +2006-09-06,38.6269444,-88.9455556,Salem,IL,triangle,300,Black triangular shaped aircraft sweeping the ground with a spot light over I-57 near Salem, Illinois. +2006-09-06,45.4872222,-122.8025,Beaverton,OR,unknown,30,UFO looking like a star flew overhead. Only one sighted. +2006-09-06,39.4652778,-95.7361111,Holton,KS,unknown,2400,Looking towards the west northwest just above the horizon it lookes like a bright star but what caught my eye it was green and red I w +2006-09-06,39.3372222,-85.4836111,Greensburg,IN,oval,2400,its real . Lights blue yellow and green You coule hear a voom and a whistle 30 foot above my car my friend works at nasa they are lying +2007-09-06,42.3383333,-83.8886111,Dexter,MI,formation,480,Sighting on September 6th 2007 Dexter MI I was coming home from work at 1:00am traveling east on I-94 toward Ann Arbor when I noticed +2007-09-06,39.6477778,-104.9872222,Englewood,CO,cylinder,1200,In the Englewood CO. sky was a stationary flat-black cylinder about 500-600 feet above the ground +2007-09-06,33.4511111,-79.5611111,Andrews,SC,light,60,Four, football field bright, lights over the sky of Andrews. +2007-09-06,43.2219444,-71.7144444,Contoocook,NH,triangle,300,Three steady orange lights in a triangular formation, much bigger than a conventional aircraft, moving slowly from east to north. +2007-09-06,33.6058333,-78.9733333,Surfside Beach,SC,light,2,3 orange lights fading in and out at different locations in the sky at Surfside Beach, South Carolina. +2007-09-06,33.6888889,-78.8869444,Myrtle Beach,SC,circle,120,Red/Orange lights over the ocean +2008-09-06,41.1669444,-74.0436111,Pomona,NY,light,60,Large Ball of light hovering near palisades pkwy exit 12 northbound +2008-09-06,37.7975,-121.215,Manteca,CA,unknown,600,big blob of blinking rainbow lights +2008-09-06,36.175,-115.1363889,Las Vegas,NV,light,600,PILOT OBSERVATION: Four lights climb and pace commercial airline flight. +2008-09-06,35.6225,-117.67,Ridgecrest,CA,light,15,Light went from dim to very bright and then to disappearing into the nights sky. +2008-09-06,35.6225,-117.67,Ridgecrest (Near),CA,unknown,15,From Dim To Bright To Dim +2008-09-06,28.2394444,-82.3280556,Wesley Chapel,FL,changing,14400,Saw 4 lights moving around in the night sky (2 white and 2 blue) for about 4 hours in the same area +2008-09-06,41.9441667,-84.8838889,Quincy,MI,formation,240,seen 5 flying somethings in the air tonight +2008-09-06,30.4505556,-91.1544444,Baton Rouge,LA,triangle,60,A V shaped object with 5-6 "lights" running on either side and a solid mass in the middle flying over Baton Rouge on September 6, 2008. +2008-09-06,35.9605556,-83.9208333,Knoxville,TN,light,600,White lights over Knoxville TN +2008-09-06,35.6266667,-120.69,Paso Robles,CA,cigar,12,fireball followed by unusual aircraft +2009-09-06,25.7738889,-80.1938889,Miami,FL,light,15,Green Trail left my Fast Moving Ship over Miami +2009-09-06,41.6997222,-93.0477778,Newton,IA,oval,180,3 bright orange oval shaped craft moving slowley over interstate 80 in Newton, Iowa +2009-09-06,35.5847222,-80.8102778,Mooresville,NC,disk,7200,UFO over Lake Norman, NC +2009-09-06,44.6563889,-83.2947222,Harrisville,MI,circle,120,Orange oscillating light object silently tracks South to north near Sturgeon Point MI. +2009-09-06,32.9375,-98.2466667,Graford,TX,sphere,240,Orange sphere-like form moves at constant altitude and speed without any sound over Possum Kingdom Lake +2009-09-06,40.4591667,-90.6716667,Macomb,IL,fireball,45,Flaming spherical object flying below cloud cover from east to west in a slow steady horizontal motion. +2009-09-06,27.2936111,-80.3505556,Port Saint Lucie,FL,light,7200,four white lights, one larger, three smaller +2009-09-06,44.9444444,-93.0930556,Saint Paul,MN,formation,300,4 flashing lights moving in a formation over St. Paul, MN. +2009-09-06,43.0011111,-84.5591667,St. Johns,MI,oval,120,A red fiery or lit strobe moved slowly past my treetops. +2009-09-06,26.2030556,-98.2297222,Mcallen,TX,flash,240,saw a blinking object in the sky +2009-09-06,43.1705556,-78.6905556,Lockport,NY,flash,180,I saw 3 Strobe like objects moving very fast. +2010-09-06,40.7683333,-74.1458333,Kearny,NJ,triangle,1200,Triangular shaped UFO flying over Kearny, NJ +2010-09-06,40.6955556,-73.3261111,Babylon,NY,disk,1200,Pulsating light/saucer seen darting over Cedar Beach, Babylon, NY +2010-09-06,41.1844444,-73.1336111,Stratford,CT,fireball,180,I saw the object hurdle through the sky very swiftly. It was a bright, flaming orange and reddish color, and appeared to have a tail to +2010-09-06,41.4091667,-112.0352778,Willard,UT,light,300,Curiously suspended lights in Box Elder County, UT +2010-09-06,29.7630556,-95.3630556,Houston,TX,triangle,900,Five Triangular shaped spacecraft seen over Memorial Park @ 8:30 pm Labor Day 9/06/10. +2010-09-06,35.925,-86.8688889,Franklin,TN,disk,240,5 gold lights in Franklin sky +2010-09-06,32.895,-97.5455556,Azle,TX,unknown,6,fast moving object over azle texas +2010-09-06,41.3502778,-83.1219444,Fremont,OH,light,300,Two large bright lights in midnight sky. +2010-09-06,39.3508333,-101.7097222,Goodland,KS,sphere,10,Green orb that seemed to fall in slow motion. +2010-09-06,41.0813889,-81.5191667,Akron,OH,triangle,40,quit, triangular shaped but elongated. Lights on three corners. Huge! +2011-09-06,37.6922222,-97.3372222,Wichita,KS,light,30,Dim slow moving ball of light suddenly very bright white turning 90° and shooting straight up. +2011-09-06,33.5966667,-83.8602778,Covington,GA,triangle,15,Black triangle with red blue and white lights. Did not move stayed over the trees then turned out its lights. +2011-09-06,47.7425,-121.9844444,Duvall,WA,triangle,300,The bright red object moved at speed from one place to enother then stop and started again - with no sound at all. +2011-09-06,38.6822222,-104.7002778,Fountain,CO,unknown,300,5 Red light object floating over Fountain, CO +2012-09-06,35.3338889,-98.1302778,Cogar,OK,circle,180,Orange circular UFO lands 20 feet in front of woman in Caddo County Oklahoma. +2012-09-06,38.2558333,-119.2302778,Bridgeport,CA,circle,7200,For 2 consecutive mornings 9/6/12 and 9/7/12 in the eastern sky we spotted what we believed to be a star in broad daylight. As the clou +2012-09-06,41.6458333,-70.6188889,North Falmouth,MA,unknown,60,Driving home from work, saw a huge black object in the sky with small green lights all over the base of the object. It was completely s +2012-09-06,36.7797222,-89.3855556,East Prairie,MO,sphere,600,Orange orb floating low and slow. +2012-09-06,45.6797222,-111.0377778,Bozeman,MT,flash,2,There was a blue flash south of Bozeman, MT that ended with a blue light dropping downward. +2012-09-06,43.1705556,-78.6905556,Lockport,NY,circle,300,One the bike ride home from the store 2 blocks from my house i seen a firey orangish object flying above my neighborhood. I seemed to b +2012-09-06,40.0227778,-82.4447222,Heath,OH,disk,120,4 witnesses of a UFO +2012-09-06,40.7141667,-74.0063889,New York City (Ozone Park) (Queens),NY,fireball,600,Four orange fireball looking objects floating in sky, no noise, flew away one at a time +2012-09-06,38.4219444,-77.4086111,Stafford,VA,light,120,Bright white light, moved in straight line from south to north, just disappeared. Stafford, VA +2012-09-06,30.2669444,-97.7427778,Austin,TX,triangle,600,Slow moving, solid trinagle (no wings) with green and red lights. ((NUFORC Note: Green/red is not inconsistent with an aircraft. PD)) +2012-09-06,40.9866667,-75.195,Stroudsburg,PA,formation,600,Two witnesses found 7-8 UFOs in the Poconos with a surprising 'firecracker' from the sky in tandem. +2013-09-06,33.3244444,-96.7841667,Celina,TX,sphere,900,Silent Orange Sphere without Landing Lights. +2013-09-06,39.7172222,-74.9697222,Sicklerville,NJ,fireball,180,8 Formation fireballs with 2 distinct lights IN each one then a 9th that came later. +2013-09-06,40.8,-96.6666667,Lincoln,NE,unknown,2700,Round bright white light, moving slowly and effortlessly to the west, hovered in one area for 45min left in opposite direction. +2013-09-06,40.1083333,-83.7525,Urbana,OH,triangle,1200,1 bright strobe 4 orange objects 1 triangular object. +2013-09-06,43.6136111,-116.2025,Boise,ID,fireball,600,There were about 60 of these slowly following each other until they disappeared. Some even split in two. +2013-09-06,44.8586111,-93.6613889,Victoria,MN,other,1200,Blue orbs of light. Several going in a straight north direction. +2013-09-06,39.2952778,-78.6380556,Augusta,WV,cylinder,120,Rod or cylindrical object seen heading from NW to SE. Object was white on either end with a darker division in the center. +2013-09-06,33.7475,-116.9711111,Hemet,CA,unknown,900,Clear view very high altitude erratic light traveled in circular & short/long bursts, many stops/pauses. +2013-09-06,46.2069444,-119.7677778,Prosser,WA,egg,3,I observed a grayish-white, football-shaped object going from SE to NW. +2013-09-06,31.5347222,-103.1258333,Pyote,TX,triangle,2700,Slow black triangle seen multiple times over Pyote Texas. +2013-09-06,34.2072222,-84.1402778,Cumming,GA,disk,900,Two orbs in north georgia sky. +2013-09-06,35.6008333,-82.5541667,Asheville,NC,changing,60,Light, Disk +2013-09-06,45.8527778,-87.0216667,Gladstone,MI,flash,10,Bright white blue flash lights up late night evening sky. +2013-09-06,40.5794444,-75.3411111,Hellertown,PA,fireball,900,Witnessed bright orange fireball with trail descend then hover, move, then hover again over Hellertown, PA. +2013-09-06,44.3616667,-69.1955556,Searsmont,ME,light,1800,A star like object moving quickly and erratically in a specific area of the night sky. +1958-09-07,47.1041667,-97.2177778,Arthur,ND,unknown,900,Two lights of alternating color traveling and stopping at unexplainable rates of speed. +1967-09-07,39.2902778,-76.6125,Baltimore,MD,unknown,300,Strange looking craft and possible lost time +1970-09-07,40.4405556,-79.9961111,Pittsburgh,PA,disk,15,Saucer shaped object with orange lights. +1981-09-07,38.9194444,-97.3708333,Solomon,KS,other,120,it was scary, and i was 5! +1982-09-07,33.7222222,-116.3736111,Palm Desert,CA,disk,30,Five golden (like harvest moon) saucer-shaped objects flying in V-formation from West to East over distant mountain range (15 miles?) +1990-09-07,39.1580556,-75.5247222,Dover (South Of Dover Afb),DE,triangle,60,Evening sighting of UFO at two different locations. +1996-09-07,37.9577778,-121.2897222,Stockton,CA,other,240,awakening to a being in the doorway of my room +1996-09-07,38.6880556,-83.6094444,West Manchester,OH,triangle,1200,Triangular object with orange lights circled group of 4 teens ,hummed and buzzed before exiting town to S. 4 teens joined by 2 adults w +1998-09-07,40.1672222,-105.1013889,Longmont (Approx 8 Miles South Of, Co-I25 Interchg),CO,light,1,In an instant I saw a red "glowing" light streak across 2/3 of the entire western skyline, Western sky above Boulder foothills, taking +1998-09-07,39.4736111,-118.7763889,Fallon,NV,light,180,There were 4 this time , My neighbors ran over to my house beating on the door , I ran outside and everyone was pointing up.They were m +1999-09-07,30.2669444,-97.7427778,Austin,TX,diamond,2700,strange and extremely hypnotizing.Bright red,green,white lights in triangle form.Hovered with sporatic movement. +1999-09-07,44.9430556,-123.0338889,Salem,OR,other,3,large greenish white umbrella shaped object coming in fast left ionized trail. +1999-09-07,43.073055600000004,-89.4011111,Madison,WI,light,300,saw red light over lake. dived into two one changed color revoled around each other. merged togeter shot stight up. +1999-09-07,35.2225,-97.4391667,Norman,OK,unknown,120,While waiting outside of building to clock in we saw a large glowing object with a red tail of fire slowly travel from the west to the +1999-09-07,34.6930556,-91.3136111,Clarendon (North Of),AR,unknown,60,observed an object leaving a contrail and emitting an orange glow +1999-09-07,26.925,-82.3522222,Manasota Key,FL,fireball,60,"It looked like six Jumbo jets flying together inunison, but they were not aircrafts. They were too fast," he said. "They looked like +1999-09-07,27.9472222,-82.4586111,Tampa,FL,other,300,Went out to get paper and saw bright light in the sky. Looked like a huge plane exploding at first. Bright flames at rear bluish in c +1999-09-07,25.7072222,-80.2936111,South Miami,FL,fireball,30,3 blue-green spheres seen approx 0503 on 09/07/99, on 10 o'clock over horizon. +1999-09-07,28.8038889,-81.7258333,Tavares,FL,cigar,180,driving west on s.r. #19 @ 5:00 A.M. ON 9-7-99.on the right windshield area i noticed a low large cigar shaped object with 3 lights (br +1999-09-07,27.7705556,-82.6794444,St. Petersburg,FL,cigar,30,something strange in the sky +1999-09-07,30.3672222,-89.0927778,Gulfport,MS,sphere,300,slow moving bright sphere, traveling due North. Object was followed shortly after by a dim red, much smaller object, traveling much fa +1999-09-07,36.3883333,-86.4466667,Gallatin,TN,cylinder,30,I was driving in a new subdivision when I saw an object flying slowly in the sky. The color and shape of the object was unlike any airc +1999-09-07,38.4088889,-121.3705556,Elk Grove,CA,light,4200,tracked 10 starlike objects across sky 8 were traveling south to north, 1 traveled west to east and one traveled north to south +1999-09-07,45.6366667,-89.4119444,Rhinelander,WI,teardrop,30,shape of teardrop bright green outlined in red going straight across sky it is a very cloudy night lots of lightning the ufo slowly van +1999-09-07,41.2002778,-85.7055556,Pierceton,IN,cone,2700,5 objects n/ne of observation point, minimum movement, appeared to be hovering in circular pattern. Could not estimate distance. +1999-09-07,47.2033333,-122.2391667,Sumner,WA,formation,240,We saw 3 illuminated objects in a 3 point formation cross the night sky. +1999-09-07,44.9430556,-123.0338889,Salem,OR,other,3.5,Green umbrella shaped object coming in from the east and moving directly towards my position.looked like meyeorite except too big and s +1999-09-07,45.4208333,-122.6694444,Lake Oswego,OR,light,300,While listening to Peter Davenport on Art Bell's Show 9-7-99 about the UFO reports out of Oregon, I decided to go outside during the br +1999-09-07,30.2669444,-97.7427778,Austin,TX,unknown,1800,Two objects that would normally be assumed to be stars except too low in the sky, changing colors - blue/green to white, to red. appear +2000-09-07,32.7252778,-114.6236111,Yuma,AZ,circle,600,2 ladies were sitting outside a home when they noticed small airplanes in the distance, then a circle of light came towards them and ap +2000-09-07,33.5386111,-112.1852778,Glendale,AZ,triangle,120,At an intersecton I saw a silent and motionless triangle in the evening sky. +2000-09-07,43.0480556,-76.1477778,Syracuse,NY,triangle,300,I was on I-90 30, miles west of Syracuse, NY when I saw a very big bright light in the distance. As I got closer to it over the course +2000-09-07,36.8572222,-88.3502778,Benton,KY,light,1200,yellow lights,vary in #,hover than go out. In the Eastern sky. +2000-09-07,40.1672222,-105.1013889,Longmont,CO,fireball,1,Fireball sighted in a northerly direction from near Longmont, Colorado. (Clicking "...examples gives "Not Found") +2001-09-07,44.0522222,-123.0855556,Eugene,OR,triangle,5,Big triangle of stars crosses sky. +2001-09-07,36.9786111,-76.4283333,Newport News,VA,flash,5,Bright pinhead flash that grew in size to basketball size and changed colors from white to gaseous green. +2001-09-07,45.6388889,-122.6602778,Vancouver,WA,oval,7,No shape to craft since distance was too great. From my location in east Vancouver. Compass direction of aprx. 140 degrees. Elevation +2002-09-07,47.6063889,-122.3308333,Seattle,WA,triangle,20,Large black triangle w/ 3 lights on tips hovering low over office buildings in downtown Seattle. +2002-09-07,42.2791667,-71.4166667,Framingham,MA,light,90,Three distinct lights traveling west to east. Initially thought to be a satellite until I realized there were actually three separate o +2002-09-07,40.7719444,-73.9305556,Astoria,NY,circle,1800,UFO over Manhattan +2002-09-07,38.4088889,-121.3705556,Elk Grove,CA,light,3600,Red / Orange light in a fixed position +2002-09-07,30.3319444,-81.6558333,Jacksonville,FL,flash,1,Object appeared as a slow moving shooting star, that performed an "S" manuver before vanishing from sight +2002-09-07,36.2,-86.5186111,Mt. Juliet (Near Nashville),TN,light,5,large red lights hovered above dark field, then in the sky looked like star w/red-twinkling lights, saw space-ship thru binoculars +2002-09-07,47.6063889,-122.3308333,Seattle,WA,circle,900,Very large white, green and red light hovering in one position in the southwest sky. Turned off a couple of times, but only for a few +2002-09-07,43.1547222,-77.6158333,Rochester,NY,oval,3600,Ufo's seen hovering around the Rochester area +2002-09-07,41.9902778,-70.9755556,Bridgewater,MA,unknown,60,Three bright objects move across the sky in formation then dissapear. +2002-09-07,43.6105556,-73.1802778,Castleton,VT,light,20,I was watching the northern lights when I saw three lights in a triangular patter heading due south. I abserved them straight above me +2002-09-07,36.1538889,-95.9925,Tulsa,OK,flash,7,Shimmering bluish/green flash in the southeastern sky +2002-09-07,45.9975,-121.5269444,Trout Lake,WA,triangle,20,Triangle formation at trout lake, have video +2002-09-07,34.3580556,-86.2947222,Guntersville,AL,other,300,Two comet-like objects passed in front of us, but each in two different directions (horizontally & ascending) within seconds apart. +2002-09-07,39.0061111,-77.4288889,Sterling,VA,light,3600,Stationary light (flashing red, yellow, and blue) in north-east sky +2002-09-08,38.7316667,-82.9977778,Portsmouth,OH,changing,900,A bright red light hoovering in the sky. +2003-09-07,34.0094444,-118.1044444,Montebello,CA,fireball,3600,Red ball of light over East Los Angeles +2003-09-07,33.0580556,-112.0469444,Maricopa,AZ,light,1800,Bright light moving irregularly. +2003-09-07,40.7694444,-74.0208333,Weehawken,NJ,formation,240,bright orange craft/formation seen in New York vacinity. +2003-09-07,39.7683333,-86.1580556,Indianapolis,IN,sphere,5,Highly metalic sphere appeared from contrail and then went back in and out of view. +2003-09-07,39.4019444,-75.0397222,Millville,NJ,light,60,Bright light low on the horizon with eratic flight path and speeds. +2003-09-07,33.9533333,-117.3952778,Riverside,CA,disk,1800,A disk that stood still. +2003-09-07,29.9688889,-95.6969444,Cypress,TX,circle,1.5,a perfect sphere travels across the face of the full moon under telescope magnification +2004-09-07,42.9038889,-78.6925,Depew,NY,disk,1200,Bright white light with smaller lights circling around it low in the sky. Stayed still. ((NUFORC Note: Venus?? PD)) +2004-09-07,44.6497222,-93.2425,Lakeville,MN,unknown,900,Four sperical orbs rotation counter-clockwise, clockwise, and stationary for about a 15min ((NUFORC Note: Advertising lights?? PD)) +2004-09-07,41.8005556,-73.1216667,Torrington,CT,sphere,15,Star turns to Sphere and takes off +2004-09-07,35.3858333,-94.3983333,Fort Smith,AR,triangle,120,Strange Very Large Trianglar Craft Floating Across the Late Evening Sky Over Fort Smith, Arkansas 09/07/04 +2004-09-07,42.2458333,-84.4013889,Jackson,MI,formation,5,Formation of 3 lights heading SE, appeared to be fast and low altitude with no noise detectable. ((NUFORC Note: NOSS satellites? PD)) +2004-09-08,38.4783333,-107.8755556,Montrose,CO,unknown,1200,Stationary object with three pulsating lights ((NUFORC Note: We suspect Venus. PD)) +2005-09-07,34.0522222,-118.2427778,Los Angeles,CA,light,120,Orange light climbs 3 minutes straight up into night sky over Los Angeles +2005-09-07,36.2702778,-121.8063889,Big Sur,CA,diamond,30,Large Bright Object, intially stationary, moves quickly across large area of sky, dropping "balls of light", accelerates into space. +2005-09-07,47.6741667,-122.1202778,Redmond,WA,other,240,Tumbling balloon-like object, very large and high, square angles, white. +2005-09-07,41.2411111,-77.0013889,Williamsport,PA,other,3600,Shape is boomerang and white with colors on bottom, which takes off sideways at blinding speed while other objects are below. +2005-09-07,41.8011111,-88.0747222,Lisle,IL,oval,240,crazy moving lite in the sky. +2005-09-07,39.8911111,-74.9222222,Marlton,NJ,other,180,Bright object in sky changes direction in a split second +2005-09-07,40.9586111,-74.0372222,Oradell,NJ,light,600,Just a few moments ago while sitting in my car, I noticed a bright light. It was nearly as bright as the sun but of course very tiny in +2005-09-07,40.3275,-80.0397222,Bethel Park,PA,disk,300,On my way home I saw this flashing light which soon was showing different colors. +2005-09-07,41.4169444,-87.3652778,Crown Point,IN,changing,120,Reddish fireball with tail/sphere over Crown Point, Indiana +2005-09-07,41.6397222,-81.4066667,Willoughby,OH,unknown,300,Bright, high flying, quick moving object moving south to north +2006-09-07,41.8786111,-71.3830556,Pawtucket,RI,sphere,15,round ball like very bright +2006-09-07,40.1983333,-83.0102778,Lewis Center,OH,oval,60,Mysterious oval in sky above all of the trees. ((NUFORC Note: Anonymous. Possible hoax?? PD)) +2006-09-07,42.8708333,-85.865,Hudsonville,MI,diamond,420,3 diamond shaped metallic diamond shaped crafts high above hudsonville, Michigan +2006-09-07,33.79,-118.2969444,Harbor City,CA,cylinder,1200,Orignially, party of six looked up at a low flying aircraft then all six spotted at5000 feet AGL, clydrical shape with 4 dish fairings, +2006-09-07,40.7258333,-73.5147222,Levittown,NY,cylinder,40,Cylinder shape object in the sky. ((NUFORC Note: Probably a sighting of the International Space Station. PD)) +2006-09-07,45.6388889,-122.6602778,Vancouver,WA,light,420,I noticed a very bright moon, took out my camera and snapped a few pictures, looks strange indeed. I was shaking at first but finally s +2006-09-07,31.4713889,-110.9758333,Rio Rico,AZ,fireball,20,5 flashing bright orange fireballs appear over Rio Rico Az, 7 minutes later 8 sporadic flashing light appear over Amado Az. +2006-09-07,34.4838889,-114.3216667,Lake Havasu City,AZ,light,10,this was a light that i noticed moved from north to south at a incredible speed and changed direction once in a upward motion and out o +2007-09-07,36.175,-115.1363889,Las Vegas,NV,light,1,Light beam and saucer seen over strip through random picture +2007-09-07,31.7586111,-106.4863889,El Paso,TX,oval,1200,At approximately 17:45 Hrs while swimming in an outdoor pool in El Paso,Texas.,I saw a white dot that appeared to be frozen in the sky +2007-09-07,41.6302778,-87.8538889,Orland Park,IL,formation,120,Orbs of light formation orland park il fast moving then vanishing +2007-09-07,32.5355556,-93.4108333,Doyline,LA,triangle,20,four people witness triangle shaped craft +2007-09-07,27.3016667,-82.5516667,Siesta Key,FL,triangle,8,Siesta Key @ Pt of Rocks sighting of one craft in a "v" shape with bright lights. +2007-09-07,41.5705556,-71.8708333,Voluntown,CT,rectangle,2,rectangular object with 4 bands of light +2008-09-07,41.1669444,-74.0436111,Pomona,NY,light,30,Blinking light seen in the sky near palisades pkwy exit 12 Northbound in Pomona, NY +2008-09-07,37.3394444,-121.8938889,San Jose,CA,egg,300,White egg object Hovered then speed off with great speed +2008-09-07,42.7008333,-82.9591667,Macomb,MI,oval,180,I recently reported an object which I observed last week. I saw the same or similar obect twice on Sunday from my living room window. +2008-09-07,35.9797222,-78.51,Wake Forest,NC,diamond,180,A UFO making strange movements and odd blinking lights +2008-09-07,40.8125,-73.9994444,Fairview,NJ,light,60,Star like object flying around the moon. +2008-09-07,47.2530556,-122.4430556,Tacoma,WA,triangle,600,Large triangle shaped UFO over Tacoma observed by 3 +2008-09-07,41.2619444,-95.8608333,Council Bluffs,IA,triangle,120,Sighted black triangle with three white lights and one red. Hovers, moves slowly, turns. Little sound. +2008-09-07,44.5402778,-69.7225,Oakland,ME,fireball,60,Green flash. ((NUFORC Note: Possible hoax? PD)) +2009-09-07,34.2063889,-118.2233333,Montrose,CA,circle,5,Bright circular white light heading downward for about 4 or 5 seconds then disappeared +2009-09-07,28.5555556,-82.4505556,Spring Hill,FL,circle,1080,Lights in Spring Hill, Fl +2009-09-07,41.9475,-80.5544444,Conneaut,OH,light,15,Northeast Ohio dim to bright light moving west to east then going straight up at 90 degree angle very rapidly over state prison +2009-09-07,42.3861111,-82.9119444,Grosse Pointe,MI,fireball,60,Orange Fiery orb looking object in the sky +2009-09-07,42.1486111,-72.6083333,Chicopee,MA,sphere,180,UFO sigting in the skies of chicopee +2009-09-07,37.3394444,-121.8938889,San Jose,CA,light,2700,Do not have time, just need to know if others saw it in San Jose, CA. Bright Red, almost blood red light, moving very very slowly. I ha +2009-09-07,44.9591667,-89.63,Wausau,WI,unknown,1200,object in sky over Wausau wisconsin, not a plane. +2009-09-07,36.3352778,-92.385,Mountain Home,AR,light,60,Brilliant white object moving to Northeast at high altitude +2009-09-07,43.3219444,-70.5813889,Wells,ME,sphere,180,A pair of round Orange glowing craft several hundred feet in the air moving up the Maine Coastline silently. +2009-09-07,38.8338889,-104.8208333,Colorado Springs,CO,light,60,Brilliant bright light moves across the sky in Colorado Springs, CO September 7, 2009. +2009-09-07,37.0791667,-106.0080556,Antonito (30 Miles East Of My Location),CO,light,20,A very bright white light traveling west to east moving very fast but jerkily and veering slight north and then south as it went. +2009-09-07,37.3394444,-121.8938889,San Jose,CA,light,2400,Bright red light over Northern California.(non aircraft) +2009-09-07,37.3394444,-121.8938889,San Jose,CA,light,1200,Brilliant red light sighted over San Jose. +2009-09-07,45.1341667,-118.9313889,Ukiah,OR,triangle,300,Large Triangle Sighting over Oregon High Desert. +2009-09-07,26.1416667,-81.795,Naples,FL,rectangle,360,Two very bright green large flashing bars, end to end, wiith a space in the middle, as close as 30 feet. moving, and observing me. +2010-09-07,45.9933333,-123.9213889,Seaside,OR,cigar,180,2 cigar shaped crafts hoverd for 3 minutes and then merged and flew strait up in the sky and dissapeared in inmilliseconds +2010-09-07,41.6744444,-72.8586111,Plainville,CT,light,25,Orbitting light dissappears then becomes two objects +2010-09-07,39.4352778,-84.2030556,Lebanon,OH,light,60,i seen a light in the sky that looked like a star. the light started to move and then all of the sudden it was gone. i thought it was a +2010-09-07,37.6391667,-120.9958333,Modesto,CA,circle,1800,bright blue light (dimming) +2010-09-07,42.5997222,-71.3677778,Chelmsford,MA,light,600,Bright Light over 495 in Chelmsford MA +2010-09-07,36.8352778,-76.2986111,Portsmouth,VA,light,120,I was coming home from picking up my dinner when I saw a bright orange-red light moving faster than anything I have ever seen. It was a +2010-09-07,29.8944444,-81.3147222,St. Augustine,FL,circle,420,Saw a distant light in the east begin to move north, 10 minutes later a similiar object in the west is heading south +2010-09-07,27.9091667,-82.7875,Largo,FL,light,300,After long drawn out thunderous echo went outside to investigate.Saw 5 then 6 lights in SW sky . +2010-09-07,41.6077778,-122.8391667,Ft. Jones,CA,triangle,8,Large Silent Metallic Black Triangular Object +2011-09-07,33.1191667,-117.0855556,Escondido,CA,light,120,Moving star light traveling in different directions +2011-09-07,40.5069444,-111.4125,Heber City,UT,disk,180,11 lights on unexplained object hovering for several seconds silently close up. +2011-09-07,33.7475,-116.9711111,Hemet,CA,diamond,60,Large Dark diamond shaped Mass floating over home +2011-09-07,38.5816667,-121.4933333,Sacramento,CA,triangle,900,Triangel shaped object weeving through the high rise of sacramento california makeing accute angel turns abruptly... +2011-09-07,29.5291667,-95.2008333,Friendswood,TX,fireball,5,Large red/yellow fireball seen low in the horizon over Houston, TX area +2011-09-07,38.8002778,-90.6263889,Saint Peters,MO,fireball,45,2 Red Fireballs travelling North to South +2011-09-07,30.4391667,-97.6197222,Pflugerville,TX,formation,10,Craft w/ 2-3 yellowish-orange lights flies slowly parallel to horizon then suddenly flies down below horizon/trees at impossible speed. +2011-09-07,41.3647222,-87.4411111,Cedar Lake,IN,circle,20,orangish circular shaped object multiple sightings 1 craft over a few weeks +2012-09-07,46.0647222,-118.3419444,Walla Walla,WA,light,5,Bright Green Light over Walla Walla, WA +2012-09-07,32.7252778,-97.3205556,Fort Worth,TX,fireball,5,My wife and I were sleeping in our bedroom and around 2:45am I was suddenly woken up. I was facing a closed window in our room and the +2012-09-07,26.4611111,-80.0730556,Delray Beach,FL,sphere,3600,Globe shaped object flashing lights at random another blue light behind Stationary +2012-09-07,33.6675,-84.0177778,Conyers,GA,cylinder,300,It was following us there is no doubt I was ment to see it myself. +2012-09-07,43.0386111,-78.8644444,North Tonawanda,NY,fireball,120,Bright, fast moving, orange grow is the northern night sky in western New York. +2012-09-07,43.0608333,-88.4036111,Delafield,WI,triangle,2,Solid red, hovering lights in a pyramid shape south of Delafield, WI. +2012-09-07,33.3527778,-111.7883333,Gilbert,AZ,sphere,120,Red orb seen over the east valley (Phoenix) +2012-09-07,45.6388889,-122.6602778,Vancouver,WA,triangle,240,UFO in Vancouver, WA +2012-09-07,40.7483333,-75.6122222,Slatington,PA,sphere,180,Orange glowing or burning sphere moving through the sky +2012-09-07,44.5236111,-89.5744444,Stevens Point,WI,fireball,600,2 orange lights silently pass over Stevens Point, WI +2012-09-07,61.7472222,-150.0375,Willow,AK,fireball,300,Several orange glowing balls in single line 1/4-1/2 mile apart. West to East around Hatcher Pass +2012-09-07,35.9605556,-83.9208333,Knoxville,TN,fireball,300,5-6 balls of light floating above the Mechanicsville/Middlebrook area, spotted from Alcoa Hwy +2013-09-07,27.9472222,-82.4586111,Tampa,FL,disk,300,3 flat, black, disc shapes w/lights descending rapidly over interstate in FL, looked like a flares or rockets. +2013-09-07,38.0166667,-108.0527778,Placerville,CO,fireball,15,Purplish-green object near Telluride, Colorado in early morning hours. +2013-09-07,41.5727778,-72.6411111,Portland,CT,light,2700,Bright white light high in sky that flashed red + green lights and "danced" around in swift movements. +2013-09-07,30.0969444,-95.6158333,Tomball,TX,disk,30,Disk Craft seen early in am in Tomball, Texas. +2013-09-07,44.26,-72.5758333,Montpelier,VT,circle,120,Military jets were in close proximity to a single white colored UFO +2013-09-07,47.3794444,-94.6038889,Cass Lake,MN,oval,10,High altitude and speed oval object. Disappeared quickly after spotting but have photo. +2013-09-07,42.3369444,-83.2733333,Dearborn Heights,MI,cigar,45,U.F.O Witness who sees strange craft willing to take polygraph on National T.V. +2013-09-07,37.5536111,-77.4605556,Richmond,VA,light,3600,Orange/red lights moving east to west over Richmond's near west end. +2013-09-07,43.3044444,-70.9761111,Rochester,NH,light,120,Orange-Red Lights Over Rochester, NH. +2013-09-07,37.6069444,-87.5286111,Sebree,KY,light,20,Bright star like object appears then disappears while moving in front of airplane. +2013-09-07,42.7261111,-87.7827778,Racine,WI,fireball,2,Bright orange light looked like fireball. +2013-09-07,43.8844444,-91.235,Onalaska,WI,fireball,600,Yellow/Orange fireball type objects flying in triangular formation hovering just north of the La Crosse, WI airport over Lake Onalaska. +2013-09-07,46.3238889,-117.9713889,Dayton,WA,circle,1800,Orange and white orb shaped object north of Dayton Washington. +2013-09-07,44.0463889,-123.0208333,Springfield,OR,sphere,30,Springfield, OR bright orange sphere hovering in sky over pasture. +2013-09-07,41.6833333,-86.25,South Bend,IN,fireball,180,Multiple orbs rotate and form patterns of constellations. +2013-09-07,34.2072222,-84.1402778,Cumming,GA,unknown,90,Saw 3 bright orange lights about 30 seconds apart in the same flight pattern. +2013-09-07,29.7630556,-95.3630556,Houston,TX,circle,900,Large qrange/red circle appeares and disappears in the Houston sky. +2013-09-07,38.2325,-122.6355556,Petaluma,CA,circle,7,White/Orange sphere races across San Francisco area sky. +2013-09-07,41.7,-71.6833333,Coventry,RI,circle,120,Driving on the road the car in front of me pulled to the sholder, I looked up to the sky to see 5 circular shaped lights in a crescent. +2013-09-07,41.5444444,-73.2094444,Woodbury,CT,light,240,5 fire-orange colored spheres,moving quickly and without sound in Woodbury. +2013-09-07,29.9544444,-90.075,New Orleans,LA,light,20,Appeard from out of nowhere. +2013-09-07,42.9955556,-71.4552778,Manchester,NH,circle,420,Circular green craft traveling in a repeated tight circle above cloudline. +2013-09-07,40.6936111,-75.1905556,Phillipsburg,NJ,light,300,Ufos in Phillipsburg NJ? I believe!! +2013-09-07,47.4830556,-122.2158333,Renton,WA,fireball,300,Bright Red light object with no sound moved slowly overhead from North to South. +2013-09-07,38.2325,-122.6355556,Petaluma,CA,circle,10,Orange/white circle travels at alarming speed over San Francisco area. +2013-09-07,40.4991667,-74.3994444,Piscataway,NJ,unknown,180,Glowing orange light in the night sky. +1966-09-08,39.6836111,-80.4591667,Hundred,WV,oval,30,Object traveled across hills at moderate speed illuminating tree tops as it passed. +1967-09-08,33.8622222,-118.3986111,Hermosa Beach,CA,cigar,120,5 Red Glowing Cigar Shaped Ships Sighted at Hermosa Beach in 1967 +1973-09-08,40.9644444,-76.8847222,Lewisburg,PA,triangle,180,triangular ufo with red, blue.green,lights +1998-09-08,32.8744444,-95.7652778,Emory (5 Mi East Of),TX,fireball,4,At 45 Degrees in NNW sky. White ball as big as pencil eraser in hand with halo at first. Bright white like sun fading in intensity unti +1999-09-08,42.6583333,-71.1375,Andover,MA,unknown,86400,emmited a green/white glow +1999-09-08,37.9725,-90.3897222,French Village,MO,fireball,2,Looked like a metor storm. 3 falling objects about 15 minutes apart in the east/southeast sky. They were bright, white streaks of lig +1999-09-08,42.1991667,-87.9555556,Prairie View,IL,light,5,Light in sky moving rapidly, then disappearing +1999-09-08,46.6794444,-119.9161111,Desert Aire (Mattawa),WA,other,1200,Very bright, yellowish with flames from short tail. Travelling horiz. East above Saddle Mountains. Second one appeared going in opposi +1999-09-08,44.3816667,-123.5952778,Alsea,OR,light,240,Report(s) explained as NOSS satellite array +1999-09-08,44.3816667,-123.5952778,Alsea,OR,formation,300,3 satelite-like objects flying in tight formation over Oregon. +1999-09-08,39.7391667,-104.9841667,Denver,CO,light,900,A star was moving, grew very bright, then faded out. a few minutes later we spotted two stars moving fast, North and South. Then we s +1999-09-08,47.6588889,-117.425,Spokane,WA,formation,60,There were three objects flying in triangular formation at satellite altitude and light intensity. None of the objects were traveling +1999-09-08,48.7597222,-122.4869444,Bellingham,WA,triangle,10,At 9:58pm on 9/8/99 I was on the back deck smoking a cigarette and remembering what Art Bell said that enough people just don't look at +1999-09-08,44.6366667,-123.1047222,Albany,OR,triangle,15,The craft was flying at approx. 200 feet with no lights on. It had no sound at all and we were able to see it clearly. It appeared to +2000-09-08,29.7630556,-95.3630556,Houston,TX,cylinder,120,As I went to work at 6 :15 am, passing over I -10 and the Sam Houston Beltway West, South bound I saw what appeared to be an airplane +2000-09-08,40.7141667,-74.0063889,New York City,NY,rectangle,900,slow moving object in fast paced NYC +2000-09-08,40.7141667,-74.0063889,New York City,NY,rectangle,960,New York City - 9/8/2000 +2000-09-08,41.7013889,-71.1555556,Fall River,MA,sphere,3600,Ball seen above college library +2000-09-08,46.0647222,-118.3419444,Walla Walla,WA,cigar,600,the object was intentionatly staying at a standstill. Every jet flying moves accross the sky, we felt that this was on purpose +2001-09-08,32.7252778,-97.3205556,Fort Worth,TX,formation,30,Fast, dull-white light multiplies and changes formation multiple time. +2001-09-08,48.0841667,-121.9675,Granite Falls,WA,cigar,60,Three adults were in the back yard of a home located about five miles east of Granite Falls,on the Mountain Loop Highway. It was about +2001-09-08,36.9786111,-76.4283333,Newport News,VA,unknown,60,odd moving object +2001-09-08,38.8002778,-90.6263889,St. Peters,MO,oval,5,Glowing oval shoots up from behind distant trees, flys away without single sound +2001-09-08,38.7508333,-77.4755556,Manassas,VA,oval,180,It was a large hazey golden glowing ball with 4 or 5 smaller starlike objects preceeding it traveling at a high speed +2001-09-08,44.9430556,-123.0338889,Salem,OR,flash,60,Four stationary bright flashes in the constellation of the Swan +2001-09-08,35.198055600000004,-111.6505556,Flagstaff,AZ,light,420,A satellite emitting very large, camera like flashes????????? +2002-09-08,40.7141667,-74.0063889,New York City (Staten Island),NY,light,10,light splits into two objects then rejoins. +2002-09-08,38.6066667,-89.6075,Aviston,IL,diamond,180,4 craft seen hovering in illinois +2002-09-08,44.4497222,-72.2236111,Walden,VT,formation,120,triangular light formation +2002-09-08,41.7855556,-74.2294444,Accord,NY,light,120,3 bright UFO over ulster county-Aliens at the Art Farm +2002-09-08,48.5344444,-123.0158333,Friday Harbor,WA,disk,420,Slowly moving black or silver flat, doughnut, saucer-shaped disk seen by 3 observers on San Juan Island +2002-09-08,40.4991667,-74.5891667,Millstone,NJ,light,60,Dancing light in sky over N.J. pulsed, vanished in perfect visibility +2002-09-08,40.7141667,-74.0063889,New York City (Manhattan),NY,sphere,7200,Eleven objects over Manhatten for nearly 2 hours. +2002-09-08,32.4486111,-99.7327778,Abilene,TX,disk,6,I was taking a walk with a friend of mine when we looked up and saw a strange object. It was silver coloured and shaped somewhat like a +2002-09-08,35.0866667,-89.81,Germantown,TN,disk,4,OBSERVED UFO FALLING FROM CLOUD AND OBTAINED PHOTO +2002-09-08,40.6913889,-73.8061111,Jamaica,NY,disk,900,spoting in Queens, New York +2002-09-08,41.9538889,-72.7891667,Granby,CT,oval,300,Bright stationary oval in western sky, changing from white to red to greenish blue, no noise at all, dogs barking in neighborhood +2002-09-08,43.2866667,-76.1463889,Central Square,NY,disk,7200,SAUCER SHAPED OBJECT W/GREEN,BLUE,RED&WHITE LIGHTS IN UPSTATE NY +2002-09-08,42.7158333,-78.8297222,Hamburg,NY,circle,120,It was too large to be Venus or a Star, and there was multiple witnesses. +2002-09-08,42.0652778,-71.2483333,Foxborough,MA,triangle,180,Triangular craft with 4 white lights seen in early September over the skies of Foxborough Massachusetts. +2002-09-08,39.1752778,-84.2944444,Milford,OH,triangle,180,Bright flashing lights +2002-09-08,39.4736111,-118.7763889,Fallon,NV,triangle,10,Fallon Triangle seen by Ufo Television Talk Show Host +2003-09-08,33.8158333,-78.6802778,North Myrtle Beach,SC,circle,3,Balls of light appearing in various sections of the sky over the ocean +2003-09-08,33.9136111,-98.4930556,Wichita Falls,TX,sphere,600,OBJECTS DANCING AROUND EACH OTHER +2003-09-08,47.4066667,-122.0375,Maple Valley,WA,light,1,Driving maybe 2 miles south of Maple Valley, heading south on Hwy 169 towards Enumclaw, I caught a brilliant green light moving fast fr +2003-09-08,40.7141667,-74.0063889,New York City (Brooklyn),NY,disk,60,I saw a very large disk shaped object in the sky over N.Y.C. +2003-09-08,40.6805556,-74.6458333,Bedminster,NJ,oval,10,I OBSERVED A SINGLE, BRIGHTLY-LIT, FLATTENED-OVAL SHAPED OBJECT IN THE SKY ABOVE BEDMINSTER TWP. ON 09/08/03. +2003-09-08,61.2180556,-149.9002778,Anchorage,AK,light,20,More stars moving around over Anchorage +2003-09-08,47.4830556,-122.2158333,Renton,WA,sphere,2,Giant Green ball shot downward at 400 m.p.h. and dissapeared. +2003-09-09,42.0083333,-91.6438889,Cedar Rapids,IA,changing,900,WE SEEN IT +2004-09-08,37.9836111,-122.0741667,Pacheco,CA,changing,240,I was watching a video when I heard a noise outside. The windows were open because it's been very warm here in the Bay Area. The neig +2004-09-08,32.8369444,-97.0816667,Euless,TX,disk,25,I was driving eastbound on highway 183. When my attention was drawn to a white disk shape object in the sky. I believed it to be abou +2004-09-08,33.9866667,-118.1844444,Maywood,CA,triangle,25,On 09/08/04 6:30 to 7:15 pm clear sky some clouds due east. Craft was triangle hazey ,black, lights on it side. +2004-09-08,30.2669444,-97.7427778,Austin,TX,formation,2,it was v shaped looking that is was flying in the clouds but there were no clouds,no noise at all +2005-09-08,25.7738889,-80.1938889,Miami,FL,light,2400,Darting light, popping ears +2005-09-08,45.9102778,-122.4452778,Amboy,WA,light,2400,Glittering small lights changing from red to blue to green, moving in erratic circles and lines, two days in a row. +2005-09-08,40.8883333,-80.6941667,Columbiana,OH,oval,300,About 1귔-2ꯠft agl. traveling from west to east about 150knots. circular/oval in shape with red lites around perimeter and 5-10 st +2005-09-08,34.2977778,-83.8241667,Gainesville,GA,other,120,Was observing Mars overhead when flashing light caught my eye from the northern sky. They were extremely bright, flashing almost strob +2005-09-08,38.1838889,-83.4327778,Morehead,KY,circle,300,Metallic, circular object seen in daytime sky +2005-09-08,34.0522222,-118.2427778,Los Angeles (Downtown),CA,oval,300,Flashing light over the Little Tokyo in L.A. +2005-09-08,42.2355556,-75.8486111,Chenango Forks,NY,disk,600,rotating light seen in sky and watched while it came closer then turn +2005-09-08,33.3702778,-112.5830556,Buckeye,AZ,fireball,3600,AT LEAST 19 LIGHTS OVER BUCKEYE-GILABEND AREA , 3 NIGHTS IN A ROW FROM 8:30-9:30PM +2005-09-08,44.6366667,-123.1047222,Albany,OR,oval,4,Probably a meteor +2005-09-08,47.9663889,-116.8675,Spirit Lake,ID,light,120,Object due north very bright (redish) and stationary then faded and 30 seconds later moved rapidly downward +2006-09-08,42.7675,-78.7441667,Orchard Park,NY,other,600,checking out the critters ? +2006-09-08,42.9375,-70.8394444,Hampton,NH,light,300,Driving North on 95 from Boston at the Hampton toll plaza we noticed a very bright flashing light off to the straight and to the left s +2006-09-08,47.6588889,-117.425,Spokane,WA,changing,600,Slow object observed and video taped for approx. 10 minutes during daylight hours moving across the sky. +2006-09-08,40.6083333,-75.4905556,Allentown,PA,light,5,Saw a low-flying line of green light in the sky for a few seconds, that looked like a meteor or something. +2006-09-08,43.2658333,-70.865,Berwick,ME,oval,60,BERWICK MAINE U.F.O +2006-09-08,38.9555556,-90.1866667,Godfrey,IL,light,7,Bright lite moving west to east then reversing course instantly lasted 5 to 7 seconds +2007-09-08,39.5297222,-119.8127778,Reno,NV,unknown,900,UFO flutters, makes right angle turn and accelerates to impossible speed. +2007-09-08,32.7866667,-79.795,Isle Of Palms,SC,chevron,1200,white, chevron shaped. ((NUFORC Note: Probably a sighting of Venus. PD)) +2007-09-08,34.9530556,-120.4347222,Santa Maria,CA,oval,15,It was oval and grey white with no lights traveling really fast and really low with no sound. +2007-09-08,35.1216667,-120.6202778,Grover Beach,CA,triangle,20,Small Triangular object seen while flying at 9ꯠ feet over Grover Beach, California +2007-09-08,47.7544444,-122.1622222,Woodinville,WA,sphere,60,High flying silvery sphere . +2007-09-08,46.51,-114.0922222,Stevensville,MT,cylinder,300,White noiseless craft going south-east overhead. +2007-09-08,44.5938889,-72.6169444,Hyde Park,VT,light,60,Steady light suddelly brightened and steaked across the sky. +2007-09-08,43.8844444,-91.235,Onalaska,WI,circle,600,Round dimly lit object moves and appears to notice observer. +2007-09-08,47.8108333,-122.3761111,Edmonds,WA,light,5,Incredibly Fast moving Bright White Light Seen in Edmonds, Washington climbed straight up into space.... +2007-09-08,42.8863889,-78.8786111,Buffalo (Darren Lake Theme Park),NY,oval,300,My kids and I were sitting outside by the fire camping in Darren Lake theme park and my oldest son 19 said look up there, I saw the sam +2007-09-08,35.3536111,-91.7438889,Holly Springs,AR,light,600,A very white flash, that moved quickly for a split second, then a stationary blue light and red light, right next to each other. +2008-09-08,36.5602778,-88.5691667,Lynnville,KY,rectangle,480,rectangular object with rows of lights moving slowly and heading in opposite directions in a matter of seconds. +2008-09-08,26.9616667,-82.3527778,Englewood,FL,unknown,10,2 lights moving across the sky too close to land, too fast, and in silence +2008-09-08,40.3355556,-75.9272222,Reading,PA,triangle,1200,It was a beautiful evening.Coll,clear,with a pale blue sky tinged by a golden sunset.I was coming from a local department store and as +2009-09-08,34.1841667,-118.9097222,Newbury Park,CA,light,240,2 bright lights, that maintained equal distance from one another, travelling at great speed, north-northeast, +2009-09-08,34.0522222,-118.2427778,Los Angeles,CA,light,30,Two steady, white lights heading northeast in the early evening over northeast Los Angeles. +2009-09-08,41.4244444,-91.0430556,Muscatine,IA,light,180,i was looking southwest i saw 1 bright light and 1 dim light seem that they were teathered together moving very fast across the sky fro +2009-09-08,39.7597222,-121.6208333,Paradise,CA,light,240,Two bright lights following each other seen in the sky when no stars were present. ((NUFORC Note: Possible sighting of ISS. PD)) +2009-09-08,36.135,-111.2391667,Tuba City,AZ,light,600,Two lights moving west to east, slow and noiseless +2009-09-08,32.9544444,-97.0147222,Coppell,TX,formation,240,2 white bright lights northbound. 2nd brighter than light ahead. NO beacons, no nav lights. NO sound. 170 mph aprox +2009-09-08,44.5758333,-91.47,Eleva,WI,light,240,two synchronized lights moving slowing across the sky in a line formation +2009-09-08,42.8247222,-83.2647222,Oxford,MI,light,20,Bright, starlike, round object, rising from eastern horizon. Stopped moved left and right. Became brighter. "Winked out", +2009-09-08,38.7838889,-90.4811111,St. Charles,MO,formation,60,Two lights following each other across the sky. ((NUFORC Note: Possible sighting of ISS and Shuttle. PD)) +2009-09-08,37.3541667,-121.9541667,Santa Clara,CA,sphere,20,brilliant mercury-sized light moving irratically at high speed over Santa Cruz mountains +2009-09-08,33.1975,-96.615,Mckinney,TX,light,360,Tandem lights over DFW +2009-09-08,47.9033333,-91.8669444,Ely,MN,other,300,star like crafts moving at high rate of speed. ((NUFORC Note: ISS and Space Shuttle in formation. PD)) +2009-09-08,43.8013889,-91.2394444,La Crosse,WI,formation,120,2 very bright objects in formation ((NUFORC Note: Possible sighting of ISS and Shuttle. PD)) +2009-09-08,46.1286111,-112.9413889,Anaconda,MT,sphere,150,Two bright lights travelling fast across the sky, then disappear. ((NUFORC Note: ISS and Space Shuttle in formation. PD)) +2009-09-08,45.4902778,-93.2475,Isanti,MN,formation,300,2 Strange lights in a line formation. ((NUFORC Note: ISS and Space Shuttle in formation. PD)) +2009-09-08,45.5236111,-122.675,Portland,OR,light,15,The three bright lights over Tanasbourne, Oregon +2009-09-08,26.3583333,-80.0833333,Boca Raton,FL,triangle,5,Translucent white/green glowing triangle. +2009-09-08,42.3369444,-83.2733333,Dearborn Heights,MI,light,240,2 star like ufos over dearborn heights moving east to west. ((NUFORC Note: ISS and Space Shuttle in formation. PD)) +2009-09-08,39.7683333,-86.1580556,Indianapolis,IN,unknown,300,2 white lights moving at same speed in same direction. ((NUFORC Note: ISS and Space Shuttle in formation. PD)) +2009-09-08,42.2458333,-84.4013889,Jackson,MI,formation,300,Two perfect lights move in perfect formation with no sound across the sky. ((NUFORC Note: ISS and Space Shuttle in formation. PD)) +2009-09-08,42.7158333,-78.8297222,Hamburg,NY,light,60,2 bright white lights, one follow ing the other, seen in night sky. ((NUFORC Note: ISS and Space Shuttle in formation. PD)) +2009-09-08,42.7875,-86.1088889,Holland,MI,other,180,2 star like objects heading east as if one directly followed other. ((NUFORC Note: ISS and Space Shuttle in formation. PD)) +2009-09-08,44.0463889,-123.0208333,Springfield,OR,light,300,Two lights flying in loose formation disappear in sudden vertical climb. ((NUFORC Note: ISS and Space Shuttle in formation. PD)) +2009-09-08,45.4313889,-122.7702778,Tigard,OR,circle,20,Two very distinct bright lights traveling east at 9:22pm PST. ((NUFORC Note: ISS and Space Shuttle in formation. PD)) +2009-09-08,46.2113889,-119.1361111,Kennewick,WA,light,10,Bright lights in eastern sky. +2009-09-08,38.7522222,-121.2869444,Roseville,CA,other,5,Oblong amber transulucnet pulsating object moved from one side of the sky to the other and moved quickly. +2009-09-08,40.3402778,-85.3508333,Eaton,IN,sphere,300,2 bright non blinking, moving stars. ((NUFORC Note: ISS and Space Shuttle in formation. PD)) +2009-09-08,39.9783333,-86.1180556,Carmel,IN,light,60,Orange light moving E to W at high altitude, red beacon visible after passing overhead +2009-09-08,39.4369444,-76.62,Timonium,MD,circle,45,Orange ball seen over neighborhood in Timonium, Maryland +2009-09-08,39.8680556,-104.9713889,Thornton,CO,light,240,2 lights flying parallell formation northeast. ((NUFORC Note: ISS and Space Shuttle in formation. PD)) +2009-09-08,40.8,-96.6666667,Lincoln,NE,light,2700,Bright star flashing different colors in western sky. ((NUFORC Note: Probably a twinkling star. PD)) +2010-09-08,38.9338889,-76.8969444,Landover,MD,triangle,60,Three lights in a triangular pattern were seen hovering in Landover, MD. +2010-09-08,37.2933333,-80.055,Salem,VA,unknown,10800,Bright object changing colors of green, orange, white that "bounced" around. ((NUFORC Note: Star or planet?? PD)) +2010-09-08,44.3352778,-85.215,Lake City,MI,formation,90,((HOAX??)) Tessellated ufo with shifting rhomboidal panes. Very large and within hundreds of feet from the ground. +2010-09-08,38.025,-78.0044444,Louisa,VA,diamond,2,Slow moving 4 small white lights that formed a diamond shape with a larger flashing light on top. +2010-09-08,33.0580556,-112.0469444,Maricopa,AZ,oval,1200,orangest white lights in a slow moving circular pattern seem over Maricopa, Az. +2011-09-08,36.1583333,-81.1477778,North Wilkesboro,NC,light,3,Huge glowing yellow light appeared and zoomed to the ground very, very fast east of North Wilkesboro +2011-09-08,36.7280556,-108.2180556,Farmington,NM,teardrop,720,Weather ballon spotted over Farmington, New Mexico by many people. +2011-09-08,36.1538889,-95.9925,Tulsa,OK,light,120,Bright, stationary light in western sky at sunset. +2011-09-08,42.3086111,-83.4822222,Canton,MI,triangle,300,Tringular craft with bright white lights on the corners in S. Canton. +2011-09-08,41.1369444,-77.4472222,Lock Haven,PA,fireball,180,Large orange fireball moving at the speed of a small plane +2011-09-08,43.0388889,-87.9063889,Milwaukee,WI,unknown,5,My son and his friend was sitting out side and they both seen flashing lights passing rapidly through the sky. He was very scared by wh +2011-09-08,33.6102778,-114.5955556,Blythe,CA,oval,3600,Driving on North 95 just 15miles away from Blythe Ca, towards Needles Ca. 2 oval/red/blue shaped disc flying objects in the north sky. +2011-09-08,40.4775,-104.9008333,Windsor,CO,changing,120,Splitting light +2011-09-08,39.8005556,-75.46,Claymont,DE,circle,120,45 minutes long and watched us +2011-09-08,42.3261111,-88.1677778,Volo,IL,fireball,180,I saw an orange fireball in the sky that looked like a sphere with two blades one on front and one in back +2011-09-08,42.3261111,-88.1677778,Volo,IL,other,180,orange fireball with a strange shape craft in the middle base height of cloud ceiling was 7ꯠ ft and 8귔 ft overcast object was mov +2011-09-08,42.2711111,-89.0938889,Rockford,IL,fireball,900,I was with a few friends outside of a friend's house in their driveway at about 11:00 pm. While socializing, I saw what I thought to be +2011-09-08,42.2711111,-89.0938889,Rockford,IL,light,5,Small, fast, bright, silent UFO streaks across Rockford sky at super speed, disappears into cloud +2011-09-08,37.9747222,-87.5558333,Evansville,IN,light,300,Flickering lights that look sort of like a star. +2012-09-08,25.7738889,-80.1938889,Miami,FL,fireball,300,I was walking with my mom she had ask me to go for a walk with her i said ok i walk out the house with her turn the corner and we kept +2012-09-08,40.9866667,-75.195,Stroudsburg,PA,circle,14400,Fourth sighting of UFOs in the week at the same location. +2012-09-08,26.2513889,-80.1791667,Coconut Creek,FL,triangle,60,JUST SAW THREE BIG WHITE LIGHTS MOVING IN A TRIANGLE FORMATION AT 5:00 AM. IT WAS TOO DARK TO SEE AN OBJECT JUST THE LIGHTS. THE SKY WA +2012-09-08,30.3672222,-89.0927778,Gulfport,MS,circle,15,White/Bluish glwoing flying balls +2012-09-08,32.3863889,-96.8480556,Waxahachie,TX,changing,600,Daylight sighting of groups of white objects, in distinct swirling masses, that disappeared and reappeared multiple times. +2012-09-08,48.2561111,-109.7875,Rocky Boy,MT,diamond,10800,Me & a couple of friends went outside to smoke a cig & we noticed a craft hovering above centennial mt. the colors i saw were blue, re +2012-09-08,61.5813889,-149.4394444,Wasilla,AK,sphere,300,Red Dancing Orb with Orange colored bottom. +2012-09-08,39.8841667,-82.7536111,Pickerington,OH,circle,600,Orange-red lights in formation and moving silently across the sky. +2012-09-08,40.1672222,-105.1013889,Longmont,CO,chevron,20,6 or 7 Light green circular orbs forming a V-shaped craft or formation travelling half the sky in 20 sec with no sound. +2012-09-08,34.3916667,-118.5416667,Santa Clarita,CA,light,600,Color Changing Light Over Sant Clarita Valley +2012-09-08,42.7283333,-73.6922222,Troy (East Of),NY,light,120,6 bright orange lights in a configuration similar to the Big Dipper very low on horizon +2012-09-08,37.9966667,-88.92,Benton,IL,circle,120,6 orange circle in shape bright lights. They were in a diagonal line. Evenly spaced apart. Coming up from the ground to the sky. Th +2012-09-08,47.6063889,-122.3308333,Seattle,WA,circle,1800,Multiple bright strobes in a circular pattern over Puget Sound near Mebane Point navigational bouy. +2012-09-08,37.6922222,-97.3372222,Wichita,KS,cylinder,30,My wife and I were driving to a dinner event when she saw them in the North West Sky for about 30 sec. They were not moving, just sitt +2012-09-08,43.1705556,-78.6905556,Lockport,NY,light,180,Yellow/orange lights moving south of lockport. +2012-09-08,41.1305556,-85.1288889,Fort Wayne,IN,fireball,300,Seven large round lights traveling from the north end of Fort Wayne Indiana to the south. The faded out in the clear sky +2012-09-08,40.6263889,-80.0561111,Wexford,PA,fireball,300,A line of 8-10 orange lights/fireballs slowly move across Pittsburgh suburb sky +2012-09-08,41.6005556,-93.6088889,Des Moines,IA,light,180,2 Bright Orbs in the Eastern Sky moving fast and irregular. +2012-09-08,42.6055556,-83.15,Troy,MI,fireball,480,Witness 8 to 9 ball shape objests (fire) hovering in the sky then moves across and disappear. +2012-09-08,26.9338889,-80.0944444,Jupiter,FL,fireball,900,Over a dozen orange lights close to each other, no noise south to the north dissapearing to the east +2012-09-08,30.2669444,-97.7427778,Austin,TX,triangle,10,Slow, lightless Boomerang object in AustinTx +2012-09-08,40.4405556,-79.9961111,Pittsburgh,PA,other,60,2 objects bright red with aura flying across the pittsburgh night sky +2012-09-08,38.9088889,-123.6919444,Point Arena,CA,unknown,15,I went out to empty garbage, two red lights flew south of me next to hill side . They moved maybe 70 miles per hour. They disappeared a +2013-09-08,48.9180556,-122.7433333,Birch Bay,WA,light,180,One right behind the other around the dipper and off towards the Milky Way. +2013-09-08,36.7477778,-119.7713889,Fresno,CA,sphere,300,Slow moving pillar of orbs floating horizontally and passed by 4 people. +2013-09-08,41.9402778,-85.0005556,Coldwater,MI,triangle,5,8 orange balls in formashan flying west to east very fast. +2013-09-08,30.2669444,-97.7427778,Austin,TX,changing,3600,Apparent blinking star turned out to be an object that changed appearance and showed many colors, videos available. +2013-09-08,31.1169444,-97.7275,Killeen,TX,unknown,1800,Colorful object hovering over Killeen Texas. +2013-09-08,46.82,-67.9236111,Maine (Southeast),ME,fireball,5,Green fireball spotted from I-95 NB, south east Maine. +2013-09-08,27.2936111,-80.3505556,Port Saint Lucie,FL,light,600,Unexplained lights in sky above Port Saint Lucie, FL at approximately 8:35pm September 08, 2013. +2013-09-08,38.8916667,-121.2919444,Lincoln,CA,flash,25,Color changing and flashing light over Lincoln, CA. +2013-09-08,37.6922222,-97.3372222,Wichita,KS,light,180,First saw object that have seen on two previous occassions in the past week. It was a bright light that appeared high in the sky. +2013-09-08,37.5455556,-97.2686111,Derby,KS,fireball,120,Glowing orange ball. +2013-09-08,32.7252778,-97.3205556,Fort Worth,TX,light,1200,A round ball of fast flashing a solid White, Red, and Green lights (as this * looking much like a planet in size) in the southwest sky. +2013-09-08,41.1305556,-85.1288889,Fort Wayne,IN,fireball,600,Two UFO above Fort Wayne. +2013-09-08,47.9791667,-122.2008333,Everett,WA,fireball,180,Intense red glowing light seen east of Everett WA, similar in description to the one seen in Renton WA a day earlier. +1952-09-09,39.9522222,-75.1641667,Philadelphia,PA,circle,180,saucers in a line over Phila Pa. +1954-09-09,30.0858333,-94.1016667,Beaumont,TX,disk,300,Aprox. 30 Disk shaped UFOs fell out of clouds got in V formatin and shot toward a black rain cloud avoiding a Jet Plane. +1956-09-09,36.8466667,-76.2855556,Norfolk,VA,cigar,90,Unidentified Object Hovering over Interstate 264, Norfolk, Virginia +1968-09-09,37.7397222,-121.4241667,Tracy,CA,unknown,1200,the light were first notist in the north west at about a 45 degre angle, the secend light sas seen in the south east at about the same +1968-09-09,38.4405556,-122.7133333,Santa Rosa,CA,circle,8,Large Orange Circlular Object Moving Slowly and Silently +1969-09-09,30.2669444,-97.7427778,Austin,TX,sphere,900,A ring of light appeared, filled in with golden light, increased in brightness while moving, then gradually faded away. +1975-09-09,39.4861111,-75.0261111,Vineland,NJ,disk,600,Broad daylight, at the People's Bank. metallic silver saucer. Wide band around center w/ rows of lights flashing different colors, ma +1978-09-09,32.5838889,-117.1122222,Imperial Beach,CA,other,120,Man is mysteriously moved several blocks and sees a silent balck helicopter with yellow lit cockpit +1982-09-09,41.2041667,-73.7275,Mount Kisco,NY,sphere,30,light blue sphere connected to glowing red/orange cylinder at rear, travelling south. +1994-09-09,39.7286111,-121.8363889,Chico,CA,fireball,7,large solid spherical, bright emerald green with yellow fiery tail, coming across sky at a slow downward angle. No impact felt or hear +1995-09-09,41.9141667,-88.3086111,St. Charles (1.5 Mi North Of, Randall Road),IL,chevron,600,First appeared as a bright white light like an approaching airliner,seen from a vehicle traveling S.on Randall Rd. Moonlight night. Eas +1996-09-09,32.0833333,-81.1,Savannah,GA,disk,30,Unable to sleep, looking out window, became aware of something coming over top of building, lit from beneath, almost luminescent. Slowl +1996-09-09,37.775,-122.4183333,San Francisco,CA,oval,3602,I have over three million miles on AA alone and fly everyday. As we flew from sanfran the normal turn is to the north over the city an +1997-09-09,36.175,-115.1363889,Las Vegas,NV,formation,300,My wife and I watched 3 craft fly accross the airport grounds headed towards our hotel and become stationary above us. +1997-09-09,43.2166667,-123.3405556,Roseburg,OR,light,7200,Light bouncing around a valley. Light changes intensity, brightness, and color. Disappears, reappears different location. +1998-09-09,43.9786111,-90.5038889,Tomah,WI,cylinder,15,looking E, trvin N 2 S. 45 deg up, 60deg long.started as cylinder white/blue then stoped for 1/2 sec then 8 little spheres apeared +1999-09-09,47.4830556,-122.2158333,Renton,WA,light,2.5,An extremely large,bluish white fireball fell from the sky at an 75 to 80 degree angle. A very long trail of smoke was emitted and I co +1999-09-09,37.3852778,-122.1130556,Los Altos,CA,circle,1800,During lightning storm and early morning hours (still dark)an object with lights stayed motionless in the same area. +1999-09-09,24.7133333,-81.0905556,Marathon,FL,disk,600,We were driving in a car going south on us1. just south of the airport i said look at that. My friend and his wife saw it when i pointe +1999-09-09,47.7625,-122.2041667,Bothell,WA,other,1200,Pulsating bright green lights seen NorthWest of Bothell area. Number of lights would change from 1 to sometimes 4 or 5. +1999-09-09,36.9741667,-122.0297222,Santa Cruz,CA,other,7200,Three lights across the horizon slowly travelling from side to side seeming to dip into the water then flying high above. They were far +2000-09-09,40.3355556,-75.9272222,Reading,PA,flash,5,Bright blue-green flash lights up early morning sky like dayllight. +2000-09-09,40.2141667,-77.0088889,Mechanicsburg,PA,fireball,2,explosion in the sky +2000-09-09,39.9830556,-75.8241667,Coatesville,PA,light,120,Very bright light rising, went very fast on an angle, and disappeared. +2000-09-09,45.0319444,-110.705,Gardiner,MT,light,120,Yankee Stadium in the middle of nowhere +2000-09-09,39.9338889,-74.8913889,Mount Laurel,NJ,fireball,180,Heading north when blinding flash occured which was followed by a golf ball sized fireball. +2000-09-09,39.9522222,-75.1641667,Philadelphia,PA,changing,5,A bright flash seen in the sky facing west, 60 degrees above the horizon, heading downward from right to left, leaving a trail. +2000-09-09,32.8994444,-105.9597222,Alamogordo,NM,disk,300,Grey Metallic Aircraft Floating Behind the Clouds. +2000-09-09,41.2333333,-80.4488889,Hermitage,PA,triangle,15,On 09/09/2000 I saw an object that had three rectangular goldish-amber lights in a triangular pattern and the object was totally silent +2000-09-09,34.4908333,-90.1591667,White Oak,MS,fireball,20,fireball with small round object leaving it after fireball exploded +2000-09-09,44.9855556,-84.4558333,Johannesburg,MI,fireball,600,two stationary orange fireballs +2000-09-09,34.5325,-83.985,Dahlonega,GA,changing,3600,A stationary bowl shaped object with colored lights. +2001-09-09,42.3313889,-83.0458333,Detroit,MI,disk,300,It came out of the southwest disc shaped, black, and heading east northeast, flying silently at a low altitude. +2001-09-09,42.6658333,-71.5888889,Pepperell,MA,sphere,3,I heard an airplane and while looking for it, a small round silvery white object came into view +2001-09-09,32.7152778,-117.1563889,San Diego,CA,unknown,2,signals are returned from space hours or days later +2001-09-09,47.6588889,-117.425,Spokane,WA,unknown,1200,Very small spere "lights" clustered far up in the sky with one lower. +2001-09-09,43.7016667,-71.8361111,Groton,NH,sphere,900,I went outside that evening with my video camera, because I had been seeing strange lights in the sky.AT 2300 hRS, I noticed a large sp +2001-09-09,42.1013889,-72.5902778,Springfield,MA,unknown,180,White,horizontal,flat disks with blue,green,red spheres racing around it. Nightly these course with the stars. Eastern Sky +2001-09-09,31.2244444,-99.2108333,Rochelle,TX,light,15,on that night we were on a 4 vehicle convoy driving back from one of our sights back to fort hood, texas our base, on route 190 heading +2001-09-09,44.0522222,-123.0855556,Eugene,OR,sphere,60,Round, changed color, swerved, reversed direction without turning or stopping. +2002-09-09,41.6216667,-83.7116667,Holland,OH,oval,4,At first glance I thought it was a shooting star but it caught my eye and moved in a straight line and seemingly not with the curvature +2002-09-09,41.5633333,-76.0608333,Mehoopany,PA,chevron,900,2 UFOs spotted over Mehoopany PA. +2002-09-09,30.7233333,-95.5505556,Huntsville,TX,other,2,White light streak in the sky traveling East to West at a very very fast speed with no sound +2003-09-09,33.6888889,-78.8869444,Myrtle Beach,SC,circle,900,saw an orange object in the sky moving from right to left +2003-09-09,26.1219444,-80.1436111,Fort Lauderdale,FL,triangle,120,Sighting of 3 lights in northern sky. ((NUFORC Note: Titan 4 launch from Cape Canaveral. PD)) +2003-09-09,25.7738889,-80.1938889,Miami,FL,triangle,120,4 people observed a streak in the sky, ((NUFORC Note: Titan 4 launch from Cape Canaveral. PD)) +2003-09-09,26.9294444,-82.0455556,Punta Gorda,FL,other,300,odd bright object with comet like tail in Southern Florida. ((NUFORC Note: Titan 4 launch from Cape Canaveral. PD)) +2003-09-09,27.9472222,-82.4586111,Tampa,FL,circle,120,A sighting of an apparent ball of flames turned into three smaller spheres... ((NUFORC Note: Titan 4 launch from Cape Canaveral. PD)) +2003-09-09,27.9472222,-82.4586111,Tampa,FL,triangle,300,large ufo -triangle shaped-three lights ((NUFORC Note: Titan 4 launch from Cape Canaveral. PD)) +2003-09-09,27.3361111,-82.5308333,Sarasota,FL,fireball,600,Bright yellow ball with red comet tail turning into 3 lights in the shape of a triangle +2003-09-09,27.9655556,-82.8002778,Clearwater,FL,triangle,120,bright light to east split to 3 triangle 1 hovered and 2 dropped. ((NUFORC Note: Titan 4 launch from Cape Canaveral. PD)) +2003-09-09,36.4072222,-83.0055556,Rogersville,TN,light,2700,A very bright, twinkling unmoving light in southeastern sky, about 45 degrees elevation. +2003-09-09,26.6155556,-80.0572222,Lake Worth,FL,other,50,I see 3 Orange "Orbs" in a triangular formation +2003-09-09,34.0522222,-118.2427778,Los Angeles,CA,changing,420,it was a very interesting object. +2003-09-09,38.3686111,-93.7780556,Clinton,MO,oval,300,MISSOURI INVESTIGATORS GROUP Report: Two parallel sets of 6 arched amber lights hovering near Hwy 13 south of Hwy 2 in Henry Co.. +2003-09-09,39.2672222,-76.7986111,Ellicott City,MD,triangle,120,Three bright lights in a triangular formation to the right of Mars that hovered then turned orangish color then disappeared. +2003-09-09,44.8008333,-74.9913889,Norfolk,NY,light,600,three crafts viewed appearing and reappearing at a rapid pace +2003-09-09,32.6788889,-115.4980556,Calexico,CA,circle,900,Suspended lights on the northeastern sky of Mexicali +2003-09-09,33.6888889,-78.8869444,Myrtle Beach,SC,light,900,Bright orange lights appearing and disappearing over the ocean +2003-09-09,33.6888889,-78.8869444,Myrtle Beach,SC,other,10,More orange lights over Myrtle Beach +2003-09-09,33.6888889,-78.8869444,Myrtle Beach,SC,sphere,600,orangish yellowish sphere over the ocean at myrtle beach s. c. +2003-09-09,33.6058333,-78.9733333,Surfside Beach,SC,light,600,Two bright, stationary lights that would appear side by side for several minutes and then disappear, and reappear a short distance away +2003-09-09,30.4380556,-84.2808333,Tallahassee,FL,other,900,rocket shaped, flat bottom, changing from vertical to horizontal, speed increasing suddenly seen floating around +2003-09-09,33.6888889,-78.8869444,Myrtle Beach,SC,sphere,180,yellowish orangish looked like a star but larger moving erraticly disappearing and reappearing in different places +2003-09-09,44.551944399999996,-69.6322222,Waterville,ME,other,180,the star looking object quickly,silently moved from out of the big dipper to orions belt and disapered +2004-09-09,26.5863889,-80.0522222,Lantana,FL,unknown,15,Rapid southbound silent parallel glowing lights. +2004-09-09,34.9808333,-79.2244444,Raeford,NC,teardrop,15,Pinkish/Orange oval shaped object seen over Raefod North Carolina. +2004-09-09,36.7477778,-119.7713889,Fresno,CA,light,240,Object at 8:03 p.m. 09/09/2004 object was going from the west to east at about 60 deg from south 40 deg from straight up to south. The +2004-09-09,42.7261111,-87.7827778,Racine,WI,light,120,High Altitude Fast Moving light that changed direction 90 degrees in less than a second and continued at same speed. +2004-09-09,31.5602778,-91.4030556,Natchez,MS,unknown,60,It looked like a star, a bright white light. it was moving from South to the north east.It was moving very fast, and it accelerated fro +2004-09-09,40.8,-96.6666667,Lincoln,NE,unknown,600,Multiple, flashing white lights along south edge of Lincoln, NE. +2004-09-09,33.7922222,-82.4791667,Lincolnton,GA,formation,2,6 flashing lights south of lincolnton in a perfect horizontal line before disappearing +2004-09-09,42.9819444,-84.1177778,Corunna,MI,triangle,240,Flying Triangle seen over a field in Michigan, witnessed by a family of 3. +2004-09-09,39.0997222,-94.5783333,Kansas City,MO,disk,5400,Pulsating lights dance over Kansas City's downtown Exhibition Center. ((NUFORC Note: Sighting of birds. PD)) +2005-09-09,26.7052778,-80.0366667,West Palm Beach,FL,light,900,I woke up to get a drink of water. I looked out of my 2nd floor terrace doors and saw 2 small red lights. +2005-09-09,45.4872222,-122.8025,Beaverton,OR,other,10,Four Silver Objects +2005-09-09,43.905,-91.4361111,Nodine,MN,light,15,orange ball of light in the horizon moving rapidly then instantly disapeared +2005-09-09,36.5944444,-94.3838889,Pineville,MO,light,1200,large amber yellowish light +2005-09-09,30.7436111,-98.0552778,Bertram,TX,fireball,20,low steaking fireball +2006-09-09,41.7991667,-85.4191667,Sturgis,MI,light,7200,Moving light in sky for over 2 hours. ((NUFORC Note: Possible sighting of stars. Tails are optical effect of camera, possibly. PD)) +2006-09-09,28.4055556,-80.605,Cape Canaveral,FL,unknown,5,Unknow object moving past falling space shuttle Atlantis external fuel tank (NASA TV) +2006-09-09,37.323055600000004,-122.0311111,Cupertino,CA,cylinder,300,Stationary cyllinder in sky +2006-09-09,44.6402778,-93.1433333,Farmington,MN,fireball,3,Blue and Purple Fireball with noise sighted. ((NUFORC Note: Probable hoax from student, we believe. PD)) +2006-09-09,40.6247222,-76.4852778,Good Spring,PA,teardrop,2,A small, silver teardrop with a long skinny tail vanished into the clouds only moments after I looked up and saw it. +2007-09-09,33.7877778,-117.8522222,Orange,CA,formation,300,Formation that moved in circles up in the sky. +2007-09-09,42.1102778,-88.0341667,Palatine,IL,circle,300,Strange star like objects spotted moving in the sky on a sunny afternoon +2007-09-09,30.2669444,-97.7427778,Austin,TX,sphere,900,Afternoon sighting of stationary white spherical object +2007-09-09,27.7705556,-82.6794444,St. Petersburg,FL,light,3600,3 BRIGHT STAR/LIGHT Object of Varying Colors Seen Over Pinellas Beaches /Tampa Bay, Florida +2007-09-09,38.7083333,-121.3288889,Antelope,CA,other,900,strange object over north sacramento 9:30ish pm sunday sept. 9th 2007 +2007-09-09,44.9902778,-123.025,Keizer,OR,formation,420,Two bright lights hovering and then accelerating. +2007-09-09,36.175,-115.1363889,Las Vegas,NV,other,30,Deep orange lights surrounding two oval wings that was slow moving and then disappeared. +2007-09-09,47.4741667,-122.2597222,Tukwila,WA,light,1800,saw a bright light changeing colors red, green, blue, white. ((NUFORC Note: Probably a sighting of Sirius. PD)) +2008-09-09,40.8527778,-73.1155556,Lake Grove,NY,unknown,12,Light in the sky which moved in a way that is physically impossible for an object to move (with today's technology) +2008-09-09,26.7052778,-80.0366667,West Palm Beach,FL,unknown,2,Saw a bright green tinted light in the sky, sky exploded almost like a shuttle launch, but not as extreme. Then, saw a bright orange ti +2008-09-09,28.9272222,-82.0375,Oxford,FL,egg,4,object moved from west to east over central florida at a very high speed and only about 100 feet in the sky +2008-09-09,31.7619444,-95.6305556,Palestine,TX,oval,480,Red oval with black dot and white inverted V directly underneath which may have been a trail. ((NUFORC Note: Contrail?? PD)) +2008-09-09,42.3266667,-122.8744444,Medford,OR,cigar,240,Cigar shaped object viewed through binoculars over Medford +2008-09-09,28.5491667,-81.7730556,Clermont,FL,light,5,AT DUSK, COUGHT A GLIMPSE OF A VERY FAST MOVING BRIGHT SPHERE...!!! +2008-09-09,31.7586111,-106.4863889,El Paso,TX,light,2700,Bright light seen hovering over the western skies of El Paso, TX follwed by smaller lights. ((NUFORC Note: Star?? PD)) +2008-09-09,26.6155556,-80.0572222,Lake Worth,FL,sphere,10,Bright White ball over Lake Worth Florida splitting into 6 smaller balls and fading to Black over 10 second period. +2008-09-09,39.4063889,-88.79,Shelbyville,IL,triangle,7,triangle ƻ huge bright lights, fly over me at 100 feet (silent) +2008-09-09,34.0561111,-79.2466667,Galivants Ferry,SC,formation,600,3 bright red lights appeared over the tree line and changed colors for about 5-8 minutes +2009-09-09,41.6216667,-83.7116667,Holland,OH,circle,181,I seen the craft on my way home tonight. I could see three or four round lights close together from the road, as I turned down my stree +2009-09-09,39.7391667,-104.9841667,Denver,CO,triangle,900,Bright triangle lights in sky +2009-09-09,31.7144444,-87.4113889,Franklin County,AL,chevron,120,Dark Chevron/Boomerang shaped object manouvering +2009-09-09,33.5205556,-86.8025,Birmingham,AL,other,900,Three Silver Boomerang shaped objects spotted in broad daylight +2009-09-09,32.7252778,-97.3205556,Fort Worth,TX,circle,600,Black round silent object moving slowly to northwest from southwest., no lights, no jet trail, no sound. +2009-09-09,42.7761111,-71.0777778,Haverhill,MA,light,120,On 09/09/2009 at 20:00 ET I notice what appeared to be a shooting star but, it was not travelling as fast as the ones I ovserved in the +2009-09-09,40.7683333,-73.5255556,Hicksville,NY,light,60,Solid white lights over Hicksville NY +2009-09-09,41.6088889,-73.6822222,Poughquag,NY,unknown,420,After sunset and before total dark I witnessed two 2 very bright lights moving across the sky South to North that, made no noise, and w +2009-09-09,38.9105556,-122.6091667,Lower Lake,CA,light,120,2 high flying lights heading appr. due east or NE from direction of Northern Bay Area, flying much faster than normal aircraft and much +2009-09-09,41.9941667,-88.2922222,South Elgin,IL,circle,180,2 lights high in sky that looked like 2 comets following the same path. ((NUFORC Note: ISS and Space Shuttle in formation? PD)) +2009-09-09,42.0347222,-93.6197222,Ames,IA,light,300,Lights moving at same speed as aircraft, but no running lights. ((NUFORC Note: ISS and Space Shuttle in formation? PD)) +2009-09-09,43.6377778,-123.5669444,Elkton,OR,triangle,300,Two triangluar-shaped craft filmed near Elkton, OR +2009-09-09,45.1847222,-88.4736111,Mountain,WI,light,120,obj with comet tail followed by another object ((NUFORC Note: ISS and Space Shuttle in formation? PD)) +2009-09-09,41.0813889,-81.5191667,Akron,OH,changing,2400,Shape shifting worm like ufo +2009-09-09,38.9516667,-92.3338889,Columbia,MO,light,120,First ball of light spotted at 9PM, north of Columbia, high altitude, moving west to east; fist ball appeared to have a fine aerosol or +2009-09-09,48.0905556,-105.64,Wolf Point,MT,light,300,Three objects were seen, one blinking and the other two in particular glowing bright and dimming in the same path. ((ISS?)) +2009-09-09,44.8944444,-71.4963889,Colebrook,NH,other,120,oval-like craft with one blinking red light and a white the left and right side- turned clockwise until vertical & top white separated +2009-09-09,45.2166667,-85.0138889,Boyne City,MI,triangle,360,candy cane shape across sky followed by triangle over michigan northern sky +2009-09-09,44.0466667,-86.1786111,Fountain,MI,circle,120,Bright craft, beam of light in the shape of a J extending out in front of it. +2009-09-09,42.2430556,-84.7530556,Albion,MI,light,180,strange lite +2010-09-09,25.0861111,-80.4475,Key Largo,FL,light,180,2 strange lights seen over Key Largo +2010-09-09,40.7141667,-74.0063889,New York City (Manhattan),NY,disk,180,Cloud-like saucer moving over Manhattan early morning 9/9/10 +2010-09-09,47.1041667,-122.4333333,Spanaway (South Of),WA,egg,45,Strange glowing light and noise from two crafts in Washington state +2010-09-09,28.7555556,-82.095,Lake Panasoffkee,FL,circle,40,I saw an object that looked like a Planet traverse the morning sky +2010-09-09,32.2216667,-110.9258333,Tucson,AZ,circle,30,FORMATION OF LIGHTS BLINKING THEN DISAPIERING +2010-09-09,40.0394444,-84.2033333,Troy,OH,sphere,45,A bright metallic ball-like shere was seen around 11:20 am. +2010-09-09,39.2902778,-76.6125,Baltimore,MD,rectangle,3,White Rectangle no wings or windows climbed fast at steap angle from below clouds then into clouds +2010-09-09,41.5733333,-87.7844444,Tinley Park,IL,light,300,I was outside BBQ and as always I tend to look up at the night sky a lot because I have seen two UFO’s in the past. It just so happene +2010-09-09,33.4483333,-112.0733333,Phoenix,AZ,other,6,Glowing Object moving West to East in North Phoenix +2010-09-09,30.2669444,-97.7427778,Austin,TX,light,120,Two tiny objects (like dim stars) fly overhead in unison, and then begin to move around each other as they continue on. +2010-09-09,42.5294444,-83.7802778,Brighton,MI,changing,300,Glittery random lights near each other, really strange stuff +2010-09-09,29.6513889,-82.325,Gainesville,FL,oval,2700,2nd night watching the objects, approximate time viewed 15-20 minutes. ((NUFORC Note: Possible stars?? PD)) +2010-09-09,29.6513889,-82.325,Gainesville,FL,oval,7200,Multiple sightings by multiple whitnesses, unknown objects moving in strange ways, speeds, directions. +2010-09-09,34.1597222,-106.9097222,Lemitar,NM,fireball,300,orange lights in the southeastern sky in New Mexico +2010-09-09,34.0975,-117.6475,Upland,CA,circle,300,It appeared to be an orange round object moving across the sky. We watched it until it disappeared from sight. Maybe what a satellite c +2011-09-09,34.0788889,-87.2122222,Arley,AL,sphere,15,Glinting metallic object moving at a rapid speed +2011-09-09,34.3675,-77.7108333,Hampstead,NC,diamond,300,Hampstead, N.C 9:30 P.M. diamond 5 minutes orange lights seen by three people +2011-09-09,34.1463889,-87.4022222,Double Springs,AL,sphere,3600,Strange bright spheres in the sky that sometimes changes colors and moves very fast and in strage directions. ((Stars?? PD)) +2011-09-09,34.2255556,-77.945,Wilmington,NC,oval,120,A bright white, oval sighting that moved in a manner unlike any aircraft I have seen in the area that unexplainably disappeared. +2011-09-09,45.5236111,-122.675,Portland,OR,oval,300,9 Objects, oval in shape +2011-09-09,34.4208333,-119.6972222,Santa Barbara,CA,fireball,120,An orange ball of light, (possible fireball), above ocean. +2011-09-09,43.1547222,-77.6158333,Rochester,NY,circle,60,Amber/orange balls 1 following the other changeing direction at unbeliveabley fast speeds +2011-09-09,27.4986111,-82.575,Bradenton,FL,sphere,300,Bright object appears on Northern exposure, Bradenton, Florida +2011-09-09,32.4805556,-80.9805556,Ridgeland,SC,unknown,20,Large Craft hovering over Highway surrounded by Bright white lights +2011-09-09,41.0358333,-71.955,Montauk,NY,cylinder,2100,Yellow to orange colors radiating above and below cylindrical or disk shaped object travelling at high rate of speed +2011-09-09,32.64,-117.0833333,Chula Vista,CA,unknown,600,Blue /red UFO over East Chula Vista -during power outage +2011-09-09,32.64,-117.0833333,Chula Vista,CA,light,480,3 bright lighted aircraft that was a shape of boomerang or somthing (green, white, and red) +2011-09-09,47.7575,-122.2427778,Kenmore,WA,changing,5400,UFO changing colors, shapes and pulsating - Kenmore,Wa 09/09/2011 Video Footage +2011-09-09,41.5261111,-87.8891667,Mokena,IL,light,20,Steady Red/Orange light very bright until it went into cloud cover and faded from view +2012-09-09,43.8013889,-91.2394444,La Crosse,WI,diamond,300,Saw two triangle shapes flying and doing odd things then got close and dissapered. +2012-09-09,35.8455556,-86.3902778,Murfreesboro,TN,triangle,7200,Triangular shape white light with red and green lights on tips having a haze on the sides. lasted over 2 hours +2012-09-09,42.425,-71.0666667,Malden,MA,triangle,60,Triangular in shape. Moving forward and flying low. Lights blue, yellow, green. Was not revolving but instead moving like a plane would +2012-09-09,39.0991667,-76.5361111,Riverdale,MD,light,60,3 bright white lights in the Sky. +2012-09-09,26.0391667,-97.5561111,Rancho Viejo,TX,formation,120,2 objects moving together or maybe one huge object with 2 lights. faintish red, yellow lights +2012-09-09,40.8258333,-74.2094444,Montclair,NJ,other,600,One Silver object with a big oval center and two smaller ones attached to it. +2012-09-09,36.8466667,-76.2855556,Norfolk,VA,disk,30,Disk Shaped Object Observed in Storm Cloud Formation Over Norfolk, Virginia +2012-09-09,42.3636111,-87.8447222,Waukegan,IL,circle,180,09/09/12 16:36 WKGN IL. APPEARANCE OF METAL FURTHER AWAY, UP CLOSE A WHITE RING OF LIGHT, ROTATING IN THE MIDDLE REFLECTING LIGHT +2012-09-09,38.8119444,-94.5316667,Belton,MO,circle,90,Orange ball steady on the horizon, Belton,Mo. 09/09/12 , 5 P.M. +2012-09-09,35.614444399999996,-88.8138889,Jackson,TN,fireball,600,Two fire balls in Jackson, TN +2012-09-09,40.8666667,-124.0816667,Arcata,CA,formation,600,Object with red and green lights moving sited above Arcata, CA. ((NUFORC Note: Possible sighting of model aircraft. PD)) +2012-09-09,35.4872222,-80.6219444,Kannapolis,NC,fireball,300,Fireball traveling in the sky +2012-09-09,35.8455556,-86.3902778,Murfreesboro,TN,sphere,180,6 red sphere shaped UFOs formed a pair of triangles in the sky and vanished. +2012-09-09,35.7211111,-77.9158333,Wilson,NC,light,10800,Bright orb being chased by a jet along with several other crafts after that. very bright like the sun. +2012-09-09,40.7008333,-73.7133333,Elmont,NY,circle,600,Orange lights seen in Elmont, Long Island, New York +2012-09-09,36.2,-86.5186111,Mt. Juliet,TN,light,120,Bright white light moving slowly across sky with NO flashing lights. +2012-09-09,34.2783333,-119.2922222,Ventura,CA,chevron,900,Beautiful bright blue delta shaped aerobatics. +2012-09-09,40.5622222,-111.9288889,South Jordan,UT,circle,10,Circular disk with blinking lights scares two sisters! +2012-09-09,41.6819444,-85.9766667,Elkhart,IN,oval,600,It was the night of sept 9 between 9 and 10 pm we were all outside talking and visiting and my mom was on the phone with my cousin and +2012-09-09,40.7141667,-74.0063889,New York City (Brooklyn),NY,light,1290,Glowing, circular lights visible in the clouds outside our window. +2012-09-09,33.4330556,-79.1216667,Pawleys Island,SC,oval,60,One large bright orange flanked by three smaller ones sited at pier at Pawleys Island. +2012-09-09,34.2783333,-119.2922222,Ventura,CA,circle,300,Bright Blue Object seen floating in sky near Coast in Ventura, California +2012-09-09,32.7763889,-79.9311111,Charleston,SC,flash,900,Orb of light flashing reds and blues, stationary for 15 minutes over North Charleston +2012-09-09,34.2977778,-83.8241667,Gainesville,GA,light,5,Ball of light +2013-09-09,36.8466667,-76.2855556,Norfolk,VA,unknown,1,Two or three lights shoot across sky over naval base! +2013-09-09,42.8863889,-78.8786111,Buffalo (West Of; On Highway 90 West),NY,triangle,180,Massive Flat Black triangle with 3 red lights. +2013-09-09,41.0525,-80.6080556,Struthers,OH,unknown,120,I saw a routaing line of stares that seemed to forces it self out of focus if i looked at it for more them a second or two. +2013-09-09,32.7152778,-117.1563889,San Diego,CA,light,4,2 white lights zig-zag over Qualcomm Stadium (Chargers vs Texans game) just before commercial break going it the 4th quarter +2013-09-09,30.505,-97.82,Cedar Park,TX,cigar,8,Cigar Shaped Object Descending in the Direction of the Surface. +2013-09-09,33.2097222,-87.5691667,Tuscaloosa,AL,fireball,60,White/green object much larger than "shooting star" NW to SE on 9/9/13@8:20 CST. +2013-09-09,36.5297222,-87.3594444,Clarksville,TN,fireball,3,Green fireball like object shooting across the sky towards the ground. +2013-09-09,29.6513889,-82.325,Gainesville,FL,triangle,60,Three lights in the sky that didn't look like plane +2013-09-09,34.1013889,-84.5194444,Woodstock,GA,sphere,20,Driving 575 at 21:00 hrs saw a white and green bright sphere.Moved really fast up and down then it disappeared. +2013-09-09,36.1658333,-86.7844444,Nashville,TN,light,600,Round from the distance/slowly changing colors and hovering. +2013-09-09,43.6136111,-116.2025,Boise,ID,circle,1200,Boise, ID, spherical, 20 min, 10 red lights, seen by husband and wife. +2013-09-09,38.2972222,-122.2844444,Napa,CA,other,1200,Napa UFO, +2013-09-09,38.9011111,-77.2655556,Vienna,VA,circle,5,Saw a five gold lit cicular craft moving fastly from rght to left. +2013-09-09,35.6527778,-97.4777778,Edmond,OK,cigar,1020,2 witnesses 2 miles apart, Red & White Elongated-Cigar Shaped Flashing lights, NW of Oklahoma City diff --git a/figs/ex5_1.png b/figs/ex5_1.png new file mode 100644 index 0000000000000000000000000000000000000000..104326be48ca69003db0061beae613b67405ca28 GIT binary patch literal 9511 zcmd6NcTkhvyKN}adk3kZ3j!h?1dKpv(u9DN&=Em;N1D>5g9u6oQKT0!^xhE=mEHxU zM7s2LcE0a-X3m_sGxz>^Gl3-UOy0fsv!C@mYptDV9W6L15fc#v0wGmXRnmh%u#Ld` zSOProKNm6a6}%9-sy_CBK!~X^e^`)rnG6sJJ48+CzP@kf)|{WGzH$rxuFH;w%=3=q z#L62lDnmo$T#amQQhMp*(&)NDR;5HX*B`O*sbHnrsw@$7o_@o{~w5e4^(W09pxN=o{+;i(>`qNJqs(}E@=wAP{>yVR%( z8zK^X74U4bGOy>VqXVY-PK@x;2hIDsx|9%$^P?>Wg&?^%w@nZwEur}2zs`4BBh?FG zR#wpL;4428Mp4`c5hU#^{V8sL*L4eFykNq5udN6XN=mp;PEIVyP=;h=Yin@aWlKv- zRD66-G&OIf@1E8B4Krucfve4?gbA1uk7dBZho;jIc!3vbs->O76(!V z?5C=^hcl&dAOz&(E`7VvVCJ*GMhV_%eGEmQk@4Q^-#GrvpvdPMeR`?2<*;J9UryCL zc|h=jT;ZY;;a4+70@3-T9~B*aUq^=mQDz*Tp3aad>qC|xf5sPd+_>OJB@ZT-WLOkN zkzW<+8riv|= zr8bZUmbJ#CpC0jsMMjz*`$C~E2Yl@f2#~mMgv^LS+jRump$;T6aYVvoj&WGJSQIde zg?hQt$uw+^5QX^}qGKnI7@gTt#6Pju3p7!t7Vt$kvZs&x|-U3S630b z+s68}W%>Eo_+-p&9wYZ6LDgUrZra5Tx;!-GF;eX{JoW-qqB(5fJWY?_?RqZ(z=tn#YF#=*JcJS+8gXTcmZ z)KULDO~A#nvfQQllF^~3Ax$b`@#BFXfrw+0d!hfYgF*ob+;rMzD=lR5yLUtxLlK`p ziv^r-p?o(A(=eH*h!nyNu^W1q2cUVUlPh1A`8xj_%aXn^$5(%G){P&`oDE^Q9UQp^ zhS%3H0@tkfGhL6g?}dZKcG`>O1C*!mJcOyJ;6ZXff2L6>pp?iUHNLGdA62yH%I)Lu zJ^SWQBI}08U+c;On9%2ptSz@rTAHF)w53=XrBq=ODou2Pw1?T)+}Zxq#3}jGBD7FxFpz#d)KW*5K{A4w7 z)K^kbu^M>Ik7+-M3S`{wu50W~$?~cP-1)NUaDjT+$kn;AYTLmKr&oPW$G2tl4x0>e zDR<;(!X-F(Ad03cl)s(TLdFm;(j#Sa%}s(KZBwyUO;=8GL=}wP)0b&2r1Vl|6SX{$ah(=~Z8 zKvqgjC?A(7Da%)JU)487_|2`{npD2`Q%dggV)0+hQwf@zo1dJV%-hMN>t~GLrFQt zMlIN2O~An(7Sg#?U)-!p?I;fl9E1~W@V8Y6)d;1k^&$%M5W-qudfsd zUMFb+zkt94V`CXwQ##;Hs(w?<8H271lM? z)rnbIan5rM9AaWLJSou&I*Lk4haF?bMg3JXTT-rzZ4bE(A>W$(Jj5KwNj_?2!9Y(O z7#Prb{P;QPZO|vtOTmMm)F@$#v-KVT(vqpB(&8@j%-!AHs_N=5krk0D1xo>fP^kM& zIGA(Q)H798RYhOlx?ZpF$jIgW)j`mG;ZL9P!>gjA`kcVJ`YB-S;^MS`hInb&`$V=| zgtWFQR99C6(xjuSi>37#v?(9ofM}81C;$Cr z4P4yCi_-(l%`Gh0V^ug?rA{RBer#A&8GS1@5LiDv>miGb+7(2?n22J!J7kGms8dr@E2o}C#l$@D^b|`GggWT3UKXCL zN8<7rdZH;Bf?lUmpj#TW&l;zK1CpTDIPT|9{m+gQ0DjPX*(i8$ z^e>OiYvl$do-Z2aB3$#TgE316CLZkN<)eOpo zzBitQdShdw!>)!fveONo^@w|5Y-~Pmv#2D-_ose9ioQA2M!k9k18D{l z$+@Atv{VqR2p12pqqi5ICk6DVHw((DN=nX_FO?s@QYm;b^-Se>doC#}EAWvT0&rhZ zQBevS8rKW7|cC7P$Q!JzFHiuU$={)e04 z@85HEb$7QfEUFmgTF} zJoP(nQ>R*6Nr`mhje2F&>-c^h?2YsbQ1U?ShbCvU57KObIBD_l#Q|#W1^&^ zi>M*wwjVEL3%Z7CxIftsot- z7!xVA02JEr^cKg7vYF=-3Ya1RR%EB{A#-B%SsX(Q^PL5c1+v5`yQgO9_{B+n^O)5WI9cn?Epd`uty**Ub2HUhFtthD<U)BQH#(qTPKfD!8)j2+G-~jC{?BsNqbF`ldNS`K@s?54ZmQ~P z2WLAaB@)e-@>ewJvi% zRk21UT@9o6^LndGpgNRNGFHmt195BCF$Z|J?1&f@|n8>#r-ZUKZ(;PhWRwqP0N81`TVt`G0? zzarz`$9#GnN)`gcKI8-9ToG55u$UL3a3p?)hUs_eih|R`cSBy zh-4S8>qZF4t*pb9ar$xDpzLyd_^m31Pw-aHvNb&4%tk;N?Tx|&;$vr(lp7DLOcotp zGwUj7GnjFjr+T%vX4tv-AccjtkdSKkorK*wOdz(;HrRg+^Ws2=h+=YoJY90BV&}e1 zO~&DR=Qd6dsTl2xs3M_{yQ|Gz_E8Ei5)dh`7{EO|AC)S|lG2FEy0p*^F z4+d6UESx}H%6Qj~ot+(Wur`7ZX*%C-WVq-5_jZ~^Ah2wV>fO1ou8vzd`S=Jh))p{s zL~Qyf(ltM*#Gu!5f_rYdH0e5?kC&N%K7+6}QCBCT6GoB%C+Nih+d0&sLYjFHBaEQwaNHy+A)&XVqUBZNPD^9)A0VzO z?S_~jZN$P&A-vhX*nWO~ldZuDJqc_Hoss0$d%wEZCo0(DnWbO;{p*R*guqtnEjB1| z-JX>O62=19O6j7uL=cO$;VdJRGmGA%M<5!}_^iGVY937pJ3ME++$`qnS52Uf{%(#D z1B=bu@9_>Gz67MC-HYv^y88NIxw*OM>;n)X%fUCdF*FFQtkQlI`e&h)4bXG~BBBo9 z@R`!GVX`|rBYUMBQ9{YeN*1RQ`u)4!XQvsuyu3WfN@3~jtm*9Yon}5^;of)Rjuba< z5(7_$|IvrVz9de}I>5yUpkkK}C(Q97T)e!?VDl!M{O&gR?8N^b%2;lDfdjOtSJ@FT zD~W+xKSWO~gV41D@2$#XO$(@`eC-_h+5xzd5(IK_c?sxxVoFMAU7ghAmN%e}9Cz+e z-jsNzsHg~$@!5`D?oF`niDgvP)a(Lx)-^Sa)s{cS<>%+0Y<@2J`|I1#rY1R(n-V1T z_4P)d?J2)F&%FXc;NaoG1Nni;^N!BWswX3?f+k@H0< zc$ExR104oN!1$jnXPW}g=9?HnG<+9d;OhXV7c*caIa|x8;}pPAUVHrDGztm|GOD&A zWc6R?0PJY-@_3KXf4Y}#Nj6&psBG;;zZHW(Y4bkBSGKeIiEW~+BY3dI~J9eDgmbt7?ciX zA3Wo;%O2O@?X+IY!yY_vJNvs~>@^>JeTlIHZEd+RHfer7G~jeKjewZAliobw1#p$1 zckfb{7*<3iB#;A)MkXdwto;7{tE!i^^Xw2kny*X@Q3Q%l#Bp2@=z*rc-!*_lC>=vu zT5@$#QTp?(U`-tsp=a$&Bv@5qX=+x`f@fl=zx{=LBtjO;r0% zG6MLC;u76EP}~q?vp)wYDVQuLsN}4zET}zg@6}R@H{acTGE6F5HD=qF$N_pTXu&M!O99XapC~uGW6=hYJ6kWPo&K@mnJ($V3W^>D z3kxY^{d*xXW}ARZycR(?4v@4r=d)l50DJPMX5?F=kBery2v+m+5mT^~4 z&v;|@8IV#SgC2my`#qAAfH~>_i2^PHl{MMuBaFe_^X+zojHYrGyE)2v-Z%VXTRsH1KVa_sc36NHaV=`#fLM|^wvh{#EE#fpSh5=e{0$XqP zz2_owjh5(CN3Am=Nhl`Thz@$-+1TtK&5kp>ObvNOVRYq}Pc!rH<2ZS_$ff!MUM z;ldmxkjtMy9LGyv%sInBFTMlb7WYpL*XC~SZ+y(b7?L%1LooDs*=U28quj}2sDTC- zKv#jv>DA@A^>R-fC|Lraa5{cocFxcO#feMEyd@T#>~I2E3alqics$17yiqV3^(5O5 z4|Ar4&lUiI5Rj4eWVp0EMpM~<0g8uvpX3B0433(Q=RNAj$Hv^Wa^zY1`};Bbd$cu! z&w-m?P~do&0fNqytzP#$P}>stUBLV~)N*#_2ATY?*MQi!0WnKS0m2WImc*O$bG%`S zpv3-k@M?zdmm&m!JphhYmUec69{~yth1!Z6|HG+%>bs5pa~2VPryX2|>M{Jo!Jz+_ zkA7d08^?$)u8CHJ9%d1luEpfsoa4=bjE=S?a+DwMOyPi{q%FU3X(Zucy$$u|KjS> zrNO^q|L}%NEJVV^yE(Xr#NyQbt&VRpmz@oy0FG19gsqwVr{QZNhhhn$EzNw~%sg;l zJWaMrW`vkM1^pz)KtBHF>4k^I0L@z)Ght~SDAd7*HJF|QvX~bck|1B)+-$3%T>mCV^~j(zPc1`k4ZSbm<8vR;<^K0+pCR2#>*V939vlT zco&BiZOaKbL+`Kz5PgH{=n0%qJgh9)L7DOL8`~{6cMou;QTW-x$aq$)wwx>6SVo+t zYx!?goV#b}w%PjXZ5({lUVS}i0{Ywic*Nm0X{oV6&DSbx(TEU8?!%iF(_((ikc-_= z=Dbfui50D9MC)T3<6|GmclUb74w)6mW_{QwsIYPIaX8`FyxIfu@eCY;U$aSLnY@+{ z(sP8-tWp$we2FtHC$OV~ILXZ*wxA2$H{HOKsN+MdShuRTZ0g>s6|7!QSYV9%=HLY8f49 z#2n1=H*?mUW}KNF)uJiL<@t`!&x!9iXHx9#?Mt(F73soegIfc(mpPS;jlJYdzUWUJ z{LXMUad4R16Ea6$W-IK4QDn&&q%AZa^?P;npePmv zp)iDi()rPTZ8tPbg|q9^qkS(oH?NMQ*ZOzcH>V!)*l%o9KU0aIz`_#UPG@*5#Pgxy zQsLtMm(+B=uF(Sb>xHY|^U}A4%C)#M`v(=SlJtIjgg|hIFuw&@ny(rTTO|)Jn*Xio zUtNQiAKC6=V!5r9Bfno?vvYm9Fm}E+oH{e_+j)tL_TTf~AijS`-}PQ>Xzz>WcVcDA@(Pgr7=vPi)l*S=FzEf$%+Q$(8Z;Dq7AQzL!cm6bj}HAzm+f-^tUOt}P=g7e<gUnr}rVhp#e&`NkaHMs;;# zZETF4x1MXs%cQ(>1crD~spnkw!FIP7?~O`N^2t>mPGIgN=LM zTiC3AO7qbYzLlm7ho@^LgS7O6TQT%F)Vu?Y6aGiI{(p-eFR)$n?fBo6V=$^#LROz2 znXrrM34Qsb*Dp(9ZDr&BcSv$SzHz>}1l}$2EYa#G~MUU7DVthM_Bj3CNjUS!TkCVI(ZZEIIvLU0>h2TcIdmpP%uEA%%BzJig3S z^lQ<*eS+`dOzR`M(_SdUd;Z$;Vo?DyBGCDsj$zBl(qcA}c zQBrb@2(yor97N!8gr&Wk!26l;@ufu;qn0x@5Xff z@62R=()?oj*sOc z|B>Pww(#wOg_!ai6zbAdTG6+?zX-9m|@AIaOttc*H1%WqemZuBpQyrOeLUHJ0w z75xutp9+YmIbgzvOe{3&IML^{h$uZu!8}fT5c8%{%Km!{dHWB<| z_b;lVzeP<=-8Fbu%h$)pCqfcS0*yx3zmh$dsm0dpaqf~*iJAJQE*~FX+B zqlt>1@I0C;02!fL5Y49~mwM10e^S3biTQTJ_-JoqYq9r|H%7a$2Of_e`e-<()gHqa z60Yfb-907F@k7nYc8<4@rn-9jOiM^4zs)@^E-n<4T4|7~c~vN>hW%vfMqj2f<`b<% zt`gJoP?2B!$ySP*Wy3Y(OEU8Q`^)6q5nMLNqU9nOQ1e4YjN;2J zj@LO~6OKD?UhWjyr4SVr6+B!n_#7H)*)7F$lS@NX^juk4*;&s=uA9;0x!M?<#*f!A z4WycFJ1fHuTfd(AqN(+zG?A_2Ouk7SBj|A7#>S@d&ksh)Xm0=2(F&@fb`b(0w6run zmCF`UyvxpYcwO*#tDD*EQ2lUsjh=-iz-hJ2d#uW-yTn}6%F62X>({qfSUNIEkPVUi zl^kwpQ8C&U!H(@76?LQ0pS-Ema$0(?oH3{JQ+YW*om5mkbIHhKm}kvi11oVh3`!I+ z+Fa6dIb11ery?aLCd9*$*^4slPTr^(KMu&qF25Mx*(9)5iTTVR*WB9b_gh{R21$!Y z<1oPsAuU{$lS_a$SFetxXg5tmpia~t|;=;-pDcFktn zA~A2Vae0?A3kHf!$x)G!k*0hua74k1zDDO-CoQx}N?5*SsaJ$uV^j=^jcq4z+Y=F_ zBDJ@QN#jPYqnC@1}@O(y^H<<;|NebCg*X1YZxzJ7j~ zrEQ%&r3420u6tjfc%B|7_#~BuQlwsv-CB~nN}iDK2dR@yrzoEGd(?8Ph5fr zlf~3|7Wcf*slG7m;=NLJXO{~6os+q`LXE`>@A_k!E7};Z%X`PJICx|a_4Q}jHCd^z z7(;}(voc;252i6?RTcodu~Mg9uwFY*a6KgSqc&OQfNVo61nk#ub*IRrXx6x*5>rw*UNsZyw?{P`Y%jI6wY^#$DFb5{IlN6| z$di076Wo{0<-i*C%pfct89!zF|po zC8hj9n@rBU_^-E)W6D&=WvW+Hopx7gnVJ0u3k-OKN$|aus~oxPMr}y@)$MNXj@nUa zx@?ES85WXvpHYl|;1Y3P?;`Ai{$++MMP}kGB2wJ<2pqgV!y>ypR6y zpByQ$qvm#>y^>#}IhWa8TkUd~JG=sM(r0hao~3gA@x6QZUYnS_g0&2oa6bv8Y>yLi z8gfdfw!-09;a6f{V33UB^!@eiX*5@&SkK8}LDkVlx6sjEf~3ar2BFa+CUZzx)T%PJ z3irfjYO@*}>(jK9kPZv`3we3;Ey6FQr4e@HF5#Ldf5O4!u)Xm~&sZ;Xy^o5D+KEZ_ ziJ9CY7wtH&`XR&DPNmEc{WAMTj5M!~R>{fI+9k}xesO-O5zD5V5FXE!47b;L;zmN; zqNSxp_4M~o+g4mSduCu|sLEID@K@+al3c~oCrY*W*g7vER}GcCKvvs>(p2;Nbr$b9 z1HU;`z#hSDS9s+Nvy=<;+3i-<9)Bf_<~IGVlV`D7HaBI#tCauh0z{Bkz3B>D5D}|V z?ok`Cb)VLEYx;KuZ%Mv+vmM0wjDY(&)dx13ZcP7s+!n?xz2#cYY92QK#RE1{1KQ11 zul$|3?85J+C8LdPksM_U$NYDY8l!e3wJXh_ELhdOM|vYU?y-sj+mRrYZ) z_H6CWCl%LYGs@nlnL5l)Gakj!r4-%4hc_^6>xakoRT`P&d_Cm&-r$#lcUGlZGr6%%>@@kx&JJ}o+yrRaPNzy7?_l!U6 z&Mp^;Us401Udgbkv)UmQk)g5dip|v2)L-9yah2k!&@90_f=e%@jL2^UUeE4QA$vOX zwD6E%#SNX9C3-ElQiB!ZLeufmPottwK|${QOa959#WK{n?zVrnY>ea#K<98BMuojT zy+gf1oBk#j&7bi6TivOvY<)^uXo|IPUEx{WX`G}D^YE=&?d~LUG8LIU-(XU|fzv+2n2&P-VIi;Icf zx^u@9&h{!5Rp6*ulYRliYhRychVF}D)+%1wgcsir@9)C~zIgE>N`#ogQPoXd z{icF~0)!XGt@%faiXvzzhw!&M_@;;$gm|rk>B~clv&HNEP$jD){qfw6gMb*j5YP zkJ8G-M8SPN2ZY*|ddzNWQ8F5$=iNMA_r(s`Kc4ST4&SI+o`0DWMMF;wU)U+#gJa!9!5otESjMMsRa_6kO?%!GXC`8^;k}5}o|>MP zBF|rlQih?gUcH*wu-^*!-i_APy#rGi8BxQzd?PW4mfG}Q`Z%%M9*ySYGk$!`tvVuh zE)>`C3p0Ms*F`FMgC@!Tta-WxgBJX;N?D2@K75#mi0&jKj_$Z6drbEugLj{N;X}Rr z$3NBDWJ*jVCfw0y`V1SFw&C=<#<~fEIX(v1h^4%^T1<%VEp_Qpoz{9T`6JaV#aK_9 zs9)q)(TPInYq+mlvhFy(<2TZq|^z%;Jy z$|)!`)V{?YcH*bD^76f>Wg{asA!CO(Ll8d`@{+PXr-8{(hU8Mk($w9YOd5`Y+lvaB zUS2rq>FKE%8F#MuK9`gG*2)?4B#Nb*&0^wVmFIKxP~5L4Cr5f47fO_CTwO96joNLq z()x$;_;srK`UGQzQ?jxKITdNHu%CJBo@cwFqPx(Q)CfkEaA1!7^!@!Me}8hG8;~6G zz&jvo=}7HNyFMJ7I=0cs`)e=j_{i6%kn5O%CDyA!r_QV-Bs5gi#YIR@PcKDK5lqRo zCjRqh;wx9K_(1w$RhnM8M)Px%uE=tPZG-2sg!_H`i05^g{0X=WB-1psw81eklFrV~o8p~y zT0xM-f+atQ51cacymVl|Z5|yF;nVt?-(-7H@+hV;e|Dpht$-fFY|mG?rSCnnVNibl{bv#q7jQh$)I<}SbEajZX61Hk9Xm(-<<<)xu&C(`ifc$#tRjLX!Jm{o zJj59*@Y||POj44D@chr8KOf#DHo{j{%(&)_v3woHeB_y|_;pcQy;61Qsi_f@vFea4hjV+zMhl<9671f75c4M7yq1amKsY{Uuy!%V ze0@JdS3RJrfi_bmTEy|${ozf!kP>4%$;HB+mrPEkhRaI3Q3ZPB0+)8Xs*L%gtu_b3 zG|9RtRntjZDS6BWJ62r|7ovh256rC?22?3F*ZRYZ8V{CUli|cWS9{$&=iO-P7vFNn zIO^AQiNb@O6;@il7743Qq$RE5s{!gJV{tOO*$XD4!JU1TXWo#*MIg#v^E0*KjIRcP zxQ0xo1XfUu6BTxTN8Plq!Hk2a*j9bAnS@J2et%eFfK5&>mkk~je^9l-?w5r851uDR z9gCkR3t)0DRZdJLohXEy?;6;M8#tYqdDLk|JJ(Puzp+ymm2^6)VIH=uh&{Ww^tO0E zQZPUH`gjJevug}KZgAuIGzM{dp$o*}VH}BWB-r_mSMlE8Wnng$cV{XXMs6y0&AMme z&t{J5j>Wg=>dT2O=EJv=M+A%4m|it3ZhsDQBM;$c-oDnVp?X80uPUHw@618ms3+|3 z%-Yz~z=HCI!ltmrhWw`Bxyy7dOOxAnq*k?dL1yY*x+lj&FWQxMlw_3~cGN4%Ud`mr zHtCG&N^rH$Z@91BdVAoAzlWc{SHRlLI3SYBKH}`teU(avjqH9F0a5U4>++BhW)faE z3%Bg5KRPTF+@Ftx4u_ncv0q(6tSnQhDlXKR+hRY02&|^JXG2wvHB3lRUUAZjfB#qg z()=i6h*X(FvcJoHF5SWD^qe1+@tx+XMs+fs)GI7Gdbx^5 z?w=SPY%OXp4rFD40ljpI#qbROvEW@UjgfvlnQN#UF9{pK`(=$UF@;V}a~$zctxT zV+rzxP1IZlBX;6mwAGjQyEG(GWM)sc?~-D%>CE5iAn)nyxj~PZ@zYlXQw6O3d4|K% zBht7pH7O6*Lc@&8)v_bDc~dntQ8zpuUECpIXUi!0JHN%D@>C~^t{T?X8kMIVv!?ZB z>S}KqM9IABgu}C@ib@{b>R6dN$P14e4S+0ap>UVl z$?8|EA|LFu^!4;_)I-)rcJU_H6BiM}l8iTQtLT}nE<L<$>jfwTKNBAD8GE|MQ;p~Qm*@Gh22x3KBu*+rXQh<-{L>RQkumVpJOqS;oS%3 zH0FA^lG^0B(Ln03R<$b`5sJLtl2@{OR_FJmHx-?bP*qjRZ7AanzNBLJC5Za%ZN{HU zii=-R%m{^I?a$tH;F}J-3+X(bNQ_-y6Y2l zCPRh3f9Y3yG*5w6-I<-`L5wJ=I{GfL&dJgK%*@Pl$Y+IiM=*ebu5+7^VdLTh0(rov zp9Pn`?aEL?6P4S@(ZEwG7qqtaZ4qyLA)`YNk25=KHovGxFAIwNIo$~HR$0+pA_m$ESn*4((6i;G5m+3Ky$!FLw=vWD3; z`#Hn0uyNKWJPGbYxyDjHPYo$yf}uK?+Drs&2rq0u91BGlt7ZpmWhY>^3*H!SQx1~> zwof4;So7mG!lJB=XERs!F80~m;;jfq{*ecfOR@J z@Tr$u8}>RQ7*B;U-MzPPYU|{1t-xVZ|H0k_HYCh<85q8P`7%+O6U(N3#%;e<)Ba!~ zg@J_yXTqOnjCa+TiR2Q`nEf5r>OE={&xi%)!dyg5Oj{I}@j#86aLKr<0HkT@>Gwv= zc+%3+vJB;r(@I3!_^j^?o6`#k#ftioY%CXaUb*<53}7lQK84n=1ktCaRHUT151pL_ z=VIRA11GMZ-e7}62T=SJRw%8s308tV0psWd1P&vHX=!K(si-=^R1hO#U}pXuX%IKL zKNsJ$VEw25s*F~N-B7DLFgr1Ud@?U>G{-|IS`Zuz2_)wLUKK~Q;u?uCn}tM8Or$?DJQ}7IvKUCnpr^hmV!Xq} z%>D)ne5?Bj<@jOaYbnLW#R|i8G&F^aio8vmKYqAWR%I6|439ZJ;#n=LG?3p$C+hM> zx=2a14V=PV_Yrs?&Y8CnCQeKeZx~gpR#NEmvV5#feys}s+Z+BfFr;5nLU^IWmEjL! zO|~;9cj)Q8lN;>9TN}WsfP0z@qhSUi?AbxAK5&vz)ri6`xYD8Dil=e-0H2l5o81_um0g%5yz-M5vB{9Setk+v||y zARjRa$xBM)+$LHFTMMXK@q=u(DZ=C=2 z4L~E5!U%u@ehEPtSou55q}Ft!zy4(>Ntg0^-4c~OH=eCJvw|yTAJ^B11qwgVcC}o) zc8%!#*}E((v(e_&lPe|Tvvb0yd=~Q-w;zVHs1KCe7&}SJp*t*+<2-xAF8)}ux7^n_ z$;*p58}1)YM=%w3shs_d>?0=`DYVXffWWHOkIx7iKsFURCs6ETeW|XdEE$%%MObSl zY-(pt-E|?R_@$K{U#1CbS`xd?1i`z(@)|F^oPw$pT55J~<36U@j#vq}cL2LX4G))& z8U;SCL>SZLM4e}*O3?@CS(NO`i_YNbJJuRy)ZECKkNA+oZb#Ep`z=gKNKx%+F$m*giPQgj9%QEvQXZ0y+)~;0uJmOg1<+9j4Vy0;tP9qRa zC0KauK^@x*w9l`hOUEaFc!l|a+0MyR^b9&-XsN!Tq2blAuDFy1#dbsv%ZN_tGh=O4 zB0eF}ic>b-fB4}=C5@c$ckkX!pV$B<0WMa%wEaZxqI(8TQjz1ZxVtgl0OlYVpgo;%P9^#&xf}j%E}T!MUQkL@NlqzbkNYy1O*2_+Fc#> z4Ge5DD*-S+#g#b02zRU-I(UaX79)pxqD0 zuZYnl!x6AuuGKGyeNk%ERb>3q$k>?S?%mo2Yn_5Y>j%iw>*c-G>n@%>Gcz|A5*c}Y zTM1C2Gc?EcoF4#1Ec$@-df0n!V?#V9zIJVL+fl~;v6FGB8q23opYAd;-XS~>kZNHf zB@U+7Y{;}I@~$DY=*ZIWfy1@iN0(>ckzjl*OdYR}w+6Uwr;7s<5wKgWpW6)n^vPp* zrSGzqC_lS5=55pTSGe_fV>@=@0(@e$6D}$p67>A(t}*$>^6HOKkao}_9?(dA)0H6X9}YYP_-1%eEC~!o=vIPqT4&EU%!zZZT2&uRAs>cXhA( zCiXstet#wucO$weLN713f+gV3k7xHe$P+XgjKDt9(?0-Fq7FU}sX@7D{jXmnt2bytRp8i4@&12q=i9!Gw9e~I)4Igc49 zB+lmW4nTbriUnMoABu%JmWqn?jhhyig%;m9T5%2MH%<_BVUHp2G}y#;kff3BQ~}>q_PH#Zsr9%@QCz0*LbaZq`(@&*}KVRQ?R!=|h=2s1;p5^83p>MMbL(~6`)G12* z&p}-w83O9iI$trkng3%@ht|o$;4vk+uaFFJ2a6l$T<1ek7vHmB$ z`;SF*8@CIjA*QmgTX&pIxEVJrS0noG4XCyO&q+5n7MBojH1byuFiFc%+Hss2$XhPT zWB(4oqIpzVOiKNxde@8S@yP3blz|GYib7uG@-_wf#kSnWX_|g!O@Np7 zddr;gfUL#qk>b6-JWR+{^|$W$$%{`Rl{EAYmK8BGs{;+QEBn@KQ5}6Z_f6Uv*-Bu8 z<%l;g`KvGm&2I*BdJXiXKj>@Ed!*@Y|A7dD*^=ie+D7XMOB z`8xV9Ox&n)tetCGupl)27!>vCU4O_!OG7@90|WM389a5*eWtpsyzravSKNeV5ed-F z&xz;`s*!lK`C|Zz-mc>2KiYKYOzTr6rG}f`ZCq#Eg+5xL+3_6a-j8~L*FqIc#*3mQp5Pn1 zGW7`+%XfdIB-q2hlA1FI(9Tcz(4*2r=-mxWyEm`U#>QFC+ua9*M7~c_1R#*U-NfCU z8)9Ug{jM$2GG35Vl|sysw~AQVhu$USGJWju!0V4XSJkC%)^Kg>4C;#NU1LcJp^~Z$ z7^}KJ_&M5OXn~22XfX6kv#~{ zRuNh4c#OhV?4Ph05dUKjoBFJtZ9q=#u?~6chg;NE)UhlsF~X(7e&KF)M|KbD%?d2H z^>qIQS?*p7x5_Q|;u+UGTkG@Hlh^#Yu$*yBDsmLTLOz|mD6mx z3hA2GUF#mQ?aPlwvOA8;t_F8Yq+I^1ELlnFj`c*6lCH7;2axvvX()$~mdoCxH&CmV zWo=!v(Q+FmjmpxhlwU@_fB!z(&T(s4+l3+lqWa8vS=`LSwVL=QN~g^I@tVWYH3V`{ zuH>?pylS~(R=z-oPr-}&i`0O`fCynlu%K_S!j2UYW_|pIT@^6n~8Nv1zm(m{PF66Ys2DMPJ=`bJ#3Q{!- ztkVsu(?@_ca;gvRL3)}5LY7RmvQL1zIt11PlV#$iRaAy7=Q!TXN^+ZxG({;Ggr5F!yUXU5;+=t6Tw9RPE9JCRXWM_2J$mft#3u!ZldwOrNUxZ>UW5wikP2 zKpln@TNb=+ApGJ5Ag7$Gg_V?)1pMyL{I|gS&U+Rp5>|~ia`VbZkp4qQd&-O4Y@&GB z3>*I@x6AQ%KcEy^keR_X&u%)zdFATW=s9A1?=si|aS4g(L4$ZxS7(s5nT%CNzSMNN zmeW6cv>B|c_ZfOC9M3y)-r1C;eE|S-hS}sLesFyVd4g@{?jqhf_ZS(=Kt6ck{o}TH;rN&s3P=cHq#l^b#~WN9Sk%kce?6tz zSkgSb;SNL(*)0IRPXVGqB8IHKEt+TT-DVl+=^&|}0AwZv-A(#9dykdj5)R9$dJOdA zL0EGp2pX7}$u9{B9?-%Di1Ysad*{t|9z-Yz%ZBW7Z+QF!*2sY(W7jzgN`$sJA@aTc z$p)ZWjR7|$KoC`6&^e1C5PmgY?IO5869UyicFhTb9+az{`B*F0ziV&i4X;2UjG#%_ z9ux>5^e4Z+uWxFiBFRPpWg93mCWS66LP;xObD^xUz+C2euBqAScDn1fx!tcB-xiLz zf~3_CMkQZgUy!nR!?6W#ZCS^;9xTkxfvm&4dY`VPrNtSvg-1IjHG2Ko>Lw$l!64T{ z7#N%Dkv$$}0?6|0W~ZXXK0-?HrL&b(%ra+Ss9U{yU48QMNaWvl>x^Q*d>!63ahDZq!l9y9+!jB4} zm(f2xIYz-*1ipKBcFcbIa#weET4v@9uJ9h#B@(7DfZb4dWNhw$jR}DSvAXR;&HW-E zoyT$tjhrbU>9$e3@pb_DU<$w&FE_1JB_^JA2hJ8ZY*yiqe4mSVqs&k+zXGM5A%SeX zXYVICIcOB)QSiS!e~b7caCm}RkogT!$X~p42@8~q*!Zy+8vwp%ydSHTn2nx)|2QlC zups{Uqe6yao?WWKf!~yniH2)9GCbV;G4eZHbL`0Z$rBu?<~g~!UnnVwLDT>p znC9kYZ*MPvSvJt40Wnf4(7z1GMz=ZWHkgeUFq!?-DC8F)H*LoAeuUO z784-lLQ79SZB=Fu;S2H9I-s?CfR375TC_K&8jipy1R#lCnH@6D`3;+|2mOakP*hq@ zH%@NY2MF{ds?7b(xq{cfsQa>1o1l}SRBUp+!ftIg&S{k|=>(=e(-Uch*TVKu(bR5d z&;Z*4ie^Oai=cksTu`8S$F93n@&}8}M09q7YWKs3i%CJ@uRgh@P_$Ry)Wu$&h3OA zaNUKgbTJnAor0Tq=9L>b1j0vb<~7IMIhB7dqB36QaF-|}seEWEb{IH+Zf+2qvM-2H zrp*MvPvF!8g?7kJH-%4;&ICdbp(F&wVSH|1j_WofOtoRC$T-l^tmPA}Gc-nkT5Q6k z5O0Coq&0@`jS5AE;klKha1A5N$`E$2X1Jkhk>(4SLrad^u`$E~X)rx8X=#u!atZDX z=z?%o;0RhxiRtMVfwmbLEz0U%rr-^7JwC9UsKqL`S!x8rEu%Efh8M=7{^MKVgCC&y z*oSr$77){q>8!9KJ}y}*Y6<~cCdB_XXWOUY422f=OG|lCP#Z4vW{|=$%m5wN1}6q> za(+R9!+ITVv`lkAV4$#mRx-xzsfKYzUS2S;$Z2bShbdqBT$L=OZIh{7;I%vM77wKD zSB_>4MuWp~>-Ct!+|36^>mmR=0@9r-9h^&8-Kmb}pCXh5iDbmY#8A+d9V}*)O$P{o z9C^fHE*9z08N@l@xEB_3QaUZ?%?8;e8fTYzRaOc@;5^WcOFbFgABAvEOhWPpE*Ye6 zhKJGm`Q_1w+v#!B3L=5f!RQq3?8UVJOM<(D9`FA6Hbluy#D@W}a>d(^1%s^PFGZM3 zT_?uF0VzuDq(x9%oa>0)o)k!|X(hs7Di@ z;X6ajTCpD%x>HJaiFMKw6W@WAdJ#}{fc<13SOPG5f~^4hE|RS&FT5Cs@6`WU8T_9z zv2K=bAX$45Gs$$o<`1*W4*R&u%AJ|FlS3g~|!F{~8$WMBX_TZE**Fv;QO-q}ED<;`|y!r^T zk_j+Uo#lZ%HOGadU(!;rFNx}C7kovyG=YReprYI!>4+7;DuoW{JkWbM3$yBTaKkzc z6c`Y^RI@yXw2;0%@i(e=gm#V__$jv)}2 zmY)42!GeW9daKMAGYKTH>*r6xRzqY^y}TrLU!dEOt}D_sv|Uz0nN_TCSDzlQZ7!t5 z-?y3(gFfG!c8;Nmi6E2p-^ZBgkmN$#g?yx8X`5R(3}jD`6Giiw)3LDNPvm0WhK7c| z!)SxtN{0)Si$uW@euFP$yDM<19A<)No8a0VsB+?gent$))*<3oAN`Sl&s)z48IB&) zLk!1?|HI(LuxmH_7D6XAl_Gr1fC>~o;YDJirt`)* zlvzpiQ!tfWJCYB`ews0PX_Mu#K)e>=rJ!SH&uh3kaO^4!A=7%PPl~?O522qqQh(*{ l&5`Ig$s6lClUPF~42r5OYfJl)NLPrEd z1StVRlTJW-|K+|ve(%1S`{uoQZ)VT=e0FE|?3}YZb2e62TZNkP4@v+4sMS;<`T#%# zBk)dg62cz;SSF4DAV&o)1puf)QJq_p5_GVws=gKgJmUg@um}J+C78li0l-fX0M=mu zAe{vOH@$K{>&XHDv5BsxA#{CXdt(!Sb#r(aB*?*^z>9xQnIkHaA;^KK0Y3g$78Wr2?+@Z1d^JXT2xe2P*9MOks&H7 z8Wk0#tE&rzLKPGg^78U>b943d^vul6-oJl8GBWb`@nbbLwXCcxZEfxH@^ULHtLp0N z=H}){j~=~v@nUCZCn6#OjYdmLOCKB@sH>}=pPzerdU|+xY;JCvn3%}P$@TX3mXwq@ zJ3GtE%gf5j#>U1rH8uVC@uRi1)zs89JUm=UN$Kg+r>m>0hlht%RaGby>g(69V`F1D z9PZ@gq^_>+*RNl`zP<|!3*WzgFDom9!C)>fE*2IRjg5^lF)>e`Jn{DS4hacCB9ZUj zy|b~gsi>%EXlN)dE>22H`ts$AkB`sWw{P9u-AhYLrKF^EbaXy_`qbCg*U{0jy}iA@ zzHVq}Xl`z9X=$0Aojo@<_u<0_eSLiu6_uKrn&su?;Nal&^mHdDr_9Vu0|Ns^MMW=lStEL6LwoFD$Lq%C!4%h<#m4zBa z!4NUEl^6eNg9CYerW9Z0Gk+aJf%H_fD&uA-p#0`j0M zf{ur%PM4IJ`Td0c`#N>#5BaOgSs(n@&276(J8KWFNjWtBRrd33EbGdpe@oM*gp6ZX z482Yw__g;Fi~TzCgeNA|4*wQ642NC{V}pRiPki|RaF>&1As&tS2S{|KZkbRb5 zX{n2omKGGBSV^$WE$b*56W{+TSzf$qTJwizo_&W;NI;0-DldzW4z|BrFvVk4O)y*B z04TN@63wmp<10`T!1Xot=zPzRqwpopO)o2)`yyijt7qfL+AcfkLYBUG|DoYGb$ZYvjKYjte`$w8DyE83~XCCTyt!Rt{Dj=*gl3dvN{2mvzi zO!8T}GWuIYFL58B)-C2cEL}6Y$q+BqJc-d*idh3y(I!ylqLq+ojPfFB_~(Nh{%EQ$ zeeK9XLdS>0850 z_mkou2RW+Gu_1?=pM2#x-$s8xqLN`I4}ZDg6_Gfj@re^Fp#`#sEvQC#+wJf(@~C$) zy&b`%o$%esx?{qlGv<;-R#GFr;y3P!%SPd7b+tvah;~_!uJRVFhiA3XwC8?B|JgJD zZXN=;jXB}kTdFH!%Jr=37qEMs+{5Vb5aSTy`n)hFkewYf;(n%2;o(jrqN85W3O9I& zp}!>VB_YlzF7KhY*gE=T51KDnD}#e1&Vt=p6&h!J$EsmE)|i~X3u^%mbv>R2Er4iD z>AB!hK4D z?Q4>g&MdvqK^h@pw>Qje;pljSLZ0JMiBi!y&f@@OavburBZ@^%G&Ogp*;Xl1l=Nvj zb7E;M^7(3;ylp$4r;6cuf_uo3YhUsnF;8o}D+QZj{1k(4xq za;^Su_EbXFtzcHDZCM*ZohwoB*u&_Fnq^FUMdt?EffT zAPLJxhTmr{!gMNLA2bzrJg`+u&Su^|T%^UKh=M7N^1SdQd4>L zQJwpOD&bK+DQm;sNPZT38@?_9Zb5US8B=xDdnC<%qPNxFAkReZDWPZ-u#4k~iow=hskgeN92om>C<6y&g-t zgC;|Az26L7?xGOQ?%NMhB#qqSqqSfqLk5gMGE(j))R{7b)xybMlyRVFM@pSCGV7L9 znM;KX;=zKC(R+|>-I9pKw9vI0ih5Y^qMeIrfj3(UtmVK+pehnr$j`aV%|o(X)u-vu zIH_Jz-Dpdd8p_4O^YY-x_+5^$4fUNnWwd}rXY2a$9zw#(tLFQKaSP?-%ZH*NcV##D z7Jkz6mX6%Izwr7-UAk@FSRXxKG`%j8$cAE}Vrv|Mp$5j-PxXJ<4XR_<#x|PulQs9p zRoScNjaVU7{aE;o8!r$T6<}%+Wc(fk*Jjh+@#j3ge#vi68gG?@zLR%F$a+0bu~wA%bZ(e$p%RqRrFx+hPzOd~k6hLEk3JS<$d z>GH0wWq8CeEFWdCw=s^(znP-?v_4Cn;0uzQFrmK{zKk|{`3>~hGU)zqYLSLh@~H6x zcT;Id;jrG9)}vs>wv9_CHC3ZmcVydOaErNxpaQ}*$>s6ia6i> zZ8`HIIx*xZPpuy$&ql7rnO65^Rb`PrPx#+b$tE1-#v~nAzq+&D41c~!(7wR6UT)L65qOu~s%W}eQdgz{)?1+*hW)5$Sg``|M&U(ljl zSkM{kyju}p(Hs#~l6nL#+Psw5l@D{Y6gzA`Mv|(=t-;go+kHVpKaTJjVZeg#8Q;m@ zLe57U%4iy6Kj5bQbND$CrC1-%4bqY>f+J-cXZ(Z>g*Ts) zJ#??hX4A}vQHlrhP}5j8EYOQ$fh}e*9M3*`{dgwvP5fHiNi#W0$Wn;vkcDtH*#Ag9 zn^J`Hu_R~#ei6Z$8#O`RY2hJHu{$edD`}%tD`~fa{{E-@|G69Hjs|)CO7oaecF3*9XHd>w8=x`U5rWi-ni4Z z@T;U5>ae4!C2w@uMNlieM)DDtyB^_MWdk~_V|6DrBDmDUIP)j@K-E?>k0 z@4+)CF3oSh*5DT(k)wX22Hb2Y<=jx^LPV9-k`5Q+CR`8c?@t8c)sQeo4I-Bxv9s?Q z$c$`azNDA~*R=jR9dz#!#a$;I;1&C9xu5floME%&=)Qs%33ap0b$KXU?9Rngbo0t1 zHIVT_(?}6wE*lC99%x*cSTep$`8fAH6^vkyLJEx8+)uc2r4HStMxX6A@DWki5KwoZ088l4MVncN?l3nWg>N{G%%|ElH#zfBbzo_(y*7 zXy%5`Rj2#K3}N)<^o5%E+FASBOWS(e695nv6c*wa6z3NdHWU(;77~&c666&WmKGGO z^97~wSY_f-j&3)rM3l!jS(0 DKV@d` literal 0 HcmV?d00001 diff --git a/figs/ex5_6.png b/figs/ex5_6.png new file mode 100644 index 0000000000000000000000000000000000000000..8afcb9fbdf21c4ca7557b640c728e71f7c37e184 GIT binary patch literal 31561 zcmce;1yoeu_cx4z0SXqNpr8Uuqf$yM*3jJpBGTO@VIWF~4k<`UH%K$Us0b+CJ%lh) z1IW<*?2G=M^XXmVTbHW^udFy)p3IsE;i;X`FPGBWooWMn=s$;dX~C7($$ zGN)@~WYdqx$b=)w$mnc8mMe+E8;2gtJh)4?i~JK`nHmDG9JPI@9ZyuHV7L^N4re3B&w8OTm3`cI2UWEVB=}roG4DfoC`VJ^jLZu>RjuvWOFG2mU?Ry%T@z z-&5P8|I;6KjY5-=g{Br3@?Q{ke0Z3eQ8h-`$#E(kRLh}g{Ivba+kl%GkaIpQoOyRqvIP!77-Dh3nI?^;c=cTTF1{``(l7i zN@7`_AJ#WBGc$6p_{`>-#k%nQw1VkmYeJYhr*uo#FiJHLJ71-}KW4<5Q${Z|uIiN;4#X$wXy)s}^ zzPqy-FnEQFOO}$BOL4ZpsEMaU(`eg+5*euEJ-%duZ zBk&6MP;zob9v@>wTxdO*OmHE#)bmxFIl_*Uik6XFD4U9fSKq3u!@|PUtb=!_Gjlma zMRjv4NYZ7DJr!F-kZbh$rYcQs6j1Z& z>x;t-4H0_oX8EgHIIqg5o}Nu2e7j+|xnGX6{ar-+(NFDL@}JDL${o|YbI>!_s-FBj zg`MayE|{v?oO6gwAIdj;5Yd11>7TEMoi~N;e!YBq{??~k4!>_&Mu&%|RC#WiuagL@ z{Wh_DCe5Y|;oRDAApF{3nZxoA=HN)%@XQpd3&J-8kDtG(sFEsQ#4u1~5iwV}s)x;g zahTeCdt+RL3P3S|}BVH$c`tlyrXSTh*r5|eNt zY1)>8(Rxo8?qT!caxJ>Ew5SHOxoADN7V7#-Y~prSN^pJIBDN!v`E*2!;i}4xg@v&? z&Z}1+RC=ryN3+w@(P^Y?uS|Ezw1_SSRv#N|k=Pwf*om4P-rXsw?)9hPJag*QuWLia zRyy|{JP`TVaP;&Q)xM$c6})@5ETdfdXs8UwwQH@(v+^HrCTwr6a_S{YUwQMl@h$Bl^W?U~2LnYv)+Qu&)6>$@ zlzR+{w2SNs(#x|08W7I4Yd_vIH=NfLUuu`3D%Bx}I{&D%ct=9Eu!xOsR)EAOrNFO_Q2@gHMitX7#8Aqu;`JUbv@J$Tcq z?{kg8CXAVZul|1E*-_g|$#iG&+92{I7BCV^;!6bFFbgq16$$NLz+gH36 z!eM#j1vPECSM{so$>O!5Gd;N_I(h}hK{BfhLe?MA@w$3+`_NTS-O}ARXp?nHteu~c z;0~axY`zZ9r=_uZ?yOJvirYZ6YnRy@z29tXZ0rmY8q%EHP)fXSwzalEHP)76*sx=L8sq1d8t~Ub-o+sYvE6r=T88<}{maZ>K>?S@4?#?b5%7B7^ zZQah&Eo-0hdq(aZOd4XK+}!4v_H-Pp4U&%w+4{I0v{zx{+0=f2dYVH)P0hLZAgl_diMPX$#%S?((==qc{DiUX)nWZ7 zk#Q!3`Y_*DKb5T`1sr}iDtB%C3gD$>xFXZOG}UoI``($*@No4f4@*2ZSMKnNul|m< zp*;t0$_e3<#>dB%FQl@h;_7m|GH=%($CGwL>AbzYv4m`$l5jI`@2!Og?>BkhMCf~! z{h;3094nUj=Z`JA)b{Jt1{{tCInKvh4!Z8Mb+xs^FMsB6xY~WY8teLvuu1!Li1O7> zxK0-sf9Sw;QX1|y=FI8SDo-N02*rZz4aBuyNCm2S^%KJnE9tSt-b`MUD4__A@ui7C zJAdeiPqZ1X`rK!k(xq*C1^?No!EtBH&9Lmz+9s)i7rV7Q*1&_6J#grl?O6$rm8@8= z4Ku%mIXqS*u*hau52?*v8v3(&b8)*{snwAM4ov6IXNk;}N(Ipi*lTKB%d+djyA02s z82K&sw!l+e^#tbKyAl4gL9bui3WvC@&f%%(4sx2-hqBksI?wjs+OFJ&d6m|k*;t;r z!1L=0O3Y)W^W7z>^R*E?XzeHQB3AwUW6qG~+*jvj^W?O(qttWttc0Am*6f<1g<1>- zkeJx2+FkC^XBBT2C6|&gp)=)^dh#R*PwLV4MyG7kZ283JofxL!RL{!OVdOV`*U>Y} zT{8IVT6k>iTw&LJIM2uCJno!kxQN8gI;B6=FB7EvAS16gMF})a`KcgNvEk0Uw$I=; zIWKKrvJ72n?&NikDH2PxOk>cl*QP;^> zkMtaNBHoXth@8vhCNGQ3I%?-KXOykku9-BSH!PEh;4zBb_j}rMz#3mZ1qoS%*G;Ak&py_Mj2L+UkB?{A@EUUS!@?Ptd+98~LbY3l>Gcue*ZydJ@(7oAK|N zAJ7{H(D8PQtq!V;do4;xbfn02j0HIW zR}92j(k@kMad{Sj2fqBnikurQ6k8@Mg+g6fk=<}_HZqw<{$ZhO(4U-$foAn!T z`8lu-`hp0%+OA(E*Ei>JF6Hwna?!LKrQ`=1AYlmWHr7ARH{Dp8ayA@(x+wRddALbv z*plwb#0OEg&v^SgckX;(Ouc9_tNgL(`nj97@n~;j_L2uSN*~cTb4KRvwImMO2}%`? z+&irRP4>9>$7R8m-Dht&orEdNq5YW7i^J4o<8>KLwlf!B`uWjqs_0Q1s?X2Qzh|wl zD%adUd~;LqHp+6SqAwxB7CP?>L(HUAB?Vd8LLDK9P`_(h7_aSR4J_f4Huhl|pLYbW zz8*AqCLhsji_IeQg*wRWzTb=#cFK^7CpF){mp+yCZTd3Xo*ba(F)LtL=C=4dSy;d3XY_)u62+laCg|J~ z26h(Xb~_=qA92wg>n3qp8e2yTS`ou#=-*-Oo2C1`zV_W~^jH4FxdZu#%W+_s3x>Q<6$I#FfrMTKA)VM(WH#V_P>X0i`%MG>fx@*h?rlo*`L9Jh#`Yw1U)~c3g2M!a%q3Kz;T(Y{l%IkDuu)@s&t2I7QY{f~s z{5*`%njq!eKyJbnao^T9Pd!Uh=~GWBUrkX%DNM!ks2>x312k|Hu=0M@1k4t5W}x3> z8rYk8;W!3{Dm{<^Wos4Gjxw+kM&ZN7l%X2Adgz>I_P61_M|9`v=fVZ04g=taM?A~m zWkqrO@z;2JUEPlz#Rs9^cBmziV!URxFddX=wU==JkDt5oo$%!o;gLFPesgtP*lX&ap|LCsfC( z#*8odGX@BRTQB^-rFfe37L2Wds;G(1BV&mk@Z2izf?zy|Y>OPZQ5=ao4 zuTWVX_QvIJ!36aCP8%uddYocnV)AoP8!EQOXFwtj-}Kr`E4BfWWn8y)p~Gq9(Fdet zC(H<-bab1)qrKhV@_H*$fSAN}cQ<-)y8Zh0_V&Kr3`jfM*cHyLlL0-RIfPL@UoxkP z+o~;3y3p`b73g{#%6R}*E#w zycuZKo0o8>`Rj9XN@Dn;{@L~qzc#EQQUSoyl!-GlS6i1QaVvaGS4n-_vGBQZ4Yx6! zS>!UWXNVvI_ocQ6=<<1J|14G$w0BxpnReG6Brs8+o%@WC+!Av_H{!=M3r*ik zMOHvC`kgCi=FwD-m2Rh0S57YaWqXB>uj7*J4lEj&x=iWp#F2ZAaPKo3cySf2voan2 z%)uokfHPyoJP`6EVov|0SVW9xt1=@uZ+!!_>)PWp&d~HYH$ZFPSdMmkN@kp|DeXC2 z$LP^G_uLzq|67VYYuVuyRg199{Ho{2NQ8z9#-6t!IcOv&73jMoNFgcAzm} zbC|c^yL3`$_H`3h_O-70=Y0Dp`%CQ-7YqyfWV6L~Ye+0pP|)*qU`)jr48|YdGLwtb zn=B6vJriNR0IOIjlIzxr$qvvR6nJN-jpY-u9)WR4Z#tPz!D#5{SlF>b39y&5%}Zt) z3Vgnf7fdDvUQk2?d&h!Z{;OAuukTM9w8`$y_G~yM)>X%ieeFDrE>EL3q*aRa)JK{c zx(&hg0RKK;?xCwVVKgKpLb0M(<+|`VVe_W@QX1aF=AP+5advetXKsZuaof208l^#I?g^; zf9Jys<@FWmrg>y;+g1S1^0uu&>WjdW09#OQKl(J{Fl9dTj%2^~#{f(CW=u{;;~(Mo zoGv0TD99<&_rnAd#2=XEzaD0CJd2h>k>LMMz3Rk-XZvCXezCZd;7ku%WI~xe##ya^f zKjAS8COw~LcDupHR|NPUoBzw5C*nIm)Yie9foCE=s2Z}^(2rBHya-n!AeFHXj3#B z&jE8*-IM8e?A))V9l%eHM_w2{eth0oiB9#;$G7wX^#&^oX-bLGPptziI2XPgpzh_K z7#}xnjlWGbKyyruw`}|rmH;u8bJs~LTix$m3gCF#BM&{6rwO*#v!CzNy$8wb1O9Wt ziQUR&8ve?EzEQ1(!jCir289NKX-Z!_&n0Gh3)HKjW zB{?GtsP>mfPoEzWp*++^4t>T=A}7F1p&{2qye7(|fX?!PvhAxC8Vy~85>aQOrjfC6 ze-P3r&&`KDv7TW>?u?IzT>xV}hX2tQvdV>824_z$4*^uIpKB~4CI1Swm#mhFu272B-&&8afQUq?xM)ChNxL?A@sgdL8N{qIt zD*Lhd6!1Pz%m4|fiEDo9mvTN90KXQ#dGC_G_qLN?9pkk}lD-!_pkZG|RvT&jr}G%( zE>8Peb5u4O+fA^-I?bd&K&kg$kLZHB%x}{C@p4HSaJRGnX>raWt-!sVw?H7#ZC+B- z;?}PkoFW%RPd(88Q=NwjxiSS^zuo#8>FLH)>c&!sLcr7GWuJ4u8Na1V85w>J_{C!3 zR}IE~_&|*3>EuVR(UE|fJ)xzdO5jH(mu$UEtswv!h6odfZGf^VO{chS1_<7~*?TE) zX=TNEt=~&2o9v2Qlqzw|nb_NAkW!HO%m6MaKvx1_7y`mT852|ULq>!xd>D`t|T_b~gWnEO)e*7~B1V;t#N z+ak2DUT+5SRl`$b-RqNQKgKX9C@5^hCGp^ghlg?B_nDd9yLT_$WqydYyalSnbSs@W z3rmvfa2}g~rgv%;OxvmXfv~(Pj$+-vh=M8X6k9~m>|HOoXw%(rD zd)+UWijFq#CiY!qK{%E2oNT9nMfVx{l;#h74-o9x;nddFCXcJ-CcJ6|+{FI*fkQ07 zvbzltyu5|4-d+$fpXts|rNs82;AF4zKv-H>?d0Ucs{<&#RIU!tU31Bf@xfeiv|F>_u;b58> z?$Vd%Khkt>jMa1Is)DFcc5sJ$RZG`&qmi%W>@zdBrSd8uvG^ZB8;Sr)Siqp6zvlRKJ3SrIL_a zusMfSfEW8e8_A?IG9dw`SfFL;i?%wJ;y&{1Fp+0aRjGhupQ=P(U*B|Zeqz2T03G1P zTZx}JHQRHO2*fjXZnB z0A5jCZX^BY`N*mLMtdKEWF&JWbT7Ez?>v_j_XY@0OJ7Q!`}c|e=7(E;3Ep&>`>3p< z(v)+W%tyMT)XuO#M)A&_=g@{U@+1xdJKae#rUN^$h)znPL`KQlo3 zHZY(AeYA1UQ8G#20!=OwiG*n~RxvlvFneb2M0@5;67z$%e+50CXb$K8>wM6E2)wCz zJZhs){#lcYxY3gAch|}aG(o1 zQ7tZ7td(`e!uXRWw*Qo|7 ziXC&27rb(_+iE3F`40|VPF-s%cUKcb&KezKdO-3TKi(b{nqE0=2WAM77L5ecd}`S zRviC3fdH&+SLgW8ke~q|V(OclD}7=h5#pVPy>}~FHfhhHvCdtPUUOkV$blL#nIHooF-NDw{@sB&9QTbw#WqQFxS>QBjSHQVIZebB zf!Ud1R+L5R3VgwQKvK#$tK)TvkU1fA&X|b3E!0m{8{c4qzC z7*yAYP*1vD9&Qd-R2GXX2y(C33cw38s&6_N7SVd;?0+h{oXe;Y<++Co9|^ldE>Nt- zJ9fxX8D3S04P|kHdQT)t6F&H2SqQ}ylO9%5UB~}8_Zl}{PWHs?dT0VH~QLE(k0R zv<}heLuBz$4Hhr1LmOo^P%H;rV>?haT-4Om(_ZYLxpA`;%g%ZK)03xC5(4v=P=dzR$wYwP*B8; za<1OGr3ET2XUTS0H}GHaWeyV@moMLeHYg;?UQFIan2yY+zQnZca?k}4_1wypD3+;y zi`=eIc9p>8+^UU?S|IG;JLb^s8%OA5nfMiUKRZ1k;Jl)aD%*a4y5j~C`=Mc0AuRZz z9pxBd@7sw(!z?KGk?!9cCab?OEH>1eErTT$uF-n8#kW4ApTS{Sd{dd{ZdMkapqE;;}y<^gF)Aa&n#Sfwh&<-C4<?S>^Snhha7yivB3V%oVDwP>S*9S2 zIspx{u?zVy!3%JSM1}BKll1ahP#7=LQYOz=IHCHfrxRY6BkjQ8%u4IZHa0)FHh_&MRCnLdk>); z&HOu%rlYUOMqXqu;jaD}ay4iuc)fCGV`jQDJ*2&(qbpN`*Kb)aieD*C+;eGXbABL* z7rYG#2?@@Ipb#ST!ugf9R0Spkfcxgy0Pr7jo462j)9wxewL2Vcc<(#~=4#MDl!K%G zCN;#V`)pB9;KjkdVhq1|CmV>yNv+Gx&6zB6A8y=(1mrNKOC~AzE-Wk=q;UajOL>_W zh!l^s7ad;~_OA21>hv*!UZwlg#!RkIIOw#8fq{_)zr_YX1J<9B`Gbfh;NHD+2Bv`a zpg}pm@`3IOFS=Y6;X(5rJxkhMW@@GkIehGFJi@AK72L--j{i7`Fl?Xz#N_W$ll#o| zG`FCy=j7m!hQc5?-GbWz%v-!4sg56aDi4mfuAl9i933?XgnZR>#CefXA7hQ%c7|-Ga8>>zo6>Q&OSWEs z+%}-z1QDK3%!2ULA+fVSZCD29xPKgYa}K-zw6NwW(#Jy=pErXGLl^Lq5{PTW+KI*w ziQqv(m2tDv3z$FA&oUV${PrzV^94$;y}dp3{rgeJ%90Y7^c9Bl=ZTJ6NZgCl>FMcR ziDUhHxny%m$~t=EZqRmrd|P6T*9J}Q9gDB8?-WdS8*oUUWO&N%0_0QzVww^^fn=-M z7O-Q0iKREY1xpsoGWOh&HB5-|rhq`#lsKv7R5N9*2=wcp>ec``OFPLg_F!BXk>w0u znZ(HOuy=|7TQ3)J(lH4Yz!@KB6x9UsK>h$8Xvz$j_YH6+6*2EPGpXw(lwN;I`~h?W5Ix=;=gV#T`lpT2ULMC6n2-CFuT} zp|mm%r&sonEepZffsOr!>CDysAL zh8I9jHqkw(fI)mbp5SPxCA~h$?4Pxn5^Zho8VDFxnp$k>UDBY|k3C*$1864(x+9L= z+Lv=ZALz{l>}+oip!4!rNGminG|A$g8@<_^2)k&NJDQdAs~MUZ)jLjJRk2YW;7g5SJRf@0Jpe*F9%=KAuCUF?6ulsUiu4mSDTL4-cs zrxN<&DD)j)ietyXc^23Q?F>A2GFf&nNF(Mv4mFUMzkU1G$g^kKQ=}-Y*!u+h@4sRp zjI@oL-E=2A0E=eg*da1iW>8vgV3Cpq>+vPTy+Vv|GQ>H^bk?!y3t z3L0EaoI3Rh;`4`b!3Q*j^rdST71`6-jU%2Zr)lKIo;rOR8euDEb~azI*0A5Y)knOc zNC6l~8ii5=uo;)Qf)+<+{(D%a@|5Q_3^nEtcF1Gvt__Gt|?Tu1~wHRo(Hv`h2+C7l2Ylw@M zvOqoH8muko&lUG_W=+i74xr^AP4PinQr*iVDmqwt;lc$g=RSET9xcREiifJas*EFi zlqo1EU`|7y1qTQBvBrl&g)wwK%Jza3Nq)rPpgTE7o_c(rQGBTDteWUvUs?t(s2_mf zFr5HPOBnmpkZ6Um42+I@*IydH2XmD3(!KeV!zcBhNnzXv8(eKM&&>+cv zkeqx9h@1MKKd)oYgx-;q^g-||&w*sc5^FS+7f@^(h{}o-MHXG^%JvvI`5E(`jO?XA zM|6d28}g3ROgCX5v*rlseT(9Iz^T@2U?n=%W963NEzs4#xbuz$*rodqf*A$60fhFH zqG>$XWR&IQsh)jiV1DPQFBly((Gs*USavnKsn(*U37%bNXo(XUE6a3U0%RUfuT$a` zlVjsunXj8Fe<6rTLJxqfJ8*VERexQlrGHyzBBG+{jtVtjuNtgNed`2y3!(X}@HVnr518=~QfqqvY)<9H z0mli1)eMyGPMG%f3;{A#%=3gB1~(M9YZ!wNZaR5)YeHgr7>Bze0ZSf(OjGC!4kk7e z6BC9K+}bb7u?HB$u8P7y&H*k>0LV@l`y?pC$}se|L}I406aAoe=DIG9mwWozKSBng}uaW{OX3Eet2T~Lu=xxq0dZ)KABLcP}s zbjRuWe;8E2a=|14rHnug#A-szqnlP*deajmAWRaZ#(sRNR)H}l34|+iP^<385g->t zdPc&by6Qs|#M2?AX=Rt~4uZSzKf{ifZc!8m9)V>lJvG+8T>R!uP4ERNLcBuWSgK{P znS^HR9ShRj!fBu3S6ak3vsUJZb3ulc#-zx8`1JkzU1XN(>+3P8CSl^pDzIjqAGXJg z6Q+_O#tLMR7*f1X8{K5gX-NPAlIF}A7O*n&P=m%HzE>O!p?XL`r=kMzu--^tOG`^y zT3Q((MUyyJ2MY^JB>MS_ckfQb+;X^oZ>xh`P4kgtyt1+i6sTmyTs<*J$o=SngL8>+ zo2YuipLraipil+_fSrW3ow7G*T_#S|Jz(uz?)hz%@5+ zrjfXLVW@i#wf|!y`(N^jYyxqz0wyMmkF$x34-xH=!}^?q|x3ZVIH@gws?W%D+sHi*7f?9mKLJDkNq;x5d+*3i;a9KopzJ0m(W0I zmxCRpNqjHyW%x+XCk%oc7yR(jpebEdJwz7z29#VF)1Amba|AT>*x#m43^*i#o~Z_oGH5L5!!tHLe18GY7%L%E<1kSL zb-yJpdaTUBa0^?Ly)gK=!U=rMyx_6RedmA?7 z&x^XYTK8oI?5hHs9q_req~3f(IkCN^VJ@gpfZTvI{~Xv90N2{_d|Y(jzJ0=Oq@>?~ zY5;8mv}+`){2i6yE9mqjFUiM>rr&;X$ZY(_d)QbZluZTfPY|P6)U~}EI2D-yO{d}! zco9iu#u0miQG3Pyj0E2PA`oP2>gqB9j5*U)u*(At?L0rk4e}8vA<;^IoiJo%oe#qp z*&f`z+skd!Ux;FQ`sW#NwF$6v=sb48f^OQLgu*0&jr&GV$j6UaUfUaC13So!z$3mq z100En3C_ADPC_5_B!2gO;-nwUDIduScnkkkZL+yf(5?Po<3sSCSLLFT5Po8Au&lNh zs6+uEd4d>(nys-gso>(di}?En>cDu~g>|tRThMnMB{#%Fr-pnG>F$`k))K0ZS^vE# zvNR430Y${!$ub4}od4_Btq3XvZ#X+(?HoK9eqSQVgv%SWMWn)Yc*cslDI;c6I0GvR z)aGumt!6{9lEEO9Mv;XEvhSqU6Y-FNwN)A_Ob0j^0~dgTMT7Ixc@sDGR%8kMdNVJm z#jn-I!lsyQXeG+w)ldL5a1~<^KU!Fvta3MeKP6pSP;aO9?- zpgQ6hhz0+k=Ryr#*t+AtOOkw}Y92ob+zR3guO(4SY{i2(#SUbhzSnv(%Q?PqC?OVf z{NQke_UorX-23uQ zR|8(XBPBJv0$zZtW6mI2;mdVwD%GHAiU<`+6yDvDK(bOhWW7u5CCPQ|$udRm%hPvS zTA<>~F`4`ushWDSey9yB2uu>#tjys&5cd%*l`wX}8~6RaRnE}aRm1-U&M1{bV}ahy|`!9ftBtw)m~%$6dYprNBWacrv=PAe^hC< zd~2wjN{QyknnMKgFFyN_Q3>uJb*q5;cW(E!rOJM(yKVao1kJULfxI;0;mG6?+RZ`NR zT4RzRUWN^}VIG6D8r}94XYz&30K^$=rmUcBR%8U83)B#9_SIirASxnQ=-YTjov_n% zXh+?jKY!AQe=`?MyL1vPPga?5(?26$rDbFsOieDKKon2|JI^wV1JQG-1^@^R&i!)7 zEdA5$r+aea@UFp(Af_NH#{YwrPzHNvP(DO1w_ZhWLNFN2GjHWyc(6lx@b|1Ybnwmt zbb}8->~+FB^_W3f40EghH~p%4f>!-!Poogy0xZ0CB8EdYSuYf#&mHy;Bv%uM!0p-B zMEe%#tmFtib1q<*KehIK2QV$j;}c=h7Tmzi)y z-D$7A%i}31j~!8!HuvA_uevf*p&bOzG}2!s!2Ok$mlwny3%vv7Tv=H;^uq@;1X}-p zwPe{#burfsUx8K8$gmGQg|NZEIF2e6jJ@?0!N5Hcb7;A>pS=8uP}=__UeM9LgBgW* zW!xD89cDX}osQrjl&O)c4vV;=qN0(9{O>$S(mc-BL zrsfBjy@`M636Oe}a&%L(h2s(RY47oWzNgVu{r3x)7fv3Y9A)a(h6b5Smo9~EM6#8s zpy-xcc&VaR)-+yiOf@ASM2}?A7Z0($6Lx7NH!J24eQsmG=M)wdr9BlKfVs{G8#i7o z&=o#;@El5a8m(*Y-o~={jf|7ryZ~RCc=lO8YW`hM{go_~X=r9IB-30|4%Y*5&ttFN zhct2sNuLk7bST%_vZh+OVsR2bhaVL7?7+ zfvUpyg5FVRH+Fx_6R|kXZSQ`6bJ}@+zM^L@At)}$9uMWaaf2W5ag3;2y8#;Rz-4A; z8YZS(0166Yb&v{YhjIEym4+>OnUEqmu3uNeoH=(6xgln-=wKft|6-ovTQ9FHsf3v- zdWURy_F^GqSDf6NCEXk6>Js<&5ATwE_g*ZvJu5FXS9Y(Hug<_Zn@ z^!y2mBAbvMPsWSinAc}T$<(4#$*BuF&`d=BS{Ac8i2)8)W*rQF*)UD{Zo#nAO>sFP z{`5qRIm-mK&B^Fvs!2e3=_56(=5ZS^sM+A4orV%4(2WrCKx!&OkJnXVqd!);gFxdw zWd!*APB7}H0SHWo;Kn3@!%G!rJQtu`qxjvufHFVRVa$dQ#vmJO0N3_0XO%><@24;X z{vqn7-6xp3ppi=;7lFO^#*CukKI`q(T<5R0w_oH^s_fX5;EJZx?pU}DSaqbEp}TU& z5)c30;z4~z37?OI} zu;)f$KI~S@hL+`a3Enxn&u=e)C4&t6j}d+ygJuUxxAen@t$>AD2`hEy#oP-)%;82w z@tM3u8W1tqR*Ol3Ze|Mjo$k(bAgGvVEPt-tyf@VPMKiW@g2K;AuY628Xv4H5e~?*U za=YU@m2h;F*@^*~KrPHzF6i0x1#cIh7#W4RhA%{3Hw1*j`@s|0Q;l?!Df*$gY;YNS zEcDn+8*RWna0K&pQ-fxLh(9b-F)l-GKw1<%`nn(O&?I0S@s@%%?x|90v&q@*cP`su zmL)sg>dP!BZ`PE7ApL>TVkCl3Df5_5Zi+ODAB*pAXl_=AZ8?9p=gJ_Y=LMb$ZAI8$ zhbOHsP6Tz+NjkMvdbmKRPtSxwmX@TN8eu;nj8j7z^Xu0yWVs+DrLa@IrUZyWtXC&q z`5^-3A*%Cf!0WLK3v0)DZKN-BnX7tx@4A+>(HmBOy^D2HSh2`RlW6V>lAHGQO&N9y zdsT^(a`DXTAd;TZ8+?C#61!;`6TyZf`9raRj(tTHSpWQQSe zQY?fWE3%AeFzcJG&JEghHpYtSz-EH?eXK~vkxY=aaT}d7)BgrdOcvBVc4!6QB30m; zfyGP&+2k==ffLY!wTx-tkSXsJQ{s`jH6+Ei3LdS`zn&1A@cjZ;aUF<7wj+Ha{cKV%WsD96r+_@BvG)3Z@}J2 ze!@?7_w}#{*1cW`Xt*YxY+axf(DpxB0hnTv7_3WgBYulMqq1>eQQI9_#8Q!jjwmmO zj-7ql14G2GQ0En+^*r%zGz&^fh0q^RO5LO85{)B9GHJAi` zu($#A<_N7Zx67P3xB@$h%hcaQf7Z^fSQ$hT5MmJ-7Aid%;5u8z8SrFzq_QIhfOv(p zST)pNX*oGH*c6bwrL;sMU4CSH8mYjKwtOF#Wd6{P7V;Am*yJbc+CRUnRtJKP6BLn| z{5nQtb6YObXaYUeUujYz>^z-@+n%*S%EkED7&8he6O7&Po}-~k1!|kKFl-0v89*$- zXUe%74e~YDt~_I)JaXh3@cJ0AO>MWz0g_(d+yu9T^qZd8O=!kQi;E$-xw(i$0n|QK zK=$k1eu=*_QDl&hbUu{+-98LiK9K}lXrs|LNJszw_j|JIzv=38tYgZhMdM7J&;4!u#Kh23=cbG!o-2bu&<#Hd z(8QA{%^7@Dt8w3hu@b-* zY_QreTg}1yPo7Eu9vSKRqeNVC04ijI1ZxHx_PeG(J;m)v=RQT!d7A0LdRqoK7W@k^ z0=ahhnA&79?B*>8w>)8L%4|zBTOD;-^N^xpp=F;kZi^JKBep$^u*jgy@x#6@xyWm` zLA-~~1gVXUJbN~ik^4tNM`=mM%vY~mF$e!IX<=bcahVQ265E;C@ zykn2$!K-KP58a13f*%Zl@#e>JA%paZzN~mZEJBFW4R#SA(+<0lw3*NHAUP9Z(k_U( ztAZ4v3Y*2pCnm0feQ(S>?yvC=lI>5;CLS_2>7mB)ifd)CXBPImt|J^DV9yW8ZnWf- z6b^7{0JF;ROFI-fA3P{-#|Lt7=9<{U?){TjBJM+lbLumSFawYV5DM8K85FRwk4&)@ ztZ;<61@`k!Xq7evm!(A68D&({sR8B1Q&a1b`C03_Rk^E`Xn7 z^HT2a<+R+oPyS^IqZ4e2()AWjh=K^RMQB>nJ%j#Yt4wG~C!w3ETwC_@+tCoTE`Rnp1|PYGVov{e#zmv;jAr8#?+&BkWl{=@dMFS>tqOjTyY zDSSmCHVY6_hWGByf390P`B44KpSEFgg6aFUl@A_1JOcm)Oq5D6e+0NSKxFyl3LUUz zqT|);gfw;}Oeu$_a!Hxz$6l8s4=jdkWFRIleQQ8zZDWI;ZVX(O2+?*7e$V1@;NtF< z#O}QK?)=P5CfFqa4y)`bR5oZb*%S2i=7Zu3JxAT#JU*aL!97&8Qgd&h{K8tiyAxUf zHv=*W>@i@LHGXwtWCv)Z)IGCik0i1iKd0@f23*tNT zyE_U_<~?nBKMahSsHDvx)}0$}(X`$`Xu>bMaF?eueBQ0X43Sn>BY@4V5UnH{v*|p^ zwZtm{w zr2V#r5SUP8lt93 z23Fh#^P(uvQZnhEAk2a-=#p&CvvN@2;Fkc{K@Wwj1iwbW+qMm9*1V+gaKKy>SgqjK z0RTF~B*x#rmQ1KI^o*L$e_X6};zBO=n~Zq%6CgIsVWB4DgM}Mbz1)iK7gHlR2DrNA z0UO*DxR%PdNDVSYI8ks+0_u7H{KX43kZ{3v_XF@JqSq%!snHj4Um?|C+cPThcpaV_+U6)Y-}uopHH1S z1^a$Ar?&yV$pIaV-0HYECd3%*KI%(H)J9vv8{n1~`kU+0+8=f*8WG6r#l^*^TN7ST zF^Olbt*xD!H-Rf6EibD9!Z`yg5-~Enx&1URBGH(Du0Y{cT58sD<*%aT!x1ETPAwd& ze3y9`xTWE4!eaBNsjWqRYlH_c0jf*nhx3rOU=eX%yeJ9h(tS-$b`ez$mioW}=;&2a zWdDW{Sz5d7RD$k%=>c3p;c8;De{M&0wG?~-lLUetlFndUAuIxrFQ8-~19WyS2B3|s z9gxI}5J8v#qR|G)wG#gY+6XL~u()UI@Smy9rB^swJK+=H|aup2ai&=6q(ZjPuM zMig|eNW0?(@m~{P}ZeXlN4rC`B~d z-wZ;fk>~5}hYw#PzYcSGXX-fz*Z)=9#<_Z15x3F2n#b&dsuv&rGxgU~!;#5eXIi8k$Z8Lp18yNEL-Eyfn z6Aro3=g*Gh<_HyQ*qcYGXAQA2G1(j^o>MY#VifaI9vad!KVj^>ECrr?I1&f+H!s|s z!uy#3Ny~QltjC$tn-Mvsg$WSU_c4Wb13Wc5PRber7N2Hv$}-w#xYh<` z+TV06XqOma_aE5q%H3@8eXI5oBf8pLOWHc=peh*cs8-O>P+6NrwDiPsNMrcZG&Hob zS1P}k%=IQ#KiF07XrNCYbIO+CS04)B{d}7}-K>21H-jo~8c^{}>NdcUvcR-Y0h2C` zS)ix>v#J4&MMY&rCsxNKTeAQKEe^=;?@J;g4(+VkJp9_DKjiUO)=fJbCMRAgh#WKJ9tbxiqZ6f@u{L&>KBCV z8|O+b1$BHo%T^x+{`M^RW)^dF;#84Q9pgPJVzSJgnJH{sPrCCXA3L4_bjO_`Jv~fP zm{K&&t@wx>vo_U$Dzw_AqVT1%mdpb0U>!&CTlXN_1yt!Ir$h)SkAKnAuDo7;XPRru zVb_GH?=Rw@UVRv!(tA49acK=@6*!b0K*#6Q^JTyhLg>OR=TCz(@KIh=rqF#(`$xP2 zxGiPR?P^}%w_zn1ak#NbgMZe0Vm!j^79PWhZTqB;&*9~ed0dy#0OK3;74@s~S54RA z2OK$e0;$f6Pm?s=q9IQ4y;VW4j!&l3SP1rK>wJD()O_WN+4zXKH1?f!MeL&9*hB~> zEW}WyqN>N6KS%QM|VWGE%<)HAcX zcVntl7EB7AI|L2ye`Z;C^qukz(Vof0*29T$ z-8Nlc^w5RwDuwhyNBG{_4a|8?50y#zcDXHw$x+6vKZQvxvh2Q#=}a+lh*6Nv*I_DJ z7h0ZfM?DCRQ?1@8rIm4n)pKsK5lworp!>wwc~@7g=Bt%?rAtn5 zJ8f)HuOU<(Vj!h<<$0xTZEpoqn@^K>wfP1H+UFKB#ut?CVm43&W?VQ&fj zv1Q^cA-yq+YfKqeMRqim$#}J93k^S# zuEee~wO2`bOJlBQ3VrHWo~CI-1ynV}m}yAx-<|QsC)jA*`&n0qZMU#=BG72(5g))b zw&jYfa&U_1q?^$#EmPwre^d3C*9}P&dbW6h&5QH*q<#jI`t?g_yZ$2c1hKDD=V&vm>)m|kMR#L(k> zsFx2Y!?)RxZCJD3OwH%T-F55aKMHCas)m1y^?;wCL-N4S(u0ZU*9H0YzlmkMH;XyU z3pR$e^R4KF{YpYY8FWjkGCttTv$8DLH^8Fx^l1hB#NI5d1MK=M3sypL<)5XcJe{5- zJE?Vd4+|&-*M~kPs(-p?)w$bh>8f`xl#RA|gV8`FmJ{{#I!) zB+c>p35z8qv5g*7(D}g!%+~YS&~6wRMR-3_35ARFKxAX@#~{#rGG1r6)c1 z1E~;aSv)cQF9p;`UcTW+^b`6#fE#sDH@dAGYkv~0m z9p(-T!R)8uH>qia|5tNY0#{?&w~w;Sj4@`AB_n34X;IhN{bt_xd$;d>zwdj`FF%~l^PJ~- z?)(1V|NHu1*L64NeXGB{d&odWa3uMXtnYRoy6UN?0u836Z`xbXJ^D~dqJHYKDsJBRDxB>FCMaJz3zgSJ?5lZZmXq^QdU9uvp#L7~j8)v+L&j^<4tPT{UC2jIR9T z>_(;KB^Kpl%rXm}s5<(3E_97?8FZ>{Y&`VC5-#_Uk+IR*?a6+;naB>j^)_3tEm|FL z>2i2TTUUpV+ph(?(@#sBaTm<{4kycT-BIFny zPo`$ppOi1F=YSvLc+p<{&T{+uJ^ZI2^!!)HFM;(Q_cEs<{Kn#u>-vZPw~}@b9~<)Efj7{ zj`Z`;l`dIL>^F6LXD$&)Se7E2%BTzD{;=QpBzlP|+L2w5acfue8hiE*OOBweLbm=6 zX5Q;C4ZDQ9!D~zEDERK!NvTZ03$qNm2h71T4G-?fV&m97wLT`r=-Qx>lW^kyX_X<(R}Y|xtiw8YEQRno<>JrpnI{XAltcdDd=B!_j*RJ z^jKfB^Lb`s_A{X^_h}INtp7v*e6Gk)StZbYtK0j`iTy3J^A+mm)ZmF7L56e9-Yw~N zQPRMvkm;}71+h8#tKW@yApJUNAl+eBJ+70ImRGNPb=J7#8ra=`m9t|ChW*Qyr@iqt zhKGh3%TE};eF1{XWRxOqJ#3rT8J`|MW!EU+eG|2YRtNSK*jjN`pc*H&)Lw=!grcDM zSk)jbvs8%C7D10bx#`^9S1YpATS3J{b)J9Dc~QA&=JAMlyT^Oa@xx3XWY(S=W;=9h z#po-J?Js&?@i*SN{NttkmD2TT(>8KdN*?BEtuyLx6Brov+qOTSZ)X<+;YnStZ`J0M zqeqT7b3gq8MPGloAj-U4G0EI&BX8%4UeJrvuw-|SUH53j$l;EF^T2WEg#r@&o(I-x<^A#=`A#cfDH@v(%+@x{mSIWZK_>5_C z*ZohT4y=;<;g@!XpI?3()CMgEx8#E-GY%wo;B@-B1*G6K36j;_@Q0s1pW-6v!Wv(Z zL++@6&N{Ymcxp#oCb7H~)A!j178oWmrAuyMfZ`ZkIrs^(LY$+5x++nd8r$f%p$^O=WiN(aZSIF2Ym{0T z{XnHAqYG|fbiq6wI5VuzNtmS0)YjK7q?_W zO%0WsgN;T*zzQ_0;>=o>qQUSKtEb&9APZ(HHfvTPIFr+j1 z*m1|jd2^ugyr-+dP~~lAxl{klO#|`bZuSf2^25XrG#i`{+}o6$KV@ZQi5mLhdTJjC zwOYI*XMf_{ooisDTnhprs{cM*hKj=1U*m+k_c{yXIc^1&e?#82E4c;%IV=^CY8hSe zGpdekiUsgN5+N}mqwdQ}kQ@uEj9{D#v=l#pH)9*yauZ>1Ffnf~=@Q0KQ?gi~f!@N4nb&!AqTwq0}b!(N5W;2aX*U0uyhw__w} z&Of<$D8J5L0aadPM8ql7X|pP}bdYBr97wuKU0hwOG%GabjE;N_1Xvs!LPv*v9tDJ- z_`u+E#W^amSTdSwY8D_VN23;$UryZijL9;d|~ zYCyFRsk(D0D5p>qmal^)Rl+DfPO9sfluE)=iyU0Suha{3RZatuMhulmfxfwZGIJxz>wo^KR0MOm zmEe15$AGIcKehixWu?tf$OoD6<5A2JEGTQe|5@KHxw$Z>W=h_?(v3j~8SHFuV?_6} zU=AKo_h7JZHW^(v!N%#@F<^HJDkSz1D?$uy!Cud@;Q3)lLPnHEX35Zm*g@h{rI}{= zdkN6|`vXQTkW>X!Y7TQV8Liqc^Gt?UxaJ4aEjt;=st z0npAo&bf4Bz2kaxI4Ewu1CwQ zTUllpIinT}0}(4!nK9h2jrA)jDN#Y<5<%>+famw`A&-nTdi6}69Ko+`qWmD4f09xp zPV$Nqa}i2pbzJr!KzVTWZJUrsN!pfbRcO0Hxbvi(T=={W`ph1%ukJ5BnCe{vvrXO}T|*-oN!YsG!ofF@q72l+7YJ&O|LIb(O$|zMP87wy9GM zX)(foUY{kG;85Y}c5XnZ@;A zHGK;o9O-J!;#K3d%2&a!Ti8Zy0}0!M%_IpNIOWT{wYDxUF20V+Q3P~evptLUeEO#k zQ9>H(pbz(SvCP6Gyo9DO($N%jcu4Ft`4*w;KN3WtLK)@ZGK z#BKUO%jB7K@@7L+tdq7q{8ZGEhg;-FA&Hm@M`>~Z6<R`aD8$YPmz}L+6$3OGOvHq@`rk5YXj;g;+tW4ea^fSL$>7z6nqdDNJk~k z(M-Zkm}?_rgYaem*Y7aOF%IdA`NrY{F*Drr!{C#Yw6n!`!{|(@goV}FOmPaw>!ZOM z>aYf$=CE~Rh7!x9WCjUCIOI&Y=Q^F&S&BI?7t;-*qKo>|D~wc~H%F{n;>*Fn6%=36 z4doWV9TMhxv_T_@+XBv?Z#=@A2!e77lF&Gql;CCKy*6qrVs`;@3Y38-bu#fkYC4no=5P@}_vvJI zF_VzYkF?gvWupMMPlp~DQ$G*&+RwaQ0J@kN+6F%;KhG31lzA7Qk<6v#KFaxQXn~>r z!YkD4@c*@Z>CYbnT?XraPHg@U+1Z7;j2sfek?k3@z>-xVdn6Ml3`rdG?YH0dKwz1M zCjZSq^BPVAf={~XXC;%?&5D6N%*OY*>Eu+$X-qtf*nno+pGuqDgogFP6OlOL_T4aO zl?!_ORaS-Sc!>EJr4^JjIg)Y8jBFFO9`;osN50a}+rYz6?)Fb0awh8jp0Fb+y-3@w z_zu8;TvzCyDkUYQV2;^?isvY4gDOD^xGal>I^eZ|pF#{OMRYdGO)zo1Xxh3C12ZHf z1cQ&H+Pmwom3!ALTWy^2>SgcI)JaF<46)3~?^7KnKp^C&fm7HX*?8h^IJ6&Tx1Hj@ z!_Y$Zu!8u^aOqbtzl1P)Py|L?rRIaQ_W_^`*}V-udN};)jYI%cUn&b#7%_G@{`2B} zo=%cse^mcvknk^W>sFPc$6Q}WawK?{m|LMfZkM?>4Ysgre<%08IGybkBXlHk!Tc>)U6l#PMPl4UVp1(bZ;s5MIQ<=3yH>c)un0bB=(@>G1Z zeB7KWZ6x>&YT`j6nQL$ptQ=@P1>Tp9HO$O)La?<>GM39}U~kIK3&}_Qxd*x ztzbe4vqIs0WdyPp5~W#~>;hT~hdKI|$biwLCy6v)F%v=aCDQ$gGhwd@wB#1Q{$Dp> z`cH}$%;Wfrr?EwivfYgvd1yW{HHy-WP}#jqXb%S^d}B+lZ>b-+IufA9YXUQ)>VYG< zDQ6S;3^Lv7ywLT&;PqVp6T6I#eh zIdhuqEhgHlovR#pF>7E3a@(9&pr05)dQ^V&yW@pLOS3y?~xXGM87Xs z@KQ=j+W+N4Q#X(CUU~9bK3X(&(|2h(*+|ANGfeYT2x4$^d-*<3Wr(#aNr-7X`FmOk zT59xm)C0$%`%i9S0J8cbpeUgZ>I z3eiYJeYr;)UAX1ZHv&YW)|il?4}p&^0%dcU`9NYV@G&1%z5C>0Q)i|GZTtiCY&{r3Z#j}a+!wxITJ7hV-%)AP6&*U*x1-NLB*VW zD(+>7>0)8Durpx?U@w7o*iqbqewB9jf;`d+$uQ7$^JFSDQr7-gt8c06i}VPob64 z7JgkQ3ZJaA0CJQ&im_`?L8Q0TZ_q$(P7HDxXu{edleY17xe^qKVp}Q zlZ3G{u1MG>ixRANkSA311P^ari|>4CFo36{@Uls|yohnHVukrVEdG=YBQX0X(?uq4 zi8K5&u`00zLl`XRwBV{m?#2P zebJS{UM)1`_l#@bow%&??}uI{VgsDQLKC`43n;E8&(?>aj49k){t9>20=+YP z;87#lCg_xUk5y(C`<5y7Y1T_f%MP{lH)vI?>NP6ibzfaI7x#4YSCgIcFQq0tmwb3zJ6 z!bd%%s;+J=z_FabYhz}Ukn$EfAL-LUmqzQ!e2uN`VsMhvAowq%K?0m6k@_k6#7!7b zlRX1%#Dvs&j z33*lY#2|sOAnH_)VAlr=gz4KDA(fhNAjw(CxQd{O0oP@aD-Sk7BTZ$vFY+AHM3V%o z6o+1*9b-^Iil4jl65>EtA7%LG&S|4R(*8)+=uqc5(2fSX)Q*RNk!~sQuXd&#rRAKLt zy#_Y3DgdY96TdbBaXJmcbW8_ieua>`xX^(%z409&2S9TBS+#Dv?L76N`G^Ox3L21& zVnRTOjRt`WNNx)B5}vOjBV}L$hMAUXJ0uq;^q9TzE~rM?#o3sNIqG_Yd?wEEv0+h% zG71BLHK>?^%bta$9x7Gs*z#eYLKcK|)`1GW-EvdhmSyP!53a#!Z*d2~W}`bW7@~JU?&) z5=LH~_n{|}lnkzU*ukY#1e2}FIWRk2e`g%D%Z(r4172)@2gRvJsVJP4Zrk_bi-^;x zQD$#yteq@y6kY@l4TzP1!1Q`Pwk@m6tUl#6j8&M(q~=&DCm_(Z!?4kRGA&jwzw1zQ zeG5-SJtCi6CiyVDAK@ObVnZqJX}4fDE8u zjNjF5-LwWR+aX@KA;a9=_qR~z9e_@4A?hu5p5++OI zkJ}u3W+H%$VG{E|+vQF^4~<4_pZ4^*tGYR`xSN=lQ>luECPsBoF*qNQvjb*~7e@0& z(|y2+vF?=VXxAg4Uj(zsM~ih*ipT~!=n>8 z|9K%VX*J&ppN#_HLJ~YeEvV!se*HDO`2YMxCv*M(BnCG$HcPL5yvdb|dN^9q-_+iJ z!+L)=16Myc{KeAM*45F_*3;0|wb9Wv(9to_nXRU+YoM*|d)q+vcL!|t+2H9O^w$qy z9ol^c2Yf@{uw{e0ftjb3+tvj>0h|q<9FGM)+gLiYbmwei>#)_d)wILLanNCuW(OE?<I+#GiR>7&zYHP=Eqn2+BOtb@B6$@xWiiOzHceYA6xv}y5A@i z%3|vA!%7s&oVygtjF$Ox@lM}zYfJoRw$Xu;2Pl-+UJJ+0&B5=R^^Yr^q)?o>=J+aPhdh4gPza z{r{sM&7>)mvmMmK2TnWIb~2p&i|r;Sds@U3%8KrPv|jamtI6kG<$KDv@?C%aI<#_? z`nppetv`nzR*zrR^t<}Oo8EG%yvMxPoZiakakFr*o*}Q0k#vsCSjnhFzW-Vq;TD%> zA&$Yi;^N_sxYALVl0BtPrK64UyoJBx?(7%stNrS~e&*gc|L%7OniFkUqM|TqBj#WF2D5-42;!vA6J>T zl;iZR-?>h|IJ#IRT=7j;{Pb6Im(RSOrR>~M}WUlzsO%)`Rd%odn$JB+_^<6tTxHaFaPd((dt5hoDJoT z(-Sg3W@f+efOD2T-PdUGp&Lu8DkGE^CVF}EX}15lkiYEDISV_aH&Vmic0G?i_wIVL zRfc`%nA?M8$4{loPe06<)IE;C=W;&$BLj7oS8JQgf)7P%XV@29YWQQ`jU^lRczJD< zFmw=~{`A}2fwG}*H#YH?Ig6N8_xT0xvop=jb*#^HiahiBxo=5HN%ca3%*|f;jVU?@ z4<3wl3RX?Npq|rv_s*S#te!(#T86b;`>X7IrkAF{GG0VjURGAAG*IelJ->v6CZ3_+ zkN)hytgP{Yy0mJ$492>Bw&BSZjL1LuG@cBvUAy+FxJ@XBYv1Qr0hU#fDpe_#%vT!) zHr%coo*rV$z7)nB|GW1#N{pP$fB$~=B2Sx0)fkP~%llduHTZ{cf6*N;U z_$qt9rdS4f^Qu2jvuSDf(RCZH8yy`VWQthUOUCGAX{f8KU(+z#ov9O79j*SNCc%j1 zB{MPKc@!&Qigz^9tY69pN;;{Ec>HpjeklK6) z@7_k9k2z`%CHhEGml#Z)~D;~g;zSQDZ%Wc9FrZ;(O{*ugB ziBgTgW_0V7-;^?PAxLy;LL0Qcrv~O><9rf{JO7b3r#{<`Rqa;Moi(VVm>(qVIswzQ@2&r65|&R6tjBHv>hMmzgj!-I-jH0 zZ;7o?R_1vlqj?+VzAz~CHvRJIT^Nt$N|gCo+9y zhtit4I5}4iZNDAtRzEeK%irHuf7@wT^dxw#kfFa-mjAm&V|^70ZiVfY5i2SM3w;FK ztNZyilZ!0V-6tnxPn;00u*@C~9U1J7i_0GQRD|QrT$`^s;45`0nb~)9`8HctOv*@c zVO)xZPHl>19KUw@kBp#>jtglFi=5<=H2M5{8~bsCAiKKZXl%p>55o8}us_u+!W0J0 zf+Cc|B9D1-7^W+S$)^oGNXW}}9c`DH9QGRNXZf@U9vaV_wh$j~HRcJ|#~a*X_Vv?s zHzn(D61RSDxv%Winz*cir?5s>>j&Eo9Zxi=*sgY#H{iDuR~O$?SnA2OQ(U~J`w48% zfq6gQJQcMJT;S=dk!bwDQVd(6R;$H5eY87A7mrh&N%fz;CKZ=8D zxKBz->O#J>YY_vx#2D7md63~?_mRuz$?&YXi{?8sA8tSS%df<;;3g|JL!RkA>3U^g zv|7`0j=y`IdCKs$JQ(0bPNOQ(X9UCh6_#F_wK(QmZ?m6e^V)Sc{yuHD{bpXv^Y!(e zQ|oJ>eqf{I&Ye`LO9P8c{a`1*3hZXQI(O9~vnNk6gIHf7*NT&(5tzU9 z@3(mlsvg6U`)$Lz9h{uA{dFUhUM@?iW)8kvDl>G_q2o(W^nmi|!0E$~yWlt5ZJDm4 z1FMXUzO}|U<1)i1aJCIwJYTH(Bl$0=Q-jbn{LGBa7*K{rtgB?nb z(Og|Q(4Evce z%)(gAc+KA%L4Mh8;U)GR>OnZ>!za~ZG?K~|-n( zWt`hc4g~GF!qQ=Ems8I=({0;mW;(;anijfzT`E1a|HUz{y_43vw9^xv2Rb4iJ$j^7 zXJBL$WW@~glJcjYWN@0)#2Z{IyL}|6u<4f{hmhfkK-RtWqWq->!7hKF#n9YfD@^E* ze&=2-9n8^J35V5=g9jGa_GV^U3^fbcwko=gcBZ)XN>2LxuM2Av*we zP|Mq3IN(@kZIaF1Q2}Susx~o#O9p5PuGb#j|D0ft-mEv*UFl0%1YQss0n0d>V|Dco9Kc!k4*B~i z%KU9HXx&50;R32F6l6A5F2UfU;AU^U9Ll@9-mE-?dceFQ-Oj8yKw>c3E6uR@>CCv% zf^A;L4Y^n5=*Vo}zWwadZvWqZ|GjU76&GYT{>J!gs@0i$HrrQhKOv^iXJnf454OoV z@4yXgg>Vcq(rtWXIM$)Yz~>{LBK`9jd6<8<3iy=qx*Zp*RMd8IaUBuJ>Ql;QiI|ih zHlxR?cyUNg=v+->;B0(0i_7vxpi%D}r5dXh0rNIgEQ9k|k~&%bQjP~-O)x4|h2OG! zGiNn7%pn%0{L^C|5$q={a;c@??_9D!YVxop!plTxpQ11amn@0!;uRoAk3%HE3kq(=MCqRe~4>fg0>>)Wo8-bVoe z8{^ma)R@2ZSm5?;3}NG1ceM#oea~CB9^^N^&fuK-Vy;z5dZF>DC7xX3{JZPZ?V@m4 z&xLlUv-lCKh&7~#4L0+aT76Vb9v0~kis@`NVaVc(@hoVduW$fg{j0@A_eK7y-ohMC&K2h-7b2J=^ zpNiaDf4%X-Dq*p%&o6Fhq*$0cq)m@ZfBCxAr*O_Iu(cB{nbJAKOC^6^cJ6Bp-ed6T zi?-eu14F||g&=8-`17}zW52E1)fy2NsD$Iu!M}X!5*H=^EoHE>@HC$uFNJ&AzrFv@ zQi*>(Kk+QsFQlxj{5UYs!U4DPIN9{+aVP(Qc}q5wJ=k`vga1XDwtbC(y$^d7^ZzW2 z=jCbftgJk}QNsSjsZ*z{Gum!0qHx#q7SasV_gQ`Shr(tS#N`#Qc{fM zvQ)7&aZ zFMav%6z=}4{}b8X(GUjG<;!nhn^wU~rlyK%+Z2mfr)jydDx=g&yOc_6M>-?+xt061 z{F3{WAFk(eBG(|wT_Sv;-V2q+=SnktHc16W+?ALtj}iG)pMj{B!*<+8F=_}a+R5wv=zmW>$-#g6(VUbR-6rAnIwxO83~W2r7kjb?cyIsY7y zb?*PHF~eul>gN;Mj!^EVyGQMVkjPUgUv6VMF6*5i>1%V7x^wK_h6tR2I&IZp->UH? zy^gHOdyyY*uJXtvpH(baQ$ar5QDYSJm~(urw{(Wj(zSaIQ>j!qx5uFhK^DypowX`D zacUV3-Kz9h?M~^tGvy=#Uxqm3oa)T(RmtdfIe8|TkG}6}vxO?&=x=!TQe(LAipwDV zQteF7qTDxHJp^Bu`+5QOu> z+{)8z+g|#}(vU|vbkF$Z6}4oebl+X-GHO} zYnrl7cZ6Twk;8|FVg{RhbY*{SD*29`UKtga9l2tMeCu#akf{DTnaQzU`ykaTAr~Y# zsUsc3v#I5?=xUWaq8wWN_(pA2UY1X$)K6|I+1e8->+Cw$T{iG za^AcTICFZukP(TW?m7_VS~Ex1>BWQWiF01rwLimD$Kqw^`y8}Ry|GNU ztcVhEV8m*%T$8(&QkBN(fA~7J?TGJ?K0@v`y#x;g_49`2ym1nD`t?JdkLS~b*pt{B zH~7_>7V1@g>uPsSa^hq3HtXfsZT&i7-e}*#P<_p{wZBNpr_NP_TxOZQr^zBpu6S#5 zodrTd-s<8)$> z8=4JvG2D6wJL`m3ilaaQJb-IyuG%tDn?TjYs`GTHN{YJ@6Z?=;O3XMSdCcjs{^V%X_PDRH$tk*egC@iz?Ju}y;CS1^V|Gp( z4zNkbm)Gm|UU*`W-WDokG1*%x6J=ByNaOU%?@eKeJNJcixcq$MGT0(f58NQGKI@Vn ziLfeQFnbvTeZAVr7ko+5uAX2R;WGT|T6JJ!z8Ag8XLU!ZVX5JI%Ko0c`gx1&y1uFd z?V)jMBLHo$2=h{(KqiDFOkFwj#3>|79sGlyIu`bK-6nbk>?Q`+QN!|hr2QX6;Gs@= z(`lR{S#5fquz^QHUfh^y(|3u(3Ybaqll=H&QuvpjXn)Pu zcNU3p?!KH&8iTe~0-n8^JKlDd8Vi%tcbTN1Uc+pvV zw`_T1S@hmZdgS=sb#uCwCmNMBj zxkC)c#=C|i1Sz1=Xyn?yLPoN*HYbKp;DCF(?;P_)*N8XkJ5&P8G)A~?B`az$2 z<1*0;UleJTsaE<6>8HyhauabpMgUh9WlM4>1bYf~^p?vBMCg5(%m^;=Tq^`1 zW$8|=6G`nAN1p=Bk>v2=aQd+vd+Zp&I~NA#duO;2+fEvqCc&Jqu{m#~H zm>PI)+7@2Xx9g={QbUwQJ=P-$S!;UkN5O;i?(9)v*AZK4`BIs&`>gHOy)C6`{q0q= zx&}{(HaYctSj|PXNRf!vUod*GLm+2NY1^@Tr?G1}+u$Af6gR?+(kI48`-d96`6~9)3=feR|AT)l6i0832W4 zsaB1@r1EN#r?J_~-}!#LQy#MI_#)Ua2AJ_EAWCme0M`eACse{3^?SLG9Rj3MnMBv| zYmpx9Ytyfmas2sg35R5Bie!spR<>W(sz;VL@8FA1$DOluV6uDW%Sn1FHV}T-+MtZ#e(rmidm8Ju{(8;>7Fyu8#H;GHh0mQXE5_3rj-SKE4@Qt zR-TMY4K-XHff*@|w`$CbK*E`p+~X)YjA`~ai;s`D{ZX)7C047(yV0^P`J|7wy)UCU zcbE;f9b{IdUZ{!Jcy;y)v-lfl#DS}G-M)q7H-7%GTK7VzS!MVGBS$Boex~2w-*W5S zXV)Hr4JfxyWc$z6x-P*$EEC2)?g;8zA0G^G!6=&1*fYd|Tg+BR4%t zO#xBZBTkzYxfLl3l8dK-LI3p!>k%$ec03CcY++joF|G^xf0HJ+rT_I*2doLs#^$Lk zWtozdl~rxBxgW!TePAYX#@v>05wd2B8bV_>ld^~XmpQpVS5BX)e=F^F z>av+bS-DM3$LS@5i~UJO-fNP=^%)Lvd-m+H1^8Cu8jFB;>$Yu&WXAheumeKeXW6eZ zF%gl+xoaqj;d**{w%=sEJ_cqh9 zwvPYWwbk8pdchQbtZX|k!pC=#W?L#XXbkIVq?H3Knh+w=BdyyQ)`fibK1-)ReQ$+{ z!;Im!uW1RKZB=TzRnL#yu^k(-dd#c7ry*TIs{c{;1TWHX==uJ^v?BEGAN*S3F`6lJzcL4yDK)OL zl#BA>QexY8vu8AS?d=~=@^s?pl3vSPEHKwsHEGP*mc)yli2RgAAB?C zuJF-v_GN_4p|ot!HTGv-T*V&tGvl4KV5{!>EUu=m$H~YbU;*W7YHF-AY#eBSJ!34g zhYdkg%G=AounEmbIeLBM;W$V_hQx|j? zxukb0&X1g(7oX%}{Klom8e!k6`RjXd==il2YBvjE=vG}QS zoK09YV17OfwxBkkw%O{nRs4AZi*zad`A64Y0rmLvWp%qH0Yb1}{}PeCVJA!+@D_U? zw)NisdWCnH*tTu&x_W0*RtmxPJ=~=lZS1g?eZ`d$TbAC1YnB}ce^i@gmcm;YKk71r zvc%`X1L9hC^7G4+nVrUR6gv)IZ`@3bEF#$`9Ia&=W>F@*TU(8_tv_;2pCFIpXAbI9 z(|^8Q$hM-c+0&!H>~e7%Q52BZKV{edbx7>LK-vFax#;2Ry=P^{eqNOx?GPdxC57ph zfi&Pd&%@n*=S)p3*%4cxVh#y@u)_Z zAq^0A8*|il8*ZY71WH|!r6E*ibpE~k)|JOvFDYy~#1oS26PQdUF9!%UQ zG;_QLeZjqfkDYO7zPBsr?4{EF^J{E!8iJvyCVOM3i?ZjEhiw*lp_NN|yxIAKghr0Jm@KJ@c^EkYYad_qTHJg`*++qrDm-pvJPIrvM z=`a)wpTS5cSupld!wxDl2c*F$r?rm(m@Cr9XNG%Q{MtY+HEFm5WpQI&lH_%c}!mEXxrne@pTD)l}%0>-hQk5#rPK*>`Zaoo>)BOLl`M zfivK@H!W~h-Hso_Qi?&wJPrsjpV zc!OI+q~EiS9)9Xj&e*RzFy$=K6W8io+Z~oG$c!hFgjR^TdWphQ;hprKYniTt0kK%S zne=Ikv{@Lq2GgcgiYS<{E1#PAS{mN~fFA|2JI(vpks|?Cli9&5<$=BcMfJDJ_@C#i zkl1Xe-Uj}!qNd%HqV2oKz`D~6(@Nlv5an-(^;F4^$J%nxU=Hx-`0 z*$N@Nb&Ma#ub-)il7!yGE2yeguVqbp*=5c^n6?_N@wd5o6CBmk{Os4Z3)>Mhih8*o z+WHm2>UK#6L=x)R$TM@yiRF2}Lc#cF!<%1@lCrY0G)}%Vul74I?0h)e-rrh5U>^)1 z973GGGwP@%y898d>SND-m|fu1(M`KXSL5cU837Uob`)tdM?N^6-IV-+9OL8zSzFTZqhrNPD+O6u8}?>@+v`$F_(zDMwCp;*oO*YCF{Z3=tlA-i!R8&8tpX0PA zWi*5ATpyJNeUSdJZ)d%Cnnd;{sZDo0xO zfoKosD1ANH`2PK2A_Al#xY?Of7Xw3oGGLzy+@HuHk*326jY2QNtcE^Uh>f+HoM6m3 zqR{yBMc8W@=XEWm5%e@=R_N4UQyb^-0H1u9#-+Gy24#LwKdYMc*hg2e0#KgN;Hq$y zC~y0YFXtR?kyCqlD=$8a_5GGG=GT8SJ2Y|8fEoAsnpncqAP_qF*=W*bJ+2?YuWchm&)C`upZnu>7VfF(wQ2S0 ze0*g#EE@C>#4C`8Bu^Xv$|DaMj&;Ub>9zAkdzLFYE2# zrSfn2gYxWEPYs(r-fvtszM6dn@UZ{v(f>{JOITok9=C~MqpV+_c%JSxf9jh8*KOBU zeuT{{0mSE~+XMG~DyV;*nHd)3ra_cJoNX{#r!ZN+B)dQ$7z|uO5XwSCC#kRfrmN-F zjzC3%F`Gb_NO)gHap!zkn(`y7wF%aT9sl|@XlDXn&}<R+z*@ObQbsNH-JQfe;yD7(^%3a?(3~Y^qyZ_~!MWm=B1D$5g-8Biv03<0vFeY*~mtu3W zp@=LxyrJBxU8nEYbymv>WQCBVfJWvPWbr{*!PAJGPRHp;L6LKY2K6`vbH2Bfk^@DJ z^GI9R!qZo~lYSNnl_Fh&iSfp+{4~Zx(1lT)!aJO8;9^vedG7!HrL{Psn^yK=SVGDEfjLk-H~4zI+ys1yTv{Br<)^hS@6R(E@{1GrXXEf)UrOBL^_zA;=wQAKNgF* zLpQcvjEKbX%8pAL8?b>Xm!nA!HOv|ZB?vudZ!5TK^1@1g*$$E6vk>Js-XJIrltWi{ zwN^n(%YUtc*!?eG&h(1y+SMM-DmIhh_bIFlz{bUzK5;6jL*Nt!AD|MUbOeB=Kc@*m zdLno^3dw~;cV>lWP#vh}j6%EFK7|IcSqMSZNSw_S`z9Xu4KUWs&V2{wqb4a^q1$#1;ru6?=I=s*mXMM$nmJ7X^iO`vo z?G1#wIJ2+M_CsD?bNXurjLodBZOEXBmV}v|Z zl)fMsHULR(90Gf0kr~F>CaARxYP52aQtt?KJeb0;_v0i;9q&>@8Enj|#iC!&HVLM{G0HOahA71>W2Fa|Cvc(Ns_7Qj1_ z>{zO<;O$5@Mz$rxeRBK&{VCH8`BNC^Nk!;(1Sf&QWjJjt6z#ZNIyT(f$^TIhscSfn zgc8JV3Cw)6P?*!(Z`#oH(5%^Cm zm`fAbyhx>&w}GAp2z41jYf0Efj!PYa)N%j>zqCjqK*|*Q^VVA)C!hdp(CC*_l}g$8 z1*|l!uhe~_!g3r(Y&ADUhW_FGdt>nUL+fH;7tnIN&m4 z3`P>4$+6b{c7xQ|6h3-9HM*ia9Kga(Y3b}T3&R0y zfHpkEk7i@B9sZI|N<^<~0QN4=E+Ibtk-tAL0umg}U4TYGOpE5szj^yMv5!Bj(;zY~ zP0a!I+N1GK{KKGg1_FkK2JZh5aSuk+G?VaJLN(30>8*3-+us2RL&eaBEYIHOcj2&P zrwbRNwXApYNp*I2^A>>`GWhfeiPF(PQDeSOQ%n*33Wzh=lP8m=5a&ic1xA_phVEM+ zV*qTgy}L$m>yP}KUS4V%8c&(KZREdIvPf8d>=@7X?Rj6r3aGda8*3hB+$q@kcVz9n zZr0wNr=EMHMW~yaM#5~^5~jbOV;oEH+sZXl2bFT|TG^Ucx9F_mDxO9h_I+++sf?FX z+ooYd-rb*5=L3~v|20Y8hBgqex9{Ff%9t|Hw*&6q$b0?z^$5&|9my_AS5XvCgoK8g z0_Gxnk@1p!CxS_jP!QjI2CJL|#s?u!M(OJLcd!gK)?fQsbRZl1&%DpeYlo0J@vp1D z#MNo1QE~K`PqUhkhf^>A8UMy>{=bea|LY;_e{m_MrsBW<_{Tq$l&B&epQd%sW?T-o zQdRY4*v+6UQ#CO$NpJXb;dBZ?scZV}E<(|0X#IC>14~g0omv{~IAjaQNnnGVaGHF; zW!!IQrdb=j3=M53$AvzRvj6yzqemkTUi)pDdl++fT2j9Tp&v5%4A%69rFbl7r&8?4 z`rlXq_`jJ>_)rAVTCq$JTq$bSj=|zTVKlMN)$P>d84EG`D_lEvv}Cxvzqx!yOX*V) zIe2T)3K$nc;5iR=#X#C`ig?sMXdQXfXY;p#N`H2f2s+tNlyhtF4Fcs7p$D*MCD{L& z77u-WBW`fG94ATIDmASwR05PDSmUC$LoAI71yPka9Y$9LdoEX=;)kR-;|{Lw#G{!U zP4pn50wBTL+S<~piF}Pv#Q=(e-~s%g%6bNMaXT`X2b|-`UTZU*5>WjGIV1q;;$+~v z_CdQK$lS`-WG^rhwrf9~AqSQo-Un%(6*BC{be78D!ydliqn2M}03Rkg8d?bC^m0M2 z1HSy(LwX5gh~;nJxg%5|e)T&9EFPWy$QM^vH?Hyy59daxD+?4ce#%n*jb2RKT7=Dy zz;q$1|2H1~Ke4W^*Cl$S1XsT8*^rl?&jTtORYdkd7G?g<0TM}FpugbIS}}_0t7={F z=T)B}QL)nQZ`z)0z-Kpm9VKsjdY%R{OVpf&P1YvBfoISI_88nIv^JF}&0Zp*ViCLz zu>}{E6bB%y@08{uOS*sgQ6d;!zIyd)$!{cTq(?wxT3cHs=~CK=2dWZ` z6fzXp3*SIt0}NIKr-lHTsT_)!t6k5daa7;^@J}y0C6fJyNsNYr*U8UTASj+#4uOT@VY{w!bq9v4k2gX_WGNqt zyl&ns>!?Zi_aE~>p`SN&wp+vIZA z!HHbyvfg#}nvw9h0$4l(#;J+jr4k8_jZkV|v^mHppFP>a9vP|3IQ>#~l~AX3TH>Wa z3#t;zqEHB6It^Rtc}!jKu4ug?!tJ8I9YHS7i3|;pP&>+~0Q+@Ll};#n691+6zQ3*F z7(_?HjcW+?2qLkP$N^Cx^!J@_u{A>%4NIj*qXS(B)N`EpG?NoEc*(dh7wpN!baS!e z+%^OM-hVgk+=cO+RFv|(%3v#qutrlGE&JygTK3S`LO7a&E*iNO<--~hvK%>G`&l?m ziy!P2m4ZgI3SUe_K zWZj0G{dBiZR+2&CA8eF%`j}7o9gWnB!PreOz(Ya{YRt2++@MU*K;gmsCCd)MSTEqU4 z7V`f~PX31tF*QN|tGyHcH%CtFLH)tv1)$t#Nut+HfUbr z_IR=Jt3`_JVIRfwAwrES!gP3`2wOR{;gcp(5MK3r(b~I4%)5#lP=<6rZpN&+t*?{4 zcJA3j3{&}K(YZwS05xLO?NvOss3oV;+{Sv2C7cA5_)g=+3ily6;d?Rcf${suA%J>K zMyAd0vvsTd_@A@CU0M?07$Y_=_4$^aL{{-a&D7d0TlXA{y!o zP`XXtHp3aDP{F%#Wj`y^SPib^&uS=Lh`JB(?n6!_tS6x_zRyX(UU;nCtZd*1&7?x_ zt*SoSix4?XhTkq@K&EiekG7dDy>>D2&|i2#aTi-s)=Nt8uv$|h)RhaqIW7rsjycSx zNRqHe9(O>c-g&{-O|!J2*o}X6(x?^UTtRM1UG&QI`mC#LtQ4=@&lHQ zOEm4E*!@BJ831}d4e0p=(Y9daS)ixY!0Ij8AodKAtIATTzWWRVwmH4M8(;!O(UX&l zYmUDR*r-lM2HkQI;vl?c1{1&6aufYO%BCeqOZLODOuhbB55|8#Z=JgTf5EtI?c|^O z&a>T|J9gA*AH3qZM(`~jX|wJ>c#~<`3ZMLkOYaWF6yPk*TEkk!o$ly5^N8OHofp@} zM?%QluwVZVS+xIF1?#r*F6@Qpy_g#rj_5KrqXTJCkZP=G(uM_m`nBR>c<+|suSlfxC zriDPp@IOeiH>k7i0U-j}B=vNX_V0Are;o;r-^>G32sds0 zS(71AmdcP1mx!x{4^tHW{7$^x`s z>ENHSB+qUM<<-L#(l>?{S+mO>N@f79e?=rAljGg)>-L<#ISo_Y-pvl*(^m1Qwjv8E zBRMcgOQOmJq4-xO`<$K0HmgRT31&+;$%Wv5siF+qhnx|Rau{YkdbBb_ZoCdyhLOX9 z%Fbo-F^mX1i8TAL>dqgv5q`CIE-~a|r`~E0wa;j`SNArkaaDq?ww=3_8X|O9ErqvywcL>KlRj5#MNpGkp@Hk`62mAme6Ae{K*sLssM2 z6UZa4gC$zEeti_`yR^~6AWdBry7t~70)@x$NJ!Lmg)Vs7?a(O?eYKrt{Ev791KQTc zewxTft*12H5q6`d_IjQ2v6|jCW)9Zm*>Cxu5e*93`%2zb&GvjJ@$$)}x@4IK(l8Z( zKBQ1@F{+v$^Qa|Hbu*X(P;$l3f>xu2fOe?SW(P&jZjzj(VZ$jj9U@1T>?g{94Zmi8 ziSoaC{@$V1$-rSbh0^dVOU3Qa{Gg0hRLSIF;$BNpo>M{|4mGsbL z;uEdc&C*=mdykM%Cx2tKBT#ucF&@AG_hJ|y?NEkUr=6!x?>a0WQy0$*tx64kwKDa) zl%*q{#Por1o`e#26x(>|u1Bvcw7eqi^f+Bb`u=d;9iU%T za@@ub#&;*aFrjtiH2d(XZ{68V{{e2#4*EbzmVoT9$fVStQfeRG6!{97OW2{gU-y}BF51^vW2pD6j;Z6M0uacGNm{uBUFV3_Vqu^3)>R$j z%)xaFT1HDQ&zMD8q0F;e%&VEq8zN$df`2r~at`hu9D3b2(*1o>cGs6tcW#iu4zyox zC%e#d2G3ZWF!6jdOj)VMofS+QgOraCcT9G=jt%AvXv+k&LN6p5sp1PqYq#dHw+2XpOluP((E8(C`~CCn znyDAh#oF}tIA@tcsEivYK|lAZdSmziOri21!Di=V|3SnQ)e?wqznB&k6;;Bh7RQGL zI)9QJ&=$DT-j6Til1#hx;hi?pMn*hkuU+Dz_S4OgbCHVLCr^xZ3Sp%8)=Bpk36YPY z$nbtk@AB3s!F$mD1;x>)f&U8j5i14dPS}(1 zw!Q=?GYZ{DI}!}*kqVvY1nv3AcGnpw%_9grU)`%+w+Uqn!PSX|#p^)9Jf#=3#YOoC zZNe8x1v^<)l11W3CKGfhOZGn(p2$$B83gqFD*kA~z3W|E2v$nV{af$o5 zpYDKeHJD*oD+%haD4DPFlSMUYHen%?3*+SDRA{t^539&?ZxGu}w=ud=5%;pW*w4>^ z;GQA5boX%oHmSzG(s77=o(xEj*DmQ}occ5>75^%y!heF}H3myMA3>6&8dUFEL~m_gDs!;LkXePec{c$tGPlhueeV31s~iY9uUPkML)v0ml@ z8{?M`P9hPEKGERAxOdiP)sc$1Xh;e*k9loK!k=KA%wPi5nQo&o{g8;El3pF+q7>N9 z7*xgjxejwUu&RsE_EHulTj(O#mJ*HrLuu6lCy-e;_aNtv28Mbj2kkU+_l2GCMH?;f z>oE|0cyxapnuIdNgxvaTTEz%D51f<|XGxEL^%l^zAe929^_gkDOqADdRn9O_C(S8M?a)nrb>0)>X+WR?L1O@_9^ zl7OigrN(Q$Yf1K<8k#{~5M=q<5dClr7DxlnMOxk2HRR4fB?5+|UJXU<2|fsUlHE}D za=+?yL#@y~b=Q$Tl&1j2i;pJgyR3qOXv-_}y1hhfQ4Ljf3`nxVc=@dSky;ro6cHHL z^0!PnNezs5_dCZB*^nyicM^IHfvzF~>S|!h#b)mZ-NpQMn7|%_%zV4;Qc!fygQAFr zB<&{{g`v9ls-Jd`dwaJjZoIK{Q!)f)D_*&J8Ei-(r8_zOuKAzDyHOU9fPq2(EMSI4 zD_cwkgAd)%@V09gS=%}?0i9$Ff(r6n2&q!gGH<+nY0CZ}@oc9nrs#SQnq<{@lne=k zdNPDAdUZxQ26M8#QOP{d4EkGdgK?&j`!g1EQ0rR!$yrj;<3jxq|0nYn{^n>tZ=`EY zt5iHD6qmm?5zyQ>c#}i`BQEtVWFk>s5REn(A`L7N#f{=|4;5Vu=Q?jH7#1rNX&BYn z*qUGmM#a$mN^HV@^B#xc_D@b7W7#0Rk8PAcNuN-*zsPW^@b#^o<|K@SY5$JBYL zHrjX6LVj!FX@$SV#)h6aR{zM6BUBnd9WE-mcjzB4je*dw*$Q>;*eYlMi{*Vm+$(N)_GUQtMz*+xGI zpyUJtdJXk6W*um+x@6N$mFqi#tr8fIjfV9?89eNBWg4S?Q zqO=e&D!QO($T?(-N5Uo!_d&_H>*w&bw}kG(@s_2fFs%* z&f)&(lnNLqvc-G-<&-|vu0$h}W7AD-$dPjvskh4CXz$axql{HTfAcL=NxbzgrPfsl?IyEbSeBp@zh^DEM>zg_fx#H-Ip1D~z{=G^hD&JDu8tI*{^8rCis!1@EP%L6x!h$qmdbrwhuq7t$56@T`O6S#tdt{ zvRsC(sh@1z-PKBDxLEy4aW1S5P*GSUqlv>M{A!h{Z#|n*aBd~@xriJT$tQ^Jza!SBYb6EO{!57@W;=9w(#B+j-s^EOp(av$5$RvBcz zn(K;=Lw0Tp4jO3}($8>UM!-M7sCmbxe!qQx=~YEVXqD*DKeEf@oCx5F2(%ylSxjJu z&qcj_hR9@Qa-3XRtrOtK=GWS#2cEGcHv71W{Lv?r--2F0%23skiIMtMu#Ggsybw{h zBhIWXGAgzl%;vd2bNAC>UMB*Vw+dBt+84%0&&+Z7G036*B`E4j{Wh0(^LWps?uQ&_ zX)43Fef~#>CmZ5k>>pifyEs*gpE~TGEbF9eG{@x5TcxsYf#LCJ#V4H{CloJ*c5k^- ze*@u?Fd`x-7G&Yg%OEU19jldgKhfNck#oHVC( zVl9Ya0RLI;S+k~OfPs*P=@?$dhY3fls5B?KL7KQmCF|;G<=I3oeg@%^Rg%&Ojt1To@|vYntbrBnJ&|@fsh} z<#wM#S2V5V@o8wXD^Y;+7@Y}-oCf0~k^!myO6By%dlF+aoigS)Gf3SY0tq78AieK! z=5%_Si!i1Ge2J9g%R%52=A^3hJ^ z6Zf}MQHm$1uT$bH6qY+GaN_$-{E22BOb4Fw~3K z`{{$j6MwRwO1sw;bSJ2M8r{cpTyyre9JA+*A?#S?uK`G9% z(fhEusI(z~NH})OZO=rbXY+kjPEY7SZR2l4VghFiPNWy;X*e9qM2Q(_S~bK5)j(6K z;&gMis_(ch!%Uh#wh>MPoM<4?qMB5M5&(y-Ta#mG+MfDw2Ybcu)eXu0=N8zy&Re%` z-uygN++4WirIlcKch~9gXDFX|-(~np`;_^@3^!HoShA@v#}ExLynRzm!sak2RNB#i z;1t&3tu(*xZoB7>>qSf-VU>AP{A6n1F;g76br5>Xk;z(nY3#-(w=y^@QYJve-d(?6 zN%*66WbOoiM*TKmItuW39=08BVce1C=UPgC`>_1qz>a5^*t9UR>c0SJv2w%~=>9p2 zR7auJg1@i(_xB6XhpL9~&=+~9+J9Vbbb(ZZh(MFhfBc=4VWQR(2H2YuON*|qnX zPq~bai?c|=zM+MHW3ZydefWn^OT#e<$ocv^E7UGceAREpmsse1Q%15>oJd(3g26;s zaz3a8P#t>;0Upzh5cupOT!@4_rO^@b?VszvvB7~2Mu5K1Fg=|pXQ3HF(Vwhg4Ro8N z71&PY&~P;RPDcf0)97b9m~2#KSA2eP%LN$U^?q{qT1w&!0aRcAsz|@D+_Tl93wtqJP`- zb|pm9&v8EMyOeRuA7rE8buR%z8LASgzh-x4Bza=O*lnKJ-Cn3^3P;}tsuGD+tkX!@ zG`fy_V)e_?h!iWq4Rv#g7rz}ORXM~!APTKQ?u0z2C*@jdQW!r@(kl7SD6S*|{MkOK;jKou#;hfV#qKkO%t`UDb zHSoXZ3YDd#utAZ?1W=$*&}koqew)J%9=J%7&DV4uFV0sceTvwM#q-|oG9yZ4+H+_Mk;T=od^?B26)_ilgB`S1SS z7tAfsn;1I%&%e<5`IS4qu!Y>=;(5b;$4!(BYz|u5S)4bqFgj@IND&m?Bj_kBCd#v$ zXE$TPM>BkQ^IsoUHL$iZv9y4a=_sEdzv$-8f}3}5w$wA-EGfA;uunM@pQTWb$RCb9 Ic=pf#4|KGG^Z)<= literal 0 HcmV?d00001 diff --git a/figs/shiny2.png b/figs/shiny2.png new file mode 100644 index 0000000000000000000000000000000000000000..f48980b2bb7500f6fafcbd09debd0d12cf4b2ca2 GIT binary patch literal 50711 zcmZs?byOV9^F0h9AwY02nP$fVlUd)06BcL6j2a? zf~p06c`^9}`To^RT2%oG%7+RH>PH9^)Dz^=k3%RZcV;N4zs68dys1!7I8K>uD*TXt zz?#ZQi9@~r`^)JpPJmp2caqj|g&d{-`$&%13PPGg$%u=ndo7==d1extzxG^Cv9YaG zE$mMFGEw~c^}~(jhx(^aM>IKKe}=O|e}X5=!6djX{vnO^$y&8g41pr?=2yT7WvgNH z`1tj++1RPUS-idjlkeX1X3>W78GRIO&fI?#>2W zYa{5QH!QNWi2Xh63iM-rJD0||L&Tpj{@1+$J+Ux52ZxH0k&>7gOs=xD4P^+b_12}= z@bK_gHnxQEarq8IrsTQH8sYz*EH8>DR*VKSudXis@fxSbdrY&guHI>_3Xvkcxl^no zPq$-jNcXh3ywYKg!FS0hp zry5l*StFV(4Cd*6*oHJTzyUd%P7K{3L#yQ#0#x}dD$+MrM|^V{Y>3k>EER;*ud3B8 z=Mwtb=Rvs7Q{j!CT!^8flqBnu@$KdPM}K6qcx=`tzg(WP=u&qT=U{Bi%nKbBoVODA z5(@=ZDZW(Fm~QBe1)Ha77va5T$UhP8tcV29JKS(x`m^7AMl$@utZk?8zhw>&U@WpW zPP^>JB7f2u?8*Q@mkW7^E!Crl=6gPr&CShk-haOE>XbQ(lB5vKme?a;+V&*kN9d3> zqmALD*9VE;0=j2q? z(gGd6BKJyA+K_MK6?#$Cx&z8O{XAUp?5?^NO)_+C^`&-fxX}1p7(RqQ*bYn=BqT?{ z5;Cw_j--_=1|+Gb0)nk|Q;VYT#u8}@J+j(Y`-REyDS~!>o{9$}RC4h0;IqYhY{VIp zl{RQYw~SDNPWQ(3x~kkFgW;3Zm)9i|xC_1&uS_njB!L8DfaVS3rUj~xA%D2n z<#7dKa{DEfH8mwgM4-LBy?t-e{^uLqSU}EjVf~Qx2iEKqBl~KFg?B<9ZuJ`Af(mxg z3Dv}})S%BVL>CDm@SSis!{bcpr9a5 z7ANqxp7K983m$BkkD%gaFjRVpoyVu?|B4=A%*PoJXbd_%saZ=tKhgx|2mKH=8?d2> zw%hnJyq7%((GNTEBMsp-8 zLp-b`HYG<3~^WHZ^ ztz5)|t@fUIQ!tkn!i>xA85!*0y1&nw?c z#Dt8JBI(inQti_)>mMfDLn}da`4Uyra|mPEY1~cN)Oj%KcEuAx;uSo}$3MYk5o)G| zM17y)>pS@@ek82RAydT@pWnDr53ExCj@VJIgh4@9h<3B{pW}s!eXZnQ4iFCJ{j*zC( z+(9j`3x6jXI&RbtKilx=b?J$qCT%M5-9-FDf!S*3mPTGKK`%bb z4T`f!FYLXCoW%@_%ml_x-w&5YpC0k&fK8b`+%jYE9pA@JFO_1c*#B+ti(~Qiyj#j} zGe|1hzhYD)js209YfCGuzBcC=jmfu^TUV5ujP^j`y+tP$Q7WEZbUEx8tes7_<2R3Z z7_2{-(!F)O(ezs(%f@q}opX2aA@+yk-2aUIgjuz+J?zn}X=v)&lXg22)5;TOl2`y%dRPFfs zdV+$7M@K2NjrswV8qvf&Ay{LYtQM=>nbNqxTzG2~Xrt%m*J{mbL%64^wEc=qR!+t{I_pISLNw(G6ggHZuVuPg_V^bgy zm<;U@6&;vY8t=gJL5)2?O$P6&U`h&<;X?`Z5LXpOEw_$}`G9@y8EkX5lK^L|Td17t zv;!SU)s|hrF5XP??9j@)3>;Rmf~hg+iExkgWKn=QEgAR$fOB;j&8&M1_J z8Q}20P1-sqF|W#$AmB6y5oW9|RVYv}Ee&rxlLw>0qJMtkfwlg^^7~dBbR0`j(hi(%cD)Xx9qT@;Pp%xoVV1hqmg8yjuK2_>5vpvO`Er%e5 zHhl;oIL2jlLp8^0^wOD3&xx2i$jxC6YkOjLM=}|T!Rt*{IId-Nu`a13+Z_A8GS7PD z%36YCt=H0&NWk9DcN&4FYDNgMMW<-%qlmGLVM_dY+)8zV#AYu zgX9JhSW~kOy*jDArzUr`JmIKJMM9<_Mi<`*+ZT(1^#XHj6BQ<8h%_!-@~#ii63gdc zCbMQdKa}jowWJH(4{*`03sCaRN+W-d=QA#UfU|aJ@J>+mf_OMdH+ynTj6BmM`-mN@ zOVSy_uT6f|3)x}^y6lt%MTTPkqIROZMoDjfF9B?;i4>!N5ga4G$>a&WhaHmlVJ+MF zO`Dj7Y&3$uvxT)TbW3<|1#j5tCnxkzw{$~I_6_r1uZHPlXbl(>(qUpEHe+0u=iPzg zEq)wdgx*319XooL?K$io{;J_O4ApfYo~1}B{278<$T0{@(rfxNtK5G#YD2hSBBwzl z$7xS(^=+QPKqg_!@@QLveV(hvc@Ev?r=qG6YO_Q)>J0l*gEdAhMkN{Cga3Ct5q$gQ ztVE`bYG*>a5+m?fwYKl$E2;tA!ic2A@9jAtt5c zrbOKZ0|j#VZtu>B%(lHDR*(=*69-iroVC;SQ0rOa&U$gX#$~U zACT+nJkNQVWB%-axs|UHScq&V9z~EquaDWM^uFees3tm676A=y{ zx=G(f9yZ?X=;$|me0(@qvE73Mw(qlEPb-{)z%XU*==t=me92su%i6ovT;IFW;a1;>>DL97ADMA;8N1 zqcHfHI^6xYhqF`sPxOA~yo5H&^Y$#{r-)WHQ!HfOxU&NA6#A=nURHfRLnYz%-ZK@f zE^U1K`+zNVe1BpSpj!c7yiCG=P*JE`@z;OZ=;Bzz7k4E0SqDS0rm2FqGW;JWt9~|r zZQucYAN$cpIUUK0b5fnSMg4C*isVVqh?1m(K|AI*hbk0p(?c#;hQQBAUY&+c`s3O{ zFi78lnG$XtDaktU3v*r_;63@79`??N@$iM?-UxAA0Xy7FB-+A@rw-wcnWBjDwL`1q z+D!Q|DqLQc;Y0#kAJ!Zi6wg6co0m{_ua}Z}9v>t?Dct=0**cFx=89FRgXxg%%HZId z31;y?4!=F8LZmtV%IE`#EwSy9Mck4Jz}dz?!H|#6vpowQ;j`6f$H+=-Z*5p*MocVC z2bRZp(6%S=&h>JsIuFQrUmji;6zPrB>q;E}v#6fRF0LSuzM~=6Hp-_*DF?>tHkrEJz zfuW$f3vI9}7~{~ddwc{Egw1SofBC9=ITTV{7kdMQxO>`302m_w-kj_(m*Ib3%s< z65lvH_-X~(meaBC8?o#+>HpA@6LSY{X$MWi47{MbBO+dz8>=0#}=^rcf1^-xp+ zBMNjjBm=>QF4OPY-NWClQ%D*2T!XGYAsHb@&(lJWkA7STd5ilD=At51s zx0Lb~Zmo*SMf`1e2Z!SLKqQM7eGz?dAI1;R1TUSc&0QJ+0^ddFGmO!WEGX5DK? z!O;I!19C)Se7vOWxL@}LPxd+70N&@cj4lULj8G9mwYwdN;-o1!=R3#tCkk7t_A~3J zOg8-Q&1Xx%U{VSqE|!Y2<2GCXBw{dseL}LTygazGd`U%bU`=hC5)8rbLnLHRwRgY{ ze%iYj*>S~V$srlza@>1mFexJ84EuX4*P}MRo7-x&kZY&M0V9V1@5PG8YR3&tv>T-) zWVSiXqCPjPs=H&_?m(@Sh?*zh*!4(-g@uJk%#T~i0Tg`l{L1TGxYLIFeMfEQqO=wl zabQkyd-+${mT{rvKdfyrO5Ls?)rxAxN(9ztU{B!WkqCRlN{(%so&vAIWfx8WD2o)qyMNH!O=qG$CcX z{;<(b=+y)L(RMVAwL-`$U0e6fmovvc)COuMqlGxd?y3R z=*(D*2xhYlYnsAK^F0=tV%!CIwxg0LxX?Z?e?iH+Y!PNmi@!GkEmae#N6&ePq4ViM z!C^a>x+PorDx=}^9^WzJ4^VO%9(Vu(&;<|;qbOMuZBQu>>Adb-j5)5`?VtXHuvI(mFyN7!y1p%Bqph(R3Z z%8P$Io#P7-Bu0VWTUViNA0lb3kXtPj+VvK(x3d7t6$;(;f7mK!hMjk@h}bup!o@Cs z-*TL#EN2VfL}GX8b}nmCAkT$ILQR;p+;|3fLg>%gZ*d}m;oQ#Izl#OQrCBTZ{qHAZ;7ENwt;GIXCGB%xOJ>XS6s<<0=-XmmX|mrjdVj*9)2zs;t7Bc0K^Kr$ zQ9;`Q0S`hj6mtUK-@H24-Kb^Yz+bG8lFeByZfN9ZB4Zq#yc;Qql3 zPI%IRb#xRO7gtxcwl%{Al)q_~zqf`69238a7KroztS&F#0T4KB3cWunwIxu593HVx z7s$ZXEuWl^|VS6$nu`*S538JW@Rp3ZN-yiRIC%ZOz93xx#* zAuMJ?%=XLd02GpShZ@qSs-hw)PW$D7;_QIYzjNhFUH;F=(4qD#`hl;v{1-hiM~YRb zd12GF@JAu2dF8Z)Gz<*pJ3}$TH_K|QULoUlYq~U;+YmQ4xO3UywZ^V6$#>3ww`55o zKa&{MY^9~Ci48HjWnTz9cWi%O=ojzp2x^biRqL^21_;DN)MX19E?)znis(TDjx?RN zkXZo(f=?>tf7Ljp^Hm`E_wc5;3@B2z6H|e2u0=}Ou_n0a;^Av~jYG_c78B`%N`X%^ zL^hO=cMd_Vjueaj4Ypxz=_w{qaG2*Hv)}t53#8Ee8kar<2bHlgc=q3wTp&Zl#V0crwivnR-VLHNL~n;4UEB`Q4~F=#Zd|yEgmkmGTrBO_&V0x zk|7R~H?L9QY> zqW)qSdd&`lu?oprwSU#tjVxUb1Ohkf&a;R7l{)1$%z02&@1geQz#!6y`Py~`$`TUX*ML? z#h7ai70h{7=xj5Z)$|6RVlvb?qYF{}BN5-1Rgaee5Ke*3YzVP56g4Za(W3kHZf7sW zsHmfZe{BR!^yUL2H~_seP4kD;S!c>iCjICb-NPdi*Y$Y*y~~gilclr_3zSg%D|Du& z`HvCzqTaIGm%Cg~p66erFK=5oX*}MDO5IPiOoIL-&Fhaep5vW~r$!Sy^{0b~ZkiXM zK>zXG-ld9|UDq+7;^xon_2D?Fi7nsa0GzQeJTOwqt=onU?d^#(N&-nn1}_3l^jT7m zO%ssUyw#NbnhHH*QS&yY#C;pKpnSj7?QQFw%2S*<`jWvo#B~KV+Vzy#-{naQBH@Pr zK}pg*`a0z|9H1t7H3TxcT6li%X%ylCieR8@-@tVGt#XIvRj+SV+QUvZnG^bg8)xbL zLOnIPz*A~Kd}o^C^9^8k=N(JE6w+o=bLY!Ng_#WaE4%2;H(gs77neV}`H7;o3b;vi z`$?Ttzod&A_X##003XrFC=*p7jy5XA(1&(S24YUr<=V8i4S7kVzeCpY8Hg@l zjX9KbEwzcG4OW*MOzIBvQCc4NjaVv-pp7cJ(EiX6m48+NKkt5->KM28T$NJ+gwZi| zrdHl=eD8@4=6SC;r)=6Aq2H|XeH$O$lhf|lv=4Ysk$rPIrbHy+NxmFJ_PNQ`cV4=8 zCXj9289`YBDQEgkF3A(5PcTGrvN1m3O?Dkhhuy{0)pj8BslO^uQh3bLOxtNhA=A;PT(Y_oUrIz#rBT(RsF8#J|XQp@Cv=p z!d72-0J%sADqmbul7xqc$M)m0f}UE_sUe38ib`7osZZR|O!4)06jKuqeFds$ z!OwDXLZ`!Cc|2ZR1HPa2j$YAnj6%uT>n|vZ56cXxJ$zFyX;%UDJdb}~(T{ZuA$y#4 zOkA9d#;{3?>g@a+6vAnU3P5Bj9%%hdFuCG~oVh`2o;(wWJ7>U`m#*ZcpAwD&Q``-Boqu9cr?x3$sY|bd>Jrn=dtlmmKDV96l$Ddn3$?4>b<@$tOro*6piJDW^b}= zP6c}Za8eWK7I%C6&N$Q5<_^ zr6vnQ#&O_{0hN4e&qKt_gXtq|3A{_6=hXg|kzwCuah9CIzz23UfMhDqwJ^4p_JjUl ztJcd;f()Ip);`pu+-?HQa#xQJyTt5>1JI4sKo{sY^(@!x|u<@*H8j` zJPdIGi+A;?6OIzTiiW!>x1}_^>$EtLF6g@=$r|FVtuWhOKt9^ zm@oPe(Bfr(LF*U61v>JIR|l0Y9VD5L4RK}%pW38^pKf0^R3!bWlH*1fp@ji11b;Y@ z{#c2bY>kc_#-i|LjMe!BZnTCO@sln_WC(NOoN30jp?|df+Xx|tFIn9wFlA1ONm5EP|4aWHm#YbtGDi)ufutEQ*7vfWneF{8Qqvc>aNeUSusHMe?``L7c2Ta+5v9M2;m<4jyY7;xUN($q7@$*s1L#||3 z&-qMy%C8@LJU}ECf_kd< zL$vVwF4ZFjrszrh4zK>@9T7dF-tV&lIPeZ00~UIdVu_ycBoN8L zkjKF#n{U|{GleX=ZaLw0Z)`jw!Goi4|J|ZZGy!8fUdwT-{4dgxVkBy3ysEut6ShHq z3Zf#d_$Ww}8`g}pfpre5=n1@<4MYo3n%B4=Va{|N z81)`Ou89(Xr4g){uLFK^!3&sn1)le%fs%gCQKE;Z?ceuo$9n zame8PBworvynjCmtE^t@+jCr(G*@#E3x@lwU{E5$YZgV!1WIYty0>)8u~suspqy*G zy&+-7?Oq_mMcBFaCM{j-zJWf>Y)eP*!}InMpi;Ps+r9OhW5xDjpkd;f7+Rhh`^DK2@MLb8TkO=~Ywp9n(EH$K?kD=UU4`U8 zozVeu#hiepu#bRqImv!}8~$MKy+yGQ{C(Pw19tQ*T^H{ece#Z4oq=+m+*Wvyu!fLmYu|l_mvXP&S z4`R2@16zLcF$yLq*)khw>kO zTg@MVyH_O=u2?KL;42KSSWx(1*b|Vs0W*rc@%P!j(eR&1l-~7GP=qcysVCCLZNDVf z9ER=DcdFu~A#2+8Wo6-GD)qht^7p3_%-Yk{}9(dDynAitRK0@o86^SG_g3pph+7GMN zWR6j&;GKwR;c{81;*(Ow{%X)YTx6xRZ0~=L;J!Tn zF+rJPIQ1yh2~Y`Q{q5sVTrQXe3S97c95lCdeQe#Z+>hJ%-i>EunZ5O?<7M&#C&S~f zFr&w4qqnC8em~HJU1`ZqDK&}tG- zm#wyq)v>ASZZxyk&mGr;KAIE0u}{h$PnYR4-woTk@jJCDn8~q3(svH z+N(+xupzx z@Qax)`wAl|Z_!usHqL*-o#@fB%k>UQ@HFgIDgHh9*M0@VdXAU(MybUH$?|2F?5d89 z=dof&r`hF;V4z@d6aq6wLJ`f~dGV5FS5SpY0^DpsZ{~THl(Ql7M*9o4W|aYnp6p;# z)|n$;GY@`<}-P6hr2_7~uDEmmyCefL?Em2_q1Bp6N`y@w`vEi+sG1ClsUlD{d`&!N@OF z!fRP|^dI=kB-pnSh>aH%eK`7- z>vwzh#jnc+>HV#n4_CkhYI*MExcj`u=SURWVVq*j_K&uf1dVBaqQyyS>C0&~N{#gl zmEgk(IV{d6VXk5=+TgHvCzOrn5&gHzKc^j6S1;HHin$|yxqb_+IpYv;*>95o`9~LJ zf}uUbuKkuD51jhVg?38Jx`I^r6As=lp~@E=cjGqRLS)P&)tK!lNc?N#L(jWKbPTxH zjG_z`ESj((0oEz+i^E%g$ITp{HsGc83z*2Q04Q#5P8k@^U2TuCAeh zhAhRFDod-s<^ngiy=@vTkjm*d9$qR>*dF(`1ddAp#NhX))`~$h1-^9qKFl#ygH{{~ z7Yw|0rY(z81zfm)3nQbf1#m39UEy~*k5XpdO{9gO5KM4r8TEsyv&UFm3HiN0MUO;&Itf@$-LjUk$i+_vXG>w62#zT;o#QGSP8H@(o0 zuYx~Ld?*6aeBkHzT4{VaSuW>3$|SjLj0kp;TpL`qWh6h|{gNhNFWJ`Z(3$)pF)sZZ zNujSy)*%FlYu!(`RhC7I5KravWDE@rJyJ|Qr2N_YRm;$uQkFJRmH&2D4MO`C^Xc$4 zR(Y@q`R;gp3!eKItF9$WUfmNxc=$ zpJpAZw$~V9UQTbo5%CAg16wb}3(mc{!Cp_NF_|vIsDBB5(i^HxjLbx(aWk`>8nn@k zHeU_}8h-!VTmQIWTfSr&39O4Dt@x25^Q`cF_g639M|4@*4?)7|YQF{V4cvL94Bjjy z5v9)s ze0=->hqb2+S|MuZpFqvdL4z-EjIR7}V5GUw9F~sfz>LAyCljtvCx&-o^Daoxxy)O& z&P3oyIj+~5m6z*{yOQCdzvxU;?z!kG8~6bl1xZ0fy=+;yAS925DH{-;7pOudD^Fl?k z)=0y{+3q)=>DmAuYm<&2A>yM$4t#P2{g-9^c}>T7NP_K9L0(u}nQ`dRz)?5vv>a{P z#Z&vkex(T_jz-aj@JZnvC&?53e#F7uS%T@tG@?fkB@&2=nlCKiHF9|B#v|%!B8!9e zl#-z_^w0;Na6zOv$3_|waVmA>8Lo${cy_E z^~J%IOdy0uAYEyKpx?g5O=t+Ae{`vN3F!)lCnoj=QIdB?h!#!hmp_c+aTWaV>Wl#G zm_P`IkbVI~vx1x4lw5R&6Y-GsW2Y2z7##NKd~K^7qtwX`rX zudC~KM@NUEeQ`wvV)a6Mf760P`Bv5*Ho!zOinL*W+Zw+x8k_PRLKEHk@MXnT%`YxO z`25q061LI?zekrLAW8O_8iYY5hmarw$_gdFU5&b8%Zl*f$wCfIJeqHF=kc?rq;z!f zAR=O-toL4LLI|fZdO{~GbrA3eyaAE3%TXk}&9<8A<1z@~6^r$1S()|E~?+1J2k(cRcemh1+`1M^YE3(Sa^ z#t-(`7yCD>3MVjCOVk%^JQ+S<56xfE989w_;lg0eD% z>?zRhNJ42@8JUm}iIx=GIdrv*y*9L$sw|RV`gax#chUXSBAjybs=T3$bO}^XE3LYR8*uXWpq>);mem=dp>+C zZ+?2lN=rYk)E&|AuK(sL9LW7)LJH+-s0~;k)`;q_{4y2rCr1QQZZMIAxI$$ZjCxLv z`fguhHS+$eSFEJ6Jio3EA~RWpP?8tVFzQ@OR!BTcJP`qyYQ>6$9eF?9&F7+Vm4!`A zNC74klD}NC_UU~U6&0g4c&&?$wzm&|)e0K9HCeIa)&_?!#8NyNSTSq3y*~I}<~kTu zvP>NMeEReWa&rz8e27N7IuT9u1fXs~`rnK3vR@19=sFX_Th<6S%r*0LLHho*++}|7 zw9=jQOrP*z!^6W9ff%SSQe+wC&QFX2BP)xmtUA5V$)IM^I1?gG8@e%b=ZjA>eASS) z(QKgL+|)dAiwIde7Y&cU%Q-OQSXDVcD0n(;Oc|P0@MO%{c5gl_odV5$c)L|dPk>1$f)@UvqGM*_K z8I}GlLPI@%rBUehB3Q@vf_YCTt;^6iI!EB7a&v4XYGQaDE-%|#hGn$<5vd}89M=F{ z`uiJF|7JZUT`gi1M0*39vdig+q1|Nn$zrik(2<4>V98lL=e|_q%!bqpM@jigGi)0$ z)nhVuFa~FiGb6MjWujs@eQB*(u^v)K{!mwkC)i+=HziS13s6X+T6f~P<+w#8qX3q^iL)R^|45PV{#-uit1A|}0W72+*Q88{-O1y}E;6A?$KC=zQpy0I0 zSd2RBO4^eYIa2Q&y-BM4q`?O?u|GdN*09g0m3ohV%_dmkD+zGU=DaOFD8px{i=fR=5o z!pyPx1C+829AZrD;q2TtxdcyajI}OzEC!LgY#uJSUwQ^IBxazA^YfO_L2Htu(-igl zuO-9KLlMjzUR|c#m24N*r-O~V_DMz7g{pGv?f~(8gSD+&U5Jo+!}dMZ6Z_+doj?{G z<6R%eABSx%uGPtrdW3LHAZg$qTxZY~Q6irYOrgA4RjZJpPjNSZ36Pi?cvK z_(D1@TUa3}`fpHaVu118G{-d=m9Ikoc%=rB+UNTVhzHcrz?z$zn>Z$bAhjrCthMqO zW9-Y}3Yf{}XX}db3-QbHq)#6U)n!N73#=1RJC$WD(16)ad|KVtzSs^rk+k(DU%)%K z01W)iV3~D6{TYs3n!WHh#8nH{*kcgTmSL=eqIb$54Xkc7GN zf*H@`$N=|${)6dp$mN7;Zp4r)V>|Dlt*GgNZ50MqE3UKm#WE+ruC;fiEb?IP2NNNK^Bx(IlPis9=L|3Zg67+A}ci*v`d!D^wF6ckRTzF(u#q-_F~ z90}A)iipQ{xZrL*BS{B4_$ZltK)y;22Ou{*wjMQ$$Y%rQUd%e>WmTS409)5qGKM&8 zKD~B_8lppa|LKPwC#pI`hHhgzzu1c|4pCM}P!A?f&O@s4;JjW|T@KA(j7LYrGo{-S z$i=hg;xbxPA-WiJ5pi3vOjdsD>pYvH?ZV*PudKARaI|d^89!JXq6`*25D6%NzM2Fm z^&|-gCXhH7NQ6N6U=aW-x8-QWi}xhcC9WzdtvK&t!FwpG>A6~IB>BH-=nrmq+wpoT z;Nv+jJT66^J9`AM(@^4(k@A{)K0^R_@f2laX%cu+am(FjSFi1Xm9*#H*N*0+8Dt~% zNHzqozXKcjh2J%9oP7PyK86mUiH6_A|GTjc^w`v@7~|gKoTKyo&u&jEgJ7=+z;5`z zs>9zD8lDbEe1nkr2 z9qFe6jvWAdi1MDQA*f`h7KGOZ^ecPR3vWq$XYX`!&Gb9JW&(dcuV=%xL1ZwxWN2w8 zYBwJd)NL&4Ur7=!P+~flENd!?4U^(F)ryg7Ce78h=EbEiOU^r%7ST3k8A^#M z*ppKu87O4g^tcnTc49Z#qN={KVD9ejZr;i=R2|~wnK62F*{J_hB1^WsS9Lb+jAWpdoWx?$hUDmh*nki(O2# zDwG7B)WIR(7!5v2PFEM;M40#%&l?wupk%cnuA0c7|Mdx{zSE9QC-jvW-^Sa1-Qq)9 zK%IOFgF7S4^QRI=CwN?h`V!RQiufe+#>4=P$s9Y05vPpNGD(+ufAxo}KYMe#mOe|4 zZY;e{Oh^=%cG{hZ6J3s110+M&+pk>C!>!%Bk6LeI(K}2%1jlMcjpOCyKC$Y4dXx~N z=p@-pl6bu3Cz}4#lVb^xz39J5rx1e#@tIORHMEtbpUD%bR&p!ye!dL`5NfeFZ+~BZ zb%Lf02IM66jUuYdtExc>%UP_*P ziekS}^`E1Us8%ei%GDIXcbAviBTfsc#qDv?ZWscEHYM5_@u+5Voy5@Q6E(LlpKz6b z#huN}Qx=`@CD7J_s9z2(pe7&ZFCmBns`bALGt=gnaf0y~>a~%i_h$h;g0Yz_LQ)@| ziQIbRfjMTU8q;a<7!w*q_SoM)SrG|Aq}^Un)LCAp4HNbA^4aY0pIRImI#g&sk%#3# zpSI+DC8rCc<$?NCVc410*ZVqhj~yJFq`Kd;`L;yE&e#fuMg2C9uiI{giGZZr|4Uvt zmm`N=m4<1Ww3Sm@l4#ZUAMNHQ4FFAL@4x&E^m`O-OCa<4N;LK}at#9o)~y2V=Z+0} zOjzb2d8PZ!tG1vlAA{=^L;6a|uDw(Jyj|b38t?5X` zKU?$lojbJ0NP-3vbcW|rjH0cF-HZH7pT&~?^O9;blbL>yyOH|jq%3rd#a~sUFa7C~ z26svZ#=w$^-sq2BIqkVG%mm)Z2RIJ`AHBfeR-MS@w5kpon>Y5)fnCA_&JXA0z^j*x zY`IFj%MXCbY`Fi5gHAZik+3o^rsN)`M&Gwa*Yx4yL=_ZbT6Edo8>Ms}M+jPaA`ybc zsJ>rZ`ZCps(9QeZaPMhw94Xr9T5IjJILIQf|Fa5QEe>s;LkLN?Gu=VA3yenZvKzHk zb;5;AcokZ;9^d(RLhJRBL^R`w`EC4Q2gf-P>ou$~7UFIW49Zu!dQW7yKXKQ)+@*LX z3J_-&g6f-9h*@3zoQm=84R7S|UN&V}Rp@H95a+t$nfWx)&w?3}i5ScO_7Sozt~v65 zCVI!X%i@d*hPBwCOOxq2knvQVkqbU<$=X2vPvb3~o;qr5V1T#rw4n5Goq7B)bOG~h zS2R^e4=LGpS95j6nSkIxVac8bDM))9h>XLzH|1EnNCXm98!2b~sO=YL!S{K6r1MbK zf|rO!?-P|?AMpIl_T>S0V<2}zNrerRLd>e29B6ag!^MqE>+~bRkWMOH^0;)K-2aRd z#|ew-Y#(s*x4QLvH(QHaH(O0~m#dgkavZohL(dII?%)+D#Q!W*giIoA#ypO~)I|f4 zCAOPfJyj3Ghe301=A?Brv?i_uymBcD9-|trYfqMi{oZe(>kivU8Pp5(N`+zKPkYIu z7xeZ=`}F9Jsl*$ZOUZL27~MJKyp}loQ4SItLyFE1Y$gQ0yiM{j>B}jU2tou`{)@XX zU6awhFr`(cbVNL0`Bpv$Yw-CWeqIw7cSs%|fn{;4#O zx2zO~0Y4VL5+VnydNCv@5A-r4oz#eZ-7KtS37O`6iZDEb3~;pC z7h@p>AA{_OeYvQ*w0?$6aZVpGX--WaUp9FmJE&X(s>C2wSab_4UO<$w7%3G;lXFK$M;xc`=Zp()?^eKs2|`2SJ&mO*(f zQP&^@4GySqDIKe=z!H}hlu%+yTP z+$ySWNS^bY)2Dm)-fOS5dZUc^;mdyIJseKvH6a0`4~6H8N`u$^6A{GXmKC=n!sANe z{7r~5p*WYm2m#;q2A8$SuKMhW&!$W2J?r4b_Wk?e}a0`Pz zvQ3}qXr@=w-Jh?tl@;5^ek~!A#D1f9BS}yUzL&gD$IY>+&p&nkeBeHt$awCWLRuh+ zTGH-mxkam~$d6InpMkF0NWh_~v@;p7es?xt{cPgpiV5}Xb#(lGM%v?Si~S{+y2C*s zx5_yBMn#`~G3|lFJiGnbAJc1eB*~VMU=CG~bD`ypFK+!L?IGGX{Gkh@Y49VYJNpLu zdaOA>Jak0CNGl!P_TFav#bASa9H$EsjB`HuEsqklp#y_*l{0f7z+b)5$W>a z5sj{1S77W@Umc)6t=M0mED~SXJ$~m) z^U>A69naCwYG%q8<9?q`L!PVJT4M%Rs#|ND2?VcXPzcu!-JhkO1H~dg`+h$EP;2WI zESroVPOC5}(hQ%&v4xcdpnP?SEY%wp+&M?D3(7nnbk%J+-qqz>FB9UID4XS1ANGoM zPbsH9*l=7K_URwEIK6RZR;{;!yMHxQ=<$={{gENIO(}Vk)tl{XSELHtApsK00zHR> zAzCbxjW_JZSE~=Vy|E{k%PHNcf+&;9-bw7CK1E61J`4P1B4gaF#IH{Z?}k@ZkUfLbP3I-p%GZic*0E2aoBxx zf||A_N_jSPr1L%o6i%ZiP#=w*biHbd7QM=-7KRB!?LE73OcofN8U2Ceyy)e9m>Wbp ze8&DfHKma1MiTpQh+s3Jmg@LB3FYZTP>x%J-EN0l^Xkd`ViJaDV@3S*w$+P3q9A^v zWUnF13>k-MBi*_}lva`g!{}(C84DY`h+iu|1ra_-_tR$5IM-*n)BlKK9Wz&z^;;>& zk8vH$pI8@*#lq_{1Pzg{i5}_C9tDku-OD*a8J(D%e0JJL%0g?aFX4%TZ~j*D1v^oLvK=6cSBiM_CJvR&2B zUuY*}o=>M+_=WU1XQiUoPUQ=x|3`OE@Tt(%8BAAxE&t?2+zWTBkj54Q)EjE5suQc$ z@&CkwJ1Rm;XK)CDZd_xTF4UNjQU!JEx#&?3}p|1z5Y?z!>BO3d^; zJzc-gS&oU&Gh0Xd<+KYmbv=i|)7_~;HcNWcmQe85ecH-zTXXl%h;xNS6_L-r)yeVs zHW=h-!F#+{I?{2quC&a4?M#c(zYA4Akds0Pdw`u+#OC3)`PRF}7BANO96NOLReY#Y z{-m$V-!bD@C3$z%mP9s1BzP1<9W(5J%hJiLOruA*lR6nOuh|-V5_f$(- zl;j|)w0vnbx$1T^_AudFACNRi#o%(4&X0vMMpp;Rlus@bMj@GEJnu&m@Sr8}rdn4t zW4w*ZH@+^cYlSB#*x12S`&NdgrjKcM_quOIjmqGyFuZ?4yPpts;l1G%{J*S(G~KeC z_jvPdlgFKN1)=1@ozQ6lacC&OO>PLHYoh)S8|Lv3qmvYRB_t zeV^Ud>Wl_!le*&s9K!nL#i-I0e*#cm9O;>Wja1CVzXav!VK*W3`porD=pLjxkw~X8 zWwWz>WAJ|ClG?c0`CtU!z zR=9pI8;TIk<7c%eS6+Jh8ENwn9I*>eZR$s;uq=+G;Y>27Ouc~_sm--HRQ-3P-S=9- z>48{i8H1Vjz6iofEeY)!g-$Uj0Fnd)I>V}5R;E9eSwU@_@@}>2G6hVlSTg;h2i_h^%{jOa0$v{EQ=t3mUMefLHpX>wV<5 z`g3gWeDe88b%&A3lVRE`9TzYC$uZMzzleygx$oN(Sp?&y-xBNX<2~8IN7}MWP`IXT zH*fs(f6A9GcTL#=2~3ZYB?;CzEV=gGZFr(uf!PMtzq;iDFWL=L*z?lN?r}#{Oo;-b z9tdw!3iux_^G`MfBF%?)qc>w8Y^=-vsdqje%jpgM&xZx&Xtz>)1{~iR1W!-c06@we z^csX&|GTp6-PI+cpW%`+MzWK)Y=toQMp=&SZ5$ zlH-G&Ntg9=L4HMm#!^mS;G6x)EDln>;V(ss5CEqScW|R7&HS|gv@ss^6WyI8&}uAo zI60>>noqO+ShrR%wW?j;kV~T!-jyRD@-g|{4jJ661ffl2DUiC!Qa&zgvBg5BhY)G^ z+4%}9x6{hX?rxT}Sc}Pp3^_cS$z<}_34B+*ZKC>YjCfB(E=q4Nj=^v|rTo7O1j%V7 zDE*h2?<+D8^y)0%3%7H5EFZDrWx-+!PJDU#+H84*_US&vkIk}QVlbJ}Y@@NVhx*Y* z;$6P#2VzoAh;x=FYe-kg`nJO)Y03(F8(=x_tcIcy!gMyi6Gry0BnDXmcvIQ3D%25x zbWc-=7$WwMZ4NM^Cb{rzs=kDQXas|v#y&7p0JxN|v6mDOY=jG1ZH4@J`8Zk~zHKP4 zX(iB9GgUe}I$Y6$obQT3DuOtEC_@~PMVM$*<#GCP;3gvR(|R=bL>4S*kDW5^Fg{D# zv+uPK=y9Uw6P65;UJr`ASUGH5E^283a~Qo%#MqepEtidqI~$mehICQLSGQb#!cSaC zFrOeiZLqe0dgA2P+hS1wCDc?);A+;msUqX3AcAPvk>Cjks|@GeqGk#kGn z6&6{poytf_h97-YSYiS2-Va{KgPF-JEFeCH#wwusvcs8Gj(|!a17v8NoSYFeK*f>4 z9Si!EPQUQXSw8k4dJE+wQboC0mcN7#D%1OsT%7G0xwp4R*v<@u%qAu#1^gutl2aN1 z=Ngo+Ur&;W=L^UadJQ+&igjt`71tG@dj-63LGqNlNC#sSCj3C!@px#@`gto7yAbR0 z@^ZoJxDE7Nfh>(xk$qA2&0^v@58!WLqQJAFd>zR>FGx^|H+&z?agMKFA-IB&$-XIp zGG$FSBT0PO+xj8#ksl`{U=9^U(LFMFRuIU_cn+$%J+{)!HEYdAQ1Jx2S-_02nQveO z{SHA9Czf=ZwVsGf$6r8`kd5v$SCt99;Jx#X$K>QQ(9ne^vY;gB`uU-lR{hn?0_#jj zq|joaNdJwDhXB!0^EQ!P`>h!^gXX_IbIaP`9)Cv9U2pE{m{q_;bHZEv!lt3&CBGL} z*H`3BmOXSk-izXmyP63fnyh^Oj+f)&J~f84ZY3e6npjFFEZ)OkAV{C!bm@zi{vsru z_P*zDh3NhLlPSqE{YJc;-{%TFFy(?8ke9a!*&4e#SqTmW8ZPzlOe&zoy01Bb8*V z^U@=E?cNEE-~fJp&(6+%d{&JbDY)?SudUAzdO5d788n za6&D&NFLPv`wYqoT$beMzH_m(Sq#S%_EbcxVn3_Q-!yI`BaNWX@T)o2h1ukPdVAQi zqe+slfH|cUo%NM7XLDm><6Nb>9&4rnbDvU8Zq=30hBo-kk30=H4Ebb+)rucSR^yqn za+MP17UkpG#_3cr@F*)y>oM!#XP>JcOYA~D#*NqhEJD}0^VX#QcSU{%-Euo2J$qOy z$}&^R;|;T)iE^*{o_d8C8Uyqz$!zEiFY1r@ON75JV`;*2Vmx8QKWVLvPzadOsGH%L zXPj3vM%_E#v1bQ7++T9vIM0gSd+TN<4A9nIAsF@ofi|3YRMY?>tg?Tk;=;Y(JpHHj z%jeft7P)lf+LN}@1XlZRK@IUulRDdhM?uj?(4v1}IDD&w!hkaVB2t753+c2I2JPhG ze2n@9g81C;NF^FtT0r3r0F5-@Ft|TmZVV)p5P@dv&05sM-Ao5Wa0t;qwyB10ZqJ12 z{%q_cq80xUc_hzW(rP$11;D>0!n^)vgxnx}1* z5rSg*Do3bXJfUHFW(KIn4fCl0h*vd^zSf^GRUxXifLyqv9tmZt?(>luHThBQOZmBKkZyL`lmxuED>QJ2nWBJnV3-A)%?mpL&M_>ULy?}ub^UIK`5k%P5D^Dmm$dY zrOGyAM&BzM2#&`9Yw0#HA`!$qU60j}2#hzN=c4?r*PQ_);-sHE_T+BAlHL7CHxwmq z^*(r~%sz%Ee3|Hq{p{iIu993ze4c?)@T_gxT_JW}n53na*Q- z70n}nczbd+Z|^*B+n86c>mhl44Mf!};4{AW^UG|$4>xY+Xm9c>*^;_wjbk@r$SV#K zIES>YO+3FYl~h$#Np87y`a|P}#!c{s0~vVi%zkf;YD&mk9)}er^B+r?pa~C3&LWO1 z5W%U@5ibVzrQD~=VIsbNr-N*|LeCG*w-ez+l(;BPyM-xE8*$Q3CPx>p|8%qP7gGC2!K+e2$ou{=F2&CCo=+kp*Uso z7;68^ zv%I|oJeKc^8ymgEDPfy-9NRfm+p@vcC_Np+CB0q8quWaoH!<1}BizL;>AFflR5N(o(^&A_FaIwm0`h>g zY3)0i3+Sl~92S#dhb`Ns^!P)?Oc$u^B1GfbpC)L;Jq<-pflAviCZbDmfa4kbRH064 z^Rur>Fn#r*OmRc=Wi1@6)A=`TUSi`;mg!(RM5zNMTXu5lShS8Cj1TpRtpk{rs`ax+ z71HWhdX@8kWM&&i0N3~SveHkH0wZpCR|(ixWZDynOObpzDu5cVmd5rwqqUwX0~vb@ z<0Jc(WvWAO{csv91LTIuIvUG}LK zB`n`xloFdEsu(^G)cw-$FPU_HR*Ae$Cgprs6m3ML_+DDt{CG8=#%-Ssiw^oDe`rzg zIlk#EhNJR6ur$~%%884Mw0Gx2BZB}Yt5X4_f-&><9a+uJpao%&b9DZj99PbdW_&&x?hh;;wO+EU$&yKLTv(LsB^jRmhgv@2gS>SjFFw@042je!2RuBj};u0&SBiFeQxdS_G^nx+HZ6ma!sl7 zbbiAu^h9CbUYlzBR^!ai?@<`rw;|cf_uN@uPbKN7mh7sg4O<3ODz%R5QcoAf!l$)4 zkDt%Z&KjgmCypxo?sCfx2vGSBeiOxsE2zw+|A92okX+D@F)aZAM+&6O>K7nPj0qa6JF;~bmH?-22c_nOZt$f*6( z1-HkBfxXj=c%|clO0CCAwYd(8G?CT9s6YAE3MkU(-$= z;EoZBG|%>ylbhwY*c?oHxakw7qNk5KUGHX*TQ6tmpn|pZDEKgxDo~eNmrKSQr40 zHV6wxj%7TBX0catp>f%l{~7Gn?$%^X-LKAjUteQhAk39taq7-qPdWb%rDmjNAOvh` zTuwKIA6*~ZKNuK{rB4|Qc$0X^SSxn;J~kb<-}es;{42^KzjAfuEG#VaemL#JI%E$k znzL&6nx#l9P(7$VOqv3+<-ANp9lGzQn)+nXZzP5lLQ!`52H(*4A8G_L>%KEH@}v8{ zH&91rv!Du;C0}WmwWY+3>#D}i?(lwhe3>epQD*bNmHd=erd=JF=?lYBTH61XFEKI_ zALR$?J2%#O?sD;4Hr!cZ;z`V07h^ceN1w#0w9f=zGLF>9<1NZd%FAuzaPF)1|3ZYWvm#*p1j|r1b3`i9G4)3Yu?V8?khpd}Cj1Tpu83W*J!OhrEo!8XMvm@IsHd~> zrlDt1KPrH~LaZ)MRJB=bNdgW;M)PiRjf;f=Jx}+?%j8mc82LXYwApQDt6Zr6`8*0H zPUBB<+@5r!sVy;=%ELt9v73F#%33T0$@S9k`l$neLkjru03H>*(-j#R$#cEntRh$F zf}g>3_+{nPqY3z|+}w`&DM?Dgg_5o>z6Aa;)4&BxN$~PLupo;&+CU^#mC5_f$LIHX zzajIjtkr4Aj#o^Yh<%;b(#Sxf2?D!oM|3(e8ChNHG>kyHkuQc6xk2x;+^ih!smBirU2V3iAU}@~}eL zl%*~ZGuZ73`KkGyD3Te<=TTzaYO=BpIa{JVq;!7ZbGsQ1^v#m7Sii1oE*}*?yJxK3 zA8&040QUQ#k#091;H63xJbq9c#|B31oHkX&#OM}%g-)2Zi#jaX-~c+~5BvhNtDnyJ zzqc97dA1#L^3(5T?h^)4Dsp^@LU244;XVbl*}P-YoQYwtOIf-Gd-K79h#PMqhM~Ey zh7bxbm~hCz^wC2AfPC<;@Fn#01jmF~QYIANIue>UHcnz@uodb6M_uL#*UhcAZI1~b zg~c?ZRLDFYPOT;eA~0aUxqg0oWufyQystORp$LL94HFZPi~!f)lG0LgjEH`RN`S)4 z(Mpn_lL!mvK*PX)Nl6JC+fD$J8{7gvn<8e%@;l(so@^SIks%Lc91XU`{FVUQ21^K> zf&ixY#@1GRQc``NVn$-JXel7chBFl!A9fP4M2ru78TkMImkx;d*T4H0gZ|H_PRy2YT2G%0vyZLtfMyH;rNu6+ zfXUcO2#)?2uZkVkG8bwQ7lTsu^0loD`=Z=jf57WyYFc>#aTlur|2kaX9PHB&%mKV4 zkm>S1UQBLg)3*o$^xjsx-J2IApzJt$F0Z*4T`;Yu%T@yrh`y*|fM+G^Rj<$;ux(uY z1-`2vYzgw%%=*Ka?*vG%b;l2B%j=cg$t138Oa?F@wTSPi+X&CtQ2B8Vj6jDIOow{7JIuMfN5F;PWu^4U<_Wq;7y51eGt^0~rD(-pxd=pm3fU*MD~i49sr# z4W8+`AX8&pbSQ;++r8tS&^*f(8*rQL+<7Z!hCXQM^{(|sQKq6V#=~NesbD$|(iS_M zbRpE1+Oca}SF~MeCo>x`{dWmy0J5$ByF~UUs{4c5F{YI3TW?6`-y3-4VJL*#Nxz5? zvYRYYTyW@q<-N_nyqX(?I(L{WLfczEqdzoJDF5kZHOw8)8#3%Zi{Q`ApuE5o?KxWF zfAkgB&~=2%@wrO7NJC$YgvIdDw6vrJ#eh#3c&2WarmH#YTVQA8aWO6p?iUQwTs3&V zNA34^O2Us9i{B$G7|{_Odf#Zsuv3qh_n%by`~fI!(_zCr&+SG6FF*(RrvzvTP@TsF zuUXss87 z(iC^OZ|Kz>h8PF2aGlZ1^xP|ow3y$^`*&4&pTFnsC z*ZllI5XN)@AtA_T8l?M8;EFt8ait0Qcn%&nr=_Ja-YLkikWPq#i+qG!#AQ+uauL9E zC>-LG0wy`Wcau4)`ud}wXka9)f>8H)Au|YoFAA`)^(e{7gL0l9ATPZxP9z^K9N{(O z(SC4*hesh`&Ntepr2qSJIq#Zg_A!B4c`Gt)WY`ywxx%1b7fzk+Ar|5!3cWq05Ia%aditjH& z@e>rRAXir70XIegne^jddo$Rxz?H!)0$LhNQ80|$;Nwv?b9E8>l^xkYx~DgaX{3b> z$=twRWAh9;0!FuIoBVoI0M$JDam;2uN&sGCt4j_WxU-M3Wjc*98FnoZVDDma+UU<> zvQDQ05@vxS%OaCyIa;Bo8)M*!SU0%|Yz2wEPoTj_5-i^@T~GK7N-$G6f4?Scuyvj_ z3OlU%BWgVY>gFE6>B*VEhy-gl3!r{-a&mKezkn6!Fl!%3Stop2AfaCnJ3@lz;iTK$ z`Y+_)eT^03GYtr~Om79xkAlnM55%EvDd(PT1g?KnKo_iTdICeFAQPa9{U@v4ydVvB zZ_b=f_j|ry)|)uk1k>#{X!(=MYK+TnHf+au4-)TU@8^nrr#~vvtab}c zE;&f!VX{HIkeTuS`GyJkN-!Dz?;X?hf3*w$|Ky@(h5XQDK9GZ@R9gfgqklk?bgkRG z9C;)Lg3tkoCgyUDjjsFCF2wQRk;V@}bq^4wDAPi!c~e|?V86R7#6YU7ZJl)_0mP7? zVEi*ZUF4D>M~lj{0tML2Eokq+=E?K}P z=-;dOe|&b<|9&Y|e}<=+Ad_kwhGMLHUTu5hgIxWsW_X+8iwKTM?e!MBHOGhIAJ#sr zs&a=X|EM(7+SWi7ykNZ^>lJy^#`!c4P9o|Sp-sAB>{+4+kihR{{s{IA&=RA-kcE9C z2+&lXm>?ruupB_J1m{RW(!dw0+92^FdyGGB?lP>BezR2X%5b_IYJ`pmtG(d0*-n3j z{gPq=wD&=OzN&0TdVEq2YYm4L^ryqRXB(oY@jI3wp!oVJ6ovw1D-@n_wY0J#1E<<( zsmIc{%42s_T9t!bxBFlA3-W2rWXf`w9(~dPiS*_Qc|bS-Mth8MxSsJFd#g9cpkybD zlUd83o_qm`du_4nJg`Bc{u0po?-F%0;uj=Z02=uDGYaVMV{JsVjA}uG?R?vwJ{B4kh(e*Nz*d|31@cQO35^7i z{EVGfejBIhSTnAeoS30T${HGBszB~MLm#6CR`^(=?)viE^e2i&69>JN@O7Xk2atp! z!}_U*=Yu2Y2yVrp)8^INIp#&C!~lMVku(_x2Ny7u!>ot+RtL|r%aw2)7gp?p)2hNu zwccxdc#Q(@wIRZkzYVPHU9@#52~Vk%z#(B0HW_p2;D`Wx(D~1t(iddZTW_z1)Rl3Mj1~%5TVihOWN^!Wo6&`B{-4|&?mr2S{O(n8-Y}iMU^*Q z4jnJ;=tK|}8VZjx+2cq65^K!!50`(M*(I(i0)lriP7QxT#|GUdNhE{FNmtmNS(a1;4gq9F^SHmJi+Jlk+X z1B~YZd_ZY-os2r0UkiZQ0)_o3t<3!v$ZuaDLcN-eL#!{iqFS5(CnW2mKmg?yX0>e% z3^a-7@~bd0@b@2*lD_>E6S1O_*aj7{D%mH6{S6T^eYT0;zx_?MPD4l=6etLaidy)p z33JB6fWaql?;kk{6(CxMSLHoH!r zK`a`a4j2u1wl8>9z1biw$*{0b9?UMdM6VhM2)3P{ZBUewlH%|WHz=#Kv)g*FlcA~q zFU8XKW!LvZ~?LywR892=s zt}I7sHqU_q!+>o6&^F7Lr^#Ntr^!xT_wq2YE=t{rS^p8o?QuXu0qix93q%TZ^sg;iPo#qi(q zX`T*oKV5FHr6xL79wN4WjgA`PVEmQ0cP0tsPE3%6(90}zI%;sbJkUK%Y4BS+1yPdh zwbl1hOdO7vkZBpN7qx7!IH`a&XIYLJAa&NJ(F-pWpowrWi!uwKDVoA626>PL$z#Zb zCq`<#>0{Ogt^jl94ecbo%oh5U?qP?(e#PqhcZ}{{&o+IKI)iK0#p}YvEol6#Dcc&y zNJzFVC3y#(=YY$PAtg-M&*Xln2_>p3}r z)2h09GRiA@$n{8X+cUh6U%|fMUtpjAo)*6BE?)hK3M{>Wk&z_S*^ene7DJ2EVL^!i zd>lx|sq;CzS>_14`7lt`G&E8?h&plyBo)C#v!ErS=&>dTmK5`PqcvsNBN-&x;;&J| zB6_IGhhj(ANxOnAVqr1z0pw6BelF`%C^WlUjWJ2~G3JPx81_oq+O8_-9=sLr6I%Z0AW%aE?J}5#W0%n=> zp`;Ceo-*Q$E5tB@nHf#ws4ZU+%pc6fO*FNVEmEy@az2V|X=;Cwec%^0hk=F>5AzaS z5kS%4KMmeL*w(l+@H=`T1m_D0pJPw*h!rDDxUc$ z^XCu6i*S#j7tPm^JfN`SnS|o_!yz%NX{x5ZUDMW8$h9$n>lV?3q-H5lL^f%yyrO|+ zN)x)}g_~;q`Xqw~KOR9}?#P4?4HX=H)L;v6y&47(R9785!t!?4zAAu_^xvrvB;4F7 z;K|RNoPm%&V$&2*m_UQ-&h|r^a;7PI)A>+i+vjmwR|`; z31Gm%Vx)jNz@m`wD>PJsg%k&}CU=Vx^Gix10FQsYg$ab%2s5z^Zu=teD?=Iya6BjI zaM&t^ay$GcIb$5z8p*J)hN@dh4;7J+~kQvgnSfO%s|ZR z8KL9(b^3zfhiU-xG2-5Ce;Q`sT5po&TV*9R0ct`@inNL-bbWn&ge%4)y+jUmfCOm((a=cXK-Rf-mrxMeURqP@2g(X*X3RxXl!yPLL%{R3I;cchpc8hI=WWB z`k>IAtWia49bS6sz@j9Zfve)c=)y@0v z?p19z$U{Opi5_~^G`4k)^A_fr3-~0yvC#-G!4a)}ju;~uxy_OyXJ4uZM1fW#FaLYw z&!1ve*4C^jK_L0sWhMn0=sT3yLd}~GFk_V{wGEJ2<`3fVGPv~NvT6p zNF0D^0hA5Ww{~2#5JrHSslMGcO>rEE^&5t?81T$9MM0SyFVD0Ju)`h}6ab6Oe$>g} zvRwn{l3tXo9;3KQypd6lo!6_^)OVV+?+>zfPCYQLr*F=0e7JeP_!Cms$P?Yt3ZcCR zA*8vvnS+DFFrCV`!yp|8`6We5kjDoj4P_+!44WhG(&RDgS1gK&fAzD(w{b(s0tX(f zZZ;NK`cSRbQfaj!v_m{fqy@e>=(&f9kfm>Jxn&IC)Nk~G#RMWD4?*(49^@s-ocT~q z&3{G?>*i;`%t;~DpCmF*H~TmmwqdJ~!4*v@pNtMp8sc-I0eN5|m{Hd$b&Cu+DQ7Yq zYANPg!5{Bsk0`PhGI^HjO3J9+mn{L_JT8aPZ<{aIX zP8+70n+C38bM=;yDkq8CVN?kI@!UJ2v$Nq)LRPkQS>hou*;_?EJCEJ>wLB9m^f!>7 zZ=XxfyU4MCl|&Z3mgd#X!n0pio66@(2cpayfGsL#1oT#9I{bVIa+fnu|2qK25Fj@# zNRY&V^Np9NX8*|i9tZi6hOX0V7rs=7|RMUqVRV`gP-UlKIr{SBJ$dbHP=&>eS`%ph1 zD&bX+SZ zLI{=rfCX@IwzyItnBxuj!5DjYGwQy}ZDB$7)gF?Rg->&0lpp5}T+dH4!V>i50Sk$; zG6v9M(vA=UIGG*A2bH#Irt4O%-c~E*ZjSUgv@xd6{|9K{B+>WA1H>ti0zXOUG5Nvp9dunJ3D6KeS|AY5V$@l!jh*l3Dx8% zlN%YL9M^w20+JHgt3la90`}W+VbY~t-n4a|i=m74f&Sd;>Ijs|fPD@G)Pd_EaGc~o z{PB;0YyEOg(5fNLh7z&7#V&}RP6uiG;NT$GtdyqIo6j$igi7l3oh4kz`3P1K5;zb( zk4oWfp^A#19Zv^{I@Qy2AYcLG4#0?3*3?Yh`3(svb>ILL5H`V<*E2j?LKDme6+0HC zI)01YVDlIB$r2M2L2FwQ1Q-xfn<|F> zJn*3$Yz`43WJ2r3kQ`ZC0~Vv`MeGcM+~MzQlJ>EyBh!K1Ikkc7@oBuLn^-B8ncv}K z?|0Pi=Rfex)Ay8?l~I5!1EfC9*H?}cbtNe*C>~D<_)9b}Lw^<cHvJ$T~V5>jgn6Aj@=7K@!ksrg<~s(r2)+>G|E%K;)_nu10Ro;B0-`k_F4e z#B2pNL;J$qfUgayd`0WCP#!-Up4fN9UgNz4vk~~ z{hMa1KdX&^U7pi7rqS9~1Rkrpk*0J1G&cj^VXGt5TKe~ngampU^R9&dm!@}=&vNbV zhoacIy?YTP`M00EF|^e1JW%2ys)*hB_A7Tp=dE61q`I@) zf%JM4{`@$P(uLzg^PvS<%r93?yE7-dR`S2u2bG(#Y=Qzej$a&T>L%l(8~9==(V&qh z)Iq)9vjh$rPrs+~fJwzm)2kt_4-@9^9}e&^%A%S>GQ`Omp8sCG8~L|Wa*Uc2Lol@j ziPlHkFN9`q&?z ze!(|P{rHCU8KwT$%PJRf!pUDZEF)Lu{WklT)0G3gAdi>OI7>x(v!7914?h$YmsZJ5@@Up6-OR|R^NABOnwbL*nKqfCMLI!w9opL^6leA@)1g{ zBTstbNs5-cv$1~tU^-y`{jS62*sk(C+EID@OJ4`h%*jT+l|rd=l6JDHz|*JTm*Rn7 zj=FmI(31W){>hD|hmESZTFtbJVXC>qN(+-%-?n_0Q+tCjIcZMoGKwOc2o98rKOA-V zWWi!AN=QGWzd6}Uac$B^`$dGUOS5t{)5yXzpUcxXRIP^8KXg*n#?@acU;543sRWsq zhsoql;aAcPuZ0U!NE(r^gCXgoGnRXYTFBplwBzZJ$FgPZv00-4i==AES{~6XYBr`e zhO;yCZAq98oERbJqxJU{ch{AotuqR=u9X&-A}xoKNQA`@OgwCAZQ%tNckB+ z2ESgd{2D>py^2KbsEsVbrQs-V&`PY@ZAumjN}^s?LiD|j70d6e2Xm-FSaG}v<{kDEFY#a8Ma2b4pL*F1fp4Bgj{kbqj|V*8hbPnpge2LU0fV)&3}VID`OE=s zs3e`=ZY_Y|!I=1VS7}l|oJb0UI1_hrZ}Bc^>p)z&xbH8#L!^2e-@L_dXtTBEaAWXi zP5fEkb-2MT`?ji#qu<|`3sl{WqmtgZnjjnb`0ik|jVgVWOGn_H*#>qV3cGg3?~m*L z#@*oq)$NEs(uzK#42$H#NXH3Oc)q<26uIx7q!Ty7jf_c_m5UAz2LK;}6JZMTAX$@{ z6+adAn~y6kbvpBLyPPjQ^6_qJ($Pc7C^^ZAE8TfbBHN_J2mTe(64D1p2g5(UQ*t|f z4Cq1SXZihMUXJTc&?T2b+F` zv=kP9RamvVx(S8uLZ@rD=VAR(PpBz^IXo2p6GIgPq6RBH+|&QcR?F(+Yw>;Ybfk#Sh2ryBU3%pJ%RI5`)PdnN z1A#=?+l=iF&%j`>(|LpW;7Us!i z;k&2&g2RG4CEWSk=)Qca_~DVbQ+Ru+K(>XNv9L_FK}?d^6w9bm8j3zf6D=`m^4fzJDMukRgkjS*I(8Xl&{GNP4e1ghWO`Gqb-JsIKG9e=& zV>zlC{ z9hrt5T3*c~+IRGgX4&)$#s&xy78&2d!@qqrjbfHne2zeC zwxZ9b%=F?TD(kjkyXcC7(^9|rFmNnt?v7m$VnakiNKKT^lDlN2WL&eWvH*>bW1@6{Dln4JCfpU~ST-PT zeZmbxRDa=4BuFCRVh-Nv!F7pC9vN#Mbu#ifK&bx0Mj0v+u_z9cMI z%2j4l9-CbaMx?NxDi+-LuBa#ty&4MfqyzW_EhazDmhGXS$c8@UU#t06VV|AT6BtIm zpc)VPj4mcKPXD=p=rgN7tBmMo*7ZL7%Lk?S^-a6$Yy8dF>t?^hUQ>Tr?#i`SnBanLHH8}@N=yu@WbuRgEY zul=2S`i7t1H_zC8y1f3fDM_VCkQU!AgkqZ$Rvx@%0sLEie*z3t9ZVswX9gHmd%h<* z6@UD9B6l;$N^fs#8sYJoX>%~c@Dh=wJCAj%l4g)z%d*gbcksSAo=h@8f);D%D_kv| zvd1dt#$k#bJE|scn2GRVynO1-q@*{0F5iVVp0hzoqz3lWD_J#Nv;G>KLv@fj z6iCz>PYk=*2Ig*ePViarnW8A^H9Hep)UI%a#p_=!*$en{)R=S|r2zrl#iF zVwfXrkYwXO?;vSwVxiJAXTIHb)5_)PESHP9 z7kMFcdr3D+Z3+!_CxjF8P2^={zQDzK#+w*(Iwy-dZTvWrV02Y7RvhFM&H$rpux&g+ z4J6l>guBITWd;=s&mzX^q@@~l))9R{S>hesyTDC!%fdphpOr(uf8})6!WnZB{P(A= zGb!;}k)~}HvDto5RQQX|{8?Z7`Z+$OKlff1CZF|_5TiZ>=+hg`4JE}{*73DfdU3-| z4O-?-?vlu=wvPrpeuChlkz&61e;2qBRj(FHr#cqpt3Q0X#xdL8Pc~4e_mJ8P+OCn$ zB=hnJTt=gK|K1?}r<65?968l$wVbDnz-69Wqk8A53FW&T&W2W(B|aV9-QyC;Ng4b8 z8rWa{;yCPIOnpz9zNRQ@wjE=8a?piozh1(fDI##AHVX_`9gbF@D0FTldk-hVTMnn6 zP4wHU{hGp0^9;5W=&bW3p=ZCx^k0^T?(oJ}I8N&b`m|>_wMnpONaQI) znncK5J=B7LdmOnUUOjhcRelXSxlyUaC^Jp&-rgE4!{R@^YlU zK0R_}QV|4rk(M0KdbeP-j|d*~Y?A@&g@66lY|es^Q+jZPwB28^a{8!{D#t!C(&bi8 zHE=H83updnS*Oxmoc$K#oGTmr($gnbCjb`gf2x0Yw!cse7&*GeKrC`PdL>^WQZY_&=jVr9G%`w!B9)FluU9j>KB^mjNEK&8g6s5>A6qT; zjr%A>g<#00lgBe)n?*l5UWX5a<1e+CHby={qIcLA4e<|r9#28n7JZSq&9Z!um3o`LmYSo;&(W|;3)yVi|-(s z!GS`^xOUYqZW!?~=65ikJ`-s++3u-bc|CsW4c;!I5~&$_Z}h|diJHq1>Q!KkGU=>5 zECxq?1c+|3`81J3Dlef7<5B(!qaQ@pE|%kMJgEhQ9%39)+q?RQ|AQl-IAlhG02KItWwtFF#^Xz$yh8c6i zxc&k}!@Yh^Rc!F|V^<#BObTXjJ8#N6=jRdlxX;W0n}rmuyL^cG-+_I z=l%YEXZ_AP>-+&{E$ijw)8~1f``P#2*S@a3_nl@__?v1kHKQrn@z<0LKXlD0B2H}G z98N#WCZ5$(%w0B`K3YF(q~cY&gQsa-gY?43lewLfRokQ1BvEl8TIJ=iX{>%3Wo8z2 zL_w?eU%5)R!-rhw4jszwdE!2n?rC1g_S# z^Y5WZh}+$r$BNW`ZGW*kt)#zn*-y$R)}u+a({7lxKmDG_n`kZ3JzW;G7ntH-j#MP< zKhpKuk<9xIO`p| zOsdl)JsPTTw&2-4#$CeM%(hpkG4_q@3)H#p4L*0-6;Oq)M|dEz>*ueQrXSnLs)O30)RffqwO!KP2R7W;;-tOR1 zd&omkJLayyK1=+zG)&h zdHuPUCe;Gp2-8dqoQ>Y#KfJ3uRO;AX9obWitgPg!s*O=x33o~Vz0;d2=UGTnZZ=Xw z6h`q1eD2Hi$qwW1HfW6~CGY-lNPhHwYt~P)Or5aq9zKKjU$c5+yrND&Vf($I7Um%( z9PYRJ<8Fh44CMXZFCZWMTdZNwAuL~rl7)M|PmFWmdG!1n+bvtRG_|yZ zhi!umCt0aaGp>oMFC}>DpC#Qo5Tano-z+r$C$%ooWi9(L*?!-!bIQpauF^x7DjJR% zSEUU*ZlzN8Ok8^O!jLzA^IpxZ!92Cxc-wgOpWm;l&uUzAs!McZxGiw&?oY+3kjk45 zo-`~jr+(?WyE7g=M=ZOT!ufcwdXB2c6v=bGXWN_Hti#HtI7$?ILbgVb8<8HBH}w(Zkozs)M8U z^=^Ad4KhZj68pnD_q&+>(bcQ=oL^W771H-sM^rj4_8`GiS}bS3+Vpq2^M5llE_dri z`h4bWYN2^0N&EOci|tXRp{1M2j!pL68!sL^nK55#D!a_{IGB(8t!v1gcf9MFWLAD9 z!xj@ex8w&&JybWjt!JF0mP>0Fub$WYyr+lZX9a~uoty12yI|R4@zI?ltcvsz0ir9< z!ndAipNQVZ6y!AjZsdA8VzGF(g!dEm^!-MXgG`gqt!ZIapHt_hr2a9gy(hoRAI2(y z7te2g^YiRP)TylNOl+4}_#Pi=Nmrsx@^{xDds9}n)vbecqeYXElXIJ-q@=U#pHgC3 zDx?x^C~TkL>+ps^;)7H57?t zAtyG{HR&IagkNa0YZ>j~H8zebqP34#f7IWE_tDdLZQ-;6kA3Axb1=O~GH>&n2=XSI zF6oNu9seHYYpSV{!otGrq&PG3UlUm2@ZM5^Od*P_&8log(SKC7w6-#~ugM!14vH^# zt1Z>roI1R^6IJDmby6fxcWtSdOU1(4N#rpy1~2VTc^*ZDbwPD&%I&4(fLg^F1%7&njoXaVedS-`zJ+H+R_G4Vi(zO~~-PZMS+4N^@ zXKlFk&0opcTZEipJ?Yxj-pXmTM^C-dpPEbO<+knfp_NIJfk8odQ2s6%x^QT-q94+> ztWbrAhI6RXWO-4xy|Q~jF0Mo0_L6jUa`32S7`dpt^0JD^Hc=r~y>*H~cDwUqlaq7| z3_Qy9^~QqZyp(eFQQ=ejOGTT*RExG$?xy5K4AmjY}o0#kaT(1TBg6^t8W6{%Zd8XLOc3!Q>lx5hEqWPz=X7Ga0E2;@Q zl?AHDr@EitzD9oaTm~guzJb#n&bBHCQnP|kyTH!%oCj7k$Ll$r`P|4)N>ji3z-Mst z;_rm*ei0(cBI>bucH&(!j^>e3QB?BF&m=}_f+sTK?kGNQ;$#Vp-iY*UGrmMkq|2#h z86S?9{H3DUJSw0%!uioLA|++Zk>^*;mfa{-gE+q`4ct`=eZHepWH&X;sfF^p8=Bf#<^YM81#N$+`*T+sR4v>S1C5!}2awKry0wdHpim9i{5` z+$#}FZh1(0Z4;T|!BOMYVW&_1f>f#-y2T@AA3OH6-sh)BPunNguk)*pY#Cn5W2@==U{sVD#cfRYY7fca zPS6vI1jXc(tK>1v5nOX~IlpnVd|5WyJ;j1IfKWR>( z1P5QfV)Wmql7oeQBzy8Xh<6+^`H~%%FL&*Dk{CHYFqc~so*acI`0twpS}*?3wed}F zqUp&*lKJm*pYHtcGO<+u>ncK{g)B*h_$OSmQVhLb^q`UV(LvtXx-R^H%UT z%2(`08-hyA#Br|34wS^3eChG~{&u(NW3$pK8-IEX7;5DUUMG7xBz|RTa`NiYJ8}Xd zB863Pr|gAeKQ(D=Vj{f!{J`^f@7{ergh5kkR#x1b%Z>l+Fw1DS7^AqC$sL@p z6VGAoOQxH|i!-9j%#7}juxdBg2P`KiCx;vy@ukSbSzvR!&|=_~_~nZultsY<2gAp7j z!{Kxg$J0v542jcOQg-BZ_4NzrW4B#fnr#cJ;ZA+P6jR*rml~BW>^tv?#D?L8WCc6Mdvd%AL36iXO{z zr^Qd#u*T-vqAgB+ivYU{rq!FRE`MsaHShVJEy&a zL#g-o<4CCP;!ve;{f{^<%?y%tD{wk|8!UCmDi#nG-5#(sLk1V6o#XncMqw^5|B5Bf z2{+7;5B>AUJ5|z#7mr9@b7}UrV0cJ;nOwi$U+q(0uyreRXDEcD$;x)B zJ5x_zKQud=@5exK61r3FUYZ?Ved*ey&~cT9gK_81xNs_laeNzL@u*ga4BnWwajh5b zR$yjfDYb1T=T`P*eDUJNHfm}O^rS5epD)gVAKj{W3LbQD-|3nNSnD`u)W~01mseI+ zHmdeKQ}^fX5oh>_hW%?+_5N(Cn=68HZX@w1e`rFC=p+h{e4b53_lHf4ddcdOep_f;ay91TKHNJXq<**PW#j=hFZ1 zbIhKsCiDVD;7Ps=>FiH8koW&1f_}*OiH;;e6%`&kJ3Hrh`E=Ik2($ViK1Wm`!mHZK z-RW%zTGLQ)GJfY$?mSo`0J985j9_x;NR(Kbu{`5+cKVv2u02jXBZXiM9opk}tomoX za3r^-5%b*n*Rt`73eJXO$m>m;IMSpLCEoR|H;+pASk}y+1#IKM0Ne`w!s8VWiFv5I`Zz0ex0!vgepN9R{nt_T(SSPE6Q&P%%|WT%1Vi4H@_cUBontiVNGXzlaD4Aw_9lSSmVQ8%eki>>Mxi zeDr@hVEj_w5v^?=-!Vj`1Kp5KoSL}(Hq(#mdWR2dzzyO_649eYgjOadCi>-4Gx2Yu zjj;QPB<=x~rc3oHLfcQ*csHXVY^IDU`{vC^!r>#R8?m;1KOiY0vJGRjg6HvZB^4cS zZ&|#b8h~weEU{tF~V{AZ_%<0-obOibUGUDbfI20)z zX;JQChXP8&osk@p)>>#cwk6mw0%_D-*n2-epRf%*J-yC_^yB|!#(5}EUVe(G+Oxj0I!T@#_1wrQUvBaH zJ6+mI^lu&`Ml!&2rA|%2VU2zMeC<4=^u=LWTE0Wv!q*|Kz{`>li*&KEjmuq5kSZ7^ zmq&w>@FP{q^bWKsLd4i^VkgQ^;XT-^_W_eFphYgu_(q*4+Z_X8AT#oKY2avLHYk0t zP3!i$%hP=V(UJ+uuI5B=cx;oAYrkYUWGrbFTli_s_3+*=Au(I~E(TjTm zZGFx|WxH{(XcK2RVzj9#E8zw4a$_Vvf2zH_fZktw1QWxq6rfX>daRn>%`-%JvTKQq zj*Sh|$!o@Ldy{{3=fa_C&#$j`$ew>s8xs>_-f#HSkw)kQGQ_sN3+S}(-O0l#LR|6afo-&tNk>@F&Yb)CGl}qiYvm6XZ$8R$TXfsL zefzg}1q^TBzJ>B+)DY;WrK1y@b-A6>F#AvfqO;OW%h>dE95tJmyzEMST^)h^VM^RX z-oSNN(UcRXFpE5;@c4adu7j@eSej;ADcl6wxpU8S-OTlRb)s4laZS`DU(J{`>UUqB zE`w>2)sD}fKhx(?fyBin?GrCK`tn%-U2^(efMn3{%R{t_<{CSfTX?{C zd(VB`Au1}0cwV(_TSl+5ti7Et+}#3Fh6!9CO(j6iWuQnRGDL!%W)r*3s;lDiPwNFc zf5a}Hu$;Z8ifm^FOUKFIJTTc4h)#86My!psL2GjUOEWQX9FpURy`0LvQtT2IU;b2c zI&i99QO4dcFwC4M5RQVv4t$7+51$kZfH+#x_n(C=H`_L$7u*j*p2VX^j%Zf8erj#Rj)?q*izdg8mAIH83(V@)v2trC3&6XpUwQB$2QU zbn%6ZTwG#_%?dblx>16w10iDtUC@j>c6@i2umL*6kXn+qF_B857QcP+k72pjgX8xP zqZgM}?BwHUBzQTvUq3@H9}WlF{b#$kOmV{`+5iO+?WhuTh_YH^*LKeFiHU1zX(D0i zn;UC+@DYRM=Q)tDiT^MwAF1T4*9WFS*=jPv@T2}%blKBmQFU!??^cb%QxI_iejR6) zvIPD8(+p^sA?JF=yd5cGTPe{};oePP-)C;4ym`7wl%#bG7A2xKUL^wC0;UbdITUte z?mtVv&!&M^KZV$-forpsaA1s+Wfo8L0N-$R0_o|cM8LoDVXt`mCdB4O4|FQ%CU6}n z0s4%Hii)d|h1(!r%4qPv1o#`f^_7J*jB<0X6cQGW-N6$tO$16HqNrQ9I5-`U%>u#s zPTn}>zA&!Mt>C!@!-Su&EKJZmOJ2v29;rL8@sVT73tBl>Dq?SocNLmGVBXwZbIVW( zU_W>69N_fcieIVeOxxQz0ZXDV_oT_bG@8cV!h)+|^Y3}@pCdeY1=`4G7SJ2=8DMBN zc3jvnLnJIZ>CoS8f;#c;X32tGGS8nsFY%c^*{cZ%G&(gL@I-_fZ#D#HAP{tew6rwg z)V&pXWVsSJ8xEu!C|oi#eUM@>et-PVJSKH+yx* zRPyGYV_B~j1CdnfY*B%~ZpXm2kHdD-SSXB_VBv_g3Ep5s2=(ebH~am247_&Cvmk70 zdoA_Z1fu}kAFyZ4iGDshI+~+C2Z)5cA%-U6h2wKH&wn<$dGDSOa>bqT(!RdF{BYld z!^>^u)C4js^T&)6$cMQa%(?#|8?fju&M!-ooLEEzJ#v@d*iRg0wKR*7eoj&}7El`D|=#0x{OiK4Ajc zQ0uVnsYzGB<*z;2Nw~D2q9WJRvpqm$&)%7{yYLi@kSs%BOkBNhY@Rt^;|whc&TMXO zHfsp1?hH%M$Pj;j?;-Y_$KOBaNNQ$goJbfVqocP))yM)+V5AEq+=HAB$U8DyJYZEq z!$%QCTLB*0g2+A;o-i_EB#sP@a=vikLW5J5{BO+33YP|rXK_z7EbcJYo@}rznf-F^ zT^SZVQpLz72AI)f`)l<-JOMbaJz>4kL=Y@;a_oRx+Q5IHnmw(Rv zY8V+AAt(aUhw-lpUSF%~ijf;;1_icp6^EDG8y#bs<@v}Z`Ig^O~Sn z-~PD_oV_g$3W$U!QAfNYGTB?piwg_t?(QYN^gbK0F2LX82NL;IM<#PGsH&>UUKnIV zASpcYh#dfovgv)6Lhz!d88+<+2PMk^U1e2EuEQpd!Ocgu}unnbl}f!zDq z`0tR#Gv`pCtV#LzfSg)_<#^YA^x5^RU+<7E*vOvxy^ZWHhOJd!`MlS(kl%l6-&OOW z*}+oHSC6=5os(NeaW{Lf6amv`X+8(kkxDnPjsFa{y6-0kE9;izjkjhnHc8Ocf{%uIee+>*38G!U0<;pDRges!$z--aZ~(g=j3m`7us zjGTOzXHHGvYT34v8X6jmY-~5COYw(Ru0(=cTU*xw-yXN&UxRss4j6m1>qS&O?2Di) zagaAXjpb2c7T`d-cFtE$PrJ1H9yT?pnHCz6g*@p^OHKXq=Ze!)bJ=9xt&rZiX>4X6 zn0S#aTRxmVRb<6fKgT9!+PS}32MARwZwaoSK0v)nF?;L%eIYjGE^KfL*;9rCOFoT3 zYB!Kb!ZVPU_!J((0F`Rqv!Kj~@QQaJ>14BxBqNtMJ~6R-Ki&B_b_uPZI?S1@Jh=5$ zXD4H^fV}+R6LYrRSA)pO&Q9y`-IsZ)vr7pZ<;@!-9A?iMPD#hy@-&K`=Q$h*BL~MG zf65}O>M-mkd!Qovgt?U!Us8p23ep0*xA*j`4;2h6wQzd*k&%+mDjMsjNP(J0KNTH- z2a#54C6lYoG!?q^=3Z@?2;Nvc<+1R4e!lbRM?~7SDLDg97M9;eKV$k`*aVg1rEi(< zoaqTqN=j<^xzD<8TY?Tnw*rPBuPO)Fays~8_DkDUS7f~3`W~J73FsSG$2np`2XH1b(nx>(SxYh+}UbMe`& z`n(0u9r9jZX^CV3h<_Zs5|N`yQ|HKVCD`|R;e%OTi1YA+u9&&}51#G9uzGfB_Mo@(t3%(9UKH5)9e~ zNTMbXC_MRWLj`QFFGdKgd6BuV-k-=&`tt13eUKF^U#=f(;%ouHV(a?D&`VlFHx_$O1dYck{-swl zAS>OY&kUM3v2w(p1_@TK?h@8%5P1TYAp%tJcxeZ(CX#L*W_?nH3RNFv>ClCC2G#ZC zv*|PYMHTLlkp{m8aNM&NDa>t{8&3N5vBszCNsYQO>#d))kbnBxrof`N<8Tpo`1@;= z1Bb?pm3C$xFn#Ux)a=&7eixcQn?p%UVBc&mNM&UI7Sd-1uKqY|(0wQwf|4I4^HOut z)0vyqrF`|qtoPp>8eK9em9(xi6X_5yl;P0(vPbN?5ZaN+uy?{>ylDklL6Te6D64C2 zhCjYc&i*#gf+`FqrYg@#YS+;Qy1ZVI$eY;o+aX{B`(D}jJL$Wz)Dk#%^N!b?Y%*!y zNa4sb8f(uf1>#8@iwa6tDmgln201 zSWT-UWq?keaiAQHh45N?MeRlQ1f7YJCF#bVv;S6K#|1T|f4IPMcIMs3hcwGH;TvaP zoUq+2OpQ^qhfqKas7Dt4A1_yIqdJ;2`~JyJ;Mi@MhEcVbe=4p^$jfs=K8r%I1Kq&8 z`f?L6@iQVYJ59bShN5HhVh+_dlt++}k%4x&-{R1xvfC6?zB=B+NB@!BnzTpXt@|bG zYi+JH$@M*6O2l~OJvK?DHU?&;_S&Qh$()U6qHAiecbwwzZciILW0L8505Go7+QhEl zfKWv06*%=>dELmyKKak!zio^C0|NtR9P}Uc=Njkf5J!bb1^xBTQ1GH$TmDIKc}T#7 z{m)+p-znL!qA_#PFqe_V!H{KqUeiZ}UN~ly^3Bop- z_Dg+zMI_Hxr%fq{oUQTSrX}r%$>pUId}z1-eE(^-W7&r!mUcVCalhjY0iO{)PzIJp z*V^@zqdEJv`oCMd6LLk;fUAkn>~9bj9;Ar@e1O7-RFDg%cI)U z5nD>5{~`5u&2}5s4P#6>{lubNi((eB*>kVM8zkASiw}X^{N$|RW2`Y3B}p|Ad7}gD zcd#*76%vJ*3||q5EhwI(5J&(qkplo#KuDizzW%qg1XpHklc^d!V)yr$#{eB#vYW62 zkh~`)F5PqXMP9dymLwJ?*&_i1~D_JIg&MUn(cvxP3cz?o;gqPX4)6 zU3y0eTni!fkShFE0GMdl#Tf&1tAw{U_+iy!^>^w&%*-G+DaUUxj7WWR|}e9kmIp{KcY&Y)3aRDqcqr>T2@OspCqaWR@QumxMX5F~#6` zqK9TmLS0(?3vg|U;x}gz5gVTFt-~<(T{K2Z;><^H%QDfmf(PK)W0=voXogf%CXrVq z7Tz#MT%F-Oh-&2a8D98Z^8)`Vutm4b3Hnf|VGt;!S}sLl%B;kej0pY^roRq)7nanc z!9F+YJRY>#S_XhM$QdI<MZ^8@gUX<>X$4 ziQ!>9R+JoQiO2{;^Z;vSWui+kpojeHv4_rH7e1=Ro)4kstG~oC1A|s@FePrIholc% zvwtb)ZwOrdRcKNEaAggOl9$Q|f@=w279o_OqCxW6D}(OB?A_gdi8IkdN3#!o`n))F zulqKy3t8Vy8iw(9}>J! zO2#yXR_Dp|S0U2EDYfq1y^X=a*B*!+M6Yx1Cug}kOe`!W&WrUy4>vKC(}aKFjig43 z6sF`c-N=G_hBs)1C;jqE8WL^?GQp&Xh%F?BOYIeBr8rxuPR}-9I&jJdI+Xonop{#@ zlroyh@~u=k}Fc}nplwNSV%XDB~iSmSYGM(+lkPzL!Q_j3S60g9^_T_ zz^1Vw%{ukkwQCLxwEbA>1vJHzO6nUyva_i+E{_E4YPz%kY+_5_Zh}jN5)i#o=}&tC zXJKtSeB8uj;k~7sf=V~+&WlF{+-I7yUm5524`pZKG?yd;h*}cRJ=$(Le=%&saT(ch z-0D}zlE8c?ir!u30KN0#`W}js1HK5DUm4>IVS8JeF1-%M2?$n+<8EL=F7OWA(`SjI zoB|=JW$OV9+57#*ClGGE$VGbv-b1)jUj8R4F{32Kz^j~=_f$VcD4s`&J>*G3DN@|1 zjkp=8r#5Lymy6`vfwAMfCG-sp;>~sUfbWhCR7*Zk4l7^K zA12JZz|>mXd%|N8O*>TQ&DF-NT>w3`9D^OqnEBKa%TPpcmsG(+V8zk~!Gun~cy z34)%UM{x{DxE;BMG)^oj_28c3#`VOW-B^VZ1B(GK8vkvf_q#V_fn!BUcTnX~;rb~S zo1n#|JQuFncRXg#n`*DK$}n>Rf;Fs+(_|=JHWdFh{h_k>-N%uu2ti{Qs-cGOg~S^e zsC--QV(jG+KPvdMHh5XAZ4`K;=(rY~=JR8I#PrcgI>N!-K5(92pBY>Zq0ri*K&TLL z0(nz3v46ld(%<=5_^x%PXZD`{bx_ZgAjtUmlG4&R>(=IKA(8KZTZ!s9v_=be##k>= zq_aEA|A#0+$47&!V$;E$C|;V02A>QLfo27yYAGCm2UB8VB6}z;Oz;#Tw_~Pj?w&Ph z_=GM3DGa5fTNxM_P(Ovp3Vtoh`YnVQ7}5K44&DUt1Fpvq$57}F0>Z+SP_#Ai;Eded zgseOPQo0Rq3bHRCKAwTce+s<^gtO{I}!CZ=+ zn7hxn>n_w~^TdrDYRe>Em3c&F4P#aa_T+HZ?T8$`chxBXIxpaqEl3WL-h#?Oy66EB2-;u!e*8Ln|GLvZijE;~s{5^+>wiPw}N zQK0~5OmN&p5e4ugAml(k~?Icab!G7@Bd3eH%53atNWH*f)!t0s;cQ zU=N82x>D`#)9)qz%nY$?Zf=g(7B*BMPRhr7uB@)w!RD{l$mwNTpMj$F{1$cxIGc)P z4I`suO-XNzztVi4H3Rq|cVTc$CimU+;$TCN65MnW6dXuU>yQ>#KX>u2D52l;kJd>g5LydxvOaAf5iR=Jm47^-?&XQ#>#Mu1yOL$WE5)8XO1w zLR2|s8aol1k+)+WfHCT*+Te;IV4<$&D&B64&eM$pk}v}#=UVRW?jG51HS!=30t57R z6*(~@^C)Q1YXuA<)Isd&FzHD63*v@%#a-XcyMkfvceA8bc5)) zxUSOumEv85`~>3sDma^%qYiNFB0uyOIZ=QGpFy~-(CIh$X9$s)c|wC!K#7u`J8dep z78`Lq{cKh<2u>|?&$WHz6^89tjmo9!&Mt^u+INY%zCX6T@Vd;`KCS(#cj@k@-CbtMwFj`u&Wgx!1B-I-SP_yw+j?k{2d;yxEKfHvWJ*fO=%q( z8VbbG0SnQ#kYAKXR!J1;U}3hJ--KFu+IkEE6#P>Hek3;D;)jAs7b_D}C_M8RrXJ@! zD@K8;bbG68Ea6h|(}vRr^i$p-+~T|>y3*28zwTlN8k!a?+ydme=PfOQy7l?}F8_(* zJy|OI_HQAt5Z#GN$ELl-b>l|I3MYTT%us<44nkc(S^494X<4qLIZk3_jVI5lW(9q{ zSEu-;@2^Vb+9m+Yw~>0K|Eg*u#k)ZHxSREW11IEF;_Am#7E^uy^-V!OJn_)98M>_S zQjD0Mxz(r96Q4F9|JfssM#smq&QkdNIbHD14iFZ^R1+p86Ot}!Fj0T z^959@!cbtS0G(cRlruICa3${ZW9meHhF9*fdOGm)RgRML1N#6Q#BJ2IuBcuo%|pbB zyY?JK5Uc@FLKAaytJW{!i$S!D#P0e^@v>~)$Rr84UYwmqe#$kdH11BXGwYNFB9Ntr zNz~VV?Ln@D_Sxl*3vw+Ngif^0sXDK&%CWmj$?&{dYke2Vev31N+G#t-PWJ?a-L zO8>EV|L%Yn{`liC$?wwbFH`as``}q-_SEgXrEIn{!m#W?Rhv)GsssN@Cfu zBL=&H8>Qb!C%w;WPUv1lE=QEoVHt^;g!b8Q@8znYZv~~5>w+7j|2Fvk_^V*^M&V)D zE_+xVH<4&WW#Df6!`EZ~@9$-Wstt}Gi*F09bl<_Ly@rHEAQdBgAMTFLh5dEZ3D3j- z-7gyQ-UG`&bN$4HcnwKSVs88kfmTdW)BrN)f9kj8?>;{IU$y!dzN4S!jX$yE3K_F* zB^|~*hyQ(Hjpz@Dt)2fnk_C+g3;$Cdj~lN-*TMf>Df+|z|Ne6J9~s@%pt2FMVkQ!a zwA)+T%-hk<`;4N4=NbG)l97^;mXMN@kdiT#Qc#qYQ9Q7Juau0Ul+y3F&!rTE?KUHFxi`Lq6*eQiUnA`RQH{|n6D BcQ*h4 literal 0 HcmV?d00001 diff --git a/figs/shinyLogo.png b/figs/shinyLogo.png new file mode 100644 index 0000000000000000000000000000000000000000..dd068a4a8986539375d43bdea1d9772a9b39bf44 GIT binary patch literal 298924 zcmeEug;SJY*fyewfPe}}3L+g6(k)6zEJ!y9NH+*9t)w6&-AGGIEFIF)l1uK=O9)E{ z3+w{lv;N-sX1+h+n|X(2c3f~g&pCHo_jO&z$hT^W#Dp}2I5;@ON^j&ead2=CaByyK z-@6NZ@=3tY5_r2~BMXwn!KsNO!kFU$e|~EDMiYdCQHXwm7WAubKb!ZE+A|qPx0SII#y!0k{O?66??Hn;VRGn z`~V;4;lY2u66}ie;D0~HZp;7f$$w$<|4TspP`C9YED(7sXlpegor$*bf1Sgg;T|Gc zsw5z95Tl`_W+k*R!)|2$T?r!J%;B@eKl)kH?oB3#oq)Wa*0J0z5(fuDJWq>{bd?@- zLRL~;H8Dy=(Hx%$XhM!@HZ_w}ZsCizQLm4JJH2zC-s@(Ga38z4g53l1NabOl(py4g z%3I}6Dz^^Zbaabv{S+drp9Lqbw-1!x$C*lccONz@ia3NNFcYkFi5=2J-x3rg7FOc# zf1795##Aa~7^0NXB*j7>_v$vGv5e!JCHj)?aUUtXm*}D^SQrqCspLa`yxk@b?wB(i zk|g0)cLyjw=qKj!XNYIC zf!HVOcItsIWR96+x=(VBTxm${#8}2XwA&*!36s-Yw_e6N(Nw4m*4`nVhV(JJ^*j!1 zCG9rh2m=Dmbu~V!71&pwEyv*swtH|xJdvm`xXqO|s5X+=)CF@*;{Mf&B25-6gZ#?~ z4w|{i!(x#u4j2FN2)=&T^A^PkB&vCx%WP|7Fi{d&3OyOWxrjR~Ebqc8qf2Bah$L>@ zeivCIOkmO0j{D7jDMzu)s{Ixj+%e~Fy7Xu7k0ovLFQ+|0X0i#)bT=6It;2wuzqIG6 zH^&gVvF9;P+v#_+ir9O`S$1$7q&(Muy_hl~5Ct_MQEKFOWSivvRbST}17qt}blIJ6 z(WAxmA-KL(1j)!};Q0yahN^jengkp(`<0Es@SF48z(ijERicU~?HL7%aqjL5@mADh zG`lUv5~ck>$c!d8|Eh;J1|AKVQREm#g(R(*BM>y&~P^( z)+q^->v9Jkc}*b@(Y_TNA6+F#U=lRufX z5>oR(%eajcREC$+QdKiAPIA5pzrlz7Ef&$(fVzzeL02pU_STphbsz6LLSL38b(j5k z0wJY1BNGV-Mq!0L)>dK*vAWbuC4j{VyV>(Ib`Xp>d_ z7!&=`z1^;!U>xtf;{f4RXN*5h^wg>ZF+EaBuY_1+`2*SOSdSiJk;BC5bCPhMI2L8K z9LcV{A|_Q4k)3L@yDv@R-ke~fyPs_Jq5tdw!SH~d>R$+E*(_Ljc{S@OYv`~Ip3n;t z))(8kM{79Ju+yHmEAVApmd-&{uze#ZUnfopSNT|MN28iBAsC-_LG}>9C##tM35%MhB{j>0fAE{1+j3E2=8{a$@(xzlMF2# z<&_}k+??{;KK0$UC&St7St+a|@TS1GbU<44N%cxKbW0hD^_FUtY^UEx&^h=7^N0KH zIo}PrHPCUal)$`7!Rsqr?Z1ioQ5+J+76ZEotYw;&$Cjq7pnu`9r0!)Tovdl|x3O_) zU$Aj`>!K5mA-P^?mU zhI#ZIIpQLywy`_1E(QHn<@6z4ANPGT1wrX8d|y4Cd}3<34bC$1+2_tD;U1?mdM9<& z7bG2$xzI6aJx(5DNy=25vH$C_@tW$1|jTkm6T>`j_LS9S$F(+LI z3(Gmg#5_(lpZNw+5Q!B8QBM`v(F}F@9)1@oIDcdF_#mCs^z6(ho1eX?Ff+xYgWS_{L66{+vyOL4Hj3DP?IRE0E%r*?FpsraoU1mt!l$1gWn zP0=InLkZ*+vj_~#)CkgT+AS*={jmMO(?p9LPZ{swewGB1!hykK#XF61!P9`Bj>Js| zG$qK5@>}vh8BLlB)@$F@!C+8QpNek1|9Muw;tKzLe%DgUE@7>lyy&%Yk;l8*@P1+T zskef70UqzKcNVWye*CSkHig{&<}dMpGjIUg^Zr%dP?ePBP(Rv?{I-}^ZFZeFcUEEg zu2!S(;w|h+l|S+1aWhWM6?bhpXg91aGc-qfx9^!?dY%u6`Tk|!Jbajkdq6j9SU=0G z^ytOH9*yN#^^0Xt6RB@N>=TLp)fu5Sly)Nj-rk<7f@KG0llKG^A##y}yr4J5blW7B z5X_w4;p(BN_qHwSD%O^dQPL_aEAA|Gh1G~jjSaoS+f3ccy>{$w*V(Rgby?rR2BT{v zwp{>=&ZtFqzVfWqX)Moo>U?C6RKqiIUavg)Mxjs3&DB3mb>B+yAroMi5{{2(I z(1wn)0E3Jx%-*#4ePdo?7)Y;*?%nYC}O}+IQ5ZBeyYc8LAs`TiRM?WOt=R5)^%@1i;}oT4xz1Gg{7;q7&v`r1w_vCaR32{-m0~QN z>?s;RcAb=Wz(V5kISBS|Wt@(d;+fH?j+4g5ETlFyPXBmBm_0?v2IaFV2;jU1=mCp@Xw@4j+YKSvb-OKi55dTv0h%7=6I7GI6d~85;V`u zzvzVg6&1>3Cp_*l-)-r?2s}g#ki~z3Z;VMGnU~L>!7nS}L*rM!ygg1Qm^K3Gs@UbG z+KvTqpS<0F$7c0POBU0jCqVDrhD8QEV*eswXYzq|%Tbb*63nHNGR2O+FD;aNG;P)# zXOdjrKqrm62iN6%#SL~8>wTD9z0?nZnhsA6xtGl3Y$h|TczeBU@(Tg9O z0gJGc+S@CCKcw`bi9i)cfrj{Te%YZ^1DtB^5aj_R7m#J|PVSgt)+n1_RD);AP5XvB z&`S3;f6?;Y9m;<{H_m?)rI62^IGEP;RI;O7N*r_~EN=%g@tf2h?H|qhI#0$3ARGMK z|HXwJQ4`^AS$ARA+E-=?f;Alz^T}JDT3Q*Q+8okn&6(%>@N1{*KPqCWW`SZ6Bu|R$ zXcQ6&E$_2xFh)obsJoUDq6!ITE@Y*w_^9IJkZUKoHLlo|*IB|H=3i#f))>i=QiRJwmld7qB!X*sAGqni;;gWxs{TN*f; z6QH`^WND#K)4flDS>x@pJLtB*C?y|;9yK+)e^1xT|5V3t?(Yk#5L!R z!!X{%Y*Lva^{Z+1qjSYm{yW31n!i=mU(ns(@wU<3-HJl-zF22!0kAxQ~+g1(w`8Rt#e5r;44I zZZ{=We|VRiC8ecGVl_uNuRE}m(EE>OQ?U76W~Eo_{rV0X)}bD;gC#ey%u3*~y4?Qp ztEIRE@n4$T6K~NOO9NcEZiSVN298NHh}vfC#({tT*NUR%S*kS{!zVcThTidu(s?@i z(cR9y`m>BlHA74N1HVl+lB7r}Hir<+sJ!&G_LBTAF-1#qpPYgjzWdzAUCIe^0nXZ= zbLG_6P7vr8UPtmZ@&1=y$6l*}Tyw2bl*rcaSs+#TjvTzY~0cvkWfKp@w_gr#f$}xV?o5mbZv9F&dAOELd*J|++Ld*hBQ z;KtL?Be3d=U)w0OWAfC~xx}}T!ou21ygI7~gRh=}9&^9e63K(^<-HiN6|`W9I$Q!N zO(kXCT=O=sMRA>*U7yAsMcYW`bl^KM_Ju1|?8FKcSM}(`c=*7vjs5VQEOvGHDd<}N z>>Zm^Fwtc|G0$s`K3zgGqG~?`{A5d{lX|f;+M&Aru{I4`HpyFM4PDufq?3#~I-iJe zYma{Ko&Jikc#-~Yl1hX+%$aL?Pn1#cdBYUSKI}J z)hd~+s$rfyg8P@IO)g~7{8`6jDXFO%eV=Q&n_obatOiqMuFX647dv8t&}1?{FMZ>N zQ@+)_yLXgfhpVGCArRu>oBb~memup3lH0@0JZ3gS%J_Vqw>&|0_2HU_monGvE`cYR z7nq|AMVZTq@0(m=ZfkdXiiGNCRau#8xqB>Mr}&T^k9d-=L5SkA>p{ul_b@6tO(I^8 zBzIr{gLD47uxu?-O={ZF*||2ut_@Wos1?m$G54@>$(^WJbc|SJ=_hH&Ums(y`4u}voi#Kb<*CC)HdD>UtVsRnbaeQg zw(xJK&vBR5oGf~FrMZv@iI>;~cLq+NDw7Cfz6s=?*56Y9 zPjUC1fvV)gDBY|<0<|pBuGe}ii@*+_m!`@vIcn_eY(}vlI7+k*F*S z$9j!u0w<(iG*H@Dw=1(_e%ZA8&Kd6B^odQD_(Q)7hQIAnMy z_6KRItba?qJ=S^&st%xSyE@ftew`hIY} z69+>J;{5f&-vkB4oRejz6L<$c$?li_?BiIoVne#+Fvjjmq#JXLEj*?$X z*SBaEP`vlN<-u@dsw;{05HV{t*$E2Ho_O zExOv?@x6mO2{tJw`DH(bs>g!FSAjueP*}&<8A6@%0CDb1|8DhQjUb*WvT?PLY4}xE zq05kK@Y=3z7$Jv{8G31e>i%6!w}aWBN6rZ`U2I%tQ|*^8_aA2+HaYz%GTrVtJ$m9r zv{iCeT}yTVlTT&{GP5DYWO4#|!291LHN|zCKytvH>#_~bCAaFhi}f7_Yw0S5cy>;b ztCxq6SM%_rD)06$WV?j)H|GNaYCM)N(m%$Ksm91U#CS3?7;}IUn18knTw9PGD3q8V zYE6CcN@G@PA#8&*knPqF|d*t0z5iV3CNAU{|r(_KaS-|A4z8eU#Wrhlt#BWvXvURijdYwCmps4y!-x z1$dn_j_BntZVfj0%=Q=e_98*&G?p#ln)fVx8z!{-j8Eo^r(JePme)^@M< zL;%cL>=}KFwKjszE<+RQ$+j|Fo8?0fWtq@-kZ2`-Aa#R4UAbiXdF~lUBE4cbML<->ANnX1cTRnQb4g%McaYXm{>n_?`J_q#K&Co6S&}{p`}_M;Om+y1 zXN&N?2B&JV{nj6PtETDC^s|i*FH2g~6PW)F@mm>8F1CgF9W+Om+IJaq@?&4mLi5e{=UA7!v)Orv6Y|-W5<*W;J#}?;sYoI`+~S>P=(af#PWG|< z;mibNR*D4=7Z(>Dvn0j5yMIuz&F9?7;=KhYF}LP(x~OCu^>( z4Mr%p-pQ66=bw4(lXC);(2qq$EY}yqray^A{Mi&=q^Z*A-X)kdFs_s5-O~V-FlG;g zatXs|lOADl&ovVkg9a3k9aM%Dfv6d^<7u<`IP6(DS;q73bYM=yZ?5|r55LCwhyFPp zIQbnRowPqFtfTXFi=VK@IUmtXnafd}D7QM(8<{tFHC?cu-)u8q90KW+nCTM=XAv`e zQ(w$ZST77bq3GPl{6kZ6Ox;>Q!w_u2-jEBlSf61<9VzVS;!+2J^noRdKf7fZI@EF( zR8g)yV|aH9+3N7zX#_E!gWw+D3z28l&{+z~`vhVA^F`B26tT^6d#LvP_t(-lXUpF1 z+rJr2(N{Oo$n)5NANN&h_0_-izxXSpK%Mj@BxQk2n(W&2IS-*X^-tz|-C_TgA_a%! ziQfKS`eIH}BSy(=!;d)eGA++tT+Rdjktz`pO$RM|XdN&C~RK1jC0DJ*I|}vI!jtZE|8viiTcftK~7=^@yPzc*pmYHm>>VY|%iN zRubUlHsIIWMARgju{g6v?j;s|Ciq5)1Z4xUoe^)a6f08++J52Ng`;$TC36%;pxJ4 zR#oG1mT`tCD=XwyacKC3n--t){^-HHCA z=CDn3;W?wyF#%2ayqVrbX2SB3S@TOPvYbISR$Xo~d%dX=oXYfbMwp+lXVl$}`dgi+ zM##-}2F#uE@^bDSp)7GE~C><4mQ&<@NAM|m|oPWF5lTlw7D$tfmK zChK#(ZrT(>5Nqv`WF3$Kkz{P_QBQ-X1os<2<<>lbwNf?uOJj8f^XeJJ<~}~@`=i7O z%;ssF(&+i|<9M!=i}~CugPiNMB)PD^)JXFgmv5@L>#ccE%e5+2rJw8(J$V72bX#bb zLSsU57Jd|pHqDe1hP{F$8n-S_^qY*;2{c36Pd#LK0a7spVDFkj(mkPJT81vo1}V*<)3z~%xC z7T`zTzhE3c@$(_^goXJzG;%}*PuTX_3hr`?^i$Q_Z#9_DI>==DdU&1bHPKp9#VBwS zzq&?$IFSQ)?t+{Y3?7gLiNk~F)MngVZg4RZ7W$}m`4M4G@N|5UV>FE-fS z`KLM!gPDQrtb3y}bs-<_^@h4kzf0SGT=ROYMAHGkIvYrc1idjRrk3KCNe=qnqA@q~P zCnuUD!`MV!tt_HkLQ5}c-j*-T(Yd9%9jahB`TIl-KWsgtg}u*`yO) zNki^;r&2a(VZqaLpiHeMSkt*IcFAeDdZE-QAJ!E%q*KyWDoT^Ey3giMkymRCP4drX zn9}4xjt*t68f7+IuD4u%+l>LN!~7&;k|w#%_t0Ht;tdI(bQh*rdn!9x%M zD7I_emHiPpA=3M-57SrvfUR_~6OMNkpt}mYYQd(h_P+uqSOBJ_Au(Eosn!2&Wlk>H z-}r5Ci=V09EiZkV<#tBDxyNYJM=1PU8g_lwSO@Wc;^5#=@uVYqbQDChTmVN}28?|W z-w$n#eN6p?>%uThUvBRV$`rsu;fjl zyuMXLZkG>CHRNpSIfd*|%@yYj$ASFo#$?s^L!pUd~E32?x(X!(1#VGFK-<-sWHl7lB-il3r>W5LEu)4y50QNvN z`_UpKEm}3I1#1O7RaUa_kfN2mu~&|{y3)EqPBt93exughWTsx`Br~ zipt9!Dk>{IlZ`)e55J6uLNBD6q6-XnGD}GYAR$ye;E1Z)Z+Y+hWE?(;Rnu z8`_K>umm`MBO{~tcFGyWPj z>+RKAR-99pIwD*&bCVo$VxS zx(mScb~Fp9^gd-kDVHQh#yGrs^_x*<6RU?npPaRA301Ea!B5{mdX%uEbR5V~#y+A$ zI^E`q0$uT!j&tkPh1iBxR1ArT95jQQEQRMXp*>cX-Ec*sLPOd$RNVkp`4;YHP)PyI&lR8i# zU=jjqwXlc?;@LABR30j)Hw*UB&pgw8aqG|aGLm!U1eq8cQld(mNOSXSpd$~COnl6Q zZBN%b>s6aNc9Kry8Q_=Ds7a{$kj8Gnwu&+)qgTnKSMCx%jP-8IH47X@;+wYy zJ|7+)*7i-VM7f9FJs5<051lJ&e3cm$u}|~$^g-A-abOKyRGsmku_82 zk9N{S=1C%@ImJM=&y8j-H#$0fHI@T&b8|S`;Uco%C-pY#B?#?WV$X!nY;nR=HH4>i>@kAJI?oeyW=%Nwr` zcDoydj%+;-3Pdk2eV77C{ylcQKCs}WX8jB=i5;{&I{$F`@Pe;9~y}p zL1ciMBDr;bv>rXMUX{zJz2r?}U=CA+v(9IkZH4)L*;V_oMqub*a5}-5jHHOO)?vqf^sLay00THCqRpudz-={s-9wH z^Mhs-j*awGdTdHRvKCn-c{@P$x=6@VXElonbo|u%G->dCFaw>rgZ7cj%{Y9+<>t(V z+Vq6j*sYHu+W!sI*7$)(b7W6ihWO_;VeR#26bDYu7Zv&uPiji*u@JK-g0}#=XI@!U z<$(2q1Vc{Nw9L1hp5iyHb^NOMh`g)1>66N{-fm-Q8PbaE$gJfK;hPC$^I_B7FrQ*!!jHANgMM#d@4cP~VV0dnSH_E92*1d)wh?n1W z9GRJ!ODE0hNA)FAF*ko@+M@~-pMDwt=Af8h3y3N!1pGpS2U(afVka3=jV9iHDFVQI zgyq|L%&o&D9<()qwOhH_V>}--oO~b9`HLyeQ#^eVbg0*M6yvg?-7=D_XF50td)S5| z=Z+Z0Og$a(9U34Ecp%AQ<+xz1+H`Kc;5N1{dWLFFWPj@!H$KldE7jG5%UdK7e| z(}y)jhR=W8`7i{yj{sGamAJca?`=Q>=levz)Lufb2lWu1wG#-_$_(b}z?AF90$J3F z1HT=fWr~$*$yB@nJwAJ7Ma75Y-?jH=yc6%NE*Q!!?4I=HSO)T-S79U%D+dC+@^>qs z%VNMxdoSPX1pqiF1&ISl4YeLyHZ(TQFD?DKD++1IAgV!P*5DHsC$1QY4^A%pC!pbC zs+yLTp)F?p&IH&~4Dt5%MKv2B;qfIAbudfI_q(0Ve^E@V}{I#JM{_TlnvZ^de7}ZC^GZ=YV@?!3aP2 zI8cW|20A|jHo@8Oa%`DcO$Prl&KOEh(6x41UHfG%1HE!>aB_-}hs+$!Z%xhz z)uF8$z6yaXasqT}+S^9~j(}|im@YGP$0<>IO^xURo1Wxg1uJv?lt`&3p=9DlF@v?y zpK7psHi{O`;_f>l==!w&$oPPamVRcyuRC~r2k|84g}x1SxpZl8D>tT#!9UIHdRYdb zY+f^<>f-}fGd*ClSKmhU@VDA#mBYv)Ys!kTx)9BX*Mz!2uV%k!6z?qem&jFAH&}Mz_X~OnsLiWTlPHcdG;Ex?LBqw`vbD=ud zN2U=pPML8Qx;?gt1cdq=bp75%7X!vL$5%&G=hqjf%XaBGevm=JU$hB{jn0~+szQ%AcTn?xtSV1TBwyM&iHqD$;Si0Q{Pm<`oQim*; zU$t%Mt71aj=|aX!4Yv3q>O^+ufwFOY>BCga<>EEqB5X?pT(Tji)dNxmzl|5v#@h7f zOQXxhs(q&fMG?P_B~^z)c{+aB(E!9q)1TU5K345Fi}0Rt#n)qzz33hmo+VI*cc~OW zU{3!Q1d06I0UFSTPwd18ws%g_fd(ms7yhKOsb~f`D%(E=AX*T1fd5GJtS>GBAyyqQ zF$KODc3CMi1uRnE?K3}!7SiJ*+gMokP)EI7PsB$+pF_U1%4#gXu|&vnv=Qc>ux_mi zhH71Qb+q})J~#^ol3(;!lhS>USlq(aBzi6JkAwA32Q??tRkzDZfw2hkDc_#c9?qoh zALy=gm!>X#PSwVYa^zWpPrk#ikZE9=Fw4wUz*f=)6>xWu1hw zGImxnfCU@0Z3BFw%nN|dv2b8~ln%-lbD}Bl6b)i~UJ66}g%uOLcPqgeTz{H92QJqiAbL*7mR@G0)_3UI8-Tu)|#;b_>vgramh zKy(b%GlaU#_V|rY&&t*>d_n(|*=sx~&Q@S((2Q!aYf0+{ICwz+0-D%jF33`16`9r3 ziZ5Dx_=xfVa_XV?>T^w=Q%m%5&fxp*{w*b7mbNYP<;ftEx-lK`-EAG%Sfe;-AmEU< z_kHxS$A|i^&hnKNcAC67b_q&gle#u%r!06eKno0TiM=0+GyJdJ)+^6s>oN~EA=U5$ zeLI{FLI3X~x|WCBKrOeNx$u>^3H2aMpb(#*1A|4$y3Dr4p$ao19VhE;o6lWV^&unc z^eEATg|ZzKT2LC?S~sn5i#DIcDRHTBzx`+Z?W8tTp$BZrZ*GvQ355}=h$Tggue7Pdc? zT2&lye(-{ zn(kH<4M|aKOX;9$Tleprdp|t752VtYD%n_6O7Ql@dgnEM;Hh3va&?ZTanRLimaT3G-#9cFxrop8+9DYB zn8D&I3xwQzY<6x!o~Z7uH}1L0=L03ew_^MvmGb(P|q0tL4SxTi$^K@nj4(f zG`*SA=aIKfrgmcQG>zqbpB$|jyb`r+3kORwhv)Lkq529G5fmIEHjyoJVXe9Zz$hmx zL#jtrZzZ0c?@0Y9IttWrIa6Ib@|ZX1V)&voRXT$ClPTHOU0a4sj{?xIgl}(6c2)g8 zhzvz=IXc;Eb1fzR-v{Qg@Ir%yD{(%fyy>8_-_GX>5fE9f(L%yt_Prwgl|=8KduBI} zug_mISOf%Q4>Md-0V@25LoYqI<5EUqTt?k*eiNC0POpVaa%LJHt)Ezvy;~s2waWku znUC+FUHPC{yX|qMEM>#Low@%0jFo})%_%=0Mwotg%Dm0c$v36C)L~V!@ z+=CV1o7J-389pYLmnCDvG$73#@Wd7oB^1Y$_TQj(<8a+2Cy6v}@UmYBqg}>iZ|96D zjhggbuSE5LT`m8Ug6fTMTIZE;m!SJJqU7pJ5<#8N32~^}H8FZJ@!Paxh1I*pse|R& zT>N1iep%5s*b4q7ZCN@;$SIMQ-{hGt)#6aT=8BXlb(XiPvI^h>MU{eJr&ZoZTrM|$ zNt(tNpA`YC-lFt-8|Ve!=NUom4dW+ru4S(_4Ml3!vJPDOzyOSw=$24=1O%gjk&z`J zQAg)}58h;(v)Fx?tMn*o(u8ayJx9?z|EYMV*gC0~7w3VwOhy=;Kg88yA&`FImfqs} zLqItIy0B;Rg{#HP$kp{T$}g^pcwN%QrUbX!{NIc#ttk~mg`~}nkQb5nWs7(KcaJ*u zOXJqVc>NjSCx0VGWOCsAeW4e)PDm9;UD9FM)P!`Tdl%NqW$gd&nLqb^l4{j>K+>Cz zUnzURx*@qt^@0dR5c{`OKa> zvbdbhT>VT%n zWOV#pp?S%ETfw!~TrZ)UOS2my62x1tf7S3EaA12c5wErS)djQ+>*w8RX+~8xkMgAssm#7 z=+VqoO>2bCFvFPf84`O!9qZ~Xe6IaeSC;^woE$eNrBdJcEXwV+msD|knndhWh1}xe z;sW&Hq=odq1m6}8q#hoiyG_F+{`gx1c~YV!EG$eFH(>rv-+s&DSu5)5{_DoGkmb-; zJ#oXCSL(`UVO#{$tEcl4(h4R}%ye8wIA!N~tNvsceWEZ~tz<+oZjmd`LR>;%{ZEd6 zaw7gipauP?&f>uw>_57BHZ}P9`rYpxDum@oo~Gbq``c#iP9rzhaQKMK^}5Vt>#ha> zWHE<)Q#<6D2-ycvS#ks?U35&$t7fvl69Nn_CVshpvKmgV-HVM6bX^S`j(+QGEcRBX;r=ERGY`^VLZcu$(+kCZH;ai)EmZ*T1)QB$ij|&^OZ6De z^7uh>GdON;jxMvFKaD8yb7fS(`1prZD! zDwqD5kWWr9ubU2qFF`^&GkdZ(di|OJB{jwmn3klm$9R@3K;*rW#Tl&Z)8;WPPpv8H z`#OO+@34#iq@}Sf6@Il0FQPH+)6p~O8q>}m>bGZ< zldUTbZ4+e@b<8>wr@9Z^>$nG~HOnh3wCZy222ArTEh2ve{n2R(K|YgyO&FgCCHk7< zblT2N7`4+xdpx~h%M+g10NlwSTU2b1T^woqV8+e5 zURO(~@}A{0OM^Fb?0LFZWlL zgWQNZulG8~vdR8UOBo*s5Of!lgaCW0&7Ui^^|Rde>USkxFNC7KVNht{p&=2-Z*RQX zRc5NgR-gqktL?eG=|vjxn&gRi@8sko@nV>*(^hZC#ExV#KcNscIj9|x)r2|ivjlGvWfA|7k83kd%<_qRtNnxIi zWG<614LZ7f(y?y`6%<{I@EH zORk8uz@^eAI3=l`Y~m~ugutyeUx9sS@gw0-hJ#vs|b`C){0hFyj|&ls6aD;hNQAsID$ z+w3tJF!ll&nzV_5AJ~1(rTpdt*$MS?%y8~gm8L;`tks#=EpOLAlH8ADQKp<6@^cFaEfIZL9%DS%8bEHlh zdevI@@YxdY9h6QJ*JdjUMip{gRo7W)_aj{pMCK1udX*8H2mv-1=quQxz}j*s!Aa>e_3ddHxCWN*Mfe>p+!(;|VSMt+;`K#RUV+?EE#BYe{NqLxphIvMsu>yjlcB>?9+VWk%h ze$U+H`vdRGs|WjY9k5y$e6X^+YejWUo1@RR4Vc>R0`yaM6V$N4!vC3b$F6@%w3JHR z5S}}Xoq>(1oc&<^&&JsWvGm+df@{7nbiZ*eYdxG&Dwp9p&t>fhkX2r>h|vHjvM@Ub z7xC0hy26IwT%22a)_|t6Mn9apzqFt1S|AG?rsEPAWG8n{)E$6zZ~Va%IXT)XrsVN2 zOxlfgsC4z7NLbU*cTsBVwhbv(csM}Yz(kUq&re<8_KD`~{J4@0@TFc*UaV1e{yOC6 zeG2@K6pM6ew3;7aGBDKZrg6>IVAE>+mm1_NK)v^l34xXKG`Ikw_Uj0ex_WXNr!V<0 z#}yU{x^XMzt&a$Y$2KNi6GZ9b!~k7sYDZ8m>`{dy|`K@1s?>48TO_z02dA#Rc~$8MBqhK5k=r-{4?Z$ryka(Hi-V|#Qy zH+zz0Jn^sA!LC*!)cn=v;w?k$5&ze1UdoETheYJ6DO_5c{@gnxBc_QfiNtSdE1T&5 zc+2KF)mwIZZXFYTdvcX4mj0imS}AZ}sM!&^^9G$(#MKNKTBtHj5f{>lY@YBiG|ywQ zhyBS0$+KxAQf_2-_YHTTp!tZ$~DR` zgvn_H^T(fI2hJ--VKvFqpJ-`}80;`y#C4!}tE{~06>$|nr&>Scoaoy)5bGl02KS;+ zKbz71B|A)21mAGF1mPIE3w3GvKIP=C&DleriHlgJE!q{mwp zQ_Ls^T!dP>CMWhL(7BfRW=_E=j3ZA%lpov2nKoA!nIM?Z#0xT0CZ4Px+Lx}jn$-uZ zRjmilvSCA9rbmQjj1rKR+=zjIfNb;_Bi?Jz z_x*7k`Y+t~eZ_fx>O`Y2sKUcOf;(#Vx=xALaG*7t8d>K}iV}@rH7FGYbY8x?NzwKE zb;hxsrr<7xSxeMR8_Mf!xVZf%fTW{Yj8)UDQ{F zIBA*VghT|oo((+%lp>&=NTY@TX6P%Kz6&IERc$-2^3E~AKyS;NR1pdQ$k4KpwQEDUi2bUNnPy_A767@8?}sqih4t=g%Ab4#a$;msFu&H)akJoUIhf@t4 zLv(a>oSdB8fInfdhE-hvR0;|@zoaVmZG&@bYx**NIyy2PTWnA!KMTbbrV?ZJFF^F^}c&nw1gg|H(go9 zexb52^ga!2c3GHKndLk`I9DTqg;C&J3HF!ar<%Xwa&Mz@=ZdDDAWZn#5yj#Ul%Ku) zjyP%XIe>@k&Va4yF}2$MrG}eh%0rZ|_^#^YSpLrg#$p;^H{r9*t@5uB`xRj83X@Xw zOkfm)ZEZQ&%GxzH4O^hkdTXmc?K$eE@ghw{vl`pZo9n$tF0S>&ygLaf-ELNP_88&M zQJb5ew``RHm~74B*`H+~$mN~i(59X(I`=CLQz&Oi&M6ueRCze91u7bQ)EOgaj$2p6 z)K}?(k!GJ#$^3HjiKZKbr#7=AT9oKaFa3NcZz5&!q|+>w(8zp+M>?w_R8?S?8P1%p z8so)WNHYzqdq+x`Y1OG}))aNQb9u@V2v*eEe7|%St76IFGcS`>9ZG`C`-iCxo;txhjCj-S48gAF>8d*7~n@89s&ls^I}HdaQfKQj>$rJQg& zX`Ru}``+YNluMq}lg9DyOK#8wAKq*|iBPv@dh(Q1oAHLVat&+u^khU>_&`QWI1V4uFiX-NBPX?UhrMq4iF1Y;TLvrR6;)bJ!+Nr|lK8Ly z)ZDVn`EiyXI$&w&Nd1Hs-!(k#HwX7|3Y9|TOv~ShmPDEcCW+Ww#{^(EI9vKLB7*?@ zgPEBvsLUYt-hO8{WkL1~G)Yv%r_k=$;ge^ARvemzb}^mCM>n;$nfb;?sb9CnJd zQ2ddVS>%0)YZA4-feglzEytbV_e}#9#|6p!?(hcT7zUFkA_M>0i@!DOgv*>HB79fl z1A}UjAbsPIJi@m>B_$c)&q`>}3vid00l&3@iV0Ldq9v=EsI%-NMQQ^`cK|q5&^hIK zFpHH6#&blB@wCkHOocy~k9W};duN0_Hbsx_@_2%K#M+JlkazHVS%4f*68$D*kPKA+ zdhvvz#geA+;%Kqm0BRJc>G&j@?|csYE69IIErtS-oNq}>6u|zmt?N^~k49yIEF{y? zSQe;fYVZG!SG0l+QzrHcBVWAa1n~M2UiJ}Seuo$1kPmV6|6yUMR?P`W-a&d=Y@->+ zNvau^M*6hS3Qr>Z_M@zs-1`h59X4a7Q9_{7w`lc}BxQ|JEn_pC^xk_uFWmk0ScH81 zCEAtCZEM~;co9gpOil5bAV~AO`3E>}=HrShem05VhG36%FRGown4ec23{Oly`=ThWI8q+cbpvC@hk@!0aKLeWIm;7kt{iuE{+8wpg2Z+}?u z(ertCiCYCIKPjY7XdhwnL3DYLgZK_EzatW6d8E04Y*FW|Td%X2a>*9)uo`W!iP6Nn zyaU0T$SeOVN@RB(Y#10e#yHhCI3O6Nr*&V4L109_S#QD;o3`j)H!hkX zb9EHxm8_|~OayAGk*$s4nA{;m^q8BelgFg0$R21`PxLOg%=TJcgIN`>D{}@mc&@!x zxyJ8OJF^`j>MJJmf9Dd_qoS;=L*2?A@gWl(n1{N%<8^c}Cdzjq9^Gp=q(gB@0RD6< zV?v~o-EWmIkw2T9UTaX(=Yd}GN3jlN^PXXi7BbnJiuY+_nEHNDuFRit&-jwCuKU`v zQOa)(UYdYPs<7UDH=du~s>B3$?fZZ>^hEy<3jadz&WiM}cYbD`axDLNn@QSZJi=aA zzi^&VPdh_S4!81jfQLh9rDY_jbkI!wd>1gmMS=%r{Y594rlNioOnvmzs!&LNjB^~n z(=qS23P*pJU%*Imcj5SM`^8b^!HR9jb(uXXnL(kUq`M{kH$kIoEU#shZ1+W;7_95O z|JHRr^OCAKqvkYnA1yfGht3O3G7H(rbB8-Ox=&eM09^?&0rGwN(}?hBaYm?sPESk= z+t4#(n#eZNn&6B-^amN>3%i(MRkfj6 z>8yTmQiKTzy%FJ2c_<`c>RU)Xc=JJ?wMFObJ4qmtPlk9_RF0tE~;=$V0Y|d6BLupEMlB6(s!IYoo5GH_K=Hxy8Rfv*0>|aY{G>b zu^O4I1!8s`lTQCz!lGl`7kl1>RlPFXJi`|4_XZ(3{d>|q_Z-RCr1 zpSBa!l3~*z@`2N6Qo-(a_}dO&?kRWlzLMU*&5ZqHE5JzpMVp`eXb0v=ucVvbtlkH?S9Nq-hEN$tH~gl`%BN= z+@!_opo--kGe#bF1Z7b(QlEq#_cPz{PPj|VaY8~!bsGiyU{eWe^B5B(|I9w>o#wu} zf^J+$DQYvyfAd+TdZgwDg#bg><-vBxaNhY`9)IiEC*U2nrXDCr+R3iyS!xlD2*?6J zt@U#bh0H$yTFxv2r(zs`j?R5mt?2~D2dY|t4fnp*yjg5pkrwMl$1M4e4bjr-y&(}2 zV2}oCxSINU1r4W9)&Y&WAuQxi>hxfRtz)X*)^DU!8MGWS}DFhl+caMzBUm4wlQ zlYW`pJpZ)=zf&1M!RxT8W`E`|y8a;| zLK)PQu&cHjClNQBYmLSd#3`1fRF&p6&TQ;PJO;-EnM?0!rd$(JFv*`3)J;z3Vz1G={hw{%>(`&Nexz*&^tMhsK=mx?YZuWXKBQ5X#pq-*Gjp}e8|;v8du*WV z_}m-LJ=8o8PK1_TxVPn99>5`k>-Jj2r)Sl8#gg}~=o9Rm3@)qlnH%ur z0I#~CGR-9WeE*pE++$l1aa!_B0j0D(=5{yIU~Kx*&%D4tT$1bji67RMO@{r0Kmb<; zfilsayEa!09PX>A_o{22dH0yiYh9}D$$V7zgD46X8&OhzxAH6Q+`>Eds31jft{VHZ zI<#vpu6H_8y$GBX1Wi>{Q`2or%^=B7(-Q1c2YL-W2?m7Gj$j7`(@YD{>6w0mO+{$q z%2>S9VnFHYzB8Di*Ks=4`Ujr-dS{uKEZ*_2z1-U(5}KoRL8R%mB&?*g>)A#2 zZ5!KjwC)^FFGTgofb!yh$*7D@sA9Kbi4z^chOQFoLLq&?N@esE#C37WPicQ1c-CRvMZ5)I|)WiWS&_~{StC`#iVbx<|koKf@cJVQ@kF4Dnnl0zlHkwVv zuetpYF z{{~*w{@o9B`GWO$rMW+j{yaFZ#pUu2r~p>hcrR=L$j`e>6ctuyis>54g?nuHeTJ1L zbxu||?%bF^Zn&qtk$TGqDH{d;dtVFo*5B|xAy&i5lgQ>8pzt!%I{9TQ-Fuo`t?z{HJ-F8Z2ya?%dW~U3a|$y=Fs475Gp8f3s2m<78WPb~3g~ zX6*{NH<`ub0*b!&atd}PHnQQy2BP7{V1K+dVM|_v8nKtEj?YG-2pO&Q-HXlZUvsZ< ztmN>{eZ`SIvYz!9m@d;P!NGl9HOo>m;AHxQ0X z;j-$rR|B!fnU@!7GOJ-MXZK6>B!Rm9d0Nzm*SgOA*WcJRJ8V&6X33Q%_WX`Q@7I$M z)*VlHcqD{rdRyr}Y5WvFB6cTbST!J<=8h7F(oDFMcTQDZT@SEZgmvXBch4Fyk9dc= zo2kD5ppBd|Wtzp6IquAinq*s`*l%c%J8&>iYcU}1qtEoEDU*_Qk-}pa zY>Sm_bca^Z%rBq|0Xnk&Hbqd?z(f(cUD5I+F(?{DWA0D#2Jnnxr~7NwJ|_Nyi|bkk zLWfoKN6GSqrl;srt|(SL-!g4sZ+@D)v^0^;$tVf_2*OOj_R&zhYcpjYL^nh?3L862 ziz#R3~fD^ z`KOJ|_FVR2Ur#0O{$xYQ`h%ND`nZsWAWXJweOPeRi^dZmF}t0U!OUuOs4HG3pEe%+ za1hV&*!oQbgg)YML*~gGo61moDYIUgJit)G4L@y&rB=F)j1M_ik*cCdY1`m3L-<@x z-i}=@W6$BW?+PE+k9w)6wk@`=rEKIIQ|@#ABUBI7WkACXTfi#r0)8*#^GR}2G*86o zENKiGiJywkUDcwu29atW3?ze{(2_T8q=c>K=Vt4D_gw$1uRhi@cE9NjW$ba`?Sa;( z>!)N`<~z}HnsFM#rfg~Q59ES0I%SezZEY+U-!`7j`as+u2ZL;iFgGutRvZPIOq$jw z|5Ax*+UB+v@XCJU=D)R!QVZ9$|Eg)po6JzEe@zXo;hvkFH3#7Vw%d~odc3SV&C^0l zeVQ>_p#Hk}*x0T*6FuG5H$`vt+Up4?vX$|#nBA?@L=CN!YXn)-odyUBJ@{6{D z%oYOx(<-HT*=-iGMIO8=5**gifmLJPPl{Teu9SCF{d5GV{G_NNe&gNrqC+{V;$hg; zN%i;VRH%iaTzj4=Lo_3OR#9n#kz@5V_&~s{Y6$?tWH-x6-Psm|eTt=@=7b!$UXbzPMqIzUry+h&UQ6Ntz(2 zjyh_fceXfnh_iPN@y3)|2NXLK=(Jqi&G9oCD4Eh<{FHD_J}S0 z2tksQEw+f=xO?>M*XVBCwub`@@wm{uM2bK`NkK>N@ZFtuq$<>T<6RvNi`V7)E`vqK zXeXW+ke*_Seld6@f<$bfeWqW0_8ss~oN6~JG z_;o~kX@e4ZkuR5a*#?qtq=%eVRJg+9`4^(S;H6*d`{4I|1N>gw1GEe{N{S}=L|wcG zx3F(3LAD!x)SO`T7wO&r^-WOU$0@6JED;(3+$M@ptE}D$;YH=M6ePmyx2}b)X2J0@ z`yC~f|FC*o|3@*Vv|-a)>a(-f+vG_=6y+;4kq}bi8;?FD&?mZb?R3FWR=?(>VYScx zc{2K5;$-^nEgs0WpY-zX|74fK%TY@jv~?8389^A9i=cuA-_M!Q5)L_($9i|U#_F!5 zf2d|mHIT-%_}=)Kp7f1Rr*089OTPubsuB?YC^oV37s8D;Vw3z3^re93@?t)w%I!I`G3_or+9U98G4x8v$&d zwZX{w2v)9F_O--bqCcu#>!8xnJ>&~pcJ^m+W2`4zS?zo}@<`+{xXXvNj2>We;(+RX zwyHf|8e6Tw$JjzF&4fpJDoGl}P~s}0_EGsVax-Z4%f02# zP~V4tAaCv~o!TNQa=Z*z*dhp-!G>5AeM;V#V{E(8?hfFTVq`G&zj$Khw_J#L^4z25 z>|~p}squ3wY~NeHXNT5=JEb;5O8mD)0jzvs5xn6OOxOsN#K@$;a|e*zIg~MybmMAB z^)1X~FgGe+n1)St5_NwbsItY|8dTF8+d++UdMXaYD$k*zNf~7UlK9Jh*-`|V%SyDm zm!ZY3R@260^X88q`3R6w&HN;;9#x1k@@ZHO+&@N0i!dij)A3DBDd;p_>5y+m$-_4*E+(02K+9qVX-Gq1eQ9!Q!{944i~NBI6h$LTzqL z*L-0i$bZOPhQ4eu@;%=+8=Xm@lROq^N!f)@+02PZ$CK;&Qn=9lI`VAeAy49^@ zXY-`H-fe6fIyS@-;ZK6f%E|4cF?X59rAF^!LvJ=Dk1ma@DD>p!gCMr6OS!x1K)anI zIsmAW=ajoAVzCQOLQFPJ5_Dh8UHOkd_}Nd~^(!$DkP7kDc)+=FAu>06S*X&FtTJdX z1?Je0bhj!+H8Si$Zg>sn0I8i-)f9C~QGRHZhyic*Pjfqo+pQG+3~1Tyg<~K}LVf_b z&AV4TFT(@o{eG`HQ==YbC9%fLM_&JxOl0c0N>aipj7u+gZ-l;kP}*@?+KS0@~WB)#vM?kcgc(&Ku9+#1k{qW1RTEHH?&n2m4={g>K5wPrJ#Q?Vv+&~~^rg>%L zDrdHfxcnPel_@M2ew~>C5>hf_RuxKhzNdIc@{gB+`~IJSkxNwej@teQKO<5Bdo2Ol zFLQZwXy)it6%Fc}@dp;>j0FQi8f2j7TcO6wu4c@pSNnti_4^_PSfVgv7^G6AqJP0F zNO?IfvYC5tFlkM!;%F;R7E1W#L!9eO>enQF0b5 ztM;x&lYvgcs#PPFUW0wpp96oWe?=A%FJebJkgBeJ5`FZ{7f^O&o2_vq4+;qYS{w%MW^3VFN`co8AuIvr}eDPz9sUf*^Fp}vJlIj)Jbb)RGNaT>f~#ox4@J$mAv|%i-aG1l4RD>8q1%ZBIAsTtR?Ok*Da0{$ zz|)P$TfFx$jHYk1_k2NZLi)fv+Kq069V~dM{Z1mE_pAwhf7w3ykG>Nx6w$X4Wah8t zaO4W&TwXw91uiCyF0&yJ=+=A`$R~gc0lKE-mQGP1^rZ$hv>9lpl3DFwJyJRUDs^nC zEgS4o2WptXSv+GQcw)|nr_R>aXh7bR(drImfDJ4k1hRc)nx7EFEM{}Uf;t+XQ=(*A zhoj{{COU0wcIc0M2!=>Z40X1qzMDAvZ=|>8!>iyh0e*2LR{ERGIX_0q}-^-kj z(P58#&cw`4V02JawR%2aaHa}Y%2N1V4^Wk{?tJgk{&C-C@3&X{ej11u-eE3(7&~0l z;x9{A_QEzcKGx5}FiI54Jp?EgAmB;`KpSVK&aYn4hD)CW9%}-d@D?*l6x|OW9WZ7_ z3|`!5k{ZXqFwn|Ruom`yMqEWx*#7VN+&luXE*djl`mf;D0kS{Lz{5Ona=lAI$3|g_ z>1)V6uOcU}b^H2kEDc0N?3i^#fU>0niZp6MMuzkiP^&q2k6&dafb0o}At{}x%r?&4 zAwdf^Gc$m#{I3Z77p)5|RioSz#a5b(qgvbuUw@0}Rd9T5Pk`{lC|-ngoCbhwp}bBe zfBIL6%+?Trn6LMT3A!$K!gRj7a4X(<;hMWKt6$Ij=Ye(a^aJK$h!js5MUtD$Q}T%) zc0q~;hK8W*Per=jDnY${;i$T^(N+?0%@;`Zw5+h=HnpIYivQfPb30a;nXc`AkYdV6Ud;dA@$sh5S_+Zvq0TkseN zgx*fMa;AG)Yp|wg@gk8?%KtNq|0ZS^;TpneaNWzKc0y#fXfxbTg082ZD{ZH_e02Y` zm-A7!I%o_6zEYv~+C2vBWk8Z;b0(|mo<4O3JIVKTIIzmCK6%jxTNv!zHdp61o#j^0W?Mo1?&>m<6~ z4E8v!g?E{E0u{;K2EF=4pIVW`%^>Mjv^G!EjEB6AS)V;=# z%wp-IA7`+R6J}=j;XBd1-P`4_4kx9>+kmT8k9+jHT@y7ir#s5{LZSoC}ZE0=X64}X_w(>Jj)3+-a`-dl0XiC@g)(& zxoF94V53_QqA)3gwUx&;rn)-rAY>~nHiUqqqdpfrZ-M+P07%D^6%qH2(8M3RBZG}0 zw1Cf~U^r%e`FDN#TTl2^RUjNEDq~j%NBpArgkUc=66ismoSp~IAUZPmCS&}{N71ML zA>k5ZL?_?hgZuyv)N-1Ui^bg1$bSK8tCc6-k()``9FzV^mO|&IEL*IMlMXa1)}aE$ zMl--CIx7cCoa>3Vd@R&YbSd-Ja9&Qnn&N6FAP|}$f>1Lg#v>r>?HXrUW45Lk$L=R1 zq)6~8S>SGp+4|{rCHqb#KSTUaE3H(AB0RUmmViJB=f|TBjrm4f-=h}3HQ}xl%@O}j z@R9n69fUV2gaEP}h+ZaGv+n6td=}g3^zCTCUv{@h>b9f%MosRPL1Ms0Jzi(CHn`T# z1?+9!#1C<-d^`5)EqsLCqbzyatxL2n!Z|>!vf5_^e&>W`Se8q3^fs^As!pXp%@VHl zRRMLzGwS)McGgjk&n(C+0@t+lI~~cao5#hTbhE9nf z(c(61uh^^6oEzo#htJ}jq2K-CR1*H1%ZOds2gL(tLiY!we3N63Xz}+gyKZ$1xTI~ zQEaU7hKP-Z9Df_@Jp4lhBvj{RR|`wF|I~4|c=E(}d(NLF<6yl>DZIwn09QYLf$OiW zecv+KJ~>OE!c6P#+>91C*Y3I>7Vv&402g&q4kB$q0LP!^S5l8p9-B~BRgjW6Cik+j z(mfoG;~J^4_P3B2^%(F-giYc6E!<6Z5&gY-ki(=P z(ma{f{scfPa0<9evmcS@|`~`Q4HOr@}GwI$O!OhXq*&HnNuR7xu zVsD>y1*qGovCO}FpwYusk)!jB`XvG;8CNlZ`gSR~=p*0zPF%r{DpR+Z!0~BmoAs51 zg<~3U0b*^J4*7zC0sK9?>Ahov74|En3ki04ZFk%&n0;<HMg6Uc^|z|( zPB$#$J4au5Uhqc1;wb21AE2PC2SO^KaIzf z8qC_8qP@m(I5?!^5E72aGHj`2s;8!uyFj$b30EmYgreA?UcF{^-k<3@$A$~Y-Dh7EBfFNUx2q(#4XbqE%;w%pz{bQIOi!L+83a$W{4Ahu2@4*MFQ! zOf%k!VOH&|V%oot$I}I@0u(Ih|5gEWyd1y1q(Sod6`!TrfvgbpPU}Gq`VT6q<0CkV zPPIih=rgO9Q>`yN7J57s<9P)@Shhm;c4$97VPU7R&rCrs?6-8(fz9~ z6_Rk4%QB3o%asAxHTZH%n5jNUkXKRp@MBw?_}DA5+k(9>$C2>96qN3t31KMO{pdFG z=`CDT;_#8u%}QT8^MyXR`N8%EX!*TDrTGPjj26HB`jUl>?vFRQxpUL5BJb$5@drP^ zigMJNaIu%2j;03;rnux{&$l;qGj~0kSi(H@UHR>m6nGg4Rpm4c_YrTz^c}lt>;gz_ z^3qX`0yEFogFDd^XU$LyZDOeh%#H6hGC11PEL`IK%P5vOSQ~%lyrF;Jn;BZ?d&!c; zkUn~=Dn$yyvqhW?3`D-zxGenrZ~Rk~o`%kp0#J~?O|SJ6%F%r=qaUTuUr4H;VSevb zGOKYgc5VFLeAa;s>d%M_6tBjhFpaZuNv_q50i$i^Mep7W{P^0bx6Rq+MPTwfvEA5` zzZy$Axj+}u{uk?7y6I)&DO!GVSS&LGl^)YG<=O zEh2C(bYn6P`UuG3`2^U0{#(V!eA|Oe*;iIMvMlX50>gFuWq9d?@GB{JZ z%CPpc9Sp8z=_jtSgY~5stW6c>F`}XJQnu4I;^eifk0smHU18(lY%0h>f9PCk4o)FJ zt_B*k)3DZV2|64r45F*NadFU!+2eD1`(a`0@?AXv6}w}NqE8xgp%Qh-)!@;%7L z@#+bQ5=xOR)|y0JrRg7vYi!$bK0~!!Bmn2g?%!1?2&@;?5b2VbRku1&_ic#Pf$}Dx zrJd#S6`K{q76WwC^zgy>-AKy!5QlYUNB5-UfTWN!9&hliVdt-qBl^Ezt3s9LVld_L zWDwD~QTpqPk%Ixxc%^u4EW~i9;w&Lz*UZN#`bVuAgFk`R%yc)de}6x{BimNmgK0xn zJ>k;RyIaEx%`JC|h<%5s+MNYmxKcX0xIv$~k#%?&3 z%m2mFwZc!?Vdq`{Ju_P-LX{fDPt(_@>>EQZlJatP>y7$rIetzHO%=X28tHwXycN79 zzUg2@qUn@qly&HtnvjK@gW^vMy_Y`M^c~5L1SL^dZ=)7$>Z(86CxZCP|J?A58-Mp_ zyB$^3j85cL-UjAuU}L(1Lt1&k42CfZW8C=#N@V|HM*x!Zf&uNlZB2=aUaY>OtJC{d z5dZ8sYTcfr*K}@;W+y zO*6uq&0uXgB{Nd3hV);gwA}6K9IZ%!)*a0Bh)VQs>MKwbDxfpd(x5hxhxka4{Bg1# zJT+na#_ab07j>~wqfR!#Lip-SiMXHh%hn!F5nOZIx&` z%lGsDSbz7*C1_NO%}nQzl|VSlh%Ihf^Mi|juPHG&V~D3E?($5gBhA%+Lg$arcMfhi z9~R#5)#T<-y!^13wF(yszN#Rp7BJa@!PvToL<2zkKJ5ICZ7dVA;(bqj6V$?@%9aLY zaTUjl#wnX#p3Z0qa!Ians3UWSt9DPE9=}`E0=0(ymNSTzosHeRrhpIWDppNsfrjIp znBBAZfXWYOQAtv1W%4Gs&qtQO&s|TCp*p5Do55B<(IR;7MwhC@eV$u$RlyClPinYH zU^CMu*>gTRaV}<$qBDoeXxX%!8y^MTh^O6lJN-7&4YvhMOf;ZxM38; zW6({MwX^{*9zdN8|MwSO;wpnPxGME6#=^NqDuUVsU`*cAqa$vcTW|Oe3Ov>)yV_hY zzbuwU%&_ChVKZ1bL^i^UwvtdK2KbtyyvAk<2J@ff+uOa1tWQ&HcyYb;NWB9lvA9Pr z?G677RBfNQD-QvGXt%PQ&qfqF)m!0b$cyv#^$@t4zsE&lR6q3m6UkWiJh5{jbpoFv z#jWe2y1L+0Wm5!Guk=TpJNxF$(r;nf?#HIzHx4iHrd({Ryz){EDB|%BDFuxid#l=*ZIQ;VLSeQ(dj`7_=0EuVDBeFbWf?+N&*^zXyrET;u5 zE9|)#(djfnh9_M5gRso$N55qGeOoJ4HQ>CPn*i_Y0Ff>*MpnKm~!%y2ap3nE87+Tg4kcO+Q48Qq=eo!4!Um zV$REC*0V-HjE2fA@CiKovg{0X_=3>{V-~&64jSw`f&Z9y9`2{*;mWNe-ZZ}DN7+6mqB#r43Ea|vAFvkjD_EhKpVk%4NdU@iZH3#J z5~a`do!+%x+sYcLnN=&0o;)zNLoU|INsY+bN1SzrQ{Bn71}PI7R0P_E%2B|?RMx!u zUtHSJ_{_e%%%ObiZl1B)8nTL5&tHppjA12p;bp|<#$>ne|BxEC2G;Uha5;feeQRdw zk8UAJwcFR$8LDV2Ikl7dI2$%Gr%vkBK+>8VzI3tUDnUVHNS5OsLzY2M;LA;|MPUpveYm#Q+-GTkVI9Vxj8}GBb?xF(*y^#;-5M^MI-` zYmZ}kX68o>WtgI?*kSM{GeFPOUAhgG{myjpZ74}@uvEt`iA+C@y`8ttkuay~o~o}& z{HDfK!jGA^cS%=?o1ZKO1!Ug=1nmn@kYq3L#L`Sgn(}sW_19%+7T=9lr2lr3LUHlv z5-W1~8ARtCCb37_WV7nq`nSdG>^P^@aBC}PhBsI6J5X{z>lw;&mJX!e8X;Tpj<~82 zJ+D9em4pjXKhSJ!Q7+`yF$(RDUc66ixC28(>_ce5+-0_+}YpD{6~Wx0{3m0Y7RPF9`bGI|$uF zLK`#vfJEf=Eh$au9T2x@RLDN`ti}|Wu-11wL1XemEf7QjVyn}o6ZJa&!S7y)kNW+A zf9yAzUuOP$ca56qA#YP3W9Rc6ke%H;o)8B`=l)5D|5tOSlMV!KWcsH z3}?0`kcTDJli5?~+Foc0{rco5K_rN$pz0zKse}0%L7|%vg!%Xo~iN7y9@vAej2`c#*%fewgm> zk45&-HLZ|dybPu(??g8D{9kePcMDC!(eJCG6R8;&=e__!5qmMf_d z5q104`ueJ`Q@a{S41Cq(@1mpNN*g3bC!NHY1=^yTJ-o}aJvakg3>ax+jyGLCo7yd- zU)TEUISAdWK9-N#ON?NTB!A)!^65MhPoLYGZWy)x~>@Ip1vl(uAo!(S@+~?=TSoT5xoyjimd{aMdbyQ#SJwCZ=C%J zkYLta$PeG{0O>(|Th*?~xK5<*dyRcNm~vU1`$bbl_lvP7h;nC{U5hK>>Yn60G;jIt=RKaRW-63o@^g{*k0cvhq)x$!jyEDg-+?sC z#?UsCVt90Ex!23Aq`uJFuIrW5Ak+p#q574U(|I9Y3!t{~K%tlC%P)eYmwDt^|0$uH%+U=O6^qFHHR$kCd9%(i3ko;MJ?-MXpjx`L6G zvH_-(A)byHLDe}%Re9@2X2hn)tXWG*u_{n@`;woteLf@sv&}h0j8>#0kv2uh{X0O= z%QhOItrMY!1LYma&$F~)hd3}j49qGj$m0O{DWZO7H>?f%N{cy|?**i<&zP6bo0fVH zqjTUOZPksp{~jQit+q5i_LjX0+*CGO8IJ2)*GIvKs}Co{HA3alnR6E7E_b=K7~7d`tI}1Cn~>DlMv| zI?JuGJvvlsr;GTa-SB~os1DLMRCt{?@(>(S>mze!(euE}Q zG4q-gsTgg!P_J*SRe!?X>?`T;yo=45{ctY%37iE(S#4JgL`aYzu3(SDkV}%hTu}P> z>*ia&Myc4!2B{kjElzt=nNl64c$gI@JxPoS7v(FUL6KZVw$q>>G{8tERdV&Zsl*_p z$MIF#TRTaxSATIA)EB7=O~Kx9oRMMPVDv-R&_~hJ^{}c)KZR7yKHdx^ zJby@qGHn_OlQxQX7v?_n>*xpGm7yUnR>cXT{f4h7FYoy^{UoI(FwUj7XGNSTQ-8?i zz1F0lN--5U55O;LuF!y@pjW!YCoh6Ub^jfIr_+VP_2*p7e&{|}a1tZaOW7W00|Om? zQUP}wJDOZMFuZ1+iLu5WEU*&Xp1Kv@(%*MFpxs< zV|;Ao9Bhl-$$xJus~fq~fuX6#iIZ7+=f-ObcFkgpJ6DQ}h!pL>r2~o#5ZP+z1!j5p ze)B0MRTw$83Qlax(bd}vafe%Gvr03jJMDm3RAavj_FXJ9ztk2)kpNnIt!GB28-%0C zV1q`HYrKB6rO)R?Ck9?-s3$*8V$G)lfsAZ-Uw-i*}3S%#1DcDJ#6oi|2?$dXn^Qp6}ty^E#32L zoR*wb-0FR@>!}PBpg_n-KtE&L4M^ompBlFTw7N&2yX4ZaOL>v2L3co zZOhLOM?E2iFY}1O*vPnFBV%^G0TT8)95)wp)06~o0l?&o^cBvz;rMZS;R-ui>crFN z5~B=VmAlO`$!W~*Jx;vUofxVwjLqoEi#ZN`scOlYlAcuZKl>`{tn~Y z9=1juC-&JQ$o8L2QZ9G0?C#kDP<`d+r$=X(bGU;i12rw}bm#w&r2KDfR86M7`R58w z%Dr}eBzS)ynevw6>$)ojHDt4$M}cjUl1ufAESMGRvtI`Xy_jn&mZWm@VOIshBErXR z*uA(_|9fFew{(NS^CMCv0FCKi+<5y!+s4|Y_r2=I*CY>?30Ck?4yZG#Y1O zXt>o-oS_SjD>T2E&c(xw(@3~3$=%!Fry4Uh@*URN(00yLWu16OR*s|aEx=6-m(0a; zCIofZQ}#5o9JWWL;%S_N@*E!Xj8ex#U>n%A*C4qi#0&z7vDo#l1UdN1Ei;9m5AFH- z#%}z0lZJcWGxZ9!+RGcvf4N1tIM5ZwF|*G1w1Az9_i1uMpCGG4ZgNXn)Voomi`&OT z_P9rPFeD#dBX|Y>{g!D6H~E_{l@--RBv?qS?!}HnSw^k3T4u*R{8q=dK?#_kRqSy9G8M7Y>7E z)e|!NKzBl7$o0uyXmTLDhkpxu|2mC?GZVsj?_j5~rRPmSl@pc~Pps~NF~}A{ zK|;SeBe!tE3`cEp2>4yA!a&*KaHRkVPlRWEI`Ly7gEWoLkNn%1ofy|ZDRS7Kc+k+; z7THuP=6`SpV|%-HGI+tU;l=A{uXdaX2d_Fm5@5sC zKS(B63!RPl;kKu3 z-&dxZzpS;f@VkMV-Ogogjz8QkX>)w1FZ;sf?)U94hf#Pe)U4n@=(X=mX+>eN1&g%Z zo4IQRLKW4wIQU1te(qz4(k51eOV6R+bg1{*BpUS8M!iPlDL5%0VmHP8Mz=>8$?t{U z7Jk)gx{?feqhZ%t*ZZ5yAot+yr(G+VV-{@K=owz@`R{bYBF>_mc>;}bub26N;dH07 zbkEfCO5mL~1X14r)!I9bmy7uOH#iUYNybG%h6U3=UfY#X<)DY|i61{g>)e`_+I=3P zJeg6N55IRTfuunV>NvIB3^P+G`t@4r!U*?>IJ{|Hw_t>)(_Z3V8dNzwyn{kE+~Vp} zcfDJ{%_6qvh3dErHpR7uowapfFuvGf+?h&?lfHysa_aS{PI~lRvd;<%Y1VG@adNDv zfUBRN=sUJ82MCx1T*;qEko?6eh>9WAq&Er>xl1kgTIm_L+t>Gnj4wNR&-X9?yt*8U z5_Ma?qG#eM1oBR55ro{~YPjK^@O%pDEG_fp9crnwZ3(Jl?2a^D@phSRbryln;sP*i zf||lUP-_G@*e@^6FTP&W&v7=C7-3yeWN)#~!Pc%KS-_STsh-^Nt6XXy6)BK_#{^(b z;}CuHVfMuMs5)0C5GU(aqygo-&SN~=kCc8Q?>25Dhv6xFD0}A-t%tF2SdL-KYl+4- zXRR{#wyJLn2wd}8Lqz8uCm<-|5`t5sSb{Uqfs>^tpIERiE@~pmhVkx)pYwi<)SDZs zY_4HL+5fB)|9gS>_UG^nYz7m{#-5<=lTVHnj7m=g3(X*op)zj=--%m<%E)^0ZeT9| zs$)As04oNdx^pA5u+Pb?${?jMknb(%1F3I!qgC(*gf$6NzgcW7t#kXB=7F!1_FH={B(H=S z^iH7hXgS3yvn0!7Toc_8_<7!4eqiFofYH~AWwwi9Zbv>4amamIe|X_SkS8SAq;NFuN`hUoV{9a-H^4HXq_>ML4o*?{#@Bd@rX%R}?aGoyPKVDr1^x?nrG zBdW4rYZ{EZPXL03wt0DnU&T#&7+tU;@g2Nfw;Q@SHQmFH`ABM+%C*e_^6rBlwt7`P z+7js}3k-2eQ5}_ajWj+pudx2WP73dDAMU?>>HV_>H@zcKquKDL5nWk%CjR=lHQqcJ zl~cd#3z*VGRkdpb*eCA_&dSzUa?h=&Ys8LlJF1jacUC6R!OsuAOM#Q1+ItK5>Y4G; z?w4z!Ov)ky3Wmq{cLO-yIE^cxa1DAvOLiEi^3>iO!Ic_XNc6kMI#OI0Vsmd$5Z33D zJZlMQe!fhlgsh1yhaph~#yH1B`4SZ0wMNk&4{rZX_v*+aK2WEWU#6fHu4&9FuoPfq z0WtudO#e!K#~2W+rRizg#Cb5eaHFA1Ff6oWI6Ghb!*;sXHfgC%6~%IhJ)hoSqWJJQ zxq-^X!_*J*6j)(sZk~m59a&aPuaax)X_Hwuw7vfIoc#&ki#zasco7QWrM3IQmofYP z5R44Dq?`oc1a~NWv<h%^nKDr$p8*7!~Zm_V))C6CehL0hm9eAZS$qp@0MZ% zR11kUB_VskoI|PQRdbB8XO}6L-YMW~tYZP`Ks*zgHLNE4-fz}aqdoSke{#xp{wX!O zwYqDh@E~SE+}=p!`rR;8dC=|xd8ET)6xDaT2)YA<4>Nr}HETl6iTz|jL)QYUZer)j z{|r8yaGpbeG#lI19jl*&{!^yP=! zO}l&+7(SPrBSo#9zBjOr;$DX7qd(+n+YT{Q$x9KxYa$NwdcL@(yIv6j4qBg&t~F44 za`6JwOEswZmNYj|@$)HC_%Bva<$o;pj01|a@iftahxLH(CA?#U6z?KQi+!u$&v2L2 z`rRMLIf4r<#_<=TB~zbVf}L|bYNi}R5Vdo+lK;-rp`E-g0b*KV7jupF6t{Py1jqA6iuHzdrTR93mag@;cz6(kGl-)cnAbYWR?}^R zU-m=kG{v`=9fs93v2>DxhHfubrOf4NkY-0&DBV8!o~YB=ph$&0rp|2LAO3Q(E=>zP zh(`N5@~x?r+1aR3YMerC?|bUzCY7|MMe64@%5JhCPEmJD12p_ZPVtiovD?9$Q@?x0 zhnLuGvmDG2T1wAF`OAzbq2rzz7a{b}sCY~oOQFU#dL(HVya}6mQDFE}xerTKX+JP2 za{iU))lnsbIWpo{t18v^s?XHdBPwim0^B2d5XqZ_!^Dk}ZvcJ;5x5$f$hMzKt$kX;4kqnoWch)o3gfiXKx9W^|w^olmt0iw4eJTaJH7QY6K>h z=CD#71UOCRS+Kn_e$B$@zj8ZTcp08`Z3;}R_(kuDz;$)n(F?pNsZJU`!Ni*Bpe5Gq zBAtCM3~5e-ZLa0z4gzR#i9;*(j+469ptA+bZav+j`LmQ?R`()BA(nL{*@TWqYh0ae zGWuIhqd)JJ)t-3icBvNCxk-s?ANEj=%xTO~d{?ZQ>9XOYSp3 zd$hs(G0uG~6}L>gs*dM9;^j7j=-|lBZ~H?4j3((p+tPq7PQf^Ta_Tb1@T-!Bz)sn4 zAvK%bTQiQhjA`$a3k111Ae#mmw}6>Av5M|xFe6U(T`mr3LZEU?C9e6_Z~poRLVlRY zm%*E3GQ8@-Y68cZaGXax^_^J^;W#LLd>s%Q9y4GPl=8(gwLn2XM2oq_;D^ZSV}c7F zjrlZ(dspT^_(udkMWt;DQH#HPqG0jHj9NXABR0jjty zP@P^|8qL@=E)piXVNYs~`s12!YjHER7pNJcqYFIOTk0nI+SOTfd$#c-mK8{m3w!Kk z*5VI;e%}xDRtK>iD7{^OsR7zYJt+*cCmAfdyl2P5JliV@SsjAU?JsFhDPQ4nr(VrL z7OQB;E&Wu1EaetG)fz?~A^)*Ni{pu8L^Ms0>?65tWE;$a0!;VR72*t!Up8`6uW)0Vj0$Gy9AWw@ zJqfCmsp>ne#hr(5x;x=+_t7fLZeJd9HU#x@7%?;|Aq0O=#0N#oNwGtD>MI4(3J%BP zM_rbE?q1M9(Y(kUwdG&FBfCb(zw>leKnn^9&=s{k4uO$zRdy4>hxq04>G>Kfr+Ms!3>WF1-f^; z|NUv!@`&I4DDlJmc$KpU!kq;b>zRyuCll^z@oq9Stm&p+WFKhg^4Cwlm=%|F#oosy z_Axi7V;=te8UtdHin3u-Xlmbj(0YiGzm0_gSi!MdujH8&zr{KfA`67v9t@AOnYBKW z|L^-4K@yVFY=J9~`_~=r*+LZ#ZuQ>%1eE?#YX&e-(cRn<2Ile1Dm8Eq8sJ&ezi}Ac zY&}15YrLw!RI}N7!H=1e^P1%HGv0wu+jIZR!2A+6k4&2B=#wr)oWrO_inUO`%TSNG z3`wMz+0>Sbxnz%(3o9!*d~`daoP^}jcac8^&G7D=^q8>9GyYn_J!5^w0a2 z(q$GGe!IebRlby4#>fX0i!>!4%ZeuJEJw0j z;V(Z=$==01!1WdUD?=g|i@mnmuoFMxo>H}pbyhUqciS=YFQkG_(v{y)1k z%^K(xSa3gw~&`0CD}B@4`H(B&j+uMZ0KW2=n8?DIKs(j_0% zN+r*1IG*)!^QwgH``~?Dp zl1xDY4KNCJuHZB-*K5C)kfX%E_*eQw0!|bc7kZMZXX#i#Sp@@*%4%tk_B=9o{}X84 zrt`=Ji6cx7BuKy8G@l>rx0lRqlkufvBK`XF%ZqE)hx|uB_)z7lOQjdG3S&P#OB!vLHZLq|6LWp|oA_OoH8rvPRkBFIblSb?3|fV)o^_)LFE`BBKs0_H#u zp@G|~YbgbfS?jXo+GEamhk0K^h0)TIo^LTlNd4kTHq z!DszLza6Id!eS-l>CQ6&0x~gvBd1}<^}lcJ@AZ@3S<4aU6&a}S14tmLU11$6=y#S> z#epq#dUNgqXQA!Y4g@yM^Te+h#C2H{?9E(4{4R3(98b63PE)`iKX9Y(S5cRLW5U`Z zo&i5hmpt7Vw=A+7m?RZZVPM9`Z5%XMWZy0R570yqq*}hrSM$j`H5emDzL}=*O~|@R z$;yEmjQ~n@z^q#^V5V?QAp%a3#TSb3^PqC$4}s<1k1Lp61cIdBylz+RGYE4H7V~># z5$?6%Ug83zn%^n%UfKrgYuZCslIlkI<{u6A};|Nl>9DpYJvEkYaW5;W^iNim%dvr259+M{62PwM@_R}HTa2) zH&&=wO&7Eeu5#T*B9|n!{=AQs`x64rlY=T zU>m4IPDwdGf<<%)eTKd)+(7>?1r?i#tDn7E!Sg0y z)QydC8)~Sa+h^l7q`VAZ(1E;}Ahbr7eoL8tD*VR7xBjJIw}U{RAmmDw3r)Ca1O!}2 zLrJ_d9wKjH*XNzeDuG4f*6;A1hDy2)lpdUWzA#1Ph~s`H0&Y4qp?UF^q^1#y7&faE zDt``P?}!I)w9SkAeGUNet(BxfKLWFJBE%NS00=Gkm1> zkwkG>Kx*X=hyPEa+5LVyO(m6nd(G!Zc1>ncecau(gcQVh)w0#3Ttx}Hse*&W z$)jZznWq&jIn6|YNK+^}B^Gq;Ckhz{LO~NA66W?E0V7>p2FK&c@n28+2viQQ?VAER zZyQ&J6e`bVKDWK3)g4ou{&oB;Qd~Zym!SfaH~VEwadtR=zMserRdBX5`mo3I5ZqDE zOFBZT9npm&_*`TYZFnnjS8y>Qq_d>u+|xFLr7UP%%OZbZi6s5IBStyT*Yc#YGFEl8 zOIYU_!_6tjT@u5cf_8OHjYN4eV?>~gyLRI51Y?nNdPicL&&)d3j!_g$*5z;IU%I%m zzh)YNKetqwsKZqKVBDOhLi4Z^a0jin$oi+xPAA+`x+rd>8?b?ioo`^8aTd-60gIt! zn?%Fcqz()M<(+>R;u}TxBWKC`e3m>+do+C>mL~C`V!-REZ9|h|75Km}vA)WBlNL#q z!#h3QP25?Kd{I=!uv{_UMIy&1Dg%5q*lB`qJOXrG(}YpzOCv?piXQ&4Q( z!C{cmvk@@OP{oV77?`B}RHGw)Jd&J8Ib0K#)0Js9`qmsdw5 zAYL}>XLuHjSu^8j#Bdt7R0kNg;B)*r(|?125>$Z^$Ahf?*}t$$&ly`n6-6k{TlNk= z9G)aVzP{Y)zh5}1U1@L2_v%PxsTf#ps zE|O;a%_0po^)MFL4>c{mRH(Bp$}UavUl=O60y^<;UqFO$&8b|z+$v4&kEZD*+m}J6 z96g$Q7Ug4t`HUE9n`wHbM`QplzTVbu+Dy{BT(G~_f_A`>_lbSsT-=Y#ix&}0o+Tc& z2MIo+BTOl6=PSUz;ncS%8*aypo)pNY2#0g`>JVH!jT|R^g*A8trSBi+7@gb`-I??t zPL|?8R3(kVJ!}dPe|$eu=^K~@Z_birHTVJ4xV`UKJuV0{-p-tD4ZJ4@hLDNTKpe*2I0(3iP{+c)7tZ0a64 zSN+ffOmGYIEdwwOFPZzx0*?c(M7kNAagN8!BEJzZus~r0Ru;n=&*kjR2Qr+RNFU>v zGe0w&J%BZ18PO_Ui?^h~#lz#lSKIBJ@!+Yq&*BFxW)4yAR>VHxXzvF-v0sSgC+K`W zPi*(|4NvBs((eeL;)}jyyZ#$VG>bIPAIe)VVw>#4m+;*f=zZ&&u^eY|KLVBhGvNNP zN1hpslZ^A>$<4)ApID0fBMS5HZx=oH$_YIw)Z~@5iW_Y)pqvtDS^msExyhxGqeyEw z-@tv1XJtoQk$`<3jR;zzbFO79tsl9`HL`_)J+yVk>#&m?_#@?}&%(kG>nPr{}T zl+x*Q-ezQc1P1M88DKR6+<(oc64h3{Pqqvhpv?xT@2!HolsYJw=%hDh{EApLH626d zS93yNd@%A!c&Ka_ZMQC`+|qWKySZK4UwD*Ka;t`O5d8)ajfuNuI~VX`o3coS*zQs+ zs?3t-kajB<%rGaAIleQe~cOamaA9zs#LBTE5&H>&Ndv5jjCwAp<#P<$6h6Oy~9Nu zryn}VviwynzUI!pdjntKE3c8x0$@9+ezDHua-F6Yojel5$F(@z5G^hx617+5^ZNZE<_HT z>17{=Hb=02^6K0CqQzYMi$E}!ZRc;P?w<1SymAP`Jn`H-Lg5Etz&l7kk#79)cdA`x zvD6GG<9W1DJSw1Jt+@uh5`Z1N7#{vO!+A0(vXdL6mrXQOU1FM>HLJSQGMM7&Z)Y(KVU=5 ziRN2ur-fqDTHI3J@wFLdm&Uk_Y0E$aI-w)Q>KOxmYIa-a0HuX*8a8x}DMDtFlyS~~ z@Gg%mg22v6>_}~Pn)Q3)R)Yt7zU`K~^iP^#0U9?UZDZN|)2#BI<2vi``izCUBtM-s z%p!VkX#7`SB5Sslb0z*`L@@^(H+B#DDSjHz0GCc$&ue}Kzj7Rt-CuxgB8H0t%P@To z?8aJ&1QgcodVkfiD%7w_)|m{!u-h!gHIx?E@3w~pYe7QG<^;@n7Jg&PT@nJ!$Z{cf$2_5sp=tsTYV`BYbWw}7Q>AvxA#(RkH@;e;9 zID)cz+8mF1y2}9m5hCckX&pBlLL9k8X1fmO3)UH~96=EQzq>}~r|zJM-~{YP?-d;D>~&?5)kWiJFQ*qhTrRWR8c?M*2q(DGtP_E?5=t&twT z%m_@-z`)ONSoEX-CI}ryYcswFGw+(OLjZ;^!6C{ynh&AxXqWn z`488^BYv6|>`9*bG_T@A!OS22#s;ObaRqZez6ZPif)uwXr=dmj`aYkdlM#x{7mjWp zGCx+%0Ru9JO{TnrX9Mzp`8(&nI?{a5uyA>QS4**)YF$BFPEUy>edscRGPv}3L|7oa z@3!ncagpr=5AD2mRAkL-I&^vFh?+w(`+P@ij7PkO0b(~8AfN%xI3Dz%<0y+_lZ!(z zl&9tt*Tv^Kpps~`jpk%VKaaCgCTMt-s2&0dXd2vagW{O~(9eE6I`9$Uiz*;}p(sdt zwi`m8N|J7kBsBoScEC@#<)bKT>{>H4&~c5pB71f#!$0^Av#NzY=AC6BpdG zt|VhKu<=z)`L<8neWrE!$Ne?bJ}2w-NB};i5?(~Nxjkxg^0o0fp`+XIkYmJt}Dm&F{%5AI7h14bhKV1g2kIHi<+JE|wBsFTDK#jvk7``S}7 zh~W-_k3D9clFbq)9aCvBA23%YJn9+@Hq|^^^Mo~KYYmqVXjT#r3j21m*XD(p5SegL za|q3g9~%C!roO6BJ3l-;^C+b#cw4$OyT+F724ZTR&1S<3#;JI4kgNi4?SwfbDU+jJg}R+AH+EoHQ<=m!*}Gu9V|C8F zyAJu0Nd-NyV#Rk0t$d=ly=WTIvlqWxuw}wP2=lv#Uws$5dJLAdrS=}^dwYAo{wTat zr){R?U9$UMoTYT}0 zkMP+*Acu)ng4##9K&R+jM$oovZ14i}<%+##om-td2hjnm1-)5xQ~f%|t>zBL7t%TQda$!Od%e=Ot%R_kr9Z zU{W&h8aeMF@|Bv`nlAUtg6>n^dKxgUcg)UZn34jmtU=g#-Q1T~=YD*ZbE!+8%gbIY zVE*JTZ~9l;A4=FMV3yb|t&4bN9%ATbT^@?N)`n}!%Zccio0tTR{aRpXxOG}O4kCnj z<4rH&Ul?wtskz`^#+~9rA|~xahl@)h%2I$e#Jk(wtZLw&yJzGo1Y!zWJ+72cdwmxw zc6|r%-RwWE@Dd16G)7L`y=|~#yPK&$#7aGw$t`+GLi@^8hxwMvY_tyiB;oOjo^@IeqyRpyo=u|fW z=9X;ax5v(LFG-$|uvP*Hc3NP!MP{dcPWXR-1)k&D=u_za6XQ^&37q2gy6L?YS;e3` z5v+l-3T#mrRf>jy{gd@{2!#YgA<^wtLL+}Ua=U46{tgn9F zUy9JW8>S-k2f9XUp!0CDS)u4u4cW-6Vpu%xJQH?PpC>S5?GeMfb16q+zj;0^R$@+H zFDlmeT-fn~Vyt~XodJqajw?N(+L|hL>hPMkc;F;hijQ!DNyiFL{w?RY zWlc^m2(0zUF`oAY%l$jnQhhIaYe_}MXmZu) z|5t=QklV;EhSX%FOQ8i=p@-O3P1m@t2fJ;STETh>`P65C@dnd5kK>9m_2fZ3rP7Pk zjc33=^0cr0Kea~?Y!z%dEXefVQr0{|6Av-tA&X_>c$@Tj^AB;h>4L(lnZ9oW6%>K~ zCOc~_p|1ik`@CMvyW~$*g(i$tm6RXkTFf*(|3rc*C-I%z%H*9o#v||5AfvTpzpG@A z!=smtE51U?mj!C$lh);GJ89UHfF&}-XTP|A-Z1UjvAguEA)`c%U7#P$$k<5NjFZG! zu!g=Y6V1rm4PigFxCj)ThfgGqUCtpR;&){oo@wh3G|JDX!N~Ro;ramg_7#M8+8vV55bMdlB8_*7~Ufd14wZ|DguK7HWxBg3h zJxC0_fYxqVSuNWexiu}^;=3*Jxz{B@^GsN4H$2F-uU!OJkWT5cx1^s`@}<5w(+^qb zt>FDx=biQ)q>$oo1WU#HmBdDnuvfZ=r8E%(4Cerv%>*z`>W|*B zdtfa(HEEnjH{yg6LW!+Y1(<8 z)!1=X-gdHJD3|1K(^gLJx?6h5o^s!YybeuAlTTn5WbkhAYjfz!V7{5;%WwEwx8%6Q za5d8l&p7Gxox&a<6z2JS(GHur%on@HhhM-ThiCkN>bYZ1XKii$%y6K3T1^>bEfgpz zrxs|K)eKg;x`EYz)!hu{So?4T7I~U7*Yf(??+FrT_(0^?zJ`!b2sqT5+llhtMQWq8 z=#%L;^#84c!omupl0I_qR51&Wl>pbyVb-RA;?bgV?wNP^3($_}5&ah@Ww-x>8JcqtNW=IcD#O?>% z?%l+C!3B>BbqD6qHM)GuJ+jfj?C9G7)5<2x4L0AWISP#{yYRg$2IyV(oO2wWL=40S zFn(CH_kZdtn5H&MX{4VLxsl7%SUFPS)>*kWa%2Bjc#;vfj&&Y8!pbBApX$GxNU?mw z)GF^u=Kc$i;sBq+vbv)%9KP<_xUkGuWVN80L`O}ro^E2pccm3a`|GHrG1hz65Uk4k z$vf7p?ykh{A^O}l4%4n}6}HF1*6UEks`xg9z9m>NO6YfXmT{gl^7m}U6$s8Un!HUK z>eKJ>@251ovi!DKZod27ms)_ezScWk-N$3!Srxv-fels>yT8(rAHIx$$LO|VqNmJW zM>sdZ#YBNmdb$ep!9IxVMj4Yc$xGm2tA;XfM}Sgvd@Kt7^6#F47do|jRKZ;h2T$zw z5QV1~XsFqroy$``oanxZkfj`LWm`D;h;{$>2R&f?4hf(MT%JxPo$ld={hgis(_7H# zsTb3xifcP+YOUVkAfgiJ@;B}@7~W@Mlv827e79x4iMnzki2b-eNdHnK4k?gblCzNT z=?o7VQ#(skJmZd~x2ASpOJg&;%7$T$^?Gy>*cm=SmAu#0q>0OmI?d(7FDJ_PKkCbd zN62O_u8INr$I%*&-#0{#>*&$)XLU>LC+bhf;}@BERO(VolbX!esz-?%Uh&EqXp>${ zITO_x+Q!7KsL0bVfAtx#o-6<16~0^ES?5X#5Rw1AwtdYq3U^OEqy}XhR9tN_<9L-O zIN9jIN#4!fPe3%pgl>hkI;2IFOQ4ZiH^l(f8w+Ge^132#1s30orJOF%{daN$;bvRx z+7Q5?X>aH>G$qB3j&sGCVhH?} zWQg>gnk8!zlgRIu0%iONvbznxJKW9-uTI%+{0A3Qg0(`7GE6L-5_Ix;*Uj@@nEHK6 zz%TN-)pQy+@OMtNm?=wc2CDe9-l-LWM5s=&hyPceB^pAN=o`yO^q?!0h&Mw3^?Ue$ z!DrpwJTR$YZ;55FW};)p6ptCoHA~C>#(aJ=5|j1JHoUf|*K?@yE2X%#lBQl3c>+BU z589FgBTnlqcvjo4X5~8S%Gp!9R*&%BHQ3)%Ad<)VGs~iiKVqVgoEw}g#l=ou@n(d; zF{`#^ZdU=Tug3BL@CIuoJh{xZbQ5OOJhfx)`&&s+rEgG-#ORs z75wt%7G|wC;zw0@u<-zHpEKubfI7SW;fE!ZLnXcmQ+q^nH0mV~*}I!$>^MhYhUdq5 z;CNVn!721EK$n8ppr)rZY3IA$N?O=2u-&+RJM8d*lHdp*BCyn~+S+@O!+d)O1)MEH za*oDxG`upctX9O{$C;8Xa5kW)Jbg0URXNhOGLj1#c5hC23woP+Uf@7o&zW#{<|@-6 z?Di_C?fw=9xvTuzbiG?TkX+IG>gTTK2739sUfn?{2F85Gy7N9h9_hbIRf$jFPGr;{ z80N*;c_A~JW(@1>x;-zjrShjkjg;u}8y51~w0_?j z?;kaDAnGh`yJ3J`&6J~um=U=z^*cTo3lPZ-xcSVu9WBEyQ3xrq-t6!mzBd0phoXIE zCM7=-p;2%!n)n9S;e(G}mYL!x&<` zE=zB+Svo!OUMMesM``TGBn2*USW{L9&C@U+64S>ZAlAO>FV-!$J#ExR=fay5Nb|bOD_haf%PxC9zI+axe13eCdP|t05S6st);kNH zZbn!ufv6ZNLEZ>6ZT~zO6P@Np{uh4j5lp5 zl9NGE9pnpO#`@ZwAuX7f@UFlZ6^=C%fMC7n=71M=!~GK)=4JWpAF~wD;(YzK)m4tZ zm)5*o;)$E-a%&a!zUhGypNwo`uS7?+iT&?2U4OP_BbQ@&K%|2vWQCZXko-+!6A%XF zdD+_j(jtkWvjg8Q{7kXmxFjV8-$>CqiDg2%!&msqMPe%zi4vaj0ycxX^NN@0^57|_FHs`N`$ND{v{Nj+c zQ#iRM#3h&UFVw`iDgG$!4`XxfU;%0&a7qT*Ew79M>}``&J=u2>lp#~}32fdvu}%Lq zPU+@0GrjH&c~yxRjk@PU-lPlcKevWQ1towat}#RJbM$O zXJ*8y<%Qr;9L%ikb3)vJIt~z#xWm$*TkS9(h8Z(eO`>A<_gvjr(KgNZZi}#brt~-r zw7=s6oFP=`+(>V#ucVpvsPghs%VNz)jWi@h&#vNc7CCOoE|$GGw2k~2Km%p&^Y^>4 z-i!I@viYrXS1~lViZp@-A>1B_4PG{n!f?5z%RAqXntDc8Zfgi^))a~{rvRWR%wqdq z50&|lMt^TiHehEp|KHt9&5k_#+C9Wt6WQ?P*zr-4cFOAB^81(lLbyq$U{J>)f>Tzb z^T?r~M>=)O)J!anh*2*@_^>$Ythz-8evYPS5O#LEQFm4&?|eq^La!ltLtU5RYTW#R z`Q~>4?+CI7`#?eNZp8T1w&eF^+GZqc7B)dKa zA-FHHo;i=gMAvQ>l*{P89x(C=e$aU0)^WkscC+dBsUC3xVVpR4O#HDOS>5=X73m0+ z)c#z>=li^ASTj6W%zFKTgV%W=noO;rs5C+fb9W4_*%{a0q(_$OR;<&BqVp=P6Qn_T zh7q@|BA+JVRCjbJEA56?s)MO5)oR(ye4_Ehdk%r^(jk)%LIa^#c#h(PDy49^caER| zRFJXf?X)t%h-Jm8?0EIJGdeGHBKPA${;k&^=AI^=)!;@U8|dM-X%$gQp3m;Y^XyT`c)k<+jE%m?Z9cgN0JO_t$*L^Vk7?4Z(1Iz`Mk??Yr?T zQbkbSPY@m%km{c4IOnC`Q#qQS=}4mR{At|`O(pX5cZ`|ofN;-XeCZ~_qE=!m{am)v z%UEO;>EOCwlG|01Ig=WS-(JwI6PaO?ef+Et72#%Fw&T~x-Tuh2_D{AMLoYTs_OmYC z!8-JL*vC~Lc3Tos7qygjg+)F0lt{F_J#=@|_Ex1zFc{n4@o&ibGw=fyGIc#!gK zXBKSXs`$dctD0WKh?Atqz*>bPUB2_N=X0D_MhH64o=6g(L{9ZWys$4P@QOiJo^k zK5Pt9*EGS}<8Qbu;57DJ7ikmsUD*=pp-?YbCbc{-g}DCZ7W?!U7y~9Xc_kPN$`-Gh zP2e3NQ6aV8jcU&lh-F(MCaD^d(Htp}AhCJJ(K^w{lRwV=_KgYalR@T7^E%XHO z5&1qXa_W)$pKc#GunsCn0l1e7w+xeXyKg!}rhDL?7U6>e9mq`WWf44#$8>u>uIDe_ zz98xC)B5WH<%Mnxd=pKKJ zv#Ib4$@!CpufSl^rO-rPqOseM4jT1jzG%4rSNtWPsP!`e0oELH#}8g*JiMB-H$dy9%t!Z7PxYiA-1{F2J4KaMW0#r zC7#xe=$GxX0?Vp+p)6;sz^zu-fUaHDWc0Gy_S4v7{Yx$+?!O%0VlxOnZ^f^PSz#< zgU9hg$CdPh@Rq;Xb(LHl4n+Pazx^BM%Jelg-^F@Jln`~Ez$w;;)ggI*XE;ID->JB=x<*Hhxgo9$6yb7Dx=z0k1}* z6@}nW5LD*9uiohX6rMAB9vkHMC^Ojac}ixJ1%lPW&ITsWyk0Q`z$soFQQR%aUT({Z zMd){=KA2^H5`4rLwWG(=&8OBxYvUhk*+?^c%1F!?b|Sk7kwj|1f*6qCq1b9}r752* z@{MmOh@N<3YdQ4=WDz;0SYw~6 z6O1rdy)T$G&x<98m1|3HC&H3`4xboIskL^I>%Ew3e}*DFeRg{?`jI8?-s|AT|L+=y zZz{QcTP)0PFU`HTae0_ab&ApovUq)s0)r2IJqp0__K&|hTXg8f(%5zV!WA%@>bYC9uv5Bt)G)?fXHK11AXA2MY zw9?2uY=RzYlRy=LquY{~u3YtnZKXAbk9fvhy(zLi@xH;k z$hw>GTc6Z$IH;e=JvWfnNqQGM0ZOvBzw5!TkA{IC4EP#9xN@_&+DR%iK&gza0i@Fs zVitOScJ7aBXl|$5!%k57>bIw%N!~?4x`RpYRs<2*7|ry$#{;4gkVH7k=Sn;gLBs8qyqs z&TcRLv?X2^8-D8ju$n{mmpcEJ&I=-ZYa+G;J6i#hzH{bxH`3!Bmvc%J?#ZOZTdD8< zuUkCl8cqEL)TPzd+?7liYOVtjmnwlaqL8@%4I1H2d3c3Mph~FDZVW-IDQxY8e`7Ik4!>S$XnIa zTTMF&3m|K>a=T0RU$TqI$2A^flc&MsE3NiO-BBQ~C zmC(j0{UC@eA-{w1UsWNa(%%>|i2VK?xc_!~brNGRG-(VK`x!9(a7|nTo^EOpv;)B0 zItFXxAl4!JC5wtBfl@C=jN14J7e~}UsPXA04(F&Sx=UJdwod4`+HNhFEslj4KJSvX zZH?9cT^c`vb(a68_XdBQ)ag8*>&iEeNMhlo!jTOL_DsKT>u-)}jn7T!VFcXyg2VLb zkQcIadMoZ*w1ZwEW1>pHyf&8+P|;tI`B|Ty7FX6#_wzjcQayPkuHvwV5_|Tmtg?vV z@~5t+(xnvpqfxg~gjrP`xALvRiSuAy0TuX9V+ZVX%#ZIroWVkBPi6uUicOy^WF(gnBzH=D< z5OSJ%)K48uI}p14XKXtdU@WDBs-tIoG#?tSeX*ktv^+i#6OuHP*P)gR8gQzQHZ=Yw z*z>3(@O>qNGSqtb`{|xc_Vb_s>Jg%;A{j-7?KOvA4g&kk-D=ln{sk3s6Q}wVsE}uA zMiND4ESvQz?V^^cpcM)F=Pu>E{BzP)JK?V;l??TapApK4h-qnO&G>my}JWxWubKKEoITNA~Y=OYUigQ|oF?$(D<{N1PDfmCkq z?3-N~$Q#oq0OhQD(&bF;q=GMt?grR&XkFAiv*v=<- zALxLHAiv2AMe2q7at2j*V;4%7&N=4#=<5^QBiGHlGA#Udp=`+E;XqR(m~cf5tyrk2 zff6Y0(JPK@_n|VLq0q_&N^_Qz<;nXa;mwEILbRDw<<~8|bG&1v^g^|Nb68Y7mHE8P zzkF|d5udHMG9N(T%hZp~i68m;_mdpt*-staQ$ze!GM^|MnM~6Ez8*b)G~ZxwWt;5l z{@u2accF^gZX z>~+b*fOtHp!rR&C!UQ@k&@ao-!yrs|XL9Op^z_s`Uf1-hYYW&a8yt~j=M7v36lUI! zZk_Oao8OG|oasD%7wPnviI?vtAB*qHz_GEurg3Don}Q976{5U<0{XB`%L{P(K2PR0 zFe&rP(M&*kF^8{L?c&%v(Z+!!mC@iQ`PIVfUVZKEL+kH$j#Iw=*t}N_>?A~VsUm@P z@@89@R%sNvLH7;1SgO3st72FU(Uz4eakOEo#h;R4LTDV;1c}t_EGh_bk_ODkZs>aF8R4~)+HrXW8Jj>|;?|CL%Cc2CO zcp&+os}dTUO~?w_eIvTjL5m!dWJvpx89#q*-3&PcHMMJ`hJ!ZyEx}v|i84dy_GrxRgrUun3el)U+G2W{xNi`xt_Yr!OC@EP*{a zJIXt2afvuHi}tTPm7pt8upkrrUJ{H%g~$A+pgf7F~kwA;L_h zz?C-%f*=hPL5Diw{V>xg{QhWCxI~=z&wt z%f8sQ*Mdz$=Q3Y258c9ynmf}u&2Y;&7@Hm_jh*}t+7e!vRi<`&S^UWCN_&B3Cw)$_ zUOPf~EWuPxN6{O3d5EU~DxQwG-tq3G(X&|A4~~6AsfcJ#!@Je+)^5j4OTfs=itD;Z zSZ_)95`*T6@|#I5O;@Vf%;v_u>Q)Z(LitvssEPV!+s*cBY$hKzN8g4n8^Ou+O$hKi zvLUgC=}xr_SU_6$U5e@kvyFdV?MXn+@tKzyo<3fea_@BBLjb;fng5TZvka@UTZ1qn zEl4*?ODf$ZAstFLO82I_B&8dqC8fK&Q@W(PV-wPK7T>up|EfFQy<(o3d+Kkt3QoA! zKQ~>U@EqA~ml>2ag(H_$3$|3sMFHLQN4;42-=^Kv^KUWB-aYmVFVcn5cFNP2EQ4?e z3|M-Hbd~$ZS>!;I5!JP>XngLb6nat)cz;TGQ!^AuxVP4?u6j`q(u?c6j2+!p9v?c! z^ca;V9(EOI8Ye@$n$N@Rk9|p{t&k>*1&cl9q=Pw94&E>v{{N?n>HfmLr?+%;48&zG zdE*q*Ei`0QRF*7&={9ZG&dDDGs5Kd?g&^Ops3vFP+>mJV`p4Z2WmH7qsA-dc85&=e z<9D0NSNxST`e_t$if(@7K)mg3T#fu-`?~n&o1^bgiTE^yrY`-|198dY>X3^nKK*3s z!=v*#1eM~nQ*V3>5!jCux#&KcmX>J((H|0GX(;p=7&#Ou{M)&`Ssds4c!?7Os=qDe zqG|1v%bm>P3I^1(45Is&l;xW!3z`nQdar?=-!^X{qinhm*af~HH3?>B_W@dIGaOej z2%4-48HE1jOfc3E_bvx9KLSKY9m=WnBphxgQxn8_WhO$!mapG`L0C3Ja|G7)C5Y|T zNHUw+P+od^FW2RG0#JX6k&zi89d(a`tj=tzrXKo$Yt5*mO>V|*H7>Ys@9>}tUX$gg zf?YAnR8Ge|=*13+G#$tiO{iDTAnh?t0q++mPfS15Ni%p}xU9?HG+4T7PO@v6&+|pt zWpb^Ov_ppW7Isn%jEs7;B;->e`XzojO2`iNiHFrpqliwUAw44S?j6*DNg-821aW1| zp70cZS9@tG}H z)~Z|K{p9ufSkKt?1_n_r@Y#f^BBG+g->CWQ!#y=jIz8z^KOb+qWdv`N0pj)o6kQs3 zRg}&8F#^3s2^oy~Wrvd4p~4Iuukf8F({|iN4+x&6gwip(m!0Re6UVV4J*Z5sdFsv9 z#|e=&-fb5b^)e%PZ1GnOLeBLc-cPUjdg<}DVaKT&Hi#6!si^!lmsU|BSomrY+Wb*i zcGQi>{mVugRTBE={Vgwlld!UC8KFEM`_xSkD2fH6^%HFr0I-i>s+dlzPDlYDtr3rjW}>Z3_OTi7gKrQb>C zLfIC<=P9ObN6PC}#I|;tr}Y=FNx0j;KJ%$q(?CqAn7MGj;oa%;HB$yRbhbf*5L%q~ zW}D+EQ6IBH?sMAGNZ}bMdcTwx3&?1oV#WHL2jA zh2z%n#Fj&&MUT(fxTZ<~<``>sjC~vi;gvQmSB#OAQIJNU&m>aOrn9e}S*&GRbA-B( zXVf>0K3$VO`2{V?k?^}jj~n-@q;;+RPTHHlV15I8=Xfi-076BBReMMI>1VP2rrYa;4T zSpMHP{iaIyXhze2YM~Ws_whh{a)f`EnXTApo8x$L$-9@W#vtWlN-M<+7NAhu_*A^RZeZ|_VUvMyNSpA)G=BVBde*A*O&bZv9hv$41;45*3v`WJ~40 zgbPA{yE=X`W7JEtzombQHK)6>9jp6%arnSlokx(SJo}xcmVwqed0$lWi0wN#gH@Dvj2s4;EbKv>)fTm8e?}ONxRetc zjLl2LYrUv?{AC5xo+~fUbpf&^(Oykl9L81wI?{7y<=RLH_1(@2-P944j35G=MI_Wg z8Oh(tVBHW5eOTtQ+3`|;^W6|DCMMqbmlRfUO&Xi5PRdBEvwfr5s&9aX`%80gA>vtq zbX9F{&q1w~TUD>qx+fSqY7K}`@6UXDAO_WMvh+0=7n1@6Mq|Z7<4Co)cY$bi<}XX> zHu!Tt{8L7*0&`BCZh^(Tlz}A7>Vup$+iwO7_?FnoeQ+b1W5MV$6DSPuj#{R#Su&51 zr0Pq4=WmIqos3w2*iqARthHuc7)DjcBqG71zc}*BPwAC;5!cDHa(W1}=1W>&TB~bw z{g#X2LCZU1;er;RM$l5}?+xs`+sH&>@-^YfqWv)3#zpCRa&#}8$~yV*wA1)U3b22V zDLleI{o`wkg}PqIruriT=ZWOmZd64L;)Z_Qzx9Gogj{JO6;0 zbihpVnphTUSO61791lV6z_4v~$$(7Hf}UekkRX$Wp0|%g)edF6p|(}jmEBY~WQ6^X zhnWXO5&O{j0x_m7;kq4}wL2kS1$*7ca(v{vX}Y}lT}|l3k$*Qg#>{t|SBoD`T7N&( zWH4zhS!tWYD)5IdrRMqnbk5b-6dj>U#r?VZ_&cWqxtyT5oPfMygd!EX6!%Iv6Yi~h zsTO9o)afT5jitH6xIc6Ep+D-QfU+j|b$|c>jJnp!C(+DHZf%JpQSVm%9L2^EO9-jtxlcYA;NcEmwHjWbG%WZuy! z`3SZ5UVXUd&D)As>TEC{LkwVOQ((SozxFxiK%$N+C6A8Kod#eyZZguH(>~Ijlv3z9 z`eO&*-Yf0~RXbYfI6GPw|7ozJ%26&WeSfEH_(zs@wZ-o`VnlgH%@6Zscv=d5HJjGX((XcUR5rd|SG0OXx>%`!j@BH; z2>brj&G8`8trqW%faaTFrp>67^43Oa$c=en;WtALKTpwpN2Yj<5v;;OLruc!8PlU+ z7ju+U`_x0yEUeFj*I*%I_5L?-_gs@Vdw6huS=W{}+eVvBq!mRe7DE<(MTh6;TN~19 z2g=-jx!<`gmyE9YkvfmH_l1q00>NTCt`LRTVaqEfiggjtTW-UhgM=5RAaH?G<~nTQGMSRn#`M7mZbo1sw%E)AQo5X(m-gG^uB`>lnp*J z=%4?cjO%V1jE^x?X{BCHdD0ehW@~S3Hv2JUC9Ov)i)C2;yPXhJ;3ED^tAJ`Nj;xYk zS6tb2FdSoQMW*2`8O;wip`~BHj#4D!Lu+y;k_mFM^vXO4Y|x1jtyV3&zLXn47b-hH^g(=vHAS{s3?RR#7yxMrZ@~c$8e}MIK_~9T=-ABTmF&_ zu~x@`{LSBYw7KfDcNpzZ52tv&+gv?;{X1>ftv6%duMNIFUBrwEp5XLJB(P6YtwGb+ z?766PW>MoQ;7j?La}rH+I3!;pqu|9PH_7Cg>eT#qV?{lz#s5X97GInE_OWW_o7D-k zUingb3#T~U@$#qQdZ;a9I)9b!)Y17aJ$8j!w2^Mz;W}?mgR#?Yj=pyM_nAi29rDl!}=?he+}4V|#^E zZsEzXPp)0f@~v``j_rek(pRp4-9shy;otEyDB&*$o@<9b+kUa3@ny{qfXpvhUsesH z%=BiraTS}&e=Cm_`)qo%#Va7~pw$c{v!a)jKZn%rkTKo-!) zIG4;(F>GRl4p<5lp&(~A|n$<18;z6VL=VRh<{l>@r1_@s-+krW7(B}j-;A@6IOt1-#0-qcMevSZg=*-+`&d#}mOR9##LjW{eks-|sSi9t=*bxWJozDNzSr0;*?hqO~GgrAIIvyIp= zc5u;{qRsF9-vQ$fo+Mwem1JRLDN7sO{vb?Hc71zhJ02`}9Y642h?S zbyIFio}OScn)w>`59{^TYj!$2-_aJ>ngv)8u_h^L^l`{|rn~(6mJrGWW@kcAzMky^ zH5|7$C?L#NNJI`ty$luL3V?_>a=;3IimIX_tYOK|8OLb2zB!Obw)`ft?u8i zZ6uhB#M?VSnIWg~ITq8CFs5Yv^e5 z^H7d(4OSj5>J?v{{RATkKp8O7_^-u>;H#BqH&|B~he~<9YE2nF-CdQPoQ{%gp+B9V zy8`^^gvty)!$wKEj>WLeUv#eG8@dg=DqOl9641>&>D7ANErgYEGuw%R|7gWKt1Zb`x-9u8sK!3yWcT+Kd-E6u*zdJ@25#DaP&Fxa`C)A2c*gccDm{L_YiC&f5HoCR%I zXW`oo+4G$5R}cG7R8412p9y0pR{hWILP(M@i(8_Azwmg)_!Qt+Gjp5O?veiXYt#N==B@kZtyK=9!%;tl+@7X0uzI_Jb^d<>DTExGw36L*LZrS>pl-Sb(h{fID^GC!;_MX4vkvPT&li-I610PKK)mlmwI8x( zZ5)8ja33QJd6*bsEesM@^V)>5r-|;}OI(YsbVQr;{KcM$Sg#Gr#LS zfrz>PR9ua)G_L2fRqK*pn>of-b(JK|a;D*P`Om%Rlq<_fwfa!ZigmAOgQivgPc80X zCHQ!-3Cj$cWVN(5mY|PL3Fm^pXVd^_0okiK|5sEx0Prlm9<*ueOK48 zUs&{0)`MB;;Nf)&ZeDE&s0siCH4+|Qqy&?y>34dbEB6gG0(?$~>UCi=E6=W)b^Uhz z+y~j|ORyS!5abUJapy+Td|E%|i(K?}c5&OhtyZ#H^S4wGU&9#@Q9;OX&fVU8(HU^n zSQYBHQp$QPGN6Uf(d_UTWe!V7AE(!fN_p3Oy0Bnzf3B#t-}p|7RiRZ(WRl(R;f0Zg zwRPkPT1dno_J_F`7U;`}^NCk-cdm~O%IEHL6OAF)7eysc+PJp1MJnQWXCY zW*-LP>M_|bh7BKOX+T!vY%GYhcUNgN7@75t%&=;^LL7O$2gm}zMJGVHai`dQj> zTG60+G1Jou?+Ddb-hWo<6_8HZaHm#bvFIxtm2N|dPsAEgN@=7L0HiiL_}HVbq^AF~ zj@1#%LP$UyQ3;18Vw;T;@bAzJm(SeVkU7*nYFe0@gWJMf*yWwR*a0l%r}Z{`azKI= zcR6y!MtIj3@n++BN{?ISf*ectuMX*@AK^mfi8hMx7j@R$F-@geN`-!6(HPoyxZw14 z|3Xdgq4D##XK~-_?-h)SN+#Cy8wF4ZyE#VgMkM>KmMXDiyM<8(D0{1*3f#1$rB{bq zdHPuDMwh0xNnnMtBK!xp_usu++q~|7b0Rw3xdDLc^|CtqRAVULNep_pr)(dK;uH#ose3Ox~> zseI||v9Mtppw(;LNSi7kgUI!rJCBBt!A}$5G{qV>;D1|HVe30^joG__43s#`0`&bo zD6lCa3`yL#O4^|!Fi^|QeV+TwmPjZKL$&$~ij!wrF8?d1lUG7X%U@aw@uf6&zg}Xs z#;6e20K5Pv@5+jkeCI#|RA@-COc+9>E7@Hzs!qC*#eKGQp=<@#^0gI#IX0l^hKnT9bB>a z)QpUd_{-!RZClRMPtOg<9XaYZEfC-7uC#)s81_~C z>Pv4G&2^P+C6lUd%}iQdErzcylLS&nZ}l%mnX_hvNp>8SHEQDQWRSuyd?6zv(|irj zWXw%sx4HV_Su0!fWG4AYIy#MqZiA~!npj@(LeI+~4R{RF`D;gBg1}>}f*|Nb|F+lu zj3oGy&^n-&mjv-*e-tUm`Dh{c1*aoG3>@vHEx{sNot#VTLx24B=Ql_EKuxZ7UTk?%*@<-N5=z8o4lmkedlB_m~~CBVo5*C zMECq*QQ8nV-FW#DfqbV>x}k~ERY$%RrzuT3a#8V2 zPTl^Qf%*H--#IfTRULS6(dtMU!)l)5q@p;d;_INXr4n-C3;mt}p3hU8y$!wWba|v2(xG3}WkJIbL->usH`4>BBkwerY4D$B(n_-(j4uNIHG*?%B8rqOy#lXcew2YqR1 z2wLwqyW)u3H$yhQCQgCV%Y(FFVdl;RYxY_qrBbPSMp@c@{R4JbdA-aH-ZH+MLDD99J&&DyK=qrPU6zcNGLUi$S=_Vy&%FU)<5@O z;pm544(YgC8^5ccRuYDu75IsazL`A=3q}=y;Tx7cx**;^BzsKyS_WCMwk?3@b;FBu zH_z)(Tive;ZnzA<=OmDTf)`Cd4#|>z}&W`%}18_$M%YyW{ z>;Z_p^|LXxnC%1Ze)IAJg*YGO#MBHV@+^Y6mlITU+2^n9G_~EK$r4FoL1gBkzl#MO zr`+q*zV}zT8fX^lbISP*o`3kx0g8dcNl5Qk5$C+84_GoAp^-Y{u1$4)(auSyxL3dx zs-mXT)8Qu?(ivSPtPH2L3*^6+ulo4L93fOAT&iqtUT?qq{K%Cv0Q5G%~wYC9SqpGWrrkJ-oK0( z{vkOi$8?!WOK>F)pS+JBCT5Vx`Qh+7d-BuyyNZ(hyvK)KxU?HXSp(F; z9QJTZIykxa!nf~cARiDDDfwawn#~2m^nm` z3mN<)YM^$T>Z_4!u)zVYRLpph+CZ$o2+dUQFL(lzFBI@armCddH%v`_BqasqUJzH4!Y1Kj+r-M5qr2}Tzukvy^}cIVWeDc>k5SLhE;pNn-iSt zk_`F?`KXRm>=TM1fs7+VFeW;t6lQG>0PIX1p;5M9LSigtDj(19u6Z>l4RR~%&)QnZ z_cdTSqbu_`O>upc6LoXJ;-Q-X*XchfV1`c*Rl=c`GZ@#j-cy05cGYHNdOFUmQL`1O zF1vQ$NSDplTUyt}{i+c&EmvhpS6)tF9a7glKA+X|VpzF9({f#>T6A9dBKUZ1a6hg0 zfQ#;Rgk0LVPoMBwyAK%6ie*3~bb3T}%bf`D2mn(ZF3_tjvV`F|8(>!daJk^RCzGKt zeeKDW##xNo9B!g=lefOj=mJVw!cc@hN-71^oSa5_rxukqqWtD~uHA9FyLZ+K2!l0h z+Q>H}a%-rAGKTtEl(pb>H1~Np{|Ua?;FH42GwM-N5O~&={;+}rj+_CAJ$B+XEqJ>> zY!m7jjf8QZgw#iwqPNX$*c`uYC3DnrI1A~6<_3cUhwb%XQ&+&dggJ2mpT;x1K-xLX zH&Ce8c0sKiSJKxag2NXKY!^c^&795E4Run*ufVSKu>A!lqCS@Yb~l?bKJwge15Q#ES1(&lAkT#WCpWi znM;0;^Ut#XV)jugOaLC%aHFUwiFh>zN6Am?y)aP>)mrUC#7^ry#>&K@!G%`onu6dH z8R^~MK9^M)y&ce@_3!nvyoP+#zzZ-VOT5O&>b`B`ie)iNR?OOl4NyK=fTYlm_P(}M zvw0=tkSx=NSX4Xl8$1@TkphS`=%aa1)r;gI+v&GK~-IgvX)s7!Z?Tb!9+f&4a$ ztiJ~`g%K>n-%8BsH9co;P}WKOfn-c&*<@VWT>E$M@%Gu6bf%Rk2ho~g=l5LduxOkf zf-j{kQ=bKI@fRI8!ta;7|DiW*4?dJ1bM$?(Vs?~^H_9o|Kc z^I$h-y_T@>ev#rd!&{F&;*M07$uh{>vL=Wl_lgmn=&|?059fCzTU2prv=L!JLNV>Y zipQSt^38hP>G&vrH;v#aa_dQd-%r8ULtOlkx!+gg_Q(Sa<$i-RV08RsgxKv;y@t-X zCWH>2H*pv1w()_rt*si)#N4t$INgZ7NN*<@w?nISs{!?e+ALdv2dw{S|Ha$gl$Y(C z!57sK^5LJ#xDE0Im#kh}RZ7RC=yTp;8$_aX9+6@z)-dIHS1-n@iXNe{ZyhJc%4jyX zek3lsrd&br36VY}5Rp;@2+a)5-;G%?Y9h3%zKjgXFxDu6Dp~}!Zukzb8RSNipJ!96W+YO#dX${Avo|1{X1^} zC%}1&GU_*_Fg87dg6VGibP@k5Ct)jd;&#%?Gu}_IOL}x(W`Km>Gl=iOv!mi7nevZX zNcxBQ7a=SN8(4z>GSO{;WUfks4R#5YmUC7R-kZ<=3p^>$@#28fI^kTyB8N<~ui!jnk13~+3K^0L~m22H5KFJ7YDT!G{iP$ignB|DhUY(y%qMy&>ul!k9c|=IBLUly;Tw~rq zlT|Qao_dF&mgEO#@lkplJ`81NNou0E?N(Z8VeKp z9jW2L(31b?ITJ(0=77*@M4y-6q3LQP}st;%<_i>vDd;2$eW^FTg>GbT>xAynde|CA00 zywn0Tne?_G0Rs0T>~-mw+NYY$Ax8VSVd zr5OI<6>}EA6zSqnvod-$g0$oH3srp0?XtTVUbqosvyh}tjaH-0gCp6?vA z9b8adi%omAp{p!lpZY=c1=>t z^&?SS$0I~3xk(TP8b@jUm&*jtl@bTM*^*TaP_Abo%%gLGaP+PW5SY(f`5-u$0`p7| zuz8Gc>|rkS{8PsNv2kd@%%)PeDnf~8NtvSGSw5R>4)^H`o1|i~Rn*3YVpUx^f1 zDQK;?tnyYNm&J2AwN_gAX-Q(!Un+9v;HXcK5lVZ&>&i*ytfyGSEhiqW` z{ZXu3{mrAQt6yyxc?;FE(rrw&Cn3yhzMdgBvX4>bqu+7dbIs~R8@qa?{MwwoOWW?> zuI=%|JoZ0yUAcg~XgX=6wx{qX-FPc^;%%mQchP>F=h8TX=;D{J(DIK^&-Tqbdm1&xH0yWMhCu) zkaJo3kI&D~#Z8q^6Ogt+lg)D*4FM``NSfT#f+M%f30ctP0;RVskOgK-mh$cmm zgfm|$#Q6F5)Tr!_ebqv&!<#ezo2Jk$>rZ2Ytp9z@2#2<3|0l~M#r zetX%3KOPa>r`J>H!*wn*Vg->uGO=5!W^o947}KVfT^8Nuue3Fk-4iF0`>*<7T9RmO zL7Lmo^7wqd^e9e#&SQv^8~Erl>}{Y16J&N3TijJ@%CPL2+&eKuCHJzCC)hq>ZxENC z{kwwa;{odBQuhxd>1dYxS%MstX_pkqlIFe#-p4y3)9Q@0U52-AyP#qF&1?m#^19o8 z4Z<`VXv>S|W?(iL8nnw8-)Fhp;<*Z;_PTl8IOMZKv^3P3L6@0Ppg)GOW*GBYJONzFF~~iw3h!#CnO|X*R@^41L-S)ht#=* zgB@)Ld)cpz9PKRi)aB4bKCFzFkLH=KqyqKAg_+!&Qp-Q;F3aFKzpYt_p?Yj8r6=m)cj0rz9;Dqpn2vQ;1iV`#3@8@t)3ZymZ;`B#4K}=q9 zbb+K&Pc_JC#HIHWMm~&cB-lEe7bXMD`MmqVz;Jw&UPLlO%Gu zVu+Xv4VA_G7YoBpOw7=q@x6Zr4U93%_%QiERpt;0t7$XPgs~PC{ZY@*Y<(I_lU8G8 z!*!lXOnJtChjta( zCJkFsXIN_*&wK(JX!3KA}=w!c??u#RO|HGCB6j?rKQ4cTH5y zM&B_lJzoUtD6W?$ZpgMqRC7#nzgQwU_x`4j)I{?`mBPU>pP8+OoJ5liNkGgm)KUT8 zs6?`l6m*>*&4;Ocx(i;KmPE@P5fAFf8N8XeNy2<%8SJm~2N6ktK22--=FLxWu~Y^A zhorhW*cbNQ50#C_VuvUI@sNsXq~Ub@c7z8yu8X72V}A551_s6lMoLUrnSAJ;{Z_5@ z4EJ#xbWS@rKfa!kcnn-ZC)!POF)A`iFD?VlTfsloK(3)Eo>j#U2ly&wlx)n!yD=#+ z&=7pw?~vdIJ{O}ez{V>l*>4u?U?3;i`|mrSpDdtz4f&;lPF&lIc!_69!f2D15SMlp z`pZ;)jY_6-d7jBVhf*FS&Zeh~4|oH2hod7J^2OFRS2Aj}A4Pdccr ziQa08?L72<&Wpe)DPV|za|)kx3gZv~K0L%@L#ATJTkX!>O@7v!GfGikgjzK~+LAB( zq<`aNGge_jtHIMcxqeB)3cju+r0z8r;M0Ph%+e;^k4E>W`V1MbqNtGNCV#1HM@IHy z4`$KPSqx`9-DKEbpM0bLd4R8OiPE}Qr01v;q!H1LeL;1>M#gs6L$h-WWs7e$TVQ`| zo*Iz1x5mUwM3*nCEoxY?+F8cKWC;Zth<$auc2HS!O(NQsM~~IMA{=ZsqH-<8H-Gzx zF7q@yZM*d$(#<7^7n}FNh4aZ&aE#weC<2?t(pP4J&q3{zwG*xCnFLgX#+nlcTe^ID z3E)D^h+GsK_}Cgoqq;`v?UfqoeZO(PrSuzcKB$6TXGdsDO-NQ_n9{WnOWF`uyz{@K zn!v6DPNmsYQ|Z<-$xoh7Y6XSv4XqHD@lah5m(=bVYTZM^Q-8l|ZUhES#d0SVc9-A9 zZl#-TUyk^fEPgXSdh0%n;3rnuin8)JK`9%OcnXBoCfVe$uC5o^yzC4OtEJf5w)AUl zW$en28FcIj;bNLls^V@eN2S=1z*vPh8yC(x9acf)IzbQr2o&VYD=U4I=)-Keqena| zmSz{cR^;RgacWB+!s!McEJb-gQqg%|7X$c^q&+~^L}$*+j22axsfw{xnZQoq zkIpg67&rANG7g*R<$tp2;?jP(aRCa=qV@f8@G{?wXliFm<%k;;gvOkG&KULF`}S5~ zyM8;_LY~-%aU@K8e;1xE0h!G}&LvLxJlzBX{n!LYp148qmpwPlH#6`HG7>v-83|q1rtur^aDosiSMs=5paC@W(XFPHe{%dg`?&9DXuxA5R^vIHEf*tztr_&Q zBw;Pp@0T+v>R0|isLPU$$B~8JMz)^dw&%nsn&2bKYA-pjLo35<`MwD-{6CUFw)Da&a6dn+~FYy&@!5UENvi$0Wdf9!Cd_i)d zIdd;IU#?O$7A;Mua%*nI>-TPwbTBdo?^V9Me4R!`n@g~xmi3wx;5nnvpQaOC*RP@H z33bf@kfw8tY}nfo8A*&*A(j3pJM#{WyK2fqJf-=jR64;sqqLoe4?um+cOp#j2@K^8>*W8ASD{(0(m6ikg9MCnhdxOOCRXh_19 z{2)^s^Uf=j+8G3^0Y(92V(H_9{fJuDa7qL(6eFiT=@Lzvou*MDGULXrdbX+1C&cgZ4>Gd zb^Ipfmv_53H>*a_vc75g)9OS=S?AT87qu*Bp0#bV>}DL+9<5T;il3Vddb3M^uBIAv zAyqQ^eaisQ>IZT^#;)Y=U;_Oe6x-ugpZ{oF8p3zO2OebmYPO-7>X{DTVVO_`nE;c% z39j`CQGog|5u0?$QU(S&b{*>XqxO#-Lf2Y`$g;oDg7H%MYXV;%Q}td;YpXz;J;>qy zFOXlpM^|Th|8&;p6VH3dmifn z7~IWT@`Z-K&Du_TiRlys+7%wA6i)BG&prV2E^{r?p5v>4uH$njT3YL^0X~MbxxeZ( zqxM*7fm@w6KhK`2Fe~@ND~31o2O|epTC*G=>SVm`moYJgXqd)r>+9Tl{^lPWcY{+1 zrQd_>Z-7f80N~4McIE6**=A5B&nSb#YsqJNMA<5Io-|tC>`?+WV%DwG#VPUpeHf9M zMJuT+0{Y<45{p63ok8~$B_U`i>>cG`C(yf4!)ew_NLvf;S?#tEb-i!L-CIKCxy9?W z9$I3w-7^8810X0R3h?^N)wN^k-p z#AVviW7Ds7Z&V|6io9Uv`o)ig%icU zME^?UW)LzX8$I$RLcS7W6o4Jjs}W?!F+!Ly)aQCWWKH(|+uWArzdW2RUe9q+`d}v% zEs+>5&6t(VQ*r0zRv7z=b3)w+}GSOc#M%8V`hj60IEeZh&TDaN3O zJ!%8j!iSH4@V=2|c=MzIENiT)yt*I_un7>UU{A?=j)?blxGF;Q8qy|M2*9*+(Ma7N-Sii61w0 zSgso-fO0C%a!eK^q5%bBuyWJHYdf)GmNWNHo$hC*+n~CMGzicjvnJ1Frw6N zMDVHW=m=QpU_DTj4#_%MlOYm( z*kh`!sIcu7j>G_#@%G-{z(mmi!tdajer_j?&<1fKIn#2>G?RO@Nm7N$J)9DbJ2f2d z+uwSdyW`nQf?+=3Z_UpqlZF|4VWd(a1G0n(fMw4%Z*$yNd0#qTM{qTVF`l=)R@vgV zHUHxt?%f3?ClQ4#k5TsIjcr_t#v;5 zJ^e5t1*DdbO0W2TMu2g7xc2up`i(1lRQN!3!h%MQKOnE2ZoV=3fy{KuvDGOTyv`gT5D zqS8`lp^{pwBkTQKj-+o6ZS+?dsVEpEUl^ha;xvY|>MoS4$eNkbv8CO2MZ&+vFV^Uk zXA6|>4$Cj+SKI(wbY<^l8F?^Vjr2CcxY!Webley!T&3ws5ScbFOEM&*Z%*%jx9B5{ zpj!i5+Uh3s=}YyF#d~RzsI6gf6&0%<@(2U@48h@N+O}mM`I3bYQ@67(Re-&gN<5Us z2jcA>{5!)dxuK!qT-8tnB#!GAtfu9F2=cea0>5s_>6OvTFI3TX(^j0RSmY$sh-7lu zZ(R-hu@(3`z&Tf2=?ISkfqRoL!azJ5)0X7F7S_tdmN32hp0qYl}^niDj3!Y|#vE0CI zWY2aXiY_3Bm76&b>NH$b)bH_;48cqux68ZjKv-Ud?r!HbsGyW;Y|$vxjCILr`SkU{ ziO3DcW2fNZw#IzQhZ*@(Fp*MwB?qQU)V z&I0%|7O(X{)k=lsO0(kA9by>RYuxX)iXSE6a?YSTpp6HR_sP#)gbihA4Pt zEGjMadlK|#14GKF|_t+ddPUv9!a~2Rh#bcToxwamq2SAtt%fM3*dNU=S<87ui*F{z|0v&%8ulVNL?=Aj>mU(F~&CoY`7UzbJx;Z!$ZVWo)q>KKmU8y3?)vwIqa8k$fcnvk0q zJ|((I9mP;B4YsZUK@<7-=B+eDS|38(%*1zN2iHZrf?O3tFjKWBCbN^Iok~N5oBHtS`wlD3!s+5X62wd?oMT7a2hsj z{x|=|_<^!aKvfiUVKDTz=%!wJoOB87=sYQnCLsb?o>12v^a zqC|_m)hv0~<51)7Yl)GUSNZ~^E$zGAzv%i&o}C8WP)j}9&YLg_;omQxX^^{4O(h~D z0i`A}+|r6FJZV?6ZI2hq#j1WHJ%$(jjcuVDKN*MA-?l&3N~a6BgDHGrVg5nmQFi@= zsPw?ID-}`bTG-f*+x5&ri`>>+p+aI&xIje{#@{@|ehMufv&2zLssQI%>H`~=Eru8V z@kPnskRiGeF1@rOE=z{m^@fo5-47^{>aNEw>&gO+<5574##wl7WgWh=dt4`WW>J|2 zj#lvj)Gzx}V#x@+o#RGfr~U4SJY8=I^K6GBb4nXjQml?2F0j}p+3t&&I+kdD*B{ji zr2dqZj6r7g%_9M(^+2ChyaPO3I(hnubT!<~_08=Zf(Eg_2pf4HVA4)~UY8<%%;ULA zBeDP3-k}b>i@S#Duow*+VfXy+xwv~cJ60XKtP!%uE0qm3I%tV7`Vi81Zn_&&-$i^g zV>UEi;LpO`{34%Cf-8*U`A!=1Zgf%?z8_(#uYN<)koMq%yUNf0NxVG%hh9RQBt)+a z(z|xVpYe3rQUf_45t7WwgFo>e=YK4n19zQW+qLheY24UsY}>Z&q_J%`O&Z&_ZQHgQ zCp)%{_v-U~KOkddWM{8+u6fRR%pixI;YdGS$-w{cXj_Am)7+Ma+m>-iq%_Cqczm6E ze4-=&)*r4u@TiEznP7PwV+Wi9pRI{y9tBbJ@F+7TziVLgh6g#jJUI<*wL*GE2vllI z0YmdQki($!7p-3A(1K*wC;4o@I7q9N_-R1Z9pfNh*PxlB&uIh8swTA1Tl;~n$KL-< z&uwk8V?Rk3E(u~np46Pz09UsCbrRbc9Pe~JppuzzC=D7pC7gD#L}(0)h*E(9+lVl- zmho(@6IKP`FNetwV(~6$9pvFSQ&^9Vy#AL^1)Xia4hAtqPwOf6tUi&BTCh`3mph0C z9uAe^Jcmbrhue~&(m_n5XXAGsGFyz%gxGVZ{-@4`5A*d~X^(6;(tMXgN)@g`mu<*C zMK|MZ5bXY=-TO0Ch8KvsAeEg$M+%T>j+ZVDyBxdVsZ-M*sduQ>H9^_sdOo()S=lQ> z>(y5haRss=cxik^%cn@9NM=(RJC$}m)T7PR!zal-8HW*tE|&ZKu=rcF6+ir40s>)xab<2@td5Pf zvc#qrSwug-cG=PQ$4YkuNfvbD9d#Bfu$cYBBnyfz%9%3W30}nmp8{HuKhr0{>PsmNOI@- zW3RZnv);Gb2(?zrbSFc3V&H*kb`6mQC(!r<}rF~4dN_hXsi~lJ9Y=1IVenZl-Zyt@&Xut6 z5ZBeeSDwURCd?)2f1njJZ{KmK^K`wy{< ziya_bEp&^h61~uOd(;$o)M7+zgB@4fMD_zlKbp*S#(~&Cg4)U38nf5yDvgAzwQM4yFcg5zO7P z4gvdX6t2UF^GwsHT-2v`ZUSMHrn+tjCEC)e)`xeccO-bD}~wOJ3ZNt#uAH&I|h#g4ZZ9Ez; zbhWfOH8QX=)F^rti6rT#g<`(JkM~zB_+T4(F$FQ`^=E2Iz!zyznVOktvW%OsPsRSu zEr`0@wXCY4R?Z=r!I0X*7kQO6Q|(ad4b@~w&4zMl#ibiAX6H?3{q}f^h2faRhcQ;w z=-QylKOFo~B~T3ObeYtC2g}}s_(;uD$CFnkK2j0P7$jJziJA1)tzVzaei=CHC@GF9 zvmmG`OhoIV8%rK_^6Rimv-%?T#ms?Nmxv3Uk!$J*Gnt~`8j6x-9M${4N}h?mdHfpm z4U;<5IFJp-#yid~l72ATD{j@=5-SG!6e;3YN#L0OT+ASJzSz}XE%VB06SLxXHZYSP z*O%;$Uz2M#1gkxf|0C?)=n2IrRSq8|l2lcVu<3JN-I;&H2Oa0;GV@=qyqTW0toQwh z7;2Hz3@#8Z&nIZ2*H~1=5Xx~l)1`|41q{%GqrUE(906Ike`Y@ zL8U}A40mm}cD%)U?y4#F9b~MS+w+h7Q#C7c_{9rCF{dG7Sb+&Yb0%no1lA+opO1e9 z{VBfK?*#fG)ZK8BhQ}%X7FOhLo&RjiW4thkCmo}Gih~!`x;o~c&!Bpok!)g4m6517 zp(;Ffam#NsZLNy25Hi+VFC!y-=1_;$r5v=@iu+O<8H22nFry(Y3{V(jFMFdpU!su{ zKlPq2Z3%5FaICbf%nnSj9cf^TA>q`~Yq-5wl;$LwF)zcvpf9TZYTA|h-hIR^FY0Jy zP4P7Qz|`nxxAabP?pXmuL)%}wNFJ-VaPocZg6;AiZq0um#!$;c-gfG$HngHzl4gDR z!EC#Emd^aaLEP;V+yl84G0^siwmKP~zcSfwOSq$}1U~Q~Bl^*b_za4E_o{S|vX>5Z zI;D$HURH{gJ{VT?Z;UH&c=TXbL4V^x%!wxKt_B*j8 zvZWsgqF`f4Fmms2GlBb*L7^RSu?C~{_Hl7`QL`Dr5auq2?V@oUiG?Z^7^ElYBgltO zd;6N3_sikhrD~_MJ@hD$qp89B)n+R(KVWh>?fG^{cT>d+UkImpqL+Ru@9;KZ!FL@h zUt_bzCPs^)lkq2rsxW5fEpXbRRI2HHRx3Oa=Q-6D=O5K(64-yfqb5na`IKu_s-f;3 zm>vM*B$fETB!b-hnp5#N`1jEKdo=%^N_glWJ(+I!IZVRrbP@oj!}`=2m^Mkya}sQ+ z(Sdpnx?%5^`D`;+*QCPH0Y%HS`6}|>r|FPEv~x$yxW~WGnsBx)=HDIA%V;s8sj3`} z)DL6rd9yuFN*}WH$~o$1tAA2gP1Im`@BICosgiR)eDhs;s>9jDun(PKN5%I%R2Bl= zq_HO`0nk^rwgU1{btS7vB;H3|YfhZ*7$a(j?!J7MAd+b;Ryx5;I{wM;%NP6GO>`L#v2Rt)TcXH{8e<;AHLP^9{2sM#!8~g1$PUcYXZ7|S@ zNwB{tM$|2}mvg;ys_O;2Ft>B0*FR+jtAB$+_#NZ!F7g*f{5T|>QjRtfcbvW4BiUx;gqRQKwrca4s7A<15RqJ|7|KnaylN#C zWP^n2k3Zp&Xb{yzd$G^IB(PGi?(O);l&R6$-7briqNwJrQ0KHzVZwXUwr4Cu@%)0}0g?-epb3=H zNu6U{)Zi=9I5A53?vD2EsORuX z39h>d1mE1Ysymd=4H0znf4mhai{rgQ=pM0hyn77Ypp zmKJxHR~!jTAK?*3pOG%ge%S@ve@ZtiM#I{uo5y*{v{J=J>h$~!fh5wDB5O3;U5=tI0lg>d6E^tV z-{J&5sQc;JOJtFXsET$9Y#M8jjHxpJx>%(Hm04kU5iHW0Iv&~-&zt60ObQ*=AD*9= zn-80+tim{oXrw)#SzL6L)e_gD$H6&YZHd>paa0+>vhRTm2Idb*A%4mI3;t=RPKAaJ zcgodQ0M;Ie9wBD*FANFX!kqhuk&R;#+98{2Jj({>9*9p)_G`;xYbeH9KE7UE`IT^X z3$c$ObLK3Li_-fY{FW$L_x{Lfb1dHrH65jNblvENJOr~2QMD;|VVRn$#=?2BCP{># z1WS#OQ)5h!isiEpXxpuPpCH^{1_Eu}aB8nNo+BLsNRu$j@eb*J4-lVyX3C6hX*IL+Q-W$E82A(&;Ou6O`!*HTQHY8WY+GC6SRi zT~W-Ic2+E&61O_jJL#XlButbd6?h6z2`od0qEZ~AD=qyknX5Y%cI(#NZvqTf-gReF z)pWstYb`-<_bNWvV?4V%(c-60q~xu4kHX z5dF$YN1t`-@Rr zaEx;d3%W_-Mng{XZ^Qh)f!7m@JcV3)e|lDfWLp2Ugdul-YS*G+L`ACRBNiQ3TIHeY zsgCWUhpj#h7COT!8oh4HlaNOl#jpYu2(|}%!G$`77p>jW9iOF;INn6rPkIFPf5S4_ z18`X3C6486fQ~n8P=TY-IaOe-{qW+g&MRNl?-_Tg+%mB$Aug@}rLfe7-1%dB)wviG zEGOk8+vaf@IzZWzLkH4|^POQpb;x~%@XDipbYqhK`$_;V?+b&E!^nAYbpbq7=g%%M zdb&)cZ8aTlYtjq)8+SI9pOxC=eWk7I&r{r`v@)_Tik7$0s#ci?UILc|4Zu1LkmS$5 zC((6OU$}T>ov)d_uT6?c7{`+saNyQ;=**s)R8obm*D$PVAR!91fK<}-s)yb8Vn8dz zJ(+#EF=i}p#h-Wj0Ffq%R7xo8aK+L|3?sKJ)|3)3d+5dHB;<>p{jCqiv2FR%c)%gt z?O)b;J@PHBdWlb>Fae5Ki%KM`kmqJQWpGe*FDeYkUX-f_@@NH|$dRE0-+9UT(U7`r zdhn*LQsNCD8DLg)9*DJD84;%}kp9b8t#tWtt2U3@a|C*qC%jtcHXf`na?knwX)rV4Rw?cO1C?*m;Y)1vJ&~NRs+uHY-wR$!J4P$4F zQj~QS!()4>DPo@-BK8)4QXsiY~P$awn!?; zK+lFgC)lxXfdmo>)DH4HG&TxsgX)MzoR%!FUf%NG$yt#2bFI1^XzBb%P#CJl!tS_ z@8UC2Wk|LPiiegw%TUGv4Q0nvu?vns8TF)L!ww9>x#%)iK)~0Yx^bxWR=+)L$e7xZ z9a{^3$@C0i2wD&z0gor?qA1%?>u4diuiN*q6{+`ETAV8XXbe4W!KiRb5M#kKsId%W z10(b~pBa!SN6Hhx4p&9iW_9L*o-FBQK}p7}h6}AEJ)dOIz>3*Zw!QV$lkI>}JvofN z9&AD6lTOGBU`?WFfjN-rXeWcsH#pR5v=o@gpGhwt=e!8W!plt?HL0{J=M+YXPnI&0Zdy)pc&#cts} zG7peykDa-qJij`(W0A|z)OsDl`Q7}bzt#U3U;f9n;^e~SBw0fqevSLfD!W)z!pK97d!@b`>h`{ky!%lUj)}>h>3*x+o6;_F6x%7Ju=!$nqx7`nV+*QNPtygb^>8F_aurtRP7Vuz z_5z&Yz${b)%+RXV(^kGm!M-8vy8Qi%ui(lsbC_I9wZ!9f0QMnI21K1uoBXBeG+oI@ zl;|#%hQ3|OyuyGbDBABr+k20gz~JM6-J|mH@b$!Qu+{M2>w`ENrEE6k{Q#5S`4v}| zS4c|G(29tt7z4hNrQlwe40io7C;hZ_daRrOf!@qTlnCy7PN3MAEzhF7(C!7VC>k<`OiE0I#V7+#@*7T} ztf-6%ILonkd=V~NZ{;5DiIak;2aF}CXIY@Ws3!dYmjDs0D1sq*--Q=*>RtYbTK`%q zq0@);Dm6fIlR(VR2dgis)!5m_M7+@yUrq4Al>ITL-0|%4Y7vJOMMvGX0cJ&e|1%Kr zH%(ZGu?Sx4;M|CFj}R6hugk8~I&nih75aUuUVMx(%WPb+sU--7gi6c3dHWyzq+yY$ zh|sROQq%eCK)A;{pjpOzpg2cCgj_|Ga1v5v8xs#fX*FU0r3_|)NKLBFx=$sEkri$J z^uFcz1rQ94EG@Z(pdRqrVwugRt}Z{<4i!-bYuXWhIh?6jT7JHjdl#~{)s)QFi>a%@ zCCSZiHD%V(%(fBA8r8k93}^8SRo-5`U%vTnezv`1W>~HnD z@IqJVuL3_k#`yWaVWtI<2yd8CJQ{x=ZCQ7?$tH)qN|KCPsjQ4_b1xFB<+podD3bl# zlY^`QasF}i; zLqviasE40r94}Ka{s34Z{w>!1F|}R#C?l%vUPuCC&(+cvidY5IZ;kj>PIQ%>zZI$} zG&D4FLX0*anuKYhApp3Pwc3W_*X31AM7>bcvajSAV``7S+mFO|hz*UPN)9tXWpp^L zY`*aVTpmDA9{;pzy)Jr^PQNqmu(9US10h9W$!U=dHil4)3rdq6z5C1EFa6g>eb99; zJUl+n2-emsBF8Y!V!6oKaO$Sidh_nvwe?RKdk=J>pN-{rtc30q^zv-QM&P4Yd7Nm#1CPrKa|p&KCh~0Dh$Y+ zQbRK7CPcbQ!&CMYKjsL3&ugEuVB;$L)VJPIk(ZW+HX7izhHf8!b3bvGWrNMpls0~n zLpjZ1?);c$8}Y1s-RF#RtM;q%PWBc+v_92{&57(CKpMQ`iRN+OC;qN%Ay=p(O%AhQ zSAX3ORLf4~sDzOG!L2}}!G6;BdsdGL_6;PK?U$oOViKyz$iWfK(5gyFO*Ig0zr}xj zmx&}tgUEbJ0&U`7x4kQBwGIhYnx7!&2ago(MWw?Vb_RCNVq1YL4Y0r%qc%#&DwJx1 zG~Jh6>`yq6t!SvQk&BVGc;L4@t^G?|eK09QPaW^V$89rru(ua97$2L^eDvw6n0 zyqEPJ%zlu?D%Zq94Le#2{Y+Z8M2fCCuXb$VDjg_aDv-zy9uB zryoWQ)}U>LuN*QBD_8jiQ+TmAO@{ik3jo&-KmKD29o69C;3W^S({pXm4lo``c}3pDzIKgHNBi8$%{cJ8zyOu9 zp~VMUUMl!a zD!RzwCgK*Dx&ZLt+etP44)Bf5&WYcL!i70DL=Vi7A)$^(yLerSvGaRf^FAxz$^mXk zcpcfSLz+-{-~lAD)m>AIVXWGAdE=119tOC~&Ud~<^V~prJ)G^Z0&%bAO;6%x+~0aI zT_$MrDsbh5s-QhI=JQc1YEi(OS7xOe2l&bEoM0 zVCI+Pw(b$q3&j;%E`w#2IVL;*Bvoip{ynPNHen{J}{^6XUpdiMuYJM?uQpQyw)@Zxg2;MmVDUA2_oCgg@rRTarZ zPM(|lhOz7N1*oxZzFxp=`zTt<3uyZB_K+y??%FS#UGd7ZvuJEeesKtT-!3?*m}+m# zN$zcy>o@Gk!-p5r`Iop{Z6=ATB)SAz(V0Upaw zqbMEcHg=%@NCB*xlnmiq${dF=pB#8jsEwQOb)VD8{>yYVivJQ)sHUJ;OuC2T_9LGg z`(SReQmoQqnz?0!QkY&UQK4~YAV-vBF!kLW9RmN8_*-N5!*U83vQg%B{76Y8(J0ey zS?@xc?~(yWkf7&p-_1jUw`O7*+@~*RKmAE0SJtv!ZsHvxSbvi_9@1I~iJI^#HE9mK zI3h?Q5P}aYg>SCyOh;wxjeo9*w}P5*T0v35N7!S?=#W9cRD64PJ^#MNonfoAxT^Zy>{t1ok*PoxaGgt?OJTJ-xn zP*swMP^#+Js;&!5?FmG|c|X59#70dpJz;?dt^{Rab(=?Ict-W5>p`EIFlw5Km~^b0 zqIhE(FL3F!J&w4(Rw0x5T=qy7Bt#V0(LGi_Cg#fz3{6^rMhfdzA3Y0pBVIFd#%?x( zR&e*)h;VZl*)4!vRH+PLKr~sNECx~ZYo#m#*=uHUbO6peKit*R<@5UVobCO;E?2K+ z0H-4@%4}XE=Eb>|pi&Uiayx?w!e%LSu-#zl6+w~1tdczQ`t1#!YX){cOu7jg(EaSoB9cV8>ocMOy6*M8rg1zTGlOgT zIya*bwc6hsh33qs?2Gq5bkS+t%7K@mzO!}XN90x zF4m$B@_-}loauKO+V5Hg+g@1HL-BC6ifE?i9&r{IWF52rJbA=+-G4{%lafe~Mo@P( z3_Iw$EFz;buw|POisjYc^8H=_2yuU|a5D$|1F560PZLNkE>IH05vz#mux9f*>$w-@ z6i=|l(jp}b!iQt}4I&Ssp`)8Sb{=so4#zEn^7IhVT`o|r{{`Bnr=xQOMY7+ls$Ue8 z;i|Jn228aBRUh;BvTgCuB+$;>K3&&6?CwuH%oCH7K$RG2K_e^}q$wE*0^7yDK19KLO#5p$)e!S!5Oc-3S)hS_e5)QQ#*5OVFa|o((;C@aQ46kX;a} zVEd-~G_5ntMS@3q=aOmV54%Pd}@^+u3}839r4 znFC0Ps4zcRlG(2RdBy-v+9+ClBj8@(|2+KUsrK5KJX6bI&CqoA!Rq7z{2(>(qqb}r zzawwGQi#jS9C^jWe$sf~I77uq@9vansq>#;e07FX65)=D8=qjEZSYKc411G2@Myvr(p+y_3U)L{S zZu5&BJRx>OE3LzM`d!t!o~J5IgT}sL&kFt1Ss2x8H2@6?DKnDCV}R;MvVZ&vQ7;an zpVeFOXh>ZxF267E*HR$TTON7V8D72FULDm=zmIQ4E&pEBJH{)kj86V91)~dD1qy%k zjYqj`OC1$qU{^PoPjKWBT29m36xAI383(Woq#b%?zUXsXK4X0DE@PRsA5GijFAEIV~s{iZ}(GGw@mn<`Z|r0KAHKmsc*{?z)|nW)=SqBcU2YZ)})5TQyLN~53{ zF{BWJZAC+Vbalz+nL_e+lWm(!Qb?7Pyhp6GGI&Zf5G{^lQh;(y%P5d^%1dUSQ#YG~ zBY-s79P=12s#2tOsP&P@!GLp_0phD0=aVqF`1bu;G~0x@0}972zQfk9|AJnL?|!Yg zZr*IMbBdr|@WpRV6S2GoN~J7?YR`C@?T@GpC?R?kbR)I8X*HSa=8r?b8qX=hMmoah z%;7*ucBE$3E|^5hy+VPPPWJp}n#vIeQ%qA@i{0v0(7cNF=G~vZB})&WuVZrPI%1F0 z5LHQaQfgu%OFj8vL-5PSbfBQ(D8){plIG^CU0bMI=jpkOnSz|a&VK5!yeJukleY%j6aOg!agYF%_D4XhYSX}52_}_MxTMxB|R~k>Zu?ILYcb>y^ z8#W(_y%BiDd;PU>+&U{lN)pAy;z*`T>~A7p>*9#TqppH*st?Tg?xe`Rit>ksI`n-X zIvpZzEbe$3KfnMpSTFvtG18BbYS^MbN8dwHB`PEd2d1b&n5)Z=BW5@?LvjChCR zs=`kgUU~J7*+E#ArYvjv8;$ZkL?RLvDaxXvB0wQUpF9y}%Q;W}9nkjBtE-9z#5l-h z=Pz5Gb~R7vaTM+w^>L=R+<9Enwj-(Iqr`~$o=5o&4%vdyRTJksVaQ{`y7=`8i1Z=EmnS%R8$VQ`HdFC3IF{| zApjva&7{V|3JMsqc*)ZwZ0G%G0{$u5=Jh@+J%{h%<4?i%3uUq9m6G$S-o0AV&FMgQ zDZviFlrvkd(iKtMBUs8)Ems6)8Bx&|zSzS#2p3?%srBJif?FBcC~>5g!M{|d)fmQQ zMdh`_1ECtr5dABi{wrAbwOu~NO&46-JJ^zL`FL*d51Iz{lR9)JNaeM*Bo$a=Yo(;isx5 z=vK5RIpEf}w2W+adOcqSZ;kh)lPeV)+56#Au9Q>jiZ4S4(M{-*%16_?>P&N5b6l=#UrA#7>Qq`SR?vA?x`P!XW@>?@Q1 z=1hy*wXVUD#Eo4=Duz0)3)>}W3M4VSph;AbsVr6JF$Ig6Cp*Wl7Kve6ep-GZf zRp13tlBlKtUiVqp&`4Xsto(I6{~ZVw{Xm)G6h^Zck^5^I%M^uGcmjGMwhX_KX20Ll z9*T(9h4VYM;(}BeA@~q~;2rjDHljLLv5%3lq z0>>Wjz1%z-)22Uq4LWI{@U%@-Z4lM52gxGgeyD4BAy4S&4U}#a#W-{ymG~DVy1!^b z9G1#->prs-fygBzI2ok6361B^5}57p3tjA^dPD<0@w3Sgxzuu&%`pU0%fDKA9Y!s0 zkJSHe9$(Raj&3=^-W29LbKx1QGT@1(aNIb?K;*M7#V3uHq_o&7QNB5t&-z-J5HXdMBmH?KT-2P!=8m??imRRCz+*`4G{4<`KS((spJWfmflPi_4(=TQ-5h) z)}FQrEVVisP?7D=i5o!w*ck4Xa$b~j>r)4U*3HM=X-RsJwyJ5_IcFg9d0Mt>yP-0k5BA zw~;+eOH;?-^W)t*J5y*U2DA9It95{sqy7Xqf=IUB4(6vIe}w5+Y~=^{QnLTx_K3UP z4nVj;x%7a9bTgsJNS!%GwNjAS-->o~c9C`Sfbn~pm9MX1FuvUEtZ=8Z69^}YMhC2* zf1vb5zzf(VaSQvY#93>WGH)BX&IrL^=nDr}w5J*{!nT8J(7(eU*?0CjwBUYUf36-Ow#1;8El93<1+z;gK|6Zp3-@M!W*7|28yW1Kd!#yE=QQKON3P!_GXWQN%BdR`9E6Bq zVx*ay0Kb0VNj{?O#ReZ__R~UV2A@wFP>N??RyE4B{8XOcn3LvK?wiY#-@JPUe7f|v zHI=IZ+e?48+^32o7|;=s!%6F~{Y6h8PU6bl&PgGu<`Hp*t&){~HuRLzyh2WjVO^qQ zImttyWGwJ3b3F_RLolcjDfyc#z5Ed^M@v|bjElSDyvS~gi7%_0%MG^C6(U5$6dA|T z)zLHbd=>nMK%SExt%JW_XN`#5>HmDhaPP+Kz zh8RtC{N+mJvw#;hb0+19=R}Qa{qqG8lU{MhqKjSh`ukP^W~KryZ*Th62cc&IOIfa> z?pa}pn|brLRUPFJ4BzJr(!?2G4Au}PHYyRa1e!sESpG;G*24h%-!k>wE^uay6rynrs|4lrb56G=3k#HY^P>4qR9z6&soriZdc` z3oU7!n3{5&yx2I~Xiq+$_W~+o@tl|eVK1rE4wG*@ zpGS7@92-zWu;Y6UGR7zck&=7JY8ph0-?SL3Hhzzo) zof46Gxkgh5K^>Rx)h5BeVzH4TiQ`1_7-_2Ej$OTE$`lA4RjV3rUspTYHW?=R-x0Aw z@&gOo1V<8>d&ED^s6$#$IV-sfEH>u^@hZuBS0O5Cm4+~CIabp2v!nmtnS~hANLroa z2!uO4J=3685BfyJ@UNZy^4U3SgF7h0%r{mb0tDL$w#qM(VUN3-B`^*9Ukm4p^|TCa zZQ;`ZV$59QKPLl_=6C|CZ3dS4UdaLRJC6pCqy9B7H<~h~a%A59^#It3%xg`IxbT#s z$9y2pDiH`X-bz+_ufM98rz$uy^E1cB5fcZ<$uXE_soQtQXi@mQKTLAu z)a)kH(Ykh6H*EP=Cct$&#zN$d;Ktz+Gw2v=Nw~t)Kz& zEIcFGKKsyF?z_-s$ALhqMvVSy9`{1KFd<$27Qo~6ef-t@c>H`GKK`#5gKWZ7Q#u{W=^up-DtYNmi-?Q6iN=(v%`mpg#NJ0Vl@steM#m4(`1V3MC$u z(UXS|<+mx*k7#;bqpJHbIyDY7bY=&(l_Y;@bDO^1()o_#B)qfHUU>06rM%sgGDaZV z^KG)VMAga9-me8@={&k#0a=Br)ae5ayE1}Rv*Ze*U?N0P-BJCSzzBP_3HdU0~i5~Xey3kB7h zy}hBTRISpsUt>v(%qdcd>d&Juu3L9fL$bn2 zqAaqaxaw0!BTj1po-qs;9gw_kDBlu^9@}iGxjr7Hyfh_y3#d}Z(KN|8ZmxXZ_5mbe zs?<-Osu@|?*ntoVQx#T?RHA%LndmbaVj^MQEOx4M4A{rJ zu3NqvF3G5?0*)k!Smm!T6>N}plezT&u5A6iS~bcct#BPDVb}JJrN0YxCvP5h|T&{7ioOs=ri9#U`4K+{)xt!TbOl9_c(uxHCrUCG&Yh?m&{%usxT@F(n&MucZ z$y&BSOHtLukSO(}FCRzIA0f7nKmIe(+{Hoe}byd4h}EufK| zny&UfT3!N`tU--~OSq8|0bLbmn*ot&JC8Y5N0ObES7l`in;cN=Kv=LEA*uy%%o(8F|CO<7;r!RpVK>iYLKkK(C0%94){;pOThl=y3F3QfVnA z)%Wg~^3P0Q2NHn@WY1@)^+zT2R0b~$qxdNXTJ-Sx?K$=Ut!Xz1r)ieObmOq%!7nta zygL;*(`QF$*`jeZ51y_;|6=K(+3C%@HxZQs?@S1w{Ej9*2FIxP~JvBfpQr2QQ9pKgD*$4}2`E=RqVvhwO zJe*9DW<`qsP%aN;F^36O5)+1-VMO!c++l6TCxI-Gt%VT@qYkzv!VT6X%Fiecy4n|y zo=j%JVI?O$s$`aZ z1uio?_i*)=@=YNMKn3PBx#AEwMx0AdJc~BEca0evGq? z^6pFlJ*iE=|v7Oiklz2Bk@|N*l>wTaP1tHy}z|7a3}s< zD~2}{ozCIE5!O9ok^vCxdYvB*gfw$Wj{nHs(drzfl%G~WGA}5i{_#CYe3?)Js~Gi5Cj6!MAj{~D^z&r2&!3HUH|7Xel;O0&+#lmbj01Ya-Yu=C z!>xrd%W7v!QAouSB&(Muv`3GJ6lz&}Kmg&Oc*}#C|IJa->43v4?Dtstc1h0+%pX)x z%PTD!SxI}~R&W-5ZZEbqiK2$etc&a^qxaps{y`QoF+5(IznCy;p|NQo3$nt1;UZz9 z3lzCEfnWC1CSCf|>3(%Qzb_W|V)lq-U=4|9kNXaVU58Itx@ivnqAw3QCP@$!wXyq4 zRqjAw*y9U+*a}3kU2}FRJlcQsx-^a_EP`TJq4YchFg`_boPl%cdJQ&%w-|tGgNA5D zzNGMClQwj{Mw(!?z+Ta)2m7St!)Ban%z{08>e70Uh6O~wJ;td2=-AfI_E1jv;C#$)6AZE_G7q6NVwer2hFz#X0%60k6{US^ZfI_|cMKffQjHSlr}lq1KHT!zQEu zIvs1QmaANQQDzjLGhoAP2c7Vgq{!lPamYbIfaJr(;q#kCw)JAWkp!T|K8(~wwAc@s zT3p~dyE$hD3+X}Ktl!UJewFqP;ifLW-yZ z4rh4Wc#Q^Vgo%||FIvU(3`yg2vm!R)70$HpkNNgBo* zm0Mu%@|bbp8s74C675{illr|4`%SPecdQZaN}iM`3+g$>ACmGwE=85s(EkS@EO3%k z2Wfs=PGAqbEB&XfsycsJ%+m=DfW_Ips=D%3w_=rS2{Do_0JlrBhqcW2K~CRGcLy*+ z5@aC%rW<*TQQ9A$*ehjs=Pw{u#kr|yweAY`yLOE9o=Fuard74z=l9>V0_9QS1bVBoIE z5pcyO&&WiTsD+8Y6NMpC2`(qu=uY+{_=R_0zc*jiS!m!Vk|+*@NikSN+ZJF&4@)4; z(sI!tP(A*THG9sC_72@Q4f6Fw6Jux5GWc!19`w$iEj5I0bi1CrIyMIp&(_{$R;XH9 zSH8f7k#6;0Rx&we1jOAg=@9ww+Zp86z$80?A>YIIwAJfGV*0J(jAv#x$7PmMCUJsT zf3aQmvt=jOwjWWCdEjt*jp_N}!WV6)bQdpg#jPJfIPS&=`?TN5SU9z;X2qJr`y204 zN-2lYvSrAC8wj8C&uq{>v7eaka>wg~#pcID^KIS6JQQ}yb_qw(&!Q9|QUy8eGINQg zafU{9PK)Ug&%GAB*2=Odglg=c`606{B*%|DX8Md<+2Tn?yJb6mPr2zWkIbK;G+2OH zS{9kOk|Y_qqHB+R=nwLJAroahgV$odn^L82`lV4th47@N&=}A7vv(v4V73W zpI?fd)u+!_B7D!z2GS^Hsmwf@hz4cN*OB7OLuclBvb!~)f+%5N$X|^t%`vjtfDfVV zOpu@V#+S53qyzenLjS7-c$D1n{*OP&6^+zp94$^^%Ud1kB32Fdh316B-3$p5gh)gs zyMeK_U5`|_b~DHH9Rc+c$)#eDaa z54w+fmnY=SI`4WSie7lf$D1t0a+!vJh6R|LqRD9%S#MjNFp|h@_eCQa&5tQ)dE=i% z+BFa9usy=#UwY&&KBltZ9bGXmbzLopkSDV|m4{G+BMfIU0x)@oX@*+0j zC_G$Y$<7N@ce7ewrnC7upsS@R!f=f&{kpk@>ww3yISbMBwlKj9;^#~Lma(mE)N1xE i$Vxd|3 zBU=}_2*=dF4S4QjSNeN9IJGo2@RtUFAKXEvPSoK^TqYYH+2_EU6AvV<|AM^MWCIGk zOvH*z%AnFX+cRl&v1BzxQEq5N2l>!dxJ<9_*pHkyZ^`jbV@?R34hUoGnGj&OD5)~!3<^Hrr~3rDjLS9{Y< zX|MRv7Km?bs0R`W5n9BsOc^X<$9#?XYFHjpNmQvk$3A3acBN!a5;U}rOZeVU_Zody+A5DKcu{k|j}R^LZBnYf0jBBNQ;SxwT>A>}|ZIf@+qRqRn(X>!+n&ibCfjbZZA@;`lkFz! zJ^kMQTkEvWdd_`c*!#0-UB&Y8DKHZw>A2MDuVaaAGUPT)P{FlG|7bnPHzCSuQk3jr zwrqT>N*&9j3=U@*F7F{N;B>CM*o2?S9<}}`4zIG#6_#wTm4{`c{Eo^oM`jyS$Egf~ zEc6Nk;%ke}UW=(>7f(t2j=p9+zZ~#MZ}?wVh-GHD=8Ngt%+1uAEjo4rvgb;6)>~*` zSo8apnQaW}_N%J0eeVNcP;I6tGeBK??XV;?%GK>(V;9hZO7&cKzN9sNO4jq4eV|vU z@7Ry9yTvb3%}q34aUsZ9%iT%zeLSzY6Ih7li-mcf(;sB>7dhO+!~Qw(bZHFaiKP{v zv=DyL?!K#bsCNJfl}hin6NZlvw4ddlqsS zlI!EX;k()9^P2}5WmVOJT8c5->^TlHQ!X&rH}NlA-(2-M(K}H+jB1J$s6m5Fl9|sT zZb5PC{AlSqxBHx;hlD_S1XL>rtjbrZH}WlKwKxSV3;G0am6zu1Q2XzQiG!u4jktDf zG}At+(8RUT=|{81A70(n)_$5?>Mdq+nyuLY{>h#9c^0mO@|v%2J`czVV9X#*Z$AJV z|IAtsKlHCp25vt3>WJ;G&V5&pyKyat#@5!6W2SQ#0P7~FULvJ!Qq0r6=w9YmefJ*z zlBt^nw+zeO3V9Kj86F*~^27@1L5U=eQj#(&85pCSDS=6oVM-;@x60F4*CcClzy1Zr`<~P|VCu)eSg)#h{Gv$tFx#D3 zZc92mVjwSbQEE`3O{5V`PYliAIQhfDId2*bWn#b46UBsAt_M8DEV-CW4za%?bs&qz zBd0n{^Hl5U%`xhy>CU|ff1&pHq+nG}J!-D!6-P&uCi!q+gU_TgPDPeDg{uZpDM9v5 zDd^T5>5JR|z?aPM_v&~0_#JrNI+*cQCXq$j9c_d)3K8gZlvsKm@StLhlMzwUzlmSS zBiVgr9W;L%c(auiY0Y?lhgtvLf9Icr{UxE6Purn!XE6+D+rh1R?v$<^utn7S83%*i z;diyHds>}biyE%=?uxD=A~Tu$!I(IiyyC|lsQI>QT}G@j;id8`7a(XU%QJ3vr=K8x zaahk<=PB4SQyqVm9;alZEssu$AVeTTB3@c|^c#$v<@mXF>NY`+PY~nt?p^7&%sZ-E zZD+M0*8OH z;9bKz^du1b&LFd?K#5ST0hVbSZ^#Br-(m-_3|-S$|_s=H26Mt2vHJUcQ`e3)q)A>stn7TyjO?%0Jb1 ze}4=A4 zNCB%%TYBx&mX`c+@-AOM*ZYvMRbzNGC3}JsQIzv@9?SnN$*`pR#N5;)^x9Dxb)ox< z>1M@po+3JR<-=MLr>HZ?MYyxcai(iQI5%)ruFjrr7=F@~FRPpZSlFkXPpu#^Xb{3_ zqiD;Wjc_gf;4+w+iYYt@RA*ccm=%u|EkTp&TV?Vlfq2k#zviG_L9xsoH9XH;8KN=l%|%T?y|0XpCSSQIsmE< zX!QW0!RGJe26ZP-*1_MT_}Ebz*_RJGr*4M~$()RZm9)Bbb$Mrq zA3^PLk{1#=P0`tEQKvCjw$0MdM5lJcA*V7S9`?_xH*vqRPb^5@6Pf*zuL zesz4cd0_<#atc^v!6M-AtZUW3OY<#ztwl~yH>c_`FTrf=Eb)JloZ~EdhEA3!Xk?$R zpW`%vCDk%>Icuu0A6xPpP*5Men9rIHL#Re#)UukrR>(K{gd9 zf_nZrhb-3QP#|!txZhzv<+q%ZwB)6f41SF=A*XE!RL=T7#1dY*4&I%4J1eDl?I7&N ztZDdxCpp<#Srug8BDNCb&_}UJV&#$0=~pkqnJkAn?5*k+_dWCt`2^GUktmi+uVx%B z%y|L`=q`~ns2F8*8Si@XgB z1AamDR_Gj;Y0JxlK&{C~-n(v-1S zq)rhPH~KMNBkA1QN`HSvZUm}wlD8mVuTx3=fgJ9bJ)$z2sfj*cJMeTC07T(f%2vU= z+;i`Qvrk12!`H zJ!`u7scO>gdC2uk*<$1Fq!gxBxbJ)e9ohIC8RhH!C1~oW-}0v?Ep0v^KVn}&lk5u1Vi7=D0RyC_Uw!&%}Wtl`Hqw=!Kx+GB`m zwe&nj$dFFkVwQLM|7+>FaFZ)R;E~#?l*8_;VHuf&+_mQ&Tsq=YXftLt5s zHZ&;l?_cc(3gB@S6{51h?npyJLrZ$&F=49LuGDE+*Q-V(GoEA9Yk_AxB_hjr=WN|K z>R+|n@f$m)YX%Rl)WiCoY2ed`tsxoBbU4X`Wm6`|cGnN1Xt^{OaEh}zT~teQE5-@A!B7xQT2}QPI31fn!G(Cpra0+-IqlP^$eR5Lplo zKh_@HHs+0)A9H&+Hy2OH@BP}soV5oG)+aB!WBUI4RyfR9ecFa#5-ql-#NhmPx6ID3 z%aYF1HcKJHmEBrfn^Q~Vql{67fJfy2_}Qxe7c(=`eyKZuWQGgOHKQoFz)CFm@nwU< z|KJ424_b}Sjl*e7qEfO-S}{ytPvJ!%Xq1tW(BgBQ^%%lDMg~j3MD>w`P}au}qV9@} zHThV0&R6>Y*y!$2b>=rA;B9|bj-!cTv5p>$_eOdV$M6^K6w7M4SjtqB^y=RAb>G?s zq0USTHVu!Z#*DF&Ud{?j(Gb>@I?MiWb%O7(_2#iTXvtC}Ca!05 zG#ov`DdB-%D2s}m`j?w~ss#)Gz?}Vk>z3N{U$FT|j1RAJ>aP|3hXp<)t8Wd~Jw4?C zbzyJK=hFJZOkin(|AHI6C!NLO`X6{~*T_-5N&DZ!-tIV(@4f3T4(TYkR-f1@5-3vx z8PEsoO{Egp33810M^VQcOoe{CcIcO=hzTXlpT_~$Z`(TKFxx#}h5QL#dMTPz)Zayq zn?U}Wba$AyS5jd3rzSg??Go1 zF)z6$Hq@o)bPgA$dd^VQLWvSnXkA@EH@utnexh{Ur>W@j`iP$F9J`T?ME&M&F$vof zFyBp`7dGUy0!hM`5y1+>E@>Jl55!xER3ONCrz*bx4XM3ksMjT=_D98pZPb8aJ1{TZ zzJ{yBu*y?l6VopVD}zBEJ!I*El{;#?LP$#12x;ex^1TdG3YuO2OGY_SRPSZLnSV2} zFL;v5?B$HJb2-JidwzOdI*cZ@7FUQtM&65%qD2`hMG$%C#W4RdTv^3er`aBgsKV5H z3WRY>K81a6iGz0Er&B3jZ{txQC=X{5{(=aTR>AI%@(H$NrppBY4xnyE`(Kgd0*;ny zh6@i5-zyTfdJJEQV{1+fwhDHUuZ_WL22T9^=fP!0@ZoBbedf=(d&ExJ{&#GNuP1XU z?93x|Gl8w(jA%rOj@6vN^8T#HNcat6a;5QkUY1rmYkY8sO2cUKM}YJ~yE=LM$NP(n z>LCQK-q$28AQJ6J3RU=Zz=0~Iu7LBc;PByV1A~N33o_6+sg`2>0tt<wbkxp%)WR(?`fwegde+biqQa(wD|V&dJ`eU6t-DC}J#Unq|Ke4b z!!e6!X~64)iJ&4nYL;qbkorQAM*KyGMnx2b7zoqN&ao#dv z911YDQ~$h^@n)v54G4PiCHB37QBY;Re5*(-u?j~>8*KY0idyp%tbK#&yVr>+&jW~X z=-8Ni)C#WW4Ir-ruw0MLCvPZ|qZb1(lW5gTD?KvpB3kug=1xaTb?fz+YUhkx>{92) zT_w;!e?J)DXo{6==#(#I2hLrJnVdBnlwo!5SRfveP+s;BN>Ee}E!Jm6veiGoR2~d~ zE`F;dX=HPrnH3-Iz9H@Hs0mtv_*WCvrl#36T8Bl}bU+^Sf2vs#hFVgQv!v zfnbIME=!^#L98>sbxrg|BxK0;QE%UMy?#@qNdzn+8YhlwT}br`UijYq{VCvGU@h{E zfyO~lUtYD^$=)moF1%|nIp>hPs;T<5?}_HX2KCBCHdZEP4iAmGiKgOfLyhNv+`Z}- zWpEX^(1zh*wDY6*B2hjyK>?f@=RdcHYdBSygRnIE`Gv_85j=l;1(Ag$*?Q72QQ6Z? zEeYqXV#(9eJVE$KjxS7>SYeYAv>Lc7sLEV&v0&`6(q_RmRHg~y;2$T;AA;dl?OoaO zjW!L*L{@RWwPIU4HZyj$L6LJ%Os?O$`}I*4!pY(wWKrWw4%1G%$72v*wh6uWp{P}N z3FX!#g&qWD^o^5GP`xtd*x`YkiMay=3FRx{_k~R0b=&++7l9o0mNz9YHJ|&2sbtbv zY!79x44MS{^N6l_G(L-Uf(np}F5{#`7x3?7s0ZJNm!%yD+*@a~zeF|7QjhGfjJdASWmFcUE{b!XlQ{ zP^ee=|eP5wq#!G>T0oyB9Ru|l$REY9OzS6rfPPewaU{2a;%TEn0wB$vlWZtW(1Y)^fl z^5WIW1|;|N4{a@DYwrxB;@7Fpwvcj_nn0vj=VaN4XcHohtEUkq_NH@`;^{H6QZTbA z4&`KJpZcG+s=3{mGn)UiTEj?t{DMgd_%Y-(31o)4>DP+w_57B3=||;>HHxgXkx<@? z9!9?rI2?rQJZJQ9q~h;&cpY}A`-lZsw9wGQ6WYb4 z)+&<5O-PL9BP;;P+y0k9R=aTyaMN6UygV-R_`mY-*R;i6dq&HYERi-lD~PrtrEvai zaJ#q!p&!Q{vP@g!tg{es(TxGj^StC8LoP&Y(cEaZykESgAjJ$9m?HTH z;1A;r189-NKc{y<2B>AR*W-3r+siw(*X#9&Hr^luGqZ`^p4#sURbUgk)^nNix`pgd zY#?#P8^t07ggDC4(pH*h6Ku7aS}+eiA>$n=@5LI@4#^pM3npk?9wD+2#2&lzSHsN> zsoC}i+Mee?z5Sz*@jS|>(+tKRP7Tdc|OKh_xYZ9Mj9 zttNUSOcX_=DgzifdZ^ieCXr|Ga`z4wo?yNTrv#eGY#G{(KryU$6aK#57@w8e zMZtei{5eSka;~aLBdBGef}*Oq=)UoUKtrw8~&7VD1oCl9mO}eH$lFo@Hn{;*Y&OHhbun5*nC! zot$B*WH3`r)RrMLPIZJITreHvBb(<;&>%?9+2Ogu&uz`@THc(dO+m4M?6=k|ub&p6 zZdM!`_zpCx&5E%s3Hz&E4@kY0qaFX$U{2)@t&K{Dr=ggeS8XiEy8ar>Zks~mN#8Z zqGjPAw6(2SZ08Sj8lTVvJYat?y-*0a?9pV~@e{JGyG1CnA6#3>HrKJcbE-lk147 zwm(&??p3oT;}ahWx?pp63xrH5=h@QB;g0-mFY;t;e^t&_eXO3J1Sj@!mhnD zS*{9fW%0enn986_BbtT>CFFwS<}vi?YfawIdSmP^ky}uP`1Z6D3aU${85F7>&opx- z_g}2aBC4pOvaD6I7D%j_Bo0n8tTxCvBVI+7+lICqZF!oVBhw6Bpe4ZBWLQOw+{9AF z^Ly|0rIH76Y{uroOIWMa68{?Xm0k$SH@@M?GRAAC{bDW4pgG}9*Q6N5IXh6OY2NW6 z{%mywrbQi=9XE@Uqa_R7n}|@5!m^4jyPi}wL&#*%0DpHnka+N*m=lY16$Y#n7S_ZgT&#zY!6hckcT9yIZkfs z&Ebe8wg)p^AK{ME9%>!C4x6CXvcK2=bjA>X0W+KA38uZ#Tf1((QP2_bSZi$G7YPzL z3rlXO#t<+B{Eh4HQmBAsSX>gAg0bT;wCL;tc^kk)-UW!{zUg^AU|jG(!Rq1Y`thj?u8~(huX0C#1OL~eUFVH>W?##iV8A7;j^sg zf|#^I8E&FGd+tswHhbee6K9d1 z4c)ccas{3!*UtCh4A`}7gx)NZ$C_|uaxJ-?zX`AF{o4J0jyDCY-vIw-*s*(ud?%U4 z29HE04Xow+0qW&q1)HUCPOnZN}Dr)0+dG; zAFue=si`6{FspWJM{ql1lXmeUyTFc&Idn0B5O3yGH{Q|1U&J+dNaQ8cP0WD6gp{U+ zf~a4F5w9HnJzn2@D#ZON24nHUG#@TWn*k9@-g;S|RFq8!qvE|0?fE2hzi09u=J5_Q z4^-p3p^D! zA)`uV-HG_5wU_@r$Ks(c@;cc@l#)HS?a3Upo+{<+fc$shnZ9Orr33UPwN&SZiZVOV zjG{7cD193;!J&VX9E(>xQc8*|Lg@J>Q-xuL~T+Ym~rSl&~AIuw(N@E49EAw@6a=j95EXWLeZVd);qNBUS^FcGI1D7q{`LYfA zZ@#2tbDrXM*4C_1SS*TYLQi)iUMH?YG28|*v&BB|V+b~ws7nuKc5F^anAv$3JL)>N z$^R8m@Hq*8&X@TujIppJleJ?p(DLPS&kXS@qW^svHmw*ClS=b?J)Q>$@n6oflUTQT zFG8Tsu%r&0V<&Xw9O#+&xcExpwp}9u5-u&?j2U9t;e!e}KZO)f!UGi?7W5T-&(*G; z%M_=;%_upr0!gF*I5f2`q44Xk^n!ubVu`J?gTN1YTFtzf^6M?V&e48L{V1x98K{H-G$xBj%83 zq*|jBC9u5)H%5}CSZBIv34lb)&vO6~kt){NCX`i&?V&xi6AgP!A?ph7rPBd>_gdflm88LY^I`f>;lzRJxUBc`_=-WeUCT$FYKgH@WarlJMBf$18}UpEJ?D z!|Sw)7q2Zuz9myNl`>n8&3-HQ<7DJ18}vl@{3gWjeCp;99Z&FxOmveAs0wZ)Qk z=v8^y-OwP4CpKTk$uyL9QBOcu33iy#)*N>1!x|78`DZMN+H1^*o z;}**+4i1MCxS&1Qxw#L$I|N#U73STAbbM+Z4qj{QE)Wm-C+QXD9gqIx-+LG_b*as0 zm!etFbAas7jLQGqIZ7;_(GRz zA~ZG0TON5hH)fmI8tDRRspaIUA5Z6g7y6-wPbr{17kJ)f&?A@Ze&$QeDJ%+w7KMcM z@xi>>BAXLILLLqh)>t7fFr-exY=L3#|L<$DJ{vs?PKT_%fMFIg3t}yPpiT;jA{zz^ zPHe;+MrkpcQFwf2;}19(d)sxt($_5WBCAPdjAOq9JYTWf z=Kh6@8GO#cwd*GnDzmXOYEE+jT3=1+s>NNTaJg?lY{Cr&^g%PY#c8+jGHQIs>?m%Z zbeuTN7LWv9d-d@CG{Woq$ifbt-6vyN6R89DCuM3Lei@Zu$9Gs;KwafNJ;ln+E!C6B-zdkA z;jhLkcu}gDbpVv!0Ni6c<4b7^D?fjfawVeAS6E#Mp~A!LU7`!*LUr9Cz_I|W*8o)7 zV^qNPhATWz6Hf^ZT(bf;0~1oXK$upQHVgb$Q29!1aw3D=(_`0!!0jaaBtd5eg$zzj zRs7)-WxlI4Eo;mv^RLV`M7_?L-l4%ZJyo#)ARcO{_^Zs4$Mm)KplJaMAJq(DBrjeJ zFo&GN?*0e)z8v7f4Ft*$ATryPQz6x7zmmTdy_nfwBIm=>h5%&hCr| z##g+{UcA_V+e7YHlTbK7wktF5x5@d`=7ETK__9)O(s_NK#v+U;26|E9ia9M`-8;v` z;!$aRp^#Zed;FdI#_;=h4Qo#YU4#D|S9S+nZ~&1#ms4CpGarVxZ2xa}0iw@wXU!_Q z5niWF)$J@y%G^}wtpF>bnw6JKePwE>xWAMc1W`4Z$~e5hUi(>FK2yqe^h zxzsE)R#-WQgx>?Yf<8aCEhR;PA)r3jJ|t<%Ad!TRHOMzyAMFc?rzw@nRzZq&vixwb z*=UIw{jms}2!Y86j&l5CuYI_s7dLjT^L;(bh!BmPHXovK>8=v!ne>+m$& zHdJaFweN0y;b+K(z`w^g1SLe=3x9G6Ws<^C;e~9?YF0dx^AOTrh0uGxf3{_ou=uY3 z7$c(V7a`Pw8cp2)z4-3;Ioz~-+=C8QfxYVtLtXW<2nT23>UUFIDn%>25Nn5?)i`XA z04bu0nnjE+=*-j^75%u-UT?3GgIZe;!d}EB0gTtKVIliw?o)0+iqntjvyxa4o*2dm zqlbmP^>{Ay_IVyxXU}5y~fr?XJvS$Wl65PE+}xN%WD zJkG|`MBO+=)y29mF`20sNzPEp>1Dks*hu02n}f7xZ~F<}bAp0T${@b<#v!x)KB9C} zO`iJpV%XnGM203;L|)ab=DdT|s1RER)iD+s#DZnS;AseJgxHUV2OyF&H1z~$xc=Lt zRikrvsb%4eXiO82X|TfM>t`J9c^xI2Xc*waH>%1jx;B}ZVyC)!=+VAR?gI3@pU0pU zghiW%W(N%qKroi=3gm%Or;B?RPlG^h{VtBmffzlW0qofY`I=&(GvwU>T+s&$^2faB zlu_uHFF(G>h>NJrG_sjQ`-84GcMq2v-k)OQgMm5Pb;fdMXnKyR-hgSr=@;JV-+i_2;Fo|13iyA zuoA$1QX1z?FcNR(%HWK@0xS{ku} ztNWSB_^LkXa$&(IG)^>}xL!H8tNbK=L%g2*`s@P?0I#7|4K?icHSoec|VbV_Sn zX+7&Q1wQ~WP5Sqr@rf@N9dX1j^~Af)nQR)VvV7T!QG+&xV-3+F>OSJ0F7R;zK`$4= zz+ zdY1QULQ15OhtYH0a{*6sIe&AuasnhH`T zXO2cHeaxiRf5)vG)FItNDmc!Lm!c&t%5r>v2q-+|XSzFXxN%>-Ir!pQ(MkVkpIs2M_*+wDoLf4{lVmXkj|vEerQq?v8`s2T_J| zI-h$eC%7Gn;*a2bw(~%GgTn6Zf{u$R?<_Ln(UT;9P;AwWav}|_Rb|vxrM$ClDoVMhqq3a z>ax*Fn_p3D+k-=g{_>pXaZ)({P{7+M%ST0*oZ>n#M}L25+2Z!Uq(7>>-12k?b^eZC zDma&dX>6lxDox?G=X%9&ZZ_4YjV1pxInki%`_i0Ag!u|dQZxm#*OXjsA%T^%k*`w7 zAYBM-%zX9Pcv~FuHrju7g2hvYSBkq>b8g*;cH5hUiKXM`lf{auoUA6LgN;_;B+D>@ z_U%Phs})}`pMwjJ1fC!_UuryNlURtjf3=EHuxG5sAIemQHn1|e8xWdEcd!o7nYRlM zUBe08w>dPNZ}H=BAi}nFbk`4Sh2(|Vlcd1ea4V(MTSeOAsqA8*x@8&fBu__>uh*Nz z+Sm&Y%Bs&zIddOSWlZ9jHWC(Vt0z1&71CQ%O$84f^QKBUf(C%4@VThje6rbCr~Aw? zpYv`5T1~;?13|HOl#Gk^a8#y69p>r!_vMuEW!EJs<-wMoxAUc6(A^&4lObe0N0eai zo1hoonyz~tBG0X_kp+2H85$1!BzPib6f}-{w5-CyGkrnOR(0>s26%@9G?BpB4)F#t zorQaQR2b)cwIxF2eMGu>oAbaTxIxZB2sU1nY@MP*kfz1X&K|^dwbt{t24pIh*+HDU zcfgQ(0txTDZYLNHUK6^Hx&fz$j}f_#sGHYs9$yrbd^woPPutZ)TeZ}aScI1RfppM} z6r+KTfGzjW2VC`nBR3vt&vVEtD0GnwD}8erXadN%TR`sIOp^E*d=d&c&-GC5mCC2c`(zrP|E}U)bUjFS5F5pM zF%?!+xFOZ%w@A|taW3lx>AC20d1L8C-V(>VfeQdiLA8`phNr^=jZPjDcz}&I(iSbX z)LpX}Z0F)9p;y1sF>e z!!m}~xbXYX!}Y`a;YXNM&z%=w?WfAoTblk}c*I6f^XGVm7s8o?YNkVru>EMm!-`vt zCdYzq&;!pxU5f@cZg{=h4xjrhR@qF(^wllWlzxTKi$Z?lPS3h1t#&@v+4Sut*n{HS z&1JZFfRp%R34PE^L2pU#H}(G8WoN7xHCVG`DWuxEmyVJ71$866<)0ZrsyJ&Wn@>j11g55vpD3B-D zRJ9fh_9V6}JWB1CU6aaGCA%3wUQ9Cb`jfRm1GGk})HJ1g(tsvTRO2REpB4ls*ci!4 zJT)!x+rOYAQ~ZXdBFXq7{gZY{T+Ne~%xOV{|5)~aowKw5d(mIWi0rGV?uEL`h94g4 zVrC>O3LdlEqVr()!NDIO2@1HP?}<4%mz1nfhk(J`3%yvE{R$LrUFKn&Aj#<{`gG}x=h8vE%&ekGy&iPlCU&WWcO<4cLdmgNasM1{S2_;{aT0S=Y{WZ}v6 zb-k!WsIJY53MO2#N6|RIHL9m)3OFT9|D0gLJ6W~HjKmTbf-cE_?vBKnRPTSbZ@1Z( zMd0@H*8t=-_&=8hWDvi(IOMN|j6qb4 zAOBHOQmVy|63J1fjcP&}!OrPk(n#y~gjthI3>Hx0WpDJ|3cK9u{Ry6RRlzQyEN~gg z_RYsWEiDbG)`*`HE-l)eN8DJ$FGI-k`gCm4!gb~Jm*tf_wDoA8CM|>ju4Gu2jZI=B ztlQ(-)c?XcfnK1prX9}43U%TV(s+gAd#Zajn0!XbYhS<ag7C7UBIy^7 zVhIUOx{8QsG2Es`%VWki=DtH+(hY3m4b7LA5-L;{e4FNCtS+sFjsBkZmw=y{rF1!7 zSMZY~pF;LSgYd%qga%cr?cJo4U=w(3~o`8ObmD5NI1| zGV_A3zpvr^wz6wG5{T$cr*O&eb~s;EjVSxa?}ftUJSfweXURnC885yWvK?O zMWw9&%_CoJdvwK~qrHEey?L~nFZ+SQ{5AgWGnP(e9b=|^S%IfXBoT>}Kr1(vOQw|4 z*b`WG-=RpoY|3^{8r2{G`4H;w%MhiFq}oy^IuMLFr7$R?DaesYD4%72k#78I&H|~b z=(EODxh}k9@ZvXYytv6pofm{B8m59Qv{LRury^Z zP^1DZlH-91!JyYk^5{Ld(~^-*#oQwIXt_9aTq~-wDbMA@vqZ5zroe4)eGI)QVrz5=r$m`mq^Z_hlU4dX%|?(KP*6w_mcM_9D(5TY|I^cD0o z-~^|+U$YnEi>ialq{0Au)={>ty6xsBKF|Uyf!IdtO!Xurm3uTuNidIXxi9nt0-o`JKeL5qa^g*P z9A}c=U1$d-96vEIzjcfFLNm1y~+ldyzYlU^0>NHe4s| z!wcp2MUi^m@pJ7H#z%+)vH%OZ-|J$}Gw8YtxifTX``4Ih!@0M~(tlP~N)>oa zpJPXkHoH~DB+8T1Z_>p~R^&{oGFrLI4|-{+V?rYn?Zxunv!{>IO>V9U)R3D0l!WSj z-Dm#Y-Y%=IzUFzzY^J8ZXdre5PwZ$aefCfRMJ`Hqi7*lc-x#BP>_j}OQy~C2~qln zhJ`*I>;!BC2JuC_vQXpq)|zw0|Gl2!NjX0nzGn&#>&sy#!Gnra^~D#!ecK|I5(|Ej z1)~0qgXw&L-2@S!Cmte=G|@vglb_FZ*bwb+A$a8K9XLX5z)By=6c@zj$V!1@$2C`M zZ*WP0i_m7~*#@d(YN+#Q@0!NA;?9}b+TkXTYwN4LJ`(#72i#L{_H7e|S7(?}=vIuR zp0GBaMC+$9jc>Fuh5(^^Wc$=pgpSUf&| z_Jxb!MkdH4;T`$^M ze_QoWAumD=^s*e-5EPK6WP?>(Ax5_ff|v!oBR0q36m5L>N7a|iS={lLV3ViombSB~ zHA(D3)_hZ6E_ugfp(4IgQp(&GkQa+<%dsKHdgv#b!5Vs29jr?yF%Vk}k`3!dx46C;TVPa?bNlXy66moM4r=ljTvLZgo8}joIFAy=TCLx*usRA%R2T z6Fo-Cgr;6CzponpXJqsfK#Cn4m`BC? zaXYRTCj&-J-%LIUar(o)Sp%RlW1#`+v%Q|T+7CDf-+@Y;SiQ`}UlR4?9s>U~zoq)0 zFZ;((=lUjccWxuTp7*?Adu`Yl4jq))r|^PhoW`qgSSHxbKJ%FG9!k>nshRCRrPcoJ zS>uHcM!_)qBeJZcs{5F8=|u>DY&#Fq_=8aZojL&d_}Un{?HH~S$uJ*1(otF=ON?7pa+Sx89WSQ1*X-Y~bm#TK+gv@%$x zXhyapflVkPPdZ2ytt>x(x{13o8bd|&FmdQP z?Ys;f0uaedBxnlz48_$b5#o`sRw^$0lLMU}gtcZLV9`rlS|>K0xDC8?vtAagFq${ z!7-XE2qjvl@!gWo?fdUD2uGol{(`}R_rH66eyTL&x5#skce5&wH$)?D5x-S}EcWkP z*rsE@FJn$?s|brMfyeXG9UDnRl9D!w@yR<{67U^4!LzgXl$=*44{Ac4L%MsWzu5B+ zb}uN`WOvB&n%_%2hVop{_3?hw%%e{>{Pufv1#zF>;#+2wYB>kd3f zK&rtRtdcKTC_mH2aZ%n_3*5Uz!{)@OK9lAYEUZ{8h9Ru#0N?jY9~!lZx(SUrR9aBv z8DU$6g0mIPL{L=dBg)DKgR_u_L$~$(2J-#rROxy$g|z8{v~k!I)LquJ>nLS6QvG-z zt1I}Zk22HrZOLupWJ5!J2)lThNPy6UZRnF9oloA&_Z8x{FidbA^QXh*_d2P*U z7kPcU+Y|qJ_zHw!`ySdnZC?68%hGZ|ePv{d3~c8D<~%Z@QFFSd&DSo6#RAv9=lCOy zmPIF@sYjjy-LwL;S_1f}e|V^(3i24_u&}T^*VZmds_b48+13C4eY;cOeJ|)U|KKEv=Ork3+G-15Vm zDE$0vSWb3qbrlcjQnA5U)1pP!v!kl*QcK1B3hnZk`#$jjlj9eRxukWkSr&F0ZY`d8z{6Z7=+btP##fZvt~(5! z+te&EdL26Jn6ylwx6OsPEAvy0=oAu3W(RWhCpHnYfTV16ma{-%MIZ`#@UQ>$BAsaa zrGpb_>O;_Uc{uyVS?8!|(i+1t8@_1AzeM(mg2-+&DVn1yT#~<1*NO_ zhbQ{ZlcGQ-^^D84WHx;`0wViP8`}TSrF1L}iR>n&`OSv3{E)|Cr$oW1EQ++2*DE}W zcE3VB#Y(HadQ~mRQaIOJUi|+^ItQ=H+qa9))HGq5Y}>Y*Y}-woZ0pIkCfl}avTeJQ zZNA@r?;mj1YMphu@9Vzy-k-f=S^_Q!-TtKnRnh-0%JSoDCZ-hM{qo?|4|2o|FO=IW zXFq1c`mF4?Z$~6E5|=RT=AdZe?$|Bk$Yj=%z&XEMVFiPPLZsia1w_OplUI$4XWdw0 zrJyf3P`FVh20s+@#V|ID=}CPOD5NS;{L036(^cnNNbKXYx_Cd6XQQYk;W7% z-9>2xaPc7MJ)gAU5w*{@wo||+)5CK#;(MQiyrY1JjwiMvBJ&T#*uV3eUZjJTVUDIF zt~_|3@u@G;h_jfwkC8kWSttGHEeH=8+E*4{s=~^|?inCX71Uae3|T*i&hZf8`M)%y znj2T+QwmuHahS+smVmW@B5bE{&h=Dzr)B}j?rS6gHOZf$Pzde#7an+1wF+>x&dQ&f zz41UY4Z!LD{{5RS>qFap-tL`D0!iEF%(1=KlgYhKQh1nW{kSf3$# z_Ne}hi@x4ob-R>C>a$aNx|abf^1u)3V$K?}*g}eYlGEV;_T=Pb)^Y}JWr=6NrM)X8 z0*Gm5g4UcCbrP&SocH_FC{S6OCMkKYW7+@MBSg<|`NV+%2 zFU93)TB6{EH=d2~84i0bTRWs29``is)-J1SZlrTXz?V<=IW~^w4G;j`c6f$39sMXN z>J!aEuUS5qG?kEf-#l5#P?K^{A`*m2kl2H#>*CwodH1|b>&=nOqDL&0ISoja_E_7G zT!XuAnSCOLnc=4qk&~FDG$Lb0V$A|=(T=~CEOn%BSnodFdajN~&TJJ1re2Bcd7Sge zn$z&1|Lto?zs!u^YZ!zMMusEq7LTdqWDp-4bFy3oD0qeo;5xG;CHgc{Zbrn{9TqQ7VG3k1U5lE80nRwetYlVuvWS&K9urC%#`mn zsk)P%&8Y?G92rEykq!`?Q?Y1g7WGx8EDKf+!a7%H?ho{A0m-gE;C$t=G$PeUNbUj$ zU3+VcH#}E~?8{&)!>PW`_s7M$%5eo>nUbP34&)89yiR~Je=Fe<%RJ8|5;zz#u@}z8 zDULd~%c^KQqZejYn;QEHQR5mJ`wNvSpB0jql8Xd5a>0SyV-EIP2AQ+%kja?`+BGs> z+AAB&RHa?M6m4gD9k3j27%DHrG_sxXq^-a9Jt0jhjYKG#sP}9eg~pSn1X_N#t4b(D zh|3&VZnh14xzIJim&XjWYg21rno!aTze749m7SZb`~{}xb_gwO;~OduwVvk;-GeSJ zSsw${^fJCa_ir@Dm@|M3eJmZav5&t3 zn&*;9kgmJ<>PPHr9 z!2i?)f!>~NfK5}spqyyPLF2YnA@=kSlJDQqY*EcZoH3@cM&lxWOHtMBUnlGU%3~zA z{NVcvAX@L1*+n6H?Lf%9NEPEj2lv*X?H-={2k$hqwAM%iLoQYhr)BL5!dO-9)r8O_ zmYOc$kK4kHeUfKq$QegjM>>cTonChjXl?BKnjyPj5@xbb3+j)ZxJj3VBxCh_JJACH zn`DQVSCF7)AOh@n@K5r3YVFU0bhQBy$!Q~$B6GY2&DQmF;oc(tw}LVra1*!Dwn&Z2 zD*#)1-gYqnq-t)4{`5JgSNJMOHpr$bM0-2`Ty7~G+kL${Sy(_5i^9oC^KE!9bz|`u z!Pck(>lMwuyCv=B6f2q)7|vGUUmY+@Z9Ma47L*(Y#uOm74m``|A4L%eO2@}`Z%jd6 zILwUPw?o9y^=9?9E7Q62{I2#@@Q6ng>8IXJW_OZHy)v-AHmJK~N@7))S z3Dq&?2_+asn0X}qEob4E;gQAhxEkl&oEO~lCOchXB#wW+?fu};Qc{E9RhUUeorm&1 z7Tf5_>G%<`kX4Xo9#DZ;`71oNvi1+RTT9y(mR*CSsJu=I;!IPx3nQl8gO1D8*Xxz7 z{C{H()GO{Pue(| z!WujC$DmUv z?lI>EpX`L`vA)0}t%A6N$OPT?vkEGOSS^Mk9L!#YP}?^*RbZvpHC(*T7TN$VB+))b zV%^(1%DC1$h5P=_b*lmLvKJcHbc(7Mt2m-BHqJnSJ-hVAQ=tuuo>#HklFZGd@dvqWs}??y;aAa?ZG&EU!( z_DvKUZUpgG+{XbSxvS}_jQ-QMV1;eUNWm7Yv!8I0@)~6(i5x;Z(rs|4r9wGeN>Lt4 zFAV$5ixlSOB%&0@cKw-wsOOw5g4W$5gsU7`_D2*t*XlImmja^7w>c;3f1lHuv5o%at%`; z`Szu92|!N+6!-hHW%k9I2BjwM+)2=6mZ^nBSx!R!qUEexgH1lFNMcz$d0WmG@1XcM zgXy;+i|F%_I!S(jT=*HE2J(#ci%7;&+Xuy&n1&Q#ejev7!P-3o1K$OqMoQDuCIvhj zNhO$e2@!6e*xA{&Tu#(&Y^ghMb{D7@UCjDKL^MLK{+lpA5Vbv4ID-yAJL{`SQ6{U#-*PQ&99qPe1m(g_TCK7 z2Uon`KSTfPDIg#y5Ijlf$dhS*cSxPJv*-Mm36Q)f@ zFP@~8)ZDmh@3OJ0a4fI)3OvTFRER9)JFg8i-cZ9g)+Us~a~W!5J1&5Jp1V9=t@`-Q zSct!D;V8;h&2KR}OLm2vu|u?AK~I_3Y*O#O1qS-$CiOV6%mCXumxZeDhviQjLkvkw z$S~;+7nI>(yXMzC?D8pYu!{H0*rr8q$lJPls~vitXs_stIvQ8Mw=g1Zoa z^4R-&y840v9xv+1iSE1Ex-*Dj__sLGqVeR$*R5ug+d04?%2Wj25Z2?rQ8iH`d&J`i zK?{T!)-$ykOC)6me#N#mZgSmi82>Z1--fjf!kf5T3o)#|G~WIUpv ztK_uVIkTrXiE~o9*JuyprrHOZL)Kq#K$r z^nzrBXszs^=-t7yC8Rz(5|?t9nyeqO1`JZE+eRVuG$tD#VnE%h)1zzO$;ghNOe|0#!53(vTI6Wa=9NgUo3Kc{aVF})|a;kwE+u3Hy<@Y5h1(H<1Oyw$=wVltZX(OaxExlOR_O0s>Nr-BR!uNgX1ugElOYkPaneQJ^R>;#omI#+R*X$L`YAbB$*+&2Bnl zSWX@n~KtD(^ zbwDGT7cDp+Z>#aLw=n;tZThJhi3IIWml!**B5f{#zUW}bw$go4?3*5(ciqY*oSx|S z!v{Oy`Bd-u4-l(tIbIuokrQ2`$8!G%kQ0Ekh=%SLL*NRH$S~2OH^xAY(ujPb8O4G~ zDdCdj@ndrf_NE8z^pCz)eLU{I7IfWi-q^g4f0}G+TU$q_^Ta*@DP6ZxU44sP?=tz{ z3JP%!i--B6L#z^vQ?1zt5jh*4$r|+P7|juG!_n#OKe2z!&EhI&nJ~;JD;P18XA{GS z-LI#nS;CUb_iF8hZv727B*2~ssQWI6A56t;I@1JA0|YMM(PpgC(7>?31qf4$UTw`&rlWv;1--X-RV(2#nUHs}-ou%b-&FrLZP%}_6fi;xB(fSYKV<(1TS z(TTl|VKy!V$xk#s5YQ+c7XaAW)Bf4$X=|??I3ZpzUvIl$*J=EzU=>l2S3w0nR$2<2 zuBRvkkZ^(+&*9Ukgx}NXL#ZVN$-6_z5PD$i@keUbhTc=2GorR zkzcLEio4hp3!+97Ha>NUef^GnX?`J48i)w&vjo_>{|)9@%IJ~5y7;_zysk}p`42B> zAQ6hs6bw`o5s8nhh@9QtV>Tgc*dPRQc9b-UC#^-@HieN!>NNN5O3RSZBrnj}UZmLw zeKpbQzMRLt2kEu%0xqAd5Llg;hdj!YTv$p=V&;gFrCI@VW;q9QwYbrMT0FuTx>2cA z+O2J;$EGaTfX(-_%>fdfsEs?awH@!EUP2ALh`Jfi(8S)Rt6;rXtcUh1JmsG%`A36KAQfe7Eit4$;oJFps z-TfmpZJV#@jo#U4Vr4AVMpUXU>anp8zJh85f--%_8C?>VBJ4Z0W!HLFafCK`~nWV#JpG1wXOQhHenw!%v`ZW`Ss* z-Z_4@5?SV;TqVSukB;=vhTajPs?`A+^rL;6gsOhex=D2cW+uNkpUD*@pOG*NT5vlZ zLj_ioP_it?{E=%m{)fjD)UNYfrY7!gTB9~?o6hQULE2P~P7o@(2j|EFgPt6X<>fSu zlfL;K(;VJA4n&pYGCuvVe;mG>(n?B7V>X|YVrnE^%|Sda%!1T`By{74$q(k~`yeqH_7Z+?^X7h8Zaw+3@ zjjM4lXne(%((ymR#i^&ZlX77HWebuul%}ysv6vN>oFGc%N|b?VX`rzbD>KrNC8Uu` zR6WFP?ou;a6P|DG+jT&ydbX{vtn6%c`vU^Zdwp^JOIGG0wKot z@BH*W&ggIWU*Ws{iSb<{0?)MxATB)Lx=B?4w9G5K9mat;<@n!N!b)0&0YR+aH&X?Z zY7~jmpUz&mM)&yd9cG9V>BD*vg(P$Gl^d<@4b62$!xpd-0?iaim6w;xvr)dUU&fgl z77;1#oe0_{^8k_@9>YLG7zIF2wtN3i_4q#Xo9}8S=!s2i!lFMi^P|OkQghUZX?rS1 z=u`(rwn6ixFv@^0#8#Lh68gFV80va3gi;IDa?Wlh`b1bs3}FE&{WDS#K?{IWTjmf% ze1iYRmY$@tNVwfjJAA1KKeT+CKYcrAb1tnIKOU;8sJH@bl~Z!RIcT6?oR)LnZkmHM z;G-9UzjepUMXjz>E;o2LR&JSCu7MDpbebwpCF1Hg@ailaKE?jBfTq^gXM4TpQM4w6 zhl}f&4FUv#G|Xut;>ztfxLFm+wCt#jNgMB7n5y?Vx z)u;(Xpd9#7Kk${+D5mvM*l-GRT)X7ws?JfpsUgI$H!s;TeU5$Fh_Xc zB9NA}WXnRRvJe{}vz|-MvM7y_eE6W|pBgUpq)USXfABx+`e`+A7Cqjc`MEWrlL`RhB&CEoQ zSMuY#VS{<|f{aILNb|*?q()~#6UWr57TW1Q1CxN4W%C9viUwNLaO%iDX4{e}bfq6w z;bsQSn7_#M3xQee@+Cd=)^RFHqVILWnQ_35)TU?L`SG@DqY_(M>+;W&$nxM^4gM9) zLR?lkWW&Q-ci6DF@>NrocHz{*)2rkw`waN@H%M_FBMkc-1>Nj|0e8f71FZ!-a3V#?s;Qk&Jt0BSuUDw5O&42WfIVqAOadl3oL2313E)U3>I`=^VlR_}Ecu zw~x~bi8CTj1RhhD&k_a{1ILte(pJDQVJv1_dpLp_jBP1ZvkQdvCE`(z{1|mA?3Hs< zIL2)m$QC#8=*e%Qv_f87+)ndVPK8&lc?K~6obqR&rRw9Z%ft&dysRw2c==uDwOnmQ z3uxB}43vM|!)brWXu8ULXb&#R@_yd$tj7-1NPyILaEJ#ykh5ndi^6kNft_6mh)-LH zKU1Z1D?3dl!IZyy@2h!7`rJmpBld2`2nEA6I3d-AiE3JuH^6@Px8iZGU{%4rt4?v_ zm=r7H+qD?QeDmY!t`(@zUXR$00$`MyU zsmQx*M`+6kF&2LQ|ALS$;0U&2Ggiel-T?ODZ#2o`lz zW>7G{rYtay=^7|}CKa7pyKN5> zHV_Q^>1m?I-@0%KDa(r*GkrCC4!r2*e!K!m3Zjn-{yUR}b+C+}QL5CB{(_ZfvUyr! zrY0RL6W#f>!fibA%0HF->Dksn&Pm3W)^JB=VyuN@+AZ%g1j?$2PLNq%YjLz(eA zR_q84QX+OANK>Z~I~#=9b)s|Ho_g>nGarFmBR>}6fQO;+*)<=~>U59NU+9ntZS=zo zs3qC++uPREd-85BU+L7&yC~q2LWL}vzj<3eE_q6!*A+`RdI-~8?IXnRN1_q$8-MV$34Iq0hgrjh+*Q*ZihI2*Mm za^vPE;@CqJN}k89f^S5kUaS#a=us6ZZwIh!n%@{6@XqBIPx5ID+k4qSbw6wAv?grh zYlw)FtqT_maSS|{gee5WaPc2|3uLD-U(Z2ot_yUv>9j#VvmYXR>cu3c*=)4QiO825 zOQptv)`c6wsG(}gX`7%O~^y#E`&vzShiyos5Lbln>Ncv^+x>_>{6DjQUTRdb_x8@sS# zMO_!o2r`ydwxsZ;n9``mX9q>zQ)^-^c%GYeZ zOpsrBPsX2B+$?W~dEZ+sFK7>}+pOI5F&FhEdmK!Do&bFjq00+=lVAOv92A2=>znGK&zzQ7~b z;GE~#5iZIA1z~5PU9Osp7rfXfU8LtSCD`TG`oLA5NX4*SNL5b99R%KtD}d;IbGrOp zT7xs{7P?@=U;JC^Qv0^Wn{3#pE9H9Ws2F`_d3K(TNC~J+Jh|iWeC5FZcpQ9sjE#Hf zy1<2n+#mJ&F^MTK%PXctSg_Zl*?*jw!2bZ^8`JwZ@d533wqv(?gK#kbXYEySad^Q1a_uTq|W#{*3KE9%79;g9F+27l!&zi)M4Z*Ekwrh(8NW4>9 z4uVMsCNsdzR9qkXQyOU^gIlbVo;;C-jD}USpUn(M&V`b0wp5NH#%yFan!i;>>CHsA zoYd{I8&V<$rE#fHtRrpdT=VG4JM51XwBBP6y1Ir&H@jEMeDmeAIUl`0V6Nd%7nQ@%)|nsrwvNzJwWj6a{Ho~8TaYLuW$lDc()48E&mTjc~2dv^^f%JrM7G!5d=q{=?4!vPH9e z1;SgK7xowB3Ar>|9}|#|%}_6(Fdu5ge9>Vc!}oGq*Nr6oBO=c;!y!tWBFLZc zW$ychyBDODX!)V+C3!<*;C+FWV`ExEB17byUS1x}%1-_F8Vk<4pPMQHKa+;gibs)J zFAtwmC;47s$>lPQW(d~ZQWcX)Gs^vI8d;Z9i2|LqJcL!yv6a3mpcbZF1VR+BC_QDT zmZu!l049e!CuVKS*{-Yl?+J_0AKyPYj{o_&Nu9?YJCCZ|5EE5U+5)fr&#k5~&Z7H) zY@xXOYCBh6DHV@zWh@)Ep(zZ&YdIUHzv-~?z#dfd;5Zo)9{OH_GGORGk*P($D(9r! zp!f{!M!t)48EBJ1uEW(gC3{4;u&^zHH{CvVN<-%|>4rOdvOKXr$ca?& z7k2UJ;U#2S1a0px|NRDgJm)V7ZI#>rg2b@aa(ROV94n9{V%KI#Wh3rU71n>m-FXd0 zOexhsT7ns^^Xit%%qB3Eg~Nb7%=W5(Cy)=^8JSLUv^5CJ_~a5S_5o-IklYi9Yk=x6 zDrt#O3_}e9NHiQT9Q>cPPT=sKA@St!)nYHXN~!|yRtj^niH$VWdY#4h~WpJsyhSt}r0qIND+o@^qsKkx^qoS>WVG>0YaRCZ2gaW;lc8?5m z4IPrudx2CdWAE=Mc0cv&6vKqg-!I|uEjVjqH~FJqBD2gYtX^m*WB|WpoGrk@%8#iK zlx&}HGg2;Ww{Sg33Fmn^t*dA|;Aw};g^|UHt~(!}-~_;s0ABS=XtoLo42(=B%Q`O| z25XzpPXN)7?8j}EWXujB6Xmsf=3KL2f4;`){TS@?H!!o1Lf0KXrZ_i|L?UKbMSzt; zcXAZBt^t;j8!4k`w`=^peG?x08Tg6;+1O{B{uRRentXGx!v*il*7eHw-tFq~xqg~3 zhp5O%La`{4*CYP7BEX?B*2rpq-|ws&re3wz90*9&Vr6Jko}1QrSbGIkyecXLR<6~H z5)`*{gBPIb8_?6d-V5)$KYUkm&Y}^Cqp?gj0`kXog&?3TqPuo;(Ips&$#vcZDElg*O1dN=wl@|3X84s1+=jL~s`uQ&jiqd;V-4vhc# zy@4=%&rde7^c%jjUc#7c;xOz^E-1MfO^n2QE~PM`XS-~b*fl;GHZVQ~LR&HYSO)fi ztJZqk;&A&@5NyFQt1B!alaD9PHo~Hb@PA_ql)e4$?*P&vU9jn!X zL;=EP)z)y>_}jlY0;&);2#>PmF6s~jy^m8M;Jf1Ie30Z1I%iMvx|4+B*ZRn$^?Q!)I#!{(|B%Wi|aPcriVca z%pE6e5FgVXh7M!{jKW9t1*%Mn8}D7-BJ51ENZJ@EXt*eSuanOj<7b7!WO zi{Y-k-1Pr!7HbwO+%-2F<7vPmsduIgg_}PHoVVgvBLWW|Fi1GP36V!(5*>ET`l5cvELG zn@sal8owM|q#FV`5`dTg3YYbInpaK(svr_qQE{;IYM*wk?69!i_yP6Lh-ta-0B}W# zL%a_2KOvtk*9CX$BOGG=taW5|nyT`#$rWj?U%=sZh8?ZfvknTAZdx_=@{U{0`BJf}^@)Po}ID1+YVNKvOO&op$rT9Rmi_Fp2{n12n{_ z_Uk`MK&kCgohkgwgI|r3>5!YQkoG9gXIW8Q_0-UBwtC-n(J|@17E5V{5g>*Lbgs2+ zzFCtHp0K6;4lh38ncz>Wa0d{uTJ>JK=fjhzb~ni+(10!s;=OQ#_dwHUfTAm0)N%p& zKD&4E=FJ|F@H`ozW@=T%SY84i5{)E4Qdw%v5S5F_rC3^7F__Hc6{mDNtr>J(Y}@Fk zf8UwBZfx>`ALxC$N%p(ay}?8{COK|3v9qhO`rzmq@P!@)hv)e>Ffib>if64GIWvm* zzg=L+kkoOHC^u1$r zO;eg%rSh!guEV=Lkl0p^>enX9~%Z-d(meX9}fD_A~$H&FYe{{HH z@mL@N#IMMA6NCU%DiEbs1Zf@)&bs~MkfuyiCFLw95k~vmT{;z1JS`GMBhKggaducc zz&bGs6;0g9@r~7GTc->Om6)je48*?nkvm*0fj;J%4|Ur~4fVcWlqpDynsdlPElqP!150A~+My2Z#px$0 z7AG&C+u*J$*>O#oD&?8PU_@wf@-b&nIV|LfiWyVHEzAb2ZUu^W_Zw2u4*CmA?hs}5 zBg9-#0!!R>QluQ!;1tu42;W%I3|e+iCYClfI>)EjyrC;J6(3hrNJSV8Sl12ot1bsO z?nKdiXOu}a4UF>c_nIc7&1A&O1wvz7+ba)aI&Qd9K~gvHlF*`gU)?tPJsua1q?Aje z=Q0T5|5|sIWemN{%WkbsHfaU$jq?hsL=5;b9UgsG9Yj9VO33P@mLl{Mv0o{Zf zJxS$$$T9E)K^6p7ZTV(1*4ad*&73r@Cuz}FZ<`-)JWqS^v_&6@NDG>5Y;2!-pbXg! zw2ie05p&H&g!(FQkP54H!X^Ft+2YfwDgP)iCPM!M%0*_62ns9_pFrUmL*nH^9L}d0 zZkf8QQ9WS1_`?01Vx@|BKJ6wPIE^8Hgo{Cl+=+B6G9I&;05K511gRp^%klryHr^@iS)Dm7H)+RM`34qC2UMo2Pqf+8^cb7jB*TG2KGO2$CMD6$++H}At* zuijgkPv8TuEjD^p1V)tQZZ$9MOtcjylWGlL;6kMH@!fVYFAm?Dsj;zf8mO;f;Mm3d ze{RNLWF&HuR3sURV{=6{Lt#HeXrW|AN6euBmWx>ORC}JD1Y%3pgIx6-mzOlx$DSCU zYc0LO0)1{?;Z)+f3D$`vaap!O>pT#o<2o8zpa`Stwyof9Kw%bi0`o*x-OF$u$4UF2?8bm!f{{wf@Y~Y(x!2|ueJj%pY{+C5VpbX z^V+-HU_2vPNy($|1)fvQnM4b5Eq86*Xm`ue8Niy!%uh*OB~&o)Pmk&v`GiXY>Q{}m zAxOic-`nJ_AAC;APQ7N~m5MwVmUWr*41=%_4Z=H8{)O8n)QVAh%rO-uxvhH7V6yyX zbXMHXFSIAH9M2$+&a-t@+7byO{+aHR10r)OtRGao7K6_cD90gJz#=7)^s8e{f|X*M z-TeKkTQpx8W`PPnIIgRra(YC)VY>;_n3?SrDouhGJ|Cy)cL}qNDruS1r@BfnyJCCV z9JMunSa>rUNNkOQdl^{8KNeVlluX|MFH6be8h(jJD?}S+2N!JlG`#)oXHgrc98S@S z+8@1!%^w#C8`~#fkp;xKc@5$1PaB4whuyt%Y3S;=z1f-I>fdCC7#8!t;B2g(L`^pP zQDhNYO45F7_(I6_D@qRJT^AeK8mGWY3Wo2% z%$HMKAvPQ)jGcf^L0|X=)M;@gJQQ2~M0nwxDlAY ztP9~^y&X^(Ug>JT6LV1gW1uRvTgOryk`HgysztL^yzg#~$iy<7DV=~{FB>`9nSRNv zp`B;ca0&g5kH-V_`~75RFgqRg=~L0tVhv3RbXuUvPHO_ifU2+D@C=_0ZR|i?0%?og z?Rto@MlLya`JeDwH{7MRxy^efICeD!(EewVPU|XtJ3Vjl$4pq>bn$+hsfK70 zLAi;I1GVW2 zN&D1-;7yel!1e-&Mk1598p#Y0$i%PvJpL5U1X)_C(9qm!p{6AU2FUq5hrjOnyhgX2 zRJQ$>&Bqwt2y*il3VE4GjtoJdF5qx1uA^nHy}3B3VRPZuDQ(@E7Q;6N0)Q%`p-~NO zk$=}iVVJJE4Xm;=D=I7PjpT}({uWFLvj$;@f>yqWvQSg`t8Za%K8jM~v%mZc_d<-V zb|X{;y8cjF`+ohoiXh!}%)Bv5KG23MDz-{(}QDpM%L)%=f-%AAW4D z%<*lqva+(X=hkM73=>|>U^^Z>xxdndR3_CrsAV)#&u@5UsZ94QyAzhH&6D@5E=)V` zBirCW>XlS;UA+buR}SmkQ1GYIuRi5e1&&`u`u=lyGWYuJrt)-k?x%R(cblH+{e}-W zTV-gNQM5CGkXmX`BejA@hvMjDIyvAHaxB%pYdNbt5R}e*dp!?Y2B_aiA_aw8cYps; z-l9kw$)3e&?@pLHDx4c2*dsFD=3Jh{)W&jH?4J9EMjDM-N zbCUAi$xicQ@yYwHytqN4j@g_T8c78ond%QmD-WQyN8*|a(VKnv=aBvD{Um-)SS%G# zMLTYHmuqLkQ*eq(4)@XOR|xH~Hn81VN)XXHWnNvDjJ_u7b&YkiztNPiyZ*>bAdv!x z)Ge5s@QVv6cCM{^$h|3D@~?}st_^a@oGSost_@f5%OL-)Fjn`_y!x$3uyoCy8y0oIANOz2wH~m_gCQh_f7mzaaH;ce9{T%mY8g3r{?@(tA# zJ`Av{JDM&Ka|=wI=5(rQsX79IRUjtYROTtWYk|9z$qzNva1fmwcphs!9vW6(EM+L` z`qIXj7b^EiNuT8s8jf~%j!ZY<@`nRfyP4m;OBV9-Dq?dMxMsLoaz2UtS2^%@wOX~D zE5ZQ0bPegueM&R{D|T^tO8DG1glIZp!r_;U-{ya?*oWgAU|laIHrEBLqh1dkSlr%N zwBK;Ew#yB9xe;CwF|=G54@;5G1z6sreseK zof8rN;MF4V&AploF%XfU7MkIRU~@S}RR<|>9j-3!BNU)mxFuJ_f=ZN3Ic>MTXxUR* zt~mI9b<8{1^Xz4{!J%Qcmr=w%Ss;X;lAIkFB zg6b@%nCXbHI5eO2JJ88cTnX}AFD7WnD?90z~VgL0+PUMcNT@WiqCV`M((vd*%Y!ve%voBdex(8Y%_ zG_Q5YQV=JljB3O^fzQ9FllXJVo0oP!Bl|VaYIbw{m%3%rU8+oiGzV?#>$w>QDP{0I zzW${pg5s3rW_DxRle*Cc7xo3t)^<2s&WG63f#pNY{J6uiD!}Pp7~GYQSmoFx<7?-E zb&{oI2~Q`NVjkFh{Z_Tn6rJ@V=N*O?lP`R zx%c6Zz`Gcduc#DZU?83h*%iJ+(Y$GDKQTPc*MVXvD^DxUHFX}{%X%NkN7f?#m`?5G4^L@QcA_-UH}PE zBYQYEonYFM`@`}p@Oa-Os)oXIGg`}?xRKuvp(5r+e8s4tE8M)e@r7>>Q{XgT_yXia zB@(>CQ@UK=u^va%I(v3@cGw`2Esppu$aY!?3I1cOL$YAm$uxK0aBXKWUp+0Dc+a@< z?Ztoj-6#k0JE7gB|b~FcReWLv-!$c1NekZRJWoMG200@Lt2NbBp^b^C|(03 zxa;S|uFR~Dr>=kRZyp%1Rvz%&FUO+n^LD%_f|g2(byG}VD+`EjGTP08KX2!nQS~XW zzpj?1zcQ?9K`K?dp%rmiA6i}GB)-0o@h-)$T)Xa(rS-}M#%4~Tb~=r7{71aC(^haq z$dw92EqH0JZRa=Pk==bWS}Xo_q#G(YM*#l+wIIuzd+_?J_X*PvWg0r10xAb(RpK}# zo%wtdypk1L{MegjW?|kOENff9Uy=8_Rp2Vh2(E51$L>!#RZVHWLFf!U!7V}x>~9*4 z;d}cHQ_BKQ{*P$B(Y$z}Q!RP<^6}fr$l6Yq^i7rR7|cW^5(8<@)*;@eERwHOWhFXb z7y;EJ6L}SF=gUN(y8Rfk84aVa4Tgi zm7o--#}W2L_2th}zO zB}Ej}nXjyQ(>kw9hv5~dBV$_@p(KTR91)TunuU`kg#gJ_Tc9%#0yee1C*(5lHum10KR zMid4*p(%@!sI%?`T$ZtVOPEcMoLpXu4P1@$lT_MtK4s;B)Sqf zG`5XINSPzfW8~w)!i24vFf+Rk!KGjE;9f>?P%X6GZtGqT{j2u7o^SXE;sV?`a*5x@ z9NH1Ne(j3*#bc4*-FAA-xGVjWu8?Kc^9v3ZA}7f22UB!vR4{NJIqO6!uB2D-1Z^x= zG*co@4?ljluGk-nCH{OLzv6!^s;M7CLZl91o;&;d&MquagWE+HyG?n>6z&oQZ$d4~b=k@XZbWQj7_gjh7wuLS;A~64` zf%iYZ{;OLx2n^idmT0rdv2Lw10Bys_Y(TBko>2ZbSBC1gQKPOw<{$03l_>i84Uf+x z{s@ekv5iUaT%>OA>E@WVVgd|N24L&~b`?cds~J?HZJ`=>Nm9vlSDgh!ZUf8%>eQCq8s2eytZz^2zoBZx5w_@HbCSAX=|QuI~P#~%3H_aLE_yI0MJ z2SLXLExk@$i#!4&{hhyAI^do0EoY2CEXk(7lBj^}3YE<_mbO_RMZ|}GIP~QSJ&nRvQ!InsjKh(>Dgcz ztgN`{wc#3w?s##smE-m1w9x|qog8z z#HHAyjqqWMccPd+S&X6#lRo^ln_>uZJ26>6EhU6tFP zv#AwAVfYI45=c<<%Ogxv1(onuK8=5+c&f_k3b7hu=RD%mw>}&;!v74_39AJO;&8~3 z11hFDsv#=znivj*WBPjq!4!uXk$Y7j%5~S{?nHJ6DY|QtlkawqIb#BDvIrRL_Kl3&_?NbwZ z8AaC+fw)TGT@Niq6vmPTOaV8|EA?*(^97aXd1r5njSdbN#>K`m20SGYgcfmg#14_O z^4gDR_}-gZ>MF>pOS$p)6oZ)~(Gsl=fB)qUEJ6FhDp3!F>i@U9>Gcdf)A6uFd6giZ zv4s%Pk*`Qe39%CC;^Un~AhJ-pW3&sCGnc+xSh7y|T1(JOE1hSDFh!zN&b6 z48}g=$ZkOYXf+!&Coa4ug<_)Z0Ze*}GGQ$Q)l7=hG$HBPqf^grK$b$kqIgx0CK>Jw zWxf&t6#{BWm4sL1ZFV4uodt~vviD9!)lN2ez`t=P|9Y>tKThFBeh?En?GXY*Dt=D& zXDzE!nmZi@G!QDJ%keIUL@~)-!!LR+e;?MGARAPO%tdxk7bw#&2*wc3$lLgQg!8LJ z`@paHoH-K@FB60Dg!aRsVhN1H60iv8#z1R-$zCRI`mV_Oz7dk;tHx=D+HX^wIL)jv zU}4vK#`as{-^m-07abN$8G*XSeD09pubD4AeoCt`+8*B5^g8$nTN&gEQAer<2?F_}wV~X0CB~QQzEP*M-^^R*arb z0xe1T{N_E{zymB1KQ8g#g)%+uhmNnQ)GD>j5X05QuO&k`x=&gQ0YEqKoCSK5N>j6* z<8AbT>}t3El)bB|TP(fPXOtF?S2FiElO1y@%*`~TjnX4?NVbC#3g6|^HvY%%CS(ui zEX#V3(FGZiJ%(GHmX=og`(5_{mwl%T-4Oj=XFe&vD=S|usiOg)-6v!>j zO_sX^pG{TR6&zV(dL%*@foG?mdxg#MgN(Qq zk%0FR_$o0Bm)6$y0C)R`(8kM_mpF7@Y|i4zcDf-87B4;MbwD`}OXdG)I>+cb+pcRj zX{^S!ZQDj;CymvxF&o>qZKFYB+qP{d-_`qhzx>@v#va!md!6fCYtCclVqKzDvhBhE zf3fObZ#7@hj+`;6U-o|=puIg-rdmpwOqn{CT9zWbpE=74teOt4P&xl*L`~eG%wBz zSs%PK?vcYwit2HmOx;UyxL$)gj-C+i)$K!B{`92a7tVS4kfZzXX5?6 z3YD>y898NOG2k5H+l&+2fq$h#6YH!g_UT4eA6^P)C5yGaPD0EZx$k>|gvgOA;z<$6 zakSg-RXsGmoYV=smdJ!R+pLZbNB(4NWSHtScd8~)!m6&926M>mO;+eG9ZhpIKq^PM z!Y9jywdlgX!6#nGGq3g|Df#ZoKxraXX|;zLHfr?o^mVX>E--5N#}=h$?L1H6g8`Uo|cz>k>%sIrU@aPBT2-Xx@e& zyE2WaYFY>CQUZPkU(NLxky3(%tw(PzeX0c*aU;OVV|tdk9fWNkho6#$d)TWPTH0*{ zU)%djzD|Vf(z2wDnM7qo zRi(u)0Tikfl|uy*tzSlA1k=!ulUBn$q99^I=HGyQz_bb+ja*c z>)J}rBmZmjLeNeTpk1kJY7z&WWz*%F2yeXTpUc5vhwR5#i@8oq3-v>Ki+NH)L;%e^>D7RPOf--A;qE8oX zNTiS_GPrubeQbTpOMAF*Z32GAnVi(9%$u|I7ulS2XOA5*;UIuTeuTh> z$fc={ysB~>sYM+wvQdwlty<&)uq0Z2wyd%?D}*aV)jDP0ZLh8MRSMI83e?|v zAo0MAlxF8>*3i=W4|!m@$hp;)I)ejF9szyA$5daPAWY2Za$%TW*sJ8gX`Z=LM0J5t ztmcp(`vjw?9zt7){@pmu_l|NJaxvGIe%6KLV=Q{DcY60%%+W@a2vI_Ar-wvKsW}L>u8s3 zZTThOZW|F~KVoQF<(zCzQdGYBCn-Uo3#s%@ppjA(m2Wk#x39D_)*Q@y!Jf5d3>2cY zZwA+8)Yz1K)zQ3s8@v)7IJX?-07(OCh+(`@Ic)nu9}FxDl;xV;xo4<*XAEctn+8G4 zc#mYlEakaY~^7jrK8__{I^g9 z-iN2HRzfpaXa&c}6DCVz$`<~#U{dcp9Q^j3_jUY5Usfxn)KI@=2f^ZaT$dJJ8C`L0 zn3&J^0}L4m1uJvr@dQL7faPZif~7kH~iPaRu!BVYO$n0KK8a~f&sP%=#*GXrvvWoelj>B zF1E-~cQnRc5 z_q*A<*Z1<6BaPXb)sQlr1ubB|3Sl@5hM9&B#x+muPe9(s9QEK0 zUPV@Q@eFFey)I+yv&vD8#{K*CC?K($qurTdKv1*u4)-GkK5P+ly>ypPjsEUe*5PVa z@a-K^=wX=FLx*1Vy;*2gS2DeB-t6(!t-$B!-cs4Y%{~o>iML6r`3a0;`Z=BDXex^t z0L*20e%3Dqh%MeU&S(oRHJ$#3zYPUV`BLvGlXG=~E-Behk@AfNUN1lJKQ2BmXFcC! zfOw!%2X;uKws-u_?Zc!-vhhEYu_IaEnmZzsj4)zKLkh5SnS}Fo0vW->f%E)P>){Z+ zX(HYj;dJoN1}`Ky-YR_`Xm}j{Hr?(vx^34ZB`lb+f_v~S^;O~F{mvGg7Pu&*9JflR zxM`RS5FEQ+?a(w;^9a^MZtlSC{kv+R=J&O7)!F^4nZy98!ww0Dt_i6H1_x(vsOosR z0=^gzV-dOeIV;<@$O+qWzbQgCrMFgQ(0d?)!FlI+QlhCz|P3k${}YNec-|7tnp zH4N%jpPJT%37WI)0ZrR}mT5oD%4o(15x6Q)4O1W$cdv-&tX`2Fvgu6<5|tdO=uJsr z;B&y@9*iv$FT)P*$^A>Vg^WrTR;RkXY%OVq*i=+S0c8+-|J%ccN7N9vl&(00V><*Z zovPUF^(~|kyEaIWOERXiP39O}+){e$w0J^rp)g5ms}XjQ_+>_>AQ`F}(fa}1b?`YY zLy3-CWsg#K8>_cOI5~=>Bi!={?{x@PaxhC+v#gIq%n$WX@rX`k5i;k6V($iM@**VM z2=)vv5lVpU)k4F|76tXWZ14 z=~x7cd}fFDO^s6ae+OT!4kA^yJf&)OW9Fpo4Dt_RXECN_AhYVby5j%Y71Y`bkXrp? zaokp|o3CX6nm`7>N2)x!TW(exd!=?}!VOwJr%@%@D07pz2s)20|CR5znx-c7@2hyY zd&`k`u)oCCqHe?y{yYM0R_kFJS;?(5_(a*DD8k*1aJ0hvbpF3-9AL0%C_x14qr0&< ztmPD!ze}W1ZvpnaM}^-PZ)X+1S<)#tca@b*Y26Nyq@#*Wn<|*T-nh$GGLQq72uhfO z1c1A8mDF6pm^CI8W=HP#;H~oGiY`tAB%1F56NqA_%f>LrgF3YL0rt6%7=stD8;|^D zsZDEKoi3|g^~Z#wgHj`5ri~Da_29Qi>opVdf>x~(l#;Vxrv6zhDEYciKRD={!>DoH#iwyCt3D}-@ z-SX6jeZN9-0*E@PxPP^3v&KiUmTjr6^n=FfTx-I!{qY|R_}X=CVbQDDcBUE)U~4xU zsuQ&fy86bWQ_$&QwlmTdD?>-J;3pVcvG!eXg{^u-eBNAsXm@J%oOJSQ?=nrm1|%3~ z(x>|qQ4g0?c2(`B+ktK$)Lfg-aU#=5Rgl(4jd5pC+m-!oGYQZkWAU4Q`AzUCIIs>W zAv>Y}W7=Bbv@<0nME%WUA9sXn#Bl6n15Li_VcKMAuhA0Ofj^!83mrV>RI8vha|Bp1S?dj{tkd6Y0Tc)8y{0DQT~v3+G)TQ)P!>e> z2$@zHj*`@*s^vauhmc}#rLt=Q>0%rW2L2)Bh7*Ga zDyewP%CVCGfrB&OCTMlr96z{zej-IJp|r0e#Jpn0vY%}x-juFZjw8f5?uZukD7$LT zkZ)&a+N^T{pLaF0#J;$BcKlRs+ZEf!ZJU2P;Ag9C1ku_xJ;DuDG^Wp8h;l%fh<77r zybnR{HtX_^jT|QDhiBs$Aq7lHU|O#*=QI(LelVl-BB9u1mNzQO$tY1(^tCI&eQE_& zHY{RD&(T-~CBmr65M4yuF$S;35Wqrl!O^Aq^BzHva94xL&E9)Y;4F>LKvCqH}~UDOQ=PPs(aUWj7`}#9H-@uCZ_a zyU-$7h}SOL!veBwvy;u>+-813+oP|d{WIeo!j{kecedMO<`NA~#Zs6}RqcI%mZfDW z61`9hm^Io8^&oo+!5KEJU86Qw-fYt?e!GjK#V zTpqd*p*0tJmqE>7m0)Eog8AS$-xC#XUf$K8cs|dAIr~C>whKj@JRCrlkS4I~Ic}lZFwD30}%#G_e`4AjNQVPv$FkD62ydQSGkvbRzDjljv`d%9Az5WC=V4Gpd zti&@+*pWck8&EXbus%Av9@Bp!(3O{Wh-WvE%Bj}m5k%@CCH3>f)+giue&51t{KIMS z`fNZk+;Tg?Gd$Z~i4uaOSnNi$@nrxkz?mtK!Snj`AFvu&P}VG4bB+p@|H5UfJw*B+ zI_jduD7G%6Y-sE&6Pn?OJ%;eqFn2^5G{6xs{3rU@-Qhbwi+5|NRtnp;lkD0&WUF?A z|GTEbWjZL-a&SCJ7FV2&-w?82vCzU~N*`hvM=DDm|Cf&r2C$fHK6+i|JT%?&wItC! zPkeSxw=8UuO8F7a(E_l4EA)zv1SV}92Oth6;fGBKk1R*JvJ){-IGBM7be|Bicr9G- zjpQ4J)yIhe*!l(`1)hZ5Q-Q(m>Pw);Dl$txgV-4HMbcmU=tr*dtXpAz8qbaSUtZSM z@Re)=@3R8qOKcwqa_@uV!bv1@4$kt<+<0(7|7y>_MXfu-n7B%0=)FnoX=iP1_eO`u z^K$n4S_URii4ShDvooynXR9U zrbr0Ug_JNrSd<9QH*1L$n0&P6SAlu26zYfxF&4Zy+m<}BQtp>oT8br zAqazvu_5Lw8BDET35Voc435NF^{-EABP+&jx@xY8EYh5aIrQ+quHQSwpWRR9sCto* zGSn{HRJ|QXBN zV3&>ZWsxkVV_<^Ps=hTMHatxuUKALm13@|u-<==(b=3+nQ}YUio{((`V+BEtI1XgK z3CPviAs)g>LpNZ646C+HUoGL+Po%H5F2Wl&<%{RWkqlWO*AFe!vt4%h5ZH3U#oyDl zG3Uw-%HAPv`zf0p;DxfOlnszFob{h+B_LXn-+53S4qiQ_`t8r7-eIa9k~Z;F8dwk$ zFW>G^?pik7X(%hn2I2B}Qbr(KeSgA|7)t8d zQUjAaSco?eVpeE<9D%10-NZ|IfpQJ*CxX&Gc;^)QC{dVqXl; zmxQZ)pf3KE`y0Z;-J9=Meq02%b1VIDW9ik@MSn6qTR{^4k4~kqI$Aft0|7*=*!VQl zjy7F+;NOm7_U`Nu16pUG|LG=p6T($4`1z-u%-Z9!N!&W?T*VGA{7Pft&OoBH;Sm?o$xr98cW z*UufxtH5|b&Kca(^b)$Xz~NravrlNYxCo>u07JSiRQ6+^ZCL%B&CAV%7k_n!wRUQM?Q1-2c-;a`k;G_`GB>*sBxyeqp<;u4jD=pp zXV>G8&w$T25``O?@?^JL9JOP201ax;!j+SLh)M9Y&aUOgk-gctee3e4L7bzfOcT=h z_IZSsBimN;m%j|#h9#eSM8LaLv57A$`|hCNx-vbe6~3S?_sZ&E z;|=m9pW=(-2qB8bkevVup1CN24)>(TEp*`NZajVBHB=%91faiz4Uqr(nf`n23nfLf z*CqBi;^tq*Dz50rbV@R8ZYhjnaG$$-394D}un!?=qN5dTu)Dy3vYz3oVDe)_UgM_N zsxg0I=@n0gF+=k%Qr^2+2lzwWcL+9Zb-eaR+HYM0_8kLWwoim?-=9F#v}Y8JX2hn# zs#VRakJOH!=J3u(53D$CkNrhcoD60+r$qvipJe2NfLZvkIU>aa_fCgNOV_BvRTsr}sJqjIesSZa{ zi9ZV9N|QK!Iv{J-9vTbdFP^+q7mc-kEz9}|MfwYEAB~cAJ{&E!x`G3N_0h_B)Y`Fy zk>o8j!!uw;>Cbx*-O zrFzH-j{`K5IBCC=2vTu7A+Vv!wdr!CqpaJs;K)1Vvt1TIEhlo?=nnC#hLR&)B@RyJ zCLt)Eifog~eG?pU=5rukW&ccAgCf{-e!S6C-kLT~j5XuabJ3{T;VV5;Ohi+~*Nd9r zj#!iu=?b|mNZNjtuZN~~ViE9qdiRAvg|J4=FEjk~>z)fz$kaBly7aG*mWhLDSAL?N z`wK;cNdX_d8aS?YI$|H(x@b3p) zMGYzK;Y{B#@X1IPU;8D(16IE`8wC!?L?`*~cKDiZc~~QrDsCUSM&D({G0Oibg1Qy8 z0cEu0C8x$Z|`${mH5e3u`H?nIP+!yaF541_X;&;c@go z8>~|&3~(K>E_SR|S{1^y!!=Tce%Xa6>8qDdw$-^yN#t=`aFU!y--tSDB?}0yg-g?J zso8*bs(tP|cs@-^zt#i~)4BLMKMcY2MNzd|XXH`HQG>}0OW;@7{&e!Qw$Ev`gCyqy zN7Yokj4KYS6PsTsE>Xf?a`f2WxL~OxHVQkqdp0zfYWq|ZToA)qQ(cjL!Uy78-6I2E z`yjuvorC^hNkAqdyxj)36#Hvz73n?+GEvzpfv>-NG_6ij1|3=tRg1Tl>Xqzqk({2a zZ|Tlq4+|_+8LWWnT5B};?I(B^s+@~{S$Zf9lexn{}h=41chR)fKbLYeHJktyKgy~@^q8hP$O!Uk4v%2w|~@X13x zLRskgy1FUfRb5&JbR{Y3t_0ENao$qM(gl;*0szEib>-6(wM@+W3Sc7x;2By51^`7- zuGg>{@_x#<>beZrp;cYe#*xQ29wRHFRaF~P>8$8fRj*M5u1PpCKIo_;MH3UtV16l$ z`;z}6*6I< zE&)IBlblUYJIN#gOnr@aQfk&wyQ_1`OmNKEs&Z9UID_IEAE4qm>E6P2U8xU)SJ+lG zPx@wFOx9!7r|{|P6MRn+vNty{*cMadT8)THc{n#`h4F&)JW{JgS-Fb@mZc**4y5v%T_jakt;}n@GTvC0@(vM>6T%5BYLM)=k==|g&Yamz zi3{4+deI9D6~)k(qZ!Bvhw^Ov)-Y?Ufz4k~X7`<>uA;F|SP z4in=wdexN}1YC#b?cqkv&t4R~=)sTlI*pG|i-uUODFgubP?R)T^1E%w{_oIC#*Lm&0ng$?Z9cwj{ zl?pY~f0qm+2P30t;beGh^Mmn_XfTeI#s4IrfT>aCyJfzNt(VV_n2w;D1u@~yLFcoa zCaGq*;U+2NSdQl*Z!|N~sA={{sgKq_2;OMuQ|PRhsRrv%WwA#nXA>8qqc#mig29X@O2--mo~4Kbv93(5q}lAHR=Wh&NOGgDv-Jpov7P zEL_qF=~S)OCQjCx$Zwfy56rR9X9zMnX%!9 zdA!bWRrWh||2G+|Kx&-#N$lY<}ll{l*a{c`52(Hr+gAR9zMZiSPP5 zDrnl=57Ccz@^A!cqcmy8#ue<}@}#o4r=tE~e5+N0ET)cj`Hu?&!pcYX;Io;Prk@hx zzd>GGRW+A@{#aXz2^O$-VU>HHCU{3g!B{j|ryde@6lg1&kV!mx78df@&}_`X$^2t4 zf8Zt`NBVEd2)OR9%s$2@b8_$PQufCo$x5ysfz=0)jd3{B{X=!b;THl%%{& znAmkEbk^FLsA`aBa5nPJNu@f>%EoRO;ppY&h8eITOF(r`zOPNjN?}F?nO7b=3Zs)7 z6OnE}$~jp9{thO97!7p)m_|nvDZU_IzWn|oB`TzH?_h~CXScJ|6^mU`{*Gtu zj$7H`c2E|GzovX2gxLohkxrg+>KZ`~YfS=gz?=}aKGe^1%@_zX$(8Xu^QbyRp8Q0y z0v4gFnT#=+D;hK`q;xqm=7w0al}tz2qN)mTxf}xOD!#gto08sVfSVOVrNz@#^N9)? zR=~BNmGZlUpkG_Z$nWB1^6uY8bK!H@YAm~OA!a_Z>rur1n>onpvGNgI zsF+Oj4ML;@CA88Q;ab^#d@rk!a6aaC0SrE<-d4LHOt>1p{XW%2mvv%u#|vSpf7C;Z zLr5b&l~cJszA9-|+p0KtzEh8N%xC5<2RDoa3$XX zB-VirZ0TjaNxwINiy=4rH$O2y1N?4e|4^y_!2|+@Gi@G&xI%cQ3o0w={sr3f z2tTH+J-C&@hz1h;uJ*n!2k3`P_`!x-ZbU)#P?suLB%HN2HZ~4`UAVsHi<5P8tJ}mV z7JD8S9<kXj%_yKa>22R;^T3SuZT@WQ{qR)8xu@z3=O zXqv52;j>p;kKNOYpn-mK$hK?K0*~DVXR=vdt7ycyR!)DY4fVbYXbb=4Jo|i1e!AIo z={CZc)t~-lr5S2!ihMbko+PHc9Gm3g){!`B_U=+R#{I{a?a;d{Yb(kWSDM6d%WBs2 zcb(L-0*0azainj{07W3p8P8-NSDI7E2{C&Uv6?b+!ja;k(9*JcH>cqVv7#^y zziFrG3{^2uqR6f$)Cmk*Iw73;3utlXs`Hph0@R_ZYlv}?gd##}Zhc#Atl@$79k-gl zEg%LS`Q+;)uY-CZT>F%o00;LZ+u(gmopK)?p*Nk<=CIqz$nQx$=fJza9TDYVG%v=S z4V9sip|L-z>^EFHpS(spej;jH(bRwns}K(erZn<|UXOh8tW1x{n5h zwnDz4&>Nemm$W3~x&P5EDe7&&jt|7Hc%2&uR~s^CFZ{QeEi< zj^q!ilw90g!7kImjfwXb-{Ul-is~#HazEJdp!I<{_M*s&3wJ8}v||AZ0xBg9Vxz=< znj+t}jKWW%q|3adFl65x;jordK`+I^E37un?@3} z(EU}DwAI2+5HnExFC6ZQs;Bt;jiI4n3fTY#od^1(RN-d38Fy=N(>_H6zicM%=1Qh_dyB73i9R9e7NXYBH(^3w%pr~|87M?T zK~ONen#gX5pFe%Wb?lmJ$&8`zxzqTYv)Wd*PG1LCtTumDvo1(JMv-25>Q%F_G>>t4 zRCk=*y75o;rZAh{8i}Q3_Vc9MWXEYhGD- zKoySU_bN~K%b`E6T(gF2DdVp=7`t#dGM#hoKO=rKdc)v&U4_Jretpw{&T-zsi38WbW60?Ae98jh&rh?K8YH*2< zfG8oH+)om0fTrim2E~9-hiE|XyYGH2=w>Zy%`}}MMnH*x|DNbDrEa9N)}kLl!AsuQ zSJ^l=F)?%b=my-ggA-H|4|Xz!W&+`&aor&mt*k3?QG$rL?2ZeQ7v?|lGeh%^+Bv=P z6YnwC8&2A4?ww5ue#k<$L5XV#^-gyyHLZsuT2a>tnoD=}vDtd^MR4VSIz zPgX7aWpE9RA*;vH;nR${%+8qY)!KC%6o?p;eQw?N@qw2W452jcMB>ZhD?5I~=%V$@ zKbQP^w`q%Z{b(Lo2&MHbLWEN*Ugvnqg$bk}YhI7jZR`g<%?zjfhtn_WefDGL&6^X2 z$$BG?UYnzskuxjDi{;}_4{##ObkA0O_k|WK_Vp^W8YPDZ_ zaUHF;dOY(n%e6T(H9u^!309?A_`hDB5$<0Tu9)S0jQd{J1cIBlVNU9lR7Dx4)zROq z%wlH*M5jNf{o}lW5P=0F;291^;RP5B&CQ{9=zW8aZu61dh&tT+?8PH{T>BNRP0>(Q z55jNtGLMbHae=W54NqevIz?Cm9$E(`wD(lIO211WZ}PUG@0nx|Dny7GDc+|<;uI7M z<5$V_MazW`r{w})@mA%lwxw{XAP%Y@A&&ihtnOLn9@7zeuO zb#p0Y>Z}ZgCvM>jwKZQbY0|&{nBhngA>vO1Im|kVB#lG?WAw}M5;gfUbH8j9 zfp{h%NQtsiky_ZQn5TLgMY6C&4}bX)3+(ZojlN5Sw!{CVW=ht2wY!vQ?O}_$a@jh8 zni#K$HE%F#X%5!rUT4-*(t??r`UiCcr~PX1^MY+l92JNGj8IIz6M+-RXqC`qI>$3w*=mSGK6s)zyUViKduTz=?e2#XS=v&gLAkJq9xB(=rBl2FRn z{t#2=Fn{GB^^Pa3p|P2Sv>aR`8Tb`W4q2kpM?UqRj_zwif$GAXWMmeKGkMm~GfJR= zf$5k0a#PFjio&Mg)GFrXOoig1jc_qY*d&gT#ylOTw+x*h(i0JY3WWFkFPyGm=oekg z2xN1v)KCY>Ppu#Wuemb0#`uEM$J`j!{1ykfCS2WsepW3OiSjZ5RBQv73aZ*7QKR*> zyxf$bk|Smc7&QAIn%o|K>N?X~JbJ8hOd~bVFh$b_v?Rqp$l&l4r^wBIrh`Qy_&oXM zdrm66F%x_&VL-<}sMCV-3zYqU=5(U#?E@)r_ze&KGdUgaaA#pQDa}YaW-z$|^IZQpCA5UP-$TTs^n2EA4{#ljwp(?}`EM_i zok_{~M~Dn23EZOK))7asr}Na^Wt1c2Nnl!W`<{ua^MZ|st>xcrpCh}rn>TKo9kU$Z z{mpT92jtam0&>q8M{?%ZgT91$T4!jMm-)~HK%LlI6n-I7RQeI=OIRQ}l`JQoyHm}7 z|Cm8J{!?z630gRB74x z)rT+LLfuC{-kLVxhm%v{`X86uhT`))%C-7{M)%0dc7f^_#b!JNF)z-7w_4FSQdBXa zB$LM8Jf$$em~wNX-i2N1wxktN84-y^o;?hMx(2ud`|M>EQJo%)@}oWi;q<>w9k&R# zN;$gI^gN>Y*mmf(UA#u4X6>Fgwyj!o1V@RJG%UPbee)5hwOhm!QyeE#AK{bOtTLdK zf_)k@sa8Q;awW#dZUCSh!5X4ZPy z`MT8M!6ERmyD5W7JzzAbDB$HDXj&iI*fbK=+E}n|1LU~?2;q*^RnIdN{k_T0x5?I* zlXACiSUo|XGiJn0o8)P8(fnGsGT=rOy@367&0&De%3{*UL$8(_%G^Y5|n?qW@r zsOph>;YTn5hpQnS02V|JDqBc=T(qhzoDX2|I+nL-zZP$@-PAMld$0H5U60LNct^Fx2t&2wZTQ;yjy-PGk@L=*VWzwA#xn zYcbnQ)I7_n-$undDI{X5NQ1Zmx<=S2kerZ&P((AdE>0;Rfw*Fyv5<;tK%{DoW1Kf* z_OAuW?sB>66I?eoWXH~or9ZMB%6eX5A0?(mWW@HY3;oTHmAqw}-whfLv|Oo;dllQ= z_*j)(qggaMV&k=sm^sC)IQ}V=5pan@OSr8L5j4&XP=#Vkpt{_T5=J5sx}yb9+G-5p zHBIuNPp@nvd47FFM-J=wCnrH2*%c+I!90A zKGDyZ)0Ram%ZrP)MepjiWUUQTJ`BC1nbIxSGS&WNdGHLpp3HBwQz;w%u`ncP(%2Ql zR+*1%Xvy#-X5pL{_(c45l|r*^#HWN%R{i(}U_Bw+B8}`(p4O6uNlKf}h55wN6_n5w zf|lV-WYXQW^Kq;h-jZEQCHVD<-vna8dCar}mWdr4Av_-Bz27|a20xa*(`PzU+T=)z z1;}xO{T@~h2%A!i1HZb6-srI|W;48SaG1}tW!ER|y8f=F3_AS-hWN*!PVyA`9fkr5 zlt=-gfB#4A%=ABoG$Q^FJKtMjRqF|mlwYb=@4bb90C6)(xCmgs(`*KbTqN6^h7L)#L1!{O~meA{YgWOz^Rgn#UQlD19mv^im61rkkkn=QBlcPY^Y8vI-1&meW~-$^ZMJjm+G#r1)uEn zbO8Np4d-C#ltgMEgXkhaVOa?c1_aYsW~%aMM>wEztt6DM;scOk{kkU0ZH4S2f zTa5UcA2L6$`f$EFIDuE8?D`_Tot@28)OO)#%CcoE;F7^}*&hED5@AjgwW})0M3ZOP zyKx}i=LYDb}pUspjq5`SR3H8%b&ktJu*%v|t8Iq}J5dJa$O+ z+p428TT#;=5%<63D*2TVelr?rQT#PT0v}tnurH2E7^W5NGEUUAGovRHbxrlfU zD+vQRm6b>*<3UUyh)hjf>`80)gtXCr0_;N#B+VU!;}_TNg@aI;D>6O4DkG=Vsl9Iu zNmX-D$2!Olyes3bO&_G|*#(%#@XYB@N5D}jHtKarG@RD%SLZBPRqLtJ^@&fXN;Q%) zF@0%-k%C9;+1&KPV7_1+qFup6^sB=}ftYi@XA9mqEnGZd*3RFhk0?xJU1E#R31hNH zGz^PF4vz)3SRXaoJbamByD#8Y4V0LvWEz^<4woUJR0$RYE%FRuIoIM*`_%uIdM+OD zj2xUkL6G<#-+JfDNrG{o%N$dpMbyvN1Ppa_v<9j=IY^$@)_Sz9N< zSntn|B$Mw*6A`?KFs15qt>bd3js$Y6OxFf4md83S$*934g9^51Aw7pl*o)RQ98uyE zw6WQhJ=#0l{@V3U7z{dUZXlUqxnrD0X%m0KKkCmiCfgW8>DORP9$-*(91T087QFe9 z&T!rO>K@=xZMZ*YpXFdjzygBWA(khOL1Q$6YS{P;@twMW7M_|t!g1vMkwLjc^F}Zh z62=OpLhh>VuF>1;K4Uf!sear-E0mC+8ZnWK#a{N8V@4s5z~r~~2gJ?CNRK7!S6O&; zi&^3^;h!vqlA)BOx0%)v^$CjHMFa^$RmN*Du7`t{I~1R<_Zi!%4G22JwXDX3!KjgO zdIAGWTnsS>5q$Tq-O>L_SSR~fQwvP!(DB%E}zb={7#oLChZz&sQw1tyzY#n z3B1Z`>79Gn>t0}6uZSw9+q~5p+MyQ>ghtOml{V%i#zAd2q-qYF<(Y#&YM zM~LTZ`MXupHHil=|Iu(yI8C$4itJzTa#iB+qH%gMkZTpPlEeKwoj+)GXGg=|OGD{a zSn%&QZ~JjzD=xRzYy4nXerc;@wAxjDIDros7>|#SU-aHDv#M#%)BsSNtbzgxxB;6@ zA2(Ub_<*s%ycP>4+{yF4rW2|{&OW&UZo)tLCRaZgYG=d2EU zna}l#u(g&oeLNI9H-mMZS9Ku&t@Gjlcto;ta)2X$lBOIu12lAXD^IBtlmJtM-OHWD z#@hkM?TC6ioK-2yoY?kB@{Z&}BaK@Y%AkDAkFwbxCMnkw0UY8!JSy|*#aW5VD zlx2&?m(SaaQH*e{cQZ2UNV~j;*}RjdFZ4!m<6k}wM0^GThm$#bI-A*MwG40={yN{? zUVAl;{O>>y2vQ@`3hXN)oZ-^qpd1ZYW2O8VKW&Fb#Y%I{TiL6Ao%DIjFAwTrs(q9= zoBrV$J!I`^9f9q(nNvh8CaNh2b+*1-hzb9_2*@B<3D795Ra$J@!S8<1F$y18isQv` zxcZB~;wzNc8`?ica+Xzp!UTI6b8{I(>`nY{+t-~A};?fj$m5JLbrCniz%~PqMCWT#-+JD9*(>XHs1(2YQlm`D)QY~`+07yL- zZMK0Wt&mj81+rGg>!&UrU==qs6|MDF@17k|ZS3F!Ne$T06j6Lbu-Wg9S@xPxyZG?y zy&A_l>V+Q9vcWzCo8LIfsH_Vb1i3id2@RU;C zewuQHI=FNJ**V>;fD^-Hn`F=k6GaQWTdtiAq_E#i~%@}fGD_ce~$Ca8U8_pBYhKOqe z>2g#}gM3>1Qav>yNiyEokJV-`b?Q?XVZLzYE8tn5cLAcXeI=yhI2ufH$Vm;&g5vG0 z=xE|l7Dw<&Zd*^tm8F@+2?b4ph%L!;iN(Ik5VxoPQDEdrDc=6A#sZ_w?|8Gvpj{8j z)%)7nn>m_ru^q~Nq5s#wtm^Rjm@^TnVW5EtIf9U=DGc!SG}sKndy7yp7S~96e}kw;>~gl z!#tjX3WWxiNL{Qp2~+GZJ0It4n<;g`Xd7a0tv4lv?>h_n-FXjItZK;Py$7vF)o5zm z^&F8QqUMr-P<=d^)a3rA^^jMW4FkzxZy>SnHh2r>KJP*URqQQi1p5w}IGB+^=*s zd(Q2;VB&>=bWUPT!auD*NMRzl2v0ky^4CB#HVfb-z^vAQz$f?8I$wtM;?QR1#6Pa4 zB>&>%EUW7D!wjqH?IAq7J)pgQ&AuN2aN-QB_T}t6(YoKp1;*iWT#BarTeV12v!xPh zr%pWCGk}3z;CBOXU@Lk>=ah_8;hDB=5v9EQ)NebCzDQvY7kk!z6ZTw{tdKz2Th1Q>nV#B|#TJ!2DrQ8{Lw?7uPX zhw}pO_`JB$&_QuX-dmqVCnX1~W}0e`VPsO4>|~(Zn#HFRj6Uy#;Cfq!bI1lTh~)3O z%1B?BRupk=J_2cR2k1-2w_Q1pZd57v)r&Lws2nV&O~csaU@Gp%3oZ4S3y@<>QCBEa zC@G+Ogc;U+Xt^tWw<=fXRlt}XlSqQM#!C4z-MUYGyw?{%F?>8ma}Bf;(+Z@o7ZrjIAlfYVcFpB_;scd6f>(>G}rS0K@I1$pA z%RBV0Z($OH?(ZOSu#9J3umG3o1}r*KR3Y>AOHQ>{d<&O<-K9bt1o_akjuNk`a~3?yhKpc}(<@g>c4Gglt7&4zpM^0(bPHYa z1gCbzdSQCWu4~LPsQeV1g&1Oy>&NWR_JWqZr_z>(9{Fm%4no%Ya5X`o8Qu}mACp_M z_75ca9%>w_#jQ(jGv;Y`3SLupMdh?gT6_sLZPoWIE_!Z${>h8=cIx3s4cDbTE;*ON zz9w^&mdnxtPlg3=WlJ+M@}kuH;_>FSo>To7CA|(^B}ADQ!(Krws#&eCDU=Te zE+IqQ57T-ss3YvM%bhPMfSXv`&S_#G;H-)|iMe3NIUW>|+B zLPr&w_~|j2>bU-n2kI%tqa@hh3=gcCPvL~h4|FM!7nbf}X>w#$XUiR>2|Hd5moLIe zHEaoGtpUI_tG0A@ECJa4rno93qs>Iw!`JB z>!t0NqU{fiG;JaVZ@iT~!qV`V!iJIw;TB&($L;!kGBFUgMyV6EUXQ%`uUWLrLocXM)2)wDq-|Ko zd`atCX@p=ccu#qTqqsgrF`djGKkh3KMuL!TNcU#id*FTUoXv zn~qVk-$E3kP%#D;*BYyW?lINFeprYF!Owo3xw`uUD&btc)@GGMO&r%4Tqw*?Z;pvn zxWeMd#F@WG{<1`Xph2#+Kat?$D`=Xw3n8Fn;+r|oSCahn_LUMc{I_THFo3J~ZPvKST#p2*isk~Ct08UnI28K*Sj=Jw2dQx3eM|3TBFP;o0 zsMjCR&z;6Qx~dNuODx(D_p4Ci{lHb1^v(w=;(^%3-5uMK?xT=6PI6a;2qLfaHur*d z02jZK`@lN(V`UcR#j}$RpD-IA-{gesgngRo7>xEVzLpsTL{hQH-!Y|IH@`p=F zyR%0UuGPXDn38=jrb6X$0m$(-BE1Q}g?tzF1 zqu=v*gwdmBZ0c}N(btQco12xP8{TZQ&bH7)IfWDLFhdOA6p?DeB_3Uz5pza^Rw(9M1O+nqUKyVukkglGR`&zo$zsuLtW% z>W9Z9G8iECfxeIX--%^%*_s+*_Q`^}(qtrwREFu@t5JgJRRNanIOz7f-Bxbr_Cm+j zv-*rkMsL1InB_gH00rXrAHm3{ zm!)(bvN)q*UZ9Rb@8IAdEjPF3HQ}(@Yach)yd^ppuxDD86`54MEClB&suGq8yrMcSB}2&Ev5G7$-h$u&0Fve^7t z4>pG{5x(ox&Lyk)@O2FC_RIA^#&aJQvw-RM7aq{Cz&S#UwxQ?u>_6AJ$x6L#s~}Me zn@NBY4j8Er?wQ+4>-Y#N_ggk!KeXjgDMmAt7HLmc!P`Zp7Csa>{w;u6`^T{^EAQ)Z z)PHQom(|&9v@+*_=d_Z(iytm8N9o{~I!CN2?IocK@*)=2YJ?<3Fu}LK`{&Pd!8fX$ z`=X-Md5`Lwn9FG5&kR{UXQ=RPT*r4$E6M)HW+sBJ!!`{1itsU(Eyhop-pS^TfJj_p z=%To!MeY<#+`}_X;v52p^?#sB`=&4867w^v-SMj8WhP;C^o-Y)<489JX0B4-xM7tU zm2$*8AMVN#1~8kRGv>*%xLoFrQ=lVyY+#e_(jf>xq}QPQ)b=$jj<;sJ9eNIEPD8Ul>+T$jpOTgm=Y@Ue~n_CCPhA|gY(J8rQ^Vj=tyjt zX%LWj?UU3hCU@%^;S?8Ctf@Mh7ExjQr=D@LP^!h$aOMjfGkuPXHi-O=EFkY6-)|jd z8aAo2ziXPd1^TT1Si2c4l%4)=|7|ueqAo*NJPp-Vo*bA`FTDIf-@LxppN@TNuo_jS zY8)3-Z1bI^mq6TtAsu5W&E(P&#T5Pb^F|QX4%9<=eC7@{dWNrga)cb16`Dk6%KQuG z%r11#LT^5;3=F(Nm~*i_YAl0OaKW{*6wPLB@AZKSPQ4JVJkENrTF4BR=0%s(S*2s- zAo-)+YZ_kNJaarvjh0B;At`4mt)fMDl27QyTXJgLzE9)IszLM z4<1a?_;sjLjKRvBpyO2L>^S9Z56Op7{kt{mSRNI+W{K2J5FJpXqhuTu6%-w~zi*<( z(;zA}as2ze19Xu1*4w`MYcZu%|5~MhYG+^$R!LfG9dT&SIWW+nMqL&h3E%H62pz)7Hp;C!8WW28y~$q zE$6-D38bk?W#NWu!pKI~-wd0oH;-tHiV0G2wnniOQr=ewxg>y(KY>JLvk#{8ij1NC zhVOj(`}`ilJ{`_cjLzp8pN=i>sOB1QC^SdoQjGPogf{WkoTID%Q%w zJ$iEtENTJri9`&3ui7JVFp->cpus8pe~lav0X!q0AJv`P*Tblub&jsm3uGAiya`P5 z4?#Hu?>Fg?RYlv=D3ii zHZ?`ps!?BFF2C}ji-FXH;c-19irMwFy)ARB*yj-cWZQuoijHjryDhJ-d#zyqUIUHO zMla_LtIhtE7sVxCD)-gZYB$7`Dz&O43<#lfQ5|$hw@p5sQs4bkq&Jt`=@%ykW8XRE zMcqQY_Kyv`=)8yAw24T$McHRMrJBPv5uon}e*LY@Y?$p=1vTis8)T>}vH$vqS^n|; zW}LBf0Tvs6&htFp(T2gD?ew(Y1e0Pt^|ITq)mFVZMbt&DbHQ@K$}52kLZ}B=lNnW2 z*Bt~%@L2ojUXEY1yELb3j(_<$5manjnTN1}7)-XjD0W|%fCt{^8hZ$Hs9J?s&LPk* z1Q;WL7S#0LggbA^>NyLbopqsx8di1t0uIY9U|DB8a}U}dRZsKuzC7gWn01I$OsmN& z(8lE8Uu`^grTV-+EIgiDsWS}q4-ckz1Qsq1Ry(tFzy_(CXyC_C2Zbwg2tx!C=?c~m znCZ8OHn?Hc(S?i3E1D9)3pEH?vaR46=V>_2HE1YSycdip^70?Q)u1=MNL4NF+{a|o z1a9J^(-5Pfh%6K{u0ZfG9NxMyUZvw*P}&BlrDUNNIVQh|=3yu$Nh&U$6UjxfT^rd~ z^Gdicq#$@+DFuirlu1_p4wJ>aYEq5BVYvP~9zz6%0byapqjDi_W_{NKte zbp{{?s#{d@KU)R`bmYaa)^g{_<-6hY?}3TG#vvvjGFnq-%q_A4L$cPGRNnim{aPig zD>C3zacHE9;A_=>X0=9}5tutI#8V6+YekSClZ*XE(fcAa62`TWqpY{57#jaY94e`2 zXO3pl70V`Mekk>Xm`2oUyDLT}0^e$fic$tEk2yM`-MFFxNU-lsPy(8t?$lH*8EzJd zrEGjMjAlFR&_BJ7CAG``GY7UY2?_BlLlM5=B%;tE^|%)B0sgg00?cYZ zBh!=yuxXjmX!!Nk%?mSThJ10u@-r#vu&ZE#ds4_LzDeuat%+2?oUeFmO9D5TB+#Qx zV#n~stZGm=QtiDYSGj(#*;&$N=I0)W6t)da6EL`|*r_nINE<`SkCSoQ*ccgU{xg!& zivOv=C@EP7=+xAa3u}CQ^d|T^gRQ5Tv_j`$D2t-bWp!|F39^`0^N!!V`wbuMr9LlT zdXj^lbG!YYy(OL2O6SAt#KalHbVBbiUmHmV*PIiR2gNWWq1x8>xUS~A?|pp_`EpAg zoG#=_m@S3T)rjle33?zvq(}?kYI05MxMvA%dA`~QJ#3O8vP8RZJAL)a-PDFEBSCI?uVpWHY$ym^xrJ1#hHb=hV} zl$5Bc5oZ3n?QMLlchQC~rIfHDdeiON?r6MI*>vIIA5Ui!V9idWY!*uWzWe!9U3&2- zG%2B&{IK%4HAMS-@7ezGaFtX}`QdC?ghx+VdkgzZx^e9`>#165)7^sr+$o=eI5 zYq5p&|94@?P2xQ8T5}1ghD?SEVDICqsjEvR>=`~k9m2-Wyhddob^!580`Ds!y_eL_P@p!Cj z&wk?K+495Ofei3m9TGR6D*mT}1BgLD%F`0zR=w*c`Rz^t1UBun$PpC)eB_&$fPeS( z>ziFh6-(H**O>l7u#l6HK{9_u>32g33>(%iTIT{!=H+^K>{8M<%Wra3>{>M@-BXXx zz9s{@>bDsQXkl!j+qDEoMbDdOQ#TrvjZDaa553I_+C7n@YVB5^*Mns`?A4;TLzixliMO;m`uiOn1I%v|mwr*7xv!#m@^RLBVWJQ)-GX0%wMx78Wgo$jeJSx6f2htpFRCPX z##ux(f*K5Cy*cB(}6|FtU?ggV19j*iR30osS}Bq#N^3Dmajrrud7g zvHP@e_AVVgys1~VE)ZF(bX@2EQ{#B=55Lc98V0vW5o#24fRju{_9nQ=>8m5C>?N~? zx-5aJZbVauZyZDYf&x6M4g#qV^4+|jaj{&53SC_2w-X&oGhZzjO9>lnHRK6 zjeAZ|mUZ^`cxD6 z*&-8fyC*zvWrlVavB=P=ZRe`rWofg|MPF~HXQ9UAw{utl6ZS0L9ZV2rh0HIVMQo=s zI59*+)WS$+^9cAw%a|hXy{28AJ8V#cDXP8eHkVu0#B%E`GAROyZNK{$a?%22N=-hm zl1`p3A~Qt(i7oMMOf-n(Cs~9+8iGaI7ar4+mR&T${bAp; z;gmWJom?KA#rmC$f_JJnA=i*0{S3iQ0Afs;8E( zZ=oCgJ=E|W^idZkVeO;ZF2TkZCJ)_f#(#?=+i@Y$P}>*50kF-*kud_`>Z zxgsa)lJ&}lrXvE5p-D_(w&r7@n=Ilx$)$T0Kg#OdMA8Rp-431kV$7+fB6 z7&ih0_^(bOc837^NXYM#yD`RGoK&!RId4v;x+oi0aDGZ|Cq7H{|iCkr0G;s*t4B zj#dTGnO%x!_SSS>JbyH%p zy%?U0GDW`{mIJG}&uCb+Zu=7!Xh;8QXi2}n%)eMs(?q^NYo1rGA(EB9vl>xW8X)O? zk?j0lSJShzO?-X3Y|%F5^^$Fsc-EUQ-Fd4|hbo%@`^C2Hn4;@Bvpd}?xB1t8vJg9B zR@sn2-m&u!y6QViN<9#0csHp&m! z3GWAu2*(tlDcN`IMJmm+el`vhz8}Gl%p`r$>} zrjq0kD@c$@8%A2oi3qDLykmf)^7g)*^IMYD3Qzxq5@op-c=X)I#f6-Mv^ojE2*z}iixRQ92Zi_^`?rV zGLP8$ABcBO*k61V*@`FzJd%X6JdbPKGnlJv^|#JrQ>E?SW+PVRb5%Wg;E#SvJ$2h}ak|$%v^%oUK=(i@nFRh*D z;8I;D%x)b;EsiuzXn)-*8(S7xuG$6DcJ6pa#_Xc?NqT2;BLaLUBd5 zqBL=(jI#DId|{D;qX&m$X8%U5SRwm#l26=f*PVs$L3_YJ zvt<4_G%!G(32EO7BM;&x9FVO z&~y2*PbrD0Hz_+AEYvNqx9jIdTjM*(9)+2eD=8ZD z7gzTO%=Co&LhVU4jo&wYeX{byW(VA>ObHY$*u5fOS8A;I;1IY)Wpn2wT%4c%%o7C@P9((JMa0+)M8gqqpc)@h%Zl3+j>#|~w~{bJ#{jnd0L>1x@v zCGwn7a**&6UB8r>o0DTYol~1L!>81yI$aGoAN6Fg!axV|LzqiPN8I*nz67P2sVO$z z31B`q3RHIHNHYwLd=%Zp1}oD*G0o*!-MkkpX{A1nGIis*YDQ=d!PPC2*udXES-6ip_B+KW#Y zNAcPODm=~j|8!4DvIe@c5jb2 z_ytszxzUH=&05T2ifU8cfdU>&W~W-e7Zw(@zIrE!bSV~gEm%4LN;qs*NjJ!+#_`tu zFVPc!${}~Qe0|I>#$cdhij_0*ij%N47a;Ei4gkv;+vp_s)#0S!FL3UkuQoT>ZSqG( z=a|JhbjUCMll`NQKMe2K58MRw16if5gM>nfSirOq018-on|)S)0V|}gBTW+h?=Q>* zhitfrNxE(dKLC=J;EZu_3em(xta-3=-&L!=VYIzf{2O8{x}LSXyRg`_}tzuI2wE`e_Vc`{QEx(JBp8N}Lr za{suZsNsak>q;s;+;gnT_}uCj1$-QBF8B)0veCpQ`KmDk5N13Cj^fUEC&KuB&=}ud zuH9=;c5UB9NAb&tJ{QmLr0!&v=S_`Qu~Sw;uMJ>$T3+Vo*s{q-`hb+uYBUK>Vk6 zZ3Pi*(gFzOVl_^grUx7}69{m{(~Asgg>@riF}wI6o|Y%yX)i+h;3vJV}asCkMhb${j^i@0^@kym=2g$-Mpc!SKT4K;`IKV-PMpBe28+eJTTfTl z1VG(g6fe{UjbA;TxsbmA<)3}qIqSSWMO zU24p2#!bGz+-9ZC(PC;9x@scs@}XcqR##I4G?CBd!tXq;SC=2_NGM?MA8Be8s)eJ8 zQ_+C!nmc>>xWsKGU!G(=__iD0&g6V_eZ4zu)jTs?2(opa%I;t=ifT`Z&Kz}0gVilN zU46PY21OdV&EO)AyUc!?qv)5S?`a zj2smXyu6eTztFw&@+?!H-0SrqaIOsjFG}lSju&v0?wa{Mm_0vmc43p}ZxWIe6G7|9 zDV5IuPR`Y;f&!M%i}%S*&CFm#u%ouk{4TzCfZi_;focYq&d6z|r?y(&X{%f`0fnd2 zOqHo?uV^CZ79h;!eqW(K*~I9L*?+Aiz>}(#3i1F@B##>@s;B5pcSZp9#L4(|{cmSy z=p6=e^@yeMOC4L9^+=9+uvS}Y&~>=qtBwA248%<`e>`lsieNd$uF`+1c=V`6IK*;8 z8(+PsWfe~=OFYDpLn@Cg+f$1~l?tpwJyEaLL^9D&4|OmbKx$7{b>5>5&m8M<3jU)#Mi$A{dlv&2j1c*E*HHs*i@2sKt% zL-asQVy)o4HX_S`wI(nmI*Nfws8$BW0Q(hCrrnpGO28ahGAYMW37hvGxUgY`;Nowo z`SS0sRQnglkdT9TUUEs%UKcBE+7NoNN|K|^S4|!qUQvM+kWMuKX-3d|n`rtfPHDIA z!sr3@4VOvvfvU0xpsdpimd2@M{ZW`{D|{NiG+LqluJY0>CHt@HAL^k-`Nocg+C7B` zUT_^-0k(1yx`#YAL~wv;Dt8H;R6)4NJPPH<_GJr6Ync8=Z)$C3pxO`76qGvXxMK0+ zBti3xy8ntYlPog^t>Mopnt@o|kF8!pt*J~J<@?m=9~bwxv*dHQfzX&Kp;;QERE5-G zGvjbbverc-Pa;SvN$C45wr!p`v`k$&LQk`_Q_Gu;_BBmr7Mh1A)+Ql~>NO{)>>f{0 zixkEbM9p8cpc|2iFrWgclu=D0R3b+~l1_hqRRgV&ezcx()`jI5G+QKg?HMz~4^ zW2hL;vlNCL*!K7F+|mdEkyhF7Y;i>amBTfP$vLm214DgJqtWeND3I35`~gk&O`6lW@)GU~6WP?~=g3JDw6 zQe6+fd7eI&bPm)eND7G|BkU!;sK4L^BEUouGeMEEiJMPlg!}$AL6-WM{&u;;+RR{3 z%250_s_R!tX=6)i5701tQL{2Kb^!QsK(I>e)!hXD zZO3d4H$u?b`4QrAt$m&08{(NMuW7-Y-+QMG#|pl(_LJ0%u zrZC{BQFJG`!?anWZ5$D}q>3D|nF7wLX0lyW2%%^O{->=V9pC5uj=c~C!{TnGSnaCL z3NxkHZQWHK^blpg8Bc`4l@sRUSG|gba@}uy`ff_sBacEL*`DhaKw3r-zOwt6>^6LC z1jgp-cIs$D`|A%X6xxhRew(h!W-9ocC(LvP#q?Ex4(stb5shFR8p&JzoL+CBbC5?eUgj_@j#gi77F2 z+O~NdxDY%a4cnToPGqda)%3T`Y}YdzzSBkav2d>L^!s^HexBRF?W{sHe(dn>O6xq2 zpJ%lfG6XPz_bICfd}TFWUd->sJB9GpKH%2z*thk)#sZP*Kh_@>HW{W>ACH6?j@YL$ zv(67_VI%5tEIG}$e-}gVUEO%+>^QfvGdi5g2E6E{$CCym-}CfJrz=p7cZsjw6_`JB zD3JL2l$QYA$*q7aN?iUKVE45SLEH7HR_XQr@{|XQUUdJvuDsoh14!bvyH3TZPLu>8 zP(`3%e`ga^cQS*fJLjJBcJ|(JcQWqY&;G6M*Vm}1k?5k?bP`VFD5wc2a#~tyATENL z;t=)H9|!;zYlSvX&5aWGy}mwS*y^ome2?}hj}lxnp?(4vWxPlBzmeB z5>72D8`>w1(09Nqp-}DUX(8G`K6*n;qY+fbrxa@s3w{{fLtx@gwh2b5kWCzg=0-_C zT&|@D6Obl26ZWpk!0jF93SaOSTh~A?;*S-b2J?2DmcH$MEW3niD)*JXS%BAbR7gBx zcgypJYNR>V#!8*2NNsZFulty=kFH{PDp{>7N;5iWTpH- ze?$HqYr9~{l_n9R^Rl*Wm+I5U>6*XXQl!FZQ5!cnzEAqT-{=JqWR6PNSfI93&j(#%-O#ZBi*O zWbvZ1>s!f|cbPPMAob#HYG;2Lx{E3p67LleH!L0n)*9Eu@Q~ajna$8FA}ps~h|}){ z=+XmHvIAZQI~!bU67nz9M6#FNy%i0x12VFnE@8TET^W< zp89=lR0rO|keNg$Q$5-1xu%J3_9mY5F)`DnyDmG49kT**RoLL3>-^1~o;CAV@P2%+ z^tn!4bV>X`QehIb6dRh;d=T~KqYU9bC+LOh)~kl- zcZIo0>#~FNUfs(3e&acj?0*?gcY@bU(EieY=UU{hg|m48`cBohTTO1>SzuDDK5b2`u-Cy1iku!^gpHD0_eW0?Nf|D;K}zm(Z?1i zZ7Bs*mPKn$Q+!yP&F}VHWaBKp7l*!~K|J6osi|Kc2>=)I+Fe#NrAZ)|8M9cY#N3u* z+voBXS~JDr+2j=`)}=}fJ(O6Hta$>bxuh5jP`vLcJPU=VLn5Qg=@Ty|`O!|is|P}t zb_?lPJ!;cblCL)}?>%J|YPfU%-~zZDOZRJg_xLBOxY1k_4din5VtLOk>iNwIl`Vir zm0q}foANs1$OIM+T$&KESO7NF$;rvNojxi6^kQ{+AVTMl0tWyLHNGR!v!7%l%5` zS(TxQ-4FG>6Pi2r=>cGML0v!kbD}|mRtsn&&~f#P zvt0ZHqp(MH`r;qb10_kkjL>1eiI24APAO%T?0bbCSwNIh3Km`t!&yU7pCIq@O~HDs z6|KwO9!5T2EL8qx=<@MXknl*!oto5{BDaU2`|FlNyZ$aixcL12LH?FVE-aA@fnm zlHC(flY^@5GZX%)gzY=7(5E^2CnfmCqYX3vJ~OB)X4M;t64zmE9_aSG=C$-rNm0U= zYi|F*dZ=wBZ~j6hk|XN<*5GzkLD-f#PWZFq)T+9mF%Fq1iKyhqPiU`*N8S9CT~*(mO-nwv7lYJp`pyh1h!pFJ{YyjMTDUt=;0d$tG~mDlkw9#uwVi zE(hy8n$KoD%b^5UKU+xW^am2N5TWolH75Mq1EFsk;d4Bp!_v>up=U^Mwz26|eCouD zXG+%v7p&8RVhXs6L(MSp!v62Lw!A#Xwy!2-WzjhFC{%-{IIKJPUZ?DSFwL4v9$Gf` z5Ykd(^?3`j*u_4jG^#e9=0imm(&g-mMdoV%gj9ZiGYNRqzB-Xntt-{I45y=gx4i7c zSDA647KX^P(KsG7Q*GC5oHf@GvLrTOlZQ$4-}jb{Z;aRtSME^&t!P{5-ZasD`@+H_ zA|tG(gdx*1=?R@zL1ILVGq3S2=9^kj2;0v+jgm*bK}y^9%x0gX@s1OWX@iyw6bKj^ z=ddGT@fbvNVRd^8qH*}DTAJ|6g|d#X<*!)<&Nn6bl_yjk*Gk3mPCwQVU~Tn7LDvEw zaXe~9i25H&m|#5U_?2QfW*y z^h%*oNqAuau!2I(*hWz%C0yr-u6;OO+03Y-0}rM^^$B$h-R2mQ&ujD5U3y$WF0%^x zAN&G2VSH&x+813~r$8_ha;SXW*SkI(T$s1qZr?bC4R+HdR=u(EYRj*cL<;DnHd4ry zJj4q>K!>=snRu5Vl^p=S2a8=RyUSw>g#!U-MNq5{cIB zTwXPiUk5r?4&65GezMZ1kYB8;9dMK*qiCR8&j0hylL;H%Qq&T4^eUsBpqFMm;rQ5s zq4Q2@%(1g03p62d3(r~Llc@RuiD>h<99BR@P+(iH>QL=Er^VB#&lMr5!1+%)2tU?S z3*XYaE4*@v+SRtnqRMq^c7b3j-y&lPBJZ0W} zttLDKLTZAMO+QlDA5ELc!_P@WB&4zlyfkQmHeo$84V`H5VCEG4*Cw~Zq!pGydVO^k zf>>_HJ?Kwr{b>y=mYHWCk;x-xDW=Hx`$T;f+X7icC2K#ymmF&&0R~E4PoM80xeBE` zR{^KpJ=1R!jI8*GpSlq6cL5>g`P2JFZrs=V9>17eI3EsY0G~QrUKr9^(Ij6ghF)cHG3=l*EhJ5CW{uIS-*H*^wl@9#1DKd)1X{~})J*#vrD2}F)Jv=b zj=K~pCMKqahQ`)HjW7F>PDA&FJ|3uhTI=b`XS!mB45s7qJ$Hxi(gW%9VhI$b0jz&1 zLn2vab+xUO_+14%1IdLprsIx+rD#tn3M6bm-+wbh%-J$V=?F3@3LE1atsI-zZKbRP zdu)YZJbJr*eYoIc71x)^-x}@F3c!A>gXxNEB<6|56c6kmd&Zi>agh8|nB!8&*0+Kb zLT2Xpx+C6q+(0=i817i+^6r~uL|jEtRPMujzJ8l~9(s6!@&n|pOf3cOz7=2+Dl&Ly z9q|)WSM8VRR-}88eI})1@LoSN&q3)w_6n*{M8h<;<9`~mPvPfe_{uXjIvAKj)U@Bt zgk!Rgh>M6LF-Q|pq`yEQR(14PlA}=O~4lgVb`E*m~N$m8m*8^2 zNW|%`GqB6&fmH7LSIar;5!r;eLm%P72yseomlJe>XTF;46|3A)J+_L93Uter>ye6> z%lkBuZP@9I2?NhsR7+kIZD9!}w+CK|%f@t+jxVv2 z*!toUOT{Z6loC1kbdc%BLh%fPXqX-6g-uOU4z$ZFz1eXd5t07U7~eNlhYhwzD{mp~^kjV$>IK z-+e#*VFV=Ovkf2edgt4IQ~HxVCdx=7Ybz{T&7nJG{Rzg8(J-81#x1Lw&a6dCByppX zF;!z^!32XMLr95NHX$@xa%pqAl$n-?pY=b&E5JzU`bmUSF_*)ogpX1$m>zRMPcm!X zw^e6;Co;gmXFFEt#KZ*42-H8dU{&IfrXv=xFKRN@7D6;6)OCf*jjJ|e+u-WF@2DgO z4&;GG*VXhv^0-&6}0;MXWFF!t*H^ArmZ^;}Ft6*}m7Z zLYIW^hO6}4bHcl?>iYx$7`|ytM-Rpv6wauVT}C7Z$15i zH_3fGHIlAkV}zmz>xtwWKnOGy95m^>LH098Rn1qr@iUxKZ93FzS z1tCTn}j23w@UsEQ$@bGGc!lya<&d1kRpFGv3 z57YVh$jrl|?bkUgW#7R3o964^6Yj$Xhb-p?x%tM$ABg>NKqlFKZvtYK~o38<%%Td(I*J#tt_7FiheINz^na7*9e_Uv`1%+y&L4 zT?f9)=d;10A4!kIQu9f^-TJKz-<;ctwfZNUbG9D+K#b4VgdpnA{ViYr_clqk;njE4)gpHQdX`-%GP&=POrzG{%&pJ*I|-0du9Whl-|*98B@ zV9>LGUoOyr;euGcF}wV@`s>F0{kRMDVL zsXdgUEBWHnY!GjOqO(>Ow)RDvSG>3r5{EscUV-Dvd~xr-gkw=X8*?QlwYrX@f82do zOLT(OA)2s;8`8qPws0kLT5YhTqbUx7I}@q7eEew#piV+BKWw;WdRiiN%5N%EJT#E! zH%`d8op>dp#(~>RmT>(FmY^=&k1Tc+7No+>i! z!qxq_xjRXnA4D|ngPo$HEBPwqCMvk*)^WwOk8AHpEyw0iVmWKw@qqB2QE*hfCaqwGO)P*xd;me6G`~~Pj&HNg_sFdM-_wMJizKQqzIseH9t#_u zcH3WKCE>hs5>3`>D#xjS)+or!*O~LT<$E{BWsDkQRadH;KtT*-(Ro)gli!=fy?EP_18Wz^$FGzg>`cQu)=?S3M#H! zeaZUXd;ZvS-b}d5%1OBYbiF%r;Off%?iCTlFEixt@E0es6#k{c8TJ=bsQeb}jmh!i zw&_-xtXP|5&61J(4z^g1le^YURHu!wUpbR6Y9*JE#>NbWaUc9Lv~$s z$Y?6ZAw`S=ed*Z7_G!05DC2FFoIuN4UJ`NGQ7Xr|+3XuOAmh0|?U!cv+*Y#-fN$1N z@2b-Kh{2?p{wfg3Oxc_{1k}wAo0t??{0^|L=LW8?3>T0eTc8h&Vdq4?c`vS2R<=y~ zjIo3gQdAs&rL+l>s=hKxj{}g@XOV2Ih-_P&oUa`lE{fFXxc-MQyu44}?Th!|>vIRE zAPmq2Gi%voiGEf={5HDY9{U60Yao=d_7{N$B-(CZrT$Aa~VC$$51+KI=9ZgCut-L(T0m=Wtng+{qB6?7&H%OmJ)3 zN)wAbgq=X@wt(UpLLNk&cjQ!^?Mh`v=^v)+qP}nR^xB?{eEU9les6!zV>;obFE{Mz{gU^S#5VkHE-7peCN3Vak=&d z0gOIC^y+(11#8oJ7P%G1Sr!rEKDJC27eHSyQL2dJY|^0o+%;gRZ>>!pD7W44{Sx2% zXdhu1wqIT&heJ(2%*`-OEaVqXT9eVi{}M;W2lsvT*L0uu-0II2q%HGlc7klCJLc~8 zD!jqiQyC{u4eNOnHH4LQA5&!WywmY{RNd}9{z0tedD+P2oNWTE#!rV(zI_wzWzV>G?b--+p$?j2RWWW*twYZ*M$$n#0@o zXg%>RwPfWsa}tbYv-76&SD@>-y(@XP<~q?-X~zQUzyr=VBHMAZGwM}l@mNWo59u~c zc4G`+ahN}8JyHNW`r|1u0Jwpc1b)6nx{??9SM?vI#FnAr*g%znj5$EQ)N%w5JinG8 zhw0m#5=yFrnC~Ig_G3q}T@IW$)JY_t@}LL>5v`g^k)uG7_6>VgSy=>}#sO0s^`J|a9Uij>b7Fwk$^ zw@tE&PEY##m%zSrpk@OLSuLs-A_}COJV*day}jAS#W2>wUxMQyB}7WP5&d~sNFX-! zKT4{|44Q}N0o0(v{zMm)xP2BEbpHmV@}Vnt3@Cw|8Ax+=IIIJttru2N{j+aEyA=K! zCf8M+1?nor-K55t-nu;5(v4+GL|m?#^i{8M<0xnU$z-YT{#`|6WOP)^#IN8VE1*H@ zilrCFNSlaUMDobo+<53gYTXKg6;w)&6B}3inFCXxZOfooJ|y*^OVX{l9rG13T~k$z z`sejI6U`$h^L3F88WI!k>Vy(-^s#k6_okaqac7nqB?HY18_5T4Lagl%!Gb0%t**Kk zYJst8$s@utVtgzk<|2&Xpy5~eE>~7}qlTm}_uKCP6MeGAa+yX$+H?!0><#G3sCXC# z_JgnckyPX8Kd0Er)-&_kFIO*Cjt?mAourbV#6X4T6u=#lgX&=}GHn%v@RFkyQNH~y ztOr01#g|f}8q|}hZ_kbgt2j-zynVTy(k|Cq(sDA0!U$lJlo)^T?a`6OAb$7Z1w1y& zT25Q;ZyYZB>LM#+#Ff^Z30^fTq%FR&H>No86alSbZ|7&py*qK`ckXS{-J=9YL{3B^g>1pO_40PH~VcpW#&33Zr|J zG|e#)<8@q~IkjQ7!ytS~f)>T!z6MoZgI3`DpP!~NtUDRqm_dA~>{i1B?)%Hnl{X-V zVJawrFD8rQdSustUL+Wb3?93N&*0_;_Z4wF@{fG$-+%v1!mRL-ms~`yd(TW;h$U!S zdL3@WP`qtH8TBM;;Qun21z~^+j6zfE?+4iue-k>E%ah`%HD^dsS$@6O)K;Bm94!++2Gii zpG!Pmp%L8)0HY(jiv&>jPFb_(t=EU{(Ss^n$B)wngdEGEyVlokKSX0B{s~!Eoc36> zZoM#&lp!lBC<(@|_*l=C0vm8O9UWTj8Zt|;?DfSk?T*hFQKO(6;#)R=ZxWbT9^O=E zY$OAq`G2W6e(dLh;FSwZ)loskLk6uke0^Sj@i2N;*@yp1>K5(Z!;GOsrJ?P9R_izZ z8PK*QxKcLhq|8Xb87V>-VspJUsaMkjlr?oO#@%n!Okrq&L+PUfc>%!Nv?4JiSDN#L z0~wI>#6T}BBaZ_6y%@+zY_vK>GD)v8Cd^#Av;w~hHm|>Q>&?=&ma4yT*7?ZI$eYDe zj9?@1=UNC<(|-Ugg^5O!(;pBI-vy81+r%-S4$u*RaFtz=mA`;Q%W1DM5Y&CX4bnsd z!u}UqA4lrIGa&@X zrwRz;iTGC@9s3W)MX^Q2pa4Oyd${ZObQNkzJP|(Zh7Rd;Ms+X^qMJr7X+}+BZ!1M|*K99c7t~ zB#H3>bJTiENFiNzCYRjUKfO9H_S%Nk@N4S=l$?|s5Fm$%BZKnW%yywY!tn|g!&|?o zygsWGrF7d8@S^F=!6J!N3@ez8+_$NXgr(G>kvtQNak|hn`B-x?9%&lhCw5^d^kwJJ!;hByys)g@9Z-4N^>%4fO1q%*n zHOK2))p4L#pz4_m;u&qq2w#!e>rlScisak99v8v>f&M1^4Fx=kJmf_f@ngamQ)nZX z?i*xS9dQv=4GBpk(S8m^2M#MB?lW8<1|j;ogLORSo38kb)}x1I7#*TauW?I4gceB0 zC7u7>=9y}~VULxG5`dUoYZyUIZuc$j@hOVv~Q4S>*l>&fK!Yfht%2?vL6+1Y6d z6NMDlff}RsmeVRjuItt}3`_pz^}&aEiv)F?NHy66r6K&fw!MaG`<>-whC%;)F{XqP z3q{qyw1FxSesS^cZPM&30)k!#NZ+^B^_NChpJ45fuHf3Wp%uPFJ`D?@!QNy7J_ zqZ34|5`P+S{|#Xlmoqj6iA3o*f`X*TOfF-Oc(!PB7s2qn969QuBNIr`D!RIcLP|Q+ zrAes676v6OeCO!J@&fbTvm01Ip%5_w9uu$0EN{TP;ixxk^G`7NY>fqmI1PV3tf<5( zi~%&cBR!aA9|+7MGkro+9Wo>+7DF~WC$@+@pgT(W51fS!PXoib&o6i8S_x(nN>w0P z`#_QTjEXTEx~s^F1yFlDczmxZDwnt>KT>k`{zxf1kz^8r$(JvcFbK)pufVO$yhINy zzM*AB#8i*oF(cEXoy_w|j8>@S0RjfCR~V7_U)-W|r{ z;p3mDqSi1vx24*ZJxe)hzj9etN6bM*LHH5ml%`LHuy8BN?>e8V5|Jz~IJ^xkGZ?iQ zquK5BXzfECHxtt-Yu3$*FRRrN>bTU3wy!xmHzeHqbQPmQdEi4u6>@uq&|`lbYTJ-x zn7H(~on$o+k!y>wJ8bwMs$hYJFhNjgHTOEv1Q|wWb4?MaX!T8h4%>ob%Wk0yq6m~H z0VlhLc^4C`6+ejI_b7Z)s7Z)B>10yY33jUttg#T4)fFWlFdJ zor1A#o}RK3b?f8mM~&mL41=vu0dtCWQvy}BQ&aN|d`H&%L8E#Gs0?+v=6Hb$_9kfy z$oJnMnKB`=K6eRP_Z!!M7!NGZuFZ$rPw)KLKkw3t4n^h3>5#-Y0m zA$+C^Cjz+LW=Qu4&}}$8F~MlYgb8~Oy4pDdT3poF?e!2rP8qtOVh)ZIg-P^^4;9pnUAC{^!v?yg1ET|RF6p(_;GDTw( z(iFCE5MX^zOujFlvUc~AtoI$q+%f4gG_$8pp$QOxiTDK6bf8OPe{aY;0sk!SP_{#d zxW~J&EKCC*VQ7wk6sOq9INLIt=Qma6`Ig3@%g&5GWyuohGduDdc5_ba4>D-ehPV~K zK)+1JV7_ep`R|ZMp(WvZLQ#+GRn2Jrk}2z?#7Sa2$@ z7-g9=(x5;Pe+6)WP;$GrOd`OJBjutHpo|1#rOfXAen3NOG5Vz0y2I`MZKHgEc8alw zu8^D=X=22Os#Y7NGfmeneb?$Kb6*wn$vxRBIT|ShC0s#N=&S>WCd|t`!J?cQCbzUm zn7G($TYq_t%vQ3<~~N~q)5$Q-7JwM+Y0ApfIyHFv%|XeYJa5` z2CT07^;A#cAh;}_xl)|@HPuV^tY`uk$@I@(kU%R?)y@~_6n3r*%S&7$w8V{0ZO%ps zJl9X95QpJxI*w_0ybQBdb+`vtT;eT#`Vv+pus*gz9LCl};8{ z(O?0_GVNB5S;At2dwLU1);Ka^e-oa)!d!jMWR6^Q1k0I4X{Dhoz3rdbw_@8$ zLl$uY)7!r6Q-24}Btlk(VW?tpn|38SX&4!g(lwJM{TJTA1TMD5kEJ%W7U1v*`*Hh+ zJa|G%`gS7|3h-wfsHbR;0wp4xrkG5aHa0&&B`QZnFucnVTL05*G4MSPmoFT|KNZ$# zY~Mzp45T}e_$9p9D5+C8X&n~H%jfZx(B@|9o!y)ykzRw^IP7_+Y}lWSnQ#o7Pr?{> zAj@+{Y{Q-~zwu>IR9s9xyvX4%IMWYZnlfb2D6CNpX z``ic%2A!X)Mg%R`6hZ7^dUd4g`^mYw_$?SlhC{^)Y}ZRX&~JpPb}kQERDLXSP)(3w z-oTkz_>ivIo7MNBFmn4fg4SWD%+$fQdU~NryTCjgn^oK>J*Q$#^0Dm5>9Wl7_=$OR zBf|dk|1S!~KHq4FH()aj*R!}iS6E<-HFzxQ<412!B=LF;R=c~U^Jn$6@bMBX&pl{v zkh@Q;mBq+s%>bCsrnYt;bq6nbVLrQZ+hnP;LySC@P3NNypw5f}dj{OTOXn}yYI|9* zVf78)Qy)-0Hm5qHbZ!>w3)atiupMBs2B>JwAY~g6q^w+3OM87h>0Hz1Ea{LGrjxH} z%}2kvm$7r!r6H39L0p0J>>sJvH8Tx<>z39oW3|o+`(SI2AVu2+Ldo4hrXP!K^U@xd5UN`|$AJ!qc1rFn9hSg>kK}TXopqY_nfIfBchfS&6lO?i823 zqtEt>Gj&{!W1x~svTZWdwdA+R{<~jazFYnO+*@0O)78Y3xG|rHmQ4hwub!#xQC8Rx z0Dnp05<#P4e1_~W_F(Z)8R!Z>WrFp5zBZc2T_YIXcab;O^J*F}A zpEBKAWfWLzH=!QNc$JwJ@I#I6*aM9q1adggnc!uOPXV@m9d}CDqLEBqpZD3WRmJu7 zfFmHjq|A+7ZF~weXFA*FDXDLH(LH6(^Qt8z`)`=<_j6lw^3rTf90fnRi{-_ zX_9i&c;~TJ@u2qe*7W+;6Jk}%9(1yTDBOGtd%^re^dt}nhCu}6&h+TVQW?ebLRH=* zKRa>`L#8+k`G;wTMaJhDh`WhZRcOTjKn=^n3I$HMKn*|Qw!f6|%`Qbo+%obV!Uk)6 zSufTgOdZb6&}#;kiTOA^^l;;)gMRn2Idy3 zO;w#%sZ5MpUsbU%yHF84r0_fA_h^Ka4+P=S8)8SqpBVonP}MHf=0BBpq)M#UqxlAGOP{w=ka20Z}_XD6bG%t#o{sDiqxF>VBL` z@UJXkSH4e1t5xef zViKvL?>6fHY&0-I1U%37f!Vr zOii~{A;BEbidzi5ZQ3$tP1mwFJ7yZ64bOs3ge$&SaGLvCRT{@}>gJpK?Pm`i2MpNh zHUVe+%(D!|+Xfq%rX1*$(wG29Z404;h5YCzCPzo;Ut(Cty=?zaoYmdA31yqRweMA4$K`N>RCC<$WFzmnhceVc^(D*P zjkWrRjOowse@*O6f;>*3w&2OKgB;uH^jv0-w^4=!F;B}iGx;YQzk*U!b} zof)KdnQIj+LG<8AQFwO_ARM*x3Lt>s+cpAN{v3P->yNCk6*!of6t(%t=Nk&kYuT0c z61Cw9&kEK_XcqS33?mB5&shw@hF}c!0Aw=Z_vL3!3khY<9c2ueY@SizWOm;o_H^Go z*BNg1l}_10SCI_i@(jurfN9%gIczCeSC$xkZ!l>6@vr9#Say^U*~2F(-{$znsVk6H(Z2-E=LjiKE>O-S!UISE8?5E#M}Cq42I-Pc0hJ@)Arkre%s1<|oN)E`&d z-MCPw9%Xb#yT|3C`!*cx&(;@&q%v$l;W=rd-nV~S7qWg`hwisL!Tn2u0og3yA>)(} z&#cbQ$qqIoBXP+I$_ru|9ym1D2>=qy4B)}ef0(;{XT)hflvW8`{jo7g3>ecNY7gg`Wi@mwO!%x_^T$WHlqpwE} zW+`^3g(0~@!fR2-)zLVbTOEQ^FJp7!@M>12TSlsb&1G~BdbF;Mx^cZmSI1$3;l8a5 zhwf_wS%sn9KR}DtWJY#C_K&Dr$CstaNd<}j(HySdx?+BI=&|<0rilxvCkG~N6t2|N zW>JkiX+8JqjZ8=de)GA0-Wmq9DNdTz-4gn~#gr(@MyztmTYng0%_rqw{|<22R*>2! zF}KP$3gRUo3jbeDc;u*$dqlTu-rd*k^FSC2>9mCZ z9j9HFabJe+gM{2H=niiF>$JiGIC^}2BzhUewh4V0gk4Yxb*bb9;W7dQSW(Ff-kRUm zjQ3_RxpPLw5EQFUo@$2wRbT1LOVl)g4$C~4U!@Z_8yd~no5;4=RVDc6Eu`tez{XZI zT56rajp(C`HM1#wbZ^*=tXPpeQptt;71flK{$VU1USX+^vi1Flc=^}QJln)r#RlJh zHitCb(J+3m`|Q>AVo77{Q8t<58ZVQT5ULJ%icN=t@#G>Y2cw!6P>iPRe`|Y%goXmD1u6T=mX9K*B!Mv{`@< zpj2d5is-kUeB}%!KN4qk9k#mT>$F-**#@@@&LGtpyWCSJ96Cm$sHw<1l^zUJg|T1z$fVfY+r+ zk+wan{nR`A>1+slhgep}t;!;;7-9pes^d<)8^Qxr915kEb9>B%lr1PEDgXk9%jMY; zFHC=pOcKwM+Pt;PG(9BvK5W-RAuV9;8FvU0@}M@1QTl7)gYx%F?!W*1{u3ACSNd{J zHpb>~3ME2$5Ot55vQc@^SI8Z--oR;grt?cmLN$T^b}KL{P1PY{9&pSB_pMg17`fG%tX{Ax}~U3HPk_ z3t5!KdxD>8i}_^GDTNko$MrQeeoJYp+~=uY9{`T$-gHAgmpxd%yMRjj)=US(Rb1+j zN9zR_y?COq>=g@NNSW}ckJq=mcIu6W(8y@#?{Xbx`%(oM#1c8Xb#BN2p)h*et;2rQ zGvHk^zj9T|%jh`j_Us0*K`K=*5G^oU8^^RXGGqGE=_u`B4( z0|?17(zcBLNr`27J|g2h4v*`&_||Q->rF#(XQWPbhzd@8*>tCcp)xtxg)sk!d`AbKoeKsM~L z-`VUQ7m@OXy+;`k7h|7lF>0EeKL(S@Y|Acb%mx;Kv)p?nOnrqnSov8At`RKfIc@A! zX`*znzh2a;(mEn2>)Mw5bcCun_=KuxCx@XS;Hy5Rlz7ecUl&EmI zIY~!*NLmVRmlXTiv&|tnQ9pPV(|D7FD|Ck&_nk~vXKe@&0|gA7lAEB_lm)H&RR0o1>ewGu zo7?c91xT0|)9Wr*q zZP_QykyE`!x*-0KUGHiaS`}NROw9@z6mmsvqL~s(JpFGoDTf}S_bE*PJVon;Iqh|1 zp0N~w#NXJ^^KifDGng%Ah7IVKMM0Q9Fad%o=b>>e?|r0YC%Fj_eb zr6+22JSY1P<;3KG-3j;X=vgu15jOh9lA+LP*_zw-TNXdVR-sS`5El|#u>ah&-+5Am z)vouEq&6%h-tbt$)Qu3VJY3^f{m{3>oV6~m(aK*5b98v?KnKhZxdQgurVrLeKO_7;3WJIpx z=`Fl)KGtuz{#mf$O*qP~JUdqGx}c>r6?C~|Vl-DqROR~y^ZU5;=b3dc7O>V-g(Rt> zkPhVnUFN$9M{l0=SB~7Q>YJEzcgdIiljsE4Oz>rvjpq%Pw|}C^^ftrJ*R!OoLEf0y zI7*z88s>qJKh}@2nN-siE)v*pbr;{q>=iZC1S8k_pVWM|&f0$2_(2^@K~7mlZeWDLU(FjA$P^G5@|* zfwSAoICK2_*@LR%8mj}UY#qnQ*JJq*$bOZB z=~l0ySF@va)o^p@$d=LA*I^ACVO#*njW6^}7IP#zMSK}}6vyYQRQ;OBv|?tOmX=5VX%I5D~i zwhoU#Jdx04GNl)xaI*Q42@3AZiYn04+ch5aQ)gsuZjKDg;PO^U0?^6Hpqm}YIu>$d z%w4=W8jn^ow`6e3mme>!7Os}8G7<3kb3}fg=k# zVp<Xc_6nfVRqrh!Y)%%3f#*>D+1T5qTEWnTTH&>wJqQm|H)kVjQc#%L5?pC zC(stS&o$0%3A@fOaqIWD$RL3YuO_84*@?Du`N*gr738mXxKxF{lkG=wmh zD4qwwCo4Z|DTJ24$_pzW`9@X3(5rIOK}za%bp5P%_+s=Mc2k2$93?Scjf_ISbfB!f zH%y=sr{d#)wFybw5&`m9)`m%>WOm0U5}!(yu2lax8Dna-lq?v--$8y~fvju|r>AOJ zC+5A1vbmG%Aq{hyZSXNLuiZ#+q@8=sexRMVGse4L5#ggBnBgce+=qrvlLfP_ii7$j z!UpDa)sOZj>oe-0$|ewCQYL^N_~?1<0rV)KH(MA2NhyL~$A0^&lPL`+@X=>?Dag|7 z>=)GA3dDae0a7c5*763G=+0`8k(Nwek>`IGNthX5SIq|1`pxN>DddQZQ(|MgN^9mA ze$vV-qrS~Uq!(*;e7uIcdV2>YOt<~f*O-Z>q)?2~60mpg#;$#1_U{HKC!epgJ5o@#p45MZOk~4rc7ZA zd0415#3hS{O0p=7)oILa5#(TcwFqX={mr^F!|S|h$vFyPh%iGHN>vmT0lRacLI(oO zs9s!B3|c#vl2)BjT9xWMF)32`M$pnoPqr+`oP<*i6et4liH2@uS$`e$Z~ukVEGA{U zpI~G+w+SbMK55!ifzBVT!;kpg|8Le?cikKYTD8rjCTl+$OzDtW)TI=KP8#~ujm0?< z!25UYFS`dmI_a+7OPS{i@1)m2B{JtDNk{K9E^&gW8PiO7n{|9CQ!eE?&Qf#-2W2@D z8vOb@1L$DQL(-u@V|C(pt@QApp*qbEx>(~x$VwqQdE4n^#)_?=(Due&LcjNI6DgMi zz5?dX8h(WDi42BnC}!%j85Vg$dq|4wAopvj93UIFo$hs1`{Kt#kmP?BkcXY$?<5ew z@yEuADM15KgvJ!)?bHIjE?z(UERC*SVtEKbP5s+)NvlkpRG6QzQjE?`6lDMV6VC_b zQ53}x9<5V=^UbK)JM142%uw{_>qmeDvp0gSP==ojoG_HK`kZwGMzUaDQ9)smnhw3# zKdBn+9s+3h-rn}&ZvM48alx*sJw5);qw1P*a`lR<5DD{q4TeogC>kV$JxrK=y-&Td z&-P>kQ+~zNpQ~R+`7b2(cfbrh`p-5MfBLK=Rk`=$H7_j46ECEng$U*tG=$cZH- zB{O_hPr-Za*noFHe&XGz&#)_KWJASYEDThKn;rgt_lKj&^ikaY#5vL5QR08fFN`YX zc|N^0r%$Td@GG?AR!^21ma^3(_}Iw(l%lz5?uda#^2w$Z-;!Zbo;@TX%cEwKlkyO; zF01DC4Uh9myU%YvgClRrSkrC1Q^UHJm+IEfY|(~jDGn?E^`w>7C;IE{%GPn!IK^Ic zcY{`d7$;xnt^93&#k_g7!#%!ELS0=Q9}?(D8I3TQtaa+OSCEjK>MhxJO-e`c$MOxB zX~%lmis?f&nM7zn3)MpkGYVQ9SXi^)ce|tcCA%PA;+G(49(DU_wd<*_QC|;qmg!M; zy-eCFz^iUND^Rf&Eq!kaV=DrT=~)?jdl9rGKc}cGQmPPy<2aApuWVj>oB!~1LH5s# z8WS92*LyzO#5>VedtX| zqnB`J$roB`T((1CJK{wO7g^w&7cgXRkh43P!N1yY{qeikZ~cmU0(c3Hha{_MX&p5C zTn={Zg#XkV+t+=qP%S7(Bn#d&=Y1>|rux~Pqei5*vAsa^9qu{juF{OT%V1#%j(uzus=;RwWwfvyrsE3!z- z-b6op1+LpjvcDW8q~gK@Yx#W4BOzp8-U{@eSHod(BvrqpM35s)lB>m2HQp3TdLu45onh6_X!GNaI@=kJ^D+9CJaqr^4#P>k517^@Iv&9du-j6xey z89}B>#xOUs>lr9!vHyKncKuO(nZF9Q(D)F3S^xCX;`P4mVPclndI8 zaoT*A3jM`-XUqEll{iMa%*?<#QwfeCL5>#Y_Qvaz0Oo?s@5))Zhu0=Xo@8icfvbJm z{k2BRDUYh$HV|Z*@w*N|QaXoG0!ipkkA0CWL>WP~g9K`95-LQC<1~`FI(}bh-1UwK zedl6KE$%S=`%}uLP-D@bf~=m zqG)!dp$1Y^U*CQP+n2ZWRE{@>C(9sfm(dDh**CI6F|XNQ-@}Vvqf_-N2EXDfR zT;|Xf*_)}zmp20!WX|RLNqKGl@>*->vdU>wz`P~z-0X%+(Iym;8?PJ$dwypkF{RTF zppkTCL~PMX&%;O#B9a^GK4O( z_x$}oKYfgs7)x7eFpN+s9K`d*_jFj*PJtFI!G*1<+L-t#1n?Y zf+hp=Q#zo-D$`WUi@w@@YrOR&Z=M{&JDf^z)z1W*&^nSSi@O=~a=RzgBg=l-lJWW2 zvo(g!2?JS0!>Qu^aet#d+zrVPwlz*oA1dCj03K%OcK#VBz!P2>D2TQHifjKjt-n37 z#S=wQ#uMejvdr3K4;?JANG|>=DxS)%CZ62S_)ia8k|#+wNC1PqQ8+we?Sj zV9dZ|0@(ip)R2PWN#qp}?eY>z)sV~g0VT(Si_;gM+aFbSOZA(jEFV5G4_no@F|iTdEjGxq{1*kQ_$gL{K4@fW@8;W7(qszD2M{a`dcoiQm*dX%?h7K_pbGi zd&l)wutjyS5Oi@UD1-lX=)R+G>jJNYVGIS1%*s2S0rB{m>*rcGkzKZCUCvZ+{+*9j zoO)(47@*BEwV3Czbi-+0+G(2ON9Chfg2vYnPp$G5VH2E)ROLJ`NAUiZ=k?*sv@cJ( z3Cafw$Iy%!(@9~ep=iwgM?YP`telp&ZLezgtMXd?^e@!Fnze2_CYG8dE*4BUz;_=_ zFEd}>ShPTFkDWKZZ*^4}p*Sssu~XH4h516ZJQ+Y5Ua3`{;PP$E@aq>=#B)^l^5>h` za84OTBJ|AKM?00|S|&?n&0sr^GdJtD7vuW07d6m_d>ZWd1G<32f~Rlj@;iSI(7FsT z-}*B=udws3hd?MZ-UjzO(SUk(pf7mtZP-=g=JI-@U-xryyB2UAT?_O5cJQD2|y zJZSG#!UDcEyLGb7z*+ObM6|gDq;E1X>Bq$8X>+&*!0jm5oL@cp;Vt@B@;)4>a)5^h z02KX9#bnTEM&ioKC?A2qx&+fE(qc0606OpJ<-hZ)=GP2gf|Cu=a-=Lewe?N4V-mAU zQOY0r=iAjQD6Q?gKj&(T8XaUTFM0BlfH%8C_2ZRGI{;Aa>kBZI!QHlOyP6!k&-k~0 zmIQ7aypLz3^-yY8mY`JijP)mdY`nI-+eyaa^{Y8`Kd#abv5f~#?k&0r3Zt%JB9Qy! z;=r$#npFEbpQ#;&xu5HNzkFOSY5v8Rcl1`7!$j!iQD$v228*QA#rDI4g1%{NiuchO z`D}BUX4pgg%<4{fr*An(p*|^ZtEv+dHs+iX(#f@(yJ!Q+$r;@pK+_ua-3lb6;OitA$qto!%I$O30iN1=D;3 z?`IJG$Ch75d}xmQh6ISV35~`Y1SE!@(izPhRo>i9M0HExcK5BJ5+&y;5foTDB8$LX zA6^jGE(o2oYsZG1!E#8UfFCrSiX4U@9<0BD5(nWpG|M+I9q&Wp0n9mli5&2;mTSSF zUNHhZ%V+p*ZT$B@1x9|7+ql&&VzHvCu;N*xS+lK|T~4`#>3}d6$u>O(bB=UA(2AM? zopTENIS}ei1p|6tQd8S(<8dP}b$&Tx83se#d}9Sgf}mU!JS=+39_wf7*$lQ}c9NWq zK>jw_>Ojt>Cv?~sLT_LBXIQI;{HN_~G$jo^JKnkT%R*<3#WQ*d1a6g`m^%=*^C$Po z$-vqm&hJ72a%lw@h!&InH$+vNoddeQPo7qshp7#B#wLcnHQ=Z$7zdI-Oh%}ZpLr`r zcd6=I$v#M=)K&XESFE z*fgFdg~dBo{jo89ORHl?{~H*wV4*-ZFKdp)va2XEKdfE;n4lw( z${_2y|3p7u6jFHPAi_6lVeb0|_PqIhdDDfr-R08Y+Up85 z^4-0ub&)7FL&U}!F=|URHkqE%SUgLk?@C-oH``LcGxnHgf7R)JBAt=xSMMwbbOnf} zzBdR$TKs>Kvyp$#nq6))wI!`q9XMK@k3ggu@gy0gHtZQhd3{FUq~1a!=mck@gyRcgxT-gWIy4i79I-HKew zTSYBXdq(LcsRB>>ZP_tT$|=+dH7Zj&9B3wIa_zba9lD>#jsHt7k`UNVLiPuh>t<3t za3H^a{&{@!PMah_|E1)+e*V}3bgG-P5`8SxDgcL$kaFnKQHyPc#gLF1fBe7!J2tyR zppoUCCz;GeoD@G1`?Wkg&nmcjsWLDtt zeWr6d=GSQ<`J3k6T;cQUcnbM-|8T?8LIhPs6}z%gsqKy>JLdWkM;MWH(+Roze!P1E z2)IOi&QvY{FWN)}>@i7>OqSYT(bz2+$sQ*O1*)|!f3(*lfThAEn~3IkZc_aE^TjTw z>&1T8+tq$F7wW@h2#bWo-!PI&c9h|9txfBU&H5$s5n|N3Us)pfk= z#n3raONI?b%XL;ORIxUo?FU%9Zs97NzqK(XQ;q+*^q6+sj&SbKSoQGY1b8Fe_ncp7 z#C(>5c;N0?$idcgOocc>`Hl%EZ&gcFKHl_fdyg@BE1Kzmf@jcgFr%Q3$!?)j0 zQl8(YzU7Q*@f#D4Aq8u*=5BaFZr#havz;bN;xPqo$<(j@A)=OuL=r%AyYV_v?Lbjtj(yP7ngCSaW_g^*%BAr&mC|syq7&&!=63dwEoDLcfgmgr$p> zmPm%6)Yn>1RYJap{&`|+1N?OztvD{JezGZH7a;~ez=#t<0~ss=G_p%iGOu2W#uT1~ zE1IO7*{q!zkn!SfAKq&BCzt4o2Q&OoOnd_B3@d6o?j%v~A4o-il&Y0P zW=C9-DIh^P?TLmVpijDad?&1~u(YRH{8p+8p~PLZNU4eCRdRk`XsVIZ8rAOxtbwZjX)gZ;u%%CjWbe-bEc|<4 z{geS6cD$*#DQAf$IOv*+K|ORliL!bf0kg64oHSA4Y-rwbU#?W>QX2mXKCHfcOVeV1 zkGJQ}(e>5d)4Hwc^OhhmA6m`ei6a#q(-eRNZn4ZF{r!Y$c4$F@w|_abIqZuZVn4RU zU56^;GUQmmUISL3?r8@LG!NI^>7%3KXoI)(S9wz61x_>uYGjH<#iXrgcv_Bc`Z87$gA`z?gv!){E#wLON>LPR!rs(AS+{n<+yG$l0O>2Ud$)3{m>#W^BbJPKzl6yM{Og&aa}>pmU=)gPNP3wV7fP~u`zbkHHKrAk=uU0q3= zvupUr8=K&>gWjbD6x`375ckRYFY1I%_(O@)0B&+lIv|44!cYNLT>sC)6v-^J=_xTf5Hoc2Tb`zZ*(jUUr5L)xBtWzVZQP z_`Z{;Q%hO4n2txjspY)w{e0UuPJ66e?FF5*l%J^PN2jEel#4+**Pyj{03%tyD)dHl z%@(bFofK}?C=i;H-6#EgaooQBL8IIHh%i1r4$HUaItjvW%Ymy=zicz&60|xg5|ayl#+&FUfU=GUiD5@r|6$8 z4n~Td3yAdc5KTQ)0uYcmb$&d$A}~Mrjh@v;xVfN=Y|mYitG_BEaLwK+^D>-KIu-PT zNZ^_KT%g0HaZf?%#+?hje~;&T{eb6aY>R)HOat5Gc85Tgw{u*U+ZHp)M9dO#OSnJ$ zzhPIjE|QAI-}$s=A6ueO9~C(`O{El)vK4G^^=4_$@BPjjcGM(UfcFx;=<^|85U6 ztx2il<_$aC8Z>NhpIXB#QJXB8p_O7>dH~Z2!MgS<^i%Q;@79xW*L~)7%}YSBeF<5p za<~Fs8AxuUk--`+`Sl&)8EWa;WZyWO)uqQiMdnO}uXp9BaYJ9D{oJ$k9F~en-|YBY zqinU0Z&n{}rt#W1?K`x#eL%WX;^q$Mo_yqn!24~1jYtJ@-sZmCFjjQ>mm5|*V_eeq zlt=J=E|M!Qw8)EJ9Yx*@1*`=2rj=mk6pUX6CarVcBPe!3ntj*H1gRtQGzCBY*MAI!NTywDXNfnO%bXXYMS_>2vqzAa+IZs#Kj z$ygM^8q3e&6(cg2s6560fao}QH{ZJHt2cv^8;d^*9~!{!&z-M`$O}P8W3a&Q3smaG zOSmBW(Z)ger>G`4X^QIlYhv>KC8T>O^(R+0Uh2O>ks{dwYOdXaAWiykZ`$E~>5fQy zr;NW%@3^1~gMz!}v(MoM@7mA7 z#n49&g|cwXYx^d*u>xR~&*Iu-=d|T0H?~NA>iiObfsKb3P5_+bo-Jo(OAK-SxBkp0FVSP-kF6nW6kknC%K#8`5NX?AbdtMm zsl6Cpv-!vZqFcYe|A;p>Iru-4&M`W#uHC|E(AY*}n~lvUwrw=F)3C8^H@4N-R%7dp z8ap{V-}&2-(T--Xz4nbc=cUJZ@ZS}$((j%yzn)85WD~dZo>;+;n~#2=i&);^s*&U6 z&q#UiRkZP#X9wQKZ$8(Fx%;8`Zu7RgO?ObrBBk?Abb!!~o=;y%wq&b6t%j4JmExWR`y1Kf=QRzRP|A-y<1*brixGSn|_yqKvwU1TRI` zZwSNQV@2g@8(L86A&TmWbbmlU>n80-jptrY_;Ws9IM9hNvQOQP|>ZUlO4$aurJ$FoTu6nj0$itxM|Z0 ze$%JTamH&U)k-0(S~j9sX5j~;fM?%@7w_z)@K~omM z>$Wi+-<{7fUyR1Rsy;w^?YDgTc3oVR2}P6%WE{R*>rcQ$3gzu$y&yBybB&~D{V*&l zXjH^KPcI$D9-ix77K|+EUr*W<*cN;}*)MMK>xW^ zxc;?}z=W^ftVIAjuL>ur*rZuZ_9)5Xx@XfBQ>Wz>t@KAU3f6^Sy$D%^<#+UQKWSq6 zjR8!dsu_;x12s?{hI-&V5+j)J9^Z3AI4A=>asBJ-hIh@ufA&O%^CcEeV?g)Jg7M}% z;3%uDSyIYNkWpjVRD#;>=IS(&cQs+R(SfoM-kPI~t*?WkIqY-4ICQZNt&rfiePhQv z#x{B<9dfmoj@q=e%wLUe8iab|V_eGI_VeoATp*2SWsYi3dq=>ci&TXu_7B@&)A)Qj z?}`MG|MZ{n=o>j7-4_EK;$JWk;t9lta|A|P8=P0GL>*Zc*&7G{UQye#v9uTgE*NnP zb#(rGK!H>^FJeq(k*uB5&4@BfKnbY=&${cMe>v0Z0NYV-I3jCjp}{X)u>?4(Xw}T@ z;{$FP^_A4F2M0v3jyQ@>#B?Oz?`IyLTwMq@JW;e-jMW~mx-T}+o=A)hDL02JauVb2 zu`Q`!pG*ftkS6!^u70rNS_eg~KR9fVJU+T#Sa=Q3YmH4%8?w~XfcFYDy``xhg+re9 zd@M3_+=vFyz-O3NbGy`Th0t&M(|ug_d^}{$g$^E=6%?IU~5?%QB1uzF0_R+GvmcxuI?Dpo}lXbvK**wr9|u zq|D~)L>86N1~pA(+l?bH_q@%Kv|Uis8Ab zCA>i(L!iZ;NWp6^(c_|F%G`*%c;3@NVlSRRki^i7XZw%z5dPMq#1!`t!Lq5g8X5Qe z$j%T?Siq{Vk;x45A46tCAo>PiuWYk9Nziw!Z30Xc&idm!Pgej99-CI%)P50tQXD({ z;MRC_`k*kM1n^W z1a#GF%{z9vD5srwxy)}4Ctr7n-rX<$9z-0Zr!xY=%OeWV?hlZ6*XBrk5h3q?dlbRM z2%;I2!2q|sWsMT;UwB3J!N=RQ|K|ZXa_QR?>@@#7K4;q_-%DVlISeLI!F$(4TfATD z_ZmWvq(=!5u?V<#m476Pc`WDWKNz$WvRngqqI}NE*}vkN&C$%wTS~jO11#W|I7U;N zwd=*@6X>p{RwzL1uq=tf1)at&=iA(O6^kqa^O@0>^YMB#AGKlOI>p3C8P#$BeyA)$ z&=2f`|K7J_Z+j@!Y--y`R=xnC-{T6e0}2ioRxFa8x&B%yED+SvIvO32f;= zkXG8t7*O*n^S5vw^O>9bB6U9Zl6u&cRT@Jc#zwD`e0Kj<6%1yqY?PD>s)VFKc9;e| z@05%lS1N>xx>`0w%}%nb+AqiZsEAl!V5Bdn@y+(lMw{;;;o#c!)HDdNZ`A#%zzdkc{22#${M*emQIrtOi2jBLy zr|NBR*<_&cWh?&INJN$&#C7Mk`}>PU{01FpFN<9cHj$eeQEO%37o-e?trLBiaFUb` zN$_CANQi@Gipn&}n>Z+l zt!QFzOVcEwozd=mbf1&0a|n($+XA5jC?TY|*38s!PBka8<(NfD2oCSBN~n1Oq`x^v zI12y6RlH<1fdC1PTQ-)^sP^tGXo04(jezyh^>XJ$GPdI&rbcZUW^I-YsjZR`q+i+E zqX@Lgtl1ao1Tj=nRZVzrkzUSjSHaw_=kEX-=)1XsFDu(d+|TBLNl^J55FXd>CsDBo zxD4tiSV+a8BDn5OGUqTAi!CDHwG`ejdgQ9iN|!J?ZYY=V?cYxcbE9K9bEq!B&ng(~ zcsHSnkb>vm-|B^)hW*56sW66{;KTUqRQ~?bGH9A~%w1ig!$2xb25%5}$RqOBNSnR7 zq9eXL!t?F++Fq5qCdjRjMR6Iek4oIdY^itt=jFF|S2L`RlAIyZG(#blX^x{g!%vkj z#VSh90Ev5EvSUcd(sn@ZX7w2P;2ZSdcb}>2u`>^Xp-C#3Kx$)d|1F0Tn&bv=mLDH3 zrXzE}ai$JZ-DV|{HrX(&`%0GU?7uEEdp+E88#bFgywtjhSbSNUnbi5p&70rTr#hF% zc|02lSHQ)iuR=H{9Y@Yk8GO0!0&UQGPVBtKWSV9n<|uZNYKT`7h7vevIE6WCKI)5f zxk~;zHepGTFAzI}qce+?HM#$qy|t4Hm~o!ciMTW0!n|a^>)!B|6pX;N|D;O9%G_q?Ir$%!-cRQ0Db-7%#$6{ z!DbKjncK+PvgP*@F2Ifq&rx`j+4H2m3QPa+y4^)7=Xjo9e#t>Nbv1qy7#^Oc3Ao#O zi43ERtgXiwj=UyWD%<@L!bFRb$cQeVKmN;o_HA04n4Clnbs8{VZ0~>mAVU1^M`^<# z3}%INb8|yR=~~6;eLnpFZ?j@UL*c&Rid`J?Y_d#;vt_?9EJP!W)5p8@q_FO>7Y&3^ znk)z^osOO^FK^lSA_^w#%MUwI6!zFOX$vSdP6O9jUzorx$!Ab<8k6peTq;UBB;-#+ z>vFk5)Y)^lW0%ZEZA4%|i@rf=gyXQ~`&nNz{mb>gtnpm#*c1m6%iLD21{}{Cn{#$* zrdPD-wk{ul(i`{_C#0dr{2}eqG@y=ldOj(2ej2n;#+W$?7Qn?QA4@P}6xM)Y!L#@; z2Z1Cnw?FseNwW1Y!-ng!^F|`)P%9-rsbIs6T;}kb#ZqXYEqQfJ^4mYDy4u=54LNu8 z?RqWci>G&h+lwoPF!72C1b96?3;g%Vh>V<^64Wa=j7MUz?`Uh3Bi8JDvVk4%V&^}o zBbJ{1!m% zvHY)CZF54<+3pzDNC)s3#1!h%!3?N4XoYcFW1B<8KJFiAxm_o2jNWrA!7^w%!n};a zA_mA(eUK{c@by}r) zqlOpG%OD?uiam=qM~OEaHbgC>$egI+yScS6fmfs?Zo(oFWz8fL5oTl1gE$R6kh%%* zMywI9X&S1`-3Lzr^&#bUpxT|<=5xb~YqBJ_Wd=vg6n`DdNWb2SbePn-_qg2P@27C> zx{iOjT*>_q?^~ac?{2pLX-^PfVFwjWsmUixP9amimr`{qlB*^$x6!#o2h~&oIv-P_ z!i0;u@_PlBRg|gLokgJ*O*xX4m1CBLe=atx#*c&WfBoo+t+=pbY1)%!MK>%G!vHVV z9w0-0B%uARDrQEa)LJy~yMUbNE@>Ox{qDHJaaksAnO1!{i?7lNMX^cV0&FB(5U5LU zd~UkjSzcBsruc8j<+%?q%qj69g@sz+#lQ5ER8}IieQdLKxL+Q=cijNHc6K19m=~gWq1)$NiA>%uV}~#F}WL|CmxZqC~yU-xzlBD()iQRk?A} zL?+V(SGn|B$@Qd4s*00B2;8Pathd*vPc41J5RHz2w~sxsi=pF%#aeCq5O{;a$~5a^ zF53uat8BHpF_2ax!%qC_Vzc$%5OGXURe zwtOEzO2p9D(*Gm)+AsL8=tkii3z;y=4AU(SCAX^llnO~_O{05@M^YrXjcdOVjxv(2 z^4<*FSEFN>r;dkUGRp61{^wSI9_AWDX#4~IYn_~ivvOoF(^-( z?g%ZBk(GsI)EN2wR^fxmj3zBB%M|!-0Sw1$2dR#Yk_VI`P*;R9+ljJt4d$ku zg7cfd%{eU5Y+WCr>uy!--cG-y1Z*NzpphWfe|vL8NNsmZZ+s@FSoh~!!%rKlx$9l> zo(j$&226a{6aIm^D{Zxo_PK&2u-w08<4NgdutzlsGqPrHbAS8Zy{?q72W zPsWycK5%RZ=hbSWHN7wFH#>2SC}|=Bb?n+g?0xp|rA{+vNtd&8p0J$Qd-$?syxAG0LXrYI%VGM#l(@qh z%yH^wPMs$?mRr>{FJ+tEICk=zFI|ok!IFyU9>oo_2?c9#5WfD%$lOcyJ85$v#o4cI z?A%wsL?{$!Ycg_9zMRgG(zZ(`aX9nsK)-$<>dF98qum(Wk4aOc*%EH-vJAQn(uqv? zoPfh~Nw)MX2`wxH#KZBrtNT2K2Br$q7;n8AHFID@YqIG|!R!U}u_0(3n~@B$csC)} zdcZ_GeG62=fU?q#X8h;3#Ss6#x8RO=mbafyfxV z3B67nTtMfum&1)9ba1H~de=YgrXeRdSLFv3ee0q~_#Q zJCXgcIconpFz@;P1ecO}A_Zb*IoU0Ab|+)WlqteUQi>T&SVT&t>;<307;qHBumU8n zkiF#nm88~odmY|85ATOTmTSfQyrNbN(#<&Pm_~&lrpdT+`K5{tD{J!-^MLhfv6I*C zia+(Wof8cu=<+rJgr=GZ5hXWVrC{{MQdt!dy3^!@kspLBriBtD3QO8Q{*tprbX<1C z*3JsiT40w{f$fjnnYthe?DO)oE^IYm;7^NAv)Q<_ado)z<~~jwc~0K=<*ZauvGp__ zpN%#0+QDqKp32PbU(VbrfDtT|hA7uHtVK*@3*NYtp!IVpR1v1nJX4*@NZDp) zW#lVsJQ^-}&XrATi4|fx3-SzDEX$BKpXv@~5%-vOLecKnI1@2!UTP_OhFvjcU9ZI^ z)eh|*mxUP}-9vPr905r!hmp%Ri1cIn(_f0PZ!z}-k9JU>1oJvk}W=^WT z%x9eF7us&LdO0-auIluZ-?rz3t){Nxh*m5b8yCpf$6XQmJyfj&qXr37bC;knxwKz{xOkv!ZS=ojSB*uBtUG~~#my`5FL2llln&W03LWhvV_l{zr zXJY!K#D#oY6Y+xJ{V&Xe%Oual-7z}aNGj(@RZTpBd@I$tw)@aV&fWL?Q%VBxa?O5Z zMBpH4$dUe6H-tmD6ya8NG+m#iPM1eNt~9OIvT-Q0yxH5dtUsQ@P(9kd85XwIuWB=Y z+V*{%wQ-4TIj5f9a}OUl1EEj)9IMq$Q9~h3{Q5S-vtEQcfV$yj9V55>zwy`et#^i_ zEa$1;sTPHzD<12Qy?@di{j*piq)NM~)tOMLI7aUy+x|<@@tA74+<%(xOko<6dik}y9xPERM$eDNk0k>S0k%EFn{I83kmQ*S}~7;jPPbf87aEaalSz zlscj5%aRrg?4B1kjqBIa={X#FRD4mc*%H7|*!N4?3a>yCCwSj=R+k4?dfrRWo!3R& zkkU$OG%(FfvzIw|+Q*2=|EW9H@xQVoR!&c}8+iC&T8Tl1@=j7DlWSo>AwkH2Q^k6I ziksK{!-Sc=Ny1nw9#f5N-wIn_%+iS1hpimS7NcAgZw9Z%&mt3o=~RSB)P}JjutHXH|7eF)^+3lt$ENCMCjPjkZgx9o796!w ze`RYBF1!)Z0q zQl|*Pg2^vS;NHct6MzIhzy@qvJlR9*Wu~(P02ZmO^WzKNHZ=U5SCPl>T|rK)d~nm5 zg8GzlG#pzP#fy^KYxD-Vxct-9x+P^x_f5&`zns>4Ade`Md;z9X2refNK?UzYGg$~_ zWGnG6YPe`nvv?65`bM|Qx%P*@&sgiSwiP)he;Ox*PhkMB6!m1*dda(YPyO%84vEuK zFAk~&Tfx7~@>MZGr-_y}*g4F!pazQFLvv{ct6zImCiKR$6_celvmezh8NA!j*>BSyeQf`&v#U+2!fZjSW}3TH@VM$i$6 z8danbEh44bBT!qYplbwccS}^dFz5f#JiCep&lxMevSF$wqTX65Q$-`FUYfPp`P z(kroY;zb~s&NXypGSMnH<-z=2Ng9-Ml;ygl1?1aZ?rcZo&!0ryo+A%U39PeEcx&>o+(jIEwoPOq7e$h>#m`}WT+q|!?xoK|cioTiRjU|Rj%gqIX z#jP8&S8vo|u4;WQY}|vNHE+H6fy6QHgQO}|O#Hu5O{=$(ewE)Dt(Mj{nryKD{G!o0 z4R$I}N;$CfAFDS7X1gCZ{sKc{;GT98XA53o#6Rzl*q7{HwWeFK2mh0^I^Q>}x|@>w zwu@8U{p{uU;Qql2N~pD6``*66sHWD2FYM2_xO_b1>)BbCVq24lnnDwM50O`V-)^ z2~SQ>-z21V2A2c^m#41|nD#RHYCnF^=@mN&4NwLsOPiZh;^29Fylg3`sR91cn6&q2 zdqO)VmGf)mnuR4_hR=8`wHhzXqbxtP@p0~;UPHY(&&f`@Vu_pjm-BZ)1knO&QV_;g z`+LX#9$`_UJn4OSS(m>3z&+7q*_q{Z?A1W;=f$Ul%|ONtbsG6Z>WHoHe697`Yv32( z^W+AxbFy<~KD7{u0_y%#;9yysow zcgL0W@uv!8|76~aM}iHN+$dEv{5E0k`5Z^=sa<6(oiC-Xkd__{25Zl0W;K}AZ`O60 z8%()>{wBZ&gEHU0ZJ8!2zX}Szk?}nRf;oDm+k!-Bvo7uJprojwxuplmS*a$SLmdO- z69(9*%AF8ID4>*S(|*Kh{42}c=_h)};auWAAbD<0ypNT__to}T8uWk`v+Y~Wq)sZzmGE8R{aC%;OF z<1|&c4XZvQWYs-Fm$K9F`ODLXz!ksWZt;;)k-Q9Dr38#(>t^`K^Wo9+*8vqZH_?QG zWN;B-Ye+49Wk@|dxl!RSL4>c1-aSK~QhxcaM`>k}<2$&bBo~Ml@+y{qKMPx7NiY<> zl|4oR>VGP^r`oDmDU<=_QhiP%djLfe3v1HI^Ud=cdY>W6w!M7+)jH3RqoK#K9b?a{ zlYF-2jDkwiEQ}4ak*wB<+DTf^)M@hKNUTiNjB&-68}UT;w82nB;2c-4QOc>19>ANQ z=!JJi#@M^!QS2`5DW6NI*Pv+c7#wTRo??or9D%`DQnK{Up@C5H4ts{3r+Ko8yjROi z+a$_nY7{|HznInj%jlB}6f=H<3sA478hZZ1&Fa_9Kx@uxi{*Voo}Km^7YtO z_hy688BnVBTgjs=a(;yp!EsSSgW+DaKaJJUqB?!v<6_Bl+#m7dnP6T{D@ecCc|NT< zV)A?7;5+D}?0S<-vt~aYuziN-4@^P+OC}5hQB*;DK1}$ql0wEija-Vk@JW&Evr;?vDL%`lPbX!sVeM4v z%MR;1@*Q_&)2E#eF#KKV^xW|<`mdIeE#;ZlZ3u|uh&JG&hxSq<)-S2rEzq?m^#lul zCHi>O0Oog_Q}JYyt=oa{63@LE=ao$}+BQG}wcI@F{D*@;=91R{Gb{<$-GWM;+g(Z7 zyVmL4ja1{Yq)c*Ei(uk#w zorMZ+WX`r4ftDa*!}`4ht)A;-@5e$xFZfSsD*#bDvE(3y0pH~!e7f!TB6@GCpo(3x z`H0`u%_tRJTTya#F|Hl?}oo?I=t@6%>lGf z47uZH8m$ygXyMy?h=IqKFLoRxAkr-emFQ|Z_iTPX2|fhT`iW==aV2IplD6jz{Kth- zfk7bb6==Yj5hQ)7%(Uiye5Z-nHS&E2$W?&)NeP1m2jMSp*Z17%^b964@+FeJMYwhF zXO!Yc4_T_U=IH$Q)M5Vj^s=Vh&?tX8bL&+d_+S8|+#;)XyDV<)-3QIf_n@CFd+%H( zw!+}2(8?r`$sy{c<2z=@7oBM>eus2v=c!k#rLJ1#v?b*edP%F$dLDK5c9Z4bABAh1 z!K$FESFI#$-rh_Ld?aMd9~HoE4L zG8_+b`#FYy;GLOMN`$MZ>I z5%{%4&?xJGWzfH|j(e4)j!Ymy`jmT^ddV0%;~G=PQ3i8^TQo?)Kv z4V>0Q(U=2L8iqwW&nJLabaGQr;>hzH`a=lcD+CVQh2nQ5u?j;Y-0X&m$F!iHjO($y z-=T&6geseH8FZ#Gr|{Qw9WMnD;S@8BA-MwerdjPo{N?ey{+LYW4i>z}QhfT{=Y`V0 zO?l~=9cd>gaiYn>UV_JBIMmJ=jw12qQWP2*G)uRIdG?$_ZZ`%$1opp1e zTjTJ<9V))`Y1PFXEwKC;+xSG9|wSa<_kzll2XCdw|7KDMm)=CH!?$ebK%oj5hPqg7^L3FMJ z89Yg}19a!cOot7=*Fk7t0u^P!3>N$g(8K*E$C1O(Dz_FQ2-B<(hLZ0mr0{!pJA}&) zj{~wdG=hUA&`MgIKEApCTN8ZH)qhTc?BX*_M4?`fFs03wg;rC}$eNKC{<3791Q&;4 zS(si!?;IV+3;mDiV@<~@#|i2tfaMD*j8z6)K8I9zZOVVJq-6wq@kY9>xrTsY+k2Ws-I4#(7hbgdg#5pblP4UL+5|Z7-v-tkYdpxe2eJY~==Ir#}DEe!r z{|yuOjWp`+^ z11;E&hW?dwvppu{pZE}pk}h%~o6G#jWwPD56L6wNa@yhVrdmQ3#Uu3sA~1)PIs|D3 zJ8!ui={D7Eq4!fV1auensuCG4J2=q3S(D!j57lSUZyyJp^j(U3;B zCy|DMFUQtqg;kUGj}5PKUj4%Xq9B$bj{;HzQQ&X=X<(~;I(O$_r`teZIDf&+%?;8@ z!RRLeq^j1A2P|z@4C8Zmh6jtkkIJdxc(SLc(>Y>Hy4^P(JO=6XdsTA1u;}P;v#EVF zd0xB*4K+&`Vai%$3ulRy{nVCE$1>$KbwdFmSC0u0XW;{PB1)qUM0Nvtf~IY$XwQTJ zpP}wmSV}0sctWbqpQ*-sF z+}}6Lt|hWe+IulzkU8sG!|!=hPEQApbqWl8b4_J^c%;g5x;CSX1%N&6!Is9U--C_pG7q zdPU)IH`0w+iHGXvLCBk!GAU&#E(TPHwGalX*Lb=4%CKta7~8NFUpPu&av$p~hHB$V z3)si)iJq?S-6Fv#xIFi%R+0p<4iG<>j!V0Ti%&z1$Szsw#UJOXHFga1^d5j{_w_Cy zRWUx5TSdj$=hAy?FEytlh-SN%2Bt7>fLs%vmA+101t)~V&~_TLK$#>&Oq1o>0$Vw+ z6Uri^l+kAt`&nJPvi`S}F{Y3EvXSx%2`ULzbY-Gxw2Sve(@qn9%&oxj-4XZZ{jQhy zBVmvl`me>K=sIF@VGP4)QcldD)~J*u{pT9Y1W2AYN0;0EoD5eB&hm#*Y*X8P+27hT zn~i>wOyzDo=Jxefchy=<8+BiGdAGh?bZ|5GObiS_vQg!NP#_VckERM#k9{)V2Gm;I zp_==QS?+hf{oGruCxRa%JRNd;8=&RvthSSz+4FRd+7l}0C`l>8{TVNyAZ$uafjZRI z`wMkXzoV$NfJ>eS2Rvg?Sk<0WWwZ?81zs$g5-^vHubPb=dHss+`i>6{C;5@^{)XXc zHmiD@xcEx1-2O zK0XE?3h}gAn3J!o<_0)dRZy@##wwM^Y zvgQNJh5^Ro=uz4)d{QbvYj~2N1HRtq%WLnww#Id{)t!{h+cJ}rW(YvD2-uvmM{WoL z_afgne}}kn9)la5l7An@`&%#9PzEqx*gP&UEgZJMfvq-Ub+<`4ASiMM^xeY&zwfE* zFo@$BCok5WrwA*?r5N`L!*kMh7(%{y#7UX$PO)zJUs!- z!FgZ8usJ>+i%&l>l-#nZ05C>ABga)H&s@z|x#8Sq-ZU0lxgGx}(2kDP?|0thATT?< zk2seKR}NSw)}rM3G`8GL>eysEfJNyi4``lx+&1x84Bv(UXi57n_)$Fb_wa2vMPA$; z3Zb!@KS^ftS}BeAQ#6*en-NPH6*b)%)4mtZKdjm=txDE_1PZb~fDJaXE0k!4`?d~v zfL#uOZO?vS6;)xAd9gzbh}HV#cH_>yxuScR>iusN%TTz8@B5J_K!#CGZYjN69`45# zT&FdWFWoS5b8}-?2hrdn=`n^+#Z2o_!hq)e(!sSxsW43L+^P|#E$H` zcIk2ttF*5Umr;jbdb(NJ8&B4G;aamdRw`GQAfnlN=qbLfZ0oswrNe7W0TKb|edgv7 z0Pen}=T5$|3Fy#yeBYJS50>xsq9?!kGqW(RD=_2Dv7Rx^rrFM(BK}H%WzC1d%Y^+d zcV++anEiS-{Z7y1bwA475MFz!EKS8S!c5FBKg6#x70bU+oi5?^keZ(~1-+ic-hnPQ zh+6I^&ilip%1o!QUu$}8bXrhBMV(^YY79u1@Q$SiT;;GCh?JC+Tvm2$8+NJ9aPi=H zSn4U>X~IK48bIn|1H}@J7E&@YJ#bcyq=6{1gmcl5{YFzeA}GTQrsHzVF9Cz%{lh&z z{LA{@4C8N%rCCn6Y_m~`F;Z0DU|lX;_L@V$X)z6>DN-R!iR%it=T`Z9d!rI~ISFbJ z!~IzKWmRY>D=DQ}r+B>S9*EY*RnbteQ$(5_bHMXW7JU0GFIsA%J7{1D)IJ_!Zr?( zH_)qMMz60Fy9Nq)>c^GB|04b~62rU6dJpQk_)0rltt3-{K8^$G*i`5d@VoPDiBHFH z+k1~G-DDx;mt`MRE@74?BV`^ko>BeYXDvRy)W!dPcjsYjT&oBgbt>^3WGj6d(YY*6 z)|*hpsOt$}|Aw;o1z{6YPR6}k;w~bds77MXis7zeqoY!o8dQO*ltO{1C8DNWNnljI zX6CWn;(2uWMkoi{uPhgh`r%SgDN$O7%g8W@VHX&;YMD0g8IR_0zuk3&YZ!2<-4oqM? zBz=-=q5o2mQ8rJYvVWf?LQtGTl@yuc1ux5T83hm^KyLMuCCRU+H9Yqth?tC?B>nY4qD-L2#{gwN)nU!vDS%b78=Y-jsS7QT(}CBwwjShIiwwh zqKcVR49HqXWUz@@rNS;Am^Hks!x;9da8DhdT z6e8_!_y}Kt`ge5{uwKqzK1d>=Hc5J)qmUQhI_~1x-dY|&;&|f9z`5&5HC3~`Se7-I zL|yg&YFZY-2?cf`kS5Ind9jB(w~Bx=)GHmv^RB{RGS~M}g0XcQJfY|l6(k*FFOKtx zT-DKa=@pyvoM>s+>jo&GR|We8H+-D}_6}#JyqF|NqtbPjwc#()!#5 z6ypfl=21-mb7nikel)htmWCo8uJ+I6$Gi6@-=3GLEsK6!bIO@>3-%_UElJC?%`j^5fhyr36_y^w; zLeHEA-PS&Dv)(~%i*6Jq8H+DzsmZB?P#2-2OXJJcT8k)oP1{LTs73^A3-2GDyg_8Q zvFcgX7A~==j;UnJusxP%=-_gbuQnm5fkJS>ssX$;E<2RB^V)%=21QaNby$UH!B|BD zBYDE+>u%sCe}oL-Arr*f%`SdBq5p=(y9iAf7>|JyLfuYll6qN&btg+5P5B^<6=1Pj zXk0VN!bVQkeRYW0UVUi5_qjWL_;z*CY`%H=4Uf&pgpUV?q;`k=fe24A4S|fKcvLt* zb(3G>#Ae%B+r-xm$hz+#FgJBo-EuFk24mAAaI-|b#{n-ln)EJL9wg6X8W<2CmHD{D@UjAo#5f6^s(GB| z%g)x@&>6l(>Z@0zL~Gm3u|HhU%Jb?~Ia)X}UCT2xo7=?J@Hf17o12@re!RatH3+_t zD@#+x(6^bY?^V)-qDT3jiXrP$#=N`@2cRoXWfwX!cw#TaDZ}z zU(d8y%XrVT2Gf4*yX8-yV4gp5iRo}?v zf>@l?G~8qIBU~mGtCzpVe%JjVq)>R~x}V`FbuG2fWv|!kNxD}=SQ>)tA09v7c?rod z!f#87YFz4;*=Q{mR%!i*=h9oP*O6w~Fs>8)pe~;;=m+50BfZDdyi^1bb zRz8a-fjh!u?Lpw&Om_nQU(Rb6P{4eVB*)2bGx|Hg?y^3@^lvaEQ4N z_PU}lO&4`6$lV{v6el<`0z)_^QIe4n;()8myx)51kY{F6>q4E?ZV42}uhZ zT`SG^*krlis90m5R|Ry0{yXIC$*nnW%JR7$y^X5yC*3<7{ZoUWx*5U%g8{_pHLjrp z({n*rVNm}VmFXVNwZje)V8!x(ykXk5O3jvYcI@RS3st%JD$<%+%Ib9EN1}VFr3@uS z^XnC{FM*2uE5oCp{|)T>NlAq5S~Kc!o&9drB=(rv90b?>*gA3x-Nb+FdNsETvA*BT z7kFsuuF>dEecxZ;Up71~DlbuW?N_1}@i#5@kSeFOj70e@m-g$y(pXK5jg5gN?QDJ% zWsFHB3Xm?|UKKpAAefyT0wwS?s^GLtWxriN&bTL;bH(m=M%5`@E$OZ?D&@pYEiWVV$iUw!9Q##3fx6RRALn5iMh}pw z%A5K*QfNDA-T**>D&o#A9eN4(SiltiZ4UFTPl0%ew_=3qSLll-*J^hgyq7P|vdPJy z;OC>ik^)NJt=B`>&a;rzHd!PRYM-(1RsV!Pn&pugWHf#=(yRSgo7-*ie_4KP5cFnq z-*kjN%62D|fdV$X-`#nurw8!>XqXg_oO>a0HWuF^W7nb=C{r28As*55zSv!?@#FaT zFJuh|DSykI-$;BT@s1c$f`1B2T>LX5sWAD1N3C-)rp;#A@BPN03%QCzr-lE(D08{WHxW76dX=nb1Ar=jGGnYW?QO-1vT^r&LGnnrJ^aQ zG4g+{Fw*zIn0g5Uk_zJ!b+;dz6F~lP?oLwGd{I!AIh(l|u67k3(9!?b&HwtMs-Pi{VJAoG(_56aUvj)Ri;sf5!-@qiGN_PW2hgv$JO5IRv)0oB3F3~^ z-I$-jojX5o*7R|B-ntR9Ut~LY_d5M2zZ_*KV_=B?RMH!s@y@-;0HOG86R-dv_aoTa zIrqxlXG{8-p`)RYC*Ywv7ASh>Z28UthvHsWn2hp##w^k$mw;-sWHf0r9HO~+pY z*1nn{KeD4Akw2yt{vFudU*E_2Cj)bm+P5WQ*QD3kb@~g7Z?y~oi?fPgK z_-sz&n*48A(jE$^*Od#J_C1A(3E=fIA_}NUW;UTaM^gYWhK>SIk=W(r9-VgBQ}vxZ zWjOu;CXJa#=II$3c!=!nY;}JA-xo4Gb9fPr555*p=;)ZGx6tT1LHQ^p1F>W-5dL!) zGe7J|EXjYBJFiN!y8I=b<5_3FXPFiHyC!liaE;D$-YdHcLuV@!y8$W1_o%I4_Xu2RhR4eY27- zhTIs%y*{AenZy!TdOUB}?`%I2WQhsC9EHRc3to&n8KvwU69`7Ry?ExSY1@VKyDP0G zhwZIK_)8A?(=rb}`WNplJWL-T!Yf9M6G4F((iXYA_+Io=nZ*i1;9vTh$Bm$0bORGG zYIFMXRXY2HkQKzxUkU0ioJLdtE3t{%8)|j%4=i+pV_9vBhg5Do#4`e(p>ci>>)byx ztxzBd8ywgJr)On}C6zg!%v7^|{ORsGUFY?(?h17@+0ow`E!-c8?XU~@VoA=pT~eGC zqZd5YUE3&ts5%lq+^h_Dg0GfrfeHT6UNG@`6zv1|+hXmsqk!-v=n>~KOq z-@+DO#&Qe`aGmm{{HDPC$zTOn} zO&MfKz^Gyr3o-v~_`@&rIN$dNW?bvEzO$I)EgzM{rUC!}W- zJx^nNKH{!H<~w@#Bw$qi9+Ug>dAR0Z zq~Hs3xInR1t=xSu z!AVkIhVX)2RuSrkh0ByO~D6bPZjP$1pFkUN;k-xK@eWkbXHFn!wG4`=S=hsDS48z4tE zKEQcV%hZW(>iek7=8YL_jODl#`~|eK3J%nlnS_tzi}fS5OK8xHRST9|Z%n#a&RyyO6q<{zjig@v#B$gZo}#4wdb* z&I!EGK~mZ5#Dcs#1f+rB%-Q7LGrEm%E4)f;g?&+Byz*6bAUVML6dWJ^@}epa%)wRUfqDL3x8pve5?;FM!A2NuoGDO4mu`NR z*CGG4(qduu!}cU%2>>OPSG7g|b8^V`y}QPc#E|6#or&y`?sN&|EtHeGZOEP?@DGWJ z0h1$oB$3~u@^RN+i2Fz4=TWiFn9D05kK5Oa`lvW%jA9_5Fvb$+`vhwjR~+}=KR;qh zMc+xCuc}zjJ-zwPRaJD2Kv>L&i{g~$jYnZbyL^`rkAy%?gs6ZlPXu)I?3$9 zP|Q&88pJPOzF-WgrU4;n2Od|5NFcN5FR*+~pK}Yf@zhoAG<(CS=PHpbk=sHgas?u9 z>mgEL_&cu!yOM8?%}9xFkHjECPXmLHDsF`#0dMXdcUa0KX@l7p3a8E`iNH{lJn#)i zH7Jqtb<9K>+KNUlKcRqP5_LtAP2WhhBpil{f-i1_XefDrljLVFy?w^PdR}Yp^Er6< zj~qT=NaYfU8kN=7N-K;VP! zaYO%$@7WEnj5t*8u-!Zx1HFlwNVfsSYDTu)FViGDpF{nN3BXps8pOZX)~LjH;P|ny zjA=>)5Gy|n@n5a$y0onmFwz2!&Mf0H(<=paD-^1YWIMxA0bNjX&k zY6N}vO!DLVYL*-nnkcG52G;^<(eFQ(V}M4EfP48QGjrU>zwYgy5Sur=*d0L62cE~e z;4uK-g|F|52}BHoYFR)RH4pa6c1^OVl``XCknt~UM4^Mhx>IfmBUs*0&JzlPcYzx#+}f+q4K+b_Y3lW90N9G_vmX|g@+SyGt$B+5)PdcIgn=6d~8k=+Me~q@yj60mNE!0|8 zprBo#|4|&M3#vN!KC}CyZ=Il@A`37o%2LrS-zvsb&i>UMu-xd2EwJ>Nf zgSQeQBem1u2n(8{P&!|oj~q;pj=W&6OhRSqCFG*_{Ng>oCV%lg^?N())T}o@aQU># z4eT~hkLZIlzL@cXzJK~i5rqmq)Ea;54*;IVX$ZC;4`9>@oH%A5*_SLQ|^Ln|} zh5q;CDL~6p#NZYdj%LFL2>b<&LtK|yY=)}xA+>;;@+TMo7E~q=fSkRTHcl_j-`3f$ z>b@G8=Z}sD**Evjsm3oKp=pEZqr6AuS@k(Ri`TdxDmBJ+*>v~!g?vs{J^+2N^W8r# zRX-V!!lWf~4|u*K72&iwPqr_#5C>g$y!S^sZTSTm%M$*KKZ|RzK(ektlV~hn=UfT& z7pcR%e`hdn*`FT{(|ZT(B|!~aaoz5NrI}9eV@5RH*vAIpB`;1F-mDAUa0_Bp;N~|U z;}00Qj**WtVLMu~&J&*hzTGb@ArgzN-mG_-IXUJ|pwO{26#A7V`{-{^M?Np!&kuhm z?_B`?!9}uW?!b*%@?c$LBS!&Cu!yWSpwa#qsBqY1PL3dWtVY03DL5YwF`r}I=F3px^GyKOO)I!Z zLdWh6>r_9On~MAA0%AdDMT3%AP9^jcPU{Cm2rxbd!o?j76D(~vuT zzW;p?{SZ{tQ%$RqGpJ?bX8yY797k(YDt$H4W+5sJ=R^TrFWUQTSNO7Zo_g20l~ZZQPc0c(CXPZ3RU^owJ87tOBVWA zO6Um$gMW7r5zvB;12MDvl3T1_!QTx2$hmh+e$=*522Ciq7h+G}9uPMHq;Q0+A9nJL zwLyu#KRDr-SzUg!ir&UPgH~5JhDs0g1?7$GnpbUjP8X^xbo1!Q;$kuVB7m+<9z{vx zA-dVdx+y4zw^nt`?cHI}%c9ewM%H6L_o!;P+|jJO#n}I42eaRPQH+ceoQht8aqG9( zUG6rGT(J1=U+Md+_U!sNF|bqbUbM_Wf`eGkW5{&z-!&il(I?NTM1`GYG2&_&)*%uw zn-rM+Yt~*l)y}yx(VF=Cv;elS$jGy(zwmkI(>2huPsTTJ=d{cP!3pyzeEbnPh>MF# zF0Tm@6IDG5uHEg~8-sRN}ybT<^!68K5 zrtHBn!rxPH+9AM@Oqn4_COobZkfd-&JqLs+$-cODUd4S1G=TX=>g?{%H_h-$-5N_)vBhsW9 z7FP+327@!Cd|(|GH4Ex2H3HOAY)E-`Ykaro`>#yVTdcIc5G-lxuq{VObvT}F0x9@F z@$&4lvIuo@%l6+QL;N;m+m{4lBS7By?+g3)AWKEi$jMBx0h=?m)Nrj=Ly#&sDyU3A zCosb^A* zZqit z#4&Sr#wzDdOHVs={cOS!U{3j|40zVa_@2=@Y^v@O0JPj8+g3g{v$XFUudef9O2)F6x|;-+Lv9q z!@TYdw%4>>id+6h&)ruGmAxAVM)xb5AEqSm&Hh1-{~D6K`$3Ox2eEnQ-&cw*C|NJg zP(XnCMTv=mGiN#HwmH;XB2dfaeDqLp!75Wytx#CrKOBd;dlQSod!>T6dp(OeE4+L zq_wT_!lQv90?8l%|1+5lO`vA?x$inQ{{;vd{;4x61%a^#)#pR^%^!K)k?24IH<5G6 z)h!kmS^c`9|LNLHHH4`YDB0IutWETGf|2MU?5e{mXvD|W5FR7xVpz{ zcpVRpwYPoZAmFK5s@C*WI`k@W#(d~&XEVz|_xhpd{7hL4Av0PG30=b>_c;;2q(cJG z2AV4x8)1B*NRnGwCNrVTNcnKqd30=x=>0M^{f;v2|Mv*u6I7TKhcj9cOevc?Z8|rx;SK{#3NlVOZ-m z#5=J7C;7iJA0S`EG))mNBMm;YTUA+7Y5TA>Dg92QdO$Y zW{CQPC852YtYa#7jD+FJnAZpP3WJdP@i^e)HytE4}lG#i*S569au zny~IIy?l+?M1)Uic{8(N#pQpw#oJAHDmFumRMN1b)&!&^(GXCDP|R{7Fr2+GxzyLc z+#MSZ6{Tm(DWlBl{6=6Ys9-1zORhv&UxinRk>L2l9Pv^4X~;ls`>y}IYlyb*4h8V0 zh{6!PxpcTli}z2ipL$k_oB4<&N78P#@Z|YNx?>@$%vt)Cz|?l&q2hmz32@5)epD9u zYQMMyy9it2J!!pVP(N;SiXY0pRLTAjdl%Xr6L0gLq6#Asz!}IML)yP#NCe#S_rIyt zyL)2pqIR1jQN~qUndfz`Y{FC$@`3zI+P8s#d1IIR598RObsb?Yr$cw*Z>Z!iON)=; z{txhMo>%d;9UU>&-jOj2<*QmQBB2;lmVOh!CMwSV_uEse^_DETi&ZdB*npz%D!AY< zpn?Z=f)n*2emWtpQHIw4xJivjAje)7pL=o&TJRh>B}?fZDL4bqhthSVMoxZjwMd5YwK2R zIQ~h?HjSwTxcvWGNF0 zbnv?8l*goOQ|6fWSk1Msv%Nygwg6dm%gYU+-`jzI?ytOZ1Xwd>=;j=8z*MY_YIz@nl52g{smQ=rPwPJ@x)m>W|d zjx*y_l`kCO-LbA5t+QnTD4Qh&dAR=*?uMvk7$7PZBS>hsbRia62Vzhx6hmQtLg;eO z=Q5_dskYP?7u>+s6X1?bvCSe3Z^|yz&iew50}82Ma$oBHsSKFGgJ;4H`!}Poez%r} zQ_)qPSdcS@r5r;TaA&X4WwDr0R^JgISFqQmd0hiPnUga@1?5Yt;D~<||7h!rh%0my z8>!Qf#Tng`_qsgXvfq`xd^$~sPOMhgm%^A7&}6NOi>s6AhQ`IagBBBg2Q-T>Gyf-0 zn2KyE*DrsTIWyx|SEo!dZMv=ls`RYiKwm4LpCw|4Ks|NMebp{|cJlEE0Am_Fo)8iN zz8A0*k;DYhhrPjF{-;u4U~@0 zoIUN~Pu~KN03MDM=Z;sc(>-Ny=DFDWpQ)(T1NgGWh&&X@bWXX42+(`}pC>QZv4j5iAh;DYZ^37^(Mci7P$qKnz3e z3x~**3!n;SSO5|;CXa5z>V#tWICR?aXu1gG|I2=3K#vZ(q1m&-jx4shx#G9#Fz{5x z!~K7ErG_};E;i-~x;8Mgxr(7F*SH$lidD}Ft8_-rR52_GtH`CIktdbzY^dZ73I2}M zC=KLy7sc#(dhHj}T1uyG`1MYqkD*tGVT5yqB9!?hn9DtmHIhB>Bch~{x}b9>Bts09 z?Z7vf)U<(u9;jduDVs@?KgLbSc@OTRVBbv}lwVW%?WN?2`2q2dN}C<@WE>4ThMj zmgM7*jiK*8bl#Mi&Rjuu{foC#+9>PJs`j^8bFAcmlVeqgviG zbc1X>_qooEwp}&ToCSStOK!o;Pe9$odYmN*|9t+BqT}*KEYi?t{@U}DThF-0UYuuB@2}kAwdSSsc~0R>ada=DN}pWME8hLrwY$wGYG^i zzv3>@i?hs#-mZ4SAD4ce@12b2j*X2W_4|ZUpwtLarchdusc1k3jwOy!sUu4MC?l|e zDRJtVBZvote*YUG`||I;O0ncGS4w0Z#-p$KK524;%Wx%nX3d zkyhxa=!=7JB{G~f*V@Yg$GvefQ9oyeSF#|K>{~NPpyVO@eL47$Qcv=Nj?W z9_&9Jr&0z^^4qG2KA5(@)l#irc-6kW@^Nh6K@z$AV#4RMV5`d_pCpN>SX z&4pVp`j7?fR&kI>n{00QUo%9+gf9G4E}KP4prV zy$0*d4B$w!#HX^EW<&gMBH)Qrvi{Y2L#@W(ttRn{`Yreoyx_hdM*a7FmYD4MG!A8U z{kqle@!ov>`gR|2vbWK&=LSqivbfs`pp>F$~x?{@m};kU*>WVHQR4hP zXXYPK457 zGdW?fctDR;9fH$Bj}`fm>JrJZ3Zh5G&NCr<;#?N>#aZSQ502^)Cw2G69|eha#OUTiLy2>-IP|VWzuqCiY&U|; z=a>!*1PTwz{`JQIo$rWl`lfNYzp8AmY{yDZ?Z{qd+dVe}n=jJ+HpxIeJEu%F0TD2Zm;5c;G6fEb=g+0{`xAZ%Bqrbfa+NY5cwL@^8<@RjZFu zbZ02aSeRPnugbH~>pPh42S0mvkMiHapuat^JC33$w-%n^6!XQHA+2Ha=l=J<>_l9b zWff2Oz@Xyr<2v$2x>yp#DqIjV}Qu$_=N`e zQMPd@Opx6x%^)-$=jrS~%mdhYVS zX6fDyM?Zwg0wq&$xo%lm9}26EeD+s?W5>dqE0V-5A=&jX+yy~xxY&R)>sqa_{-CP3 zWBc^GDx`L$@YTcZ-=oTk%)aV279>#Pin}d(vnX&PVxbSs;MyfS;a=Gpz&vX9g=lG8Got(AK?C~3`-6H4r$qc392D@lHtV&*o zu45izV&XL?_h{iWfqqhYV^ipbRP;hwadV^dZ($2rlpC7*gu_oyLSF?337}zCKkbwp z6G_A^U>(57KhCX{ag8Vf&oG|s>Pk9_QC0D(p>Hf_@%=ad?ZG(kLo9eRIbN3xw2O(> zaF_XR9L5=@_&D{;ZXVci|E53ILT@kfU%$tIP0}FLh$p#$pK=pXf?suo-;_xpop^y| z*CAKL3arE!CGC{p%H~*~yu>fmw5UhPzWMH{ZUYuqEVn7jiu9;YgnEV-@n3ccAaHF7 z%pdet8v#Exw>86YLaT!qL;Lo)M!eAUvJs2CQL~`$oe?f^f$M+}>2syv=UkD|4-Olf zC(G@v2XV>S0!~3nA8uiDsfK4~d69k-aP+-4qSN7~inqA=kMj*bEzDMVZ;?6wgh+zF6V!3dcx$&3Za8 zIr~)}ggxxu0@LwK{pA{c<5li+j#oydtis*++^Rkvlzy-bWjkJMkaLg=w^8iJZJA`K z`;SzKpE}N3Hu6b3jz_4X$@Vvey_t#<L+_C(_vezQ*kEtiVE%T7 z>3IoD<2HhgmumwP7l>?Fr`!p+(a%y%2gw8&_>b z=D7)Z_Td!|SW5FeJc+1e6=*$MH-Ix1X5q+rG=E0R7qvN6jB`N?J%J~zreimK30qi! zKZOoOBvnVJ=Z-4e9Jmu|59fYcHGG8lBKk<_C2H*$TY4i5Xc?M(}N z286`K7TVU0il_Mva`NLg`vRk{dUqR*S2+5MvkP!LBnYHXw&Z5VYpaYp*icsqDw=cf z#~P#%`I3ph95-}0SGv9x)HL;n-ZOXj7GQ~TY@o9-GhrhXVA}1~4@_d_aH@F&L+->K z;bf%QT23+-6Yt>3Nu>>Eotmbm!BT9|;4VI<1gr+=B5}g=I}>!>wyJ)jywd3+qkNnk zvamq8U`L9Kr{3VKP^!6-%KJ0nA=K9{o(+EkY47g@f$fhmLGQ9L6F+FoTX$4RiTE+$ z5a%k`JG<@O8ON~_ElGI4TC2~gp|1WS+a4tBIQW|W0C2hNZti@|Ji1b~n?CciSka-{ z{7|~FUGzuqt?o+m6K1O2A~(Do{z799^WWFuILQX~Rx@dh1=ps^EEYcxTaqK^bAPw` zAxxPR#2NRhy811lV-ZeB1!xg88WvX-&nK__@lfqAv@2mbQ!t!ff!BRnv6X;Y7q-=^ z=P4-8Sb(ICdx|iA_@zhco{KDAu(N(B5}RJ27TU&!W32OX_tNi3G}^vBpO)WG{Hwg& zY7>JcV-yr)$aIY^V3;a z;;@8qXi0dw&pmCG9Sy?*i|B05l#VM3{>4hsQ@oAXB#o>ZOjjcPiI3aLdr}BTF9Fiq z$p?KHQG&jkRYBcxF@!Eh=fs3u3v8~AsF@(!gp!+`G`bE4ytEze3#G$^vY5rEgG$5C zH>0wGX!mg$xW_m)S(X9l{tt*7m$_m^EDCYmTL&eL7OIAl_|PGOeOkzNqcVIj$70Ru zZ`W-#8*w$cKV!VNhyLfrvw;MqD;B+`O=ie~Z*r%+1BVY9r-Fs$XHtcO7qUdAy^lUE zx@9aVXtI&2{c%&$e~baq`3(8^vR()7m41yGHvN1Ov%I{#wX_g1IT;j-N`U7`-?hoZ zbV)1f!d8i%&wfT$*jS7Z8x&&YQ*8KH0n~+}3Gu5WO_Kytt4&(?Lg{4_-F$rC>c*dk zSC%ByAFE0So&wH&-~HM3>^5=9MY9x_R&=P-FGicL{04TUM-DP%Qz*Df4`j?*OQ93}5E z?MP_^u?%tAt9~|H+6p%;%xJe&Ng+w7;PB-12|g9-(EBO{AnW*HL*2855Xponx@mpE z5&gd`FviZ)&##+6|yuU9W ziPcQ^e*;1KTnW2#5oDN4T(Ol`^||M26RXninI=|MvV!1>0l{#%g~i3zojBp8jSUOa z65xtwuaML>@|xM8!a+0eGC)wYz%LAW%Ho?Xqchd9 zP$&E8n@IX_Wl|R1>%rGdfu3cHM!8~bbgL)PlPHW|uV+Q;tce>I7$`fyUNZp-lrM@> z2qHWALs1w#*x7Eo<=-36Y;^E#g*t8G^9Uag&fib~n;P$t_|DLJ%W3D_pt7z}5^n97KO_X!B9m-)bVe2mjLt)>_U3khZI=)I-Sln=qN|x)voX4)gCG&dRH{9An z;-!i5?pf20tvOCm38Sdl3ZY}AL8g6olKPFm-1RyQ-IUv-$W zx`(o1ZA3qq>f5nnM?XL2y*_7iItJ;wd{x=HeYJC6Y6?Gr`|gOjP>u*T^wGN`C+BVe z+AzdB(Nsk@RW!UT=1DsTBS!oY`lI6Qdv@O{QJ%pL;YpW|dpq`Tr)5RA6`E`knK#GQ z`a5<=o%;Mq-`rZR9(!{>hMdkx^cVCWE9r(#U&renasLL|l)UA^3emU2@*Y5{BKZ{H zR$+4`Vwpl5RcPdrUEA3?IkgZm`z@RllXsuk*1@5kk7*{!;Fxqr zT>V-#TH?Vd;UV=DIG~vTk1c`IpN605U!AP_+DdEQ)fp^e!S5x)l8n;SuM-kV2}Ggy zveZiK#*oBtcmjc{Ns*la3t6StjZk#t+`JcO@m)R7;CDYQvGEI3F#9na- zxa?#B=(ZW2;>%~AbOt1y<0nGM!PzTxLF-HG$nWC+BE@RPICrf5Q87A>HX7EGCUN^s z+sHi8o}PX(k>UBdEUS~HCYTy8NRzyQ-BSHjm9t>Mi*d<)>Ml?;fX;AZD)sibt;ye~ z7VEy8Dno-TS$~&adOY9BmG!y}Qr%?kk^?rthP5pPHjZ zw^S>;JePmzSsG_DnF;BWCwP%x%|p|jbk}4_Yuw}=`}PQ*%TRT~t!DA@u>9>io_J}T z;>=X{6KlipC!#bZ z==JSyUyP&(`oKpS633?4^Ifl#0XU`Anl!62IMIv5>g%`r?!1F?N_3G6h=b#`Jm|jG z!s@RSC=e}fcj{D_a)I94O)>-G+t%z6PABS9=hlP6{00f8bfO#alqttzj0QbFP}iJ` zbq5rab*ECsFFWKZtXt)XI#y5b*ronvM4Z06Rzw7h+R^<@2;(e_fo9u95k*k*;!b4D(?Nr(0NI8SJ}KhYpK^dO;TJaGkZoG2fgnx zn;Nt21{FTtp$155(&XY#$nO_*h{36W^6VRp>E_3fbbQB)3J8HzZ^9LkXsR$rPlM0* z!xL_A*m9DRkyk?vi||H+~N zrwzOXG1tK6F99kNknbE5QxENM21@`)CxpH3W61go(nnJztw0P`B)}N7?85g;2Wlbr zn~U3nZ(g%H!6pXR{Ttu(Yk=b{{Kk2F!u6S@ss?)gc`UPAs{Tud%{;*;fS~L&aKgLx z84f@7AsT_u;&>ZGL(;uUZi~$h+g1FMd}}|8&gPC%Jnk%i%2!uPD#q;UzvH$cPZfFi3+?2_hV0+FeQR^R%Qf zY;z5+98aLj^M%Gg zI;Zh&M`vD^kb69AXF@MA~Q`37i@h`4ga5?*aqlTl4_;duWg@C=*q zUv2E9f0(;pZm*`fIwXh~c3)eaTdIvZ^k}4}XV}pO?`R4k+ zl~!LDvHM2;GFUqph{P6o*bM&THd(Z;4|I1i;FgVxm7>&8vRZEc>wZ=0iLoPRYnZgE zPu96}nvw?9j&muFf8DtzTc?~!)VzdrAIHzgC^ek_V^fd4-~t+qjmg@eD8;yRk%Z$k zdxDo?^)*=A0PPD+kPMLAkA+U(5bX+3Z!S_J=TWy?9X>3vo{|$nrAICy5V{=T?@FqZ zEx;Ec&&4w=UZUCu*@WIE!6+uUhe!%j=#^-4ZEl(FgTZ}ouJ%XI_>vT6BQ4JuJ^TaO z1T;KtT4O2G@InPr#Z&!-{QRmy) z?{jZUXMRni?Vp3+3hvE!5XTAjco#Hy*XN^q2oE=$l%$^grrYuYee=BT>L-l8*JCsK zL(Evf;OFf#XR@fNjV*Dv8d4F1x=7scICLw^6w2f4LIy|Y4_Z~E3IsMf{h1nJ$Avjq zxvz#ckO)OjM9A5CM9M-{)jP-AoNZ(G+q>N3+vj|2zfi)fyHkDb;=pK1xLqa6zk9A8 ze|%XR&g@Lh?0J-bdbZh{Ku0*9F_O1nNTqHBH(AfrEULK%^A6d3KY`ABbDt!CIno53 z)DE|N8eLiGw-srV*duw46(8X=QJxc!wd~JdY3(9RX;k5^uJRtDPHZ9kPqE|kg#}jV zlDr)9T|UvuhfS1>yNh#&jC+IYqvK^z*}R^rBQ0ywgyc?o0^%w6z5AJcZO0Y!Dn=1a zFYJ%$h$=X-URG+0x}EEKtzApobAdTGeR2k&dJ&Ff=C3zxR$l8>=tc+n+@|o80u-}4 zU(*CZ34shnOJsR>f%R7sPA}2p1ZmLkK4)OV!Hzaf(rJ_`{RkRKBH>k0nj3_aP7F8B%0 z&MDh;IL^t|XJWB0#1vtx$kGXdS*=Sgn{`cn3ORCs^&^lgH1p1Nc9eegPTgHfT+wSI z*EcnxGrX}!QmH31JS2B`&db;Ldb2*`@r4q6=`VYvXRi*|(}|yt@#+AFrKn!NT7Oqo+gS-He4;_99 zUzv+Oln$4cMZMhQ#E|)hX!J!71&qFKioxv22PnVY2lGTI=d(V=sdRab3>JDMHk?K3 z#{Z|2S?;VodoX6lBICjgSsO_>YxLVv?@vwm>V*(4?{B5`+QDoN)mc(kmc6IlTPD}wEhoXIOH$?$Drq^hudU2cebz;zm!nhK>B<9k8qfs`bXZ@Br22Y@J^Qv(+JPTkDQ3`h`qcF$yGU<(_lvpcZPB%@on3A1D~7PJ@X7Jo z^YDStr{#UNFAxG!zj**J>%#9b?Rr_e=1TnD=rmYh;s2CgdPinxzZS2T@PB!MfEx=VeWrkBIlx!NFq_4wzcdi^JsAv@Q%1vyBmKyG>BEJjH z!f|}-IW|hCk3sj;EHaFu&I_Zk{6S4qN@j`CV zlRs9~Q=wT8WYeK1l$XioWASLl*g@wdKm%|Tt{_zip-yINP%4*sfyLUbe1Mj3V5)DX z^!{N;vC89TtpfP;?^}GsmFLnK$bAt`F5JVk)(9{9LwafKA+$sHOAUBiF*E}5*x7;| z4&Xvq>OB)CjmMnhTiU{0{?Q**C--~DZ|>0dJdtP4$M@NNUV%99Z4brOiYhue^09lp z7$N@S2yG8F$Um;&AcB3X$F2y-A!ZjOVe3maAjyoOiMv0oo~%Qd*oi0(_m$fWaweznY4Ru#9rEASh3e)WM~0Q zpWRaiAAIVN0IF{rrb?3B_vx45;50u99KMz#3)f<5b{s$|tl$ZLxc>U^gpc;{aFDlq zIZS@AT_Ihn6esqSkghHF4FcC)YvbXT(^thwsB0-{q4&7MPs7Iy!Ty zg$wmyKW{5vS+tBbHf42!y$#TW0dLQiHAckDNr<=Kok%7$JjbWiZL~*TsR5#+K z`=OH8@^dx{kxd>iG2RON{>piKrIUmT!a^7aNgo9=(O(R`w4CXtGSH$MNxDtN&Q7`0 z=Nj#EcvU*Q`Y>b=IN*pW&|7KQa$jTJxGyPv!~gNJcCAM)?7Y|^0%u)MBRYR)P7`1- z!OxEiiB_i%y6M|pxwcydJHVUx2F{5pryGY2g=EEd2?$M*gh2BzFq_S>O=L%G_>0N^ zEgNd@7Z3s}X;ZshJDr@Z&CLL@*YtKk-wxhJHuMhb?EJ8H!Sen4_n5f&mq!MxS?tL1 zPyfm$I%}s&t*Nf*9J&3j^-bQg=rg*NsSe(3H7%B~O*b+j45qzbEA1Ip>BvONrj%n? zg*RrsIRiFL^a{UEqH~mTTy}f$iSePFHJ{y2>ZO3@`-&&3O_flJDvltIv_zseXjETU zLWhe4ke?8uEdcxJF_I8notzdx>z4CMbU72v>x3e5WMWNSmgO6P-b@+~-{H?6VM_s4 z`N)|D!RR=K_M|lEOf69(<-0?!0-=b7aKiFnqPNygtOr@{cHvF16%t61t_3m!yjw5(+?QE&6Zx4GAE4+- z!%ZSEZeG8;tQxhWVG~)IA0MMMTI2=k!{>>h$BX&pvisgkPvr;?KMu14l2)&s&sXhd zzb3h-gu~4d1Q~YXzu1}3Z$U$FIc-#T>!X7|ujOfu7Yt{P6;*QsbBF(==oVx+?BMtt zdl+9hw>Leo+K^7d>@Q(!A9Y9e2zS@wa}~^vUkRwA#&oXF86puycxPA-hyEWjt z>Hp>x{gF#Na-A)41bwbIt~KRYkYB z3d66cdbI=PQPuQ7+HPHeKhw7u!@!Ro;mc)gjHiIGG8Hxue1wgroyJL$#sG_N{Q#gs z#_7rZjQ#!d7QQl>lc_fG{1 zszgX^ulEQ;_|cA+Cs#{uh)I(XJ3|Hg7z3EfMt!+&K`#r7iEpA>LO}W?vq5% zF4pg(6kZFU6&ST2V65Wk!?LupvVF530L*8a!ZsA12TC!IkB@EbY=J&+;^j6Yj&pD9 zXZ98sf}I?xlZiUbT>^iJAq<3f-}YXi@B=A`y9npGgQu>^<5u9jnD? zaa3>fugS>*%yFq57Y%mKZXUS)7gD$$==~R9(nAb6G=k=YAiX}jA ze50}|f4r*2rx|N`rQ9q`*3NrySaUtRN`^I^SU~^G?`Dp0oy$F_Gi}9#*OX+TTDLU_ zp}m4K_q=j1GtSe$k-c}Eo&>+lVEIiw_Emx1d}fF+d_LyE865bya~)>p$6s=BmOhn# z|BAU5tFB%>_N0+%9Xi=DS)4dq1wj9Le~6+{^gERaoo`@A{g{q<0ofL4U0t*^Vx9|Wn)x56^jJlxF=b5D6qrmqHrbb#Y_%ATR~=}ND_m0|N_ zKacR z8S1!!ecR)o#RT{N825VrxSi_E+CI85OE2&^pks~;_XJ}5rYrWlIE9KG$@$cO5YN$W z5}CcD$C6BJShMR2SM*h}zqc0>zF(MO9E)3MYG?=!l=cXAPME??Q}Q= z-uMirh@#Ixjzou5{Xumzx1};N&^-^+RFL4e3KOOTkqCYMG(U$e}pK#!=z_=M<&9n~E| z&d?z7EQ;t30-yqc(0G(II%qROV=j^((OjAEs8&E0gaYdyC!Gh6Dco9C!ilN9ooS9)u5bvv~W zs&idD%I~a~-_q7-l2Q#!TwVQ0Z_m+_#xm1{7ab?OS3mXa_Dyf~=@8Lalxz-W?!J&G zb*X-616lswn~vm$t2K3e4=Y+^%wo1%XYF6vGC1tUu$Dq%?>u&mYfLL;N~GmUY3R9z zzxeYN7wmaO0&IBh?0`1_5sMzbIfuY#Z4TylkJzPu1CPyY=~1}fkNajCXuww1nC)Bx zs=UC@v~Reg;Ilb5JS);xj9p`S`n&MMzQ1|IrqOK;@2{WfQp_`uhIJ$)wX$yR(%s zEyM8N#G=8Sm`G2BHI!k(`a7qKD@}WchX|Iipxm7xv@Qn__59kEa%oqFTdh>dy@KJ4 zIr5e{8?yFa>C;A+I5yWiz4beRdgVp8LyDu$>BA8cFYlDhj?^$nv?&{CLscyswUj6NBsCJjD%u5|yY3Fp)@%_2^@YvjQdO2?T&Ar00 z%ie8^-mtf+%ZcW1%ywoG=OVCd7M71XG-;S=X1BX*KpdWEh7 zA@`UDN`}S_RB3@cT#Z^Oo~16>R+lP=NHVc6yT+Z03abq*)_F&+ zQ8{P7n^;Zvxc7&L1-}pT33hh&)|z@aUoGM3>gtNL&@zrE6)Lm1i^jt-|1Q->QnR!d zcG87KK1~5SKJhxotr8{2L;orDdPg#$ z^rOgoM$rmBuF$v)KZE7#wa|?N#f?J*FQ2cdmZh&0H~4`Or6(1Pwtf=oB3ChZA-2TU z2E{0rY{?y|dY$J;^4UK*yPsO%UPQ0OaikSlw&P(tTEzP-0Z448PQ5glRe<#Jyg;P3 zH=n_AF3)4U2@0ht?~#$h=d=H}aC`Gv*|GRD;fS-3Q2SjxM0x^MxGb6+6DqIxBCyd6es@~Q{z!zTA0#1nPBb5;&5{b@PiGV0chg^7tw5sWSO`ODVkZNSOe8_4 z&J-<1L_b0lb2}>czrBf08?NoWJYMT9t(x+EzqADBDy!orYb&faQG^3XA{M^U>+I*V z>%sfVn}Q%rAs(aa$P|&m?#KaDdf2mOL3z)-bI>+NZvIZB*puLR(Q3vhk%z3p_;F(a zGtu5)T;7|XUKA|6eu9ryfwKHIS2r1Vk9BN4(>Km}Rk+ppw?f{Tt!?R0PPlcl#~82r z17eUOJMaMrQEhB&);b%99+oo5yWZ`anwkXMwgrac$t`_Le1a(?O-fMREsG1jy9)?A zDF1Ax!M-B4 zvJyzV=LAH4@5rb!uh-5;e4?Tp?58_^+H74OmY4CGz3L_8FV(IUvGZv{pM1?me1^ft zRU2AWRuQDucEoF$D3VB58DepnH#3h*d&kD@BnwTiZ&;GyaX$*mOHgZHIp3Ym)-d7W;eGBiuhrBCi~7@m zkcIZE3miOw3}n|frZEH+oCJF@seO?muBwxmk{rlY?3W_@K@Od8Ay_}Z%27G({7Y|& zO)Al28W*;(@vJ9XIvW$`FB6)WQqV6b0J4VZj!Sg#L5( zWePvJm2ro4co(noeXRSr?qS-b<}i+HpLgw6+g3=ub(uZJ}M zhpDfOin0sWMv;(KkPZO>X<=xP4y8koj+gH476FkKq#FT2I)?79p=9WeL5ZPfhCC0R zv)1?h;vZ|C9rxb*s+$=7w8`-o2Z7kSn~}%1{F9TYzWvaCDfoXU7k06q%#At2k(W}{o`5Q# z*WSWLUq?G`*rKO@C6LRosjEoI9}rZD`#&Uu2#I98Nmu>}u)6ZbZfRACFyXRg3xEI2 z3iFPUfhWUxpjP_As@}_Mcjqdhrvl|Q`5ETo?oA&8vfsUOB4>5!98VOW#5ESKgL*$X zfJYY%5}p@#&Ut^0nZ2GOsK#w{Y>KUXeh1bNhIlqX){n{99+C8fem1nmHY1u=!xx>I zQUNY{j(A6{xmM~a4(0d@^YiQ53!F!7XR5SqFusSuocD?#Qhy>U7u)$7d=b-9nXj8^ zVnJ57^_rSsiv%ZpQm=~Bs9q{L^~K@v%QK#j!+G3F=9(@!P3g+ty)B#Dika-D3a?d# zR*lZH5%F^(9+jT%tT-FlcNg@UM$fho8Q#sC1$7xG@%r1kRJH2L1bKa5D^$yyu}9~8 zr|icA&EJTcsL+##Z#w?@RPoDm^(oWu)i1i-&v_4V6quQK`JUU$Gr#-zX+~2(ajUNrRW^|h0R9sX=t#~95oG%hD!S@7Of6)4`3#?M>PG2CW`m z&v#9!ur(up7C`X&vG2RpuYwe6Qr;unI)iAqu!smi;xlVcHcg~DR#+zZ4}Z~N(9ONn zUR|fwZE1j(mU=l71ZpMiot=|#vKPWnr zmiCh^hhqpLds{NVwzf+N>4f^@#ZE)Dcol95IQF15RRbihDLq^8Gh$>(X$ zLuI3sZ|*+0I6g(hO01Q>tcCw)O6MnD4}DC)M5D=eDven5>U5TQ%s|p_yvzLkf6D}L zz+Zl9l@b(vHOhOm%mH*ET^q_gx?)w$66#)|0v?1f2E+Pwr$lO%*E1r{U=v#rXEO8F zani0o&(e#gY)H5qc+#NVf4W;ooAz|-zBLm|M|3S+I1$`^Dh+G>EW`SKran-I+iIZ- z+JB~)u}C5W$mX+*Ye|b}7%p*-JAa*Yk;PXoE)H~GpjMQ`K^@*hz?y8;+Am@Q4Lb;I z4dW66S8>gXv~eqCeYld-aXM0ZsUuWB2lfEMK%v!|SdL9|$qJdnHl6$Y2bJF0HMqBE zEtQ33REuCHcKHq01*H>GYy8caoaC0ZAT(<^-HyMwuG#J#vkTHz;yJLZS27+;HQ+V1 zAZCWe-H6)?>?1+JYiwX}BsACWL|_>hvIY26nI&ae?jB%V7B3i;rBKz*2Pu2I?58aL zE1d){-Glz>ikKMc3n?stZ8o^kW(wZ|lJsspKm>CCcQJYy6(Q=o9;(m;D7b{Y4#?#; zN-T=b7r5+Ap~&d--@-ow|ggnCsL8K2zR-2_Cc%wUSzU& zzRj}tXN=_gK!F}_Y@M3IO3(IU>fNBF#qbajHkBTZSqq^9T>kb~q80;%#fDdC27USz zfaa6;g$NnDi7_o`hd(H!(>l*_Bg#6k_@-HA6u3K)#c@PNMjDD_021@2Cht`&aJJsJ zfng$Q=Smtxs6DGXV}FY-K^Denwx{DyoV|uCFW2g$=(o4mHzvC})*QWe(i&D}5`>(8 zFUd-0?O^k1u7q@wLWu*`*Q8VVCN-rgtAY|jJ%x5sv`_L1_S5>Cet{(bF=-V8t4naU zdjsy}=9%%T*%hwO?@T4un*2H|4_^&78GC#Ii*m~`jtM|`F-I>0Yg<`S`k)=|$PP?F ziQ3VzjKsN&*!g;3mN2@6$R`FwYAlz~>-vhhbwezeuEWBZ`2ynTgn zROMdDH0%p~Aj8rbs zs$IbNkaI?MBs@Uly*x~~8vM2Os3lr!pF;6dJ&nqY%Wum-`V>0y*Y(LZhgd|#7aiTw zT+V>dJ7|jYT5&K-yUkhV@7q;DcFLvnW38!FPp6n5h!ZL(cbKfoBhKd{ur%!b=Bzb; zQ%q+eD`m2L_@h<=8d*zNG%<*iHCZ|>0_>#m{B)U2RzRh zphj-QcAtX(mkmeK)h89eulMju6VTk#_3cnG&hL$^^ZUHZb z5Xo)Wv<~_({<+(<3*B1PWzNX^Bn*+exes-tXSi7FKnC+sGxrahkr{QrW)$wR+X_{d6vOmiuqd75g7# zOs`IE@{?1c?~I66W|yEo_Pxa${V*;!ADnxV!{ZFA+V(Q)yo^edGVA(&ThF2`%UCn7VmqTx=qhOO7 zRKfS7pii#OxYyGZ2z{NC@QXe4q|){~h7 zSg2@mKFz-hw4)#ohOw7p(F>^)jAsSEceu*umLq@hAO8CGBlFf0aMI1u{Hybv zbKlYz6zo;fukn(zjVyT6O#$DVqXDf*!@z<9

^MyPF?LyVkkvwg~xmT>Rw^(xZ$FutN97D|+E^D!K`DRwM zrl#Ft$@IsDJzpR3tEoXqWm#4C*?pQ7J4N9h)r!els^}2q^C*MN{w|O9)^&S*!@VDR zP6?JwjzV|w$8nsg99g1R6L5au)^@f6n>abBo2XqnaPiq|4G@Thr>m1-=n2SwF^^G= zQ|}_+xaoL`QNii^`zIB5d^AR#J{xZlk0;g59ERfSzE5FEptwaSeZpKw7Y=s=sG9)# zlViS-%S-SQ4NKN8asU zqaZI92etEYMEuh1voQU1;h3k-z8@SVJr^Ukr z9-Lfl$j88A`J%@KvEqFeCV|p9YT4&n^_WYzc;>LN}x^Y_K@5bp)C|F7uE`k|5^66bf$w;o~*+ra8EQaN658+aD)uBr_E2OeC;j? z$KwyawVRtjwtiIPoUMOHp9;3mNwoeGs99EI8K$crhf8tQQCDO5^k54%ER z)8d?J;$0UX0-TtBj2J+c^}*{!Yg!!;N1%4lkjt06M7)Siy>}ZeNNu4iIS($vs(7-j z$!^saarVPc3Vtb;O$q5KJX;n^F3(On{*LgiR;pYvQ_r4<+};La`kSoJLkR9i-g+PJ z6*_M_#*6jQl*~~)R>2wxNvCY7l+wqguX8$~`Dp)Z6Z1SxoRzUVMDnVF7|H6ee`fOh z3X}HkN~kef#x4f^GtS~{_-%`e)DZ8?Me}@CgWJY5#@H$sLozw z>tS%@+)amc1c;h@(f4|K+4p-RSW1*yw!6kmjqwIA(KX+(jeuf{NVn`wAql8_8W6D7 z3-Db{2T3mL0Y(yjvVi&CEAR%IbC1_=)dWk5TB21R%zNt|(wigU{FJf!-bgSX|THDyXF!kxB9w_)v*s{3wK8F#O2PS=Lpu*+^drLjX zxLFhm*AQ8i`eks<9sc$C-IyEMy6-x5!v=c;dvvGspthri&Kde&#Yau8J+5x)AFM87 z*jK=?^eMoEru3gGuR_Vf>4%LTkw zngsF=PENHHkI%}SZck_1gaT?z!iYaY_EOYaQ!`*f(6fb`D+PTR+Z2UsSD-UbGnCRX;xE_rqH;4Uj`=>QM7$yzV7l~`AI-|`j*b3A^&P?I?i^jIG*o~G6u?ds8ZA(G=bMX zs&95rgd06+WR#nNEG!m1p*Z11$a3D9Phk=yT4zLy;U|n}wB?oz{sg z*f2}(_HYTe3o!Lw)?2;%nWOa<(hIJGUqNc(cfx zK8b7lD?xx>S?#;EYx)N>+?t@~dQkSzi`argI`}=t*ow+7rBtwilF4i?R)yISGnxf- z?PI=_#wUaOgQoH240QDM3vsz!4N8 z_U(qdllB(h$A(X{Xbd)_y){{xc+u@e%gTx??V$rytHT&o{NC-@+7TrGowBGcw~WQZ zjzgLvn44K{g2G0lqO;lM4%pXCw4b29y5Ugo2{ic#IhP9UuPEvVydV5MSN-I$Rm=Vz zFSAelIg4?!*zI}DV6MnIkg&NG6-@@0p?WSFyYFA}+9P5Am8^ibSOVt&x2nwYq6`g~x76v;; zqPaVU=5jJl$3PRuzl)Z=ImgwIamD-g2L}fUmcAxi|5X&(-*$C++kWMQ_bPZB0k8W# z4x2f19tRJNn$>&^>y(>mGUC0DZrXaUESCV|+vc?z&T>@}gTR_DrVICgP&w; z)dgk}de?LOY)z8yg6XsOo}q;)YmQsR$SUdCWkkoH^x$$=7t;`Cy&avn@1JQqiFMxY zj`UK0EMi}3&0j1kjoq!W1mqu!&|OEj5Wg;R#Z<;Bx*U%){PNP_Sgl*k>+AR4&0 z7AN{VwZn)XSGe(}Pub2{FIO~pxL!-EsKRbwus!j4vJJ!`6VJ5!rY$Jl-=3Ud*zknO#ujl*+n%4wBw(kVx_wcUL zCxW9M$}@N1mT*qsr5@LBs$|P3qt@t)3(tCT076$udy&+9PlEutW>0*BNoiV(+_!13 zvb5XoR)QqgqJ&x|`Y6A5gz?}S$rimDJ^#iWtg%KrLGvs9LhjICMB(8p5UC_hCM?op zu@UXpiU|eSxqsY7)O>&Wgu09478CKQp!e)6#$I^Ep&xR$Q5)q|+FQXodecGH$S69Y z@m|9F*Al29J$ae;tDeeUgu>KFyyjOd6ByGZrWhkmo6Dbat89i6UV4Yk%0)v>4_r-G zO<&o08r|e#tM+YdmXlf&QIjVI1QJ&T>R|mmGX*`Vt$C!D9E5>>!Z2a8M4IJo@T|w6 z+N)Sbad`f_M|N-1zu6{w_b(vL@1?lxw^P?U1sbawZeDF?y`fkMd8%P>&3Y{Uc|je z#{Ki-3!yU1TjHCw<_DXeYdOc)Z1X*$~hh)~D zfxa*!`x}vv*lfIPz3VaEwpbdf!|B4!T87`2b6K*RI_1%tePQdAVW1(t5*dr@$;eMt-?(jsV z*-QC@yZ~;ejHRoz%TK!mQ_o0u0-CRio;Huf9Bx?+ui)GVH|Ax` zRJH=b!0N&_{ryQ`D&Ms+18M-oQ&<2`TC^%|H~PY7NMup+wr?D`;{>PJ9NF_g;< z(lrPf8JtFU(@nQNNcTArbET{3Hl<*}`VINZPe=8K4tqZ`fV7#qWPKo}gGUcuw#g5J zqW*KG4*-i!xEIf`&J;4n@Q{S@7*N@h2kiNq32dcX=WP61^GjsO@%dEsmfzgln+(*H z1n?#Tf{pXb%d*=t+%-=_>kEr)DeKSCZKI8*zp*H!Jp5+EC}5XzkGu@;q72?howlD3 z534*Rk0K~#YECc6me)!3*-f_|vi0eeAw2mQd`i1|n$qZUg-jdhn!3ZIXVTM9Po~gu zMlFK}un6{rjjVZ!i!zjjxdKb%h|gOarb7xxwD*SgKz2ODB{Iz7`#qA9l~&N(!)42@ z5em=LSLIQ2j~qWn_9zqSn`XmFmfy!FeOO-A#E-YO@(rGcH(N0+bTdEjQ2=x}_x^W2 z4t*Wu~wS28Y^cXo?QKQ@&jj9>l2`7mLTeE zu%r7y&UU1+Q+KjJSl!V9feaJBV=XPpwcQulTG9J4Hvz-pu1Ji2OMHy+H^lH*R!x=T zUv2~?zz?a`LLOn#JhrtK&9GD4wMtgxd5hqT;kh|(r@HCuymi0XV`Q19#2>a5%A(=r z?{HOQr6wPel`_Uw-m0!+4dWnOyo^&uMf>N#n$+<`58F~}zj!%rfU!frG>s(tkEJOE zgfUUjehK=`Jgo%+oq5g=so%spTO*JM3f z&CpaJ(=4)N=uBbH3kuXS8Q0Ix9?$RtK`S1{L3PZ@&hl)ajLPoB#Nn6}YIFRGksCCr z*`R?jRLClk)yU>pYD{O{iweI42#wV!rRS8lTO1rWK9a=$_{-n#hdLfgRh{~@U6bO$8nJqAR6Fx2?!jqGMh35Qbhc@Xc!kqT<$V@HpI z_^oyaaOs#N9R%>ChVfRwbpK--$Z;I#BkhJSw|3gJ6~=gcj`9C#+08ZErc2c}aY74+ zT!p$*lQRbP*3DM{AwB;>kRDZqbs1$&n!dKtDvt?uZo*GzGfaDKjTZ8>QK97`HnJQ$ z-I@Fg+B!C+j6k8gNCTi=fmIhqBTSMMU;{g*zpvvg2TN(hkJ0iHN%wBP&l~L zsr?sTI|42$7qNlEsTa2|xn}A+H9wZ}y?p<`;r4LSHJKm?ChvNjDRU2cg4%EUqe7L1Mv0}61ZWSwR!;nQMD%s? zTLyn(lgOEB_E}u+e>HnrinYp`-m67&md19|6eh2X=NfWL%L1*g=TGP#`|P5ukP_0DO+hBY@?asg%#lC8X!Y@QPq>G-I2=? zYqkfXlitFf6zd7VJ<}n=eG=c`^4C+w8hPQzf+wRiFFIa(G;N9Ewq86UM(@0xjpGhR zjRstZ(oDQ<9E_rQ{S~zA3MUU4d7ZKN>DwMh36EL(n>&Q4v)sY`^n~EUTTL**K-{I% zSQfs!o=v;BzEW{pImH!0$sL02xQu7e^i7vCo;H&%_bX5Q zx`mk7Sb8mMVecdA&im%7Gt@+I4oe)^6*5JNaEG@eHe1M^Nl(^SOjPgF`{tM*YYKf@ zu>%e`fEB}VLUkFP>kq#vqUH7GvRF6J_*@d^1xB!5>T9x7W_??4BhaCWb>y_$O_;7J z5&?R>PrQxbkI40R=~KJ&ml$25dkc|dFJs*MoLbEGQFE6`T5^^`*?dy(IGhwxRd5~} zNgOo!vNg3P5s)FiekHYyZ89C;yfzLBANrJggJ%NuC zA>%WG2bd_|-mNE1oc0l`x#$wkuin|7juSk>`zphB&EV^sQC7)=UCWEk`ZEI)xK;ST zcF{4?TG=RWB&Cbe#Q(op_*wvnZd<@|_T#4O(K`DBSO5;w26R-V^Xa8RhMOQ+SA$3? z^RkUjFC7m>6hptg{G8fDx#dU^%}@doe-pLnHD~V?czOFh#S4Ia*jHWqFDZ~5T3@8| zUu21vBfD~Mp59;QiVp+CTy>bB%hkDU+ztysHNW1mo>-iZ60%r~Jp-94+DXii+Ub4n za2t4Qx$zKj;tFcoK}Se!p*vE64!cvEa48p5G3V0P85k=7ea3WcS!Mf=qSw`$ZXZ;H z#KbHDj`5QQ{t8AUu8Szo(RUHRsg( z{@j&zdQwlQ$>S0Ilim#xG-7m5$7cmHth4s(nZ@|oWc+gZJQeY>1@eM1+@vB*%(4Cq zuKYie1Fha(Dyl1*$#mVUN?cK!+-#De{t9vdSz$u{mz=ME2 z$oQcDIpAXRGSwh){r2%HFhZSw6r7A|Oyw*hBb0vbn7*tf{|V$8@kR^$JloXd)=C6R zDyl;Yl4V`C*9rrQ{ijh*iP5bK=H87!hqve0avJK*U!zK& zjWC2uE8l!yxEtyhM%Q0E{|s_Oo{-xX1*h}uO`f0 ze|0L`|2n=kxdHmBofeVqyp&<)s(&N6Djzqgp|N4`%brO?QS)hC@@(|0+&w_lR(U3u z1J%zc?iNmu?fyUOAuvZLw_7QM%ken58u95aH1)L%PoU-%4|~GifdUW1 z@A4IpKnm;Ven7N>ZxkfD086k{L?M4%F{gj3>6@XUou^ijDLp=PNX;=K=}9&?cr`->B5MR>w~l~g!r9hPSBO@HbllD%a6+L@JXc6 zpnTDl&IgSPRAj)o7A_)Xyk1l=k*1s1;*ylb24qo}&GhNU>|Qe33@5~@WSWHR?X z#6h~EKTMcCptJ@OwqV5o0WY*{4d}f(QFONoH^&C>tsv8Tms~Q)Aul-|d8}gbOkCL? z;BT$^@?S%TuID9Vz5Pq;{70IMOj1hwo+n0gq35wF4*Q=}p{@EBdb&;^M3}Oa|K^4K z61W|3HYouqQIoUv9PV$v7TW@^1+e2Vmbm~_iEC`Vm+ls?^WrXkiVxrF+W3K#Wk&H> z)lrOld~HZsz6x!4LCLyfsBcxsb!!C=eb`g4I)dAr9wYW(T%@nq(NLy)(F=y?W=_y_o)b z%qU5F6=ps?%u09cCyx*7{^~H6_bx)cRcA+8TglrLV*PP;i5q!WD|z-U&C!74tpcDn z&9EM)vLC!0#B7ZuX4tHXL2l3ECz+0-U_a=Z`=lFQ zM=*t48++NLv@oy8pG6llx#5K!fBv8S^>P)A*P1a&BB{V=9oc>ee|IadU5~Ma09dUs@773 zD`a$C~EA20*f(x?)X-xHRjy_p6%?y5P+CpvzxkCw;`_ zYiG<*y1+E_0mHu{B7CZr$wtwhDKzwZA+;GBSzB4Fr|4!=^gkr0BJcw63C>5HhoW9r zL=kR}?k^4A^UTnK4tU7mAk>*}?JKu`@L=pisi*>eZeAH1RGyJJ=_xvfH9&I!Ts@F{ zt{2yy6z*bEQG-Nl>9+15Bp@J?cKP$)BuobjNM)`4PFVi^;!)e>;zf4;HW1*k9O%%u zxJYT;r~t$#xnCkNx6GsjIHcnyt#Pf*m?bce5<6z>MmkuW%*ro135!UywE<`%lL|wD zxVJ>&*7mM3UIOv}5hH)UUG`oJOpE2LG8>!-5N=CtaRJYbP?_6^uKf`jal*z})BM2z z|2JPjz_#~h4-=KmMX{yiq&oJihn6xY<5-d8&bvg; z&~f*%F!hn9UlOvN!&CA5Hucg`3~#N!b7S&#TPi4;h*4oOOY5)km7OiIR1o@nAb&md zBG^ueW8|XByPZP8?xiPtQuEIff;Dco<#?LN-jip>bo{GqP4yo%Q4!`FO+*z46YgWT z?@$OJh&9r7aj=htg(8CfvIfD`Xkh>*V|ER}N<@f{@hKYEx%@XY=`~+Q|Ix0a_BjE5 z0(;Byb<60HY0jDPm)XLU+cMdYGZOvo?w}R#Xb;GgT%ZeHUKlr6b5*e8s7<21E7*y&z1%#HMnrtTDLD@yzX@ut ztL_^+XZ5G}I2~c4$)wU8wv$CEH`Snovn z=>UHufD5Jruu>IC|Cn@QX&+8#vIw$CDVc=2fuAyzO~GR4i?Z&3Jx#HFg8tdli9aayj z-nh~zf1fb476|C%@}MM;n^6%WC|4I}q~CB8q}@!{D+cX4>YPLfSUv%QhqgY;=Det8(3 zP^>FklxfQ>)Jk&BQ`!14YkP03dtBvN$AY5o+iK7##k3p(AGZ9h4d5;)1G_ztjX?9| zo*0!GK0cMOgos)Wiex6J@ZG|7#~7CQ@gstB^krcB$3hkyA~cG#%}d|u7rk1lc<#{&R@+9+!wusB|y{Zpc zKNE>L+jm@zN8cR5#Jg?IF^<}=2_8~yY5mqYO4O`xCNtE66bq{{YX=Cazd{9b6Z4y@ zi7 z<>tw=mCRSFuj6FHry>FZBQbptxwI#%h>p}j1WCNuDQ>+km;R`Y5OB=Z?$WjlygV(t z|2Zq=hO_wa?nu;Sen9cER^u;SYmhT?{_p!V!3M0e*4#zOdt+oXUMet9Vmjf0d2vUb z%jx#}5m8kjj^V*{_Yk#WnNtI#Wp-Y6g^0r2k_5$l1WV$oGzr1kk=J0JZRKYcT$7{X`U? z0rz70|F&2;JI8NK8sq_8%($m4IQU=wza0~1k3qm|)9X6*U1q&5NnGns5ARLI6OsWD z{e6=y0sU;M{+<#3fMsv!dN;&ZqSjCwk)|NM6 zlb4Nm3k*no7AKX6fjN%)Zn@%=o#`{mEhZBITC#lf(h(x*V`Y0`&r>0_xnnB$E!+KO z-GtfL?N88>m@{W{`7jhTb`X*X9dg?i#Y?5|G-B+ZjV{z0%lUV!-~~WS%(;w8K`2&J zpadC@ch9lZy`ed6U5snGBJ0=Mb8rmgzZkv0Z0P_8wS?)7&)sZWF;{J!PS`b(wQx*v zzEBqcbOYM@MHl>#hjT*gECdN76dy9VOBB4`@dTn?-()w9fy9CR@oVtCiBMS^{&r2` zE}_JU?dtX5+Jipw=b>OtLxWrqj%L98(ruJqqyvu-rI>a=K8=JnY(&M@(;zam+0s%HP68B5>h{;SD8_-?}$>_50K=p zd*r#IPStJmL7m^YGVhZEJ)u;vR3yVXfdN603<{HXhp+fz&3^vi zLg8BL(C$zQWCwcZRVDm*Dn2N7qoywAs3n#4xhVA;;dw;ZsC+>J_AiZ)Bp~7KccMhW z;ZKwAB-Q_b$dhRRHT4Xc`#n+j-BOP?Ap7ZeiwTEBGe<517u<-972Td=OAL+3BDb zV?7KX3M#`%Ad8Vv6>;lk$xmrC&g(J%<6>$607YA)fG(&@s+NEdH|Cl)Lu zGa9FC^=@X9S3#RU|0iiO>Dl35BWtHi!GtE-zX7syo~BZSii>)3MoM7J47=JvpEv8r z#|cr3rm%x-F{cf|psn73b=(P8#EL|BIR)@GpBMF`g;5VG5*-nlL-$(Z1PlK627xK6+R>~+6L9d?%v&H-Wf<(a2OaAzvKb> zD#+Y52nq%5S_efmwxP_x0$4)0b$YS31_0nVt>5VYyFe7%`7w@Jt@_8D8XbI;< z%K=y3#l^Qj^}UO6ViW0r`0?u}w~B30ZeUF3{oTarW;D0k8hS7QM{EVe5Pd4+0oW-h zV4q5Gd#9IDzk4;u^MEQveFi*ybJ52^(2ubuE7RkeCv1|O(Z_db>4ed->DPNzw7i#r zK@t{R+7Md`@6atPLO3wc3uf%`NerLto4+DHr(Gpn#U z7}~U!d~U9{Uf%-IJ1@Ffd=ag|bYS?#?_NS)Gg+fK>{}8=)`))AEcY>HOeO&rJvm2v z_3o0D*hfTAIyi&Js>=Vas8fKRiP z({Y1xznSa2<@vhFx4Gf(qsTfyKn{y(G0L!&5fCS+=L?4utM7a=ic|M`*8z^I48T{g z4UAZM509|uDIFZzpVeoI4S0AbJJEfUMv=1k)edqcX)69mR?0x^p^O19>F^VCJpKK= z_t17#@vE`ixBe-B&%6U@Eqk1M!*c)Pe*gZe^DNf6EhPC3tu?St8^DMxK$-)nXcwV` zSHR=kQZKJz7o84C9Snot&;SntVXuRhB&3&4jsmeSJ8xM!WQmffxruQbt$MRbsY%>eoAyF~qbF%$df%VK1M-+OyPwJPbBD%j zD!;afF_z>FlYLhjf zkDGpq9#wq8n==rBsTuTU>TeHL)W#&0p&SFZxq{9gP=mmtT11T%Ji*x+F4HuAlcg}_ zBXM4ScHN6{oeMq(iF{8lXkZ4Jmp5!5qS-&v294o#yk!;g6x*u73__(!^p(&_OfX8^ zIZt`TLAt72`_w~z@nfi4FZ~XI(hQJ)^>PyY79B>BT7A9{3Rnd*JWM2fBk-{l#+Z){qTR`Bs1@NW8$BEp> zYxfWZA>Y$iKoDz4W0b5BLge3W1hn!AfL5Lwf1O$$`Pz@a&cri?gFQ`vhN|SKSgZj8 z%klYIb$h$EIT&;>h@1=h>zF0{lyO}e!~T#2Mh)OVfXv~8*1d4QNDFlyyOKde^1>q^ z%*FGB=$ut=@`=$6_1MktNZq`1DI%T#cR4z(=)&Vh&AeFm>Pdvb4vS(@Q061#LCgRGwHM|!Ze&{ix1#4xaSngEvZ?a4QQDV+1f zJEbbHnuzAY*CrTj0B-ZV7??9_}myKs1?>7snm)JBwaw(R0k>3gnp8}?3Kx_cS z>kEeyed8EaSM-f-Q;uB!6@@Q;BbQ%VMk=jQqxm&Eo6{@Q`|c>XC1iq zJmG9@D|^TOZ~FRTndMX(--?^l+-`;yTI8x_H_#}uUQ&h;Wo#_c92i6=e#=%+<*7+o zyQ_0P$yW=E?Yv37=e=K@$bLoUVg~GL{ zJZmpSv=66|TJr1f+81b!?a4*Zptu69{1k?OP%tqbCdGB@3!oF`AcepGi$ZhZNSYgy zJ4mZ9067VJ-Y*H&r>Is;=|(g4K2;#K$Jem~Su{Co8Rq`G_~8Qr*ZAik+Tno#`&#_LJ5@I??xy3#h9rCI!%bbbvK{KZS$I?wG)O)O z`lFk`bnX9$=$desvMJ4AdwD75w0I10-%fM89!>5qAVk+t=Xp-gq)m^r-Rd~xcK>bo zHXT4<ocO3e$68BN-@ns?kt%BbZS5@dU+s}%k>Th8Fy+h8pT;XwI7}x2& z@1O!IY(lJm4M`<2YA}K9kA4rx+DPnZo+!^^#JFvHJ`KT_M>03%3)N(8c=B5Kgk8Ob z5UqdBY{zwG%Ra3XWoz2+GkC_kgYp|#U1j<`AV6$)x)Gulw8PMO8i#Q4sPBek1}B#w zE+_lbMif8m@Tv6LeDF)n<07ai$W%K}BC?kK2L0C`Ac{)v)K$$eaXws|b#{Mwzvbw5 zqmV2hU{!wM*B(C}zQLVuUcrBncxJ9f@I0%@(AxCnw^61)A5Ja|f`#%(Iz+*tbx)qd3 zEZU4yV6TK-Y|gH$MIXXJk|?sT;IH$}&^qC0vU4m)_OaF>s0;O8&iDDGADFWApD75+*=X zuX2c`#kdcEvb|-16(dgGytX!Pe1q&U*ES`+Yfk7K+qw=s(U3-BN-}h?-__%nUh_$PVwN3c_>9x;QxKjD|=jL7d zRY@iWT7lq?*xe2SGT2gjDT4kNCTG9~h0X;=7-EM4eR*sXG;3>WLU}NY)@A5!aXQaL zI{^jE+rGQI4(EYn%el_S{}$JSgM2G!sV+++Hr;XI+EZct+6^{s^LM%#|GuqlJGa5u z-D&>OIt5RErE?wlBq`t^{Vd?_{+jFV%H)3kW<2=f3Bml5-~p}h=L&Ly$b<%L$HdA) z5N8i+-3YT2k!CAs#?RN-m{rJu`2j?}3zQNW%zcccKhGS&@3#P9)6EtlF!3H0n7bM4 zd}n{q;z=&a-laSGb0Y29z*i45PsQ~ zNn?+dFW%n4~!a!R4pBNco*%KpnsCq6?Czq2TSaSmo$D~biPEH%-AtETw`{s_!7dajr zu5?I*DWeQJ`&P6-ugdDCACX>+-vR$jLHeSj(YH9z*MZI`(&E0w1Lr|s0gO%Jzp*jL zQ<-`B`6ZA+ncN=q)^2_d3KeqS#e)aJ{ZVwmC>mw<`Bg)6k?hrj+2C=;q92Y1S?<)L zV2G#$(sK2p()(mmh7b_t{L#*Vwa*0san{gw$ED2ntN$IC4lK=<1A)OWmP%be&5n#L zxRSnkpM)#@yz?Bbd{r?bwQ;rsVUQ^ntFm`npI)Q{a#M_!$B|R5$Vu~H$jAF5EEHkT zodU9kP8{N7=>p-|BN#rTp1pbu)d0)QcpRj5y#HX^_Ts+<)T7WRKnJro=943PYIL9h zS4Za~wLJXXstb%xIu)e2h(yxM`ZW_wg&Dr`?^M(@{CHS^lFf%+B1%&|^?2!i)8sU> z6TwQ03hk8U6tHoS$$7e1EWL!u@p?o3ak+*CLvM@a$DC&WvD1?`!Q!jMS_=P4s9;92 zD_|QZAS49pDgcz4#cXgo`{Dw6-kSmE8%($#oD8Tk!jtVYG463EKFZqsKvN>=^{g|g zmWK8m(bdiuP2YSW1%;|Jd;sNZ!}nis@W8GWWMe~P&kM(wfbRPI?4dvU2GCjy;GZ*! zrC2@d1OZn*V4tqLdmC7R;(km3@@kw6sGg>MjoEZN8SecB2$dSBmBy%6#WYZo^ zxi!o^P8E5fFmdx&MBP&A?HTCl*7&2yy0~tgfhmjl0P9S`;9c9h)v9}~qt5$h87Dkk zG_?PDM17-x_zA}txJL3YK-rcl!!rN9e4evzs^cgx#yhcnVG$3&mOM5FANRW@0b9V zjBC$*KRft&DAVq-9Garw3t6%*-$K>~6YLS?P8Lm6A(Q&~-g+%4t?~rBEu%q?Z?~jr z%Ifire`&F%%}5>~dn+7TpWi4mbUuMQpXs3xrLYR{T~v{a?%LtlUl0z^3){1y)>xG? z+oQ}?sfH|{ko!iZ3&ib{ZK^9j4vs%zKyK1*e4%H8du{?}d@J@}b@Yu(*cjOv7S)~< zH0r7}4&n|nK5OJ3R;N6JZn43a!I>^`sEMSpA{LC6#_|ABC31^iS0H zTv7!Eo~NtI_V6xZJHwohDSsHy=wxJ~h8=lYnejhue%Hu;BtepioqE20WDa!C4uf*0 z%=ka*3rc89N{j#}wHo?^mWsJDH{Aj9Xuj^_C&=-c;NzpOD9HO`JH55upcbKIm)n#MPy6 z$s1pJCYUR_nu3<=w=1%lzq_GXI_3?rRP;7sQSqejW1L}-qT5~V8Xw|=XRAtj4$$&> z@(u@E{mRCMBHpvTq#`UUTBuKzw)EL?>l_U3Y?;{Qx7)~hOAa@%e*qV#DZ;IjJIdBl zAa3xOmF5ZgFUN5FwY34_95BS5Z^A_sYpQvS!LjJ$)SQ#+ks6bDWPuxal8tESO|(Z3;p$Ik9#ddLMN0($ z)HOide0+!3BL9^_=tHU>9F$WK;l+Zgvlo;&MWnv>f2RG(m0nwC6xrY}pAk65_WPE` z=QhhX)&CLxrWE>zkY@0JXMn{?G;?o0rBNn*h$DjKvl%t4F8Fcv+4EVY69|6H(iPV5QpUIS*1LIcJ7*|8_?c)FnbVTscNxtLOylI=LpZdxit{BNo zRieUwykEtF<$5dY{`}rRAn4+%p6dQ@S|f9Kqa@AfAcNsOW;{0mYz&&6#f2VbJ+eI= zvP4j;j=heHY|sP#+YFFg2BymRPg8dtvs{^64qDKRQ2-ZZHuLe5 zjAO50=$!9un$9xs_U~#2z-<7SbS|r`%#H8H2TY>bBY~G7J>9_BsWq)7lQ<+W{mvX` zvq7OyS>8HhJ>&QZN&jvtsp+`mK3Tr7F+J*eN(%_SmvI#jp=n{R9E&s5bc$+z3|)y_ ztVD0A!`~2RB(FOMPGvx`u|n62M&>Iid+vP#RyI+fSH8EUURET3BH47Pk4@}mm2x#F z3@A_wQr?#d#dFsJ^RC+5!OTBeQ5LArgyVL?&TV?KW1Ggdyl&F=Jm#o6#XTm_9ZXPl zGf4^ki&}xbRvBVE$Yc+&JTyI71#w>>=zn1tplf}`VRP)^3w!(EccH0Q$=}wNm$$cv z;vV*(w`;qE3LS&9iw{7SewJLIz>(IXW_Rt&0q8ye<8ky8z_pRi<41aSUIE&2{W>jG zNt)`}tNRcCp8M!u5GkV@YKs$j0Q<-^y?c>$Zq@ zz!7G#xw2frscsm*MSI$~&)Q8{K>Xkzn_Ke<4W0W>rl|-zHP1Ka_ryu2i;>?q6z&Bd zvcS;wUF5*$unN#WOn;BU2iMQAS>Dk+*F~pMx*}->hUVtM05x4!&-ZZB^DtcbfJ6el zNy2;ya7y>G^=@gC?aE_gqS9+L96ZYiq+Xnw>va0J1SAjZ@XhDryfI2wKG#}cy{-S= z@zsXsi32)IhjvF~c66LTQy914Tm89CriL6mQ7V-0)FAyc98nWuR-JB_({?F)MefGW`M-}v5Ul%gc|%7DYAr@ z{jEfbzihU@LaX*I&A=mGR#v5uPA9wB-vA)ov;)qLn3FT~_M6})Lc@F_cP3LGCrdxd z5<$3YwkFl9*F18*lyBShXihnu=XZ(W1Vq#ii9sB%T2{dCZ~)s*!u3`}B<#<+wcm@{XC|Eca(4O#Apw7_Gt-5Fpzi^I!H zm2$b1i@OS2xvKG3d>Oiw#6`|Pd{bJk*}S>B%*7!#6gmeRo^sXaE1~=F+=0-$Y8I6J8)mF!pYe=&lm zn2z!0BHTiY$QR;PjE+?_H)Z1q=NW~z3P6bKLTsu@7O`V2a3TE(Q+=tt!`R!dsHH zTPfE8^i#VI57Y~MMdBCCM6LkSl1K9vMH*m|ud#)#D4iHrYD&Caa2P9MzeTUe*nkv; zoe&;?)xO48BY>I{A){Q;jW~9H7U$5??~1WeRYRV@^I!L@-KqZOtlnGK+on<%NV$M#%KhvNzzMm#oNEP zE?U3zE!Bu|K0^Fbu4#x8$b!$&Q}kBVte91X9FE=SQ!&z?+%UdUnzJBs^JFP5e1XCJ zr>xDS)zg88Njx+5PvjER>T#jCeeY8Ee#F7$(u>pZ&|p&M{X&V%wP?xTBKnC4#WRl& zqt8Wd@c=OhThhPO-35HKMo_P`ZZgmxX%&cTSeT>2i74b0<;kh z0N!_3tV)JCzYrvx6f1atE6n`z*R-dnN93yj_;1r$6xbwbs!7t?59*AsaVu@r)VZdb zV2e=iAqx=MfCe~m8Qb?8Ek+3kL5gj{_j#UoZjw37SG3wzm&DJWRXEU%T^uw-#)DM30x2USNZ%uvG4+YwKAFxAs-Uku98N--`cR-pG;Z#XT?3 zjZrd+089W2rVr$_E7ke!)rD{9J#WCT@TOTa{d9jf)hJcLhb z#OB+P8jro8ba^YD;x5y5*7$^{XacdwH&fjaA+R_Zg@mmh1*+~NUa|M{~SbTqV=^w}1OV_h$|1!WC zfjh|-MB^QQz$2?ZJ^n#O0{-{3cgx*=LHTj%yIaOTOSxv80=wzCHrjyb4#4q%B}iv& zoj6Sbdq=1`aXyY_;$#DZ+o}iE8qfx~_3XU6-zI>2m8GlyyOH6{krl!MvWp-cVf}#Z zD{F`Hn&fsc3s`0g4C@2nf2jdrm9WD!BU$Ej{)>O={RtIYER$vN-P{s?JrSQLKTTK< z6395i)%i``G-t}Ivd8i|D+97YR*TXGe~5Sq?mlpJ!$XvII9=c=^_HBwN2KCUBjZ%| z)5FqX40;h>fH)t|yOOk+69;$Oa2yPJs2P}Uu+sSH}I#^;@Qypt<=OGrr0sCp6;?dx|oI#EMM(NiXx;AiXl zQ!7Q8_$bbNVcG2Cl^6ngZ&Z&T#LO4=Z|-ih#Tefx%P%$uhFa%T^gbH%*rPGLR$6W& zs3pvC2yX7+7r=!^u(bOWfqAa3uI5)(@+&}f@=9NOOT(2)CW0o+*lOsvp6-wLh>zXj z0dIo|MH~V0<UgUI?+KvD<89BxXvGg6|z0F#Z*%=op0f;>Fh&QldgCd)(vP1=E)L z<*V#tbWd&nSO)+cZIH$d1(cL9PPeR$f@>=dlhv%>TYR2+FS@}N;W!4G%AX+JomD`c zpO2~0w}g6iBHDV;|KgO7%$(j3-}X!vn zS_x?>m1&JVfAZgF>+gB42EV67yp?%t_A;W$5$1=+LR52ykLkT=?D?{6K#}@8#IP?)ZHS4D?5>NE8-Zrf(>pE*A>@=AxWnz?-<+p?o_!t#3jrK`j!CFz+ja%)96WV%)iVjcNW213(-=-TL?S`o>z*(RIe{ z;;O1lBbSsN@BFCfPXd{|63nx_6YJ~i)7lq8wbPS4vqNeHPSc%Q^x%wcvxB zA)NG`HXiE>R>_Hbm;wUBKvSfL@M!O-6uN93|1|Bb*rqgmA`#PH`&1BZ_}$D zv)*)oi}z-R*qQYB(w&gsKKwX}A;8c8*%$Q8NA=Gd5a=Y5hEKtZP5H9Oziw|s#tPKy zfk@Ctm0ASp?{ZjYdibikN^HVy1$1+L>vp4Zc`-iOgaTsN)7%aq?TFrTeYd{m zwe%65ZC-F*0vs{*g=sG3f&W zUY8Rk#IX1_;9(j+ve>qsZJiT{w4PA6lj|b7s2Je~AU6&y5w~5rnPWIuj|+SO5M=;#>B~+v_wBKYb!p-GfSS%Lwa%?i?@{ z3CwhC@9!76K|%oR?X7@U(Oa)^^qVj`x5zR&_4-*U2nJZoL%B~NpdZ9EV$MIpKC2b) z=TGzZ+dRv>_xA^vGCyF=b5P#2sA>VA@%{nod-cStSCcDnKCq_h zq7}U7rTdB@h!D_{IGD6F-=qmwMLz znD0fggs9)gzhax(PVux0jw|_dEunhZzQU&NmPco4mUn)F#ZPRT^=ri?^X~V#N2ZT& zFEOx9&he=!9XY)yq%N!|KL?jZOOhT@oNEq+yjPMA=g+J}i)LB5371u})`kZS%1i%~ z$~S6&_u2~JLo7w) zzRb-YlfJ}+GgrPRlBqtasULGBx~D%p-iWDwwxZy=XySTEz%{!x*D}a-b&Q+ zy1b}p0lP|17)6vOK3eD&nqpqE{^7J$y|}2R=TbU_nh#A^`!~I<8xqo(O4tTQ4X&nWKB>XQX%o$$E4H^=NA{v8zH?kkA1*P^h%{P$5jWcncvnoX z3-u1d&-yClA#6(+G5pREi>27E|Dg|R$bdROK}b4>57OpN>qr*m1&#@G^W*yFOI+2I zRkP#^dp7uTX5?;nBZF3g*$?i}B&9R~6C-?CW4dXBBMkxhz?=c;36bgKMc_fP-}*e% zd`r4r&WMQ+^MDoKQNuf}!EalhX_-UC-SZY}f4!AJh)_1E@reTe-wDcuD5e(>W?xdV1YF@=%4JCox`B7-E2M1oK`2hdnQIIxTd zSUAbTtyN|f!~`X(-gOe%+!009nZanM=Ii^jVSX-&)FI7T$L`gepPVnm(bz~=++1A~ zqkS%NQKZE)tE8~1tEwc4crDdpDP-F5UOu~suyAk$Dp_q)X(#TS3e>@&60lqRS`QE% zly*QZ__95Ydq*6N%WNKzy>{%h{u8F8gy2#tXfN7Lf6o!<0oilqQ6m9bFKMaFy%*#i zm^YxC>jJs7&wG5Qv2LrbJ#O^*wXvWR3bE-}V`2w>{8Yy!Stz`e@h z>aS2dA}>2#jUV^*?rU^XrtCH0t*nyVpgnsDUY#KL#Zf@}OBJ@@Lu{Dj>j~Re{RS?9 zN-qt|*D9RmF?}SWo;IZY(h9O#iH|2bx(L?4kiMR3{V92DZ6dZkt0wxo|9#-6K?KUK zUK_|lZI*~>QaICMzu$OBz)!501wT?0x5jR)d?;&d#tpUWqpo2IVg-SFS5l zh&}?>P{=GLF+N1*yOA@f|VE45t-(0F$XZI2vgNnG%2L#G^I6QFKpEKU#o(-4397JGQ zR=^eVxmENT`esIaAYUwZT>VXFxS#Z$av}L+3T0V?)J|L_6p2L~( z#Og6ojr_LYppqP|L8xfnB?!xTFNIa7e@B2899b&s|M%Nhz4YTXSU1at((CBI(nsZE z+I|QCvlD5WW?eW6W`35Q1Yhnu^W=I*Y$ZS5U&m1(Y9_+`vZ|l22jK}L=sle!k>AZO z8rnAfNj*M?xOJu-uU1C`<2cD;OTr+zsT4rj@mT|~xw~+Z&|92#iuzqyy;){0Y370u zsv^FvORSwH0zxXOoI^%bj7BHw~8O$yhirq-BXf*ItfHqYU)8Wn6{Acjd zN=HcEETFe${=QHe9NGwdH%kWKzbSU7-uBUyloZ2xUQqxjg0*i})^63yj+=*0KeUF_ zC-Q}US8`+?yYYAP4oE{Aiz%Qw2`{%2d4Ng=FP)Lk*KRbdJf|tD| zX@w=feI!s;M{yC;q{iaiLcKGt^hH-Lu`s%iv!Kn7ejQ+!@zy(Q*+v6V>4OAy`)|A$ zR}CUGOS!D!4!!7RwyeQ{4tLa~bRQ(aivXL!WtWB|HN(8k)FpI>A7K_^8I$iRau8%X z%)E8}`{a^hs?D2Lc@#=W%&8^xL-71_y_&7kE`KPe`D(2$XnRaHk38@^EK$7U2r8qm98zZyfoS)A(#8s@Q{ulm+!2xKaajXE)_NS^E% zMW6TGx%uI5uwbYJUVbC4tRm!B3sjE@ub2b2rJnn6`p{5TE@O>4!e^YcO{))uKECaI zGeETbd%ZV6n*(XBv`Q2Y0y=)-Z=Z0r*aDMX#vv8^OU~);QNXkEo`C6L!2-Yk=`1HQe4=cSz6`U z+RJ_=lt!K=8Kos9m^#x~kBceoCZt#^y*`C`=p5O{$*@A}W1{1Gkin_v&l2SOh%DH{ z3q-mGTb(^w%?L^v?7E5&l>p}c&>o4`zX_^bRld=i_6`W%MnCLGKx1@UU8^4*CIFlJ zT{?4k&0a9fppki395pzfoxh;4kf!9j0RipiYWpkmK=shsd3eerci7bkR_*rPAy7j6 z9NC;>8>>L*&IrZGrEKo53c2_QGcY1r-Snr0r@Vgl8w zPoMZv0>Kon21rU(D09!G7znL~IvY#_upzdro|wY+6Xl$M5ZR{Ell$34V_`M&mxdDC zh0kS^W`yLjhi+uk#2jY%>#JAL>p1;g-;QhJ7wHaNeSm<-?|>&7q&Q_&&z!*9<#71X zfS*NhGQ_iqNtG3XnQ8(QTheTMcm(;tPu^)&Gd+Bj&eZ~z6-u3e-+G=|f_5Wq&MOV-d<$b{W>&=G1pMA!T@6t2nD`u~!q(1nkqCz>FHk1FEEI+5 zLUXt;@M0L-t1=#ePen>%8@|1#qOfdGH!DRY7lo86R5MM@v%I%`hweHdWZ7i}+bvKV zlX=GwI06R@@5rKzO%`3poiu|1kJ0vPo~y%!9=1$(fzJEZ&Y>WD^Q0JF&VdTYhtCm- zANU+9`D#&Plh$Lg5>c#-hLw~*Ae9^1p+DV3L*wZ>?&P$}akVFW$dsh75-JQ0@ZH*l ze54g|>K@@S3EkFtnp_4g4qpeNTU)-w)X^d96x2&)T~uIe$f7fBw%*-mLco6A8L&A9 z$!!wD5u+$?$Xd8%3O_wA_T!(d_7PJf+eCE`Od+iU3D02JNtN;9{$MVraUtpFKS6Oz8BoYu3N_44_5{Y-i((9hd?gTh*s*%62w)aMHYpUEh`LKd*B4vAd|qK0Ew^nE{wBeDn`igqg=SVrX-o)lZ81wEPH83~BXk*Jn}B z90=?#e={!7UITfw-l07q#OB=CKWY#6>73x!rmXZB1G%3%F&41?x`N4O3%$gC!vxzn zuD|*PukD^u{gsDaj44Z?OTyj4TlYOXC|{D-j+(&JY4mwHxWd@XEXc(?Jz6O&+kxbB z=bD?q%-s!k+`aS=5^)==qf+wXeZcG@NBwTXdD(=P4d--^d|v%K==e6=0G_F4Y#$9^ z1jwVVcdOW7w>EyempT5tJ=x4G^FT@Eu|yuL)z-E22yuga>F@C&;8VdcQek?hOw;s` z@yoL*{(I^kci*q(C$TAACi3Gs+xpYv4PC=1r*Msvl!0K+n$e*TI9~!WoEL2dsPL{F z0C8QF2koZ0@0Gd7?fHZet;1NYhix)QW{Mg{nTx@b`Yp`CBZ84$Pf^F5Y0fB2`ftxP$8YhIM2AkY{+dljrqc^R)t=$Y_6dkRc7n?JV z%kAW&_S=|mOs;wO&)m>cJ>dHm6Q#vB zQly66lVf6zcT4rL09rGT7K6D8U5&I_hb{5p8x?h-qLpL1NZs_)pDm$AZD#5P{}t~W z1DIj(yyMzs#RFb5)n8Ot(3K|F;eejz?GJ#7m)z(M&ATK`S-d3e@AzruWvW#+8N+u| zl@{8T`BR2m`Cg(2ynI!k)T^R5Oy>XFT*cwK{d+yYsej)+KU{53bAPgBY`;+Qxg28> zk{*mFWpX+*%xX^IE-{iM8c-2C5LVcsICkj>F2%ZTqYueJFot!&QP#ra*S-_si=Zok z&aC-nbUrS1?tD+*Dytp$vnCEkBQ_c?6v-^=_1>N)c9m_RO#U%6my0fZ`+5P_G8L;2 z80kUc*W|DXxz9x`a9%?OQ+*}&cmZNSM!uh~v&4oExBST=M3)~j^R=X8P)s`8e2?qqyzO?!OD8M{=*^5WnL%MDzA^sNaz zU-{yS)p40o z6$Q(iPZ!8t^zs-KBf41fLOy{*Y2t`DilefsUW_&2N|h^a1sq%9b`zs3MOZFGI;h3C zUYI)Qc9qMgsg;Ux6n{*;*(6|j3gp6ijwspIei(i}x-Fk6j}DarU9&)%C>b*r8b6g{ zz>GR3sLe0*AhEmV`rvvIL3NmY&Dt+zK&La28%Cs{(g*XWWp`ap zf1_?%ev8xRZia6wHe5e$@u^w(6B?Lo(fmrm_POmXs@XN78^F|OM7m)tpGSfht z)*#fObdu&edERceTQ`Isdmj~HEsgdh<0)~(V6Y_CgZ&lp+Le%Ksmhgn31bl}YkxkL5irzas>{*FD>0N;NlXq73*1N{~R>qRSHHrY932^2#@^oXV&S?-9Z zq#Y^(BNd6UazJKHDY!c8p%IIjaWXzB-mcA^C=L5IhVsJ0& zbruKhZDoYQ1M_ssh5VTS_;Z{gop6e%1DjAL;`pR0kVoN^!Z4PbbN%Wo) z$#-*`AW6D6pfvc61l4GN7u5&aX7yRD7b-r{{BmnfTiZ z>VUJVCVjJ}EOQML@-U!+Ohrt%!x+j@f&a`r0a+QHOwDEM{8tCOeZ0o8da7}y;+)G) zW@8jyLSQX&C9Q-3Ifu_9HeFL0BCqBPR4 zLEBC)H5turXbysPBumi42|w`WGOv=y9`1dibk?BeYq`rD5Hs-@3RZe5r7VIU4qp>d z&^=mq8$-8`0LCW7b_GjJaiG^B;HT;?0}y*%;-?6;?n2iA4F-$q%pi!!mF=6n?hUPY(0P+dHY-ZY9f@T*iE^dpZ;XX2YcUNRWr^q+B3j_jT1urZ}?H`s{~zV)DZ}aN@%JbJOC89DG%Z_2?YX zVI;P&NVYu8;_D7BzvRWp2t+!RU})})j*YSCw55S7J2R;=>O)5uTO(wcJoqg0449)a z{3wPV5jW3Ew_BNUnq5&b(DlKc6Ao2zk=bfSHy z^Y4w3U`zC4CpK(U4V_K(vFlp+sCDGeJyT?186h+@)D7;DSw@{H^7#0gPZPu1zFn9?tfBKb9VZ7-AxdQ@5lFt7PPLVWW_b|H}6YpS(5x2bZ6s1mmr6*(i?^3 zQ=)?y7F(9oT4fSVDKrO$zSe;w)TA*7SUlQeRdPrnRIjX#w-y;!B3dr4Sn4~+Xgh_s z1uKSqb$J5spAr?x6D5k!#D{U`De0=~IZOJ1??mfnSR_9cS8~ zg#0wkl;NctNo!TohuE&n?7V3|F@w)NBoC9pHy4G1a@W6W7pjfngXO}h!}d{ijfxp` z4aP!cmsjAA(%8xDMk{r@OTw_O`{V&1C-HQ%+!rv$C|~;4L`9Yr;MjZHpOFj!A6B(i zoE1IMB*)?c@1Jf=SLLK}4u-Hc)~?p;+aEGN;hD?T9MIh@LRyJ09iwE-#OXDpbEwH` zxx>T54?DM7pO59kumY4qq0OF-=JQJi@WcGlwn1H7l_cUS=Qu_*wj20k4i%dD?^bC^ z{h3@RLGk6Jm&wb%V-n_$nnRfDY+{MT$P9v7DTU%b;-8|u3C^?N|M_zF3Z4{POmF)n)fD0l$+kQ&S{)W6K@ehD;h_E%vvsVXEnO z#UI*zPIiQ(+%=4;Gof!!q7xZHvH;VRzF5&dz=HENfm0jtH4NlKC2h=(7!jjMN!|Lofq+IsaM ztJxSmHA{{N1iwd52q3v<^gM8KpC-)g!8ITaW=I*~m4-imPni%IQX3&GlY_ui|IPik zmv(D+1w!x2X>X$LP`$(UypQvyZIUl5`l}C|RA=pwp9$weg7jEV4=W_Q{#os*6jB<# zcU#=2dSDa>Gvra7d}Zs566i0&b>o7+WFe0#~0q4 z9ceU)Zc6vW_+tVIN}`0bw^Uv`D_WWd$-R~9jyO- zc=?aA?z;5IC_D||78JRZj+2mTV-p__HcR(Wd_W7h?Sa;3cr9SG%;@PT{9er<x0K9J=4K(YsVhggS?g$`;!a5yX zh2tnNU^7sd)tS-Q`FNDxXoF-dw4ZryQ+R17Q;^n3t*DVXXBUjw{pDmBfaf~+_BA1?8@90V#eDGeml+_tz84} z;=fBE|FJBgiB2Drv!CXJ(VIy6clEB8Yh9?~pd%9&u?_lnrD3vMVgc(NJ*iQ64ih82 zuwJte_g$lBzQ;^5wcyaU5zvgbx`zOrxL->iynl-eekZm{?<3IdMq&Dx3Smj#w>X}G zY^t#pttAg*noyLB_^(bF!Bt9q8K|fS)4j`^`~gk%RFlNeN+=U-ewH z3{!ez*oHQ|$>UPGm_z=p;be$uW&F8xf@B8QP6!ZA>M7{Xp`^G4-F$G>FOnwBr#Owp z=4Kt^7U<=-XcZq(G?UshE${1)D#J0SsbTI@}^wa|)9@?+5a00mF}F@nm!|)twE{mYr&R>*VCrd)|2FPxA1Be}2L=Nw;62?cu;WGY|zo@fRky0}(c% ze{5LG*#HwokD=Hs0Vke^DE9Tv{wohuVol!ea!>s7nCh3tRjgtNLv3<2NH^ipzA@LG z(8v8*@dn$K;T$Xqsh1_-kXFmvT?D|ohho*%j)I#-o*>s-uu`?XKI5lxQB!oMo*bW2 z6G>D;<_}~bT^)@An~2EHo^JXruOcH>PH#U^8A5n}7Ls24h1@^7auKm%d*A4pssc_J z8p^y&J%gAE8N4|aBLb?b-x_!1^D65IsVXO>20AAv=_X3CuYYE##ofqvKW0?NTdC+-IWjB3bm#q?8LCh?WEHTGG&`F za(R>TG^DD?#`H>XL+9SS$9yVWkX~t0=CyUlOYO>{v1F70~hkr|ET zU+prMff-eWT&Yq-wnpBB6zN4B%KH`NDpG>f|;t*H2|eLH-^9Eh$W)VT{2l1`22Kqb8sNJd7>f_RhJm-DKoc)v0MdD}5_( zJI;S$jIS1?HfvNws)U)ZA5X&punjX0*PS=d7KBS+jYeDIncrq%IR+iBD^sklBnBqS zqcm45lhtULm)F>0P`*&bj!2p9nB8!QNpxUl%d2RN$7tU$)K6%f$>sb3!`o(D(^Vb!}mq zvCvtjWcfN5Pa`@z$eNB-bGMbROMb6K11G<^u7DcpYR&5naPlAK&)*FwJpLw3#(ra} zi&Yv@LqCKih>6G;x9a&0Q7kjgEYx>VNd@+($+NdwfC%{9?H^&KX(JpeXsV4w7grEv z@OMQvtqJ@MHDsm`{CLgKZ+;DQ^sV{)seQg(i(k-IY?HF*_!1V!egYvj_%t7fCZ~EJ zzr5dj{c%}?T3vC1&TUP4t}V5`Kq~e%ozWgEIfU1v_CH|wql+99w8ca_rJ^dvO#~QW zwJ^5#ue=dR*fX6{q0aw2r7426)~iK}_nlixGa6t+vdJK7CJ=|LYbX0XIh0@#y@&1T z+Z}x$^1}KbHNPr6^BlrvIby;-X-mw4^!af89JweC8oIPlAYR23;_pANM%^n)EVFob zQbAth`<^WNzQ+Y)OP52x@+p2~jIq+70uW8^H z#(!Ad+{ZX_P3wDVcjh6Mogr53r6QE-fp^TJI`Oeujz%Ct_?RG|86IN@ox+N(#|6bJ zq>o8X$8#NF46p<`Vx{e{ba#Pf@Y&7`DV?K(S2SGP{#|z=|2SmfBE%%_iC2eBEaG2L z5wkO?RKh(00;$G1Kv%l|@I4hcHSYB?Lg!iMqR*=SCd5ODc|9clJ1UE;6@oE*C8&hZTl07l zsLa$?{p6eNOmE}4dF~!>v3yE!f$_=Y5ic7p;3I}BA(=%IrrXa!T;ZRF>EZ`qw{0Dt z+a0fsB|!r~SCKc(n+`3iXeY5;vopt}p>)|eB7em5;0_I*5ex~AYkDOKFa@^p+-ox_ zDU$+lHE1{Ec2c@?#>d!EGy$KuL52U=)*oF%unOrSUt{-Brx+JL&()WvN+^oPHl-&6 zM7ja<`+EPF=vGe>-hTh>*IPbKp}btJCz6QAl=|8A?_f1%d8kHMtri@yF}4sM6N_;H z<2~Z&)2k>u_sO@CpKv)e2}p|uN7CtId`gA759I`3GM&Suj)b%j}z^C{sAYg2Z~tom-=%Y`O?K;0?liHm>Hdi zwQb(PHIs|}+jKkPnCQc|cw6WdgOU**<(%M^ThM4c zdw)uMUoCC=4s8={q~q5HGK7j1xhY^C@Xe{$$_sUxDXy#Si7;joB70~WP=AxBW9%gJ zFYNtVZ!*lIyq12=@?}~5S0u35HmF^|RFkKtgPN=aPn_=LMg6JH{%cZ*swS4$q~uGA zHaosm*g`uBfFIMm1`zn(NygmiR8mL0zQ;7(0z0w|_%|c@CInmUG~p>MH0<`ZgZ>wt zFHr>1N5`jCe$IOvfb-woQq|{b(RnJA8woZcx0gM&eN{O#VZ~z@Acj!d;`V$+I?Ksv z8^E@_6?!Jn0q9jf%VqTdnjGc~WgY8E==-D*2?HtD8iH!w8aAY+PNfvYkfE)2P@|C0 zpG8_N`Apv^qKsolIjV=L9bR`_bs=#bL?p=5RhE0|RNTdZ{?+jW=@uG{F_^*_uwOQI zm|}ja&IgCbnx2r*}D+4F=NYBucA=T`RK{%*@z?MqZOyJEE;kk27Pbfp^)-Z zsg8Sbd!+T2{qpICApbvEjQtcTzG489b6Fd2MiPel?XNe~GIKKco{c=Ey62WeLouT6 zvX=IK7;d@s(^Yuf9+}uw!#j&NZ~T`!p~S#h6NI*q?DjGFur9@K1u-~I9OxM2$6)q< zqJLRP_cQrkVcENKL(;K~ixEg;#Mp@xe)b=j!#CUJ0u%b)>&BxK6Vp6<`Nm(4cOdlHt#=(ib{0cg$w=;b z*?5GZJkZFRr!pFoOy%HsLzJ-gqZm!k#s=78uO@{NEhu|G$+y6c^ zUkFBb)SIik3E$%3>{<^ZF6<~SoO^4I-H*AUQMA_>xyvaIKIBx8IgqWqZfH~K zi_6B1EU&49Lkzzs#FUHZjKufCnX&bdwZ=8gq%F&^zJi=-~ilK~}E7=TcQbblD(9Q!M;_%S1uH=qHK!W|Ts#0-3tTO8eeBG-96K+RRH7 zpSwceWV~|!w%?+mp56i3tZx`-sx;z@GniTq%+py0v;Uq$pLMKEa4ju29UQXuj_8YYo&vc@(O@1OweJhTBpTYpDHAcbg>`J7OMGJzl?(EKP|7~V+Op$9kVlN{oYe_{#OII#=6FLyqY0*5q_K)3!qhf{J-%+X?s@GGE zV(r99C8fU8Mc3M|W$Q>{kklelR7e1)y&mll=2M|`W>>Aw&tvY${Y=6FGj zJ>Z%#huup^c)Nx6F5EFEfD_VmGLPxUrjj>Z*NLPD{uzgGXFBNMqvJq4qm zXDN$A2FBF^(F7@i99|qku&$JpV#50syme#f1Lf0&0u;w=+{DT%tj_|wTrK>T)?q}Z z82QtmYcy;zOdH;dMaP}`-B351w{s1W3cvDQ^qqI?Kq*zY0VLa4hWd+S^yH9P^@)7@ zm3hlFfclpLJS6?tho~x}S~x!B3(CNt+w1qX{pBm!-6^&@kkw1OqDG~FzNb{7Dx!t1 zSKnJWMJW+KC>cN4au6N|HDys~$S)`P7Hw3?&^RC~e*PUq>o|S@y`6x5oABCY>rETa zT{_B{b^(0!E_LT!I4GpBw9M>?l%t@ohIX2+A+xP@#bQ(xU5(H#{Ha_+rz z5Px*I@r;gG`}fEe_JY+PH!Ip@bc#f^^$n2c)OS|aFfs?`QvtJL6u5Cy)3=kZAEP&X zzApwOJZ_0BW7_6_x_?CP)g1&{msR~Xoo+=F%gaQn0Ljn)t|+MoI*vLApg!y1S*jrMvT?r0X62_ulslA3@KVGqY#!-&(8f zagw>x?49$&WuyA!!9|jlLS~St>2L3$j4ATK>dx%odWCsDriNYybflE8S^S2*CI}&#_bVh==5aig#Y+{^Oy|5J4Dh(Z(b(zHs7A4~omP^?@BG$us zOyK;fa^G=FN=@C^@mZH}?~me3v}6G2vV2yv-Y;k33vKe)S7MFMOi?0cBvPi{hxNpJ zUEU3kUT3VG+B5kk_+!d*rq$)lgq({AqhMrA46`;+j>yB7TfU^z91=KL+bJB zLtTauXNG0@B5+| zv%&N>)F`TwVSHIYCqj3PFREOEdRqpKh-959ZiA>M@qX&@x_ZS%!UdQLx7hpm$)$cc z-A)wr=W4ywlD#RBeW|7w9iT6?rG^!6-4VYxWf2vr5xRHUP99lLBE#Ns4bNvddmQcj z8RSREh+vE7&^bz(#8dVwJH7-PxWr9+n^&M{&>L3I%MGnIAAVlk*y!4!;iQKWSA%Lw z&q0TSRKW)y%FnjL1@x#0YeBSsl>_nqZX*#>d%6qvYve;|ILg$Ya~v=hSztp3?{ zuTr?tPg{U7YkC$U{du-XPTMgKT5V~?bPSznN*;oqQUc`zZ`sRLiJzVr_8_x|+f!6b ze<#OmH2LdlXmDPfWNyA_t$cBFdbZ$C2@K0133P~H!smc&?|Su7a@7FRPw(?f03iWW zSV;DkRZ|8ZIovOufT`_X<^FH)Q;2#|_u?LI##q@7l34ojz-Tmfb-wnzhI(E$4e zx9xKu)m1T(^MB_m9Ng-F5hGWMD1gz`|B=U_`*otcZ5PRE0(Y^QFsx=?Z833cn5c&J zxf60?l(1|r5N#J|bUOC(4H0*H6^SR3;7zPxzY0^D$V-h;pW@!>BdjOOTBM3;wMfpKwM(K7=XpzsgNJZmm&0#a8a%vY#J*Zk0;3K?s4p z9TVBeBIXaSO#>Q62$4y#V{O>9S_{@z;ZoxpVFYNHPj&lm6GXohBD_yBrbP_iaQ*U0 znn~leBIt3k6FH1K0$9J_#VPNidjXsc=hOm|<)ai^4|>4~>`w$oixi#zeV4CDD~KE# zU1%{b45!kpN^%REb%x51k%FR|e3+z^h*xVh=uY^B)`?3mwocxIZidm(Wk$V>nwrJN zmmRS=x0v;N7RwZ}yDLZF`&v~|bX|~fOY5^PzC(&mvmwj#$u&OvYc>n3!&v?2sb8=9 zB1_<}F@nC=mwj3+NQ)f$^qw+IbjH+(ObiO7PnW_G(K2*|%t>vdr z8(N2DZ%}U7p_=A?BbAIvIIBfVPMsh|NR#ldI5O$^YHh}tDLKXcMv!V8?uZqit#+~2 z7wReW|5qy<;2pJ*$S1U8X*K*l)Lg!eVmeht3{ytRZh5*zlwLH^8auuUS*Vhv#h5RdgekHMvwTd0r4JQouFS8eehYNBeo3)isAaXW1!ESgzYwX< zwU>S{Ozl$Y{M2&&)39i1^&}P8wPZ$Z_6vpawIm!TuK}HFS~8M!C#y+D_;EUbk~^~} zMnhxX4y%3Yf1pNrBK{rIf5m$HjIiac{cP9`sz-E({(ja1IBb$KR4GyOU~y(c$&|9#dbvVNvw zqxZ2u_D~lpuex3ukVS(O5DFSee;fcGHsnlpd9={m+GMv1*st{&-)*(~u?_iL*r^&b zI=bk-XiS0ngNFFWtv{-u=jw(@xc-Q$$^#rx9I$6+a<#(@f> zrPt;Xb!C<6cQos#N2$^LYMVLyKJC#;-;_g(c{eD8l-}$G7b`d(rc_#YS+)i#j<3b9;Nc{%YAXIVHu| za1r;P7$sB~mRW?Ym_)YPrH&0!8!eT>b4P`fVjGw^A8!Bq|1&UOO-P}UUsI!XWP$H# zJpHQKU=BO<%U-NRi|MC>b_IFabpZyX&*tW|xM*2%#!u-pfHrLVmq4;JA;WAWx>;)x z7Nedb^p`x83>!y8()q72LivDufvlepdT>*Dv|xr2d;*5s3)b@=-nGlG9q@u{KLNR6d3U?^q=#JF-4flZ&0c-g+ZP#j1W4zJYM zyuNS>srU5Q-~HA?;AcSk)l%Gt1(NU`9Z|mEO+n;BjG_jFFGN(C1l&4$*6>S61QSKFP^F&W@eNRaRT(?lu90zFg z=WM$mvbv*9OWeXCo|50-W>86j>lI634DO&12b^!*PLIcsm@jvI<$nKn?U8t+P7eK) zDF1fSz!~R~f-ICQe5RbbgVRMiBgj~mfBT@-`9Xj+#FO@o6F>)?pm~=6p-iFFcE4bz zE#-2sA^Z*j&Bcqh^O<-k!P?8Z_( z5$(0c(cC`Z=}y1lwI(jEgq>5!+bSq~i1sI8+^sH1TF4>>AC8JoC<&coYb3g&RYzb1 zY-H0@4CSUPruSm)*E2KP;i$Ud>lwpJsXEk6M^R}A|MQJYz(>}gJOAs=MTMhu^Q9!? zt>nGr*PU1??6aP&K^6-ox1Uga0~*_ZI-1*j?!G0qr6GbRlcR0qAA9Hd?}0gxy-rcz zI2O;Kfonrn=AEwM#MV#_X<8)n*640p*JQ*kQ$L8a!7|tR&*n!#f{yq|I8=xMToJ~V z!(~Ei(x3F62ZviV@dQ(pXl!lrxIu!uJKt*|PemiIa6{ z0{BAS1pZE9souFctuA(@sbH6f-1cUVbq%}`1ewJtKD)I`M8%jW=cVE zT|jT?K$e}1IwY4fVmieLI`n}o9jlksU(_@C=TEA5PPZi&-1#`ZHAIC~|EFy=pX0?# z6YRHPrFzDm#oyGu*H6?-uFD*>3D)0mba|_R3NTSyLPSVpthPbNHvM}End>}f?if#X zd&lw9@fD;SM`Nt+V7A$V-G)1{l3}jqN0raRmoNSvB#Ww~0qLKL#w>62~n%qb+>IrnzQH%(FQ6qy2+{I1E|}DXZt&$o#7V;cm*)qtUnZ2Sk+48 zL-m_npK&=-C-Q1V{u*ON;b<9r=N|@2vv2USi`4m$kUJ4;(jVOGrGA*#kG7s3S1XTL z8u}iT{RL4bfGOUD1ZB|(S%GfWJf;as1$FfRcZsf%6)^%a!#eTnYN168pBJa`DD;bB zok+N=Q)e&bGd*fPMM!?(9*x~A`rk3GHpDmNPC0i8OTWtPzXQ`335`gG>bh z92Tk?eA{DgtSjC64lRPapC6R&gec3pse!MfRTp|KPmV2A*xN?y;YnD!&CDKT=3_2)O~mQyUr3i&73aSB*Q)Ys)*%Qb<^? z?^PcY5vmtt+BkNv6e9A7(Xc;M0#X?xqI{33=s5)4{FdFpr+()dr!mHbn@ z>+isf^0pMbU1AGUr~mHB+zq4}hRmPW9b1ge+~Qw!DkjC?<;2m9!aD2mdiMU|1H+cT zlmOw`(wzy1jM95J)9&Q26P215VP29)qQ9VShI@zfnbhr5IM&sy0^j=k+|%Y<=^0>Q zsQl6F>)1z7u&Xcqo;es_aKTcR_IafCiPLC33z|!6H&mREvQk8%SGEFHWFt`mgG3=* zJ=dY0{y{L$A3vax)d_Qe4T(hr=Loc4`=D_k_LZI*gBW6ukl^IBx+(~`&Eod9caLdek*PDP_U5IwzwcMz!&a0k`xfyiQucO6-_ zaqL`;23I&OqhI|uwrtSY z1>cDVJg;jtJu{kzHa?{*8CAzPqWymh6JKELIV_IceX#w|@X7}mnbnlZ&=2XK-7ytz zc9@qWvBjNh(?-FWa93?_Wl3FnldC>h+d9?!QEHQfXT6o-O9yi=V`8JEfn{A!)A03Y zoRXz3@^r18Y6#?zn&x!&2IVsLv+!5x(bsF>%F>{fxZkP+9u+3vD~?Alo{{`KEq-+f}^(|DE+) z?qCGMaPm?b&f}-b8z*X7#0mVu5bKmX>k`f$?t{-)_t6WyDNCmh-P$3Zhlt-QVeOiZ zK1}z&6ufd0>?O=_dmSH$s;&YWS}1XpU90)KY2$-d2Nz=xz%mmpO2a+**MN$ z(LiD_H(tm5;UBl{$z_CG&rrE*91 zhkeOOhL>1PY#L^8`-N{?m3;bqPW>S#c8oueDSxLQxiy32PZ>%UN4?u){nvz6Nm>cz z7UTwLp)4WQC3b0+c^fpG;7}Bz9i7h1WA?K4)Gy-dC5}k&O94(Kz6jhZ9RccM@?FTcxR^=?sTfexfu3sR#L&=?qAKUJofPCrUms)u zpHFKD#In~>4Z+lu?#(aKzRH;#B0RmqNr=8MZXG%iR6f}-)nsQPWbx!VGCsQzU?nph88?H5I@J@|>-fjg_S|B*pCoQV>X zdL%mp;_JbB0c{Kv??Bx-*SCaYK3NFm4on0PQZ5|iqBChssgP{5`5hOu)+X4$G$gUa z*0&M3`!14Y0GWl#HIDPUn)E2XXyoshHL;hQ=fLy8M%NJ-AzUuH&_{U;nOw)u2!v4! z-t;>wODQENqU}}lqMUzIpYBK^PjyTGSJSGnP8`|R@LG@q6u#OONDzaY%|>&P#4G8p zclatAI8;_j*f?gGu^?5D*A4Z0sqGfw`5-qJ*oFa@wIq@_a7NK>aBh(%bJW*p;-X+A z-0ug~AKyKqyGgW)mVI^0tOx}x`Se~41>&^zN+QRff?s zUCQ$68C2PAf=MdvDUJ23*Qus{YRxzZKG*?pI&WnMUZs8B1bM7rGt!Wgo4OBzE7v4 zCvF+n=Fg3R>GKTP7z(0N-K`dEM(U905GT7oQl>cyu0$nlQOr@Me8}R%T0_WO)pFMhP*ErU?;RHI}M!33BZ@(weM@uOIJnsI2 zIyMxXYoXQb)mBV|=9yhQUY{lHg1x`5n|jH;)~O9X8u{{loJ(@|HF`aglf^F=L-Eh+ z+y;|(aBE1g&3(p&NWd$}z-xoP{;*P`O5l58ZS_9vFHW-w$`GtCU7FS*_jF=JDAeC5 zxUq)rW#qp8)ms2JvkeFw zr#ot#+MsY6E()1!*P!FIGWW@L`HwP{;8rJvcF2fG^yfapY_f@?n2l!x`BIj{Wh4wU zV~q*@l%t51NsH+=sO8ITI6c-MCi`TJRDswvZXWz`#fgir7njS!z)_%nvsvZl!r)1b zX%;2$dn9XD1x4u_Kjk=WB{iHveqTolP>8?9kL8})3kb-z3;D0wvxKlQ>sCi ziES?{P9_%>%7be8KTkk_;dIxa-1N3Qtv;wXeX|=5Rjo#+f|vp77K6T`5(t@jv*$T# zTF-EI7t3U${ryNmf2C{ICqmlQc+pOIHeS6s(FSKpF!G-SuEu?+%ZeexT>YIK=K7GY1d&?2-_L8BW7eu~v7oH_ zRb`()#N^Rh?jIJyG@uEb4$n0Gw;4wa&vN+G%~iCv z9Pz8GE%$O|&PFEw<}UtwPxRc8)|d&-?6*PBCgyV!wYp#Sa_^^d69((&)EU@A= zEnVT-53+?|>>o)mCMY2^={A4saS$;SzyTmQ4hs8?@H@}jD2r0W%NVLz*~Y6$AH-At zj9a4ryo$GetaczXo6ZUZt~p4i+d9A|I%=PO>zfltoaw@p;rdbI#U5G7IjwDl-yq%M zj02rrFoJVS(GEv5jYj-~Ze)l$TrW%(OEh_-#oD0Wuo0d$%USUmz%Ow%MaB7js0=O+ zI~B`=0u;@G+pF;-b$X1e1&GPd`@^X)V-GU3jIh^QbpNX{mSqpJgC|401_&=>p0`S# z4kDv*Kd|^njUU1CTD=YXUU0yuoxz~2h7(j>G&G{Q<10XO1qwZvzYsAlN4R{rCY-Od zZ*EWB9J@6lS6&;__t5WVw^I4GAifleW*H%yWN9`@ti%{dE1~)FZNnn*^?tH{B5|YRhMX zCU4o$G}opGy2~o-87A#cJw7lY-7)vMr#zf(jjwmiFky+B)Xyd^or%`#9)aL+6wUX- zgLg6FULM@^&kx-Xynj_{2kbZ81He|)<^@* z-iGf<0Yo|dN1wXqp7h=fI@Z&@sMO-IwFAw=UhG6}SzbZxSRaj(Ky7@g1K!^KO5n=V zfcxAqU31fatwV05Q$=()L$Ss4zJ4^`f}*}@WMDLs&!YnH$Ej8Lp^*{gnhy@(H2v_~ z*8DsA)#Co|p9C0gU%~UVW>g_^zH{oj{<6~LJuyALPK5-Ms7@DdPo*}J|BK-k41t+~ zzz+nugtbQNNQ#5OW5KB|y@5>naD4L>8|%Pnf&j;vHO*(Dh?~TfHWP%%#DlZcv<+yW z7jIh1&eL}If-;^$aH~vusXlbGw9T5E4EhS*2lTo}d;zK+JC3f0SG}9P>^Gu_o#jZ{ zE`&K;(4e_8@^!ph7`p~DX5U*s1&6J8jY_+NWSjZwkQN(9f@@>q7nV*MN@bZ#c9S!a zn%2?RN7wI>ba!LfWDv{BvHuXg);ANOs9ND?jmB&0IcK*trwyb&Nv?_#Yv{8)N+gJw zVI#ISKD2tN{Co>{xMz_X>V;>Jk!*E-#f1Lw-aDxf_XUkOyfvfvVQ_w-`4ZtSENIr0 zeqKVdIY56=0R33v-p~hJ1<=oFpQ{t@Asz`aUP=*!@5ZZGTuXPuanNH}17aF;1NR(L z(+++!v8>^wciGCN%8bo2+Bv%74W*8NwLj}>pI>5 z_+8sF<#_9PAk9QL$Y(wi2f?%O0Gf$1nn$F7DjG zy*63~2iBVL(?Z2+!R1tSQ6EiRmku0bwqrbj3A8Eee{QsC_3kIZyh0dvNafVf&`tzW zi`)fGU0sUMOVGS_H>8%P{dqA&?X>J+PPV;PmGMBZ(qbKbv{0uaAupoxDbURzSr{ZW zxy;(G9Pe0l@fU+BcCWwyk=t<2wEGIgZHeF?E-(t0+^>kYz~PwBgt47g=LFKnvIqsv zL{aMakaUUyw$gqM^+%^M=$H8YQ2jEAk8O#Kr8jdkZAs5901L!?lp#qPq`}*%tO(bc zovjv=%ysD1v+#}@2#R9J(XYxm=#s}!khT)$O#{%&eU17KWy1zKdIcZxeV*(EfES6% z2u}ugBz~7(XqHf(3V3KIh{c(f@Xf7?^#c-^boW1hFqiOs(ZJ(v-PH2TDtS1_;%uDX zH8YYWZSU9SJsXT#e=8M(ZVr9B_Kmi>t{c0x|4LGJ*0JP-?vIsn%5z`9-2xqMuXi^Z za<_(IglzYX{-nCtRU@Y34$E506ZInez*d^*k4=cDmaeX;#4*+5f$u}z6oEF9_UnBD z0mr`)Ue}!@pX@x|NX0m?IBi&))shDo${)Y_)zg$+aFY#Hcz@Y&h+Crj&9 zrp`(+>g25E&MU$081b?^j~K(3mhy8%r`wOT@Y1&F@FldFp#F0^7)aup&sJ#>o0lSD z4;~vP$T$Af&~^SeV!d~D*L>IzwSj8y4r^XIIz|vP3(uoW7U7^G0!H*(u(ovw}C#AqSYSj0L7r36@vXjVQi%)gj z{0=LRZqb65lYnYy{OKn!K^QIMZ7QB;tYJm_2fA4m9kk2RJ z^VeqtNF1OvUa{6KATR1*h-q~;#Irr8g}nY$PfB98hz*2y3{1eGOA#5N@o6TVN;lP% z_R`Lx3MvBCQL3c!45ws-a_Bq(a70kHoj>~EnlCjO7w8E!9sS9#dp0|)>pEw~x3lgd zCiGcXm>(0$`(6&3Bc!(HwHNDpop*iw$Gy^XqtnL`EXgR%>zAE)0dc#H|GK6*PsNlr zrxDdel(2PO4tzi)%wy!}it`VbgK4A2-(WW5vKQ=P!G;Q}_@fJ9Wzo3v>we;!&KGZU z*kroA)7pcOM`8V9n*%!ExxGZsOn9IEDlt@v*3Dh#AXZ( zG@R$*LpGB5-4^=?^)K0c_Ifi$cLc6DAFn&>loKeI8u;(G?H{RdGcwT;e4urLBYv>( zNj&ETc7c;J>ig9o0eNpi%JFR$s!1=q*89)^G@^g>MRcn94uQ$F z04N6WWoqIbT4`Bt7NPfaRD1|T!Zj}r5Ct?hU9B>3l}uy z9c{;;T_jNoml^Vm*q{ulE5Y`X4|?sQs%g^R2A9j~B7-NIIs&lRI7 z+lJH1caZht#_l~mnMN4lqWptSi-;T=cG^?1kxT)taGoP7jdl(J1^O-W9Z>;@$!?GS zVwp&w-MOM=T`{lGm20hBGCZ&DH6y){IfLfuy*bJN(yPr_l|xMkPo#F-|Ge0KwTR9&S(|!UO60| z4=#91j%~V8Lo@6xtFokY5%3g_3GWu}-paVeJoa3dPwB zJCBWvCcpo{z{n&g6o4)xlVPpN3Tjbd{~95MS>b^YKS4RNFD=Ac3E@bDO4v%+qH)R= zA!U*hG`UHcQPU~%X53!aEN$13GTc|;j5Zydf^_d=PPS6N+@F#>v8G*se_2=c@n;Yk z-wX|sUy~Dj+%P40JY#-Jpf4-^k9yzp4|~&_`chK^N7uokR^8xgAAt2zm9$j_n&<)KPsO!)Sj0Gdkgn*6%?Z1Z>D^%QD<6f>PfdhX3nS~ zt2<+yk2CAHDPAhkTzyXcTJhxvdV}-pVS_K^!2E#LD8C?t?m*YfCY>|*ji`+SOcraVPaL?HhI7)`XXpFvxegH;T)_Z0p{w)79f8E6vepzJ zPM$n+UHTPkCZD*2fhirYT&-O)e)kh)_v(&;fuX#!f zWn5o|0&tcPv)+jdaOFIsgaEsm@!F?9>HQWoVa-<`0~a!qR4hRo=ScrYO)a97S(^52 z(eg=84P;?C3!HN;Ib(r=z<;@|g7-}szZZ^TUJXijS*X1nd}w^+*qW1gI|b4^M%;*x z(=EzhYofjyq)s54;0yPBYaUFAF3EsIPoYi|Y;5)F89OnF=cIRoHN^KY1^06MZ>^)D#4Jx+yCvX zp-s+#5EjoWB6ZgBK08=F#xQ~^>sLID@oTX-*)Z|f@W)guckfhdf>zuQkZ;mg-097W z!;;j$MPlUipzkHkib-OS2EtgPcNmL@i)RLQA#6qI-##r0GwGpY&Sc?)L`+ z^z{&--$}$BldqtkILI)KKCy?hxJTrDAcZoz1gmnRv}BoLTBBLy4ye`A8ZUHPA0Buc zoTY^ejk{OUIDE`DKMkw3Xi-DP`35~#5P0IPUWnW{rg z27$PPoblI_DDAzp=my>M`MKdQwCIoOz+u(#FW$NUd{Cw;RZNMZJvo*GYs+7glkxLW zz?{2ANiGy{tK?ml$p|Y`*-Y5zmCH%gN8tyTk}+Cq&d5!>xSyYeaUZ{Y}9i9!QHLl7yc+V_LhCVf-OAkc-MwmgBeGs`Xw z0+YZNx1~RTXR`NNqIci%y@&JJU33~3(h=5*?;`84h+u^_(!~i<7d6$!;# z`Yw@3*?=UxLGScj#8C4FIH<5t5d_ z%Zg*JTkoAf;(fzD_XDZ*tfq+Dd9=hPEt#t3V=WQ-9xyJJR56bDHEE^vciw(B+Vg;2 zriA5ZSD9RiSzy^_Q$dFXj1z_JRXpC>Bl1-QlVS&^R0#IlY|ciyaTh7QZ3?Au%=hum z5lYkC%!V6}J|zVG|5e(*eoRSLTlc&wE^8(rs}80a_?F!8G4v1Lgu0CdvNF42sKB_P z;5$mizhu$Nz#=J}*=POO{SR`+pe6hJ`0dV&N8%Q^;rqPa@}|%^_xV7thiUKT+qoS~ z^1j%VGM~LCwyHJ0V%DjWBO<2NQr@;+_Kd4nWN>aIg_<-wW1XSynv>mZfuwZSs)gmB zO!#S|;)ue_M2P>2 z=sC6Nl(h-5k(wdSVniPBt}A~kCG_YqF~2^3T46prlOa|>79D)sRZB)HY>7@LJlj{I zEn^;JS<*cLOV>Wf7ldP4Q9J^*IzFQb>oA%iw@6!5kOw!%oZfM({UT8Yh%T<4Evb5_ zq_`w$bgip;jHV=J;lRz-JjGf^Z+d5J#+C6~+#s)w)RkNYnQ7Zu$={P}4rRyH&?8#F zhzb!=V|n7JBP7HePrt%wyopLHCwjQpaLYxRHe73Ul&aA0ERC39z3t6K!I;~SD|^10 zpPZ0~`(7`c-a&HGLWHzfczFl?U`O;7t%n~U?&j+3f6mQmv7Fm&L426c&*2jJ)))pF zjgJjetjk&wOb0C^4^eNQ)jGtBJy^_M3{^TaPCNYY4W4eGDxYvoN=aEiSu*G?L`6aV zb1`Eu8qwqkigcADE%R@NNWfXPtHFnM>ozCUOR{a{_YnL@)Y1Yc(^eb0BYPtvh#2pm56eZ6JyXy&svEZ8&UjB5kXL_9Ja zqd|grijig6uc{k#nxx)O@sfO&Xiqwi_K*Pj`Q1C##z)|>Wh%Bo=M-bY_LbJqQp(1~ z`0yLe;z1ElFPS&fH(FRCwRHem}BIY`5ilZdAR+wKMOHd^c1rZ^VLEzG5KrfokNj z9J?l!1#e@~_%$*ZC^9V77dha3HcDGa#N6mw>bsNROGKNQo{!cUh7FvkIRC8?DXBp> zOWJgxy&VFX5Nsbw=hgcC<}{D1C4{TxY;Q_vYH-h$-Fb^)R`j^w6v|Fk*qmPR)Ex4T zzwY!p@>Rh|Fh+oGEPCJ8WoI~&9#oz4k%F2MSOrQ&Lc|v^yFy39$(`GS@axeNxI-~S zl>Xv)WcE+ILdUZXi5HR-)_a34GPc|pP2%0p-k(=@{!rf@NOT&!NTPAaSap2|6m1qvt}JrCthdy&fzygF!x_Ke|#OKga zc4Z{LZvWAEqGj7pB!CEOiwdvii7!qO^v`ImU7?Hp9m}5XTl5C~zTP_v9ut8J1$1Gm z-wJ3Pi^T>ar;UHtDymaHZAS^T;OtB z%uwMd3aMQ@u9uqmCRsFD^5*#m1P9hA1rR^df!o|qzD9I8$O)3R_JJ+w`4q*fbGTPa zx{Z7h%tTJu;s9WZp-8frR`dB5ReCl)G2NmsZalQ3Z}@3g;|1Gwmx5Rv^G#RO-4gQ+ zhi9ANxT-7x2e&@LM$9|7y8ep0mojYz?5=_}u!giDjR~zWRwCk@1QCMT)>hVv(xmGM zCMdQ|yD9rRP8KC|KX`plU_5=Yea}32(%-=QIAGa(ALw{=s>qvZc8uPSz=Hq*BDMpdy&I~EB(!gi z7Q8!3tk~el_cOSQXfw6iz_)7-`wb@b$z4(mHH25nd%Y@0DRMh#N4k?Yg0*K;`}F16 zU$Y$2PiEj~rFU>ic(Gvh8mT5FP3;ynLOcbkK%Y5pUS65tZx9&Oc-QF-isR~a*|!{B zq8CP8-Bx0w6e@ps`%ux-agzb!P z2Y<9F0Jrs8S>Qad=(+lmH0S!5F`wnAjJ0(?zL0EPSa2t=lkEH%{HdGF^BOg2Q2kUO zFd_QoH@^JvDoQMl{^*GAs z<1q2P{6}E0UX)4o}i~s^0+XFu6!0m(j3`#9o8m9&D!L4 zyj}EkEK0G5f-Cr$SBu^Ra!K^;@Lg+{veC5iz{K3LDOJsmSY>|x9Qj~#smkT2sP`c^*Ctvev|Q{lf*VHU#3d7fos*cZCXlr|@Dl z6RW+R22zPoZVJ0^s#Cx`uh0nu2dq+2+(BEyDj9CNGrW-nugdg$Ya1-L?{HG{w8f%D zt~}+*uq90B5m=;pfW^kDBslYxBDW|UYn~!6Zv$bnE*V;c#eXk!V<+tOoqgBfiy+}K z=hZMc#ecJS#`wWD$;f1ZZG{jMQLYSz9!J(bQ{fZf%nciJgLCtUhbAMv^`yD8>;gpA z2|i=-Qq%^XX9;%j?$G!rmrFby9p&7`MbIG!Wt>3>!xjkd3)Lu6aLAawB>`6 zaY?)Oo~hU%Lrc5CHC*di)#761^VB2FA_*Oam>q()F=fml%ETMTmL10!9z0G4IYS@~ zX>KVks3BCreie1bt&Clm7m0l!N7%ysKJv11wkhbrOgu(<_QKZZx5Jb4+8b{-zKde5e~6tA38$2Z!70YD`C zksW6i34FpO&+YX;|G4J`cRQh)QG{^r~-;5 z{zJq2gBxYuE@U;Yr~vJF&0POdcKL$0t!r{*xd-L_KSqm(?MX55PhIJNweIysJq?&GRzT zYK3MB6l>)K2~i}2lj5Q<1+3p`LT6h%x!~Ur2_gI`(!Zc%YTPB;-q`_|O9UYonIGs4 z0F9NhG(f(4@W45PtM5)qa@`KUn>ZG-8Y9C5f-s(4_HkQJ;9Q~pBAv{S>kH3Q*}Kal z^1(D!2n(LW?cVR~nj$_KTGk%WndqCEiqi?4`VyzObZ|i+ z-41(V9!1px_%^Zsetk9|+|91}3~~ZYGX1GI-q(-6(&-Pn)TB14r-q-Er^+vkDP+J? z<==OdEc#0(&C{hMR)UZ0Q2Bwtvus|*n~L)Y)WO`RtaB!n|9H3aqf$e(lP?lif5j*2 z^RP{f+-*zb2FPT-u4cvKh#$AHkywQE+UiaapUiW$B~a^gOK5f82GY7NLEw;^Zqpq1 zdFI<`t3(^S`E-os+NeWf0|KGRKy0lo+4|*zN&hLlM7P-`r3F4H&3hTE!EVJ!;NK15 zbzNE0*BsQ}N3+iewWM*sgQntVo!xlKBL)+0B1|j{aeSvqmcxs2HF-6)-7I+R>@mAT z_8v3%Wd)5SctWKm$dh6i^gO!s_kc8Y1TDR=XQ`YoH!wiRW1lJFOqZOHG)7w)dJe&1 zC%MwpzpP9=H5v6{5Qkf;6rqFb{_2|bl^_*YmG09I<(mWPqO}85;uk=AXefs+^cHqn zEhAR5@w1udON(pfKHI=mZ7A_{4b3-c)a!=#xp|5*jH05VG9~)k`!J6d z#9I?Jnl=;)wD#x3ig{NmLyI{mqtUZN!+}9U1wi^^Tze7Q&^K_dKCc3m{vRZCA6>*E zuX&5#W*Q*pv*EOd(BsgAWU%ci**pvTa9PLk;bP`IstL^`Jagfw(tMPxg)tN?wY!01eDmY{@_Ej(7)eJ^TqeQ-l|QNzC`fhM%ib}hvQ(xR=7 z{ogMsMvXCex-i)3{plvasyO|l=U323#!n9MtGlV2AI?^x2vWXd)Rt~u2BNXeORJB7 zA4HuFkj0hEWl;+(u~uXiSNc)Qt7($IA1dF}xn?9qK`D4Y%QSlP$u7+i6QA%Vdx_FQ8NbhTxU`I_tGa6H#W{iDg5;A znw5nJ^iX;8P_}){VORI3L^oD`?>9OMAxa|Ab@GsxQtDU*Z;uk3G4Yhf4K#n@5jg@i zCH8BXEm%K>_vlD*aYXjrhKCv-q!j{@w(d{-Z-fcN506PcJH5?x8DZdu)?d8&caL_h zVDHOo?>Wp~AS?bFB{U5WkzhR`7E>*d>Ss##CakQjq_J>}n4!!})q4f621S1?wBbfC z|GO@$FE$0({yrr5y%bunrK4*XS8@L(c6v$vj{lK|(TRkKIO;vp-Mqtpybk=@*q@ny zw?znidgS>vV`#_6n*0re2(40j)E%Q6+ZYP@Gv&MX@DMunu~yu`qS+VZ>CIl{JXO#4 z?cji#5q*|_Gp{s?0NC8>edqqSNMAg6?R)Cm`uj7Gug8<-`*;H!a4|?yf-r5O))&49uSZ-U%}NK5(9Zw1Sn7tq5zOECtBsG0K3LK}JTl zbNT!9;K1!nyzMd!hCiRKI$Po8e7JwE4!E%WyRj$%Cq-lFN9SGi=WcBM^?KM%7qvj& zf&MuILxN^cTw`85PuMDhT;KV`1tz_?T0&RyASa}oF|fcITEt$r=Wpd;VBxh$Sd3b8 zrF0b!dq9uFGy8!6;S;UMSAv`5riDccP_{lEku)ck`CJqQs}T1d9x{0F0mv$0`PeN0Rg-*kV(JVm2e>h$vv+)k~<9#-p{8&sue9qQn_fR}Z22S0663&6WzL zv6^o|;zLh_iD)dC+^N_0ou|p~_q62m03~1WA7XGg8r;^6`g3o``#LkiqY;~04T8rr z?ho)3xfrBpRXdaC^j!0WoB~CW;g#K>??b1c88{ym@j>=To6j8D`2>l_hncr0)@_&6 zHheol<EKh2&w!KL5<3>4S$Is1!>gqNS8>?EmgG4a0sWb5%!1 zVI|1jKSy7pLtp~Xug2p1gZXrmlJxk`Dav83=SB)UX%%1h8^6WY=2%MSp#fz(yxlF* zPMXsjLASYck7@P{k%hNRzq1FH0_A$%znYivwZe!x(jtP13U7OJL-yv>Dl6!-m%RhU z^OkNq=Iurp%=^cD$sqrJu%n$InAa!7QBfi%WF7tF!hWgyss5gQ(Pc(&$c8r&ICl?J z=1lH6T(6RXi;ur9uUxJx6plTl$_yodzn*|ENjdqh131&qE0ASTP)3@N8I*)pl{Sq{ z|4fpoXqvstKUS(Lyilv7`dR>#hp)x==tjROrn?l`inBVmFahsmMn!!TH4{|7JQ)jm&$Lvif=(>ki@rH&jNvXklUz{1k%>oel zK|tqZUrv>@B~UFN=rJ|(4&QY1H3ub~vliP}jNR`+7?7^)8|~(MkG$wK%5URysFL1A zp~DrEg=Z3+n^;a`9`ZVzky_Bkz?vkEjqJp@nanOxuRNR;Z;kE{au{QrJq4E_7Ci~I zHhJjk@3C+qLPII#Bca$q z@Wr=+#etOL_)Mm>AttMaHg-EQ5@asc-Fafm6lJ2vmr^k&iES6EbacztyiXztW`{}( zi?cCr07>qAt~Fg|FlxBQd$>>+g)4Yq1Ih|qNTVaF9qccScH6tPsK;IAJ(rQyf0GL4 z$3Oi?&MF-E#gr-J=}eksWTBhBW}N@bJ8-B16h76cN0qpLhghjv;8BW{q4vh4(FL?y zQI8@W!XggT}oi@?4$F(MwI*^K@30#h0LU1o$BvV)zpYc&E z%+tWRU9EvIC_3NMXkUO3PgfBGYfE4#Oq~(3r0mp2BcVO`K3+*Wf{qcbK@bW=s|)X! zAXrGl+=w$dV0^1x@&-bb9Wfb5wg}fP&6x+UC%+iMsyW93geQ@>XGU^Ge?b#HL=0FjTo6-1J z3cV^~(Q%N`>pY?5aJIrFWGW23Y1+eXKDYJ71(_YCFHSal9xUEVCTJ?IEL2HHR0LMG?j3BbPG)tAH} zCm~aBoIJdKcJlv7y2`L9yDf@zhjfQ@w={x)q(})!OM`T`w4~BVcZW1c3DOR? z#f4Sabsi^%BO5;7fd$BVpcmltOWQ(8;Zi@f4>x?FS7eFTIX`j;04^6h#7@U8#XRZ1 zME#FF=2zN7fYSy~wg2aaWJ(`)SclMg!#2JFcFH?XhIIh0H|a=&4N4Vvf#n0^835~h zp9Z4nzJ%IVM7!bm~Wa`vt4R4ReOW31f$+*G-+7dlJ^7@KQx9h_c!p#?MN%KeG;OOmc;h?x z?1bvj2>3n!{*C+ego<^S138#hVOE;O1B$;n4^kF*h?c+uu$6`#47>!Tpe>a&DR^e- z4ZqE5;_{AZ@A8m5_Af8Kn1xVL&|5cTy#K*Y$_NnBuJG!gNs{+yxm@uFo|Oy<7e#f`WLE zHVsVn<2Le`p*4cfsKB0^%gjlxbIsDGtQYWwS;GO0{-fFP8{jK^Ww*DqcsXI;w14HN zVfwGH@?k7s8%8CNd{|bEFZvT=`obTr=L#oZ4i5G|q}i1o2cZ^@eX zyt5uJi!ZVb8?k5+?T~=%?P*};9#UiS8=2E<_u{WRuRZ+ZsjB3#fX|0d3$>x&A86bR z_%7q6(}fgbEAHf3_RG@zJ5>YzvW@+`-ugzq5aV{;g!VRyn)Rs9r$Mi4J~HQ=|Mem_ zDE=E{=?B^`j$hOTO^70nsT5TS1EvW%j=?a7(T%kK9Y+f9O1$PRJV=w50#0jj3hj)m z0>n&q9^}2TIoeqh7<7p6*2#p+8Ea<*m=8Hj6>3~mDe?*rc`O|6~! z^zK`X{+jAU3Z_j7y2B3jP{%3ae9*M9y!=f5^fNA|$VfdiO?U5*Gk7U_t~DwrFuURq zs6f_Df+?V5Y#@ae`jZsw5#$Z9ZU?h{Su8V=vL7$o^?g=iKs%Bl6yv5#hD|LoBAbqL zmfq=3dJtIczlB`Yc|NVIqT;kFOniQ5DVdJ6V;1W0)c({DPLy@Fe_Z)zCQ5Cm>SGf? zxOrIG8v(-YM`r0c8P<pu7hEY{te3=HUX+ zqy@|D(I?;g;rWhsm6t*OXa~2S zHFg}VF&;Z4>g93T5L2mZS+L`*GV;ogzb();-!kxLoai}f&|A+u`auN|>UB-@1 zw?QofQZeUS;W{suQUHk?8(RT#UpYrIBJ<(a05~_Q#LU^}^(WpN!}1=A0I-i_d~ACBO5H z&BLQnh?w185_b%OnxWKq%rEG$I?@G2*c7s;;_C$n<#$Eo{IdqYxXg8lK?7mCPPeqR z(;QkPmQc@a*+f=mJKu}WKc!Fl>Q5psk6GM>Tl)&n`QYF_!zsu}Y4*>@Kp2mK^t`|T zF0%V}OLYMWSXApa?+?Sek8J;57tdZc|B(6nk?KEe1P>6^lDCd{sG?SZ94Pm1d$Fdq`iHn6KzB&kX$fyIunxHN0mZUsjhnmq;kkXbN_? zU3LBdU$lKE)ZM-nq0u3ft-1}J1tk6CPltfa6ygE_wm!zezCCC zWWLD{F8}&is+u>^CGgfpfrJ-hem-nGKz_H&B20l3o zZJ!Twd1&o^*M%v=MrK`L`5b;r8@~b(MwA_ZRSzKk4c}cI)U?!9vky<*HflFezkGYR z3;E&TMDaDoLyFV-0Sel&;donzHdvCb{{{$Hoom}|`9#D`VzZfue@#NpuY(503`c3x zTVo2b#o*o#fV8Ne>9We#barR?L_~di^R$H{c_R!ik!hrH#6l7R9y&s^xV#e94{=hF zk&UA)ZVI$|#wqYp>{|v;U3O|WLmH^x)H~2hHE~AOElM7&ZM$?TDp`V7>sjT9Qjh4} zl8S13P@l0%D?~IHN6S^f-I5;+=Qr#I?`!szh_O%8N(7oTv8-%%Nw{mWYN z+DsVhXXKe%@#0$3PLELaqQGd^D>+CjjVX2jO~u5tF06ZHA2X^LzQ4Rrvu9$6BJAz92gB{k zRivQU) zP4l9M6zeBk&7u@FmG@;qT+&8z`GjoOc>DTU+wG`>#nN4L8Lzzgck9v@Y4X(AOtr{B zMJM-aW<8{@AY52zC2yAVFP%CkmMTKEXRngi)BO`uwf9Up%>AbsD3!oqTg59*@zd&{ zhody?vJIbd_QR$S<1labfDX5$*-++rm_LfHURVidB+#$!1Lqjc5SsAiCF&^40DbT5sEcnL^}3Zv~S83 zH%+bqvTP#aOci_G{XXtU$Q(@>hrcKXwrP3}I z3D^3yuM@k;VrJjEq#^V88^miP{mugwY0};!PF>A5c$Q(7xj;RC2x_+NnOdhx)vxID zA`Kn(5&G|ZD5@#u@&{WT%Id2Yc&P-`uHlUEh=R!GUcZPT57?Z}8hq2?i=QIqM@^jR z$LipBCue{AhePv9@b1Eos%eYg@bU1%D`QgMbKmqPj>|BjLX=?8;#fC2wRD|yFKd)^ zQlKYFc>0WDrc0u1RW5mCB8qFhwTT7$;gr8oG)7_UMOK;TNpWZIAKkB}D?~Tvd!5p@ zHu!3@JB|{=KM-ReQPi6B`xK=T(N*Xl6sJY`$GdtFsv_3p34*K^hD?}~n={b7viBTD zvlrDh#=(LP{h?<%KTs#!GB5i5Y~QvYBDXnl%hi38^9FKPtN%sJ!ylz=Wi=a-89I5i z#xVH2dW0IY!3JmR5J_D|4lJtncPGAkqHA7l9zdb{d9bYi+_5lUoU`N=OUM_HWTq%W z*I{BB1(wXhpCpc)^j$^;e4nnVf7q{xXf6WlLd`_aloZ0WcvKbL<-JO;FHzUh13XX* zD-kT>S@m$%)-z6lIEQt@M~8=a2s$6G=-Dqt0Vb!QYdC(-dQ%1?yqfL<#^b2LPDm9^ z^h@*D#}9q^k}e&4ew#u?9w%;MJEf|0azC85h$OswJ?1<7L|Yx&V_HvE$G=KkP!uGN zFfHBmz3k}v^V1G+TMa!1iC#JBb^eZdxhg+vFPcK!GIsmxq&2BuY?nvu-iiD#&U&?^ zA4mF22Mf;O+mwKo$np+%4j2#6r8r|BKE5o`z9}l27le>&*-I8u0m8;#2#$sp;bN2; zz0IGky5#`zXaTm&QPU`i50pcE&Z0cnsl4EVt`C1B^S9Ug5#zz@ncRNGamg@ zOgGJB*7}F~Xl`lsVMLA>^f*5YGNV#Z>$pN$0AizKh_R)Y@O@ zz*@Jc=ScSCPxNMn1Ky(}*1fBK(~7?YjFE3;*rDouCQOf_cWXOwImypWG}!T`%#2N+ z>*Z7wGGOPAd{acj6)4P*#t1D#nnhhyh>RySy6sbOeJLJDoXH^Uu*CSdF)SKKNFi}0 z*5Nc~*eEC7nB9SpoA%CbCS%A)vR zys2!FF^O?%n>|Sw4B!$gX<~S7G@i@*2(hW7{;7ozY&P11KIVR5Wi6~xH!X0#r^AdB zkjESnVpA|@7()Mn*Uik%G9S|7{c@(u;LFO|j__B>7|ADyWN&$vlOW&KH*BJOjCfR= zI9_%ER(lgOO!yG>0j+Hw*yE#v&E9XBfrAei>Rm`t@10we4RvcZ)rec78s8^-3&~iJ zTB(?uZVK%J(M;H0`zhgaOTaG}jjk)VXvIF5Iu*eQ=dnB2T7h%Y(u4f@DQW;@9mJ-P zRPxXN7~+2PEv)oNa*EH(a~07Jxv*@+KWR%;a=TQVQ@jTzd&pm9{_rZ#2U8Z556C4R zzsIbZRlikiCE^rfnTkC;UV{WTW(sMDM{?W!e()(Dt3Zyy4N}%~D%_#shR($W zmquNls-66ZbOC{z%Y(2bd(3vfwW;nJ1eJA2>}IX-Ssn`9}r zMXEeHB19NAOCRy^-7i3GnS1EXjK3HY{VH1B5vJXFH}lX>3@?3Je)9BR1cR3!^4EZe zt=r)2)evdCee5;p@zG%e11#LPwM7Z*p|7>0KhtA%FpSUrofhHBsuXBoj5gzS@x^H( z=@#>Vu>mqv_73_uz%cBopvD5#DzdRx5LpD~~fF;Fk%9SYr70MTczrc!DI z6%MV&?MwC@fma7}7sJ(lypnhMT)AvmvRV_dfj`5TyWbNEy5m+`yw}Wve%b$!0$mqQtGv25J@U)q<*S!MPK9o`&ASY_jM-aekKa{|LoV=81X>omlmi(f z>GCY1xH03(>W%ndQn)}I{y6*hv6^_Eg#<;+$R|4aeF<1}k)YxFB@9}*8d{*12y2Xv zjr~~c0Z4>iE`#en?+K7T?tO(tUi1yW_sP1+KR7Y<_D)L>1Q*#)EfQmkzO!h_2YQhH zVOnVa!){5C^9g$KWznvxmdy*&DmjpL#kE=0dc3)ra15h*Z2WOk?IKA%x54gkTB-Cs z&|BL?fmB*t?2fvIyin12pM+Mdam16T-ZO^6^nFaoI?Y=+6PKW zj>%sfeGQcy+3tiS+3RIx-khbGS;)R$tCe8-;gUBoprNeWIXudONafNBL^>?lfG`?V zE2}rN2Y7;HG>AlNpY-t|WU7pRdfNNcdgJgtp3;7^@Ko|Km*U<;e!!LYUf~=~uI@QJ zww3_GlrzZFxfWbh+Q!h)vddUw;}=jF9jHc2w7nh+~1Kt-Wb0M&;Oiaq1XRc5(7% zHhU{HwOja2lW@pvn%G5`WmKhwr)MhV7HNKdKB9#vY^Q_6W!U4AeXrlhfcFHTLae6a zfwq-AvaP%*&drxbyo&Z%PdAlzAnrEXY=)0>2L|$*vmu@M%_+STe%K4}Pg%QpaL>A5 z-g6!`m{TJ_8rNxvV^B(_*@}k6gNmgjB zIBFa%m8_E8@(KQ3;_MIU0ywLmJN7msOVr1?tfu-&6nr%SHWS5@T3QAsct*gDeNgNdohzBFzByLd*vZ)p3`EdHNw=k2{18w~lEaH+)5r4Hz+Y zy$Ea7ZEnjW?=t)Y|2e77w;Mffv>&6O34Hx`Jy&ve3VS$Gd$n-D8JU8ax@0ybs{~1; zXwnMTER0_TjVyl^W92Qdjz94|;C*Dx-U!oa{6y*z@MQZ*;#RoAs8Gm$#ryH-&JQ-H6OzBbC9U}`vDD;XxfW;u zkZHM;%1fk>p8I+fj-$?|_6%;!{arM0JU>}X-G3K7Xjs|#wT#XcQ63Z%QsV7#?)(zz z0y6%(g8(OfKlbn61-dgC@l#Z!3mB28)S6fV6;W);E!bb8?P*b z=Nluim%@g^6{hIczh~YUhZ85!(HvedWKdnkac4^p=mgKf^C7niJdHA;sYo9~@%NlF z>;AeXPDGZN(kwrSwkXQ#l@8rS5T$^Lzl^N>I-B;&(AwkCn)BXcG(a447l(l}VOWmV z`yhhZ4|y~NYbUR7gLym*aCSrk=8q&tws5W>E+!2ACcVn2MqRv(wd0z>=xyrg2FUd~ zdhK7C?RaNi9bg-yNE%}V4E&4qiOG)$C4``eQtxH=*HUC4mxa5;vJje9$`T8Y35SW? zr)FgpHQbq{jWRZ^xC;LVO%04!196_=V_-FSWP|6^fFUbm-m9|;VUW1fKCz4mEwB2S zgyZ{f7-l(8Ij9~_zcGZ<_KkhGZHa;8gJRqs0V{=m6T30G zQVBzDIWqGMm#pk^aJUY4S%gnaKlQ)5+P(zj@HWg8PPCcMOqT+MAb~KzK_iisu)`fd zAHE$I3LW=-824OSTJ1YtX}uj(^_Nb*rA|}bSBY1st z{9wRT(LiE)vx;-v^+5=-tRb|Ms4)-zI*^WacIMP^H&cx#`>dam*rkuuk{hrNn-0iL z$}gwbhvnnVzG0U&SXfzoF|6(fI*;$*l@hPdz@VM|KB`D6i0n?3!@+G2dGzk9fUox^Cx(H8CE{jY%*gHE0&~srARn zn-h5LHyjW3l`qJ=3#T8YR1YUXZ09e=>$Rf%m?5PoYfpnoE|g$WC!zApj>YR=1e@1y z*}eP=Y!AbGJ8We)U7lGwEI9?D`l`kJQ8)x*k=PT5#O7~> zp2XfR##<-k@CIV1{}t_SY*JrJz5(Sf1gR8H!XXzF2Ya|9&6-eoDV4RnNoXG9~-h zUgwo*RjZ}w=!QmIS=V)LhFL+VyhnaGz0wu`;$h+RzsW(!)RL&w)OR!XL%K-p-;DH} z6rmcZYy&}XF9=&|&ARi<;d$S*!Yc&w<4q}KkUyJy^~J2~vDEj3Sl%+j%-*^uDJ3WT z9x5pxIYq(vW-=Dz`s<0sc@>-2-9Gtk{*yD0L-SwV3hbYlto6vA(*!9b=**9UZ}#Rl2&L{Xf2>;Xlace**)>)_3B-b(#^CaRAWqN3)8;sOb%>Y zC#|>z1bYAe{hNc{`HrfN+v~KZFE`$zyli<{PP34}I*pfyr)#^w!4YBib_dh}Ghj+C zqb8F-`RhZr1cfXfh~HRp=*)y}iBp^oSGVGtVnY4bmP)Q&&=J5*qx)&CgL04J$i4ND zX^@nXatFYwkFPUKZ$CDlc4O$)4>0ACncnm;Jto0w?)zaQ50T7RhiHy!Rgkl=Cv2St zO6K>})L+6Ujq&EXx3d=v-dafpin@%WvygcTc%(Yv}$L+6cz0+eN_^Fi{ zt$EC^cYM!sCsBF&F!G%-yyEf;f}CfcvDA1yqRy4c#q_`Y@7|0=iA^U8ZyOC~b% zRKPsG)ypB6n#)jA%unQ8fv4{lsn;Yi`Jod%;50S$Er+M1z!wo>gCuDw0XWw${ z%y`@qyAx$RfAkvZSt=Fh@HfFXQ6wDnp;!ZaZ)oXU=jj@PmK75(g^Q*>tdTKLHRnmp z6IU%(EkyqOb*p%@tk*CjowRzKSCMwF*!r6;=NbP4kyO&Tj-Ln%pU$&ZyT+teN-s-R6z) zUgs-u*Ty(a_oxiNOPf+wcSL6}?JKrSRlxXrX{{4lk2Ym4L?9hXuNcp=A#gaATf=NQ zIhz|TD-`2M7T!rq@m45AUMZaPrO@*Z|KsYYw>NqMF8d*@)EE7^cgT9_IS8^F6nXkz zyUC<0apB=PK=~^mefdrL+b&Tlf6EM_8iwCizmsUyR@2&L-NXLL1G;6Eo}w8gof29h z%{#mtDP$UifEA+W3=h#J%rwsv$4ov?&m_jd)$dEWuxQr_HnitO2!Z)kCND?L)LDwei8_jTLx*cI z^NIyCn|I&BZ5?(}yV>^v9j|}m-_5c+?`=2zmGk4hwcM-h-%2W8p+7ybF3gX%p16K^ zKji0GnS(45o!) z8?n-Z_ou_156UBt8L)+z@?Kg1bS~gGR`r#ZoAAGeOTq7RIb6dQqx}0|9fL4yq>AVs z8y(X%MYVhH;^|Qq>WGo`z4K{BDnR(@zPzAt?F2t$(wGR0yYYtOQtvtG?`T; z+Ey~PC#tZOC!zGZV(VawGc9dT+|QmFA-PlIj*S^F`r(e~$iLcOnY;;XIci;{$d26o z_!_UV7Fr?8y=Y7suO=5FX4Be}q7>A=?Fn-U({89#`-xBedLwb})ggFH{>p@)kigD| z9I&XjG@kZeq6VJm*F~uY+)W=+d>9YIBEPxelE7j?iVI`&cjSQb=dak;9bfX1+WZQC zy8Y1c1U=zv+!qEG-TGp{d2=<|!3HaY0oB)BXqdP5&z?-G*wuBcVsg()>zZay$6eLJ z?|DKAlI+UsH7QQb@X;ut%f0PD>WSeBrTj^neUHJ~=-l4&zpf&#d|XSU>L6=8nYb0^ z{=XoG4ihx!)Yv?z=JZWAhr|?6A-Yl3mdA|JIG|We?lQbSv zt-6merOk1i&!e&FqgMc;9Ml1%w$p_@r!g0!k#@-OcAuy{s8|yu(7)?@M^@S#b+m8<8`Fgm3x4n0FSRb zwAf&)D<(1o`~rFI?KgDyB#E`G1ntE_Rs9b>^!4@O<^?9kPs*i$#n4w;r2g#YtQp&| z=Bvic!v;K2k7KjVyJ}$ew1;OinAT9P+vrQ!@1PTkx^9|%;lLx^wv3Wy+h z{QJsQY%o9JK0BY6#B*ur8dZ%T4q^er*40E{#AG6g8@vOAP;+5etOuAA}q5yQ7YA~dyYft%2}h**v?_ydzTf$IVXr`PnKa6v6wkSrAfal zW6L8-O3mM9K82~oEWG-Zian+#`>pM|@%3%FuNs04HvvYSDfn;aM^q2JAOF=ZE%1@n zE@8RQr1&1Ct@xfARd0(notWSJxfpyinT^6NaXNE}Psrcws`? z{#67W)F|3v3~Dyh)P3%=C1><997&~4%BJsGw^AA_LQ%BLs~wFo|H4flY;2-ZBAV^2 zslNDou` zlY^yu9Ki$e5mR=;1BRl~ncJl_vfBiIPyy(x%a#PnC#@eS(QD7vH$ zFq{^k5+&KlR3%b0u{Z&-Vi|qH{n0vMF0tL%Oh$ZaAt3*dRw0)CuH)iM)_z+*%?lT0*Fl*+=Xs{@(N|li4i3rY5 z?dRM%RoKj3^gh$tvG$){eX;h;#lU)q+6HCp!^y2ZdPtoW%Y-^jMlYdo;{fv%Vy-~9 zZek*Hgu`1mB8m%rQ)I$Aq$EgMGxbu**wsI=_d5`^=6}&Fdl`zv%u#*0Kf2d&v7)1N zvy^#k_|BVEv))cN@YM43@DY1>O}b=vO$o`yyDVJsoPZI?a;}5GG)-i0`io6EIPb7Dgn{XN*7k!l%2d!Al=0h!!b(6A=~4=$ddr zlGxh&LoZ$M&8f%YJacu_oHxA!_R(t74>(`6w|*rgVGSAJn#4)F?)E zrz4xWP6H(unH*!t-aKpg>JvkT1E)Wd-Sy6t-0z= z$`elk>ihYA)ZgD=ziWOKYko3BsaI)5VDU*7(>J-=_PeOyecDydCyDZSlEOshLS(dB ze0+QmtzFB0LDTqjqM-vmU>y$pj@x}8&k>(Vfn=E3sJzoUWRt&?=|lzD z@7F5da4jDVsCkXPB*P+$L2g?0W&{5dfJ+?qp6>q!Y%PrYvdRko0{FB!T*hzRs421o zUz~RYa^Mz-rw6{-*g^U2)&e$S_G(JzHWW+D>bUSs?QF6&#_Vjv4*gQ@VOk%{I9|Wi zFZNwlGExS{FDzlVi*ud7!ynhQx%;^5@A$*Q!@nzw(f(MBqeqj%1!ygL;A~pO2@1*> zXGU#Sr{OMY_$o%{LwG}+=!g~_7bHbJFlD?)rJMV5b!p5blbV8{#QC4mJ>$wbiaxpr zZkG{>h1S+!bY$w?g*>O&cwv)VVVX=npqtI8}SZkH%wcPS8mxp{>X0cU3r;79#&zA(wI}W-r-maoTf3l37_A74E8WdaKi6J@QF8{! z;mgw^2P+kQg6NnSps8p4==fml0K(bOQf3x9edMieTt+6oF`9-{M@4>!%tLQb_>Wcn#4t+ z9x$IDCi&2^pkxAn^80Pp-G$NpBX$ATcRarh`cd%6Y&t&@mG2&W;Z{Yrd4cvS?f!dc^CZYT)%e;i=H=MPAPegsM;bHeg{`5!{ir8+fc{ZZ?~*QYbR3?Afr2*eY5|C9!5XYEI5DZ61?YO7X4O%0Fx zasxF>dzHVhF9qpNhUaDk0iOg(sWrB7H0_tR#9~WAfQd4$Qq`E8PchCIQS)xF&3Ksy z=#KGQt5GD1Jp6E9GkN}wc+*kx{AUI!#r!BXI@04Avi~{({T3{p@9(38;q8z%@ULjk z=#Ba)XAn8c`+U!mCK^3%N-3)%R7b17=}&!>V*KA~Tbxd$s|oiO0UHV>7`z;7J^##! z_=0_s=XXRkjFaA+Lg;R*w5j&~4;z*bVXC?&;Z1FKapLtD zsT5*tBcq$zg6K(jVHmboQ%f2mUc;o0z8UlHJj@UU6k7K_0p7I(5H zG6ohmY(&+Jv8Dxy6*@IRGyRpuAP`%=7x>()--VcbsUZdM_l$~sJfcQolAEPc%+Ix0 zo6iPVhvmKca@8f=Lkqb^AAzw|+XWIHapyK^^iLLeJnn>-5%4#KotMYVyhi)M@rRi}FCifeaxw>V|Gcz# zI|{;wcu&*`kXWzC&X7B%s*XY&b~Vj$A}P;?&%N_PnzEEb1D3Inw`bsX16ysem)QMN zt0ybS%3e39JYmCCD#1=7`yBI z=)8fmd5E(YL>(I_(_v$O^=zY$Oq!66ja;U%MmKC4J^Y1ityTT#Etgoz)@=4z(%jmR zIArn zU9o_FHn*PVWmRVyAth<)dyr%Rris=#5RU`){0&#(3zMWv7auCwX_g0+3bf~r zlNQHq7jI|HL>KD4@MZs^jHpd?3%$|5teLId-oE;@mg0P3PeM+<^~-MU*C1oDgHDgK zN7&Nw{BXF$1K#yOuSC8SSJCu7E<;nCxK3(DiO?G=X{>0~B_-pFVpAU?T zGiw>465|Mt3y0^_#>Ai;^GKs^ueW*N{AG2Scj){5F!Z|tUiw-YUu89hf{fIEOhTghspCqo#ERTT3mJzD+ z$F8JKlv`SZcP&locj&&;;Tj5f$sH#hto3`$Zy?`^ z%l+oxiTxc4r&CwryDTY5T4+@{=)(g};B}yaWRC6K_o8>Uz?$CHTg6)j-^BLPoCGa0_;gNVH(3h@&Q_xJ!`)bUyTuB@ucR}&Bh zbCy;7k^ZuMUnRq33f04IVKe}m5MZ*^7jtMz2?HBF3uM61S(*J%KGwXDV^T}WP=KX0+JWp~p^-XBT4H6rl{BR%Gfs2WS1>OS- zv{F}GyPkiLQ-|w|O$b!j*521&mB?&v)338i{N<40wVx<1G#YzD##(^UEfCKkb~m zly&EnvQF;&0a}bgN=N8x+fU`iD>->kOvW!h?o_}upM=>xr7s;nhthT$&I^7SyB91bc zzc?YM<^NW86TuuNQd6p{7*MNJbB)78e{J-&*89q$=(BAV$e82AW8q(<)m?pq9vq(o z|0Y>EpI*mwB9M{Gxq?NpDV3@(Rf?}z=3UugEUN6n7LVf`DgQ9>g&`BM|C+uzhN!3P zt-t@1i6%tN8ap|kv!rjY15A4_CNnI3RaM8d|iWD_#Yz`zk8%@=V!3L zI|y;h`y`U$GPjAxpE6sbwj~dPAN~lTmvp#?I$0eBU{15k+Qh_18mis>KKN{iP6vY&yz4ewsP4EnuYnZ}RggEHnGI(U$Qn?x1e#6UA>Y<2R1T82wV(Qkmz>}C9n#v&Iy-LGDeZe5WZ76c_= z!+nj(W7Pu*W-;!0=M2nv;fL=*&hHj+$HUHQ6IVy1P-BwsbktF=?5v5jmSy3h=*?lq& zHv=(w=0uHqjx^PvJEY&D$l?2&b)f7|GDgHKnclYH?<{42v{K5$bY1!Zk`7+OdY(H< zV;@VN0g~Q+$z?Wf;^1g-k*+QS?S1P{_s}x6EuJ?j%eLU_C&Bf2<`swkuhw15#tg8r4XbEC zJco8LnRiPCe?7)?ER^=2Gi%x-FO7bf<9uz_K%NqM_?*w|x1V?(_fKt^5%aYx2^MNc z1Ce&*Cp$-yru6WNc1h{YtC0S=w z%ge~9e&4@YO>&j!7en?{+$IK~n{V*otA$6;F#}%>>Z;f@&B?MEFn;wWcvZ1MyynT0 z;&&01;W8$??70;qL0{w=NKFQU`Ll~lqtAfeci$B(5IgR^?;%jS zRyqWHq=_|M%ShV;U|{teNb}Bc2{z3vV(EKjVf;G`%eB=2^dF#D6d9g3c%FT%YQO#f z$Sg$NxWMD$0w9X6BCCx*)=mI%{T_0{6l*FMgeOgTe#F)}ytHT-V+Rt3q-pze5eE*|ePD}U6-+Mj( zFyaj-6zBd>vpryS=ymJZ7pdM3`Y}2K@T0BXC##vIa$`noZKeL2HDlQgKPny(Ch zX^bxp^h?}HdJgNYcK_dEnYu5PDdga_mUT62n(Y3Gp_W-WId?T(nz^olTL3%_Dm;M1 zhTG&GJOUu2uqhJ65#3NlJBL|;{XB{BOqp!(g}c30>)MISlme5}UZ%(S%83fxX*Y4l zH;uQ#p)ipB1cEZA2>KEGCeUD17`CSY8EHH{Ddq#~1y2}7 zm2GV-FY5ssM1J3-H03W%Sl>+Jh!jqclQB1rUi^*u+hQ^Nhd^AikXNN}A#CLV*n8|) z-iWooNIm~4^q(zici@V8eLe_q6tH*ZQj#Oa|DKo!7s{Z4UT@L&L7xB*T}o|xo&5t# zG>0#PI)-Xv;w4r=618ukmzz22AE{9<96769Nv`3)l;H>z(viFxy_*$*HczP3-V|@rkdxEy7oQ}wb0eh9iBfVp@e$@_DpBa&<`rol<|0C)f zqwDIra2wlBW81bH+qP}nw#}wVnlxyV##Uq7YS`GhJ8!>x@2@j5(lMHS&N_3=`OF81 z75seC|Nv0n4e|)jEmtz`=WD)F}LtK{3A*?i4}OZesAF^qsk@~g*voj_THOB zU%mXbXRyC>4+YofF`&mP=2L)@tAM2>3sWfst%i0KN#b@?F6m9|<%#}{%$eO{imPK< zZHqB%n{9l7FKgcw(y)kh{e0nxRvR#~9Lf!!!c;9>hGv-*0Zz?{Kfe^|SD{-q%X}4?p(7vL(g@g} zf0;LUg#eUt2M0M06mlxK2%CEvYJ#-yfW)c$ntzO?n5tKs_i|BS#j(uP{JV#1S=8ip zE+F)oI=OY6K;Wx_+Ey2V|8_O+BT0RDoMywvg{Y=iLoln2#5cLS6mbjWy3vI+r7COM z0F`v7^Z7$`w?KU1J!Hf6eA>`@^1V&7-V`QJ9?Il}dc(e1CQDj?OTuRH`v>D@&uaoe zO$?r9ntyapA?LczNP*$|scqN3ELDB;a{Jvt_u2BOiY|1BwKNr||Gi9jr!iddfE!y# zdpMx)Lk<>?!TbTZ?0lpLrz*ePIlOZOTy1aeR;w%~WB6|(Hl8T=lIH&KF8<9i_rYP* zbE;L^r4k`Ren`xwIbGKfhL}hz6CjrEy7~rM&O}8AOHM~J1>TEHBa=uT**F9fgRA=# z+`xSjim>+D=WxACXfPR7HI(_AMf-;_Bs4BD&zX{`Un#0sk%Y98e=dnky>bAfwB0Wu zXbtsO@z(4w>Q0OmNRX?(Orz2-YdM!`3N~YKp`R=e7BD4Y>Z^No z4lQUxze2zK(0B4c@U-->o?!Gpn%sCQy*6>CADBSQO z9|n`KIVuBh^We`|=Ri0b$5n2FLiw;o%h`&<4+oaR2ekZA6?F-`C3mFFE*r)eiJZ_5 zm<7V-^sc9U7q7?Jg?jq5SU`nYGaHRR0&URh``P0{DvJWd3`Q)3WIWP)3}u6}f)E5kpD>1-jf3MJb;xz%DbWV8jzdpjvfb04q1x-mu=!XR~|GMS7uROxim z!UBZ?A_a~13l)CQS)pEUJ=bA;j=v=B^2lny-+6$4*BLguNNUV9EJcP3{2df7j~}?!Oo61GF+xe#T+g+A;PCB4oDD za^WkY=nyyF;nx$Z{hRNv5nh|m8$*Ei`G@KvamI%iAeaiPsoKb;n*o|>z}u%i!u!E6 zt{`DRAT!NO6?a!FE4=nWofRC&l>yRLrf4*3^K_W=8Lzn(q@I(2UZj_)blw_a#x~&I zV{_2P;91-KY=u4Z_`}v|QQwE&6bB&0Za%GV_G~{qYUp-Oc+%l5 z?GX*!+6SS(giIll8gkpMxE(zA;h41&PCBp2#T=67s|Jvab#^3*oe=YhMEah<7%Bz;1KvqcgVh>(BSRK(;KD``W3se)7K1q5v z*JB$6G;UNaU2u+zyCd(MiITv`!}sT9!-^xjwiM3JCx~2^E2av1 zII9z@w_RRNRy=5yrqnFi%RwxA)7JyE$C|DOkMoWB-KHLCHKj*M)llL)mlT-W8|zcrFDklO(+XX z>r8j3%!&JHnV-}2cf#o*Awrg*=m-rNUzZ|~LGbDi-V`0agpW3jq>Fe*6svaZA}`UA zE1-pw3bU|E>D*{?%n%ixY952zkZS&%tpy8F`R=bxxaXwbLkwcaHtl)E_sJN$Zh_^& z?t*<2f?u-+Zr{tdT620tw-n`MH%e{*sq%VXEg0x`9p3c4A%#b%J!q7p<$inEwIY0X z?R-7Em?6*__%P3$hC#q&B-jprM!ei5e9r`+smoZGN#og-dDASj5zP<`TJ_7@9CzS? z!Tzi-olNF?0avh{v)P{e%5gKKlmMVVNB4dh9XR2ZHPoSi9*puh#SBN>0g@QJ=+d6) zJFH@FYRJzL89v$_0UKJa3CJ`Vy@~iR?FUm+SfDw|%)egV-8YohyXZy5A7 zHFRGpfhoFM%M`gV7`Zalfx->ZM%Ie;#LUe2aue@yBlqG@wQ70xk8h`xHXrz+$;S%z ztCOlyT4L3=j9OcD2HN;y-`|^~B8x&7_}@OIJoYQqfGHm`QNix_t(9G6-?p=cxQ8oY z)PLLdJcFCupDSZFc$!|9#amLq3va|_mi~gSCEvjQhxUA;r=8I8;)X;_>CftZ&+4_| zD(}TP7}}RZSuLXi89G2q(xY_|T~g}Mse*ddn`lAZ%FJcaL7EU!3_qEqj9|(EaE7u< zv;-c?Q|V%UxZIpO%byH%>b2j-O%@dyZEn=)w(=ev;Li@93jj?Gm<4^vZn#CuadZ_7 z?<%*;IHdeiOYZv;XYVo7ols-O z55K+2)6d)?IJ8p5_7(W%E!wUT)n?-z)zbFo+A$YeTGaIwPsRl`1%M z|6Fssb^Yxncyy$Elm?j1{GRWa1q1|+?7rTdz4;jVqPaZgDtFSnd-8N4MYQ5TemHh~ z01H6M{iNqCqkgEm;oo@fAVla8;rbbJl&_DR#4?Z4YRT7dWn{{*jhFtHLGVhJ;JD0=af#qckpsk~3fA~P zaTt00FtGS9=)$AmLXD`h-8ueKxgPC z9ubSgz%A{C39I)yhP6x7G|)qjmkq}*nwr4V=GHB%2JH2`<@ptVw-$}&^#59>P!AL3 zlA*#Ya-?#mddf6~OuCOW6Xr!N{rL$t*KtFpEfrBwnkE(T^^k|rfJtO4v>zs70EMf$ zJEG)Ql-H_DDNIg;C=F@slt8ZxbhV-;F|)E!7>Q%nqF;`cNCpWrIQoqm7%f>AqN8wZ zPCU#!^tiw9>_Dkg2Hgd-ETP@A<05`;y=kiM&9TBM1vUYw5p?-4aGEV~1%uuvc2eKl z&mPRxqP=d6yHy%zB+G836?twnle&vL{TOlruT25_YPB7q7?0~~j|J~S3p^2JCA2N9 zI={R0np4Ova)+Dk!*d)qCAN*LkBh}5Xon+@MUqHmgQh?+XtG&-44oPC{0r8!tI;DB zL!=zTJY-N&6+tPhTIpg?nAJIu1XnMK3>N>WPj#cFUeL-!WNOV~?32O5NCbjVvnx~O zx^cl(4kHJV(K_ckvV{P$6!WW3G7&3Bm1njcXA%pX77sNBe*70+>(`pAKST5EVk_aP zSH89`!k~Ntp|Sh~LZrkZw8MxY9heS(PS|ed+;cXyN)OfafD7D73;*3o3WhCE(^QkQ zl@m@DmFXB+(@rTCxz}tH-h*&0K)>Je6uzp}>C64?W1Cm)SZ2_Cue4Z38$sV5@k=r3 zUNNInmiZgxOCt~$Nmw=f%uP!0DRmqKT34OG;r&Tg!oN$hRxKlH z^E^q?$0C2&=Y5QCfO|-V(|$)I;Fdf0?Kj%P#=ZUS8~^j`Bl9}(qzi-ZxwZ(()xd>4 z@Pn%lgs7N#uOEAuifSEIDYYzlxrTVhZGq~#z&2e7o| zwfw1rF1`(wy^x#%(LeCBanCDXn*gvKjm{=&AGjurUJt1m+RD~!*bMI^+h<@pMTe_WMEdB_&lZ4%D zhX8=7vNn=E9jQp`It@`|DW1LdG-{@hpm@ZA8{&qHf!`orq8XoyrVoL8$v^;a zY^Pd$!fA~=bu|)0kbedd`B!T9e*e!eTP(O7#Pu+!U$&fCP)x!ol={f(x1Ym zsBw=0_l_xRQj!rd3&Fp|#G&%XuI5bBkmoA`17Vc4Ta^`z+p5gtRg-!H_YP~l53kKA zwme~<&o_Hx6!a&Oe+;a(o%!Egw8wSSh%YS_<5FIR=pZ@HD){$uPYUMk%JT&=)R~&b z+SngCUYiQLm}d6!R3jfT2}OW}F>lnP7<8y>hO%eUkpuAwzxbp52`%cq$U1mB0fuO~ z%n@qo@bn%w^=oYMC98B)nyF;<++L?0I)-KF@X@V>WjOtnfB1xXBojPq&zoJdO6+ED zj={b1+k=OHn2Wrgw2n~HXE6|Map>$l@knL3KL`JPWKs#*yFiD*92wnR;Wc`6N##^{ z3@lfp3giQ}A1y8!3tp){l5ASfey+9vOf}2q)xFl*ElhExUlR|~Ze^n1zvW#%5TU^F zuN_iU@Ek(EZLHgSA`JQ&A3mlPYkhQdM`|_mw!V7AWpyzTU-fP%K!}0&K13< zh+5s&WZsK*G%z62Jx`)){Qc#Xv(9`R_k+TiPOmcvBof4faM&&Zgw)JrPdH*OpuuZ> ze|vuH5PSf~)NF7?$-4DFOT+BA`s~1w6I#}%G~b|j%K?n?z=#8IElRDTQ1`eZRE&hMJnLuW?HEa~LXl zTbh}7YWSBHZF{RDl5&xM3&RTB$el=I@TVLy+4Iez{?3jY-dSj!LI_EVqy?gyzrU+qiN|WDQIWkuR zG+m2qSz)siyh-1g*s^hy#|=X;^K_Y|_57B2`TdB3=1>cd2s9VIGwuy0UFL1o)y6$e|WoF74{+~?hX zCl-O+5EheOISUkg>vnK_L^|KQc-ucY-RvqT@`N``jHSNz6)Ft96osU=NL%~@mlh() zj-4s9k#}vsEKTib_z^DwC_|n0&}hxX-*oqD&+=WPs+6SxGe1B`o!j#qaBM3AvOaKs z-Bjxrr*^{eF$MrauIzqP?Z@8iCSBiY@%HPpS`nLZAe7l^e{tts@rVI9&cHIUXAS^O(Q-xg1R7-2_}%g(F4jSPPHsN%@B0ADaCyz7PL&a@bV zzpmk9^W)L6iV@J%%vz9=s@TOnDIPG>(?}fOf!(>1P|d%>9+7%>bg+iy(ms`^&?Ecg z$JE-K%!#8cQ|g%L+Jl=N1WwBBbY{%pb=>;3eezbrFXE<~Bb-!QU_Z91(7**RQRx5$FaDO36`uokr% zH?z6-ulr^#Kjd`ltYENm-B5Q|n-y=K=yZljXW6ou@-0lIjdQ9p zM{=q)J2OWbBjU5UOp-(jOG_nHX8eO`Va>}ehM)9u*@vAI$@6-&Lb{2_mmsbv1GL+E z&MNexCd9y0%4@aR{4FaW$9qMU#E7~nSi#X_#Sv$5EZ*;Uk55+zR~ZFD1id#`y%vs7 zU}BA+h3UYFiE6+q66J{#4clE3)we?XGJ}N{^5cP8Wb!H_^DW$ttQJdz6XZEd*Y{P(a zo!IwRCwJofzNWvusFOikt_MhI%=)66J8wlMxSS9Q-kWQ$&Mtg2;yx>wzmB5F3+$U- z4SILp);KUXdXgJqJNIbCEOYt?(zm(%v|k^cTd2vszftkLYsepez2BVt6Zd(kp=)yd zUg0B|L3)NwJd{`%c}k827@)S>U8$*Q54`f9aS(|Cjjg%2Gb%B7(ABe6l=ZO%bm>>! zq`kuBrMBkZ-cN#69PuHEpS2H0SlOnRRu|Q0#yFC9HIzWo>a2dItAVUOW zGn4)XMh(t!{M;jHBqS|X2z8i47%3fkLy^c1EaHDEekj!P_cXE91n+-5ni<2;+;A3+ z<%pepQu8k6gkW=ohZ$;+-yFWqzjZD5SOa1$-xAB{qhNIsZ!`a30haN}zll@>XL<^s zXqy%;RGZy;oa<_?4DsubLARwhZ)p(bf*dC_7RfVvKLQUAUb;AfY+ zPnkbf!?`);@qKk{lKJox}j@TWYA z$m)bC+!}O0&{%k8??{m*$AukL$&#*uHv7(`-4d{ux7v=R_qQ0voql(D(Yr{gs9bVX zNOIpZ{XdYBaZ@0Y2$F&i$(Rx1#_h9+|KYJF2yQOcz(h%a9O0}{X+K2RoO$2%uIGCs zN?1$<`vJ~}BGc*oj6FWKx`1FHmr91mg`&MrA1ylg8!OG5_aBi4_#Lq3Uhv+uGt3{0 zRkof&f7EQrwyXj6=aR>MJJU^!-mg=!Jp5x7*`>!UxQ~1gnn&3GQp43|MpqRu&Py- z4kj`LKv>)LUum43f8%_w&;kao^PlI0`x@!quTg(;zeml4&oNJ4yV=|KO)p$50;H0o z!jDajQc1N9tZbINb!dMy3!JKCDH9RiOqpaxiEeZ~^{k&v;MUx(gx5MPLm_^5p5PP5 zuFriP6-%jn$T*5pihlM?EV~n)vg}0(PGAyJt)PC(qw`f5B3s0_7Q&|>?u1F&NsW=L zw}a}xYOZ)(A*>J+d(ej$v^CN=i4Yc0Y92x2uo~ZMc|%Lfua>w)uF_;#(4n}BKzbVE zP~uQn@LBV4)kFDp1A@!)R=rkfCn-nouXitAp~g7#`)_W@JSwJi8?xXu*pDV;ufquM zqjE?i$0zp)yZqq#j`cb6>w{7<5REL{nYmjt&^YqCk!pW^=5C5O{vm!e5Yy@sFmcQ4 z{C$OG!oc@#j84l3vo&Q)By~QNfl>$sCyog-3s)9){hUlZeJdJo+ZSWGV&iFbOEVSY zemUe~R6n@D{;ZPZ#O1R=P|qhhm?%Uxtr>FFV0A+nJ&9Zerp_~Yp8Jjd){5#wLV=gI z_M>B)sXVLjzE4`RMS9W5^r0%y+&RebiiUNXupkm#$e^@BTKfhDRH5^85I}8-=l@T3 zfeY3m%16{+ZLXmzz^pcFWda>qS`akjI9mDHYdgkZ@aL=F$8qMNF#NkSpm|)CI7VDOXBJY@pJ}*GN(sHxOSoZK%wiS@oW6J&wBg!*NNkwY9Pe25)^&Qdv)yRN z(Iy6xyk2@$7V2%6Sp*)}YXHWq29Nr8-H}%fU&IsRe6K<8{HwVNfa&kyGoVZkn_o4 zV5pE`Ln+wf6=_#S4O0Z@$u;qM;3j#afc=okbBBlHB*G>sEXG&_+X5!lVHpeb7biuR z{URj{9ju*5+H>=NN6=c+rSuIw0fJz6e!?HtbG;O3waD}Gq z!w2csv3!wOQ=znqV;C%B<KZB+`!lId>o;VH~1CH5ge2MBg$_U z-@g4%4jWcYF{{7?z<)qT1z)ts8Op{f{v=s$Rqc=ae%GiPdS!QJ5T&#e%k}E#5-~9G4~XbQ zG()RtPT#PhnLXV1w?aXkrd&r#kjmzSdQ~3#G=!z~5y3FWG&7MC>n|wZM@Z)P1KQ7w zH|`HI8oXqYEpYmRinm!5lZoJmP2qpV(RImuf6;#|)noqJp}`X%{+OA=s`!@?C_RJB z;UB2B(k{_&?`~DG5qi(Tj2!@_izTMY5lp*!+87Z46t>A&?GIYjS{^iu>&~1XnOY?> z=_ukT+7Q6%jJV{WebSFee2jSUT8Z*Jf_Ub;^?4fDF}RSC-#-8NRq}9U&~t1+*PoEF z(KF$+d(zZVXyJ6T&|aJJi%y5nUiqZKnN-o(WukyxR9NoTX+`b`*88rEE#Disyx$** zC-IoE0AF6KZ0GZA$j=LOyF+bcA0(XdY33a+iQ*4sYv2|oloxQn|}bwBK~I?24etG(>>mxDO?e*IQaqYWmB=d2Xi6#lU_cS+I1r# z(=$#)D~Pq)KnKM+(3t#d0-4N@71X2{+67i|$RLS*-Imke2p~2X`OvaOEM2E5RSjk1 z7otl6qST1v9`qG>+MU&!HF2gmOvK;{qd{z z$#H{stn}QvXm(0_b7yP9`}IfBogceB+`sg~n4<@(G90h-bXtCHZspvU`Q8gU6t`MJ zP!NcJ<@iBu2`fsv45{J+t(#(w%`$&BJLVj1{5kBHL@y|v+G~r5$?%#x`*tSFVnU8f z!5}S1ZuOQk$aM!q#hnnLg@x#wwW9k3!YM@qoynhkn}j0WESRea5bZPQN_6p=KFhcPVl~Mi%2V~<_D<}I>hi=&l2wXSU4*%ppBeGwF^Oz6 zKBS7`|LRP{*RPWiXl4F6(hX;XNaVm7K@K;yl3ue^+~byp&TSHlqtMDv8U@NMPuk(z zDco{H#Spt-Ym9yK*yYq^@GaNclT+p`&&^4EZi@!)pJnN`#oEcmI;^r#66oHU_jQde zxLpIR(CK!JuaVC{i;`r-a(&z+Q;!c6>nyl}hN$_maHA1wU9bH#E__x%h0w|SecP!d<>j4$;E1cnl!RRX64mfpWo!>r*Gam63KbTL zBnGzK5@H)CMZMUS9RuIoFhhH}Voc@J^nU02hwS?r%=Vx)C>QCXYmgq}*>55K?*{dY8DbIJ9Q>Q!Gm4&2vx0jSA_MonzCO-&9j5W4xmlyL}q@{YOd*uqBf1VhSHTor;^S=k~`a)AGxE} zzkx*ih6|BfW)Vf9Fo06_NHw~EGfn+qY~;`77aoJXHnNv^_~zr5B0s?!&6OyUCI|J_ zQHuVC=K^WwESnyvET$wGPeKn583Zd5ZHrq2LC@P`35J_Tf7)@#)B9KF@wM4t^!;UC z!+BwaID2B+IlWvR{FBJ8A{Po#ALjQ{7!>GKMJgiXU?FH%3_7*51W^eh4c>3wg?}U} zf$QSm=c}}fV)FguuHCyb$4^2!DiM|(qm_C%CO3^%-EljNvAkoOTG#J({|D;9K@(6w?PU@(_QO!+{G_;lSUKv^RxO*IysDbEEZxH5c!>N({V!%_ zPuELvb#+GRH!3Om2F=)ov(Vl1_cd9y!l^AYeQ8KJ4-M9QBn4$GN zra%->OE~>us!Gt2V|EAq;9+QW4J4COIzCa1$LBpSGus1Tjjq?DhSvyO{(y=+f09H= zQ1puJroaS(&NH2MVQ792+Sww3b;Eu%8^_Ii|Ot{x$sp;VEgJ3h+!}^cZLrO+4gzUv5&W&( z0T?N4%XkCU-W&!m0dbFTz)l-+UBA~68eA@S#F1x^XQ)_wEc5sVaDKC=Ga?#^2^NxU zWW}~}>`ev_m(?+dON*c4NpmLwvBdH+jQ&WJ zrbZK{j2c4UbZI8DL!^Y6itZxfe!%nfx4LeGovbMtns;#i$q(245#Qr)C)6{kDe}De zZdG42xqpQc`t7o^jWhV)c^xvbGEeMto|@R&!nFN@F?ib;=X+j0LRc#+%{k<^J3t#UgnwYbw61qMvDY!^g zP`H2H;els3p?^Zgs>SPF3yd)9SS&ao*-zP)92jR4g3rCXeW!chn$;lv@fHd4MsJ22YDjPgrqicy<5O%AIIk-%8&jX;Jz?N zH+$!g6HSb#&%?LMrol|bNIc>~*dB5d`kg8|nTS0RHB`pQYeJO*kf!@1JC3t+UTeJH zU;qML#B@8pn4%(L?|x`vNjRzeL-@E@K$V-d`r)N3-2zxG&nTJr6GY(||ugvppNQ@-=_N00dlb6&RTe zhJkq7ZtgD>d`5&UdZEanVICS;qaCW$lRWG-IDltV)|EW$lvg)2aYHfdSsVF z79l!am+4=|D>{b(GgI#UQwvsZ?vcwSXMomSzG`M`8%vi3O3>Bsx3zhGAVW<9lZ0Rb z*e^$uYzES{-xmHzyX$!Ip+{mA6X?pekdT`=| zc!$3J_l}`Ca?o)skFCejHLU1etN)pjl#)0^_c%dDo>i`&6_ zcCt<~5M-wp)k?~ewQGGPs7Z6#cgoF|NLcnm3-a}^<9{Yq)_lfvWarKx7(W&ejdvU9 z`nY7!#i7B&sHdbG0(=E!uo8^pKz3mY=7}e`5ly2feGeL5Ua>l5u)`bUdC|(y{n*87 z7ezT=eW1#tLklia^6BeZ5o;)Il}4IpAA4#NKHV`TJl{@fBjMr))ju&nJySGvlGKJE z*RTiKBZGrb6--${t*WSPRN3nUbW!?#QdB7g2=Y3x07Q!DH6mw2|$*61f*mvKB z0)fsYaQXQ9aW|sVDo9Wde7#Q2C{o6q9U+1jO?AgMfqsJe5E)Aw$KKp!C~L+tgT=_! zbg+$Tzdz7<6$I$g;88oVm$8-eoY$u!j&KW$`}_H&P|u`1h&;G`c45t*tC;=Z?epDN zkGDUsUmW!BXSWBUoB>1?i{oMx+jL^`LiSYFFTa?t0#7s$^ntfgX?I%W-}@Q)*RbD@ z!Rf~WiS$f17Qh!da^-E*v732=cPe3?+W38=vQop*am9L`6$IGD3m!fVIb4Fqjy}qY^rpcX+69b*(`aoVy#^P2yFyERJKK?Ce+TTwG1plc$10 zSA5nmBCR&V?tN2(-8hpz;g)aM}FB=P{4YEa&*VEb0~7`5?FrsK~$||gk7q# z>#r1Gm-y!#$RnV7b>Fk>vda`suHIx|}f=25qz`B~g>lI*263jg@vR~)hu@SHIOUMTP?c61N3EuKs{&De(8H1#-lDvW4M_~>pnR~OL;udJOc{<5esw_-+f5M zZy*^+q|R&%Gu@G~>k_W3yGsAfIGcFMzW^|Sr->PHL5JLoMfuI}_X-CJ?{7=(f2|3{ zzc;5OJh>cAy?_15T+&v+6S6FmBfB_|Bz&&NqRSVp;PJP`Qo6*)kTdK>a$F7QdrV8B zm?0OTN9y5YsG}+!G7(0l9{_{;@6LHW8iy_?w2jJM_n1W_z;|D14U}lC3RpU}Qu~^< zea;ZL+kdk;NF8q%eS7Vztaol-XLJ!X`JutCC_PQ_7pCHv4d@6lxy6+fm*)iaquT2H zw~{d`GybFwt+vE&ZyU{=H*OXT0^iLdw-3=_`|P&Xq&Mb8!1Lskz03+KER>wZv~uwX z^$a?_9*#fyL)i@~18FD{R#nU~Fu;4p{wphZAT-5K-C}Zh2N$P8Gm5Y4FI}>;b2goS z-6Q0`2HEpTp}t)@bd7j)J?lLwe*kE6#ruFC289oViHV79oCgp~M^)xHk)%?XO5)~k zh|D!G-BSe9>1Jlu;aXG)`n9+4nElXbkM_K5OiEQ+)Y~Z>Ie6_6wu8;cOLL|^*+AQA zwD2W&Zc<3oAPRG^t-tgbt+f?eUe@$whzBWJriEF>OJB zlPOpQ%F~-J6%=aJ)rs10{g*;PxrSxa-*P`3HU;YOIRPQoq2qB(LEm-03kS1)!Nu$0 zKG857jg_pI!jpcm2vzR2+{A=%!+&7L|9>yyV_Vw#`hQNkRXT0l;$6-pv&kt*qlAI9 z1wA+S6a<{k`rfx~n$3?`)LBlG{A#8A7G(Jl?b>{@sUeCtkx0JUVlO4th05#RsPuJJgSYU#(ABfpr8MgP{>A3nd5k65E_upaO$saA{v^Thv#t`i~#xeXWgmzApzy!v z<^oOaUmw5M;G=UQWa8$1zo7lx#ht)IGzr%$1Q_y-v49>Y3V%Xx;iF8;|4ISd`PyOg zu=##D`2qf;P4W;1@?Fd2hrt0Fo}1j}%F~>=wpDBbG`w??Dj6SK`j-{;p4#{>iL6LkTo(FITE443dD&M4s z4i4OIkxDl^ZMhx-Ou%#){0M*qBVxN8WGLouOEELV6CA#MuFG_Ep?GYHU`stMjqtx{ zCinW-O+MBWg9`sEj3`?bGHU}{`(*~6w;mjQI3X~6P8Xln(W9XS?#pN&Rux{MM4%VG zbC;2ICOPb|K^S2hr(SD&{9S6qA^;vL7kxdhfSMf1gMO)5n@pc2-)D<@gIKurWVTa3iX%{(00~ zwM%a)5HSD8%QOWH{M#>aEC6qi&iFKhNQ}lH`L4cViFkGh5qP9zJCNvh!1*Xq0J%CD zlbaancu0Tt?*DVw*yBHakzU&mzRyxPvQtXMxKpN4k>W=t|It;@J{)z+0;|E4)f82d zi0}8%Aoz@J&~=9hKrAIy3V`Ozn^k|69~H@{hFnQ7Z*23ljX)b#nY?JU7+r6eX5Gbp zw1TpG5IdI^rd{zGRV`*gx^aQdNnFa1_mgWApqX_CoL>=k!Lq9JNXA&6vXE3^$Ecx5 zF^f`rj~E8AQ*X1q(ipRwJBO{h>ZaR=Xh&x0jB4MMr1D1(mLY}~kqM^#&!>SdPS>KM zw(*engK5WQr#Ady^yz=FHhWygFF_)gOr}X|$*yygoGWn(#XX37CER;fRM|q45-3iN zfZIaQM3{$G{$Hsl`B&;my8%S>c~M<#U5QIgTIz*2{It;E26!W8NCy6tl@79$yga`h zCRjWGIi+K_9=2vc#7NrM0x&nb0$p>A-HR*RIZ|57$;^5=EaW%eDX5(9rqtV)3@n)3 zlByUYj@^yGdBhmCxp!LTw3KS$KE!tVu3* z8RBZUfY00qCH@ISqCNw#8mK49-1>;McJMsLu`Cp>+#gDvDX9;Rrx;f*y&3O940790 zFi4H77}P8-9EGBaY8xLNr)j#}kNuE7So5j>YpdgN<8Q7~colrrsFxEbJVn${M^p!H zo~YmNYHS{Nu)2oFd3mdKni1LCbAb`+m^f8=&nlys3Y)+>1qc~R0?g@V>=Z2H3>GCz z1tN!Ur?px2AV|{Wic`m;yS0_n&Bw|ZQqqHy|C(P7N79BQk}B+l5CQdWhwF|Nz5_^Z zf0|PTw4rmp@AmMkPu#w$-<149l- zN{G<+;e!=Q+*&TD3sN+5*AA`jrCKS`?OkV|Zk^5RZv=U@P z5wy_r37#;O0nd(S_YVmDg7C%ru@ZWTZwC>qm_vi=vNWq?-kOiKQ}g$4a~b1R z(j`q@)Mf1zt;`$Jv)tWjFyDVx3lZX=@GI{y=mjx{3vnhYC*QT_#6`Cocppd`U-;G~ zQ_)FNvk3%R4n>^VB%jc??=A2oCKRKTK zMonet7F#J7=BokXWiZ^u7+=Yh=iSrOu6nL9oC+ADoaayGQ5{63hA4+e=g?fYQ|#<^ z?3mQf?P$OB;zSp3ZLHRQ%=9lCtDC(I1%4C=AhY~^l1Jps6vs?_Y`Q=|tMGMo3T#lf z_a*@w(&?_jzv*w|KaPVnpOF&E{qiq+frME1C+-^a7=fut!<8OIa8|^hb|=@o0WVTN z?N$e)<0t`2ABR0)6`gb?SM=*L8C%*)su<8rlkrH{$mM#DUrz&jMv2a;FPmyI21d2n z3^h$=SKkyY-4+C5k$A!56I<>Z(j6G+qkNFFl{Zp=#uKI0BMQYz1Ur1qV-*9qr1b-i z;k^2)7!08^&xNata6|&dl_?6cLFsP-Ti}T6%6Na15}&hMeLz{eApe?aG|V&vA91*W z!jY!ruh2}8Ix7O^^R#7TW3ZtMzHir?fHr4j^^3&kd{7~h9Q|PB6-Juai~?}|=X}iz z5mZcnggqe|)`GR=8G3U?91DRStl|K%)ptX=x;Iwy#mZl6ZOY27rOG&>s{Y>k=kLZF zPKiHphgHX`uFKfHi~ye1no!r~7w{jHry`zh@~pcFs}nka#9a63R0W7&+MFoDFuOd9U zN<@wQrdf+BaKb?!&C$UT?5A^Vg@;|iHxv7%Y(Q*m)GuQRo81XY*Ks4ptI%>CG-oE@ zL;#M+ESNo?KA!lK>^$LDT)R#k0oY>JRcG#d5Kub`$j>p17-4+L=W*C7pFqaC1?ovI zdpX}%$N(E$%rJrNpKT6s_nQHNISY-gd&x4M^DzbCpTsP}-P__$?~;_jdktsNacC5y ziyJ*tg->VY^sL@3`4g~0)>Wi@2y#As2a464XXF3A0*{KQ9*43xMh?R%p+t!ML5#HH z>NKT^u1dfH5+$CF0_yGTdG!&9J@K$#V(I%cUxkCKBbR^Jkmk|8=~X0ca8V+*hV-qJ z*K6wfx^cOe;AIJAOESvG=n2@DPhaESl{c+<9p=&5X?+A5>)*RrpvpuBt#$7>_ll5H zQ$d&o&Jkf1IwuJmRSUy*`TslFDG>iV;aKjSnuBSGG*D1NYN&BDhaF_zdRQc(Lc6p_ zE8Zd*)8Jbv2JOjR&uv{M1zNuWZlW-!_9#Fw6cg?AV*le4;EE486bxzw6A59z3mBD= zGs3jvBQHU`T_`A0;Ut^kZ26+qQjOvu#vuo@(MRrL15SOYjp@J~nN4oiU>Td5EN)H- zXg&;057Zfc9g*l?_qu#Abc=AYqM$>G7^6IzY}MUU;exwt-2_sRRDJajA(hQ^8X^^Qc-Qxm#cc}zv6B|)PCNiCG27X zOa)2&8A~?F+0NQKIE5S562MJJk5g~3A^(=n{~lp-cP@pqJ~EX~1}5&R%=s9`y_`(s zH}U!YUyl%Je>c~$8Q*_E1)1o-*M1=Jhju^WGPI`H!hS-9NNL z)S(^^AH0-i@4L^>s{p}kwGRhRCg&Y3zrjO>6iH5(+ueDFo0tS=gF+m{wBW!+sVfu0x!2!uffi*OOuHvQc&^!CXNhE0q%QS zPk7yI@IV2WMeLQzDNxF(*e;1ti_?G+;-%^UyOo1Czx?Wcy^PPPID!p@CXD%3jnRP6RhGjJmTSSV1oZ*TENN=Zbuz9J9Ht zi9T>xF#4&zW5)WwvyT6Nt2*3g`gP&S$+u_4*G!V*XX)>E;0$^D5nM#hu9lm6!}FJ~3sKNWVEgVm_VfN=nSC^0Uuchyu64M`@hP=IK1bU1K06A)&PnP8P)j2p^aztdE|RjPoNj}+{lmvzj{qTb@y5km zp@!vB1It)u@Lse&N?IqRL~IkHOVq6D%T+XR5E1BLzFY0Ps52n%Ca*zWbMVCA-8IW5(UuU26$hEdT4zeYLqxz< zH1D0`n$r*pBTqcwM^#6P{@uCbuR}pvRngiungStey!(J2jbI%N+k*B}mcyuBXflwe zp6UGI6`0#vKK>zR*7w=gqJrVc5wnq#|7_B2o&sQjg(vK+#juT6=K|_~yq;^Hrf0t6 zKBOi@hV^&Um&}E9?6&vueiHt0m5_*|1TxP*P&G3e z1Rm?D3$su_CNGubHl>{c$*hHF^@;lOLc@0d;_dvR#pjR>z-n2K@1+B-DXE>X5CIQ? zNK&Ag@e-+;?=|KBFcKv}s0I9DAJbwKD4`9h6A$81)@i}&ve6+ylZs1=C6NkCuw^ka z*>@5eGRZgmZ(qAanhSHbiIF|JZfgJ6Pg?$O6wu#ZoKjQorU?pkV~<(*J&W54PXj#Uvoi z;Q{#ht?-mk!TwzL#`w%>zn8(-83?#qaO6$^%ebN#4uz1 zS2KWnChAXp7FMJ57|b`<&!D^%X9bSvc3G`x!)FLI&!9M{(hL3i+?(?b=UXXpVMl+iu_!@Gnu7S z(TwOrk&XhGJW9J#|F}`WUN+DrUKKhwq>gO#+uSHG+k)00s}yN4 z&Q^gy00h9r#Q^vd^*f=nFnx)0kE6d9I#C@O;BDxM1*WLJ)0}>ZY9W0FmIBCB7q}@_ zxh~+=q2>)Edw!cHzP`B{@28WO<(z;MYm$d9(%8KN9F^^MRGYG7D3UcQDm8gB)bnHI zf3uJEZ}IeYk)(Rz2X`CaD8h@rLRnX0sm37-IGk%vB%1cLK-LmL_JVqYO3@wv*G)AxSR?#<0e%jA6Xn zIlVu;XRUX=|G>MRAD(BeXYcjwwfFu$`@8q&`~7@=m(f=6`}KbIC2SF0)2v@NVTFJZ z%tpDjKZn{18r{Y^;8}1_ZQaI{l0lgoonAW!i)*7kQybSHuWBqrO(dt2XJN5(m$$l9 zg{rkU(XrClJh0J_Uhz>@{QdLUA_q%oDcQ9vc$M0#h!5{$(wvlS z^6nH#_7Z;EzV}i?hP#ven!GZPB^dDBm-8@DN5Z-TsGou!6|s3<`7OIHpZ+*YbIY}G z-5BC%kgIULKRSTtynjz~u~xpL);B^+a}*l#&)&RbD-yK%baKW#G_tM$|2D7d4bX;B z@`jhijRy&b3z-l_Ikfu4o`zNhg;dRyvr*^roE|2Xe>S|={1Fy)f?lS<_xd@sUO$ay z3W@SRQXY3d+yARpGl+8J+7R7`hN|v%`OB*AR7iQEpsdzd|142{zT-sc;KZ_cf@`7W z4DyHFP!4rWjcTjZ=Z4o-Qfa1Q2t%D^WHfUwXY|uLgv6Bu<=R8;Yvav5?Y^-O20X6F zUN02Dq}Q$b-1X{Q=RZ0xIX;a4I49x5J`0;uTBlD9C+`&w0%ExxY2{Q{6Y4>5QF&vEbdXL!-i9Vr^zD1uTjae@o;_)!69;?1 za6ievMU>o(i>6m~Y_h}>wgZWf@4$n)MgZ$>$o6lyR4THJM!%3mf_+~TVe<`w#f=)J z9#$xQY)!BFUJCBZ)1J9I>Z}B^ld3e<^0idkhuphHv*gl$SPAm%AFq3_U;j}Xj*qr} zy&WOVwX;`AzTrJ7o-pi^h#6R?< zDP%J*N0ry7Wp1h3Z**v=;rxB(g5I(9=Ywnl*g}qAB`BIbmRO}#9sJ)WD+;YO`%mCD4u>U$BhUOQ}rqBYFtwZjek3hn$?VrSUU!bE{Zv|6kvS&?q*L9OzcGZx9_MsI*jD~& zH*qqSx$@=0LyEqU8s|(%z5Jv zr@pccDt5!9WRV8l63UOA5D64*!$hq0vB2RKVg_LE>Fa-*d-AJ<4T7Slcy0Lc1mBh< zyBo!=-!Awik*v8r2ABfbgX5CY@w;me?JwV0ya|K3Y9BXtd~xtZnYy%uQ$cuz{YgjV zB{IBNB^x)Zr<){GF9~=Pj|PErKN~4Jdi{7p!A{5OzFF!DgOO3hpyCQyK=d0SwMhPZ zc(;_!1_}M|f1uWjoDOd1V9c zm9*sxNng4xG7!=Vmv7b|PIdm`e93dolZ-cLl(kcrJiDMuZuHeR4hF+`XQ~?iLp(5d z0q;BE&M$}o2@WElbyyJmwBS!VoLa0W^4@!UNB&G%o$3C>(exHE6aH0p(mxUNGR`FM z`NYJhD@%N_oUC9epMbVyeXrh9LWc>0f+C46ap<;+o{{GT#Yd)_wz|0kWV&`LnK{zs zS7?`Gwa>`ttuN-6XvXu5Qr^=p*?mBVVqr+NWmqpitH))}jev`epLr3!of#{xz=PnK z=@#A5t!*B5nI_lo!$l@&LJ7=6WZW=CqWR_qK6&d~8DzVk*iJov|IG4B;_i8d%=9gpX<;=DOJ*CwHq)?=^2r76Xpfal;;M1xEOiZ}rDdk8CP?O9G+< zj}*EhdmiOkj%f-ziR8kSKrcg@R#oWm;qEtBr-zPuOr+gwLsn*PMVC%)KncuM7hVoF z_)*h^`NYu`g$RNB;(>W{M2uP9w;UWBZ$4k0eSb{k{(QAb z{D+G(T}myz6VzUxg)TieL!X|G+|G9%VzD~`K-0SCr^1x7wlSF>-lV2#i?}}R(JZ_( z9S1jAdO2!V;~+(8YJ0u?j=ZRnx5TdQD_Cb7Zj;$Mc0?i7va#-WbUr?2^hkGw9lFpy zX0JiWLaTaf>@|`iu5+eoDHEEP4$fSAl)})@q0w-Tj@6}@7a@ulwPod4f;d`t<2Mu@|De<(&?vG{F!Ncx8V7L(V ziJ2tD_VK=c-mq8R8|*^hZA=p{cwwkM$#QIbBtD(^U>&ILN_T41gzW#2DnN9%jc}`# z9ht46Rn`KgfK?HaH~XO5z?+TV*7T@JvjOQ7oZem$a*=kJotB%zr=Jzj z$mg&F4Pz!~U4vv9D0YoHAA*iTuqeub^@8{AwAlGQNKub~ns>W2DT=?_{1_Ns=ne!* zB^j6Ms@jaPQWp4^X@f!;5m}Gf@8Nz0y8S5JvBT-sNJ!2#iQfTn}j|w3~p8((J|6YOgdkhCuP+s}M86RI`>i`@+ z>;N%>;1fXbJ3u@O8KRMAQAi|G3tUPW5f?yV#J>wW;X}g$hy>`U#UUNk9(@D?g+L;R arvnitCWvHb4%n|kkd5ULi_!z07ybpYNf#>s literal 0 HcmV?d00001